mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge branch 'master' into migrate-to-ES6-52
This commit is contained in:
commit
5ba3a57479
89 changed files with 833 additions and 1936 deletions
|
@ -35,6 +35,7 @@
|
|||
- [Thibault Nocchi](https://github.com/ThibaultNocchi)
|
||||
- [MrTimscampi](https://github.com/MrTimscampi)
|
||||
- [Sarab Singh](https://github.com/sarab97)
|
||||
- [GuilhermeHideki](https://github.com/GuilhermeHideki)
|
||||
- [Andrei Oanca](https://github.com/OancaAndrei)
|
||||
- [Cromefire_](https://github.com/cromefire)
|
||||
|
||||
|
|
14
package.json
14
package.json
|
@ -38,7 +38,7 @@
|
|||
"gulp-postcss": "^8.0.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"gulp-sourcemaps": "^2.6.5",
|
||||
"gulp-terser": "^1.2.1",
|
||||
"gulp-terser": "^1.3.0",
|
||||
"html-webpack-plugin": "^4.3.0",
|
||||
"lazypipe": "^1.0.2",
|
||||
"node-sass": "^4.13.1",
|
||||
|
@ -167,6 +167,8 @@
|
|||
"src/components/syncPlay/syncPlayManager.js",
|
||||
"src/components/syncPlay/timeSyncManager.js",
|
||||
"src/components/viewManager/viewManager.js",
|
||||
"src/components/toast/toast.js",
|
||||
"src/components/upnextdialog/upnextdialog.js",
|
||||
"src/components/viewContainer.js",
|
||||
"src/controllers/session/addServer/index.js",
|
||||
"src/controllers/session/forgotPassword/index.js",
|
||||
|
@ -194,6 +196,8 @@
|
|||
"src/controllers/dashboard/metadataImages.js",
|
||||
"src/controllers/dashboard/metadatanfo.js",
|
||||
"src/controllers/dashboard/networking.js",
|
||||
"src/controllers/dashboard/notifications/notification.js",
|
||||
"src/controllers/dashboard/notifications/notifications.js",
|
||||
"src/controllers/dashboard/playback.js",
|
||||
"src/controllers/dashboard/plugins/repositories/index.js",
|
||||
"src/controllers/dashboard/scheduledtasks/scheduledtask.js",
|
||||
|
@ -206,12 +210,18 @@
|
|||
"src/controllers/dashboard/users/userparentalcontrol.js",
|
||||
"src/controllers/dashboard/users/userpasswordpage.js",
|
||||
"src/controllers/dashboard/users/userprofilespage.js",
|
||||
"src/controllers/edititemmetadata.js",
|
||||
"src/controllers/favorites.js",
|
||||
"src/controllers/hometab.js",
|
||||
"src/controllers/playback/nowplaying.js",
|
||||
"src/controllers/playback/videoosd.js",
|
||||
"src/controllers/itemDetails/index.js",
|
||||
"src/controllers/playback/queue/index.js",
|
||||
"src/controllers/playback/video/index.js",
|
||||
"src/controllers/searchpage.js",
|
||||
"src/controllers/livetvtuner.js",
|
||||
"src/controllers/livetvstatus.js",
|
||||
"src/controllers/livetvguideprovider.js",
|
||||
"src/controllers/livetvsettings.js",
|
||||
"src/controllers/shows/episodes.js",
|
||||
"src/controllers/shows/tvgenres.js",
|
||||
|
@ -269,6 +279,8 @@
|
|||
"src/scripts/globalize.js",
|
||||
"src/scripts/imagehelper.js",
|
||||
"src/scripts/inputManager.js",
|
||||
"src/scripts/autoThemes.js",
|
||||
"src/scripts/themeManager.js",
|
||||
"src/scripts/keyboardNavigation.js",
|
||||
"src/scripts/libraryBrowser.js",
|
||||
"src/scripts/mouseManager.js",
|
||||
|
|
33
scripts/duplicates.py
Normal file
33
scripts/duplicates.py
Normal file
|
@ -0,0 +1,33 @@
|
|||
import sys
|
||||
import os
|
||||
import json
|
||||
|
||||
# load every string in the source language
|
||||
# print all duplicate values to a file
|
||||
|
||||
cwd = os.getcwd()
|
||||
source = cwd + '/../src/strings/en-us.json'
|
||||
|
||||
reverse = {}
|
||||
duplicates = {}
|
||||
|
||||
with open(source) as en:
|
||||
strings = json.load(en)
|
||||
for key, value in strings.items():
|
||||
if value not in reverse:
|
||||
reverse[value] = [key]
|
||||
else:
|
||||
reverse[value].append(key)
|
||||
|
||||
for key, value in reverse.items():
|
||||
if len(value) > 1:
|
||||
duplicates[key] = value
|
||||
|
||||
print('LENGTH: ' + str(len(duplicates)))
|
||||
with open('duplicates.txt', 'w') as out:
|
||||
for item in duplicates:
|
||||
out.write(json.dumps(item) + ': ')
|
||||
out.write(json.dumps(duplicates[item]) + '\n')
|
||||
out.close()
|
||||
|
||||
print('DONE')
|
|
@ -11,7 +11,7 @@ langlst = os.listdir(langdir)
|
|||
|
||||
keys = []
|
||||
|
||||
with open('scout.txt', 'r') as f:
|
||||
with open('unused.txt', 'r') as f:
|
||||
for line in f:
|
||||
keys.append(line.strip('\n'))
|
||||
|
|
@ -38,7 +38,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'skinManager', 'backdro
|
|||
switch (result.State) {
|
||||
case 'SignedIn':
|
||||
loading.hide();
|
||||
skinManager.loadUserSkin();
|
||||
Emby.Page.goHome();
|
||||
break;
|
||||
case 'ServerSignIn':
|
||||
result.ApiClient.getPublicUsers().then(function (users) {
|
||||
|
@ -151,7 +151,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'skinManager', 'backdro
|
|||
if (typeof route.path === 'string') {
|
||||
loadContentUrl(ctx, next, route, currentRequest);
|
||||
} else {
|
||||
// ? TODO
|
||||
next();
|
||||
}
|
||||
};
|
||||
|
@ -289,12 +288,9 @@ define(['loading', 'globalize', 'events', 'viewManager', 'skinManager', 'backdro
|
|||
|
||||
connectionManager.connect({
|
||||
enableAutoLogin: appSettings.enableAutoLogin()
|
||||
|
||||
}).then(function (result) {
|
||||
firstConnectionResult = result;
|
||||
|
||||
options = options || {};
|
||||
|
||||
page({
|
||||
click: options.click !== false,
|
||||
hashbang: options.hashbang !== false
|
||||
|
@ -346,7 +342,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'skinManager', 'backdro
|
|||
|
||||
if (route.isDefaultRoute) {
|
||||
console.debug('appRouter - loading skin home page');
|
||||
loadUserSkinWithOptions(ctx);
|
||||
Emby.Page.goHome();
|
||||
return;
|
||||
} else if (route.roles) {
|
||||
validateRoles(apiClient, route.roles).then(function () {
|
||||
|
@ -360,15 +356,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'skinManager', 'backdro
|
|||
callback();
|
||||
}
|
||||
|
||||
function loadUserSkinWithOptions(ctx) {
|
||||
require(['queryString'], function (queryString) {
|
||||
var params = queryString.parse(ctx.querystring);
|
||||
skinManager.loadUserSkin({
|
||||
start: params.start
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function validateRoles(apiClient, roles) {
|
||||
return Promise.all(roles.split(',').map(function (role) {
|
||||
return validateRole(apiClient, role);
|
||||
|
|
|
@ -279,7 +279,7 @@ define(['appSettings', 'browser', 'events', 'htmlMediaHelper', 'webSettings', 'g
|
|||
features.push('targetblank');
|
||||
features.push('screensaver');
|
||||
|
||||
webSettings.enableMultiServer().then(enabled => {
|
||||
webSettings.getMultiServer().then(enabled => {
|
||||
if (enabled) features.push('multiserver');
|
||||
});
|
||||
|
||||
|
@ -409,13 +409,6 @@ define(['appSettings', 'browser', 'events', 'htmlMediaHelper', 'webSettings', 'g
|
|||
getPushTokenInfo: function () {
|
||||
return {};
|
||||
},
|
||||
setThemeColor: function (color) {
|
||||
var metaThemeColor = document.querySelector('meta[name=theme-color]');
|
||||
|
||||
if (metaThemeColor) {
|
||||
metaThemeColor.setAttribute('content', color);
|
||||
}
|
||||
},
|
||||
setUserScalable: function (scalable) {
|
||||
if (!browser.tv) {
|
||||
var att = scalable ? 'width=device-width, initial-scale=1, minimum-scale=1, user-scalable=yes' : 'width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no';
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import browser from 'browser';
|
||||
import layoutManager from 'layoutManager';
|
||||
import appSettings from 'appSettings';
|
||||
import pluginManager from 'pluginManager';
|
||||
import appHost from 'apphost';
|
||||
import focusManager from 'focusManager';
|
||||
|
@ -16,17 +15,22 @@ import 'emby-button';
|
|||
|
||||
/* eslint-disable indent */
|
||||
|
||||
function fillThemes(select, isDashboard) {
|
||||
select.innerHTML = skinManager.getThemes().map(t => {
|
||||
let value = t.id;
|
||||
if (t.isDefault && !isDashboard) {
|
||||
value = '';
|
||||
} else if (t.isDefaultServerDashboard && isDashboard) {
|
||||
value = '';
|
||||
}
|
||||
function fillThemes(context, userSettings) {
|
||||
const select = context.querySelector('#selectTheme');
|
||||
|
||||
return `<option value="${value}">${t.name}</option>`;
|
||||
skinManager.getThemes().then(themes => {
|
||||
select.innerHTML = themes.map(t => {
|
||||
return `<option value="${t.id}">${t.name}</option>`;
|
||||
}).join('');
|
||||
|
||||
// get default theme
|
||||
var defaultTheme = themes.find(theme => {
|
||||
return theme.default;
|
||||
});
|
||||
|
||||
// set the current theme
|
||||
select.value = userSettings.theme() || defaultTheme.id;
|
||||
});
|
||||
}
|
||||
|
||||
function loadScreensavers(context, userSettings) {
|
||||
|
@ -46,6 +50,7 @@ import 'emby-button';
|
|||
selectScreensaver.innerHTML = options.map(o => {
|
||||
return `<option value="${o.value}">${o.name}</option>`;
|
||||
}).join('');
|
||||
|
||||
selectScreensaver.value = userSettings.screensaver();
|
||||
|
||||
if (!selectScreensaver.value) {
|
||||
|
@ -54,57 +59,6 @@ import 'emby-button';
|
|||
}
|
||||
}
|
||||
|
||||
function loadSoundEffects(context, userSettings) {
|
||||
const selectSoundEffects = context.querySelector('.selectSoundEffects');
|
||||
const options = pluginManager.ofType('soundeffects').map(plugin => {
|
||||
return {
|
||||
name: plugin.name,
|
||||
value: plugin.id
|
||||
};
|
||||
});
|
||||
|
||||
options.unshift({
|
||||
name: globalize.translate('None'),
|
||||
value: 'none'
|
||||
});
|
||||
|
||||
selectSoundEffects.innerHTML = options.map(o => {
|
||||
return `<option value="${o.value}">${o.name}</option>`;
|
||||
}).join('');
|
||||
selectSoundEffects.value = userSettings.soundEffects();
|
||||
|
||||
if (!selectSoundEffects.value) {
|
||||
// TODO: set the default instead of none
|
||||
selectSoundEffects.value = 'none';
|
||||
}
|
||||
}
|
||||
|
||||
function loadSkins(context, userSettings) {
|
||||
const selectSkin = context.querySelector('.selectSkin');
|
||||
|
||||
const options = pluginManager.ofType('skin').map(plugin => {
|
||||
return {
|
||||
name: plugin.name,
|
||||
value: plugin.id
|
||||
};
|
||||
});
|
||||
|
||||
selectSkin.innerHTML = options.map(o => {
|
||||
return `<option value="${o.value}">${o.name}</option>`;
|
||||
}).join('');
|
||||
selectSkin.value = userSettings.skin();
|
||||
|
||||
if (!selectSkin.value && options.length) {
|
||||
selectSkin.value = options[0].value;
|
||||
}
|
||||
|
||||
if (options.length > 1 && appHost.supports('skins')) {
|
||||
context.querySelector('.selectSkinContainer').classList.remove('hide');
|
||||
} else {
|
||||
context.querySelector('.selectSkinContainer').classList.add('hide');
|
||||
}
|
||||
}
|
||||
|
||||
function showOrHideMissingEpisodesField(context) {
|
||||
if (browser.tizen || browser.web0s) {
|
||||
context.querySelector('.fldDisplayMissingEpisodes').classList.add('hide');
|
||||
|
@ -115,12 +69,6 @@ import 'emby-button';
|
|||
}
|
||||
|
||||
function loadForm(context, user, userSettings) {
|
||||
if (user.Policy.IsAdministrator) {
|
||||
context.querySelector('.selectDashboardThemeContainer').classList.remove('hide');
|
||||
} else {
|
||||
context.querySelector('.selectDashboardThemeContainer').classList.add('hide');
|
||||
}
|
||||
|
||||
if (appHost.supports('displaylanguage')) {
|
||||
context.querySelector('.languageSection').classList.remove('hide');
|
||||
} else {
|
||||
|
@ -139,18 +87,6 @@ import 'emby-button';
|
|||
context.querySelector('.learnHowToContributeContainer').classList.add('hide');
|
||||
}
|
||||
|
||||
if (appHost.supports('runatstartup')) {
|
||||
context.querySelector('.fldAutorun').classList.remove('hide');
|
||||
} else {
|
||||
context.querySelector('.fldAutorun').classList.add('hide');
|
||||
}
|
||||
|
||||
if (appHost.supports('soundeffects')) {
|
||||
context.querySelector('.fldSoundEffects').classList.remove('hide');
|
||||
} else {
|
||||
context.querySelector('.fldSoundEffects').classList.add('hide');
|
||||
}
|
||||
|
||||
if (appHost.supports('screensaver')) {
|
||||
context.querySelector('.selectScreensaverContainer').classList.remove('hide');
|
||||
} else {
|
||||
|
@ -173,16 +109,8 @@ import 'emby-button';
|
|||
context.querySelector('.fldThemeVideo').classList.add('hide');
|
||||
}
|
||||
|
||||
context.querySelector('.chkRunAtStartup').checked = appSettings.runAtStartup();
|
||||
|
||||
const selectTheme = context.querySelector('#selectTheme');
|
||||
const selectDashboardTheme = context.querySelector('#selectDashboardTheme');
|
||||
|
||||
fillThemes(selectTheme);
|
||||
fillThemes(selectDashboardTheme, true);
|
||||
fillThemes(context, userSettings);
|
||||
loadScreensavers(context, userSettings);
|
||||
loadSoundEffects(context, userSettings);
|
||||
loadSkins(context, userSettings);
|
||||
|
||||
context.querySelector('.chkDisplayMissingEpisodes').checked = user.Configuration.DisplayMissingEpisodes || false;
|
||||
|
||||
|
@ -198,9 +126,6 @@ import 'emby-button';
|
|||
|
||||
context.querySelector('#txtLibraryPageSize').value = userSettings.libraryPageSize();
|
||||
|
||||
selectDashboardTheme.value = userSettings.dashboardTheme() || '';
|
||||
selectTheme.value = userSettings.theme() || '';
|
||||
|
||||
context.querySelector('.selectLayout').value = layoutManager.getSavedLayout() || '';
|
||||
|
||||
showOrHideMissingEpisodesField(context);
|
||||
|
@ -209,8 +134,6 @@ import 'emby-button';
|
|||
}
|
||||
|
||||
function saveUser(context, user, userSettingsInstance, apiClient) {
|
||||
appSettings.runAtStartup(context.querySelector('.chkRunAtStartup').checked);
|
||||
|
||||
user.Configuration.DisplayMissingEpisodes = context.querySelector('.chkDisplayMissingEpisodes').checked;
|
||||
|
||||
if (appHost.supports('displaylanguage')) {
|
||||
|
@ -221,15 +144,11 @@ import 'emby-button';
|
|||
|
||||
userSettingsInstance.enableThemeSongs(context.querySelector('#chkThemeSong').checked);
|
||||
userSettingsInstance.enableThemeVideos(context.querySelector('#chkThemeVideo').checked);
|
||||
userSettingsInstance.dashboardTheme(context.querySelector('#selectDashboardTheme').value);
|
||||
userSettingsInstance.theme(context.querySelector('#selectTheme').value);
|
||||
userSettingsInstance.soundEffects(context.querySelector('.selectSoundEffects').value);
|
||||
userSettingsInstance.screensaver(context.querySelector('.selectScreensaver').value);
|
||||
|
||||
userSettingsInstance.libraryPageSize(context.querySelector('#txtLibraryPageSize').value);
|
||||
|
||||
userSettingsInstance.skin(context.querySelector('.selectSkin').value);
|
||||
|
||||
userSettingsInstance.enableFastFadein(context.querySelector('#chkFadein').checked);
|
||||
userSettingsInstance.enableBlurhash(context.querySelector('#chkBlurhash').checked);
|
||||
userSettingsInstance.enableBackdrops(context.querySelector('#chkBackdrops').checked);
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<form style="margin: 0 auto;">
|
||||
|
||||
<h2 class="sectionTitle">
|
||||
${Display}
|
||||
</h2>
|
||||
|
@ -123,26 +122,14 @@
|
|||
<div class="fieldDescription">${LabelPleaseRestart}</div>
|
||||
</div>
|
||||
|
||||
<div class="selectContainer hide selectSkinContainer">
|
||||
<select is="emby-select" class="selectSkin" label="${LabelSkin}"></select>
|
||||
</div>
|
||||
|
||||
<div class="selectContainer">
|
||||
<select id="selectTheme" is="emby-select" label="${LabelTheme}"></select>
|
||||
</div>
|
||||
|
||||
<div class="selectContainer selectDashboardThemeContainer hide">
|
||||
<select id="selectDashboardTheme" is="emby-select" label="${LabelDashboardTheme}"></select>
|
||||
</div>
|
||||
|
||||
<div class="selectContainer hide selectScreensaverContainer">
|
||||
<select is="emby-select" class="selectScreensaver" label="${LabelScreensaver}"></select>
|
||||
</div>
|
||||
|
||||
<div class="selectContainer fldSoundEffects hide">
|
||||
<select is="emby-select" class="selectSoundEffects" label="${LabelSoundEffects}"></select>
|
||||
</div>
|
||||
|
||||
<div class="inputContainer inputContainer-withDescription">
|
||||
<input is="emby-input" type="number" id="txtLibraryPageSize" pattern="[0-9]*" required="required" min="0" max="1000" step="1" label="${LabelLibraryPageSize}" />
|
||||
<div class="fieldDescription">${LabelLibraryPageSizeHelp}</div>
|
||||
|
@ -196,13 +183,6 @@
|
|||
<div class="fieldDescription checkboxFieldDescription">${EnableThemeVideosHelp}</div>
|
||||
</div>
|
||||
|
||||
<div class="checkboxContainer hide fldAutorun">
|
||||
<label>
|
||||
<input type="checkbox" is="emby-checkbox" class="chkRunAtStartup" />
|
||||
<span>${RunAtStartup}</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="checkboxContainer checkboxContainer-withDescription fldDisplayMissingEpisodes hide">
|
||||
<label>
|
||||
<input type="checkbox" is="emby-checkbox" class="chkDisplayMissingEpisodes" />
|
||||
|
|
|
@ -59,8 +59,8 @@ import 'css!./imageeditor';
|
|||
currentItem = item;
|
||||
|
||||
apiClient.getRemoteImageProviders(getBaseRemoteOptions()).then(function (providers) {
|
||||
const btnBrowseAllImages = page.querySelectorAll('.btnBrowseAllImages');
|
||||
for (let i = 0, length = btnBrowseAllImages.length; i < length; i++) {
|
||||
var btnBrowseAllImages = page.querySelectorAll('.btnBrowseAllImages');
|
||||
for (var i = 0, length = btnBrowseAllImages.length; i < length; i++) {
|
||||
if (providers.length) {
|
||||
btnBrowseAllImages[i].classList.remove('hide');
|
||||
} else {
|
||||
|
|
|
@ -1,186 +0,0 @@
|
|||
define(['apphost', 'userSettings', 'browser', 'events', 'backdrop', 'globalize', 'require', 'appSettings'], function (appHost, userSettings, browser, events, backdrop, globalize, require, appSettings) {
|
||||
'use strict';
|
||||
|
||||
browser = browser.default || browser;
|
||||
|
||||
var themeStyleElement;
|
||||
var currentThemeId;
|
||||
|
||||
function unloadTheme() {
|
||||
var elem = themeStyleElement;
|
||||
if (elem) {
|
||||
elem.parentNode.removeChild(elem);
|
||||
themeStyleElement = null;
|
||||
currentThemeId = null;
|
||||
}
|
||||
}
|
||||
|
||||
function loadUserSkin(options) {
|
||||
options = options || {};
|
||||
if (options.start) {
|
||||
Emby.Page.invokeShortcut(options.start);
|
||||
} else {
|
||||
Emby.Page.goHome();
|
||||
}
|
||||
}
|
||||
|
||||
function getThemes() {
|
||||
return [{
|
||||
name: 'Apple TV',
|
||||
id: 'appletv'
|
||||
}, {
|
||||
name: 'Blue Radiance',
|
||||
id: 'blueradiance'
|
||||
}, {
|
||||
name: 'Dark',
|
||||
id: 'dark',
|
||||
isDefault: true,
|
||||
isDefaultServerDashboard: true
|
||||
}, {
|
||||
name: 'Light',
|
||||
id: 'light'
|
||||
}, {
|
||||
name: 'Purple Haze',
|
||||
id: 'purplehaze'
|
||||
}, {
|
||||
name: 'Windows Media Center',
|
||||
id: 'wmc'
|
||||
}];
|
||||
}
|
||||
|
||||
var skinManager = {
|
||||
getThemes: getThemes,
|
||||
loadUserSkin: loadUserSkin
|
||||
};
|
||||
|
||||
function getThemeStylesheetInfo(id, isDefaultProperty) {
|
||||
var themes = skinManager.getThemes();
|
||||
var defaultTheme;
|
||||
var selectedTheme;
|
||||
|
||||
for (var i = 0, length = themes.length; i < length; i++) {
|
||||
var theme = themes[i];
|
||||
if (theme[isDefaultProperty]) {
|
||||
defaultTheme = theme;
|
||||
}
|
||||
if (id === theme.id) {
|
||||
selectedTheme = theme;
|
||||
}
|
||||
}
|
||||
|
||||
selectedTheme = selectedTheme || defaultTheme;
|
||||
return {
|
||||
stylesheetPath: require.toUrl('themes/' + selectedTheme.id + '/theme.css'),
|
||||
themeId: selectedTheme.id
|
||||
};
|
||||
}
|
||||
|
||||
var themeResources = {};
|
||||
var lastSound = 0;
|
||||
var currentSound;
|
||||
|
||||
function loadThemeResources(id) {
|
||||
lastSound = 0;
|
||||
if (currentSound) {
|
||||
currentSound.stop();
|
||||
currentSound = null;
|
||||
}
|
||||
|
||||
backdrop.clearBackdrop();
|
||||
}
|
||||
|
||||
function onThemeLoaded() {
|
||||
document.documentElement.classList.remove('preload');
|
||||
try {
|
||||
var color = getComputedStyle(document.querySelector('.skinHeader')).getPropertyValue('background-color');
|
||||
if (color) {
|
||||
appHost.setThemeColor(color);
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('error setting theme color: ' + err);
|
||||
}
|
||||
}
|
||||
|
||||
skinManager.setTheme = function (id, context) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
if (currentThemeId && currentThemeId === id) {
|
||||
resolve();
|
||||
return;
|
||||
}
|
||||
|
||||
var isDefaultProperty = context === 'serverdashboard' ? 'isDefaultServerDashboard' : 'isDefault';
|
||||
var info = getThemeStylesheetInfo(id, isDefaultProperty);
|
||||
if (currentThemeId && currentThemeId === info.themeId) {
|
||||
resolve();
|
||||
return;
|
||||
}
|
||||
|
||||
var linkUrl = info.stylesheetPath;
|
||||
unloadTheme();
|
||||
|
||||
var link = document.createElement('link');
|
||||
link.setAttribute('rel', 'stylesheet');
|
||||
link.setAttribute('type', 'text/css');
|
||||
link.onload = function () {
|
||||
onThemeLoaded();
|
||||
resolve();
|
||||
};
|
||||
|
||||
link.setAttribute('href', linkUrl);
|
||||
document.head.appendChild(link);
|
||||
themeStyleElement = link;
|
||||
currentThemeId = info.themeId;
|
||||
loadThemeResources(info.themeId);
|
||||
|
||||
onViewBeforeShow({});
|
||||
});
|
||||
};
|
||||
|
||||
function onViewBeforeShow(e) {
|
||||
if (e.detail && e.detail.type === 'video-osd') {
|
||||
// This removes the space that the scrollbar takes while playing a video
|
||||
document.body.classList.remove('force-scroll');
|
||||
return;
|
||||
}
|
||||
|
||||
if (themeResources.backdrop) {
|
||||
backdrop.setBackdrop(themeResources.backdrop);
|
||||
}
|
||||
|
||||
if (!browser.mobile && userSettings.enableThemeSongs()) {
|
||||
if (lastSound === 0) {
|
||||
if (themeResources.themeSong) {
|
||||
playSound(themeResources.themeSong);
|
||||
}
|
||||
} else if ((new Date().getTime() - lastSound) > 30000) {
|
||||
if (themeResources.effect) {
|
||||
playSound(themeResources.effect);
|
||||
}
|
||||
}
|
||||
}
|
||||
// This keeps the scrollbar always present in all pages, so we avoid clipping while switching between pages
|
||||
// that need the scrollbar and pages that don't.
|
||||
document.body.classList.add('force-scroll');
|
||||
}
|
||||
|
||||
document.addEventListener('viewshow', onViewBeforeShow);
|
||||
|
||||
function playSound(path, volume) {
|
||||
lastSound = new Date().getTime();
|
||||
require(['howler'], function (howler) {
|
||||
/* globals Howl */
|
||||
try {
|
||||
var sound = new Howl({
|
||||
src: [path],
|
||||
volume: volume || 0.1
|
||||
});
|
||||
sound.play();
|
||||
currentSound = sound;
|
||||
} catch (err) {
|
||||
console.error('error playing sound: ' + err);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return skinManager;
|
||||
});
|
|
@ -1,27 +1,26 @@
|
|||
define(['css!./toast'], function () {
|
||||
'use strict';
|
||||
import 'css!./toast';
|
||||
|
||||
function remove(elem) {
|
||||
function remove(elem) {
|
||||
setTimeout(function () {
|
||||
elem.parentNode.removeChild(elem);
|
||||
}, 300);
|
||||
}
|
||||
}
|
||||
|
||||
function animateRemove(elem) {
|
||||
function animateRemove(elem) {
|
||||
setTimeout(function () {
|
||||
elem.classList.remove('toastVisible');
|
||||
remove(elem);
|
||||
}, 3300);
|
||||
}
|
||||
}
|
||||
|
||||
return function (options) {
|
||||
export default function (options) {
|
||||
if (typeof options === 'string') {
|
||||
options = {
|
||||
text: options
|
||||
};
|
||||
}
|
||||
|
||||
var elem = document.createElement('div');
|
||||
const elem = document.createElement('div');
|
||||
elem.classList.add('toast');
|
||||
elem.innerHTML = options.text;
|
||||
|
||||
|
@ -32,5 +31,4 @@ define(['css!./toast'], function () {
|
|||
|
||||
animateRemove(elem);
|
||||
}, 300);
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,9 +1,19 @@
|
|||
define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'layoutManager', 'focusManager', 'globalize', 'itemHelper', 'css!./upnextdialog', 'emby-button', 'flexStyles'], function (dom, playbackManager, connectionManager, events, mediaInfo, layoutManager, focusManager, globalize, itemHelper) {
|
||||
'use strict';
|
||||
import dom from 'dom';
|
||||
import playbackManager from 'playbackManager';
|
||||
import connectionManager from 'connectionManager';
|
||||
import events from 'events';
|
||||
import mediaInfo from 'mediaInfo';
|
||||
import layoutManager from 'layoutManager';
|
||||
import focusManager from 'focusManager';
|
||||
import globalize from 'globalize';
|
||||
import itemHelper from 'itemHelper';
|
||||
import 'css!./upnextdialog';
|
||||
import 'emby-button';
|
||||
import 'flexStyles';
|
||||
|
||||
playbackManager = playbackManager.default || playbackManager;
|
||||
/* eslint-disable indent */
|
||||
|
||||
var transitionEndEventName = dom.whichTransitionEvent();
|
||||
const transitionEndEventName = dom.whichTransitionEvent();
|
||||
|
||||
function seriesImageUrl(item, options) {
|
||||
if (item.Type !== 'Episode') {
|
||||
|
@ -58,7 +68,7 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
|
||||
function setPoster(osdPoster, item, secondaryItem) {
|
||||
if (item) {
|
||||
var imgUrl = seriesImageUrl(item, { type: 'Primary' }) ||
|
||||
let imgUrl = seriesImageUrl(item, { type: 'Primary' }) ||
|
||||
seriesImageUrl(item, { type: 'Thumb' }) ||
|
||||
imageUrl(item, { type: 'Primary' });
|
||||
|
||||
|
@ -78,7 +88,7 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
function getHtml() {
|
||||
var html = '';
|
||||
let html = '';
|
||||
|
||||
html += '<div class="upNextDialog-poster">';
|
||||
html += '</div>';
|
||||
|
@ -114,17 +124,17 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
function setNextVideoText() {
|
||||
var instance = this;
|
||||
const instance = this;
|
||||
|
||||
var elem = instance.options.parent;
|
||||
const elem = instance.options.parent;
|
||||
|
||||
var secondsRemaining = Math.max(Math.round(getTimeRemainingMs(instance) / 1000), 0);
|
||||
const secondsRemaining = Math.max(Math.round(getTimeRemainingMs(instance) / 1000), 0);
|
||||
|
||||
console.debug('up next seconds remaining: ' + secondsRemaining);
|
||||
|
||||
var timeText = '<span class="upNextDialog-countdownText">' + globalize.translate('HeaderSecondsValue', secondsRemaining) + '</span>';
|
||||
const timeText = '<span class="upNextDialog-countdownText">' + globalize.translate('HeaderSecondsValue', secondsRemaining) + '</span>';
|
||||
|
||||
var nextVideoText = instance.itemType === 'Episode' ?
|
||||
const nextVideoText = instance.itemType === 'Episode' ?
|
||||
globalize.translate('HeaderNextEpisodePlayingInValue', timeText) :
|
||||
globalize.translate('HeaderNextVideoPlayingInValue', timeText);
|
||||
|
||||
|
@ -132,9 +142,9 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
function fillItem(item) {
|
||||
var instance = this;
|
||||
const instance = this;
|
||||
|
||||
var elem = instance.options.parent;
|
||||
const elem = instance.options.parent;
|
||||
|
||||
setPoster(elem.querySelector('.upNextDialog-poster'), item);
|
||||
|
||||
|
@ -143,7 +153,7 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
elem.querySelector('.upNextDialog-mediainfo').innerHTML = mediaInfo.getPrimaryMediaInfoHtml(item, {
|
||||
});
|
||||
|
||||
var title = itemHelper.getDisplayName(item);
|
||||
let title = itemHelper.getDisplayName(item);
|
||||
if (item.SeriesName) {
|
||||
title = item.SeriesName + ' - ' + title;
|
||||
}
|
||||
|
@ -163,10 +173,10 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
function onStartNowClick() {
|
||||
var options = this.options;
|
||||
const options = this.options;
|
||||
|
||||
if (options) {
|
||||
var player = options.player;
|
||||
const player = options.player;
|
||||
|
||||
this.hide();
|
||||
|
||||
|
@ -188,7 +198,7 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
function clearHideAnimationEventListeners(instance, elem) {
|
||||
var fn = instance._onHideAnimationComplete;
|
||||
const fn = instance._onHideAnimationComplete;
|
||||
|
||||
if (fn) {
|
||||
dom.removeEventListener(elem, transitionEndEventName, fn, {
|
||||
|
@ -198,8 +208,8 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
function onHideAnimationComplete(e) {
|
||||
var instance = this;
|
||||
var elem = e.target;
|
||||
const instance = this;
|
||||
const elem = e.target;
|
||||
|
||||
elem.classList.add('hide');
|
||||
|
||||
|
@ -208,14 +218,14 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
function hideComingUpNext() {
|
||||
var instance = this;
|
||||
const instance = this;
|
||||
clearCountdownTextTimeout(this);
|
||||
|
||||
if (!instance.options) {
|
||||
return;
|
||||
}
|
||||
|
||||
var elem = instance.options.parent;
|
||||
const elem = instance.options.parent;
|
||||
|
||||
if (!elem) {
|
||||
return;
|
||||
|
@ -232,7 +242,7 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
|
||||
elem.classList.add('upNextDialog-hidden');
|
||||
|
||||
var fn = onHideAnimationComplete.bind(instance);
|
||||
const fn = onHideAnimationComplete.bind(instance);
|
||||
instance._onHideAnimationComplete = fn;
|
||||
|
||||
dom.addEventListener(elem, transitionEndEventName, fn, {
|
||||
|
@ -241,12 +251,12 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
function getTimeRemainingMs(instance) {
|
||||
var options = instance.options;
|
||||
const options = instance.options;
|
||||
if (options) {
|
||||
var runtimeTicks = playbackManager.duration(options.player);
|
||||
const runtimeTicks = playbackManager.duration(options.player);
|
||||
|
||||
if (runtimeTicks) {
|
||||
var timeRemainingTicks = runtimeTicks - playbackManager.currentTime(options.player);
|
||||
const timeRemainingTicks = runtimeTicks - playbackManager.currentTime(options.player);
|
||||
|
||||
return Math.round(timeRemainingTicks / 10000);
|
||||
}
|
||||
|
@ -256,7 +266,7 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
function startComingUpNextHideTimer(instance) {
|
||||
var timeRemainingMs = getTimeRemainingMs(instance);
|
||||
const timeRemainingMs = getTimeRemainingMs(instance);
|
||||
|
||||
if (timeRemainingMs <= 0) {
|
||||
return;
|
||||
|
@ -268,14 +278,14 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
instance._countdownTextTimeout = setInterval(setNextVideoText.bind(instance), 400);
|
||||
}
|
||||
|
||||
function UpNextDialog(options) {
|
||||
class UpNextDialog {
|
||||
constructor(options) {
|
||||
this.options = options;
|
||||
|
||||
init(this, options);
|
||||
}
|
||||
|
||||
UpNextDialog.prototype.show = function () {
|
||||
var elem = this.options.parent;
|
||||
show() {
|
||||
const elem = this.options.parent;
|
||||
|
||||
clearHideAnimationEventListeners(this, elem);
|
||||
|
||||
|
@ -293,18 +303,18 @@ define(['dom', 'playbackManager', 'connectionManager', 'events', 'mediaInfo', 'l
|
|||
}
|
||||
|
||||
startComingUpNextHideTimer(this);
|
||||
};
|
||||
|
||||
UpNextDialog.prototype.hide = function () {
|
||||
}
|
||||
hide() {
|
||||
hideComingUpNext.call(this);
|
||||
};
|
||||
|
||||
UpNextDialog.prototype.destroy = function () {
|
||||
}
|
||||
destroy() {
|
||||
hideComingUpNext.call(this);
|
||||
|
||||
this.options = null;
|
||||
this.itemType = null;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
return UpNextDialog;
|
||||
});
|
||||
export default UpNextDialog;
|
||||
|
||||
/* eslint-enable indent */
|
||||
|
|
|
@ -54,8 +54,8 @@ import 'css!components/viewManager/viewContainer';
|
|||
|
||||
if (currentPage) {
|
||||
if (newViewInfo.hasScript && window.$) {
|
||||
view = $(view).appendTo(mainAnimatedPages)[0];
|
||||
mainAnimatedPages.removeChild(currentPage);
|
||||
view = $(view).appendTo(mainAnimatedPages)[0];
|
||||
} else {
|
||||
mainAnimatedPages.replaceChild(view, currentPage);
|
||||
}
|
||||
|
|
|
@ -1,3 +1,38 @@
|
|||
{
|
||||
"multiserver": false
|
||||
"multiserver": false,
|
||||
"themes": [
|
||||
{
|
||||
"name": "Apple TV",
|
||||
"id": "appletv"
|
||||
}, {
|
||||
"name": "Blue Radiance",
|
||||
"id": "blueradiance"
|
||||
}, {
|
||||
"name": "Dark",
|
||||
"id": "dark",
|
||||
"default": true
|
||||
}, {
|
||||
"name": "Light",
|
||||
"id": "light"
|
||||
}, {
|
||||
"name": "Purple Haze",
|
||||
"id": "purplehaze"
|
||||
}, {
|
||||
"name": "WMC",
|
||||
"id": "wmc"
|
||||
}
|
||||
],
|
||||
"plugins": [
|
||||
"plugins/playAccessValidation/plugin",
|
||||
"plugins/experimentalWarnings/plugin",
|
||||
"plugins/htmlAudioPlayer/plugin",
|
||||
"plugins/htmlVideoPlayer/plugin",
|
||||
"plugins/photoPlayer/plugin",
|
||||
"plugins/bookPlayer/plugin",
|
||||
"plugins/youtubePlayer/plugin",
|
||||
"plugins/backdropScreensaver/plugin",
|
||||
"plugins/logoScreensaver/plugin",
|
||||
"plugins/sessionPlayer/plugin",
|
||||
"plugins/chromecastPlayer/plugin"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,32 +1,32 @@
|
|||
define(['jQuery', 'emby-checkbox'], function ($) {
|
||||
'use strict';
|
||||
import $ from 'jQuery';
|
||||
import 'emby-checkbox';
|
||||
|
||||
function fillItems(elem, items, cssClass, idPrefix, currentList, isEnabledList) {
|
||||
var html = '<div class="checkboxList paperList" style="padding: .5em 1em;">';
|
||||
function fillItems(elem, items, cssClass, idPrefix, currentList, isEnabledList) {
|
||||
let html = '<div class="checkboxList paperList" style="padding: .5em 1em;">';
|
||||
html += items.map(function (u) {
|
||||
var isChecked = isEnabledList ? currentList.indexOf(u.Id) != -1 : currentList.indexOf(u.Id) == -1;
|
||||
var checkedHtml = isChecked ? ' checked="checked"' : '';
|
||||
const isChecked = isEnabledList ? currentList.indexOf(u.Id) != -1 : currentList.indexOf(u.Id) == -1;
|
||||
const checkedHtml = isChecked ? ' checked="checked"' : '';
|
||||
return '<label><input is="emby-checkbox" class="' + cssClass + '" type="checkbox" data-itemid="' + u.Id + '"' + checkedHtml + '/><span>' + u.Name + '</span></label>';
|
||||
}).join('');
|
||||
html += '</div>';
|
||||
elem.html(html).trigger('create');
|
||||
}
|
||||
}
|
||||
|
||||
function reload(page) {
|
||||
var type = getParameterByName('type');
|
||||
var promise1 = ApiClient.getUsers();
|
||||
var promise2 = ApiClient.getNamedConfiguration(notificationsConfigurationKey);
|
||||
var promise3 = ApiClient.getJSON(ApiClient.getUrl('Notifications/Types'));
|
||||
var promise4 = ApiClient.getJSON(ApiClient.getUrl('Notifications/Services'));
|
||||
function reload(page) {
|
||||
const type = getParameterByName('type');
|
||||
const promise1 = ApiClient.getUsers();
|
||||
const promise2 = ApiClient.getNamedConfiguration(notificationsConfigurationKey);
|
||||
const promise3 = ApiClient.getJSON(ApiClient.getUrl('Notifications/Types'));
|
||||
const promise4 = ApiClient.getJSON(ApiClient.getUrl('Notifications/Services'));
|
||||
Promise.all([promise1, promise2, promise3, promise4]).then(function (responses) {
|
||||
var users = responses[0];
|
||||
var notificationOptions = responses[1];
|
||||
var types = responses[2];
|
||||
var services = responses[3];
|
||||
var notificationConfig = notificationOptions.Options.filter(function (n) {
|
||||
const users = responses[0];
|
||||
const notificationOptions = responses[1];
|
||||
const types = responses[2];
|
||||
const services = responses[3];
|
||||
let notificationConfig = notificationOptions.Options.filter(function (n) {
|
||||
return n.Type == type;
|
||||
})[0];
|
||||
var typeInfo = types.filter(function (n) {
|
||||
const typeInfo = types.filter(function (n) {
|
||||
return n.Type == type;
|
||||
})[0] || {};
|
||||
|
||||
|
@ -53,16 +53,16 @@ define(['jQuery', 'emby-checkbox'], function ($) {
|
|||
$('#chkEnabled', page).prop('checked', notificationConfig.Enabled || false);
|
||||
$('#selectUsers', page).val(notificationConfig.SendToUserMode).trigger('change');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function save(page) {
|
||||
var type = getParameterByName('type');
|
||||
var promise1 = ApiClient.getNamedConfiguration(notificationsConfigurationKey);
|
||||
function save(page) {
|
||||
const type = getParameterByName('type');
|
||||
const promise1 = ApiClient.getNamedConfiguration(notificationsConfigurationKey);
|
||||
// TODO: Check if this promise is really needed, as it's unused.
|
||||
var promise2 = ApiClient.getJSON(ApiClient.getUrl('Notifications/Types'));
|
||||
const promise2 = ApiClient.getJSON(ApiClient.getUrl('Notifications/Types'));
|
||||
Promise.all([promise1, promise2]).then(function (responses) {
|
||||
var notificationOptions = responses[0];
|
||||
var notificationConfig = notificationOptions.Options.filter(function (n) {
|
||||
const notificationOptions = responses[0];
|
||||
let notificationConfig = notificationOptions.Options.filter(function (n) {
|
||||
return n.Type == type;
|
||||
})[0];
|
||||
|
||||
|
@ -95,16 +95,16 @@ define(['jQuery', 'emby-checkbox'], function ($) {
|
|||
Dashboard.navigate('notificationsettings.html');
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function onSubmit() {
|
||||
function onSubmit() {
|
||||
save($(this).parents('.page'));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
var notificationsConfigurationKey = 'notifications';
|
||||
$(document).on('pageinit', '#notificationSettingPage', function () {
|
||||
var page = this;
|
||||
const notificationsConfigurationKey = 'notifications';
|
||||
$(document).on('pageinit', '#notificationSettingPage', function () {
|
||||
const page = this;
|
||||
$('#selectUsers', page).on('change', function () {
|
||||
if (this.value == 'Custom') {
|
||||
$('.selectCustomUsers', page).show();
|
||||
|
@ -113,7 +113,6 @@ define(['jQuery', 'emby-checkbox'], function ($) {
|
|||
}
|
||||
});
|
||||
$('.notificationSettingForm').off('submit', onSubmit).on('submit', onSubmit);
|
||||
}).on('pageshow', '#notificationSettingPage', function () {
|
||||
}).on('pageshow', '#notificationSettingPage', function () {
|
||||
reload(this);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
define(['loading', 'libraryMenu', 'globalize', 'listViewStyle', 'emby-button'], function(loading, libraryMenu, globalize) {
|
||||
'use strict';
|
||||
import loading from 'loading';
|
||||
import globalize from 'globalize';
|
||||
import 'listViewStyle';
|
||||
import 'emby-button';
|
||||
|
||||
loading = loading.default || loading;
|
||||
|
||||
function reload(page) {
|
||||
function reload(page) {
|
||||
loading.show();
|
||||
ApiClient.getJSON(ApiClient.getUrl('Notifications/Types')).then(function(list) {
|
||||
var html = '';
|
||||
var lastCategory = '';
|
||||
var showHelp = true;
|
||||
html += list.map(function(notification) {
|
||||
var itemHtml = '';
|
||||
ApiClient.getJSON(ApiClient.getUrl('Notifications/Types')).then(function (list) {
|
||||
let html = '';
|
||||
let lastCategory = '';
|
||||
let showHelp = true;
|
||||
html += list.map(function (notification) {
|
||||
let itemHtml = '';
|
||||
if (notification.Category !== lastCategory) {
|
||||
lastCategory = notification.Category;
|
||||
if (lastCategory) {
|
||||
|
@ -52,11 +52,10 @@ define(['loading', 'libraryMenu', 'globalize', 'listViewStyle', 'emby-button'],
|
|||
page.querySelector('.notificationList').innerHTML = html;
|
||||
loading.hide();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
return function(view, params) {
|
||||
view.addEventListener('viewshow', function() {
|
||||
export default function (view, params) {
|
||||
view.addEventListener('viewshow', function () {
|
||||
reload(view);
|
||||
});
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,22 +1,20 @@
|
|||
define(['loading', 'scripts/editorsidebar'], function (loading) {
|
||||
'use strict';
|
||||
import loading from 'loading';
|
||||
import 'scripts/editorsidebar';
|
||||
|
||||
loading = loading.default || loading;
|
||||
|
||||
function reload(context, itemId) {
|
||||
function reload(context, itemId) {
|
||||
loading.show();
|
||||
|
||||
if (itemId) {
|
||||
require(['metadataEditor'], function ({default: metadataEditor}) {
|
||||
import('metadataEditor').then(({ default: metadataEditor }) => {
|
||||
metadataEditor.embed(context.querySelector('.editPageInnerContent'), itemId, ApiClient.serverInfo().Id);
|
||||
});
|
||||
} else {
|
||||
context.querySelector('.editPageInnerContent').innerHTML = '';
|
||||
loading.hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return function (view, params) {
|
||||
export default function (view, params) {
|
||||
view.addEventListener('viewshow', function () {
|
||||
reload(this, MetadataEditor.getCurrentItemId());
|
||||
});
|
||||
|
@ -29,5 +27,4 @@ define(['loading', 'scripts/editorsidebar'], function (loading) {
|
|||
reload(view, data.id);
|
||||
}
|
||||
});
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
|
@ -1,5 +1,15 @@
|
|||
define(['appRouter', 'cardBuilder', 'dom', 'globalize', 'connectionManager', 'apphost', 'layoutManager', 'focusManager', 'emby-itemscontainer', 'emby-scroller'], function (appRouter, cardBuilder, dom, globalize, connectionManager, appHost, layoutManager, focusManager) {
|
||||
'use strict';
|
||||
import appRouter from 'appRouter';
|
||||
import cardBuilder from 'cardBuilder';
|
||||
import dom from 'dom';
|
||||
import globalize from 'globalize';
|
||||
import connectionManager from 'connectionManager';
|
||||
import appHost from 'apphost';
|
||||
import layoutManager from 'layoutManager';
|
||||
import focusManager from 'focusManager';
|
||||
import 'emby-itemscontainer';
|
||||
import 'emby-scroller';
|
||||
|
||||
/* eslint-disable indent */
|
||||
|
||||
function enableScrollX() {
|
||||
return true;
|
||||
|
@ -133,8 +143,8 @@ define(['appRouter', 'cardBuilder', 'dom', 'globalize', 'connectionManager', 'ap
|
|||
|
||||
function getFetchDataFn(section) {
|
||||
return function () {
|
||||
var apiClient = this.apiClient;
|
||||
var options = {
|
||||
const apiClient = this.apiClient;
|
||||
const options = {
|
||||
SortBy: (section.types, 'SeriesName,SortName'),
|
||||
SortOrder: 'Ascending',
|
||||
Filters: 'IsFavorite',
|
||||
|
@ -145,7 +155,7 @@ define(['appRouter', 'cardBuilder', 'dom', 'globalize', 'connectionManager', 'ap
|
|||
EnableTotalRecordCount: false
|
||||
};
|
||||
options.Limit = 20;
|
||||
var userId = apiClient.getCurrentUserId();
|
||||
const userId = apiClient.getCurrentUserId();
|
||||
|
||||
if (section.types === 'MusicArtist') {
|
||||
return apiClient.getArtists(userId, options);
|
||||
|
@ -170,16 +180,16 @@ define(['appRouter', 'cardBuilder', 'dom', 'globalize', 'connectionManager', 'ap
|
|||
|
||||
function getItemsHtmlFn(section) {
|
||||
return function (items) {
|
||||
var cardLayout = appHost.preferVisualCards && section.autoCardLayout && section.showTitle;
|
||||
let cardLayout = appHost.preferVisualCards && section.autoCardLayout && section.showTitle;
|
||||
cardLayout = false;
|
||||
var serverId = this.apiClient.serverId();
|
||||
var leadingButtons = layoutManager.tv ? [{
|
||||
const serverId = this.apiClient.serverId();
|
||||
const leadingButtons = layoutManager.tv ? [{
|
||||
name: globalize.translate('All'),
|
||||
id: 'more',
|
||||
icon: 'favorite',
|
||||
routeUrl: getRouteUrl(section, serverId)
|
||||
}] : null;
|
||||
var lines = 0;
|
||||
let lines = 0;
|
||||
|
||||
if (section.showTitle) {
|
||||
lines++;
|
||||
|
@ -215,23 +225,12 @@ define(['appRouter', 'cardBuilder', 'dom', 'globalize', 'connectionManager', 'ap
|
|||
};
|
||||
}
|
||||
|
||||
function FavoritesTab(view, params) {
|
||||
this.view = view;
|
||||
this.params = params;
|
||||
this.apiClient = connectionManager.currentApiClient();
|
||||
this.sectionsContainer = view.querySelector('.sections');
|
||||
createSections(this, this.sectionsContainer, this.apiClient);
|
||||
}
|
||||
|
||||
function createSections(instance, elem, apiClient) {
|
||||
var i;
|
||||
var length;
|
||||
var sections = getSections();
|
||||
var html = '';
|
||||
const sections = getSections();
|
||||
let html = '';
|
||||
|
||||
for (i = 0, length = sections.length; i < length; i++) {
|
||||
var section = sections[i];
|
||||
var sectionClass = 'verticalSection';
|
||||
for (const section of sections) {
|
||||
let sectionClass = 'verticalSection';
|
||||
|
||||
if (!section.showTitle) {
|
||||
sectionClass += ' verticalSection-extrabottompadding';
|
||||
|
@ -257,23 +256,32 @@ define(['appRouter', 'cardBuilder', 'dom', 'globalize', 'connectionManager', 'ap
|
|||
}
|
||||
|
||||
elem.innerHTML = html;
|
||||
var elems = elem.querySelectorAll('.itemsContainer');
|
||||
const elems = elem.querySelectorAll('.itemsContainer');
|
||||
|
||||
for (i = 0, length = elems.length; i < length; i++) {
|
||||
var itemsContainer = elems[i];
|
||||
for (let i = 0, length = elems.length; i < length; i++) {
|
||||
const itemsContainer = elems[i];
|
||||
itemsContainer.fetchData = getFetchDataFn(sections[i]).bind(instance);
|
||||
itemsContainer.getItemsHtml = getItemsHtmlFn(sections[i]).bind(instance);
|
||||
itemsContainer.parentContainer = dom.parentWithClass(itemsContainer, 'verticalSection');
|
||||
}
|
||||
}
|
||||
|
||||
FavoritesTab.prototype.onResume = function (options) {
|
||||
var promises = (this.apiClient, []);
|
||||
var view = this.view;
|
||||
var elems = this.sectionsContainer.querySelectorAll('.itemsContainer');
|
||||
class FavoritesTab {
|
||||
constructor(view, params) {
|
||||
this.view = view;
|
||||
this.params = params;
|
||||
this.apiClient = connectionManager.currentApiClient();
|
||||
this.sectionsContainer = view.querySelector('.sections');
|
||||
createSections(this, this.sectionsContainer, this.apiClient);
|
||||
}
|
||||
|
||||
for (var i = 0, length = elems.length; i < length; i++) {
|
||||
promises.push(elems[i].resume(options));
|
||||
onResume(options) {
|
||||
const promises = (this.apiClient, []);
|
||||
const view = this.view;
|
||||
const elems = this.sectionsContainer.querySelectorAll('.itemsContainer');
|
||||
|
||||
for (const elem of elems) {
|
||||
promises.push(elem.resume(options));
|
||||
}
|
||||
|
||||
Promise.all(promises).then(function () {
|
||||
|
@ -281,30 +289,32 @@ define(['appRouter', 'cardBuilder', 'dom', 'globalize', 'connectionManager', 'ap
|
|||
focusManager.autoFocus(view);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
FavoritesTab.prototype.onPause = function () {
|
||||
var elems = this.sectionsContainer.querySelectorAll('.itemsContainer');
|
||||
|
||||
for (var i = 0, length = elems.length; i < length; i++) {
|
||||
elems[i].pause();
|
||||
}
|
||||
};
|
||||
|
||||
FavoritesTab.prototype.destroy = function () {
|
||||
onPause() {
|
||||
const elems = this.sectionsContainer.querySelectorAll('.itemsContainer');
|
||||
|
||||
for (const elem of elems) {
|
||||
elem.pause();
|
||||
}
|
||||
}
|
||||
|
||||
destroy() {
|
||||
this.view = null;
|
||||
this.params = null;
|
||||
this.apiClient = null;
|
||||
var elems = this.sectionsContainer.querySelectorAll('.itemsContainer');
|
||||
const elems = this.sectionsContainer.querySelectorAll('.itemsContainer');
|
||||
|
||||
for (var i = 0, length = elems.length; i < length; i++) {
|
||||
elems[i].fetchData = null;
|
||||
elems[i].getItemsHtml = null;
|
||||
elems[i].parentContainer = null;
|
||||
for (const elem of elems) {
|
||||
elem.fetchData = null;
|
||||
elem.getItemsHtml = null;
|
||||
elem.parentContainer = null;
|
||||
}
|
||||
|
||||
this.sectionsContainer = null;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
return FavoritesTab;
|
||||
});
|
||||
export default FavoritesTab;
|
||||
|
||||
/* eslint-enable indent */
|
||||
|
|
|
@ -40,7 +40,7 @@ define(['tabbedView', 'globalize', 'require', 'emby-tabs', 'emby-button', 'emby-
|
|||
var controller = instance.tabControllers[index];
|
||||
|
||||
if (!controller) {
|
||||
controller = new controllerFactory(instance.view.querySelector(".tabContent[data-index='" + index + "']"), instance.params);
|
||||
controller = new controllerFactory.default(instance.view.querySelector(".tabContent[data-index='" + index + "']"), instance.params);
|
||||
instance.tabControllers[index] = controller;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,29 +1,21 @@
|
|||
define(['userSettings', 'loading', 'connectionManager', 'apphost', 'layoutManager', 'focusManager', 'homeSections', 'emby-itemscontainer'], function (userSettings, loading, connectionManager, appHost, layoutManager, focusManager, homeSections) {
|
||||
'use strict';
|
||||
import * as userSettings from 'userSettings';
|
||||
import loading from 'loading';
|
||||
import connectionManager from 'connectionManager';
|
||||
import focusManager from 'focusManager';
|
||||
import homeSections from 'homeSections';
|
||||
import 'emby-itemscontainer';
|
||||
|
||||
loading = loading.default || loading;
|
||||
|
||||
function HomeTab(view, params) {
|
||||
class HomeTab {
|
||||
constructor(view, params) {
|
||||
this.view = view;
|
||||
this.params = params;
|
||||
this.apiClient = connectionManager.currentApiClient();
|
||||
this.sectionsContainer = view.querySelector('.sections');
|
||||
view.querySelector('.sections').addEventListener('settingschange', onHomeScreenSettingsChanged.bind(this));
|
||||
}
|
||||
|
||||
function onHomeScreenSettingsChanged() {
|
||||
this.sectionsRendered = false;
|
||||
|
||||
if (!this.paused) {
|
||||
this.onResume({
|
||||
refresh: true
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
HomeTab.prototype.onResume = function (options) {
|
||||
onResume(options) {
|
||||
if (this.sectionsRendered) {
|
||||
var sectionsContainer = this.sectionsContainer;
|
||||
const sectionsContainer = this.sectionsContainer;
|
||||
|
||||
if (sectionsContainer) {
|
||||
return homeSections.resume(sectionsContainer, options);
|
||||
|
@ -33,8 +25,8 @@ define(['userSettings', 'loading', 'connectionManager', 'apphost', 'layoutManage
|
|||
}
|
||||
|
||||
loading.show();
|
||||
var view = this.view;
|
||||
var apiClient = this.apiClient;
|
||||
const view = this.view;
|
||||
const apiClient = this.apiClient;
|
||||
this.destroyHomeSections();
|
||||
this.sectionsRendered = true;
|
||||
return apiClient.getCurrentUser().then(function (user) {
|
||||
|
@ -46,31 +38,38 @@ define(['userSettings', 'loading', 'connectionManager', 'apphost', 'layoutManage
|
|||
loading.hide();
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
HomeTab.prototype.onPause = function () {
|
||||
var sectionsContainer = this.sectionsContainer;
|
||||
}
|
||||
onPause() {
|
||||
const sectionsContainer = this.sectionsContainer;
|
||||
|
||||
if (sectionsContainer) {
|
||||
homeSections.pause(sectionsContainer);
|
||||
}
|
||||
};
|
||||
|
||||
HomeTab.prototype.destroy = function () {
|
||||
}
|
||||
destroy() {
|
||||
this.view = null;
|
||||
this.params = null;
|
||||
this.apiClient = null;
|
||||
this.destroyHomeSections();
|
||||
this.sectionsContainer = null;
|
||||
};
|
||||
|
||||
HomeTab.prototype.destroyHomeSections = function () {
|
||||
var sectionsContainer = this.sectionsContainer;
|
||||
}
|
||||
destroyHomeSections() {
|
||||
const sectionsContainer = this.sectionsContainer;
|
||||
|
||||
if (sectionsContainer) {
|
||||
homeSections.destroySections(sectionsContainer);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
return HomeTab;
|
||||
});
|
||||
function onHomeScreenSettingsChanged() {
|
||||
this.sectionsRendered = false;
|
||||
|
||||
if (!this.paused) {
|
||||
this.onResume({
|
||||
refresh: true
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default HomeTab;
|
||||
|
|
|
@ -1,32 +1,30 @@
|
|||
define(['events', 'loading', 'globalize'], function (events, loading, globalize) {
|
||||
'use strict';
|
||||
import events from 'events';
|
||||
import loading from 'loading';
|
||||
import globalize from 'globalize';
|
||||
|
||||
loading = loading.default || loading;
|
||||
|
||||
function onListingsSubmitted() {
|
||||
function onListingsSubmitted() {
|
||||
Dashboard.navigate('livetvstatus.html');
|
||||
}
|
||||
}
|
||||
|
||||
function init(page, type, providerId) {
|
||||
var url = 'components/tvproviders/' + type + '.js';
|
||||
function init(page, type, providerId) {
|
||||
const url = 'components/tvproviders/' + type + '.js';
|
||||
|
||||
require([url], function (factory) {
|
||||
var instance = new factory(page, providerId, {});
|
||||
import(url).then(({default: factory}) => {
|
||||
const instance = new factory(page, providerId, {});
|
||||
events.on(instance, 'submitted', onListingsSubmitted);
|
||||
instance.init();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function loadTemplate(page, type, providerId) {
|
||||
require(['text!./components/tvproviders/' + type + '.template.html'], function (html) {
|
||||
function loadTemplate(page, type, providerId) {
|
||||
import('text!./../components/tvproviders/' + type + '.template.html').then(({default: html}) => {
|
||||
page.querySelector('.providerTemplate').innerHTML = globalize.translateHtml(html);
|
||||
init(page, type, providerId);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
pageIdOn('pageshow', 'liveTvGuideProviderPage', function () {
|
||||
pageIdOn('pageshow', 'liveTvGuideProviderPage', function () {
|
||||
loading.show();
|
||||
var providerId = getParameterByName('id');
|
||||
const providerId = getParameterByName('id');
|
||||
loadTemplate(this, getParameterByName('type'), providerId);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="preload">
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<meta name="msapplication-tap-highlight" content="no">
|
||||
|
||||
<meta http-equiv="X-UA-Compatibility" content="IE=Edge">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
|
@ -15,10 +13,9 @@
|
|||
<meta name="robots" content="noindex, nofollow, noarchive">
|
||||
<meta property="og:title" content="Jellyfin">
|
||||
<meta property="og:site_name" content="Jellyfin">
|
||||
<meta property="og:url" content="http://jellyfin.media">
|
||||
<meta property="og:description" content="The Free Software Media System.">
|
||||
<meta property="og:url" content="http://jellyfin.org">
|
||||
<meta property="og:description" content="The Free Software Media System">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="fb:app_id" content="1618309211750238">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="touchicon.png">
|
||||
|
||||
<!-- iPhone 5 -->
|
||||
|
@ -64,7 +61,6 @@
|
|||
<link rel="shortcut icon" href="favicon.ico">
|
||||
<meta name="msapplication-TileImage" content="touchicon144.png">
|
||||
<meta name="msapplication-TileColor" content="#333333">
|
||||
<meta name="theme-color" content="#101010">
|
||||
|
||||
<title>Jellyfin</title>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Jellyfin",
|
||||
"description": "Jellyfin: the Free Software Media System.",
|
||||
"description": "The Free Software Media System",
|
||||
"lang": "en-US",
|
||||
"short_name": "Jellyfin",
|
||||
"start_url": "index.html#!/home.html",
|
||||
|
|
|
@ -365,7 +365,7 @@ define(['appSettings', 'userSettings', 'playbackManager', 'connectionManager', '
|
|||
}
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
require(['chromecastHelper'], function (chromecastHelper) {
|
||||
require(['./chromecastHelper'], function (chromecastHelper) {
|
||||
chromecastHelper.getServerAddress(apiClient).then(function (serverAddress) {
|
||||
message.serverAddress = serverAddress;
|
||||
player.sendMessageInternal(message).then(resolve, reject);
|
||||
|
|
8
src/scripts/autoThemes.js
Normal file
8
src/scripts/autoThemes.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
import * as userSettings from 'userSettings';
|
||||
import skinManager from 'skinManager';
|
||||
import connectionManager from 'connectionManager';
|
||||
import events from 'events';
|
||||
|
||||
events.on(connectionManager, 'localusersignedin', function (e, user) {
|
||||
skinManager.setTheme(userSettings.theme());
|
||||
});
|
|
@ -35,6 +35,7 @@ import appHost from 'apphost';
|
|||
if (eventListenerCount) {
|
||||
eventListenerCount--;
|
||||
}
|
||||
|
||||
dom.removeEventListener(scope, 'command', fn, {});
|
||||
}
|
||||
|
||||
|
|
|
@ -80,43 +80,6 @@ import events from 'events';
|
|||
return val ? parseInt(val) : null;
|
||||
}
|
||||
|
||||
export function syncOnlyOnWifi(val) {
|
||||
if (val !== undefined) {
|
||||
this.set('syncOnlyOnWifi', val.toString());
|
||||
}
|
||||
|
||||
return this.get('syncOnlyOnWifi') !== 'false';
|
||||
}
|
||||
|
||||
export function syncPath(val) {
|
||||
if (val !== undefined) {
|
||||
this.set('syncPath', val);
|
||||
}
|
||||
|
||||
return this.get('syncPath');
|
||||
}
|
||||
|
||||
export function cameraUploadServers(val) {
|
||||
if (val !== undefined) {
|
||||
this.set('cameraUploadServers', val.join(','));
|
||||
}
|
||||
|
||||
val = this.get('cameraUploadServers');
|
||||
if (val) {
|
||||
return val.split(',');
|
||||
}
|
||||
|
||||
return [];
|
||||
}
|
||||
|
||||
export function runAtStartup(val) {
|
||||
if (val !== undefined) {
|
||||
this.set('runatstartup', val.toString());
|
||||
}
|
||||
|
||||
return this.get('runatstartup') === 'true';
|
||||
}
|
||||
|
||||
export function set(name, value, userId) {
|
||||
const currentValue = this.get(name, userId);
|
||||
appStorage.setItem(getKey(name, userId), value);
|
||||
|
@ -139,10 +102,6 @@ export default {
|
|||
maxStreamingBitrate: maxStreamingBitrate,
|
||||
maxStaticMusicBitrate: maxStaticMusicBitrate,
|
||||
maxChromecastBitrate: maxChromecastBitrate,
|
||||
syncOnlyOnWifi: syncOnlyOnWifi,
|
||||
syncPath: syncPath,
|
||||
cameraUploadServers: cameraUploadServers,
|
||||
runAtStartup: runAtStartup,
|
||||
set: set,
|
||||
get: get
|
||||
};
|
||||
|
|
|
@ -18,7 +18,7 @@ function getDefaultConfig() {
|
|||
});
|
||||
}
|
||||
|
||||
export function enableMultiServer() {
|
||||
export function getMultiServer() {
|
||||
return getConfig().then(config => {
|
||||
return config.multiserver;
|
||||
}).catch(error => {
|
||||
|
@ -26,3 +26,21 @@ export function enableMultiServer() {
|
|||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
export function getThemes() {
|
||||
return getConfig().then(config => {
|
||||
return config.themes;
|
||||
}).catch(error => {
|
||||
console.log('cannot get web config:', error);
|
||||
return [];
|
||||
});
|
||||
}
|
||||
|
||||
export function getPlugins() {
|
||||
return getConfig().then(config => {
|
||||
return config.plugins;
|
||||
}).catch(error => {
|
||||
console.log('cannot get web config:', error);
|
||||
return [];
|
||||
});
|
||||
}
|
||||
|
|
|
@ -152,13 +152,13 @@ var Dashboard = {
|
|||
processPluginConfigurationUpdateResult: function () {
|
||||
require(['loading', 'toast'], function (loading, toast) {
|
||||
loading.hide();
|
||||
toast(Globalize.translate('MessageSettingsSaved'));
|
||||
toast.default(Globalize.translate('MessageSettingsSaved'));
|
||||
});
|
||||
},
|
||||
processServerConfigurationUpdateResult: function (result) {
|
||||
require(['loading', 'toast'], function (loading, toast) {
|
||||
loading.hide();
|
||||
toast(Globalize.translate('MessageSettingsSaved'));
|
||||
toast.default(Globalize.translate('MessageSettingsSaved'));
|
||||
});
|
||||
},
|
||||
processErrorResponse: function (response) {
|
||||
|
@ -180,7 +180,7 @@ var Dashboard = {
|
|||
alert: function (options) {
|
||||
if (typeof options == 'string') {
|
||||
return void require(['toast'], function (toast) {
|
||||
toast({
|
||||
toast.default({
|
||||
text: options
|
||||
});
|
||||
});
|
||||
|
@ -477,37 +477,31 @@ function initClient() {
|
|||
|
||||
function loadPlugins(appHost, browser, shell) {
|
||||
console.debug('loading installed plugins');
|
||||
var list = [
|
||||
'plugins/playAccessValidation/plugin',
|
||||
'plugins/experimentalWarnings/plugin',
|
||||
'plugins/htmlAudioPlayer/plugin',
|
||||
'plugins/htmlVideoPlayer/plugin',
|
||||
'plugins/photoPlayer/plugin',
|
||||
'plugins/bookPlayer/plugin',
|
||||
'plugins/youtubePlayer/plugin',
|
||||
'plugins/backdropScreensaver/plugin',
|
||||
'plugins/logoScreensaver/plugin'
|
||||
];
|
||||
return new Promise(function (resolve, reject) {
|
||||
require(['webSettings'], function (webSettings) {
|
||||
webSettings.getPlugins().then(function (list) {
|
||||
// these two plugins are dependent on features
|
||||
if (!appHost.supports('remotecontrol')) {
|
||||
list.splice(list.indexOf('sessionPlayer'), 1);
|
||||
|
||||
if (appHost.supports('remotecontrol')) {
|
||||
list.push('plugins/sessionPlayer/plugin');
|
||||
|
||||
if (browser.chrome || browser.edgeChromium || browser.opera) {
|
||||
list.push('plugins/chromecastPlayer/plugin');
|
||||
if (!browser.chrome && !browser.opera) {
|
||||
list.splice(list.indexOf('chromecastPlayer', 1));
|
||||
}
|
||||
}
|
||||
|
||||
// add any native plugins
|
||||
if (window.NativeShell) {
|
||||
list = list.concat(window.NativeShell.getPlugins());
|
||||
}
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
Promise.all(list.map(loadPlugin)).then(function () {
|
||||
require(['packageManager'], function (packageManager) {
|
||||
packageManager.init().then(resolve, reject);
|
||||
});
|
||||
}, reject);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function loadPlugin(url) {
|
||||
|
@ -532,7 +526,7 @@ function initClient() {
|
|||
|
||||
window.Emby.Page = appRouter;
|
||||
|
||||
require(['emby-button', 'scripts/themeLoader', 'libraryMenu', 'scripts/routes'], function () {
|
||||
require(['emby-button', 'scripts/autoThemes', 'libraryMenu', 'scripts/routes'], function () {
|
||||
Emby.Page.start({
|
||||
click: false,
|
||||
hashbang: true
|
||||
|
@ -653,8 +647,7 @@ function initClient() {
|
|||
nowPlayingHelper: componentsPath + '/playback/nowplayinghelper',
|
||||
pluginManager: componentsPath + '/pluginManager',
|
||||
packageManager: componentsPath + '/packageManager',
|
||||
screensaverManager: componentsPath + '/screensavermanager',
|
||||
chromecastHelper: 'plugins/chromecastPlayer/chromecastHelpers'
|
||||
screensaverManager: componentsPath + '/screensavermanager'
|
||||
};
|
||||
|
||||
requirejs.onError = onRequireJsError;
|
||||
|
@ -848,7 +841,7 @@ function initClient() {
|
|||
define('viewContainer', [componentsPath + '/viewContainer'], returnFirstDependency);
|
||||
define('dialogHelper', [componentsPath + '/dialogHelper/dialogHelper'], returnFirstDependency);
|
||||
define('serverNotifications', [scriptsPath + '/serverNotifications'], returnFirstDependency);
|
||||
define('skinManager', [componentsPath + '/skinManager'], returnFirstDependency);
|
||||
define('skinManager', [scriptsPath + '/themeManager'], returnFirstDependency);
|
||||
define('keyboardnavigation', [scriptsPath + '/keyboardNavigation'], returnFirstDependency);
|
||||
define('mouseManager', [scriptsPath + '/mouseManager'], returnFirstDependency);
|
||||
define('scrollManager', [componentsPath + '/scrollManager'], returnFirstDependency);
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
import * as userSettings from 'userSettings';
|
||||
import skinManager from 'skinManager';
|
||||
import connectionManager from 'connectionManager';
|
||||
import events from 'events';
|
||||
|
||||
var currentViewType;
|
||||
pageClassOn('viewbeforeshow', 'page', function () {
|
||||
var classList = this.classList;
|
||||
var viewType = classList.contains('type-interior') || classList.contains('wizardPage') ? 'a' : 'b';
|
||||
|
||||
if (viewType !== currentViewType) {
|
||||
currentViewType = viewType;
|
||||
var theme;
|
||||
var context;
|
||||
|
||||
if (viewType === 'a') {
|
||||
theme = userSettings.dashboardTheme();
|
||||
context = 'serverdashboard';
|
||||
} else {
|
||||
theme = userSettings.theme();
|
||||
}
|
||||
|
||||
skinManager.setTheme(theme, context);
|
||||
}
|
||||
});
|
||||
|
||||
events.on(connectionManager, 'localusersignedin', function (e, user) {
|
||||
currentViewType = null;
|
||||
});
|
66
src/scripts/themeManager.js
Normal file
66
src/scripts/themeManager.js
Normal file
|
@ -0,0 +1,66 @@
|
|||
import * as webSettings from 'webSettings';
|
||||
|
||||
var themeStyleElement;
|
||||
var currentThemeId;
|
||||
|
||||
function unloadTheme() {
|
||||
var elem = themeStyleElement;
|
||||
if (elem) {
|
||||
elem.parentNode.removeChild(elem);
|
||||
themeStyleElement = null;
|
||||
currentThemeId = null;
|
||||
}
|
||||
}
|
||||
|
||||
function getThemes() {
|
||||
return webSettings.getThemes();
|
||||
}
|
||||
|
||||
function getThemeStylesheetInfo(id) {
|
||||
return getThemes().then(themes => {
|
||||
var theme = themes.find(theme => {
|
||||
return id ? theme.id === id : theme.default;
|
||||
});
|
||||
|
||||
return {
|
||||
stylesheetPath: 'themes/' + theme.id + '/theme.css',
|
||||
themeId: theme.id
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
function setTheme(id) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
if (currentThemeId && currentThemeId === id) {
|
||||
resolve();
|
||||
return;
|
||||
}
|
||||
|
||||
getThemeStylesheetInfo(id).then(function (info) {
|
||||
if (currentThemeId && currentThemeId === info.themeId) {
|
||||
resolve();
|
||||
return;
|
||||
}
|
||||
|
||||
var linkUrl = info.stylesheetPath;
|
||||
unloadTheme();
|
||||
|
||||
var link = document.createElement('link');
|
||||
link.setAttribute('rel', 'stylesheet');
|
||||
link.setAttribute('type', 'text/css');
|
||||
link.onload = function () {
|
||||
resolve();
|
||||
};
|
||||
|
||||
link.setAttribute('href', linkUrl);
|
||||
document.head.appendChild(link);
|
||||
themeStyleElement = link;
|
||||
currentThemeId = info.themeId;
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
export default {
|
||||
getThemes: getThemes,
|
||||
setTheme: setTheme
|
||||
};
|
|
@ -36,7 +36,6 @@
|
|||
"AddToPlaylist": "Voeg by speellys",
|
||||
"AddToPlayQueue": "Plaas in wagtou",
|
||||
"AddToCollection": "Voeg by versameling",
|
||||
"AddItemToCollectionHelp": "Voeg items by die versamelings deur hulle te soek en regs-kliek of kliek kieslys om hulle by versameling te voeg.",
|
||||
"Add": "Voeg by",
|
||||
"Actor": "Akteur",
|
||||
"AccessRestrictedTryAgainLater": "Toegang is beperk. Probeer weer later .",
|
||||
|
@ -84,7 +83,6 @@
|
|||
"Watched": "Gekyk",
|
||||
"ViewPlaybackInfo": "Beskou terugspeel inligting",
|
||||
"ViewAlbum": "Beskou album",
|
||||
"VideoRange": "Video reekse",
|
||||
"Vertical": "Vertikaal",
|
||||
"ValueVideoCodec": "Video Kodek: {0}",
|
||||
"ValueTimeLimitSingleHour": "Tyd limiet: 1 uur",
|
||||
|
@ -149,7 +147,6 @@
|
|||
"TabProfiles": "Profiele",
|
||||
"TabProfile": "Profiel",
|
||||
"TabPlaylists": "Speel lyste",
|
||||
"TabPlaylist": "Speel lys",
|
||||
"TabPlayback": "Terugspeel",
|
||||
"TabPassword": "Wagwoord",
|
||||
"TabParentalControl": "Ouer Beheer",
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"AddItemToCollectionHelp": "أضف عناصر إلى المجاميع بالبحث عنهم واستخدام قائمة الزر الأيمن أو قئامة اللمس لإضافتهم إلى المجاميع.",
|
||||
"AdditionalNotificationServices": "تصفح كتالوج الملحقات لتثبيث خدمات إشعارات إضافية.",
|
||||
"Alerts": "التنبيهات",
|
||||
"All": "الكل",
|
||||
|
@ -40,7 +39,6 @@
|
|||
"ButtonHelp": "المساعدة",
|
||||
"ButtonHome": "الرئيسية",
|
||||
"ButtonInfo": "معلومات",
|
||||
"ButtonLearnMore": "إعرف المزيد",
|
||||
"ButtonLibraryAccess": "صلاحيات المكتبة",
|
||||
"ButtonManualLogin": "الدخول اليدوي",
|
||||
"ButtonMore": "المزيد",
|
||||
|
@ -85,7 +83,6 @@
|
|||
"ButtonTrailer": "العرض الإعلاني",
|
||||
"ButtonUninstall": "إزالة التثبيت",
|
||||
"ButtonUp": "أعلى",
|
||||
"ButtonViewWebsite": "أنظر الموقع الإلكتروني",
|
||||
"ButtonWebsite": "موقع إلكتروني",
|
||||
"ChannelAccessHelp": "إختر قناة لمشاركتها مع هذا المستخدم. المدراء سيكونون قادرين على تغيير إعدادات القنوات باستخدام مدير واصفات البيانات.",
|
||||
"Channels": "القنوات",
|
||||
|
@ -151,7 +148,6 @@
|
|||
"HeaderApiKeysHelp": "التطبيقات الخارجية تحتاج أن تمتلك مفتاح api لكي تتصل بخادم أمبي. هذه المفاتيح تُصدر عن طريق تسجيل الدخول بحساب أمبي، أو عن طريق منح التطبيق مفتاحاً أصدر يدوياً.",
|
||||
"HeaderApp": "التطبيق",
|
||||
"HeaderAudioSettings": "إعدادات الصوت",
|
||||
"HeaderAutomaticUpdates": "التحديثات الآلية",
|
||||
"HeaderBooks": "الكتب",
|
||||
"HeaderBranding": "وسومات البرنامج",
|
||||
"HeaderCastAndCrew": "الممثلين وطاقم العمل",
|
||||
|
@ -313,8 +309,6 @@
|
|||
"LabelAlbumArtists": "فنانو الألبومات:",
|
||||
"LabelAll": "الجميع",
|
||||
"LabelAllowHWTranscoding": "السماح بالتشفير البيني بعتاد الحاسب",
|
||||
"LabelAllowServerAutoRestart": "السماح للخادم أن يعيد التشغيل آلياً لتفعيل التحديثات",
|
||||
"LabelAllowServerAutoRestartHelp": "الخادم سيعيد التشغيل في فترات الركود فقط، حين لا يكون هناك أي مستخدمين متصلين.",
|
||||
"LabelAppName": "اسم التطبيق",
|
||||
"LabelAppNameExample": "مثال: Sickbeard، NzbDrone",
|
||||
"LabelArtists": "الفنانون:",
|
||||
|
@ -552,7 +546,6 @@
|
|||
"LabelXDlnaCapHelp": "تحدد محتوى عنصر X_DLNACAP في النطاق الاسمي لـ urn:schemas-dlna-org:device-1-0 .",
|
||||
"LabelXDlnaDoc": "وثيقة X-Dlna:",
|
||||
"LabelXDlnaDocHelp": "تحدد محتوى عنصر X_DLNADOC في النطاق الاسمي لـ urn:schemas-dlna-org:device-1-0 .",
|
||||
"LabelYourFirstName": "الإسم الاول:",
|
||||
"LabelYoureDone": "تم الانتهاء!",
|
||||
"LabelZipCode": "الرمز البريدي:",
|
||||
"LabelffmpegPath": "مسار ffmpeg:",
|
||||
|
@ -603,7 +596,6 @@
|
|||
"MessageFileReadError": "حصل خطأ أثناء قراءة الملف. الرجاء المحاولة مرة اخرى.",
|
||||
"MessageForgotPasswordFileCreated": "الملف التالي قد أنشيء على خادمك وهو يحتوي على التوجيهات لكيفية البدء:",
|
||||
"MessageForgotPasswordInNetworkRequired": "الرجاء المحاولة من خلال شبكة المنزل لبدء عملية إعادة إعداد كملة السر.",
|
||||
"MessageInstallPluginFromApp": "هذا الملحق يجب أن يثبت من داخل التطبيق الذي تريد استخدامه بداخله.",
|
||||
"MessageInvalidForgotPasswordPin": "لقد تم إدخال رمز شخصي غير صحيح أو منتهي الصلاحية. الرجاء المحاولة مرة أخرى.",
|
||||
"MessageInvalidUser": "اسم المستخدم أو كلمة السر غير صحيحة. الرجاء المحاولة مرة أخرى.",
|
||||
"MessageItemSaved": "تم حفظ العنصر.",
|
||||
|
@ -834,7 +826,6 @@
|
|||
"TabParentalControl": "التحكم الأبوي",
|
||||
"TabPassword": "كلمة السر",
|
||||
"TabPlayback": "تشغيل",
|
||||
"TabPlaylist": "قائمة التشغيل",
|
||||
"TabPlaylists": "قوائم التشغيل",
|
||||
"TabPlugins": "الملحقات",
|
||||
"TabProfile": "عريضة",
|
||||
|
@ -938,7 +929,6 @@
|
|||
"Banner": "بانر",
|
||||
"Backdrops": "خلفيات متغيرة للصفحة",
|
||||
"Backdrop": "خلفية متغيرة للصفحة",
|
||||
"AutoBasedOnLanguageSetting": "تلقائي ( بناءً على إعدادات اللغة)",
|
||||
"Auto": "تلقائي",
|
||||
"AuthProviderHelp": "حدد مقدم المصادقات ليتم استخدامه لمصادقة كلمة مرور هذا المستخدم.",
|
||||
"AroundTime": "حول",
|
||||
|
@ -997,7 +987,6 @@
|
|||
"MediaInfoStreamTypeEmbeddedImage": "الصورة المضمنة",
|
||||
"MediaInfoStreamTypeData": "البيانات",
|
||||
"MediaInfoStreamTypeAudio": "الصوت",
|
||||
"MediaInfoSoftware": "البرمجيات",
|
||||
"MediaIsBeingConverted": "يتم تحويل الوسط الى صيغة متوافقة مع الحهاز الذي يشغل الوسط.",
|
||||
"MediaInfoStreamTypeVideo": "فيديو",
|
||||
"ContinueWatching": "اكمل المشاهدة",
|
||||
|
@ -1059,7 +1048,6 @@
|
|||
"DefaultSubtitlesHelp": "يتم تحميل الترجمات استنادًا إلى العلامات الافتراضية والقسرية في البيانات الوصفية المضمنة. سيتم اعتبار تفضيلات اللغة عند توفر خيارات متعددة.",
|
||||
"DefaultMetadataLangaugeDescription": "هذه هي إعداداتك الافتراضية ويمكن تخصيصها على أساس كل مكتبة.",
|
||||
"Default": "افتراضي",
|
||||
"CopyStreamURLError": "توجد مشكله في نسخ الرابط",
|
||||
"CopyStreamURL": "نسخ عنوان الرابط",
|
||||
"Continuing": "مستمر",
|
||||
"CopyStreamURLSuccess": "URL copied successfully.",
|
||||
|
|
|
@ -11,10 +11,8 @@
|
|||
"LabelFinish": "Гатова",
|
||||
"LabelNext": "Наступнае",
|
||||
"LabelPrevious": "Папярэдняе",
|
||||
"LabelYourFirstName": "Ваша імя:",
|
||||
"LabelYoureDone": "Вы скончылі!",
|
||||
"MoreUsersCanBeAddedLater": "Потым можна дадаць яшчэ карыстальнікаў праз «Інфапанэль».",
|
||||
"TabPlaylist": "Плэйліст",
|
||||
"TellUsAboutYourself": "Раскажыце пра сябе",
|
||||
"ThisWizardWillGuideYou": "Гэты памочнік правядзе вас праз усе фазы ўстаноўкі і налады. Спачатку абярыце упадабаную мову.",
|
||||
"UserProfilesIntro": "У Jellyfin існуе ўбудаваная падтрымка для карыстальніцкіх профіляў, дазваляючы кожнаму карыстальніку валодаць сваімі ўласнымі параметрамі адлюстравання, станам прайгравання і кіраваннем ўтрымання.",
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
"AttributeNew": "Нови",
|
||||
"Audio": "Звук",
|
||||
"Auto": "Автоматично",
|
||||
"AutoBasedOnLanguageSetting": "Автоматично (според езика)",
|
||||
"Backdrop": "Фон",
|
||||
"Backdrops": "Фонове",
|
||||
"BirthDateValue": "Роден/а на: {0}",
|
||||
|
@ -45,7 +44,6 @@
|
|||
"ButtonHelp": "Помощ",
|
||||
"ButtonHome": "Начало",
|
||||
"ButtonInfo": "Сведения",
|
||||
"ButtonLearnMore": "Научете повече",
|
||||
"ButtonLibraryAccess": "Достъп до библиотеката",
|
||||
"ButtonManualLogin": "Вход с име и парола",
|
||||
"ButtonMore": "Още",
|
||||
|
@ -159,7 +157,6 @@
|
|||
"HeaderApiKeys": "ППИ ключове",
|
||||
"HeaderApp": "Програма",
|
||||
"HeaderAudioSettings": "Настройки на звука",
|
||||
"HeaderAutomaticUpdates": "Автоматични обновления",
|
||||
"HeaderBooks": "Книги",
|
||||
"HeaderCastAndCrew": "Артисти и изпълнители",
|
||||
"HeaderCastCrew": "Артисти и изпълнители",
|
||||
|
@ -285,8 +282,6 @@
|
|||
"LabelAlbumArtMaxWidth": "Максимална ширина на албумното изкуство:",
|
||||
"LabelAlbumArtPN": "ПН на албумното изкуство:",
|
||||
"LabelAlbumArtists": "Изпълнители на албума:",
|
||||
"LabelAllowServerAutoRestart": "Разрешаване на сървъра автоматично да се пуска повторно за прилагане на обновления",
|
||||
"LabelAllowServerAutoRestartHelp": "Сървърът ще се пуска наново само през ненатоварено време, когато няма активни потребители.",
|
||||
"LabelAppName": "Име",
|
||||
"LabelArtists": "Изпълнители:",
|
||||
"LabelArtistsHelp": "Отделете няколко с ;",
|
||||
|
@ -307,7 +302,6 @@
|
|||
"LabelCustomCssHelp": "Добавете собствен стил към уеб-интерфейса.",
|
||||
"LabelCustomDeviceDisplayName": "Показвано име:",
|
||||
"LabelCustomRating": "Оценка по избор:",
|
||||
"LabelDashboardTheme": "Облик на сървърното табло:",
|
||||
"LabelDateAdded": "Дата на добавяне:",
|
||||
"LabelDateTimeLocale": "Местоположение за дата и час:",
|
||||
"LabelDay": "Ден:",
|
||||
|
@ -452,13 +446,11 @@
|
|||
"LabelUsername": "Потребителско име:",
|
||||
"LabelVersion": "Версия:",
|
||||
"LabelYear": "Година:",
|
||||
"LabelYourFirstName": "Първото ви име:",
|
||||
"LabelYoureDone": "Готови сте!",
|
||||
"Large": "Голям",
|
||||
"LatestFromLibrary": "Последни {0}",
|
||||
"LibraryAccessHelp": "Изберете библиотеките, които да споделите с потребителя. Администраторите ще могат да редактират всички папки, използвайки управлението на метаданни.",
|
||||
"Like": "Харесване",
|
||||
"LinksValue": "Препратки: {0}",
|
||||
"List": "Списък",
|
||||
"Live": "На живо",
|
||||
"LiveTV": "Телевизия на живо",
|
||||
|
@ -715,7 +707,6 @@
|
|||
"TabParentalControl": "Родителски контрол",
|
||||
"TabPassword": "Парола",
|
||||
"TabPlayback": "Възпроизвеждане",
|
||||
"TabPlaylist": "Списък",
|
||||
"TabPlaylists": "Списъци",
|
||||
"TabPlugins": "Приставки",
|
||||
"TabProfile": "Профил",
|
||||
|
@ -817,7 +808,6 @@
|
|||
"ReplaceExistingImages": "Заменяне на текущите изображения",
|
||||
"Channels": "Канали",
|
||||
"Categories": "Категории",
|
||||
"ButtonViewWebsite": "Преглед на сайта",
|
||||
"ButtonUp": "Нагоре",
|
||||
"ButtonTrailer": "Предварителен откъс",
|
||||
"ButtonStart": "Пускане",
|
||||
|
@ -830,7 +820,6 @@
|
|||
"ButtonConnect": "Свързване",
|
||||
"AllowOnTheFlySubtitleExtraction": "Позволява моментално извличане на поднадписи",
|
||||
"AllowHWTranscodingHelp": "Позволява на тунера да прекодира моментално. Това може да помогне за редуциране на прекодирането от сървъра.",
|
||||
"AddItemToCollectionHelp": "Добавяне към колекция чрез търсенето им и използване на дясно-щракване с мишката или контекстното меню.",
|
||||
"Absolute": "Aбсолютен",
|
||||
"LabelLanNetworks": "Локални мрежи:",
|
||||
"LabelKodiMetadataSaveImagePathsHelp": "Това е препоръчително, ако наименованието на изображенията не са съобразени с изискванията на Kodi.",
|
||||
|
@ -885,7 +874,6 @@
|
|||
"ErrorDefault": "Възникна грешка при изпълнение на заявката. Моля опитайте по-късно.",
|
||||
"CustomDlnaProfilesHelp": "Създаване на персонализиран профил за целево устройство или заменяне на системния профил.",
|
||||
"CopyStreamURL": "Копиране URL на стрийма",
|
||||
"CopyStreamURLError": "Възникна грешка при копиране на URL.",
|
||||
"CopyStreamURLSuccess": "URL се копира успешно.",
|
||||
"Connect": "Свързване",
|
||||
"ConfirmEndPlayerSession": "Искате ли да изключите Jellyfin на {0}?",
|
||||
|
@ -1140,7 +1128,6 @@
|
|||
"LabelNumber": "Номер:",
|
||||
"LabelNotificationEnabled": "Включване на известие",
|
||||
"LabelNewsCategories": "Категории новини:",
|
||||
"LabelNightly": "Тестов",
|
||||
"LabelStable": "Стабилна",
|
||||
"LabelChromecastVersion": "Версия на Chromecast",
|
||||
"LabelMusicStreamingTranscodingBitrateHelp": "Посочете максимален битрейт при поточно предаване на музика.",
|
||||
|
@ -1223,7 +1210,6 @@
|
|||
"XmlDocumentAttributeListHelp": "Тези атрибути се прилагат към коренния елемент на всеки XML отговор.",
|
||||
"Whitelist": "Бял списък",
|
||||
"ViewPlaybackInfo": "Вижте информация за възпроизвеждането",
|
||||
"VideoRange": "Диапазон на видео",
|
||||
"ValueTimeLimitSingleHour": "Времеви лимит: 1 час",
|
||||
"ValueTimeLimitMultiHour": "Времеви лимит {0} часове",
|
||||
"ValueContainer": "Контейнер: {0}",
|
||||
|
@ -1284,12 +1270,10 @@
|
|||
"LabelStreamType": "Вид на потока:",
|
||||
"LabelStopping": "Спиране",
|
||||
"LabelSportsCategories": "Спортни категории:",
|
||||
"LabelSoundEffects": "Звукови ефекти:",
|
||||
"LabelSortTitle": "Подреди по заглавие:",
|
||||
"LabelSonyAggregationFlags": "\"Флагове\" за статистическа обработка на Сони:",
|
||||
"LabelSkipIfGraphicalSubsPresentHelp": "Наличието на текстови версии на субтитрите ще доведе до по-ефективна доставка и намаляване на вероятността от транскодиране на видеото.",
|
||||
"LabelSkipIfAudioTrackPresentHelp": "Махнете отметката ,за да се гарантира ,че всички видеофайлове имат субтитри,независимо от езика на аудиото им.",
|
||||
"LabelSkin": "Облик:",
|
||||
"LabelSize": "Размер:",
|
||||
"LabelSimultaneousConnectionLimit": "Ограничение на броя едновременни потоци:",
|
||||
"LabelServerName": "Име на сървъра:",
|
||||
|
@ -1306,7 +1290,6 @@
|
|||
"MessageConfirmAppExit": "Искате ли да излезете?",
|
||||
"MessageAreYouSureDeleteSubtitles": "Сигурни ли се ,че искате да изтриете файла със субтитри?",
|
||||
"MediaIsBeingConverted": "Медията е конвертирана във формат ,който е съвместим с устройството ,което ще я възпроизведе.",
|
||||
"MediaInfoSoftware": "Софтуер",
|
||||
"MediaInfoTimestamp": "Времеви отпечатък",
|
||||
"MediaInfoSampleRate": "Кадрова честота",
|
||||
"MediaInfoRefFrames": "Ref кадри",
|
||||
|
@ -1320,8 +1303,6 @@
|
|||
"LiveBroadcasts": "Предавания на живо",
|
||||
"LeaveBlankToNotSetAPassword": "Можете да оставите това поле празно и да не задавате парола.",
|
||||
"LearnHowYouCanContribute": "Научете как можете да допринесете.",
|
||||
"LaunchWebAppOnStartupHelp": "Отвори уеб клиента във браузъра по подразбиране при първото стартиране на сървъра.Това няма да се случи при използване на функцията на сървъра за рестартиране.",
|
||||
"LaunchWebAppOnStartup": "Стартирай уеб интерфейса ,когато се стартира сървъра",
|
||||
"LanNetworksHelp": "Списък разделен със запетая съдържащ ИП адреси или записи за ИП/мрежова маски отнасящи се за мрежи ,които ще се считат за локални ,когато се налагат ограничения в честотната лента.Ако е зададено всички други ИП адреси ще се считат за принадлежащи към външни мрежи и за тях ще важат правилата за ограничения на външни ИП -та.Ако полето е празно ще се счита ,че само подмрежата на сървъра е част от локалната мрежа.",
|
||||
"LabelffmpegPathHelp": "Пътят към файла на приложението ffmpeg или папката, съдържаща ffmpeg.",
|
||||
"LabelffmpegPath": "Път към FFmpeg:",
|
||||
|
@ -1383,10 +1364,8 @@
|
|||
"MessageLeaveEmptyToInherit": "Оставете празни, за да наследите настройки от родителски елемент или глобалната стойност по подразбиране.",
|
||||
"MessageItemsAdded": "Добавени са елементи.",
|
||||
"MessageItemSaved": "Елементът е запазен.",
|
||||
"MessageUnauthorizedUser": "Понастоящем нямате право да получите достъп до сървъра. Моля, свържете се с администратора на вашия сървър за повече информация.",
|
||||
"MessageInvalidUser": "Невалидно потребителско име или парола. Моля, опитайте отново.",
|
||||
"MessageInvalidForgotPasswordPin": "Въведен е невалиден или изтекъл пин код. Моля, опитайте отново.",
|
||||
"MessageInstallPluginFromApp": "Този плъгин трябва да бъде инсталиран от приложението, в което възнамерявате да го използвате.",
|
||||
"MessageImageTypeNotSelected": "Изберете типът изображение от падащото меню.",
|
||||
"MessageImageFileTypeAllowed": "Поддържат се само файлове с разширение JPEG и PNG.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Опитайте пак в домашната мрежа да повторите процеса по нулиране на паролата.",
|
||||
|
@ -1413,12 +1392,10 @@
|
|||
"SaveSubtitlesIntoMediaFoldersHelp": "Съхраняването на субтитрите при видео файлове ще позволи по-лесното им управление.",
|
||||
"SaveSubtitlesIntoMediaFolders": "Запазване на субтитрите в папките с медията",
|
||||
"SaveChanges": "Запазете промените",
|
||||
"RunAtStartup": "Пускай при стартиране",
|
||||
"RepeatOne": "Повтори един път",
|
||||
"RepeatMode": "Режим на повторение",
|
||||
"RepeatEpisodes": "Повтори епизодите",
|
||||
"RepeatAll": "Повтори всички",
|
||||
"ReleaseGroup": "Издаден от група",
|
||||
"RefreshQueued": "Назначено е обновяване.",
|
||||
"RefreshDialogHelp": "Метаданните се обновяват въз основа на настройките и интернет услугите, които са активирани от таблото за управление на сървъра.",
|
||||
"Recordings": "Записи",
|
||||
|
@ -1428,7 +1405,6 @@
|
|||
"RecommendationStarring": "В главните роли {0}",
|
||||
"RecommendationDirectedBy": "Режисьор {0}",
|
||||
"Rate": "Оценка",
|
||||
"QueueAllFromHere": "Поред всичко от тук",
|
||||
"ProductionLocations": "Места на заснемане",
|
||||
"Previous": "Предишен",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Предпочитай \"вградената\" информация за епизода вместо името на файла",
|
||||
|
@ -1457,7 +1433,6 @@
|
|||
"PackageInstallFailed": "Инсталирането на {0} версия {1}) е неуспешно.",
|
||||
"PackageInstallCompleted": "Инсталирането на {0} версия {1}) е завършено.",
|
||||
"PackageInstallCancelled": "Инсталирането на {0} версия {1}) е отменено.",
|
||||
"OtherArtist": "Друг изпълнител",
|
||||
"OptionWeekends": "Почивни дни",
|
||||
"OptionWeekdays": "Делници",
|
||||
"OptionTvdbRating": "Рейтинг според ТВДБ",
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
"ButtonGuide": "Guia",
|
||||
"ButtonHelp": "Ajuda",
|
||||
"ButtonHome": "Inici",
|
||||
"ButtonLearnMore": "Aprèn més",
|
||||
"ButtonLibraryAccess": "Accés a la biblioteca",
|
||||
"ButtonManualLogin": "Inici de sessió manual",
|
||||
"ButtonMore": "Més",
|
||||
|
@ -75,7 +74,6 @@
|
|||
"ButtonSubmit": "Envia",
|
||||
"ButtonSubtitles": "Subtítols",
|
||||
"ButtonTrailer": "Tràiler",
|
||||
"ButtonViewWebsite": "Veure website",
|
||||
"CancelRecording": "Cancel·la enregistrament",
|
||||
"CancelSeries": "Cancel·la sèrie",
|
||||
"ChannelAccessHelp": "Selecciona els canals a compartir amb aquest usuari. Els administradors podran editar tots els canals emprant el gestor de metadades.",
|
||||
|
@ -138,7 +136,6 @@
|
|||
"HeaderApiKeys": "Claus Api",
|
||||
"HeaderApiKeysHelp": "Les aplicacions externes requereixen una Api key pere tal de poder-se comunicar amb el Servidor d'Jellyfin. Les claus són emeses iniciant sessió amb un compte d'Jellyfin, o concedint manualment una clau a l'aplicació.",
|
||||
"HeaderAudioSettings": "Preferències d'Àudio",
|
||||
"HeaderAutomaticUpdates": "Actualitzacions Automàtiques",
|
||||
"HeaderBooks": "Llibres",
|
||||
"HeaderBranding": "Aparença",
|
||||
"HeaderCancelRecording": "Cancel·lar Enregistrament",
|
||||
|
@ -271,8 +268,6 @@
|
|||
"LabelAlbum": "Àlbum:",
|
||||
"LabelAlbumArtMaxHeight": "Alçada màxima de l'art de l'àlbum:",
|
||||
"LabelAlbumArtMaxWidth": "Amplada màxima de l'art de l'àlbum:",
|
||||
"LabelAllowServerAutoRestart": "Permetre el servidor reiniciar-se automàticament per aplicar actualitzacions",
|
||||
"LabelAllowServerAutoRestartHelp": "El servidor només es reiniciarà durant períodes d'inactivitat, quan no tingui usuaris actius.",
|
||||
"LabelArtists": "Artistes:",
|
||||
"LabelArtistsHelp": "Separa'n varis emprant ;",
|
||||
"LabelAudioLanguagePreference": "Preferència de l'idioma de l'àudio:",
|
||||
|
@ -292,7 +287,6 @@
|
|||
"LabelCustomCss": "CSS propi:",
|
||||
"LabelCustomCssHelp": "Aplica el teu propi css a la interfície web.",
|
||||
"LabelCustomDeviceDisplayName": "Nom a mostrar:",
|
||||
"LabelDashboardTheme": "Tema del tauler de control del servidor:",
|
||||
"LabelDateAdded": "Data afegit:",
|
||||
"LabelDay": "Dia:",
|
||||
"LabelDeathDate": "Data de defunció:",
|
||||
|
@ -413,9 +407,7 @@
|
|||
"LabelSendNotificationToUsers": "Envia la notificació a:",
|
||||
"LabelSerialNumber": "Nombre de sèrie",
|
||||
"LabelSeriesRecordingPath": "Directori de gravació de sèries (opcional):",
|
||||
"LabelSkin": "Aspecte:",
|
||||
"LabelSortTitle": "Títol d'endreçat:",
|
||||
"LabelSoundEffects": "Efectes de so:",
|
||||
"LabelSource": "Font:",
|
||||
"LabelStartWhenPossible": "Inicia quan sigui possible:",
|
||||
"LabelStatus": "Estat:",
|
||||
|
@ -439,7 +431,6 @@
|
|||
"LabelUsername": "Nom d'usuari:",
|
||||
"LabelValue": "Valor:",
|
||||
"LabelYear": "Any:",
|
||||
"LabelYourFirstName": "El teu nom:",
|
||||
"LabelYoureDone": "Ja està!",
|
||||
"LatestFromLibrary": "Novetats a {0}",
|
||||
"LibraryAccessHelp": "Selecciona els directoris dels multimèdia a compartir amb aquest usuari. Els administradors podran editar tots els directoris emprant el gestor de metadades.",
|
||||
|
@ -604,7 +595,6 @@
|
|||
"Producer": "Productor",
|
||||
"Programs": "Programes",
|
||||
"Quality": "Qualitat",
|
||||
"QueueAllFromHere": "Afegeix tots a la cua des d'aquí",
|
||||
"RecentlyWatched": "Reproduït recentment",
|
||||
"RecommendationBecauseYouWatched": "Ja que has vist {0}",
|
||||
"Record": "Grava",
|
||||
|
@ -623,7 +613,6 @@
|
|||
"ReplaceAllMetadata": "Reemplaça totes les metadades",
|
||||
"ReplaceExistingImages": "Reemplaça imatges existents",
|
||||
"ResumeAt": "Reprodueix des de {0}",
|
||||
"RunAtStartup": "Arrenca en iniciar",
|
||||
"Saturday": "Dissabte",
|
||||
"Save": "Desa",
|
||||
"Screenshots": "Captures de pantalla",
|
||||
|
@ -681,7 +670,6 @@
|
|||
"TabParentalControl": "Control Parental",
|
||||
"TabPassword": "Contrasenya",
|
||||
"TabPlayback": "Reproducció",
|
||||
"TabPlaylist": "Llista de reproducció",
|
||||
"TabPlaylists": "Llistes de reproducció",
|
||||
"TabPlugins": "Complements",
|
||||
"TabProfile": "Perfil",
|
||||
|
@ -790,7 +778,6 @@
|
|||
"AirDate": "Data d'emissió",
|
||||
"AdditionalNotificationServices": "Examineu el catàleg de complements per instal·lar serveis de notificació addicionals.",
|
||||
"AddedOnValue": "Afegit {0}",
|
||||
"AddItemToCollectionHelp": "Afegiu els elements a les col·leccions buscant-los i fent clic amb el botó dret o toqueu els menús per afegir-los a una col·lecció.",
|
||||
"Actor": "Actor",
|
||||
"Absolute": "Absolut",
|
||||
"ClientSettings": "Configuració del client",
|
||||
|
@ -808,7 +795,6 @@
|
|||
"BookLibraryHelp": "Els àudio i llibres de text són compatibles. Reviseu la {0} guia de denominació de llibres {1}.",
|
||||
"Backdrops": "Fons",
|
||||
"Backdrop": "Fons",
|
||||
"AutoBasedOnLanguageSetting": "Auto (basada en la configuració de l’idioma)",
|
||||
"Artist": "Artista",
|
||||
"AllowedRemoteAddressesHelp": "Llista d’adreces IP o d’entrades IP / netmasca separades per comes per a xarxes que podran connectar-se de forma remota. Si es deixa en blanc, es permetran totes les adreces remotes.",
|
||||
"AllowFfmpegThrottlingHelp": "Quan un transcòdi o un remux estigui prou lluny de la posició de reproducció actual, feu una pausa en el procés perquè consumirà menys recursos. Això és més útil per mirar sense buscar sovint. Desactiveu-la si teniu problemes de reproducció.",
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
"AccessRestrictedTryAgainLater": "Přístup je v současné době omezen. Prosím zkuste to znovu později.",
|
||||
"Actor": "Herec",
|
||||
"Add": "Přidat",
|
||||
"AddItemToCollectionHelp": "Přidat položky do kolekce jejich vyhledáním a použitím pravého tlačítka myši nebo klepnutím na tlačítko menu - přidat do sbírky.",
|
||||
"AddToCollection": "Přidat do kolekce",
|
||||
"AddToPlayQueue": "Přidat do fronty k přehrání",
|
||||
"AddToPlaylist": "Přidat do playlistu",
|
||||
|
@ -63,7 +62,6 @@
|
|||
"ButtonGuide": "Programový průvodce",
|
||||
"ButtonHelp": "Nápověda",
|
||||
"ButtonHome": "Domů",
|
||||
"ButtonLearnMore": "Zjistit více",
|
||||
"ButtonLibraryAccess": "Přístup ke knihovně",
|
||||
"ButtonManualLogin": "Manuální přihlášení",
|
||||
"ButtonMore": "Více",
|
||||
|
@ -105,7 +103,6 @@
|
|||
"ButtonTrailer": "Upoutávka",
|
||||
"ButtonUninstall": "Odinstalovat",
|
||||
"ButtonUp": "Zesílit",
|
||||
"ButtonViewWebsite": "Přejít na webové stránky",
|
||||
"ButtonWebsite": "Webové stránky",
|
||||
"CancelRecording": "Zrušit nahrávání",
|
||||
"CancelSeries": "Ukončit Seriál",
|
||||
|
@ -144,7 +141,7 @@
|
|||
"Desktop": "PC",
|
||||
"DeviceAccessHelp": "Platí pouze pro zařízení, která mohou být jednoznačně identifikována. Těmto zařízením nebude bráněno v přístupu. Filtrování přístupu uživatelských zařízení bude bránit v užívání nových zařízení, dokud nebudou schváleny.",
|
||||
"DirectPlaying": "Přímé přehrání",
|
||||
"DirectStreamHelp1": "Médium je kompatibilní se zařízením, pokud jde o rozlišení a typ média (H.264, AC3, atd.), ale je v nekompatibilním kontejneru (.mkv, .avi, .wmv, atd.). Video bude za běhu přebaleno, než bude streamováno do zařízení.",
|
||||
"DirectStreamHelp1": "Médium je kompatibilní se zařízením, pokud jde o rozlišení a typ média (H.264, AC3, atd.), ale je v nekompatibilním kontejneru (.mkv, .avi, .wmv, atd.). Video bude za běhu přebaleno, než bude odesláno do zařízení.",
|
||||
"DirectStreaming": "Přímé streamování",
|
||||
"Director": "Režisér",
|
||||
"Disc": "Disk",
|
||||
|
@ -235,11 +232,10 @@
|
|||
"HeaderAlert": "Upozornění",
|
||||
"HeaderApiKey": "Klíč Api",
|
||||
"HeaderApiKeys": "Klíče API",
|
||||
"HeaderApiKeysHelp": "Externí aplikace musí mít klíč k API, aby mohly komunikovat se serverem Jellyfin. Klíče jsou vydávány přihlášením k účtu Jellyfin nebo ruční žádostí o klíč.",
|
||||
"HeaderApiKeysHelp": "Externí aplikace musí mít klíč k API, aby mohly komunikovat se serverem. Klíče jsou vydávány přihlášením k běžnému uživatelskému účtu nebo ruční žádostí o klíč.",
|
||||
"HeaderApp": "Aplikace",
|
||||
"HeaderAudioBooks": "Audio knihy",
|
||||
"HeaderAudioSettings": "Nastavení zvuku",
|
||||
"HeaderAutomaticUpdates": "Automatické aktualizace",
|
||||
"HeaderBooks": "Knihy",
|
||||
"HeaderBranding": "Branding",
|
||||
"HeaderCancelRecording": "Zrušit nahrávání",
|
||||
|
@ -341,7 +337,7 @@
|
|||
"HeaderPreferredMetadataLanguage": "Preferovaný jazyk metadat",
|
||||
"HeaderProfile": "Profil",
|
||||
"HeaderProfileInformation": "Informace o profilu",
|
||||
"HeaderProfileServerSettingsHelp": "Tyto hodnoty určují, jak se server Jellyfin bude zobrazovat v zařízení.",
|
||||
"HeaderProfileServerSettingsHelp": "Tyto hodnoty určují, jak se server bude zobrazovat klientům.",
|
||||
"HeaderRecentlyPlayed": "Naposledy přehráváno",
|
||||
"HeaderRecordingOptions": "Nastavení nahrávání",
|
||||
"HeaderRecordingPostProcessing": "Následné zpracování nahrávek",
|
||||
|
@ -358,13 +354,13 @@
|
|||
"HeaderSecondsValue": "{0} sekund",
|
||||
"HeaderSelectCertificatePath": "Vyber cestu k certifikátu",
|
||||
"HeaderSelectMetadataPath": "Vyberte cestu k metadatům",
|
||||
"HeaderSelectMetadataPathHelp": "Výběr nebo zadání cesty, kde chcete uložit metadata. Složka musí být zapisovatelná.",
|
||||
"HeaderSelectMetadataPathHelp": "Procházejte nebo zadejte cestu, kde chcete uložit metadata. Složka musí být zapisovatelná.",
|
||||
"HeaderSelectPath": "Vybrat složku",
|
||||
"HeaderSelectServer": "Vyber Server",
|
||||
"HeaderSelectServerCachePath": "Vyber složku pro vyrovnávací paměť serveru",
|
||||
"HeaderSelectServerCachePathHelp": "Vyberte nebo zadejte složku vyrovnávací paměti souborů. Složka musí být zapisovatelná.",
|
||||
"HeaderSelectTranscodingPath": "Zvolte dočasnou složku pro překódovávání médií",
|
||||
"HeaderSelectTranscodingPathHelp": "Vyberte nebo zadejte složku pro dočasné soubory překódování. Složka musí být zapisovatelná.",
|
||||
"HeaderSelectTranscodingPathHelp": "Vyberte nebo zadejte složku pro soubory překódování. Složka musí být zapisovatelná.",
|
||||
"HeaderSendMessage": "Poslat zprávu",
|
||||
"HeaderSeries": "Seriál",
|
||||
"HeaderSeriesOptions": "Nastavení seriálu",
|
||||
|
@ -410,8 +406,8 @@
|
|||
"Home": "Domů",
|
||||
"Identify": "Identifikovat",
|
||||
"Images": "Obrázky",
|
||||
"ImportFavoriteChannelsHelp": "Pokud je povoleno, jen kanály označené jako oblíbené budou importována na zařízení tuneru.",
|
||||
"ImportMissingEpisodesHelp": "Informace o chybějících epizodách budou importovány do databáze Jellyfin a zobrazí se u sezón a seriálů. Skenování knihovny se tím může značně prodloužit.",
|
||||
"ImportFavoriteChannelsHelp": "Jen kanály označené jako oblíbené na zařízení tuneru budou importovány.",
|
||||
"ImportMissingEpisodesHelp": "Informace o chybějících epizodách budou importovány do databáze a zobrazí se u sezón a seriálů. Skenování knihovny se tím může značně prodloužit.",
|
||||
"InstallingPackage": "Instalace {0} (Verze {1})",
|
||||
"InstantMix": "Okamžité míchání",
|
||||
"ItemCount": "{0} položek",
|
||||
|
@ -436,19 +432,17 @@
|
|||
"LabelAlbumArtists": "Alba umělce:",
|
||||
"LabelAll": "Vše",
|
||||
"LabelAllowHWTranscoding": "Povolit hardwarové překódování",
|
||||
"LabelAllowServerAutoRestart": "Povolit automatický restart serveru pro provedení aktualizace",
|
||||
"LabelAllowServerAutoRestartHelp": "Server bude restartován pouze v době nečinnosti, pokud nejsou aktivní žádní uživatelé.",
|
||||
"LabelAppName": "Název aplikace",
|
||||
"LabelAppNameExample": "Příklad: Sickbeard, Sonarr",
|
||||
"LabelArtists": "Umělci:",
|
||||
"LabelArtistsHelp": "Odděl pomocí ;",
|
||||
"LabelArtistsHelp": "Více interpretů se odděluje pomocí středníku.",
|
||||
"LabelAudio": "Zvuk",
|
||||
"LabelAudioLanguagePreference": "Preferovaný jazyk zvuku:",
|
||||
"LabelBindToLocalNetworkAddress": "Vázat na místní síťovou adresu:",
|
||||
"LabelBindToLocalNetworkAddressHelp": "Volitelné. Změní místní IP adresu, na kterou se váže server HTTP. Pokud je ponecháno prázdné, server bude svázán se všemi dostupnými adresami. Změna této hodnoty vyžaduje restartování serveru Jellyfin.",
|
||||
"LabelBindToLocalNetworkAddressHelp": "Změní místní IP adresu serveru HTTP. Pokud je ponecháno prázdné, server bude svázán se všemi dostupnými adresami. Změna této hodnoty vyžaduje restartování serveru Jellyfin.",
|
||||
"LabelBirthDate": "Datum narození:",
|
||||
"LabelBirthYear": "Rok narození:",
|
||||
"LabelBlastMessageInterval": "Doba zobrazení zprávy (v sekundách)",
|
||||
"LabelBlastMessageInterval": "Doba zobrazení zprávy",
|
||||
"LabelBlastMessageIntervalHelp": "Určuje dobu trvání v sekundách mezi zobrazením aktuálních zpráv.",
|
||||
"LabelCachePath": "Složka pro cache:",
|
||||
"LabelCachePathHelp": "Zadejte vlastní umístění pro serverové dočasné soubory, jako jsou obrázky. Ponechte prázdné, pokud chcete použít výchozí nastavení serveru.",
|
||||
|
@ -461,11 +455,10 @@
|
|||
"LabelCriticRating": "Hodnocení kritiků:",
|
||||
"LabelCurrentPassword": "Aktuální heslo:",
|
||||
"LabelCustomCss": "Vlastní CSS:",
|
||||
"LabelCustomCssHelp": "Aplikovat vaše vlastní styly do webového rozhraní.",
|
||||
"LabelCustomCssHelp": "Aplikovat vaše vlastní styly webového rozhraní.",
|
||||
"LabelCustomDeviceDisplayName": "Jméno pro zobrazení:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Nahradit vlastním názvem zobrazení nebo ponechte prázdné, aby název byl určen zařízením.",
|
||||
"LabelCustomRating": "Vlastní hodnocení:",
|
||||
"LabelDashboardTheme": "Téma nástěnky serveru:",
|
||||
"LabelDateAdded": "Datum přidání:",
|
||||
"LabelDateAddedBehavior": "Nový obsah řadit dle data:",
|
||||
"LabelDateAddedBehaviorHelp": "Pokud je hodnota metadat přítomna, bude vždy použita před některou z těchto možností.",
|
||||
|
@ -495,16 +488,16 @@
|
|||
"LabelEnableAutomaticPortMapHelp": "Automaticky zpřístupní port na vašem routeru pomocí technologie UPnP. Nemusí fungovat u některých routerů. Změny se projeví až po restartování serveru.",
|
||||
"LabelEnableBlastAliveMessages": "Vytroubit zprávu do světa",
|
||||
"LabelEnableBlastAliveMessagesHelp": "Tuto možnost povolte, pokud není server zjistitelný jinými UPnP zařízeními v síti.",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Čas pro vyhledání klienta (sekund)",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Interval pro vyhledání klienta",
|
||||
"LabelEnableDlnaClientDiscoveryIntervalHelp": "Určuje interval mezi vyhledáváním SSDP, které Jellyfin provádí.",
|
||||
"LabelEnableDlnaDebugLogging": "Povolit DLNA protokolování (pro ladění)",
|
||||
"LabelEnableDlnaDebugLoggingHelp": "Vytváří velké soubory se záznamy a doporučuje se používat pouze pro potřeby odstraňování problémů.",
|
||||
"LabelEnableDlnaPlayTo": "Povolit DLNA přehrávání",
|
||||
"LabelEnableDlnaPlayToHelp": "Umí detekovat zařízení v rámci vaší sítě a nabízí možnost jeho dálkového ovládání.",
|
||||
"LabelEnableDlnaPlayToHelp": "Umí detekovat zařízení v rámci vaší sítě a nabízí možnost jejich dálkového ovládání.",
|
||||
"LabelEnableDlnaServer": "Povolit DLNA server",
|
||||
"LabelEnableDlnaServerHelp": "Umožňuje zařízením UPnP v síti procházet a přehrávat obsah.",
|
||||
"LabelEnableRealtimeMonitor": "Povolit sledování v reálném čase",
|
||||
"LabelEnableRealtimeMonitorHelp": "Změny budou zpracovány okamžitě, v podporovaných souborových systémech.",
|
||||
"LabelEnableRealtimeMonitorHelp": "V podporovaných souborových systémech budou změny zpracovány okamžitě.",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limit na jednotlivé vložení obrázku",
|
||||
"LabelEnableSingleImageInDidlLimitHelp": "Některá zařízení nebudou videa zobrazovat správně, pokud je více obrazů uloženo v DIDL.",
|
||||
"LabelEndDate": "Datum ukončení:",
|
||||
|
@ -521,14 +514,14 @@
|
|||
"LabelFormat": "Formát:",
|
||||
"LabelFriendlyName": "Přívětivý název:",
|
||||
"LabelGroupMoviesIntoCollections": "Seskupit filmy do kolekcí",
|
||||
"LabelGroupMoviesIntoCollectionsHelp": "Při zobrazení seznamů filmu, budou filmy patřící do kolekce, zobrazeny jako jedna položka.",
|
||||
"LabelGroupMoviesIntoCollectionsHelp": "Při zobrazení seznamu filmů budou filmy v kolekci zobrazeny jako jedna položka.",
|
||||
"LabelH264Crf": "H264 kódování CRF:",
|
||||
"LabelEncoderPreset": "Přednastavení H264 kódování:",
|
||||
"LabelHardwareAccelerationType": "Hardwarová akcelerace:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Hardwarová akcelerace vyžaduje další konfiguraci.",
|
||||
"LabelHomeScreenSectionValue": "Sekce domovské obrazovky {0}:",
|
||||
"LabelHttpsPort": "Lokální HTTPS port:",
|
||||
"LabelHttpsPortHelp": "Číslo portu TCP, ke kterému by se měl HTTPS server Jellyfin připojit.",
|
||||
"LabelHttpsPortHelp": "Číslo portu TCP serveru HTTPS.",
|
||||
"LabelIconMaxHeight": "Maximální výška ikon:",
|
||||
"LabelIconMaxHeightHelp": "Maximální rozlišení ikon nabízené prostřednictvím upnp:icon.",
|
||||
"LabelIconMaxWidth": "Maximální šířka ikon:",
|
||||
|
@ -552,7 +545,7 @@
|
|||
"LabelLanguage": "Jazyk:",
|
||||
"LabelLineup": "V pořadí:",
|
||||
"LabelLocalHttpServerPortNumber": "Lokální HTTP port:",
|
||||
"LabelLocalHttpServerPortNumberHelp": "Číslo portu TCP, ke kterému by se měl HTTP server Jellyfin připojit.",
|
||||
"LabelLocalHttpServerPortNumberHelp": "Číslo portu TCP HTTP serveru.",
|
||||
"LabelLockItemToPreventChanges": "Uzamknout položku pro zabránění budoucích změn",
|
||||
"LabelLoginDisclaimer": "Zřeknutí se zodpovědnosti při přihlášení:",
|
||||
"LabelLoginDisclaimerHelp": "Zpráva, která se zobrazí v dolní části přihlašovací stránky.",
|
||||
|
@ -576,7 +569,7 @@
|
|||
"LabelMetadataReaders": "Čtečky metadat:",
|
||||
"LabelMetadataReadersHelp": "Seřaďte své preferované lokální zdroje metadat dle priority. První nalezená data budou načtena.",
|
||||
"LabelMetadataSavers": "Střadatelé metadat:",
|
||||
"LabelMetadataSaversHelp": "Vyberte formáty souborů pro uložení metadat.",
|
||||
"LabelMetadataSaversHelp": "Vyberte formáty souborů, které chcete použít pro ukládání metadat.",
|
||||
"LabelMethod": "Metoda:",
|
||||
"LabelMinBackdropDownloadWidth": "Maximální šířka pro stažení pozadí:",
|
||||
"LabelMinResumeDuration": "Minimální doba trvání:",
|
||||
|
@ -592,7 +585,7 @@
|
|||
"LabelMovieCategories": "Filmové kategorie:",
|
||||
"LabelMoviePrefix": "Předpona filmu:",
|
||||
"LabelMoviePrefixHelp": "Pokud je v názvech filmů použita předpona, zadejte ji sem, aby ji server mohl správně zpracovat.",
|
||||
"LabelMovieRecordingPath": "Složka pro nahrávání filmů (volitelné):",
|
||||
"LabelMovieRecordingPath": "Umístění pro nahrávání filmů:",
|
||||
"LabelMusicStreamingTranscodingBitrate": "Datový tok pro překódování hudby:",
|
||||
"LabelMusicStreamingTranscodingBitrateHelp": "Zadejte maximální datový tok pro streamování hudby.",
|
||||
"LabelName": "Jméno:",
|
||||
|
@ -605,7 +598,7 @@
|
|||
"LabelNumber": "Číslo:",
|
||||
"LabelNumberOfGuideDays": "Počet dnů programového průvodce ke stažení:",
|
||||
"LabelNumberOfGuideDaysHelp": "Stažení více dnů televizního průvodce umožňuje naplánovat nahrávání na delší dobu dopředu, ale trvá déle. Automatické nastavení určí počet podle počtu kanálů.",
|
||||
"LabelOptionalNetworkPath": "(Nepovinné) Sdílená síťová složka:",
|
||||
"LabelOptionalNetworkPath": "Sdílená síťová složka:",
|
||||
"LabelOriginalAspectRatio": "Původní poměr stran:",
|
||||
"LabelOriginalTitle": "Originální název:",
|
||||
"LabelOverview": "Přehled:",
|
||||
|
@ -645,7 +638,7 @@
|
|||
"LabelRefreshMode": "Mód obnovy:",
|
||||
"LabelReleaseDate": "Datum vydání:",
|
||||
"LabelRemoteClientBitrateLimit": "Datový tok streamování do Internetu (Mbps):",
|
||||
"LabelRuntimeMinutes": "Délka (v minutách):",
|
||||
"LabelRuntimeMinutes": "Délka:",
|
||||
"LabelSaveLocalMetadata": "Uložit přebaly a metadata do složky s médii",
|
||||
"LabelSaveLocalMetadataHelp": "Povolíte-li uložení přebalů a metadat do složky s médii bude možné je jednoduše upravovat.",
|
||||
"LabelScheduledTaskLastRan": "Poslední spuštění {0}, zabralo {1}.",
|
||||
|
@ -657,7 +650,7 @@
|
|||
"LabelSelectVersionToInstall": "Vyber verzi k instalaci:",
|
||||
"LabelSendNotificationToUsers": "Odeslat oznámení pro:",
|
||||
"LabelSerialNumber": "Sériové číslo",
|
||||
"LabelSeriesRecordingPath": "Složka pro nahrávání seriálů (volitelné):",
|
||||
"LabelSeriesRecordingPath": "Umístění pro nahrávání seriálů:",
|
||||
"LabelServerHostHelp": "192.168.1.100:8096 nebo https://mujserver.cz",
|
||||
"LabelSkipBackLength": "Délka posunu zpět:",
|
||||
"LabelSkipForwardLength": "Délka posunu vpřed:",
|
||||
|
@ -668,7 +661,6 @@
|
|||
"LabelSonyAggregationFlags": "Agregační příznaky Sony:",
|
||||
"LabelSonyAggregationFlagsHelp": "Určuje obsah prvku aggregationFlags ve jmenném prostoru urn:schemas-sonycom:av.",
|
||||
"LabelSortTitle": "Třídit dle názvu:",
|
||||
"LabelSoundEffects": "Zvukové efekty:",
|
||||
"LabelSource": "Zdroj:",
|
||||
"LabelSportsCategories": "Sportovní kategorie:",
|
||||
"LabelStartWhenPossible": "Začít jakmile je to možné:",
|
||||
|
@ -713,11 +705,10 @@
|
|||
"LabelXDlnaDoc": "Dokumentace X-DLNA:",
|
||||
"LabelXDlnaDocHelp": "Určuje obsah prvku X_DLNADOC ve jmenném prostoru urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYear": "Rok:",
|
||||
"LabelYourFirstName": "Vaše jméno:",
|
||||
"LabelYoureDone": "Hotovo!",
|
||||
"LabelZipCode": "PSČ:",
|
||||
"LabelffmpegPath": "FFmpeg - cesta:",
|
||||
"LabelffmpegPathHelp": "Cesta k souboru aplikace ffmpeg, nebo složka obsahující aplikaci ffmpeg.",
|
||||
"LabelffmpegPathHelp": "Cesta k souboru aplikace ffmpeg nebo složka obsahující aplikaci ffmpeg.",
|
||||
"Large": "Velký",
|
||||
"LatestFromLibrary": "Nejnovější {0}",
|
||||
"LearnHowYouCanContribute": "Zjistěte, jak můžete přispět.",
|
||||
|
@ -775,7 +766,6 @@
|
|||
"MessageFileReadError": "Došlo k chybě při čtení souboru. Prosím zkuste to znovu.",
|
||||
"MessageForgotPasswordFileCreated": "Následující soubor byl vytvořen na serveru a obsahuje pokyny, jak postupovat:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Zkuste to prosím znovu uvnitř vaší domácí sítě pro zahájení procesu resetování hesla.",
|
||||
"MessageInstallPluginFromApp": "Tento plugin musí být nainstalován z aplikace, kterou chcete použít.",
|
||||
"MessageInvalidForgotPasswordPin": "Neplatné zadání pin kódu. Prosím, zkuste to znovu.",
|
||||
"MessageInvalidUser": "Neplatné uživatelské jméno nebo heslo. Zkuste znovu.",
|
||||
"MessageItemSaved": "Položka uložena.",
|
||||
|
@ -798,7 +788,7 @@
|
|||
"MessageUnsetContentHelp": "Obsah je zobrazen pomocí prostých složek. Pro dosažení nejlepších výsledků pomocí správce metadat nastavte typy obsahu pod-složek.",
|
||||
"MessageYouHaveVersionInstalled": "V současné době máte instalovánu verzi {0}.",
|
||||
"MetadataManager": "Manažer metadat",
|
||||
"MetadataSettingChangeHelp": "Změna nastavení metadat bude mít vliv na nový obsah, který bude přidáván. Chcete-li aktualizovat stávající obsah, otevřte obrazovku s detailem a klepněte na tlačítko Aktualizovat, nebo proveďte hromadnou aktualizaci pomocí správce metadat.",
|
||||
"MetadataSettingChangeHelp": "Změna nastavení metadat bude mít vliv na obsah, který bude nově přidán v budoucnu. Chcete-li aktualizovat stávající obsah, otevřete obrazovku s podrobnostmi a klikněte na tlačítko Aktualizovat, nebo proveďte hromadnou aktualizaci pomocí správce metadat.",
|
||||
"MinutesAfter": "minut po",
|
||||
"MinutesBefore": "minut předem",
|
||||
"Mobile": "Mobilní",
|
||||
|
@ -852,7 +842,7 @@
|
|||
"OptionAuto": "Automaticky",
|
||||
"OptionAutomatic": "Automaticky",
|
||||
"OptionAutomaticallyGroupSeries": "Automatické sloučení k seriálu, které jsou ve více složkách",
|
||||
"OptionAutomaticallyGroupSeriesHelp": "Pokud je povoleno, budou díly seriálu uložené ve více adresářích v této knihovně, automaticky sloučeny k jednomu seriálu.",
|
||||
"OptionAutomaticallyGroupSeriesHelp": "Seriály uložené ve více složkách v této knihovně budou automaticky sloučeny do jednoho seriálu.",
|
||||
"OptionBlockBooks": "Knihy",
|
||||
"OptionBlockChannelContent": "Obsah internetového kanálu",
|
||||
"OptionBlockLiveTvChannels": "Televizní kanály",
|
||||
|
@ -871,7 +861,7 @@
|
|||
"OptionDatePlayed": "Datum přehrání",
|
||||
"OptionDescending": "Sestupně",
|
||||
"OptionDisableUser": "Zablokovat tohoto uživatele",
|
||||
"OptionDisableUserHelp": "Pokud není povoleno, server nedovolí tomuto uživateli žádné připojení. Existující připojení bude okamžitě přerušeno.",
|
||||
"OptionDisableUserHelp": "Server nedovolí tomuto uživateli žádné připojení. Existující připojení bude okamžitě přerušeno.",
|
||||
"OptionDislikes": "Nelíbí se",
|
||||
"OptionDisplayFolderView": "Zobrazit složku s originálním zobrazením složek médií",
|
||||
"OptionDisplayFolderViewHelp": "Zobrazte složky vedle vašich ostatních knihoven médií. To může být užitečné, pokud si přejete mít prosté zobrazení složky.",
|
||||
|
@ -879,7 +869,7 @@
|
|||
"OptionDownloadBackImage": "Zadek",
|
||||
"OptionDownloadDiscImage": "Disk",
|
||||
"OptionDownloadImagesInAdvance": "Stáhnout obrázky pokročilejším způsobem",
|
||||
"OptionDownloadImagesInAdvanceHelp": "Ve výchozím nastavení se většina obrázků stahuje pouze na žádost aplikace Jellyfin. Povolením této možnosti dojde ke stažení všech obrázků předem současně s importem nových médií. Může způsobit výrazně delší skenování knihoven.",
|
||||
"OptionDownloadImagesInAdvanceHelp": "Ve výchozím nastavení se většina obrázků stahuje pouze na žádost klienta. Povolením této možnosti dojde ke stažení všech obrázků předem současně s importem nových médií. Může způsobit výrazně delší skenování knihoven.",
|
||||
"OptionDownloadMenuImage": "Nabídka",
|
||||
"OptionDownloadPrimaryImage": "Primární",
|
||||
"OptionDownloadThumbImage": "Miniatura",
|
||||
|
@ -911,7 +901,7 @@
|
|||
"OptionHlsSegmentedSubtitles": "Segmentované titulky HLS",
|
||||
"OptionHomeVideos": "Fotky",
|
||||
"OptionIgnoreTranscodeByteRangeRequests": "Ignorovat požadavky na překódování rozsahy bajtů",
|
||||
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Pokud je povoleno, budou tyto žádosti nadále plněny, ale budou ignorovány hlavičky bytových rozsahů.",
|
||||
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Tyto žádosti budou nadále plněny, ale budou ignorovány hlavičky bajtových rozsahů.",
|
||||
"OptionImdbRating": "Hodnocení IMDb",
|
||||
"OptionLikes": "Líbí se",
|
||||
"OptionMissingEpisode": "Chybějící episody",
|
||||
|
@ -923,9 +913,9 @@
|
|||
"OptionOnInterval": "V intervalu",
|
||||
"OptionParentalRating": "Rodičovské hodnocení",
|
||||
"OptionPlainStorageFolders": "Zobrazit všechny složky jako obyčejné složky pro ukládání",
|
||||
"OptionPlainStorageFoldersHelp": "Je-li povoleno, všechny složky jsou zastoupeny v DIDL jako \"object.container.storageFolder\" místo specifičtějšího typu, jako je například \"object.container.person.musicArtist\".",
|
||||
"OptionPlainStorageFoldersHelp": "Všechny složky jsou prezentovány v DIDL jako \"object.container.storageFolder\" místo konkrétnějšího typu, například \"object.container.person.musicArtist\".",
|
||||
"OptionPlainVideoItems": "Zobrazit všechna videa jako s obyčejné video položky",
|
||||
"OptionPlainVideoItemsHelp": "Je-li povoleno, všechna videa jsou prezentovány v DIDL jako \"object.item.videoItem\" místo specifičtějšího typu, jako je například \"object.item.videoItem.movie\".",
|
||||
"OptionPlainVideoItemsHelp": "Všechna videa jsou prezentována v DIDL jako \"object.item.videoItem\" místo konkrétnějšího typu, například \"object.item.videoItem.movie\".",
|
||||
"OptionPlayCount": "Počet přehrání",
|
||||
"OptionPlayed": "Shlédnuto",
|
||||
"OptionPremiereDate": "Datum premiéry",
|
||||
|
@ -995,7 +985,6 @@
|
|||
"ProductionLocations": "Místo výroby",
|
||||
"Programs": "Programy",
|
||||
"Quality": "Kvalita",
|
||||
"QueueAllFromHere": "Zařadit vše do fronty",
|
||||
"RecentlyWatched": "Nedávno shlédnuté",
|
||||
"RecommendationBecauseYouLike": "Protože se vám líbí {0}",
|
||||
"RecommendationBecauseYouWatched": "Protože jste sledovali {0}",
|
||||
|
@ -1008,7 +997,7 @@
|
|||
"RecordingScheduled": "Plán nahrávání.",
|
||||
"Recordings": "Nahrávky",
|
||||
"Refresh": "Obnovit",
|
||||
"RefreshDialogHelp": "Metadata se aktualizují na základě nastavení a internetových služeb, které jsou povoleny na nástěnce serveru Jellyfin.",
|
||||
"RefreshDialogHelp": "Metadata se aktualizují na základě nastavení a internetových služeb, které jsou povoleny na nástěnce.",
|
||||
"RefreshMetadata": "Obnovit metadata",
|
||||
"RefreshQueued": "Obnovení zařazeno.",
|
||||
"ReleaseDate": "Datum vydání",
|
||||
|
@ -1024,7 +1013,6 @@
|
|||
"ReplaceExistingImages": "Nahradit existující obrázky",
|
||||
"ResumeAt": "Obnovit přehrávání od {0}",
|
||||
"Rewind": "Přetočit zpět",
|
||||
"RunAtStartup": "Spustit po startu",
|
||||
"Runtime": "Délka",
|
||||
"Saturday": "Sobota",
|
||||
"Save": "Uložit",
|
||||
|
@ -1186,7 +1174,6 @@
|
|||
"AllowedRemoteAddressesHelp": "Seznam IP adres nebo síťových masek oddělených čárkou pro sítě, ze kterých se lze vzdáleně připojit. Pokud necháte prázdné, všechny adresy budou povoleny.",
|
||||
"AnyLanguage": "Jakýkoli jazyk",
|
||||
"Ascending": "Vzestupně",
|
||||
"AutoBasedOnLanguageSetting": "Automaticky (na základě jazykového nastavení)",
|
||||
"Banner": "Výřez plakátu",
|
||||
"Blacklist": "Zakázat vše kromě výjimek",
|
||||
"Browse": "Procházet",
|
||||
|
@ -1205,7 +1192,7 @@
|
|||
"Depressed": "Vytlačené",
|
||||
"Descending": "Klesající",
|
||||
"DetectingDevices": "Hledání zařízení",
|
||||
"DirectStreamHelp2": "Přímé streamování souboru používá velmi malý výkon bez ztráty kvality videa.",
|
||||
"DirectStreamHelp2": "Přímé streamování souboru vyžaduje velmi malý výkon téměř bez ztráty kvality videa.",
|
||||
"Directors": "Režiséři",
|
||||
"Disabled": "Vypnuto",
|
||||
"DisplayInMyMedia": "Zobrazit na domovské obrazovce",
|
||||
|
@ -1237,7 +1224,7 @@
|
|||
"HeaderFavoriteVideos": "Oblíbená videa",
|
||||
"HeaderFetcherSettings": "Nastavení načítání",
|
||||
"HeaderImageOptions": "Volby obrázku",
|
||||
"HeaderKodiMetadataHelp": "Chcete-li povolit nebo zakázat Nfo metadata, upravte nastavení knihovny v sekci ukládání metadat.",
|
||||
"HeaderKodiMetadataHelp": "Chcete-li povolit nebo zakázat metadata v souborech NFO, upravte nastavení knihovny v sekci ukládání metadat.",
|
||||
"HeaderLiveTV": "Televize",
|
||||
"HeaderLiveTv": "Televize",
|
||||
"HeaderLiveTvTunerSetup": "Nastavení televizního tuneru",
|
||||
|
@ -1282,7 +1269,6 @@
|
|||
"LabelRemoteClientBitrateLimitHelp": "Volitelný limit datového toku pro všechna síťová zařízení. To je užitečné, aby se zabránilo požadavkům na vyšší přenosovou rychlost než zvládne vaše připojení k internetu. To může mít za následek zvýšení zátěže procesoru, aby bylo možné převádět videa za běhu na nižší datový tok.",
|
||||
"LabelServerHost": "Host:",
|
||||
"LabelSimultaneousConnectionLimit": "Limit současně běžících streamů:",
|
||||
"LabelSkin": "Vzhled:",
|
||||
"LabelSortBy": "Řadit podle:",
|
||||
"LabelSortOrder": "Pořadí řazení:",
|
||||
"LabelSpecialSeasonsDisplayName": "Zobrazovaný název pro zvláštní sezónu:",
|
||||
|
@ -1296,16 +1282,14 @@
|
|||
"LabelVideo": "Video",
|
||||
"LabelVideoCodec": "Video kodek:",
|
||||
"LeaveBlankToNotSetAPassword": "Můžete ponechat prázdné pro nastavení bez hesla.",
|
||||
"LinksValue": "Odkazy: {0}",
|
||||
"LiveTV": "Televize",
|
||||
"Logo": "Logo",
|
||||
"ManageLibrary": "Spravovat knihovnu",
|
||||
"MediaInfoDefault": "Výchozí",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Data",
|
||||
"MediaInfoStreamTypeVideo": "Video",
|
||||
"AuthProviderHelp": "Vyberte poskytovatele ověřování, který bude použit k ověření hesla tohoto uživatele.",
|
||||
"AuthProviderHelp": "Vyberte poskytovatele ověření, který bude použit k ověření hesla tohoto uživatele.",
|
||||
"HeaderFavoriteMovies": "Oblíbená videa",
|
||||
"HeaderFavoriteShows": "Oblíbené seriály",
|
||||
"HeaderFavoriteEpisodes": "Oblíbené epizody",
|
||||
|
@ -1313,7 +1297,7 @@
|
|||
"HeaderFavoriteArtists": "Oblíbení interpreti",
|
||||
"HeaderFavoriteSongs": "Oblíbená hudba",
|
||||
"LabelAuthProvider": "Poskytovatel ověření:",
|
||||
"LabelServerNameHelp": "Tento název bude použit k identifikaci serveru a bude výchozí pro název počítače serveru.",
|
||||
"LabelServerNameHelp": "Tento název bude použit k identifikaci serveru a ve výchozím nastavení bude použit název hostitele serveru.",
|
||||
"LabelPasswordResetProvider": "Poskytovatel obnovy hesla:",
|
||||
"LabelServerName": "Název serveru:",
|
||||
"LabelTranscodePath": "Cesta pro překódování:",
|
||||
|
@ -1339,7 +1323,7 @@
|
|||
"OnlyImageFormats": "Pouze obrazové formáty (VOBSUB, PGS, SUB, atd.)",
|
||||
"Option3D": "3D",
|
||||
"OptionAlbum": "Album",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "Omezení přístupu k překódování může způsobit selhání přehrávání v aplikacích Jellyfin kvůli nepodporovaným formátům médií.",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "Omezení přístupu k překódování může způsobit selhání přehrávání v klientech kvůli nepodporovaným formátům médií.",
|
||||
"OptionAllowSyncTranscoding": "Povolit stahování a synchronizaci médií, které vyžaduje překódování",
|
||||
"OptionBluray": "Blu-ray",
|
||||
"OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)",
|
||||
|
@ -1357,7 +1341,7 @@
|
|||
"OptionProtocolHls": "Přímý přenos z internetu",
|
||||
"OptionProtocolHttp": "HTTP",
|
||||
"OptionRequirePerfectSubtitleMatchHelp": "Vyžadování dokonalé shody filtruje titulky tak, aby obsahovaly pouze ty, které byly testovány a ověřeny s vaším přesným videosouborem. Zrušení zaškrtnutí tohoto políčka zvýší pravděpodobnost stahování titulků, ale zvýší pravděpodobnost chybného nebo nesprávného textu titulků.",
|
||||
"PasswordResetProviderHelp": "Zvolte poskytovatele resetování hesla, který bude použit, když tento uživatel o něj požádá",
|
||||
"PasswordResetProviderHelp": "Zvolte poskytovatele resetování hesla, který bude použit při žádosti tohoto uživatele o resetování hesla.",
|
||||
"MessagePluginInstalled": "Zásuvný modul byl úspěšně nainstalován. Server Jellyfin bude nutné restartovat, aby se změny projevily.",
|
||||
"PreferEmbeddedTitlesOverFileNames": "Preferovat vložené názvy nad názvy souborů",
|
||||
"PreferEmbeddedTitlesOverFileNamesHelp": "Toto určuje výchozí název zobrazení, pokud nejsou k dispozici žádná metadata z internetu nebo místní metadata.",
|
||||
|
@ -1383,7 +1367,6 @@
|
|||
"TabInfo": "Info",
|
||||
"TabLiveTV": "Televize",
|
||||
"TabMetadata": "Metadata",
|
||||
"TabPlaylist": "Playlist",
|
||||
"TabServer": "Server",
|
||||
"TagsValue": "Tagy: {0}",
|
||||
"ThemeSongs": "Tematická hudba",
|
||||
|
@ -1397,14 +1380,11 @@
|
|||
"ValueOneAlbum": "1 album",
|
||||
"ValueOneSong": "1 skladba",
|
||||
"Vertical": "Svisle",
|
||||
"VideoRange": "Rozsah videa",
|
||||
"ViewPlaybackInfo": "Zobrazení informací o přehrávání",
|
||||
"Whitelist": "Povolit vše kromě výjimek",
|
||||
"HeaderHome": "Domů",
|
||||
"DashboardOperatingSystem": "Operační systém: {0}",
|
||||
"DashboardArchitecture": "Architektura: {0}",
|
||||
"LaunchWebAppOnStartup": "Spustit webové rozhraní po spustění serveru",
|
||||
"LaunchWebAppOnStartupHelp": "Otevře se webový klient ve vašem výchozím webovém prohlížeči, když server se spustí. K tomu nedochází při použití funkce restartování serveru.",
|
||||
"MessageNoServersAvailable": "Pomocí automatického zjišťování nebyly nalezeny žádné servery.",
|
||||
"OptionBanner": "Banner",
|
||||
"OptionList": "Seznam",
|
||||
|
@ -1446,7 +1426,6 @@
|
|||
"HeaderNavigation": "Navigace",
|
||||
"ButtonSplit": "Rozdělit",
|
||||
"MessageConfirmAppExit": "Přejete si odejít?",
|
||||
"CopyStreamURLError": "Při kopírování URL došlo k chybě.",
|
||||
"LabelVideoResolution": "Rozlišení videa:",
|
||||
"LabelStreamType": "Typ streamu:",
|
||||
"LabelPlayerDimensions": "Zobrazené rozlišení:",
|
||||
|
@ -1460,11 +1439,9 @@
|
|||
"BoxSet": "Sbírka",
|
||||
"Track": "Stopa",
|
||||
"Season": "Sezóna",
|
||||
"ReleaseGroup": "Vydavatel",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Preferovat vloženou informaci o epizodě před názvem souboru",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "Používat informaci o epizodě z vložených metadat, pokud jsou k dispozici.",
|
||||
"Person": "Osoba",
|
||||
"OtherArtist": "Ostatní interpreti",
|
||||
"Movie": "Film",
|
||||
"Episode": "Epizoda",
|
||||
"ClientSettings": "Nastavení klienta",
|
||||
|
@ -1490,16 +1467,14 @@
|
|||
"LabelDeinterlaceMethod": "Metoda odstranění prokládání:",
|
||||
"DeinterlaceMethodHelp": "Vyberte metodu odstranění prokládání obrazu při překódování obsahu.",
|
||||
"UnsupportedPlayback": "Jellyfin nedokáže dešifrovat obsah chráněný Správou digitálních práv (DRM), ale pokusí se zobrazit veškerý obsah, včetně toho chráněného. Některé soubory se nemusí vůbec zobrazit kvůli šifrování nebo jiným nepodporovaným funkcím, např.: interaktivním názvům.",
|
||||
"MessageUnauthorizedUser": "Momentálně nemáte oprávnění k přístupu na server. Další informace získáte od správce serveru.",
|
||||
"Filter": "Filtr",
|
||||
"New": "Nové",
|
||||
"ButtonTogglePlaylist": "Playlist",
|
||||
"ButtonToggleContextMenu": "Více",
|
||||
"LabelNightly": "Aktualizace každou noc",
|
||||
"LabelStable": "Stabilní",
|
||||
"LabelChromecastVersion": "Verze Chromecastu",
|
||||
"ApiKeysCaption": "Seznam povolených API klíčů",
|
||||
"LabelEnableHttpsHelp": "Umožní serveru naslouchat na určeném portu HTTPS. K fungování je nutné nakonfigurovat i platný certifikát.",
|
||||
"LabelEnableHttpsHelp": "Naslouchání na uvedeném portu HTTPS. K fungování je nutné nakonfigurovat i platný certifikát.",
|
||||
"LabelEnableHttps": "Povolit HTTPS",
|
||||
"HeaderServerAddressSettings": "Nastavení adresy serveru",
|
||||
"HeaderRemoteAccessSettings": "Nastavení vzdáleného přístupu",
|
||||
|
@ -1543,7 +1518,7 @@
|
|||
"EnableDetailsBanner": "Obrázek detailu",
|
||||
"ShowMore": "Zobrazit více",
|
||||
"ShowLess": "Zobrazit méně",
|
||||
"EnableBlurHashHelp": "Nenačtené obrázky budou zobrazeny pomocí neurčitých zástupných obrázků",
|
||||
"EnableBlurHashHelp": "Obrázky, které se ještě načítají, budou zobrazeny pomocí jedinečných zástupných obrázků.",
|
||||
"EnableBlurHash": "Povolit zástupné obrázky",
|
||||
"ButtonCast": "Přehrát v zařízení",
|
||||
"ButtonSyncPlay": "SyncPlay",
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"Actor": "Skuespiller",
|
||||
"Add": "Tilføj",
|
||||
"AddItemToCollectionHelp": "Tilføj emner til samlinger ved at fremsøge dem, og herefter ved højre klik eller tap-menu at tilføje dem til samlinger.",
|
||||
"AddToCollection": "Tilføj til samling",
|
||||
"AddToPlayQueue": "Tilføj til afspilningskø",
|
||||
"AddToPlaylist": "Tilføj til afspilningsliste",
|
||||
|
@ -58,7 +57,6 @@
|
|||
"ButtonGotIt": "Forstået",
|
||||
"ButtonHelp": "Hjælp",
|
||||
"ButtonHome": "Hjem",
|
||||
"ButtonLearnMore": "Lær mere",
|
||||
"ButtonLibraryAccess": "Biblioteksadgang",
|
||||
"ButtonManualLogin": "Manuel Login",
|
||||
"ButtonMore": "Mere",
|
||||
|
@ -98,7 +96,6 @@
|
|||
"ButtonSubtitles": "Undertekster",
|
||||
"ButtonUninstall": "Afinstaller",
|
||||
"ButtonUp": "Op",
|
||||
"ButtonViewWebsite": "Besøg hjemmeside",
|
||||
"ButtonWebsite": "Hjemmeside",
|
||||
"CancelRecording": "Annuller optagelse",
|
||||
"CancelSeries": "Annuller serie",
|
||||
|
@ -201,7 +198,6 @@
|
|||
"HeaderApiKeys": "API Nøgler",
|
||||
"HeaderApiKeysHelp": "Eksterne applikationer skal have en API-nøgle for at kunne kommunikere med Jellyfin. Nøgler udstedes ved at logge ind med en Jellyfin konto, eller ved manuelt at tildele applikationen en nøgle.",
|
||||
"HeaderAudioSettings": "Lydindstillinger",
|
||||
"HeaderAutomaticUpdates": "Automatiske opdateringer",
|
||||
"HeaderBlockItemsWithNoRating": "Klokér titler uden eller med ukendt bedømmelses information:",
|
||||
"HeaderBooks": "Bøger",
|
||||
"HeaderCancelRecording": "Annuller Optagelse",
|
||||
|
@ -395,8 +391,6 @@
|
|||
"LabelAlbumArtists": "Albumartister:",
|
||||
"LabelAll": "Alle",
|
||||
"LabelAllowHWTranscoding": "Tillad hardware-omkodning",
|
||||
"LabelAllowServerAutoRestart": "Tillad serveren at genstarte automatisk for at påføre opdateringer",
|
||||
"LabelAllowServerAutoRestartHelp": "Serveren vil kun genstarte i inaktive perioder, når ingen brugere er aktive.",
|
||||
"LabelAllowedRemoteAddresses": "Fjernadgang IP adresse filter:",
|
||||
"LabelAllowedRemoteAddressesMode": "Fjernadgang IP adresse filter mode:",
|
||||
"LabelAppName": "App navn",
|
||||
|
@ -657,7 +651,6 @@
|
|||
"LabelVersionInstalled": "{0} installeret",
|
||||
"LabelXDlnaCapHelp": "Angiver indholdet i X_DLNACAP elementet i urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDocHelp": "Angiver indholdet i X_DLNADOC elementet i urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYourFirstName": "Dit fornavn:",
|
||||
"LabelYoureDone": "Du er færdig!",
|
||||
"LabelZipCode": "Postnummer:",
|
||||
"LabelffmpegPath": "FFmpeg sti:",
|
||||
|
@ -709,7 +702,6 @@
|
|||
"MessageFileReadError": "Der opstod en fejl i forsøget på at læse filen.",
|
||||
"MessageForgotPasswordFileCreated": "Den følgende fil er blevet oprettet på din server og indeholder instruktioner vedrørende hvordan du skal fortsætte:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Prøv igen inde i dit hjemmenetværk for at igangsætte nulstilling af din adgangskode.",
|
||||
"MessageInstallPluginFromApp": "Dette plugin skal installeres fra den app, du har til hensigt at bruge det i.",
|
||||
"MessageInvalidForgotPasswordPin": "En ugyldig eller udløbet pinkode blev indtastet. Prøv igen.",
|
||||
"MessageInvalidUser": "Ukendt brugernavn eller adgangskode. Prøv igen.",
|
||||
"MessageItemSaved": "Element gemt.",
|
||||
|
@ -914,7 +906,6 @@
|
|||
"ProductionLocations": "Produktionslokationer",
|
||||
"Programs": "Programmer",
|
||||
"Quality": "Kvalitet",
|
||||
"QueueAllFromHere": "Set alt her i kø",
|
||||
"RecentlyWatched": "Nyligt sete",
|
||||
"RecommendationBecauseYouLike": "Fordi du kan lide {0}",
|
||||
"RecommendationBecauseYouWatched": "Fordi du har set {0}",
|
||||
|
@ -1090,7 +1081,6 @@
|
|||
"Art": "Kunst",
|
||||
"Ascending": "Stigende",
|
||||
"Auto": "Auto",
|
||||
"AutoBasedOnLanguageSetting": "Automatisk (baseret på sprogindstilling)",
|
||||
"Backdrop": "Baggrund",
|
||||
"Backdrops": "Baggrunde",
|
||||
"Banner": "Banner",
|
||||
|
@ -1199,7 +1189,6 @@
|
|||
"LabelCache": "Cache:",
|
||||
"LabelCertificatePassword": "Adgangskode til certifikat:",
|
||||
"LabelCertificatePasswordHelp": "Hvis dit certifikat kræver en adgangskode, skriv det venligst her.",
|
||||
"LabelDashboardTheme": "Server dashboard tema:",
|
||||
"LabelDateTimeLocale": "Dato og tid område:",
|
||||
"LabelDefaultScreen": "Standard skærm:",
|
||||
"LabelDisplayLanguage": "Visningssprog:",
|
||||
|
@ -1226,12 +1215,10 @@
|
|||
"LabelScreensaver": "Pauseskærm:",
|
||||
"LabelSelectFolderGroups": "Gruppér automatisk indhold fra følgende mapper ind i visninger som Film, Musik og TV:",
|
||||
"LabelSelectFolderGroupsHelp": "Mapper der ikke er valgt vil blive vist for sig selv i deres egen visning.",
|
||||
"LabelSkin": "Tema Skin:",
|
||||
"LabelSkipBackLength": "Gå tilbage længde:",
|
||||
"LabelSkipForwardLength": "Gå fremad længde:",
|
||||
"LabelSortBy": "Sortér efter:",
|
||||
"LabelSortOrder": "Sorteringsorden:",
|
||||
"LabelSoundEffects": "Lydeffekter:",
|
||||
"LabelStatus": "Status:",
|
||||
"LabelSubtitles": "Undertekster",
|
||||
"LabelTVHomeScreen": "TV modus hjemmeskærm:",
|
||||
|
@ -1253,7 +1240,6 @@
|
|||
"LearnHowYouCanContribute": "Lær hvordan du kan bidrage.",
|
||||
"LeaveBlankToNotSetAPassword": "Du kan lade dette felt være tomt hvis du ikke ønsker adgangskode.",
|
||||
"Like": "Favorit",
|
||||
"LinksValue": "Link: {0}",
|
||||
"List": "Liste",
|
||||
"Live": "Live",
|
||||
"LiveTV": "Se Live TV",
|
||||
|
@ -1266,7 +1252,6 @@
|
|||
"MediaInfoLayout": "Udlæg",
|
||||
"MediaInfoRefFrames": "Ref billeder",
|
||||
"MediaInfoSampleRate": "Sample rate",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoStreamTypeData": "Data",
|
||||
"MediaInfoStreamTypeVideo": "Video",
|
||||
"MediaIsBeingConverted": "Mediet bliver konverteret til et format der er kompatibel med enheden der afspiller mediet.",
|
||||
|
@ -1323,7 +1308,6 @@
|
|||
"RepeatAll": "Gentag alle",
|
||||
"RepeatMode": "Gentagelses tilstand",
|
||||
"RepeatOne": "Gentag én",
|
||||
"RunAtStartup": "Kør ved opstart",
|
||||
"ScanForNewAndUpdatedFiles": "Skan for nye og opdaterede filer",
|
||||
"Schedule": "Tidsplan",
|
||||
"Screenshot": "Skærmbillede",
|
||||
|
@ -1348,7 +1332,6 @@
|
|||
"TabLiveTV": "Live TV",
|
||||
"TabLogs": "Log",
|
||||
"TabMetadata": "Metadata",
|
||||
"TabPlaylist": "Afspilningsliste",
|
||||
"TabServer": "Server",
|
||||
"TabStreaming": "Streamer",
|
||||
"Tags": "Mærker",
|
||||
|
@ -1371,7 +1354,6 @@
|
|||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"ValueVideoCodec": "Video Codek: {0}",
|
||||
"Vertical": "Vertikal",
|
||||
"VideoRange": "Video rækkevidde",
|
||||
"Watched": "Set",
|
||||
"Whitelist": "Hvidliste",
|
||||
"Yes": "Ja",
|
||||
|
@ -1407,14 +1389,12 @@
|
|||
"SubtitleOffset": "Undertekst Offset",
|
||||
"SelectAdminUsername": "Vælg et brugernavn til administrator kontoen.",
|
||||
"Season": "Sæson",
|
||||
"ReleaseGroup": "Release Group",
|
||||
"Premiere": "Premiere",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Foretrækker integreret episode information frem for filnavne",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "Dette bruger episode informationen fra de integrerede metadata, hvis den er tilgængelig.",
|
||||
"PlaybackData": "Afspilningsdata",
|
||||
"Person": "Person",
|
||||
"PasswordResetProviderHelp": "Vælg en leverandør af nulstil adgangskode, der skal bruges, når denne bruger anmoder om en nulstilling af adgangskode",
|
||||
"OtherArtist": "Anden kunstner",
|
||||
"OptionThumbCard": "Thumb card",
|
||||
"OptionThumb": "Thumb",
|
||||
"OptionRandom": "Tilfældig",
|
||||
|
@ -1437,8 +1417,6 @@
|
|||
"MediaInfoStreamTypeSubtitle": "Undertekst",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Indlejret billede",
|
||||
"MediaInfoStreamTypeAudio": "Lyd",
|
||||
"LaunchWebAppOnStartupHelp": "Åben web klienten i den standard web browser når serveren starter første gang. Dette vil ikke ske når restart server funktionen benyttes.",
|
||||
"LaunchWebAppOnStartup": "Åben webinterfacet når serveren startes",
|
||||
"LabelWeb": "Web:",
|
||||
"LabelVideoResolution": "Videoopløsning:",
|
||||
"LabelVideoBitrate": "Video bitrate:",
|
||||
|
@ -1478,7 +1456,6 @@
|
|||
"FetchingData": "Henter yderligere data",
|
||||
"Episode": "Afsnit",
|
||||
"DeinterlaceMethodHelp": "Vælg hvilken konverteringsmulighed der skal bruges til transkodning af indhold.",
|
||||
"CopyStreamURLError": "Der skete en fejl med at kopiere URL'en.",
|
||||
"CopyStreamURLSuccess": "URL blev kopieret.",
|
||||
"CopyStreamURL": "Kopiér stream URL",
|
||||
"ClientSettings": "Klient Indstillinger",
|
||||
|
@ -1490,7 +1467,6 @@
|
|||
"EveryXHours": "Hver {0} time",
|
||||
"OnApplicationStartup": "Ved programstart",
|
||||
"UnsupportedPlayback": "Jellyfin kan ikke dekryptere indhold, der er beskyttet af DRM, men alt indhold vil blive forsøgt afspillet uanset, inklusive beskyttede titler. Nogle filer kan eventuelt vises med sort skærm på grund af kryptering eller andre funktioner, der ikke understøttes, såsom interaktive titler.",
|
||||
"MessageUnauthorizedUser": "Du har ikke tilladelse til at tilgå serveren på dette tidspunkt. Kontakt din serveradministrator for mere information.",
|
||||
"Filter": "Filtrer",
|
||||
"New": "Nye",
|
||||
"ButtonTogglePlaylist": "Spilleliste",
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"AccessRestrictedTryAgainLater": "Der Zugriff ist derzeit eingeschränkt. Bitte versuche es später erneut.",
|
||||
"Actor": "Darsteller(in)",
|
||||
"Add": "Hinzufügen",
|
||||
"AddItemToCollectionHelp": "Fügen Sie Elemente zu Sammlungen hinzu, indem Sie sie suchen und deren Rechtsklick- oder Antippmenü benutzen.",
|
||||
"AddToCollection": "Zur Sammlung hinzufügen",
|
||||
"AddToPlayQueue": "Zur Warteschlange hinzufügen",
|
||||
"AddToPlaylist": "Zur Wiedergabeliste hinzufügen",
|
||||
|
@ -36,7 +35,6 @@
|
|||
"Ascending": "Aufsteigend",
|
||||
"AspectRatio": "Seitenverhältnis",
|
||||
"AttributeNew": "Neu",
|
||||
"AutoBasedOnLanguageSetting": "Automatisch (basierend auf Spracheinstellung)",
|
||||
"Backdrop": "Hintergrund",
|
||||
"Backdrops": "Hintergründe",
|
||||
"BirthDateValue": "Geboren: {0}",
|
||||
|
@ -73,7 +71,6 @@
|
|||
"ButtonGotIt": "Verstanden",
|
||||
"ButtonGuide": "TV Guide",
|
||||
"ButtonHelp": "Hilfe",
|
||||
"ButtonLearnMore": "Erfahre mehr",
|
||||
"ButtonLibraryAccess": "Bibliothekszugang",
|
||||
"ButtonManualLogin": "Manuelle Anmeldung",
|
||||
"ButtonMore": "Mehr",
|
||||
|
@ -115,7 +112,6 @@
|
|||
"ButtonSubtitles": "Untertitel",
|
||||
"ButtonUninstall": "Deinstallieren",
|
||||
"ButtonUp": "Hoch",
|
||||
"ButtonViewWebsite": "Besuche die Website",
|
||||
"CancelRecording": "Aufnahme abbrechen",
|
||||
"CancelSeries": "Serien abbrechen",
|
||||
"Categories": "Kategorien",
|
||||
|
@ -158,8 +154,8 @@
|
|||
"DetectingDevices": "Suche Geräte",
|
||||
"DeviceAccessHelp": "Dies wird nur auf Geräte angewandt die eindeutig identifiziert werden können und verhindert nicht den Web-Zugriff. Gefilterter Zugriff auf Geräte verhindert die Nutzung neuer Geräte solange, bis der Zugriff für diese freigegeben wird.",
|
||||
"DirectPlaying": "Direktes Abspielen",
|
||||
"DirectStreamHelp1": "Das Medium ist mit dem Abspielgerät kompatibel bzgl. Auflösung und Codecs (H.264, AC3, etc.), besitzt jedoch ein inkompatibles Containerformat (mkv, avi, wmv, etc.). Das Video wird in Echtzeit neuverpackt bevor es zum Abspielgerät gestreamt wird.",
|
||||
"DirectStreamHelp2": "Direktes Streaming von Dateien benötigt sehr wenig Rechenleistung ohne Verlust der Videoqualität.",
|
||||
"DirectStreamHelp1": "Das Medium ist mit dem Abspielgerät kompatibel bzgl. Auflösung und Codecs (H.264, AC3, etc.), besitzt jedoch ein inkompatibles Containerformat (mkv, avi, wmv, etc.). Das Video wird in Echtzeit neu verpackt bevor es zum Abspielgerät gesendet wird.",
|
||||
"DirectStreamHelp2": "Direkt Stream benötigt sehr wenig Rechenleistung mit minimalem Verlust der Videoqualität.",
|
||||
"DirectStreaming": "Direktes Streaming",
|
||||
"Director": "Regisseur",
|
||||
"Directors": "Regisseure",
|
||||
|
@ -263,11 +259,10 @@
|
|||
"HeaderAllowMediaDeletionFrom": "Erlaube Medienlöschung von",
|
||||
"HeaderApiKey": "API-Schlüssel",
|
||||
"HeaderApiKeys": "API-Schlüssel",
|
||||
"HeaderApiKeysHelp": "Externe Applikationen benötigen einen API-Schlüssel, um mit dem Jellyfin-Server zu kommunizieren. API-Schlüssel werden beim Anmelden mit einem Jellyfin-Konto oder durch eine manuelle Freigabe vergeben.",
|
||||
"HeaderApiKeysHelp": "Externe Applikationen benötigen einen API-Schlüssel, um mit dem Server zu kommunizieren. API-Schlüssel werden beim Anmelden mit einem normalen Benutzerkonto oder durch eine manuelle Freigabe vergeben.",
|
||||
"HeaderAppearsOn": "Erscheint auf",
|
||||
"HeaderAudioBooks": "Hörbücher",
|
||||
"HeaderAudioSettings": "Audioeinstellungen",
|
||||
"HeaderAutomaticUpdates": "Automatische Updates",
|
||||
"HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit keiner oder nicht erkannter Altersfreigabe:",
|
||||
"HeaderBooks": "Bücher",
|
||||
"HeaderBranding": "Branding / CSS",
|
||||
|
@ -333,7 +328,7 @@
|
|||
"HeaderItems": "Inhalte",
|
||||
"HeaderKeepRecording": "Aufnahme behalten",
|
||||
"HeaderKeepSeries": "Serie behalten",
|
||||
"HeaderKodiMetadataHelp": "Jellyfin bietet native Unterstützung von NFO Metadatendateien. Um NFO Metadaten zu aktivieren oder deaktivieren, verwende den \"Metadaten\" Tab um die Optionen für deinen Medientypen zu konfigurieren.",
|
||||
"HeaderKodiMetadataHelp": "Um NFO Metadaten zu aktivieren oder deaktivieren, bearbeite eine Bibliothek und mache den Metadaten-Speicherer Abschnitt ausfindig.",
|
||||
"HeaderLatestEpisodes": "Neueste Episoden",
|
||||
"HeaderLatestMedia": "Neueste Medien",
|
||||
"HeaderLatestMovies": "Neueste Filme",
|
||||
|
@ -381,7 +376,7 @@
|
|||
"HeaderPreferredMetadataLanguage": "Bevorzugte Sprache der Metadaten",
|
||||
"HeaderProfile": "Profil",
|
||||
"HeaderProfileInformation": "Profil Infomationen",
|
||||
"HeaderProfileServerSettingsHelp": "Diese Werte geben an, wie Jellyfin Server sich Ihren Geräten präsentiert.",
|
||||
"HeaderProfileServerSettingsHelp": "Diese Werte geben an, wie der Server sich Ihren Clients präsentiert.",
|
||||
"HeaderRecentlyPlayed": "Zuletzt gesehen",
|
||||
"HeaderRecordingOptions": "Aufnahmeeinstellungen",
|
||||
"HeaderRecordingPostProcessing": "Aufnahme Nachbearbeitung",
|
||||
|
@ -399,13 +394,13 @@
|
|||
"HeaderSecondsValue": "{0} Sekunden",
|
||||
"HeaderSelectCertificatePath": "Wählen Sie einen Zertifikat Ordner",
|
||||
"HeaderSelectMetadataPath": "Wähle Metadaten Pfad",
|
||||
"HeaderSelectMetadataPathHelp": "Suche oder gib den Pfad für die Speicherung von Metadaten an. Das Verzeichnis muss beschreibbar sein.",
|
||||
"HeaderSelectMetadataPathHelp": "Suche oder gib den Pfad für Metadaten an. Das Verzeichnis muss beschreibbar sein.",
|
||||
"HeaderSelectPath": "Verzeichnis Wählen",
|
||||
"HeaderSelectServer": "Wähle Server",
|
||||
"HeaderSelectServerCachePath": "Wähle Server Cache Pfad",
|
||||
"HeaderSelectServerCachePathHelp": "Suche oder gib den Pfad für die Speicherung von Server Cache Dateien an. Das Verzeichnis muss beschreibbar sein.",
|
||||
"HeaderSelectTranscodingPath": "Wähle Pfad für temporäre Transkodierdateien",
|
||||
"HeaderSelectTranscodingPathHelp": "Suche oder gib den Pfad für die Speicherung von temporären Transkodierdateien an. Das Verzeichnis muss beschreibbar sein.",
|
||||
"HeaderSelectTranscodingPathHelp": "Suche oder gib den Pfad für die Speicherung Transkodierdateien an. Das Verzeichnis muss beschreibbar sein.",
|
||||
"HeaderSendMessage": "Nachricht senden",
|
||||
"HeaderSeries": "Serien",
|
||||
"HeaderSeriesOptions": "Serienoptionen",
|
||||
|
@ -452,8 +447,8 @@
|
|||
"HttpsRequiresCert": "Um https für externe Verbindungen zu erzwingen, benötigst du ein vertrauenswürdiges SSL-Zertifikat, z.B. von Let's Encrypt. Bitte stelle entweder ein Zertifikat bereit, oder deaktiviere sichere Verbindungen.",
|
||||
"Identify": "Identifizieren",
|
||||
"Images": "Bilder",
|
||||
"ImportFavoriteChannelsHelp": "Wenn aktiviert, werden nur auf dem Tuner favorisierte Kanäle importiert.",
|
||||
"ImportMissingEpisodesHelp": "Wenn aktiviert, werden Informationen über fehlende Episoden in Deine Jellyfin Datenbank importiert und innerhalb von Staffeln angezeigt. Dies kann zu deutlich längeren Bibliothek Scans führen.",
|
||||
"ImportFavoriteChannelsHelp": "Nur auf dem Tuner favorisierte Kanäle werden importiert.",
|
||||
"ImportMissingEpisodesHelp": "Informationen über fehlende Episoden werden in deine Datenbank importiert und innerhalb von Staffeln angezeigt. Dies kann zu deutlich längeren Bibliothek Scans führen.",
|
||||
"InstallingPackage": "Installiere {0} (Version {1})",
|
||||
"InstantMix": "Schnellmix",
|
||||
"ItemCount": "{0} Einträge",
|
||||
|
@ -478,21 +473,19 @@
|
|||
"LabelAlbumArtists": "Alben Interpreten:",
|
||||
"LabelAll": "Alle",
|
||||
"LabelAllowHWTranscoding": "Erlaube Hardware Transkodierung",
|
||||
"LabelAllowServerAutoRestart": "Erlaube dem Server sich automatisch neuzustarten, um Updates durchzuführen",
|
||||
"LabelAllowServerAutoRestartHelp": "Der Server startet nur wenn keine Nutzer aktiv sind neu.",
|
||||
"LabelAllowedRemoteAddresses": "Remote-IP Adressen Filter:",
|
||||
"LabelAllowedRemoteAddressesMode": "Remote IP Adressen Filtermodus:",
|
||||
"LabelAppName": "App Name",
|
||||
"LabelAppNameExample": "Beispiel: Sickbeard, Sonarr",
|
||||
"LabelArtists": "Interpreten:",
|
||||
"LabelArtistsHelp": "Trenne mehrere Einträge durch ;",
|
||||
"LabelArtistsHelp": "Trenne mehrere Künstler durch ein Semikolon.",
|
||||
"LabelAudioLanguagePreference": "Bevorzugte Audiosprache:",
|
||||
"LabelAutomaticallyRefreshInternetMetadataEvery": "Aktualisiere Metadaten automatisch aus dem Internet:",
|
||||
"LabelBindToLocalNetworkAddress": "Binde an lokale Netzwerkadresse:",
|
||||
"LabelBindToLocalNetworkAddressHelp": "Optional. Überschreibt die lokale IP Adresse des HTTP Servers. Wenn leer, wird der Server an alle verfügbaren Adressen gebunden. Änderungen benötigen einen Neustart des Jellyfin Servers.",
|
||||
"LabelBindToLocalNetworkAddressHelp": "Überschreibt die lokale IP Adresse für den HTTP Server. Wenn leer, wird der Server an alle verfügbaren Adressen gebunden. Änderungen benötigen einen Neustart des Jellyfin Servers.",
|
||||
"LabelBirthDate": "Geburtsdatum:",
|
||||
"LabelBirthYear": "Geburtsjahr:",
|
||||
"LabelBlastMessageInterval": "Alive Meldungsintervall (Sekunden)",
|
||||
"LabelBlastMessageInterval": "Alive Meldungsintervall",
|
||||
"LabelBlastMessageIntervalHelp": "Legt die Dauer in Sekunden zwischen den Server-Alive-Meldungen fest.",
|
||||
"LabelBlockContentWithTags": "Blockiere Inhalte mit Tags:",
|
||||
"LabelBurnSubtitles": "Untertitel einbrennen:",
|
||||
|
@ -511,11 +504,10 @@
|
|||
"LabelCustomCertificatePath": "Benutzerdefinierter SSL-Zertifikatspfad:",
|
||||
"LabelCustomCertificatePathHelp": "Pfad zu einer PKCS #12 Datei die ein Zertifikat und einen privaten Schlüssel enthält, um TLS Unterstützung für eine eigene Domain zu aktivieren.",
|
||||
"LabelCustomCss": "Benutzerdefiniertes CSS:",
|
||||
"LabelCustomCssHelp": "Wende dein eigenes benutzerdefiniertes Styling auf die Weboberfläche an.",
|
||||
"LabelCustomCssHelp": "Wende deine eigenen benutzerdefinierte Styles auf die Weboberfläche an.",
|
||||
"LabelCustomDeviceDisplayName": "Angezeigter Name:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Lege einen individuellen Anzeigenamen fest oder lasse das Feld leer, um den vom gerät übermittelten Namen zu nutzen.",
|
||||
"LabelCustomRating": "Eigene Bewertung:",
|
||||
"LabelDashboardTheme": "Server Dashboard Theme:",
|
||||
"LabelDateAdded": "Hinzugefügt am:",
|
||||
"LabelDateAddedBehavior": "Verhalten für Hinzufügedatum bei neuen Inhalten:",
|
||||
"LabelDateAddedBehaviorHelp": "Wenn ein Metadatenwert vorhanden ist, wird dieser immer gegenüber den anderen Optionen bevorzugt werden.",
|
||||
|
@ -547,12 +539,12 @@
|
|||
"LabelEnableAutomaticPortMapHelp": "Leitet automatisch die öffentlichen Ports des Routers an die lokalen Ports des Servers mit Hilfe von UPnP weiter. Dies kann mit einigen Router-Modellen nicht funktionieren. Die Änderungen werden erst nach einem Neustart des Server aktiv.",
|
||||
"LabelEnableBlastAliveMessages": "Erzeuge Alive Meldungen",
|
||||
"LabelEnableBlastAliveMessagesHelp": "Aktiviere dies, wenn der Server nicht zuverlässig von anderen UPnP Geräten in ihrem Netzwerk erkannt wird.",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Client-Entdeckungs Intervall (Sekunden)",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Client-Entdeckungs Intervall",
|
||||
"LabelEnableDlnaClientDiscoveryIntervalHelp": "Ermittelt die Zeit in Sekunden zwischen SSDP Suchanfragen die durch Jellyfin ausgeführt wurden.",
|
||||
"LabelEnableDlnaDebugLogging": "Aktiviere DLNA Debug Logging",
|
||||
"LabelEnableDlnaDebugLoggingHelp": "Erzeugt große Logdateien und sollte nur zur Fehlerbehebung benutzt werden.",
|
||||
"LabelEnableDlnaPlayTo": "Aktiviere DLNA Play To",
|
||||
"LabelEnableDlnaPlayToHelp": "Jellyfin kann Geräte in Ihrem Netzwerk erkennen und bietet die Möglichkeit, diese fernzusteuern.",
|
||||
"LabelEnableDlnaPlayToHelp": "Jellyfin kann Geräte in Ihrem Netzwerk erkennen und bietet die Möglichkeit diese fernzusteuern.",
|
||||
"LabelEnableDlnaServer": "DLNA-Server aktivieren",
|
||||
"LabelEnableDlnaServerHelp": "Erlaubt UPnP Geräten in Ihrem Netzwerk den Zugriff und die Wiedergabe von Inhalten.",
|
||||
"LabelEnableHardwareDecodingFor": "Aktiviere Hardware-Decoding für:",
|
||||
|
@ -572,16 +564,16 @@
|
|||
"LabelFont": "Schriftart:",
|
||||
"LabelForgotPasswordUsernameHelp": "Bitte gib deinen Benutzernamen ein, falls du dich daran erinnerst.",
|
||||
"LabelFriendlyName": "Benutzerfreundlicher Name:",
|
||||
"LabelServerNameHelp": "Dieser Name wird benutzt um den Server zu identifizieren, standardmäßig wird der Server-/Computername verwendet.",
|
||||
"LabelServerNameHelp": "Dieser Name wird benutzt, um den Server zu identifizieren, standardmäßig wird der Hostname des Servers verwendet.",
|
||||
"LabelGroupMoviesIntoCollections": "Gruppiere Filme in Collections",
|
||||
"LabelGroupMoviesIntoCollectionsHelp": "Wenn Filmlisten angezeigt werden, dann werden Filme, die zu einer Collection gehören, als ein gruppiertes Element angezeigt.",
|
||||
"LabelGroupMoviesIntoCollectionsHelp": "Wenn Filmlisten angezeigt werden, werden Filme in einer Sammlung als ein gruppiertes Element angezeigt.",
|
||||
"LabelEncoderPreset": "H264 Encoding Voreinstellung:",
|
||||
"LabelHardwareAccelerationType": "Hardware Beschleunigung:",
|
||||
"LabelHardwareAccelerationTypeHelp": "Hardwarebeschleunigung benötigt zusätzliche Konfiguration.",
|
||||
"LabelHomeNetworkQuality": "Heimnetzwerkqualität:",
|
||||
"LabelHomeScreenSectionValue": "Startseitenbereich {0}:",
|
||||
"LabelHttpsPort": "Lokale HTTPS-Portnummer:",
|
||||
"LabelHttpsPortHelp": "Die TCP-Portnummer, die der HTTPS-Server von Jellyfin verwenden soll.",
|
||||
"LabelHttpsPortHelp": "Die TCP-Portnummer für den HTTPS-Server.",
|
||||
"LabelIconMaxHeight": "Maximale Iconhöhe:",
|
||||
"LabelIconMaxHeightHelp": "Maximale Auflösung für durch UPnP übermittelte Icons:icon.",
|
||||
"LabelIconMaxWidth": "Maximale Iconbreite:",
|
||||
|
@ -609,7 +601,7 @@
|
|||
"LabelLanguage": "Sprache:",
|
||||
"LabelLineup": "TV Programm:",
|
||||
"LabelLocalHttpServerPortNumber": "Lokale HTTP Portnummer:",
|
||||
"LabelLocalHttpServerPortNumberHelp": "Die TCP-Portnummer, die der HTTP-Server von Jellyfin verwenden soll.",
|
||||
"LabelLocalHttpServerPortNumberHelp": "Die TCP-Portnummer für den HTTP-Server.",
|
||||
"LabelLockItemToPreventChanges": "Sperre diesen Eintrag um zukünftige Änderungen zu verhindern",
|
||||
"LabelLoginDisclaimer": "Anmeldung Haftungsausschluss:",
|
||||
"LabelLoginDisclaimerHelp": "Diese Nachricht wird am unteren Ende des Anmeldebildschirms angezeigt.",
|
||||
|
@ -634,7 +626,7 @@
|
|||
"LabelMetadataReaders": "Metadatenleser:",
|
||||
"LabelMetadataReadersHelp": "Lege deine bevorzugte lokale Metadatenquelle fest und ordne sie nach Prioritäten. Die erste Datei die gefunden wird, wird verwendet.",
|
||||
"LabelMetadataSavers": "Metadaten-Speicherer:",
|
||||
"LabelMetadataSaversHelp": "Wähle das Dateiformat, in dem deine Metadaten gespeichert werden sollen.",
|
||||
"LabelMetadataSaversHelp": "Wähle die Dateiformate, die beim Speichern deiner Metadaten verwendet werden sollen.",
|
||||
"LabelMethod": "Methode:",
|
||||
"LabelMinBackdropDownloadWidth": "Minimale Breite für zu herunterladende Hintergründe:",
|
||||
"LabelMinResumeDuration": "Minimale Dauer für Wiederaufnahme:",
|
||||
|
@ -650,9 +642,9 @@
|
|||
"LabelMovieCategories": "Filmkategorien:",
|
||||
"LabelMoviePrefix": "Filmpräfix:",
|
||||
"LabelMoviePrefixHelp": "Wenn ein Präfix in Filmtiteln angewendet wird, gib es hier ein damit der Server es korrekt behandeln kann.",
|
||||
"LabelMovieRecordingPath": "Film Aufnahmepfad (Optional):",
|
||||
"LabelMovieRecordingPath": "Film Aufnahmepfad:",
|
||||
"LabelMusicStreamingTranscodingBitrate": "Musik-Transkodierung Bitrate:",
|
||||
"LabelMusicStreamingTranscodingBitrateHelp": "Wähle die maximale Bitrate für das streamen von Musik.",
|
||||
"LabelMusicStreamingTranscodingBitrateHelp": "Wähle die maximale Bitrate für das Streamen von Musik.",
|
||||
"LabelNewName": "Neuer Name:",
|
||||
"LabelNewPassword": "Neues Passwort:",
|
||||
"LabelNewPasswordConfirm": "Neues Passwort wiederholen:",
|
||||
|
@ -662,7 +654,7 @@
|
|||
"LabelNumber": "Nummer:",
|
||||
"LabelNumberOfGuideDays": "Anzahl von Tagen für die Programminformationen geladen werden sollen:",
|
||||
"LabelNumberOfGuideDaysHelp": "Das laden von zusätzlichen Programmdaten bietet einen besseren Überblick und die Möglichkeit weiter in die Zukunft zu planen. Aber es wird länger dauern alles herunterzuladen. Auto wählt auf Grundlage der Kanalanzahl.",
|
||||
"LabelOptionalNetworkPath": "(Optionaler) Gemeinsamer Netzwerkordner:",
|
||||
"LabelOptionalNetworkPath": "Geteilter Netzwerkordner:",
|
||||
"LabelOptionalNetworkPathHelp": "Wenn dieser Ordner in deinem Netzwerk geteilt wird, kann die Weitergabe des Netzwerkpfades Jellyfin Apps auf anderen Geräten direkten Zugang zu den Mediendateien ermöglichen. Beispielsweise {0} oder {1}.",
|
||||
"LabelOriginalAspectRatio": "Original Seitenverhältnis:",
|
||||
"LabelOriginalTitle": "Original Titel:",
|
||||
|
@ -705,7 +697,7 @@
|
|||
"LabelReleaseDate": "Veröffentlichungsdatum:",
|
||||
"LabelRemoteClientBitrateLimit": "Limit für die Internet Streaming Datenrate (Mbps):",
|
||||
"LabelRemoteClientBitrateLimitHelp": "Ein optionales Bitratenlimit pro Stream für alle Geräte außerhalb des Netzwerkes. Dies ist nützlich um zu verhindern, dass Geräte eine höhere Datenrate verwenden als die Internetverbindung erlaubt. Es kann zu erhöhter CPU-Last auf deinem Server kommen, da ggf. Videos in Echtzeit in eine niedrigere Bitrate transkodiert werden müssen.",
|
||||
"LabelRuntimeMinutes": "Laufzeit (Minuten):",
|
||||
"LabelRuntimeMinutes": "Laufzeit:",
|
||||
"LabelSaveLocalMetadata": "Speichere Bildmaterial und Metadaten in den Medienverzeichnissen",
|
||||
"LabelSaveLocalMetadataHelp": "Durch die Speicherung von Bildmaterial und Metadaten direkt in den Medienverzeichnissen, befinden sich diese an einem Ort wo sie sehr leicht bearbeitet werden können.",
|
||||
"LabelScheduledTaskLastRan": "Zuletzt ausgeführt vor: {0}. Benötigte Zeit: {1}.",
|
||||
|
@ -717,7 +709,7 @@
|
|||
"LabelSelectVersionToInstall": "Wähle die Version für die Installation:",
|
||||
"LabelSendNotificationToUsers": "Sende die Benachrichtigung an:",
|
||||
"LabelSerialNumber": "Seriennummer",
|
||||
"LabelSeriesRecordingPath": "Serien Aufnahmepfad (optional):",
|
||||
"LabelSeriesRecordingPath": "Serien Aufnahmepfad:",
|
||||
"LabelServerHost": "Adresse:",
|
||||
"LabelServerHostHelp": "192.168.1.100 oder https://myserver.com",
|
||||
"LabelSimultaneousConnectionLimit": "Paralleler Streamlimit:",
|
||||
|
@ -732,7 +724,6 @@
|
|||
"LabelSortBy": "Sortiert nach:",
|
||||
"LabelSortOrder": "Sortierreihenfolge:",
|
||||
"LabelSortTitle": "Sortierungs Titel:",
|
||||
"LabelSoundEffects": "Soundeffekte:",
|
||||
"LabelSource": "Quelle:",
|
||||
"LabelSpecialSeasonsDisplayName": "Anzeigename für Serien-Specials:",
|
||||
"LabelSportsCategories": "Sportkategorie:",
|
||||
|
@ -779,11 +770,10 @@
|
|||
"LabelXDlnaDoc": "X-DLNA Dokument:",
|
||||
"LabelXDlnaDocHelp": "Legt den Inhalt des X_DLNADOC Elements in der urn:schemas-dlna-org:device-1-0 namespace fest.",
|
||||
"LabelYear": "Jahr:",
|
||||
"LabelYourFirstName": "Vorname:",
|
||||
"LabelYoureDone": "Du bist fertig!",
|
||||
"LabelZipCode": "PLZ:",
|
||||
"LabelffmpegPath": "FFmpeg Verzeichnis:",
|
||||
"LabelffmpegPathHelp": "Verzeichnis zur runtergeladenen FFmpeg Applikation oder zum Ordner, der FFMpeg enthält.",
|
||||
"LabelffmpegPathHelp": "Verzeichnis zur FFmpeg Applikationsdatei oder zum Ordner, der FFmpeg enthält.",
|
||||
"LanNetworksHelp": "Komma separierte Liste von IP Adressen oder IP Masken die als lokale Netzwerke behandelt werden sollen um Bandbreitenlimitationen auszusetzen. Wenn befüllt werden alle anderen IP Adressen als externe Netzwerke behandelt und unterliegen den Bandbreitenlimitationen für externe Verbindungen. Wenn leer, wird nur das SubNetz des Servers als Lokales Netz gesetzt.",
|
||||
"Large": "Groß",
|
||||
"LatestFromLibrary": "Neueste {0}",
|
||||
|
@ -839,7 +829,6 @@
|
|||
"MessageFileReadError": "Es gab einen Fehler beim Lesen der Datei. Bitte versuche es erneut.",
|
||||
"MessageForgotPasswordFileCreated": "Die folgende Datei wurde auf deinem Server erstellt und enthält eine Anleitung, wie fortgefahren werden muss:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Bitte versuche es erneut innerhalb deines Heimnetzwerks, um die Passwort Zurücksetzung zu starten.",
|
||||
"MessageInstallPluginFromApp": "Dieses Plugin muss von der App aus installiert werden, in der du es benutzen willst.",
|
||||
"MessageInvalidForgotPasswordPin": "Ein ungültiger oder abgelaufener PIN-Code wurde eingegeben. Bitte versuche es noch einmal.",
|
||||
"MessageInvalidUser": "Falscher Benutzername oder Passwort. Bitte versuche es noch einmal.",
|
||||
"MessageItemSaved": "Element gespeichert.",
|
||||
|
@ -864,7 +853,7 @@
|
|||
"MessageYouHaveVersionInstalled": "Du hast momentan Version {0} installiert.",
|
||||
"Metadata": "Metadaten",
|
||||
"MetadataManager": "Metadaten-Manager",
|
||||
"MetadataSettingChangeHelp": "Das Verändern der Metadata-Einstellungen hat nur Einfluss auf neu hinzugefügte Inhalte. Um eine Aktualisierung bereits hinzugefügter Inhalte durchzuführen, öffnen Sie bitte die Detail Ansicht und klicken die Aktualisieren Schaltfläche. Die Aktualisierung mehrerer Inhalte kann im Metadata Manager durchgeführt werden.",
|
||||
"MetadataSettingChangeHelp": "Das Verändern der Metadata-Einstellungen hat nur Einfluss auf neu hinzugefügte Inhalte. Um eine Aktualisierung bereits hinzugefügter Inhalte durchzuführen, öffnen Sie bitte die Detailansicht und klicken die Aktualisieren-Schaltfläche. Die Aktualisierung mehrerer Inhalte kann im Metadata Manager durchgeführt werden.",
|
||||
"MinutesAfter": "Minuten nach",
|
||||
"MinutesBefore": "Minuten vor",
|
||||
"Mobile": "Smartphone",
|
||||
|
@ -910,7 +899,7 @@
|
|||
"OptionAllowLinkSharingHelp": "Es werden nur Web-Seiten mit Medieninformationen geteilt. Medien hingenen werden niemals öffentlich geteilt. Die geteilten Inhalte sind nur begrenzt zugänglich werden nach {0} Tagen ungültig.",
|
||||
"OptionAllowManageLiveTv": "Erlaube Live-TV Aufnahmeplanung",
|
||||
"OptionAllowMediaPlayback": "Erlaube Medienwiedergabe",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "Das Einschränken des Transcoding-Zugriffes kann bei nicht unterstützten Medienformaten Abspielfehler in Jellyfin Apps hervorrufen.",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "Das Einschränken des Transcoding-Zugriffes kann durch nicht unterstützte Medienformate Abspielfehler in Clients hervorrufen.",
|
||||
"OptionAllowRemoteControlOthers": "Erlaube Fernsteuerung anderer Benutzer",
|
||||
"OptionAllowRemoteSharedDevices": "Erlaube Fernsteuerung geteilter Geräte",
|
||||
"OptionAllowRemoteSharedDevicesHelp": "DLNA-Geräte werden als gemeinsam genutzt betrachtet, bis ein Benutzer die Steuerung übernimmt.",
|
||||
|
@ -921,7 +910,7 @@
|
|||
"OptionArtist": "Interpret",
|
||||
"OptionAscending": "Aufsteigend",
|
||||
"OptionAutomaticallyGroupSeries": "Vermische Serieninhalte, die in verschiedenen Ordnern abgelegt sind",
|
||||
"OptionAutomaticallyGroupSeriesHelp": "Wenn aktiviert, werden Inhalte einer Serie in verschiedenen Ordnern innerhalb einer Bibliothek als eine Serie angezeigt.",
|
||||
"OptionAutomaticallyGroupSeriesHelp": "Inhalte einer Serie in verschiedenen Ordnern werden innerhalb einer Bibliothek als eine Serie angezeigt.",
|
||||
"OptionBlockBooks": "Bücher",
|
||||
"OptionBlockChannelContent": "Internet Channelinhalte",
|
||||
"OptionBlockLiveTvChannels": "Live-TV Kanäle",
|
||||
|
@ -940,7 +929,7 @@
|
|||
"OptionDatePlayed": "Gesehen am",
|
||||
"OptionDescending": "Absteigend",
|
||||
"OptionDisableUser": "Sperre diesen Benutzer",
|
||||
"OptionDisableUserHelp": "Wenn deaktiviert wird der Server keine Verbindung von diesem Benutzer erlauben. Bestehende Verbindungen werden sofort beendet.",
|
||||
"OptionDisableUserHelp": "Der Server keine Verbindung von diesem Benutzer erlauben. Bestehende Verbindungen werden sofort beendet.",
|
||||
"OptionDislikes": "Mag ich nicht",
|
||||
"OptionDisplayFolderView": "Darstellung in Verzeichnisansicht zeigt Medien Verzechnisse",
|
||||
"OptionDisplayFolderViewHelp": "Zeige eine Verzeichnisansicht neben deinen Bibliotheken an. Dies kann praktisch sein, wenn man nur Verzeichnisansichten verwendet.",
|
||||
|
@ -948,7 +937,7 @@
|
|||
"OptionDownloadBackImage": "Zurück",
|
||||
"OptionDownloadDiscImage": "Disk",
|
||||
"OptionDownloadImagesInAdvance": "Bilder vorab herunterladen",
|
||||
"OptionDownloadImagesInAdvanceHelp": "Grundsätzlich werden die meisten Bilder erst dann runter geladen, wenn eine Jellyfin-App diese anfragt. Schalten Sie diese Option ein um alle Bilder im Voraus herunterzuladen, wenn neue Medien importiert wurden. Diese Einstellung kann zu signifikant längeren Bibliothekscans führen.",
|
||||
"OptionDownloadImagesInAdvanceHelp": "Standardmäßig werden die meisten Bilder erst dann heruntergeladen, wenn ein Client diese anfragt. Schalten Sie diese Option ein um alle Bilder im Voraus herunterzuladen, wenn neue Medien importiert werden. Diese Einstellung kann zu signifikant längeren Bibliothekscans führen.",
|
||||
"OptionDownloadMenuImage": "Menü",
|
||||
"OptionDownloadPrimaryImage": "Primär",
|
||||
"OptionDvd": "DVD",
|
||||
|
@ -978,7 +967,7 @@
|
|||
"OptionHlsSegmentedSubtitles": "HLS segmentierte Untertitel",
|
||||
"OptionHomeVideos": "Fotos",
|
||||
"OptionIgnoreTranscodeByteRangeRequests": "Ignoriere Anfragen für Transkodierbytebereiche",
|
||||
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Falls aktiviert, werden diese Anfragen berücksichtigt aber Byte-Range-Header ignoriert werden.",
|
||||
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Diese Anfragen werden berücksichtigt, aber den Byte-Range-Header ignorieren.",
|
||||
"OptionImdbRating": "IMDb Bewertung",
|
||||
"OptionLikes": "Mag ich",
|
||||
"OptionMissingEpisode": "Fehlende Episoden",
|
||||
|
@ -989,9 +978,9 @@
|
|||
"OptionOnInterval": "Nach einem Intervall",
|
||||
"OptionParentalRating": "Altersfreigabe",
|
||||
"OptionPlainStorageFolders": "Zeige alle Verzeichnisse als reine Speicherorte an",
|
||||
"OptionPlainStorageFoldersHelp": "Falls aktiviert, werden alle Verzeichnisse in DIDL als \"object.container.storageFolder\" angezeigt, anstatt eines spezifischen Typs wie beispielsweise \"object.container.person.musicArtist\".",
|
||||
"OptionPlainStorageFoldersHelp": "Alle Verzeichnisse werden in DIDL als \"object.container.storageFolder\" angezeigt, anstatt eines spezifischen Typs wie beispielsweise \"object.container.person.musicArtist\".",
|
||||
"OptionPlainVideoItems": "Zeige alle Videos als reine Videodateien an",
|
||||
"OptionPlainVideoItemsHelp": "Falls aktiviert, werden alle Videos in DIDL als \"object.item.videoItem\" angezeigt, anstatt eines spezifischen Typs wie beispielsweise \"object.item.videoItem.movie\".",
|
||||
"OptionPlainVideoItemsHelp": "Alle Videos werden in DIDL als \"object.item.videoItem\" angezeigt, anstatt eines spezifischen Typs wie beispielsweise \"object.item.videoItem.movie\".",
|
||||
"OptionPlayCount": "Zähler",
|
||||
"OptionPlayed": "Gesehen",
|
||||
"OptionPremiereDate": "Premiere",
|
||||
|
@ -1060,7 +1049,6 @@
|
|||
"ProductionLocations": "Drehorte",
|
||||
"Programs": "Programme",
|
||||
"Quality": "Qualität",
|
||||
"QueueAllFromHere": "Setze alles von hier auf Warteschlange",
|
||||
"Raised": "Angehoben",
|
||||
"Rate": "Bewerte",
|
||||
"RecentlyWatched": "Kürzlich gesehen",
|
||||
|
@ -1075,7 +1063,7 @@
|
|||
"RecordingScheduled": "Aufnahme geplant.",
|
||||
"Recordings": "Aufnahmen",
|
||||
"Refresh": "Aktualisieren",
|
||||
"RefreshDialogHelp": "Metadaten werden auf Basis der Einstellungen und Internet Services in den Jellyfin Server Einstellungen aktualisiert.",
|
||||
"RefreshDialogHelp": "Metadaten werden auf Basis der Einstellungen und Internet Services, die im Dashboard aktiviert sind, aktualisiert.",
|
||||
"RefreshMetadata": "Aktualisiere Metadaten",
|
||||
"RefreshQueued": "Aktualisierung eingereiht.",
|
||||
"ReleaseDate": "Veröffentlichungsdatum",
|
||||
|
@ -1091,7 +1079,6 @@
|
|||
"ReplaceExistingImages": "Ersetze vorhandene Bilder",
|
||||
"ResumeAt": "Fortsetzen bei {0}",
|
||||
"Rewind": "Zurückspulen",
|
||||
"RunAtStartup": "Nach Hochfahren automatisch starten",
|
||||
"Runtime": "Laufzeit",
|
||||
"Saturday": "Samstag",
|
||||
"Save": "Speichern",
|
||||
|
@ -1178,7 +1165,6 @@
|
|||
"TabParentalControl": "Kindersicherung",
|
||||
"TabPassword": "Passwort",
|
||||
"TabPlayback": "Wiedergabe",
|
||||
"TabPlaylist": "Wiedergabeliste",
|
||||
"TabPlaylists": "Wiedergabelisten",
|
||||
"TabProfile": "Profil",
|
||||
"TabProfiles": "Profile",
|
||||
|
@ -1292,7 +1278,6 @@
|
|||
"LabelName": "Name:",
|
||||
"LabelProfileCodecs": "Codecs:",
|
||||
"LabelProfileContainer": "Container:",
|
||||
"LabelSkin": "Textur:",
|
||||
"Art": "Coverkunst",
|
||||
"Name": "Name",
|
||||
"Songs": "Songs",
|
||||
|
@ -1304,7 +1289,6 @@
|
|||
"LabelVersion": "Version:",
|
||||
"LabelVideo": "Video",
|
||||
"LeaveBlankToNotSetAPassword": "Dieses Feld frei lassen, um kein Passwort zu setzen.",
|
||||
"LinksValue": "Links: {0}",
|
||||
"MessageImageFileTypeAllowed": "Nur JPEG- und PNG-Dateien werden unterstützt.",
|
||||
"MessageImageTypeNotSelected": "Bitte wähle einen Bildtyp aus dem Drop-Down Menü aus.",
|
||||
"Normal": "Normal",
|
||||
|
@ -1369,7 +1353,7 @@
|
|||
"TagsValue": "Markierungen: {0}",
|
||||
"Thumb": "Miniaturansicht",
|
||||
"Whitelist": "Erlaubt",
|
||||
"AuthProviderHelp": "Wähle einen Authentifizierungsanbieter, der zur Authentifizierung des Passworts dieses Benutzes verwendet werden soll.",
|
||||
"AuthProviderHelp": "Wähle einen Authentifizierungsanbieter, der zur Authentifizierung des Passworts dieses Benutzers verwendet werden soll.",
|
||||
"Features": "Funktionen",
|
||||
"HeaderFavoriteBooks": "Lieblingsbücher",
|
||||
"HeaderFavoriteMovies": "Lieblingsfilme",
|
||||
|
@ -1386,7 +1370,6 @@
|
|||
"DashboardVersionNumber": "Version: {0}",
|
||||
"DashboardServerName": "Server: {0}",
|
||||
"LabelWeb": "Web:",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Daten",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Eingebettetes Bild",
|
||||
|
@ -1396,7 +1379,7 @@
|
|||
"OptionDownloadBoxImage": "Box",
|
||||
"OptionLoginAttemptsBeforeLockout": "Legt fest, wie viele falsche Anmeldeversuche durchgeführt werden können, bevor es zur Sperrung kommt.",
|
||||
"OptionLoginAttemptsBeforeLockoutHelp": "Null (0) bedeutet den Standardwert von drei Versuchen für normale, sowie fünf für Administrator-Benutzer zu übernehmen. Ein Wert von -1 deaktiviert die Funktion.",
|
||||
"PasswordResetProviderHelp": "Wählen Sie einen Password Reset Provider, der verwendet werden soll, wenn dieser Benutzer ein Passwort zurücksetzen möchte",
|
||||
"PasswordResetProviderHelp": "Wählen Sie einen Password Reset Provider, der verwendet werden soll, wenn dieser Benutzer ein Passwort zurücksetzen möchte.",
|
||||
"Box": "Box",
|
||||
"HeaderHome": "Startseite",
|
||||
"LabelAudioCodec": "Audiocodec:",
|
||||
|
@ -1414,15 +1397,13 @@
|
|||
"LabelTranscodingFramerate": "Transcodierrate:",
|
||||
"LabelAudioSampleRate": "Audio-Abtastrate:",
|
||||
"LabelBaseUrl": "Basis URL:",
|
||||
"LabelBaseUrlHelp": "Fügt ein benutzerdefiniertes Unterverzeichnis zur Server-URL hinzu, zum Beispiel: <code>http://example.com/<b><baseurl></b></code>",
|
||||
"LabelBaseUrlHelp": "Füge ein benutzerdefiniertes Unterverzeichnis zur Server-URL hinzu, zum Beispiel: <code>http://example.com/<b><baseurl></b></code>",
|
||||
"LabelFolder": "Ordner:",
|
||||
"LabelPasswordResetProvider": "Anbieter zum Zurücksetzen des Passwortes:",
|
||||
"LabelPlayMethod": "Spielmethode:",
|
||||
"DashboardOperatingSystem": "Betriebssystem: {0}",
|
||||
"DashboardArchitecture": "Architektur: {0}",
|
||||
"LabelVideoCodec": "Videocodec:",
|
||||
"LaunchWebAppOnStartup": "Das Webinterface öffnen, wenn der Server startet",
|
||||
"LaunchWebAppOnStartupHelp": "Öffne den Webclient in Standard-Webbrowser, wenn der Server zum ersten Mal gestartet wird. Dies tritt bei Verwendung der Neustart-Serverfunktion nicht auf.",
|
||||
"MusicArtist": "Interpret",
|
||||
"MusicAlbum": "Musikalbum",
|
||||
"MoreMediaInfo": "Medieninformation",
|
||||
|
@ -1441,11 +1422,9 @@
|
|||
"MusicLibraryHelp": "Überprüfe den {0}Musikbenennungsguide{1}.",
|
||||
"OptionRandom": "Zufällig",
|
||||
"TabNetworking": "Netzwerk",
|
||||
"VideoRange": "Videobereich",
|
||||
"ButtonSplit": "Trennen",
|
||||
"SelectAdminUsername": "Bitte wählen Sie einen Benutzernamen für den Administrator-Account.",
|
||||
"HeaderNavigation": "Navigation",
|
||||
"CopyStreamURLError": "Beim Kopieren der URL ist ein Fehler aufgetreten.",
|
||||
"MessageConfirmAppExit": "Wirklich verlassen?",
|
||||
"LabelVideoResolution": "Videoauflösung:",
|
||||
"LabelStreamType": "Streamtyp:",
|
||||
|
@ -1473,9 +1452,7 @@
|
|||
"PathNotFound": "Der Pfad konnte nicht gefunden werden. Bitte versichere dich dass der Pfad korrekt ist und versuche es erneut.",
|
||||
"Track": "Track",
|
||||
"Season": "Staffel",
|
||||
"ReleaseGroup": "Veröffentlichungs-Gruppe",
|
||||
"Person": "Person",
|
||||
"OtherArtist": "Andere Künstler",
|
||||
"Movie": "Film",
|
||||
"Episode": "Episode",
|
||||
"Artist": "Künstler",
|
||||
|
@ -1491,12 +1468,10 @@
|
|||
"UnsupportedPlayback": "Jellyfin kann keine DRM-geschützten Inhalte entschlüsseln, aber es wird versucht, alle Inhalte unabhängig davon zu entschlüsseln, einschließlich geschützter Titel. Einige Dateien können aufgrund der Verschlüsselung oder anderer nicht unterstützter Funktionen, wie z.B. interaktive Titel, komplett schwarz erscheinen.",
|
||||
"Filter": "Filter",
|
||||
"New": "Neu",
|
||||
"MessageUnauthorizedUser": "Sie sind im Moment nicht berechtigt, auf den Server zuzugreifen. Bitte kontaktieren Sie Ihren Server-Administrator für weitere Informationen.",
|
||||
"HeaderFavoritePlaylists": "Lieblings-Wiedergabeliste",
|
||||
"ButtonTogglePlaylist": "Wiedergabeliste",
|
||||
"ButtonToggleContextMenu": "Mehr",
|
||||
"ApiKeysCaption": "Liste der aktuell aktivierten API-Schlüssel",
|
||||
"LabelNightly": "Nightly",
|
||||
"LabelStable": "Stable",
|
||||
"LabelChromecastVersion": "Chromecast Version",
|
||||
"HeaderDVR": "DVR",
|
||||
|
@ -1504,7 +1479,7 @@
|
|||
"SaveChanges": "Änderungen speichern",
|
||||
"LabelRequireHttpsHelp": "Wenn dies ausgewählt ist, leitet der Server alle Anfragen über HTTP an HTTPS weiter. Dies hat keinen Effekt, falls der Server nicht auf HTTPS hört.",
|
||||
"LabelRequireHttps": "Erfordere HTTPS",
|
||||
"LabelEnableHttpsHelp": "Erlaubt es dem Server, den konfigurierten HTTPS-Port zu beobachten. Damit dies geschehen kann, muss ein gültiges Zertifikat konfiguriert sein.",
|
||||
"LabelEnableHttpsHelp": "Beobachtet den konfigurierten HTTPS-Port. Damit dies geschehen kann, muss ein gültiges Zertifikat bereitgestellt werden.",
|
||||
"LabelEnableHttps": "Aktiviere HTTPS",
|
||||
"HeaderServerAddressSettings": "Server-Adresseinstellungen",
|
||||
"HeaderRemoteAccessSettings": "Fernzugriffs-Einstellungen",
|
||||
|
@ -1543,7 +1518,7 @@
|
|||
"EnableDetailsBanner": "Detailbanner",
|
||||
"ShowMore": "Mehr anzeigen",
|
||||
"ShowLess": "Weniger anzeigen",
|
||||
"EnableBlurHashHelp": "Bilder, die noch nicht fertig geladen wurden, werden mit einem verschwommenen Platzhalter dargestellt",
|
||||
"EnableBlurHashHelp": "Bilder, die noch nicht fertig geladen wurden, werden mit einem verschwommenen Platzhalter dargestellt.",
|
||||
"EnableBlurHash": "Verschwommene Platzhalter für Bilder erlauben",
|
||||
"EnableFasterAnimations": "Schnellere Animationen",
|
||||
"EnableDecodingColorDepth10Vp9": "Aktiviere 10-Bit-Hardware-Dekodierung für VP9",
|
||||
|
@ -1564,5 +1539,8 @@
|
|||
"Writers": "Autoren",
|
||||
"ClearQueue": "Wiedergabeliste leeren",
|
||||
"StopPlayback": "Wiedergabe anhalten",
|
||||
"ViewAlbumArtist": "Zeige Albumkünstler"
|
||||
"ViewAlbumArtist": "Zeige Albumkünstler",
|
||||
"PreviousTrack": "Zum Vorherigen springen",
|
||||
"NextTrack": "Zum Nächsten springen",
|
||||
"LabelUnstable": "Instabil"
|
||||
}
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
"AttributeNew": "Νέο",
|
||||
"Audio": "Ήχος",
|
||||
"Auto": "Αυτόματο",
|
||||
"AutoBasedOnLanguageSetting": "Αυτόματα (με βάση τη ρύθμιση γλώσσας)",
|
||||
"Backdrop": "Φόντο",
|
||||
"Backdrops": "Σκηνικά",
|
||||
"Banner": "Πανό",
|
||||
|
@ -73,7 +72,6 @@
|
|||
"ButtonHelp": "Βοήθεια",
|
||||
"ButtonHome": "Αρχική",
|
||||
"ButtonInfo": "Πληροφορία",
|
||||
"ButtonLearnMore": "Μάθετε περισσότερα",
|
||||
"ButtonLibraryAccess": "Πρόσβαση στη βιβλιοθήκη",
|
||||
"ButtonManualLogin": "Χειροκίνητη Είσοδος",
|
||||
"ButtonMore": "Περισσότερα",
|
||||
|
@ -116,7 +114,6 @@
|
|||
"ButtonTrailer": "Τρέϊλερ",
|
||||
"ButtonUninstall": "Απεγκατάσταση",
|
||||
"ButtonUp": "Επάνω",
|
||||
"ButtonViewWebsite": "Εμφάνιση ιστοσελίδας",
|
||||
"ButtonWebsite": "Ιστοσελίδα",
|
||||
"CancelRecording": "Ακύρωση Εγγραφής",
|
||||
"CancelSeries": "Ακύρωση Σειράς",
|
||||
|
@ -260,7 +257,6 @@
|
|||
"HeaderAppearsOn": "Εμφανίζεται σε",
|
||||
"HeaderAudioBooks": "Μουσικά Βιβλία",
|
||||
"HeaderAudioSettings": "Ρυθμίσεις Ήχου",
|
||||
"HeaderAutomaticUpdates": "Αυτόματες Ανανεώσεις",
|
||||
"HeaderBlockItemsWithNoRating": "Αποκλεισμός στοιχείων χωρίς ή μη αναγνωρισμένων πληροφοριών αξιολόγησης:",
|
||||
"HeaderBooks": "Βιβλία",
|
||||
"HeaderCancelRecording": "Ακύρωση Εγγραφής",
|
||||
|
@ -443,8 +439,6 @@
|
|||
"LabelAlbumArtPN": "PN άλμπουμ art:",
|
||||
"LabelAlbumArtists": "Καλλιτέχνες του 'Αλμπουμ:",
|
||||
"LabelAll": "Όλα",
|
||||
"LabelAllowServerAutoRestart": "Αυτόματη επανεκκίνηση του σέρβερ για να εγκαταστήσει τις αναβαθμίσεις",
|
||||
"LabelAllowServerAutoRestartHelp": "Ο server θα κάνει επανεκκίνηση μόνο κατά τη διάρκεια αδρανών περιόδων, όταν δεν υπάρχουν ενεργοί χρήστες.",
|
||||
"LabelAppName": "Όνομα App",
|
||||
"LabelAppNameExample": "Παράδειγμα: Sickbeard, NzbDrone",
|
||||
"LabelArtists": "Καλλιτέχνες:",
|
||||
|
@ -474,7 +468,6 @@
|
|||
"LabelCustomCssHelp": "Εφαρμόστε το δικό σας προσαρμοσμένο css στην διεπαφή ιστού.",
|
||||
"LabelCustomDeviceDisplayName": "Εμφάνιση ονόματος:",
|
||||
"LabelCustomRating": "Προσαρμοσμένη αξιολόγηση:",
|
||||
"LabelDashboardTheme": "Θέμα εμφάνισης πίνακα ελέγχου server:",
|
||||
"LabelDateAdded": "Ημερνία προσθήκης:",
|
||||
"LabelDateTimeLocale": "Ημερομηνία τοπική ώρα:",
|
||||
"LabelDay": "Ημέρα:",
|
||||
|
@ -655,7 +648,6 @@
|
|||
"LabelSortBy": "Ταξινόμηση κατά:",
|
||||
"LabelSortOrder": "Σειρά ταξινόμησης:",
|
||||
"LabelSortTitle": "Τίτλος ταξινόμησης:",
|
||||
"LabelSoundEffects": "Ηχητικά Εφέ:",
|
||||
"LabelSource": "Πηγή:",
|
||||
"LabelSpecialSeasonsDisplayName": "Ειδικό εμφανιζόμενο όνομα σεζόν:",
|
||||
"LabelStartWhenPossible": "Έναρξη όταν είναι δυνατό:",
|
||||
|
@ -696,7 +688,6 @@
|
|||
"LabelXDlnaCapHelp": "Καθορίζει το περιεχόμενο του στοιχείου X_DLNACAP στο urn:schemas-dlna-org:device-1-0 namespace.",
|
||||
"LabelXDlnaDocHelp": "Καθορίζει το περιεχόμενο του στοιχείου X_DLNACAP στο urn:schemas-dlna-org:device-1-0 namespace.",
|
||||
"LabelYear": "Έτος:",
|
||||
"LabelYourFirstName": "Το όνομά σας:",
|
||||
"LabelYoureDone": "Είστε Έτοιμοι!",
|
||||
"LabelZipCode": "Ταχυδ/κός κώδικας:",
|
||||
"Large": "Μεγάλο",
|
||||
|
@ -704,7 +695,6 @@
|
|||
"LearnHowYouCanContribute": "Μάθετε πώς μπορείτε να συμβάλλετε.",
|
||||
"LibraryAccessHelp": "Επιλέξτε τους φακέλους μέσων για να το μοιραστείτε με αυτόν το χρήστη. Οι διαχειριστές θα έχουν τη δυνατότητα να επεξεργάζεστε όλα φακέλους χρησιμοποιώντας τα μεταδεδομένα manager.",
|
||||
"Like": "Μου αρέσει",
|
||||
"LinksValue": "Σύνδεσμοι: {0}",
|
||||
"List": "Λίστα",
|
||||
"Live": "Ζωντανά",
|
||||
"LiveBroadcasts": "Ζωντανές εκπομπές",
|
||||
|
@ -749,7 +739,6 @@
|
|||
"MessageFileReadError": "Παρουσιάστηκε σφάλμα κατά την ανάγνωση του αρχείου. Παρακαλώ προσπάθησε ξανά.",
|
||||
"MessageForgotPasswordFileCreated": "Το ακόλουθο αρχείο έχει δημιουργηθεί στο διακομιστή σας και περιέχει οδηγίες για το πώς να συνεχίσετε:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Παρακαλώ δοκιμάστε ξανά μέσα στο οικιακό σας δίκτυο για να ξεκινήσετε τη διαδικασία επαναφοράς κωδικού πρόσβασης.",
|
||||
"MessageInstallPluginFromApp": "Αυτό το πρόσθετο πρέπει να εγκατασταθεί την εφαρμογή που σκοπεύετε να χρησιμοποιήσετε.",
|
||||
"MessageInvalidForgotPasswordPin": "Καταχωρήθηκε ένα άκυρο ή ληγμένο PIN. Παρακαλώ προσπαθήστε ξανά.",
|
||||
"MessageInvalidUser": "Μη έγκυρο όνομα ή κωδικός. Παρακαλώ προσπαθήστε ξανά.",
|
||||
"MessageItemSaved": "Το στοιχείο αποθηκεύτηκε.",
|
||||
|
@ -955,7 +944,6 @@
|
|||
"ProductionLocations": "Τοποθεσίες παραγωγής",
|
||||
"Programs": "Προγράμματα",
|
||||
"Quality": "Ποιότητα",
|
||||
"QueueAllFromHere": "Τοποθετήστε στην ουρά αναπαραγωγής όλα από εδώ",
|
||||
"Raised": "Αυξήθηκε",
|
||||
"RecentlyWatched": "Πρόσφατα αναπαραχθέντα",
|
||||
"RecommendationBecauseYouLike": "Επειδή σας αρέσει {0}",
|
||||
|
@ -983,7 +971,6 @@
|
|||
"ReplaceExistingImages": "Αντικατάσταση υπαρχουσών εικόνων",
|
||||
"ResumeAt": "Συνέχιση από {0}",
|
||||
"Rewind": "Αναπαραγωγή προς τα πίσω",
|
||||
"RunAtStartup": "Εκτέλεση κατά την εκκίνηση",
|
||||
"Runtime": "Χρόνος εκτέλεσης",
|
||||
"Saturday": "Σάββατο",
|
||||
"Save": "Αποθήκευση",
|
||||
|
@ -1068,7 +1055,6 @@
|
|||
"TabParentalControl": "Γονικός έλεγχος",
|
||||
"TabPassword": "Κωδικός",
|
||||
"TabPlayback": "Αναπαραγωγή",
|
||||
"TabPlaylist": "Λίστα",
|
||||
"TabPlaylists": "Λίστες αναπαραγωγής",
|
||||
"TabPlugins": "Πρόσθετα",
|
||||
"TabProfile": "Προφίλ",
|
||||
|
@ -1201,7 +1187,6 @@
|
|||
"AllowMediaConversionHelp": "Παραχώρηση ή στέρηση πρόσβασης στην λειτουργία μετατροπής μέσων.",
|
||||
"AllowHWTranscodingHelp": "Επιτρέπει τον δέκτη να επανακωδικοποιεί τις ροές σε πραγματικό χρόνο. Αυτό μπορεί να μειώσει τον φόρτο κωδικοποίησης τον σέρβερ.",
|
||||
"Alerts": "Προειδοποίηση",
|
||||
"AddItemToCollectionHelp": "Προσθέστε στις συλλογές κάνοντας αναζήτηση και δεξί κλικ ή μέσω των μενού.",
|
||||
"MediaInfoStreamTypeVideo": "Βίντεο",
|
||||
"MediaInfoStreamTypeSubtitle": "Υπότιτλος",
|
||||
"MediaInfoStreamTypeData": "Δεδομένα",
|
||||
|
|
|
@ -53,7 +53,6 @@
|
|||
"AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.",
|
||||
"Actor": "Actor",
|
||||
"Add": "Add",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"AddToCollection": "Add to collection",
|
||||
"AddToPlayQueue": "Add to play queue",
|
||||
"AddToPlaylist": "Add to playlist",
|
||||
|
@ -88,7 +87,6 @@
|
|||
"Audio": "Audio",
|
||||
"AuthProviderHelp": "Select an Authentication Provider to be used to authenticate this user's password.",
|
||||
"Auto": "Auto",
|
||||
"AutoBasedOnLanguageSetting": "Auto (based on language setting)",
|
||||
"Backdrop": "Backdrop",
|
||||
"Backdrops": "Backdrops",
|
||||
"Banner": "Banner",
|
||||
|
@ -130,7 +128,6 @@
|
|||
"ButtonHelp": "Help",
|
||||
"ButtonHome": "Home",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonLearnMore": "Learn more",
|
||||
"ButtonLibraryAccess": "Library access",
|
||||
"ButtonManualLogin": "Manual Login",
|
||||
"ButtonMore": "More",
|
||||
|
@ -176,7 +173,6 @@
|
|||
"ButtonTrailer": "Trailer",
|
||||
"ButtonUninstall": "Uninstall",
|
||||
"ButtonUp": "Up",
|
||||
"ButtonViewWebsite": "View website",
|
||||
"ButtonWebsite": "Website",
|
||||
"CancelRecording": "Cancel recording",
|
||||
"CancelSeries": "Cancel series",
|
||||
|
@ -327,7 +323,6 @@
|
|||
"HeaderAppearsOn": "Appears On",
|
||||
"HeaderAudioBooks": "Audio Books",
|
||||
"HeaderAudioSettings": "Audio Settings",
|
||||
"HeaderAutomaticUpdates": "Automatic Updates",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderBranding": "Branding",
|
||||
"HeaderCancelRecording": "Cancel Recording",
|
||||
|
@ -483,7 +478,6 @@
|
|||
"TabResumeSettings": "Resume",
|
||||
"TabResponses": "Responses",
|
||||
"TabRecordings": "Recordings",
|
||||
"TabPlaylist": "Playlist",
|
||||
"TabPlayback": "Playback",
|
||||
"TabOther": "Other",
|
||||
"TabNotifications": "Notifications",
|
||||
|
@ -548,7 +542,6 @@
|
|||
"SaveSubtitlesIntoMediaFolders": "Save subtitles into media folders",
|
||||
"Saturday": "Saturday",
|
||||
"Runtime": "Runtime",
|
||||
"RunAtStartup": "Run at startup",
|
||||
"Rewind": "Rewind",
|
||||
"ResumeAt": "Resume from {0}",
|
||||
"ReplaceExistingImages": "Replace existing images",
|
||||
|
@ -576,7 +569,6 @@
|
|||
"RecommendationBecauseYouWatched": "Because you watched {0}",
|
||||
"Rate": "Rate",
|
||||
"Raised": "Raised",
|
||||
"QueueAllFromHere": "Queue all from here",
|
||||
"Quality": "Quality",
|
||||
"Producer": "Producer",
|
||||
"Primary": "Primary",
|
||||
|
@ -713,7 +705,6 @@
|
|||
"MessageNoAvailablePlugins": "No available plugins.",
|
||||
"MessageInvalidUser": "Invalid username or password. Please try again.",
|
||||
"MessageInvalidForgotPasswordPin": "An invalid or expired pin code was entered. Please try again.",
|
||||
"MessageInstallPluginFromApp": "This plugin must be installed from within the app you intend to use it in.",
|
||||
"MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.",
|
||||
"MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.",
|
||||
|
@ -756,7 +747,6 @@
|
|||
"LibraryAccessHelp": "Select the libraries to share with this user. Administrators will be able to edit all folders using the metadata manager.",
|
||||
"LeaveBlankToNotSetAPassword": "You can leave this field blank to set no password.",
|
||||
"LearnHowYouCanContribute": "Learn how you can contribute.",
|
||||
"LaunchWebAppOnStartupHelp": "Open the web client in your default web browser when the server initially starts. This will not occur when using the restart server function.",
|
||||
"LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.",
|
||||
"LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.",
|
||||
"LabelffmpegPath": "FFmpeg path:",
|
||||
|
@ -805,14 +795,12 @@
|
|||
"LabelStartWhenPossible": "Start when possible:",
|
||||
"LabelSpecialSeasonsDisplayName": "Special season display name:",
|
||||
"LabelSource": "Source:",
|
||||
"LabelSoundEffects": "Sound effects:",
|
||||
"LabelSortBy": "Sort by:",
|
||||
"LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.",
|
||||
"LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
|
||||
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
|
||||
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
|
||||
"LabelSkipBackLength": "Skip back length:",
|
||||
"LabelSkin": "Skin:",
|
||||
"LabelSize": "Size:",
|
||||
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||
"LabelServerHost": "Host:",
|
||||
|
@ -857,8 +845,6 @@
|
|||
"MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.",
|
||||
"MessageConfirmRecordingCancellation": "Cancel recording?",
|
||||
"MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?",
|
||||
"LaunchWebAppOnStartup": "Launch the web interface when starting the server",
|
||||
"LabelYourFirstName": "Your first name:",
|
||||
"OnlyForcedSubtitles": "Only Forced",
|
||||
"Off": "Off",
|
||||
"NumLocationsValue": "{0} folders",
|
||||
|
@ -1161,8 +1147,6 @@
|
|||
"LabelAppName": "App name",
|
||||
"LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:",
|
||||
"LabelAllowedRemoteAddresses": "Remote IP address filter:",
|
||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods when no users are active.",
|
||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||
"LabelAllowHWTranscoding": "Allow hardware transcoding",
|
||||
"LabelAll": "All",
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
|
@ -1253,7 +1237,6 @@
|
|||
"Watched": "Watched",
|
||||
"ViewPlaybackInfo": "View playback info",
|
||||
"ViewAlbum": "View album",
|
||||
"VideoRange": "Video range",
|
||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||
"Studios": "Studios",
|
||||
"StopRecording": "Stop recording",
|
||||
|
@ -1266,7 +1249,6 @@
|
|||
"OptionContinuing": "Continuing",
|
||||
"OptionCommunityRating": "Community Rating",
|
||||
"MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.",
|
||||
"LinksValue": "Links: {0}",
|
||||
"LabelSelectVersionToInstall": "Select version to install:",
|
||||
"LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
|
||||
"OptionLikes": "Likes",
|
||||
|
@ -1320,7 +1302,6 @@
|
|||
"Up": "Up",
|
||||
"SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata",
|
||||
"MediaInfoStreamTypeSubtitle": "Subtitle",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"ValueOneSeries": "1 series",
|
||||
"MediaInfoBitrate": "Bitrate",
|
||||
"LabelVideo": "Video",
|
||||
|
@ -1330,7 +1311,6 @@
|
|||
"LabelInternetQuality": "Internet quality:",
|
||||
"LabelFileOrUrl": "File or URL:",
|
||||
"LabelDateAdded": "Date added:",
|
||||
"LabelDashboardTheme": "Server dashboard theme:",
|
||||
"LabelCustomRating": "Custom rating:",
|
||||
"LabelCollection": "Collection:",
|
||||
"LabelChannels": "Channels:",
|
||||
|
@ -1455,7 +1435,6 @@
|
|||
"LabelPlayerDimensions": "Player dimensions:",
|
||||
"LabelDroppedFrames": "Dropped frames:",
|
||||
"LabelCorruptedFrames": "Corrupted frames:",
|
||||
"CopyStreamURLError": "There was an error copying the URL.",
|
||||
"NoCreatedLibraries": "Seems like you haven't created any libraries yet. {0}Would you like to create one now?{1}",
|
||||
"AskAdminToCreateLibrary": "Ask an administrator to create a library.",
|
||||
"PlaybackErrorNoCompatibleStream": "This client isn't compatible with the media and the server isn't sending a compatible media format.",
|
||||
|
@ -1477,11 +1456,9 @@
|
|||
"Yadif": "YADIF",
|
||||
"Track": "Track",
|
||||
"Season": "Season",
|
||||
"ReleaseGroup": "Release Group",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Prefer embedded episode information over filenames",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "This uses the episode information from the embedded metadata if available.",
|
||||
"Person": "Person",
|
||||
"OtherArtist": "Other Artist",
|
||||
"Movie": "Movie",
|
||||
"LabelLibraryPageSizeHelp": "Sets the amount of items to show on a library page. Set to 0 in order to disable paging.",
|
||||
"LabelLibraryPageSize": "Library page size:",
|
||||
|
@ -1494,7 +1471,6 @@
|
|||
"AlbumArtist": "Album Artist",
|
||||
"Album": "Album",
|
||||
"UnsupportedPlayback": "Jellyfin cannot decrypt content protected by DRM but all content will be attempted regardless, including protected titles. Some files may appear completely black due to encryption or other unsupported features, such as interactive titles.",
|
||||
"MessageUnauthorizedUser": "You are not authorized to access the server at this time. Please contact your server administrator for more information.",
|
||||
"ButtonTogglePlaylist": "Playlist",
|
||||
"ButtonToggleContextMenu": "More",
|
||||
"HeaderDVR": "DVR",
|
||||
|
@ -1546,7 +1522,6 @@
|
|||
"LabelSyncPlayTimeOffset": "Time offset with the server:",
|
||||
"LabelRequireHttpsHelp": "If checked, the server will automatically redirect all requests over HTTP to HTTPS. This has no effect if the server is not listening on HTTPS.",
|
||||
"LabelRequireHttps": "Require HTTPS",
|
||||
"LabelNightly": "Nightly",
|
||||
"LabelStable": "Stable",
|
||||
"LabelChromecastVersion": "Chromecast Version",
|
||||
"LabelEnableHttpsHelp": "Enables the server to listen on the configured HTTPS port. A valid certificate must also be configured in order for this to take effect.",
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"AccessRestrictedTryAgainLater": "Access is currently restricted. Please try again later.",
|
||||
"Actor": "Actor",
|
||||
"Add": "Add",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
"AddToCollection": "Add to collection",
|
||||
"AddToPlayQueue": "Add to play queue",
|
||||
"AddToPlaylist": "Add to playlist",
|
||||
|
@ -47,7 +46,6 @@
|
|||
"Audio": "Audio",
|
||||
"AuthProviderHelp": "Select an authentication provider to be used to authenticate this user's password.",
|
||||
"Auto": "Auto",
|
||||
"AutoBasedOnLanguageSetting": "Auto (based on language setting)",
|
||||
"Backdrop": "Backdrop",
|
||||
"Backdrops": "Backdrops",
|
||||
"Banner": "Banner",
|
||||
|
@ -93,7 +91,6 @@
|
|||
"ButtonHelp": "Help",
|
||||
"ButtonHome": "Home",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonLearnMore": "Learn more",
|
||||
"ButtonLibraryAccess": "Library access",
|
||||
"ButtonManualLogin": "Manual Login",
|
||||
"ButtonMore": "More",
|
||||
|
@ -142,7 +139,6 @@
|
|||
"ButtonTrailer": "Trailer",
|
||||
"ButtonUninstall": "Uninstall",
|
||||
"ButtonUp": "Up",
|
||||
"ButtonViewWebsite": "View website",
|
||||
"ButtonWebsite": "Website",
|
||||
"CancelRecording": "Cancel recording",
|
||||
"CancelSeries": "Cancel series",
|
||||
|
@ -171,7 +167,6 @@
|
|||
"Continuing": "Continuing",
|
||||
"CopyStreamURL": "Copy Stream URL",
|
||||
"CopyStreamURLSuccess": "URL copied successfully.",
|
||||
"CopyStreamURLError": "There was an error copying the URL.",
|
||||
"CriticRating": "Critic rating",
|
||||
"CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.",
|
||||
"DateAdded": "Date added",
|
||||
|
@ -319,7 +314,6 @@
|
|||
"HeaderAppearsOn": "Appears On",
|
||||
"HeaderAudioBooks": "Audio Books",
|
||||
"HeaderAudioSettings": "Audio Settings",
|
||||
"HeaderAutomaticUpdates": "Automatic Updates",
|
||||
"HeaderBlockItemsWithNoRating": "Block items with no or unrecognized rating information:",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderBranding": "Branding",
|
||||
|
@ -558,8 +552,6 @@
|
|||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAll": "All",
|
||||
"LabelAllowHWTranscoding": "Allow hardware transcoding",
|
||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods when no users are active.",
|
||||
"LabelAllowedRemoteAddresses": "Remote IP address filter:",
|
||||
"LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:",
|
||||
"LabelAppName": "App name",
|
||||
|
@ -605,7 +597,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Display name:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
|
||||
"LabelCustomRating": "Custom rating:",
|
||||
"LabelDashboardTheme": "Server dashboard theme:",
|
||||
"LabelDateAdded": "Date added:",
|
||||
"LabelDateAddedBehavior": "Date added behavior for new content:",
|
||||
"LabelDateAddedBehaviorHelp": "If a metadata value is present, it will always be used before either of these options.",
|
||||
|
@ -759,7 +750,6 @@
|
|||
"LabelName": "Name:",
|
||||
"LabelChromecastVersion": "Chromecast Version",
|
||||
"LabelStable": "Stable",
|
||||
"LabelNightly": "Nightly",
|
||||
"LabelUnstable": "Unstable",
|
||||
"LabelNewName": "New name:",
|
||||
"LabelNewPassword": "New password:",
|
||||
|
@ -842,7 +832,6 @@
|
|||
"LabelServerName": "Server name:",
|
||||
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||
"LabelSize": "Size:",
|
||||
"LabelSkin": "Skin:",
|
||||
"LabelSkipBackLength": "Skip back length:",
|
||||
"LabelSkipForwardLength": "Skip forward length:",
|
||||
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
|
||||
|
@ -854,7 +843,6 @@
|
|||
"LabelSortBy": "Sort by:",
|
||||
"LabelSortOrder": "Sort order:",
|
||||
"LabelSortTitle": "Sort title:",
|
||||
"LabelSoundEffects": "Sound effects:",
|
||||
"LabelSource": "Source:",
|
||||
"LabelSpecialSeasonsDisplayName": "Special season display name:",
|
||||
"LabelSportsCategories": "Sports categories:",
|
||||
|
@ -934,7 +922,6 @@
|
|||
"LabelXDlnaDoc": "X-DLNA doc:",
|
||||
"LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.",
|
||||
"LabelYear": "Year:",
|
||||
"LabelYourFirstName": "Your first name:",
|
||||
"LabelYoureDone": "You're Done!",
|
||||
"LabelZipCode": "Zip Code:",
|
||||
"LabelffmpegPath": "FFmpeg path:",
|
||||
|
@ -942,13 +929,10 @@
|
|||
"LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.",
|
||||
"Large": "Large",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"LaunchWebAppOnStartup": "Launch the web interface when starting the server",
|
||||
"LaunchWebAppOnStartupHelp": "Open the web client in your default web browser when the server initially starts. This will not occur when using the restart server function.",
|
||||
"LearnHowYouCanContribute": "Learn how you can contribute.",
|
||||
"LeaveBlankToNotSetAPassword": "You can leave this field blank to set no password.",
|
||||
"LibraryAccessHelp": "Select the libraries to share with this user. Administrators will be able to edit all folders using the metadata manager.",
|
||||
"Like": "Like",
|
||||
"LinksValue": "Links: {0}",
|
||||
"List": "List",
|
||||
"Live": "Live",
|
||||
"LiveBroadcasts": "Live broadcasts",
|
||||
|
@ -984,7 +968,6 @@
|
|||
"MediaInfoSampleRate": "Sample rate",
|
||||
"MediaInfoSize": "Size",
|
||||
"MediaInfoTimestamp": "Timestamp",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Data",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Embedded Image",
|
||||
|
@ -1016,10 +999,8 @@
|
|||
"MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.",
|
||||
"MessageImageFileTypeAllowed": "Only JPEG and PNG files are supported.",
|
||||
"MessageImageTypeNotSelected": "Please select an image type from the drop-down menu.",
|
||||
"MessageInstallPluginFromApp": "This plugin must be installed from within the app you intend to use it in.",
|
||||
"MessageInvalidForgotPasswordPin": "An invalid or expired pin code was entered. Please try again.",
|
||||
"MessageInvalidUser": "Invalid username or password. Please try again.",
|
||||
"MessageUnauthorizedUser": "You are not authorized to access the server at this time. Please contact your server administrator for more information.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"MessageItemsAdded": "Items added.",
|
||||
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item or the global default value.",
|
||||
|
@ -1266,7 +1247,6 @@
|
|||
"OptionWeekends": "Weekends",
|
||||
"OptionWeekly": "Weekly",
|
||||
"OriginalAirDateValue": "Original air date: {0}",
|
||||
"OtherArtist": "Other Artist",
|
||||
"Overview": "Overview",
|
||||
"PackageInstallCancelled": "{0} (version {1}) installation cancelled.",
|
||||
"PackageInstallCompleted": "{0} (version {1}) installation completed.",
|
||||
|
@ -1315,7 +1295,6 @@
|
|||
"ProductionLocations": "Production locations",
|
||||
"Programs": "Programs",
|
||||
"Quality": "Quality",
|
||||
"QueueAllFromHere": "Queue all from here",
|
||||
"Raised": "Raised",
|
||||
"Rate": "Rate",
|
||||
"RecentlyWatched": "Recently watched",
|
||||
|
@ -1334,7 +1313,6 @@
|
|||
"RefreshMetadata": "Refresh metadata",
|
||||
"RefreshQueued": "Refresh queued.",
|
||||
"ReleaseDate": "Release date",
|
||||
"ReleaseGroup": "Release Group",
|
||||
"RememberMe": "Remember Me",
|
||||
"RemoveFromCollection": "Remove from collection",
|
||||
"RemoveFromPlaylist": "Remove from playlist",
|
||||
|
@ -1347,7 +1325,6 @@
|
|||
"ReplaceExistingImages": "Replace existing images",
|
||||
"ResumeAt": "Resume from {0}",
|
||||
"Rewind": "Rewind",
|
||||
"RunAtStartup": "Run at startup",
|
||||
"Runtime": "Runtime",
|
||||
"Saturday": "Saturday",
|
||||
"Save": "Save",
|
||||
|
@ -1455,7 +1432,6 @@
|
|||
"TabParentalControl": "Parental Control",
|
||||
"TabPassword": "Password",
|
||||
"TabPlayback": "Playback",
|
||||
"TabPlaylist": "Playlist",
|
||||
"TabPlaylists": "Playlists",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabProfile": "Profile",
|
||||
|
@ -1527,7 +1503,6 @@
|
|||
"ValueTimeLimitSingleHour": "Time limit: 1 hour",
|
||||
"ValueVideoCodec": "Video Codec: {0}",
|
||||
"Vertical": "Vertical",
|
||||
"VideoRange": "Video range",
|
||||
"ViewAlbum": "View album",
|
||||
"ViewAlbumArtist": "View album artist",
|
||||
"ViewPlaybackInfo": "View playback info",
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
"AddedOnValue": "aldonis {0}",
|
||||
"AddToPlaylist": "aldoni al playlist",
|
||||
"AddToPlayQueue": "Aldonu ludi voston",
|
||||
"AddItemToCollectionHelp": "Aldonu erojn al kolektoj serĉante ilin kaj uzante ĝian alklakon aŭ frapetu menuojn por aldoni ilin al kolekto.",
|
||||
"Add": "Aldoni",
|
||||
"AccessRestrictedTryAgainLater": "Aliro nuntempe estas restriktita. Bonvolu reprovi poste."
|
||||
}
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Siguiente",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelYourFirstName": "Su nombre:",
|
||||
"LabelYoureDone": "Ha terminado!",
|
||||
"MoreUsersCanBeAddedLater": "Se pueden agregar más usuarios más tarde desde el tablero.",
|
||||
"NewCollectionNameExample": "Ejemplo: Colección de Star Wars",
|
||||
|
@ -50,7 +49,6 @@
|
|||
"AccessRestrictedTryAgainLater": "El acceso está actualmente restringido. Por favor intente nuevamente más tarde.",
|
||||
"Actor": "Actor",
|
||||
"Add": "Agregar",
|
||||
"AddItemToCollectionHelp": "Agregue elementos a las colecciones buscándolos y usando el click derecho o tocando el menú para añadirlos a una colección.",
|
||||
"AddToCollection": "Añadir a la colección",
|
||||
"AddToPlayQueue": "Añadir a la cola de reproducción",
|
||||
"AddToPlaylist": "Añadir a la lista de reproducción",
|
||||
|
@ -78,7 +76,6 @@
|
|||
"AttributeNew": "Nuevo",
|
||||
"Audio": "Audio",
|
||||
"Auto": "Auto",
|
||||
"AutoBasedOnLanguageSetting": "Auto (basado en configuración de idioma)",
|
||||
"Backdrop": "Fondo",
|
||||
"AllowHWTranscodingHelp": "Permita que el sintonizador transcodifique transmisiones sobre la marcha. Esto puede ayudar a reducir la transcodificación requerida por el servidor.",
|
||||
"AllowedRemoteAddressesHelp": "Lista separada por comas de direcciones IP o IP/máscara de red para redes a las que se les permitirá conectarse de forma remota. Si se deja vacía, todas las direcciones remotas serán permitidas.",
|
||||
|
@ -128,7 +125,6 @@
|
|||
"ButtonHelp": "Ayuda",
|
||||
"ButtonHome": "Inicio",
|
||||
"ButtonInfo": "Información",
|
||||
"ButtonLearnMore": "Aprender más",
|
||||
"ButtonLibraryAccess": "Acceso a la biblioteca",
|
||||
"ButtonManualLogin": "Inicio de sesión manual",
|
||||
"ButtonMore": "Más",
|
||||
|
@ -172,7 +168,6 @@
|
|||
"ButtonTrailer": "Avance",
|
||||
"ButtonUninstall": "Desinstalar",
|
||||
"ButtonUp": "Arriba",
|
||||
"ButtonViewWebsite": "Ver sitio web",
|
||||
"ButtonWebsite": "Sitio web",
|
||||
"CancelRecording": "Cancelar grabación",
|
||||
"CancelSeries": "Cancelar serie",
|
||||
|
@ -310,7 +305,6 @@
|
|||
"HeaderFavoriteArtists": "Artistas favoritos",
|
||||
"HeaderFavoriteAlbums": "Álbumes favoritos",
|
||||
"Shows": "Programas",
|
||||
"CopyStreamURLError": "Hubo un error copiando la URL.",
|
||||
"CopyStreamURLSuccess": "URL copiada con éxito.",
|
||||
"CopyStreamURL": "Copiar URL de transmisión",
|
||||
"ButtonSplit": "Dividir",
|
||||
|
@ -322,7 +316,6 @@
|
|||
"HeaderBranding": "Marca",
|
||||
"HeaderBooks": "Libros",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear elementos con rating de información vacía o no reconocible:",
|
||||
"HeaderAutomaticUpdates": "Actualizaciones Automáticas",
|
||||
"HeaderAudioSettings": "Configuraciones de audio",
|
||||
"HeaderAudioBooks": "Audiolibros",
|
||||
"HeaderAppearsOn": "Aparece en",
|
||||
|
@ -587,8 +580,6 @@
|
|||
"LabelAudioBitrate": "Velocidad de bits de audio:",
|
||||
"LabelAudio": "Audio",
|
||||
"LabelAllowedRemoteAddresses": "Filtro de dirección IP remota:",
|
||||
"LabelAllowServerAutoRestartHelp": "El servidor solo se reiniciará durante los períodos de inactividad cuando no haya usuarios activos.",
|
||||
"LabelAllowServerAutoRestart": "Permita que el servidor se reinicie automáticamente para aplicar actualizaciones",
|
||||
"LabelAllowHWTranscoding": "Permitir transcodificación con hardware",
|
||||
"LabelAlbumArtists": "Artistas del álbum:",
|
||||
"LabelContentType": "Tipo de contenido:",
|
||||
|
@ -685,7 +676,6 @@
|
|||
"LabelDateAddedBehaviorHelp": "Si un valor de metadatos está presente, siempre se usará antes de cualquiera de estas opciones.",
|
||||
"LabelDateAddedBehavior": "Comportamiento de fecha agregada para contenido nuevo:",
|
||||
"LabelDateAdded": "Fecha agregada:",
|
||||
"LabelDashboardTheme": "Tema del panel del servidor:",
|
||||
"LabelCustomRating": "Calificación personalizada:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Proporcione un nombre personalizado para mostrar o déjelo vacío para usar el nombre informado por el dispositivo.",
|
||||
"LabelCustomDeviceDisplayName": "Nombre para mostrar:",
|
||||
|
@ -738,7 +728,6 @@
|
|||
"LabelSportsCategories": "Categorías de deportes:",
|
||||
"LabelSpecialSeasonsDisplayName": "Nombre de la temporada especial:",
|
||||
"LabelSource": "Fuente:",
|
||||
"LabelSoundEffects": "Efectos de sonido:",
|
||||
"LabelSortTitle": "Ordenar título:",
|
||||
"LabelSortOrder": "Orden de clasificación:",
|
||||
"LabelSortBy": "Ordenar por:",
|
||||
|
@ -749,7 +738,6 @@
|
|||
"LabelSkipIfAudioTrackPresentHelp": "Desmarque esto para asegurarse de que todos los videos tengan subtítulos, independientemente del idioma de audio.",
|
||||
"LabelSkipIfAudioTrackPresent": "Omita si la pista de audio predeterminada coincide con el idioma de descarga",
|
||||
"LabelSkipBackLength": "Saltar de nuevo la longitud:",
|
||||
"LabelSkin": "Piel:",
|
||||
"LabelSize": "Tamaño:",
|
||||
"LabelSimultaneousConnectionLimit": "Límite de transmisiones simultáneas:",
|
||||
"LabelServerName": "Nombre del servidor:",
|
||||
|
@ -827,7 +815,6 @@
|
|||
"LabelNewPasswordConfirm": "Nueva contraseña confirmada:",
|
||||
"LabelNewPassword": "Nueva contraseña:",
|
||||
"LabelNewName": "Nuevo nombre:",
|
||||
"LabelNightly": "Nocturna",
|
||||
"LabelStable": "Estable",
|
||||
"LabelChromecastVersion": "Versión de Chromecast",
|
||||
"LabelName": "Nombre:",
|
||||
|
@ -994,10 +981,8 @@
|
|||
"MessageLeaveEmptyToInherit": "Deje en blanco para heredar la configuración de un elemento primario o el valor predeterminado global.",
|
||||
"MessageItemsAdded": "Artículos añadidos.",
|
||||
"MessageItemSaved": "Artículo guardado.",
|
||||
"MessageUnauthorizedUser": "No tiene autorización para acceder al servidor en este momento. Póngase en contacto con el administrador del servidor para obtener más información.",
|
||||
"MessageInvalidUser": "Usuario o contraseña inválidos. Inténtalo de nuevo.",
|
||||
"MessageInvalidForgotPasswordPin": "Se ingresó un código PIN no válido o caducado. Inténtalo de nuevo.",
|
||||
"MessageInstallPluginFromApp": "Este complemento debe instalarse desde la aplicación en la que desea utilizarlo.",
|
||||
"MessageImageTypeNotSelected": "Seleccione un tipo de imagen del menú desplegable.",
|
||||
"MessageImageFileTypeAllowed": "Solo se admiten archivos JPEG y PNG.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Intente nuevamente dentro de su red doméstica para iniciar el proceso de restablecimiento de contraseña.",
|
||||
|
@ -1029,7 +1014,6 @@
|
|||
"MediaInfoStreamTypeEmbeddedImage": "Imagen incrustada",
|
||||
"MediaInfoStreamTypeData": "Data",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoTimestamp": "Marca de tiempo",
|
||||
"MediaInfoSize": "Tamaño",
|
||||
"MediaInfoSampleRate": "Frecuencia de muestreo",
|
||||
|
@ -1063,11 +1047,9 @@
|
|||
"LiveBroadcasts": "Transmisiones en vivo",
|
||||
"Live": "En vivo",
|
||||
"List": "Lista",
|
||||
"LinksValue": "Enlaces: {0}",
|
||||
"Like": "Me gusta",
|
||||
"LeaveBlankToNotSetAPassword": "Puede dejar este campo en blanco para no establecer una contraseña.",
|
||||
"LearnHowYouCanContribute": "Aprende cómo puedes contribuir.",
|
||||
"LaunchWebAppOnStartup": "Iniciar la interfaz web al iniciar el servidor",
|
||||
"LatestFromLibrary": "Últimos {0}",
|
||||
"Large": "Grande",
|
||||
"LabelffmpegPathHelp": "La ruta al archivo de la aplicación ffmpeg o la carpeta que contiene ffmpeg.",
|
||||
|
@ -1173,7 +1155,6 @@
|
|||
"MusicLibraryHelp": "Revise la {0}guía de nomenclatura musical{1}.",
|
||||
"MovieLibraryHelp": "Revise la {0}guía de nombres de películas{1}.",
|
||||
"LibraryAccessHelp": "Seleccione las bibliotecas para compartir con este usuario. Los administradores podrán editar todas las carpetas con el administrador de metadatos.",
|
||||
"LaunchWebAppOnStartupHelp": "Abra el cliente web en su navegador web predeterminado cuando el servidor arranque inicialmente. Esto no ocurrirá cuando use la función de reinicio del servidor.",
|
||||
"LanNetworksHelp": "Lista separada por comas de direcciones IP o entradas de IP/máscara de red para redes que se considerarán en la red local cuando se impongan restricciones de ancho de banda. Si se establece, todas las demás direcciones IP se considerarán en la red externa y estarán sujetas a las restricciones de ancho de banda externo. Si se deja en blanco, solo se considera que la subred del servidor está en la red local.",
|
||||
"LabelXDlnaDocHelp": "Determina el contenido del elemento X_DLNADOC en el espacio de nombres urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDoc": "Doc. X-DLNA:",
|
||||
|
@ -1219,7 +1200,6 @@
|
|||
"RecentlyWatched": "Recientemente visto",
|
||||
"Rate": "Velocidad",
|
||||
"Raised": "Elevado",
|
||||
"QueueAllFromHere": "Hacer cola todo desde aquí",
|
||||
"Quality": "Calidad",
|
||||
"Programs": "Programas",
|
||||
"ProductionLocations": "Ubicaciones de producción",
|
||||
|
@ -1264,7 +1244,6 @@
|
|||
"PackageInstallCompleted": "Instalación {0} (versión {1}) completada.",
|
||||
"PackageInstallCancelled": "Instalación de {0} (versión {1}) cancelada.",
|
||||
"Overview": "Visión general",
|
||||
"OtherArtist": "Otro artista",
|
||||
"OriginalAirDateValue": "Fecha de emisión original: {0}",
|
||||
"OptionWeekly": "Semanal",
|
||||
"OptionWeekends": "Fines de semana",
|
||||
|
@ -1354,7 +1333,6 @@
|
|||
"RemoveFromPlaylist": "Eliminar de la lista de reproducción",
|
||||
"RemoveFromCollection": "Eliminar de la colección",
|
||||
"RememberMe": "Recuérdame",
|
||||
"ReleaseGroup": "Grupo de lanzamiento",
|
||||
"ButtonCast": "Transmitir",
|
||||
"ButtonSyncPlay": "SyncPlay",
|
||||
"EnableBlurHashHelp": "Las imágenes que aún se están cargando se mostrarán con un marcador de posición borroso",
|
||||
|
@ -1386,7 +1364,6 @@
|
|||
"Watched": "Visto",
|
||||
"ViewPlaybackInfo": "Ver información de reproducción",
|
||||
"ViewAlbum": "Ver álbum",
|
||||
"VideoRange": "Rango de video",
|
||||
"Vertical": "Vertical",
|
||||
"ValueTimeLimitSingleHour": "Límite de tiempo: 1 hora",
|
||||
"ValueTimeLimitMultiHour": "Límite de tiempo: {0} horas",
|
||||
|
@ -1453,7 +1430,6 @@
|
|||
"TabProfile": "Perfil",
|
||||
"TabPlugins": "Complementos",
|
||||
"TabPlaylists": "Listas de reproducción",
|
||||
"TabPlaylist": "Lista de reproducción",
|
||||
"TabPlayback": "Reproducción",
|
||||
"TabPassword": "Contraseña",
|
||||
"TabParentalControl": "Control parental",
|
||||
|
@ -1557,7 +1533,6 @@
|
|||
"Save": "Guardar",
|
||||
"Saturday": "Sábado",
|
||||
"Runtime": "Tiempo de ejecución",
|
||||
"RunAtStartup": "Ejecutar en el arranque",
|
||||
"Rewind": "Rebobinar",
|
||||
"ResumeAt": "Reanudar desde {0}",
|
||||
"ButtonPlayer": "Reproductor",
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
"Absolute": "Absoluto",
|
||||
"AccessRestrictedTryAgainLater": "El acceso está restringido actualmente. Por favor, inténtalo más tarde.",
|
||||
"Add": "Agregar",
|
||||
"AddItemToCollectionHelp": "Agrega elementos a las colecciones buscándolos y utilizando sus menúes al hacer clic derecho o al tocarlos para agregarlos a una colección.",
|
||||
"AddToCollection": "Agregar a colección",
|
||||
"AddToPlayQueue": "Agregar a la cola de reproducción",
|
||||
"AddToPlaylist": "Agregar a lista de reproducción",
|
||||
|
@ -37,7 +36,6 @@
|
|||
"Ascending": "Ascendente",
|
||||
"AspectRatio": "Relación de aspecto",
|
||||
"AttributeNew": "Nuevo",
|
||||
"AutoBasedOnLanguageSetting": "Auto (basado en la configuración del idioma)",
|
||||
"Backdrop": "Imagen de fondo",
|
||||
"Backdrops": "Imágenes de fondo",
|
||||
"Banner": "Banner",
|
||||
|
@ -80,7 +78,6 @@
|
|||
"ButtonGuide": "Guía",
|
||||
"ButtonHelp": "Ayuda",
|
||||
"ButtonHome": "Inicio",
|
||||
"ButtonLearnMore": "Aprender más",
|
||||
"ButtonLibraryAccess": "Acceso a biblioteca(s)",
|
||||
"ButtonManualLogin": "Inicio de sesión manual",
|
||||
"ButtonMore": "Más",
|
||||
|
@ -124,7 +121,6 @@
|
|||
"ButtonSubtitles": "Subtítulos",
|
||||
"ButtonUninstall": "Desinstalar",
|
||||
"ButtonUp": "Arriba",
|
||||
"ButtonViewWebsite": "Ver sitio web",
|
||||
"ButtonWebsite": "Sitio web",
|
||||
"CancelRecording": "Cancelar grabación",
|
||||
"CancelSeries": "Cancelar serie",
|
||||
|
@ -284,7 +280,6 @@
|
|||
"HeaderAppearsOn": "Aparece en",
|
||||
"HeaderAudioBooks": "Audiolibros",
|
||||
"HeaderAudioSettings": "Configuración de audio",
|
||||
"HeaderAutomaticUpdates": "Actualizaciones automáticas",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear elementos sin clasificación o con información de clasificación desconocida:",
|
||||
"HeaderBooks": "Libros",
|
||||
"HeaderBranding": "Establecer marca",
|
||||
|
@ -502,8 +497,6 @@
|
|||
"LabelAlbumArtists": "Artistas del álbum:",
|
||||
"LabelAll": "Todos",
|
||||
"LabelAllowHWTranscoding": "Permitir transcodificación por hardware",
|
||||
"LabelAllowServerAutoRestart": "Permite al servidor reiniciarse automáticamente para aplicar actualizaciones",
|
||||
"LabelAllowServerAutoRestartHelp": "El servidor solo se reiniciará durante los períodos de inactividad cuando no haya usuarios activos.",
|
||||
"LabelAllowedRemoteAddresses": "Filtro de direcciones IP remotas:",
|
||||
"LabelAllowedRemoteAddressesMode": "Modo de filtrado de direcciones IP remotas:",
|
||||
"LabelAppName": "Nombre de la aplicación",
|
||||
|
@ -540,7 +533,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Nombre a mostrar:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Proporcione un nombre personalizado para mostrar o déjalo vacío para usar el nombre reportado por el dispositivo.",
|
||||
"LabelCustomRating": "Calificación personalizada:",
|
||||
"LabelDashboardTheme": "Tema del panel de control del servidor:",
|
||||
"LabelDateAdded": "Fecha de adición:",
|
||||
"LabelDateAddedBehavior": "Comportamiento de la fecha de adición para nuevo contenido:",
|
||||
"LabelDateAddedBehaviorHelp": "Si un valor de metadatos está presente, siempre se utilizará antes de cualquiera de estas opciones.",
|
||||
|
@ -751,7 +743,6 @@
|
|||
"LabelServerHost": "Servidor:",
|
||||
"LabelServerHostHelp": "192.168.1.100:8096 o https://miservidor.com",
|
||||
"LabelSimultaneousConnectionLimit": "Límite de transmisiones simultáneas:",
|
||||
"LabelSkin": "Apariencia:",
|
||||
"LabelSkipBackLength": "Longitud de salto hacia atrás:",
|
||||
"LabelSkipForwardLength": "Longitud de salto hacia adelante:",
|
||||
"LabelSkipIfAudioTrackPresent": "Omitir si la pista de audio por defecto coincide con el idioma de descarga",
|
||||
|
@ -763,7 +754,6 @@
|
|||
"LabelSortBy": "Ordenar por:",
|
||||
"LabelSortOrder": "Clasificar ordenado:",
|
||||
"LabelSortTitle": "Título para ordenar:",
|
||||
"LabelSoundEffects": "Efectos de sonido:",
|
||||
"LabelSource": "Fuente:",
|
||||
"LabelSpecialSeasonsDisplayName": "Nombre de la temporada de especiales:",
|
||||
"LabelSportsCategories": "Categorías de deportes:",
|
||||
|
@ -816,7 +806,6 @@
|
|||
"LabelXDlnaDoc": "Documento X-DLNA:",
|
||||
"LabelXDlnaDocHelp": "Determina el contenido del elemento X_DLNADOC en el namespace urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYear": "Año:",
|
||||
"LabelYourFirstName": "Tu nombre:",
|
||||
"LabelYoureDone": "¡Has terminado!",
|
||||
"LabelZipCode": "Código postal:",
|
||||
"LabelffmpegPath": "Ruta del FFmpeg:",
|
||||
|
@ -827,7 +816,6 @@
|
|||
"LearnHowYouCanContribute": "Aprende cómo puedes contribuir.",
|
||||
"LibraryAccessHelp": "Selecciona las bibliotecas que deseas compartir con este usuario. Los administradores podrán editar todas las carpetas utilizando el gestor de metadatos.",
|
||||
"Like": "Me gusta",
|
||||
"LinksValue": "Enlaces: {0}",
|
||||
"List": "Lista",
|
||||
"Live": "En vivo",
|
||||
"LiveBroadcasts": "Emisiones en vivo",
|
||||
|
@ -885,7 +873,6 @@
|
|||
"MessageFileReadError": "Hubo un error al leer el archivo. Por favor, intenta de nuevo.",
|
||||
"MessageForgotPasswordFileCreated": "El siguiente archivo fue creado en tu servidor y contiene instrucciones de como proceder:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Por favor, intenta de nuevo dentro de tu red local para iniciar el proceso de restablecimiento de contraseña.",
|
||||
"MessageInstallPluginFromApp": "Este complemento debe ser instalado desde dentro de la aplicación en la que deseas usarlo.",
|
||||
"MessageInvalidForgotPasswordPin": "Se ha introducido un código PIN inválido o expirado. Por favor, inténtalo de nuevo.",
|
||||
"MessageInvalidUser": "Nombre de usuario o contraseña inválidos. Por favor, intenta de nuevo.",
|
||||
"MessageItemSaved": "Elemento guardado.",
|
||||
|
@ -1120,7 +1107,6 @@
|
|||
"ProductionLocations": "Lugares de producción",
|
||||
"Programs": "Programas",
|
||||
"Quality": "Calidad",
|
||||
"QueueAllFromHere": "Encolar todos desde aquí",
|
||||
"Raised": "Elevado",
|
||||
"Rate": "Calificación",
|
||||
"RecentlyWatched": "Visto recientemente",
|
||||
|
@ -1151,7 +1137,6 @@
|
|||
"ReplaceExistingImages": "Reemplazar imágenes existentes",
|
||||
"ResumeAt": "Reanudar desde {0}",
|
||||
"Rewind": "Rebobinar",
|
||||
"RunAtStartup": "Ejecutar al iniciar",
|
||||
"Runtime": "Duración",
|
||||
"Saturday": "Sábado",
|
||||
"Save": "Guardar",
|
||||
|
@ -1243,7 +1228,6 @@
|
|||
"TabParentalControl": "Control parental",
|
||||
"TabPassword": "Contraseña",
|
||||
"TabPlayback": "Reproducción",
|
||||
"TabPlaylist": "Lista de reproducción",
|
||||
"TabPlaylists": "Listas de reproducción",
|
||||
"TabPlugins": "Complementos",
|
||||
"TabProfile": "Perfil",
|
||||
|
@ -1310,7 +1294,6 @@
|
|||
"ValueTimeLimitMultiHour": "Límite de tiempo: {0} horas",
|
||||
"ValueTimeLimitSingleHour": "Límite de tiempo: 1 hora",
|
||||
"ValueVideoCodec": "Códec de video: {0}",
|
||||
"VideoRange": "Rango de video",
|
||||
"ViewAlbum": "Ver álbum",
|
||||
"ViewPlaybackInfo": "Ver información de reproducción",
|
||||
"Watched": "Visto",
|
||||
|
@ -1365,11 +1348,8 @@
|
|||
"DashboardArchitecture": "Arquitectura: {0}",
|
||||
"LabelVideo": "Video",
|
||||
"LabelWeb": "Web:",
|
||||
"LaunchWebAppOnStartup": "Iniciar la interfaz web al iniciar el servidor",
|
||||
"LaunchWebAppOnStartupHelp": "Abre el cliente web en su navegador web predeterminado cuando se inicia el servidor. Esto no ocurrirá cuando se utilice la función de reinicio del servidor.",
|
||||
"LeaveBlankToNotSetAPassword": "Puedes dejar este campo en blanco para no establecer ninguna contraseña.",
|
||||
"MediaInfoCodec": "Códec",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Dato",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Imagen incrustada",
|
||||
|
@ -1440,7 +1420,6 @@
|
|||
"LabelSize": "Tamaño:",
|
||||
"SelectAdminUsername": "Por favor, selecciona un nombre de usuario para la cuenta de administrador.",
|
||||
"LabelDroppedFrames": "Cuadros saltados:",
|
||||
"CopyStreamURLError": "Hubo un error al copiar la URL.",
|
||||
"ButtonSplit": "Dividir",
|
||||
"WeeklyAt": "{0}s a las {1}",
|
||||
"OnApplicationStartup": "Cuando se inicia la aplicación",
|
||||
|
@ -1456,12 +1435,10 @@
|
|||
"PathNotFound": "No se pudo encontrar la ruta. Por favor, asegúrate de que la ruta es válida e inténtalo de nuevo.",
|
||||
"Track": "Pista",
|
||||
"Season": "Temporada",
|
||||
"ReleaseGroup": "Grupo que lo estrenó",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Preferir información del episodio incrustada a los nombres de archivo",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "Esto utiliza la información del episodio desde los metadatos incrustados si están disponibles.",
|
||||
"PlaybackErrorNoCompatibleStream": "Este cliente no es compatible con los medios y el servidor no está enviando un formato de medios compatible.",
|
||||
"Person": "Persona",
|
||||
"OtherArtist": "Otro artista",
|
||||
"OptionRandom": "Aleatorio",
|
||||
"OptionForceRemoteSourceTranscoding": "Forzar transcodificación de fuentes remotas (como TV en vivo)",
|
||||
"NoCreatedLibraries": "Parece que no has creado ninguna biblioteca todavía. {0}¿Quisieras crear una ahora?{1}",
|
||||
|
@ -1488,7 +1465,6 @@
|
|||
"DeinterlaceMethodHelp": "Seleccione el método de desentrelazado que se usará al transcodificar contenido entrelazado.",
|
||||
"Filter": "Filtro",
|
||||
"New": "Nuevo",
|
||||
"MessageUnauthorizedUser": "No estás autorizado para acceder al servidor en este momento. Por favor, contacta al administrador del servidor para más información.",
|
||||
"LabelLibraryPageSizeHelp": "Establece el número de elementos a mostrar en una página de biblioteca. Establece en 0 para deshabilitar el paginado.",
|
||||
"LabelLibraryPageSize": "Tamaño de las páginas de las bibliotecas:",
|
||||
"HeaderFavoritePlaylists": "Listas de reproducción favoritas",
|
||||
|
@ -1499,7 +1475,6 @@
|
|||
"SaveChanges": "Guardar cambios",
|
||||
"LabelRequireHttpsHelp": "Si se marca, el servidor redirigirá automáticamente todas las solicitudes a través de HTTP a HTTPS. Esto no tiene efecto si el servidor no está escuchando en HTTPS.",
|
||||
"LabelRequireHttps": "Requerir HTTPS",
|
||||
"LabelNightly": "Nocturno",
|
||||
"LabelStable": "Estable",
|
||||
"LabelChromecastVersion": "Versión de Chromecast",
|
||||
"LabelEnableHttpsHelp": "Permite al servidor escuchar en el puerto HTTPS configurado. Un certificado válido también debe ser configurado para que esto tenga efecto.",
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"AccessRestrictedTryAgainLater": "Actualmente el acceso está restringido. Por favor, inténtalo de nuevo más tarde.",
|
||||
"Add": "Añadir",
|
||||
"AddItemToCollectionHelp": "Puedes añadir elementos a las colecciones buscándolos en tu biblioteca. Una vez hecho esto, abre el menú y selecciona 'Añadir a una colección'.",
|
||||
"AddToCollection": "Añadir a una colección",
|
||||
"AddToPlaylist": "Añadir a una lista de reproducción",
|
||||
"AddedOnValue": "Añadido {0}",
|
||||
|
@ -69,7 +68,6 @@
|
|||
"ButtonGuide": "Guía",
|
||||
"ButtonHelp": "Ayuda",
|
||||
"ButtonHome": "Inicio",
|
||||
"ButtonLearnMore": "Aprende más",
|
||||
"ButtonLibraryAccess": "Acceso a la biblioteca",
|
||||
"ButtonManualLogin": "Acceder manualmente",
|
||||
"ButtonMore": "Más",
|
||||
|
@ -115,7 +113,6 @@
|
|||
"ButtonTrailer": "Tráiler",
|
||||
"ButtonUninstall": "Desinstalar",
|
||||
"ButtonUp": "Arriba",
|
||||
"ButtonViewWebsite": "Ver sitio web",
|
||||
"ButtonWebsite": "Sitio web",
|
||||
"CancelRecording": "Cancelar grabación",
|
||||
"CancelSeries": "Cancelar series",
|
||||
|
@ -237,7 +234,6 @@
|
|||
"HeaderApiKeysHelp": "Las aplicaciones externas requieren de una clave API para comunicarse con el servidor Jellyfin. Las claves se facilitan iniciando sesión con una cuenta de Jellyfin, u otorgando manualmente una clave a la aplicación.",
|
||||
"HeaderAudioBooks": "Audiolibros",
|
||||
"HeaderAudioSettings": "Ajustes de audio",
|
||||
"HeaderAutomaticUpdates": "Actualizaciones automáticas",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear artículos sin valoraciones o si son desconocidas:",
|
||||
"HeaderBooks": "Libros",
|
||||
"HeaderCancelRecording": "Cancelar grabación",
|
||||
|
@ -448,8 +444,6 @@
|
|||
"LabelAlbumArtists": "Artistas de los álbumes:",
|
||||
"LabelAll": "Todo",
|
||||
"LabelAllowHWTranscoding": "Activar la conversión acelerada por hardware",
|
||||
"LabelAllowServerAutoRestart": "Permitir al servidor reiniciarse automáticamente para aplicar las actualizaciones",
|
||||
"LabelAllowServerAutoRestartHelp": "El servidor solo se reiniciará durante periodos de reposo, cuando no haya usuarios activos.",
|
||||
"LabelAllowedRemoteAddresses": "Filtro de dirección IP remota:",
|
||||
"LabelAllowedRemoteAddressesMode": "Modo de filtro de dirección IP remota:",
|
||||
"LabelAppName": "Nombre de la aplicación",
|
||||
|
@ -742,7 +736,6 @@
|
|||
"LabelXDlnaCapHelp": "Determina el contenido del elemento X_DLNACAP en el espacio de nombre urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDocHelp": "Determina el contenido del elemento X_DLNADOC en el espacio de nombreurn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYear": "Año:",
|
||||
"LabelYourFirstName": "Tu nombre:",
|
||||
"LabelYoureDone": "¡Ya está!",
|
||||
"LabelZipCode": "Código postal:",
|
||||
"LabelffmpegPath": "Ruta de ffmpeg:",
|
||||
|
@ -807,7 +800,6 @@
|
|||
"MessageFileReadError": "Ha habido un error leyendo el fichero. Por favor, inténtalo más tarde.",
|
||||
"MessageForgotPasswordFileCreated": "Se ha creado el siguiente archivo en tu servidor y contiene instrucciones de cómo proceder:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Por favor, inténtalo de nuevo desde tu red de casa para iniciar el proceso de restablecimiento de la contraseña.",
|
||||
"MessageInstallPluginFromApp": "Este complemento debe instalarse desde la aplicación en la que lo vayas a usar.",
|
||||
"MessageInvalidForgotPasswordPin": "Ha introducido un código PIN inválido o expirado. Por favor, inténtelo de nuevo.",
|
||||
"MessageInvalidUser": "Usuario o contraseña inválidos. Por favor, inténtalo otra vez.",
|
||||
"MessageItemSaved": "Elemento grabado.",
|
||||
|
@ -1027,7 +1019,6 @@
|
|||
"ProductionLocations": "Localizaciones de producción",
|
||||
"Programs": "Programas",
|
||||
"Quality": "Calidad",
|
||||
"QueueAllFromHere": "En cola todos desde aquí",
|
||||
"Rate": "Califica",
|
||||
"RecentlyWatched": "Vistos recientemente",
|
||||
"RecommendationBecauseYouLike": "Ya que te ha gustado {0}, quizá te pueda interesar",
|
||||
|
@ -1138,7 +1129,6 @@
|
|||
"TabParentalControl": "Control parental",
|
||||
"TabPassword": "Contraseña",
|
||||
"TabPlayback": "Reproducción",
|
||||
"TabPlaylist": "Lista de reproducción",
|
||||
"TabPlaylists": "Listas de reproducción",
|
||||
"TabProfile": "Perfil",
|
||||
"TabProfiles": "Perfiles",
|
||||
|
@ -1224,7 +1214,6 @@
|
|||
"Ascending": "Ascendente",
|
||||
"Audio": "Audio",
|
||||
"Auto": "Automático",
|
||||
"AutoBasedOnLanguageSetting": "Automático (basado en la configuración de idioma)",
|
||||
"Banner": "Pancarta",
|
||||
"BurnSubtitlesHelp": "Determina si el servidor debe grabar los subtítulos en el vídeo al transcodificar. Desactivar esta opción puede mejorar el rendimiento. Seleccione 'Auto' para grabar formatos basados en imágenes (VOBSUB, PGS, SUB/IDX) y ciertos subtítulos ASS o SSA.",
|
||||
"ButtonInfo": "Información",
|
||||
|
@ -1282,7 +1271,6 @@
|
|||
"Horizontal": "Horizontal",
|
||||
"LabelAudio": "Audio",
|
||||
"LabelBurnSubtitles": "Incrustar subtítulos:",
|
||||
"LabelDashboardTheme": "Tema para la interfaz del servidor:",
|
||||
"LabelDateTimeLocale": "Fecha y hora local:",
|
||||
"LabelDefaultScreen": "Pantalla por defecto:",
|
||||
"LabelDisplayLanguage": "Mostrar idioma:",
|
||||
|
@ -1292,12 +1280,10 @@
|
|||
"LabelParentNumber": "Número del elemento padre:",
|
||||
"LabelPersonRoleHelp": "Ejemplo: Conductor de camión de helados",
|
||||
"LabelServerHost": "Host:",
|
||||
"LabelSkin": "Tema:",
|
||||
"LabelSkipBackLength": "Tiempo de retroceso:",
|
||||
"LabelSkipForwardLength": "Tiempo de avance:",
|
||||
"LabelSortBy": "Ordenar por:",
|
||||
"LabelSortOrder": "Orden:",
|
||||
"LabelSoundEffects": "Efectos de sonido:",
|
||||
"LabelSubtitles": "Subtítulos",
|
||||
"LabelTVHomeScreen": "Modo televisión en pantalla de inicio:",
|
||||
"LabelVersion": "Versión:",
|
||||
|
@ -1306,7 +1292,6 @@
|
|||
"LabelXDlnaDoc": "X-DLNA doc:",
|
||||
"LearnHowYouCanContribute": "Descubre cómo puedes contribuir.",
|
||||
"LeaveBlankToNotSetAPassword": "Puedes dejarlo en blanco para no configurar una contraseña.",
|
||||
"LinksValue": "Enlaces: {0}",
|
||||
"List": "Lista",
|
||||
"Logo": "Logo",
|
||||
"MediaIsBeingConverted": "El medio está siendo convertido en un formato compatible con el dispositivo que lo está reproduciendo.",
|
||||
|
@ -1351,9 +1336,6 @@
|
|||
"DashboardOperatingSystem": "Sistema operativo: {0}",
|
||||
"DashboardArchitecture": "Arquitectura: {0}",
|
||||
"LabelWeb": "Web:",
|
||||
"LaunchWebAppOnStartup": "Iniciar la aplicación web al iniciar el servidor",
|
||||
"LaunchWebAppOnStartupHelp": "Abrir el cliente web en el navegador por defecto al iniciar el servidor. Esto no ocurrirá al utilizar la función de reinicio del servidor.",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Datos",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Imagen incrustada",
|
||||
|
@ -1385,7 +1367,6 @@
|
|||
"Premiere": "Estreno",
|
||||
"Raised": "Elevación",
|
||||
"RefreshDialogHelp": "Las etiquetas se actualizan basándose en las configuraciones y los servicios de internet activados desde el panel de control de Jellyfin.",
|
||||
"RunAtStartup": "Ejecutar al iniciar",
|
||||
"Series": "Series",
|
||||
"SeriesDisplayOrderHelp": "Ordena los episodios por fecha de emisión, orden de DVD o número absoluto.",
|
||||
"ShowTitle": "Mostrar título",
|
||||
|
@ -1412,7 +1393,6 @@
|
|||
"ValueMinutes": "{0} min",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"Vertical": "Vertical",
|
||||
"VideoRange": "Rango de vídeo",
|
||||
"ThemeVideos": "Vídeos de tema",
|
||||
"TabNetworking": "Redes",
|
||||
"CopyStreamURL": "Copiar URL de Stream",
|
||||
|
@ -1447,7 +1427,6 @@
|
|||
"MessageConfirmAppExit": "¿Quieres salir?",
|
||||
"EnableFasterAnimationsHelp": "Las animaciones y transiciones durarán menos tiempo",
|
||||
"EnableFasterAnimations": "Animaciones más rápidas",
|
||||
"CopyStreamURLError": "Ha habido un error copiando la dirección.",
|
||||
"AllowFfmpegThrottlingHelp": "Las conversiones se pausarán cuando se adelanten lo suficiente desde la posición en la que se encuentre el reproductor. Puede reducir la carga en el servidor y es útil cuando se reproduce de forma continua, sin saltar entre intervalos de tiempo, pero puede que tengas que desactivarlo si experimentas problemas en la reproducción o cambias de posición frecuentemente mientras reproduces contenido.",
|
||||
"PlaybackErrorNoCompatibleStream": "Este contenido no es compatible con este dispositivo y no se puede reproducir: No se puede obtener del servidor en un formato compatible.",
|
||||
"OptionForceRemoteSourceTranscoding": "Forzar la conversión para fuentes externas (como la televisión en directo)",
|
||||
|
@ -1476,9 +1455,7 @@
|
|||
"OnApplicationStartup": "Al iniciarse el servidor",
|
||||
"Track": "Pista",
|
||||
"Season": "Temporada",
|
||||
"ReleaseGroup": "Grupo de salida",
|
||||
"Person": "Persona",
|
||||
"OtherArtist": "Otro artista",
|
||||
"Movie": "Película",
|
||||
"Episode": "Episodio",
|
||||
"BoxSet": "Box Set",
|
||||
|
@ -1492,14 +1469,12 @@
|
|||
"UnsupportedPlayback": "No es posible desencriptar contenido protegido mediante DRM; sin embargo se intentará su reproducción. Algunos archivos pueden aparecer completamente negros debido a encriptación u otras características no soportadas, como títulos interactivos.",
|
||||
"YadifBob": "YADIF Bob",
|
||||
"Yadif": "YADIF",
|
||||
"MessageUnauthorizedUser": "No tiene autorización para acceder al servidor en este momento. Póngase en contacto con el administrador del servidor para obtener más información.",
|
||||
"ButtonTogglePlaylist": "Lista de reproducción",
|
||||
"ButtonToggleContextMenu": "Más",
|
||||
"Filter": "Filtro",
|
||||
"New": "Nuevo",
|
||||
"HeaderFavoritePlaylists": "Lista reproducción favorita",
|
||||
"ApiKeysCaption": "Lista de las claves API actuales",
|
||||
"LabelNightly": "Nightly",
|
||||
"LabelStable": "Estable",
|
||||
"LabelChromecastVersion": "Versión de Chromecast",
|
||||
"HeaderServerAddressSettings": "Configuración de la dirección del Servidor",
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
"AddToPlaylist": "Agregar a lista de reproducción",
|
||||
"AddToPlayQueue": "Agregar a la cola de reproducción",
|
||||
"AddToCollection": "Agregar a colección",
|
||||
"AddItemToCollectionHelp": "Agrega elementos a las colecciones buscándolos y utilizando sus menúes al hacer clic derecho o al tocarlos para agregarlos a una colección.",
|
||||
"Add": "Agregar",
|
||||
"Actor": "Actor",
|
||||
"AccessRestrictedTryAgainLater": "El acceso está restringido actualmente. Por favor, inténtalo más tarde.",
|
||||
|
@ -42,13 +41,11 @@
|
|||
"YadifBob": "YADIF Bob",
|
||||
"Trailers": "Trailers",
|
||||
"TabTrailers": "Trailers",
|
||||
"ReleaseGroup": "Grupo que lo estrenó",
|
||||
"OptionThumbCard": "Miniatura de imagen",
|
||||
"OptionResElement": "elemento reanudable",
|
||||
"OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)",
|
||||
"OptionBluray": "Blu-ray",
|
||||
"OptionBlockTrailers": "Trailers",
|
||||
"LabelNightly": "Construcciones nocturnas",
|
||||
"HeaderVideos": "Videos",
|
||||
"Director": "Director",
|
||||
"Depressed": "No presionado",
|
||||
|
@ -83,7 +80,6 @@
|
|||
"Watched": "Visto",
|
||||
"ViewPlaybackInfo": "Ver información de reproducción",
|
||||
"ViewAlbum": "Ver álbum",
|
||||
"VideoRange": "Rango de video",
|
||||
"Vertical": "Vertical",
|
||||
"ValueVideoCodec": "Códec de video: {0}",
|
||||
"ValueTimeLimitSingleHour": "Límite de tiempo: 1 hora",
|
||||
|
@ -152,7 +148,6 @@
|
|||
"TabProfile": "Perfil",
|
||||
"TabPlugins": "Complementos",
|
||||
"TabPlaylists": "Listas de reproducción",
|
||||
"TabPlaylist": "Lista de reproducción",
|
||||
"TabPlayback": "Reproducción",
|
||||
"TabPassword": "Contraseña",
|
||||
"TabParentalControl": "Control parental",
|
||||
|
@ -378,10 +373,8 @@
|
|||
"MessageLeaveEmptyToInherit": "Dejar vacío para heredar la configuración de un elemento superior o del valor predeterminado global.",
|
||||
"MessageItemsAdded": "Elementos agregados.",
|
||||
"MessageItemSaved": "Elemento guardado.",
|
||||
"MessageUnauthorizedUser": "No estás autorizado para acceder al servidor en este momento. Por favor, contacta al administrador del servidor para más información.",
|
||||
"MessageInvalidUser": "Nombre de usuario o contraseña inválidos. Por favor, intenta de nuevo.",
|
||||
"MessageInvalidForgotPasswordPin": "Se ha introducido un código PIN inválido o expirado. Por favor, inténtalo de nuevo.",
|
||||
"MessageInstallPluginFromApp": "Este complemento debe ser instalado desde dentro de la aplicación en la que deseas usarlo.",
|
||||
"MessageImageTypeNotSelected": "Por favor, selecciona un tipo de imagen del menú desplegable.",
|
||||
"MessageImageFileTypeAllowed": "Solo son soportados archivos JPEG y PNG.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Por favor, intenta de nuevo dentro de tu red local para iniciar el proceso de restablecimiento de contraseña.",
|
||||
|
@ -392,13 +385,10 @@
|
|||
"MessageDirectoryPickerLinuxInstruction": "Para Linux en Arch Linux, CentOS, Debian, Fedora, openSUSE o Ubuntu, debes conceder al usuario del servicio al menos permisos de lectura a tus ubicaciones de almacenamiento.",
|
||||
"MessageDirectoryPickerBSDInstruction": "Para BSD, quizás necesites configurar el almacenamiento dentro de tu «FreeNAS Jail» de manera que permita a Jellyfin accederlo.",
|
||||
"List": "Lista",
|
||||
"LinksValue": "Enlaces: {0}",
|
||||
"Like": "Me gusta",
|
||||
"LibraryAccessHelp": "Selecciona las bibliotecas que deseas compartir con este usuario. Los administradores podrán editar todas las carpetas utilizando el gestor de metadatos.",
|
||||
"LeaveBlankToNotSetAPassword": "Puedes dejar este campo en blanco para no establecer ninguna contraseña.",
|
||||
"LearnHowYouCanContribute": "Aprende cómo puedes contribuir.",
|
||||
"LaunchWebAppOnStartupHelp": "Abre el cliente web en su navegador web predeterminado cuando se inicia el servidor. Esto no ocurrirá cuando se utilice la función de reinicio del servidor.",
|
||||
"LaunchWebAppOnStartup": "Iniciar la interfaz web al iniciar el servidor",
|
||||
"LatestFromLibrary": "Últimas - {0}",
|
||||
"Large": "Grande",
|
||||
"LanNetworksHelp": "Lista separada por comas de direcciones IP o entradas de IP/máscara de red para las redes que se considerarán en la red local al aplicar las restricciones de ancho de banda. Si se establecen, todas las demás direcciones IP se considerarán como parte de la red externa y estarán sujetas a las restricciones de ancho de banda externa. Si se deja en blanco, solo se considera a la subred del servidor estar en la red local.",
|
||||
|
@ -406,7 +396,6 @@
|
|||
"LabelffmpegPath": "Ruta del FFmpeg:",
|
||||
"LabelZipCode": "Código postal:",
|
||||
"LabelYoureDone": "¡Has terminado!",
|
||||
"LabelYourFirstName": "Tu nombre:",
|
||||
"LabelYear": "Año:",
|
||||
"LabelXDlnaDocHelp": "Determina el contenido del elemento X_DLNADOC en el namespace urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDoc": "Documento X-DLNA:",
|
||||
|
@ -486,7 +475,6 @@
|
|||
"LabelSportsCategories": "Categorías de deportes:",
|
||||
"LabelSpecialSeasonsDisplayName": "Nombre de la temporada de especiales:",
|
||||
"LabelSource": "Fuente:",
|
||||
"LabelSoundEffects": "Efectos de sonido:",
|
||||
"LabelSortTitle": "Título para ordenar:",
|
||||
"LabelSortOrder": "Clasificar ordenado:",
|
||||
"LabelSortBy": "Ordenar por:",
|
||||
|
@ -560,7 +548,6 @@
|
|||
"Save": "Guardar",
|
||||
"Saturday": "Sábado",
|
||||
"Runtime": "Duración",
|
||||
"RunAtStartup": "Ejecutar al iniciar",
|
||||
"Rewind": "Rebobinar",
|
||||
"ResumeAt": "Reanudar desde {0}",
|
||||
"ReplaceExistingImages": "Reemplazar imágenes existentes",
|
||||
|
@ -591,7 +578,6 @@
|
|||
"RecentlyWatched": "Visto recientemente",
|
||||
"Rate": "Calificación",
|
||||
"Raised": "Elevado",
|
||||
"QueueAllFromHere": "Encolar todos desde aquí",
|
||||
"Quality": "Calidad",
|
||||
"Programs": "Programas",
|
||||
"ProductionLocations": "Lugares de producción",
|
||||
|
@ -637,7 +623,6 @@
|
|||
"PackageInstallCompleted": "Instalación completada de {0} (versión {1}).",
|
||||
"PackageInstallCancelled": "Instalación cancelada de {0} (versión {1}).",
|
||||
"Overview": "Resumen",
|
||||
"OtherArtist": "Otro artista",
|
||||
"OriginalAirDateValue": "Fecha de emisión original: {0}",
|
||||
"OptionWeekly": "Semanal",
|
||||
"OptionWeekends": "Fines de semana",
|
||||
|
@ -674,7 +659,6 @@
|
|||
"OptionProfileAudio": "Audio",
|
||||
"OptionPremiereDate": "Fecha de estreno",
|
||||
"OptionPosterCard": "Ficha de póster",
|
||||
"LabelSkin": "Apariencia:",
|
||||
"LabelSize": "Tamaño:",
|
||||
"LabelSimultaneousConnectionLimit": "Límite de transmisiones simultáneas:",
|
||||
"LabelServerName": "Nombre del servidor:",
|
||||
|
@ -869,7 +853,6 @@
|
|||
"LabelDateAddedBehaviorHelp": "Si un valor de metadatos está presente, siempre se utilizará antes de cualquiera de estas opciones.",
|
||||
"LabelDateAddedBehavior": "Comportamiento de la fecha de adición para nuevo contenido:",
|
||||
"LabelDateAdded": "Fecha de adición:",
|
||||
"LabelDashboardTheme": "Tema del panel de control del servidor:",
|
||||
"LabelCustomRating": "Calificación personalizada:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Proporcione un nombre personalizado para mostrar o déjalo vacío para usar el nombre reportado por el dispositivo.",
|
||||
"LabelCustomDeviceDisplayName": "Nombre a mostrar:",
|
||||
|
@ -917,7 +900,6 @@
|
|||
"MediaInfoStreamTypeEmbeddedImage": "Imagen incrustada",
|
||||
"MediaInfoStreamTypeData": "Dato",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoTimestamp": "Fecha y hora",
|
||||
"MediaInfoSize": "Tamaño",
|
||||
"MediaInfoSampleRate": "Tasa de muestreo",
|
||||
|
@ -980,8 +962,6 @@
|
|||
"LabelAppName": "Nombre de la aplicación",
|
||||
"LabelAllowedRemoteAddressesMode": "Modo de filtrado de direcciones IP remotas:",
|
||||
"LabelAllowedRemoteAddresses": "Filtro de direcciones IP remotas:",
|
||||
"LabelAllowServerAutoRestartHelp": "El servidor solo se reiniciará durante los períodos de inactividad cuando no haya usuarios activos.",
|
||||
"LabelAllowServerAutoRestart": "Permite al servidor reiniciarse automáticamente para aplicar actualizaciones",
|
||||
"LabelAllowHWTranscoding": "Permitir transcodificación por hardware",
|
||||
"LabelAll": "Todos",
|
||||
"LabelAlbumArtists": "Artistas del álbum:",
|
||||
|
@ -1241,7 +1221,6 @@
|
|||
"HeaderBranding": "Establecer marca",
|
||||
"HeaderBooks": "Libros",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear elementos sin clasificación o con información de clasificación desconocida:",
|
||||
"HeaderAutomaticUpdates": "Actualizaciones automáticas",
|
||||
"HeaderAudioSettings": "Configuración de audio",
|
||||
"HeaderAudioBooks": "Audiolibros",
|
||||
"HeaderAppearsOn": "Aparece en",
|
||||
|
@ -1381,7 +1360,6 @@
|
|||
"DateAdded": "Fecha de adición",
|
||||
"CustomDlnaProfilesHelp": "Crear un perfil personalizado para un nuevo dispositivo o reemplazar un perfil del sistema.",
|
||||
"CriticRating": "Calificación de los críticos",
|
||||
"CopyStreamURLError": "Hubo un error al copiar la URL.",
|
||||
"CopyStreamURLSuccess": "URL copiada con éxito.",
|
||||
"CopyStreamURL": "Copiar la URL de la transmisión",
|
||||
"Continuing": "Continuando",
|
||||
|
@ -1415,7 +1393,6 @@
|
|||
"CancelSeries": "Cancelar serie",
|
||||
"CancelRecording": "Cancelar grabación",
|
||||
"ButtonWebsite": "Sitio web",
|
||||
"ButtonViewWebsite": "Ver sitio web",
|
||||
"ButtonUp": "Arriba",
|
||||
"ButtonUninstall": "Desinstalar",
|
||||
"ButtonTrailer": "Trailer",
|
||||
|
@ -1464,7 +1441,6 @@
|
|||
"ButtonMore": "Más",
|
||||
"ButtonManualLogin": "Inicio de sesión manual",
|
||||
"ButtonLibraryAccess": "Acceso a biblioteca(s)",
|
||||
"ButtonLearnMore": "Aprender más",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonHome": "Inicio",
|
||||
"ButtonHelp": "Ayuda",
|
||||
|
@ -1508,7 +1484,6 @@
|
|||
"Banner": "Banner",
|
||||
"Backdrops": "Imágenes de fondo",
|
||||
"Backdrop": "Imagen de fondo",
|
||||
"AutoBasedOnLanguageSetting": "Auto (basado en la configuración del idioma)",
|
||||
"Auto": "Auto",
|
||||
"AuthProviderHelp": "Selecciona un proveedor de autenticación que se utilizará para autenticar la contraseña de este usuario.",
|
||||
"Audio": "Audio",
|
||||
|
|
|
@ -64,7 +64,6 @@
|
|||
"LabelSelectUsers": "انتخاب کاربران:",
|
||||
"LabelTimeLimitHours": "محدودیت زمان (ساعت):",
|
||||
"LabelTypeMetadataDownloaders": "{0} دانلود کننده فراداده:",
|
||||
"LabelYourFirstName": "اسم کوچک شما:",
|
||||
"LabelYoureDone": "به پایان رسید!",
|
||||
"LibraryAccessHelp": "انتخاب پوشه های رسانه برای اشتراک گذاری با این کاربر. مدیر سیستم میتواند با استفاده از مدیریت متاداده همه ی پوشه ها را ویرایش کند.",
|
||||
"ManageLibrary": "مدیریت کتابخانه",
|
||||
|
@ -99,7 +98,6 @@
|
|||
"TabNetworks": "شبکه ها",
|
||||
"TabNotifications": "اعلان ها",
|
||||
"TabPassword": "رمز عبور",
|
||||
"TabPlaylist": "لیست پخش",
|
||||
"TabProfile": "پروفایل",
|
||||
"TabProfiles": "پروفایل ها",
|
||||
"TabShows": "سریال ها",
|
||||
|
@ -168,7 +166,6 @@
|
|||
"ButtonMore": "بیشتر",
|
||||
"ButtonManualLogin": "ورود دستی",
|
||||
"ButtonLibraryAccess": "دسترسی به کتابخانه",
|
||||
"ButtonLearnMore": "بیشتر بدانید",
|
||||
"ButtonInfo": "اطلاعات",
|
||||
"ButtonHome": "خانه",
|
||||
"ButtonHelp": "کمک",
|
||||
|
@ -202,7 +199,6 @@
|
|||
"Banner": "سرصفحه",
|
||||
"Backdrops": "پس زمینهها",
|
||||
"Backdrop": "پس زمینه",
|
||||
"AutoBasedOnLanguageSetting": "خودکار (بر اساس تنظیمات زبانی)",
|
||||
"Auto": "خودکار",
|
||||
"Audio": "صدا",
|
||||
"AttributeNew": "جدید",
|
||||
|
@ -278,7 +274,6 @@
|
|||
"DatePlayed": "تاریخ پخش شده",
|
||||
"DateAdded": "تاریخ اضافه شده",
|
||||
"CriticRating": "امتیاز منتقدان",
|
||||
"CopyStreamURLError": "در کپی کردن آدرس خطایی رخ داد.",
|
||||
"CopyStreamURLSuccess": "آدرس با موفقیت کپی شد.",
|
||||
"CopyStreamURL": "کپی آدرس پخش",
|
||||
"Continuing": "ادامه",
|
||||
|
@ -299,7 +294,6 @@
|
|||
"CancelSeries": "لغو سریالها",
|
||||
"CancelRecording": "لغو ضبط",
|
||||
"ButtonWebsite": "وبسایت",
|
||||
"ButtonViewWebsite": "بازدید وبسایت",
|
||||
"ButtonUp": "بالا",
|
||||
"ButtonUninstall": "حذف نصب",
|
||||
"ButtonTrailer": "تریلر",
|
||||
|
@ -417,7 +411,6 @@
|
|||
"LabelSkipIfAudioTrackPresent": "اگر صدای پیشفرض با زبان دانلودی یکسان است پرش کن",
|
||||
"LabelSkipForwardLength": "میزان رفتن به جلو:",
|
||||
"LabelSkipBackLength": "میزان بازگشت به عقب:",
|
||||
"LabelSkin": "پوسته:",
|
||||
"LabelSize": "سایز:",
|
||||
"LabelSimultaneousConnectionLimit": "محدودیت پخش همزمان:",
|
||||
"LabelServerName": "نام سرور:",
|
||||
|
@ -545,7 +538,6 @@
|
|||
"Watched": "مشاهده شده",
|
||||
"ViewPlaybackInfo": "مشاهده اطلاعات پخش",
|
||||
"ViewAlbum": "مشاهده آلبوم",
|
||||
"VideoRange": "محدوده ویدیو",
|
||||
"Vertical": "عمودی",
|
||||
"ValueVideoCodec": "کدک ویدیو: {0}",
|
||||
"ValueTimeLimitSingleHour": "محدودیت زمانی: 1 ساعت",
|
||||
|
@ -566,7 +558,6 @@
|
|||
"ValueDiscNumber": "دیسک {0}",
|
||||
"LabelImportOnlyFavoriteChannels": "محدود کردن کانالهایی که به عنوان مورد علاقه انتخاب شدهاند",
|
||||
"LabelDateAdded": "تاریخ اضافه شده:",
|
||||
"LabelDashboardTheme": "تم داشبورد سرور:",
|
||||
"LabelCustomRating": "امتیازدهی سفارشی:",
|
||||
"LabelCustomDeviceDisplayName": "نام نمایشی:",
|
||||
"LabelCustomCssHelp": "ظاهر سفارشی مورد نظر خود را در رابط وب اعمال کنید.",
|
||||
|
@ -592,7 +583,6 @@
|
|||
"LabelSportsCategories": "دستهبندیهای ورزشی:",
|
||||
"LabelSpecialSeasonsDisplayName": "نام نمایشی فصل مخصوص:",
|
||||
"LabelSource": "منبع:",
|
||||
"LabelSoundEffects": "جلوههای صدا:",
|
||||
"LabelSortTitle": "مرتبسازی عنوان:",
|
||||
"LabelSortOrder": "ترتیب مرتبسازی:",
|
||||
"LabelSortBy": "مرتبسازی بر اساس:",
|
||||
|
@ -694,10 +684,8 @@
|
|||
"MessageNoAvailablePlugins": "افزونهای موجود نیست.",
|
||||
"MessageItemsAdded": "آیتمها اضافه شدند.",
|
||||
"MessageItemSaved": "آیتم ذخیره شد.",
|
||||
"MessageUnauthorizedUser": "در حال حاضر مجاز به دسترسی به سرور نیستید. لطفا برای اطلاعات بیشتر با مدیر سرور خود تماس بگیرید.",
|
||||
"MessageInvalidUser": "نام کاربری یا گذرواژه نامعتبر است. لطفا دوباره تلاش کنید.",
|
||||
"MessageInvalidForgotPasswordPin": "کد پین نامعتبر یا منقضی شده وارد شد. لطفا دوباره تلاش کنید.",
|
||||
"MessageInstallPluginFromApp": "این افزونه باید از داخل برنامهای که قصد استفاده از آن را دارید نصب شود.",
|
||||
"HeaderResetPassword": "بازنشانی گذرواژه",
|
||||
"PasswordResetConfirmation": "آیا واقعا تمایل به بازنشانی گذرواژه دارید؟",
|
||||
"PasswordResetComplete": "گذرواژه بازنشانی شد.",
|
||||
|
@ -706,7 +694,6 @@
|
|||
"PackageInstallCompleted": "{0} (نسخه {1})نصب به پایان رسید.",
|
||||
"PackageInstallCancelled": "{0} ( نسخه {1})نصب لغو شد.",
|
||||
"Overview": "بررسی اجمالی",
|
||||
"OtherArtist": "هنرمند دیگر",
|
||||
"OriginalAirDateValue": "زمان پخش اصلی : {0}",
|
||||
"OptionWeekly": "هفتگی",
|
||||
"OptionWeekends": "آخر هفته ها",
|
||||
|
@ -754,7 +741,6 @@
|
|||
"RecentlyWatched": "اخیرا مشاهده شده",
|
||||
"Rate": "ارزیابی کن",
|
||||
"Raised": "مطرح شده",
|
||||
"QueueAllFromHere": "همه را از اینجا در صف قرار بده",
|
||||
"Quality": "کیفیت",
|
||||
"Programs": "برنامه ها",
|
||||
"ProductionLocations": "محل تولید",
|
||||
|
@ -794,7 +780,6 @@
|
|||
"LabelSeasonNumber": "شماره فصل:",
|
||||
"ConfigureDateAdded": "تنظیم کنید که چگونه تاریخ اضافه شده در داشبورد سرور Jellyfin تحت تنظیمات کتابخانه تعیین میشود",
|
||||
"CinemaModeConfigurationHelp": "حالت سینما تجربه تئاتر گونه را مستقیم به اتاق نشیمن شما میآورد با قابلیت پخش تریلرها و پیش نمایشها قبل از سایر ویژگیهای اصلی.",
|
||||
"LaunchWebAppOnStartup": "نمای وب هنگامی که سرور آغاز به کار میکند باز بشود",
|
||||
"NoSubtitles": "خالی",
|
||||
"NoSubtitleSearchResultsFound": "نتیجهای یافت نشد.",
|
||||
"MessageNoPluginConfiguration": "این افزونه هیچ تنظیماتی برای پیکربندی ندارد.",
|
||||
|
@ -813,7 +798,6 @@
|
|||
"MusicArtist": "هنرمند موسیقی",
|
||||
"MusicAlbum": "آلبوم موسیقی",
|
||||
"Movie": "فیلم",
|
||||
"AddItemToCollectionHelp": "افزودن موارد به مجموعه ها با جستجوی آنها و استفاده از منوهای راست کلیک یا ضربه بزنید تا آنها را به مجموعه اضافه کنید.",
|
||||
"AllowFfmpegThrottlingHelp": "هنگامی که یک transcode یا remux به اندازه کافی پیش از موقعیت پخش فعلی می شود ، روند را متوقف می کند تا منابع کمتری مصرف کند. این بیشتر مفید است در هنگام تماشای بدون به دنبال اغلب. اگر مسائل مربوط به پخش را تجربه کنید ، این را خاموش کنید.",
|
||||
"DefaultSubtitlesHelp": "زیرنویس ها بر اساس پرچم های پیش فرض و اجباری در ابرداده تعبیه شده بارگذاری می شوند. تنظیمات زبان در نظر گرفته می شوند زمانی که گزینه های متعدد در دسترس هستند.",
|
||||
"DeinterlaceMethodHelp": "روش deinterlacing برای استفاده از زمانی که transcoding محتوای هم آمیختن را انتخاب کنید.",
|
||||
|
@ -934,7 +918,6 @@
|
|||
"RefreshMetadata": "Refresh metadata",
|
||||
"RefreshQueued": "Refresh queued.",
|
||||
"ReleaseDate": "Release date",
|
||||
"ReleaseGroup": "Release Group",
|
||||
"RememberMe": "Remember Me",
|
||||
"RemoveFromCollection": "Remove from collection",
|
||||
"RemoveFromPlaylist": "Remove from playlist",
|
||||
|
@ -1139,8 +1122,6 @@
|
|||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAll": "All",
|
||||
"LabelAllowHWTranscoding": "Allow hardware transcoding",
|
||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods when no users are active.",
|
||||
"LabelAllowedRemoteAddresses": "Remote IP address filter:",
|
||||
"LabelAllowedRemoteAddressesMode": "Remote IP address filter mode:",
|
||||
"LabelAppName": "App name",
|
||||
|
@ -1199,7 +1180,6 @@
|
|||
"LabelName": "Name:",
|
||||
"LabelChromecastVersion": "Chromecast Version",
|
||||
"LabelStable": "Stable",
|
||||
"LabelNightly": "Nightly",
|
||||
"LabelNewName": "New name:",
|
||||
"LabelNewsCategories": "News categories:",
|
||||
"LabelNotificationEnabled": "Enable this notification",
|
||||
|
@ -1270,7 +1250,6 @@
|
|||
"HeaderAppearsOn": "Appears On",
|
||||
"HeaderAudioBooks": "Audio Books",
|
||||
"HeaderAudioSettings": "Audio Settings",
|
||||
"HeaderAutomaticUpdates": "Automatic Updates",
|
||||
"HeaderBranding": "Branding",
|
||||
"HeaderConfigureRemoteAccess": "Configure Remote Access",
|
||||
"HeaderConfirmPluginInstallation": "Confirm Plugin Installation",
|
||||
|
@ -1344,11 +1323,9 @@
|
|||
"LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.",
|
||||
"LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.",
|
||||
"LanNetworksHelp": "Comma separated list of IP addresses or IP/netmask entries for networks that will be considered on local network when enforcing bandwidth restrictions. If set, all other IP addresses will be considered to be on the external network and will be subject to the external bandwidth restrictions. If left blank, only the server's subnet is considered to be on the local network.",
|
||||
"LaunchWebAppOnStartupHelp": "Open the web client in your default web browser when the server initially starts. This will not occur when using the restart server function.",
|
||||
"LearnHowYouCanContribute": "Learn how you can contribute.",
|
||||
"LeaveBlankToNotSetAPassword": "You can leave this field blank to set no password.",
|
||||
"Like": "Like",
|
||||
"LinksValue": "Links: {0}",
|
||||
"List": "List",
|
||||
"Live": "Live",
|
||||
"LiveBroadcasts": "Live broadcasts",
|
||||
|
@ -1382,7 +1359,6 @@
|
|||
"MediaInfoSampleRate": "Sample rate",
|
||||
"MediaInfoSize": "Size",
|
||||
"MediaInfoTimestamp": "Timestamp",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Data",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Embedded Image",
|
||||
|
@ -1440,7 +1416,6 @@
|
|||
"ReplaceExistingImages": "Replace existing images",
|
||||
"ResumeAt": "Resume from {0}",
|
||||
"Rewind": "Rewind",
|
||||
"RunAtStartup": "Run at startup",
|
||||
"Runtime": "Runtime",
|
||||
"Saturday": "Saturday",
|
||||
"Save": "Save",
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
"LabelPrevious": "Edellinen",
|
||||
"LabelSaveLocalMetadata": "Tallenna kuvamateriaali mediakansioihin",
|
||||
"LabelSaveLocalMetadataHelp": "Kuvamateriaalin ja metadatan tallentaminen suoraan kansioihin missä niitä on helppo muuttaa.",
|
||||
"LabelYourFirstName": "Etunimesi:",
|
||||
"LabelYoureDone": "Valmista!",
|
||||
"LibraryAccessHelp": "Valitse kirjastot, jotka haluat jakaa tämän käyttäjän kanssa. Järjestelmänvalvoja pystyy muokkaamaan kaikkia kansioita käyttäen metadatan hallintatyökalua.",
|
||||
"MaxParentalRatingHelp": "Suuremman luokituksen sisältö piilotetaan käyttäjältä.",
|
||||
|
@ -67,7 +66,6 @@
|
|||
"AllLibraries": "Kaikki kirjastot",
|
||||
"AllowOnTheFlySubtitleExtraction": "Salli tekstitysten purkaminen lennossa",
|
||||
"AccessRestrictedTryAgainLater": "Pääsy on toistaiseksi estetty. Yritä myöhemmin uudelleen.",
|
||||
"AddItemToCollectionHelp": "Lisää nimikkeitä etsimällä niitä ja käyttämällä hiiren oikeaa nappia tai valikkoa lisätäksesi ne kokoelmaan.",
|
||||
"Aired": "Esityspäivä",
|
||||
"AllowHWTranscodingHelp": "Salli virittimen muuntaa bittivirtaa lennossa. Tämä voi vähentää muunnoksen tarvetta Jellyfin-palvelimella.",
|
||||
"AllowMediaConversion": "Salli median muunto",
|
||||
|
@ -90,7 +88,6 @@
|
|||
"Audio": "Ääni",
|
||||
"AuthProviderHelp": "Valitse todentamispalvelu, jota käytetään tämän käyttäjän salasanan todentamisessa.",
|
||||
"Auto": "Auto",
|
||||
"AutoBasedOnLanguageSetting": "Automaattinen (perustuu kieliasetukseen)",
|
||||
"Backdrop": "Tausta",
|
||||
"Backdrops": "Taustat",
|
||||
"Banner": "Lippu",
|
||||
|
@ -129,7 +126,6 @@
|
|||
"ButtonHelp": "Apua",
|
||||
"ButtonHome": "Koti",
|
||||
"ButtonInfo": "Tiedot",
|
||||
"ButtonLearnMore": "Lue lisää",
|
||||
"ButtonLibraryAccess": "Kiraston pääsy",
|
||||
"ButtonManualLogin": "Manuaalinen kirjautuminen",
|
||||
"ButtonMore": "Lisää",
|
||||
|
@ -173,7 +169,6 @@
|
|||
"ButtonTrailer": "Traileri",
|
||||
"ButtonUninstall": "Poista asennus",
|
||||
"ButtonUp": "Ylös",
|
||||
"ButtonViewWebsite": "Näytä nettisivusto",
|
||||
"ButtonWebsite": "Nettisivusto",
|
||||
"CancelRecording": "Peruuta tallennus",
|
||||
"Categories": "Kategoriat",
|
||||
|
@ -282,7 +277,6 @@
|
|||
"EnableBackdropsHelp": "Näytä taustat tietyillä sivuilla selatessasi kirjastoa.",
|
||||
"EnableExternalVideoPlayersHelp": "Videota soitettaessa näytetään erillinen valikko.",
|
||||
"Depressed": "Painettu",
|
||||
"CopyStreamURLError": "Osoitteen kopioidessa tapahtui virhe.",
|
||||
"ButtonSplit": "jaa",
|
||||
"AskAdminToCreateLibrary": "Pyydä järjestelmän ylläpitäjää luomaan kirjasto.",
|
||||
"EnableStreamLooping": "Looppaa suoralähetykset",
|
||||
|
@ -384,7 +378,6 @@
|
|||
"MessagePluginConfigurationRequiresLocalAccess": "Kirjaudu suoraan paikalliselle palvelimellesi muokataksesi tätä liitännäistä.",
|
||||
"MessagePleaseEnsureInternetMetadata": "Varmista, että metadatan lataus on käytössä.",
|
||||
"MessageNoServersAvailable": "Automaattisen palvelintunnistuksen avulla ei löydy palvelimia.",
|
||||
"MessageUnauthorizedUser": "Sinulla ei ole lupaa käyttää palvelinta tällä hetkellä. Ota yhteyttä palvelimen järjestelmänvalvojaan saadaksesi lisätietoja.",
|
||||
"MessageInvalidForgotPasswordPin": "PIN-koodi on kelpaa tai vanhentunut. Yritä uudelleen.",
|
||||
"MessageImageTypeNotSelected": "Valitse kuvatyyppi pudotusvalikosta.",
|
||||
"MessageImageFileTypeAllowed": "Vain JPEG ja PNG tiedostomuotoja tuetaan.",
|
||||
|
@ -425,8 +418,6 @@
|
|||
"LabelAppName": "Sovelluksen nimi",
|
||||
"LabelAllowedRemoteAddressesMode": "Etä-IP-osoitesuodattimen tila:",
|
||||
"LabelAllowedRemoteAddresses": "Etä-IP-osoitesuodatin:",
|
||||
"LabelAllowServerAutoRestartHelp": "Palvelin käynnistyy uudelleen vain hiljaisina aikoina, kun yksikään käyttäjä ei ole aktiivinen.",
|
||||
"LabelAllowServerAutoRestart": "Salli palvelimen automaattinen uudelleenkäynnistys päivitysten asentamiseksi",
|
||||
"LabelAllowHWTranscoding": "Salli laitteistolla transkoodaus",
|
||||
"LabelAlbumArtMaxWidth": "Albumin kuvan maksimileveys:",
|
||||
"LabelAlbumArtMaxHeight": "Albumin kuvan maksimikorkeus:",
|
||||
|
@ -551,7 +542,6 @@
|
|||
"MediaInfoStreamTypeSubtitle": "Tekstitys",
|
||||
"MediaInfoStreamTypeData": "Data",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoSoftware": "Ohjelmisto",
|
||||
"MediaInfoTimestamp": "Aikaleima",
|
||||
"MediaInfoResolution": "Resoluutio",
|
||||
"MediaInfoSize": "Koko",
|
||||
|
@ -575,7 +565,6 @@
|
|||
"LiveBroadcasts": "Suorat lähetykset",
|
||||
"Live": "Suora",
|
||||
"List": "Lista",
|
||||
"LinksValue": "Linkkejä: {0}",
|
||||
"LearnHowYouCanContribute": "Katso, miten voit auttaa.",
|
||||
"Large": "Suuri",
|
||||
"LabelffmpegPath": "FFmpeg polku:",
|
||||
|
@ -693,7 +682,6 @@
|
|||
"TabRecordings": "Tallennukset",
|
||||
"TabPlugins": "Liitännäiset",
|
||||
"TabPlaylists": "Soittolistat",
|
||||
"TabPlaylist": "Soittolista",
|
||||
"TabPlayback": "Toistaminen",
|
||||
"TabNfoSettings": "NFO-asetukset",
|
||||
"TabNetworks": "Verkot",
|
||||
|
@ -952,7 +940,6 @@
|
|||
"GroupBySeries": "Ryhmitä sarjan perusteella",
|
||||
"Fullscreen": "Kokonäyttötila",
|
||||
"HeaderBooks": "Kirjat",
|
||||
"HeaderAutomaticUpdates": "Automaattiset päivitykset",
|
||||
"HeaderAudioBooks": "Äänikirjat",
|
||||
"HeaderApiKeys": "API-avaimet",
|
||||
"HeaderApiKey": "API-avain",
|
||||
|
@ -1001,7 +988,6 @@
|
|||
"LabelDeviceDescription": "Laitteen kuvaus",
|
||||
"LabelDefaultScreen": "Oletusnäyttö:",
|
||||
"LabelDefaultUser": "Oletuskäyttäjä:",
|
||||
"LabelDashboardTheme": "Palvelimen päänäkymän teema:",
|
||||
"LabelCustomCertificatePathHelp": "Polku PKCS # 12-tiedostoon, joka sisältää sertifikaatin ja yksityisen avaimen, jotta TLS-tuki voidaan sallia henkilökohtaiselle verkkotunnukselle.",
|
||||
"LabelCustomCertificatePath": "Mukautetun SSL-sertifikaatin polku:",
|
||||
"LabelContentType": "Sisältötyyppi:",
|
||||
|
@ -1155,7 +1141,6 @@
|
|||
"LabelTranscodingAudioCodec": "Audio codec:",
|
||||
"LabelSubtitleDownloaders": "Tekstitysten lataajat:",
|
||||
"LabelSpecialSeasonsDisplayName": "Erikoiskauden näyttönimi:",
|
||||
"LabelSoundEffects": "Ääniefektit:",
|
||||
"LabelSortTitle": "Lajitteluotsikko:",
|
||||
"LabelSkipIfAudioTrackPresent": "Ohita, jos oletusääniraita vastaa latauskieltä",
|
||||
"LabelSkipBackLength": "Taaksepäin hyppäämisen pituus:",
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
"LabelPlaylist": "Liste de lecture :",
|
||||
"LabelPrevious": "Précédent",
|
||||
"LabelYear": "Année :",
|
||||
"LabelYourFirstName": "Votre prénom :",
|
||||
"LabelYoureDone": "Vous avez terminé !",
|
||||
"Live": "En direct",
|
||||
"MessageItemsAdded": "Éléments ajoutés.",
|
||||
|
@ -80,7 +79,6 @@
|
|||
"Absolute": "Absolu",
|
||||
"AccessRestrictedTryAgainLater": "L'accès est actuellement restreint. Veuillez réessayer plus tard.",
|
||||
"Actor": "Acteur(trice)",
|
||||
"AddItemToCollectionHelp": "Ajoutez des éléments à des collections en les recherchant et en utilisant leurs menus contextuels (clic droit ou appuyez longtemps).",
|
||||
"AddToPlayQueue": "Ajouter à la file d'attente",
|
||||
"AddedOnValue": "Ajouté le {0}",
|
||||
"AdditionalNotificationServices": "Visitez le catalogue d'extensions pour installer des services de notifications supplémentaires.",
|
||||
|
@ -126,7 +124,6 @@
|
|||
"Ascending": "Croissant",
|
||||
"Audio": "Audio",
|
||||
"Auto": "Auto",
|
||||
"AutoBasedOnLanguageSetting": "Auto (basé sur le réglage de la langue)",
|
||||
"Backdrop": "Arrière-plan",
|
||||
"Backdrops": "Arrière-plans",
|
||||
"Banner": "Bannière",
|
||||
|
@ -168,7 +165,6 @@
|
|||
"ButtonHelp": "Aide",
|
||||
"ButtonHome": "Accueil",
|
||||
"ButtonInfo": "Informations",
|
||||
"ButtonLearnMore": "En savoir plus",
|
||||
"ButtonLibraryAccess": "Accès à la médiathèque",
|
||||
"ButtonManualLogin": "Connexion manuelle",
|
||||
"ButtonMore": "Plus",
|
||||
|
@ -192,7 +188,6 @@
|
|||
"DatePlayed": "Date écoutée",
|
||||
"DateAdded": "Date d'ajout",
|
||||
"CriticRating": "Évaluation critique",
|
||||
"CopyStreamURLError": "Une erreur est survenue en essayant de copier l'URL.",
|
||||
"CopyStreamURLSuccess": "L'URL a été copié avec succès.",
|
||||
"CopyStreamURL": "Copier l'URL du stream",
|
||||
"ContinueWatching": "Continuer à visionner",
|
||||
|
@ -209,7 +204,6 @@
|
|||
"CancelSeries": "Annuler la série",
|
||||
"CancelRecording": "Annuler l'enregistrement",
|
||||
"ButtonWebsite": "Site web",
|
||||
"ButtonViewWebsite": "Voir le site web",
|
||||
"ButtonUp": "Vers le haut",
|
||||
"ButtonUninstall": "Désinstaller",
|
||||
"ButtonTogglePlaylist": "Liste de lecture",
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"AccessRestrictedTryAgainLater": "L'accès est actuellement restreint. Veuillez réessayer plus tard.",
|
||||
"Actor": "Acteur(trice)",
|
||||
"Add": "Ajouter",
|
||||
"AddItemToCollectionHelp": "Ajoutez des éléments à des collections en les recherchant et en utilisant leurs menus contextuels (clic droit ou appui long) pour les ajouter à une collection.",
|
||||
"AddToCollection": "Ajouter à la collection",
|
||||
"AddToPlayQueue": "Ajouter à la file d'attente",
|
||||
"AddToPlaylist": "Ajouter à la liste de lecture",
|
||||
|
@ -36,7 +35,6 @@
|
|||
"Ascending": "Croissant",
|
||||
"AspectRatio": "Format d'image",
|
||||
"AttributeNew": "Nouveau",
|
||||
"AutoBasedOnLanguageSetting": "Auto (basé sur le réglage de la langue)",
|
||||
"Backdrop": "Arrière-plan",
|
||||
"Backdrops": "Arrière-plans",
|
||||
"Banner": "Bannière",
|
||||
|
@ -79,7 +77,6 @@
|
|||
"ButtonHelp": "Aide",
|
||||
"ButtonHome": "Accueil",
|
||||
"ButtonInfo": "Informations",
|
||||
"ButtonLearnMore": "En savoir plus",
|
||||
"ButtonLibraryAccess": "Accès à la médiathèque",
|
||||
"ButtonManualLogin": "Connexion manuelle",
|
||||
"ButtonMore": "Plus",
|
||||
|
@ -124,7 +121,6 @@
|
|||
"ButtonTrailer": "Bande-annonce",
|
||||
"ButtonUninstall": "Désinstaller",
|
||||
"ButtonUp": "Haut",
|
||||
"ButtonViewWebsite": "Voir le site",
|
||||
"ButtonWebsite": "Site Web",
|
||||
"CancelRecording": "Annuler l'enregistrement",
|
||||
"CancelSeries": "Annuler la série",
|
||||
|
@ -172,7 +168,7 @@
|
|||
"DeviceAccessHelp": "Ceci ne s'applique qu'aux appareils qui peuvent être identifiés de manière unique et n'empêchera pas l'accès par navigateur. Le filtrage de l'accès aux appareil par utilisateur empêchera l'utilisation de nouveaux appareils jusqu'à ce qu'ils soient approuvés ici.",
|
||||
"DirectPlaying": "Lecture directe",
|
||||
"DirectStreamHelp1": "Le média est compatible avec l'appareil en ce qui concerne la résolution et le type de média (H.264, AC3, etc), mais se trouve dans un conteneur de fichiers incompatible (mkv, avi, wmv, etc). La vidéo sera rempaquetée à la volée avant d'être diffusée à l'appareil.",
|
||||
"DirectStreamHelp2": "Le streaming en direct d'un fichier utilise très peu de puissance de traitement sans perte de qualité vidéo.",
|
||||
"DirectStreamHelp2": "Le streaming en direct utilise très peu de puissance de traitement avec une perte minime de qualité vidéo.",
|
||||
"DirectStreaming": "Streaming direct",
|
||||
"Director": "Réalisateur(trice)",
|
||||
"Directors": "Réalisateurs",
|
||||
|
@ -277,12 +273,11 @@
|
|||
"HeaderAllowMediaDeletionFrom": "Autoriser la suppression de médias à partir de",
|
||||
"HeaderApiKey": "Clé API",
|
||||
"HeaderApiKeys": "Clés API",
|
||||
"HeaderApiKeysHelp": "Les applications externes ont besoin d'une clé d'API pour communiquer avec le serveur Jellyfin. Les clés sont distribuées lors d'une connexion avec un compte Jellyfin, ou bien en accordant manuellement une clé à une application.",
|
||||
"HeaderApiKeysHelp": "Les applications externes ont besoin d'une clé d'API pour communiquer avec le serveur. Les clés sont distribuées lors d'une connexion avec un compte normal ou en accordant manuellement une clé à une application.",
|
||||
"HeaderApp": "Application",
|
||||
"HeaderAppearsOn": "Apparait dans",
|
||||
"HeaderAudioBooks": "Livres audios",
|
||||
"HeaderAudioSettings": "Réglages audio",
|
||||
"HeaderAutomaticUpdates": "Mises à jour automatiques",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquer les éléments avec des informations de classification inconnues ou n'en disposant pas :",
|
||||
"HeaderBooks": "Livres",
|
||||
"HeaderBranding": "Slogan",
|
||||
|
@ -397,7 +392,7 @@
|
|||
"HeaderPreferredMetadataLanguage": "Langue de métadonnées préférée",
|
||||
"HeaderProfile": "Profil",
|
||||
"HeaderProfileInformation": "Information de profil",
|
||||
"HeaderProfileServerSettingsHelp": "Ces valeurs contrôlent la façon dont le serveur Jellyfin se présentera aux appareils.",
|
||||
"HeaderProfileServerSettingsHelp": "Ces valeurs contrôlent la façon dont le serveur se présentera aux clients.",
|
||||
"HeaderRecentlyPlayed": "Lus récemment",
|
||||
"HeaderRecordingOptions": "Options d'enregistrement",
|
||||
"HeaderRecordingPostProcessing": "Traitement des enregistrements",
|
||||
|
@ -421,7 +416,7 @@
|
|||
"HeaderSelectServerCachePath": "Sélectionner le chemin d'accès du cache de serveur",
|
||||
"HeaderSelectServerCachePathHelp": "Parcourir ou saisir le chemin d'accès à utiliser pour les fichiers cache du serveur. Le dossier doit être accessible en écriture.",
|
||||
"HeaderSelectTranscodingPath": "Sélectionner le chemin d'accès du dossier temporaire de transcodage",
|
||||
"HeaderSelectTranscodingPathHelp": "Parcourir ou saisir le chemin d'accès à utiliser pour les fichiers de transcodage temporaires. Le dossier doit être accessible en écriture.",
|
||||
"HeaderSelectTranscodingPathHelp": "Parcourir ou saisir le chemin d'accès à utiliser pour les fichiers de transcodage. Le dossier doit être accessible en écriture.",
|
||||
"HeaderSendMessage": "Envoyer un message",
|
||||
"HeaderSeries": "Séries",
|
||||
"HeaderSeriesOptions": "Options de la série",
|
||||
|
@ -471,8 +466,8 @@
|
|||
"Home": "Accueil",
|
||||
"HttpsRequiresCert": "Pour activer les connexions sécurisées, vous devrez fournir un certificat SSL vérifié, comme ceux fournis par Let's Encrypt. Veuillez fournir un certificat ou désactiver les connexions sécurisées.",
|
||||
"Identify": "Identifier",
|
||||
"ImportFavoriteChannelsHelp": "Activez cette option pour n'importer que les chaînes ajoutées aux favoris sur le tuner.",
|
||||
"ImportMissingEpisodesHelp": "Les informations à propos des épisodes manquants seront importées dans votre base de donnée Jellyfin et affichées dans les saisons et séries. Cela peut accroître significativement la durée d'actualisation de la médiathèque.",
|
||||
"ImportFavoriteChannelsHelp": "Seules les chaînes ajoutées aux favoris sur le tuner seront importées.",
|
||||
"ImportMissingEpisodesHelp": "Les informations à propos des épisodes manquants seront importées dans votre base de données et affichées dans les saisons et séries. Cela peut accroître significativement la durée d'actualisation de la médiathèque.",
|
||||
"InstallingPackage": "Installation de {0} (version {1})",
|
||||
"InstantMix": "Mix instantané",
|
||||
"ItemCount": "{0} éléments",
|
||||
|
@ -498,21 +493,19 @@
|
|||
"LabelAlbumArtists": "Artistes de l'album :",
|
||||
"LabelAll": "Tout",
|
||||
"LabelAllowHWTranscoding": "Autoriser le transcodage matériel",
|
||||
"LabelAllowServerAutoRestart": "Autoriser le redémarrage automatique du serveur pour appliquer les mises à jour",
|
||||
"LabelAllowServerAutoRestartHelp": "Le serveur ne redémarrera que pendant les périodes d'inactivité quand aucun utilisateur n'est connecté.",
|
||||
"LabelAllowedRemoteAddresses": "Filtre d'adresse IP distante :",
|
||||
"LabelAllowedRemoteAddressesMode": "Type de filtre des adresses IP distantes :",
|
||||
"LabelAppName": "Nom de l'application",
|
||||
"LabelAppNameExample": "Exemple: Sickbeard, Sonarr",
|
||||
"LabelArtists": "Artistes :",
|
||||
"LabelArtistsHelp": "Séparer les différents éléments par ;",
|
||||
"LabelArtistsHelp": "Séparer les différents éléments par un point-virgule.",
|
||||
"LabelAudioLanguagePreference": "Langue audio préférée :",
|
||||
"LabelAutomaticallyRefreshInternetMetadataEvery": "Actualiser automatiquement les métadonnées depuis internet :",
|
||||
"LabelBindToLocalNetworkAddress": "Lier à l'adresse de réseau local :",
|
||||
"LabelBindToLocalNetworkAddressHelp": "Optionnel. Remplace l'adresse IP locale à laquelle se lie le serveur HTTP. Sans paramètre, le serveur va se lier à toutes les adresses disponibles. La modification de cette valeur nécessite le redémarrage du serveur Jellyfin.",
|
||||
"LabelBindToLocalNetworkAddressHelp": "Remplace l'adresse IP locale du serveur HTTP. Sans paramètre, le serveur va se lier à toutes les adresses disponibles. La modification de cette valeur nécessite le redémarrage du serveur Jellyfin.",
|
||||
"LabelBirthDate": "Date de naissance :",
|
||||
"LabelBirthYear": "Année de naissance :",
|
||||
"LabelBlastMessageInterval": "Intervalle des messages de présence (secondes)",
|
||||
"LabelBlastMessageInterval": "Intervalle des messages de présence",
|
||||
"LabelBlastMessageIntervalHelp": "Détermine la durée en secondes entre les messages de présence.",
|
||||
"LabelBlockContentWithTags": "Bloquer les éléments avec les étiquettes :",
|
||||
"LabelBurnSubtitles": "Graver les sous-titres :",
|
||||
|
@ -536,7 +529,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Nom d'affichage :",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Entrez un nom d'affichage personnalisé ou laissez vide pour utiliser le nom rapporté par l'appareil.",
|
||||
"LabelCustomRating": "Note personnalisée :",
|
||||
"LabelDashboardTheme": "Thème du tableau de bord du serveur :",
|
||||
"LabelDateAdded": "Date d'ajout :",
|
||||
"LabelDateAddedBehavior": "Choix de la date d'ajout pour le nouveau contenu :",
|
||||
"LabelDateAddedBehaviorHelp": "Si une métadonnée est présente, elle sera toujours utilisée avant ces options.",
|
||||
|
@ -569,7 +561,7 @@
|
|||
"LabelEnableAutomaticPortMapHelp": "Mapper automatiquement les ports publics vers des ports locaux via UPnP. Cela peut ne pas fonctionner avec certains modèles de routeurs. La modification de ce paramètre ne prendra effet qu'après redémarrage du serveur.",
|
||||
"LabelEnableBlastAliveMessages": "Diffuser des message de présence",
|
||||
"LabelEnableBlastAliveMessagesHelp": "Activer cette option si le serveur n'est pas détecté de manière fiable par les autres appareils UPnP sur votre réseau.",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Intervalle de découverte des clients (secondes)",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Intervalle de découverte des clients",
|
||||
"LabelEnableDlnaClientDiscoveryIntervalHelp": "Détermine la durée en secondes entre les recherches SSDP exécutées par Jellyfin.",
|
||||
"LabelEnableDlnaDebugLogging": "Activer le débogage DLNA dans le journal d'événements",
|
||||
"LabelEnableDlnaDebugLoggingHelp": "Génère de gros fichiers de journal d'événements et ne devrait être utilisé que pour des diagnostics d'erreur.",
|
||||
|
@ -579,7 +571,7 @@
|
|||
"LabelEnableDlnaServerHelp": "Autorise les appareils UPnP de votre réseau à parcourir et à lire le contenu.",
|
||||
"LabelEnableHardwareDecodingFor": "Activer le décodage matériel pour :",
|
||||
"LabelEnableRealtimeMonitor": "Activer la surveillance en temps réel",
|
||||
"LabelEnableRealtimeMonitorHelp": "Les modifications des fichiers seront traitées immédiatement, sur les systèmes de fichiers qui le permettent.",
|
||||
"LabelEnableRealtimeMonitorHelp": "Les modifications des fichiers seront traitées immédiatement sur les systèmes de fichiers qui le permettent.",
|
||||
"LabelEnableSingleImageInDidlLimit": "Limiter à une seule image intégrée",
|
||||
"LabelEnableSingleImageInDidlLimitHelp": "Quelques périphériques ne fourniront pas un rendu correct si plusieurs images sont intégrées dans Didl.",
|
||||
"LabelEndDate": "Date de fin :",
|
||||
|
@ -595,9 +587,9 @@
|
|||
"LabelForgotPasswordUsernameHelp": "Saisissez votre nom d'utilisateur, si vous vous en souvenez.",
|
||||
"LabelFormat": "Format :",
|
||||
"LabelFriendlyName": "Nom d'affichage :",
|
||||
"LabelServerNameHelp": "Ce nom sera utilisé pour identifier le serveur. La valeur par défaut est le nom d'ordinateur du serveur.",
|
||||
"LabelServerNameHelp": "Ce nom sera utilisé pour identifier le serveur. La valeur par défaut est le nom d'hôte du serveur.",
|
||||
"LabelGroupMoviesIntoCollections": "Grouper les films en collections",
|
||||
"LabelGroupMoviesIntoCollectionsHelp": "Dans l'affichage des listes de films, les films faisant partie d'une collection seront affichés comme un élément groupé.",
|
||||
"LabelGroupMoviesIntoCollectionsHelp": "Dans l'affichage des listes de films, les films d'une collection seront affichés comme un élément groupé.",
|
||||
"LabelH264Crf": "CRF d'encodage H264 :",
|
||||
"LabelEncoderPreset": "Profil d'encodage H264 :",
|
||||
"LabelHardwareAccelerationType": "Accélération matérielle :",
|
||||
|
@ -605,7 +597,7 @@
|
|||
"LabelHomeNetworkQuality": "Qualité du réseau local :",
|
||||
"LabelHomeScreenSectionValue": "Section {0} de l'accueil :",
|
||||
"LabelHttpsPort": "Numéro de port HTTPS local :",
|
||||
"LabelHttpsPortHelp": "Le port TCP que le serveur HTTPS de Jellyfin doit utiliser.",
|
||||
"LabelHttpsPortHelp": "Le numéro de port TCP pour le serveur HTTPS.",
|
||||
"LabelIconMaxHeight": "Hauteur maximum des icônes :",
|
||||
"LabelIconMaxHeightHelp": "Résolution maximum des icônes exposée par upnp:icon.",
|
||||
"LabelIconMaxWidth": "Largeur maximum des icônes :",
|
||||
|
@ -633,7 +625,7 @@
|
|||
"LabelLanguage": "Langue :",
|
||||
"LabelLineup": "Programmation :",
|
||||
"LabelLocalHttpServerPortNumber": "Numéro de port HTTP local :",
|
||||
"LabelLocalHttpServerPortNumberHelp": "Le port TCP que le serveur HTTP de Jellyfin doit utiliser.",
|
||||
"LabelLocalHttpServerPortNumberHelp": "Le numéro de port TCP pour le serveur HTTP.",
|
||||
"LabelLockItemToPreventChanges": "Verrouiller cet élément pour éviter de futures modifications",
|
||||
"LabelLoginDisclaimer": "Avertissement sur la page d'accueil :",
|
||||
"LabelLoginDisclaimerHelp": "Le slogan sera affiché en bas de la page de connexion.",
|
||||
|
@ -659,7 +651,7 @@
|
|||
"LabelMetadataReaders": "Lecteurs de métadonnées :",
|
||||
"LabelMetadataReadersHelp": "Classez vos sources locales de métadonnées préférées dans l'ordre de priorité. Le premier fichier trouvé sera lu.",
|
||||
"LabelMetadataSavers": "Enregistreurs de métadonnées :",
|
||||
"LabelMetadataSaversHelp": "Sélectionnez un format de fichier pour l'enregistrement des métadonnées.",
|
||||
"LabelMetadataSaversHelp": "Sélectionnez un format de fichier qui sera utilisé pour l'enregistrement des métadonnées.",
|
||||
"LabelMethod": "Méthode :",
|
||||
"LabelMinBackdropDownloadWidth": "Largeur minimum d'image d'arrière-plan à télécharger :",
|
||||
"LabelMinResumeDuration": "Temps de reprise minimum :",
|
||||
|
@ -675,7 +667,7 @@
|
|||
"LabelMovieCategories": "Catégories de films :",
|
||||
"LabelMoviePrefix": "Préfixe de film :",
|
||||
"LabelMoviePrefixHelp": "Si un préfixe est appliqué aux titres de film, précisez-le ici afin que le serveur puisse le gérer convenablement.",
|
||||
"LabelMovieRecordingPath": "Chemin d'enregistrement des films (optionnel) :",
|
||||
"LabelMovieRecordingPath": "Chemin d'enregistrement des films :",
|
||||
"LabelMusicStreamingTranscodingBitrate": "Débit du transcodage de la musique :",
|
||||
"LabelMusicStreamingTranscodingBitrateHelp": "Spécifiez le débit maximum pendant la diffusion de musique.",
|
||||
"LabelName": "Nom :",
|
||||
|
@ -688,7 +680,7 @@
|
|||
"LabelNumber": "Numéro :",
|
||||
"LabelNumberOfGuideDays": "Nombre de jours de données du guide à télécharger :",
|
||||
"LabelNumberOfGuideDaysHelp": "Télécharger plus de journées du guide permet de programmer des enregistrements plus longtemps à l'avance et de visualiser plus de contenus, mais prendra également plus de temps. Automatique permettra une sélection automatique basée sur le nombre de chaînes.",
|
||||
"LabelOptionalNetworkPath": "(Optionnel) Dossier réseau partagé :",
|
||||
"LabelOptionalNetworkPath": "Dossier réseau partagé :",
|
||||
"LabelOptionalNetworkPathHelp": "Si le dossier est partagé sur votre réseau, donner le chemin d'accès au dossier réseau peut permettre aux applications Jellyfin sur d'autres appareils d'avoir accès à ses fichiers directement. Par exemple, {0} ou {1}.",
|
||||
"LabelOriginalAspectRatio": "Ratio d'aspect original :",
|
||||
"LabelOriginalTitle": "Titre original :",
|
||||
|
@ -733,7 +725,7 @@
|
|||
"LabelReleaseDate": "Date de sortie :",
|
||||
"LabelRemoteClientBitrateLimit": "Limite de débit de streaming Internet (Mbps) :",
|
||||
"LabelRemoteClientBitrateLimitHelp": "Une limite de débit optionnelle par streaming pour les connexions hors du réseau local. Utile pour éviter que les appareils ne demandent un débit supérieur à ce que votre connexion internet peu fournir. Cela peut augmenter la charge du processeur de votre serveur pour transcoder les vidéos à la volée à un débit plus faible.",
|
||||
"LabelRuntimeMinutes": "Durée (minutes) :",
|
||||
"LabelRuntimeMinutes": "Durée :",
|
||||
"LabelSaveLocalMetadata": "Enregistrer les illustrations dans les dossiers des médias",
|
||||
"LabelSaveLocalMetadataHelp": "L'enregistrement des illustrations dans les dossiers des médias les placera à un endroit où elles seront facilement modifiables.",
|
||||
"LabelScheduledTaskLastRan": "Dernière exécution {0}, durée {1}.",
|
||||
|
@ -745,11 +737,10 @@
|
|||
"LabelSelectVersionToInstall": "Sélectionner la version à installer :",
|
||||
"LabelSendNotificationToUsers": "Envoyer la notification à :",
|
||||
"LabelSerialNumber": "Numéro de série",
|
||||
"LabelSeriesRecordingPath": "Chemin d'enregistrement des séries (optionnel) :",
|
||||
"LabelSeriesRecordingPath": "Chemin d'enregistrement des séries :",
|
||||
"LabelServerHost": "Nom d'hôte :",
|
||||
"LabelServerHostHelp": "192.168.1.1:8096 ou https://monserveur.com",
|
||||
"LabelSimultaneousConnectionLimit": "Limite de flux simultanée :",
|
||||
"LabelSkin": "Habillage :",
|
||||
"LabelSkipBackLength": "Durée des sauts en arrière :",
|
||||
"LabelSkipForwardLength": "Durée des sauts en avant :",
|
||||
"LabelSkipIfAudioTrackPresent": "Sauter si la piste audio correspond à la langue de téléchargement",
|
||||
|
@ -761,7 +752,6 @@
|
|||
"LabelSortBy": "Trier par :",
|
||||
"LabelSortOrder": "Ordre de tri :",
|
||||
"LabelSortTitle": "Titre de tri :",
|
||||
"LabelSoundEffects": "Effets sonores :",
|
||||
"LabelSource": "Source :",
|
||||
"LabelSpecialSeasonsDisplayName": "Nom d'affichage de la saison spécial :",
|
||||
"LabelSportsCategories": "Catégories des sports :",
|
||||
|
@ -815,18 +805,16 @@
|
|||
"LabelXDlnaDoc": "Doc X-DLNA :",
|
||||
"LabelXDlnaDocHelp": "Détermine le contenu de l'élément X_DLNADOC dans l'espace de nom urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYear": "Année :",
|
||||
"LabelYourFirstName": "Votre prénom :",
|
||||
"LabelYoureDone": "Vous avez terminé !",
|
||||
"LabelZipCode": "Code postal :",
|
||||
"LabelffmpegPath": "Chemin vers FFmpeg :",
|
||||
"LabelffmpegPathHelp": "Le chemin d'accès vers l'application FFmpeg, ou un dossier contenant FFmpeg.",
|
||||
"LabelffmpegPathHelp": "Le chemin d'accès vers l'application FFmpeg ou un dossier contenant FFmpeg.",
|
||||
"LanNetworksHelp": "Liste des adresses IP ou des entrées IP/masque de réseau séparées par des virgules pour les réseaux qui seront considérés comme locaux lors de l'application des restrictions de bande passante. Si elle est définie, toutes les autres adresses IP seront considérées sur le réseau externe et seront soumises aux restrictions de bande passante externe. Si elle est vide, seul le sous-réseau du serveur est considéré comme se trouvant sur le réseau local.",
|
||||
"Large": "Grand",
|
||||
"LatestFromLibrary": "{0}, ajouts récents",
|
||||
"LearnHowYouCanContribute": "Voir comment vous pouvez contribuer.",
|
||||
"LibraryAccessHelp": "Sélectionnez les médiathèques à partager avec cet utilisateur. Les administrateurs pourront modifier tous les dossiers en utilisant le gestionnaire de métadonnées.",
|
||||
"Like": "J'aime",
|
||||
"LinksValue": "Liens: {0}",
|
||||
"List": "Liste",
|
||||
"Live": "En direct",
|
||||
"LiveBroadcasts": "Diffusions en direct",
|
||||
|
@ -882,7 +870,6 @@
|
|||
"MessageFileReadError": "Une erreur est survenue lors de la lecture du fichier. Veuillez réessayer.",
|
||||
"MessageForgotPasswordFileCreated": "Le fichier suivant a été créé sur votre serveur et contient les instructions sur la procédure à suivre :",
|
||||
"MessageForgotPasswordInNetworkRequired": "Veuillez réessayer à partir de votre réseau local pour démarrer la procédure de réinitialisation du mot de passe.",
|
||||
"MessageInstallPluginFromApp": "Cette extension doit-être installée depuis l'application dans laquelle vous voulez l'utiliser.",
|
||||
"MessageInvalidForgotPasswordPin": "Le code PIN saisi est invalide ou a expiré. Veuillez réessayer.",
|
||||
"MessageInvalidUser": "Nom d'utilisateur ou mot de passe incorrect. Réessayez.",
|
||||
"MessageItemSaved": "Élément enregistré.",
|
||||
|
@ -954,7 +941,7 @@
|
|||
"OptionAllowLinkSharingHelp": "Seules les pages Web contenant des informations de médias sont partagés. Les fichiers multimédias ne sont jamais partagés publiquement. Les partages sont limités dans le temps et expirent après {0} jours.",
|
||||
"OptionAllowManageLiveTv": "Autoriser la gestion des enregistrements de TV en direct",
|
||||
"OptionAllowMediaPlayback": "Autoriser la lecture de média",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "Limiter l'accès au transcodage peut entraîner des échecs de lecture dans les applications Jellyfin en raison de formats de média non pris en charge.",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "Limiter l'accès au transcodage peut entraîner des échecs de lecture dans les clients en raison de formats de média non pris en charge.",
|
||||
"OptionAllowRemoteControlOthers": "Autoriser le contrôle à distance des autres utilisateurs",
|
||||
"OptionAllowRemoteSharedDevices": "Autoriser le contrôle à distance des appareils partagés",
|
||||
"OptionAllowRemoteSharedDevicesHelp": "Les appareils DLNA sont considérés comme partagés tant qu'un utilisateur ne commence pas à les contrôler.",
|
||||
|
@ -986,7 +973,7 @@
|
|||
"OptionDatePlayed": "Date de lecture",
|
||||
"OptionDescending": "Décroissant",
|
||||
"OptionDisableUser": "Désactiver cet utilisateur",
|
||||
"OptionDisableUserHelp": "Si désactivé, le serveur n'autorisera pas de connexion de cet utilisateur. Les connexions existantes seront interrompues.",
|
||||
"OptionDisableUserHelp": "Le serveur n'autorisera pas de connexion de cet utilisateur. Les connexions existantes seront interrompues.",
|
||||
"OptionDislikes": "Pas aimés",
|
||||
"OptionDisplayFolderView": "Afficher une vue de dossiers pour montrer les dossiers multimédia en intégralité",
|
||||
"OptionDisplayFolderViewHelp": "Afficher les dossier au côté de votre médiathèque. Cela peut être utile si vous souhaitez avoir une vue complète des dossiers.",
|
||||
|
@ -995,7 +982,7 @@
|
|||
"OptionDownloadBoxImage": "Boîtier",
|
||||
"OptionDownloadDiscImage": "Disque",
|
||||
"OptionDownloadImagesInAdvance": "Télécharger les images en avance",
|
||||
"OptionDownloadImagesInAdvanceHelp": "Par défaut, la plupart des images sont téléchargées seulement lorsqu'une application Jellyfin le demande. Sélectionnez cette option pour télécharger toutes les images à l'avance, lorsqu'un nouveau média est importé. Cela peut allonger significativement la durée d'actualisation de la médiathèque.",
|
||||
"OptionDownloadImagesInAdvanceHelp": "Par défaut, la plupart des images sont téléchargées seulement lorsqu'un client le demande. Sélectionnez cette option pour télécharger toutes les images à l'avance, lorsqu'un nouveau média est importé. Cela peut allonger significativement la durée d'actualisation de la médiathèque.",
|
||||
"OptionDownloadPrimaryImage": "Principal",
|
||||
"OptionDownloadThumbImage": "Vignette",
|
||||
"OptionDvd": "DVD",
|
||||
|
@ -1026,7 +1013,7 @@
|
|||
"OptionHlsSegmentedSubtitles": "Sous-titres segmentés HLS",
|
||||
"OptionHomeVideos": "Photos",
|
||||
"OptionIgnoreTranscodeByteRangeRequests": "Ignore les requêtes de transcodage de plage d'octets",
|
||||
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Si l'option est activée, ces requêtes seront honorées mais l'en-tête de plage d'octets sera ignoré.",
|
||||
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Ces requêtes seront honorées mais l'en-tête de plage d'octets sera ignoré.",
|
||||
"OptionImdbRating": "Note IMDb",
|
||||
"OptionLikes": "Aimés",
|
||||
"OptionMax": "Maximum",
|
||||
|
@ -1041,7 +1028,7 @@
|
|||
"OptionPlainStorageFolders": "Afficher tous les dossiers en tant que simples dossiers de stockage",
|
||||
"OptionPlainStorageFoldersHelp": "Tous les répertoires seront affichés dans le DIDL en tant que \"object.container.storageFolder\" au lieu de formats plus spécifiques comme, par exemple \"object.container.person.musicArtist\".",
|
||||
"OptionPlainVideoItems": "Afficher les vidéos en tant que simples éléments vidéos",
|
||||
"OptionPlainVideoItemsHelp": "Si activé, toutes les vidéos seront affichées dans le DIDL en tant que \"object.item.videoItem\" au lieu de formats plus spécifiques comme, par exemple \"object.item.videoItem.movie\".",
|
||||
"OptionPlainVideoItemsHelp": "Toutes les vidéos seront affichées dans le DIDL en tant que \"object.item.videoItem\" au lieu de formats plus spécifiques comme, par exemple \"object.item.videoItem.movie\".",
|
||||
"OptionPlayCount": "Nombre de lectures",
|
||||
"OptionPlayed": "Lu",
|
||||
"OptionPremiereDate": "Date de la première",
|
||||
|
@ -1113,7 +1100,6 @@
|
|||
"ProductionLocations": "Sites de production",
|
||||
"Programs": "Programmes",
|
||||
"Quality": "Qualité",
|
||||
"QueueAllFromHere": "Tout mettre en file d'attente à partir d'ici",
|
||||
"Raised": "Élevé",
|
||||
"Rate": "Débit",
|
||||
"RecentlyWatched": "Lu récemment",
|
||||
|
@ -1128,7 +1114,7 @@
|
|||
"RecordingScheduled": "Enregistrement planifié.",
|
||||
"Recordings": "Enregistrements",
|
||||
"Refresh": "Actualiser",
|
||||
"RefreshDialogHelp": "Les métadonnées sont actualisées en fonction des paramètres et des services Internet qui sont activés dans le tableau de bord du serveur Jellyfin.",
|
||||
"RefreshDialogHelp": "Les métadonnées sont actualisées en fonction des paramètres et des services Internet qui sont activés dans le tableau de bord.",
|
||||
"RefreshMetadata": "Actualiser les métadonnées",
|
||||
"RefreshQueued": "Actualisation mise en file d'attente.",
|
||||
"ReleaseDate": "Date de sortie",
|
||||
|
@ -1144,7 +1130,6 @@
|
|||
"ReplaceExistingImages": "Remplacer les images existantes",
|
||||
"ResumeAt": "Reprendre à {0}",
|
||||
"Rewind": "Rembobiner",
|
||||
"RunAtStartup": "Exécuter au démarrage",
|
||||
"Runtime": "Durée",
|
||||
"Saturday": "Samedi",
|
||||
"Save": "Sauvegarder",
|
||||
|
@ -1229,7 +1214,6 @@
|
|||
"TabParentalControl": "Contrôle Parental",
|
||||
"TabPassword": "Mot de passe",
|
||||
"TabPlayback": "Lecture",
|
||||
"TabPlaylist": "Liste de lecture",
|
||||
"TabPlaylists": "Listes de lecture",
|
||||
"TabProfile": "Profil",
|
||||
"TabProfiles": "Profils",
|
||||
|
@ -1294,7 +1278,6 @@
|
|||
"ValueTimeLimitSingleHour": "Limite de temps : 1 heure",
|
||||
"ValueVideoCodec": "Codec Vidéo : {0}",
|
||||
"Vertical": "Verticale",
|
||||
"VideoRange": "Gamme vidéo",
|
||||
"ViewAlbum": "Voir l'album",
|
||||
"ViewPlaybackInfo": "Voir les informations de lecture",
|
||||
"Watched": "Lu",
|
||||
|
@ -1380,19 +1363,16 @@
|
|||
"DashboardVersionNumber": "Version : {0}",
|
||||
"DashboardServerName": "Serveur : {0}",
|
||||
"LabelWeb": "Web :",
|
||||
"MediaInfoSoftware": "Logiciel",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Données",
|
||||
"MediaInfoStreamTypeSubtitle": "Sous-titres",
|
||||
"MediaInfoStreamTypeVideo": "Video",
|
||||
"AuthProviderHelp": "Sélectionner un fournisseur d'authentification pour authentifier le mot de passe de cet utilisateur.",
|
||||
"PasswordResetProviderHelp": "Choisissez un Fournisseur de réinitialisation de mot de passe à utiliser lorsqu'un utilisateur demande la réinitialisation de son mot de passe",
|
||||
"PasswordResetProviderHelp": "Choisissez un fournisseur de réinitialisation de mot de passe à utiliser lorsqu'un utilisateur demande la réinitialisation de son mot de passe.",
|
||||
"HeaderHome": "Accueil",
|
||||
"LabelUserLoginAttemptsBeforeLockout": "Tentatives de connexion échouées avant que l'utilisateur ne soit verrouillé :",
|
||||
"DashboardOperatingSystem": "Système d'Exploitation: {0}",
|
||||
"DashboardArchitecture": "Architecture : {0}",
|
||||
"LaunchWebAppOnStartup": "Démarrer l'interface web dans mon navigateur quand le serveur est démarré",
|
||||
"LaunchWebAppOnStartupHelp": "Ouvrir l'application dans votre navigateur internet quand le serveur est démarré pour la première fois. Cela ne se produira pas quand le serveur redémarre.",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Miniature",
|
||||
"MessageNoCollectionsAvailable": "Les collections vous permettent de profiter de groupes personnalisés de Films, Séries et d'Albums. Cliquer sur le bouton + pour commencer à créer des collections.",
|
||||
"MessageNoServersAvailable": "Aucun serveur n'a été trouvé en utilisant la recherche automatique de serveur.",
|
||||
|
@ -1450,7 +1430,6 @@
|
|||
"LabelPlayerDimensions": "Dimension du lecteur :",
|
||||
"LabelDroppedFrames": "Images perdues :",
|
||||
"LabelCorruptedFrames": "Images corrompues :",
|
||||
"CopyStreamURLError": "Une erreur est survenue lors de la copie de l'URL.",
|
||||
"AskAdminToCreateLibrary": "Demander à un administrateur de créer une médiathèque.",
|
||||
"AllowFfmpegThrottlingHelp": "Quand le transcodage ou le remultiplexage est suffisamment en avant de la position de lecture, le processus se mettra en pause afin d’économiser des ressources. Plus utile lors d’une lecture continue. À désactiver en cas de problèmes de lecture.",
|
||||
"AllowFfmpegThrottling": "Adapter la vitesse du transcodage",
|
||||
|
@ -1461,9 +1440,7 @@
|
|||
"ClientSettings": "Paramètres Client",
|
||||
"Track": "Piste",
|
||||
"Season": "Saison",
|
||||
"ReleaseGroup": "Groupe de Parution",
|
||||
"Person": "Personne",
|
||||
"OtherArtist": "Autre Artiste",
|
||||
"Movie": "Film",
|
||||
"Episode": "Épisode",
|
||||
"BoxSet": "Coffret",
|
||||
|
@ -1489,7 +1466,6 @@
|
|||
"LabelLibraryPageSize": "Taille de la page de la médiathèque :",
|
||||
"LabelLibraryPageSizeHelp": "Définit la quantité d'éléments à afficher sur une page de médiathèque. Définir à 0 afin de désactiver la pagination.",
|
||||
"UnsupportedPlayback": "Jellyfin ne peut pas décoder du contenu protégé par un système de gestion des droits numériques, mais une tentative de lecture sera effectuée sur tout le contenu, y compris les titres protégés. Certains fichiers peuvent apparaître complètement noir, du fait de protections ou de fonctionnalités non supportées, comme les titres interactifs.",
|
||||
"MessageUnauthorizedUser": "Vous n'êtes pas autorisé à accéder au serveur pour le moment. Veuillez contacter l'administrateur de votre serveur pour plus d'informations.",
|
||||
"ButtonTogglePlaylist": "Liste de lecture",
|
||||
"ButtonToggleContextMenu": "Plus",
|
||||
"Filter": "Filtre",
|
||||
|
@ -1497,7 +1473,7 @@
|
|||
"HeaderFavoritePlaylists": "Listes de lecture favorites",
|
||||
"TabDVR": "DVR",
|
||||
"LabelChromecastVersion": "Version de Chromecast",
|
||||
"LabelEnableHttpsHelp": "Autorise le serveur à écouter les requêtes HTTPS sur le port configuré. Un certificat valide doit être configuré pour permettre ce mode de fonctionnement.",
|
||||
"LabelEnableHttpsHelp": "Écouter les requêtes HTTPS sur le port configuré. Un certificat valide doit être fourni pour permettre ce mode de fonctionnement.",
|
||||
"LabelEnableHttps": "Activer HTTPS",
|
||||
"HeaderServerAddressSettings": "Paramètres adresses serveur",
|
||||
"HeaderRemoteAccessSettings": "Paramètres d'accès distant",
|
||||
|
@ -1507,7 +1483,6 @@
|
|||
"SaveChanges": "Enregistrer les modifications",
|
||||
"LabelRequireHttpsHelp": "Si activé, le serveur va automatiquement rediriger toutes les requêtes en HTTP vers HTTPS. Cette option n'a aucun effet si le serveur n'écoute pas HTTPS.",
|
||||
"LabelRequireHttps": "Nécessite HTTPS",
|
||||
"LabelNightly": "De nuit",
|
||||
"LabelStable": "Stable",
|
||||
"EnableDetailsBanner": "Bannière des détails",
|
||||
"EnableDetailsBannerHelp": "Affichez une image de bannière en haut de la page de détails de l'article.",
|
||||
|
@ -1543,7 +1518,7 @@
|
|||
"MessageSyncPlayErrorAccessingGroups": "Une erreur s'est produite pendant l'accès à la liste de groupes.",
|
||||
"ShowMore": "Voir plus",
|
||||
"ShowLess": "Voir moins",
|
||||
"EnableBlurHashHelp": "Les images qui sont encore en cours de chargement seront remplacées par une image générique floue",
|
||||
"EnableBlurHashHelp": "Les images qui sont encore en cours de chargement seront remplacées par une image générique floue.",
|
||||
"EnableBlurHash": "Utilise des images génériques floues à la place des images",
|
||||
"ButtonCast": "Diffuser",
|
||||
"ButtonSyncPlay": "SyncPlay",
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"FolderTypeTvShows": "TV",
|
||||
"Friday": "Friitig",
|
||||
"HeaderAddUser": "Erstell en User",
|
||||
"HeaderAutomaticUpdates": "Automatischi Updates",
|
||||
"HeaderDeviceAccess": "Grät Zuegriff",
|
||||
"HeaderEasyPinCode": "Eifache Pin Code",
|
||||
"HeaderFrequentlyPlayed": "Vell gspellt",
|
||||
|
@ -49,7 +48,6 @@
|
|||
"LabelSaveLocalMetadataHelp": "Wennd Bilder und Metadate direkt i d'Medieordner speicherisch, chasch sie eifach weder finde und au bearbeite.",
|
||||
"LabelSelectUsers": "Wähl User:",
|
||||
"LabelTimeLimitHours": "Ziitlimit (h):",
|
||||
"LabelYourFirstName": "Din Vorname:",
|
||||
"LabelYoureDone": "Du besch fertig!",
|
||||
"LibraryAccessHelp": "Wähl en Medieordner us, um de mit dem User z'teile. Administratore werded immer d'Möglichkeit ha alli Verzeichnis mitm Metadate Manager z'bearbeite.",
|
||||
"MaxParentalRatingHelp": "Date mit enere höhere Kindersicherig werded vo dem User versteckt.",
|
||||
|
@ -112,7 +110,6 @@
|
|||
"TabNetworks": "Studios",
|
||||
"TabNotifications": "Mitteilige",
|
||||
"TabPassword": "Passwort",
|
||||
"TabPlaylist": "Playliste",
|
||||
"TabProfile": "Profil",
|
||||
"TabProfiles": "Profil",
|
||||
"TabShows": "Serie",
|
||||
|
|
|
@ -88,7 +88,6 @@
|
|||
"HeaderAddToPlaylist": "הוסף לרשימת ניגון",
|
||||
"HeaderAddUser": "הוסף משתמש",
|
||||
"HeaderAdditionalParts": "חלקים נוספים",
|
||||
"HeaderAutomaticUpdates": "עידכונים אוטומטים",
|
||||
"HeaderCancelRecording": "ביטול הקלטה",
|
||||
"HeaderCancelSeries": "בטל סדרה",
|
||||
"HeaderCastCrew": "שחקנים וצוות",
|
||||
|
@ -151,8 +150,6 @@
|
|||
"LabelAirsBeforeSeason": "באוויר לפני העונה:",
|
||||
"LabelAlbum": "אלבום:",
|
||||
"LabelAlbumArtists": "אלבום אומנים:",
|
||||
"LabelAllowServerAutoRestart": "אפשר לשרת להתחיל אוטומטית כדי לאפשר את העידכונים",
|
||||
"LabelAllowServerAutoRestartHelp": "השרת יתחיל מחדש רק כשאר אין משתמשים פעילים",
|
||||
"LabelArtists": "אומנים:",
|
||||
"LabelArtistsHelp": "הפרד מרובים באמצעות;",
|
||||
"LabelAudioLanguagePreference": "שפת קול מועדפת:",
|
||||
|
@ -266,7 +263,6 @@
|
|||
"LabelUser": "משתמש:",
|
||||
"LabelUserLibrary": "ספריית משתמש:",
|
||||
"LabelYear": "שנה:",
|
||||
"LabelYourFirstName": "שמך הפרטי:",
|
||||
"LabelYoureDone": "סיימת!",
|
||||
"LibraryAccessHelp": "בחר את ספריות המדיה אשר ישותפו עם המשתמש. מנהלים יוכלו לערות את כל התיקיות באמצעות עורך המידע.",
|
||||
"Like": "אוהב",
|
||||
|
@ -393,7 +389,6 @@
|
|||
"Premieres": "בכורות",
|
||||
"Producer": "במאי",
|
||||
"ProductionLocations": "מיקומי ייצור",
|
||||
"QueueAllFromHere": "הוסף הכל מכאן לתור",
|
||||
"RecentlyWatched": "נצפה לאחרונה",
|
||||
"Record": "הקלט",
|
||||
"RecordSeries": "הקלט סדרה",
|
||||
|
@ -464,7 +459,6 @@
|
|||
"TabNetworks": "רשתות",
|
||||
"TabNotifications": "התראות",
|
||||
"TabPassword": "סיסמא",
|
||||
"TabPlaylist": "רשימת נגינה",
|
||||
"TabProfile": "פרופיל",
|
||||
"TabProfiles": "פרופילים",
|
||||
"TabRecordings": "הקלטות",
|
||||
|
@ -548,7 +542,6 @@
|
|||
"AllowOnTheFlySubtitleExtraction": "אפשר חילוץ כתוביות בזמן אמת",
|
||||
"AllowHWTranscodingHelp": "אפשר למלקט לקודד הזרמות בזמן אמת. זה עשוי לעזור בהפחתת הקידוד שנעשה ע\"י השרת.",
|
||||
"AllComplexFormats": "כל הפורמטים המורכבים (ASS, SSA, VOBSUB, PGS, SUB/IDX)",
|
||||
"AddItemToCollectionHelp": "הוסף חפצים לאוסף על ידי חיפושם ושימוש בתפריט הלחצן הימני או לחצן התפריט כדי להוסיפם לאוסף.",
|
||||
"Songs": "שירים",
|
||||
"Shows": "סדרות",
|
||||
"DownloadsValue": "{0} הורדות",
|
||||
|
@ -578,7 +571,6 @@
|
|||
"ButtonParentalControl": "בקרת הורים",
|
||||
"ButtonNetwork": "רשת",
|
||||
"ButtonMore": "עוד",
|
||||
"ButtonLearnMore": "למד עוד",
|
||||
"ButtonInfo": "מידע",
|
||||
"ButtonHome": "בית",
|
||||
"ButtonHelp": "עזרה",
|
||||
|
@ -695,13 +687,11 @@
|
|||
"DirectPlaying": "ניגון ישיר",
|
||||
"DetectingDevices": "מזהה מכשירים",
|
||||
"DefaultMetadataLangaugeDescription": "אלו הגדרות ברירת המחדל שלך וניתן להתאים אותן לכל ספרייה בנפרד.",
|
||||
"CopyStreamURLError": "אירעה שגיאה במהלך העתקת הקישור.",
|
||||
"CopyStreamURLSuccess": "הקישור הועתק בהצלחה.",
|
||||
"CopyStreamURL": "העתק קישור זרם",
|
||||
"Connect": "התחבר",
|
||||
"ConfirmEndPlayerSession": "האם לכבות את Jellyfin על {0}?",
|
||||
"CommunityRating": "דירוג קהילה",
|
||||
"ButtonViewWebsite": "צפה באתר האינטרנט",
|
||||
"ButtonWebsite": "אתר אינטרנט",
|
||||
"ButtonUp": "למעלה",
|
||||
"ButtonSubmit": "שלח",
|
||||
|
@ -726,7 +716,6 @@
|
|||
"ButtonDownload": "הורדה",
|
||||
"ButtonDown": "למטה",
|
||||
"ButtonChangeServer": "החלף שרת",
|
||||
"AutoBasedOnLanguageSetting": "אוטומטי (לפי הגדרות שפה)",
|
||||
"ButtonBack": "חזרה",
|
||||
"OptionBanner": "באנר",
|
||||
"ButtonAudioTracks": "רצועות שמע",
|
||||
|
@ -739,7 +728,6 @@
|
|||
"BoxRear": "מארז (מאחור)",
|
||||
"BookLibraryHelp": "ניתן להוסיף ספרים מוקלטים וספרים כתובים. עיינו {0}במדריך מתן שמות לספרים{1}.",
|
||||
"Desktop": "שולחן עבודה",
|
||||
"MessageUnauthorizedUser": "אין לך גישה לשרת ברגע זה. אנא צור קשר עם מנהל השרת למידע נוסף.",
|
||||
"MessageDeleteTaskTrigger": "האם אתה בטוח שברצונך למחוק את מפעיל המשימה הזה?",
|
||||
"LastSeen": "נראה לאחרונה ב-{0}",
|
||||
"PersonRole": "כ-{0}",
|
||||
|
@ -767,7 +755,6 @@
|
|||
"Raised": "מורם",
|
||||
"LabelSpecialSeasonsDisplayName": "שם תצוגת \"עונה מיוחדת\":",
|
||||
"LabelSource": "מקור:",
|
||||
"LabelSoundEffects": "אפקטי סאונד:",
|
||||
"ButtonTogglePlaylist": "רשימת ניגון",
|
||||
"ButtonToggleContextMenu": "עוד",
|
||||
"ButtonSyncPlay": "SyncPlay",
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
"LabelFinish": "समाप्त",
|
||||
"LabelNext": "अगला",
|
||||
"LabelPrevious": "पिछला",
|
||||
"LabelYourFirstName": "आपका प्रथम नामः",
|
||||
"LabelYoureDone": "आपने पूरा कर लिया है!",
|
||||
"MoreUsersCanBeAddedLater": "अधिक उपयोगकर्ताओं को बाद में डैशबोर्ड के अंतर्गत जोड़ा जा सकता है।",
|
||||
"TellUsAboutYourself": "हमें अपने बारे में बताएं",
|
||||
|
@ -43,7 +42,6 @@
|
|||
"ButtonMore": "अधिक",
|
||||
"ButtonManualLogin": "मैनुअल लॉगिन",
|
||||
"ButtonLibraryAccess": "पुस्तकालय का उपयोग",
|
||||
"ButtonLearnMore": "और अधिक जानें",
|
||||
"ButtonInfo": "जानकारी",
|
||||
"ButtonHome": "घर",
|
||||
"ButtonHelp": "मदद",
|
||||
|
@ -86,7 +84,6 @@
|
|||
"Banner": "झंडा",
|
||||
"Backdrops": "पृष्ठभूमि",
|
||||
"Backdrop": "पृष्ठभूमि",
|
||||
"AutoBasedOnLanguageSetting": "ऑटो (भाषा सेटिंग के आधार पर)",
|
||||
"Auto": "ऑटो",
|
||||
"AuthProviderHelp": "इस उपयोगकर्ता के पासवर्ड को प्रमाणित करने के लिए एक प्रमाणीकरण प्रदाता का उपयोग करें।",
|
||||
"Audio": "नया",
|
||||
|
@ -112,7 +109,6 @@
|
|||
"AlbumArtist": "चित्राधार कलाकार",
|
||||
"AllowOnTheFlySubtitleExtraction": "मक्खी पर उपशीर्षक निष्कर्षण की अनुमति दें",
|
||||
"Album": "एल्बम",
|
||||
"AddItemToCollectionHelp": "उनके लिए खोज करके संग्रह में आइटम जोड़ें और उन्हें संग्रह में जोड़ने के लिए उनके राइट-क्लिक या टैप मेनू का उपयोग करें।",
|
||||
"ButtonSyncPlay": "SyncPlay",
|
||||
"MessageBrowsePluginCatalog": "उपलब्ध प्लगिन्स देखने के लिए हमारे कैटलॉग को ब्राउज़ करें।",
|
||||
"Browse": "ब्राउज़",
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"Actor": "Glumac",
|
||||
"Add": "Dodaj",
|
||||
"AddItemToCollectionHelp": "Pretraživanjem stavaka i korištenjem desnog klika ili izbornika dodavanja u kolekciju možete ih dodati u kolekciju.",
|
||||
"AddToCollection": "Dodaj u kolekciju",
|
||||
"AddToPlaylist": "Dodaj u popis",
|
||||
"AdditionalNotificationServices": "Pretražite katalog dodataka kako bi instalirali dodatne servise za obavijesti.",
|
||||
|
@ -44,7 +43,6 @@
|
|||
"ButtonGuide": "Vodič",
|
||||
"ButtonHelp": "Pomoć",
|
||||
"ButtonHome": "Početna",
|
||||
"ButtonLearnMore": "Nauči još",
|
||||
"ButtonLibraryAccess": "Pristup biblioteci",
|
||||
"ButtonManualLogin": "Ručna prijava",
|
||||
"ButtonMore": "Više",
|
||||
|
@ -88,7 +86,6 @@
|
|||
"ButtonTrailer": "Kratki video",
|
||||
"ButtonUninstall": "Ukloni",
|
||||
"ButtonUp": "Gore",
|
||||
"ButtonViewWebsite": "Posjeti web stranice",
|
||||
"ButtonWebsite": "Web stranica",
|
||||
"CancelRecording": "Prekini snimanje",
|
||||
"CancelSeries": "Odustani od serije",
|
||||
|
@ -176,7 +173,6 @@
|
|||
"HeaderApiKeysHelp": "Vanjske aplikacije moraju imati API ključ kako bi komunicirale s Jellyfin Serverom. Ključevi se izdaju prijavom s Jellyfin računom ili ručnim odobravanjem zahtjeva ključa.",
|
||||
"HeaderApp": "Aplikacija",
|
||||
"HeaderAudioSettings": "Postavke zvuka",
|
||||
"HeaderAutomaticUpdates": "Automatske nadogradnje",
|
||||
"HeaderBooks": "Knjige",
|
||||
"HeaderBranding": "Brendiranje",
|
||||
"HeaderCancelRecording": "Prekini snimanje",
|
||||
|
@ -346,8 +342,6 @@
|
|||
"LabelAlbumArtists": "Izvođači albuma:",
|
||||
"LabelAll": "Sve",
|
||||
"LabelAllowHWTranscoding": "Dopusti hardversko konvertiranje",
|
||||
"LabelAllowServerAutoRestart": "Dopusti serveru da se automatski resetira kako bi proveo nadogradnje",
|
||||
"LabelAllowServerAutoRestartHelp": "Server će se resetirati samo dok je u statusu mirovanja kada nema aktivnih korisnika.",
|
||||
"LabelAppName": "Ime aplikacije",
|
||||
"LabelAppNameExample": "Primjer: Sickbeard, Sonarr",
|
||||
"LabelArtists": "Izvođači:",
|
||||
|
@ -596,7 +590,6 @@
|
|||
"LabelVersionInstalled": "{0} instaliran",
|
||||
"LabelXDlnaCapHelp": "Određuje sadržaj X_DLNACAP elementa u urn:shemas-dlna-org:device-1-0 namespace.",
|
||||
"LabelXDlnaDocHelp": "Određuje sadržaj X_DLNADOC elementa u urn:schemas-dlna-org:device-1-0 namespace.",
|
||||
"LabelYourFirstName": "Ime:",
|
||||
"LabelYoureDone": "Završeno!",
|
||||
"LabelZipCode": "Poštanski broj:",
|
||||
"LabelffmpegPath": "FFmpeg putanja:",
|
||||
|
@ -653,7 +646,6 @@
|
|||
"MessageFileReadError": "Prilikom učitavanja datoteke desila se greška. Pokušajte ponovno.",
|
||||
"MessageForgotPasswordFileCreated": "Sljedeća datoteka je stvorena na vašem poslužitelju i sadrži upute o tome kako postupiti:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Molim pokušajte ponovno unutar kućne mreže za pokretanje postupka za poništavanje zaporke.",
|
||||
"MessageInstallPluginFromApp": "Ovaj dodatak mora biti instaliran unutar aplikacije u kojoj ga namjeravate koristiti.",
|
||||
"MessageInvalidForgotPasswordPin": "Upisan je neispravan ili zastarjele pin. Molim, pokušajte ponovno.",
|
||||
"MessageInvalidUser": "Pogrešno korisničko ime ili lozinka. Molim, pokušajte ponovo.",
|
||||
"MessageItemSaved": "Stavka je snimljena.",
|
||||
|
@ -846,7 +838,6 @@
|
|||
"Premieres": "Premijere",
|
||||
"Producer": "Producent",
|
||||
"ProductionLocations": "Lokacije proizvodnje",
|
||||
"QueueAllFromHere": "Stavi u red čekanja sve odavde",
|
||||
"RecentlyWatched": "Nedavno pogledano",
|
||||
"RecommendationBecauseYouLike": "Zato što volite {0}",
|
||||
"RecommendationBecauseYouWatched": "Zato što ste gledali {0}",
|
||||
|
@ -934,7 +925,6 @@
|
|||
"TabParentalControl": "Roditeljska kontrola",
|
||||
"TabPassword": "Lozinka",
|
||||
"TabPlayback": "Reprodukcija",
|
||||
"TabPlaylist": "Lista izvođenja",
|
||||
"TabPlaylists": "Popisi",
|
||||
"TabPlugins": "Dodaci",
|
||||
"TabProfile": "Profil",
|
||||
|
@ -1048,7 +1038,6 @@
|
|||
"Album": "Album",
|
||||
"AddToPlayQueue": "Dodaj u red izvođenja",
|
||||
"Banner": "Zaglavlje",
|
||||
"AutoBasedOnLanguageSetting": "Automatski (prema jezičnim postavkama)",
|
||||
"AspectRatio": "Omjer",
|
||||
"Ascending": "Uzlazno",
|
||||
"Art": "Grafike",
|
||||
|
@ -1069,7 +1058,6 @@
|
|||
"Box": "Kutija",
|
||||
"AskAdminToCreateLibrary": "Traži administratora da kreira biblioteku.",
|
||||
"PictureInPicture": "Slika u slici",
|
||||
"OtherArtist": "Ostali izvođači",
|
||||
"OptionThumb": "Sličica",
|
||||
"OptionProtocolHttp": "HTTP",
|
||||
"OptionProfileVideo": "Video",
|
||||
|
@ -1109,7 +1097,6 @@
|
|||
"MediaInfoStreamTypeSubtitle": "Prijevod",
|
||||
"MediaInfoStreamTypeData": "Podaci",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoSoftware": "Softver",
|
||||
"Logo": "Logo",
|
||||
"List": "Lista",
|
||||
"LabelYear": "Godina:",
|
||||
|
@ -1133,7 +1120,6 @@
|
|||
"MillisecondsUnit": "ms",
|
||||
"LabelSubtitles": "Prijevodi",
|
||||
"LabelStatus": "Status:",
|
||||
"LabelSoundEffects": "Zvučni efekti:",
|
||||
"LabelSortOrder": "Redoslijed sortiranja:",
|
||||
"LabelSortBy": "Sortiranje po:",
|
||||
"LabelSize": "Veličina:",
|
||||
|
@ -1229,7 +1215,6 @@
|
|||
"DatePlayed": "Datum reprodukcije",
|
||||
"DateAdded": "Datum dodavanja",
|
||||
"CriticRating": "Rejting kritičara",
|
||||
"CopyStreamURLError": "Došlo je do greške prilikom kopiranja URLa.",
|
||||
"ConfirmEndPlayerSession": "Da li želite ugasiti Jellyfin na {0}?",
|
||||
"CommunityRating": "Rejting zajednice",
|
||||
"Browse": "Pretraži",
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
"Ascending": "Növekvő",
|
||||
"AttributeNew": "Új",
|
||||
"Audio": "Audió",
|
||||
"AutoBasedOnLanguageSetting": "Automatikus (a nyelvi beállítások alapján)",
|
||||
"BirthDateValue": "Született: {0}",
|
||||
"BirthPlaceValue": "Születési hely: {0}",
|
||||
"Books": "Könyvek",
|
||||
|
@ -131,7 +130,6 @@
|
|||
"HeaderAlbums": "Albumok",
|
||||
"HeaderAudioBooks": "Hangos könyvek",
|
||||
"HeaderAudioSettings": "Audió Beállítások",
|
||||
"HeaderAutomaticUpdates": "Automatikus frissitések",
|
||||
"HeaderCastAndCrew": "Szereplők és Stáb",
|
||||
"HeaderCastCrew": "Szereplők és Stáb",
|
||||
"HeaderChannels": "Csatornák",
|
||||
|
@ -228,8 +226,6 @@
|
|||
"Label3DFormat": "3D formátum:",
|
||||
"LabelAlbumArtists": "Album előadók:",
|
||||
"LabelAll": "Összes",
|
||||
"LabelAllowServerAutoRestart": "Automatikus újraindítás engedélyezése a szervernek a frissítések telepítéséhez",
|
||||
"LabelAllowServerAutoRestartHelp": "A szerver csak akkor indul újra ha nincs felhasználói tevékenység.",
|
||||
"LabelArtists": "Előadók:",
|
||||
"LabelAudio": "Audió",
|
||||
"LabelAudioLanguagePreference": "Audió nyelvének beállítása:",
|
||||
|
@ -244,7 +240,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Megjelenítendő név:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Adj meg egy egyedi nevet, vagy hagyd üresen a készülék által elküldött név használatához.",
|
||||
"LabelCustomRating": "Egyéni értékelés:",
|
||||
"LabelDashboardTheme": "Szerver vezérlőpult kinézete:",
|
||||
"LabelDateAdded": "Hozzáadva:",
|
||||
"LabelDateTimeLocale": "Dátum és idő formátum:",
|
||||
"LabelDay": "Nap:",
|
||||
|
@ -278,13 +273,13 @@
|
|||
"LabelMetadataPath": "Metaadat útvonal:",
|
||||
"LabelMetadataReaders": "Metaadat olvasók:",
|
||||
"LabelMetadataSavers": "Metaadat mentés:",
|
||||
"LabelMetadataSaversHelp": "A metaadat letöltésének formátuma.",
|
||||
"LabelMetadataSaversHelp": "A metaadatok mentési fájlformátuma.",
|
||||
"LabelName": "Név:",
|
||||
"LabelNewPassword": "Új jelszó:",
|
||||
"LabelNewPasswordConfirm": "Új jelszó megerősítése:",
|
||||
"LabelNext": "Következő",
|
||||
"LabelNotificationEnabled": "Értesítés engedélyezése",
|
||||
"LabelOptionalNetworkPath": "(Opcionális) Megosztott hálózati mappa:",
|
||||
"LabelOptionalNetworkPath": "Megosztott hálózati mappa:",
|
||||
"LabelOriginalAspectRatio": "Eredeti képarány:",
|
||||
"LabelOriginalTitle": "Eredeti cím:",
|
||||
"LabelOverview": "Tartalom:",
|
||||
|
@ -303,7 +298,7 @@
|
|||
"LabelProfileVideoCodecs": "Videó kódekek:",
|
||||
"LabelRefreshMode": "Frissítési mód:",
|
||||
"LabelReleaseDate": "Megjelenés dátuma:",
|
||||
"LabelRuntimeMinutes": "Játékidő (perc):",
|
||||
"LabelRuntimeMinutes": "Játékidő:",
|
||||
"LabelSeasonNumber": "Évad száma:",
|
||||
"LabelSelectFolderGroups": "Automatikusan csoportosítsa a következő mappák tartalmát olyan nézetekre, mint a Filmek, a Zene és a TV:",
|
||||
"LabelSelectFolderGroupsHelp": "A ki nem választott mappák önmagukban, saját nézetben jelennek meg.",
|
||||
|
@ -337,7 +332,6 @@
|
|||
"LabelVersionInstalled": "{0} telepítve",
|
||||
"LabelVideo": "Videó",
|
||||
"LabelYear": "Év:",
|
||||
"LabelYourFirstName": "Keresztneved:",
|
||||
"LabelYoureDone": "Készen vagy!",
|
||||
"LatestFromLibrary": "Nemrég hozzáadott {0}",
|
||||
"Like": "Tettszik",
|
||||
|
@ -459,7 +453,7 @@
|
|||
"RecommendationStarring": "Főszerepben: {0}",
|
||||
"Record": "Felvétel",
|
||||
"Refresh": "Frissítés",
|
||||
"RefreshDialogHelp": "A metaadatok frissítése a Jellyfin Server vezérlőpultjában engedélyezett beállítások és internetszolgáltatások alapján történik.",
|
||||
"RefreshDialogHelp": "A metaadatok frissítése a vezérlőpultban engedélyezett beállítások és internetszolgáltatások alapján történik.",
|
||||
"RefreshMetadata": "Metaadat frissítése",
|
||||
"ReleaseDate": "Megjelenés dátuma",
|
||||
"RememberMe": "Emlékezz rám",
|
||||
|
@ -529,7 +523,6 @@
|
|||
"TabParentalControl": "Szülői Felügyelet",
|
||||
"TabPassword": "Jelszó",
|
||||
"TabPlayback": "Lejátszás",
|
||||
"TabPlaylist": "Lejátszási lista",
|
||||
"TabPlaylists": "Lejátszási listák",
|
||||
"TabPlugins": "Bővítmények",
|
||||
"TabProfile": "Profil",
|
||||
|
@ -605,7 +598,6 @@
|
|||
"Blacklist": "Feketelista",
|
||||
"BookLibraryHelp": "Lehetőség van audió és hangoskönyvek visszajátszására. Nézd meg a {0} könyvelnevezési útmutatót {1}.",
|
||||
"MessageBrowsePluginCatalog": "Böngéssz a Bővítmény katalógusunkban a rendelkezésre álló bővítmények megtekintéséhez.",
|
||||
"AddItemToCollectionHelp": "Adj elemeket a gyűjteményekhez, ehhez keresed meg őket, majd kattints jobb egérgombbal, vagy kattints a menüre és add hozzá a gyűjteményhez.",
|
||||
"AllowedRemoteAddressesHelp": "Vesszővel válaszd el az IP-címek vagy IP / netmask címek listáját annak a hálózatnak amelyből távolról csatlakozhatnak. Ha üresen marad, az összes távoli cím megengedett.",
|
||||
"BoxRear": "Box (hátsó)",
|
||||
"ButtonArrowLeft": "Bal",
|
||||
|
@ -614,14 +606,12 @@
|
|||
"ButtonEditOtherUserPreferences": "A felhasználó profiljának, képének és személyes beállításainak szerkesztése.",
|
||||
"ButtonFullscreen": "Teljes képernyő",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonLearnMore": "Tudj meg többet",
|
||||
"ButtonNetwork": "Hálózat",
|
||||
"ButtonOk": "Ok",
|
||||
"ButtonRevoke": "Visszavon",
|
||||
"ButtonSelectView": "Válassz nézetet",
|
||||
"ButtonStart": "Start",
|
||||
"ButtonUp": "Fel",
|
||||
"ButtonViewWebsite": "Webhely megtekintése",
|
||||
"CancelRecording": "Felvétel törlése",
|
||||
"CancelSeries": "Sorozat törlése",
|
||||
"Categories": "Kategóriák",
|
||||
|
@ -655,7 +645,7 @@
|
|||
"DetectingDevices": "Eszközök észlelése",
|
||||
"DirectPlaying": "Közvetlen lejátszás",
|
||||
"DirectStreamHelp1": "Az adathordozó kompatibilis a készülékkel a felbontás és a médiatípus (H.264, AC3, stb.) tekintetében, de nem kompatibilis a fájltárolóban (.mkv, .avi, .wmv, stb.). A videófelvétel újra csomagolásra kerül, mielőtt azt a készülékre továbbítaná.",
|
||||
"DirectStreamHelp2": "A fájl közvetlen közvetítése (Direct Streaming) nagyon kevés feldolgozási erőforrást használ, ennek ellenére a videó nem veszít a minőségéből.",
|
||||
"DirectStreamHelp2": "A fájl közvetlen közvetítése (Direct Streaming) nagyon kevés feldolgozási erőforrást használ, és a videóban is minimális a minőségvesztés.",
|
||||
"DirectStreaming": "Közvetlen streaming",
|
||||
"Disabled": "Tiltva",
|
||||
"Disc": "Lemez",
|
||||
|
@ -747,7 +737,7 @@
|
|||
"HeaderInstantMix": "Azonnali keverés",
|
||||
"HeaderItems": "Elemek",
|
||||
"HeaderKeepRecording": "Felvétel készítése",
|
||||
"HeaderKodiMetadataHelp": "Az Nfo metaadatok engedélyezéséhez vagy letiltásához szerkeszd a könyvtárat a Jellyfin Médiatár beállításaiban és keresd meg a metaadat letöltő részt.",
|
||||
"HeaderKodiMetadataHelp": "Az Nfo metaadatok engedélyezéséhez vagy letiltásához szerkeszd a könyvtárat és keresd meg a metaadat letöltő részt.",
|
||||
"HeaderLatestMusic": "Legújabb Zene",
|
||||
"HeaderLatestRecordings": "Legújabb Felvételek",
|
||||
"HeaderLiveTV": "Élő TV",
|
||||
|
@ -763,7 +753,7 @@
|
|||
"HeaderPhotoAlbums": "Fényképalbumok",
|
||||
"HeaderPlaybackError": "Lejátszási hiba",
|
||||
"HeaderProfileInformation": "Profil információ",
|
||||
"HeaderProfileServerSettingsHelp": "Ezek az értékek szabályozzák, hogy a Jellyfin Szerver hogyan jelenik meg az eszközökön.",
|
||||
"HeaderProfileServerSettingsHelp": "Ezek az értékek szabályozzák, hogy a Szerver hogyan jelenik meg a kliensek számára.",
|
||||
"HeaderRecordingOptions": "Felvétel beállítások",
|
||||
"HeaderRecordingPostProcessing": "Felvétel utáni feldolgozás",
|
||||
"HeaderRemoveMediaFolder": "Média mappa eltávolítása",
|
||||
|
@ -777,7 +767,7 @@
|
|||
"HeaderSelectServerCachePath": "Válaszd ki a szerver gyorsítótár útvonalát",
|
||||
"HeaderSelectServerCachePathHelp": "Tallózd ki vagy írd be a szerver gyorsítótár fájljainak elérési útját. A mappának írhatónak kell lennie.",
|
||||
"HeaderSelectTranscodingPath": "Válaszd ki az Átkódolás ideiglenes útvonalát",
|
||||
"HeaderSelectTranscodingPathHelp": "Tallózd ki vagy add meg az átmeneti fájlok átkódolásához használt útvonalat. A mappának írhatónak kell lennie.",
|
||||
"HeaderSelectTranscodingPathHelp": "Tallózd ki vagy add meg a fájlok átkódolásához használt útvonalat. A mappának írhatónak kell lennie.",
|
||||
"HeaderSeriesOptions": "Sorozatok beállításai",
|
||||
"LabelTag": "Címke:",
|
||||
"MediaInfoCodecTag": "Kódek címke",
|
||||
|
@ -814,7 +804,7 @@
|
|||
"Hide": "Elrejtés",
|
||||
"Horizontal": "Vízszintes",
|
||||
"HttpsRequiresCert": "A biztonságos kapcsolatok engedélyezéséhez megbízható SSL-tanúsítványt kell használni, mint például a Let's Encrypt. Kérlek add meg a tanúsítványt, vagy tiltsd le a biztonságos kapcsolatokat.",
|
||||
"ImportMissingEpisodesHelp": "Ha engedélyezve van, a hiányzó epizódokra vonatkozó információk a Jellyfin adatbázisába kerülnek importálásra és megjelenítésre kerülnek az évadokban és sorozatokban. Ez jelentősen hosszabb könyvtárvizsgálatot okozhat.",
|
||||
"ImportMissingEpisodesHelp": "A hiányzó epizódokra vonatkozó információk a Jellyfin adatbázisába kerülnek importálásra és megjelenítésre kerülnek az évadokban és sorozatokban. Ez jelentősen hosszabb könyvtárvizsgálatot okozhat.",
|
||||
"InstantMix": "Azonnali keverés",
|
||||
"ItemCount": "{0} elem",
|
||||
"Items": "Elemek",
|
||||
|
@ -836,9 +826,9 @@
|
|||
"LabelAppNameExample": "Például: Sickbeard, Sonarr",
|
||||
"LabelAutomaticallyRefreshInternetMetadataEvery": "A metaadatok automatikus frissítése az internetről:",
|
||||
"LabelBindToLocalNetworkAddress": "Kötés a helyi hálózati címhez:",
|
||||
"LabelBindToLocalNetworkAddressHelp": "Opcionális. A helyi IP cím felülbírálása a http szerverhez való csatlakozáshoz. Ha üres marad, a szerver minden elérhető címhez kötődik. Az érték megváltoztatásához a Jellyfin Szerver újraindítása szükséges.",
|
||||
"LabelBindToLocalNetworkAddressHelp": "A helyi IP cím felülbírálása a HTTP szerverhez való csatlakozáshoz. Ha üres marad, a szerver minden elérhető címhez kötődik. Az érték megváltoztatásához a Jellyfin Szerver újraindítása szükséges.",
|
||||
"LabelBirthDate": "Születési dátum:",
|
||||
"LabelBlastMessageInterval": "Élő üzenetintervallum (másodperc)",
|
||||
"LabelBlastMessageInterval": "Élő üzenetintervallum",
|
||||
"LabelBlastMessageIntervalHelp": "Meghatározza másodpercben az üzenetek közötti időtartamot.",
|
||||
"LabelBlockContentWithTags": "Blokkolja a címkével ellátott elemeket:",
|
||||
"LabelCache": "Gyorsítótár:",
|
||||
|
@ -860,15 +850,15 @@
|
|||
"LabelDisplayLanguage": "Megjelenítési nyelv:",
|
||||
"LabelDisplayLanguageHelp": "A Jellyfin fordítása egy folyamatos projekt.",
|
||||
"LabelDisplayMode": "Megjelenítési mód:",
|
||||
"LabelArtistsHelp": "Ha több van használd a következő elválasztót ;",
|
||||
"LabelArtistsHelp": "Ha több előadót adsz meg, pontosvesszővel válaszd el őket.",
|
||||
"LabelEnableAutomaticPortMapHelp": "A szerver az UPnP segítségével a routeren megpróbálja automatikusan átirányítani a nyilvános portot a helyi portra. Előfordulhat, hogy egyes router modellek, vagy hálózati konfigurációk esetén ez nem működik. A módosítások újraindítás után lépnek életbe.",
|
||||
"LabelEnableBlastAliveMessagesHelp": "Engedélyezd ezt ha a szerver nem észleli megbízhatóan a hálózat más UPnP-eszközeit.",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Kliens felderítési intervallum (másodperc)",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Kliens felderítési intervallum",
|
||||
"LabelEnableDlnaClientDiscoveryIntervalHelp": "A Jellyfin által végrehajtott SSDP keresések időtartamát határozza meg másodpercben.",
|
||||
"LabelEnableDlnaDebugLogging": "DLNA hibakeresési naplózás engedélyezése",
|
||||
"LabelEnableDlnaDebugLoggingHelp": "Ez nagy naplófájlokat hoz létre és csak hibaelhárítás céljából használható.",
|
||||
"LabelEnableDlnaPlayTo": "DLNA Play To engedélyezése",
|
||||
"LabelEnableDlnaPlayToHelp": "Felismerheti a hálózaton belüli eszközöket, és lehetővé teszi azok távvezérlését.",
|
||||
"LabelEnableDlnaPlayToHelp": "Felismerheti a hálózaton belüli eszközöket, és lehetővé teszi azok vezérlését.",
|
||||
"LabelEnableDlnaServer": "DLNA szerver engedélyezése",
|
||||
"LabelEnableDlnaServerHelp": "Lehetővé teszi a hálózaton található UPnP eszközöknek, hogy böngésszenek és lejátszanak tartalmat.",
|
||||
"LabelEnableSingleImageInDidlLimit": "Korlátozás egyetlen beágyazott képre",
|
||||
|
@ -881,8 +871,8 @@
|
|||
"LabelFont": "Betűtípus:",
|
||||
"LabelFormat": "Formátum:",
|
||||
"LabelFriendlyName": "Könnyen megjegyezhető név:",
|
||||
"LabelServerNameHelp": "Ez a név kerül a Szerver azonosítására és alapértelmezetten a számítógép neve kerül felhasználásra.",
|
||||
"LabelGroupMoviesIntoCollectionsHelp": "A filmlisták megjelenítésekor a gyűjteményhez tartozó filmek egy csoportos elemként jelennek meg.",
|
||||
"LabelServerNameHelp": "Ez a név kerül a Szerver azonosítására és alapértelmezetten a hoszt neve kerül felhasználásra.",
|
||||
"LabelGroupMoviesIntoCollectionsHelp": "A filmlisták megjelenítésekor a gyűjteményben lévő filmek egy csoportos elemként jelennek meg.",
|
||||
"LabelH264Crf": "H264 enkóder CRF:",
|
||||
"LabelHomeNetworkQuality": "Otthoni hálózat minősége:",
|
||||
"LabelHttpsPort": "Helyi HTTPS port száma:",
|
||||
|
@ -921,7 +911,7 @@
|
|||
"LabelMovieCategories": "Film kategóriák:",
|
||||
"LabelMoviePrefix": "Film előtag:",
|
||||
"LabelMoviePrefixHelp": "Ha a filmcímekhez előtagot használsz, írd be ide, hogy a szerver megfelelően kezelje.",
|
||||
"LabelMovieRecordingPath": "Filmfelvételi útvonal (opcionális):",
|
||||
"LabelMovieRecordingPath": "Filmfelvételi útvonal:",
|
||||
"LabelMusicStreamingTranscodingBitrate": "Zene átkódolási bitráta:",
|
||||
"LabelNewName": "Új név:",
|
||||
"LabelNewsCategories": "Hírek kategóriái:",
|
||||
|
@ -949,7 +939,7 @@
|
|||
"LabelScheduledTaskLastRan": "Utoljára futtatva: {0}, Időtartam: {1}.",
|
||||
"LabelScreensaver": "Képernyővédő:",
|
||||
"LabelSerialNumber": "Sorozatszám",
|
||||
"LabelSeriesRecordingPath": "Sorozatfelvétel útvonala (opcionális):",
|
||||
"LabelSeriesRecordingPath": "Sorozatfelvétel útvonala:",
|
||||
"LabelServerHost": "Kiszolgáló:",
|
||||
"LabelVersion": "Verzió:",
|
||||
"MessageAreYouSureDeleteSubtitles": "Biztosan törölni szeretnéd ezt a feliratfájlt?",
|
||||
|
@ -962,11 +952,9 @@
|
|||
"LabelMinResumePercentage": "Minimum folytatás százalékban:",
|
||||
"LabelMinScreenshotDownloadWidth": "Minimális képernyőkép letöltési szélesség:",
|
||||
"LabelPreferredSubtitleLanguage": "Alapértelmezett feliratnyelv:",
|
||||
"LabelSkin": "Kinézet:",
|
||||
"LabelSkipBackLength": "Ugrás vissza hossza:",
|
||||
"LabelSkipForwardLength": "Ugrás előre hossza:",
|
||||
"LabelSkipIfGraphicalSubsPresent": "Kihagyás, ha a videó már tartalmaz beágyazott feliratokat",
|
||||
"LabelSoundEffects": "Hanghatások:",
|
||||
"LabelSportsCategories": "Sport kategóriák:",
|
||||
"LabelStartWhenPossible": "Elindul, amint lehetséges:",
|
||||
"LabelStopWhenPossible": "Leáll, amint lehetséges:",
|
||||
|
@ -988,12 +976,11 @@
|
|||
"LabelValue": "Érték:",
|
||||
"LabelZipCode": "Irányítószám:",
|
||||
"LabelffmpegPath": "FFmpeg útvonal:",
|
||||
"LabelffmpegPathHelp": "Az ffmpeg alkalmazásfájl elérési útja, vagy az őt tartalmazó mappa.",
|
||||
"LabelffmpegPathHelp": "Az ffmpeg alkalmazásfájl elérési útja vagy az őt tartalmazó mappa.",
|
||||
"Large": "Nagy",
|
||||
"LearnHowYouCanContribute": "Ismerd meg, hogyan járulhatsz hozzá.",
|
||||
"LeaveBlankToNotSetAPassword": "Ha nem szeretnél jelszót beállítani, hagyd ezt a mezőt üresen.",
|
||||
"LibraryAccessHelp": "Válaszd ki azokat a könyvtárakat amelyeket megosztani kívánsz ezzel a felhasználóval. A rendszergazdák a Metaadat Manager segítségével szerkeszthetik az összes mappát.",
|
||||
"LinksValue": "Linkek: {0}",
|
||||
"List": "Lista",
|
||||
"LiveTV": "Élő TV",
|
||||
"Logo": "Logo",
|
||||
|
@ -1024,7 +1011,6 @@
|
|||
"MessageEnablingOptionLongerScans": "Ennek az opciónak a bekapcsolása jelentősen hosszabb könyvtárbeolvasást eredményezhet.",
|
||||
"MessageImageFileTypeAllowed": "Csak JPEG és PNG fájlok támogatottak.",
|
||||
"MessageImageTypeNotSelected": "Kérlek válaszd ki a kép típusát a legördülő menüből.",
|
||||
"MessageInstallPluginFromApp": "Ezt a bővítményt azon alkalmazásból kell telepíteni, amelyben használni kívánod.",
|
||||
"MessageInvalidForgotPasswordPin": "Érvénytelen vagy lejárt PIN kódot írtál be. Kérlek próbáld újra.",
|
||||
"MessageInvalidUser": "Érvénytelen felhasználónév vagy jelszó. Kérlek próbáld újra.",
|
||||
"MessageItemSaved": "Elem mentve.",
|
||||
|
@ -1083,7 +1069,7 @@
|
|||
"OptionAllowContentDownloading": "Média letöltésének és szinkronizálásának engedélyezése",
|
||||
"OptionAllowLinkSharingHelp": "Csak a médiaadatokat tartalmazó weboldalak oszthatók meg. A médiafájlok soha nem oszthatók meg nyilvánosan. A megosztás időlimithez van kötve, és lejár {0} nap elteltével.",
|
||||
"OptionAllowManageLiveTv": "Élő TV felvételkezelés engedélyezése",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "Az átkódoláshoz való hozzáférés korlátozása lejátszási hibákat okozhat a Jellyfin alkalmazásokban a nem támogatott médiaformátumok miatt.",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "Az átkódoláshoz való hozzáférés korlátozása lejátszási hibákat okozhat a kliens alkalmazásokban a nem támogatott médiaformátumok miatt.",
|
||||
"OptionAllowRemoteSharedDevicesHelp": "A DLNA eszközöket mindaddig megosztottnak tekintjük, amíg a felhasználó meg nem kezdi azok irányítását.",
|
||||
"OptionAllowSyncTranscoding": "Engedélyezze a média letöltését és szinkronizálását, amely átkódolást igényel",
|
||||
"OptionAllowVideoPlaybackRemuxing": "Olyan videólejátszás engedélyezése, amely átalakítást igényel újrakódolás nélkül",
|
||||
|
@ -1092,7 +1078,7 @@
|
|||
"OptionAuto": "Auto",
|
||||
"OptionAutomatic": "Auto",
|
||||
"OptionAutomaticallyGroupSeries": "A több mappában elosztott sorozat automatikus összevonása",
|
||||
"OptionAutomaticallyGroupSeriesHelp": "Ha engedélyezve van, a több mappában elosztott sorozat automatikusan egyesül egy sorozatba.",
|
||||
"OptionAutomaticallyGroupSeriesHelp": "A több mappában elosztott sorozat automatikusan egyesül egy sorozatba.",
|
||||
"OptionBlockBooks": "Könyvek",
|
||||
"OptionBlockLiveTvChannels": "Élő TV csatornák",
|
||||
"OptionBlockMusic": "Zene",
|
||||
|
@ -1101,11 +1087,11 @@
|
|||
"OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)",
|
||||
"OptionContinuing": "Folytatva",
|
||||
"OptionDateAddedImportTime": "Használja a könyvtárba beolvasási dátumot",
|
||||
"OptionDisableUserHelp": "Ha letiltod, a szerver nem engedélyezi a felhasználó csatlakozását. A meglévő kapcsolatok azonnal megszűnnek.",
|
||||
"OptionDisableUserHelp": "A szerver nem engedélyezi a felhasználó csatlakozását. A meglévő kapcsolatok azonnal megszűnnek.",
|
||||
"OptionDisplayFolderView": "Az egyszerű média mappák mappanézetének megjelenítése",
|
||||
"OptionDisplayFolderViewHelp": "Jelenítse meg a mappákat a többi médiakönyvtár mellett. Ez hasznos lehet, ha egyszerű mappa nézeteket szeretnél látni.",
|
||||
"OptionDownloadImagesInAdvance": "Képek előzetes letöltése",
|
||||
"OptionDownloadImagesInAdvanceHelp": "Alapértelmezés szerint a legtöbb kép csak akkor töltődik le, ha azt egy Jellyfin alkalmazás kéri. Engedélyezd ezt az opciót az összes kép előzetes letöltéséhez, mikor új médiát importál. Ez jelentősen hosszabb könyvtár vizsgálatot eredményezhet.",
|
||||
"OptionDownloadImagesInAdvanceHelp": "Alapértelmezés szerint a legtöbb kép csak akkor töltődik le, ha azt egy kliens kéri. Engedélyezd ezt az opciót az összes kép előzetes letöltéséhez, mikor új médiát importál. Ez jelentősen hosszabb könyvtár vizsgálatot eredményezhet.",
|
||||
"OptionDownloadPrimaryImage": "Elsődleges",
|
||||
"OptionDvd": "DVD",
|
||||
"OptionEmbedSubtitles": "Beágyazva tárolóba",
|
||||
|
@ -1126,7 +1112,7 @@
|
|||
"OptionEveryday": "Minden nap",
|
||||
"OptionHideUserFromLoginHelp": "Hasznos a privát vagy a rejtett rendszergazdák számára. A felhasználónak kézzel kell bejelentkeznie a felhasználónevének és jelszavának megadásával.",
|
||||
"OptionIgnoreTranscodeByteRangeRequests": "Figyelmen kívül hagyja a transzkód bájt tartomány kéréseket",
|
||||
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Ha engedélyezve van, ezeket a kéréseket tiszteletben tartja, viszont figyelmen kívül hagyja a bájt tartomány fejlécét.",
|
||||
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Ezeket a kéréseket tiszteletben tartja, viszont figyelmen kívül hagyja a bájt tartomány fejlécét.",
|
||||
"OptionIsHD": "HD",
|
||||
"OptionIsSD": "SD",
|
||||
"OptionMax": "Max",
|
||||
|
@ -1190,7 +1176,6 @@
|
|||
"RemoveFromPlaylist": "Lejátszási listáról eltávolítani",
|
||||
"RepeatEpisodes": "Epizódok ismétlése",
|
||||
"ResumeAt": "Folytatás: {0}",
|
||||
"RunAtStartup": "Futtassa indításkor",
|
||||
"SaveSubtitlesIntoMediaFolders": "Mentse a feliratokat a média mappákba",
|
||||
"SaveSubtitlesIntoMediaFoldersHelp": "A feliratok tárolása a videofájlok mellett lehetővé teszi, hogy könnyebben kezelhetők legyenek.",
|
||||
"Schedule": "Ütemezés",
|
||||
|
@ -1252,7 +1237,6 @@
|
|||
"ValueTimeLimitMultiHour": "időlimit: {0} óra",
|
||||
"ValueTimeLimitSingleHour": "Időlimit: 1 óra",
|
||||
"Vertical": "Függőleges",
|
||||
"VideoRange": "Videó tartomány",
|
||||
"ViewAlbum": "Album megtekintése",
|
||||
"Whitelist": "Fehérlista",
|
||||
"WizardCompleted": "Ez most minden amire szükség volt. A Jellyfin megkezdte a médiakönyvtáraddal kapcsolatos információk gyűjtését. Nézz meg néhány alkalmazásunkat, majd kattints a <b>Befejezés </b> gombra a <b>Vezérlőpult</b> megtekintéséhez.",
|
||||
|
@ -1266,11 +1250,10 @@
|
|||
"LabelMaxResumePercentageHelp": "A címeket teljesen lejátszottnak tekintjük, ha ezen idő után fejezed be.",
|
||||
"LabelMaxStreamingBitrateHelp": "Adj meg egy maximum bitrátát a streameléshez.",
|
||||
"LabelMinResumePercentageHelp": "A címeket nem lejátszottnak tekintjük, ha ez alatt az idő alatt fejezed be.",
|
||||
"LabelMusicStreamingTranscodingBitrateHelp": "Határozz meg egy streamelési max bitrátát a zenékhez.",
|
||||
"LabelMusicStreamingTranscodingBitrateHelp": "Határozz meg egy streamelési maximális bitrátát a zenékhez.",
|
||||
"DashboardVersionNumber": "Verzió: {0}",
|
||||
"DashboardServerName": "Szerver: {0}",
|
||||
"LabelWeb": "Web:",
|
||||
"MediaInfoSoftware": "Szoftver",
|
||||
"MediaInfoStreamTypeAudio": "Audió",
|
||||
"MediaInfoStreamTypeSubtitle": "Felirat",
|
||||
"MediaInfoStreamTypeVideo": "Videó",
|
||||
|
@ -1278,7 +1261,6 @@
|
|||
"LabelUserLoginAttemptsBeforeLockout": "Sikertelen bejelentkezési kísérletek a felhasználó zárolása előtt:",
|
||||
"DashboardOperatingSystem": "Operációs rendszer: {0}",
|
||||
"DashboardArchitecture": "Platform: {0}",
|
||||
"LaunchWebAppOnStartup": "Indítsa el a webes felületet a szerver indításakor",
|
||||
"MessageNoCollectionsAvailable": "A gyűjtemények lehetővé teszik Filmek, Sorozatok és Albumok egyéni csoportosítását. A gyűjtemények létrehozásához kattints a + gombra.",
|
||||
"MessageNoServersAvailable": "Az automatikus kiszolgálókeresés nem talált szervert.",
|
||||
"OptionLoginAttemptsBeforeLockout": "Meghatározza, hogy hány érvénytelen bejelentkezési kísérlet történhet zárolás előtt.",
|
||||
|
@ -1299,7 +1281,7 @@
|
|||
"Guide": "Műsorújság",
|
||||
"H264CrfHelp": "A Constant Rate Factor (CRF) az alapértelmezett minőségi beállítás az x264 enkóderhez. Az értékek 0 és 51 között állíthatók, ahol az alacsonyabb érték jobb minőséget eredményez (nagyobb fájl méret mellett). Az ajánlott érték 18 és 28 között van. Az x264 alapértelmezett beállítása 23, ez lehet kiindulási alap.",
|
||||
"HeaderAddScheduledTaskTrigger": "Vezérlő Hozzáadása",
|
||||
"HeaderApiKeysHelp": "A külső alkalmazásoknak egy API kulcsra van szükésge, hogy kommunikáljanak a Jellyfin szerverrel. A kulcsokat egy Jellyfin fiókkal történő belépéssel lehet megkapni, vagy kézileg felvenni egy alkalmazáshoz tartozó kulcsot.",
|
||||
"HeaderApiKeysHelp": "A külső alkalmazásoknak egy API kulcsra van szükésge, hogy kommunikáljanak a Szerverrel. A kulcsokat egy normális fiókkal történő belépéssel lehet megkapni, vagy kézileg felvenni egy alkalmazáshoz tartozó kulcsot.",
|
||||
"HeaderBranding": "Személyes arculat",
|
||||
"HeaderContinueListening": "Folyamatban lévő zenék",
|
||||
"HeaderDeleteTaskTrigger": "Feladatvezérlő törlése",
|
||||
|
@ -1312,7 +1294,7 @@
|
|||
"HeaderGuideProviders": "TV műsorújság Szolgáltatók",
|
||||
"HeaderHome": "Kezdőlap",
|
||||
"HeaderUpcomingOnTV": "Következő TV műsorok",
|
||||
"ImportFavoriteChannelsHelp": "Ha engedélyezve van, csak a tuner eszközön kedvencként megjelölt csatornák kerülnek importálásra.",
|
||||
"ImportFavoriteChannelsHelp": "Csak a tuner eszközön kedvencként megjelölt csatornák kerülnek importálásra.",
|
||||
"LabelAlbumArtHelp": "A használandó PN érték az albumborítók esetében, mely a upnp:albumArtURI dlna:profileID tulajdonságában szerepel. Néhány eszköz meghatározott értéket vár el, függetlenül a kép méretétől.",
|
||||
"LabelAlbumArtMaxHeight": "Albumborító maximális magasság:",
|
||||
"LabelAlbumArtMaxHeightHelp": "Albumborító maximális magasság mely upnp:albumArtURI kiajánlásra kerül.",
|
||||
|
@ -1329,7 +1311,7 @@
|
|||
"LabelEmbedAlbumArtDidl": "Albumborító beágyazása a Didl-be",
|
||||
"LabelEmbedAlbumArtDidlHelp": "Néhány eszköz ezt a megoldást részesíti előnyben az albumborítók esetében. Mások esetlegesen lejátszási hibát jeleznek, ha ez az opció engedélyezve van.",
|
||||
"LabelEnableBlastAliveMessages": "Blast alive üzenetek",
|
||||
"LabelHttpsPortHelp": "A TCP port száma, melyen a Jellyfin HTTPS szervere figyel.",
|
||||
"LabelHttpsPortHelp": "A TCP port száma, melyen a HTTPS szerver figyel.",
|
||||
"LabelIconMaxHeight": "Ikon maximális magasság:",
|
||||
"LabelIconMaxHeightHelp": "Ikon maximális magasság, mely az upnp:icon keresztül kiajánlásra kerül.",
|
||||
"LabelIconMaxWidth": "Ikon maximális szélesség:",
|
||||
|
@ -1338,7 +1320,7 @@
|
|||
"LabelKeepUpTo": "Őrizd meg:",
|
||||
"LabelKodiMetadataUser": "Mentsd el a következő felhasználó megtekintési adatát az NFO-ba:",
|
||||
"LabelKodiMetadataUserHelp": "A kiválasztott felhasználó megtekintési adata elmentésre kerül az NFO fájlokba, melyet azután más alkalmazások használhatnak.",
|
||||
"LabelLocalHttpServerPortNumberHelp": "A TCP port száma, melyen a Jellyfin HTTP szerver figyel.",
|
||||
"LabelLocalHttpServerPortNumberHelp": "A TCP port száma, melyen a HTTP szerver figyel.",
|
||||
"UserAgentHelp": "Adj meg egy egyedi HTTP user-agent fejlécet.",
|
||||
"XmlDocumentAttributeListHelp": "Ezek a tulajdonságok minden XML válaszüzenet gyökér elemére alkalmazásra kerülnek.",
|
||||
"Thumb": "Miniatűr",
|
||||
|
@ -1374,7 +1356,6 @@
|
|||
"HeaderFavoritePeople": "Kedvenc emberek",
|
||||
"HeaderApp": "Alkalmazás",
|
||||
"GroupVersions": "Verziók csoportosítása",
|
||||
"CopyStreamURLError": "Hiba történt az URL másolása közben.",
|
||||
"OptionSubstring": "Szövegrészlet",
|
||||
"ButtonSplit": "Szétvág",
|
||||
"Absolute": "Abszolút",
|
||||
|
@ -1382,7 +1363,6 @@
|
|||
"SubtitleOffset": "Felirat eltolása",
|
||||
"SeriesDisplayOrderHelp": "Rakd sorba az epizódokat az adásba kerülésük dátuma, a DVD sorszám, vagy az abszolút számozás szerint.",
|
||||
"SelectAdminUsername": "Kérjük válassz felhasználónevet az adminisztrátor fiók számára.",
|
||||
"QueueAllFromHere": "Az összes sorba állítása innen",
|
||||
"OptionThumbCard": "Miniatűr kártya",
|
||||
"OptionThumb": "Miniatűr",
|
||||
"OptionSpecialEpisode": "Különkiadások",
|
||||
|
@ -1408,7 +1388,6 @@
|
|||
"MetadataSettingChangeHelp": "A metaadat beállítások módosítása az ezután újonnan hozzáadott médiát fogja befolyásolni. A már meglévő tartalom frissítéséhez nyisd meg a részletek képernyőt, és kattints a frissítésre, vagy végezz tömeges frissítést a Metaadat Managerben.",
|
||||
"MessageConfirmDeleteGuideProvider": "Biztosan törölni szeretnéd ezt a műsorújság szolgáltatót?",
|
||||
"MessageConfirmAppExit": "Ki szeretnél lépni?",
|
||||
"LaunchWebAppOnStartupHelp": "A web kliens indítása az alapértelmezett böngészőben a szerver indítása után. A kliens nem fog elindulni a szerver újraindítása után.",
|
||||
"LabelVideoResolution": "Videó felbontás:",
|
||||
"LabelVideoCodec": "Videó kodek:",
|
||||
"LabelVideoBitrate": "Videó bitráta:",
|
||||
|
@ -1429,8 +1408,8 @@
|
|||
"PasswordResetProviderHelp": "Válassz egy jelszó-visszaállítási szolgáltatót, amelyet akkor kell használni, amikor a felhasználó jelszó-visszaállítást kér",
|
||||
"OptionResElement": "res elem",
|
||||
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Erre olyan készülékek esetében van szükség, amelyek időigénye nem nagyon jó.",
|
||||
"OptionPlainVideoItemsHelp": "Ha engedélyezve van, akkor az összes videót a DIDL-ben \"object.item.videoItem\" -ként ábrázolja, nem pedig egy specifikusabb típusként, például \"object.item.videoItem.movie\" .",
|
||||
"OptionPlainStorageFoldersHelp": "Ha engedélyezve van, akkor az összes mappa a DIDL-ben \"object.container.storageFolder\" lesz, nem pedig egy specifikusabb típusként, például \"object.container.person.musicArtist\".",
|
||||
"OptionPlainVideoItemsHelp": "Az összes videót a DIDL-ben \"object.item.videoItem\" -ként ábrázolja, nem pedig egy specifikusabb típusként, például \"object.item.videoItem.movie\" .",
|
||||
"OptionPlainStorageFoldersHelp": "Az összes mappa a DIDL-ben \"object.container.storageFolder\" lesz, nem pedig egy specifikusabb típusként, például \"object.container.person.musicArtist\".",
|
||||
"OptionHlsSegmentedSubtitles": "HLS szegmentált feliratok",
|
||||
"OptionEquals": "Egyenlő",
|
||||
"OptionForceRemoteSourceTranscoding": "A távoli médiaforrások (például az élő TV) átkódolásának kényszerítése",
|
||||
|
@ -1473,7 +1452,6 @@
|
|||
"Track": "Szám",
|
||||
"Season": "Évad",
|
||||
"Person": "Személy",
|
||||
"OtherArtist": "Más előadók",
|
||||
"Movie": "Film",
|
||||
"Episode": "Epizód",
|
||||
"ClientSettings": "Kliens beállítások",
|
||||
|
@ -1488,18 +1466,15 @@
|
|||
"UnsupportedPlayback": "Jellyfin nem tud DRM-titkosított tartalmak dekriptálására, ettől függetlenül a lejátszással mindig megpróbálkozik. Néhány fájl emiatt teljesen fekete képernyőt ad, amely vagy a titkosítás miatt van, vagy nem olyan nem támogatott tartalmak miatt, mint az interaktív címek.",
|
||||
"YadifBob": "YADIF Bob",
|
||||
"Yadif": "YADIF",
|
||||
"ReleaseGroup": "Kiadócsoport",
|
||||
"MessageUnauthorizedUser": "Jelenleg nincs jogosultságod a szerverhez való hozzáféréshez. Kérjük, lépj kapcsolatba az adminisztrátorral további információkért!",
|
||||
"ButtonTogglePlaylist": "Lejátszási listák",
|
||||
"ButtonToggleContextMenu": "Továbbiak",
|
||||
"Filter": "Szűrés",
|
||||
"New": "Új",
|
||||
"HeaderFavoritePlaylists": "Kedvenc lejátszási listák",
|
||||
"ApiKeysCaption": "A jelenleg engedélyezett API kulcsok listája",
|
||||
"LabelNightly": "Éjszakai",
|
||||
"LabelStable": "Stabil",
|
||||
"LabelChromecastVersion": "Chromecast verzió",
|
||||
"LabelEnableHttpsHelp": "Engedélyezi a kiszolgálónak a kommunikációt HTTPS protokollon keresztül. Érvényes tanúsítványt is be kell állítani az érvénybe léptetéshez.",
|
||||
"LabelEnableHttpsHelp": "Figyelés a megadott HTTPS porton. Érvényes tanúsítványt is be kell állítani az érvénybe léptetéshez.",
|
||||
"LabelRequireHttpsHelp": "Bekapcsolást követően minden egyes HTTP-kérést átirányít HTTPS protokollra. A már meglévő HTTPS kéréseket nem módosítja.",
|
||||
"LabelRequireHttps": "HTTPS megkövetelése",
|
||||
"LabelEnableHttps": "HTTPS engedélyezése",
|
||||
|
@ -1564,5 +1539,8 @@
|
|||
"ClearQueue": "Sor ürítése",
|
||||
"StopPlayback": "Lejátszás leállítása",
|
||||
"ViewAlbumArtist": "Album előadójának megtekintése",
|
||||
"ButtonPlayer": "Lejátszó"
|
||||
"ButtonPlayer": "Lejátszó",
|
||||
"PreviousTrack": "Ugrás az előzőhöz",
|
||||
"NextTrack": "Ugrás a következőre",
|
||||
"LabelUnstable": "Instabil"
|
||||
}
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
"LabelSaveLocalMetadata": "Simpan artwork dan metadata ke dalam folder media",
|
||||
"LabelSaveLocalMetadataHelp": "Menyimpan artwork dan metadata langsung ke folder media akan meletakkan mereka di tempat yang mudah diedit.",
|
||||
"LabelTimeLimitHours": "Batas waktu (jam):",
|
||||
"LabelYourFirstName": "Nama depan anda:",
|
||||
"LabelYoureDone": "Kamu sudah selesai!",
|
||||
"MessageNothingHere": "Tidak ada disini.",
|
||||
"MessagePleaseEnsureInternetMetadata": "Pastikan unduh metadata dari internet diaktifkan.",
|
||||
|
@ -25,7 +24,6 @@
|
|||
"OptionEnableAccessToAllLibraries": "Aktifkan akses ke semua pustaka",
|
||||
"ParentalRating": "Parental Rating",
|
||||
"TabAccess": "Akses",
|
||||
"TabPlaylist": "Daftar Putar",
|
||||
"TabProfile": "Profil",
|
||||
"TellUsAboutYourself": "Beritahu kami tentang anda",
|
||||
"ThisWizardWillGuideYou": "Panduan ini akan memandu Anda melalui proses setup. Untuk memulai, silahkan pilih bahasa yang Anda gunakan.",
|
||||
|
@ -62,7 +60,6 @@
|
|||
"DatePlayed": "Tanggal dimainkan",
|
||||
"DateAdded": "Tanggal ditambahkan",
|
||||
"CriticRating": "Kritik peringkat",
|
||||
"CopyStreamURLError": "Terdapat galat dalam penyalinan pranala.",
|
||||
"CopyStreamURLSuccess": "Pranala berhasil disalin.",
|
||||
"CopyStreamURL": "Salin Pranala Stream",
|
||||
"Continuing": "Melanjutkan",
|
||||
|
@ -82,7 +79,6 @@
|
|||
"Categories": "Kategori",
|
||||
"CancelRecording": "Batalkan perekaman",
|
||||
"ButtonWebsite": "Situs web",
|
||||
"ButtonViewWebsite": "Tampilkan situs web",
|
||||
"ButtonUp": "Atas",
|
||||
"ButtonTrailer": "Cuplikan",
|
||||
"ButtonSubmit": "Kirim",
|
||||
|
@ -119,7 +115,6 @@
|
|||
"ButtonNetwork": "Jaringan",
|
||||
"ButtonMore": "Lebih banyak",
|
||||
"ButtonLibraryAccess": "Akses pustaka",
|
||||
"ButtonLearnMore": "Pelajari lebih lanjut",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonHome": "Beranda",
|
||||
"ButtonHelp": "Bantuan",
|
||||
|
@ -162,7 +157,6 @@
|
|||
"Banner": "Spanduk",
|
||||
"Backdrops": "Latar belakang",
|
||||
"Backdrop": "Latar belakang",
|
||||
"AutoBasedOnLanguageSetting": "Auto (berdasarkan pengaturan bahasa)",
|
||||
"Auto": "Auto",
|
||||
"AuthProviderHelp": "Pilih Penyedia Autentikasi yang akan digunakan untuk mengautentikasi kata sandi pengguna ini.",
|
||||
"Audio": "Audio",
|
||||
|
@ -191,7 +185,6 @@
|
|||
"AddToPlaylist": "Tambah ke dalam daftar putar",
|
||||
"AddToPlayQueue": "Tambah ke dalam antrean putar",
|
||||
"AddToCollection": "Tambah ke dalam koleksi",
|
||||
"AddItemToCollectionHelp": "Tambahkan item ke dalam koleksi melalui pencarian dan gunakan klik kanan atau ketuk menu untuk menambahkannya ke dalam koleksi.",
|
||||
"AccessRestrictedTryAgainLater": "Akses sedang dibatasi. Mohon tunggu beberapa saat lagi",
|
||||
"Absolute": "Absolut",
|
||||
"Songs": "Lagu",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"LabelNext": "Næsta",
|
||||
"LabelPrevious": "Fyrra",
|
||||
"LabelTimeLimitHours": "Tímamörk (í klukkustundum):",
|
||||
"LabelYourFirstName": "Fyrra nafn:",
|
||||
"MoreUsersCanBeAddedLater": "Þú getur bætt við fleiri notendum síðar undir stjórnborðinu.",
|
||||
"NextUp": "Næst á dagskrá",
|
||||
"OptionEnableAccessFromAllDevices": "Virkja aðgang frá öllum tækjum",
|
||||
|
@ -31,7 +30,6 @@
|
|||
"TabAccess": "Aðgangur",
|
||||
"TabNotifications": "Tilkynningar",
|
||||
"TabPassword": "Lykilorð",
|
||||
"TabPlaylist": "Afspilunar listi",
|
||||
"WelcomeToProject": "Velkomin/n í Jellyfin!",
|
||||
"Anytime": "Hvenær sem er",
|
||||
"Genres": "Tegundir",
|
||||
|
@ -52,7 +50,6 @@
|
|||
"Actor": "Leikari",
|
||||
"Add": "Bæta við",
|
||||
"AddToCollection": "Bæta í safn",
|
||||
"AutoBasedOnLanguageSetting": "Sjálfkrafa (byggt á tungumálastillingum)",
|
||||
"MessageBrowsePluginCatalog": "Skoða viðbætur sem eru í boði í viðbóta safninu okkar.",
|
||||
"BurnSubtitlesHelp": "Ákveður hvort þjónninn eigi að brenna textann inn í myndaskránna þegar verið er að umbreyta skrársniðinu. Með því að forðast að brenna inn textann er hægt að minnka álag á þjóninn (tölvuna). Veljið sjálfkrafa til þess að brenna texta byggðan á myndum (VOBSUB, PGS, SUB/IDX, ofl) og ákveðna ASS/SSA texta.",
|
||||
"OptionSaveMetadataAsHidden": "Geyma gagnagögn (metadata) og myndir sem leynilegar skrár",
|
||||
|
@ -80,7 +77,6 @@
|
|||
"AddedOnValue": "Bætti við {0}",
|
||||
"AirDate": "Frumsýningardagur",
|
||||
"Aired": "Frumsýnt",
|
||||
"AddItemToCollectionHelp": "Þú getur bætt við efni í söfn með því að leita og svo hægri smella eða ýta á valmyndina.",
|
||||
"AddToPlaylist": "Bæta á spilunarlista",
|
||||
"AdditionalNotificationServices": "Skoða viðbætur til þess að bæta við fleiri tilkynningarþjónustum.",
|
||||
"Alerts": "Viðvaranir",
|
||||
|
@ -177,7 +173,6 @@
|
|||
"HeaderCastCrew": "Leikarar og Áhöfn",
|
||||
"HeaderCastAndCrew": "Leikarar og Áhöfn",
|
||||
"HeaderBooks": "Bækur",
|
||||
"HeaderAutomaticUpdates": "Sjálfvirkar Uppfærslur",
|
||||
"HeaderAlbums": "Plötur",
|
||||
"HeaderAdmin": "Stjórnandi",
|
||||
"GuideProviderLogin": "Innskrá",
|
||||
|
@ -214,7 +209,6 @@
|
|||
"Categories": "Flokkar",
|
||||
"CancelRecording": "Hætta við upptöku",
|
||||
"ButtonWebsite": "Vefsiða",
|
||||
"ButtonViewWebsite": "Skoða vefsíðu",
|
||||
"ButtonUp": "Upp",
|
||||
"ButtonUninstall": "Fjarlægja",
|
||||
"ButtonTrailer": "Sýnishorn",
|
||||
|
@ -252,7 +246,6 @@
|
|||
"ButtonMore": "Meira",
|
||||
"ButtonManualLogin": "Handvirkt Auðkenni",
|
||||
"ButtonLibraryAccess": "Aðgangur að safni",
|
||||
"ButtonLearnMore": "Læra meira",
|
||||
"ButtonInfo": "Upplýsingar",
|
||||
"ButtonHome": "Heim",
|
||||
"ButtonHelp": "Hjálp",
|
||||
|
@ -385,7 +378,6 @@
|
|||
"DatePlayed": "Dagsetning spilað",
|
||||
"DateAdded": "Dagsetning bætt við",
|
||||
"CriticRating": "Einkunn gagnrýnanda",
|
||||
"CopyStreamURLError": "Villa varð við afritun vefslóðar.",
|
||||
"CopyStreamURLSuccess": "Afrit af vefslóð tókst.",
|
||||
"CopyStreamURL": "Afrita vefslóð streymis",
|
||||
"Continuing": "Áframhaldandi",
|
||||
|
@ -419,7 +411,6 @@
|
|||
"SaveChanges": "Vista breytingar",
|
||||
"Save": "Vista",
|
||||
"Saturday": "Laugardagur",
|
||||
"RunAtStartup": "Keyra við ræsingu",
|
||||
"Rewind": "Spóla til baka",
|
||||
"AlbumArtist": "Höfundur plötu",
|
||||
"OptionHasTrailer": "Sýnishorn",
|
||||
|
@ -533,13 +524,11 @@
|
|||
"LabelDroppedFrames": "Felldir rammar:",
|
||||
"LabelDiscNumber": "Númer disks:",
|
||||
"LabelDeviceDescription": "Lýsing tækis",
|
||||
"LabelDashboardTheme": "Þema mælaborðs:",
|
||||
"LabelCustomCss": "Sérsniðin CSS:",
|
||||
"LabelCriticRating": "Einkunn gagnrýnanda:",
|
||||
"LabelCorruptedFrames": "Skemmdir rammar:",
|
||||
"LabelCancelled": "Hætt við",
|
||||
"LabelAppName": "Heiti forrits",
|
||||
"LabelAllowServerAutoRestart": "Leyfa netþjóni að endurræsa sig sjálfkrafa til þess að uppfæra sig",
|
||||
"LabelAllowHWTranscoding": "Leyfa vélbúnaðarumkóðun",
|
||||
"Label3DFormat": "3D snið:",
|
||||
"HeaderIdentification": "Auðkenning",
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"AccessRestrictedTryAgainLater": "L'accesso è attualmente limitato. Si prega di riprovare più tardi.",
|
||||
"Actor": "Attore",
|
||||
"Add": "Aggiungi",
|
||||
"AddItemToCollectionHelp": "Aggiungi elementi alle collezioni ricercandoli e utilizzando il pulsante destro del mouse o tocca i menu per aggiungerli a una raccolta.",
|
||||
"AddToCollection": "Aggiunto alla collezione",
|
||||
"AddToPlayQueue": "Aggiungi alla coda di riproduzione",
|
||||
"AddToPlaylist": "Aggiungi alla playlist",
|
||||
|
@ -34,7 +33,6 @@
|
|||
"Ascending": "Crescente",
|
||||
"AspectRatio": "Rapporto d'Aspetto",
|
||||
"AttributeNew": "Nuovo",
|
||||
"AutoBasedOnLanguageSetting": "Auto (basato sull'impostazione della lingua)",
|
||||
"Backdrop": "Sfondo",
|
||||
"Backdrops": "Sfondi",
|
||||
"BirthDateValue": "Nato il: {0}",
|
||||
|
@ -72,14 +70,13 @@
|
|||
"ButtonGotIt": "Ho capito",
|
||||
"ButtonGuide": "Guida",
|
||||
"ButtonHelp": "Aiuto",
|
||||
"ButtonLearnMore": "saperne di più",
|
||||
"ButtonLibraryAccess": "Accesso biblioteca",
|
||||
"ButtonManualLogin": "Accesso Manuale",
|
||||
"ButtonMore": "Altro",
|
||||
"ButtonNetwork": "Rete",
|
||||
"ButtonNew": "Nuovo",
|
||||
"ButtonNextTrack": "Traccia Successiva",
|
||||
"ButtonOff": "Spento",
|
||||
"ButtonOff": "No",
|
||||
"ButtonOpen": "Apri",
|
||||
"ButtonParentalControl": "Controllo parentale",
|
||||
"ButtonPause": "Pausa",
|
||||
|
@ -115,7 +112,6 @@
|
|||
"ButtonSubtitles": "Sottotitoli",
|
||||
"ButtonUninstall": "Disinstalla",
|
||||
"ButtonUp": "Su",
|
||||
"ButtonViewWebsite": "Visualizza sito web",
|
||||
"ButtonWebsite": "Web",
|
||||
"CancelRecording": "Annulla la registrazione",
|
||||
"CancelSeries": "Annulla Serie TV",
|
||||
|
@ -272,7 +268,6 @@
|
|||
"HeaderApiKeysHelp": "Le Applicazioni esterne devono avere una chiave API per comunicare con il Server Jellyfin. Le chiavi sono emesse accedendo con un account Jellyfin, o fornendo manualmente una chiave all'applicazione.",
|
||||
"HeaderAudioBooks": "Audiolibri",
|
||||
"HeaderAudioSettings": "Impostazioni audio",
|
||||
"HeaderAutomaticUpdates": "Aggiornamenti Automatici",
|
||||
"HeaderBlockItemsWithNoRating": "Blocca elementi sconosciuti o senza informazioni:",
|
||||
"HeaderBooks": "Libri",
|
||||
"HeaderBranding": "Personalizza",
|
||||
|
@ -483,8 +478,6 @@
|
|||
"LabelAlbumArtists": "Artisti album:",
|
||||
"LabelAll": "Tutti",
|
||||
"LabelAllowHWTranscoding": "Consenti transcodifica hardware",
|
||||
"LabelAllowServerAutoRestart": "Consenti al server di Riavviarsi automaticamente per applicare gli aggiornamenti",
|
||||
"LabelAllowServerAutoRestartHelp": "Il server si Riavvierà solamente quando nessun utente è connesso.",
|
||||
"LabelAllowedRemoteAddresses": "Filtro indirizzo IP Remoto:",
|
||||
"LabelAllowedRemoteAddressesMode": "Modalità filtro indirizzo IP remoto:",
|
||||
"LabelAppName": "Nome app",
|
||||
|
@ -520,7 +513,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Nome da visualizzare:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Fornire un nome di visualizzazione personalizzato o lasciare vuoto per utilizzare il nome riportato dal dispositivo.",
|
||||
"LabelCustomRating": "Voto personalizzato:",
|
||||
"LabelDashboardTheme": "Tema dashboard del server:",
|
||||
"LabelDateAdded": "Aggiunto il:",
|
||||
"LabelDateAddedBehavior": "Data di comportamento per i nuovi contenuti:",
|
||||
"LabelDateAddedBehaviorHelp": "Se un valore di metadati è presente sarà sempre utilizzato prima una di queste opzioni.",
|
||||
|
@ -735,7 +727,6 @@
|
|||
"LabelSortBy": "Ordina per:",
|
||||
"LabelSortOrder": "Ordinato per:",
|
||||
"LabelSortTitle": "Titolo per ordinamento:",
|
||||
"LabelSoundEffects": "Effetti sonori:",
|
||||
"LabelSource": "Origine:",
|
||||
"LabelSpecialSeasonsDisplayName": "Nome della stagione speciale:",
|
||||
"LabelSportsCategories": "Categorie sport:",
|
||||
|
@ -784,7 +775,6 @@
|
|||
"LabelXDlnaCapHelp": "Determina il contenuto dell'elemento X_DLNACAP in urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDocHelp": "Determina il contenuto dell'elemento X_DLNACAP nella urn: schemas-DLNA-org: dispositivo 1-0 namespace.",
|
||||
"LabelYear": "Anno:",
|
||||
"LabelYourFirstName": "Il tuo nome:",
|
||||
"LabelYoureDone": "Hai Finito!",
|
||||
"LabelZipCode": "Cap:",
|
||||
"LabelffmpegPath": "Percorso FFmpeg:",
|
||||
|
@ -847,7 +837,6 @@
|
|||
"MessageFileReadError": "Si è verificato un errore durante la lettura del file. Si prega di riprovare.",
|
||||
"MessageForgotPasswordFileCreated": "Il seguente file è stato creato sul server e contiene le istruzioni su come procedere:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Riprova all'interno della rete domestica per avviare il processo di reimpostazione della password.",
|
||||
"MessageInstallPluginFromApp": "Questo plugin deve essere installato dall'app in cui vuoi farlo funzionare.",
|
||||
"MessageInvalidForgotPasswordPin": "É stato inserito un codice pin invalido o scaduto . Riprova.",
|
||||
"MessageInvalidUser": "Utente o password errato. Riprova.",
|
||||
"MessageItemSaved": "Elemento salvato.",
|
||||
|
@ -901,7 +890,7 @@
|
|||
"None": "Nessuno",
|
||||
"Normal": "Normale",
|
||||
"NumLocationsValue": "{0} cartelle",
|
||||
"Off": "Spento",
|
||||
"Off": "No",
|
||||
"OneChannel": "Un canale",
|
||||
"OnlyForcedSubtitles": "Solo forzati",
|
||||
"OnlyForcedSubtitlesHelp": "Solo i sottotitoli contrassegnati come forzati saranno caricati.",
|
||||
|
@ -1069,7 +1058,6 @@
|
|||
"ProductionLocations": "Sedi di produzione",
|
||||
"Programs": "Programmi",
|
||||
"Quality": "Qualità",
|
||||
"QueueAllFromHere": "In coda tutto da qui in poi",
|
||||
"Raised": "Rilievo",
|
||||
"Rate": "Vota",
|
||||
"RecentlyWatched": "Visti di recente",
|
||||
|
@ -1100,7 +1088,6 @@
|
|||
"ReplaceExistingImages": "Sovrascrivi immagini esistenti",
|
||||
"ResumeAt": "Riprendi da {0}",
|
||||
"Rewind": "Riavvolgi",
|
||||
"RunAtStartup": "Esegui all'avvio",
|
||||
"Runtime": "Durata",
|
||||
"Saturday": "Sabato",
|
||||
"Save": "Salva",
|
||||
|
@ -1252,7 +1239,6 @@
|
|||
"ValueTimeLimitSingleHour": "Tempo limite: 1 ora",
|
||||
"ValueVideoCodec": "Codec Video: {0}",
|
||||
"Vertical": "Verticale",
|
||||
"VideoRange": "Range del Video",
|
||||
"ViewAlbum": "Visualizza album",
|
||||
"ViewPlaybackInfo": "Vedi info sulla riproduzione",
|
||||
"Watched": "Visto",
|
||||
|
@ -1382,7 +1368,6 @@
|
|||
"LabelPlaylist": "Playlist:",
|
||||
"LabelPlayMethod": "Metodo di riproduzione:",
|
||||
"LabelPleaseRestart": "Le modifiche avranno effetto dopo aver manualmente ricaricato il client web.",
|
||||
"LabelSkin": "Skin:",
|
||||
"LabelTranscodes": "Trascodifiche:",
|
||||
"LabelTranscodingFramerate": "Framerate di trascodifica:",
|
||||
"LabelTranscodingProgress": "Progresso di trascodifica:",
|
||||
|
@ -1391,12 +1376,8 @@
|
|||
"LabelVideo": "Video",
|
||||
"DashboardArchitecture": "Architettura: {0}",
|
||||
"LabelWeb": "Web:",
|
||||
"LaunchWebAppOnStartup": "Lancia l'interfaccia web quando viene avviato il server",
|
||||
"LaunchWebAppOnStartupHelp": "Apri il client web nel tuo web browser quando il server si avvia inizialmente. Ciò non accadrà quando si usa la funzione riavvio server.",
|
||||
"LeaveBlankToNotSetAPassword": "Puoi lasciare questo campo vuoto per non impostare alcuna password.",
|
||||
"LinksValue": "Link: {0}",
|
||||
"MediaInfoTimestamp": "Orario",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"Mobile": "Mobile",
|
||||
"MoreMediaInfo": "Informazioni sui Media",
|
||||
"MusicAlbum": "Album Musicale",
|
||||
|
@ -1432,7 +1413,6 @@
|
|||
"TabLogs": "Log",
|
||||
"TabNetworking": "Rete",
|
||||
"TabPassword": "Password",
|
||||
"TabPlaylist": "Playlist",
|
||||
"TabPlugins": "Plugin",
|
||||
"TabServer": "Server",
|
||||
"TabStreaming": "Streaming",
|
||||
|
@ -1444,7 +1424,6 @@
|
|||
"OptionRandom": "Casuale",
|
||||
"MessageConfirmAppExit": "Vuoi uscire?",
|
||||
"HeaderNavigation": "Navigazione",
|
||||
"CopyStreamURLError": "Si è verificato un errore nel copiare l'indirizzo.",
|
||||
"PlaybackErrorNoCompatibleStream": "Il client è incompatibile con il media e il server non sta inviando un formato compatibile.",
|
||||
"OptionForceRemoteSourceTranscoding": "Forza la transcodifica da fonti di media remoti (come LiveTV)",
|
||||
"NoCreatedLibraries": "Sembra che tu non abbia ancora creato delle librerie. {0}Vuoi crearne una adesso?{1}",
|
||||
|
@ -1480,16 +1459,13 @@
|
|||
"Yadif": "YADIF",
|
||||
"Track": "Traccia",
|
||||
"Season": "Stagione",
|
||||
"OtherArtist": "Altri Artisti",
|
||||
"Movie": "Film",
|
||||
"LabelLibraryPageSizeHelp": "Numero di elementi presenti nella paginazione della libreria. Il valore 0 disabilita la paginazione.",
|
||||
"LabelLibraryPageSize": "Elementi nella paginazione della libreria:",
|
||||
"Episode": "Episodio",
|
||||
"BoxSet": "Cofanetto",
|
||||
"AlbumArtist": "Artisti dell'Album",
|
||||
"ReleaseGroup": "Release Group",
|
||||
"UnsupportedPlayback": "Jellyfin non è in grado di decriptare i contenuti protetti da DRM ma tutti i contenuti verranno tentati a prescindere, compresi quelli protetti. Alcuni file potrebbero apparire completamente neri a causa della crittografia o di altre funzionalità non supportate, come i titoli interattivi.",
|
||||
"MessageUnauthorizedUser": "Non sei autorizzato ad accedere in questo momento al server. Contatta l'amministratore per ulteriori dettagli.",
|
||||
"ButtonTogglePlaylist": "Playlist",
|
||||
"ButtonToggleContextMenu": "Altro",
|
||||
"HeaderFavoritePlaylists": "Playlist Favorite",
|
||||
|
@ -1508,7 +1484,6 @@
|
|||
"TabDVR": "DVR",
|
||||
"SaveChanges": "Salva modifiche",
|
||||
"HeaderDVR": "DVR",
|
||||
"LabelNightly": "Nightly",
|
||||
"SyncPlayAccessHelp": "Selezionare il livello d'accesso di questo utente a SyncPlay che permetterà di riprodurre contemporaneamente su diversi dispositivi.",
|
||||
"MessageSyncPlayErrorMedia": "Impossibile abilitare SyncPlay! Errore media.",
|
||||
"MessageSyncPlayErrorMissingSession": "Impossibile abilitare SyncPlay! Sessione mancante.",
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
"Audio": "オーディオ",
|
||||
"AuthProviderHelp": "ユーザーのパスワードを認証するために使用する認証プロバイダを選択してください。",
|
||||
"Auto": "自動",
|
||||
"AutoBasedOnLanguageSetting": "自動選択(設定されている言語を優先)",
|
||||
"Backdrop": "背景",
|
||||
"Backdrops": "背景",
|
||||
"Banner": "バナー",
|
||||
|
@ -83,7 +82,6 @@
|
|||
"ButtonHelp": "ヘルプ",
|
||||
"ButtonHome": "ホーム",
|
||||
"ButtonInfo": "情報",
|
||||
"ButtonLearnMore": "もっと詳しく",
|
||||
"ButtonLibraryAccess": "ライブラリへアクセス",
|
||||
"ButtonManualLogin": "マニュアルログイン",
|
||||
"ButtonMore": "もっと",
|
||||
|
@ -127,7 +125,6 @@
|
|||
"ButtonTrailer": "予告",
|
||||
"ButtonUninstall": "アンインストール",
|
||||
"ButtonUp": "上",
|
||||
"ButtonViewWebsite": "ウェブサイトで見る",
|
||||
"ButtonWebsite": "ウェブサイト",
|
||||
"CancelRecording": "レコーディングをキャンセル",
|
||||
"CancelSeries": "中止したシリーズ",
|
||||
|
@ -223,7 +220,6 @@
|
|||
"HeaderMoreLikeThis": "これに似たもの",
|
||||
"InstantMix": "インスタントミックス",
|
||||
"MoreFromValue": "もっと詳しく {0}",
|
||||
"AddItemToCollectionHelp": "アイテムをコレクションに追加するには右クリックメニューかタップメニューから追加してください。",
|
||||
"AttributeNew": "新規",
|
||||
"ButtonNew": "新規",
|
||||
"ButtonOff": "オフ",
|
||||
|
@ -300,7 +296,6 @@
|
|||
"HeaderAppearsOn": "表示",
|
||||
"HeaderAudioBooks": "オーディオブック",
|
||||
"HeaderAudioSettings": "音声設定",
|
||||
"HeaderAutomaticUpdates": "自動更新",
|
||||
"HeaderBlockItemsWithNoRating": "評価情報がない、または認識できないアイテムをブロックします。",
|
||||
"HeaderBooks": "ブック",
|
||||
"HeaderBranding": "ブランディング",
|
||||
|
@ -375,7 +370,7 @@
|
|||
"HeaderItems": "アイテム",
|
||||
"HeaderKeepRecording": "録画を続ける",
|
||||
"HeaderKeepSeries": "シリーズを続ける",
|
||||
"HeaderKodiMetadataHelp": "NFOメタデータを有効または無効にするには、Jellyfinライブラリ設定でライブラリを編集し、メタデータ保存機能セクションを見つけます。",
|
||||
"HeaderKodiMetadataHelp": "NFOメタデータを有効または無効にするには、ライブラリを編集し「メタデータサーバー」の項目にて変更できます。",
|
||||
"HeaderLatestEpisodes": "最新のエピソード",
|
||||
"HeaderLatestMedia": "最新のメディア",
|
||||
"HeaderLatestMovies": "最新のムービー",
|
||||
|
@ -423,7 +418,7 @@
|
|||
"HeaderPreferredMetadataLanguage": "優先するメタデータ言語",
|
||||
"HeaderProfile": "プロファイル",
|
||||
"HeaderProfileInformation": "プロファイル情報",
|
||||
"HeaderProfileServerSettingsHelp": "これらの値はJellyfinサーバーがそれ自体をデバイスに提示する方法を制御します。",
|
||||
"HeaderProfileServerSettingsHelp": "これらの設定はサーバーがクライアントに提示する方法を示しています。",
|
||||
"HeaderRecentlyPlayed": "最近再生した",
|
||||
"HeaderRecordingOptions": "録画設定",
|
||||
"HeaderRecordingPostProcessing": "録画後の処理",
|
||||
|
@ -441,13 +436,13 @@
|
|||
"HeaderSecondsValue": "{0} 秒",
|
||||
"HeaderSelectCertificatePath": "証明書のパスを選択",
|
||||
"HeaderSelectMetadataPath": "メタデータのパスを選択",
|
||||
"HeaderSelectMetadataPathHelp": "メタデータを保存するパスを参照または入力します。 フォルダは書き込み可能でなければなりません。",
|
||||
"HeaderSelectMetadataPathHelp": "メタデータの保存先を参照またはパスを入力してください。 フォルダは書き込み可能でなければなりません。",
|
||||
"HeaderSelectPath": "パスの選択",
|
||||
"HeaderSelectServer": "サーバーの選択",
|
||||
"HeaderSelectServerCachePath": "サーバーキャッシュのパスを選択",
|
||||
"HeaderSelectServerCachePathHelp": "サーバーキャッシュファイルに使用するパスを参照または入力します。 フォルダは書き込み可能でなければなりません。",
|
||||
"HeaderSelectTranscodingPath": "トランスコーディング用の一時パスの選択",
|
||||
"HeaderSelectTranscodingPathHelp": "一時ファイルのトランスコードに使用するパスを参照または入力します。 フォルダは書き込み可能でなければなりません。",
|
||||
"HeaderSelectTranscodingPathHelp": "トランスコードファイルの保存先を参照またはパスを入力してください。 フォルダは書き込み可能でなければなりません。",
|
||||
"HeaderSendMessage": "メッセージの送信",
|
||||
"HeaderSeries": "シリーズ",
|
||||
"HeaderSeriesOptions": "シリーズオプション",
|
||||
|
@ -633,7 +628,7 @@
|
|||
"OneChannel": "1チャンネル",
|
||||
"TabDevices": "デバイス",
|
||||
"ValueContainer": "コンテナ: {0}",
|
||||
"ImportFavoriteChannelsHelp": "有効にすると、チューナーのデバイスのお気に入りのチャンネルのみインポートされます。",
|
||||
"ImportFavoriteChannelsHelp": "チューナーでのお気に入りのチャンネルのみインポートされます。",
|
||||
"MusicAlbum": "ミュージックアルバム",
|
||||
"OptionDownloadLogoImage": "ロゴ",
|
||||
"OptionEnableAccessToAllChannels": "すべてのチャンネルへのアクセスを有効化",
|
||||
|
@ -657,9 +652,9 @@
|
|||
"LabelCriticRating": "評論家の評価:",
|
||||
"LabelCurrentPassword": "現在のパスワード:",
|
||||
"LabelCustomCss": "カスタムCSS:",
|
||||
"LabelCustomCssHelp": "ウェブインターフェースにカスタムスタイリングを適応する。",
|
||||
"LabelCustomCssHelp": "ウェブインターフェースにカスタムスタイルを適応する。",
|
||||
"LabelCustomDeviceDisplayName": "表示名:",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "クライアント探索間隔 (秒)",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "クライアント探索間隔",
|
||||
"LabelParentalRating": "個人評価:",
|
||||
"LabelPassword": "パスワード:",
|
||||
"LabelPasswordConfirm": "パスワード (確認):",
|
||||
|
@ -682,7 +677,7 @@
|
|||
"LabelBirthDate": "誕生日:",
|
||||
"LabelBitrate": "ビットレート:",
|
||||
"LabelBirthYear": "生年:",
|
||||
"LabelBlastMessageInterval": "アライブメッセージ間隔 (秒)",
|
||||
"LabelBlastMessageInterval": "アライブメッセージ間隔",
|
||||
"LabelCache": "キャッシュ:",
|
||||
"LabelDisplayMode": "表示モード:",
|
||||
"LabelDisplayOrder": "表示順:",
|
||||
|
@ -765,7 +760,6 @@
|
|||
"TabCodecs": "コーデック",
|
||||
"TabContainers": "コンテナ",
|
||||
"Rewind": "巻き戻す",
|
||||
"RunAtStartup": "スタートアップに起動",
|
||||
"Runtime": "実行時間",
|
||||
"Saturday": "土曜日",
|
||||
"SaveSubtitlesIntoMediaFolders": "字幕をメディアフォルダーに保存",
|
||||
|
@ -803,7 +797,6 @@
|
|||
"ValueTimeLimitMultiHour": "タイムリミット: {0} 時間",
|
||||
"ValueVideoCodec": "映像コーデック: {0}",
|
||||
"Vertical": "垂直",
|
||||
"VideoRange": "映像範囲",
|
||||
"ViewAlbum": "アルバムを見る",
|
||||
"ViewPlaybackInfo": "プレイバック情報を見る",
|
||||
"Watched": "視聴済み",
|
||||
|
@ -849,8 +842,6 @@
|
|||
"LabelAlbumArtPN": "アルバムアートPN:",
|
||||
"LabelAlbumArtists": "アルバムアーティスト:",
|
||||
"LabelAllowHWTranscoding": "ハードウェアトランスコーディングを許可",
|
||||
"LabelAllowServerAutoRestart": "アップデートを適応するためにサーバーの再起動を許可",
|
||||
"LabelAllowServerAutoRestartHelp": "サーバーはユーザーがログインしていないときのみ再起動します。",
|
||||
"LabelAllowedRemoteAddresses": "リモートIPアドレスフィルター:",
|
||||
"LabelAppNameExample": "例: スケートボード、ソナー",
|
||||
"LabelArtists": "アーティスト:",
|
||||
|
@ -870,7 +861,6 @@
|
|||
"LabelCommunityRating": "コミュニティ評価:",
|
||||
"LabelContentType": "コンテンツタイプ:",
|
||||
"LabelCountry": "国:",
|
||||
"LabelDashboardTheme": "サーバーダッシュボードテーマ:",
|
||||
"LabelPublicHttpsPortHelp": "公開ポート番号はローカルHTTPSポートにマッピングしてください。",
|
||||
"LabelAlbumArtMaxWidth": "アルバムアート最大高さ:",
|
||||
"LabelAlbumArtMaxHeight": "アルバムアート最大高さ:",
|
||||
|
@ -929,10 +919,8 @@
|
|||
"LabelSelectVersionToInstall": "インストールするバージョンを選択:",
|
||||
"LabelSerialNumber": "シリアルナンバー",
|
||||
"LabelServerHost": "ホスト:",
|
||||
"LabelSkin": "スキン:",
|
||||
"Premiere": "初日",
|
||||
"LabelSaveLocalMetadata": "アートワークをメディアフォルダーに保存",
|
||||
"LabelSoundEffects": "音響効果:",
|
||||
"LabelSource": "ソース:",
|
||||
"LabelSportsCategories": "スポーツカテゴリ:",
|
||||
"LabelStatus": "ステータス:",
|
||||
|
@ -960,13 +948,11 @@
|
|||
"DashboardArchitecture": "アーキテクチャ: {0}",
|
||||
"LabelVideo": "映像",
|
||||
"LabelVideoBitrate": "映像ビットレート:",
|
||||
"LabelYourFirstName": "名前:",
|
||||
"Share": "共有",
|
||||
"LabelSize": "大きさ:",
|
||||
"LatestFromLibrary": "最新 {0}",
|
||||
"LearnHowYouCanContribute": "コントリビュートする方法を知る。",
|
||||
"LabelTagline": "キャッチフレーズ:",
|
||||
"LinksValue": "リンク: {0}",
|
||||
"Live": "ライブ",
|
||||
"LiveBroadcasts": "ライブブロードキャスト",
|
||||
"LiveTV": "ライブTV",
|
||||
|
@ -983,7 +969,6 @@
|
|||
"MediaInfoResolution": "解像度",
|
||||
"MediaInfoSampleRate": "サンプルレート",
|
||||
"MediaInfoSize": "大きさ",
|
||||
"MediaInfoSoftware": "ソフトウェア",
|
||||
"MediaInfoStreamTypeAudio": "音声",
|
||||
"MediaInfoStreamTypeData": "データ",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "埋め込み画像",
|
||||
|
@ -1070,7 +1055,6 @@
|
|||
"TabNotifications": "通知",
|
||||
"TabOther": "その他",
|
||||
"TabParentalControl": "ペアレンタルコントロール",
|
||||
"TabPlaylist": "プレイリスト",
|
||||
"TabPlaylists": "プレイリスト",
|
||||
"TabPlugins": "プラグイン",
|
||||
"TabProfile": "プロフィール",
|
||||
|
@ -1106,18 +1090,17 @@
|
|||
"ValueTimeLimitSingleHour": "タイムリミット: 1 時間",
|
||||
"Wednesday": "水曜日",
|
||||
"LabelPreferredDisplayLanguage": "優先する表示言語:",
|
||||
"ImportMissingEpisodesHelp": "有効にすると、所有してないエピソードの情報がJellyfinデータベースにインポートされ、シーズンとシリーズに表示されます。これは、ライブラリスキャンに莫大な時間が掛かる可能性があります。",
|
||||
"ImportMissingEpisodesHelp": "所有してないエピソードの情報がデータベースにインポートされ、シーズンとシリーズ内に表示されます。ライブラリの読み込み時間が非常に長くなる可能性があります。",
|
||||
"LabelBindToLocalNetworkAddress": "ローカルネットワークアドレスにバインド:",
|
||||
"LabelDownMixAudioScale": "ダウンミキシング時の音声ブースト:",
|
||||
"HeaderNavigation": "ナビゲーション",
|
||||
"CopyStreamURLError": "URLのコピー中にエラーが発生しました。",
|
||||
"ButtonSplit": "分ける",
|
||||
"LabelEnableDlnaServer": "DLNAサーバーの有効化",
|
||||
"LabelEnableDlnaDebugLogging": "DLNAデバッグログの有効化",
|
||||
"LabelDroppedFrames": "ドロップフレーム:",
|
||||
"LabelDisplayMissingEpisodesWithinSeasons": "シーズン中の見つからなかったエピソードを表示",
|
||||
"LabelCustomDeviceDisplayNameHelp": "任意の表示名を提供するか、空白のままにしてデバイスネームで報告する。",
|
||||
"LabelArtistsHelp": "分けますと使用;",
|
||||
"LabelArtistsHelp": "複数のアーティストは「;」で分ける。",
|
||||
"Identify": "識別する",
|
||||
"TabRecordings": "録画",
|
||||
"Recordings": "録画",
|
||||
|
@ -1132,7 +1115,7 @@
|
|||
"LabelEveryXMinutes": "毎:",
|
||||
"LabelEnableSingleImageInDidlLimit": "単一の埋め込み画像に制限",
|
||||
"LabelEnableBlastAliveMessages": "アライブメッセージを配信する",
|
||||
"LabelDateAddedBehaviorHelp": "メタデータある場合、これらのオプションの前にメタデータ使います。",
|
||||
"LabelDateAddedBehaviorHelp": "メタデータがある場合、これらのオプションの前に優先します。",
|
||||
"AskAdminToCreateLibrary": "管理者にライブラリを作成する依頼をしてください。",
|
||||
"AllowFfmpegThrottling": "トランスコードをスロットルする",
|
||||
"Episode": "エピソード",
|
||||
|
@ -1174,7 +1157,7 @@
|
|||
"LabelEmbedAlbumArtDidlHelp": "一部のデバイスでは、アルバムアートを取得するためにこの方法が好まれています。その他のデバイスでは、このオプションを有効にしても再生できない場合があります。",
|
||||
"LabelDownMixAudioScaleHelp": "ダウンミックス時にオーディオの音量を増幅します。値が 1 の場合、元の音量を維持します。",
|
||||
"LabelEnableHttps": "HTTPS を有効にする",
|
||||
"LabelEnableDlnaPlayToHelp": "ネットワーク内のデバイスを検出し、それらをリモートコントロールできるようにします。",
|
||||
"LabelEnableDlnaPlayToHelp": "ネットワーク内のデバイスを検出し、それらをリモートで操作できるようにします。",
|
||||
"LabelEnableDlnaPlayTo": "DLNA 再生を有効にする",
|
||||
"LabelEnableDlnaDebugLoggingHelp": "巨大なログファイルを作成します。トラブルシューティングでの必要な際にだけ使用してください。",
|
||||
"LabelEnableDlnaClientDiscoveryIntervalHelp": "Jellyfin が実行する SSDP 検索の間隔を決めます(秒単位)。",
|
||||
|
@ -1200,7 +1183,6 @@
|
|||
"LabelNumberOfGuideDaysHelp": "多くの日数分のガイドデータをダウンロードするとより先のスケジュールとリストを見ることができるようになりますが,ダウンロードに時間がかかるようになります。自動に設定するとチャンネル数を基に選択されます。",
|
||||
"LabelNumberOfGuideDays": "ガイドデータをダウンロードする日数:",
|
||||
"LabelNewsCategories": "ニュースのカテゴリ:",
|
||||
"LabelNightly": "最新・不安定版",
|
||||
"LabelStable": "安定版",
|
||||
"LabelChromecastVersion": "Chromecastバージョン",
|
||||
"LabelMusicStreamingTranscodingBitrateHelp": "音楽ストリーミングの最大ビットレートを指定します。",
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"AccessRestrictedTryAgainLater": "Aǵymda qatynaý shektelgen. Áreketti keıin qaıtalańyz.",
|
||||
"Actor": "Aktór",
|
||||
"Add": "Ústeý",
|
||||
"AddItemToCollectionHelp": "Tarmaqtardy izdep jáne tintýirdiń oń jaq túımeshign basyp jıyntyqtarǵa tarmaqtardy ústeńiz nemese jıyntyqqa ústeý úshin mázirlerdi túrtińiz.",
|
||||
"AddToCollection": "Jıyntyqqa ústeý",
|
||||
"AddToPlayQueue": "Oınatý kezegine ústeý",
|
||||
"AddToPlaylist": "Oınatý tizimine ústeý",
|
||||
|
@ -40,7 +39,6 @@
|
|||
"AttributeNew": "Jańa",
|
||||
"Audio": "Dybys",
|
||||
"Auto": "Avtomatty",
|
||||
"AutoBasedOnLanguageSetting": "Avtomatty (til teńshelimi negizinde)",
|
||||
"Backdrop": "Artqy sýret",
|
||||
"Backdrops": "Artqy sýretter",
|
||||
"Banner": "Baner",
|
||||
|
@ -84,7 +82,6 @@
|
|||
"ButtonHelp": "Anyqtama",
|
||||
"ButtonHome": "Basqyǵa",
|
||||
"ButtonInfo": "Aqparatqa",
|
||||
"ButtonLearnMore": "Kóbirek bilý",
|
||||
"ButtonLibraryAccess": "Tasyǵyshhanǵa qatynaý",
|
||||
"ButtonManualLogin": "Qolmen kirý",
|
||||
"ButtonMore": "Kóbirek",
|
||||
|
@ -130,7 +127,6 @@
|
|||
"ButtonTrailer": "Treıler",
|
||||
"ButtonUninstall": "Ornatymdy joıý",
|
||||
"ButtonUp": "Joǵaryǵa",
|
||||
"ButtonViewWebsite": "Ýeb-saıtyn qaraý",
|
||||
"ButtonWebsite": "Ýeb-saıty",
|
||||
"CancelRecording": "Jazýdy boldyrmaý",
|
||||
"CancelSeries": "Telehıkaıany boldyrmaý",
|
||||
|
@ -294,7 +290,6 @@
|
|||
"HeaderAppearsOn": "Kórýge bolady",
|
||||
"HeaderAudioBooks": "Dybystyq kitaptar",
|
||||
"HeaderAudioSettings": "Dybys parametrleri",
|
||||
"HeaderAutomaticUpdates": "Avtomatty jańartýlar",
|
||||
"HeaderBlockItemsWithNoRating": "Jastas sanaty týraly aqparaty joq nemese ol tanylmaǵan mazmundy qursaýlaý:",
|
||||
"HeaderBooks": "Kitaptar",
|
||||
"HeaderBranding": "Bezendirý",
|
||||
|
@ -515,8 +510,6 @@
|
|||
"LabelAlbumArtists": "Álbom oryndaýshylary:",
|
||||
"LabelAll": "Barlyq",
|
||||
"LabelAllowHWTranscoding": "Apparattyq qaıta kodtaýǵa ruqsat etý",
|
||||
"LabelAllowServerAutoRestart": "Jańartýlardy qoldaný úshin serverge qaıta iske qosylýdy ruqsat etý",
|
||||
"LabelAllowServerAutoRestartHelp": "Tek qana eshqandaı paıdalýnshylar belsendi emes áreketsiz mezgilderde server qaıta iske qosylady.",
|
||||
"LabelAllowedRemoteAddresses": "Qashyqtaǵy IP-mekenjaı súzgisi:",
|
||||
"LabelAllowedRemoteAddressesMode": "Qashyqtaǵy IP-mekenjaı súzgisiniń rejimi:",
|
||||
"LabelAppName": "Qoldanba aty",
|
||||
|
@ -554,7 +547,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Beınelený aty:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Beınelenetin teńshelgen atyn usynyńyz nemese qurylǵy arqyly baıandalǵan atyn paıdalaný úshin bos qaldyryńyz.",
|
||||
"LabelCustomRating": "Teńshelgen sanat:",
|
||||
"LabelDashboardTheme": "Server taqtasynyń taqyryby:",
|
||||
"LabelDateAdded": "Ústelgen kúni:",
|
||||
"LabelDateAddedBehavior": "Jańa mazmun úshin qosylǵan kúni tártibi:",
|
||||
"LabelDateAddedBehaviorHelp": "Eger metaderekterde máni bolsa, bul qaısybir osy opsıalarydyń aldynda árqashanda paıdalanylady.",
|
||||
|
@ -766,7 +758,6 @@
|
|||
"LabelServerHost": "Host:",
|
||||
"LabelServerHostHelp": "192.168.1.100:8096 nemese https://myserver.com",
|
||||
"LabelSimultaneousConnectionLimit": "Bir mezgildegi aǵyndardyń shegi:",
|
||||
"LabelSkin": "Muqaba:",
|
||||
"LabelSkipBackLength": "Artqa ótkizip jiberý uzaqtyǵy:",
|
||||
"LabelSkipForwardLength": "Alǵa ótkizip jiberý uzaqtyǵy:",
|
||||
"LabelSkipIfAudioTrackPresent": "Eger ádepki dybys jolshyǵy júktep alynatyn tilge sáıkes kelse ótkizip jiberý",
|
||||
|
@ -778,7 +769,6 @@
|
|||
"LabelSortBy": "Suryptaý tásili:",
|
||||
"LabelSortOrder": "Suryptaý reti:",
|
||||
"LabelSortTitle": "Ataý boıynsha suryptaý:",
|
||||
"LabelSoundEffects": "Dybystyq áserleri:",
|
||||
"LabelSource": "Qaınar kózi:",
|
||||
"LabelSpecialSeasonsDisplayName": "Arnaıy maýsymdyń beıneleý aty:",
|
||||
"LabelSportsCategories": "Sporttyq sanattary:",
|
||||
|
@ -832,7 +822,6 @@
|
|||
"LabelXDlnaDoc": "X-DLNA tásimi:",
|
||||
"LabelXDlnaDocHelp": "urn:schemas-dlna-org:device-1-0 ataýlar keńistigindegi X_DLNADOC elementi mazmunyn anyqtaıdy.",
|
||||
"LabelYear": "Jyl:",
|
||||
"LabelYourFirstName": "Atyńyz:",
|
||||
"LabelYoureDone": "Siz daıynsyz!",
|
||||
"LabelZipCode": "Poshta kody:",
|
||||
"LabelffmpegPath": "FFmpeg joly:",
|
||||
|
@ -843,7 +832,6 @@
|
|||
"LearnHowYouCanContribute": "Qalaı úles qosýynyńyz múmkin týraly úırenińiz.",
|
||||
"LibraryAccessHelp": "Bul paıdalanýshymen ortaqtasý úshin tasyǵyshhanalardy bólekteńiz. Metaderek retteýshini paıdalanyp ákimshiler barlyq qaltalardy óńdeýi múmkin.",
|
||||
"Like": "Unaıdy",
|
||||
"LinksValue": "Siltemeler: {0}",
|
||||
"List": "Tizim",
|
||||
"Live": "Tikeleı",
|
||||
"LiveBroadcasts": "Tikeleı taratymdar",
|
||||
|
@ -902,7 +890,6 @@
|
|||
"MessageFileReadError": "Faıl oqý kezinde qate oryn aldy. Áreketti keıin qaıtalańyz.",
|
||||
"MessageForgotPasswordFileCreated": "Kelesi faıl serverińizde jasaldy jáne qalaı kirisý týraly nusqaýlar ishinde bar:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Paróldi ysyrý prosesi úshin áreketti úılik jelińizdiń ishinde qaıtalańyz.",
|
||||
"MessageInstallPluginFromApp": "Bul plagın qandaı qoldanbaǵa taǵaıyndalsa, sonyń ishinen ornatylýy tıisti.",
|
||||
"MessageInvalidForgotPasswordPin": "Jaramsyz nemese merzimi aıaqtalǵan PIN-kod engizildi. Áreketti qaıtalańyz.",
|
||||
"MessageInvalidUser": "Jaramsyz paıdalanýshy aty nemese paról. Áreketti qaıtalańyz.",
|
||||
"MessageItemSaved": "Tarmaq saqtaldy.",
|
||||
|
@ -1144,7 +1131,6 @@
|
|||
"ProductionLocations": "Óndirý oryndary",
|
||||
"Programs": "Kórsetimder",
|
||||
"Quality": "Sapasy",
|
||||
"QueueAllFromHere": "Bul aradan bárin kezekke",
|
||||
"Raised": "Dónesti",
|
||||
"Rate": "Baǵalaý",
|
||||
"RecentlyWatched": "Jýyqta qaralǵan",
|
||||
|
@ -1175,7 +1161,6 @@
|
|||
"ReplaceExistingImages": "Bar sýretterdi aýystyrý",
|
||||
"ResumeAt": "{0} bastap jalǵastyrý",
|
||||
"Rewind": "Shegindirý",
|
||||
"RunAtStartup": "Iske qosylýdan bastap oryndaý",
|
||||
"Runtime": "Uzaqtyǵy",
|
||||
"Saturday": "senbi",
|
||||
"Save": "Saqtaý",
|
||||
|
@ -1271,7 +1256,6 @@
|
|||
"TabParentalControl": "Mazmundy basqarý",
|
||||
"TabPassword": "Paról",
|
||||
"TabPlayback": "Oınatý",
|
||||
"TabPlaylist": "Oınatý tizimi",
|
||||
"TabPlaylists": "Oınatý tizimderi",
|
||||
"TabPlugins": "Plagınder",
|
||||
"TabProfile": "Profaıl",
|
||||
|
@ -1342,7 +1326,6 @@
|
|||
"ValueTimeLimitSingleHour": "Ýaqyt shegi: 1 saǵat",
|
||||
"ValueVideoCodec": "Beıne kodegi: {0}",
|
||||
"Vertical": "Tiginen",
|
||||
"VideoRange": "Beıne aýqymy",
|
||||
"ViewAlbum": "Álbomdy qaraý",
|
||||
"ViewPlaybackInfo": "Oınatý týraly aqparat",
|
||||
"Watched": "Qaralǵan",
|
||||
|
@ -1385,9 +1368,6 @@
|
|||
"DashboardOperatingSystem": "Operasıalyq júıe: {0}",
|
||||
"DashboardArchitecture": "Arhıtektýrasy: {0}",
|
||||
"LabelWeb": "Ýeb:",
|
||||
"LaunchWebAppOnStartup": "Serverdi iske qosqan kezde ýeb-ınterfeısti iske qosý",
|
||||
"LaunchWebAppOnStartupHelp": "Server bastapqyda iske qosylǵan kezde, ýeb-klıent ádepki sholǵyshta ashylady. Bul serverdi qaıta iske qosý fýnksıasyn qoldanǵanda oryn almaıdy.",
|
||||
"MediaInfoSoftware": "Baǵdarlamalyq jasaqtama",
|
||||
"MediaInfoStreamTypeAudio": "Dybys",
|
||||
"MediaInfoStreamTypeData": "Derekter",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Endirilgen sýret",
|
||||
|
@ -1450,7 +1430,6 @@
|
|||
"LabelDroppedFrames": "Ótkizilgen kadrlar:",
|
||||
"LabelCorruptedFrames": "Búlingen kadrlar:",
|
||||
"HeaderNavigation": "Sharlaý",
|
||||
"CopyStreamURLError": "URL kóshirgende qate oryn aldy.",
|
||||
"ButtonSplit": "Bólý",
|
||||
"AskAdminToCreateLibrary": "Tasýǵyshanany jasaý úshin ákimshiden suraý.",
|
||||
"AllowFfmpegThrottling": "Qaıta kodtaýdy retteý",
|
||||
|
@ -1473,9 +1452,7 @@
|
|||
"Yadif": "YADIF",
|
||||
"Track": "Jolshyq",
|
||||
"Season": "Maýsym",
|
||||
"ReleaseGroup": "Shyǵarýshy top",
|
||||
"Person": "Tulǵa",
|
||||
"OtherArtist": "Basqa oryndaýshy",
|
||||
"Movie": "Fılm",
|
||||
"LabelLibraryPageSize": "Tasyǵyshhana betiniń ólshemi:",
|
||||
"Episode": "Bólim",
|
||||
|
@ -1497,7 +1474,6 @@
|
|||
"MillisecondsUnit": "ms",
|
||||
"LabelSyncPlayTimeOffset": "Server ýaqtynan aýytqýy:",
|
||||
"LabelRequireHttps": "HTTPS qajet etedi",
|
||||
"LabelNightly": "Túngi",
|
||||
"LabelStable": "Turaqty",
|
||||
"LabelChromecastVersion": "Chromecast nusqasy",
|
||||
"LabelEnableHttps": "HTTPS qosý",
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
"ButtonHelp": "도움말",
|
||||
"ButtonHome": "홈",
|
||||
"ButtonInfo": "정보",
|
||||
"ButtonLearnMore": "더 알아보기",
|
||||
"ButtonManualLogin": "수동 로그인",
|
||||
"ButtonMore": "더 보기",
|
||||
"ButtonNetwork": "네트워크",
|
||||
|
@ -76,7 +75,6 @@
|
|||
"ButtonSubmit": "제출",
|
||||
"ButtonSubtitles": "자막",
|
||||
"ButtonUninstall": "제거",
|
||||
"ButtonViewWebsite": "웹사이트 보기",
|
||||
"ButtonWebsite": "웹사이트",
|
||||
"ChannelAccessHelp": "이 사용자와 공유할 채널을 선택합니다. 관리자는 메타데이터 매니저를 사용하여 모든 채널을 수정할 수 있습니다.",
|
||||
"CinemaModeConfigurationHelp": "시네마 모드는 본 영화 전에 예고편과 소개 영상 등을 재생하여 사용자의 거실에서 극장의 경험을 제공합니다.",
|
||||
|
@ -135,7 +133,6 @@
|
|||
"HeaderApiKeys": "API 키",
|
||||
"HeaderApp": "앱",
|
||||
"HeaderAudioSettings": "오디오 설정",
|
||||
"HeaderAutomaticUpdates": "자동 업데이트",
|
||||
"HeaderBooks": "도서",
|
||||
"HeaderBranding": "브랜딩",
|
||||
"HeaderCastCrew": "배역 및 제작진",
|
||||
|
@ -274,8 +271,6 @@
|
|||
"LabelAlbumArtPN": "앨범 아트 PN:",
|
||||
"LabelAlbumArtists": "앨범 아티스트:",
|
||||
"LabelAll": "모두",
|
||||
"LabelAllowServerAutoRestart": "서버가 자동으로 업데이트를 적용하도록 재시작 허용",
|
||||
"LabelAllowServerAutoRestartHelp": "서버를 활성화된 사용자가 없는 유휴 기간에 다시 시작합니다.",
|
||||
"LabelAppName": "앱 이름",
|
||||
"LabelArtists": "아티스트:",
|
||||
"LabelArtistsHelp": "; 를 사용하여 여러 개 분리",
|
||||
|
@ -466,7 +461,6 @@
|
|||
"LabelUserLibraryHelp": "장치에 어떤 사용자 라이브러리를 보여줄 지 선택합니다. 기본 설정을 사용하려면 비워두십시오.",
|
||||
"LabelUsername": "사용자명:",
|
||||
"LabelVersionInstalled": "{0} 설치됨",
|
||||
"LabelYourFirstName": "이름:",
|
||||
"LabelYoureDone": "완료!",
|
||||
"LabelZipCode": "우편 번호:",
|
||||
"LibraryAccessHelp": "이 사용자와 공유할 라이브러리를 선택합니다. 관리자는 메타데이터 관리자를 사용하여 모든 폴더를 수정할 수 있습니다.",
|
||||
|
@ -659,7 +653,6 @@
|
|||
"PleaseSelectTwoItems": "최소 두 개의 항목을 선택하세요.",
|
||||
"Premiere": "프리미어",
|
||||
"Producer": "프로듀서",
|
||||
"QueueAllFromHere": "여기부터 모두 대기열에 추가",
|
||||
"RecommendationBecauseYouLike": "{0} 을(를) 좋아하기 때문에",
|
||||
"RecommendationBecauseYouWatched": "{0} 을(를) 시청했기 때문에",
|
||||
"RecommendationDirectedBy": "{0} 감독",
|
||||
|
@ -722,7 +715,6 @@
|
|||
"TabParentalControl": "자녀 보호",
|
||||
"TabPassword": "비밀번호",
|
||||
"TabPlayback": "재생",
|
||||
"TabPlaylist": "재생목록",
|
||||
"TabPlaylists": "재생목록",
|
||||
"TabPlugins": "플러그인",
|
||||
"TabProfile": "프로필",
|
||||
|
@ -800,7 +792,6 @@
|
|||
"Shows": "쇼",
|
||||
"Songs": "노래",
|
||||
"Sync": "동기화",
|
||||
"AddItemToCollectionHelp": "항목을 컬렉션에 추가하려면 검색한 뒤 우클릭이나 탭 매뉴를 이용하십시오.",
|
||||
"AddToCollection": "컬렉션에 추가",
|
||||
"AddToPlayQueue": "재생 대기열에 추가",
|
||||
"AddedOnValue": "{0} 추가됨",
|
||||
|
@ -825,7 +816,6 @@
|
|||
"AspectRatio": "종횡비",
|
||||
"AuthProviderHelp": "이 사용자의 비밀번호를 인증할 때 사용할 인증 서비스 제공자를 선택하십시오.",
|
||||
"Auto": "자동",
|
||||
"AutoBasedOnLanguageSetting": "자동 (언어 설정을 따름)",
|
||||
"Backdrop": "배경",
|
||||
"Banner": "배너",
|
||||
"BookLibraryHelp": "오디오 혹은 텍스트 도서가 지원됩니다. {0}도서 작명 가이드{1}를 참고하십시오.",
|
||||
|
@ -896,7 +886,6 @@
|
|||
"Yes": "예",
|
||||
"Whitelist": "화이트리스트",
|
||||
"ViewPlaybackInfo": "재생 정보 보기",
|
||||
"VideoRange": "비디오 길이",
|
||||
"ValueSeconds": "{0}초",
|
||||
"Upload": "업로드",
|
||||
"Unrated": "평점을 매기지 않음",
|
||||
|
@ -1004,7 +993,6 @@
|
|||
"MediaInfoStreamTypeEmbeddedImage": "내장된 이미지",
|
||||
"MediaInfoStreamTypeData": "데이터",
|
||||
"MediaInfoStreamTypeAudio": "오디오",
|
||||
"MediaInfoSoftware": "소프트웨어",
|
||||
"MediaInfoTimestamp": "타임스탬프",
|
||||
"MediaInfoSize": "크기",
|
||||
"MediaInfoLevel": "수준",
|
||||
|
@ -1070,7 +1058,6 @@
|
|||
"LabelDynamicExternalId": "{0} ID:",
|
||||
"LabelDisplayLanguageHelp": "Jellyfin 번역은 진행 중인 프로젝트입니다.",
|
||||
"LabelDisplayLanguage": "표시 언어:",
|
||||
"LabelDashboardTheme": "서버 대시보드 테마:",
|
||||
"LabelChannels": "채널:",
|
||||
"LabelCancelled": "취소됨",
|
||||
"LabelBitrate": "비트레이트:",
|
||||
|
@ -1104,7 +1091,6 @@
|
|||
"MessageDownloadQueued": "다운로드 대기 중.",
|
||||
"MessageDirectoryPickerLinuxInstruction": "Linux on Arch Linux, CentOS, Debian, Fedora, OpenSUSE, Ubuntu의 경우 서비스 사용자에게 최소한 저장 위치에 대한 읽기 권한을 부여해야 합니다.",
|
||||
"MessageDirectoryPickerBSDInstruction": "BSD의 경우, Jellyfin이 FreeNAS Jail에 액세스할 수 있도록 하려면 FreeNAS Jail 내에 스토리지를 구성해야 할 수도 있습니다.",
|
||||
"LinksValue": "링크: {0}",
|
||||
"LatestFromLibrary": "최근 {0}",
|
||||
"LabelYear": "년도:",
|
||||
"LabelVaapiDeviceHelp": "하드웨어 가속에 쓰이는 렌더 노드입니다.",
|
||||
|
@ -1113,7 +1099,6 @@
|
|||
"LabelTranscodingThreadCountHelp": "트랜스코딩에 사용할 스레드의 최대 갯수를 선택하십시오. 스레드의 갯수를 줄이면 CPU사용량이 줄어들지만, 부드러운 재생에 필요한 만큼 빠르게 변환되지 않을 수 있습니다.",
|
||||
"LabelTranscodingThreadCount": "트랜스코딩 스레드 수:",
|
||||
"LabelTextBackgroundColor": "글자 배경 색깔:",
|
||||
"LabelSoundEffects": "음향 효과:",
|
||||
"LabelSortTitle": "제목 정렬:",
|
||||
"LabelSortOrder": "정렬 순서:",
|
||||
"LabelSortBy": "정렬 기준:",
|
||||
|
@ -1167,7 +1152,6 @@
|
|||
"LiveBroadcasts": "실시간 방송",
|
||||
"LabelTypeMetadataDownloaders": "{0} 메타데이터 다운로더:",
|
||||
"LabelType": "유형:",
|
||||
"LabelSkin": "스킨:",
|
||||
"LabelPleaseRestart": "변경사항은 웹 클라이언트를 다시 불러오면 적용됩니다.",
|
||||
"LabelPlayMethod": "재생 방식:",
|
||||
"LabelPersonRoleHelp": "예시: Ice cream truch driver",
|
||||
|
@ -1254,7 +1238,6 @@
|
|||
"H264CrfHelp": "CRF(고정 레이트 팩터)는 x264 인코더의 기본 품질 설정입니다. 0에서 51 사이의 값을 설정할 수 있습니다. 값이 작을수록 품질이 향상됩니다(파일 크기가 커지면서). Sane 값은 18과 28 사이입니다. x264의 기본값은 23이므로 시작점으로 사용할 수 있습니다.",
|
||||
"LabelSeasonNumber": "시즌 번호:",
|
||||
"LabelPlayer": "재생기:",
|
||||
"LaunchWebAppOnStartup": "서버를 시작할 때 웹 인터페이스 실행",
|
||||
"MediaInfoBitDepth": "비트뎁스",
|
||||
"LabelPostProcessor": "후처리 애플리케이션:",
|
||||
"RefreshQueued": "새로 고침 대기 중",
|
||||
|
@ -1282,7 +1265,6 @@
|
|||
"Features": "기능",
|
||||
"ErrorPleaseSelectLineup": "라인업을 선택하고 다시 시도하십시오. 이용 가능한 라인업이 없으면 계정, 비밀번호, 우편번호가 정확한지 확인하십시오.",
|
||||
"ErrorAddingListingsToSchedulesDirect": "Schedules Direct 계정에 라인업을 추가하는 중에 오류가 발생했습니다. Schedules Direct는 계정 당 제한된 수의 라인업만이 허용됩니다. 계속하려면 Schedules Direct 웹사이트에 로그인하여 다른 항목을 삭제해야 할 수 있습니다.",
|
||||
"CopyStreamURLError": "URL을 복사하는 중에 오류가 발생했습니다.",
|
||||
"ColorTransfer": "컬러 변환",
|
||||
"AskAdminToCreateLibrary": "라이브러리를 생성하려면 관리자에게 문의하십시오.",
|
||||
"LabelCorruptedFrames": "손상된 프레임:",
|
||||
|
@ -1306,7 +1288,6 @@
|
|||
"AllowFfmpegThrottlingHelp": "트랜스코딩이나 리먹스 작업이 현재 재생 중인 위치를 넘어 충분히 진행되면 리소스를 절약하기 위해 작업을 중지합니다. 이는 재생 구간을 자주 변경하지 않을 경우에 가장 적합합니다. 재생 시 문제가 발생하면 이 항목을 비활성화하십시오.",
|
||||
"AllowFfmpegThrottling": "트랜스코딩 시 스로틀링",
|
||||
"MessageLeaveEmptyToInherit": "상위 항목의 설정이나 전역 설정값을 그대로 적용하기 위해서는 공백으로 두십시오.",
|
||||
"MessageInstallPluginFromApp": "이 플러그인은 사용할 앱 내부에서 설치해야 합니다.",
|
||||
"MessageImageTypeNotSelected": "드롭다운 메뉴에서 이미지 유형을 선택하십시오.",
|
||||
"MessageCreateAccountAt": "{0}에서 계정 만들기",
|
||||
"MessageConfirmRevokeApiKey": "정말 api 키를 무효화하시겠습니까? Jellyfin 서버와의 연결이 예고 없이 중단될 수 있습니다.",
|
||||
|
@ -1315,7 +1296,6 @@
|
|||
"MediaInfoRefFrames": "참조 프레임",
|
||||
"MediaInfoPixelFormat": "픽셀 형식",
|
||||
"MapChannels": "채널 매핑",
|
||||
"LaunchWebAppOnStartupHelp": "서버가 처음 시작되면 웹 브라우저에서 웹 클라이언트를 실행하십시오. 서버 재시작의 경우에는 적용되지 않습니다.",
|
||||
"Large": "크게",
|
||||
"LanNetworksHelp": "대역폭을 강제로 제한할 때 로컬 네트워크로 간주되는 쉼표로 구분된 IP 주소 및 IP/서브넷 마스크 목록입니다. 지정될 경우 모든 다른 IP 주소는 외부 네트워크로 간주되며 외부 대역폭 제한이 적용됩니다. 공백일 경우 서버의 서브넷만이 로컬 네트워크로 간주됩니다.",
|
||||
"LabelffmpegPathHelp": "ffmpeg 실행 파일 혹은 ffmpeg를 포함하는 폴더 경로입니다.",
|
||||
|
@ -1416,13 +1396,11 @@
|
|||
"NoSubtitlesHelp": "자막을 자동으로 불러오지 않습니다. 재생 중에 수동으로 켤 수 있습니다.",
|
||||
"MusicLibraryHelp": "{0}음악 이름 지정 규칙{1}을 확인하십시오.",
|
||||
"MovieLibraryHelp": "{0}영화 이름 지정 규칙{1}을 확인하십시오.",
|
||||
"MessageUnauthorizedUser": "현재 서버에 접속할 권한이 없습니다. 자세한 정보는 서버 관리자에게 문의하십시오.",
|
||||
"HeaderFavoritePlaylists": "즐겨찾는 플레이리스트",
|
||||
"ButtonTogglePlaylist": "플레이리스트",
|
||||
"ButtonToggleContextMenu": "더보기",
|
||||
"Rate": "평",
|
||||
"PerfectMatch": "정확히 일치",
|
||||
"OtherArtist": "다른 아티스트",
|
||||
"ButtonSyncPlay": "SyncPlay",
|
||||
"HeaderDVR": "DVR",
|
||||
"EnableDecodingColorDepth10Vp9": "10비트 VP9하드웨어 디코딩 사용합니다",
|
||||
|
|
|
@ -99,7 +99,6 @@
|
|||
"HeaderAddToPlaylist": "Pridėti į grojaraštį",
|
||||
"HeaderAddUser": "Pridėti vartotoją",
|
||||
"HeaderAdditionalParts": "Papildomos dalys",
|
||||
"HeaderAutomaticUpdates": "Automatiniai atnaujinimai",
|
||||
"HeaderCancelRecording": "Atšaukti įrašymą",
|
||||
"HeaderCancelSeries": "Atšaukti laidą",
|
||||
"HeaderCastCrew": "Kūrėjai",
|
||||
|
@ -161,8 +160,6 @@
|
|||
"LabelAirsBeforeSeason": "Rodoma prieš sezoną:",
|
||||
"LabelAlbum": "Albumas:",
|
||||
"LabelAlbumArtists": "Albumo atlikėjai:",
|
||||
"LabelAllowServerAutoRestart": "Leisti serveriui automatiškai persikrauti pritaikant atnaujinimus",
|
||||
"LabelAllowServerAutoRestartHelp": "Serveris persikraus tik neveikimo metu, kai nebus aktyvus nei vienas vartotojas.",
|
||||
"LabelArtists": "Atlikėjai:",
|
||||
"LabelArtistsHelp": "Atskirti kelis naudojant ;",
|
||||
"LabelAudioLanguagePreference": "Garso kalbos pageidavimas:",
|
||||
|
@ -289,7 +286,6 @@
|
|||
"LabelUseNotificationServices": "Naudoti šias paslaugas:",
|
||||
"LabelUser": "Vartotojas:",
|
||||
"LabelYear": "Metai:",
|
||||
"LabelYourFirstName": "Jūsų vardas:",
|
||||
"LabelYoureDone": "Baigta!",
|
||||
"LatestFromLibrary": "Vėliausi {0}",
|
||||
"LibraryAccessHelp": "Pasirinkite medijos aplankus, kuriuos norite dalintis su šiuo vartotoju. Administratoriai galės redaguoti visus aplankus per metaduomenų valdymą.",
|
||||
|
@ -421,7 +417,6 @@
|
|||
"Premieres": "Premieras",
|
||||
"Producer": "Prodiuseris",
|
||||
"ProductionLocations": "Filmavimo vietos",
|
||||
"QueueAllFromHere": "Į eilę viską nuo čia",
|
||||
"RecentlyWatched": "Nesenai žiūrėta",
|
||||
"Record": "Įrašyti",
|
||||
"RecordSeries": "Įrašyti laidą",
|
||||
|
@ -489,7 +484,6 @@
|
|||
"TabNotifications": "Pranešimai",
|
||||
"TabOther": "Kita",
|
||||
"TabPassword": "Slaptažodis",
|
||||
"TabPlaylist": "Grojaraštis",
|
||||
"TabProfile": "Profilis",
|
||||
"TabProfiles": "Profiliai",
|
||||
"TabRecordings": "Įrašai",
|
||||
|
@ -561,7 +555,6 @@
|
|||
"ButtonFullscreen": "Per visą ekraną",
|
||||
"ButtonGuide": "Gidas",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonLearnMore": "Sužinoti daugiau",
|
||||
"ButtonLibraryAccess": "Mediatekos prieiga",
|
||||
"ButtonMore": "Daugiau",
|
||||
"ButtonNetwork": "Tinklas",
|
||||
|
@ -581,7 +574,6 @@
|
|||
"ButtonStart": "Pradėti",
|
||||
"ButtonUninstall": "Pašalinti",
|
||||
"ButtonUp": "Aukštyn",
|
||||
"ButtonViewWebsite": "Žiūrėti svetainę",
|
||||
"ButtonWebsite": "Svetainė",
|
||||
"ChangingMetadataImageSettingsNewContent": "Metaduomenų ar iliustracijų pakeitimai bus pritaikyti tik naujai pridėtam turiniui. Norint pritaikyti pakeitimus esančiam turiniui reikės atnaujinti metaduomenis rankiniu būdu.",
|
||||
"Channels": "Kanalai",
|
||||
|
@ -613,7 +605,6 @@
|
|||
"AllLibraries": "Visos bibliotekos",
|
||||
"AllowMediaConversionHelp": "Leisti arba uždrausti medijos konvertavimą.",
|
||||
"AlwaysPlaySubtitles": "Visada rodyti subtitrus",
|
||||
"AutoBasedOnLanguageSetting": "Auto (pagal kalbos parinktį)",
|
||||
"BookLibraryHelp": "Garso ir tekstinės knygos yra palaikomos. Peržiūrėkite {0} knygų vardinimo gidą {1}.",
|
||||
"ButtonEditOtherUserPreferences": "Keisti šio vartotojo profilį, paveikslą ir asmeninius nustatymus.",
|
||||
"ButtonResetEasyPassword": "Atstatyti pin kodą",
|
||||
|
@ -644,7 +635,6 @@
|
|||
"AllComplexFormats": "Visi Sudėtingi Formatai (ASS, SSA, VOBSUB, PGS, SUB/IDX, t.t.)",
|
||||
"AllowHWTranscodingHelp": "Leisti imtuvui perkoduoti srautus grojant. Tai gali sumažinti perkodavimus reikalingus serveriui.",
|
||||
"AuthProviderHelp": "Pasirinkite autentifikavimo paslaugos teikėją šio vartotojo slaptažodžio autentifikavimui.",
|
||||
"AddItemToCollectionHelp": "Pridėkite įrašus į kolekciją. Suraskite įrašą, bei naudokite jo meniu, kad pridėti į kolekciją.",
|
||||
"AllowedRemoteAddressesHelp": "IP adresų atskirtų kableliais sąrašas ar IP/netmask įrašai tinklams, kurie turės teisę prisijungti nuotoliniu būdu. Visi adresai bus leidžiami, jei įrašas tuščias.",
|
||||
"HeaderMyMedia": "Mediateka",
|
||||
"HeaderMyDevice": "Mano įrenginys",
|
||||
|
@ -817,7 +807,6 @@
|
|||
"HeaderVideoQuality": "Vaizdo įrašo kokybė",
|
||||
"HeaderVideoType": "Video įrašo tipas",
|
||||
"HeaderVideoTypes": "Video tipai",
|
||||
"LabelDashboardTheme": "Serverio puslapio tema:",
|
||||
"LabelDownloadLanguages": "Kalbos parsiuntimui:",
|
||||
"LabelDropShadow": "Mesti šešėlį:",
|
||||
"LabelEasyPinCode": "Greitas PID kodas:",
|
||||
|
@ -1004,7 +993,6 @@
|
|||
"HeaderFavoritePlaylists": "Mėgstami Grojaraščiai",
|
||||
"ApiKeysCaption": "Įjungtų API raktų sąrašas",
|
||||
"Episode": "Episodas",
|
||||
"CopyStreamURLError": "Klaida kopijuojant URL.",
|
||||
"ClientSettings": "Kliento Nustatymai",
|
||||
"ButtonTogglePlaylist": "Grojaraštis",
|
||||
"ButtonToggleContextMenu": "Daugiau",
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
"MediaInfoStreamTypeSubtitle": "Subtitri",
|
||||
"MediaInfoStreamTypeData": "Dati",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoSoftware": "Programmatūras",
|
||||
"MediaInfoSize": "Lielums",
|
||||
"MediaInfoResolution": "Izšķirtspēja",
|
||||
"MediaInfoProfile": "Profils",
|
||||
|
@ -97,7 +96,6 @@
|
|||
"LabelSportsCategories": "Sporta kategorijas:",
|
||||
"LabelSpecialSeasonsDisplayName": "Speciālās sezonas displeja nosaukums:",
|
||||
"LabelSource": "Avots:",
|
||||
"LabelSoundEffects": "Skaņas efekti:",
|
||||
"LabelSortTitle": "Kārtošanas nosaukums:",
|
||||
"LabelSortOrder": "Kārtošanas secība:",
|
||||
"LabelSortBy": "Kārtot pēc:",
|
||||
|
@ -349,16 +347,13 @@
|
|||
"LiveBroadcasts": "Tiešraides:",
|
||||
"Live": "Tiešraide",
|
||||
"List": "Saraksts",
|
||||
"LinksValue": "Linki: {0}",
|
||||
"Like": "Patīk",
|
||||
"LeaveBlankToNotSetAPassword": "Tu vari atstāt šo lauku tukšu, lai neiestatītu paroli.",
|
||||
"LaunchWebAppOnStartup": "Palaist web interfeisu kad serveris tiek startēts",
|
||||
"LatestFromLibrary": "Jaunākais {0}",
|
||||
"Large": "Liels",
|
||||
"LabelffmpegPath": "FFmped ceļš:",
|
||||
"LabelZipCode": "Zip Kods:",
|
||||
"LabelYoureDone": "Esi pabeidzis!",
|
||||
"LabelYourFirstName": "Tavs vārds:",
|
||||
"HeaderFavoritePeople": "Cilvēku Favorīti",
|
||||
"HeaderFavoriteMovies": "Filmu Favorīti",
|
||||
"HeaderFavoriteBooks": "Grāmatu Favorīti",
|
||||
|
@ -388,7 +383,6 @@
|
|||
"HeaderCancelSeries": "Atcelt Sēriju",
|
||||
"HeaderCancelRecording": "Atcelt Ierakstus",
|
||||
"HeaderBooks": "Grāmatas",
|
||||
"HeaderAutomaticUpdates": "Automātiskie Atjauninājumi",
|
||||
"HeaderAudioSettings": "Audio Iestatījumi",
|
||||
"HeaderAudioBooks": "Audio Grāmatas",
|
||||
"HeaderApp": "Lietotne",
|
||||
|
@ -473,7 +467,6 @@
|
|||
"DatePlayed": "Atskaņošanas datums",
|
||||
"DateAdded": "Pievienošanas datums",
|
||||
"CriticRating": "Kritiķu reitings",
|
||||
"CopyStreamURLError": "Kļūda kopējot URL.",
|
||||
"CopyStreamURLSuccess": "URL veiksmīgi nokopēts.",
|
||||
"CopyStreamURL": "Kopēt Straumes URL",
|
||||
"Continuing": "Turpina",
|
||||
|
@ -490,7 +483,6 @@
|
|||
"CancelSeries": "Atcelt sēriju",
|
||||
"CancelRecording": "Atcelt ierakstu",
|
||||
"ButtonWebsite": "Web vietne",
|
||||
"ButtonViewWebsite": "Skatīt web vietni",
|
||||
"ButtonUninstall": "Atinstalēt",
|
||||
"ButtonTrailer": "Treileri",
|
||||
"ButtonSubtitles": "Subtitri",
|
||||
|
@ -532,7 +524,6 @@
|
|||
"ButtonNetwork": "Tīkls",
|
||||
"ButtonMore": "Vairāk",
|
||||
"ButtonLibraryAccess": "Bibliotēku piekļuve",
|
||||
"ButtonLearnMore": "Uzzināt vairāk",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonHome": "Mājas",
|
||||
"ButtonHelp": "Palīdzība",
|
||||
|
@ -594,7 +585,6 @@
|
|||
"Banner": "Karogattēls",
|
||||
"Backdrops": "Foni",
|
||||
"Backdrop": "Fons",
|
||||
"AutoBasedOnLanguageSetting": "Auto (atkarībā no valodas iestatījumiem)",
|
||||
"Auto": "Auto",
|
||||
"Audio": "Audio",
|
||||
"AttributeNew": "Jauns",
|
||||
|
@ -664,7 +654,6 @@
|
|||
"Watched": "Skatīts",
|
||||
"ViewPlaybackInfo": "Skatīt atskaņošanas info",
|
||||
"ViewAlbum": "Skatīt albumu",
|
||||
"VideoRange": "Video platums",
|
||||
"Vertical": "Vertikāls",
|
||||
"ValueVideoCodec": "Video Kodeks: {0}",
|
||||
"ValueTimeLimitSingleHour": "Laika limits: 1 stunda",
|
||||
|
@ -724,7 +713,6 @@
|
|||
"TabProfile": "Profils",
|
||||
"TabPlugins": "Paplašinājumi",
|
||||
"TabPlaylists": "Atskaņošanas Saraksti",
|
||||
"TabPlaylist": "Atskaņošanas Saraksts",
|
||||
"TabPlayback": "Atskaņošana",
|
||||
"TabPassword": "Parole",
|
||||
"TabParentalControl": "Vecāku Pārvaldība",
|
||||
|
@ -839,7 +827,6 @@
|
|||
"Menu": "Izvēlne",
|
||||
"LabelTriggerType": "Trigera Veids:",
|
||||
"LabelSkipIfGraphicalSubsPresent": "Izlaist ja video jau satur iegultus subtitrus",
|
||||
"LabelSkin": "Izskats:",
|
||||
"LabelSimultaneousConnectionLimit": "Vienlaicīgo straumju limits:",
|
||||
"LabelServerHostHelp": "192.168.1.100:8096 vai https://myserver.com",
|
||||
"LabelServerHost": "Resursdators:",
|
||||
|
@ -897,8 +884,6 @@
|
|||
"LabelAudioCodec": "Audio kodeks:",
|
||||
"LabelAudioChannels": "Audio kanāli:",
|
||||
"LabelAudioBitrate": "Audio bitu-ātrums:",
|
||||
"LabelAllowServerAutoRestartHelp": "Serveris restartēties tikai brīžos, kad neviens lietotājs nav aktīvs.",
|
||||
"LabelAllowServerAutoRestart": "Atļaut serverim automātiski restartēties, lai uzstādītu atjauninājumus",
|
||||
"LabelAllowHWTranscoding": "Atļaut aparatūras trans-kodēšanu",
|
||||
"LabelAlbumArtMaxWidthHelp": "Maksimālā albumu vāku izšķirtspēja caur upnp:albumArtURI.",
|
||||
"LabelAlbumArtMaxWidth": "Albumu vāku maksimālais platums:",
|
||||
|
@ -1025,7 +1010,6 @@
|
|||
"ErrorGettingTvLineups": "Notika kļūda lejupielādējot TV sarakstus. Lūdzu pārliecinies, ka tava informācija ir pareiza un mēģini vēlreiz.",
|
||||
"DisplayMissingEpisodesWithinSeasonsHelp": "Tam arī jābūt iespējotam priekš TV bibliotēkām servera konfigurācijā.",
|
||||
"DefaultMetadataLangaugeDescription": "Šie ir jūsu noklusējumi, kas var tikt rediģēti atkarībā no bibliotēkas.",
|
||||
"AddItemToCollectionHelp": "Pievieno vienumus kolekcijām tos meklējot un izmantojot to labā taustiņa vai spiediena izvēlnes lai pievienotu tos.",
|
||||
"LabelPleaseRestart": "Izmaiņas tiks pielietotas pēc manuālas web klienta pārlādes.",
|
||||
"LabelPersonRole": "Loma:",
|
||||
"LabelMusicStreamingTranscodingBitrateHelp": "Iestati maksimālo mūzikas straumēšanas bitu ātrumu.",
|
||||
|
@ -1099,7 +1083,6 @@
|
|||
"LabelDownMixAudioScale": "Audio pastiprinājums lejupmiksējot:",
|
||||
"LabelDisplayMissingEpisodesWithinSeasons": "Rādīt trūkstošās epizodes sezonās",
|
||||
"LabelDateAddedBehaviorHelp": "Ja atrodas metadatu vērtība, tā vienmēr tiks izmantota pirms jebkuras no šīm opcijām.",
|
||||
"LabelDashboardTheme": "Servera vadības paneļa tēma:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Ievadi pielāgotu displeja vārdu vai atstāj tukšu lai izmantotu ierīces noteikto.",
|
||||
"LabelCachePathHelp": "Nosaki pielāgotu atrašanās vietu priekš keša datnēm kā attēliem. Atstāj tukšu lai izmantotu servera noklusējumu.",
|
||||
"LabelAllowedRemoteAddressesMode": "Attālās IP adreses filtra režīms:",
|
||||
|
@ -1146,7 +1129,6 @@
|
|||
"PackageInstallCompleted": "{0} (versija {1}) instalācija pabeigta.",
|
||||
"PackageInstallCancelled": "{0} (versija {1}) instalācija atcelta.",
|
||||
"Overview": "Pārskats",
|
||||
"OtherArtist": "Cits izpildītājs",
|
||||
"OriginalAirDateValue": "Oriģinālais tiešraides datums: {0}",
|
||||
"OptionWeekly": "Iknedēļu",
|
||||
"OptionWeekends": "Nedēļas nogalēs",
|
||||
|
@ -1224,8 +1206,6 @@
|
|||
"MoreUsersCanBeAddedLater": "Papildus lietotāji var tikt pievienoti vēlāk no vadības paneļa.",
|
||||
"MessagePluginConfigurationRequiresLocalAccess": "Lai konfigurētu šo paplašinājumu lūdzu tieši ieej savā lokālajā serverī.",
|
||||
"MessagePleaseEnsureInternetMetadata": "Lūdzu pārliecinies vai metadatu lejupielāde no interneta ir iespējota.",
|
||||
"MessageUnauthorizedUser": "Jūs neesat autorizēti lai piekļūtu serverim šajā brīdī. Lūdzu sazinieties ar savu servera administratoru priekš papildus informācijas.",
|
||||
"MessageInstallPluginFromApp": "Šis paplašinājums ir jāuzstāda no lietotnes, kurā jūs to vēlaties izmantot.",
|
||||
"LabelEmbedAlbumArtDidl": "Ievietot albumu vākus iekš Didl",
|
||||
"LabelSelectFolderGroups": "Automātiski grupēt saturu no sekojošām datnēm skatos kā Filmas, Mūzika un TV:",
|
||||
"AllowFfmpegThrottlingHelp": "Kad trans-kodējums vai remux tiek pietiekami tālu priekšā pašreizējai atskaņošanas vietai, process tiks pauzēts lai patērētu mazāk resursu. Tas ir noderīgākais skatoties bez biežas pārlēkšanas. Atspējo šo ja saskaries ar atskaņošanas problēmām.",
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
"ButtonNew": "नवीन",
|
||||
"ButtonNetwork": "नेटवर्क",
|
||||
"ButtonMore": "अजून",
|
||||
"ButtonLearnMore": "अधिक माहिती",
|
||||
"ButtonInfo": "माहिती",
|
||||
"ButtonHelp": "मदत",
|
||||
"ButtonGuide": "गाईड",
|
||||
|
@ -80,7 +79,6 @@
|
|||
"Categories": "वर्ग",
|
||||
"CancelRecording": "रेकॉर्डिंग रद्द करा",
|
||||
"ButtonWebsite": "संकेतस्थळ",
|
||||
"ButtonViewWebsite": "संकेतस्थळ पाहा",
|
||||
"ButtonUp": "वर",
|
||||
"ButtonTrailer": "ट्रेलर",
|
||||
"ButtonSubtitles": "सबटायटल",
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
"AccessRestrictedTryAgainLater": "Akses dihalang pada masa ini. Sila cuba sebentar lagi.",
|
||||
"Actor": "Pelakon",
|
||||
"Add": "Tambah",
|
||||
"AddItemToCollectionHelp": "Tambah item ke koleksi melalui carian dan menggunakan menu klik kanan atau ketik menu tersebut untuk menambahkan ke koleksi.",
|
||||
"AddToCollection": "Tambah ke dalam koleksi",
|
||||
"AddToPlayQueue": "Tambah ke giliran main",
|
||||
"AddToPlaylist": "Tambah pada senarai main",
|
||||
|
@ -49,7 +48,6 @@
|
|||
"AttributeNew": "Terbaru",
|
||||
"Audio": "Audio",
|
||||
"Auto": "Auto",
|
||||
"AutoBasedOnLanguageSetting": "Auto (berdasar tetapan bahasa)",
|
||||
"Backdrop": "Latar belakang",
|
||||
"Backdrops": "Latar belakang",
|
||||
"BirthDateValue": "Lahir: {0}",
|
||||
|
@ -73,7 +71,6 @@
|
|||
"ButtonChangeServer": "Tukar pelayan",
|
||||
"ButtonConnect": "Sambung",
|
||||
"ButtonLibraryAccess": "Akses pustaka",
|
||||
"ButtonLearnMore": "Ketahui lebih lanjut",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonHome": "Mula",
|
||||
"ButtonHelp": "Pertolongan",
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
"Absolute": "Absolutt",
|
||||
"Actor": "Skuespiller",
|
||||
"Add": "Legg til",
|
||||
"AddItemToCollectionHelp": "Legg til elementer i samlinger ved å søke etter dem og bruke deres høyreklikk eller peke-menyer for å legge dem til en samling.",
|
||||
"AddToCollection": "Legg til i samling",
|
||||
"AddToPlayQueue": "Legg til i avspillingskø",
|
||||
"AddToPlaylist": "Legg til i spilleliste",
|
||||
|
@ -60,7 +59,6 @@
|
|||
"ButtonGotIt": "Skjønner",
|
||||
"ButtonHelp": "Hjelp",
|
||||
"ButtonHome": "Hjem",
|
||||
"ButtonLearnMore": "Lær mer",
|
||||
"ButtonLibraryAccess": "Bibliotektilgang",
|
||||
"ButtonManualLogin": "Manuell Login",
|
||||
"ButtonMore": "Mer",
|
||||
|
@ -101,7 +99,6 @@
|
|||
"ButtonSubtitles": "Undertekster",
|
||||
"ButtonUninstall": "Avinstaller",
|
||||
"ButtonUp": "Opp",
|
||||
"ButtonViewWebsite": "Vis nettsted",
|
||||
"ButtonWebsite": "Nettsted",
|
||||
"CancelRecording": "Avbryt opptak",
|
||||
"CancelSeries": "Avbryt serie",
|
||||
|
@ -211,7 +208,6 @@
|
|||
"HeaderApiKeysHelp": "Eksterne programmer trenger en API-nøkkel for å kunne kommunisere med Jellyfin-serveren. Nøklene utstedes ved å logge på med en Jellyfin-konto, eller ved å manuelt gi programmet en nøkkel.",
|
||||
"HeaderAudioBooks": "Lydbøker",
|
||||
"HeaderAudioSettings": "Lydinnstillinger",
|
||||
"HeaderAutomaticUpdates": "Automatiske oppdateringer",
|
||||
"HeaderBooks": "Bøker",
|
||||
"HeaderBranding": "Merking",
|
||||
"HeaderCancelRecording": "Avbryt opptak",
|
||||
|
@ -402,8 +398,6 @@
|
|||
"LabelAlbumArtists": "Albumartister:",
|
||||
"LabelAll": "Alle",
|
||||
"LabelAllowHWTranscoding": "Tillat maskinvare-omkoding",
|
||||
"LabelAllowServerAutoRestart": "Tillat at serveren restartes automatisk for å installere oppdateringer",
|
||||
"LabelAllowServerAutoRestartHelp": "Serveren vil kun restartes i inaktive perioder når ingen brukere er aktive.",
|
||||
"LabelAppName": "Applikasjonsnavn",
|
||||
"LabelAppNameExample": "Eksempel: Sickbeard, Sonarr",
|
||||
"LabelArtists": "Artister:",
|
||||
|
@ -662,7 +656,6 @@
|
|||
"LabelVersionInstalled": "{0} installert",
|
||||
"LabelXDlnaCapHelp": "Bestemmer innholdet i X_DLNACAP-elementet i urn:schemas-dlna-org:device-1-0-domenet.",
|
||||
"LabelXDlnaDocHelp": "Bestemmer innholdet i X_DLNADOC-elementet i urn:schemas-dlna-org:device-1-0-domenet.",
|
||||
"LabelYourFirstName": "Fornavnet ditt:",
|
||||
"LabelYoureDone": "Du er ferdig!",
|
||||
"LabelZipCode": "Postnummer:",
|
||||
"LabelffmpegPath": "Filbane til FFmpeg:",
|
||||
|
@ -717,7 +710,6 @@
|
|||
"MessageFileReadError": "En feil oppstod når filen skulle leses. Vennligst prøv igjen.",
|
||||
"MessageForgotPasswordFileCreated": "Følgende fil er opprettet på serveren og inneholder instruksjoner om hvordan du kan fortsette:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Vennligst prøv igjen fra hjemmenettverket ditt for å starte prosessen med å gjenopprette passordet ditt.",
|
||||
"MessageInstallPluginFromApp": "Dette programtillegget må installeres direkte i appen du har tenkt å bruke den i.",
|
||||
"MessageInvalidForgotPasswordPin": "Ugyldig eller utgått PIN kode angitt. Vennligst prøv igjen.",
|
||||
"MessageInvalidUser": "Ugyldig brukernavn eller passord. Vennligst prøv igjen.",
|
||||
"MessageItemSaved": "Element lagret.",
|
||||
|
@ -921,7 +913,6 @@
|
|||
"ProductionLocations": "Produksjonslokasjoner",
|
||||
"Programs": "Programmer",
|
||||
"Quality": "Kvalitet",
|
||||
"QueueAllFromHere": "Sett alt herfra i kø",
|
||||
"Rate": "Vurdér",
|
||||
"RecentlyWatched": "Nylig sett",
|
||||
"RecommendationBecauseYouLike": "Fordi du liker {0}",
|
||||
|
@ -1022,7 +1013,6 @@
|
|||
"TabParentalControl": "Foreldrekontroll",
|
||||
"TabPassword": "Passord",
|
||||
"TabPlayback": "Avspilling",
|
||||
"TabPlaylist": "Spilleliste",
|
||||
"TabPlaylists": "Spillelister",
|
||||
"TabPlugins": "Programtillegg",
|
||||
"TabProfile": "Profil",
|
||||
|
@ -1074,7 +1064,6 @@
|
|||
"ValueTimeLimitMultiHour": "Tidsgrense: {0} timer",
|
||||
"ValueTimeLimitSingleHour": "Tidsgrense: 1 time",
|
||||
"ValueVideoCodec": "Videokodek: {0}",
|
||||
"VideoRange": "Videoområde",
|
||||
"ViewAlbum": "Vis album",
|
||||
"ViewPlaybackInfo": "Vis avspillingsinformasjon",
|
||||
"Watched": "Sett",
|
||||
|
@ -1115,7 +1104,6 @@
|
|||
"Banner": "Banner",
|
||||
"Backdrops": "Bakgrunner",
|
||||
"Backdrop": "Bakgrunn",
|
||||
"AutoBasedOnLanguageSetting": "Automatisk (basert på språkinstillingene)",
|
||||
"Ascending": "Stigende",
|
||||
"Art": "Omslagsbilde",
|
||||
"AnyLanguage": "Hvilket som helst språk",
|
||||
|
@ -1190,7 +1178,6 @@
|
|||
"LabelDateTimeLocale": "Datoformat:",
|
||||
"LabelType": "Type:",
|
||||
"Large": "Stor",
|
||||
"MediaInfoSoftware": "Programvare",
|
||||
"DirectStreamHelp1": "Mediet støttes av enheten med tanke på oppløsning og medietype (H.264, AC3, osv), men den støtter ikke filkontaineren (mkv, avi, wmv, osv). Videoen vil ompakkes fortløpende før den sendes til enheten.",
|
||||
"EnableBackdrops": "Bakgrunner",
|
||||
"EnableThemeVideos": "Temavideoer",
|
||||
|
@ -1225,7 +1212,6 @@
|
|||
"LabelAllowedRemoteAddressesMode": "Modus for filter for eksterne IP-adresser:",
|
||||
"LabelDiscNumber": "Platenummer:",
|
||||
"LabelDisplayLanguage": "Visningsspråk:",
|
||||
"LinksValue": "Linker: {0}",
|
||||
"OptionAuto": "Automatisk",
|
||||
"OptionAutomatic": "Automatisk",
|
||||
"OptionHomeVideos": "Fotografier",
|
||||
|
@ -1250,8 +1236,6 @@
|
|||
"LabelSkipForwardLength": "Lengde for fremoverhopp:",
|
||||
"LabelTriggerType": "Utløsertype:",
|
||||
"LanNetworksHelp": "Kommaseparert liste over IP-adresser eller IP/nettverksmaske for nettverk som skal regnes som lokalt nettverk når båndbreddebegrensninger skal håndheves. Hvis satt, vil alle andre IP-adresser bli regnet for å være på eksternt nettverk og vil dermed være underlagt båndbreddebegrensningene for eksterne nettverk. Hvis tomt, vil kun serverens subnettverk bli regnet for å være på det lokale nettverket.",
|
||||
"LaunchWebAppOnStartup": "Start web-grensesnittet når serveren starter",
|
||||
"LaunchWebAppOnStartupHelp": "Åpne web-klienten i din standard nettleser når serveren starter opp. Dette vil ikke skje ved omstart av serveren.",
|
||||
"LearnHowYouCanContribute": "Finn ut hvordan du kan bidra.",
|
||||
"SeriesYearToPresent": "{0} - Nå",
|
||||
"LabelBaseUrlHelp": "Legger til en egendefinert undermappe til serverens nettadresse. For eksempel: <code>http://example.com/<b><baseurl></b></code>",
|
||||
|
@ -1312,7 +1296,6 @@
|
|||
"LabelBurnSubtitles": "Brenn inn undertekst:",
|
||||
"LabelCache": "Mellomlagring:",
|
||||
"LabelCustomCertificatePathHelp": "Filbanen til en PKCS#12-fil med et sertifikat og privatnøkkel for å aktivere TLS-støtte på et eget domene.",
|
||||
"LabelDashboardTheme": "Tema for serveroversikt:",
|
||||
"LabelDefaultScreen": "Standardskjerm:",
|
||||
"LabelDropShadow": "Underskygge:",
|
||||
"LabelDynamicExternalId": "{0} ID:",
|
||||
|
@ -1330,8 +1313,6 @@
|
|||
"LabelServerName": "Servernavn:",
|
||||
"LabelSimultaneousConnectionLimit": "Begrensing på samtidige strømmer:",
|
||||
"LabelSize": "Størrelse:",
|
||||
"LabelSkin": "Utseende:",
|
||||
"LabelSoundEffects": "Lydeffekter:",
|
||||
"LabelSpecialSeasonsDisplayName": "Visningsnavn for spesialsesong:",
|
||||
"LabelStatus": "Status:",
|
||||
"LabelSubtitleDownloaders": "Kilder for undertekst:",
|
||||
|
@ -1398,7 +1379,6 @@
|
|||
"Playlists": "Spillelister",
|
||||
"Previous": "Forrige",
|
||||
"Primary": "Primær",
|
||||
"RunAtStartup": "Kjør ved oppstart",
|
||||
"SaveSubtitlesIntoMediaFolders": "Lagre undertekster i mediemapper",
|
||||
"SaveSubtitlesIntoMediaFoldersHelp": "Lagring av undertekster ved siden av videofilene vil gjøre det lettere å behandle dem.",
|
||||
"Screenshot": "Skjermbilde",
|
||||
|
@ -1444,7 +1424,6 @@
|
|||
"SelectAdminUsername": "Vennligst velg et brukernavn for administrator-kontoen.",
|
||||
"HeaderNavigation": "Navigering",
|
||||
"MessageConfirmAppExit": "Vil du avslutte?",
|
||||
"CopyStreamURLError": "Det var en feil under kopiering av URL'en.",
|
||||
"LabelVideoResolution": "Oppløsning på video:",
|
||||
"LabelPlayerDimensions": "Dimensjoner på avspiller:",
|
||||
"LabelCorruptedFrames": "Korrupte bilder:",
|
||||
|
@ -1495,11 +1474,9 @@
|
|||
"ShowLess": "Vis mindre",
|
||||
"Season": "Sesong",
|
||||
"SaveChanges": "Lagre endringer",
|
||||
"ReleaseGroup": "Utgivelsesgruppe",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Foretrekk innebygd episodeinformasjon framfor filnavn",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "Dette bruker episodeinformasjonen fra innebygd metadata hvis tilgjengelig.",
|
||||
"Person": "Person",
|
||||
"OtherArtist": "Annen artist",
|
||||
"Movie": "Film",
|
||||
"MessageSyncPlayErrorMedia": "Kunne ikke aktivere SyncPlay! Mediefeil.",
|
||||
"MessageSyncPlayErrorMissingSession": "Kunne ikke aktivere SyncPlay! Mangler sesjon.",
|
||||
|
@ -1516,7 +1493,6 @@
|
|||
"MessageSyncPlayUserJoined": "<b>{0}</b> har blitt med i gruppen.",
|
||||
"MessageSyncPlayDisabled": "SyncPlay deaktivert.",
|
||||
"MessageSyncPlayEnabled": "SyncPlay aktivert.",
|
||||
"MessageUnauthorizedUser": "Du har ikke autorisert tilgang til serveren akkurat nå. Vennligst kontakt serveradministratoren din for mer informasjon.",
|
||||
"LabelSyncPlayAccess": "SyncPlay-tilgang",
|
||||
"LabelSyncPlayAccessNone": "Deaktivert for denne brukeren",
|
||||
"LabelSyncPlayAccessJoinGroups": "Tillat brukeren å bli med i grupper",
|
||||
|
@ -1531,7 +1507,6 @@
|
|||
"LabelSyncPlayTimeOffset": "Tidsforskyvning mot serveren:",
|
||||
"LabelRequireHttpsHelp": "Hvis valgt, vil serveren automatisk omdirigere alle HTTP-forespørsler til HTTPS. Dette har ingen effekt dersom serveren ikke lytter etter HTTPS.",
|
||||
"LabelRequireHttps": "Krev HTTPS",
|
||||
"LabelNightly": "Nattlig",
|
||||
"LabelStable": "Stabil",
|
||||
"LabelChromecastVersion": "Chromecast-versjon",
|
||||
"LabelEnableHttpsHelp": "Aktiverer at serveren skal lytte på den valgte HTTPS-porten. Et gyldig sertifikat må også være konfigurert for at dette skal tre i kraft.",
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"AccessRestrictedTryAgainLater": "Toegang is momenteel beperkt, probeer later opnieuw.",
|
||||
"Actor": "Acteur",
|
||||
"Add": "Toevoegen",
|
||||
"AddItemToCollectionHelp": "Voeg items aan uw collecties toe door te zoeken en gebruik rechts klikken met de muis of tik op menu's om ze toe te voegen aan een verzameling.",
|
||||
"AddToCollection": "Toevoegen aan Collectie",
|
||||
"AddToPlayQueue": "Toevoegen aan wachtrij",
|
||||
"AddToPlaylist": "Toevoegen aan afspeellijst",
|
||||
|
@ -38,7 +37,6 @@
|
|||
"AttributeNew": "Nieuw",
|
||||
"Audio": "Geluid",
|
||||
"Auto": "Automatisch",
|
||||
"AutoBasedOnLanguageSetting": "Automatisch (gebaseerd op taal instelling)",
|
||||
"Backdrop": "Achtergrond",
|
||||
"Backdrops": "Achtergronden",
|
||||
"BirthDateValue": "Geboren: {0}",
|
||||
|
@ -77,7 +75,6 @@
|
|||
"ButtonGuide": "Gids",
|
||||
"ButtonHelp": "Hulp",
|
||||
"ButtonHome": "Start",
|
||||
"ButtonLearnMore": "Meer informatie",
|
||||
"ButtonLibraryAccess": "Bibliotheek toegang",
|
||||
"ButtonManualLogin": "Handmatige Aanmelding",
|
||||
"ButtonMore": "Meer",
|
||||
|
@ -118,7 +115,6 @@
|
|||
"ButtonSubmit": "Uitvoeren",
|
||||
"ButtonSubtitles": "Ondertiteling",
|
||||
"ButtonUp": "Omhoog",
|
||||
"ButtonViewWebsite": "Bekijk website",
|
||||
"CancelRecording": "Opname annuleren",
|
||||
"CancelSeries": "Annuleer series",
|
||||
"Categories": "Categorieën",
|
||||
|
@ -276,7 +272,6 @@
|
|||
"HeaderAppearsOn": "Verschijnt op",
|
||||
"HeaderAudioBooks": "Luisterboeken",
|
||||
"HeaderAudioSettings": "Audio Instellingen",
|
||||
"HeaderAutomaticUpdates": "Automatische updates",
|
||||
"HeaderBlockItemsWithNoRating": "Blokkeer items met geen of niet herkende beoordelingsinformatie:",
|
||||
"HeaderBooks": "Boeken",
|
||||
"HeaderBranding": "Huisstijl",
|
||||
|
@ -480,8 +475,6 @@
|
|||
"LabelAlbumArtists": "Album artiesten:",
|
||||
"LabelAll": "Alles",
|
||||
"LabelAllowHWTranscoding": "Hardware transcoding toestaan",
|
||||
"LabelAllowServerAutoRestart": "Automatisch herstarten van de server toestaan om updates toe te passen",
|
||||
"LabelAllowServerAutoRestartHelp": "De server zal alleen opnieuw opstarten tijdens inactieve perioden, wanneer er geen gebruikers actief zijn.",
|
||||
"LabelAllowedRemoteAddresses": "Externe IP-adressen filter:",
|
||||
"LabelAllowedRemoteAddressesMode": "Externe IP-adressen filter modus:",
|
||||
"LabelAppName": "Applicatie Naam",
|
||||
|
@ -517,7 +510,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Weergave naam:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Geef een eigen weergave naam op of laat deze leeg om de naam te gebruiken die het apparaat opgeeft.",
|
||||
"LabelCustomRating": "Aangepaste classificatie:",
|
||||
"LabelDashboardTheme": "Server dashboard thema:",
|
||||
"LabelDateAdded": "Datum toegevoegd:",
|
||||
"LabelDateAddedBehavior": "Datum toegevoegd gedrag voor nieuwe content:",
|
||||
"LabelDateAddedBehaviorHelp": "Als metadata gegevens aanwezig zijn hebben deze voorrang op deze opties.",
|
||||
|
@ -731,7 +723,6 @@
|
|||
"LabelSortBy": "Sorteren op:",
|
||||
"LabelSortOrder": "Sorteer volgorde:",
|
||||
"LabelSortTitle": "Sorteer titel:",
|
||||
"LabelSoundEffects": "Geluidseffecten:",
|
||||
"LabelSource": "Bron:",
|
||||
"LabelSpecialSeasonsDisplayName": "De weergavenaam van een speciaal seizoen:",
|
||||
"LabelSportsCategories": "Sport categorieën:",
|
||||
|
@ -774,7 +765,6 @@
|
|||
"LabelXDlnaCapHelp": "Bepaalt de inhoud van het X_DLNACAP element in de urn: schemas-dlna-org:device-1-0 namespace.",
|
||||
"LabelXDlnaDocHelp": "Bepaalt de inhoud van het X_DLNADOC element in de urn:schemas-dlna-org:device-1-0 namespace.",
|
||||
"LabelYear": "Jaar:",
|
||||
"LabelYourFirstName": "Uw voornaam:",
|
||||
"LabelYoureDone": "Gereed!",
|
||||
"LabelZipCode": "Postcode:",
|
||||
"LabelffmpegPath": "FFmpeg pad:",
|
||||
|
@ -832,7 +822,6 @@
|
|||
"MessageFileReadError": "Er is een fout opgetreden bij het lezen van het bestand. Probeer het opnieuw.",
|
||||
"MessageForgotPasswordFileCreated": "Het volgende bestand is gecreëerd op uw server en bevat instructies om verder te gaan:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Probeer de wachtwoord herstel procedure opnieuw vanuit uw thuisnetwerk.",
|
||||
"MessageInstallPluginFromApp": "Deze plugin moet geïnstalleerd worden vanuit de app waarin u het wilt gebruiken.",
|
||||
"MessageInvalidForgotPasswordPin": "Er is een ongeldige of verlopen pincode ingegeven. Probeer opnieuw.",
|
||||
"MessageInvalidUser": "Incorrecte gebruikersnaam of wachtwoord. Probeer opnieuw.",
|
||||
"MessageItemSaved": "Item opgeslagen.",
|
||||
|
@ -1054,7 +1043,6 @@
|
|||
"ProductionLocations": "Productie Locaties",
|
||||
"Programs": "Programma's",
|
||||
"Quality": "Kwaliteit",
|
||||
"QueueAllFromHere": "Plaats in de wachtrij vanaf hier",
|
||||
"Raised": "Verhoogd",
|
||||
"Rate": "Waardeer",
|
||||
"RecentlyWatched": "Onlangs bekeken",
|
||||
|
@ -1085,7 +1073,6 @@
|
|||
"ReplaceExistingImages": "Bestaande afbeeldingen vervangen",
|
||||
"ResumeAt": "Hervatten vanaf {0}",
|
||||
"Rewind": "Terugspoelen",
|
||||
"RunAtStartup": "Uitvoeren bij opstarten",
|
||||
"Runtime": "Speelduur",
|
||||
"Saturday": "Zaterdag",
|
||||
"Save": "Opslaan",
|
||||
|
@ -1171,7 +1158,6 @@
|
|||
"TabParentalControl": "Ouderlijk toezicht",
|
||||
"TabPassword": "Wachtwoord",
|
||||
"TabPlayback": "Afspelen",
|
||||
"TabPlaylist": "Afspeellijst",
|
||||
"TabPlaylists": "Afspeellijst",
|
||||
"TabProfile": "Profiel",
|
||||
"TabProfiles": "Profielen",
|
||||
|
@ -1228,7 +1214,6 @@
|
|||
"ValueTimeLimitMultiHour": "Tijdslimiet: {0} uren",
|
||||
"ValueTimeLimitSingleHour": "Tijdslimiet: 1 uur",
|
||||
"Vertical": "Verticaal",
|
||||
"VideoRange": "Videobereik",
|
||||
"ViewAlbum": "Bekijk album",
|
||||
"ViewPlaybackInfo": "Bekijk afspelen info",
|
||||
"Watched": "Bekeken",
|
||||
|
@ -1302,7 +1287,6 @@
|
|||
"LabelProfileVideoCodecs": "Video codecs:",
|
||||
"LabelProtocolInfo": "Protocol info:",
|
||||
"LabelServerName": "Server naam:",
|
||||
"LabelSkin": "Uiterlijk:",
|
||||
"ButtonAddImage": "Voeg afbeelding toe",
|
||||
"LabelSize": "Grootte:",
|
||||
"CopyStreamURLSuccess": "URL succesvol gekopieerd.",
|
||||
|
@ -1317,7 +1301,6 @@
|
|||
"LabelBaseUrl": "Basis URL:",
|
||||
"LabelTranscodingProgress": "Transcoderen voortgang:",
|
||||
"LabelTriggerType": "Signaal Type:",
|
||||
"LaunchWebAppOnStartup": "Lanceer de web interface wanneer de server start",
|
||||
"MediaInfoBitrate": "Bitrate",
|
||||
"MediaInfoInterlaced": "Interlaced",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
|
@ -1399,7 +1382,6 @@
|
|||
"LabelTranscodes": "Transcoderen:",
|
||||
"DashboardOperatingSystem": "Besturingssysteem: {0}",
|
||||
"LabelWeb": "Web:",
|
||||
"LaunchWebAppOnStartupHelp": "Open de web cliënt in uw standaard browser wanneer de server voor de eerste keer start. Dit zal niet voorkomen tijdens gebruik van de server herstart functie.",
|
||||
"LeaveBlankToNotSetAPassword": "U kunt dit veld leeg laten om geen wachtwoord in te stellen.",
|
||||
"DashboardServerName": "Server: {0}",
|
||||
"LabelVideoBitrate": "Video bitrate:",
|
||||
|
@ -1412,13 +1394,11 @@
|
|||
"MediaInfoStreamTypeData": "Data",
|
||||
"MediaInfoStreamTypeSubtitle": "Ondertiteling",
|
||||
"MediaInfoStreamTypeVideo": "Video",
|
||||
"LinksValue": "Links: {0}",
|
||||
"Logo": "Logo",
|
||||
"MediaInfoCodecTag": "Codec tag",
|
||||
"MediaInfoContainer": "Container",
|
||||
"MediaInfoFramerate": "Beeldverversing",
|
||||
"MediaInfoRefFrames": "Ref beeld",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MessageImageFileTypeAllowed": "Alleen JPEG en PNG bestanden worden ondersteund.",
|
||||
"MessageImageTypeNotSelected": "Selecteer een afbeelding type van het menu alstublieft .",
|
||||
"MessageNoCollectionsAvailable": "Collecties staan u toe om te genieten van gepersonaliseerde groeperingen van Films, Series en Albums te maken. Klik op de + knop om te beginnen met het maken van collecties.",
|
||||
|
@ -1443,7 +1423,6 @@
|
|||
"AlbumArtist": "Album Artiest",
|
||||
"Album": "Album",
|
||||
"DeinterlaceMethodHelp": "Selecteer de deinterlacingmethode die u wilt gebruiken bij het transcoderen van geïnterlinieerde inhoud.",
|
||||
"CopyStreamURLError": "Er trad een fout op tijdens het kopieren van de URL.",
|
||||
"ClientSettings": "Client instellingen",
|
||||
"ButtonSplit": "Splitsen",
|
||||
"BoxSet": "Box Set",
|
||||
|
@ -1460,16 +1439,13 @@
|
|||
"HeaderNavigation": "Navigeren",
|
||||
"Episode": "Aflevering",
|
||||
"Season": "Seizoen",
|
||||
"ReleaseGroup": "Uitgave groep",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Verkies ingeladen afleveringsinformatie boven bestandsnaam",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "Dit gebruikt de afleveringsinformatie van de ingeladen metadata als deze aanwezig is.",
|
||||
"PlaybackErrorNoCompatibleStream": "Deze machine is niet leesbaar met de media en de server verstuurd geen leesbare media formaten.",
|
||||
"Person": "Persoon",
|
||||
"OtherArtist": "Andere Artiesten",
|
||||
"OptionForceRemoteSourceTranscoding": "Forceer het transcoderen van op afstand bediende media bronnen (zoals LiveTV)",
|
||||
"NoCreatedLibraries": "Het lijkt erop dat er geen bibliotheek is gecreëerd. {0}Wilt u er nu een aanmaken?{1}",
|
||||
"Movie": "Film",
|
||||
"MessageUnauthorizedUser": "U bent niet gemachtigd om toegang tot de server te krijgen op dit moment. Neem contact op met de server beheerder voor meer informatie.",
|
||||
"MessageConfirmAppExit": "Wilt u afsluiten?",
|
||||
"LabelVideoResolution": "Video resolutie:",
|
||||
"LabelStreamType": "Stream type:",
|
||||
|
@ -1529,7 +1505,6 @@
|
|||
"MillisecondsUnit": "ms",
|
||||
"LabelSyncPlayTimeOffset": "Tijd offset met de server:",
|
||||
"LabelRequireHttps": "HTTPS verplichten",
|
||||
"LabelNightly": "Nightly",
|
||||
"LabelStable": "Stabiel",
|
||||
"LabelChromecastVersion": "Chromecast versie",
|
||||
"LabelEnableHttpsHelp": "Hiermee kan de server luisteren op de geconfigureerde HTTPS-poort. Om dit te laten werken moet ook een geldig certificaat worden geconfigureerd.",
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"AccessRestrictedTryAgainLater": "Dostęp jest aktualnie ograniczony. Spróbuj ponownie później.",
|
||||
"Actor": "Aktor",
|
||||
"Add": "Dodaj",
|
||||
"AddItemToCollectionHelp": "Dodaj obiekty do kolekcji wyszukując je i użyj prawy przycisk myszy lub dotknij menu, aby dodać je do kolekcji.",
|
||||
"AddToCollection": "Dodaj do kolekcji",
|
||||
"AddToPlayQueue": "Dodaj do kolejki odtwarzania",
|
||||
"AddToPlaylist": "Dodaj do listy",
|
||||
|
@ -40,7 +39,6 @@
|
|||
"AttributeNew": "Nowy",
|
||||
"Audio": "Dźwięk",
|
||||
"Auto": "Automatycznie",
|
||||
"AutoBasedOnLanguageSetting": "Automatyczna (w oparciu o ustawienia językowe)",
|
||||
"Backdrop": "Fototapeta",
|
||||
"Backdrops": "Fototapety",
|
||||
"Banner": "Baner",
|
||||
|
@ -84,7 +82,6 @@
|
|||
"ButtonHelp": "Pomoc",
|
||||
"ButtonHome": "Start",
|
||||
"ButtonInfo": "Informacje",
|
||||
"ButtonLearnMore": "Dowiedz się więcej",
|
||||
"ButtonLibraryAccess": "Dostęp do biblioteki",
|
||||
"ButtonManualLogin": "Logowanie manualne",
|
||||
"ButtonMore": "Więcej",
|
||||
|
@ -128,7 +125,6 @@
|
|||
"ButtonTrailer": "Zwiastun",
|
||||
"ButtonUninstall": "Odinstaluj",
|
||||
"ButtonUp": "Góra",
|
||||
"ButtonViewWebsite": "Odwiedź stronę",
|
||||
"ButtonWebsite": "Strona WWW",
|
||||
"CancelRecording": "Anuluj nagranie",
|
||||
"CancelSeries": "Anuluj nagrywanie serialu",
|
||||
|
@ -292,7 +288,6 @@
|
|||
"HeaderAppearsOn": "Występuje",
|
||||
"HeaderAudioBooks": "Książka mówiona",
|
||||
"HeaderAudioSettings": "Ustawienia dźwięku",
|
||||
"HeaderAutomaticUpdates": "Aktualizacje",
|
||||
"HeaderBlockItemsWithNoRating": "Blokuj pozycje z brakującą lub nierozpoznaną kategorią wiekową:",
|
||||
"HeaderBooks": "Książki",
|
||||
"HeaderBranding": "Dostosowywanie",
|
||||
|
@ -513,8 +508,6 @@
|
|||
"LabelAlbumArtists": "Wykonawcy albumów:",
|
||||
"LabelAll": "Wszystkie",
|
||||
"LabelAllowHWTranscoding": "Zezwalaj na sprzętowe transkodowanie",
|
||||
"LabelAllowServerAutoRestart": "Zezwalaj na ponowne uruchomienie serwera, w celu instalacji aktualizacji",
|
||||
"LabelAllowServerAutoRestartHelp": "Serwer będzie ponownie uruchamiany tylko w trakcie bezczynności, kiedy nie ma aktywnych użytkowników.",
|
||||
"LabelAllowedRemoteAddresses": "Filtr adresów IP:",
|
||||
"LabelAllowedRemoteAddressesMode": "Tryb filtra adresów IP:",
|
||||
"LabelAppName": "Nazwa Aplikacji",
|
||||
|
@ -552,7 +545,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Nazwa wyświetlana:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Dostarcz własną nazwę wyświetlania lub zostaw puste i użyj nazwy dostarczonej przez urządzenie.",
|
||||
"LabelCustomRating": "Kategoria wiekowa własna:",
|
||||
"LabelDashboardTheme": "Motyw kokpitu serwera:",
|
||||
"LabelDateAdded": "Data dodania:",
|
||||
"LabelDateAddedBehavior": "Data dodania dla nowej zawartości:",
|
||||
"LabelDateAddedBehaviorHelp": "Jeśli istnieją metadane będą one użyte zawsze przed którąkolwiek z tych opcji.",
|
||||
|
@ -763,7 +755,6 @@
|
|||
"LabelServerHost": "Serwer:",
|
||||
"LabelServerHostHelp": "192.168.1.100:8096 or https://myserver.com",
|
||||
"LabelSimultaneousConnectionLimit": "Limit jednoczesnych transmisji:",
|
||||
"LabelSkin": "Skóra:",
|
||||
"LabelSkipBackLength": "Długość skoku wstecz:",
|
||||
"LabelSkipForwardLength": "Długość skoku wprzód:",
|
||||
"LabelSkipIfAudioTrackPresent": "Pomijaj, jeżeli domyślna ścieżka dźwiękowa jest w języku pobierania",
|
||||
|
@ -775,7 +766,6 @@
|
|||
"LabelSortBy": "Sortuj po:",
|
||||
"LabelSortOrder": "Porządek sortowania:",
|
||||
"LabelSortTitle": "Tytuł sortowania:",
|
||||
"LabelSoundEffects": "Efekty dźwiękowe:",
|
||||
"LabelSource": "Źródło:",
|
||||
"LabelSpecialSeasonsDisplayName": "Nazwa sezonu odcinków specjalnych:",
|
||||
"LabelSportsCategories": "Kategorie wydarzeń sportowych:",
|
||||
|
@ -827,7 +817,6 @@
|
|||
"LabelXDlnaCapHelp": "Określa zawartość elementu X_DLNACAP w przestrzeni nazw urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDocHelp": "Określa zawartość elementu X_DLNADOC w przestrzeni nazw urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYear": "Rok:",
|
||||
"LabelYourFirstName": "Twoje imię:",
|
||||
"LabelYoureDone": "Zakończono!",
|
||||
"LabelZipCode": "Kod pocztowy:",
|
||||
"LabelffmpegPath": "Folder aplikacji FFmpeg:",
|
||||
|
@ -838,7 +827,6 @@
|
|||
"LearnHowYouCanContribute": "Dowiedz się jak możesz pomóc.",
|
||||
"LibraryAccessHelp": "Wybierz biblioteki udostępniane temu użytkownikowi. Administratorzy będą mogli edytować wszystkie foldery używając menedżera metadanych.",
|
||||
"Like": "Lubię",
|
||||
"LinksValue": "Łącza: {0}",
|
||||
"List": "Lista",
|
||||
"Live": "Na żywo",
|
||||
"LiveBroadcasts": "Transmisje na żywo",
|
||||
|
@ -895,7 +883,6 @@
|
|||
"MessageFileReadError": "Podczas wczytywania plików wystąpił błąd. Spróbuj ponownie później.",
|
||||
"MessageForgotPasswordFileCreated": "Plik zawierający instrukcje z dalszymi krokami został utworzony na serwerze:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Spróbuj ponownie zainicjować czyszczenie hasła, tym razem używając swojej sieci domowej.",
|
||||
"MessageInstallPluginFromApp": "Wtyczka musi być zainstalowana bezpośrednio z aplikacji, w której ma być używana.",
|
||||
"MessageInvalidForgotPasswordPin": "Nieprawidłowy lub wygasły PIN został wpisany. Proszę spróbować ponownie.",
|
||||
"MessageInvalidUser": "Nieprawidłowa nazwa użytkownika lub hasło. Spróbuj ponownie.",
|
||||
"MessageItemSaved": "Obiekt zapisany.",
|
||||
|
@ -1135,7 +1122,6 @@
|
|||
"ProductionLocations": "Kraje",
|
||||
"Programs": "Programy",
|
||||
"Quality": "Jakość",
|
||||
"QueueAllFromHere": "Kolejkuj wszystko z tej lokalizacji",
|
||||
"Raised": "Wypukły",
|
||||
"Rate": "Oceń",
|
||||
"RecentlyWatched": "Ostatnio obejrzane",
|
||||
|
@ -1166,7 +1152,6 @@
|
|||
"ReplaceExistingImages": "Zastępuj istniejące obrazy",
|
||||
"ResumeAt": "Wznów odtwarzanie od {0}",
|
||||
"Rewind": "Do tyłu",
|
||||
"RunAtStartup": "Uruchamiaj po starcie",
|
||||
"Runtime": "Czas trwania",
|
||||
"Saturday": "Sobota",
|
||||
"Save": "Zapisz",
|
||||
|
@ -1262,7 +1247,6 @@
|
|||
"TabParentalControl": "Kontrola rodzicielska",
|
||||
"TabPassword": "Hasło",
|
||||
"TabPlayback": "Odtwarzanie",
|
||||
"TabPlaylist": "Lista odtwarzania",
|
||||
"TabPlaylists": "Listy odtwarzania",
|
||||
"TabPlugins": "Wtyczki",
|
||||
"TabProfile": "Profil",
|
||||
|
@ -1331,7 +1315,6 @@
|
|||
"ValueTimeLimitSingleHour": "Limit czasu: 1 godzina",
|
||||
"ValueVideoCodec": "Kodek wideo: {0}",
|
||||
"Vertical": "Wertykalny",
|
||||
"VideoRange": "Zakres wideo",
|
||||
"ViewAlbum": "Podgląd albumu",
|
||||
"ViewPlaybackInfo": "Wyświetlaj informacje o odtwarzaniu",
|
||||
"Watched": "Obejrzany",
|
||||
|
@ -1375,11 +1358,8 @@
|
|||
"LabelWeb": "Sieć:",
|
||||
"LabelXDlnaCap": "Limit X-DLNA:",
|
||||
"LabelXDlnaDoc": "Dokumentacja X-DLNA:",
|
||||
"LaunchWebAppOnStartup": "Uruchom aplikację w przeglądarce internetowej, gdy uruchomi się serwer Jellyfin",
|
||||
"LaunchWebAppOnStartupHelp": "Otwóż aplikację internetową w domyślnej przeglądarce, gdy uruchomi się serwer. Nie nastąpi to w przypadku korzystania z funkcji ponownego uruchomienia serwera.",
|
||||
"LeaveBlankToNotSetAPassword": "Pozostaw puste, aby nie ustawiać hasła.",
|
||||
"Logo": "Logo",
|
||||
"MediaInfoSoftware": "Oprogramowanie",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Dane",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Osadzony Obraz",
|
||||
|
@ -1447,7 +1427,6 @@
|
|||
"LabelPlayerDimensions": "Rozmiar odtwarzacza:",
|
||||
"LabelDroppedFrames": "Upuszczone klatki:",
|
||||
"LabelCorruptedFrames": "Uszkodzone klatki:",
|
||||
"CopyStreamURLError": "Wystąpił błąd podczas kopiowania adresu URL.",
|
||||
"AskAdminToCreateLibrary": "Poproś administratora o stworzenie biblioteki.",
|
||||
"AllowFfmpegThrottlingHelp": "Kiedy transkodowanie lub remuxowanie dotrze wystarczająco daleko od aktualnej pozycji odtwarzania, zatrzymaj proces aby zużywać mniej zasobów. Jest to najbardziej użyteczne podczas oglądania bez częstego przeskakiwania. Wyłącz jeśli zaobserwujesz problemy z odtwarzaniem.",
|
||||
"AllowFfmpegThrottling": "Ograniczaj transkodowanie",
|
||||
|
@ -1460,9 +1439,7 @@
|
|||
"AlbumArtist": "Album artysty",
|
||||
"Album": "Album",
|
||||
"Person": "Osoba",
|
||||
"OtherArtist": "Inny artysta",
|
||||
"Movie": "Film",
|
||||
"MessageUnauthorizedUser": "Nie masz dostępu do zasobów serwera. Skontaktuj się z administratorem sieci, aby uzyskać więcej informacji.",
|
||||
"LabelLibraryPageSizeHelp": "Ustaw liczbę pozycji pokazywanych na stronie biblioteki. Ustaw 0, aby wyłączyć podział na strony.",
|
||||
"LabelLibraryPageSize": "Rozmiar strony biblioteki:",
|
||||
"LabelDeinterlaceMethod": "Metoda usuwania przeplotu:",
|
||||
|
@ -1506,7 +1483,6 @@
|
|||
"ShowLess": "Pokaż mniej",
|
||||
"Season": "Sezon",
|
||||
"SaveChanges": "Zapisz zmiany",
|
||||
"ReleaseGroup": "Zwolnij Grupę",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Preferuj wbudowane informacje o odcinku przed nazwami plików",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "Używa informacji o odcinku z dołączonych metadanych jeśli są dostępne.",
|
||||
"MessageSyncPlayErrorMedia": "Nie udało się uruchomić SyncPlay! Błąd mediów.",
|
||||
|
@ -1548,7 +1524,6 @@
|
|||
"EnableFasterAnimations": "Szybsze animacje",
|
||||
"LabelRequireHttpsHelp": "Jeśli zaznaczone, serwer automatycznie przekieruje wszystkie połączenia HTTP do HTTPS. Ta opcja nie zadziała jeśli serwer nie nasłuchuje na HTTPS.",
|
||||
"LabelRequireHttps": "Wymagaj HTTPS",
|
||||
"LabelNightly": "Nocny",
|
||||
"LabelStable": "Stabilny",
|
||||
"LabelChromecastVersion": "Wersja Chromecast",
|
||||
"LabelEnableHttpsHelp": "Pozwala serwerowi na nasłuchiwanie na skonfigurowanym porcie HTTPS. Prawidłowy certyfikat musi być skonfigurowany by ta opcja zadziałała.",
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"AccessRestrictedTryAgainLater": "O acesso está atualmente restrito. Por favor, tente novamente mais tarde.",
|
||||
"Actor": "Ator",
|
||||
"Add": "Adicionar",
|
||||
"AddItemToCollectionHelp": "Adiciona itens às coletâneas buscando por eles, usando o botão direito do mouse ou clicando nos menus para os adicionar a uma coletânea.",
|
||||
"AddToCollection": "Adicionar à coletânea",
|
||||
"AddToPlayQueue": "Adicionar à fila de reprodução",
|
||||
"AddToPlaylist": "Adicionar à lista de reprodução",
|
||||
|
@ -38,7 +37,6 @@
|
|||
"AspectRatio": "Proporção da tela",
|
||||
"AttributeNew": "Novo",
|
||||
"Audio": "Áudio",
|
||||
"AutoBasedOnLanguageSetting": "Automático (baseado na configuração do idioma)",
|
||||
"Backdrop": "Imagem de Fundo",
|
||||
"Backdrops": "Imagens de Fundo",
|
||||
"BirthDateValue": "Nascimento: {0}",
|
||||
|
@ -78,7 +76,6 @@
|
|||
"ButtonGuide": "Guia",
|
||||
"ButtonHelp": "Ajuda",
|
||||
"ButtonHome": "Início",
|
||||
"ButtonLearnMore": "Saiba mais",
|
||||
"ButtonLibraryAccess": "Acesso à biblioteca",
|
||||
"ButtonManualLogin": "Login Manual",
|
||||
"ButtonMore": "Mais",
|
||||
|
@ -123,7 +120,6 @@
|
|||
"ButtonSubtitles": "Legendas",
|
||||
"ButtonUninstall": "Desinstalar",
|
||||
"ButtonUp": "Cima",
|
||||
"ButtonViewWebsite": "Ver site",
|
||||
"CancelRecording": "Cancelar gravação",
|
||||
"CancelSeries": "Cancelar série",
|
||||
"Categories": "Categorias",
|
||||
|
@ -279,7 +275,6 @@
|
|||
"HeaderAppearsOn": "Aparece em",
|
||||
"HeaderAudioBooks": "Livros de Áudio",
|
||||
"HeaderAudioSettings": "Configurações de Áudio",
|
||||
"HeaderAutomaticUpdates": "Atualizações Automáticas",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear itens com avaliação desconhecida ou sem avaliação:",
|
||||
"HeaderBooks": "Livros",
|
||||
"HeaderBranding": "Marca",
|
||||
|
@ -347,7 +342,7 @@
|
|||
"HeaderItems": "Itens",
|
||||
"HeaderKeepRecording": "Continuar Gravando",
|
||||
"HeaderKeepSeries": "Manter Série",
|
||||
"HeaderKodiMetadataHelp": "Para ativar ou desativar metadados NFO, edite uma biblioteca na configuração da Biblioteca do Jellyfin e localize a seção de gravadores de metadados.",
|
||||
"HeaderKodiMetadataHelp": "Para ativar ou desativar metadados NFO, edite uma biblioteca na configuração de Biblioteca do Jellyfin e localize a seção de gravadores de metadados.",
|
||||
"HeaderLatestEpisodes": "Episódios Recentes",
|
||||
"HeaderLatestMedia": "Mídias Recentes",
|
||||
"HeaderLatestMovies": "Filmes Recentes",
|
||||
|
@ -396,7 +391,7 @@
|
|||
"HeaderPreferredMetadataLanguage": "Idioma Preferido dos Metadados",
|
||||
"HeaderProfile": "Perfil",
|
||||
"HeaderProfileInformation": "Informação do Perfil",
|
||||
"HeaderProfileServerSettingsHelp": "Estes valores controlam como o Servidor Jellyfin se apresentará ao dispositivo.",
|
||||
"HeaderProfileServerSettingsHelp": "Estes valores controlam como o servidor Jellyfin se apresentará ao dispositivo.",
|
||||
"HeaderRecentlyPlayed": "Reproduzido Recentemente",
|
||||
"HeaderRecordingOptions": "Opções de Gravação",
|
||||
"HeaderRecordingPostProcessing": "Processamento Pós-Gravação",
|
||||
|
@ -496,14 +491,12 @@
|
|||
"LabelAlbumArtists": "Artistas do álbum:",
|
||||
"LabelAll": "Todos",
|
||||
"LabelAllowHWTranscoding": "Permitir a transcodificação de hardware",
|
||||
"LabelAllowServerAutoRestart": "Permitir ao servidor reiniciar automaticamente para aplicar as atualizações",
|
||||
"LabelAllowServerAutoRestartHelp": "O servidor só reiniciará durante os períodos ociosos quando nenhum usuário estiver ativo.",
|
||||
"LabelAllowedRemoteAddresses": "Filtro de endereço IP remoto:",
|
||||
"LabelAllowedRemoteAddressesMode": "Modo do filtro de endereço IP remoto:",
|
||||
"LabelAppName": "Nome do app",
|
||||
"LabelAppNameExample": "Exemplo: Sickbeard, Sonarr",
|
||||
"LabelArtists": "Artistas:",
|
||||
"LabelArtistsHelp": "Separa vários usando ;",
|
||||
"LabelArtistsHelp": "Separe múltiplos artistas usando ponto e vírgula.",
|
||||
"LabelAudio": "Áudio",
|
||||
"LabelAudioLanguagePreference": "Idioma preferido de áudio:",
|
||||
"LabelAutomaticallyRefreshInternetMetadataEvery": "Atualizar automaticamente os metadados da internet:",
|
||||
|
@ -534,7 +527,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Nome para exibição:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Fornece um nome para exibição ou deixe em branco para usar o nome informado pelo dispositivo.",
|
||||
"LabelCustomRating": "Avaliação personalizada:",
|
||||
"LabelDashboardTheme": "Tema do painel do servidor:",
|
||||
"LabelDateAdded": "Data de adição:",
|
||||
"LabelDateAddedBehavior": "Comportamento da data de adição para novo conteúdo:",
|
||||
"LabelDateAddedBehaviorHelp": "Se um valor de metadados estiver presente, ele sempre será utilizado antes destas opções.",
|
||||
|
@ -755,7 +747,6 @@
|
|||
"LabelSortBy": "Ordenar por:",
|
||||
"LabelSortOrder": "Ordem:",
|
||||
"LabelSortTitle": "Ordenar por título:",
|
||||
"LabelSoundEffects": "Efeitos sonoros:",
|
||||
"LabelSource": "Fonte:",
|
||||
"LabelSpecialSeasonsDisplayName": "Nome de exibição da temporada especial:",
|
||||
"LabelSportsCategories": "Categorias de esportes:",
|
||||
|
@ -804,7 +795,6 @@
|
|||
"LabelXDlnaCapHelp": "Determina o conteúdo do elemento X_DLNACAP no namespace urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDocHelp": "Determina o conteúdo do elemento X_DLNADOC no namespace urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYear": "Ano:",
|
||||
"LabelYourFirstName": "Seu primeiro nome:",
|
||||
"LabelYoureDone": "Pronto!",
|
||||
"LabelZipCode": "CEP:",
|
||||
"LabelffmpegPath": "Local do FFmpeg:",
|
||||
|
@ -868,7 +858,6 @@
|
|||
"MessageFileReadError": "Ocorreu um erro ao ler o arquivo. Por favor, tente novamente.",
|
||||
"MessageForgotPasswordFileCreated": "O seguinte arquivo foi criado no seu servidor e contém instruções de como proceder:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Por favor, tente novamente dentro da rede local para iniciar o processo para redefinir a senha.",
|
||||
"MessageInstallPluginFromApp": "Este plugin deve ser instalado de dentro do app em que deseja usá-lo.",
|
||||
"MessageInvalidForgotPasswordPin": "Foi digitado um código PIN inválido ou expirado. Por favor, tente novamente.",
|
||||
"MessageInvalidUser": "Usuário ou senha inválidos. Por favor, tente novamente.",
|
||||
"MessageItemSaved": "Item salvo.",
|
||||
|
@ -1096,7 +1085,6 @@
|
|||
"ProductionLocations": "Locais de produção",
|
||||
"Programs": "Programas",
|
||||
"Quality": "Qualidade",
|
||||
"QueueAllFromHere": "Enfileirar todas a partir daqui",
|
||||
"Raised": "Criado",
|
||||
"Rate": "Avaliação",
|
||||
"RecentlyWatched": "Assistido recentemente",
|
||||
|
@ -1127,7 +1115,6 @@
|
|||
"ReplaceExistingImages": "Substituir imagens existentes",
|
||||
"ResumeAt": "Retomar de {0}",
|
||||
"Rewind": "Retroceder",
|
||||
"RunAtStartup": "Executar ao iniciar",
|
||||
"Runtime": "Duração",
|
||||
"Saturday": "Sábado",
|
||||
"Save": "Salvar",
|
||||
|
@ -1217,7 +1204,6 @@
|
|||
"TabParentalControl": "Controle dos Pais",
|
||||
"TabPassword": "Senha",
|
||||
"TabPlayback": "Reprodução",
|
||||
"TabPlaylist": "Lista de Reprodução",
|
||||
"TabPlaylists": "Listas de Reprodução",
|
||||
"TabProfile": "Perfil",
|
||||
"TabProfiles": "Perfis",
|
||||
|
@ -1278,7 +1264,6 @@
|
|||
"ValueTimeLimitMultiHour": "Limite de tempo: {0} horas",
|
||||
"ValueTimeLimitSingleHour": "Limite de tempo: 1 hora",
|
||||
"ValueVideoCodec": "Codec de Vídeo: {0}",
|
||||
"VideoRange": "Faixa de vídeo",
|
||||
"ViewAlbum": "Exibir álbum",
|
||||
"ViewPlaybackInfo": "Exibir informação de reprodução",
|
||||
"Watched": "Assistido",
|
||||
|
@ -1317,11 +1302,9 @@
|
|||
"LabelCache": "Cache:",
|
||||
"LabelLogs": "Registros:",
|
||||
"LabelProfileCodecs": "Codecs:",
|
||||
"LabelSkin": "Tema:",
|
||||
"LabelStatus": "Status:",
|
||||
"LabelTag": "Marcador:",
|
||||
"LeaveBlankToNotSetAPassword": "Caso não queira definir uma senha, deixe em branco.",
|
||||
"LinksValue": "Links: {0}",
|
||||
"Logo": "Logo",
|
||||
"MediaInfoCodec": "Codec",
|
||||
"MediaInfoFramerate": "Taxa de quadros",
|
||||
|
@ -1332,7 +1315,7 @@
|
|||
"Normal": "Normal",
|
||||
"Option3D": "3D",
|
||||
"OptionAuto": "Automático",
|
||||
"AuthProviderHelp": "Seleciona um provedor de autenticação que será usado para autenticar a senha do usuário.",
|
||||
"AuthProviderHelp": "Selecione um provedor de autenticação que será usado para autenticar a senha do usuário.",
|
||||
"HeaderFavoriteMovies": "Filmes Favoritos",
|
||||
"HeaderFavoriteShows": "Séries favoritas",
|
||||
"HeaderFavoriteEpisodes": "Episódios favoritos",
|
||||
|
@ -1357,9 +1340,6 @@
|
|||
"LabelTranscodingContainer": "Formato:",
|
||||
"LabelXDlnaCap": "X-DLNA cap:",
|
||||
"LabelXDlnaDoc": "X-DLNA doc:",
|
||||
"LaunchWebAppOnStartup": "Executar a interface web quando iniciar o servidor",
|
||||
"LaunchWebAppOnStartupHelp": "Abre o cliente web no seu navegador padrão quando o servidor iniciar. Isso não ocorrerá ao usar a função de reiniciar o servidor.",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoStreamTypeAudio": "Áudio",
|
||||
"MediaInfoStreamTypeData": "Dados",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Imagem Incorporada",
|
||||
|
@ -1449,7 +1429,6 @@
|
|||
"LabelPlayerDimensions": "Dimensões do player:",
|
||||
"LabelCorruptedFrames": "Quadros corrompidos:",
|
||||
"HeaderNavigation": "Navegação",
|
||||
"CopyStreamURLError": "Houve um erro ao copiar a URL.",
|
||||
"ButtonSplit": "Dividir",
|
||||
"AskAdminToCreateLibrary": "Peça a um administrador para criar uma biblioteca.",
|
||||
"AllowFfmpegThrottling": "Transcodes do Acelerador",
|
||||
|
@ -1475,9 +1454,7 @@
|
|||
"Yadif": "YADIF",
|
||||
"Track": "Trilha",
|
||||
"Season": "Temporada",
|
||||
"ReleaseGroup": "Grupo de Lançamento",
|
||||
"Person": "Pessoa",
|
||||
"OtherArtist": "Outro Artista",
|
||||
"Movie": "Filme",
|
||||
"LabelLibraryPageSizeHelp": "Selecione a quantidade de itens a aparecer na página da biblioteca. Coloque 0 para desabilitar a paginação.",
|
||||
"LabelLibraryPageSize": "Tamanho da página da biblioteca:",
|
||||
|
@ -1489,7 +1466,6 @@
|
|||
"AlbumArtist": "Artista do Album",
|
||||
"Album": "Album",
|
||||
"UnsupportedPlayback": "O Jellyfin não pode descriptografar conteúdo protegido por DRM, porém mesmo assim fará uma tentativa para todo tipo de conteúdo, incluindo títulos protegidos. A imagem de alguns arquivos pode aparecer completamente preta devido a criptografia ou outros recursos não suportados, como títulos interativos.",
|
||||
"MessageUnauthorizedUser": "Você não está autorizado a acessar o servidor neste momento. Por favor, contate o administrador do servidor para mais informações.",
|
||||
"ButtonTogglePlaylist": "Playlist",
|
||||
"ButtonToggleContextMenu": "Mais",
|
||||
"Filter": "Filtro",
|
||||
|
@ -1500,7 +1476,6 @@
|
|||
"SaveChanges": "Salvar mudanças",
|
||||
"LabelRequireHttpsHelp": "Se selecionado, o servidor vai automaticamente redirecionar todas as solicitações HTTP para HTTPS. Isso não terá efeito se o servidor não estiver escutando HTTPS.",
|
||||
"LabelRequireHttps": "Necessita HTTPS",
|
||||
"LabelNightly": "Nightly",
|
||||
"LabelStable": "Estável",
|
||||
"LabelChromecastVersion": "Versão do Chromecast",
|
||||
"LabelEnableHttpsHelp": "Permite que o servidor escute na porta HTTPS configurada. Um certificado válido também deve ser configurado para que isso entre em vigor.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"ButtonHelp": "Ajuda",
|
||||
"ButtonHome": "Início",
|
||||
"ButtonInfo": "Informação",
|
||||
"ButtonLearnMore": "Saiba mais",
|
||||
"ButtonManualLogin": "Início de Sessão Manual",
|
||||
"ButtonMore": "Mais",
|
||||
"ButtonNetwork": "Rede",
|
||||
|
@ -69,7 +68,6 @@
|
|||
"ButtonSubmit": "Enviar",
|
||||
"ButtonSubtitles": "Legendas",
|
||||
"ButtonUninstall": "Desinstalar",
|
||||
"ButtonViewWebsite": "Ver website",
|
||||
"ChannelAccessHelp": "Selecione os canais para partilhar com este utilizador. Os administradores poderão editar todos os canais utilizando o gestor de metadados.",
|
||||
"CinemaModeConfigurationHelp": "O modo cinema traz a experiência do cinema para a sua sala, possibilitando reproduzir trailers e introduções personalizadas antes da longa-metragem.",
|
||||
"Composer": "Compositor",
|
||||
|
@ -123,7 +121,6 @@
|
|||
"HeaderApiKeysHelp": "As aplicações externas necessitam de uma chave da API para comunicar com o Jellyfin Server. As chaves são emitidas ao entrar com uma conta Jellyfin ou concedendo manualmente a chave à aplicação.",
|
||||
"HeaderApp": "Aplicação",
|
||||
"HeaderAudioSettings": "Configurações de Áudio",
|
||||
"HeaderAutomaticUpdates": "Atualizações automáticas",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear conteúdo sem informação de classificação etária ou com informação desconhecida:",
|
||||
"HeaderBranding": "Marca",
|
||||
"HeaderCastCrew": "Elenco e Equipa",
|
||||
|
@ -274,8 +271,6 @@
|
|||
"LabelAlbumArtPN": "PN da capa do álbum:",
|
||||
"LabelAlbumArtists": "Artistas do Álbum:",
|
||||
"LabelAll": "Todos",
|
||||
"LabelAllowServerAutoRestart": "Permitir ao servidor reiniciar automaticamente para aplicar atualizações",
|
||||
"LabelAllowServerAutoRestartHelp": "O servidor irá reiniciar apenas durante períodos em que não esteja a ser usado, quando nenhum utilizador estiver ativo.",
|
||||
"LabelAppName": "Nome da aplicação",
|
||||
"LabelAppNameExample": "Exemplo: Sickbeard, Sonarr",
|
||||
"LabelArtists": "Artistas:",
|
||||
|
@ -490,7 +485,6 @@
|
|||
"LabelVersionInstalled": "{0} instalado",
|
||||
"LabelXDlnaCapHelp": "Determina o conteúdo do elemento X_DLNACAP no namespace urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDocHelp": "Determina o conteúdo do elemento X_DLNADOC no namespace urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYourFirstName": "O seu primeiro nome:",
|
||||
"LabelYoureDone": "Concluiu!",
|
||||
"LabelZipCode": "CEP:",
|
||||
"LibraryAccessHelp": "Escolha as Bibliotecas a partilhar com este utilizador. Os Administradores poderão editar todas as pastas, usando o Gestor de Metadados.",
|
||||
|
@ -710,7 +704,6 @@
|
|||
"TabParentalControl": "Controlo Parental",
|
||||
"TabPassword": "Palavra-passe",
|
||||
"TabPlayback": "Reprodução",
|
||||
"TabPlaylist": "Lista de Reprodução",
|
||||
"TabPlaylists": "Listas de Reprodução",
|
||||
"TabPlugins": "Extensões",
|
||||
"TabProfile": "Perfil",
|
||||
|
@ -749,7 +742,6 @@
|
|||
"Writer": "Autor",
|
||||
"XmlDocumentAttributeListHelp": "Estes atributos são aplicados ao elemento principal de cada resposta XML.",
|
||||
"AccessRestrictedTryAgainLater": "Acesso atualmente restrito. Por favor, tente mais tarde.",
|
||||
"AddItemToCollectionHelp": "Adicione itens às coleções pesquisando-os e utilizando o respetivo menu de toque ou clique direito para os adicionar a uma coleção.",
|
||||
"AddToCollection": "Adicionar à coleção",
|
||||
"AddToPlayQueue": "Adicionar à fila de reprodução",
|
||||
"AddedOnValue": "Adicionado {0}",
|
||||
|
@ -777,7 +769,6 @@
|
|||
"AspectRatio": "Proporção",
|
||||
"AuthProviderHelp": "Selecione um mecanismo de autenticação a ser utilizado para validar as credenciais deste utilizador.",
|
||||
"Auto": "Automático",
|
||||
"AutoBasedOnLanguageSetting": "Automático (baseado no idioma definido)",
|
||||
"BirthDateValue": "Nascimento: {0}",
|
||||
"BirthPlaceValue": "Local de nascimento: {0}",
|
||||
"Blacklist": "Lista Negra",
|
||||
|
@ -941,7 +932,6 @@
|
|||
"LabelDefaultScreen": "Ecrã por defeito:",
|
||||
"LabelDeathDate": "Data de falecimento:",
|
||||
"LabelDateTimeLocale": "Localização da data/hora:",
|
||||
"LabelDashboardTheme": "Tema do Painel Principal:",
|
||||
"LabelCertificatePasswordHelp": "Se o certificado requer uma palavra-passe, escreva-a aqui.",
|
||||
"LabelCertificatePassword": "Palavra-passe do certificado:",
|
||||
"LabelBurnSubtitles": "Integrar legendas:",
|
||||
|
@ -991,7 +981,6 @@
|
|||
"SaveSubtitlesIntoMediaFoldersHelp": "Guardar ficheiros de legendas junto aos ficheiros vídeo facilita a gestão.",
|
||||
"SaveSubtitlesIntoMediaFolders": "Guardar legendas nas pastas multimédia",
|
||||
"Runtime": "Duração",
|
||||
"RunAtStartup": "Executar no arranque",
|
||||
"ResumeAt": "Retomar a partir de {0}",
|
||||
"ReplaceAllMetadata": "Substituir todos os metadados",
|
||||
"RepeatOne": "Repetir este",
|
||||
|
@ -1000,7 +989,6 @@
|
|||
"MessageNoPluginConfiguration": "Esta extensão não é configurável.",
|
||||
"MessagePluginInstallDisclaimer": "As extensões desenvolvidas pela comunidade Jellyfin são uma ótima forma de melhorar a experiência de utilização do Jellyfin, adicionando novas funcionalidades e benefícios. Antes de proceder à instalação, tenha em atenção que estas podem alterar determinados comportamentos no Servidor Jellyfin e provocar efeitos como tempos de atualização da Biblioteca mais longos, processamento adicional em segundo plano e estabilidade do sistema reduzida.",
|
||||
"MessagePluginConfigurationRequiresLocalAccess": "Para configurar esta extensão, inicie sessão localmente no servidor.",
|
||||
"MessageInstallPluginFromApp": "Esta extensão deverá ser instalada a partir da aplicação onde tem intenção de a utilizar.",
|
||||
"HeaderPluginInstallation": "Instalação de Extensão",
|
||||
"MessagePluginInstalled": "A extensão foi instalada com sucesso. O Servidor Jellyfin necessitará de reiniciar para aplicar as alterações.",
|
||||
"PleaseRestartServerName": "Por favor, reinicie o Servidor Jellyfin - {0}.",
|
||||
|
@ -1161,7 +1149,6 @@
|
|||
"MediaInfoStreamTypeEmbeddedImage": "Imagem Integrada",
|
||||
"MediaInfoStreamTypeData": "Dados",
|
||||
"MediaInfoStreamTypeAudio": "Áudio",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoTimestamp": "Data e Hora",
|
||||
"MediaInfoSampleRate": "Taxa de Amostragem",
|
||||
"MediaInfoResolution": "Resolução",
|
||||
|
@ -1187,12 +1174,10 @@
|
|||
"LabelMetadataSaversHelp": "Escolha o formato em que deseja guardar metadados.",
|
||||
"LabelRefreshMode": "Modo de actualização:",
|
||||
"LabelRemoteClientBitrateLimitHelp": "Valor-limite de taxa de transmissão para todos os dispositivos fora da rede local. Este valor é opcional e aplica-se a cada transmissão individual. Ao definir este valor previne que dispositivos peçam uma taxa de transmissão acima da sua ligação à internet. Pedir uma taxa de transmissão acima do limite da ligação implica a necessidade de transcodificar o vídeo e num aumento da carga da CPU.",
|
||||
"LabelSoundEffects": "Efeitos sonoros:",
|
||||
"Home": "Início",
|
||||
"GuideProviderLogin": "Iniciar Sessão",
|
||||
"HeaderSubtitleDownloads": "Transferir legendas",
|
||||
"LabelRecord": "Gravação:",
|
||||
"LabelSkin": "Máscara:",
|
||||
"LabelMetadataDownloadersHelp": "Ative e ordene os seus provedores de metadados por ordem de preferência. Provedores com menos prioridade só serão usados para completar informação em falta.",
|
||||
"LabelMetadataReadersHelp": "Ordene as suas fontes de metadados por ordem de preferência. O primeiro ficheiro encontrado será utilizado.",
|
||||
"LabelMetadataReaders": "Provedores de metadados:",
|
||||
|
@ -1315,7 +1300,6 @@
|
|||
"LabelSportsCategories": "Categorias de Desporto:",
|
||||
"FetchingData": "A transferir informação adicional",
|
||||
"List": "lista",
|
||||
"LaunchWebAppOnStartup": "Iniciar a interface web ao iniciar o servidor",
|
||||
"No": "Não",
|
||||
"OptionRegex": "Expressão Regular",
|
||||
"OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)",
|
||||
|
@ -1337,7 +1321,6 @@
|
|||
"MediaInfoAnamorphic": "Anamórfico",
|
||||
"LabelTranscodes": "Transcodificação:",
|
||||
"Whitelist": "Lista branca",
|
||||
"VideoRange": "Alcance video",
|
||||
"ValueOneAlbum": "1 álbum",
|
||||
"ValueMusicVideoCount": "{0} videoclips",
|
||||
"ValueMovieCount": "{0} filmes",
|
||||
|
@ -1387,7 +1370,6 @@
|
|||
"RefreshMetadata": "Recarregar metadados",
|
||||
"RecentlyWatched": "Vistos recentemente",
|
||||
"Rate": "Avaliação",
|
||||
"QueueAllFromHere": "Fila a partir daqui",
|
||||
"Quality": "Qualidade",
|
||||
"ProductionLocations": "Localizações de produção",
|
||||
"Primary": "Primário",
|
||||
|
@ -1412,9 +1394,7 @@
|
|||
"MediaInfoDefault": "Padrão",
|
||||
"MediaInfoBitDepth": "Bit profundidade",
|
||||
"Logo": "Logotipo",
|
||||
"LinksValue": "Ligações: {0}",
|
||||
"Like": "Gosto",
|
||||
"LaunchWebAppOnStartupHelp": "Abra o cliente web no ser browser padrão quando o servidor iniciar. Isto não acontecerá usando uma função de reiniciar de servidor.",
|
||||
"LabelXDlnaDoc": "X-DLNA doc:",
|
||||
"LabelXDlnaCap": "X-DLNA cap:",
|
||||
"LabelVaapiDeviceHelp": "Este é o nó de renderização usado para aceleração de hardware.",
|
||||
|
@ -1429,7 +1409,6 @@
|
|||
"HeaderNavigation": "Navegação",
|
||||
"EnableStreamLooping": "Auto-cíclico de streams ao vivo",
|
||||
"Down": "Baixo",
|
||||
"CopyStreamURLError": "Ocorreu um erro a copiar o URL.",
|
||||
"ButtonSplit": "Dividir",
|
||||
"NoCreatedLibraries": "Parece que ainda não foi criada nenhuma biblioteca por enquanto. {0} Gostaria de criar uma biblioteca agora? {1}",
|
||||
"AskAdminToCreateLibrary": "Pergunte a um administrador para criar uma biblioteca.",
|
||||
|
@ -1449,7 +1428,6 @@
|
|||
"LabelRepositoryUrl": "URL do Repositório",
|
||||
"HeaderNewRepository": "Novo Repositório",
|
||||
"MessageNoRepositories": "Sem repositórios.",
|
||||
"MessageUnauthorizedUser": "Não está autorizado a aceder ao servidor neste momento. Por favor contacte o administador deste servidor para informação mais detalhada.",
|
||||
"LabelSyncPlayAccess": "Acesso \"SyncPlay\"",
|
||||
"LabelSyncPlayAccessNone": "Desativar para este utilizador",
|
||||
"LabelSyncPlayAccessJoinGroups": "Permitir utilizador a aderir a grupos",
|
||||
|
@ -1466,7 +1444,6 @@
|
|||
"EnableFasterAnimations": "Animações Rápidas",
|
||||
"LabelRequireHttpsHelp": "Se selecionado, o servidor irá automaticamente redirecionar todos os pedidos em HTTP para HTTPS. Isto não surte efeito caso o servidor não esteja configurado em HTTPS.",
|
||||
"LabelRequireHttps": "Exigir HTTPS",
|
||||
"LabelNightly": "\"Nightly\"",
|
||||
"LabelStable": "Estável",
|
||||
"LabelChromecastVersion": "Versão do \"Chromecast\"",
|
||||
"LabelLibraryPageSizeHelp": "Define a quantidade de items a apresentar na página de uma Biblioteca. Para desativar a existência de paginação, introduza o valor 0.",
|
||||
|
|
|
@ -50,7 +50,6 @@
|
|||
"TabProfile": "Perfil",
|
||||
"TabPlugins": "Extensões",
|
||||
"TabPlaylists": "Listas de Reprodução",
|
||||
"TabPlaylist": "Lista de Reprodução",
|
||||
"TabPlayback": "Reprodução",
|
||||
"TabPassword": "Palavra-passe",
|
||||
"TabParentalControl": "Controlo Parental",
|
||||
|
@ -117,7 +116,6 @@
|
|||
"Save": "Guardar",
|
||||
"Saturday": "Sábado",
|
||||
"Runtime": "Duração",
|
||||
"RunAtStartup": "Executar no arranque",
|
||||
"Rewind": "Retroceder",
|
||||
"ResumeAt": "Retomar a partir de {0}",
|
||||
"ReplaceExistingImages": "Substituir imagens existentes",
|
||||
|
@ -416,7 +414,6 @@
|
|||
"LabelDateAddedBehaviorHelp": "Quando os metadados incluirem um valor, este será utilizado antes destas opções.",
|
||||
"LabelDateAddedBehavior": "Comportamento da data de adição para novo conteúdo:",
|
||||
"LabelDateAdded": "Adicionado a:",
|
||||
"LabelDashboardTheme": "Tema do Painel Principal:",
|
||||
"LabelCustomRating": "Classificação personalizada:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Forneça um nome a ser mostrado, ou deixe em branco para utilizar o nome reportado pelo dispositivo.",
|
||||
"LabelCustomDeviceDisplayName": "Nome a ser mostrado:",
|
||||
|
@ -454,8 +451,6 @@
|
|||
"LabelAppName": "Nome da aplicação",
|
||||
"LabelAllowedRemoteAddressesMode": "Tipo de filtro de IP remoto:",
|
||||
"LabelAllowedRemoteAddresses": "Filtro de IP remoto:",
|
||||
"LabelAllowServerAutoRestartHelp": "O servidor reiniciará apenas durante períodos em que não esteja a ser usado, quando nenhum utilizador estiver activo.",
|
||||
"LabelAllowServerAutoRestart": "Permitir ao servidor reiniciar automaticamente para instalar actualizações",
|
||||
"LabelAllowHWTranscoding": "Permitir transcodificação por hardware",
|
||||
"LabelAll": "Todos",
|
||||
"LabelAlbumArtists": "Artistas do Álbum:",
|
||||
|
@ -706,7 +701,6 @@
|
|||
"MessageItemSaved": "Item guardado.",
|
||||
"MessageInvalidUser": "Nome de utilizador ou palavra-passe inválidos. Por favor, tente novamente.",
|
||||
"MessageInvalidForgotPasswordPin": "Foi inserido um código PIN inválido ou expirado. Por favor, tente de novo.",
|
||||
"MessageInstallPluginFromApp": "Esta extensão deverá ser instalada a partir da aplicação em que tem intenção de a utilizar.",
|
||||
"MessageImageTypeNotSelected": "Por favor, seleccione um tipo de imagem da lista.",
|
||||
"MessageImageFileTypeAllowed": "Apenas são suportados ficheiros JPEG ou PNG.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Por favor, volte a tentar o processo de recuperação de palavra-passe quando se encontrar dentro da sua rede local.",
|
||||
|
@ -735,7 +729,6 @@
|
|||
"MediaInfoStreamTypeEmbeddedImage": "Imagem Integrada",
|
||||
"MediaInfoStreamTypeData": "Dados",
|
||||
"MediaInfoStreamTypeAudio": "Áudio",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoTimestamp": "Data e Hora",
|
||||
"MediaInfoSize": "Tamanho",
|
||||
"MediaInfoSampleRate": "Taxa de Amostragem",
|
||||
|
@ -755,7 +748,6 @@
|
|||
"LatestFromLibrary": "Mais Recentes em {0}",
|
||||
"LabelZipCode": "Código Postal:",
|
||||
"LabelYoureDone": "Concluiu!",
|
||||
"LabelYourFirstName": "O seu primeiro nome:",
|
||||
"LabelXDlnaDocHelp": "Determina o conteúdo do elemento X_DLNADOC no namespace urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaCapHelp": "Determina o conteúdo do elemento X_DLNACAP no namespace urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelVersionInstalled": "{0} instalado",
|
||||
|
@ -953,7 +945,6 @@
|
|||
"CancelSeries": "Cancelar gravação de série",
|
||||
"CancelRecording": "Cancelar gravação",
|
||||
"ButtonWebsite": "Website",
|
||||
"ButtonViewWebsite": "Ver website",
|
||||
"ButtonUp": "Para cima",
|
||||
"ButtonUninstall": "Desinstalar",
|
||||
"ButtonTrailer": "Trailer",
|
||||
|
@ -999,7 +990,6 @@
|
|||
"ButtonMore": "Mais",
|
||||
"ButtonManualLogin": "Início de Sessão Manual",
|
||||
"ButtonLibraryAccess": "Acesso à biblioteca",
|
||||
"ButtonLearnMore": "Saiba mais",
|
||||
"ButtonInfo": "Informação",
|
||||
"ButtonHome": "Início",
|
||||
"ButtonHelp": "Ajuda",
|
||||
|
@ -1081,7 +1071,6 @@
|
|||
"Banner": "Insígnia",
|
||||
"Backdrops": "Imagens de Fundo",
|
||||
"Backdrop": "Imagem de Fundo",
|
||||
"AutoBasedOnLanguageSetting": "Automático (baseado no idioma definido)",
|
||||
"AuthProviderHelp": "Seleccione um mecanismo de autenticação a ser utilizado para validar as credenciais deste utilizador.",
|
||||
"Audio": "Áudio",
|
||||
"AttributeNew": "Novo",
|
||||
|
@ -1114,7 +1103,6 @@
|
|||
"AddToPlaylist": "Adicionar à lista de reprodução",
|
||||
"AddToPlayQueue": "Adicionar à fila de reprodução",
|
||||
"AddToCollection": "Adicionar à coleção",
|
||||
"AddItemToCollectionHelp": "Adicione itens às coleções pesquisando-os e utilizando o respetivo menu de toque ou clique direito para os adicionar a uma coleção.",
|
||||
"Add": "Adicionar",
|
||||
"Actor": "Ator",
|
||||
"AccessRestrictedTryAgainLater": "O acesso está atualmente restrito. Por favor, tente mais tarde.",
|
||||
|
@ -1147,7 +1135,6 @@
|
|||
"HeaderCancelRecording": "Cancelar Gravação",
|
||||
"HeaderBooks": "Livros",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear conteúdo sem informação de classificação etária ou com informação desconhecida:",
|
||||
"HeaderAutomaticUpdates": "Acualizações automáticas",
|
||||
"HeaderAudioSettings": "Configurações de Áudio",
|
||||
"HeaderAudioBooks": "Livros de Áudio",
|
||||
"HeaderApp": "Aplicação",
|
||||
|
@ -1201,7 +1188,6 @@
|
|||
"Down": "Baixar",
|
||||
"HeaderTags": "Tags",
|
||||
"HeaderNavigation": "Navegar",
|
||||
"CopyStreamURLError": "Ocorreu um erro ao copiar o URL.",
|
||||
"ButtonSplit": "Dividir",
|
||||
"AskAdminToCreateLibrary": "Peça a um administrador para criar uma biblioteca.",
|
||||
"AllowFfmpegThrottling": "Transcodificação com falhas",
|
||||
|
@ -1265,12 +1251,9 @@
|
|||
"ManageRecording": "Gerenciar gravações",
|
||||
"Logo": "Logo",
|
||||
"List": "Lista",
|
||||
"LinksValue": "Links: {0}",
|
||||
"Like": "Gostei",
|
||||
"LeaveBlankToNotSetAPassword": "Você pode deixar esse campo em branco para definir nenhuma senha.",
|
||||
"LearnHowYouCanContribute": "Aprenda como você pode contribuir.",
|
||||
"LaunchWebAppOnStartupHelp": "Abra o cliente da web no seu navegador da web padrão quando o servidor iniciar. Isso não ocorrerá ao usar a função de reinicialização do servidor.",
|
||||
"LaunchWebAppOnStartup": "Inicie a interface da web ao iniciar o servidor",
|
||||
"Large": "Amplo",
|
||||
"LanNetworksHelp": "Lista separada por vírgula de endereços IP ou entradas de máscara de rede/IP para redes que serão consideradas na rede local ao impor restrições de largura de banda. Se definido, todos os outros endereços IP serão considerados na rede externa e estarão sujeitos às restrições de largura de banda externa. Se deixado em branco, apenas a sub-rede do servidor é considerada na rede local.",
|
||||
"LabelffmpegPathHelp": "O caminho para o arquivo do aplicativo ffmpeg ou pasta que contém o ffmpeg.",
|
||||
|
@ -1302,11 +1285,9 @@
|
|||
"LabelSubtitleDownloaders": "Downloaders de legendas:",
|
||||
"LabelStreamType": "Tipo de fluxo:",
|
||||
"LabelSpecialSeasonsDisplayName": "Nome de exibição da temporada especial:",
|
||||
"LabelSoundEffects": "Efeitos sonoros:",
|
||||
"LabelSortTitle": "Classificar título:",
|
||||
"LabelSortOrder": "Ordem de classificação:",
|
||||
"LabelSortBy": "Ordenar por:",
|
||||
"LabelSkin": "Pele:",
|
||||
"LabelRemoteClientBitrateLimitHelp": "Um limite opcional de taxa de bits por fluxo para todos os dispositivos fora da rede. Isso é útil para impedir que os dispositivos solicitem uma taxa de bits mais alta do que a sua conexão à Internet pode suportar. Isso pode resultar no aumento da carga da CPU no servidor para transcodificar vídeos em tempo real para uma taxa de bits mais baixa.",
|
||||
"LabelPlayerDimensions": "Dimensões do reprodutor:",
|
||||
"LabelParentNumber": "Número pai:",
|
||||
|
@ -1384,7 +1365,6 @@
|
|||
"OptionAutomaticallyGroupSeries": "Mesclar automaticamente séries que estão espalhadas por várias pastas",
|
||||
"OptionAllowSyncTranscoding": "Permitir download e sincronização de mídia que requeiram transcodificação",
|
||||
"OptionForceRemoteSourceTranscoding": "Forçar a transcodificação de fontes de mídia remota (como LiveTV)",
|
||||
"MessageUnauthorizedUser": "Você não está autorizado a acessar o servidor no momento. Entre em contato com o administrador do servidor para obter mais informações.",
|
||||
"PreferEmbeddedTitlesOverFileNames": "Preferir títulos incorporados sobre nomes de arquivos",
|
||||
"OptionSaveMetadataAsHiddenHelp": "Alterar isso será aplicado aos novos metadados salvos daqui para frente. Os arquivos de metadados existentes serão atualizados na próxima vez em que forem salvos pelo Jellyfin Server.",
|
||||
"OptionRegex": "Regex",
|
||||
|
@ -1395,12 +1375,10 @@
|
|||
"PreferEmbeddedTitlesOverFileNamesHelp": "Isso determina o título quando nenhum metadado da Internet ou local está disponível.",
|
||||
"PlaybackErrorNoCompatibleStream": "Este cliente não é compatível com a mídia e o servidor não está enviando um formato de mídia compatível.",
|
||||
"Person": "Pessoa",
|
||||
"OtherArtist": "Outro artista",
|
||||
"OptionThumbCard": "Cartão de polegar",
|
||||
"OptionPosterCard": "Cartão de pôster",
|
||||
"LabelRequireHttpsHelp": "Se marcado, o servidor redirecionará automaticamente todas as solicitações por HTTP para HTTPS. Isso não terá efeito se o servidor não estiver escutando HTTPS.",
|
||||
"LabelRequireHttps": "Requer HTTPS",
|
||||
"LabelNightly": "À noite",
|
||||
"LabelChromecastVersion": "Versão do Chromecast",
|
||||
"LabelEnableHttpsHelp": "Permite que o servidor escute na postagem HTTPS configurada. Um certificado válido também deve ser configurado para que isso entre em vigor.",
|
||||
"LabelEnableHttps": "Ativar HTTPS",
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
"HeaderActiveRecordings": "Înregistrări active",
|
||||
"HeaderAddScheduledTaskTrigger": "Adaugă declanșator",
|
||||
"HeaderAddUser": "Adaugă Utilizator",
|
||||
"HeaderAutomaticUpdates": "Actualizare Automată",
|
||||
"HeaderChannels": "Canale",
|
||||
"HeaderContinueWatching": "Vizionează în continuare",
|
||||
"HeaderDeviceAccess": "Accesul Dispozitivelor",
|
||||
|
@ -63,8 +62,6 @@
|
|||
"HeaderUsers": "Utilizatori",
|
||||
"Help": "Ajutor",
|
||||
"ImportMissingEpisodesHelp": "Dacă este activată, informația despre episoadele lipsă va fi importată in baza de date Jellyfin și va fi afișată în cadrul serialelor. Aceasta poate cauza un timp semnificativ mai îndelungat la scanarea bibliotecilor.",
|
||||
"LabelAllowServerAutoRestart": "Permite serverului să se repornească automat pentru a aplica actualizările",
|
||||
"LabelAllowServerAutoRestartHelp": "Serverul se va reporni doar în timp ce nu are nici o sarcină, când nu este nici un utilizator conectat.",
|
||||
"LabelArtists": "Artisti:",
|
||||
"LabelArtistsHelp": "Separare multiplă utilizând ;",
|
||||
"LabelAudioLanguagePreference": "Preferințe de limbă pentru audio:",
|
||||
|
@ -105,7 +102,6 @@
|
|||
"LabelTranscodingTempPathHelp": "Specificați o cale specială pentru fișierele transcodate trimise clienților. Lasați gol pentru a folosi pe cea implicită în directorul de lucru al serverului.",
|
||||
"LabelTriggerType": "Tip Declanșator:",
|
||||
"LabelUser": "Utilizator:",
|
||||
"LabelYourFirstName": "Numele tău:",
|
||||
"LabelYoureDone": "Ești Gata!",
|
||||
"LibraryAccessHelp": "Selectează biblioteciile media partajate cu acest utilizator. Administratorii vor avea posibilitatea să modifice toate dosarele utilizând managerul de metadata.",
|
||||
"MaxParentalRatingHelp": "Conținutul cu o limită de vârstă mai mare va fi ascuns pentru acest utilizator.",
|
||||
|
@ -202,7 +198,6 @@
|
|||
"TabNotifications": "Notificări",
|
||||
"TabOther": "Altele",
|
||||
"TabPassword": "Parolă",
|
||||
"TabPlaylist": "Listă de redare",
|
||||
"TabProfile": "Profil",
|
||||
"TabProfiles": "Profile",
|
||||
"TabRecordings": "Înregistrări",
|
||||
|
@ -241,7 +236,6 @@
|
|||
"AddedOnValue": "Adăugat la {0}",
|
||||
"AddToPlaylist": "Adaugă la playlist",
|
||||
"AddToPlayQueue": "Adaugă la coada de redare",
|
||||
"AddItemToCollectionHelp": "Adaugă obiectele la colecții căutând-le și folosind meniul de click-dreapta sau apasare pentru a le adăuga la colecție.",
|
||||
"Add": "Adaugă",
|
||||
"Actor": "Artist",
|
||||
"AccessRestrictedTryAgainLater": "Accesul este restricționat. Te rugăm să încerci mai târziu.",
|
||||
|
@ -262,7 +256,6 @@
|
|||
"AspectRatio": "Raportul aspectului",
|
||||
"AuthProviderHelp": "Selectează un Furnizor de Autentificare de folosit pentru autentificarea parolei acestui utilizator.",
|
||||
"Auto": "Auto",
|
||||
"AutoBasedOnLanguageSetting": "Auto (bazat pe setările limbii)",
|
||||
"Backdrop": "Fundal",
|
||||
"Backdrops": "Fundaluri",
|
||||
"Banner": "Bandieră",
|
||||
|
@ -292,7 +285,6 @@
|
|||
"ButtonPreviousTrack": "Calea anterioară",
|
||||
"ButtonRevoke": "Revocă",
|
||||
"ButtonSettings": "Setări",
|
||||
"ButtonViewWebsite": "Vezi website",
|
||||
"ChangingMetadataImageSettingsNewContent": "Modificări ale metadatelor sau ale setărilor de descărcare a operelor de artă se va aplica doar conținutului nou adăugat în librăriile tale. Pentru a aplica modificările titlurilor deja existente va trebui reîmprospătată manual metadata lor.",
|
||||
"CinemaModeConfigurationHelp": "Mod cinema aduce experiența cinematografică în sufrageria dumneavoastră prin abilitatea de a rula trailere sau introuri personalizate înaintea titlului principal.",
|
||||
"ConfigureDateAdded": "Configurează cum este determinată data adaugării în tabloul de bord al serverului Jellyfin în setările librariei",
|
||||
|
@ -328,7 +320,6 @@
|
|||
"ButtonGuide": "Ghid",
|
||||
"ButtonHome": "Acasă",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonLearnMore": "Mai multe",
|
||||
"ButtonLibraryAccess": "Acces Librarie",
|
||||
"ButtonMore": "Mai mult",
|
||||
"ButtonNetwork": "Rețea",
|
||||
|
@ -660,7 +651,6 @@
|
|||
"LabelSportsCategories": "Categorii sportive:",
|
||||
"LabelSpecialSeasonsDisplayName": "Denumirea afișării sezonului special:",
|
||||
"LabelSource": "Sursă:",
|
||||
"LabelSoundEffects": "Efecte audio:",
|
||||
"LabelSortTitle": "Sortează titlu:",
|
||||
"LabelSortOrder": "Ordinea de sortare:",
|
||||
"LabelSortBy": "Sortează după:",
|
||||
|
@ -672,7 +662,6 @@
|
|||
"LabelSkipIfAudioTrackPresent": "Ignoră dacă pista audio implicită se potrivește cu limba de descărcare",
|
||||
"LabelSkipForwardLength": "Durata salt înainte:",
|
||||
"LabelSkipBackLength": "Durata salt înapoi:",
|
||||
"LabelSkin": "Tema:",
|
||||
"LabelSize": "Mărime:",
|
||||
"LabelSimultaneousConnectionLimit": "Limita streamului simultan:",
|
||||
"LabelServerName": "Numele serverului:",
|
||||
|
@ -869,7 +858,6 @@
|
|||
"LabelDateAddedBehaviorHelp": "Dacă există o valoare de metadate, aceasta va fi întotdeauna folosită înainte de oricare dintre aceste opțiuni.",
|
||||
"LabelDateAddedBehavior": "Comportamentul datei adăugării pentru conținut nou:",
|
||||
"LabelDateAdded": "Data adăugării:",
|
||||
"LabelDashboardTheme": "Tema tabloul de bord al serverului:",
|
||||
"LabelCustomRating": "Evaluare personalizată:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Furnizați un nume de afișare personalizat sau lăsați gol pentru a utiliza numele raportat de dispozitiv.",
|
||||
"LabelCustomDeviceDisplayName": "Numele afisat:",
|
||||
|
@ -1056,7 +1044,6 @@
|
|||
"MessageItemSaved": "Articol salvat.",
|
||||
"MessageInvalidUser": "Nume de utilizator sau parola incorecte. Vă rugăm să încercați din nou.",
|
||||
"MessageInvalidForgotPasswordPin": "A fost introdus un cod PIN nevalid sau expirat. Vă rugăm să încercați din nou.",
|
||||
"MessageInstallPluginFromApp": "Acest plugin trebuie instalat din aplicația în care intenționați să îl utilizați.",
|
||||
"MessageImageTypeNotSelected": "Vă rugăm să selectați un tip de imagine din meniul derulant.",
|
||||
"MessageImageFileTypeAllowed": "Sunt acceptate numai fișierele JPEG și PNG.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Încercați din nou în rețeaua de domiciliu pentru a iniția procesul de resetare a parolei.",
|
||||
|
@ -1086,7 +1073,6 @@
|
|||
"MediaInfoStreamTypeEmbeddedImage": "Imaginea încorporată",
|
||||
"MediaInfoStreamTypeData": "Date",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"MediaInfoTimestamp": "Data și ora",
|
||||
"MediaInfoSize": "Mărime",
|
||||
"MediaInfoSampleRate": "Rata monstrei",
|
||||
|
@ -1121,12 +1107,9 @@
|
|||
"LiveBroadcasts": "Emisie în direct",
|
||||
"Live": "În direct",
|
||||
"List": "Listă",
|
||||
"LinksValue": "Linkuri: {0}",
|
||||
"Like": "Îmi place",
|
||||
"LeaveBlankToNotSetAPassword": "Puteți lăsa acest câmp necompletat pentru a nu seta o parolă.",
|
||||
"LearnHowYouCanContribute": "Aflați cum puteți contribui.",
|
||||
"LaunchWebAppOnStartupHelp": "Deschideți clientul web în browserul dvs. implicit la pornirea inițială a serverului. Acest lucru nu se va produce atunci când se utilizează funcția serverului de repornire.",
|
||||
"LaunchWebAppOnStartup": "Lansați interfața web la pornirea serverului",
|
||||
"LatestFromLibrary": "Ultimele {0}",
|
||||
"Large": "Mare",
|
||||
"LanNetworksHelp": "Lista separată de virgule a adreselor IP sau a intrărilor de tip IP/mască de rețea pentru rețelele care vor fi luate în considerare în rețeaua locală atunci când se aplică restricțiile de lățime de bandă. Dacă este setat, toate celelalte adrese IP vor fi considerate a fi în rețeaua externă și vor fi supuse restricțiilor de lățime de bandă externe. Dacă este lăsat necompletat, numai subnetul serverului este considerat a fi în rețeaua locală.",
|
||||
|
@ -1219,7 +1202,6 @@
|
|||
"SaveSubtitlesIntoMediaFoldersHelp": "Stocarea subtitrărilor lângă fișierele video le va permite să fie gestionate mai ușor.",
|
||||
"SaveSubtitlesIntoMediaFolders": "Salvați subtitrările în dosarele media",
|
||||
"Runtime": "Timpul de rulare",
|
||||
"RunAtStartup": "Rulați la pornire",
|
||||
"Rewind": "Derulează",
|
||||
"ResumeAt": "Reluați de la {0}",
|
||||
"ReplaceExistingImages": "Înlocuiți toate imaginile",
|
||||
|
@ -1250,7 +1232,6 @@
|
|||
"RecentlyWatched": "Vizionate recent",
|
||||
"Rate": "Evaluare",
|
||||
"Raised": "Ridicat",
|
||||
"QueueAllFromHere": "Formează o coadă de aici",
|
||||
"Quality": "Calitatea",
|
||||
"Programs": "Programe",
|
||||
"ProductionLocations": "Locații de producție",
|
||||
|
@ -1371,7 +1352,6 @@
|
|||
"Watched": "Vizionat",
|
||||
"ViewPlaybackInfo": "Vizualizați informațiile despre redare",
|
||||
"ViewAlbum": "Vizualizați albumul",
|
||||
"VideoRange": "Interval video",
|
||||
"Vertical": "Vertical",
|
||||
"ValueVideoCodec": "Codec Video: {0}",
|
||||
"ValueTimeLimitSingleHour": "Limită de timp: 1 oră",
|
||||
|
@ -1444,7 +1424,6 @@
|
|||
"SystemDlnaProfilesHelp": "Profilele de sistem pot fi numai citite. Modificările aduse unui profil de sistem vor fi salvate într-un nou profil personalizat.",
|
||||
"HeaderNavigation": "Navigare",
|
||||
"MessageConfirmAppExit": "Vrei să ieși?",
|
||||
"CopyStreamURLError": "A apărut o eroare la copierea adresei URL.",
|
||||
"LabelVideoResolution": "Rezoluția video:",
|
||||
"LabelStreamType": "Tipul streamului:",
|
||||
"LabelPlayerDimensions": "Dimensiunile soft redare:",
|
||||
|
@ -1458,11 +1437,9 @@
|
|||
"AllowFfmpegThrottling": "Limitare Transcod-uri",
|
||||
"Track": "Cale",
|
||||
"Season": "Sezon",
|
||||
"ReleaseGroup": "Gruparea lansării",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Preferați informația despre episod încorporată în fișier decât numele fișierelor",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "Aceasta folosește informația despre episod din metadatele încorporate, dacă sunt disponibile.",
|
||||
"Person": "Persoană",
|
||||
"OtherArtist": "Alt artist",
|
||||
"Movie": "Film",
|
||||
"Episode": "Episod",
|
||||
"ClientSettings": "Setări pentru client",
|
||||
|
@ -1489,7 +1466,6 @@
|
|||
"UnsupportedPlayback": "Jellyfin nu poate decripta conținut protejat de DRM, dar tot conținutul va fi încercat indiferent de titlurile protejate. Unele fișiere pot părea complet negre din cauza criptării sau a altor funcții neacceptate, cum ar fi titluri interactive.",
|
||||
"LabelLibraryPageSizeHelp": "Setează cantitatea de elemente de afișat pe o pagină a bibliotecii. Setați la 0 pentru a dezactiva paginarea.",
|
||||
"LabelLibraryPageSize": "Mărimea paginii Bibliotecă:",
|
||||
"MessageUnauthorizedUser": "Nu sunteți autorizat să accesați serverul în acest moment. Vă rugăm să contactați administratorul serverului pentru mai multe informații.",
|
||||
"ButtonTogglePlaylist": "Listă de redare",
|
||||
"ButtonToggleContextMenu": "Mai mult",
|
||||
"Filter": "Filtru",
|
||||
|
@ -1498,7 +1474,6 @@
|
|||
"ApiKeysCaption": "Lista cheilor API active",
|
||||
"LabelRequireHttpsHelp": "Dacă e selectat, serverul va redirecta automat toate cererile HTTP către HTTPS. Dacă nu se ascultă pe HTTPS, nu are niciun efect.",
|
||||
"LabelRequireHttps": "Trebuie HTTPS",
|
||||
"LabelNightly": "Ultimă",
|
||||
"LabelStable": "Stabilă",
|
||||
"LabelChromecastVersion": "Versiunea de Chromecast",
|
||||
"LabelEnableHttpsHelp": "Activează serverul să asculte pe portul HTTPS configurat. Un certificat valid trebuie de asemenea configurat pentru ca să funcţioneze.",
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"AccessRestrictedTryAgainLater": "В настоящее время доступ запрещён. Повторите попытку позже.",
|
||||
"Actor": "Актёр",
|
||||
"Add": "Добавить",
|
||||
"AddItemToCollectionHelp": "Добавляйте элементы в коллекции, выполняя их поиск, и с помощью правой кнопки мыши или касания меню присоедините их к коллекции.",
|
||||
"AddToCollection": "Добавить в коллекцию",
|
||||
"AddToPlayQueue": "Добавить в очередь воспроизведения",
|
||||
"AddToPlaylist": "Добавить в плей-лист",
|
||||
|
@ -40,7 +39,6 @@
|
|||
"AttributeNew": "Новинка",
|
||||
"Audio": "Аудио",
|
||||
"Auto": "Авто",
|
||||
"AutoBasedOnLanguageSetting": "Авто (на основе настройки языка)",
|
||||
"Backdrop": "Фон",
|
||||
"Backdrops": "Фоны",
|
||||
"Banner": "Баннер",
|
||||
|
@ -84,7 +82,6 @@
|
|||
"ButtonHelp": "Справка",
|
||||
"ButtonHome": "Главное",
|
||||
"ButtonInfo": "Инфо",
|
||||
"ButtonLearnMore": "Подробнее",
|
||||
"ButtonLibraryAccess": "Доступ к медиатеке",
|
||||
"ButtonManualLogin": "Войти вручную",
|
||||
"ButtonMore": "Ещё",
|
||||
|
@ -132,7 +129,6 @@
|
|||
"ButtonTrailer": "Трейлер",
|
||||
"ButtonUninstall": "Удалить",
|
||||
"ButtonUp": "Вверх",
|
||||
"ButtonViewWebsite": "См. вебсайт",
|
||||
"ButtonWebsite": "Веб-сайт",
|
||||
"CancelRecording": "Отменить запись",
|
||||
"CancelSeries": "Отменить сериал",
|
||||
|
@ -296,7 +292,6 @@
|
|||
"HeaderAppearsOn": "Фигурирует в",
|
||||
"HeaderAudioBooks": "Аудиокниги",
|
||||
"HeaderAudioSettings": "Параметры аудио",
|
||||
"HeaderAutomaticUpdates": "Автоматические обновления",
|
||||
"HeaderBlockItemsWithNoRating": "Блокирование элементов с отсутствующей или нераспознанной информацией о возрастной категории:",
|
||||
"HeaderBooks": "Книги",
|
||||
"HeaderBranding": "Оформление",
|
||||
|
@ -517,8 +512,6 @@
|
|||
"LabelAlbumArtists": "Исполнители альбома:",
|
||||
"LabelAll": "Все",
|
||||
"LabelAllowHWTranscoding": "Разрешить аппаратную перекодировку",
|
||||
"LabelAllowServerAutoRestart": "Разрешить автоматический перезапуск сервера для применения обновлений",
|
||||
"LabelAllowServerAutoRestartHelp": "Сервер будет перезапускаться только в периоды простоя, когда нет активности пользователей.",
|
||||
"LabelAllowedRemoteAddresses": "Фильтр внешних IP-адресов:",
|
||||
"LabelAllowedRemoteAddressesMode": "Режим фильтра внешних IP-адресов:",
|
||||
"LabelAppName": "Название приложения",
|
||||
|
@ -556,7 +549,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Отображаемое название:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Приведите произвольное имя для отображения или не заполняйте, чтобы использовать имя, выданное устройством.",
|
||||
"LabelCustomRating": "Произвольная возрастная категория:",
|
||||
"LabelDashboardTheme": "Тема панели сервера:",
|
||||
"LabelDateAdded": "Дата добавления:",
|
||||
"LabelDateAddedBehavior": "Для нового содержания за дату добавления принимается:",
|
||||
"LabelDateAddedBehaviorHelp": "При наличии значения в метаданных, оно всегда используется приоритетно, чем любая из данных опций.",
|
||||
|
@ -768,7 +760,6 @@
|
|||
"LabelServerHost": "Узел:",
|
||||
"LabelServerHostHelp": "192.168.1.100:8096 или https://myserver.com",
|
||||
"LabelSimultaneousConnectionLimit": "Лимит одновременных потоков:",
|
||||
"LabelSkin": "Оболочка:",
|
||||
"LabelSkipBackLength": "Время отмотки:",
|
||||
"LabelSkipForwardLength": "Время промотки:",
|
||||
"LabelSkipIfAudioTrackPresent": "Пропустить, если аудиодорожка по умолчанию соответствует загружаемому языку",
|
||||
|
@ -780,7 +771,6 @@
|
|||
"LabelSortBy": "Сортировка по:",
|
||||
"LabelSortOrder": "Порядок сортировки:",
|
||||
"LabelSortTitle": "Сортировка по названию:",
|
||||
"LabelSoundEffects": "Звуковые эффекты:",
|
||||
"LabelSource": "Источник:",
|
||||
"LabelSpecialSeasonsDisplayName": "Отображаемое название спецсезона:",
|
||||
"LabelSportsCategories": "Спортивные категории:",
|
||||
|
@ -834,7 +824,6 @@
|
|||
"LabelXDlnaDoc": "Схема X-DLNA:",
|
||||
"LabelXDlnaDocHelp": "Определяется содержание из элемента X_DLNADOC во пространстве имён urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYear": "Год:",
|
||||
"LabelYourFirstName": "Ваше имя:",
|
||||
"LabelYoureDone": "Вы готовы!",
|
||||
"LabelZipCode": "Почтовый код:",
|
||||
"LabelffmpegPath": "Путь к FFmpeg:",
|
||||
|
@ -845,7 +834,6 @@
|
|||
"LearnHowYouCanContribute": "Изучите, как вы можете внести свой вклад.",
|
||||
"LibraryAccessHelp": "Выделите медиатеки, чтобы дать доступ этому пользователю. Администраторы могут изменять все папки с помощью «Диспетчера метаданных».",
|
||||
"Like": "Нравится",
|
||||
"LinksValue": "Ссылки: {0}",
|
||||
"List": "Список",
|
||||
"Live": "Трансляция",
|
||||
"LiveBroadcasts": "Прямые трансляции",
|
||||
|
@ -905,7 +893,6 @@
|
|||
"MessageFileReadError": "Произошла ошибка при считывании файла. Повторите попытку позже.",
|
||||
"MessageForgotPasswordFileCreated": "Следующий файл был создан на вашем сервере и содержит инструкции о том, как поступить:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Повторите попытку в пределах своей домашней сети, чтобы начать процесс сброса пароля.",
|
||||
"MessageInstallPluginFromApp": "Данный плагин должен устанавливаться изнутри приложения, для которого оно предназначено.",
|
||||
"MessageInvalidForgotPasswordPin": "Был введён неверный или истёкший PIN-код. Повторите попытку.",
|
||||
"MessageInvalidUser": "Недопустимое имя пользователя или пароль. Повторите попытку.",
|
||||
"MessageItemSaved": "Элемент сохранён.",
|
||||
|
@ -1147,7 +1134,6 @@
|
|||
"ProductionLocations": "Производ-ные площадки",
|
||||
"Programs": "Передачи",
|
||||
"Quality": "Качество",
|
||||
"QueueAllFromHere": "В очередь все отсюда",
|
||||
"Raised": "Выпуклая",
|
||||
"Rate": "Оценка",
|
||||
"RecentlyWatched": "Недавно просмотренное",
|
||||
|
@ -1178,7 +1164,6 @@
|
|||
"ReplaceExistingImages": "Замена имеющихся изображений",
|
||||
"ResumeAt": "Возобновить с {0}",
|
||||
"Rewind": "Отмотать",
|
||||
"RunAtStartup": "Запускать при старте системы",
|
||||
"Runtime": "Длительность",
|
||||
"Saturday": "суббота",
|
||||
"Save": "Сохранить",
|
||||
|
@ -1276,7 +1261,6 @@
|
|||
"TabParentalControl": "Управление содержанием",
|
||||
"TabPassword": "Пароль",
|
||||
"TabPlayback": "Воспроизведение",
|
||||
"TabPlaylist": "Плей-лист",
|
||||
"TabPlaylists": "Плей-листы",
|
||||
"TabPlugins": "Плагины",
|
||||
"TabProfile": "Профиль",
|
||||
|
@ -1347,7 +1331,6 @@
|
|||
"ValueTimeLimitSingleHour": "Временной лимит: 1 час",
|
||||
"ValueVideoCodec": "Видео кодек: {0}",
|
||||
"Vertical": "Вертикально",
|
||||
"VideoRange": "Диапазон видео",
|
||||
"ViewAlbum": "Посмотреть альбом",
|
||||
"ViewPlaybackInfo": "Сведения о воспроизводимом",
|
||||
"Watched": "Просмотрено",
|
||||
|
@ -1390,9 +1373,6 @@
|
|||
"DashboardOperatingSystem": "Операционная система: {0}",
|
||||
"DashboardArchitecture": "Архитектура: {0}",
|
||||
"LabelWeb": "Веб:",
|
||||
"LaunchWebAppOnStartup": "Запустить веб-интерфейс при запуске Jellyfin Server",
|
||||
"LaunchWebAppOnStartupHelp": "Открывается веб-клиент в браузере по умолчанию при начальном запуске сервера. Это не произойдет при использовании функции перезапуска сервера.",
|
||||
"MediaInfoSoftware": "ПО",
|
||||
"MediaInfoStreamTypeAudio": "Аудио",
|
||||
"MediaInfoStreamTypeData": "Данные",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Встроенное изображение",
|
||||
|
@ -1453,7 +1433,6 @@
|
|||
"LabelPlayerDimensions": "Размеры проигрывателя:",
|
||||
"LabelDroppedFrames": "Пропущенные кадры:",
|
||||
"LabelCorruptedFrames": "Испорченные кадры:",
|
||||
"CopyStreamURLError": "Произошла ошибка при копировании URL.",
|
||||
"OptionForceRemoteSourceTranscoding": "Принудительное перекодирование удалённых источников медиаданных (например, эфирное ТВ)",
|
||||
"NoCreatedLibraries": "Похоже, вы еще не создали ни одной медиатеки. {0}Желаете создать её сейчас?{1}",
|
||||
"AskAdminToCreateLibrary": "Попросите администратора создать медиатеку.",
|
||||
|
@ -1474,7 +1453,6 @@
|
|||
"Track": "Дорожка",
|
||||
"Season": "Сезон",
|
||||
"Person": "Персона",
|
||||
"OtherArtist": "Другой исполнитель",
|
||||
"Movie": "Фильм",
|
||||
"LabelLibraryPageSize": "Размер страницы медиатеки:",
|
||||
"Episode": "Эпизод",
|
||||
|
@ -1486,14 +1464,12 @@
|
|||
"LastSeen": "Последний раз был {0}",
|
||||
"WriteAccessRequired": "Jellyfin Server требуются права на запись в эту папку. Обеспечьте доступ для записи и попробуйте снова.",
|
||||
"PathNotFound": "Путь не может быть найден. Убедитесь, что путь правильный и попробуйте снова.",
|
||||
"ReleaseGroup": "Релиз-группа",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Предпочитать встроенную информацию эпизода вместо имён файлов",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "Используется информация об эпизоде из встроенных метаданных, если они доступны.",
|
||||
"LabelLibraryPageSizeHelp": "Устанавливается количество элементов для отображения на странице медиатеки. Установите 0 для отключения нумерации страниц.",
|
||||
"LabelDeinterlaceMethod": "Метод устранения гребёнки:",
|
||||
"DeinterlaceMethodHelp": "Выберите метод устранения гребёнки, который будет использоваться при перекодировании чересстрочного содержания.",
|
||||
"UnsupportedPlayback": "Jellyfin не может расшифровать содержимое, защищенное DRM, но в любом случае будет предпринята попытка расшифровки всего содержимого, включая защищенные заголовки. Некоторые файлы могут выглядеть полностью черными из-за шифрования или других неподдерживаемых функций, таких как интерактивные заголовки.",
|
||||
"MessageUnauthorizedUser": "В настоящее время у вас нет доступа к серверу. Пожалуйста, свяжитесь с администратором сервера для получения дополнительной информации.",
|
||||
"HeaderFavoritePlaylists": "Избранные плей-листы",
|
||||
"LabelRequireHttpsHelp": "Если этот флажок установлен, сервер будет автоматически перенаправлять все запросы через HTTP на HTTPS. Это не имеет никакого эффекта, если сервер не слушает HTTPS.",
|
||||
"LabelEnableHttpsHelp": "Позволяет серверу слушать HTTPS-порт. Для работы необходим действующий сертификат.",
|
||||
|
@ -1501,7 +1477,6 @@
|
|||
"TabDVR": "DVR",
|
||||
"SaveChanges": "Сохранить изменения",
|
||||
"LabelRequireHttps": "Требуется HTTPS",
|
||||
"LabelNightly": "Ночная",
|
||||
"LabelStable": "Стабильная",
|
||||
"LabelChromecastVersion": "Версия Chromecast",
|
||||
"LabelEnableHttps": "Включить HTTPS",
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"Ascending": "Vzostupne",
|
||||
"AspectRatio": "Pomer strán",
|
||||
"AttributeNew": "Nové",
|
||||
"AutoBasedOnLanguageSetting": "Automaticky (na základe nastavenia jazyka)",
|
||||
"Backdrops": "Pozadia",
|
||||
"BirthDateValue": "Narodený/á: {0}",
|
||||
"BirthLocation": "Miesto narodenia",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"ButtonGotIt": "Rozumiem",
|
||||
"ButtonHelp": "Pomoc",
|
||||
"ButtonHome": "Domov",
|
||||
"ButtonLearnMore": "Zistiť viac",
|
||||
"ButtonManualLogin": "Manuálne prihlásenie",
|
||||
"ButtonMore": "Viac",
|
||||
"ButtonNetwork": "Sieť",
|
||||
|
@ -92,7 +90,6 @@
|
|||
"ButtonTrailer": "Trailer",
|
||||
"ButtonUninstall": "Odinštalovať",
|
||||
"ButtonUp": "Hore",
|
||||
"ButtonViewWebsite": "Zobraziť webovú stránku",
|
||||
"ButtonWebsite": "Webové stránky",
|
||||
"Categories": "Kategórie",
|
||||
"ChannelAccessHelp": "Zvoľte kanály zdieľané s týmto používateľom. Administrátori budú schopní upraviť všetky kanály použitím správcu metadát.",
|
||||
|
@ -183,7 +180,6 @@
|
|||
"HeaderApiKeys": "Kľúče API",
|
||||
"HeaderAudioBooks": "Audio knihy",
|
||||
"HeaderAudioSettings": "Nastavenia zvuku",
|
||||
"HeaderAutomaticUpdates": "Automatické aktualizácie",
|
||||
"HeaderBooks": "Knihy",
|
||||
"HeaderCastAndCrew": "Obsadenie a štáb",
|
||||
"HeaderChannels": "Kanály",
|
||||
|
@ -314,8 +310,6 @@
|
|||
"LabelAirTime": "Čas vysielania:",
|
||||
"LabelAll": "Všetky",
|
||||
"LabelAllowHWTranscoding": "Povoliť hardvérové transkódovanie",
|
||||
"LabelAllowServerAutoRestart": "Povoliť automatický reštart servera pre aplikovanie aktualizácií",
|
||||
"LabelAllowServerAutoRestartHelp": "Server sa reštartuje iba počas obdobia bez aktivity, keď nie je žiadny používateľ aktívny.",
|
||||
"LabelAllowedRemoteAddresses": "Filter vzdialených IP adries:",
|
||||
"LabelAppName": "Názov aplikácie",
|
||||
"LabelAppNameExample": "Príklad: Sickbeard, Sonarr",
|
||||
|
@ -464,7 +458,6 @@
|
|||
"LabelSkipForwardLength": "Dĺžka skoku dopredu:",
|
||||
"LabelSkipIfGraphicalSubsPresent": "Preskočiť ak video obsahuje vložené titulky",
|
||||
"LabelSortBy": "Zoradiť podľa:",
|
||||
"LabelSoundEffects": "Zvukové efekty:",
|
||||
"LabelSource": "Zdroj:",
|
||||
"LabelSportsCategories": "Športové kategórie:",
|
||||
"LabelStartWhenPossible": "Spustiť akonáhle je možné:",
|
||||
|
@ -493,7 +486,6 @@
|
|||
"LabelVersion": "Verzia:",
|
||||
"LabelVersionInstalled": "{0} nainštalovaný",
|
||||
"LabelYear": "Rok:",
|
||||
"LabelYourFirstName": "Meno:",
|
||||
"LabelYoureDone": "Hotovo!",
|
||||
"LabelZipCode": "PSČ:",
|
||||
"LabelffmpegPath": "Cesta k FFmpeg:",
|
||||
|
@ -727,7 +719,6 @@
|
|||
"ReplaceAllMetadata": "Nahradiť všetky metadáta",
|
||||
"ReplaceExistingImages": "Nahradiť existujúce obrázky",
|
||||
"ResumeAt": "Pokračovať od {0}",
|
||||
"RunAtStartup": "Spustiť pri štarte",
|
||||
"Saturday": "Sobota",
|
||||
"Save": "Uložiť",
|
||||
"SaveSubtitlesIntoMediaFolders": "Ukladať titulky do priečinkov s médiami",
|
||||
|
@ -909,10 +900,8 @@
|
|||
"DashboardArchitecture": "Architektúra: {0}",
|
||||
"LabelWeb": "Web:",
|
||||
"LeaveBlankToNotSetAPassword": "Toto pole môžete nechať prázdne pre nastavenie bez hesla.",
|
||||
"LinksValue": "Odkazy: {0}",
|
||||
"List": "Zoznam",
|
||||
"Logo": "Logo",
|
||||
"MediaInfoSoftware": "Softvér",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Dáta",
|
||||
"MediaInfoStreamTypeSubtitle": "Titulky",
|
||||
|
@ -997,7 +986,6 @@
|
|||
"TabDirectPlay": "Priame prehrávanie",
|
||||
"TabLogs": "Záznamy",
|
||||
"TabPlayback": "Prehrávanie",
|
||||
"TabPlaylist": "Playlist",
|
||||
"TabPlaylists": "Playlisty",
|
||||
"TabServer": "Server",
|
||||
"TabStreaming": "Streamovanie",
|
||||
|
@ -1064,7 +1052,6 @@
|
|||
"LabelDisplayLanguageHelp": "Preklad Jellyfinu je v neustálom vývoji.",
|
||||
"LabelDefaultUserHelp": "Určuje, ktorá používateľská knižnica by mala byť zobrazená na pripojenom zariadení. Toto nastavenie môže byť prepísané pomocou profilov pre každé zariadenie.",
|
||||
"LabelDateAddedBehaviorHelp": "Pokiaľ majú metadáta hodnotu, bude vždy použitá pred niektorou z týchto možností.",
|
||||
"LabelDashboardTheme": "Téma dashboardu servera:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Nahradte vlastným názvom alebo ponechajte prázdne, aby názov určilo zariadenie.",
|
||||
"LabelCustomDeviceDisplayName": "Zobrazený názov:",
|
||||
"LabelCache": "Cache:",
|
||||
|
@ -1134,7 +1121,6 @@
|
|||
"HeaderApiKeysHelp": "Externé aplikácie musia mať vlastný API kľúč, aby mohli komunikovať s Jellyfin Serverom. Kľúče sú vydávané pomocou prihlásenia sa cez Jellyfin účet alebo manuálnym priradením kľúča aplikácií.",
|
||||
"HeaderAdditionalParts": "Dodatočné časti",
|
||||
"HardwareAccelerationWarning": "Povolenie hardvérovej akcelerácie môže spôsobiť nestabilitu v niektorých podmienkach. Uistite sa, že váš operačný systém a grafické ovládače sú plne aktualizované. Pokiaľ máte po zapnutí problémy s prehrávaním videa, budete musieť zmeniť nastavenie späť na Žiadne.",
|
||||
"AddItemToCollectionHelp": "Pridať položku do kolekcie jej vyhľadaním a použitím pravého tlačítka myši alebo kliknutím na tlačidlo ponuky a pridať do kolekcie.",
|
||||
"EncoderPresetHelp": "Vyberte hodnotu faster pre zlepšenie výkonu alebo hodnotu slower pre zlepšenie kvality.",
|
||||
"H264CrfHelp": "Constant Rate Factor (CRF) je východzím nastavením kvality pre x264 enkodér. Môžete mu nadstaviť hodnotu medzi 0 a 51, kde nižšia hodnota vedie k vyššej kvalite (za cenu väčšieho súboru). Rozumné hodnoty sú medzi 18 a 28. Východzia hodnota pre x264 je 23, ktorú môžete použiť ako začiatočný bod.",
|
||||
"GuideProviderSelectListings": "Výber zobrazenia",
|
||||
|
@ -1193,7 +1179,6 @@
|
|||
"XmlDocumentAttributeListHelp": "Tieto atribúty sú aplikované do koreňového prvku každej XML odpovede.",
|
||||
"Writer": "Napísal",
|
||||
"Whitelist": "Whitelist",
|
||||
"VideoRange": "Rozsah videa",
|
||||
"UserAgentHelp": "Zadajte vlastnú HTTP hlavičku pre user agenta.",
|
||||
"TitleHostingSettings": "Nastavenie hostingu",
|
||||
"Thumb": "Náhľad",
|
||||
|
@ -1218,7 +1203,6 @@
|
|||
"MessageChangeRecordingPath": "Zmenou priečinku pre nahrávanie sa existujúce nahrávky automaticky nepresunú zo starej lokácie na na novú. Budete ich musieť presunúť ručne, pokiaľ budete chcieť.",
|
||||
"RecordSeries": "Nahrať sériu",
|
||||
"Raised": "Vystupujúce",
|
||||
"QueueAllFromHere": "Všetko odtiaľto zaradiť do fronty",
|
||||
"Primary": "Primárna",
|
||||
"PreferEmbeddedTitlesOverFileNamesHelp": "Toto určuje východzí názov zobrazenia, pokiaľ nie sú k dispozícií internetové metadáta alebo lokálne metadáta.",
|
||||
"PreferEmbeddedTitlesOverFileNames": "Preferovať vložené názvy nad názvami súborov",
|
||||
|
@ -1285,7 +1269,6 @@
|
|||
"MessageNoServersAvailable": "Žiadne servery neboli nájdené pomocou automatického objavovania serverov.",
|
||||
"MessageNoMovieSuggestionsAvailable": "V súčastnosti nie sú k dispozícií žiadne filmové návrhy. Začnite pozerať a hodnotiť vaše filmy, potom sa sem vráťte pre Vaše odporúčania.",
|
||||
"MessageNoCollectionsAvailable": "Kolekcie vám umožnia užiť si vlastné zoskupenia filmov, seriálov a albumov. Kliknite na tlačítko + pre začatie vytvárania kolekcie.",
|
||||
"MessageInstallPluginFromApp": "Tento zásuvný modul musí byť nainštalovaný z aplikácie, ktorú chcete používať.",
|
||||
"MessageImageTypeNotSelected": "Prosím, vyberte typ obrázku z rozbalovacieho menu.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Prosím, skúste to znova vo vašej domácej sieti pre zahájenie procesu obnovy hesla.",
|
||||
"MessageForgotPasswordFileCreated": "Nasledujúci súbor bol vytvorený na vašom serveri a obsahuje inštrukcie, ako postupovať:",
|
||||
|
@ -1308,8 +1291,6 @@
|
|||
"MediaInfoBitrate": "Dátový tok",
|
||||
"MediaInfoAnamorphic": "Anamorfné",
|
||||
"MapChannels": "Nájdi kanály",
|
||||
"LaunchWebAppOnStartupHelp": "Otvorí webového klienta vo vašom východzom webovom prehliadači pri prvotnom spustení servera. Toto nenastane pokiaľ použijete funkciu reštartovania servera.",
|
||||
"LaunchWebAppOnStartup": "Spustiť webové rozhranie pri štarte servera",
|
||||
"LabelffmpegPathHelp": "Cesta k aplikačnému súboru ffmpeg alebo k priečinku obsahujúcemu ffmpeg.",
|
||||
"LabelXDlnaDocHelp": "Určuje obsah prvku X_DLNADOC v namespace urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDoc": "X-DLNA dokumentácia:",
|
||||
|
@ -1347,7 +1328,6 @@
|
|||
"LabelSkipIfGraphicalSubsPresentHelp": "Textové verzie titulkov môžu mať za následok efektívnejšiu dodávku a zníženie šance na transkódovanie videa.",
|
||||
"LabelSkipIfAudioTrackPresentHelp": "Zrušte zaškrtnutie pre zobrazenie titulkov pri všetkých videách, bez ohľadu na jazyk zvuku.",
|
||||
"LabelSkipIfAudioTrackPresent": "Preskočiť, pokiaľ je východzia zvuková stopa rovnaká ako sťahovaný jazyk",
|
||||
"LabelSkin": "Vzhľad:",
|
||||
"LabelSize": "Veľkosť:",
|
||||
"LabelSimultaneousConnectionLimit": "Limit simultánnych streamov:",
|
||||
"LabelServerName": "Názov serveru:",
|
||||
|
@ -1449,7 +1429,6 @@
|
|||
"LabelPlayerDimensions": "Rozmery prehrávača:",
|
||||
"LabelDroppedFrames": "Vynechané snímky:",
|
||||
"LabelCorruptedFrames": "Poškodené snímky:",
|
||||
"CopyStreamURLError": "Pri kopírovaní URL nastala chyba.",
|
||||
"OptionForceRemoteSourceTranscoding": "Vynútiť transkódovanie vzdialených mediálnych zdrojov (ako napr. živá TV)",
|
||||
"NoCreatedLibraries": "Vyzerá to tak, že ste zatiaľ nevytvorili žiadnu knižnicu. {0}Chceli by ste nejakú vytvoriť teraz?{1}",
|
||||
"AskAdminToCreateLibrary": "Pokiaľ chcete vytvoriť knižnicu, musíte sa spýtať administrátora.",
|
||||
|
@ -1477,9 +1456,7 @@
|
|||
"Yadif": "YADIF",
|
||||
"Track": "Stopa",
|
||||
"Season": "Séria",
|
||||
"ReleaseGroup": "Vydavateľ",
|
||||
"Person": "Osoba",
|
||||
"OtherArtist": "Ostatný umelci",
|
||||
"Movie": "FIlm",
|
||||
"LabelDeinterlaceMethod": "Metóda odstránenia prekladaného videa:",
|
||||
"Episode": "Epizóda",
|
||||
|
@ -1488,7 +1465,6 @@
|
|||
"AlbumArtist": "Umelec albumu",
|
||||
"LabelLibraryPageSizeHelp": "Určuje množstvo položiek na zobrazenie na stránke knižnice. Nastavte 0 pre vypnutie stránkovania.",
|
||||
"LabelLibraryPageSize": "Veľkosť stránky knižnice:",
|
||||
"MessageUnauthorizedUser": "Momentálne nemáte oprávnenie na prístup k serveru. Prosím, kontaktujte svojho administrátora serveru pre viac informácií.",
|
||||
"UnsupportedPlayback": "Jellyfin nemôže dešifrovať obsah chránený technológiou DRM, ale pokúsi sa o to, vrátane chránených titulov. Niektoré súbory sa môžu zobraziť ako kompletne čierne z dôvodu, že sú zašifrované alebo obsahujú nepodporované funckie, ako napríklad interaktívne funkcie.",
|
||||
"Filter": "Filter",
|
||||
"New": "Nové",
|
||||
|
@ -1496,7 +1472,6 @@
|
|||
"ButtonTogglePlaylist": "Playlist",
|
||||
"ButtonToggleContextMenu": "Viac",
|
||||
"ApiKeysCaption": "Zoznam v súčasnosti povolených API kľúčov",
|
||||
"LabelNightly": "Nočná",
|
||||
"LabelStable": "Stabilná",
|
||||
"LabelChromecastVersion": "Chromecast verzia",
|
||||
"TabDVR": "DVR",
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
"FolderTypeTvShows": "TV",
|
||||
"HeaderAddToCollection": "Dodaj v Zbirko",
|
||||
"HeaderAddUser": "Dodaj Uporabnika",
|
||||
"HeaderAutomaticUpdates": "Samodejne Posodobitve",
|
||||
"HeaderEasyPinCode": "Enostavna Pin koda",
|
||||
"HeaderFrequentlyPlayed": "Pogosto Predvajano",
|
||||
"HeaderPaths": "Poti",
|
||||
|
@ -27,7 +26,6 @@
|
|||
"LabelPrevious": "Nazaj",
|
||||
"LabelSelectUsers": "Izberi uporabnike:",
|
||||
"LabelTimeLimitHours": "Časovna omejitev (ure):",
|
||||
"LabelYourFirstName": "Ime:",
|
||||
"LabelYoureDone": "Koncano!",
|
||||
"MoreUsersCanBeAddedLater": "Uporabnike lahko dodate tudi kasneje preko Nadzorne plošče.",
|
||||
"OptionAllowMediaPlayback": "Dovoli predvajanje vsebin",
|
||||
|
@ -53,7 +51,6 @@
|
|||
"TabMyPlugins": "Moji dodatki",
|
||||
"TabNetworks": "Omrezja",
|
||||
"TabPassword": "Geslo",
|
||||
"TabPlaylist": "Playlista",
|
||||
"TabProfile": "Profil",
|
||||
"TabProfiles": "Profili",
|
||||
"TabShows": "Oddaje",
|
||||
|
@ -100,7 +97,6 @@
|
|||
"HeaderLiveTV": "TV v živo",
|
||||
"HeaderNextUp": "Sledi",
|
||||
"Movies": "Filmi",
|
||||
"AddItemToCollectionHelp": "Dodajte elemente v zbirke tako, da jih poiščete in jih z desnim klikom ali dotikom menija dodate v zbirko.",
|
||||
"AllowedRemoteAddressesHelp": "Z vejico ločen seznam IP naslovov ali IP/maska omrežij, ki jim je dovoljen oddaljeni dostop. Če pustite prazno, bodo dovoljeni vsi oddaljeni naslovi.",
|
||||
"AlwaysPlaySubtitles": "Vedno prikaži",
|
||||
"AlwaysPlaySubtitlesHelp": "Podnapisi, ki se ujemajo s prednostnim jezikom bodo naloženi ne glede na jezik zvoka.",
|
||||
|
@ -114,7 +110,6 @@
|
|||
"AttributeNew": "Novo",
|
||||
"Audio": "Zvok",
|
||||
"Auto": "Samodejno",
|
||||
"AutoBasedOnLanguageSetting": "Samodejno (na podlagi nastavitve jezika)",
|
||||
"Backdrop": "Ozadje",
|
||||
"Backdrops": "Ozadja",
|
||||
"BirthDateValue": "Rojen: {0}",
|
||||
|
@ -131,7 +126,7 @@
|
|||
"Playlists": "Seznami predvajanja",
|
||||
"Songs": "Pesmi",
|
||||
"Sync": "Sinhroniziraj",
|
||||
"AuthProviderHelp": "Izberi ponudnika preverjanja pristnosti za preverjanje gesla tega uporabnika.",
|
||||
"AuthProviderHelp": "Izberite ponudnika preverjanja pristnosti za preverjanje gesla tega uporabnika.",
|
||||
"Banner": "Pasica",
|
||||
"Blacklist": "Črna lista",
|
||||
"ButtonAddMediaLibrary": "Dodaj knjižnico predstavnosti",
|
||||
|
@ -160,7 +155,6 @@
|
|||
"ButtonHelp": "Pomoč",
|
||||
"ButtonHome": "Domov",
|
||||
"ButtonInfo": "Info",
|
||||
"ButtonLearnMore": "Nauči se več",
|
||||
"ButtonLibraryAccess": "Dostop do knjižnic",
|
||||
"ButtonManualLogin": "Ročna prijava",
|
||||
"ButtonMore": "Več",
|
||||
|
@ -202,7 +196,6 @@
|
|||
"ButtonTrailer": "Napovednik",
|
||||
"ButtonUninstall": "Odstrani",
|
||||
"ButtonUp": "Gor",
|
||||
"ButtonViewWebsite": "Obišči spletno stran",
|
||||
"ButtonWebsite": "Spletna stran",
|
||||
"CancelRecording": "Prekini snemanje",
|
||||
"CancelSeries": "Prekini serijo",
|
||||
|
@ -286,7 +279,7 @@
|
|||
"HeaderSelectServerCachePath": "Izberite pot predpomnjenih podatkov",
|
||||
"HeaderSelectServer": "Izberi strežnik",
|
||||
"HeaderSelectPath": "Izberi pot",
|
||||
"HeaderSelectMetadataPathHelp": "Poiščite ali vnesite pot, v kateri želite shranjevati metapodatke. Datoteka mora omogočati pisanje.",
|
||||
"HeaderSelectMetadataPathHelp": "Prebrskajte ali vnesite pot, ki jo želite uporabiti za metapodatke. Mapa mora dovoliti pisanje.",
|
||||
"HeaderSelectMetadataPath": "Izberi pot metapodatkov",
|
||||
"HeaderSelectCertificatePath": "Izberi pot certifikata",
|
||||
"HeaderSecondsValue": "{0} sekund",
|
||||
|
@ -301,7 +294,7 @@
|
|||
"HeaderRemoveMediaFolder": "Odstrani mapo predstavnosti",
|
||||
"HeaderRemoteControl": "Upravljanje na daljavo",
|
||||
"HeaderRecordingOptions": "Možnosti snemanja",
|
||||
"HeaderProfileServerSettingsHelp": "Te vrednosti določajo, kako se bo Jellyfin strežnik predstavil napravi.",
|
||||
"HeaderProfileServerSettingsHelp": "Te vrednosti določajo, kako se bo strežnik predstavil odjemalcem.",
|
||||
"HeaderProfileInformation": "Informacije o profilu",
|
||||
"HeaderProfile": "Profil",
|
||||
"HeaderPreferredMetadataLanguage": "Prednostni jezik metapodatkov",
|
||||
|
@ -346,7 +339,7 @@
|
|||
"HeaderLatestMovies": "Najnovejši filmi",
|
||||
"HeaderLatestMedia": "Najnovejša predstavnost",
|
||||
"HeaderLatestEpisodes": "Najnovejše epizode",
|
||||
"HeaderKodiMetadataHelp": "Za omogočanje NFO metapodatkov uredite knjižnico v Jellyfin nastavitvah knjižnice v razdelku shranjevanje metapodatkov.",
|
||||
"HeaderKodiMetadataHelp": "Za omogočanje NFO metapodatkov uredite knjižnico in poiščite možnost v razdelku shranjevanje metapodatkov.",
|
||||
"HeaderKeepSeries": "Ohrani serijo",
|
||||
"HeaderKeepRecording": "Ohrani posnetek",
|
||||
"HeaderInstall": "Namesti",
|
||||
|
@ -408,7 +401,7 @@
|
|||
"HeaderAudioBooks": "Zvočne knjige",
|
||||
"HeaderAppearsOn": "Pojavi se",
|
||||
"HeaderApp": "Aplikacija",
|
||||
"HeaderApiKeysHelp": "Zunanje aplikacije potrebujejo API ključ za komunikacijo z Jellyfin strežnikom. Ključi so izdani s prijavo z Jellyfin računom ali z ročno dodelitvijo ključa aplikaciji.",
|
||||
"HeaderApiKeysHelp": "Zunanje aplikacije potrebujejo API ključ za komunikacijo s strežnikom. Ključi so izdani s prijavo z uporabniškim računom ali z ročno dodelitvijo ključa aplikaciji.",
|
||||
"HeaderApiKeys": "API ključi",
|
||||
"HeaderApiKey": "API ključ",
|
||||
"HeaderAllowMediaDeletionFrom": "Dovoli brisanje predstavnosti iz",
|
||||
|
@ -450,7 +443,7 @@
|
|||
"FileNotFound": "Datoteka ni najdena.",
|
||||
"File": "Datoteka",
|
||||
"FetchingData": "Pridobivanje dodatnih podatkov",
|
||||
"Features": "Lastnosti",
|
||||
"Features": "Funkcije",
|
||||
"Favorite": "Priljubljeno",
|
||||
"FastForward": "Hitro naprej",
|
||||
"FFmpegSavePathNotFound": "Nismo mogli locirati FFmpeg na navedeni poti. FFprobe je prav tako zahtevan in mora biti v isti mapi. Ti komponenti sta običajno združeni skupaj v istem prenosu. Preverite pot in poskusite znova.",
|
||||
|
@ -516,7 +509,7 @@
|
|||
"HeaderTuners": "Sprejemniki",
|
||||
"HeaderTunerDevices": "Sprejemniki",
|
||||
"LabelAllowHWTranscoding": "Dovoli strojno pospešeno prekodiranje",
|
||||
"HeaderSelectTranscodingPathHelp": "Izberite ali vnesite pot za začasne datoteka prekodiranja. Mapa mora dovoliti zapisovanje.",
|
||||
"HeaderSelectTranscodingPathHelp": "Prebrskajte ali vnesite pot za datoteka prekodiranja. Mapa mora dovoliti pisanje.",
|
||||
"HeaderContainerProfileHelp": "Profil kontejnerja določa omejitve naprave pri predvajanju določenih formatov. Če je omejitev dosežena, bo predstavnost prekodirana, tudi če je format sicer nastavljen za neposredno predvajanje.",
|
||||
"HeaderTranscodingProfileHelp": "Dodaj profil prekodiranja za izbiro uporabljenih formatov, ko je potrebno prekodiranje.",
|
||||
"HeaderTranscodingProfile": "Profil prekodiranja",
|
||||
|
@ -559,13 +552,11 @@
|
|||
"LabelAlbumArtMaxHeight": "Največja višina slike albuma:",
|
||||
"LabelAlbumArtMaxHeightHelp": "Največja ločljivost slike albuma dostopna preko UPnP:albumArtURI.",
|
||||
"LabelAudioBitDepth": "Bitna globina zvoka:",
|
||||
"LabelAllowServerAutoRestart": "Dovoli, da se strežnik samodejno znova zažene in uveljavi posodobitve",
|
||||
"LabelAllowServerAutoRestartHelp": "Strežnik se bo samodejno zagnal zgolj v času mirovanja, ko ne bo aktivnih uporabnikov.",
|
||||
"LabelAllowedRemoteAddresses": "Filter oddaljenih IP naslovov:",
|
||||
"LabelAllowedRemoteAddressesMode": "Način filtra oddaljenih IP naslovov:",
|
||||
"LabelAppName": "Ime aplikacije",
|
||||
"LabelAppNameExample": "Primer: Sickbeard, Sonarr",
|
||||
"LabelArtistsHelp": "Loči več z ;",
|
||||
"LabelArtistsHelp": "Loči več izvajalcev s podpičjem.",
|
||||
"LabelAudio": "Zvok",
|
||||
"LabelAudioBitrate": "Bitna hitrost zvoka:",
|
||||
"LabelAudioChannels": "Kanali zvoka:",
|
||||
|
@ -586,7 +577,6 @@
|
|||
"LabelAlbumArtists": "Izvajalci albuma:",
|
||||
"LabelAll": "Vse",
|
||||
"LabelCustomRating": "Prilagojena ocena:",
|
||||
"LabelDashboardTheme": "Tema nadzorne plošče strežnika:",
|
||||
"LabelBirthDate": "Datum rojstva:",
|
||||
"LabelCache": "Predpomnilnik:",
|
||||
"LabelCachePath": "Pot predpomnilnika:",
|
||||
|
@ -598,7 +588,7 @@
|
|||
"LabelCriticRating": "Ocena kritikov:",
|
||||
"LabelCustomCertificatePathHelp": "Pot do PKCS #12 datoteke, ki vsebuje certifikat in zasebni ključ, za omogočanje TLS povezave na domenah po meri.",
|
||||
"LabelCustomCss": "CSS po meri:",
|
||||
"LabelCustomCssHelp": "Določite vaš lasten stil spletnega vmesnika.",
|
||||
"LabelCustomCssHelp": "Določite vaš lasten slog spletnega vmesnika.",
|
||||
"LabelCustomDeviceDisplayName": "Prikazano ime:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Določi prikazano ime naprave. Pusti prazno za uporabo imena kot ga sporoči naprava sama.",
|
||||
"LabelDefaultScreen": "Privzeti zaslon:",
|
||||
|
@ -622,10 +612,10 @@
|
|||
"LabelDay": "Dan:",
|
||||
"LabelDeathDate": "Datum smrti:",
|
||||
"LabelBitrate": "Bitna hitrost:",
|
||||
"LabelBlastMessageInterval": "Interval sporočila o dostopnosti (sekunde)",
|
||||
"LabelBlastMessageInterval": "Interval sporočila o dostopnosti",
|
||||
"LabelDefaultUserHelp": "Določi knjižnica katerega uporabnika bo prikazana na povezanih napravah. To lahko preglasite s profili za posamezno napravo.",
|
||||
"LabelEnableDlnaClientDiscoveryIntervalHelp": "Določi trajanje v sekundah med SSDP iskanji, ki jih izvede Jellyfin.",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Interval odkrivanja sprejemnikov (sekunde)",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Interval odkrivanja odjemalcev",
|
||||
"LabelEnableBlastAliveMessagesHelp": "Omogočite, če imajo UPnP naprave težave z zaznavanjem strežnika v omrežju.",
|
||||
"LabelEnableBlastAliveMessages": "Oddajaj sporočila o dostopnosti",
|
||||
"LabelEnableAutomaticPortMapHelp": "Avtomatično posreduje javna vrata na vašem usmerjevalnuku z lokalnimi vrati strežnika preko UPnP. To ne deluje z nekaterimi usmerjevalniki ali omrežnimi nastavitvami. Spremembe bodo uveljavljene po ponovnem zagonu strežnika.",
|
||||
|
@ -640,10 +630,10 @@
|
|||
"LabelDisplayOrder": "Vrstni red prikaza:",
|
||||
"LabelDisplayName": "Prikazano ime:",
|
||||
"LabelDisplayMode": "Način prikaza:",
|
||||
"LabelBindToLocalNetworkAddressHelp": "Neobvezno. Preglasi lokalni IP naslov za povezavo s HTTP strežnikom. V kolikor pustite prazno se strežnik poveže z vsemi možnimi naslovi. Sprememba vrednosti zahteva ponovni zagon Jellyfin strežnika.",
|
||||
"LabelBindToLocalNetworkAddressHelp": "Preglasi lokalni IP naslov za HTTP strežnik. V kolikor pustite prazno se strežnik poveže z vsemi možnimi naslovi. Sprememba vrednosti zahteva ponovni zagon Jellyfin strežnika.",
|
||||
"InstallingPackage": "Nameščanje {0} (različica {1})",
|
||||
"ImportMissingEpisodesHelp": "Če je omogočeno, bodo podatki o manjkajočih epizodah dodani v Jellyfin bazo podatkov in prikazani znotraj sezon in serij. To lahko občutno podaljša uvoz v knjižnjico.",
|
||||
"ImportFavoriteChannelsHelp": "Če je omogočeno, bodo uvoženi zgolj kanali, ki so na sprejemniku označeni kot priljubljeni.",
|
||||
"ImportMissingEpisodesHelp": "Podatki o manjkajočih epizodah bodo dodani v bazo podatkov in prikazani znotraj sezon in serij. To lahko občutno podaljša čas uvoza v knjižnjico.",
|
||||
"ImportFavoriteChannelsHelp": "Uvoženi bodo zgolj programi, ki so na sprejemniku označeni kot priljubljeni.",
|
||||
"LabelEnableDlnaServerHelp": "Omogoči UPnP napravam v omrežju da brskajo in predvajajo vsebine.",
|
||||
"LabelFolder": "Mapa:",
|
||||
"LabelIconMaxWidth": "Največja širina ikon:",
|
||||
|
@ -662,9 +652,9 @@
|
|||
"LabelHardwareAccelerationTypeHelp": "Strojno pospeševanje zahteva dodatno konfiguracijo.",
|
||||
"LabelHomeNetworkQuality": "Kvaliteta v domačem omrežju:",
|
||||
"LabelHttpsPort": "Lokalna HTTPS vrata:",
|
||||
"LabelHttpsPortHelp": "Vrata TCP s katerimi se poveže Jellyfin HTTPS strežnik.",
|
||||
"LabelHttpsPortHelp": "Vrata TCP za HTTPS strežnik.",
|
||||
"LabelLocalHttpServerPortNumber": "Lokalna HTTP vrata:",
|
||||
"LabelLocalHttpServerPortNumberHelp": "Vrata TCP s katerimi se poveže Jellyfin HTTP strežnik.",
|
||||
"LabelLocalHttpServerPortNumberHelp": "Vrata TCP za HTTP strežnik.",
|
||||
"LabelLockItemToPreventChanges": "Zakleni ta element in prepreči spreminjanje v prihodnosti",
|
||||
"LabelMetadataReadersHelp": "Uredi želene lokalne vire metapodatkov po prioriteti. Uporabljena bo prva najdena datoteka.",
|
||||
"LabelMinResumeDuration": "Najkrajša dolžina za nadaljevanje:",
|
||||
|
@ -674,7 +664,7 @@
|
|||
"LabelEnableDlnaDebugLogging": "Omogoči beleženje napak DLNA",
|
||||
"LabelEnableDlnaDebugLoggingHelp": "Ustvari podrobne dnevnike dogodkov. Uporabi zgolj za potrebe odpravljanja težav.",
|
||||
"LabelEnableDlnaPlayTo": "Omogoči DLNA predvajanje na",
|
||||
"LabelEnableDlnaPlayToHelp": "Zaznaj naprave znotraj omrežja in omogoči upravljanje z njimi.",
|
||||
"LabelEnableDlnaPlayToHelp": "Zaznaj naprave znotraj omrežja in omogoči oddaljeno upravljanje z njimi.",
|
||||
"LabelEnableDlnaServer": "Omogoči DLNA strežnik",
|
||||
"LabelEnableHardwareDecodingFor": "Omogoči strojno pospešeno predvajanje za:",
|
||||
"LabelEnableRealtimeMonitor": "Omogoči spremljanje v realnem času",
|
||||
|
@ -687,7 +677,7 @@
|
|||
"LabelBaseUrl": "Osnovni URL:",
|
||||
"LabelExtractChaptersDuringLibraryScan": "Izvleči slike poglavij med preiskovanjem knjižnjice",
|
||||
"LabelFormat": "Format:",
|
||||
"LabelServerNameHelp": "To ime bo uporabljeno za identifikacijo strežnika in je privzeto enako imenu računalnika.",
|
||||
"LabelServerNameHelp": "To ime bo uporabljeno za identifikacijo strežnika in je privzeto enako imenu strežnika.",
|
||||
"LabelGroupMoviesIntoCollectionsHelp": "Pri prikazovanju seznama filmov bodo filmi iz iste zbirke prikazani kot en združen element.",
|
||||
"LabelH264Crf": "H264 kodiranje CRF:",
|
||||
"LabelIconMaxHeight": "Največja višina ikone:",
|
||||
|
@ -741,7 +731,7 @@
|
|||
"LabelKodiMetadataEnablePathSubstitutionHelp": "Omogoči zamenjavo poti za poti slik glede na nastavitve zamenjave poti strežnika.",
|
||||
"LabelKodiMetadataSaveImagePaths": "Shrani poti slik znotraj nfo datotek",
|
||||
"LabelMetadataDownloadersHelp": "Omogoči in uredi želene vire metapodatkov po prioriteti. Viri z nižjo prioriteto bodo uporabljeni zgolj za dopolnjevanje manjkajočih informacij.",
|
||||
"LabelBaseUrlHelp": "Doda podnaslov po meri na konec URL-ja strežnika. Na primer: <code>http://example.com/<b><baseurl></b></code>",
|
||||
"LabelBaseUrlHelp": "Dodjte podnaslov po meri na konec URL-ja strežnika. Na primer: <code>http://example.com/<b><baseurl></b></code>",
|
||||
"LabelExtractChaptersDuringLibraryScanHelp": "Ustvari slike poglavij med uvozom videov pri preiskovanju knjižnjice. Sicer bodo ustvarjene med načrtovanim opravilom, kar omogoča hitrejše preiskovanje knjižnjice.",
|
||||
"LabelForgotPasswordUsernameHelp": "Vpišite svoje uporabniško ime, v kolikor se ga spomnite.",
|
||||
"LabelInNetworkSignInWithEasyPasswordHelp": "Uporabi enostavno PIN kodo za prijavo v naprave znotraj lokalnega omrežja. Vaše geslo bo potrebno zgolj za prijave zunaj domačega omrežja. Če pustite prazno, za prijavo v domačem omrežju omrežju ne boste potrebovali gesla.",
|
||||
|
@ -879,13 +869,11 @@
|
|||
"PleaseSelectTwoItems": "Prosimo izberite vsaj dva elementa.",
|
||||
"Premieres": "Premiere",
|
||||
"Producer": "Producent",
|
||||
"QueueAllFromHere": "Dodaj vse tukaj v čakalno vrsto",
|
||||
"Premiere": "Premiera",
|
||||
"OptionRuntime": "Trajanje",
|
||||
"OptionSaturday": "Sobota",
|
||||
"MediaInfoLayout": "Razporeditev",
|
||||
"Like": "Všeč mi je",
|
||||
"LinksValue": "Povezave: {0}",
|
||||
"LabelPlayDefaultAudioTrack": "Predvajaj privzeti zvočni posnetek ne glede na jezik",
|
||||
"LabelOriginalTitle": "Izvirni naslov:",
|
||||
"LabelRefreshMode": "Način osveževanja:",
|
||||
|
@ -958,7 +946,6 @@
|
|||
"MessageNoAvailablePlugins": "Dodatki niso na voljo.",
|
||||
"MessageInvalidUser": "Napačno uporabniško ime ali geslo. Prosimo poskusite znova.",
|
||||
"MessageInvalidForgotPasswordPin": "Vnesena je bila napačna ali pretečena PIN koda. Prosimo, poskusite znova.",
|
||||
"MessageInstallPluginFromApp": "Ta dodatek mora biti nameščen znotraj aplikacije, v kateri ga nameravate uporabljati.",
|
||||
"MessageImageTypeNotSelected": "Prosimo izberite tip slike v spustnem meniju.",
|
||||
"MessageImageFileTypeAllowed": "Podprte so zgolj JPEG in PNG datoteke.",
|
||||
"MessageForgotPasswordFileCreated": "Sledeča datoteka je bila ustvarjena na vašem strežniku in vsebuje navodila za nadaljevanje:",
|
||||
|
@ -988,7 +975,6 @@
|
|||
"MediaInfoStreamTypeEmbeddedImage": "Vdelana sličica",
|
||||
"MediaInfoStreamTypeData": "Podatki",
|
||||
"MediaInfoStreamTypeAudio": "Zvok",
|
||||
"MediaInfoSoftware": "Programska oprema",
|
||||
"MediaInfoTimestamp": "Časovni žig",
|
||||
"MediaInfoSize": "Velikost",
|
||||
"MediaInfoSampleRate": "Vzorčna hitrost",
|
||||
|
@ -1086,7 +1072,6 @@
|
|||
"Mute": "Utišaj",
|
||||
"MoveLeft": "Premakni levo",
|
||||
"MoveRight": "Premakni desno",
|
||||
"LabelSkin": "Preobleka:",
|
||||
"LabelSize": "Velikost:",
|
||||
"LabelSimultaneousConnectionLimit": "Omejitev števila sočasnih predvajanj:",
|
||||
"LabelServerName": "Ime strežnika:",
|
||||
|
@ -1125,7 +1110,6 @@
|
|||
"LabelNumberOfGuideDays": "Število dni vodiča za prenos:",
|
||||
"LabelNumber": "Številka:",
|
||||
"LabelNotificationEnabled": "Omogoči to obvestilo",
|
||||
"CopyStreamURLError": "Pri kopiranju naslova URL je prišlo do napake.",
|
||||
"AskAdminToCreateLibrary": "Prosite skrbnika, da ustvari knjižnico.",
|
||||
"AllowFfmpegThrottlingHelp": "Ko je prekodiranja dovolj pred mestom predvajanja se proces ustavi, da bo porabljal manj sredstev. To je najbolj uporabno pri gledanju brez pogostega premikanja mesta predvajanja. Če naletite na težave s predvajanjem onemogočite to možnost.",
|
||||
"AllowFfmpegThrottling": "Zaviraj prekodiranje",
|
||||
|
@ -1136,7 +1120,6 @@
|
|||
"LabelStartWhenPossible": "Začni, ko je mogoče:",
|
||||
"LabelSportsCategories": "Športne kategorije:",
|
||||
"LabelSource": "Vir:",
|
||||
"LabelSoundEffects": "Zvočni učinki:",
|
||||
"LabelSkipIfGraphicalSubsPresentHelp": "Ohranjanje besedilnih različic podnapisov omogoča učinkovitejše predvajanje in zmanjša potrebo po prekodiranju.",
|
||||
"LabelTriggerType": "Tip sprožilca:",
|
||||
"LabelTranscodingVideoCodec": "Video kodek:",
|
||||
|
@ -1195,8 +1178,6 @@
|
|||
"LibraryAccessHelp": "Izberite knjižnice, ki bodo deljenje s tem uporabnikom. Upravitelji bodo lahko urejali metapodatke z upraviteljem metapodatkov.",
|
||||
"LeaveBlankToNotSetAPassword": "To polje lahko pustite prazno za uporabo brez gesla.",
|
||||
"LearnHowYouCanContribute": "Poglejte, kako lahko pomagate.",
|
||||
"LaunchWebAppOnStartupHelp": "Ob prvem zagonu strežnika se bo v privzetem brskalniku odprl spletni vmesnik. To se ne bo zgodilo pri uporabi možnosti za ponovni zagon.",
|
||||
"LaunchWebAppOnStartup": "Ob zagonu strežnika zaženi spletni vmesnik",
|
||||
"LabelffmpegPathHelp": "Pot do datoteke aplikacije ffmpeg ali mape, ki jo vsebuje.",
|
||||
"LabelffmpegPath": "Pot FFmpeg:",
|
||||
"LabelZipCode": "Poštna številka:",
|
||||
|
@ -1266,7 +1247,7 @@
|
|||
"HeaderItems": "Vsebine",
|
||||
"EnableDecodingColorDepth10Vp9": "Omogoči strojno dekodiranje za 10-bit VP9",
|
||||
"EnableDecodingColorDepth10Hevc": "Omogoči strojno dekodiranje za 10-bit HEVC",
|
||||
"LabelEnableHttpsHelp": "Omogoči strežniku, da posluša na nastavljenih HTTPS vratih. Za uveljavitev te možnosti mora biti nastavljen tudi veljaven certifikat.",
|
||||
"LabelEnableHttpsHelp": "Poslušaj na nastavljenih HTTPS vratih. Za uveljavitev te možnosti mora biti nastavljen tudi veljaven certifikat.",
|
||||
"LabelEnableHttps": "Omogoči HTTPS",
|
||||
"LabelEmbedAlbumArtDidlHelp": "Nekatere naprave delujejo bolje s tem načinom pridobivanja grafike albuma. Pri drugih predvajanje morda ne bo delovalo v tem načinu.",
|
||||
"MessageReenableUser": "Za ponovno omogočanje poglejte spodaj",
|
||||
|
@ -1278,7 +1259,6 @@
|
|||
"LabelRepositoryUrl": "URL repozitorija",
|
||||
"HeaderNewRepository": "Nov repozitorij",
|
||||
"MessageNoRepositories": "Ni repozitorijev.",
|
||||
"MessageUnauthorizedUser": "Trenutno nimate dovoljenja za dostop do tega strežnika. Kontaktirajte skrbnika strežnika za več informacij.",
|
||||
"MediaInfoAspectRatio": "Razmerje stranic",
|
||||
"MediaInfoAnamorphic": "Anamorfno",
|
||||
"MaxParentalRatingHelp": "Vsebine z višjo oceno bodo za tega uporabnika skrite.",
|
||||
|
@ -1294,7 +1274,6 @@
|
|||
"LabelUserAgent": "Uporabniški agent:",
|
||||
"EnableFasterAnimationsHelp": "Uporabi hitrejše animacije in prehode",
|
||||
"EnableFasterAnimations": "Hitrejše animacije",
|
||||
"LabelNightly": "Nestabilna",
|
||||
"LabelStable": "Stabilna",
|
||||
"LabelChromecastVersion": "Različica Chromecast",
|
||||
"LabelLibraryPageSizeHelp": "Nastavi število prikazanih vsebin na strani knjižnice. Nastavite na 0 za neskončno dolgo stran.",
|
||||
|
@ -1317,7 +1296,6 @@
|
|||
"SaveChanges": "Shrani spremembe",
|
||||
"Save": "Shrani",
|
||||
"Saturday": "sobota",
|
||||
"RunAtStartup": "Zaženi ob zagonu",
|
||||
"Rewind": "Previj nazaj",
|
||||
"ReplaceExistingImages": "Zamenjaj obstoječe slike",
|
||||
"ReplaceAllMetadata": "Zamenjaj vse metapodatke",
|
||||
|
@ -1328,7 +1306,6 @@
|
|||
"RememberMe": "Zapomni si me",
|
||||
"RecommendationDirectedBy": "Režija",
|
||||
"Person": "Oseba",
|
||||
"OtherArtist": "Drugi izvajalci",
|
||||
"OptionProfileVideo": "Video",
|
||||
"OptionPoster": "Plakat",
|
||||
"OptionNone": "Nič",
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
"AddToPlaylist": "Додај на листу пуштања",
|
||||
"AddToPlayQueue": "Додај у ред за пуштање",
|
||||
"AddToCollection": "Додај у колекцију",
|
||||
"AddItemToCollectionHelp": "Додајте ставке у колекцију претрагом па затим десним кликом у менију изаберите да додате у колекцију.",
|
||||
"Add": "Додај",
|
||||
"Actor": "Глумац",
|
||||
"AccessRestrictedTryAgainLater": "Приступ је тренутно ограничен. Покушајте поново касније.",
|
||||
|
@ -42,7 +41,6 @@
|
|||
"ButtonMore": "Више",
|
||||
"ButtonManualLogin": "Ручни логин",
|
||||
"ButtonLibraryAccess": "Приступ библиотеци",
|
||||
"ButtonLearnMore": "Научи више",
|
||||
"ButtonInfo": "Информације",
|
||||
"ButtonHome": "Почетна страна",
|
||||
"ButtonHelp": "Помоћ",
|
||||
|
@ -78,7 +76,6 @@
|
|||
"BirthPlaceValue": "Место рођења: {0}",
|
||||
"BirthLocation": "Место рођења",
|
||||
"BirthDateValue": "Рођен",
|
||||
"AutoBasedOnLanguageSetting": "Аутоматски (зависи од подешавања језика)",
|
||||
"Audio": "Звук",
|
||||
"AttributeNew": "Ново",
|
||||
"AroundTime": "Около",
|
||||
|
@ -103,7 +100,6 @@
|
|||
"DateAdded": "Датум додавања",
|
||||
"CustomDlnaProfilesHelp": "Направите прилагођени профил да бисте циљали на нови уређај или прегазили системски профил.",
|
||||
"CriticRating": "Оцена критике",
|
||||
"CopyStreamURLError": "Десила се грешка приликом копирања адресе.",
|
||||
"CopyStreamURLSuccess": "Адреса копирана успешно.",
|
||||
"CopyStreamURL": "Копирајте адресу стрим-а",
|
||||
"Continuing": "Наставља",
|
||||
|
@ -130,7 +126,6 @@
|
|||
"CancelSeries": "Откажи серију",
|
||||
"CancelRecording": "Откажи снимање",
|
||||
"ButtonWebsite": "Веб сајт",
|
||||
"ButtonViewWebsite": "Погледајте веб сајт",
|
||||
"ButtonUp": "Горе",
|
||||
"ButtonUninstall": "Деинсталирај",
|
||||
"ButtonTrailer": "Трејлер",
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
"AccessRestrictedTryAgainLater": "För närvarande är åtkomsten begränsad. Försök igen senare.",
|
||||
"Actor": "Skådespelare",
|
||||
"Add": "Lägg till",
|
||||
"AddItemToCollectionHelp": "Lägg till objekt i samlingar genom att söka efter dem och använda deras högerklick- eller pekmeny för att lägga till dem i en samling.",
|
||||
"AddToCollection": "Lägg till i samling",
|
||||
"AddToPlayQueue": "Lägg till i spelkö",
|
||||
"AddToPlaylist": "Lägg till i spellista",
|
||||
|
@ -33,7 +32,6 @@
|
|||
"AspectRatio": "Bildförhållande",
|
||||
"AttributeNew": "Ny",
|
||||
"Audio": "Ljud",
|
||||
"AutoBasedOnLanguageSetting": "Automatisk (baserad på språkinställning)",
|
||||
"Backdrop": "Fondbild",
|
||||
"Backdrops": "Fondbilder",
|
||||
"Banner": "Banderoll",
|
||||
|
@ -74,7 +72,6 @@
|
|||
"ButtonGotIt": "Ok",
|
||||
"ButtonHelp": "Hjälp",
|
||||
"ButtonHome": "Hem",
|
||||
"ButtonLearnMore": "Läs mer",
|
||||
"ButtonLibraryAccess": "Biblioteksåtkomst",
|
||||
"ButtonManualLogin": "Manuell inloggning",
|
||||
"ButtonMore": "Mer",
|
||||
|
@ -118,7 +115,6 @@
|
|||
"ButtonSubtitles": "Undertexter",
|
||||
"ButtonUninstall": "Avinstallera",
|
||||
"ButtonUp": "Upp",
|
||||
"ButtonViewWebsite": "Gå till hemsidan",
|
||||
"ButtonWebsite": "Hemsida",
|
||||
"CancelRecording": "Avbryt inspelning",
|
||||
"CancelSeries": "Avbryt serie",
|
||||
|
@ -263,7 +259,6 @@
|
|||
"HeaderApiKeysHelp": "Externa applikationer behöver en API-nyckel för att kommunicera med Jellyfin servern. Nycklar skapas genom att logga in med ett Jellyfin-konto eller genom att manuellt skapa en nyckel till applikationen.",
|
||||
"HeaderAudioBooks": "Ljudböcker",
|
||||
"HeaderAudioSettings": "Ljudinställningar",
|
||||
"HeaderAutomaticUpdates": "Automatiska uppdateringar",
|
||||
"HeaderBlockItemsWithNoRating": "Blockera innehåll med ingen eller okänd åldersgräns:",
|
||||
"HeaderBooks": "Böcker",
|
||||
"HeaderCancelRecording": "Avbryt inspelning",
|
||||
|
@ -472,8 +467,6 @@
|
|||
"LabelAlbumArtists": "Albumartist:",
|
||||
"LabelAll": "Alla",
|
||||
"LabelAllowHWTranscoding": "Tillåt hårdvaruomkodning",
|
||||
"LabelAllowServerAutoRestart": "Tillåt att servern startas om automatiskt efter uppdateringar",
|
||||
"LabelAllowServerAutoRestartHelp": "Servern startas om endast då inga användare är inloggade.",
|
||||
"LabelAppName": "Appens namn",
|
||||
"LabelAppNameExample": "Exempel: Sickbeard, Sonarr",
|
||||
"LabelArtists": "Artister:",
|
||||
|
@ -508,7 +501,6 @@
|
|||
"LabelCustomDeviceDisplayName": "Visningsnamn:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "Ange ett anpassat enhetsnamn. Lämna blankt för att använda det namn enheten själv rapporterar.",
|
||||
"LabelCustomRating": "Anpassad åldersgräns:",
|
||||
"LabelDashboardTheme": "Kontrollpanelstema:",
|
||||
"LabelDateAdded": "Inlagd den:",
|
||||
"LabelDateAddedBehavior": "Hantering av datum för nytt innehåll:",
|
||||
"LabelDateAddedBehaviorHelp": "Om ett metadatavärde finns kommer det att användas i stället för dessa.",
|
||||
|
@ -716,7 +708,6 @@
|
|||
"LabelServerHost": "Värd:",
|
||||
"LabelServerHostHelp": "192.168.1.100:8096 eller https://min.server.com",
|
||||
"LabelSimultaneousConnectionLimit": "Begränsning för samtidiga strömmar:",
|
||||
"LabelSkin": "Skal:",
|
||||
"LabelSkipBackLength": "'Hoppa bakåt'-längd:",
|
||||
"LabelSkipForwardLength": "'Hoppa framåt'-längd:",
|
||||
"LabelSkipIfAudioTrackPresent": "Hoppa över om det förvalda ljudspårets språk är samma som det hämtade",
|
||||
|
@ -728,7 +719,6 @@
|
|||
"LabelSortBy": "Sortera efter:",
|
||||
"LabelSortOrder": "Sortering:",
|
||||
"LabelSortTitle": "Sorteringstitel:",
|
||||
"LabelSoundEffects": "Ljudeffekter:",
|
||||
"LabelSource": "Källa:",
|
||||
"LabelSpecialSeasonsDisplayName": "Visningsnamn för specialsäsong:",
|
||||
"LabelSportsCategories": "Sportkategorier:",
|
||||
|
@ -774,7 +764,6 @@
|
|||
"LabelXDlnaCapHelp": "Anger innehållet i elementet X_DLNACAP i namnutrymmet urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelXDlnaDocHelp": "Anger innehållet i elementet X_DLNADOC i namnutrymmet urn:schemas-dlna-org:device-1-0.",
|
||||
"LabelYear": "År:",
|
||||
"LabelYourFirstName": "Ditt förnamn:",
|
||||
"LabelYoureDone": "Klart!",
|
||||
"LabelZipCode": "Postnummer:",
|
||||
"LabelffmpegPath": "FFmpeg-sökväg:",
|
||||
|
@ -784,7 +773,6 @@
|
|||
"LearnHowYouCanContribute": "Se hur du kan hjälpa till.",
|
||||
"LibraryAccessHelp": "Ange vilka mediemappar den här användaren ska ha tillgång till. Administratörer har rätt att redigera alla mappar i metadatahanteraren.",
|
||||
"Like": "Gilla",
|
||||
"LinksValue": "Länkar: {0}",
|
||||
"List": "Lista",
|
||||
"LiveBroadcasts": "Livesändningar",
|
||||
"LiveTV": "Live-TV",
|
||||
|
@ -839,7 +827,6 @@
|
|||
"MessageFileReadError": "Ett fel uppstod när filen lästes in. Var god försök igen.",
|
||||
"MessageForgotPasswordFileCreated": "Följande fil har skapats på din server och innehåller information om hur du går vidare:",
|
||||
"MessageForgotPasswordInNetworkRequired": "Försök igen innanför ditt hemma-nätverk, att starta återställningen av lösenordet.",
|
||||
"MessageInstallPluginFromApp": "Detta tillägg måste installeras inifrån den app det skall användas i.",
|
||||
"MessageInvalidForgotPasswordPin": "Koden har gått ut eller så är den felaktig. Försök igen.",
|
||||
"MessageInvalidUser": "Felaktigt användarnamn eller lösenord. Försök igen.",
|
||||
"MessageItemSaved": "Objektet har sparats.",
|
||||
|
@ -1066,7 +1053,6 @@
|
|||
"ProductionLocations": "Produktionsplatser",
|
||||
"Programs": "Program",
|
||||
"Quality": "Kvalitet",
|
||||
"QueueAllFromHere": "Köa alla fr o m här",
|
||||
"Raised": "Upphöjd",
|
||||
"Rate": "Betygsätt",
|
||||
"RecentlyWatched": "Nyligen sedda",
|
||||
|
@ -1095,7 +1081,6 @@
|
|||
"ReplaceAllMetadata": "Ersätt all metadata",
|
||||
"ReplaceExistingImages": "Skriv över befintliga bilder",
|
||||
"ResumeAt": "Återuppta från {0}",
|
||||
"RunAtStartup": "Kör vid uppstart",
|
||||
"Runtime": "Speltid",
|
||||
"Saturday": "Lördag",
|
||||
"Save": "Spara",
|
||||
|
@ -1182,7 +1167,6 @@
|
|||
"TabParentalControl": "Föräldralås",
|
||||
"TabPassword": "Lösenord",
|
||||
"TabPlayback": "Uppspelning",
|
||||
"TabPlaylist": "Spellista",
|
||||
"TabPlaylists": "Spellistor",
|
||||
"TabPlugins": "Tillägg",
|
||||
"TabProfile": "Profil",
|
||||
|
@ -1350,10 +1334,8 @@
|
|||
"HeaderParentalRatings": "Föräldrabetyg",
|
||||
"HeaderNavigation": "Navigering",
|
||||
"HeaderBranding": "Märke",
|
||||
"CopyStreamURLError": "Kunde inte kopiera videoadress.",
|
||||
"AskAdminToCreateLibrary": "Fråga en administratör för att skapa ett bibliotek.",
|
||||
"Whitelist": "Vitlista",
|
||||
"VideoRange": "Video räckvidd",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueMinutes": "{0} min",
|
||||
"ValueContainer": "Behållare: {0}",
|
||||
|
@ -1424,14 +1406,11 @@
|
|||
"MediaInfoStreamTypeEmbeddedImage": "Inbäddad bild",
|
||||
"MediaInfoStreamTypeData": "Data",
|
||||
"MediaInfoStreamTypeAudio": "Ljud",
|
||||
"MediaInfoSoftware": "Mjukvara",
|
||||
"MediaInfoLayout": "Design",
|
||||
"MediaInfoContainer": "Behållare",
|
||||
"ManageLibrary": "Hantera bibliotek",
|
||||
"Live": "Live",
|
||||
"LeaveBlankToNotSetAPassword": "Du kan lämna detta fält tomt för att inte ange lösenord.",
|
||||
"LaunchWebAppOnStartupHelp": "Öppna webbgränssnittet i din standardwebbläsare när servern först startar. Detta händer inte när du använder starta om-funktionen.",
|
||||
"LaunchWebAppOnStartup": "Öppna webbgränssnittet när servern startar",
|
||||
"LanNetworksHelp": "Kommatecken separerad lista på IP adresser eller IP/nätmask inlägg för nätverk som anses vara på lokala nätverket för att tvinga fram bandbredd begränsningar. Om angett, alla andra IP adresser kommer att anses vara på ett externt nätverk och kommer tilldelas till det externa bandbredd begränsningarna. Om lämnat tomt, endast serverns subnet anses vara på det lokala nätverket.",
|
||||
"LabelXDlnaDoc": "X-DLNA-dokumentation:",
|
||||
"LabelXDlnaCap": "X-DLNA-begränsning:",
|
||||
|
@ -1468,11 +1447,9 @@
|
|||
"PathNotFound": "Sökvägen hittades inte. Säkerställ att sökvägen är korrekt och försök igen.",
|
||||
"Track": "Spår",
|
||||
"Season": "Säsong",
|
||||
"ReleaseGroup": "Releasegrupp",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "Föredra inbäddad avsnittsinformation före filnamn",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "Detta använder avsnittets information från inbäddad metadata om tillgängligt.",
|
||||
"Person": "Person",
|
||||
"OtherArtist": "Annan artist",
|
||||
"Movie": "Film",
|
||||
"Episode": "Avsnitt",
|
||||
"ClientSettings": "Klientinställningar",
|
||||
|
@ -1489,7 +1466,6 @@
|
|||
"Yadif": "YADIF",
|
||||
"Filter": "Filter",
|
||||
"New": "Ny",
|
||||
"MessageUnauthorizedUser": "Du har inte behörighet att komma åt servern just nu. Kontakta din serveradministratör för mer information.",
|
||||
"HeaderFavoritePlaylists": "Favoritspellista",
|
||||
"OnWakeFromSleep": "Vid start från vilande läge",
|
||||
"UnsupportedPlayback": "Jellyfin kan inte dekryptera inehåll skyddat av DRM men allt inehåll kommer ändå försökas, även skyddade titlar. Vissa filer kan se helt svarta ut på grund av kryptering eller andra funktioner som inte stöds, till exempel interaktiva titlar.",
|
||||
|
@ -1563,6 +1539,5 @@
|
|||
"MessageSyncPlayDisabled": "SyncPlay avaktiverat.",
|
||||
"MessageSyncPlayEnabled": "SyncPlay aktiverat.",
|
||||
"MessageNoGenresAvailable": "Aktivera vissa metadataleverantörer att hämta genrer från internet.",
|
||||
"LabelRepositoryNameHelp": "Ett eget namn för att särskilja denna förvaringsplats från andra tillagda på din server.",
|
||||
"LabelNightly": "Nattlig"
|
||||
"LabelRepositoryNameHelp": "Ett eget namn för att särskilja denna förvaringsplats från andra tillagda på din server."
|
||||
}
|
||||
|
|
|
@ -58,7 +58,6 @@
|
|||
"Friday": "Cuma",
|
||||
"HeaderActiveRecordings": "Aktif Kayıtlar",
|
||||
"HeaderAddUser": "Kullanıcı Ekle",
|
||||
"HeaderAutomaticUpdates": "Otomatik Güncelleme",
|
||||
"HeaderChannels": "Kanallar",
|
||||
"HeaderCodecProfile": "Codec Profili",
|
||||
"HeaderContinueWatching": "İzlemeye Devam Et",
|
||||
|
@ -92,7 +91,6 @@
|
|||
"HeaderTaskTriggers": "Görev tetikleyicileri",
|
||||
"HeaderTranscodingProfile": "Kodlama Profili",
|
||||
"HeaderUsers": "Kullanıcılar",
|
||||
"LabelAllowServerAutoRestart": "Bu sunucuya güncellemeleri uygulamak için yeniden başlama izni ver",
|
||||
"LabelArtists": "Sanatçılar:",
|
||||
"LabelAudioLanguagePreference": "Ses Dili Tercihi:",
|
||||
"LabelCachePath": "Önbellek Yolu:",
|
||||
|
@ -130,7 +128,6 @@
|
|||
"LabelUser": "Kullanıcı:",
|
||||
"LabelUserLibrary": "Kullanıcı Kütüphanesi:",
|
||||
"LabelYear": "Yıl:",
|
||||
"LabelYourFirstName": "İlk Ad:",
|
||||
"LabelYoureDone": "Bitti!",
|
||||
"LibraryAccessHelp": "Bu kullanıcı ile paylaşmak için kütüphaneleri seçin. Yöneticiler meta yöneticisini kullanarak tüm klasörleri düzenlemesi mümkün olacaktır.",
|
||||
"Live": "Canlı",
|
||||
|
@ -227,7 +224,6 @@
|
|||
"TabNetworks": "Ağlar",
|
||||
"TabNotifications": "Bildirimler",
|
||||
"TabPassword": "Şifre",
|
||||
"TabPlaylist": "Oynatma listesi",
|
||||
"TabProfile": "Profil",
|
||||
"TabProfiles": "Profiller",
|
||||
"TabRecordings": "Kayıtlar",
|
||||
|
@ -287,7 +283,6 @@
|
|||
"AllEpisodes": "Tüm bölümler",
|
||||
"AllLanguages": "Tüm diller",
|
||||
"AllowMediaConversion": "Medya dönüşümüne izin ver",
|
||||
"AddItemToCollectionHelp": "Ögeleri koleksiyona eklemek için; arama yapın ve üzerine sağ tıklayın veya sekme menüsünden koleksiyona ekleyin.",
|
||||
"AllowHWTranscodingHelp": "Ayarlayıcının anında akışları dönüştürmesine izin verin. Bu, sunucunun gerektirdiği kodlamanın azaltılmasına yardımcı olabilir.",
|
||||
"ColorSpace": "Renk uzayı",
|
||||
"ButtonConnect": "Bağlan",
|
||||
|
@ -348,7 +343,6 @@
|
|||
"ButtonArrowLeft": "Sol",
|
||||
"ButtonDown": "Aşağı",
|
||||
"ButtonGuide": "Rehber",
|
||||
"ButtonLearnMore": "Daha fazla bilgi edin",
|
||||
"ButtonLibraryAccess": "Kütüphane erişimi",
|
||||
"ButtonScanAllLibraries": "Tüm Kütüphaneleri Tara",
|
||||
"ButtonSelectView": "Görünüm seç",
|
||||
|
@ -387,7 +381,6 @@
|
|||
"AspectRatio": "En/Boy oranı",
|
||||
"Audio": "Ses",
|
||||
"AuthProviderHelp": "Bu kullanıcının şifresini doğrulamak için kullanılacak bir Kimlik Doğrulama Sağlayıcısı seçin.",
|
||||
"AutoBasedOnLanguageSetting": "Otomatik (dil ayarına göre)",
|
||||
"Backdrop": "zemin",
|
||||
"Backdrops": "Zeminler",
|
||||
"Banner": "afiş",
|
||||
|
@ -402,7 +395,6 @@
|
|||
"ButtonStart": "Başlat",
|
||||
"ButtonTrailer": "Fragman",
|
||||
"Box": "Kutu",
|
||||
"ButtonViewWebsite": "Web sitesini görüntüle",
|
||||
"CancelRecording": "Kayıttan Vazgeç",
|
||||
"CancelSeries": "Dizileri iptal et",
|
||||
"ButtonUninstall": "Kaldır",
|
||||
|
@ -703,7 +695,6 @@
|
|||
"HeaderSelectTranscodingPathHelp": "Geçici Video Kodlama dosyaları için bir dosya yolu seçin yada yazın. Dosya yoluna yazma yetkisi gereklidir.",
|
||||
"HeaderSelectTranscodingPath": "Video Kodlaması İçin Geçici Dosya Yolu Seç",
|
||||
"HeaderSelectServerCachePathHelp": "Önbellek dosyaları için bir dosya yolu seçin yada yazın. Dosya yoluna yazma yetkisi gereklidir.",
|
||||
"CopyStreamURLError": "URL kopyalanırken bir hata oluştu.",
|
||||
"OptionNone": "Hiçbiri",
|
||||
"None": "Hiçbiri",
|
||||
"HeaderNavigation": "Navigasyon",
|
||||
|
@ -759,7 +750,6 @@
|
|||
"LabelStreamType": "Akış türü:",
|
||||
"LabelSubtitleDownloaders": "Altyazı indiriciler:",
|
||||
"LabelStopping": "Durduruluyor",
|
||||
"LabelSoundEffects": "Ses efektleri:",
|
||||
"LabelSortOrder": "Sıralama düzeni:",
|
||||
"LabelSortBy": "Sıralama türü:",
|
||||
"LabelSkipIfGraphicalSubsPresent": "Video halihazırda gömülü altyazı barındırıyorsa atla",
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
"FolderTypeMusic": "Музика",
|
||||
"FolderTypeTvShows": "ТБ",
|
||||
"HeaderAlbums": "Альбоми",
|
||||
"HeaderAutomaticUpdates": "Автоматичне оновлення",
|
||||
"HeaderBooks": "Книги",
|
||||
"HeaderDeleteDevice": "Видалить пристрій",
|
||||
"HeaderLatestEpisodes": "Нещодавно переглянуті серії",
|
||||
|
@ -40,7 +39,6 @@
|
|||
"LabelNext": "Вперед",
|
||||
"LabelPath": "Шлях:",
|
||||
"LabelPrevious": "Назад",
|
||||
"LabelYourFirstName": "Ім’я:",
|
||||
"Like": "Подобається",
|
||||
"MediaInfoAspectRatio": "Співвідношення сторін",
|
||||
"MediaInfoChannels": "Канали",
|
||||
|
@ -127,7 +125,6 @@
|
|||
"HeaderFavoriteArtists": "Улюблені виконавці",
|
||||
"HeaderFavoriteShows": "Улюблені шоу",
|
||||
"HeaderContinueWatching": "Продовжити перегляд",
|
||||
"AddItemToCollectionHelp": "Додайте елементи до колекції за допомогою пошуку або кліком правої кнопкої миші чи натисненням на меню.",
|
||||
"AllowedRemoteAddressesHelp": "Список з комами, в якості розділювачів, визначає IP-адреси та IP/мережеві маски для мереж, яким дозволено підключатись віддалено. Якщо залишити строку пустою, то усі віддалені підключення будуть дозволені.",
|
||||
"AllowRemoteAccessHelp": "Якщо не відмічено прапорцем, усі віддалені підключення будуть заблоковані.",
|
||||
"AllowFfmpegThrottling": "Примусово обмежити перекодування",
|
||||
|
@ -145,7 +142,6 @@
|
|||
"Blacklist": "Чорний список",
|
||||
"BirthLocation": "Місце народження",
|
||||
"Banner": "Обкладинка",
|
||||
"AutoBasedOnLanguageSetting": "Автоматично (на основі поточної мови)",
|
||||
"Auto": "Автоматично",
|
||||
"AuthProviderHelp": "Оберіть сервіс аутентифікації, який буде використаний з поточним паролем користувача.",
|
||||
"Audio": "Аудіо",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"FileReadError": "Có một lỗi xảy ra khi đọc tệp tin này.",
|
||||
"FolderTypeTvShows": "TV",
|
||||
"HeaderAddUser": "Thêm người dùng",
|
||||
"HeaderAutomaticUpdates": "Tự động cập nhật",
|
||||
"HeaderCustomDlnaProfiles": "Hồ sơ khách hàng",
|
||||
"HeaderFeatureAccess": "Truy cập tính năng",
|
||||
"HeaderFrequentlyPlayed": "Phát thường xuyên",
|
||||
|
@ -34,7 +33,6 @@
|
|||
"HeaderStatus": "Trạng thái",
|
||||
"HeaderSystemDlnaProfiles": "Hồ sơ hệ thống",
|
||||
"HeaderUsers": "dùng",
|
||||
"LabelAllowServerAutoRestart": "Cho phép máy chủ tự động khởi động lại để áp dụng các bản cập nhật",
|
||||
"LabelAudioLanguagePreference": "Ngôn ngữ thoại ưa thích:",
|
||||
"LabelCountry": "Quốc gia:",
|
||||
"LabelCurrentPassword": "Mật khẩu hiện tại:",
|
||||
|
@ -51,7 +49,6 @@
|
|||
"LabelSaveLocalMetadata": "Lưu các ảnh nghệ thuật và metadata vào trong các thư mục media",
|
||||
"LabelSaveLocalMetadataHelp": "Lưu các ảnh nghệ thuật và metadata vào trong các thư mục media, sẽ đưa chúng vào một nơi bạn có thể chỉnh sửa dễ dàng hơn.",
|
||||
"LabelTime": "Thời gian:",
|
||||
"LabelYourFirstName": "Tên của bạn:",
|
||||
"LabelYoureDone": "Bạn đã hoàn thành!",
|
||||
"MaxParentalRatingHelp": "Nội dung với đánh giá cao hơn sẽ được ẩn đi từ người dùng này.",
|
||||
"MessageNothingHere": "Không có gì ở đây.",
|
||||
|
@ -140,7 +137,6 @@
|
|||
"ButtonMore": "Thêm",
|
||||
"ButtonManualLogin": "Đăng nhập thủ công",
|
||||
"ButtonLibraryAccess": "Truy cập thư viện",
|
||||
"ButtonLearnMore": "Tìm hiểu thêm",
|
||||
"ButtonInfo": "Thông tin",
|
||||
"ButtonHome": "Trang chủ",
|
||||
"ButtonHelp": "Giúp đỡ",
|
||||
|
@ -178,7 +174,6 @@
|
|||
"BirthDateValue": "Sinh năm: {0}",
|
||||
"Backdrops": "Phông nền",
|
||||
"Backdrop": "Phông nền",
|
||||
"AutoBasedOnLanguageSetting": "Tự động (dựa trên cài đặt ngôn ngữ)",
|
||||
"Auto": "Tự động",
|
||||
"AuthProviderHelp": "Chọn Nhà cung cấp xác thực sẽ được sử dụng để xác thực mật khẩu người dùng này.",
|
||||
"Audio": "Âm thanh",
|
||||
|
@ -214,7 +209,6 @@
|
|||
"AddedOnValue": "Đã thêm {0}",
|
||||
"AddToPlaylist": "Thêm vào danh sách phát",
|
||||
"AddToPlayQueue": "Thêm vào hàng đợi",
|
||||
"AddItemToCollectionHelp": "Thêm các mục vào bộ sưu tập bằng cách tìm kiếm và nhấp chuột phải hoặc nhấn vào menu để thêm chúng vào bộ sưu tập.",
|
||||
"Absolute": "Tuyệt đối",
|
||||
"ButtonSend": "Gửi",
|
||||
"ButtonSelectView": "Chọn chế độ xem",
|
||||
|
@ -225,7 +219,6 @@
|
|||
"Categories": "Phân loại",
|
||||
"CancelRecording": "Ngưng ghi hình",
|
||||
"ButtonWebsite": "Trang web",
|
||||
"ButtonViewWebsite": "Xem trang web",
|
||||
"ButtonUp": "Lên",
|
||||
"ButtonUninstall": "Gỡ cài đặt",
|
||||
"ButtonTrailer": "Tóm tắt",
|
||||
|
@ -244,7 +237,6 @@
|
|||
"DateAdded": "Ngày thêm vào",
|
||||
"CustomDlnaProfilesHelp": "Tạo một bộ thiết lập tuỳ chọn dành cho một thiết bị mới hoặc thay thế một thiết lập hệ thống.",
|
||||
"CriticRating": "Đánh giá phê bình",
|
||||
"CopyStreamURLError": "Có lỗi xảy ra lúc sao chép URL.",
|
||||
"CopyStreamURLSuccess": "URL đã được sao chép.",
|
||||
"CopyStreamURL": "Sao Chép URL Phát Sóng",
|
||||
"Continuing": "Tiếp tục",
|
||||
|
@ -616,7 +608,6 @@
|
|||
"LabelAppName": "Tên ứng dụng",
|
||||
"LabelAllowedRemoteAddressesMode": "Chế độ bộ lọc địa chỉ IP từ xa:",
|
||||
"LabelAllowedRemoteAddresses": "Bộ lọc địa chỉ IP từ xa:",
|
||||
"LabelAllowServerAutoRestartHelp": "Máy chủ chỉ khởi động lại trong thời gian rỗi khi không có người dùng đang sử dụng.",
|
||||
"LabelAllowHWTranscoding": "Cho phép chuyển mã bằng phần cứng",
|
||||
"LabelAll": "Tất Cả",
|
||||
"LabelAlbumArtists": "Nghệ sĩ album:",
|
||||
|
@ -700,7 +691,6 @@
|
|||
"LabelDateAddedBehaviorHelp": "Nếu có giá trị dữ liệu bổ trợ, nó sẽ luôn được sử dụng trước một trong các tùy chọn này.",
|
||||
"LabelDateAddedBehavior": "Ngày thêm hành vi cho nội dung mới:",
|
||||
"LabelDateAdded": "Ngày thêm vào:",
|
||||
"LabelDashboardTheme": "Chủ đề bảng điều khiển máy chủ:",
|
||||
"LabelCustomRating": "Đánh giá tuỳ chọn:",
|
||||
"HeaderFavoritePlaylists": "Danh Sách Phát Yêu Thích",
|
||||
"ApiKeysCaption": "Danh sách các mã API đang hoạt động",
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
"AccessRestrictedTryAgainLater": "目前访问受限,请稍后再试。",
|
||||
"Actor": "演员",
|
||||
"Add": "添加",
|
||||
"AddItemToCollectionHelp": "通过搜索项目并右键或轻触得到的弹出菜单来将项目添加到集合中。",
|
||||
"AddToCollection": "加入集合",
|
||||
"AddToPlayQueue": "添加至播放队列",
|
||||
"AddToPlaylist": "添加至播放列表",
|
||||
|
@ -36,7 +35,6 @@
|
|||
"AttributeNew": "新增",
|
||||
"Audio": "音频",
|
||||
"Auto": "自动",
|
||||
"AutoBasedOnLanguageSetting": "自动(取决于语言设置)",
|
||||
"Backdrop": "背景",
|
||||
"Backdrops": "背景",
|
||||
"Banner": "横幅",
|
||||
|
@ -78,7 +76,6 @@
|
|||
"ButtonHelp": "帮助",
|
||||
"ButtonHome": "首页",
|
||||
"ButtonInfo": "详情",
|
||||
"ButtonLearnMore": "了解更多",
|
||||
"ButtonLibraryAccess": "媒体库访问",
|
||||
"ButtonManualLogin": "手动登录",
|
||||
"ButtonMore": "更多",
|
||||
|
@ -124,7 +121,6 @@
|
|||
"ButtonTrailer": "预告片",
|
||||
"ButtonUninstall": "卸载",
|
||||
"ButtonUp": "上",
|
||||
"ButtonViewWebsite": "浏览网站",
|
||||
"ButtonWebsite": "网站",
|
||||
"CancelRecording": "取消录制",
|
||||
"CancelSeries": "取消系列",
|
||||
|
@ -268,7 +264,6 @@
|
|||
"HeaderApiKeysHelp": "外部应用程序需要 API 密钥才能与 Jellyfin Server 进行通信。使用 Jellyfin 账户进行登录时密钥将会自动生成,您也可以手动为某个应用程序分配一个密钥。",
|
||||
"HeaderAudioBooks": "有声读物",
|
||||
"HeaderAudioSettings": "声音设置",
|
||||
"HeaderAutomaticUpdates": "自动更新",
|
||||
"HeaderBlockItemsWithNoRating": "通过没有评级和设置不允许的评级锁定内容:",
|
||||
"HeaderBooks": "书籍",
|
||||
"HeaderBranding": "品牌",
|
||||
|
@ -476,8 +471,6 @@
|
|||
"LabelAlbumArtists": "专辑作家:",
|
||||
"LabelAll": "所有",
|
||||
"LabelAllowHWTranscoding": "允许硬件转码",
|
||||
"LabelAllowServerAutoRestart": "允许服务器自动重启来安装更新",
|
||||
"LabelAllowServerAutoRestartHelp": "该服务器仅会在空闲和没有活动用户的期间重新启动。",
|
||||
"LabelAllowedRemoteAddresses": "远程IP地址过滤器:",
|
||||
"LabelAllowedRemoteAddressesMode": "远程IP地址过滤器模式:",
|
||||
"LabelAppName": "APP名称",
|
||||
|
@ -515,7 +508,6 @@
|
|||
"LabelCustomDeviceDisplayName": "显示名称:",
|
||||
"LabelCustomDeviceDisplayNameHelp": "自定义设备显示名称或留空则使用设备报告名称。",
|
||||
"LabelCustomRating": "自定义分级:",
|
||||
"LabelDashboardTheme": "控制台主题:",
|
||||
"LabelDateAdded": "加入日期:",
|
||||
"LabelDateAddedBehavior": "新内容加入的日期:",
|
||||
"LabelDateAddedBehaviorHelp": "如果一个媒体资料的值存在,它总是优先于这些选项前使用。",
|
||||
|
@ -726,7 +718,6 @@
|
|||
"LabelServerHost": "主机:",
|
||||
"LabelServerHostHelp": "192.168.1.100:8096 或 https://myserver.com",
|
||||
"LabelSimultaneousConnectionLimit": "并发流限制:",
|
||||
"LabelSkin": "皮肤:",
|
||||
"LabelSkipBackLength": "跳过长度:",
|
||||
"LabelSkipForwardLength": "快进时限:",
|
||||
"LabelSkipIfAudioTrackPresent": "如果默认音轨的语言和下载语言一样则跳过",
|
||||
|
@ -738,7 +729,6 @@
|
|||
"LabelSortBy": "排序依据:",
|
||||
"LabelSortOrder": "排序顺序:",
|
||||
"LabelSortTitle": "短标题:",
|
||||
"LabelSoundEffects": "音效:",
|
||||
"LabelSource": "来源:",
|
||||
"LabelSpecialSeasonsDisplayName": "SP 季显示的名称:",
|
||||
"LabelSportsCategories": "体育分类:",
|
||||
|
@ -793,7 +783,6 @@
|
|||
"LabelXDlnaDoc": "X-DLNA DOC:",
|
||||
"LabelXDlnaDocHelp": "决定在 urn:schemas-dlna-org:device-1-0 namespace 中的 X-Dlna doc 元素的内容。",
|
||||
"LabelYear": "年份:",
|
||||
"LabelYourFirstName": "你的名字:",
|
||||
"LabelYoureDone": "完成!",
|
||||
"LabelZipCode": "邮编:",
|
||||
"LabelffmpegPath": "FFmpeg 路径:",
|
||||
|
@ -857,7 +846,6 @@
|
|||
"MessageFileReadError": "读取文件发生错误。",
|
||||
"MessageForgotPasswordFileCreated": "已在服务器上创建了以下文件, 并包含有关后续步骤说明:",
|
||||
"MessageForgotPasswordInNetworkRequired": "请连接你的家庭网络后再试一次以开始密码重置流程。",
|
||||
"MessageInstallPluginFromApp": "这个插件必须从你打算使用的应用程序中安装。",
|
||||
"MessageInvalidForgotPasswordPin": "无效的或过期的 pin 码。请再试一次。",
|
||||
"MessageInvalidUser": "用户名或密码不可用。请重试。",
|
||||
"MessageItemSaved": "项目已保存。",
|
||||
|
@ -1097,7 +1085,6 @@
|
|||
"ProductionLocations": "产地",
|
||||
"Programs": "节目",
|
||||
"Quality": "质量",
|
||||
"QueueAllFromHere": "这里的全部内容都加入队列",
|
||||
"Rate": "评级",
|
||||
"RecentlyWatched": "最近观看",
|
||||
"RecommendationBecauseYouLike": "因为你喜欢 {0}",
|
||||
|
@ -1124,7 +1111,6 @@
|
|||
"ReplaceExistingImages": "替换现有图片",
|
||||
"ResumeAt": "恢复播放于{0}",
|
||||
"Rewind": "倒回",
|
||||
"RunAtStartup": "开机时启动",
|
||||
"Runtime": "播放时长",
|
||||
"Saturday": "星期六",
|
||||
"Save": "保存",
|
||||
|
@ -1211,7 +1197,6 @@
|
|||
"TabParentalControl": "家长控制",
|
||||
"TabPassword": "密码",
|
||||
"TabPlayback": "播放",
|
||||
"TabPlaylist": "播放列表",
|
||||
"TabPlaylists": "播放列表",
|
||||
"TabPlugins": "插件",
|
||||
"TabProfile": "个人配置",
|
||||
|
@ -1357,12 +1342,10 @@
|
|||
"LabelVideo": "视频",
|
||||
"LabelWeb": "网页:",
|
||||
"LeaveBlankToNotSetAPassword": "您可以将此字段留空以设置空密码。",
|
||||
"LinksValue": "链接:{0}",
|
||||
"LiveBroadcasts": "直播",
|
||||
"LiveTV": "电视直播",
|
||||
"Logo": "商标",
|
||||
"ManageRecording": "管理录音",
|
||||
"MediaInfoSoftware": "软件",
|
||||
"MediaInfoStreamTypeAudio": "音频",
|
||||
"MediaInfoStreamTypeData": "数据",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "内嵌图片",
|
||||
|
@ -1397,15 +1380,12 @@
|
|||
"Smaller": "更小",
|
||||
"TagsValue": "标签:{0}",
|
||||
"Vertical": "垂直",
|
||||
"VideoRange": "视频范围",
|
||||
"Depressed": "凹陷",
|
||||
"Uniform": "轮廓",
|
||||
"HeaderHome": "主页",
|
||||
"DashboardOperatingSystem": "操作系统:{0}",
|
||||
"DashboardArchitecture": "架构:{0}",
|
||||
"GroupVersions": "按版本分组",
|
||||
"LaunchWebAppOnStartup": "当启动服务器时,打开Web界面",
|
||||
"LaunchWebAppOnStartupHelp": "服务器启动时在默认浏览器中打开网页端。使用重启服务器功能时此项不生效。",
|
||||
"MusicAlbum": "音乐专辑",
|
||||
"MusicArtist": "音乐艺术家",
|
||||
"MusicVideo": "音乐视频",
|
||||
|
@ -1448,7 +1428,6 @@
|
|||
"ButtonSplit": "拆分",
|
||||
"SelectAdminUsername": "请为管理员账户选择一个用户名。",
|
||||
"HeaderNavigation": "导航",
|
||||
"CopyStreamURLError": "复制URL地址时发生错误。",
|
||||
"MessageConfirmAppExit": "你要退出吗?",
|
||||
"OptionForceRemoteSourceTranscoding": "强制远程转码(像电视直播一样)",
|
||||
"NoCreatedLibraries": "看上去您还未创建任何资料库。{0} 您想现在创建一个吗? {1}",
|
||||
|
@ -1461,9 +1440,7 @@
|
|||
"ClientSettings": "客户端设置",
|
||||
"Track": "音轨",
|
||||
"Season": "季",
|
||||
"ReleaseGroup": "发行组",
|
||||
"Person": "人物",
|
||||
"OtherArtist": "其他艺术家",
|
||||
"Movie": "电影",
|
||||
"Episode": "剧集",
|
||||
"BoxSet": "套装",
|
||||
|
@ -1489,7 +1466,6 @@
|
|||
"LabelLibraryPageSize": "媒体库分页阈值:",
|
||||
"LabelLibraryPageSizeHelp": "设置媒体库页面每页要显示的最多媒体个数。设置为 0 以禁用分页。",
|
||||
"UnsupportedPlayback": "Jellyfin无法解密被DRM保护的内容,但仍然会尝试播放包括受保护内容在内的所有内容。某些文件由于被加密或包含不受支持的特性(如互动标题),在播放时可能显示为黑屏。",
|
||||
"MessageUnauthorizedUser": "您目前无权访问服务器。更多有关信息,请与服务器管理员联系。",
|
||||
"Filter": "过滤",
|
||||
"New": "新的",
|
||||
"HeaderFavoritePlaylists": "收藏的播放列表",
|
||||
|
@ -1508,7 +1484,6 @@
|
|||
"LabelEnableHttps": "启用 HTTPS",
|
||||
"LabelChromecastVersion": "Chromecast版本",
|
||||
"HeaderDVR": "DVR",
|
||||
"LabelNightly": "开发版",
|
||||
"MessageSyncPlayErrorAccessingGroups": "访问群组列表时发生错误。",
|
||||
"MessageSyncPlayLibraryAccessDenied": "对此内容的访问受到限制。",
|
||||
"MessageSyncPlayCreateGroupDenied": "需要权限以创建群组。",
|
||||
|
|
|
@ -47,7 +47,6 @@
|
|||
"HeaderAddToCollection": "添加到收藏庫",
|
||||
"HeaderAddUser": "添加用戶",
|
||||
"HeaderAdditionalParts": "附加部份",
|
||||
"HeaderAutomaticUpdates": "自動更新",
|
||||
"HeaderBooks": "書籍",
|
||||
"HeaderBranding": "界面",
|
||||
"HeaderCastCrew": "演員陣容",
|
||||
|
@ -86,8 +85,6 @@
|
|||
"Help": "幫助",
|
||||
"LabelAirsAfterSeason": "已播放劇集季度:",
|
||||
"LabelAirsBeforeSeason": "尚未播放劇集季度:",
|
||||
"LabelAllowServerAutoRestart": "允許自動重新啟動來更新",
|
||||
"LabelAllowServerAutoRestartHelp": "只在沒有活躍用戶和空檔時間重新啟動。",
|
||||
"LabelArtists": "藝人:",
|
||||
"LabelArtistsHelp": "分開多重使用 ;",
|
||||
"LabelAudioLanguagePreference": "首選音訊語言:",
|
||||
|
@ -173,7 +170,6 @@
|
|||
"LabelTriggerType": "觸發類型:",
|
||||
"LabelUser": "用戶:",
|
||||
"LabelVersionInstalled": "已安裝 {0}",
|
||||
"LabelYourFirstName": "您的名字是:",
|
||||
"LabelYoureDone": "大功告成!",
|
||||
"LibraryAccessHelp": "選擇與此用戶共享媒體文件夾。管理員將能夠使用媒體資料瀏覽器而編輯所有文件夾。",
|
||||
"MaxParentalRatingHelp": "此用戶會被隱藏具有較高評價的家長評級內容。",
|
||||
|
@ -306,7 +302,6 @@
|
|||
"TabNotifications": "通知",
|
||||
"TabOther": "其它",
|
||||
"TabPassword": "密碼",
|
||||
"TabPlaylist": "播放清單",
|
||||
"TabProfile": "簡介",
|
||||
"TabProfiles": "簡介",
|
||||
"TabRecordings": "錄影",
|
||||
|
@ -341,7 +336,6 @@
|
|||
"AsManyAsPossible": "越多越好",
|
||||
"Audio": "音頻",
|
||||
"Auto": "自動",
|
||||
"AutoBasedOnLanguageSetting": "自動 (基於語言設定)",
|
||||
"BirthLocation": "出生地點",
|
||||
"AllLanguages": "全部語言",
|
||||
"All": "全部",
|
||||
|
@ -400,7 +394,6 @@
|
|||
"AdditionalNotificationServices": "瀏覽插件目錄以安裝其他通知服務。",
|
||||
"AddToPlayQueue": "添加到播放隊列",
|
||||
"AddToCollection": "添加到收藏",
|
||||
"AddItemToCollectionHelp": "搜尋物件並使用右鍵點擊或點擊菜單將他們添加到收藏中。",
|
||||
"AccessRestrictedTryAgainLater": "目前存取受限。 請稍後再試。",
|
||||
"AllowFfmpegThrottling": "轉碼調節器",
|
||||
"Dislike": "不喜歡",
|
||||
|
@ -422,7 +415,6 @@
|
|||
"ErrorDefault": "處理此請求時發生錯誤,請稍後再嘗試。",
|
||||
"Default": "預設",
|
||||
"DateAdded": "日期已新增",
|
||||
"CopyStreamURLError": "複製URL時發生錯誤。",
|
||||
"CopyStreamURLSuccess": "成功複製URL。",
|
||||
"CopyStreamURL": "複製直播URL",
|
||||
"ContinueWatching": "繼續觀看",
|
||||
|
@ -437,7 +429,6 @@
|
|||
"CancelSeries": "取消片集",
|
||||
"CancelRecording": "取消錄影",
|
||||
"ButtonWebsite": "網頁",
|
||||
"ButtonViewWebsite": "瀏覽網頁",
|
||||
"ButtonUninstall": "解除安裝",
|
||||
"ButtonTrailer": "預告",
|
||||
"ButtonTogglePlaylist": "播放清單",
|
||||
|
@ -461,7 +452,6 @@
|
|||
"ButtonOpen": "開啟",
|
||||
"ButtonNetwork": "網絡",
|
||||
"ButtonMore": "更多",
|
||||
"ButtonLearnMore": "了解更多",
|
||||
"ButtonInfo": "資訊",
|
||||
"ButtonHome": "主頁",
|
||||
"ButtonGuide": "教學",
|
||||
|
|
|
@ -60,7 +60,6 @@
|
|||
"HeaderAddUser": "增加使用者",
|
||||
"HeaderAdditionalParts": "附加部份",
|
||||
"HeaderAdmin": "管理",
|
||||
"HeaderAutomaticUpdates": "自動更新",
|
||||
"HeaderCastCrew": "拍攝人員及演員",
|
||||
"HeaderChannels": "頻道",
|
||||
"HeaderCustomDlnaProfiles": "自訂設定檔",
|
||||
|
@ -96,8 +95,6 @@
|
|||
"HeaderUsers": "使用者",
|
||||
"Help": "說明",
|
||||
"ItemCount": "{0}個項目",
|
||||
"LabelAllowServerAutoRestart": "允許伺服器自動重新啟動去安裝更新資料",
|
||||
"LabelAllowServerAutoRestartHelp": "伺服器只會在沒有使用者在使用時重新啟動。",
|
||||
"LabelAudioLanguagePreference": "音頻語言偏好選項:",
|
||||
"LabelCachePath": "快取路徑:",
|
||||
"LabelCollection": "收藏櫃:",
|
||||
|
@ -142,7 +139,6 @@
|
|||
"LabelTime": "時間:",
|
||||
"LabelTriggerType": "觸發類型:",
|
||||
"LabelUser": "使用者:",
|
||||
"LabelYourFirstName": "您的名字:",
|
||||
"LabelYoureDone": "完成,耶!",
|
||||
"LibraryAccessHelp": "選擇媒體資料夾與此使用者共享。管理員將可以使用中繼資料管理器編輯所有的媒體資料夾。",
|
||||
"Like": "喜歡",
|
||||
|
@ -271,7 +267,6 @@
|
|||
"TabMyPlugins": "我的插件",
|
||||
"TabNetworks": "網絡",
|
||||
"TabPassword": "密碼",
|
||||
"TabPlaylist": "播放清單",
|
||||
"TabProfile": "設定",
|
||||
"TabProfiles": "設定",
|
||||
"TabRecordings": "錄影",
|
||||
|
@ -324,7 +319,6 @@
|
|||
"AttributeNew": "新增",
|
||||
"Audio": "音訊",
|
||||
"Auto": "自動",
|
||||
"AutoBasedOnLanguageSetting": "自動(根據語言設定)",
|
||||
"Backdrop": "背景",
|
||||
"Backdrops": "背景",
|
||||
"Banner": "橫幅",
|
||||
|
@ -340,7 +334,6 @@
|
|||
"ButtonAudioTracks": "音軌",
|
||||
"ButtonBack": "返回",
|
||||
"ButtonChangeServer": "更換伺服器",
|
||||
"AddItemToCollectionHelp": "利用搜尋並使用右鍵或點擊目錄將項目新增到收藏中。",
|
||||
"AddToCollection": "加入收藏",
|
||||
"AirDate": "播出日期",
|
||||
"Aired": "已播於",
|
||||
|
@ -361,7 +354,6 @@
|
|||
"ButtonFullscreen": "全螢幕",
|
||||
"ButtonHelp": "幫助",
|
||||
"ButtonInfo": "詳細資料",
|
||||
"ButtonLearnMore": "瞭解更多",
|
||||
"ButtonLibraryAccess": "媒體庫存取",
|
||||
"ButtonManualLogin": "手動登入",
|
||||
"ButtonMore": "更多",
|
||||
|
@ -392,7 +384,6 @@
|
|||
"ButtonTrailer": "預告片",
|
||||
"ButtonUninstall": "解除安裝",
|
||||
"ButtonUp": "上",
|
||||
"ButtonViewWebsite": "查看網站",
|
||||
"ButtonWebsite": "網站",
|
||||
"CancelRecording": "取消錄影",
|
||||
"CancelSeries": "取消系列",
|
||||
|
@ -765,7 +756,6 @@
|
|||
"HeaderSelectServerCachePathHelp": "瀏覽或者輸入路徑以用於伺服器快取檔案。請確保該資料夾可以被寫入。",
|
||||
"LabelCustomDeviceDisplayNameHelp": "指定自訂的顯示名稱,或者留空以使用設備自己報告的名稱。",
|
||||
"LabelCustomRating": "自訂分級:",
|
||||
"LabelDashboardTheme": "控制台佈景主題:",
|
||||
"LabelDateAdded": "新增日期:",
|
||||
"LabelDateAddedBehavior": "新内容加入的日期應使用:",
|
||||
"LabelDateTimeLocale": "設定時區:",
|
||||
|
@ -986,7 +976,6 @@
|
|||
"LabelVideoBitrate": "影片比特率:",
|
||||
"MediaInfoSize": "大小",
|
||||
"MediaInfoTimestamp": "時間戳",
|
||||
"MediaInfoSoftware": "軟體",
|
||||
"MediaInfoStreamTypeData": "檔案",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "內嵌語言",
|
||||
"MediaInfoStreamTypeSubtitle": "字幕",
|
||||
|
@ -1099,14 +1088,12 @@
|
|||
"LabelTranscodingContainer": "影片容器:",
|
||||
"MovieLibraryHelp": "查看 {0}Jellyfin 電影命名指南{1}。",
|
||||
"None": "無",
|
||||
"LinksValue": "連結:{0}",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "由於不支持的媒體格式,限制轉檔可能會導致 Jellyfin 應用程式播放失敗。",
|
||||
"MediaInfoLevel": "等級",
|
||||
"MessageNoTrailersFound": "安裝 Trailer channel 來新增網路上預告片,以增進你的電影體驗。",
|
||||
"OptionHasSpecialFeatures": "特色",
|
||||
"RecommendationStarring": "主演 {0}",
|
||||
"Rewind": "倒帶",
|
||||
"RunAtStartup": "開機時啟動",
|
||||
"SubtitleOffset": "字幕偏移",
|
||||
"TabPlayback": "播放",
|
||||
"Unrated": "尚未評等",
|
||||
|
@ -1167,7 +1154,6 @@
|
|||
"LabelServerHost": "主機:",
|
||||
"LabelSimultaneousConnectionLimit": "同時串流限制:",
|
||||
"LabelSize": "大小:",
|
||||
"LabelSkin": "主題:",
|
||||
"LabelSkipBackLength": "跳過長度:",
|
||||
"LabelSkipIfGraphicalSubsPresentHelp": "保留文字版本的字幕會更有效率傳遞,減低影片轉碼的機會。",
|
||||
"LabelStopWhenPossible": "當可能時自動停止:",
|
||||
|
@ -1188,7 +1174,6 @@
|
|||
"LabelWeb": "網站:",
|
||||
"LabelXDlnaCapHelp": "決定在 urn:schemas-dlna-org:device-1-0 namespace 中的 X_DLNACAP 元素的內容。",
|
||||
"LabelXDlnaDocHelp": "決定在 urn:schemas-dlna-org:device-1-0 namespace 中的 X-Dlna doc 元素的內容。",
|
||||
"LaunchWebAppOnStartup": "在啟動伺服器時啟動使用者介面",
|
||||
"LabelUserRemoteClientBitrateLimitHelp": "覆蓋伺服器重播設定中設置的預設全域值。",
|
||||
"LabelTranscodingThreadCountHelp": "選擇轉檔時要使用的最大執行緒數,減少執行緒數將降低 CPU 使用率,但轉換速度可能不足以提供流暢的播放體驗。",
|
||||
"LabelXDlnaCap": "X-DLNA 上限:",
|
||||
|
@ -1276,7 +1261,6 @@
|
|||
"Programs": "節目",
|
||||
"Quality": "品質",
|
||||
"PackageInstallFailed": "{0} (版本 {1}) 安裝失敗。",
|
||||
"QueueAllFromHere": "將這裡的全部內容加入佇列",
|
||||
"Raised": "提高",
|
||||
"Rate": "評等",
|
||||
"Recordings": "錄影",
|
||||
|
@ -1343,7 +1327,6 @@
|
|||
"LabelSonyAggregationFlagsHelp": "決定在 urn:schemas-dlna-org:device-1-0 namespace 中的 aggregationFlags 元素的內容。",
|
||||
"LabelSortOrder": "排列順序:",
|
||||
"LabelSortTitle": "短標題:",
|
||||
"LabelSoundEffects": "音效:",
|
||||
"LabelSource": "來源:",
|
||||
"LabelSpecialSeasonsDisplayName": "SP 季顯示名稱:",
|
||||
"LabelSportsCategories": "體育分類:",
|
||||
|
@ -1415,7 +1398,6 @@
|
|||
"TitlePlayback": "播放",
|
||||
"ValueConditions": "條件:{0}",
|
||||
"Vertical": "垂直",
|
||||
"VideoRange": "影片範圍",
|
||||
"ViewPlaybackInfo": "查看播放訊息",
|
||||
"XmlTvSportsCategoriesHelp": "有這些類別的節目會被當作體育節目,以「|」來分隔多個項目。",
|
||||
"XmlTvPathHelp": "XML 電視檔案的路徑,Jellyfin 將讀取該檔案並定期檢查其更新,您負責建立和更新檔案。",
|
||||
|
@ -1428,7 +1410,6 @@
|
|||
"LabelDisplaySpecialsWithinSeasons": "顯示劇集季度中的特集",
|
||||
"LabelNumberOfGuideDaysHelp": "下載更多電視指南資料會提供更好時間表查看能力,但將需要更長的下載時間。自動基於頻道數目來選擇。",
|
||||
"LabelOptionalNetworkPath": "(選用)分享的網路資料夾:",
|
||||
"MessageInstallPluginFromApp": "必須從要在其中使用它的應用程式中安裝此模組。",
|
||||
"OptionResElement": "res 元素",
|
||||
"PinCodeResetComplete": "PIN 碼已被重設。",
|
||||
"PinCodeResetConfirmation": "你確定要重設 PIN 碼?",
|
||||
|
@ -1440,12 +1421,10 @@
|
|||
"XmlDocumentAttributeListHelp": "這些屬性會在每一個XML回應的根元素上應用。",
|
||||
"SkipEpisodesAlreadyInMyLibraryHelp": "劇集將使用季和劇集編號進行比較。",
|
||||
"SelectAdminUsername": "請為管理員賬戶選擇一個用戶名。",
|
||||
"CopyStreamURLError": "複製連結的時候發生錯誤。",
|
||||
"OptionSaveMetadataAsHiddenHelp": "更改此項將應用於以後保存的元數據。現有元數據文件將在下一次 Jellyfin 伺服器保存它們時被更新。",
|
||||
"OptionAllowRemoteSharedDevicesHelp": "DLNA裝置將被視為共享中,直至有使用者控制。",
|
||||
"OptionForceRemoteSourceTranscoding": "强制遠端轉碼(像電視直播一樣)",
|
||||
"MessageConfirmAppExit": "您要退出嗎?",
|
||||
"LaunchWebAppOnStartupHelp": "伺服器啓動時在默認游覽器中打開網頁端。使用重啓伺服器功能時此項不生效。",
|
||||
"LabelVideoResolution": "視頻解析度:",
|
||||
"LabelStreamType": "串流類型:",
|
||||
"LabelPlayerDimensions": "播放器尺寸:",
|
||||
|
@ -1460,7 +1439,6 @@
|
|||
"PreferEmbeddedEpisodeInfosOverFileNamesHelp": "這將會使用內建劇集資料。",
|
||||
"PlaybackErrorNoCompatibleStream": "用戶端與該媒體不相容,伺服器也未傳送相容的媒體格式。",
|
||||
"PreferEmbeddedEpisodeInfosOverFileNames": "優先使用內建劇集資訊而不是檔案名稱",
|
||||
"OtherArtist": "其他歌手",
|
||||
"Artist": "演出者",
|
||||
"AlbumArtist": "專輯歌手",
|
||||
"Album": "專輯",
|
||||
|
@ -1480,7 +1458,6 @@
|
|||
"EveryXHours": "每 {0} 小時",
|
||||
"OnApplicationStartup": "當應用程式啟動時",
|
||||
"Season": "季",
|
||||
"ReleaseGroup": "發行組織",
|
||||
"Person": "人物",
|
||||
"Movie": "電影",
|
||||
"LabelLibraryPageSizeHelp": "設置媒體庫頁面每頁要顯示的最多媒體個數。設置為 0 來停用分頁。",
|
||||
|
@ -1490,7 +1467,6 @@
|
|||
"DeinterlaceMethodHelp": "選擇對隔行掃描內容進行轉碼時所用的反交錯方法。",
|
||||
"BoxSet": "套裝",
|
||||
"UnsupportedPlayback": "Jellyfin 無法解密受 DRM 保護的內容,但仍然會嘗試播放所有內容。某些檔案由於被加密或包含如互動標題等不受支援的內容,在播放時可能會沒有畫面。",
|
||||
"MessageUnauthorizedUser": "您目前無權存取伺服器,請與您的伺服器管理員聯繫以獲取更多訊息。",
|
||||
"Filter": "篩選器",
|
||||
"New": "新增",
|
||||
"ApiKeysCaption": "目前已啟用的API金鑰列表",
|
||||
|
@ -1501,7 +1477,6 @@
|
|||
"EnableFasterAnimationsHelp": "使用更快的動畫與過渡效果",
|
||||
"EnableFasterAnimations": "更快的動畫",
|
||||
"LabelRequireHttps": "強制 HTTPS",
|
||||
"LabelNightly": "開發版",
|
||||
"LabelStable": "穩定版",
|
||||
"LabelChromecastVersion": "Chromecast 版本",
|
||||
"LabelEnableHttpsHelp": "讓伺服器監聽指定的 HTTPS 端口。須設定有效的證書以便使其生效。",
|
||||
|
|
23
src/styles/_mixins.scss
Normal file
23
src/styles/_mixins.scss
Normal file
|
@ -0,0 +1,23 @@
|
|||
@mixin background-cover($position) {
|
||||
background-position: $position;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
@mixin circle($size) {
|
||||
@include square($size);
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
@mixin position($position, $top: null, $right: null, $bottom: null, $left: null) {
|
||||
position: $position;
|
||||
top: $top;
|
||||
right: $right;
|
||||
bottom: $bottom;
|
||||
left: $left;
|
||||
}
|
||||
|
||||
@mixin square($size) {
|
||||
height: $size;
|
||||
width: $size;
|
||||
}
|
|
@ -5262,10 +5262,10 @@ gulp-sourcemaps@^2.6.5:
|
|||
strip-bom-string "1.X"
|
||||
through2 "2.X"
|
||||
|
||||
gulp-terser@^1.2.1:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.yarnpkg.com/gulp-terser/-/gulp-terser-1.2.1.tgz#d5b0ee7ebb1107c1a7bb92449629b07a1951b896"
|
||||
integrity sha512-wFWfO6hqPwHbzyulA67ZiC2mFXQO4bPno82cvL/V6qZsFXvYxKeeFuLSNsv+i/POhyfNJLkDrcye4rRxkvJUAA==
|
||||
gulp-terser@^1.3.0:
|
||||
version "1.3.0"
|
||||
resolved "https://registry.yarnpkg.com/gulp-terser/-/gulp-terser-1.3.0.tgz#6423fdb7dd15cc376e28063b5271271a928084bd"
|
||||
integrity sha512-EvizE1LJLfOh3/EmpJoq9iqYziObOkTzFgN4KvxfB0ICp3+W5H+MOO9B7Xq5Iuu9N+RKByNJLmqR+Ph13U1vtQ==
|
||||
dependencies:
|
||||
plugin-error "^1.0.1"
|
||||
terser ">=4"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue