mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge branch 'dev' into imageupload-fixes
This commit is contained in:
commit
b1f8bb93a3
90 changed files with 2201 additions and 2830 deletions
47
src/bower_components/emby-apiclient/apiclient.js
vendored
47
src/bower_components/emby-apiclient/apiclient.js
vendored
|
@ -1,4 +1,4 @@
|
|||
define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeOnLan) {
|
||||
define(["events", "appStorage"], function(events, appStorage) {
|
||||
"use strict";
|
||||
|
||||
function redetectBitrate(instance) {
|
||||
|
@ -201,36 +201,6 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO
|
|||
ratio && (options.minScale && (ratio = Math.max(options.minScale, ratio)), options.width && (options.width = Math.round(options.width * ratio)), options.height && (options.height = Math.round(options.height * ratio)), options.maxWidth && (options.maxWidth = Math.round(options.maxWidth * ratio)), options.maxHeight && (options.maxHeight = Math.round(options.maxHeight * ratio))), options.quality = options.quality || instance.getDefaultImageQuality(options.type), instance.normalizeImageOptions && instance.normalizeImageOptions(options)
|
||||
}
|
||||
|
||||
function getCachedWakeOnLanInfo(instance) {
|
||||
var serverId = instance.serverId(),
|
||||
json = appStorage.getItem("server-" + serverId + "-wakeonlaninfo");
|
||||
return json ? JSON.parse(json) : []
|
||||
}
|
||||
|
||||
function refreshWakeOnLanInfoIfNeeded(instance) {
|
||||
wakeOnLan.isSupported() && instance.accessToken() && !1 !== instance.enableAutomaticBitrateDetection && (console.log("refreshWakeOnLanInfoIfNeeded"), setTimeout(refreshWakeOnLanInfo.bind(instance), 1e4))
|
||||
}
|
||||
|
||||
function refreshWakeOnLanInfo() {
|
||||
var instance = this;
|
||||
console.log("refreshWakeOnLanInfo"), instance.getWakeOnLanInfo().then(function(info) {
|
||||
var serverId = instance.serverId();
|
||||
return appStorage.setItem("server-" + serverId + "-wakeonlaninfo", JSON.stringify(info)), info
|
||||
}, function(err) {
|
||||
return []
|
||||
})
|
||||
}
|
||||
|
||||
function sendNextWakeOnLan(infos, index, resolve) {
|
||||
if (index >= infos.length) return void resolve();
|
||||
var info = infos[index];
|
||||
console.log("sending wakeonlan to " + info.MacAddress), wakeOnLan.send(info).then(function(result) {
|
||||
sendNextWakeOnLan(infos, index + 1, resolve)
|
||||
}, function() {
|
||||
sendNextWakeOnLan(infos, index + 1, resolve)
|
||||
})
|
||||
}
|
||||
|
||||
function compareVersions(a, b) {
|
||||
a = a.split("."), b = b.split(".");
|
||||
for (var i = 0, length = Math.max(a.length, b.length); i < length; i++) {
|
||||
|
@ -266,7 +236,7 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO
|
|||
}
|
||||
return this._serverAddress
|
||||
}, ApiClient.prototype.onNetworkChange = function() {
|
||||
this.lastDetectedBitrate = 0, this.lastDetectedBitrateTime = 0, setSavedEndpointInfo(this, null), redetectBitrate(this), refreshWakeOnLanInfoIfNeeded(this)
|
||||
this.lastDetectedBitrate = 0, this.lastDetectedBitrateTime = 0, setSavedEndpointInfo(this, null), redetectBitrate(this)
|
||||
}, ApiClient.prototype.getUrl = function(name, params, serverAddress) {
|
||||
if (!name) throw new Error("Url name cannot be empty");
|
||||
var url = serverAddress || this._serverAddress;
|
||||
|
@ -301,7 +271,7 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO
|
|||
}
|
||||
return this.fetchWithFailover(request, !0)
|
||||
}, ApiClient.prototype.setAuthenticationInfo = function(accessKey, userId) {
|
||||
this._currentUser = null, this._serverInfo.AccessToken = accessKey, this._serverInfo.UserId = userId, redetectBitrate(this), refreshWakeOnLanInfoIfNeeded(this)
|
||||
this._currentUser = null, this._serverInfo.AccessToken = accessKey, this._serverInfo.UserId = userId, redetectBitrate(this)
|
||||
}, ApiClient.prototype.serverInfo = function(info) {
|
||||
return info && (this._serverInfo = info), this._serverInfo
|
||||
}, ApiClient.prototype.getCurrentUserId = function() {
|
||||
|
@ -360,7 +330,7 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO
|
|||
contentType: "application/json"
|
||||
}).then(function(result) {
|
||||
var afterOnAuthenticated = function() {
|
||||
redetectBitrate(instance), refreshWakeOnLanInfoIfNeeded(instance), resolve(result)
|
||||
redetectBitrate(instance), resolve(result)
|
||||
};
|
||||
instance.onAuthenticated ? instance.onAuthenticated(instance, result).then(afterOnAuthenticated) : afterOnAuthenticated()
|
||||
}, reject)
|
||||
|
@ -1579,19 +1549,10 @@ define(["events", "appStorage", "wakeOnLan"], function(events, appStorage, wakeO
|
|||
return this.getJSON(this.getUrl("System/Endpoint")).then(function(endPointInfo) {
|
||||
return setSavedEndpointInfo(instance, endPointInfo), endPointInfo
|
||||
})
|
||||
}, ApiClient.prototype.getWakeOnLanInfo = function() {
|
||||
return this.getJSON(this.getUrl("System/WakeOnLanInfo"))
|
||||
}, ApiClient.prototype.getLatestItems = function(options) {
|
||||
return options = options || {}, this.getJSON(this.getUrl("Users/" + this.getCurrentUserId() + "/Items/Latest", options))
|
||||
}, ApiClient.prototype.getFilters = function(options) {
|
||||
return this.getJSON(this.getUrl("Items/Filters2", options))
|
||||
}, ApiClient.prototype.supportsWakeOnLan = function() {
|
||||
return !!wakeOnLan.isSupported() && getCachedWakeOnLanInfo(this).length > 0
|
||||
}, ApiClient.prototype.wakeOnLan = function() {
|
||||
var infos = getCachedWakeOnLanInfo(this);
|
||||
return new Promise(function(resolve, reject) {
|
||||
sendNextWakeOnLan(infos, 0, resolve)
|
||||
})
|
||||
}, ApiClient.prototype.setSystemInfo = function(info) {
|
||||
this._serverVersion = info.Version
|
||||
}, ApiClient.prototype.serverVersion = function() {
|
||||
|
|
|
@ -24,6 +24,6 @@ define(["events", "appStorage"], function(events, appStorage) {
|
|||
var existing = list.filter(function(s) {
|
||||
return s.Id === server.Id
|
||||
})[0];
|
||||
return existing ? (existing.DateLastAccessed = Math.max(existing.DateLastAccessed || 0, server.DateLastAccessed || 0), existing.UserLinkType = server.UserLinkType, server.AccessToken && (existing.AccessToken = server.AccessToken, existing.UserId = server.UserId), server.ExchangeToken && (existing.ExchangeToken = server.ExchangeToken), server.RemoteAddress && (existing.RemoteAddress = server.RemoteAddress), server.ManualAddress && (existing.ManualAddress = server.ManualAddress), server.LocalAddress && (existing.LocalAddress = server.LocalAddress), server.Name && (existing.Name = server.Name), server.WakeOnLanInfos && server.WakeOnLanInfos.length && (existing.WakeOnLanInfos = server.WakeOnLanInfos), null != server.LastConnectionMode && (existing.LastConnectionMode = server.LastConnectionMode), server.ConnectServerId && (existing.ConnectServerId = server.ConnectServerId), existing) : (list.push(server), server)
|
||||
return existing ? (existing.DateLastAccessed = Math.max(existing.DateLastAccessed || 0, server.DateLastAccessed || 0), existing.UserLinkType = server.UserLinkType, server.AccessToken && (existing.AccessToken = server.AccessToken, existing.UserId = server.UserId), server.ExchangeToken && (existing.ExchangeToken = server.ExchangeToken), server.RemoteAddress && (existing.RemoteAddress = server.RemoteAddress), server.ManualAddress && (existing.ManualAddress = server.ManualAddress), server.LocalAddress && (existing.LocalAddress = server.LocalAddress), server.Name && (existing.Name = server.Name), null != server.LastConnectionMode && (existing.LastConnectionMode = server.LastConnectionMode), server.ConnectServerId && (existing.ConnectServerId = server.ConnectServerId), existing) : (list.push(server), server)
|
||||
}, Credentials
|
||||
});
|
|
@ -806,6 +806,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
}
|
||||
|
||||
var cssClass = options.centerText ? "cardText cardTextCentered" : "cardText";
|
||||
var serverId = item.ServerId || options.serverId;
|
||||
|
||||
var lines = [];
|
||||
var parentTitleUnderneath = item.Type === 'MusicAlbum' || item.Type === 'Audio' || item.Type === 'MusicVideo';
|
||||
|
@ -819,7 +820,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
if (item.SeriesId) {
|
||||
lines.push(getTextActionButton({
|
||||
Id: item.SeriesId,
|
||||
ServerId: item.ServerId,
|
||||
ServerId: serverId,
|
||||
Name: item.SeriesName,
|
||||
Type: 'Series',
|
||||
IsFolder: true
|
||||
|
@ -859,8 +860,15 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
var name = options.showTitle === 'auto' && !item.IsFolder && item.MediaType === 'Photo' ? '' : itemHelper.getDisplayName(item, {
|
||||
includeParentInfo: options.includeParentInfoInTitle
|
||||
});
|
||||
|
||||
lines.push(name);
|
||||
|
||||
lines.push(getTextActionButton({
|
||||
Id: item.Id,
|
||||
ServerId: serverId,
|
||||
Name: name,
|
||||
Type: item.Type,
|
||||
CollectionType: item.CollectionType,
|
||||
IsFolder: item.IsFolder
|
||||
}));
|
||||
}
|
||||
|
||||
if (showOtherText) {
|
||||
|
@ -869,7 +877,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
if (isOuterFooter && item.AlbumArtists && item.AlbumArtists.length) {
|
||||
item.AlbumArtists[0].Type = 'MusicArtist';
|
||||
item.AlbumArtists[0].IsFolder = true;
|
||||
lines.push(getTextActionButton(item.AlbumArtists[0], null, item.ServerId));
|
||||
lines.push(getTextActionButton(item.AlbumArtists[0], null, serverId));
|
||||
} else {
|
||||
lines.push(isUsingLiveTvNaming(item) ? item.Name : (item.SeriesName || item.Series || item.Album || item.AlbumArtist || item.GameSystem || ""));
|
||||
}
|
||||
|
@ -960,7 +968,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
lines.push(getTextActionButton({
|
||||
|
||||
Id: item.ChannelId,
|
||||
ServerId: item.ServerId,
|
||||
ServerId: serverId,
|
||||
Name: item.ChannelName,
|
||||
Type: 'TvChannel',
|
||||
MediaType: item.MediaType,
|
||||
|
|
|
@ -145,10 +145,10 @@
|
|||
loadRecentlyAdded(elem, apiClient, user, userViews);
|
||||
}
|
||||
else if (section === 'librarytiles' || section === 'smalllibrarytiles' || section === 'smalllibrarytiles-automobile' || section === 'librarytiles-automobile') {
|
||||
return loadLibraryTiles(elem, apiClient, user, userSettings, 'smallBackdrop', userViews, allSections);
|
||||
loadLibraryTiles(elem, apiClient, user, userSettings, 'smallBackdrop', userViews, allSections);
|
||||
}
|
||||
else if (section === 'librarybuttons') {
|
||||
return loadlibraryButtons(elem, apiClient, user, userSettings, userViews, allSections);
|
||||
loadlibraryButtons(elem, apiClient, user, userSettings, userViews, allSections);
|
||||
}
|
||||
else if (section === 'resume') {
|
||||
loadResumeVideo(elem, apiClient, userId);
|
||||
|
@ -273,35 +273,12 @@
|
|||
}
|
||||
|
||||
function loadlibraryButtons(elem, apiClient, user, userSettings, userViews) {
|
||||
elem.classList.remove('verticalSection');
|
||||
var html = getLibraryButtonsHtml(userViews);
|
||||
|
||||
return Promise.all([getAppInfo(apiClient), getDownloadsSectionHtml(apiClient, user, userSettings)]).then(function (responses) {
|
||||
|
||||
var infoHtml = responses[0];
|
||||
var downloadsHtml = responses[1];
|
||||
|
||||
elem.classList.remove('verticalSection');
|
||||
|
||||
var html = getLibraryButtonsHtml(userViews);
|
||||
|
||||
elem.innerHTML = html + downloadsHtml + infoHtml;
|
||||
|
||||
bindHomeScreenSettingsIcon(elem, apiClient, user.Id, userSettings);
|
||||
|
||||
if (infoHtml) {
|
||||
bindAppInfoEvents(elem);
|
||||
}
|
||||
imageLoader.lazyChildren(elem);
|
||||
});
|
||||
}
|
||||
|
||||
function bindAppInfoEvents(elem) {
|
||||
|
||||
elem.querySelector('.appInfoSection').addEventListener('click', function (e) {
|
||||
|
||||
if (dom.parentWithClass(e.target, 'card')) {
|
||||
registrationServices.showPremiereInfo();
|
||||
}
|
||||
});
|
||||
elem.innerHTML = html;
|
||||
bindHomeScreenSettingsIcon(elem, apiClient, user.Id, userSettings);
|
||||
imageLoader.lazyChildren(elem);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -312,106 +289,6 @@
|
|||
return Math.floor(Math.random() * (max - min + 1)) + min;
|
||||
}
|
||||
|
||||
function getAppInfo(apiClient) {
|
||||
|
||||
var frequency = 172800000;
|
||||
|
||||
var cacheKey = 'lastappinfopresent5';
|
||||
var lastDatePresented = parseInt(appSettings.get(cacheKey) || '0');
|
||||
|
||||
// Don't show the first time, right after installation
|
||||
if (!lastDatePresented) {
|
||||
appSettings.set(cacheKey, new Date().getTime());
|
||||
return Promise.resolve('');
|
||||
}
|
||||
|
||||
if ((new Date().getTime() - lastDatePresented) < frequency) {
|
||||
return Promise.resolve('');
|
||||
}
|
||||
|
||||
return registrationServices.validateFeature('dvr', {
|
||||
|
||||
showDialog: false,
|
||||
viewOnly: true
|
||||
|
||||
}).then(function () {
|
||||
|
||||
appSettings.set(cacheKey, new Date().getTime());
|
||||
return '';
|
||||
|
||||
}, function () {
|
||||
|
||||
appSettings.set(cacheKey, new Date().getTime());
|
||||
|
||||
var infos = [getPremiereInfo];
|
||||
|
||||
if (appHost.supports('otherapppromotions')) {
|
||||
infos.push(getTheaterInfo);
|
||||
}
|
||||
|
||||
return infos[getRandomInt(0, infos.length - 1)]();
|
||||
});
|
||||
}
|
||||
|
||||
function getCard(img, shape) {
|
||||
|
||||
shape = shape || 'backdropCard';
|
||||
var html = '<div class="card scalableCard ' + shape + ' ' + shape + '-scalable"><div class="cardBox"><div class="cardScalable"><div class="cardPadder cardPadder-backdrop"></div>';
|
||||
|
||||
html += '<div class="cardContent">';
|
||||
|
||||
html += '<div class="cardImage lazy" data-src="' + img + '"></div>';
|
||||
|
||||
html += '</div>';
|
||||
|
||||
html += '</div></div></div>';
|
||||
|
||||
return html;
|
||||
}
|
||||
|
||||
function getTheaterInfo() {
|
||||
|
||||
var html = '';
|
||||
html += '<div class="verticalSection appInfoSection">';
|
||||
html += '<div class="sectionTitleContainer sectionTitleContainer-cards">';
|
||||
html += '<h2 class="sectionTitle sectionTitle-cards padded-left">Discover Jellyfin Theater</h2>';
|
||||
html += '<button is="paper-icon-button-light" class="sectionTitleButton" onclick="this.parentNode.parentNode.remove();" class="autoSize"><i class="md-icon">close</i></button>';
|
||||
html += '</div>';
|
||||
|
||||
var nameText = 'Jellyfin Theater';
|
||||
html += '<div class="padded-left padded-right">';
|
||||
html += '<p class="sectionTitle-cards">A beautiful app for your TV and large screen tablet. ' + nameText + ' runs on Windows, Xbox One, Raspberry Pi, Samsung Smart TVs, Sony PS4, Web Browsers, and more.</p>';
|
||||
html += '<div class="itemsContainer vertical-wrap" is="emby-itemscontainer">';
|
||||
html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater1.png');
|
||||
html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater2.png');
|
||||
html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater3.png');
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
return html;
|
||||
}
|
||||
|
||||
function getPremiereInfo() {
|
||||
|
||||
var html = '';
|
||||
html += '<div class="verticalSection appInfoSection">';
|
||||
html += '<div class="sectionTitleContainer sectionTitleContainer-cards">';
|
||||
html += '<h2 class="sectionTitle sectionTitle-cards padded-left">Discover Emby Premiere</h2>';
|
||||
html += '<button is="paper-icon-button-light" class="sectionTitleButton" onclick="this.parentNode.parentNode.remove();" class="autoSize"><i class="md-icon">close</i></button>';
|
||||
html += '</div>';
|
||||
|
||||
html += '<div class="padded-left padded-right">';
|
||||
html += '<p class="sectionTitle-cards">Enjoy Emby DVR, get free access to Emby apps, and more.</p>';
|
||||
html += '<div class="itemsContainer vertical-wrap" is="emby-itemscontainer">';
|
||||
html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater1.png');
|
||||
html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater2.png');
|
||||
html += getCard('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/apps/theater3.png');
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
return html;
|
||||
}
|
||||
|
||||
function getFetchLatestItemsFn(serverId, parentId, collectionType) {
|
||||
|
||||
return function () {
|
||||
|
@ -588,72 +465,6 @@
|
|||
});
|
||||
}
|
||||
|
||||
function getDownloadsSectionHtml(apiClient, user, userSettings) {
|
||||
|
||||
if (!appHost.supports('sync') || !user.Policy.EnableContentDownloading) {
|
||||
return Promise.resolve('');
|
||||
}
|
||||
|
||||
var promise = apiClient.getLatestOfflineItems ? apiClient.getLatestOfflineItems({
|
||||
|
||||
Limit: 20,
|
||||
Filters: 'IsNotFolder'
|
||||
|
||||
}) : Promise.resolve([]);
|
||||
|
||||
return promise.then(function (items) {
|
||||
|
||||
var html = '';
|
||||
|
||||
html += '<div class="verticalSection">';
|
||||
|
||||
html += '<div class="sectionTitleContainer sectionTitleContainer-cards padded-left">';
|
||||
|
||||
if (!layoutManager.tv) {
|
||||
|
||||
html += '<a is="emby-linkbutton" href="' + appRouter.getRouteUrl('downloads') + '" class="more button-flat button-flat-mini sectionTitleTextButton">';
|
||||
html += '<h2 class="sectionTitle sectionTitle-cards">';
|
||||
html += globalize.translate('sharedcomponents#HeaderMyDownloads');
|
||||
html += '</h2>';
|
||||
html += '<i class="md-icon"></i>';
|
||||
html += '</a>';
|
||||
|
||||
html += '<a is="emby-linkbutton" href="' + appRouter.getRouteUrl('managedownloads') + '" class="sectionTitleIconButton"><i class="md-icon"></i></a>';
|
||||
|
||||
} else {
|
||||
html += '<h2 class="sectionTitle sectionTitle-cards">' + globalize.translate('sharedcomponents#HeaderMyDownloads') + '</h2>';
|
||||
}
|
||||
html += '</div>';
|
||||
|
||||
html += '<div is="emby-scroller" data-mousewheel="false" data-centerfocus="true" class="padded-top-focusscale padded-bottom-focusscale"><div is="emby-itemscontainer" class="scrollSlider focuscontainer-x padded-left padded-right">';
|
||||
|
||||
var cardLayout = false;
|
||||
|
||||
html += cardBuilder.getCardsHtml({
|
||||
items: items,
|
||||
preferThumb: 'auto',
|
||||
shape: 'autooverflow',
|
||||
overlayText: false,
|
||||
showTitle: true,
|
||||
showParentTitle: true,
|
||||
lazy: true,
|
||||
showDetailsMenu: true,
|
||||
overlayPlayButton: true,
|
||||
context: 'home',
|
||||
centerText: !cardLayout,
|
||||
allowBottomPadding: false,
|
||||
cardLayout: cardLayout,
|
||||
showYear: true,
|
||||
lines: 2
|
||||
});
|
||||
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
|
||||
return html;
|
||||
});
|
||||
}
|
||||
|
||||
function loadLibraryTiles(elem, apiClient, user, userSettings, shape, userViews, allSections) {
|
||||
|
||||
elem.classList.remove('verticalSection');
|
||||
|
@ -699,21 +510,9 @@
|
|||
html += '</div>';
|
||||
}
|
||||
|
||||
return Promise.all([getAppInfo(apiClient), getDownloadsSectionHtml(apiClient, user, userSettings)]).then(function (responses) {
|
||||
|
||||
var infoHtml = responses[0];
|
||||
var downloadsHtml = responses[1];
|
||||
|
||||
elem.innerHTML = html + downloadsHtml + infoHtml;
|
||||
|
||||
bindHomeScreenSettingsIcon(elem, apiClient, user.Id, userSettings);
|
||||
|
||||
if (infoHtml) {
|
||||
bindAppInfoEvents(elem);
|
||||
}
|
||||
|
||||
imageLoader.lazyChildren(elem);
|
||||
});
|
||||
elem.innerHTML = html;
|
||||
bindHomeScreenSettingsIcon(elem, apiClient, user.Id, userSettings);
|
||||
imageLoader.lazyChildren(elem);
|
||||
}
|
||||
|
||||
function getContinueWatchingFetchFn(serverId) {
|
||||
|
|
|
@ -1,732 +1,15 @@
|
|||
define(['appSettings', 'loading', 'apphost', 'iapManager', 'events', 'shell', 'globalize', 'dialogHelper', 'connectionManager', 'layoutManager', 'emby-button', 'emby-linkbutton'], function (appSettings, loading, appHost, iapManager, events, shell, globalize, dialogHelper, connectionManager, layoutManager) {
|
||||
define(['appSettings', 'loading', 'apphost', 'events', 'shell', 'globalize', 'dialogHelper', 'connectionManager', 'layoutManager', 'emby-button', 'emby-linkbutton'], function (appSettings, loading, appHost, events, shell, globalize, dialogHelper, connectionManager, layoutManager) {
|
||||
'use strict';
|
||||
|
||||
var currentDisplayingProductInfos = [];
|
||||
var currentDisplayingResolve = null;
|
||||
var currentValidatingFeature = null;
|
||||
var isCurrentDialogRejected = null;
|
||||
|
||||
function alertText(options) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
require(['alert'], function (alert) {
|
||||
alert(options).then(resolve, reject);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function showInAppPurchaseInfo(subscriptionOptions, unlockableProductInfo, dialogOptions) {
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
require(['listViewStyle', 'formDialogStyle'], function () {
|
||||
showInAppPurchaseElement(subscriptionOptions, unlockableProductInfo, dialogOptions, resolve, reject);
|
||||
|
||||
currentDisplayingResolve = resolve;
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function showPeriodicMessage(feature, settingsKey) {
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
require(['listViewStyle', 'emby-button', 'formDialogStyle'], function () {
|
||||
|
||||
var dlg = dialogHelper.createDialog({
|
||||
size: layoutManager.tv ? 'fullscreen' : 'fullscreen-border',
|
||||
removeOnClose: true,
|
||||
scrollY: false
|
||||
});
|
||||
|
||||
dlg.classList.add('formDialog');
|
||||
|
||||
var html = '';
|
||||
var seconds = 11;
|
||||
|
||||
html += '<div class="continueTimeText formDialogFooterItem" style="margin: 1.5em 0 .5em;">' + globalize.translate('sharedcomponents#ContinueInSecondsValue', seconds) + '</div>';
|
||||
|
||||
html += '<button is="emby-button" type="button" class="raised button-cancel block btnContinue block formDialogFooterItem hide"><span>' + globalize.translate('sharedcomponents#Continue') + '</span></button>';
|
||||
|
||||
html += '</div>';
|
||||
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
|
||||
dlg.innerHTML = html;
|
||||
|
||||
var isRejected = true;
|
||||
|
||||
var timeTextInterval = setInterval(function () {
|
||||
|
||||
seconds -= 1;
|
||||
if (seconds <= 0) {
|
||||
dlg.querySelector('.continueTimeText').classList.add('hide');
|
||||
dlg.querySelector('.btnContinue').classList.remove('hide');
|
||||
} else {
|
||||
dlg.querySelector('.continueTimeText').innerHTML = globalize.translate('sharedcomponents#ContinueInSecondsValue', seconds);
|
||||
}
|
||||
|
||||
}, 1000);
|
||||
|
||||
var i, length;
|
||||
var btnPurchases = dlg.querySelectorAll('.buttonPremiereInfo');
|
||||
for (i = 0, length = btnPurchases.length; i < length; i++) {
|
||||
btnPurchases[i].addEventListener('click', showExternalPremiereInfo);
|
||||
}
|
||||
|
||||
if (layoutManager.tv) {
|
||||
centerFocus(dlg.querySelector('.formDialogContent'), false, true);
|
||||
}
|
||||
|
||||
// Has to be assigned a z-index after the call to .open()
|
||||
dlg.addEventListener('close', function (e) {
|
||||
|
||||
clearInterval(timeTextInterval);
|
||||
|
||||
if (layoutManager.tv) {
|
||||
centerFocus(dlg.querySelector('.formDialogContent'), false, false);
|
||||
}
|
||||
|
||||
if (isRejected) {
|
||||
reject();
|
||||
} else {
|
||||
appSettings.set(settingsKey, new Date().getTime());
|
||||
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
|
||||
dlg.querySelector('.btnContinue').addEventListener('click', function () {
|
||||
isRejected = false;
|
||||
dialogHelper.close(dlg);
|
||||
});
|
||||
|
||||
dlg.querySelector('.btnGetPremiere').addEventListener('click', showPremiereInfo);
|
||||
|
||||
dialogHelper.open(dlg);
|
||||
|
||||
var onCancelClick = function () {
|
||||
dialogHelper.close(dlg);
|
||||
};
|
||||
var elems = dlg.querySelectorAll('.btnCancelSupporterInfo');
|
||||
for (i = 0, length = elems.length; i < length; i++) {
|
||||
elems[i].addEventListener('click', onCancelClick);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function showPeriodicMessageIfNeeded(feature) {
|
||||
|
||||
if (feature !== 'playback') {
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
var intervalMs = iapManager.getPeriodicMessageIntervalMs(feature);
|
||||
if (intervalMs <= 0) {
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
var settingsKey = 'periodicmessage11-' + feature;
|
||||
|
||||
var lastMessage = parseInt(appSettings.get(settingsKey) || '0');
|
||||
|
||||
if (!lastMessage) {
|
||||
|
||||
// Don't show on the very first playback attempt
|
||||
appSettings.set(settingsKey, new Date().getTime());
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
if ((new Date().getTime() - lastMessage) > intervalMs) {
|
||||
|
||||
var apiClient = connectionManager.currentApiClient();
|
||||
if (apiClient.serverId() === '6da60dd6edfc4508bca2c434d4400816') {
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
var registrationOptions = {
|
||||
viewOnly: true
|
||||
};
|
||||
|
||||
// Get supporter status
|
||||
return connectionManager.getRegistrationInfo(iapManager.getAdminFeatureName(feature), apiClient, registrationOptions).catch(function (errorResult) {
|
||||
|
||||
if (errorResult === 'overlimit') {
|
||||
appSettings.set(settingsKey, new Date().getTime());
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
return showPeriodicMessage(feature, settingsKey);
|
||||
});
|
||||
}
|
||||
|
||||
function validateFeature(feature, options) {
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
function validateFeature(feature, options) {
|
||||
|
||||
options = options || {};
|
||||
|
||||
console.log('validateFeature: ' + feature);
|
||||
|
||||
return iapManager.isUnlockedByDefault(feature, options).then(function () {
|
||||
|
||||
return showPeriodicMessageIfNeeded(feature);
|
||||
|
||||
}, function () {
|
||||
|
||||
var unlockableFeatureCacheKey = 'featurepurchased-' + feature;
|
||||
if (appSettings.get(unlockableFeatureCacheKey) === '1') {
|
||||
return showPeriodicMessageIfNeeded(feature);
|
||||
}
|
||||
|
||||
var unlockableProduct = iapManager.getProductInfo(feature);
|
||||
if (unlockableProduct) {
|
||||
|
||||
var unlockableCacheKey = 'productpurchased-' + unlockableProduct.id;
|
||||
if (unlockableProduct.owned) {
|
||||
|
||||
// Cache this to eliminate the store as a possible point of failure in the future
|
||||
appSettings.set(unlockableFeatureCacheKey, '1');
|
||||
appSettings.set(unlockableCacheKey, '1');
|
||||
return showPeriodicMessageIfNeeded(feature);
|
||||
}
|
||||
|
||||
if (appSettings.get(unlockableCacheKey) === '1') {
|
||||
return showPeriodicMessageIfNeeded(feature);
|
||||
}
|
||||
}
|
||||
|
||||
var unlockableProductInfo = unlockableProduct ? {
|
||||
enableAppUnlock: true,
|
||||
id: unlockableProduct.id,
|
||||
price: unlockableProduct.price,
|
||||
feature: feature
|
||||
|
||||
} : null;
|
||||
|
||||
return iapManager.getSubscriptionOptions().then(function (subscriptionOptions) {
|
||||
|
||||
if (subscriptionOptions.filter(function (p) {
|
||||
return p.owned;
|
||||
}).length > 0) {
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
var registrationOptions = {
|
||||
viewOnly: options.viewOnly
|
||||
};
|
||||
|
||||
// Get supporter status
|
||||
return connectionManager.getRegistrationInfo(iapManager.getAdminFeatureName(feature), connectionManager.currentApiClient(), registrationOptions).catch(function (errorResult) {
|
||||
|
||||
if (options.showDialog === false) {
|
||||
return Promise.reject();
|
||||
}
|
||||
|
||||
var alertPromise;
|
||||
|
||||
if (errorResult === 'overlimit') {
|
||||
alertPromise = showOverLimitAlert();
|
||||
}
|
||||
|
||||
if (!alertPromise) {
|
||||
alertPromise = Promise.resolve();
|
||||
}
|
||||
|
||||
return alertPromise.then(function () {
|
||||
|
||||
var dialogOptions = {
|
||||
title: globalize.translate('sharedcomponents#HeaderUnlockFeature'),
|
||||
feature: feature
|
||||
};
|
||||
|
||||
currentValidatingFeature = feature;
|
||||
|
||||
return showInAppPurchaseInfo(subscriptionOptions, unlockableProductInfo, dialogOptions);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function showOverLimitAlert() {
|
||||
|
||||
return alertText('Your Jellyfin Premiere device limit has been exceeded. Please check with the owner of your Jellyfin Server and have them contact Emby support at apps@emby.media if necessary.').catch(function () {
|
||||
return Promise.resolve();
|
||||
});
|
||||
}
|
||||
|
||||
function cancelInAppPurchase() {
|
||||
|
||||
var elem = document.querySelector('.inAppPurchaseOverlay');
|
||||
if (elem) {
|
||||
dialogHelper.close(elem);
|
||||
}
|
||||
}
|
||||
|
||||
function clearCurrentDisplayingInfo() {
|
||||
currentDisplayingProductInfos = [];
|
||||
currentDisplayingResolve = null;
|
||||
currentValidatingFeature = null;
|
||||
isCurrentDialogRejected = null;
|
||||
}
|
||||
|
||||
function showExternalPremiereInfo() {
|
||||
shell.openUrl(iapManager.getPremiumInfoUrl());
|
||||
}
|
||||
|
||||
function centerFocus(elem, horiz, on) {
|
||||
require(['scrollHelper'], function (scrollHelper) {
|
||||
var fn = on ? 'on' : 'off';
|
||||
scrollHelper.centerFocus[fn](elem, horiz);
|
||||
});
|
||||
}
|
||||
|
||||
function getPurchaseTermHtml(term) {
|
||||
|
||||
return '<li>' + term + '</li>';
|
||||
}
|
||||
|
||||
function getTermsOfPurchaseHtml() {
|
||||
|
||||
var html = '';
|
||||
|
||||
var termsOfPurchase = iapManager.getTermsOfPurchase ? iapManager.getTermsOfPurchase() : [];
|
||||
|
||||
if (!termsOfPurchase.length) {
|
||||
|
||||
return html;
|
||||
}
|
||||
|
||||
html += '<h1>' + globalize.translate('sharedcomponents#HeaderTermsOfPurchase') + '</h1>';
|
||||
|
||||
termsOfPurchase.push('<a is="emby-linkbutton" class="button-link" href="https://github.com/jellyfin/jellyfin" target="_blank">' + globalize.translate('sharedcomponents#PrivacyPolicy') + '</a>');
|
||||
termsOfPurchase.push('<a is="emby-linkbutton" class="button-link" href="https://github.com/jellyfin/jellyfin" target="_blank">' + globalize.translate('sharedcomponents#TermsOfUse') + '</a>');
|
||||
|
||||
html += '<ul>';
|
||||
html += termsOfPurchase.map(getPurchaseTermHtml).join('');
|
||||
html += '</ul>';
|
||||
|
||||
return html;
|
||||
}
|
||||
|
||||
function showInAppPurchaseElement(subscriptionOptions, unlockableProductInfo, dialogOptions, resolve, reject) {
|
||||
|
||||
cancelInAppPurchase();
|
||||
|
||||
// clone
|
||||
currentDisplayingProductInfos = subscriptionOptions.slice(0);
|
||||
|
||||
if (unlockableProductInfo) {
|
||||
currentDisplayingProductInfos.push(unlockableProductInfo);
|
||||
}
|
||||
|
||||
var dlg = dialogHelper.createDialog({
|
||||
size: layoutManager.tv ? 'fullscreen' : 'fullscreen-border',
|
||||
removeOnClose: true,
|
||||
scrollY: false
|
||||
});
|
||||
|
||||
dlg.classList.add('formDialog');
|
||||
|
||||
var html = '';
|
||||
html += '<div class="formDialogHeader">';
|
||||
html += '<button is="paper-icon-button-light" class="btnCloseDialog autoSize" tabindex="-1"><i class="md-icon"></i></button>';
|
||||
html += '<h3 class="formDialogHeaderTitle">';
|
||||
html += dialogOptions.title || '';
|
||||
html += '</h3>';
|
||||
html += '</div>';
|
||||
|
||||
html += '<div class="formDialogContent smoothScrollY">';
|
||||
html += '<div class="dialogContentInner dialog-content-centered">';
|
||||
html += '<form style="margin:auto;">';
|
||||
|
||||
html += '<p style="margin-top:1.5em;">';
|
||||
|
||||
if (unlockableProductInfo) {
|
||||
html += globalize.translate('sharedcomponents#MessageUnlockAppWithPurchaseOrSupporter');
|
||||
}
|
||||
else {
|
||||
html += globalize.translate('sharedcomponents#MessageUnlockAppWithSupporter');
|
||||
}
|
||||
html += '</p>';
|
||||
|
||||
html += '<p style="margin:1.5em 0 2em;">';
|
||||
html += globalize.translate('sharedcomponents#MessageToValidateSupporter');
|
||||
html += '</p>';
|
||||
|
||||
var hasProduct = false;
|
||||
var i, length;
|
||||
|
||||
for (i = 0, length = subscriptionOptions.length; i < length; i++) {
|
||||
|
||||
hasProduct = true;
|
||||
html += '<p>';
|
||||
html += '<button is="emby-button" type="button" class="raised button-submit block btnPurchase" data-email="' + (subscriptionOptions[i].requiresEmail !== false) + '" data-featureid="' + subscriptionOptions[i].id + '"><span>';
|
||||
html += subscriptionOptions[i].title;
|
||||
html += '</span></button>';
|
||||
html += '</p>';
|
||||
}
|
||||
|
||||
if (unlockableProductInfo) {
|
||||
|
||||
hasProduct = true;
|
||||
var unlockText = globalize.translate('sharedcomponents#ButtonUnlockWithPurchase');
|
||||
if (unlockableProductInfo.price) {
|
||||
unlockText = globalize.translate('sharedcomponents#ButtonUnlockPrice', unlockableProductInfo.price);
|
||||
}
|
||||
html += '<p>';
|
||||
html += '<button is="emby-button" type="button" class="raised secondary block btnPurchase" data-featureid="' + unlockableProductInfo.id + '"><span>' + unlockText + '</span></button>';
|
||||
html += '</p>';
|
||||
}
|
||||
|
||||
html += '<p>';
|
||||
html += '<button is="emby-button" type="button" class="raised button-cancel block btnRestorePurchase"><span>' + iapManager.getRestoreButtonText() + '</span></button>';
|
||||
html += '</p>';
|
||||
|
||||
if (subscriptionOptions.length) {
|
||||
html += '<h1 style="margin-top:1.5em;">' + globalize.translate('sharedcomponents#HeaderBenefitsJellyfinPremiere') + '</h1>';
|
||||
|
||||
html += '<div class="paperList" style="margin-bottom:1em;">';
|
||||
html += getSubscriptionBenefits().map(getSubscriptionBenefitHtml).join('');
|
||||
html += '</div>';
|
||||
}
|
||||
|
||||
if (dialogOptions.feature === 'playback') {
|
||||
html += '<p>';
|
||||
html += '<button is="emby-button" type="button" class="raised button-cancel block btnPlayMinute"><span>' + globalize.translate('sharedcomponents#ButtonPlayOneMinute') + '</span></button>';
|
||||
html += '</p>';
|
||||
}
|
||||
|
||||
html += getTermsOfPurchaseHtml();
|
||||
|
||||
html += '</form>';
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
|
||||
dlg.innerHTML = html;
|
||||
document.body.appendChild(dlg);
|
||||
|
||||
var btnPurchases = dlg.querySelectorAll('.btnPurchase');
|
||||
for (i = 0, length = btnPurchases.length; i < length; i++) {
|
||||
btnPurchases[i].addEventListener('click', onPurchaseButtonClick);
|
||||
}
|
||||
|
||||
btnPurchases = dlg.querySelectorAll('.buttonPremiereInfo');
|
||||
for (i = 0, length = btnPurchases.length; i < length; i++) {
|
||||
btnPurchases[i].addEventListener('click', showExternalPremiereInfo);
|
||||
}
|
||||
|
||||
isCurrentDialogRejected = true;
|
||||
var resolveWithTimeLimit = false;
|
||||
|
||||
var btnPlayMinute = dlg.querySelector('.btnPlayMinute');
|
||||
if (btnPlayMinute) {
|
||||
btnPlayMinute.addEventListener('click', function () {
|
||||
|
||||
resolveWithTimeLimit = true;
|
||||
isCurrentDialogRejected = false;
|
||||
dialogHelper.close(dlg);
|
||||
});
|
||||
}
|
||||
|
||||
dlg.querySelector('.btnRestorePurchase').addEventListener('click', function () {
|
||||
restorePurchase(unlockableProductInfo);
|
||||
});
|
||||
|
||||
loading.hide();
|
||||
|
||||
function onCloseButtonClick() {
|
||||
|
||||
dialogHelper.close(dlg);
|
||||
}
|
||||
|
||||
var btnCloseDialogs = dlg.querySelectorAll('.btnCloseDialog');
|
||||
for (i = 0, length = btnCloseDialogs.length; i < length; i++) {
|
||||
btnCloseDialogs[i].addEventListener('click', onCloseButtonClick);
|
||||
}
|
||||
|
||||
dlg.classList.add('inAppPurchaseOverlay');
|
||||
|
||||
if (layoutManager.tv) {
|
||||
centerFocus(dlg.querySelector('.formDialogContent'), false, true);
|
||||
}
|
||||
|
||||
dialogHelper.open(dlg).then(function () {
|
||||
if (layoutManager.tv) {
|
||||
centerFocus(dlg.querySelector('.formDialogContent'), false, false);
|
||||
}
|
||||
|
||||
var rejected = isCurrentDialogRejected;
|
||||
clearCurrentDisplayingInfo();
|
||||
if (rejected) {
|
||||
reject();
|
||||
} else if (resolveWithTimeLimit) {
|
||||
resolve({
|
||||
enableTimeLimit: true
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function getSubscriptionBenefits() {
|
||||
|
||||
var list = [];
|
||||
|
||||
list.push({
|
||||
name: globalize.translate('sharedcomponents#HeaderFreeApps'),
|
||||
icon: '',
|
||||
text: globalize.translate('sharedcomponents#FreeAppsFeatureDescription')
|
||||
});
|
||||
|
||||
if (appHost.supports('sync')) {
|
||||
list.push({
|
||||
name: globalize.translate('sharedcomponents#HeaderOfflineDownloads'),
|
||||
icon: '',
|
||||
text: globalize.translate('sharedcomponents#HeaderOfflineDownloadsDescription')
|
||||
});
|
||||
}
|
||||
|
||||
list.push({
|
||||
name: globalize.translate('sharedcomponents#LiveTV'),
|
||||
icon: '',
|
||||
text: globalize.translate('sharedcomponents#LiveTvFeatureDescription')
|
||||
});
|
||||
|
||||
list.push({
|
||||
name: 'Jellyfin DVR',
|
||||
icon: '',
|
||||
text: globalize.translate('sharedcomponents#DvrFeatureDescription')
|
||||
});
|
||||
|
||||
list.push({
|
||||
name: globalize.translate('sharedcomponents#HeaderCinemaMode'),
|
||||
icon: '',
|
||||
text: globalize.translate('sharedcomponents#CinemaModeFeatureDescription')
|
||||
});
|
||||
|
||||
list.push({
|
||||
name: globalize.translate('sharedcomponents#HeaderCloudSync'),
|
||||
icon: '',
|
||||
text: globalize.translate('sharedcomponents#CloudSyncFeatureDescription')
|
||||
});
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
function getSubscriptionBenefitHtml(item) {
|
||||
|
||||
var enableLink = appHost.supports('externalpremium');
|
||||
|
||||
var html = '';
|
||||
|
||||
var cssClass = "listItem";
|
||||
|
||||
if (layoutManager.tv) {
|
||||
cssClass += ' listItem-focusscale';
|
||||
}
|
||||
|
||||
if (enableLink) {
|
||||
cssClass += ' listItem-button';
|
||||
|
||||
html += '<button type="button" class="' + cssClass + ' buttonPremiereInfo">';
|
||||
} else {
|
||||
html += '<div class="' + cssClass + '">';
|
||||
}
|
||||
|
||||
html += '<i class="listItemIcon md-icon">' + item.icon + '</i>';
|
||||
|
||||
html += '<div class="listItemBody">';
|
||||
|
||||
html += '<h3 class="listItemBodyText">';
|
||||
html += item.name;
|
||||
html += '</h3>';
|
||||
|
||||
html += '<div class="listItemBodyText secondary">';
|
||||
html += item.text;
|
||||
html += '</div>';
|
||||
|
||||
html += '</div>';
|
||||
|
||||
if (enableLink) {
|
||||
html += '</button>';
|
||||
} else {
|
||||
html += '</div>';
|
||||
}
|
||||
|
||||
return html;
|
||||
}
|
||||
|
||||
function onPurchaseButtonClick() {
|
||||
|
||||
var featureId = this.getAttribute('data-featureid');
|
||||
|
||||
if (this.getAttribute('data-email') === 'true') {
|
||||
getUserEmail().then(function (email) {
|
||||
iapManager.beginPurchase(featureId, email);
|
||||
});
|
||||
} else {
|
||||
iapManager.beginPurchase(featureId);
|
||||
}
|
||||
}
|
||||
|
||||
function restorePurchase(unlockableProductInfo) {
|
||||
|
||||
var dlg = dialogHelper.createDialog({
|
||||
size: layoutManager.tv ? 'fullscreen' : 'fullscreen-border',
|
||||
removeOnClose: true,
|
||||
scrollY: false
|
||||
});
|
||||
|
||||
dlg.classList.add('formDialog');
|
||||
|
||||
var html = '';
|
||||
html += '<div class="formDialogHeader">';
|
||||
html += '<button is="paper-icon-button-light" class="btnCloseDialog autoSize" tabindex="-1"><i class="md-icon"></i></button>';
|
||||
html += '<h3 class="formDialogHeaderTitle">';
|
||||
html += iapManager.getRestoreButtonText();
|
||||
html += '</h3>';
|
||||
html += '</div>';
|
||||
|
||||
html += '<div class="formDialogContent smoothScrollY">';
|
||||
html += '<div class="dialogContentInner dialog-content-centered">';
|
||||
|
||||
html += '<p style="margin:2em 0;">';
|
||||
html += globalize.translate('sharedcomponents#HowDidYouPay');
|
||||
html += '</p>';
|
||||
|
||||
html += '<p>';
|
||||
html += '<button is="emby-button" type="button" class="raised button-cancel block btnRestoreSub"><span>' + globalize.translate('sharedcomponents#IHaveJellyfinPremiere') + '</span></button>';
|
||||
html += '</p>';
|
||||
|
||||
if (unlockableProductInfo) {
|
||||
html += '<p>';
|
||||
html += '<button is="emby-button" type="button" class="raised button-cancel block btnRestoreUnlock"><span>' + globalize.translate('sharedcomponents#IPurchasedThisApp') + '</span></button>';
|
||||
html += '</p>';
|
||||
}
|
||||
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
|
||||
dlg.innerHTML = html;
|
||||
document.body.appendChild(dlg);
|
||||
|
||||
loading.hide();
|
||||
|
||||
if (layoutManager.tv) {
|
||||
centerFocus(dlg.querySelector('.formDialogContent'), false, true);
|
||||
}
|
||||
|
||||
dlg.querySelector('.btnCloseDialog').addEventListener('click', function () {
|
||||
|
||||
dialogHelper.close(dlg);
|
||||
});
|
||||
|
||||
dlg.querySelector('.btnRestoreSub').addEventListener('click', function () {
|
||||
|
||||
dialogHelper.close(dlg);
|
||||
alertText({
|
||||
text: globalize.translate('sharedcomponents#MessageToValidateSupporter'),
|
||||
title: 'Jellyfin Premiere'
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
var btnRestoreUnlock = dlg.querySelector('.btnRestoreUnlock');
|
||||
if (btnRestoreUnlock) {
|
||||
btnRestoreUnlock.addEventListener('click', function () {
|
||||
|
||||
dialogHelper.close(dlg);
|
||||
iapManager.restorePurchase();
|
||||
});
|
||||
}
|
||||
|
||||
dialogHelper.open(dlg).then(function () {
|
||||
|
||||
if (layoutManager.tv) {
|
||||
centerFocus(dlg.querySelector('.formDialogContent'), false, false);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function getUserEmail() {
|
||||
|
||||
if (connectionManager.isLoggedIntoConnect()) {
|
||||
|
||||
var connectUser = connectionManager.connectUser();
|
||||
|
||||
if (connectUser && connectUser.Email) {
|
||||
return Promise.resolve(connectUser.Email);
|
||||
}
|
||||
}
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
require(['prompt'], function (prompt) {
|
||||
|
||||
prompt({
|
||||
|
||||
label: globalize.translate('sharedcomponents#LabelEmailAddress')
|
||||
|
||||
}).then(resolve, reject);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function onProductUpdated(e, product) {
|
||||
|
||||
if (product.owned) {
|
||||
|
||||
var resolve = currentDisplayingResolve;
|
||||
|
||||
if (resolve && currentDisplayingProductInfos.filter(function (p) {
|
||||
|
||||
return product.id === p.id;
|
||||
|
||||
}).length) {
|
||||
|
||||
isCurrentDialogRejected = false;
|
||||
cancelInAppPurchase();
|
||||
resolve();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
var feature = currentValidatingFeature;
|
||||
if (feature) {
|
||||
iapManager.isUnlockedByDefault(feature).then(function () {
|
||||
isCurrentDialogRejected = false;
|
||||
cancelInAppPurchase();
|
||||
resolve();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function showPremiereInfo() {
|
||||
|
||||
if (appHost.supports('externalpremium')) {
|
||||
showExternalPremiereInfo();
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
return iapManager.getSubscriptionOptions().then(function (subscriptionOptions) {
|
||||
|
||||
var dialogOptions = {
|
||||
title: 'Jellyfin Premiere',
|
||||
feature: 'sync'
|
||||
};
|
||||
|
||||
return showInAppPurchaseInfo(subscriptionOptions, null, dialogOptions);
|
||||
});
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
events.on(iapManager, 'productupdated', onProductUpdated);
|
||||
|
||||
return {
|
||||
|
||||
validateFeature: validateFeature,
|
||||
showPremiereInfo: showPremiereInfo
|
||||
};
|
||||
|
|
|
@ -3,9 +3,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
|
||||
var appRouter = {
|
||||
showLocalLogin: function (serverId, manualLogin) {
|
||||
|
||||
var pageName = manualLogin ? 'manuallogin' : 'login';
|
||||
|
||||
show('/startup/' + pageName + '.html?serverid=' + serverId);
|
||||
},
|
||||
showSelectServer: function () {
|
||||
|
@ -45,65 +43,45 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
};
|
||||
|
||||
function beginConnectionWizard() {
|
||||
|
||||
backdrop.clear();
|
||||
|
||||
loading.show();
|
||||
|
||||
connectionManager.connect({
|
||||
|
||||
enableAutoLogin: appSettings.enableAutoLogin()
|
||||
|
||||
}).then(function (result) {
|
||||
handleConnectionResult(result, loading);
|
||||
});
|
||||
}
|
||||
|
||||
function handleConnectionResult(result, loading) {
|
||||
|
||||
switch (result.State) {
|
||||
|
||||
case 'SignedIn':
|
||||
{
|
||||
loading.hide();
|
||||
skinManager.loadUserSkin();
|
||||
}
|
||||
loading.hide();
|
||||
skinManager.loadUserSkin();
|
||||
break;
|
||||
case 'ServerSignIn':
|
||||
{
|
||||
result.ApiClient.getPublicUsers().then(function (users) {
|
||||
|
||||
if (users.length) {
|
||||
appRouter.showLocalLogin(result.Servers[0].Id);
|
||||
} else {
|
||||
appRouter.showLocalLogin(result.Servers[0].Id, true);
|
||||
}
|
||||
});
|
||||
}
|
||||
result.ApiClient.getPublicUsers().then(function (users) {
|
||||
if (users.length) {
|
||||
appRouter.showLocalLogin(result.Servers[0].Id);
|
||||
} else {
|
||||
appRouter.showLocalLogin(result.Servers[0].Id, true);
|
||||
}
|
||||
});
|
||||
break;
|
||||
case 'ServerSelection':
|
||||
{
|
||||
appRouter.showSelectServer();
|
||||
}
|
||||
appRouter.showSelectServer();
|
||||
break;
|
||||
case 'ConnectSignIn':
|
||||
{
|
||||
appRouter.showWelcome();
|
||||
}
|
||||
appRouter.showWelcome();
|
||||
break;
|
||||
case 'ServerUpdateNeeded':
|
||||
{
|
||||
require(['alert'], function (alert) {
|
||||
alert({
|
||||
|
||||
text: globalize.translate('sharedcomponents#ServerUpdateNeeded', 'https://github.com/jellyfin/jellyfin'),
|
||||
html: globalize.translate('sharedcomponents#ServerUpdateNeeded', '<a href="https://github.com/jellyfin/jellyfin">https://github.com/jellyfin/jellyfin</a>')
|
||||
|
||||
}).then(function () {
|
||||
appRouter.showSelectServer();
|
||||
});
|
||||
require(['alert'], function (alert) {
|
||||
alert({
|
||||
text: globalize.translate('sharedcomponents#ServerUpdateNeeded', 'https://github.com/jellyfin/jellyfin'),
|
||||
html: globalize.translate('sharedcomponents#ServerUpdateNeeded', '<a href="https://github.com/jellyfin/jellyfin">https://github.com/jellyfin/jellyfin</a>')
|
||||
}).then(function () {
|
||||
appRouter.showSelectServer();
|
||||
});
|
||||
}
|
||||
});
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
@ -111,9 +89,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
}
|
||||
|
||||
function loadContentUrl(ctx, next, route, request) {
|
||||
|
||||
var url;
|
||||
|
||||
if (route.contentPath && typeof (route.contentPath) === 'function') {
|
||||
url = route.contentPath(ctx.querystring);
|
||||
} else {
|
||||
|
@ -121,10 +97,8 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
}
|
||||
|
||||
if (url.indexOf('://') === -1) {
|
||||
|
||||
// Put a slash at the beginning but make sure to avoid a double slash
|
||||
if (url.indexOf('/') !== 0) {
|
||||
|
||||
url = '/' + url;
|
||||
}
|
||||
|
||||
|
@ -136,26 +110,22 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
}
|
||||
|
||||
require(['text!' + url], function (html) {
|
||||
|
||||
loadContent(ctx, route, html, request);
|
||||
});
|
||||
}
|
||||
|
||||
function handleRoute(ctx, next, route) {
|
||||
|
||||
authenticate(ctx, route, function () {
|
||||
initRoute(ctx, next, route);
|
||||
});
|
||||
}
|
||||
|
||||
function initRoute(ctx, next, route) {
|
||||
|
||||
var onInitComplete = function (controllerFactory) {
|
||||
sendRouteToViewManager(ctx, next, route, controllerFactory);
|
||||
};
|
||||
|
||||
require(route.dependencies || [], function () {
|
||||
|
||||
if (route.controller) {
|
||||
require([route.controller], onInitComplete);
|
||||
} else {
|
||||
|
@ -173,14 +143,12 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
|
||||
var currentViewLoadRequest;
|
||||
function sendRouteToViewManager(ctx, next, route, controllerFactory) {
|
||||
|
||||
if (isDummyBackToHome && route.type === 'home') {
|
||||
isDummyBackToHome = false;
|
||||
return;
|
||||
}
|
||||
|
||||
cancelCurrentLoadRequest();
|
||||
|
||||
var isBackNav = ctx.isBack;
|
||||
|
||||
var currentRequest = {
|
||||
|
@ -201,9 +169,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
|
||||
var onNewViewNeeded = function () {
|
||||
if (typeof route.path === 'string') {
|
||||
|
||||
loadContentUrl(ctx, next, route, currentRequest);
|
||||
|
||||
} else {
|
||||
// ? TODO
|
||||
next();
|
||||
|
@ -226,7 +192,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
};
|
||||
|
||||
}).catch(function (result) {
|
||||
|
||||
if (!result || !result.cancelled) {
|
||||
onNewViewNeeded();
|
||||
}
|
||||
|
@ -236,7 +201,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
var msgTimeout;
|
||||
var forcedLogoutMsg;
|
||||
function onForcedLogoutMessageTimeout() {
|
||||
|
||||
var msg = forcedLogoutMsg;
|
||||
forcedLogoutMsg = null;
|
||||
|
||||
|
@ -248,7 +212,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
}
|
||||
|
||||
function showForcedLogoutMessage(msg) {
|
||||
|
||||
forcedLogoutMsg = msg;
|
||||
if (msgTimeout) {
|
||||
clearTimeout(msgTimeout);
|
||||
|
@ -277,14 +240,12 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
}
|
||||
|
||||
function onBeforeExit(e) {
|
||||
|
||||
if (browser.web0s) {
|
||||
page.restorePreviousState();
|
||||
}
|
||||
}
|
||||
|
||||
function normalizeImageOptions(options) {
|
||||
|
||||
var scaleFactor = browser.tv ? 0.8 : 1;
|
||||
|
||||
var setQuality;
|
||||
|
@ -331,9 +292,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
}
|
||||
|
||||
function getMaxBandwidth() {
|
||||
|
||||
if (navigator.connection) {
|
||||
|
||||
var max = navigator.connection.downlinkMax;
|
||||
if (max && max > 0 && max < Number.POSITIVE_INFINITY) {
|
||||
|
||||
|
@ -728,13 +687,6 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
}
|
||||
|
||||
function getRouteUrl(item, options) {
|
||||
|
||||
if (item === 'downloads') {
|
||||
return 'offline/offline.html';
|
||||
}
|
||||
if (item === 'managedownloads') {
|
||||
return 'offline/managedownloads.html';
|
||||
}
|
||||
if (item === 'settings') {
|
||||
return 'settings/settings.html';
|
||||
}
|
||||
|
|
|
@ -10,6 +10,12 @@ define([], function () {
|
|||
// options.path
|
||||
// options.arguments
|
||||
return Promise.reject();
|
||||
},
|
||||
enableFullscreen: function () {
|
||||
// do nothing since this is for native apps
|
||||
},
|
||||
disableFullscreen: function () {
|
||||
// do nothing since this is for native apps
|
||||
}
|
||||
};
|
||||
});
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "الغاء",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "الاربعاء",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Адмяніць",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Нови",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Книги",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Разглеждане",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Отмяна",
|
||||
"ButtonGotIt": "Добре",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Настройки на метаданните",
|
||||
"HeaderMusicQuality": "Качество на музиката",
|
||||
"HeaderMyDevice": "Моето устройство",
|
||||
"HeaderMyDownloads": "Моите изтегляния",
|
||||
"HeaderMyMedia": "Моята медия",
|
||||
"HeaderMyMediaSmall": "Моята медия (малък)",
|
||||
"HeaderNewRecording": "Нов запис",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Качество на видеото",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Помощ",
|
||||
"Hide": "Скриване",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Преглед на албума",
|
||||
"ViewArtist": "Преглед на изпълнителя",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Събуждане",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Изгледано",
|
||||
"Wednesday": "Сряда",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Tants com sigui possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Relació d'aspecte",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Nou",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Cancel·la",
|
||||
"ButtonGotIt": "Entesos",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Preferències de Metadades",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "El meu dispositiu",
|
||||
"HeaderMyDownloads": "Les meves descàrregues",
|
||||
"HeaderMyMedia": "Els meus mitjans",
|
||||
"HeaderMyMediaSmall": "Els meus mitjans (petit)",
|
||||
"HeaderNewRecording": "Nou Enregistrament",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Esperant Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "Has dit...",
|
||||
"Help": "Ajuda",
|
||||
"Hide": "Amaga",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Veure àlbum",
|
||||
"ViewArtist": "Veure artista",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Vists",
|
||||
"Wednesday": "Dimecres",
|
||||
"WifiRequiredToDownload": "Es requereix una connexió Wifi per continuar descarregant.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Tolikrát jak je možné",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Poměr stran",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Nové",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Datový tok audia není podporován",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Knihy",
|
||||
"Box": "Pouzdro",
|
||||
"BoxRear": "Zadní část pouzdra",
|
||||
"Browse": "Procházet",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Zrušit",
|
||||
"ButtonGotIt": "Mám to",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Nastavení metadat",
|
||||
"HeaderMusicQuality": "Kvalita hudby",
|
||||
"HeaderMyDevice": "Moje zařízení",
|
||||
"HeaderMyDownloads": "Moje stahování",
|
||||
"HeaderMyMedia": "Moje média",
|
||||
"HeaderMyMediaSmall": "Moje média (malé)",
|
||||
"HeaderNewRecording": "Nový záznam",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Kvalita videa",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Čekání na Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "Zmínil ses...",
|
||||
"Help": "Nápověda",
|
||||
"Hide": "Skrýt",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Zobrazit album",
|
||||
"ViewArtist": "Zobrazit úmělce",
|
||||
"VoiceInput": "Hlasový vstup",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Shlédnuto",
|
||||
"Wednesday": "Středa",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Så mange som muligt",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Billedformat",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Ny",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Annuller",
|
||||
"ButtonGotIt": "Forstået",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Indstillinger for metadata",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "Min Enhed",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "Ny optagelse",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "Du sagde...",
|
||||
"Help": "Hjælp",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Vis album",
|
||||
"ViewArtist": "Vis kunstner",
|
||||
"VoiceInput": "Taleinput",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Onsdag",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "So viele wie möglich",
|
||||
"Ascending": "Aufsteigend",
|
||||
"AspectRatio": "Seitenverhältnis",
|
||||
"AttemptingWakeServer": "Versuche Server aufwecken. Bitte warten...",
|
||||
"AttributeNew": "Neu",
|
||||
"AudioBitDepthNotSupported": "Audiobittiefe nicht unterstützt",
|
||||
"AudioBitrateNotSupported": "Audio Bitrate nicht unterstützt",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Bücher",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (Rückseite)",
|
||||
"Browse": "Blättern",
|
||||
"BurnSubtitlesHelp": "Legt fest, ob der Server die Untertitel basierend auf deren Format einbrennen soll während der Videokonvertierung. Die Vermeidung des Einbrennen von Untertiteln verbessert die Serverperformance. Wähle Auto, um Bildfomate (z.B. VOBSUB, PGS, SUB/IDX, etc.) sowie bestimmte ASS/SSA-Untertitel einbrennen zu lassen.",
|
||||
"ButtonCancel": "Abbrechen",
|
||||
"ButtonGotIt": "Verstanden",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadaten Einstellungen",
|
||||
"HeaderMusicQuality": "Musikqualität",
|
||||
"HeaderMyDevice": "Mein Gerät",
|
||||
"HeaderMyDownloads": "Meine Downloads",
|
||||
"HeaderMyMedia": "Meine Medien",
|
||||
"HeaderMyMediaSmall": "Meine Medien (Klein)",
|
||||
"HeaderNewRecording": "Neue Aufnahme",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Videoqualität",
|
||||
"HeaderVideoType": "Videotyp:",
|
||||
"HeaderWaitingForWifi": "Warte auf WLAN",
|
||||
"HeaderWakeServer": "Server aufwecken",
|
||||
"HeaderYouSaid": "Du sagtest...",
|
||||
"Help": "Hilfe",
|
||||
"Hide": "Verstecke",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Zeige Album",
|
||||
"ViewArtist": "Zeige Darsteller",
|
||||
"VoiceInput": "Spracheingabe",
|
||||
"WakeServer": "Server aufwecken",
|
||||
"WakeServerError": "Wake On LAN Pakete wurden an deinen Server geschickt, aber wir konnten deinen Jellyfin Server nicht erreichen. Deine Maschine braucht vielleicht etwas länger um aufzuwachen oder Jellyfin Server wird zur Zeit nicht ausgeführt.",
|
||||
"WakeServerSuccess": "Erfolgreich!",
|
||||
"Watched": "Gesehen",
|
||||
"Wednesday": "Mittwoch",
|
||||
"WifiRequiredToDownload": "Um den Download fortzusetzen wird eine WLAN-Verbindung benötigt.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Οσο το δυνατον περισσοτερα",
|
||||
"Ascending": "Αύξουσα",
|
||||
"AspectRatio": "Αρχικός λόγος διαστάσεων:",
|
||||
"AttemptingWakeServer": "Ενεργοποίηση server σε εξέλιξη. Παρακαλώ περιμένετε...",
|
||||
"AttributeNew": "Νέο",
|
||||
"AudioBitDepthNotSupported": "Το βάθος bitrate ήχου δεν υποστηρίζεται",
|
||||
"AudioBitrateNotSupported": "Το bitrate ήχου δεν υποστηρίζεται",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Βιβλία",
|
||||
"Box": "Κουτί",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Αναζητήστε",
|
||||
"BurnSubtitlesHelp": "Καθορίζει αν ο διακομιστής πρέπει να εγγράψει στους υπότιτλους κατά τη μετατροπή βίντεο ανάλογα με τη μορφή των υπότιτλων. Η αποφυγή της εγγραφής στους υπότιτλους θα βελτιώσει την απόδοση του διακομιστή. Επιλέξτε Αυτόματα για να εγγράψετε μορφές βασισμένες σε εικόνες (π.χ. VOBSUB, PGS, SUB / IDX κ.λπ.) καθώς και ορισμένους υπότιτλους ASS / SSA",
|
||||
"ButtonCancel": "Ακύρωση ",
|
||||
"ButtonGotIt": "Το κατάλαβα",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Ρυθμίσεις μεταδεδομένων",
|
||||
"HeaderMusicQuality": "Ποιότητα Μουσικής",
|
||||
"HeaderMyDevice": "Η Συσκευή μου",
|
||||
"HeaderMyDownloads": "Οι Λήψεις μου",
|
||||
"HeaderMyMedia": "Τα Πολυμέσα μου",
|
||||
"HeaderMyMediaSmall": "Τα Πολυμέσα μου (μικρά)",
|
||||
"HeaderNewRecording": "Νέα Εγγραφή",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Ποιότητα βίντεο",
|
||||
"HeaderVideoType": "Τύπος Βίντεο",
|
||||
"HeaderWaitingForWifi": "Αναμονή για Wifi",
|
||||
"HeaderWakeServer": "Ενεργοποίηση Server",
|
||||
"HeaderYouSaid": "Είπατε...",
|
||||
"Help": "Βοήθεια",
|
||||
"Hide": "Κρύψε",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Προβολή άλμπουμ",
|
||||
"ViewArtist": "Εμφάνιση Καλλιτέχνη",
|
||||
"VoiceInput": "Είσοδος Ήχου",
|
||||
"WakeServer": "Ενεργοποίηση server",
|
||||
"WakeServerError": "Τα πακέτα Wake On LAN στάλθηκαν στον server σας, αλλά δεν είναι δυνατή η σύνδεση με τον Jellyfin Server. Το μηχάνημά σας μπορεί να χρειαστεί λίγο περισσότερο χρόνο για να ενεργοποιηθεί, ή ο Jellyfin Server ενδέχεται να μην εκτελείται ενεργά στο μηχάνημα.",
|
||||
"WakeServerSuccess": "Επιτυχία!",
|
||||
"Watched": "Έχει γίνει παρακολούθηση",
|
||||
"Wednesday": "Τετάρτη",
|
||||
"WifiRequiredToDownload": "Απαιτείται σύνδεση Wi-Fi για να συνεχίσετε τη λήψη.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Cancel",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wi-Fi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wi-Fi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Cancel",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Cancel",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Tantos como sea posible",
|
||||
"Ascending": "Ascendente",
|
||||
"AspectRatio": "Relación de aspecto",
|
||||
"AttemptingWakeServer": "Intentando despertar el servidor. Por favor espere...",
|
||||
"AttributeNew": "Nuevo",
|
||||
"AudioBitDepthNotSupported": "Profundidad de bits de Audio no soportado",
|
||||
"AudioBitrateNotSupported": "Tasa de bits de audio no soportado",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Libros",
|
||||
"Box": "Caja",
|
||||
"BoxRear": "Reverso de caja",
|
||||
"Browse": "Navegar",
|
||||
"BurnSubtitlesHelp": "Determina si el servidor debería quemar los subtitulos al convertir el video dependiendo en el formato de los subtitulos. Evitar los subtitulos quemados mejorara el rendimiento del servidor. Elija \"Auto\" para quemar los formatos basados en imágenes (por ejemplo VOBSUB, PGS, SUB/IDX, etc.) así como ciertos subtitulos ASS/SSA",
|
||||
"ButtonCancel": "Cancelar",
|
||||
"ButtonGotIt": "Hecho",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Configuración de metadatos",
|
||||
"HeaderMusicQuality": "Calidad de Musica",
|
||||
"HeaderMyDevice": "Mi Dispositivo",
|
||||
"HeaderMyDownloads": "Mis Descargas",
|
||||
"HeaderMyMedia": "Mis Medios",
|
||||
"HeaderMyMediaSmall": "Mis medios (pequeño)",
|
||||
"HeaderNewRecording": "Nueva Grabación",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Calidad de Video",
|
||||
"HeaderVideoType": "Tipo de Video",
|
||||
"HeaderWaitingForWifi": "Esperando Wifi",
|
||||
"HeaderWakeServer": "Despertar Servidor",
|
||||
"HeaderYouSaid": "Ha Dicho...",
|
||||
"Help": "Ayuda",
|
||||
"Hide": "Ocultar",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Ver album",
|
||||
"ViewArtist": "Ver artista",
|
||||
"VoiceInput": "Entrada de Voz",
|
||||
"WakeServer": "Despertar servidor",
|
||||
"WakeServerError": "Se enviaron los paquetes Wake On LAN (Despertar por red) a su computadora servidor, pero no ha sido posible contactar a su Servidor Jellyfin. Su computadora quizás necesite un poco mas de tiempo para despertar, o tal vez la aplicación de Servidor Jellyfin no se esta ejecutando en la computadora.",
|
||||
"WakeServerSuccess": "¡Éxito!",
|
||||
"Watched": "Visto",
|
||||
"Wednesday": "Miércoles",
|
||||
"WifiRequiredToDownload": "Se necesita de una conexión Wifi para continuar descargando.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Tantos como sea posible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Relación de aspecto",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Nuevo",
|
||||
"AudioBitDepthNotSupported": "Profundidad de bits de audio no soportada",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Libros",
|
||||
"Box": "Caja",
|
||||
"BoxRear": "Caja (trasera)",
|
||||
"Browse": "Navegar",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Cancelar",
|
||||
"ButtonGotIt": "Lo tengo",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Ajustes de metadatos",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "Mi dispositivo",
|
||||
"HeaderMyDownloads": "Mis Descargas",
|
||||
"HeaderMyMedia": "Mis Contenidos",
|
||||
"HeaderMyMediaSmall": "Mis Contenidos (pequeño)",
|
||||
"HeaderNewRecording": "Nueva grabación",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Calidad de Video",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Esperando a la red Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "Dijiste...",
|
||||
"Help": "Ayuda",
|
||||
"Hide": "Esconder",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Ver album",
|
||||
"ViewArtist": "Ver artista",
|
||||
"VoiceInput": "Entrada de voz",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Visto",
|
||||
"Wednesday": "Miércoles",
|
||||
"WifiRequiredToDownload": "Una red Wifi es necesaria para continuar la descarga.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Lopeta",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Nouveau",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Annuler",
|
||||
"ButtonGotIt": "J'ai compris",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "Mes Médias",
|
||||
"HeaderMyMediaSmall": "Mes médias (petit)",
|
||||
"HeaderNewRecording": "Nouvel enregistrement",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Aide",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Mercredi",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Autant que possible",
|
||||
"Ascending": "Croissant",
|
||||
"AspectRatio": "Ratio d'aspect original",
|
||||
"AttemptingWakeServer": "Essai de réveil du serveur. Veuillez patienter...",
|
||||
"AttributeNew": "Nouveau",
|
||||
"AudioBitDepthNotSupported": "Profondeur des échantillons de l'audio non prise en charge",
|
||||
"AudioBitrateNotSupported": "Débit audio non pris en charge",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Livres",
|
||||
"Box": "Boîtier",
|
||||
"BoxRear": "Dos de boîtier",
|
||||
"Browse": "Parcourir",
|
||||
"BurnSubtitlesHelp": "Détermine si le serveur doit graver les sous-titres lors de la conversion vidéo en fonction du format des sous-titres. Éviter la gravure des sous-titres améliorera les performances du serveur. Sélectionnez Auto pour graver les formats basés sur l'image (par exemple, VOBSUB, PGS, SUB/IDX etc) ainsi que certains sous-titres ASS/SSA",
|
||||
"ButtonCancel": "Annuler",
|
||||
"ButtonGotIt": "Compris",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Paramètres des métadonnées",
|
||||
"HeaderMusicQuality": "Qualité de la musique :",
|
||||
"HeaderMyDevice": "Cet appareil",
|
||||
"HeaderMyDownloads": "Mes téléchargements",
|
||||
"HeaderMyMedia": "Mes Médias",
|
||||
"HeaderMyMediaSmall": "Mes médias (Petit)",
|
||||
"HeaderNewRecording": "Nouvel enregistrement",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Qualité vidéo",
|
||||
"HeaderVideoType": "Type de vidéo",
|
||||
"HeaderWaitingForWifi": "En attente du Wi-Fi",
|
||||
"HeaderWakeServer": "Réveiller le serveur",
|
||||
"HeaderYouSaid": "Vous avez dit...",
|
||||
"Help": "Aide",
|
||||
"Hide": "Cacher",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Voir l'album",
|
||||
"ViewArtist": "Voir l'artiste",
|
||||
"VoiceInput": "Entrée vocale",
|
||||
"WakeServer": "Réveiller le serveur",
|
||||
"WakeServerError": "Des paquets Wake-On-LAN on été envoyé à votre serveur, mais nous ne pouvons pas nous connecter à votre serveur Jellyfin. Votre machine a peut-être besoin de plus de temps pour se réveiller, ou le serveur Jellyfin n'est peut-être pas lancé sur la machine.",
|
||||
"WakeServerSuccess": "Réussi !",
|
||||
"Watched": "Lu",
|
||||
"Wednesday": "Mercredi",
|
||||
"WifiRequiredToDownload": "Une connexion Wi-Fi est nécessaire pour continuer le téléchargement.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Abbreche",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Mittwoch",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "כמה שיותר",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "חדש",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "בטל",
|
||||
"ButtonGotIt": "הבנתי",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "הגדרות מטא נתונים",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "הקלטה חדשה",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "אתה אמרת...",
|
||||
"Help": "עזרה",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "צפה באלבום",
|
||||
"ViewArtist": "צפה באמן",
|
||||
"VoiceInput": "קלט קולי",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "רביעי",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Što više je moguće",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Novo",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Odustani",
|
||||
"ButtonGotIt": "Shvaćam",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Postavke meta-podataka",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "Nova snimka",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "Rekao si...",
|
||||
"Help": "Pomoć",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Pogledaj album",
|
||||
"ViewArtist": "Pogledaj umjetnika",
|
||||
"VoiceInput": "Ulazni glas",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Srijeda",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Növekvő",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "A kiszolgáló felébresztése folyamatban. Kérlek várj...",
|
||||
"AttributeNew": "Új",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Könyvek",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Mégsem",
|
||||
"ButtonGotIt": "Értettem",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metaadat Beállítások",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "Jelenlegi eszköz",
|
||||
"HeaderMyDownloads": "Letöltések",
|
||||
"HeaderMyMedia": "Médiatáram",
|
||||
"HeaderMyMediaSmall": "Médiatáram (kicsi)",
|
||||
"HeaderNewRecording": "Új Felvétel",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Videó típusa:",
|
||||
"HeaderWaitingForWifi": "Wifi-re vár",
|
||||
"HeaderWakeServer": "Kiszolgáló felébresztés",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Segítség",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Kiszolgáló felébresztés",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Megtekintett",
|
||||
"Wednesday": "Szerda",
|
||||
"WifiRequiredToDownload": "Wifi kapcsolat szükséges a letöltés folytatásához.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Cancel",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Tutto il possibile",
|
||||
"Ascending": "Crescente",
|
||||
"AspectRatio": "Rapporto d'aspetto",
|
||||
"AttemptingWakeServer": "Tentando di svegliare il server. Per piacere aspetta...",
|
||||
"AttributeNew": "Nuovo",
|
||||
"AudioBitDepthNotSupported": "La profondità bit audio non è supportata",
|
||||
"AudioBitrateNotSupported": "Bitrate audio non supportato",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Libri",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (retro)",
|
||||
"Browse": "Esplora",
|
||||
"BurnSubtitlesHelp": "Determina se il server deve applicare i sottotitoli quando si converte i video in base al formato dei sottotitoli. Evitando di applicare i sottotitoli migliorerà le prestazioni del server. Selezionare Auto per applicare formati basati sull'immagine (ad esempio VOBSUB, PGS, SUB / IDX, ecc.) così come alcuni sottotitoli ASS / SSA",
|
||||
"ButtonCancel": "Annulla",
|
||||
"ButtonGotIt": "Ho capito",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Impostazioni Metadati",
|
||||
"HeaderMusicQuality": "Qualità Musica",
|
||||
"HeaderMyDevice": "Il Mio Dispositivo",
|
||||
"HeaderMyDownloads": "I Miei Download",
|
||||
"HeaderMyMedia": "I miei media",
|
||||
"HeaderMyMediaSmall": "I miei media (piccolo)",
|
||||
"HeaderNewRecording": "Nuova Registrazione",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Qualità Video",
|
||||
"HeaderVideoType": "Tipo di Video",
|
||||
"HeaderWaitingForWifi": "In attesa di Wifi",
|
||||
"HeaderWakeServer": "Sveglia il server",
|
||||
"HeaderYouSaid": "Hai detto...",
|
||||
"Help": "Aiuto",
|
||||
"Hide": "Nascondi",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Visualizza album",
|
||||
"ViewArtist": "Visualizza artista",
|
||||
"VoiceInput": "Comandi Vocali",
|
||||
"WakeServer": "Sveglia il server",
|
||||
"WakeServerError": "I pacchetti Wake On LAN sono stati inviati al computer server, ma non siamo in grado di connettersi al server Jellyfin. Potrebbe essere necessario un po 'più di tempo per riattivare la macchina, oppure il server Jellyfin potrebbe non essere attivo sulla macchina.",
|
||||
"WakeServerSuccess": "Successo!",
|
||||
"Watched": "Visto",
|
||||
"Wednesday": "Mercoledì",
|
||||
"WifiRequiredToDownload": "Una connessione Wifi è richiesta per continuare il download",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Мүмкіндігінше көп",
|
||||
"Ascending": "Артуы бойынша",
|
||||
"AspectRatio": "Пішімдік арақатынасы",
|
||||
"AttemptingWakeServer": "Серверді ояту әрекеті жасалуда. Күте тұрыңыз...",
|
||||
"AttributeNew": "Жаңа",
|
||||
"AudioBitDepthNotSupported": "Дыбыстың биттік тереңдігі үшін қолдау көрсетілмейді",
|
||||
"AudioBitrateNotSupported": "Дыбыс қарқыны үшін қолдау көрсетілмейді",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Кітаптар",
|
||||
"Box": "Қорап",
|
||||
"BoxRear": "Қорап арты",
|
||||
"Browse": "Шарлау",
|
||||
"BurnSubtitlesHelp": "Субтитрлер пішіміне байланысты бейнені түрлендірген кезде сервер субтитрлерді жазыуын анықтайды. Субтитрлер жазуды қашқақтау сервердің өнімділігін жақсартады. Суретке негізделген пішімдерді (мысалы, VOBSUB, PGS, SUB/IDX ж.т.б.), сондай-ақ кейбір ASS/SSA субтитрлерін жазу үшін Автоматтыны таңдаңыз",
|
||||
"ButtonCancel": "Болдырмау",
|
||||
"ButtonGotIt": "Түсінікті",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Метадеректер параметрлері",
|
||||
"HeaderMusicQuality": "Музыка сапасы",
|
||||
"HeaderMyDevice": "Менің құрылғым",
|
||||
"HeaderMyDownloads": "Менің жүктеулерім",
|
||||
"HeaderMyMedia": "Менің тасығышдеректерім",
|
||||
"HeaderMyMediaSmall": "Менің тасығышдеректерім (ықшам)",
|
||||
"HeaderNewRecording": "Жаңа жазба",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Бейне сапасы",
|
||||
"HeaderVideoType": "Бейне түрі",
|
||||
"HeaderWaitingForWifi": "WiFi үшін күтуде",
|
||||
"HeaderWakeServer": "Серверді ояту",
|
||||
"HeaderYouSaid": "Сіз айтқаныңыз...",
|
||||
"Help": "Интернеттегі анықтамаға",
|
||||
"Hide": "Жасыру",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Альбомды қарау",
|
||||
"ViewArtist": "Орындаушыны қарау",
|
||||
"VoiceInput": "Дауыстық енгізу",
|
||||
"WakeServer": "Серверді ояту",
|
||||
"WakeServerError": "Wake On LAN пакеттері сіздің серверіңізге жіберілді, бірақ сіздің Jellyfin Server үшін қосыла алмаймыз. Құрылғыңызды ояту үшін біраз уақыт қажет болуы мүмкін немесе Jellyfin Server құрылғыда белсенді жұмыс істемеуі мүмкін.",
|
||||
"WakeServerSuccess": "Сәттілік!",
|
||||
"Watched": "Қаралған",
|
||||
"Wednesday": "сәрсенбі",
|
||||
"WifiRequiredToDownload": "Жүктеп алуды жалғастыру үшін WiFi қосылымы қажет.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "신규",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "취소",
|
||||
"ButtonGotIt": "그럴게요.",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "메타데이터 설정",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "내 미디어 (작음)",
|
||||
"HeaderNewRecording": "신규 녹화",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "도움말",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "앨범 보기",
|
||||
"ViewArtist": "아티스트 보기",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "시청함",
|
||||
"Wednesday": "수요일",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Kiek tik įmanoma",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Naujas",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Atšaukti",
|
||||
"ButtonGotIt": "Supratau",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metaduomenų nustatymai",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "Naujas įrašas",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "Jūs pasakėte:",
|
||||
"Help": "Padėti",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Žiūrėti albumą",
|
||||
"ViewArtist": "Žiūrėti atlikėją",
|
||||
"VoiceInput": "Balso komandos",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Trečiadienis",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Cancel",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Så mange som mulig",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Størrelsesforholdet",
|
||||
"AttemptingWakeServer": "Prøver å vekke opp server. Vennligst vent,..",
|
||||
"AttributeNew": "Ny",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Bøker",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Avbryt",
|
||||
"ButtonGotIt": "Skjønner",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata innstilinger",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "Min enhet",
|
||||
"HeaderMyDownloads": "Mine nedlastinger",
|
||||
"HeaderMyMedia": "Min Media",
|
||||
"HeaderMyMediaSmall": "Min Media (liten)",
|
||||
"HeaderNewRecording": "Nye opptak:",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Vekk opp server",
|
||||
"HeaderYouSaid": "Du sa...",
|
||||
"Help": "Hjelp",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Vis album",
|
||||
"ViewArtist": "Vis artist",
|
||||
"VoiceInput": "Stemme input",
|
||||
"WakeServer": "Vekk opp server",
|
||||
"WakeServerError": "Wake On LAN-pakker ble sendt til servermaskinen din, men tilkobling til din Jellyfin Server mislyktes. Serveren din kan trenge litt mer tid til å våkne, eller så kjører ikke Jellyfin Server på maskinen.",
|
||||
"WakeServerSuccess": "Suksess!",
|
||||
"Watched": "Sett",
|
||||
"Wednesday": "Onsdag",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Zo veel als mogelijk",
|
||||
"Ascending": "Oplopend",
|
||||
"AspectRatio": "Beeldverhouding",
|
||||
"AttemptingWakeServer": "Proberen de server te wekken. Een moment geduld...",
|
||||
"AttributeNew": "Nieuw",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth niet ondersteund",
|
||||
"AudioBitrateNotSupported": "Audio bitrate niet ondersteund",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Boeken",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (achterkant)",
|
||||
"Browse": "Bladeren",
|
||||
"BurnSubtitlesHelp": "Bepaalt of de server ondertitels moet inbranden wanneer video's op basis van het ondertitel formaat geconverteerd moeten worden. Inbranden van ondertitels hebben een negatief effect op de server performance. Selecteer Automatisch om op afbeelding gebaseerde formaten (bijv. VOBSUB, PGS, SUB/IDX etc.) en bepaalde ASS/SSA ondertitels in te branden.",
|
||||
"ButtonCancel": "Annuleren",
|
||||
"ButtonGotIt": "Begrepen",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metagegevens instellingen",
|
||||
"HeaderMusicQuality": "Muziek Kwaliteit",
|
||||
"HeaderMyDevice": "Mijn Apparaat",
|
||||
"HeaderMyDownloads": "Mijn Downloads",
|
||||
"HeaderMyMedia": "Mijn Media",
|
||||
"HeaderMyMediaSmall": "Mijn Media (klein)",
|
||||
"HeaderNewRecording": "Nieuwe opname",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Kwaliteit",
|
||||
"HeaderVideoType": "Videotype",
|
||||
"HeaderWaitingForWifi": "Wachten op Wifi",
|
||||
"HeaderWakeServer": "Server Wekken",
|
||||
"HeaderYouSaid": "U zei...",
|
||||
"Help": "Hulp",
|
||||
"Hide": "Verbergen",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Bekijk album",
|
||||
"ViewArtist": "Bekijk artiest",
|
||||
"VoiceInput": "Spraak invoer",
|
||||
"WakeServer": "Server wekken",
|
||||
"WakeServerError": "Er zijn \"Wake On Lan\" pakketten naar de server verzonden, maar verbinding maken is mislukt. Het kan voorkomen dat de server wat meer tijd nodig heeft om op te starten, of misschien is Jellyfin Server niet actief op de machine.",
|
||||
"WakeServerSuccess": "Succesvol!",
|
||||
"Watched": "Bekeken",
|
||||
"Wednesday": "Woensdag",
|
||||
"WifiRequiredToDownload": "Wifi verbinding is vereist om te downloaden.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Tak wiele jak to możliwe",
|
||||
"Ascending": "Rosnąco",
|
||||
"AspectRatio": "Proporcje obrazu",
|
||||
"AttemptingWakeServer": "Trwa próba wybudzenia serwera. Proszę czekać...",
|
||||
"AttributeNew": "Nowy",
|
||||
"AudioBitDepthNotSupported": "Nieobsługiwana głębia bitowa dźwięku",
|
||||
"AudioBitrateNotSupported": "Nieobsługiwana przepływność dźwięku",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Książki",
|
||||
"Box": "Pudełko",
|
||||
"BoxRear": "Pudełko (tył)",
|
||||
"Browse": "Przeglądaj",
|
||||
"BurnSubtitlesHelp": "Określa czy serwer powinien wypalać napisy podczas konwersji wideo, w zależności od formatu napisów. Unikanie wypalania napisów poprawia wydajność serwera. Wybierz Automatycznie, w celu wypalania zarówno napisów w formatach graficznych (np. VOBSUB, PGS, SUB/IDX, itp.), jak i pewnych napisów ASS/SSA.",
|
||||
"ButtonCancel": "Anuluj",
|
||||
"ButtonGotIt": "Rozumiem",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Ustawienia metadanych",
|
||||
"HeaderMusicQuality": "Jakość muzyki",
|
||||
"HeaderMyDevice": "Moje urządzenie",
|
||||
"HeaderMyDownloads": "Moje pobrania",
|
||||
"HeaderMyMedia": "Moje media",
|
||||
"HeaderMyMediaSmall": "Moje media (małe)",
|
||||
"HeaderNewRecording": "Nowe nagranie",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Jakość wideo",
|
||||
"HeaderVideoType": "Typ wideo",
|
||||
"HeaderWaitingForWifi": "Oczekiwanie na sieć WiFi",
|
||||
"HeaderWakeServer": "Wybudzaj serwer",
|
||||
"HeaderYouSaid": "Powiedziałeś...",
|
||||
"Help": "Pomoc",
|
||||
"Hide": "Ukryj",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Podgląd albumu",
|
||||
"ViewArtist": "Podgląd wykonawcy",
|
||||
"VoiceInput": "Wejście głosowe",
|
||||
"WakeServer": "Wybudzaj serwer",
|
||||
"WakeServerError": "Wysłano pakiery Wake On LAN do maszyny serwera, ale połączenie z serwer Jellyfin zakończyło się niepowodzeniem. Twoja maszyna potrzebuje więcej czasu do wybudzenia lub serwer Jellyfin może nie działać aktywnie na tej maszynie.",
|
||||
"WakeServerSuccess": "Powodzenie!",
|
||||
"Watched": "Obejrzany",
|
||||
"Wednesday": "Środa",
|
||||
"WifiRequiredToDownload": "Połączenie WiFi jest wymagane, aby kontynuować pobieranie.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Quantos forem possíveis",
|
||||
"Ascending": "Ascendente",
|
||||
"AspectRatio": "Proporção da imagem",
|
||||
"AttemptingWakeServer": "Tentando despertar o servidor. Por favor, aguarde...",
|
||||
"AttributeNew": "Novo",
|
||||
"AudioBitDepthNotSupported": "Profundidade de bit de áudio não suportada",
|
||||
"AudioBitrateNotSupported": "Taxa de áudio não suportada",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Livros",
|
||||
"Box": "Caixa",
|
||||
"BoxRear": "Caixa (traseira)",
|
||||
"Browse": "Navegar",
|
||||
"BurnSubtitlesHelp": "Determina se o servidor deveria gravar as legendas no vídeo ao convertê-lo, dependendo do formato da legenda. Evitar a gravação da legenda irá melhorar a performance do servidor. Selecione Auto para gravar a imagem baseado nos formatos (ex. VOBSUB, PGS, SUB/IDX, etc.) assim como algumas legendas ASS/SSA.",
|
||||
"ButtonCancel": "Cancelar",
|
||||
"ButtonGotIt": "Feito",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Ajustes dos Metadados",
|
||||
"HeaderMusicQuality": "Qualidade da Música:",
|
||||
"HeaderMyDevice": "Meu Dispositivo",
|
||||
"HeaderMyDownloads": "Meus Downloads",
|
||||
"HeaderMyMedia": "Minha Mídia",
|
||||
"HeaderMyMediaSmall": "Minha Mídia (pequeno)",
|
||||
"HeaderNewRecording": "Nova Gravação",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Qualidade do Vídeo",
|
||||
"HeaderVideoType": "Tipo de Vídeo",
|
||||
"HeaderWaitingForWifi": "Esperando por Wifi",
|
||||
"HeaderWakeServer": "Despertar Servidor",
|
||||
"HeaderYouSaid": "Você Disse...",
|
||||
"Help": "Ajuda",
|
||||
"Hide": "Ocultar",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Ver álbum",
|
||||
"ViewArtist": "Ver artista",
|
||||
"VoiceInput": "Entrada de voz",
|
||||
"WakeServer": "Acordar servidor",
|
||||
"WakeServerError": "Pacotes de rede para despertar foram enviados para seu servidor, mas não foi possível conectar ao seu Servidor Jellyfin. Sua máquina pode necessitar um pouco mais de tempo para despertar, ou o Servidor Jellyfin pode não estar rodando na máquina.",
|
||||
"WakeServerSuccess": "Deu certo!",
|
||||
"Watched": "Assistido(s)",
|
||||
"Wednesday": "Quarta-feira",
|
||||
"WifiRequiredToDownload": "É necessária uma conexão Wifi para continuar a transferir.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Novo",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Cancelar",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Ajustes dos Metadados",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "Nova Gravação",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Ajuda",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Quarta",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Anuleaza",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Ajutor",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Miercuri",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Как можно больше",
|
||||
"Ascending": "По возрастанию",
|
||||
"AspectRatio": "Соот-ие сторон",
|
||||
"AttemptingWakeServer": "Идёт попытка разбудить ваш сервер. Ждите...",
|
||||
"AttributeNew": "Новинка",
|
||||
"AudioBitDepthNotSupported": "Разрядность аудио не поддерживается",
|
||||
"AudioBitrateNotSupported": "Потоковая скорость аудио не поддерживается",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Книги",
|
||||
"Box": "Коробка",
|
||||
"BoxRear": "Спинка коробки",
|
||||
"Browse": "Навигация",
|
||||
"BurnSubtitlesHelp": "Определяется, должен ли сервер внедрять субтитры при преобразовании видео в зависимости от формата субтитров. Избегание внедрения субтитров улучшит производительность сервера. Выберите «Авто» для записи основанных на графике форматов (например, VOBSUB, PGS, SUB/IDX и т.п.), а также некоторых субтитров ASS/SSA.",
|
||||
"ButtonCancel": "Отменить",
|
||||
"ButtonGotIt": "Понятно",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Параметры метаданных",
|
||||
"HeaderMusicQuality": "Качество музыки",
|
||||
"HeaderMyDevice": "Моё устройство",
|
||||
"HeaderMyDownloads": "Мои загрузки",
|
||||
"HeaderMyMedia": "Мои медиаданные",
|
||||
"HeaderMyMediaSmall": "Мои медиаданные (компактно)",
|
||||
"HeaderNewRecording": "Новая запись",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Качество видео",
|
||||
"HeaderVideoType": "Тип видео",
|
||||
"HeaderWaitingForWifi": "В ожидании WiFi",
|
||||
"HeaderWakeServer": "Пробуждение сервера",
|
||||
"HeaderYouSaid": "Вы сказали...",
|
||||
"Help": "Справка...",
|
||||
"Hide": "Скрыть",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Посмотреть альбом",
|
||||
"ViewArtist": "Посмотреть исполнителя",
|
||||
"VoiceInput": "Голосовой ввод",
|
||||
"WakeServer": "Разбудить сервер",
|
||||
"WakeServerError": "Пакеты Wake On LAN были отправлены на вашу серверную машину, однако, мы не смогли соединиться с Jellyfin Server. Возможно, вашей машине потребуется немного больше времени для пробуждения, или Jellyfin Server не может активно работать на данной машине.",
|
||||
"WakeServerSuccess": "Успешно!",
|
||||
"Watched": "Просмотрено",
|
||||
"Wednesday": "среда",
|
||||
"WifiRequiredToDownload": "WiFi-соединение требуется для продолжения загрузки.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Najviac ako je možné",
|
||||
"Ascending": "Vzostupne",
|
||||
"AspectRatio": "Pomer strán",
|
||||
"AttemptingWakeServer": "Pokúšam sa zobudiť server. Prosím počkajte...",
|
||||
"AttributeNew": "Nové",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Knihy",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Zrušiť",
|
||||
"ButtonGotIt": "Rozumiem",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Nastavenia metadát",
|
||||
"HeaderMusicQuality": "Kvalita hudby",
|
||||
"HeaderMyDevice": "Moje zariadenie",
|
||||
"HeaderMyDownloads": "Moje sťahovania",
|
||||
"HeaderMyMedia": "Moje média",
|
||||
"HeaderMyMediaSmall": "Moje médiá (malé)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Kvalita videa",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Čakám na WiFi",
|
||||
"HeaderWakeServer": "Zobudiť server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Pomoc",
|
||||
"Hide": "Skryť",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Zobraziť album",
|
||||
"ViewArtist": "Zobraziť umelca",
|
||||
"VoiceInput": "Hlasový vstup",
|
||||
"WakeServer": "Zobudiť server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Vyšlo to!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Streda",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Cancel",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "Så många som möjligt",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Bildförhållande",
|
||||
"AttemptingWakeServer": "Försöker väcka servern. Vänligen vänta....",
|
||||
"AttributeNew": "Ny",
|
||||
"AudioBitDepthNotSupported": "Ljudets bitdjup stöds inte",
|
||||
"AudioBitrateNotSupported": "Ljudbithastigheten stöds inte",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Böcker",
|
||||
"Box": "Omslag",
|
||||
"BoxRear": "Omslag (baksida)",
|
||||
"Browse": "Bläddra",
|
||||
"BurnSubtitlesHelp": "Avgör ifall servern ska \"bränna in\" undertexterna under videokonverteringen, beroende på undertextsformatet. Att undvika inbränning av undertexter kommer att förbättra prestandan på servern. Välj Auto för att bränna image-baserade formats (ex. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA undertexter.",
|
||||
"ButtonCancel": "Avbryt",
|
||||
"ButtonGotIt": "Ok",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadatainställningar",
|
||||
"HeaderMusicQuality": "Musikkvalitet:",
|
||||
"HeaderMyDevice": "Min enhet",
|
||||
"HeaderMyDownloads": "Mina nedladdningar",
|
||||
"HeaderMyMedia": "Min Media",
|
||||
"HeaderMyMediaSmall": "Min Media (liten)",
|
||||
"HeaderNewRecording": "Ny inspelning",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Videokvalitet",
|
||||
"HeaderVideoType": "Videotyp",
|
||||
"HeaderWaitingForWifi": "Väntar på Wifi",
|
||||
"HeaderWakeServer": "Väck Server",
|
||||
"HeaderYouSaid": "Du sa...",
|
||||
"Help": "Hjälp",
|
||||
"Hide": "Dölj",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "Bläddra album",
|
||||
"ViewArtist": "Bläddra artist",
|
||||
"VoiceInput": "Röstinspelning",
|
||||
"WakeServer": "Väck server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Lyckades!",
|
||||
"Watched": "Sedd",
|
||||
"Wednesday": "Onsdag",
|
||||
"WifiRequiredToDownload": "En Wifi-anslutning krävs för att fortsätta nedladdningen.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "Yeni",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "İptal",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Çarşamba",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Скасувати",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "Thoát",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "Help",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "Wednesday",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "尽可能多",
|
||||
"Ascending": "升序",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "尝试唤醒服务器中,请耐心等待...",
|
||||
"AttributeNew": "新增",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "音频比特率不受支持",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "书籍",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "浏览",
|
||||
"BurnSubtitlesHelp": "根据字幕格式确定服务器在转换视频时是否应烧录字幕。避免烧录字幕会提高服务器性能。选择“自动”以烧录基于图像的字幕格式(如 VOBSUB, PGS, SUB/IDX 等)和一些复杂的 ASS/SSA 字幕。",
|
||||
"ButtonCancel": "取消",
|
||||
"ButtonGotIt": "知道了",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "元数据设置",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "我的设备",
|
||||
"HeaderMyDownloads": "我的下载",
|
||||
"HeaderMyMedia": "我的媒体",
|
||||
"HeaderMyMediaSmall": "我的媒体 (小)",
|
||||
"HeaderNewRecording": "新录制",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "视频质量",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "等待 Wifi 连接",
|
||||
"HeaderWakeServer": "唤醒服务器",
|
||||
"HeaderYouSaid": "您说了...",
|
||||
"Help": "帮助",
|
||||
"Hide": "隐藏",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "查看专辑",
|
||||
"ViewArtist": "查看艺术家",
|
||||
"VoiceInput": "语音输入",
|
||||
"WakeServer": "唤醒服务器",
|
||||
"WakeServerError": "Wake On LAN 数据包已经发送到你的服务器所在机器上,但我们不能连接到你的 Jellyfin 服务器。你的机器可能还需要一些时间才能被唤醒,或者\n Jellyfin 服务器没有正确的在机器上启动。",
|
||||
"WakeServerSuccess": "成功!",
|
||||
"Watched": "已观看",
|
||||
"Wednesday": "星期三",
|
||||
"WifiRequiredToDownload": "需要连接 Wifi 才能继续下载。",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "取消",
|
||||
"ButtonGotIt": "Got It",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "New Recording",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"Help": "幫助",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "星期三",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
"AsManyAsPossible": "As many as possible",
|
||||
"Ascending": "Ascending",
|
||||
"AspectRatio": "Aspect ratio",
|
||||
"AttemptingWakeServer": "Attempting to wake server. Please wait...",
|
||||
"AttributeNew": "New",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
|
@ -53,7 +52,6 @@
|
|||
"Books": "Books",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Browse": "Browse",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB/IDX, etc.) as well as certain ASS/SSA subtitles",
|
||||
"ButtonCancel": "取消",
|
||||
"ButtonGotIt": "我知道了",
|
||||
|
@ -248,7 +246,6 @@
|
|||
"HeaderMetadataSettings": "Metadata Settings",
|
||||
"HeaderMusicQuality": "Music Quality",
|
||||
"HeaderMyDevice": "My Device",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"HeaderNewRecording": "新錄製",
|
||||
|
@ -283,7 +280,6 @@
|
|||
"HeaderVideoQuality": "Video Quality",
|
||||
"HeaderVideoType": "Video Type",
|
||||
"HeaderWaitingForWifi": "Waiting for Wifi",
|
||||
"HeaderWakeServer": "Wake Server",
|
||||
"HeaderYouSaid": "您是指...",
|
||||
"Help": "說明",
|
||||
"Hide": "Hide",
|
||||
|
@ -676,9 +672,6 @@
|
|||
"ViewAlbum": "View album",
|
||||
"ViewArtist": "View artist",
|
||||
"VoiceInput": "Voice Input",
|
||||
"WakeServer": "Wake server",
|
||||
"WakeServerError": "Wake On LAN packets were sent to your server machine, but we're unable to connect to your Jellyfin Server. Your machine may need a little more time to wake, or Jellyfin Server may not be actively running on the machine.",
|
||||
"WakeServerSuccess": "Success!",
|
||||
"Watched": "Watched",
|
||||
"Wednesday": "星期三",
|
||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||
|
|
|
@ -302,11 +302,15 @@ html {
|
|||
}
|
||||
|
||||
.mainDrawer {
|
||||
background-color: #1c1c1c
|
||||
background-color: rgba(0, 0, 0, .5)
|
||||
}
|
||||
|
||||
.drawer-open {
|
||||
background-color: #011432
|
||||
}
|
||||
|
||||
.navMenuOption:hover {
|
||||
background: #252528
|
||||
background: rgba(221, 221, 221, 0.068)
|
||||
}
|
||||
|
||||
.navMenuOption-selected {
|
||||
|
|
|
@ -287,7 +287,7 @@ html {
|
|||
}
|
||||
|
||||
.mainDrawer {
|
||||
background-color: #1c1c1c
|
||||
background-color: #101010
|
||||
}
|
||||
|
||||
.navMenuOption:hover {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue