Remove games
This commit is contained in:
parent
0474bcfa8f
commit
8e76f60a10
85 changed files with 47 additions and 515 deletions
19
src/bower_components/emby-apiclient/apiclient.js
vendored
19
src/bower_components/emby-apiclient/apiclient.js
vendored
|
@ -193,7 +193,7 @@ define(["events", "appStorage"], function(events, appStorage) {
|
|||
|
||||
function getRemoteImagePrefix(instance, options) {
|
||||
var urlPrefix;
|
||||
return options.artist ? (urlPrefix = "Artists/" + instance.encodeName(options.artist), delete options.artist) : options.person ? (urlPrefix = "Persons/" + instance.encodeName(options.person), delete options.person) : options.genre ? (urlPrefix = "Genres/" + instance.encodeName(options.genre), delete options.genre) : options.musicGenre ? (urlPrefix = "MusicGenres/" + instance.encodeName(options.musicGenre), delete options.musicGenre) : options.gameGenre ? (urlPrefix = "GameGenres/" + instance.encodeName(options.gameGenre), delete options.gameGenre) : options.studio ? (urlPrefix = "Studios/" + instance.encodeName(options.studio), delete options.studio) : (urlPrefix = "Items/" + options.itemId, delete options.itemId), urlPrefix
|
||||
return options.artist ? (urlPrefix = "Artists/" + instance.encodeName(options.artist), delete options.artist) : options.person ? (urlPrefix = "Persons/" + instance.encodeName(options.person), delete options.person) : options.genre ? (urlPrefix = "Genres/" + instance.encodeName(options.genre), delete options.genre) : options.musicGenre ? (urlPrefix = "MusicGenres/" + instance.encodeName(options.musicGenre), delete options.musicGenre) : options.studio ? (urlPrefix = "Studios/" + instance.encodeName(options.studio), delete options.studio) : (urlPrefix = "Items/" + options.itemId, delete options.itemId), urlPrefix
|
||||
}
|
||||
|
||||
function normalizeImageOptions(instance, options) {
|
||||
|
@ -1069,12 +1069,6 @@ define(["events", "appStorage"], function(events, appStorage) {
|
|||
userId && (options.userId = userId);
|
||||
var url = this.getUrl("MusicGenres/" + this.encodeName(name), options);
|
||||
return this.getJSON(url)
|
||||
}, ApiClient.prototype.getGameGenre = function(name, userId) {
|
||||
if (!name) throw new Error("null name");
|
||||
var options = {};
|
||||
userId && (options.userId = userId);
|
||||
var url = this.getUrl("GameGenres/" + this.encodeName(name), options);
|
||||
return this.getJSON(url)
|
||||
}, ApiClient.prototype.getArtist = function(name, userId) {
|
||||
if (!name) throw new Error("null name");
|
||||
var options = {};
|
||||
|
@ -1300,11 +1294,6 @@ define(["events", "appStorage"], function(events, appStorage) {
|
|||
options = options || {}, options.userId = userId;
|
||||
var url = this.getUrl("MusicGenres", options);
|
||||
return this.getJSON(url)
|
||||
}, ApiClient.prototype.getGameGenres = function(userId, options) {
|
||||
if (!userId) throw new Error("null userId");
|
||||
options = options || {}, options.userId = userId;
|
||||
var url = this.getUrl("GameGenres", options);
|
||||
return this.getJSON(url)
|
||||
}, ApiClient.prototype.getPeople = function(userId, options) {
|
||||
if (!userId) throw new Error("null userId");
|
||||
options = options || {}, options.userId = userId;
|
||||
|
@ -1320,12 +1309,6 @@ define(["events", "appStorage"], function(events, appStorage) {
|
|||
if (!itemId) throw new Error("null itemId");
|
||||
var url = this.getUrl("Users/" + userId + "/Items/" + itemId + "/LocalTrailers");
|
||||
return this.getJSON(url)
|
||||
}, ApiClient.prototype.getGameSystems = function() {
|
||||
var options = {},
|
||||
userId = this.getCurrentUserId();
|
||||
userId && (options.userId = userId);
|
||||
var url = this.getUrl("Games/SystemSummaries", options);
|
||||
return this.getJSON(url)
|
||||
}, ApiClient.prototype.getAdditionalVideoParts = function(userId, itemId) {
|
||||
if (!itemId) throw new Error("null itemId");
|
||||
var options = {};
|
||||
|
|
|
@ -325,13 +325,13 @@ define(["filerepository", "itemrepository", "useractionrepository", "transferman
|
|||
var parts = [],
|
||||
itemtype = item.Type.toLowerCase(),
|
||||
mediaType = (item.MediaType || "").toLowerCase();
|
||||
"episode" === itemtype || "series" === itemtype || "season" === itemtype ? parts.push("TV") : "video" === mediaType ? parts.push("Videos") : "audio" === itemtype || "musicalbum" === itemtype || "musicartist" === itemtype ? parts.push("Music") : "photo" === itemtype || "photoalbum" === itemtype ? parts.push("Photos") : "game" !== itemtype && "gamesystem" !== itemtype || parts.push("Games");
|
||||
"episode" === itemtype || "series" === itemtype || "season" === itemtype ? parts.push("TV") : "video" === mediaType ? parts.push("Videos") : "audio" === itemtype || "musicalbum" === itemtype || "musicartist" === itemtype ? parts.push("Music") : "photo" === itemtype || "photoalbum" === itemtype ? parts.push("Photos") : null;
|
||||
var albumArtist = item.AlbumArtist;
|
||||
albumArtist && parts.push(albumArtist);
|
||||
var seriesName = item.SeriesName;
|
||||
seriesName && parts.push(seriesName);
|
||||
var seasonName = item.SeasonName;
|
||||
seasonName && parts.push(seasonName), item.Album && parts.push(item.Album), ("video" === mediaType && "episode" !== itemtype || "game" === itemtype || item.IsFolder) && parts.push(item.Name);
|
||||
seasonName && parts.push(seasonName), item.Album && parts.push(item.Album), ("video" === mediaType && "episode" !== itemtype || item.IsFolder) && parts.push(item.Name);
|
||||
for (var finalParts = [], i = 0; i < parts.length; i++) finalParts.push(filerepository.getValidFileName(parts[i]));
|
||||
return finalParts
|
||||
}
|
||||
|
@ -403,4 +403,4 @@ define(["filerepository", "itemrepository", "useractionrepository", "transferman
|
|||
fileExists: fileExists,
|
||||
enableBackgroundCompletion: enableBackgroundCompletion
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -840,7 +840,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
}
|
||||
|
||||
} else {
|
||||
var parentTitle = item.SeriesName || item.Series || item.Album || item.AlbumArtist || item.GameSystem || "";
|
||||
var parentTitle = item.SeriesName || item.Series || item.Album || item.AlbumArtist || "";
|
||||
|
||||
if (parentTitle || showTitle) {
|
||||
lines.push(parentTitle);
|
||||
|
@ -860,7 +860,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
var name = options.showTitle === 'auto' && !item.IsFolder && item.MediaType === 'Photo' ? '' : itemHelper.getDisplayName(item, {
|
||||
includeParentInfo: options.includeParentInfoInTitle
|
||||
});
|
||||
|
||||
|
||||
lines.push(getTextActionButton({
|
||||
Id: item.Id,
|
||||
ServerId: serverId,
|
||||
|
@ -879,7 +879,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
item.AlbumArtists[0].IsFolder = true;
|
||||
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 || ""));
|
||||
lines.push(isUsingLiveTvNaming(item) ? item.Name : (item.SeriesName || item.Series || item.Album || item.AlbumArtist || ""));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1122,25 +1122,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
|
||||
counts.push(childText);
|
||||
}
|
||||
if (item.GameCount) {
|
||||
|
||||
childText = item.GameCount === 1 ?
|
||||
globalize.translate('sharedcomponents#ValueOneGame') :
|
||||
globalize.translate('sharedcomponents#ValueGameCount', item.GameCount);
|
||||
|
||||
counts.push(childText);
|
||||
}
|
||||
|
||||
} else if (item.Type === 'GameGenre') {
|
||||
|
||||
if (item.GameCount) {
|
||||
|
||||
childText = item.GameCount === 1 ?
|
||||
globalize.translate('sharedcomponents#ValueOneGame') :
|
||||
globalize.translate('sharedcomponents#ValueGameCount', item.GameCount);
|
||||
|
||||
counts.push(childText);
|
||||
}
|
||||
} else if (item.Type === 'MusicGenre' || options.context === "MusicArtist") {
|
||||
|
||||
if (item.AlbumCount) {
|
||||
|
@ -1823,4 +1805,4 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
|||
onTimerCancelled: onTimerCancelled,
|
||||
onSeriesTimerCancelled: onSeriesTimerCancelled
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -237,9 +237,6 @@ define(['connectionManager', 'cardBuilder', 'registrationServices', 'appSettings
|
|||
case "tvshows":
|
||||
icon = "live_tv";
|
||||
break;
|
||||
case "games":
|
||||
icon = "folder";
|
||||
break;
|
||||
case "trailers":
|
||||
icon = "local_movies";
|
||||
break;
|
||||
|
@ -1076,4 +1073,4 @@ define(['connectionManager', 'cardBuilder', 'registrationServices', 'appSettings
|
|||
pause: pause,
|
||||
resume: resume
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -28,7 +28,7 @@ define(['connectionManager', 'playbackManager', 'events', 'inputManager', 'focus
|
|||
|
||||
function displayContent(cmd, apiClient) {
|
||||
|
||||
if (!playbackManager.isPlayingLocally(['Video', 'Book', 'Game'])) {
|
||||
if (!playbackManager.isPlayingLocally(['Video', 'Book'])) {
|
||||
appRouter.showItem(cmd.Arguments.ItemId, apiClient.serverId());
|
||||
}
|
||||
}
|
||||
|
@ -242,4 +242,4 @@ define(['connectionManager', 'playbackManager', 'events', 'inputManager', 'focus
|
|||
});
|
||||
|
||||
return serverNotifications;
|
||||
});
|
||||
});
|
||||
|
|
|
@ -55,7 +55,7 @@ define(['apphost', 'globalize'], function (appHost, globalize) {
|
|||
|
||||
function supportsAddingToCollection(item) {
|
||||
|
||||
var invalidTypes = ['Genre', 'MusicGenre', 'Studio', 'GameGenre', 'UserView', 'CollectionFolder', 'Audio', 'Program', 'Timer', 'SeriesTimer'];
|
||||
var invalidTypes = ['Genre', 'MusicGenre', 'Studio', 'UserView', 'CollectionFolder', 'Audio', 'Program', 'Timer', 'SeriesTimer'];
|
||||
|
||||
if (item.Type === 'Recording') {
|
||||
if (item.Status !== 'Completed') {
|
||||
|
@ -155,7 +155,6 @@ define(['apphost', 'globalize'], function (appHost, globalize) {
|
|||
if (itemType === "Movie" ||
|
||||
itemType === "Trailer" ||
|
||||
itemType === "Series" ||
|
||||
itemType === "Game" ||
|
||||
itemType === "BoxSet" ||
|
||||
itemType === "Person" ||
|
||||
itemType === "Book" ||
|
||||
|
@ -268,7 +267,6 @@ define(['apphost', 'globalize'], function (appHost, globalize) {
|
|||
if (item.Type === "Series" ||
|
||||
item.Type === "Season" ||
|
||||
item.Type === "BoxSet" ||
|
||||
item.MediaType === "Game" ||
|
||||
item.MediaType === "Book" ||
|
||||
item.MediaType === "Recording") {
|
||||
return true;
|
||||
|
@ -297,7 +295,7 @@ define(['apphost', 'globalize'], function (appHost, globalize) {
|
|||
}
|
||||
|
||||
var mediaType = item.MediaType;
|
||||
if (mediaType === 'Book' || mediaType === 'Photo' || mediaType === 'Game' || mediaType === 'Audio') {
|
||||
if (mediaType === 'Book' || mediaType === 'Photo' || mediaType === 'Audio') {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -363,4 +361,4 @@ define(['apphost', 'globalize'], function (appHost, globalize) {
|
|||
return true;
|
||||
}
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -56,10 +56,6 @@ define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize',
|
|||
return;
|
||||
}
|
||||
|
||||
if (currentItem && currentItem.GameSystem) {
|
||||
lookupInfo.GameSystem = currentItem.GameSystem;
|
||||
}
|
||||
|
||||
lookupInfo = {
|
||||
SearchInfo: lookupInfo
|
||||
};
|
||||
|
@ -161,10 +157,6 @@ define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize',
|
|||
lines.push(identifyResult.ProductionYear);
|
||||
}
|
||||
|
||||
if (identifyResult.GameSystem) {
|
||||
lines.push(identifyResult.GameSystem);
|
||||
}
|
||||
|
||||
var resultHtml = lines.join('<br/>');
|
||||
|
||||
if (identifyResult.ImageUrl) {
|
||||
|
@ -230,9 +222,6 @@ define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize',
|
|||
if (currentItemType === "MusicAlbum") {
|
||||
numLines++;
|
||||
}
|
||||
else if (currentItemType === "Game") {
|
||||
numLines++;
|
||||
}
|
||||
|
||||
var lines = [result.Name];
|
||||
|
||||
|
@ -242,9 +231,6 @@ define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize',
|
|||
if (result.ProductionYear) {
|
||||
lines.push(result.ProductionYear);
|
||||
}
|
||||
if (result.GameSystem) {
|
||||
lines.push(result.GameSystem);
|
||||
}
|
||||
|
||||
for (var i = 0; i < numLines; i++) {
|
||||
|
||||
|
@ -377,7 +363,7 @@ define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize',
|
|||
|
||||
dlg.innerHTML = html;
|
||||
|
||||
// Has to be assigned a z-index after the call to .open()
|
||||
// Has to be assigned a z-index after the call to .open()
|
||||
dlg.addEventListener('close', onDialogClosed);
|
||||
|
||||
if (layoutManager.tv) {
|
||||
|
@ -525,4 +511,4 @@ define(['dialogHelper', 'loading', 'connectionManager', 'require', 'globalize',
|
|||
});
|
||||
}
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -416,10 +416,6 @@ define(['itemHelper', 'mediaInfo', 'indicators', 'connectionManager', 'layoutMan
|
|||
}
|
||||
}
|
||||
|
||||
if (item.Type === 'Game') {
|
||||
textlines.push(item.GameSystem);
|
||||
}
|
||||
|
||||
if (item.Type === 'TvChannel') {
|
||||
|
||||
if (item.CurrentProgram) {
|
||||
|
@ -540,4 +536,4 @@ define(['itemHelper', 'mediaInfo', 'indicators', 'connectionManager', 'layoutMan
|
|||
return {
|
||||
getListViewHtml: getListViewHtml
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -605,7 +605,6 @@ define(['itemHelper', 'dom', 'layoutManager', 'dialogHelper', 'datetime', 'loadi
|
|||
if (item.Type === "Person" ||
|
||||
item.Type === "Genre" ||
|
||||
item.Type === "Studio" ||
|
||||
item.Type === "GameGenre" ||
|
||||
item.Type === "MusicGenre" ||
|
||||
item.Type === "TvChannel" ||
|
||||
item.Type === "Book") {
|
||||
|
@ -614,7 +613,7 @@ define(['itemHelper', 'dom', 'layoutManager', 'dialogHelper', 'datetime', 'loadi
|
|||
showElement('#peopleCollapsible', context);
|
||||
}
|
||||
|
||||
if (item.Type === "Person" || item.Type === "Genre" || item.Type === "Studio" || item.Type === "GameGenre" || item.Type === "MusicGenre" || item.Type === "TvChannel") {
|
||||
if (item.Type === "Person" || item.Type === "Genre" || item.Type === "Studio" || item.Type === "MusicGenre" || item.Type === "TvChannel") {
|
||||
hideElement('#fldCommunityRating', context);
|
||||
hideElement('#genresCollapsible', context);
|
||||
hideElement('#studiosCollapsible', context);
|
||||
|
@ -1134,4 +1133,4 @@ define(['itemHelper', 'dom', 'layoutManager', 'dialogHelper', 'datetime', 'loadi
|
|||
});
|
||||
}
|
||||
};
|
||||
});
|
||||
});
|
||||
|
|
|
@ -748,7 +748,7 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
|||
name: player.name,
|
||||
id: player.id,
|
||||
playerName: player.name,
|
||||
playableMediaTypes: ['Audio', 'Video', 'Game', 'Photo', 'Book'].map(player.canPlayMediaType),
|
||||
playableMediaTypes: ['Audio', 'Video', 'Photo', 'Book'].map(player.canPlayMediaType),
|
||||
isLocalPlayer: player.isLocalPlayer,
|
||||
supportedCommands: instance.getSupportedCommands(player)
|
||||
};
|
||||
|
@ -947,7 +947,7 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
|||
name: globalize.translate('sharedcomponents#HeaderMyDevice'),
|
||||
id: 'localplayer',
|
||||
playerName: 'localplayer',
|
||||
playableMediaTypes: ['Audio', 'Video', 'Game', 'Photo', 'Book'],
|
||||
playableMediaTypes: ['Audio', 'Video', 'Photo', 'Book'],
|
||||
isLocalPlayer: true,
|
||||
supportedCommands: self.getSupportedCommands({
|
||||
isLocalPlayer: true
|
||||
|
@ -2356,7 +2356,7 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
|||
promise = Promise.resolve();
|
||||
}
|
||||
|
||||
if (!isServerItem(item) || item.MediaType === 'Game' || item.MediaType === 'Book') {
|
||||
if (!isServerItem(item) || item.MediaType === 'Book') {
|
||||
return promise.then(function () {
|
||||
var streamInfo = createStreamInfoFromUrlItem(item);
|
||||
streamInfo.fullscreen = playOptions.fullscreen;
|
||||
|
@ -3985,4 +3985,4 @@ define(['events', 'datetime', 'appSettings', 'itemHelper', 'pluginManager', 'pla
|
|||
};
|
||||
|
||||
return new PlaybackManager();
|
||||
});
|
||||
});
|
||||
|
|
|
@ -101,7 +101,6 @@
|
|||
"HeaderFavoriteArtists": "Любими изпълнители",
|
||||
"HeaderFavoriteCollections": "Любими колекции",
|
||||
"HeaderFavoriteEpisodes": "Любими епизоди",
|
||||
"HeaderFavoriteGames": "Любими игри",
|
||||
"HeaderFavoriteMovies": "Любими филми",
|
||||
"HeaderFavoritePlaylists": "Любими списъци",
|
||||
"HeaderFavoriteShows": "Любими предавания",
|
||||
|
@ -327,13 +326,11 @@
|
|||
"ValueAlbumCount": "{0} албума",
|
||||
"ValueDiscNumber": "Диск {0}",
|
||||
"ValueEpisodeCount": "{0} епизода",
|
||||
"ValueGameCount": "{0} игри",
|
||||
"ValueMinutes": "{0} минути",
|
||||
"ValueMovieCount": "{0} филма",
|
||||
"ValueMusicVideoCount": "{0} музикални клипа",
|
||||
"ValueOneAlbum": "1 албум",
|
||||
"ValueOneEpisode": "1 епизод",
|
||||
"ValueOneGame": "1 игра",
|
||||
"ValueOneMovie": "1 филм",
|
||||
"ValueOneMusicVideo": "1 музикален клип",
|
||||
"ValueOneSeries": "1 сериал",
|
||||
|
|
|
@ -201,7 +201,6 @@
|
|||
"MessageNoDownloadsFound": "No s'han trobat descàrregues sense connexió. Descarrega mitjans per reproduir sense connexió emprant els botons de \"Descarrega\" que trobaràs per tota l'app.",
|
||||
"MessageNoSyncJobsFound": "No s'han trobat descàrregues. Crea noves tasques de descàrrega emprant els botons de \"Descarrega\" que trobaràs per tota l'app.",
|
||||
"MessageToValidateSupporter": "Si tens una subscripció activa d'Jellyfin Premiere assegura't que l'has configurat al teu tauler de control de l'Jellyfin Server, on pots accedir clicant a l'opció d'Jellyfin Premiere al menú principal.",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Activa aquesta funcionalitat amb un únic pagament, o amb una subscripció activa d'Jellyfin Premiere.",
|
||||
"MessageUnlockAppWithSupporter": "Activa aquesta funcionalitat amb una subscripció activa d'Jellyfin Premiere.",
|
||||
"MessageWeDidntRecognizeCommand": "Ho sentim, no reconeixem aquesta comanda.",
|
||||
"MinutesAfter": "minuts després",
|
||||
|
|
|
@ -522,11 +522,9 @@
|
|||
"ValueAlbumCount": "{0} alb",
|
||||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} epizod",
|
||||
"ValueGameCount": "{0} her",
|
||||
"ValueMovieCount": "{0} filmů",
|
||||
"ValueMusicVideoCount": "{0} hudebních klipů",
|
||||
"ValueOneEpisode": "1 epizoda",
|
||||
"ValueOneGame": "1 hra",
|
||||
"ValueOneItem": "1 položka",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 hudební klip",
|
||||
|
|
|
@ -308,10 +308,8 @@
|
|||
"ValueAlbumCount": "{0} album",
|
||||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} episoder",
|
||||
"ValueGameCount": "{0} spil",
|
||||
"ValueMovieCount": "{0} film",
|
||||
"ValueMusicVideoCount": "{0} musikvideoer",
|
||||
"ValueOneGame": "1 spil",
|
||||
"ValueOneItem": "1 emne",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 musikvideo",
|
||||
|
|
|
@ -205,7 +205,6 @@
|
|||
"HeaderFavoriteArtists": "Lieblingskünstler",
|
||||
"HeaderFavoriteCollections": "Lieblingssammlungen",
|
||||
"HeaderFavoriteEpisodes": "Lieblingsepisoden",
|
||||
"HeaderFavoriteGames": "Lieblingsspiele",
|
||||
"HeaderFavoriteMovies": "Lieblingsfilme",
|
||||
"HeaderFavoritePlaylists": "Lieblingswiedergabelisten",
|
||||
"HeaderFavoriteShows": "Lieblingsserien",
|
||||
|
@ -592,13 +591,11 @@
|
|||
"Upload": "Hochladen",
|
||||
"ValueAlbumCount": "{0} Alben",
|
||||
"ValueEpisodeCount": "{0} Episoden",
|
||||
"ValueGameCount": "{0} Spiele",
|
||||
"ValueMinutes": "{0} Minuten",
|
||||
"ValueMovieCount": "{0} Filme",
|
||||
"ValueMusicVideoCount": "{0} Musikvideos",
|
||||
"ValueOneAlbum": "1 Album",
|
||||
"ValueOneEpisode": "1 Episode",
|
||||
"ValueOneGame": "1 Spiel",
|
||||
"ValueOneItem": "1 Eintrag",
|
||||
"ValueOneMovie": "1 Film",
|
||||
"ValueOneMusicVideo": "1 Musikvideo",
|
||||
|
|
|
@ -218,7 +218,6 @@
|
|||
"HeaderFavoriteArtists": "Αγαπημένοι Καλλιτέχνες",
|
||||
"HeaderFavoriteCollections": "Αγαπημένες Συλλογές",
|
||||
"HeaderFavoriteEpisodes": "Αγαπημένα Επεισόδια",
|
||||
"HeaderFavoriteGames": "Αγαπημένα Παιχνίδια",
|
||||
"HeaderFavoriteMovies": "Αγαπημένες Ταινίες",
|
||||
"HeaderFavoritePlaylists": "Αγαπημένες Λίστες Αναπαραγωγής",
|
||||
"HeaderFavoriteShows": "Αγαπημένες Σειρές",
|
||||
|
@ -630,13 +629,11 @@
|
|||
"ValueAlbumCount": "{0} άλμπουμ",
|
||||
"ValueDiscNumber": "Δίσκος {0}",
|
||||
"ValueEpisodeCount": "{0} επεισόδια",
|
||||
"ValueGameCount": "{0} παιχνίδια",
|
||||
"ValueMinutes": "{0} λεπτά",
|
||||
"ValueMovieCount": "{0} ταινίες",
|
||||
"ValueMusicVideoCount": "{0} μουσικά βίντεο",
|
||||
"ValueOneAlbum": "1 Άλμπουμ",
|
||||
"ValueOneEpisode": "1 επεισόδιο",
|
||||
"ValueOneGame": "1 παιχνίδι",
|
||||
"ValueOneItem": "1 στοιχείο",
|
||||
"ValueOneMovie": "1 ταινία",
|
||||
"ValueOneMusicVideo": "1 μουσικό βίντεο",
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
"HeaderFavoriteArtists": "Favourite Artists",
|
||||
"HeaderFavoriteCollections": "Favourite Collections",
|
||||
"HeaderFavoriteEpisodes": "Favourite Episodes",
|
||||
"HeaderFavoriteGames": "Favourite Games",
|
||||
"HeaderFavoriteMovies": "Favourite Movies",
|
||||
"HeaderFavoritePlaylists": "Favourite Playlists",
|
||||
"HeaderFavoriteShows": "Favourite Shows",
|
||||
|
|
|
@ -221,7 +221,6 @@
|
|||
"HeaderFavoriteArtists": "Favorite Artists",
|
||||
"HeaderFavoriteCollections": "Favorite Collections",
|
||||
"HeaderFavoriteEpisodes": "Favorite Episodes",
|
||||
"HeaderFavoriteGames": "Favorite Games",
|
||||
"HeaderFavoriteMovies": "Favorite Movies",
|
||||
"HeaderFavoritePlaylists": "Favorite Playlists",
|
||||
"HeaderFavoriteShows": "Favorite Shows",
|
||||
|
@ -645,13 +644,11 @@
|
|||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueDiscNumber": "Disc {0}",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueMinutes": "{0} min",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneItem": "1 item",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
|
|
|
@ -214,7 +214,6 @@
|
|||
"HeaderFavoriteArtists": "Artistas Favoritos",
|
||||
"HeaderFavoriteCollections": "Colecciones Favoritas",
|
||||
"HeaderFavoriteEpisodes": "Episodios Favoritos",
|
||||
"HeaderFavoriteGames": "Juegos Favoritos",
|
||||
"HeaderFavoriteMovies": "Películas Favoritas",
|
||||
"HeaderFavoritePlaylists": "Listas de Reproducción Favoritas",
|
||||
"HeaderFavoriteShows": "Programas Favoritos",
|
||||
|
@ -627,12 +626,10 @@
|
|||
"ValueAlbumCount": "{0} álbumes",
|
||||
"ValueDiscNumber": "Disco {0}",
|
||||
"ValueEpisodeCount": "{0} episodios",
|
||||
"ValueGameCount": "{0} juegos",
|
||||
"ValueMovieCount": "{0} películas",
|
||||
"ValueMusicVideoCount": "{0} videos musicales",
|
||||
"ValueOneAlbum": "1 álbum",
|
||||
"ValueOneEpisode": "1 episodio",
|
||||
"ValueOneGame": "1 juego",
|
||||
"ValueOneItem": "1 Ítem",
|
||||
"ValueOneMovie": "1 película",
|
||||
"ValueOneMusicVideo": "1 video musical",
|
||||
|
|
|
@ -468,12 +468,10 @@
|
|||
"ValueAlbumCount": "{0} álbumes",
|
||||
"ValueDiscNumber": "Disco {0}",
|
||||
"ValueEpisodeCount": "{0} episodios",
|
||||
"ValueGameCount": "{0} juegos",
|
||||
"ValueMovieCount": "{0} películas",
|
||||
"ValueMusicVideoCount": "{0} vídeos musicales",
|
||||
"ValueOneAlbum": "1 álbum",
|
||||
"ValueOneEpisode": "1 episodio",
|
||||
"ValueOneGame": "1 juego",
|
||||
"ValueOneItem": "1 elemento",
|
||||
"ValueOneMovie": "1 película",
|
||||
"ValueOneMusicVideo": "1 vídeo musical",
|
||||
|
|
|
@ -211,7 +211,6 @@
|
|||
"HeaderFavoriteArtists": "Artistes Favoris",
|
||||
"HeaderFavoriteCollections": "Collections Favorites",
|
||||
"HeaderFavoriteEpisodes": "Episodes Favoris",
|
||||
"HeaderFavoriteGames": "Jeux Favoris",
|
||||
"HeaderFavoriteMovies": "Films Favoris",
|
||||
"HeaderFavoritePlaylists": "Listes de lecture favorites",
|
||||
"HeaderFavoriteShows": "Séries Favorites",
|
||||
|
@ -618,11 +617,9 @@
|
|||
"Upload": "Envoyer",
|
||||
"ValueDiscNumber": "Disque {0}",
|
||||
"ValueEpisodeCount": "{0} épisodes",
|
||||
"ValueGameCount": "{0} jeux",
|
||||
"ValueMovieCount": "{0} films",
|
||||
"ValueMusicVideoCount": "{0} vidéos musicales",
|
||||
"ValueOneEpisode": "1 épisode",
|
||||
"ValueOneGame": "1 jeu",
|
||||
"ValueOneItem": "1 élément",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 vidéo musicale",
|
||||
|
|
|
@ -286,13 +286,11 @@
|
|||
"ValueAlbumCount": "{0} אלבומים",
|
||||
"ValueDiscNumber": "דיסק {0}",
|
||||
"ValueEpisodeCount": "{0} פרקים",
|
||||
"ValueGameCount": "{0} משחקים",
|
||||
"ValueMinutes": "{0} דקות",
|
||||
"ValueMovieCount": "{0} סרטים",
|
||||
"ValueMusicVideoCount": "{0} וידאו קליפים",
|
||||
"ValueOneAlbum": "אלבום 1",
|
||||
"ValueOneEpisode": "פרק 1",
|
||||
"ValueOneGame": "משחק 1",
|
||||
"ValueOneItem": "פריט 1",
|
||||
"ValueOneMovie": "סרט 1",
|
||||
"ValueOneMusicVideo": "וידאו קליפ 1",
|
||||
|
|
|
@ -279,12 +279,10 @@
|
|||
"ValueAlbumCount": "{0} albuma",
|
||||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} epizoda",
|
||||
"ValueGameCount": "{0} igra",
|
||||
"ValueMinutes": "{0} minuta",
|
||||
"ValueMovieCount": "{0} filmova",
|
||||
"ValueMusicVideoCount": "{0} glazbenih videa",
|
||||
"ValueOneEpisode": "1 epizoda",
|
||||
"ValueOneGame": "1 igra",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 glazbeni video",
|
||||
"ValueOneSeries": "1 serija",
|
||||
|
|
|
@ -211,7 +211,6 @@
|
|||
"HeaderFavoriteArtists": "Artisti Preferiti",
|
||||
"HeaderFavoriteCollections": "Collezioni Preferite",
|
||||
"HeaderFavoriteEpisodes": "Episodi Preferiti",
|
||||
"HeaderFavoriteGames": "Giochi Preferiti",
|
||||
"HeaderFavoriteMovies": "Film Preferiti",
|
||||
"HeaderFavoritePlaylists": "Playlist Preferite",
|
||||
"HeaderFavoriteShows": "Serie TV Preferite",
|
||||
|
@ -263,7 +262,6 @@
|
|||
"HeaderSubtitleAppearance": "Visualizzazione Sottotitoli",
|
||||
"HeaderSubtitleSettings": "Impostazioni Sottotitoli",
|
||||
"HeaderSyncRequiresSub": "Per usare la funzione Download è richiesto un abbonamento Jellyfin Premiere attivo.",
|
||||
"HeaderTermsOfPurchase": "Termini di pagamento",
|
||||
"HeaderTryPlayback": "Prova la riproduzione",
|
||||
"HeaderUnlockFeature": "Sblocca Funzionalità",
|
||||
"HeaderUploadImage": "Carica immagine",
|
||||
|
@ -394,7 +392,6 @@
|
|||
"LearnHowYouCanContribute": "Scopri come puoi contribuire.",
|
||||
"LearnMore": "saperne di più",
|
||||
"Like": "Mi piace",
|
||||
"LinksValue": "Collegamenti: {0}",
|
||||
"List": "Lista",
|
||||
"Live": "In diretta",
|
||||
"LiveBroadcasts": "Tramissioni in diretta",
|
||||
|
@ -422,7 +419,6 @@
|
|||
"MessageJellyfinAccountAdded": "L'account Jellyfin è stato aggiunto a questo utente",
|
||||
"MessageLeaveEmptyToInherit": "Lascia vuoto per ereditare le impostazioni dall'elemento principale, o il valore predefinito globale.",
|
||||
"MessageNoDownloadsFound": "Nessun download offline trovato. Scarica i tuoi media per renderli disponibili offline usando l'opzione Download sull'applicazione.",
|
||||
"MessageNoServersAvailableToConnect": "Nessun server disponibile per la connessione. Se siete stati invitati a condividere un server, assicuratevi di accettare l'invito qui sotto o cliccando sul collegamento nella e-mail.",
|
||||
"MessageNoSyncJobsFound": "Nessun download trovato. Puoi creare un'attività di download usando il bottone di Download presente nell'applicazione.",
|
||||
"MessagePendingJellyfinAccountAdded": "L'account Jellyfin è stato aggiunto a questo utente. Un'email sarà inviata al proprietario dell'account. L'invito dovrà essere confermato selezionando il link contenuto nell'email",
|
||||
"MessagePlayAccessRestricted": "Le riproduzione di questi contenuti è bloccata. Per favore contatta il tuo amministratore Jellyfin Server per maggiori informazioni.",
|
||||
|
@ -611,11 +607,9 @@
|
|||
"ValueAlbumCount": "{0} album",
|
||||
"ValueDiscNumber": "Disco {0}",
|
||||
"ValueEpisodeCount": "{0} episodi",
|
||||
"ValueGameCount": "{0} giochi",
|
||||
"ValueMovieCount": "{0} film",
|
||||
"ValueMusicVideoCount": "{0} video musicali",
|
||||
"ValueOneEpisode": "1 episodio",
|
||||
"ValueOneGame": "1 gioco",
|
||||
"ValueOneItem": "1 elemento",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 video musicale",
|
||||
|
|
|
@ -221,7 +221,6 @@
|
|||
"HeaderFavoriteArtists": "Таңдаулы орындаушылар",
|
||||
"HeaderFavoriteCollections": "Таңдаулы жиынтықтар",
|
||||
"HeaderFavoriteEpisodes": "Таңдаулы бөлімдер",
|
||||
"HeaderFavoriteGames": "Таңдаулы ойындар",
|
||||
"HeaderFavoriteMovies": "Таңдаулы фильмдер",
|
||||
"HeaderFavoritePlaylists": "Таңдаулы ойнату тізімдері",
|
||||
"HeaderFavoriteShows": "Таңдаулы көрсетімдер",
|
||||
|
@ -640,13 +639,11 @@
|
|||
"ValueAlbumCount": "{0} альбом",
|
||||
"ValueDiscNumber": "{0}-дискі",
|
||||
"ValueEpisodeCount": "{0} бөлім",
|
||||
"ValueGameCount": "{0} ойын",
|
||||
"ValueMinutes": "{0} мин",
|
||||
"ValueMovieCount": "{0} фильм",
|
||||
"ValueMusicVideoCount": "{0} музыкалық бейне",
|
||||
"ValueOneAlbum": "1 альбом",
|
||||
"ValueOneEpisode": "1 бөлім",
|
||||
"ValueOneGame": "1 ойын",
|
||||
"ValueOneItem": "1 тармақ",
|
||||
"ValueOneMovie": "1 фильм",
|
||||
"ValueOneMusicVideo": "1 музыкалық бейне",
|
||||
|
|
|
@ -133,13 +133,11 @@
|
|||
"ValueAlbumCount": "{0} 앨범",
|
||||
"ValueDiscNumber": "디스크 {0}",
|
||||
"ValueEpisodeCount": "{0} 에피소드",
|
||||
"ValueGameCount": "{0} 게임",
|
||||
"ValueMinutes": "{0} 분",
|
||||
"ValueMovieCount": "{0} 영화",
|
||||
"ValueMusicVideoCount": "{0} 뮤직 비디오",
|
||||
"ValueOneAlbum": "1 앨범",
|
||||
"ValueOneEpisode": "1 에피소드",
|
||||
"ValueOneGame": "1 게임",
|
||||
"ValueOneMovie": "1 영화",
|
||||
"ValueOneMusicVideo": "1 뮤직 비디오",
|
||||
"ValueOneSeries": "1 시리즈",
|
||||
|
|
|
@ -285,13 +285,11 @@
|
|||
"ValueAlbumCount": "{0} albumų",
|
||||
"ValueDiscNumber": "Diskas {0}",
|
||||
"ValueEpisodeCount": "{0} serijų",
|
||||
"ValueGameCount": "{0} žaidimų",
|
||||
"ValueMinutes": "{0} min.",
|
||||
"ValueMovieCount": "{0} filmų",
|
||||
"ValueMusicVideoCount": "{0} muzikiniai video",
|
||||
"ValueOneAlbum": "1 albumas",
|
||||
"ValueOneEpisode": "1 serija",
|
||||
"ValueOneGame": "1 žaidimas",
|
||||
"ValueOneMovie": "1 filmas",
|
||||
"ValueOneMusicVideo": "1 muzikinis video",
|
||||
"ValueOneSeries": "1 laida",
|
||||
|
|
|
@ -386,11 +386,9 @@
|
|||
"ValueAlbumCount": "{0} album",
|
||||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} episoder",
|
||||
"ValueGameCount": "{0} spill",
|
||||
"ValueMinutes": "{0} minutter",
|
||||
"ValueMovieCount": "{0} filmer",
|
||||
"ValueMusicVideoCount": "{0} musikkvideoer",
|
||||
"ValueOneGame": "1 spill",
|
||||
"ValueOneItem": "et element",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 musikkvideo",
|
||||
|
|
|
@ -209,7 +209,6 @@
|
|||
"HeaderFavoriteArtists": "Favoriete artiesten",
|
||||
"HeaderFavoriteCollections": "Favoriete collecties",
|
||||
"HeaderFavoriteEpisodes": "Favoriete afleveringen",
|
||||
"HeaderFavoriteGames": "Favoriete games",
|
||||
"HeaderFavoriteMovies": "Favoriete films",
|
||||
"HeaderFavoritePlaylists": "Favoriete afspeellijsten",
|
||||
"HeaderFavoriteShows": "Favoriete series",
|
||||
|
|
|
@ -219,7 +219,6 @@
|
|||
"HeaderFavoriteArtists": "Wykonawcy ulubieni",
|
||||
"HeaderFavoriteCollections": "Kolekcje ulubione",
|
||||
"HeaderFavoriteEpisodes": "Odcinki ulubione",
|
||||
"HeaderFavoriteGames": "Gry ulubione",
|
||||
"HeaderFavoriteMovies": "Filmy ulubione",
|
||||
"HeaderFavoritePlaylists": "Listy ulubione",
|
||||
"HeaderFavoriteShows": "Seriale ulubione",
|
||||
|
@ -638,11 +637,9 @@
|
|||
"ValueAlbumCount": "{0} albumy",
|
||||
"ValueDiscNumber": "Dysk {0}",
|
||||
"ValueEpisodeCount": "{0} odcinki",
|
||||
"ValueGameCount": "{0} gry",
|
||||
"ValueMovieCount": "{0} filmy",
|
||||
"ValueMusicVideoCount": "{0} teledyski",
|
||||
"ValueOneEpisode": "1 odcinek",
|
||||
"ValueOneGame": "1 gra",
|
||||
"ValueOneItem": "1 pozycja",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 teledysk",
|
||||
|
|
|
@ -213,7 +213,6 @@
|
|||
"HeaderFavoriteArtists": "Artistas Favoritos",
|
||||
"HeaderFavoriteCollections": "Coletâneas Favoritas",
|
||||
"HeaderFavoriteEpisodes": "Episódios Favoritos",
|
||||
"HeaderFavoriteGames": "Jogos Favoritos",
|
||||
"HeaderFavoriteMovies": "Filmes Favoritos",
|
||||
"HeaderFavoritePlaylists": "Listas de Reprodução Favoritas",
|
||||
"HeaderFavoriteShows": "Séries Favoritas",
|
||||
|
@ -615,12 +614,10 @@
|
|||
"ValueAlbumCount": "{0} álbuns",
|
||||
"ValueDiscNumber": "Disco {0}",
|
||||
"ValueEpisodeCount": "{0} episódios",
|
||||
"ValueGameCount": "{0} jogos",
|
||||
"ValueMovieCount": "{0} filmes",
|
||||
"ValueMusicVideoCount": "{0} vídeos musicais",
|
||||
"ValueOneAlbum": "1 álbum",
|
||||
"ValueOneEpisode": "1 episódio",
|
||||
"ValueOneGame": "1 jogo",
|
||||
"ValueOneMovie": "1 filme",
|
||||
"ValueOneMusicVideo": "1 vídeo musical",
|
||||
"ValueOneSeries": "1 série",
|
||||
|
|
|
@ -221,7 +221,6 @@
|
|||
"HeaderFavoriteArtists": "Избранные исполнители",
|
||||
"HeaderFavoriteCollections": "Избранные коллекции",
|
||||
"HeaderFavoriteEpisodes": "Избранные эпизоды",
|
||||
"HeaderFavoriteGames": "Избранные игры",
|
||||
"HeaderFavoriteMovies": "Избранные фильмы",
|
||||
"HeaderFavoritePlaylists": "Избранные плей-листы",
|
||||
"HeaderFavoriteShows": "Избранные передачи",
|
||||
|
@ -640,13 +639,11 @@
|
|||
"ValueAlbumCount": "{0} альбом(а/ов)",
|
||||
"ValueDiscNumber": "Диск {0}",
|
||||
"ValueEpisodeCount": "{0} эпизод(а/ов)",
|
||||
"ValueGameCount": "{0} игр(ы)",
|
||||
"ValueMinutes": "{0} мин",
|
||||
"ValueMovieCount": "{0} фильм(а/ов)",
|
||||
"ValueMusicVideoCount": "{0} музыкальных видео",
|
||||
"ValueOneAlbum": "1 альбом",
|
||||
"ValueOneEpisode": "1 эпизод",
|
||||
"ValueOneGame": "1 игра",
|
||||
"ValueOneItem": "1 элемент",
|
||||
"ValueOneMovie": "1 фильм",
|
||||
"ValueOneMusicVideo": "1 музыкальное видео",
|
||||
|
|
|
@ -117,7 +117,6 @@
|
|||
"HeaderFavoriteArtists": "Obľúbení umelci",
|
||||
"HeaderFavoriteCollections": "Obľúbené zbierky",
|
||||
"HeaderFavoriteEpisodes": "Obľúbené epizódy",
|
||||
"HeaderFavoriteGames": "Obľúbené hry",
|
||||
"HeaderFavoriteMovies": "Obľúbené filmy",
|
||||
"HeaderFavoriteSongs": "Obľúbené skladby",
|
||||
"HeaderFavoriteVideos": "Obľúbené videá",
|
||||
|
@ -370,11 +369,9 @@
|
|||
"ValueAlbumCount": "{0} albumov",
|
||||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} epizód",
|
||||
"ValueGameCount": "{0} hier",
|
||||
"ValueMovieCount": "{0} filmov",
|
||||
"ValueMusicVideoCount": "{0} hudobných videí",
|
||||
"ValueOneEpisode": "1 epizóda",
|
||||
"ValueOneGame": "1 hra",
|
||||
"ValueOneItem": "1 položka",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 hudobné video",
|
||||
|
|
|
@ -201,7 +201,6 @@
|
|||
"HeaderFavoriteAlbums": "Favoritalbum",
|
||||
"HeaderFavoriteArtists": "Favoritartister",
|
||||
"HeaderFavoriteEpisodes": "Favoritavsnitt",
|
||||
"HeaderFavoriteGames": "Favoritspel",
|
||||
"HeaderFavoriteMovies": "Favoritfilmer",
|
||||
"HeaderFavoriteShows": "Favoritserier",
|
||||
"HeaderFavoriteSongs": "Favoritlåtar",
|
||||
|
@ -600,11 +599,9 @@
|
|||
"ValueAlbumCount": "{0} album",
|
||||
"ValueDiscNumber": "Skiva {0}",
|
||||
"ValueEpisodeCount": "{0} avsnitt",
|
||||
"ValueGameCount": "{0} spel",
|
||||
"ValueMovieCount": "{0} filmer",
|
||||
"ValueMusicVideoCount": "{0} musikvideor",
|
||||
"ValueOneEpisode": "1 avsnitt",
|
||||
"ValueOneGame": "1 spel",
|
||||
"ValueOneItem": "1 objekt",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 musikvideo",
|
||||
|
|
|
@ -15,13 +15,11 @@
|
|||
"ValueAlbumCount": "{0} альбомів",
|
||||
"ValueDiscNumber": "Диск {0}",
|
||||
"ValueEpisodeCount": "{0} епізодів",
|
||||
"ValueGameCount": "{0} ігр",
|
||||
"ValueMinutes": "{0} хвилин",
|
||||
"ValueMovieCount": "{0} фільмів",
|
||||
"ValueMusicVideoCount": "{0} музичних кліпів",
|
||||
"ValueOneAlbum": "1 альбом",
|
||||
"ValueOneEpisode": "1 епізод",
|
||||
"ValueOneGame": "1 гра",
|
||||
"ValueOneMovie": "1 фільм",
|
||||
"ValueOneMusicVideo": "1 музичний кліп",
|
||||
"ValueOneSeries": "1 серія",
|
||||
|
|
|
@ -161,7 +161,6 @@
|
|||
"HeaderFavoriteArtists": "最爱的艺术家",
|
||||
"HeaderFavoriteCollections": "最爱的收藏",
|
||||
"HeaderFavoriteEpisodes": "最爱的剧集",
|
||||
"HeaderFavoriteGames": "最爱的游戏",
|
||||
"HeaderFavoriteMovies": "最爱的电影",
|
||||
"HeaderFavoritePlaylists": "最爱的播放列表",
|
||||
"HeaderFavoriteShows": "最爱的节目",
|
||||
|
@ -495,13 +494,11 @@
|
|||
"ValueAlbumCount": "{0} 张专辑",
|
||||
"ValueDiscNumber": "盘 {0}",
|
||||
"ValueEpisodeCount": "{0} 集",
|
||||
"ValueGameCount": "{0} 个游戏",
|
||||
"ValueMinutes": "{0} 分钟",
|
||||
"ValueMovieCount": "{0} 个电影",
|
||||
"ValueMusicVideoCount": "{0} 个音乐视频",
|
||||
"ValueOneAlbum": "1张专辑",
|
||||
"ValueOneEpisode": "1 集",
|
||||
"ValueOneGame": "1 个游戏",
|
||||
"ValueOneMovie": "1 个电影",
|
||||
"ValueOneMusicVideo": "1个音乐视频",
|
||||
"ValueOneSeries": "1 个系列",
|
||||
|
|
|
@ -40,7 +40,6 @@
|
|||
"Thursday": "星期四",
|
||||
"Tuesday": "星期二",
|
||||
"ValueEpisodeCount": "{0} 劇集",
|
||||
"ValueGameCount": "{0} 遊戲",
|
||||
"ValueMusicVideoCount": "{0} 個 MV",
|
||||
"ValueOneMusicVideo": "1個 MV",
|
||||
"ValueOneSeries": "1 劇集",
|
||||
|
|
|
@ -53,13 +53,6 @@ define(["loading", "libraryBrowser", "cardBuilder", "dom", "apphost", "imageLoad
|
|||
overlayPlayButton: !0,
|
||||
overlayText: !1,
|
||||
centerText: !0
|
||||
}, {
|
||||
name: "HeaderFavoriteGames",
|
||||
types: "Game",
|
||||
id: "favoriteGames",
|
||||
shape: getSquareShape(),
|
||||
preferThumb: !1,
|
||||
showTitle: !0
|
||||
}, {
|
||||
name: "HeaderFavoriteArtists",
|
||||
types: "MusicArtist",
|
||||
|
@ -174,4 +167,4 @@ define(["loading", "libraryBrowser", "cardBuilder", "dom", "apphost", "imageLoad
|
|||
return {
|
||||
render: loadSections
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -71,7 +71,7 @@ define(["dialogHelper", "globalize", "connectionManager", "events", "browser", "
|
|||
}
|
||||
|
||||
function setVisibility(context, options) {
|
||||
"livetvchannels" != options.mode && "albums" != options.mode && "artists" != options.mode && "albumartists" != options.mode && "songs" != options.mode || hideByClass(context, "videoStandard"), enableDynamicFilters(options.mode) && (context.querySelector(".genreFilters").classList.remove("hide"), context.querySelector(".officialRatingFilters").classList.remove("hide"), context.querySelector(".tagFilters").classList.remove("hide"), context.querySelector(".yearFilters").classList.remove("hide"), context.querySelector(".audioLanguagesFilters").classList.remove("hide")), "movies" != options.mode && "episodes" != options.mode || context.querySelector(".videoTypeFilters").classList.remove("hide"), options.mode, "movies" != options.mode && "series" != options.mode && "games" != options.mode && "episodes" != options.mode || context.querySelector(".features").classList.remove("hide"), "series" == options.mode && context.querySelector(".seriesStatus").classList.remove("hide"), "episodes" == options.mode && showByClass(context, "episodeFilter")
|
||||
"livetvchannels" != options.mode && "albums" != options.mode && "artists" != options.mode && "albumartists" != options.mode && "songs" != options.mode || hideByClass(context, "videoStandard"), enableDynamicFilters(options.mode) && (context.querySelector(".genreFilters").classList.remove("hide"), context.querySelector(".officialRatingFilters").classList.remove("hide"), context.querySelector(".tagFilters").classList.remove("hide"), context.querySelector(".yearFilters").classList.remove("hide"), context.querySelector(".audioLanguagesFilters").classList.remove("hide")), "movies" != options.mode && "episodes" != options.mode || context.querySelector(".videoTypeFilters").classList.remove("hide"), options.mode, "movies" != options.mode && "series" != options.mode && "episodes" != options.mode || context.querySelector(".features").classList.remove("hide"), "series" == options.mode && context.querySelector(".seriesStatus").classList.remove("hide"), "episodes" == options.mode && showByClass(context, "episodeFilter")
|
||||
}
|
||||
|
||||
function showByClass(context, className) {
|
||||
|
@ -83,7 +83,7 @@ define(["dialogHelper", "globalize", "connectionManager", "events", "browser", "
|
|||
}
|
||||
|
||||
function enableDynamicFilters(mode) {
|
||||
return "movies" == mode || "games" == mode || "series" == mode || "albums" == mode || "albumartists" == mode || "artists" == mode || "songs" == mode || "episodes" == mode
|
||||
return "movies" == mode || "series" == mode || "albums" == mode || "albumartists" == mode || "artists" == mode || "songs" == mode || "episodes" == mode
|
||||
}
|
||||
return function(options) {
|
||||
function onFavoriteChange() {
|
||||
|
@ -204,4 +204,4 @@ define(["dialogHelper", "globalize", "connectionManager", "events", "browser", "
|
|||
})
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -226,7 +226,7 @@ define(["globalize", "dom", "emby-checkbox", "emby-select", "emby-input"], funct
|
|||
}
|
||||
|
||||
function setContentType(parent, contentType) {
|
||||
return "homevideos" === contentType || "photos" === contentType ? parent.querySelector(".chkEnablePhotosContainer").classList.remove("hide") : parent.querySelector(".chkEnablePhotosContainer").classList.add("hide"), "tvshows" !== contentType && "movies" !== contentType && "homevideos" !== contentType && "musicvideos" !== contentType && "mixed" !== contentType && contentType ? parent.querySelector(".chapterSettingsSection").classList.add("hide") : parent.querySelector(".chapterSettingsSection").classList.remove("hide"), "tvshows" === contentType ? (parent.querySelector(".chkImportMissingEpisodesContainer").classList.remove("hide"), parent.querySelector(".chkAutomaticallyGroupSeriesContainer").classList.remove("hide"), parent.querySelector(".fldSeasonZeroDisplayName").classList.remove("hide"), parent.querySelector("#txtSeasonZeroName").setAttribute("required", "required")) : (parent.querySelector(".chkImportMissingEpisodesContainer").classList.add("hide"), parent.querySelector(".chkAutomaticallyGroupSeriesContainer").classList.add("hide"), parent.querySelector(".fldSeasonZeroDisplayName").classList.add("hide"), parent.querySelector("#txtSeasonZeroName").removeAttribute("required")), "games" === contentType || "books" === contentType || "boxsets" === contentType || "playlists" === contentType || "music" === contentType ? parent.querySelector(".chkEnableEmbeddedTitlesContainer").classList.add("hide") : parent.querySelector(".chkEnableEmbeddedTitlesContainer").classList.remove("hide"), populateMetadataSettings(parent, contentType)
|
||||
return "homevideos" === contentType || "photos" === contentType ? parent.querySelector(".chkEnablePhotosContainer").classList.remove("hide") : parent.querySelector(".chkEnablePhotosContainer").classList.add("hide"), "tvshows" !== contentType && "movies" !== contentType && "homevideos" !== contentType && "musicvideos" !== contentType && "mixed" !== contentType && contentType ? parent.querySelector(".chapterSettingsSection").classList.add("hide") : parent.querySelector(".chapterSettingsSection").classList.remove("hide"), "tvshows" === contentType ? (parent.querySelector(".chkImportMissingEpisodesContainer").classList.remove("hide"), parent.querySelector(".chkAutomaticallyGroupSeriesContainer").classList.remove("hide"), parent.querySelector(".fldSeasonZeroDisplayName").classList.remove("hide"), parent.querySelector("#txtSeasonZeroName").setAttribute("required", "required")) : (parent.querySelector(".chkImportMissingEpisodesContainer").classList.add("hide"), parent.querySelector(".chkAutomaticallyGroupSeriesContainer").classList.add("hide"), parent.querySelector(".fldSeasonZeroDisplayName").classList.add("hide"), parent.querySelector("#txtSeasonZeroName").removeAttribute("required")), "books" === contentType || "boxsets" === contentType || "playlists" === contentType || "music" === contentType ? parent.querySelector(".chkEnableEmbeddedTitlesContainer").classList.add("hide") : parent.querySelector(".chkEnableEmbeddedTitlesContainer").classList.remove("hide"), populateMetadataSettings(parent, contentType)
|
||||
}
|
||||
|
||||
function setSubtitleFetchersIntoOptions(parent, options) {
|
||||
|
@ -341,4 +341,4 @@ define(["globalize", "dom", "emby-checkbox", "emby-select", "emby-input"], funct
|
|||
setLibraryOptions: setLibraryOptions,
|
||||
setAdvancedVisible: setAdvancedVisible
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div id="indexPage" style="outline: none;" data-role="page" data-dom-cache="true" class="page homePage libraryPage allLibraryPage backdropPage pageWithAbsoluteTabs withTabs" data-backdroptype="movie,series,game,book">
|
||||
<div id="indexPage" style="outline: none;" data-role="page" data-dom-cache="true" class="page homePage libraryPage allLibraryPage backdropPage pageWithAbsoluteTabs withTabs" data-backdroptype="movie,series,book">
|
||||
|
||||
<div class="tabContent pageTabContent" id="homeTab" data-index="0">
|
||||
<div class="sections"></div>
|
||||
|
|
|
@ -108,12 +108,6 @@ define(["appRouter", "cardBuilder", "dom", "globalize", "connectionManager", "ap
|
|||
overlayMoreButton: !0,
|
||||
action: "instantmix",
|
||||
coverImage: !0
|
||||
}, {
|
||||
name: "sharedcomponents#HeaderFavoriteGames",
|
||||
types: "Game",
|
||||
shape: getSquareShape(),
|
||||
preferThumb: !1,
|
||||
showTitle: !0
|
||||
}]
|
||||
}
|
||||
|
||||
|
@ -211,4 +205,4 @@ define(["appRouter", "cardBuilder", "dom", "globalize", "connectionManager", "ap
|
|||
for (var elems = this.sectionsContainer.querySelectorAll(".itemsContainer"), i = 0, length = elems.length; i < length; i++) elems[i].fetchData = null, elems[i].getItemsHtml = null, elems[i].parentContainer = null;
|
||||
this.sectionsContainer = null
|
||||
}, FavoritesTab
|
||||
});
|
||||
});
|
||||
|
|
|
@ -73,7 +73,7 @@ define(["globalize", "listView", "layoutManager", "userSettings", "focusManager"
|
|||
SortBy: sortBy
|
||||
}))
|
||||
}
|
||||
if ("Genre" === item.Type || "GameGenre" === item.Type || "MusicGenre" === item.Type || "Studio" === item.Type || "Person" === item.Type) {
|
||||
if ("Genre" === item.Type || "MusicGenre" === item.Type || "Studio" === item.Type || "Person" === item.Type) {
|
||||
instance.queryRecursive = !0;
|
||||
var query = {
|
||||
StartIndex: startIndex,
|
||||
|
@ -83,7 +83,7 @@ define(["globalize", "listView", "layoutManager", "userSettings", "focusManager"
|
|||
parentId: params.parentId,
|
||||
SortBy: sortBy
|
||||
};
|
||||
return "Studio" === item.Type ? query.StudioIds = item.Id : "Genre" === item.Type || "GameGenre" === item.Type || "MusicGenre" === item.Type ? query.GenreIds = item.Id : "Person" === item.Type && (query.PersonIds = item.Id), "MusicGenre" === item.Type ? query.IncludeItemTypes = "MusicAlbum" : "GameGenre" === item.Type ? query.IncludeItemTypes = "Game" : "movies" === item.CollectionType ? query.IncludeItemTypes = "Movie" : "tvshows" === item.CollectionType ? query.IncludeItemTypes = "Series" : "Genre" === item.Type ? query.IncludeItemTypes = "Movie,Series,Video" : "Person" === item.Type && (query.IncludeItemTypes = params.type), apiClient.getItems(apiClient.getCurrentUserId(), modifyQueryWithFilters(instance, query))
|
||||
return "Studio" === item.Type ? query.StudioIds = item.Id : "Genre" === item.Type || "MusicGenre" === item.Type ? query.GenreIds = item.Id : "Person" === item.Type && (query.PersonIds = item.Id), "MusicGenre" === item.Type ? query.IncludeItemTypes = "MusicAlbum" : "GameGenre" === item.Type ? query.IncludeItemTypes = "Game" : "movies" === item.CollectionType ? query.IncludeItemTypes = "Movie" : "tvshows" === item.CollectionType ? query.IncludeItemTypes = "Series" : "Genre" === item.Type ? query.IncludeItemTypes = "Movie,Series,Video" : "Person" === item.Type && (query.IncludeItemTypes = params.type), apiClient.getItems(apiClient.getCurrentUserId(), modifyQueryWithFilters(instance, query))
|
||||
}
|
||||
return apiClient.getItems(apiClient.getCurrentUserId(), modifyQueryWithFilters(instance, {
|
||||
StartIndex: startIndex,
|
||||
|
@ -100,7 +100,7 @@ define(["globalize", "listView", "layoutManager", "userSettings", "focusManager"
|
|||
if ("Programs" === params.type) return Promise.resolve(null);
|
||||
if ("nextup" === params.type) return Promise.resolve(null);
|
||||
var apiClient = connectionManager.getApiClient(params.serverId),
|
||||
itemId = params.genreId || params.gameGenreId || params.musicGenreId || params.studioId || params.personId || params.parentId;
|
||||
itemId = params.genreId || params.musicGenreId || params.studioId || params.personId || params.parentId;
|
||||
return itemId ? apiClient.getItem(apiClient.getCurrentUserId(), itemId) : Promise.resolve(null)
|
||||
}
|
||||
|
||||
|
@ -247,7 +247,7 @@ define(["globalize", "listView", "layoutManager", "userSettings", "focusManager"
|
|||
}
|
||||
|
||||
function getTitle(item) {
|
||||
return "Recordings" === params.type ? globalize.translate("Recordings") : "Programs" === params.type ? "true" === params.IsMovie ? globalize.translate("Movies") : "true" === params.IsSports ? globalize.translate("Sports") : "true" === params.IsKids ? globalize.translate("HeaderForKids") : "true" === params.IsAiring ? globalize.translate("HeaderOnNow") : "true" === params.IsSeries ? globalize.translate("Shows") : "true" === params.IsNews ? globalize.translate("News") : globalize.translate("Programs") : "nextup" === params.type ? globalize.translate("NextUp") : "favoritemovies" === params.type ? globalize.translate("FavoriteMovies") : item ? item.Name : "Movie" === params.type ? globalize.translate("sharedcomponents#Movies") : "Series" === params.type ? globalize.translate("sharedcomponents#Shows") : "Season" === params.type ? globalize.translate("sharedcomponents#Seasons") : "Episode" === params.type ? globalize.translate("sharedcomponents#Episodes") : "MusicArtist" === params.type ? globalize.translate("sharedcomponents#Artists") : "MusicAlbum" === params.type ? globalize.translate("sharedcomponents#Albums") : "Audio" === params.type ? globalize.translate("sharedcomponents#Songs") : "Game" === params.type ? globalize.translate("sharedcomponents#Games") : "Video" === params.type ? globalize.translate("sharedcomponents#Videos") : void 0
|
||||
return "Recordings" === params.type ? globalize.translate("Recordings") : "Programs" === params.type ? "true" === params.IsMovie ? globalize.translate("Movies") : "true" === params.IsSports ? globalize.translate("Sports") : "true" === params.IsKids ? globalize.translate("HeaderForKids") : "true" === params.IsAiring ? globalize.translate("HeaderOnNow") : "true" === params.IsSeries ? globalize.translate("Shows") : "true" === params.IsNews ? globalize.translate("News") : globalize.translate("Programs") : "nextup" === params.type ? globalize.translate("NextUp") : "favoritemovies" === params.type ? globalize.translate("FavoriteMovies") : item ? item.Name : "Movie" === params.type ? globalize.translate("sharedcomponents#Movies") : "Series" === params.type ? globalize.translate("sharedcomponents#Shows") : "Season" === params.type ? globalize.translate("sharedcomponents#Seasons") : "Episode" === params.type ? globalize.translate("sharedcomponents#Episodes") : "MusicArtist" === params.type ? globalize.translate("sharedcomponents#Artists") : "MusicAlbum" === params.type ? globalize.translate("sharedcomponents#Albums") : "Audio" === params.type ? globalize.translate("sharedcomponents#Songs") : "Video" === params.type ? globalize.translate("sharedcomponents#Videos") : void 0
|
||||
}
|
||||
|
||||
function play() {
|
||||
|
@ -457,6 +457,6 @@ define(["globalize", "listView", "layoutManager", "userSettings", "focusManager"
|
|||
var values = [];
|
||||
values.push("items");
|
||||
var params = this.params;
|
||||
return params.type ? values.push(params.type) : params.parentId && values.push(params.parentId), params.IsAiring && values.push("IsAiring"), params.IsMovie && values.push("IsMovie"), params.IsKids && values.push("IsKids"), params.IsSports && values.push("IsSports"), params.IsNews && values.push("IsNews"), params.IsSeries && values.push("IsSeries"), params.IsFavorite && values.push("IsFavorite"), params.genreId && values.push("Genre"), params.gameGenreId && values.push("GameGenre"), params.musicGenreId && values.push("MusicGenre"), params.studioId && values.push("Studio"), params.personId && values.push("Person"), params.parentId && values.push("Folder"), values.join("-")
|
||||
return params.type ? values.push(params.type) : params.parentId && values.push(params.parentId), params.IsAiring && values.push("IsAiring"), params.IsMovie && values.push("IsMovie"), params.IsKids && values.push("IsKids"), params.IsSports && values.push("IsSports"), params.IsNews && values.push("IsNews"), params.IsSeries && values.push("IsSeries"), params.IsFavorite && values.push("IsFavorite"), params.genreId && values.push("Genre"), params.musicGenreId && values.push("MusicGenre"), params.studioId && values.push("Studio"), params.personId && values.push("Person"), params.parentId && values.push("Folder"), values.join("-")
|
||||
}, ItemsView
|
||||
});
|
||||
});
|
||||
|
|
|
@ -21,9 +21,6 @@ define(["connectionManager", "listView", "cardBuilder", "imageLoader", "libraryB
|
|||
}), item.TrailerCount && sections.push({
|
||||
name: Globalize.translate("TabTrailers"),
|
||||
type: "Trailer"
|
||||
}), item.GameCount && sections.push({
|
||||
name: Globalize.translate("TabGames"),
|
||||
type: "Game"
|
||||
}), item.AlbumCount && sections.push({
|
||||
name: Globalize.translate("TabAlbums"),
|
||||
type: "MusicAlbum"
|
||||
|
@ -97,22 +94,6 @@ define(["connectionManager", "listView", "cardBuilder", "imageLoader", "libraryB
|
|||
overlayPlayButton: !0
|
||||
});
|
||||
break;
|
||||
case "Game":
|
||||
loadItems(element, item, type, {
|
||||
MediaTypes: "",
|
||||
IncludeItemTypes: "Game",
|
||||
PersonTypes: "",
|
||||
ArtistIds: "",
|
||||
AlbumArtistIds: "",
|
||||
Limit: 10,
|
||||
SortBy: "SortName"
|
||||
}, {
|
||||
shape: "portrait",
|
||||
showTitle: !0,
|
||||
centerText: !0,
|
||||
overlayMoreButton: !0
|
||||
});
|
||||
break;
|
||||
case "Trailer":
|
||||
loadItems(element, item, type, {
|
||||
MediaTypes: "",
|
||||
|
@ -229,11 +210,11 @@ define(["connectionManager", "listView", "cardBuilder", "imageLoader", "libraryB
|
|||
}
|
||||
|
||||
function getMoreItemsHref(item, type) {
|
||||
return "Genre" == item.Type ? "list/list.html?type=" + type + "&genreId=" + item.Id + "&serverId=" + item.ServerId : "MusicGenre" == item.Type ? "list/list.html?type=" + type + "&musicGenreId=" + item.Id + "&serverId=" + item.ServerId : "GameGenre" == item.Type ? "list/list.html?type=" + type + "&gameGenreId=" + item.Id + "&serverId=" + item.ServerId : "Studio" == item.Type ? "list/list.html?type=" + type + "&studioId=" + item.Id + "&serverId=" + item.ServerId : "MusicArtist" == item.Type ? "list/list.html?type=" + type + "&artistId=" + item.Id + "&serverId=" + item.ServerId : "Person" == item.Type ? "list/list.html?type=" + type + "&personId=" + item.Id + "&serverId=" + item.ServerId : "list/list.html?type=" + type + "&parentId=" + item.Id + "&serverId=" + item.ServerId
|
||||
return "Genre" == item.Type ? "list/list.html?type=" + type + "&genreId=" + item.Id + "&serverId=" + item.ServerId : "MusicGenre" == item.Type ? "list/list.html?type=" + type + "&musicGenreId=" + item.Id + "&serverId=" + item.ServerId : "Studio" == item.Type ? "list/list.html?type=" + type + "&studioId=" + item.Id + "&serverId=" + item.ServerId : "MusicArtist" == item.Type ? "list/list.html?type=" + type + "&artistId=" + item.Id + "&serverId=" + item.ServerId : "Person" == item.Type ? "list/list.html?type=" + type + "&personId=" + item.Id + "&serverId=" + item.ServerId : "list/list.html?type=" + type + "&parentId=" + item.Id + "&serverId=" + item.ServerId
|
||||
}
|
||||
|
||||
function addCurrentItemToQuery(query, item) {
|
||||
"Person" == item.Type ? query.PersonIds = item.Id : "Genre" == item.Type ? query.GenreIds = item.Id : "MusicGenre" == item.Type ? query.GenreIds = item.Id : "GameGenre" == item.Type ? query.GenreIds = item.Id : "Studio" == item.Type ? query.StudioIds = item.Id : "MusicArtist" == item.Type && (connectionManager.getApiClient(item.ServerId).isMinServerVersion("3.4.1.18") ? query.AlbumArtistIds = item.Id : query.ArtistIds = item.Id)
|
||||
"Person" == item.Type ? query.PersonIds = item.Id : "Genre" == item.Type ? query.GenreIds = item.Id : "MusicGenre" == item.Type ? query.GenreIds = item.Id : "Studio" == item.Type ? query.StudioIds = item.Id : "MusicArtist" == item.Type && (connectionManager.getApiClient(item.ServerId).isMinServerVersion("3.4.1.18") ? query.AlbumArtistIds = item.Id : query.ArtistIds = item.Id)
|
||||
}
|
||||
|
||||
function getQuery(options, item) {
|
||||
|
@ -260,4 +241,4 @@ define(["connectionManager", "listView", "cardBuilder", "imageLoader", "libraryB
|
|||
window.ItemsByName = {
|
||||
renderItems: renderItems
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -8,7 +8,6 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "cardBuild
|
|||
var name = params.genre;
|
||||
if (name) return apiClient.getGenre(name, apiClient.getCurrentUserId());
|
||||
if (name = params.musicgenre) return apiClient.getMusicGenre(name, apiClient.getCurrentUserId());
|
||||
if (name = params.gamegenre) return apiClient.getGameGenre(name, apiClient.getCurrentUserId());
|
||||
if (name = params.musicartist) return apiClient.getArtist(name, apiClient.getCurrentUserId());
|
||||
throw new Error("Invalid request")
|
||||
}
|
||||
|
@ -441,7 +440,7 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "cardBuild
|
|||
}
|
||||
|
||||
function setInitialCollapsibleState(page, item, apiClient, context, user) {
|
||||
page.querySelector(".collectionItems").innerHTML = "", "Playlist" == item.Type ? (page.querySelector("#childrenCollapsible").classList.remove("hide"), renderPlaylistItems(page, item, user)) : "Studio" == item.Type || "Person" == item.Type || "Genre" == item.Type || "MusicGenre" == item.Type || "GameGenre" == item.Type || "MusicArtist" == item.Type ? (page.querySelector("#childrenCollapsible").classList.remove("hide"), renderItemsByName(page, item, user)) : item.IsFolder ? ("BoxSet" == item.Type && page.querySelector("#childrenCollapsible").classList.add("hide"), renderChildren(page, item)) : page.querySelector("#childrenCollapsible").classList.add("hide"), "Series" == item.Type && renderSeriesSchedule(page, item, user), "Series" == item.Type ? renderNextUp(page, item, user) : page.querySelector(".nextUpSection").classList.add("hide"), item.MediaSources && item.MediaSources.length && (null == item.EnableMediaSourceDisplay ? "Channel" !== item.SourceType : item.EnableMediaSourceDisplay) ? renderMediaSources(page, user, item) : page.querySelector(".audioVideoMediaInfo").classList.add("hide"), renderScenes(page, item), item.SpecialFeatureCount && 0 != item.SpecialFeatureCount && "Series" != item.Type ? (page.querySelector("#specialsCollapsible").classList.remove("hide"), renderSpecials(page, item, user, 6)) : page.querySelector("#specialsCollapsible").classList.add("hide"), renderCast(page, item, context, enableScrollX() ? null : 12), item.PartCount && item.PartCount > 1 ? (page.querySelector("#additionalPartsCollapsible").classList.remove("hide"), renderAdditionalParts(page, item, user)) : page.querySelector("#additionalPartsCollapsible").classList.add("hide"), "MusicAlbum" == item.Type ? renderMusicVideos(page, item, user) : page.querySelector("#musicVideosCollapsible").classList.add("hide")
|
||||
page.querySelector(".collectionItems").innerHTML = "", "Playlist" == item.Type ? (page.querySelector("#childrenCollapsible").classList.remove("hide"), renderPlaylistItems(page, item, user)) : "Studio" == item.Type || "Person" == item.Type || "Genre" == item.Type || "MusicGenre" == item.Type || "MusicArtist" == item.Type ? (page.querySelector("#childrenCollapsible").classList.remove("hide"), renderItemsByName(page, item, user)) : item.IsFolder ? ("BoxSet" == item.Type && page.querySelector("#childrenCollapsible").classList.add("hide"), renderChildren(page, item)) : page.querySelector("#childrenCollapsible").classList.add("hide"), "Series" == item.Type && renderSeriesSchedule(page, item, user), "Series" == item.Type ? renderNextUp(page, item, user) : page.querySelector(".nextUpSection").classList.add("hide"), item.MediaSources && item.MediaSources.length && (null == item.EnableMediaSourceDisplay ? "Channel" !== item.SourceType : item.EnableMediaSourceDisplay) ? renderMediaSources(page, user, item) : page.querySelector(".audioVideoMediaInfo").classList.add("hide"), renderScenes(page, item), item.SpecialFeatureCount && 0 != item.SpecialFeatureCount && "Series" != item.Type ? (page.querySelector("#specialsCollapsible").classList.remove("hide"), renderSpecials(page, item, user, 6)) : page.querySelector("#specialsCollapsible").classList.add("hide"), renderCast(page, item, context, enableScrollX() ? null : 12), item.PartCount && item.PartCount > 1 ? (page.querySelector("#additionalPartsCollapsible").classList.remove("hide"), renderAdditionalParts(page, item, user)) : page.querySelector("#additionalPartsCollapsible").classList.add("hide"), "MusicAlbum" == item.Type ? renderMusicVideos(page, item, user) : page.querySelector("#musicVideosCollapsible").classList.add("hide")
|
||||
}
|
||||
|
||||
function renderOverview(elems, item) {
|
||||
|
@ -459,9 +458,6 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "cardBuild
|
|||
context = context || inferContext(item);
|
||||
var type, genres = item.GenreItems || [];
|
||||
switch (context) {
|
||||
case "games":
|
||||
type = "GameGenre";
|
||||
break;
|
||||
case "music":
|
||||
type = "MusicGenre";
|
||||
break;
|
||||
|
@ -604,7 +600,7 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "cardBuild
|
|||
function renderSimilarItems(page, item, context) {
|
||||
var similarCollapsible = page.querySelector("#similarCollapsible");
|
||||
if (similarCollapsible) {
|
||||
if ("Movie" != item.Type && "Trailer" != item.Type && "Series" != item.Type && "Program" != item.Type && "Recording" != item.Type && "Game" != item.Type && "MusicAlbum" != item.Type && "MusicArtist" != item.Type && "Playlist" != item.Type) return void similarCollapsible.classList.add("hide");
|
||||
if ("Movie" != item.Type && "Trailer" != item.Type && "Series" != item.Type && "Program" != item.Type && "Recording" != item.Type && "MusicAlbum" != item.Type && "MusicArtist" != item.Type && "Playlist" != item.Type) return void similarCollapsible.classList.add("hide");
|
||||
similarCollapsible.classList.remove("hide");
|
||||
var apiClient = connectionManager.getApiClient(item.ServerId),
|
||||
options = {
|
||||
|
@ -733,14 +729,7 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "cardBuild
|
|||
imagePlayButton: !0,
|
||||
includeParentInfoInTitle: !1
|
||||
}))
|
||||
} else "GameSystem" == item.Type && (html = cardBuilder.getCardsHtml({
|
||||
items: result.Items,
|
||||
shape: "auto",
|
||||
showTitle: !0,
|
||||
centerText: !0,
|
||||
lazy: !0,
|
||||
showDetailsMenu: !0
|
||||
}));
|
||||
}
|
||||
if ("BoxSet" !== item.Type && page.querySelector("#childrenCollapsible").classList.remove("hide"), scrollX ? (childrenItemsContainer.classList.add("scrollX"), childrenItemsContainer.classList.add("hiddenScrollX"), childrenItemsContainer.classList.remove("vertical-wrap"), childrenItemsContainer.classList.remove("vertical-list")) : (childrenItemsContainer.classList.remove("scrollX"), childrenItemsContainer.classList.remove("hiddenScrollX"), childrenItemsContainer.classList.remove("smoothScrollX"), isList ? (childrenItemsContainer.classList.add("vertical-list"), childrenItemsContainer.classList.remove("vertical-wrap")) : (childrenItemsContainer.classList.add("vertical-wrap"), childrenItemsContainer.classList.remove("vertical-list"))), childrenItemsContainer.innerHTML = html, imageLoader.lazyChildren(childrenItemsContainer), "BoxSet" == item.Type) {
|
||||
var collectionItemTypes = [{
|
||||
name: globalize.translate("HeaderVideos"),
|
||||
|
@ -751,16 +740,13 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "cardBuild
|
|||
}, {
|
||||
name: globalize.translate("HeaderAlbums"),
|
||||
type: "MusicAlbum"
|
||||
}, {
|
||||
name: globalize.translate("HeaderGames"),
|
||||
type: "Game"
|
||||
}, {
|
||||
name: globalize.translate("HeaderBooks"),
|
||||
type: "Book"
|
||||
}];
|
||||
renderCollectionItems(page, item, collectionItemTypes, result.Items)
|
||||
}
|
||||
}), "Season" == item.Type ? page.querySelector("#childrenTitle").innerHTML = globalize.translate("HeaderEpisodes") : "Series" == item.Type ? page.querySelector("#childrenTitle").innerHTML = globalize.translate("HeaderSeasons") : "MusicAlbum" == item.Type ? page.querySelector("#childrenTitle").innerHTML = globalize.translate("HeaderTracks") : "GameSystem" == item.Type ? page.querySelector("#childrenTitle").innerHTML = globalize.translate("HeaderGames") : page.querySelector("#childrenTitle").innerHTML = globalize.translate("HeaderItems"), "MusicAlbum" == item.Type || "Season" == item.Type ? (page.querySelector(".childrenSectionHeader").classList.add("hide"), page.querySelector("#childrenCollapsible").classList.add("verticalSection-extrabottompadding")) : page.querySelector(".childrenSectionHeader").classList.remove("hide")
|
||||
}), "Season" == item.Type ? page.querySelector("#childrenTitle").innerHTML = globalize.translate("HeaderEpisodes") : "Series" == item.Type ? page.querySelector("#childrenTitle").innerHTML = globalize.translate("HeaderSeasons") : "MusicAlbum" == item.Type ? page.querySelector("#childrenTitle").innerHTML = globalize.translate("HeaderTracks") : page.querySelector("#childrenTitle").innerHTML = globalize.translate("HeaderItems"), "MusicAlbum" == item.Type || "Season" == item.Type ? (page.querySelector(".childrenSectionHeader").classList.add("hide"), page.querySelector("#childrenCollapsible").classList.add("verticalSection-extrabottompadding")) : page.querySelector(".childrenSectionHeader").classList.remove("hide")
|
||||
}
|
||||
|
||||
function renderItemsByName(page, item, user) {
|
||||
|
@ -851,7 +837,7 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "cardBuild
|
|||
}
|
||||
|
||||
function inferContext(item) {
|
||||
return "Movie" === item.Type || "BoxSet" === item.Type ? "movies" : "Series" === item.Type || "Season" === item.Type || "Episode" === item.Type ? "tvshows" : "Game" === item.Type || "GameSystem" === item.Type ? "games" : "Game" === item.Type || "GameSystem" === item.Type ? "games" : "MusicArtist" === item.Type || "MusicAlbum" === item.Type || "Audio" === item.Type || "AudioBook" === item.Type ? "music" : "Program" === item.Type ? "livetv" : null
|
||||
return "Movie" === item.Type || "BoxSet" === item.Type ? "movies" : "Series" === item.Type || "Season" === item.Type || "Episode" === item.Type ? "tvshows" : "MusicArtist" === item.Type || "MusicAlbum" === item.Type || "Audio" === item.Type || "AudioBook" === item.Type ? "music" : "Program" === item.Type ? "livetv" : null
|
||||
}
|
||||
|
||||
function filterItemsByCollectionItemType(items, typeInfo) {
|
||||
|
|
|
@ -558,9 +558,6 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
|
|||
else if ("playlists" === i.CollectionType) {
|
||||
icon = "view_list";
|
||||
}
|
||||
else if ("games" === i.CollectionType) {
|
||||
icon = "games";
|
||||
}
|
||||
else if ("movies" === i.CollectionType) {
|
||||
icon = "video_library";
|
||||
}
|
||||
|
|
|
@ -202,10 +202,6 @@ define(["jQuery", "apphost", "scripts/taskbutton", "loading", "libraryMenu", "gl
|
|||
name: globalize.translate("FolderTypeBooks"),
|
||||
value: "books",
|
||||
message: getLink("BookLibraryHelp", "https://web.archive.org/web/20181216120305/https://github.com/MediaBrowser/Wiki/wiki/Book-naming")
|
||||
}, {
|
||||
name: globalize.translate("FolderTypeGames"),
|
||||
value: "games",
|
||||
message: globalize.translate("MessageGamePluginRequired")
|
||||
}, {
|
||||
name: globalize.translate("OptionHomeVideos"),
|
||||
value: "homevideos"
|
||||
|
@ -230,8 +226,6 @@ define(["jQuery", "apphost", "scripts/taskbutton", "loading", "libraryMenu", "gl
|
|||
case "livetv":
|
||||
case "tvshows":
|
||||
return "live_tv";
|
||||
case "games":
|
||||
return "folder";
|
||||
case "trailers":
|
||||
return "local_movies";
|
||||
case "homevideos":
|
||||
|
@ -310,4 +304,4 @@ define(["jQuery", "apphost", "scripts/taskbutton", "loading", "libraryMenu", "gl
|
|||
button: page.querySelector(".btnRefresh")
|
||||
})
|
||||
})
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1280,7 +1280,6 @@ var Dashboard = {
|
|||
if ("SeriesTimer" == itemType) return "itemdetails.html?seriesTimerId=" + id + "&serverId=" + serverId;
|
||||
if ("livetv" == item.CollectionType) return "livetv.html";
|
||||
if ("Genre" === item.Type) return url = "list/list.html?genreId=" + item.Id + "&serverId=" + serverId, "livetv" === context && (url += "&type=Programs"), options.parentId && (url += "&parentId=" + options.parentId), url;
|
||||
if ("GameGenre" === item.Type) return url = "list/list.html?gameGenreId=" + item.Id + "&serverId=" + serverId, options.parentId && (url += "&parentId=" + options.parentId), url;
|
||||
if ("MusicGenre" === item.Type) return url = "list/list.html?musicGenreId=" + item.Id + "&serverId=" + serverId, options.parentId && (url += "&parentId=" + options.parentId), url;
|
||||
if ("Studio" === item.Type) return url = "list/list.html?studioId=" + item.Id + "&serverId=" + serverId, options.parentId && (url += "&parentId=" + options.parentId), url;
|
||||
if ("folders" !== context && !itemHelper.isLocalItem(item)) {
|
||||
|
@ -1293,7 +1292,6 @@ var Dashboard = {
|
|||
if ("Program" == itemType) return "itemdetails.html?id=" + id + "&serverId=" + serverId;
|
||||
if ("BoxSet" == itemType) return "itemdetails.html?id=" + id + "&serverId=" + serverId;
|
||||
if ("MusicAlbum" == itemType) return "itemdetails.html?id=" + id + "&serverId=" + serverId;
|
||||
if ("GameSystem" == itemType) return "itemdetails.html?id=" + id + "&serverId=" + serverId;
|
||||
if ("MusicGenre" == itemType) return "itemdetails.html?id=" + id + "&serverId=" + serverId;
|
||||
if ("Person" == itemType) return "itemdetails.html?id=" + id + "&serverId=" + serverId;
|
||||
if ("Recording" == itemType) return "itemdetails.html?id=" + id + "&serverId=" + serverId;
|
||||
|
|
|
@ -26,9 +26,6 @@ define(["jQuery", "datetime", "loading", "libraryMenu", "listViewStyle", "paper-
|
|||
var items = [{
|
||||
name: Globalize.translate("OptionBlockBooks"),
|
||||
value: "Book"
|
||||
}, {
|
||||
name: Globalize.translate("OptionBlockGames"),
|
||||
value: "Game"
|
||||
}, {
|
||||
name: Globalize.translate("OptionBlockChannelContent"),
|
||||
value: "ChannelContent"
|
||||
|
@ -185,4 +182,4 @@ define(["jQuery", "datetime", "loading", "libraryMenu", "listViewStyle", "paper-
|
|||
loadUser(page, responses[0], responses[1])
|
||||
})
|
||||
})
|
||||
});
|
||||
});
|
||||
|
|
|
@ -202,7 +202,6 @@
|
|||
"FileReadCancelled": "تم الغاء قراءة الملف.",
|
||||
"FileReadError": "حدث خطأ بقراءة الملف.",
|
||||
"FolderTypeBooks": "كتب",
|
||||
"FolderTypeGames": "ألعاب",
|
||||
"FolderTypeInherit": "توريث",
|
||||
"FolderTypeMixed": "محتوى منوع",
|
||||
"FolderTypeMovies": "أفلام",
|
||||
|
@ -318,7 +317,6 @@
|
|||
"HeaderFavoriteAlbums": "الألبومات المفضلة",
|
||||
"HeaderFavoriteArtists": "الفنانون المفضلون",
|
||||
"HeaderFavoriteEpisodes": "الحلقات المفضلة",
|
||||
"HeaderFavoriteGames": "الألعاب المفضلة",
|
||||
"HeaderFavoriteMovies": "الأفلام المفضلة",
|
||||
"HeaderFavoriteShows": "المسلسلات المفضلة",
|
||||
"HeaderFavoriteSongs": "الأغاني المفضلة",
|
||||
|
@ -331,7 +329,6 @@
|
|||
"HeaderForgotPassword": "نسيت كلمة السر",
|
||||
"HeaderFreeApps": "تطبيقات أمبي المجانية",
|
||||
"HeaderFrequentlyPlayed": "تم تشغيله مراراً",
|
||||
"HeaderGames": "الألعاب",
|
||||
"HeaderGenres": "أنواع الأفلام",
|
||||
"HeaderGuests": "الضيوف",
|
||||
"HeaderGuideProviders": "مزودو الأدلة",
|
||||
|
@ -1033,7 +1030,6 @@
|
|||
"MessageForgotPasswordFileCreated": "الملف التالي قد أنشيء على خادمك وهو يحتوي على التوجيهات لكيفية البدء:",
|
||||
"MessageForgotPasswordFileExpiration": "إعادة إعداد الرمز الشخصي ستنتهي صلاحيته في {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "الرجاء المحاولة من خلال شبكة المنزل لبدء عملية إعادة إعداد كملة السر.",
|
||||
"MessageGamePluginRequired": "هذا يتطلب تثبيت ملحق متصفح الألعاب GameBrowser .",
|
||||
"MessageGuestSharingPermissionsHelp": "معظم المزايا غير متاحة للضيوف في البداية لكن يمكنك أن تفعلها عند الحاجة.",
|
||||
"MessageInstallPluginFromApp": "هذا الملحق يجب أن يثبت من داخل التطبيق الذي تريد استخدامه بداخله.",
|
||||
"MessageInvalidForgotPasswordPin": "لقد تم إدخال رمز شخصي غير صحيح أو منتهي الصلاحية. الرجاء المحاولة مرة أخرى.",
|
||||
|
@ -1139,7 +1135,6 @@
|
|||
"OptionBirthLocation": "مكان الميلاد",
|
||||
"OptionBlockBooks": "الكتب",
|
||||
"OptionBlockChannelContent": "محتوى قنوات الإنترنت",
|
||||
"OptionBlockGames": "الألعاب",
|
||||
"OptionBlockLiveTvChannels": "قنوات التلفاز المباشر",
|
||||
"OptionBlockLiveTvPrograms": "برامج التلفاز المباشر",
|
||||
"OptionBlockMovies": "الأفلام",
|
||||
|
@ -1220,8 +1215,6 @@
|
|||
"OptionFolderSort": "المجلد",
|
||||
"OptionFriday": "الجمعة",
|
||||
"OptionFridayShort": "الجمعة",
|
||||
"OptionGameSystems": "أنظمة الألعاب",
|
||||
"OptionGames": "الألعاب",
|
||||
"OptionGenres": "أنواع الأفلام",
|
||||
"OptionGuestStars": "ضيوف الشرف",
|
||||
"OptionHasSpecialFeatures": "المحتويات الخاصة",
|
||||
|
@ -1440,7 +1433,6 @@
|
|||
"TabFavorites": "المفضلة",
|
||||
"TabFilter": "ترشيح",
|
||||
"TabFolders": "مجلدات",
|
||||
"TabGames": "الألعاب",
|
||||
"TabGeneral": "عام",
|
||||
"TabGenres": "أنواع الأفلام",
|
||||
"TabGuide": "الدليل",
|
||||
|
@ -1544,7 +1536,6 @@
|
|||
"ValueDiscNumber": "القرص {0}",
|
||||
"ValueEpisodeCount": "{0} حلقة/حلقات",
|
||||
"ValueExample": "مثال: {0}",
|
||||
"ValueGameCount": "{0} لعبة/ألعاب",
|
||||
"ValueGuestStar": "ضيف الشرف",
|
||||
"ValueItemCount": "{0} عنصر",
|
||||
"ValueItemCountPlural": "{0} عنصر/عناصر",
|
||||
|
@ -1554,7 +1545,6 @@
|
|||
"ValueMusicVideoCount": "{0} فيديو(هات) موسيقيـ(ـة)",
|
||||
"ValueOneAlbum": "ألبوم واحد",
|
||||
"ValueOneEpisode": "حلقة واحدة",
|
||||
"ValueOneGame": "لعبة واحدة",
|
||||
"ValueOneMovie": "فيلم واحد",
|
||||
"ValueOneMusicVideo": "فيديو موسيقي واحد",
|
||||
"ValueOneSeries": "مسلسل واحدة",
|
||||
|
@ -1576,7 +1566,6 @@
|
|||
"VersionNumber": "الإصدار {0}",
|
||||
"ViewPlaybackInfo": "عرض معلومات التشغيل",
|
||||
"ViewTypeFolders": "المجلدات",
|
||||
"ViewTypeGames": "الألعاب",
|
||||
"ViewTypeLiveTvChannels": "القنوات",
|
||||
"ViewTypeLiveTvRecordingGroups": "المقاطع المسجلة",
|
||||
"ViewTypeMovies": "الأفلام",
|
||||
|
|
|
@ -117,7 +117,6 @@
|
|||
"FastForward": "Превъртане напред",
|
||||
"FeatureRequiresJellyfinPremiere": "Функцията изисква активен абонамент за премиерното издание на Емби.",
|
||||
"FolderTypeBooks": "Книги",
|
||||
"FolderTypeGames": "Игри",
|
||||
"FolderTypeInherit": "Наследяване",
|
||||
"FolderTypeMixed": "Смесено съдържание",
|
||||
"FolderTypeMovies": "Филми",
|
||||
|
@ -192,7 +191,6 @@
|
|||
"HeaderFavoriteAlbums": "Любими албуми",
|
||||
"HeaderFavoriteArtists": "Любими изпълнители",
|
||||
"HeaderFavoriteEpisodes": "Любими епизоди",
|
||||
"HeaderFavoriteGames": "Любими игри",
|
||||
"HeaderFavoriteMovies": "Любими филми",
|
||||
"HeaderFavoriteShows": "Любими предавания",
|
||||
"HeaderFavoriteSongs": "Любими песни",
|
||||
|
@ -205,7 +203,6 @@
|
|||
"HeaderForgotKey": "Забравен ключ",
|
||||
"HeaderForgotPassword": "Забравена парола",
|
||||
"HeaderFrequentlyPlayed": "Често пускани",
|
||||
"HeaderGames": "Игри",
|
||||
"HeaderGenres": "Жанрове",
|
||||
"HeaderGuests": "Гости",
|
||||
"HeaderGuideProviders": "Доставчици на справочници",
|
||||
|
@ -646,7 +643,6 @@
|
|||
"OptionBanner": "Банер",
|
||||
"OptionBeta": "Бета",
|
||||
"OptionBlockBooks": "Книги",
|
||||
"OptionBlockGames": "Игри",
|
||||
"OptionBlockLiveTvPrograms": "Телевизионни програми",
|
||||
"OptionBlockMovies": "Филми",
|
||||
"OptionBlockTvShows": "Телевизионни сериали",
|
||||
|
@ -694,8 +690,6 @@
|
|||
"OptionFolderSort": "Папки",
|
||||
"OptionFriday": "Петък",
|
||||
"OptionFridayShort": "Петък",
|
||||
"OptionGameSystems": "Игрови системи",
|
||||
"OptionGames": "Игри",
|
||||
"OptionGenres": "Жанрове",
|
||||
"OptionGuestStars": "Гостуващи звезди",
|
||||
"OptionHasSpecialFeatures": "Специални функции",
|
||||
|
@ -857,7 +851,6 @@
|
|||
"TabFavorites": "Любими",
|
||||
"TabFilter": "Филтър",
|
||||
"TabFolders": "Папки",
|
||||
"TabGames": "Игри",
|
||||
"TabGeneral": "Главно",
|
||||
"TabGenres": "Жанрове",
|
||||
"TabGuide": "Ръководство",
|
||||
|
@ -945,7 +938,6 @@
|
|||
"ValueConditions": "Условия: {0}",
|
||||
"ValueDateCreated": "Дата на създаване: {0}",
|
||||
"ValueExample": "Пример: {0}",
|
||||
"ValueGameCount": "{0} игри",
|
||||
"ValueGuestStar": "Гостуваща звезда",
|
||||
"ValueLinks": "Препратки: {0}",
|
||||
"ValueMinutes": "{0} минути",
|
||||
|
@ -959,7 +951,6 @@
|
|||
"ValueVideoCodec": "Видеокодек: {0}",
|
||||
"VersionNumber": "Версия {0}",
|
||||
"ViewTypeFolders": "Папки",
|
||||
"ViewTypeGames": "Игри",
|
||||
"ViewTypeLiveTvChannels": "Канали",
|
||||
"ViewTypeLiveTvRecordingGroups": "Записи",
|
||||
"ViewTypeMovies": "Филми",
|
||||
|
|
|
@ -122,7 +122,6 @@
|
|||
"FileReadCancelled": "La lectura de l'arxiu ha estat cancel·lada.",
|
||||
"FileReadError": "S'ha produït un error en llegir el fitxer.",
|
||||
"FolderTypeBooks": "Llibres",
|
||||
"FolderTypeGames": "Jocs",
|
||||
"FolderTypeInherit": "Heretat",
|
||||
"FolderTypeMixed": "Contingut mesclat",
|
||||
"FolderTypeMovies": "Pel·lícules",
|
||||
|
@ -209,7 +208,6 @@
|
|||
"HeaderForgotPassword": "He oblidat la contrasenya",
|
||||
"HeaderFreeApps": "Apps d'Jellyfin gratuïtes.",
|
||||
"HeaderFrequentlyPlayed": "Reproduït Freqüentment",
|
||||
"HeaderGames": "Jocs",
|
||||
"HeaderGenres": "Gèneres",
|
||||
"HeaderGuests": "Convidats",
|
||||
"HeaderHomePage": "Pàgina d'Inici",
|
||||
|
@ -585,7 +583,6 @@
|
|||
"MessageNoServicesInstalled": "No hi ha serveis instal·lats actualment.",
|
||||
"MessageNoTrailersFound": "No s'han trobat tràilers. Instal·la el canal Trailer per millorar la teva experiència amb les pel·lícules afegint una llibreria de tràilers d'internet.",
|
||||
"MessageNothingHere": "Res aquí.",
|
||||
"MessagePaymentServicesUnavailable": "Els serveis de pagament no estan disponibles actualment. Siusplau, intenta-ho més tard.",
|
||||
"MessagePleaseEnsureInternetMetadata": "Si et plau, assegura't que la descàrrega de metadades d'internet està habilitada.",
|
||||
"MessagePleaseRestart": "Si et plau, reinicia per finalitzar l'actualització.",
|
||||
"MessagePleaseRestartServerToFinishUpdating": "Si et plau, reinicia el servidor per finalitzar les actualitzacions.",
|
||||
|
@ -626,7 +623,6 @@
|
|||
"OptionBackdrop": "Teló de fons",
|
||||
"OptionBestAvailableStreamQuality": "Millor disponible",
|
||||
"OptionBlockBooks": "Llibres",
|
||||
"OptionBlockGames": "Jocs",
|
||||
"OptionBlockLiveTvPrograms": "Programes de TV en directe",
|
||||
"OptionBlockMovies": "Pel·lícules",
|
||||
"OptionBlockMusic": "Música",
|
||||
|
@ -674,7 +670,6 @@
|
|||
"OptionFolderSort": "Directoris",
|
||||
"OptionFriday": "Divendres",
|
||||
"OptionFridayShort": "Div",
|
||||
"OptionGames": "Jocs",
|
||||
"OptionGuestStars": "Artistes Convidats",
|
||||
"OptionHasSpecialFeatures": "Característiques Especials",
|
||||
"OptionHasSubtitles": "Subtítols",
|
||||
|
@ -822,7 +817,6 @@
|
|||
"TabFavorites": "Preferits",
|
||||
"TabFilter": "Filtrar",
|
||||
"TabFolders": "Directoris",
|
||||
"TabGames": "Jocs",
|
||||
"TabGenres": "Gèneres",
|
||||
"TabGuide": "Guia",
|
||||
"TabHelp": "Ajuda",
|
||||
|
@ -910,7 +904,6 @@
|
|||
"VersionNumber": "Versió {0}",
|
||||
"ViewPlaybackInfo": "Veure informació de reproducció",
|
||||
"ViewTypeFolders": "Directoris",
|
||||
"ViewTypeGames": "Jocs",
|
||||
"ViewTypeLiveTvChannels": "Canals",
|
||||
"ViewTypeLiveTvRecordingGroups": "Enregistraments",
|
||||
"ViewTypeMovies": "Pel·lícules",
|
||||
|
|
|
@ -189,7 +189,6 @@
|
|||
"FileReadCancelled": "Čtení souboru bylo zrušeno.",
|
||||
"FileReadError": "Nastala chyba při načítání souboru.",
|
||||
"FolderTypeBooks": "Knihy",
|
||||
"FolderTypeGames": "Hry",
|
||||
"FolderTypeInherit": "Zdědit",
|
||||
"FolderTypeMixed": "Smíšený obsah",
|
||||
"FolderTypeMovies": "Filmy",
|
||||
|
@ -301,7 +300,6 @@
|
|||
"HeaderFavoriteAlbums": "Oblíbená alba",
|
||||
"HeaderFavoriteArtists": "Oblíbení umělci",
|
||||
"HeaderFavoriteEpisodes": "Oblíbené epizody",
|
||||
"HeaderFavoriteGames": "Oblíbené hry",
|
||||
"HeaderFavoriteMovies": "Oblíbené filmy",
|
||||
"HeaderFavoriteShows": "Oblíbené seriály",
|
||||
"HeaderFavoriteSongs": "Oblíbená hudba",
|
||||
|
@ -314,7 +312,6 @@
|
|||
"HeaderForgotPassword": "Zapomenuté heslo",
|
||||
"HeaderFreeApps": "Jellyfin Apps zdarma",
|
||||
"HeaderFrequentlyPlayed": "Nejčastěji přehráváno",
|
||||
"HeaderGames": "Hry",
|
||||
"HeaderGenres": "Žánry",
|
||||
"HeaderGuests": "Hosté",
|
||||
"HeaderGuideProviders": "Průvodce poskytovatelů",
|
||||
|
@ -986,7 +983,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Následující soubor byl vytvořen na serveru a obsahuje pokyny, jak postupovat:",
|
||||
"MessageForgotPasswordFileExpiration": "Resetování pinu vyprší v {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Zkuste to prosím znovu uvnitř vaší domácí sítě pro zahájení procesu resetování hesla.",
|
||||
"MessageGamePluginRequired": "Vyžaduje instalaci zásuvného modulu GameBrowser",
|
||||
"MessageGuestSharingPermissionsHelp": "Většina vlastností je nedostupná ve výchozím stavu pro hosty, ale mohou být aktivovány dle potřeby.",
|
||||
"MessageInstallPluginFromApp": "Tento zásuvný modul musí být instalován z aplikace, který jej používá.",
|
||||
"MessageInvalidForgotPasswordPin": "Neplatný zadádní pinu. Prosím zkuste to znovu.",
|
||||
|
@ -1087,7 +1083,6 @@
|
|||
"OptionBirthLocation": "Místo narození",
|
||||
"OptionBlockBooks": "Knihy",
|
||||
"OptionBlockChannelContent": "Obsah internetového kanálu",
|
||||
"OptionBlockGames": "Hry",
|
||||
"OptionBlockLiveTvChannels": "Kanály Live TV",
|
||||
"OptionBlockLiveTvPrograms": "Programy Live TV",
|
||||
"OptionBlockMovies": "Filmy",
|
||||
|
@ -1165,8 +1160,6 @@
|
|||
"OptionFolderSort": "Složky",
|
||||
"OptionFriday": "Pátek",
|
||||
"OptionFridayShort": "Pát",
|
||||
"OptionGameSystems": "Herní systémy",
|
||||
"OptionGames": "Hry",
|
||||
"OptionGenres": "Žánry",
|
||||
"OptionGuestStars": "Hosté",
|
||||
"OptionHasSpecialFeatures": "Speciální funkce",
|
||||
|
@ -1371,7 +1364,6 @@
|
|||
"TabFavorites": "Oblíbené",
|
||||
"TabFilter": "Filtr",
|
||||
"TabFolders": "Složky",
|
||||
"TabGames": "Hry",
|
||||
"TabGeneral": "Obecné",
|
||||
"TabGenres": "Žánry",
|
||||
"TabGuide": "Průvodce",
|
||||
|
@ -1468,7 +1460,6 @@
|
|||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} epizod",
|
||||
"ValueExample": "Příklad: {0}",
|
||||
"ValueGameCount": "{0} her",
|
||||
"ValueGuestStar": "Hostující hvězda",
|
||||
"ValueItemCount": "{0} položka",
|
||||
"ValueItemCountPlural": "{0} položek",
|
||||
|
@ -1476,7 +1467,6 @@
|
|||
"ValueMovieCount": "{0} filmů",
|
||||
"ValueMusicVideoCount": "{0} hudebních klipů",
|
||||
"ValueOneEpisode": "1 epizoda",
|
||||
"ValueOneGame": "1 hra",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 hudební klip",
|
||||
"ValueOneSeries": "1 seriál",
|
||||
|
@ -1494,7 +1484,6 @@
|
|||
"ValueVideoCodec": "Video kodeky: {0}",
|
||||
"VersionNumber": "Verze {0}",
|
||||
"ViewTypeFolders": "Složky",
|
||||
"ViewTypeGames": "Hry",
|
||||
"ViewTypeLiveTvChannels": "Kanály",
|
||||
"ViewTypeLiveTvRecordingGroups": "Nahrávky",
|
||||
"ViewTypeMovies": "Filmy",
|
||||
|
|
|
@ -204,7 +204,6 @@
|
|||
"FileReadCancelled": "Læsning af filen er annulleret.",
|
||||
"FileReadError": "Der opstod en fejl i forsøget på at læse filen.",
|
||||
"FolderTypeBooks": "Bøger",
|
||||
"FolderTypeGames": "Spil",
|
||||
"FolderTypeInherit": "Nedarv",
|
||||
"FolderTypeMixed": "Blandet indhold",
|
||||
"FolderTypeMovies": "Film",
|
||||
|
@ -321,7 +320,6 @@
|
|||
"HeaderFavoriteAlbums": "Favoritalbums",
|
||||
"HeaderFavoriteArtists": "Favoritkunstnere",
|
||||
"HeaderFavoriteEpisodes": "Favorit episoder",
|
||||
"HeaderFavoriteGames": "Favorit spil",
|
||||
"HeaderFavoriteMovies": "Favorit film",
|
||||
"HeaderFavoriteShows": "Favorit serier",
|
||||
"HeaderFavoriteSongs": "Favoritsange",
|
||||
|
@ -336,7 +334,6 @@
|
|||
"HeaderForgotPassword": "Glemt adgangskode",
|
||||
"HeaderFreeApps": "Gratis Jellyfin-Apps",
|
||||
"HeaderFrequentlyPlayed": "Ofte afspillet",
|
||||
"HeaderGames": "Spil",
|
||||
"HeaderGenres": "Genrer",
|
||||
"HeaderGuests": "Gæster",
|
||||
"HeaderGuideProviders": "Guide Udbydere",
|
||||
|
@ -1016,7 +1013,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Den følgende fil er blevet oprettet på din server og indeholder instruktioner vedrørende hvordan du skal fortsætte:",
|
||||
"MessageForgotPasswordFileExpiration": "Nulstillings pinkoden udløber {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Prøv igen inde i dit hjemmenetværk for at igangsætte nulstilling af din adgangskode.",
|
||||
"MessageGamePluginRequired": "Kræver installation af GameBrowser tilføjelsen",
|
||||
"MessageGuestSharingPermissionsHelp": "De fleste funktioner er indledningsvis utilgængelige for gæster, men de kan slås til efter behov.",
|
||||
"MessageInstallPluginFromApp": "Dette plugin skal være installeret inde i den app du ønsker at benytte det fra.",
|
||||
"MessageInvalidForgotPasswordPin": "En ugyldig eller udløbet pinkode blev indtastet. Prøv igen.",
|
||||
|
@ -1123,7 +1119,6 @@
|
|||
"OptionBirthLocation": "Fødselssted",
|
||||
"OptionBlockBooks": "Bøger",
|
||||
"OptionBlockChannelContent": "Internet kanalindhold",
|
||||
"OptionBlockGames": "Spil",
|
||||
"OptionBlockLiveTvChannels": "Live TV-kanaler",
|
||||
"OptionBlockLiveTvPrograms": "Live TV-programmer",
|
||||
"OptionBlockMovies": "Film",
|
||||
|
@ -1201,8 +1196,6 @@
|
|||
"OptionFolderSort": "Mapper",
|
||||
"OptionFriday": "Fredag",
|
||||
"OptionFridayShort": "Fre",
|
||||
"OptionGameSystems": "Spilsystemer",
|
||||
"OptionGames": "Spil",
|
||||
"OptionGenres": "Genrer",
|
||||
"OptionGuestStars": "Gæstestjerner",
|
||||
"OptionHasSpecialFeatures": "Specielle egenskaber",
|
||||
|
@ -1421,7 +1414,6 @@
|
|||
"TabFavorites": "Favoritter",
|
||||
"TabFilter": "Filtrer",
|
||||
"TabFolders": "Mapper",
|
||||
"TabGames": "Spil",
|
||||
"TabGeneral": "Generelt",
|
||||
"TabGenres": "Genre",
|
||||
"TabHelp": "Hjælp",
|
||||
|
@ -1511,13 +1503,11 @@
|
|||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} episoder",
|
||||
"ValueExample": "Eksempel: {0}",
|
||||
"ValueGameCount": "{0} spil",
|
||||
"ValueGuestStar": "Gæstestjerne",
|
||||
"ValueItemCount": "{0} element",
|
||||
"ValueItemCountPlural": "{0} elementer",
|
||||
"ValueMovieCount": "{0} film",
|
||||
"ValueMusicVideoCount": "{0} musikvideoer",
|
||||
"ValueOneGame": "1 spil",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 musikvideo",
|
||||
"ValueOneSeries": "1 serie",
|
||||
|
@ -1535,7 +1525,6 @@
|
|||
"ValueTrailerCount": "{0} trailere",
|
||||
"ViewPlaybackInfo": "Vis afspilnings information",
|
||||
"ViewTypeFolders": "Mapper",
|
||||
"ViewTypeGames": "Spil",
|
||||
"ViewTypeLiveTvChannels": "Kanaler",
|
||||
"ViewTypeLiveTvRecordingGroups": "Optagelser",
|
||||
"ViewTypeMovies": "Film",
|
||||
|
|
|
@ -205,7 +205,6 @@
|
|||
"FileReadCancelled": "Dateiimport wurde abgebrochen.",
|
||||
"FileReadError": "Beim Lesen der Datei ist ein Fehler aufgetreten.",
|
||||
"FolderTypeBooks": "Bücher",
|
||||
"FolderTypeGames": "Spiele",
|
||||
"FolderTypeInherit": "Übernehmen",
|
||||
"FolderTypeMixed": "Gemischter Inhalt",
|
||||
"FolderTypeMovies": "Filme",
|
||||
|
@ -324,7 +323,6 @@
|
|||
"HeaderFavoriteAlbums": "Lieblingsalben",
|
||||
"HeaderFavoriteArtists": "Lieblings Künstler",
|
||||
"HeaderFavoriteEpisodes": "Lieblingsepisoden",
|
||||
"HeaderFavoriteGames": "Lieblingsspiele",
|
||||
"HeaderFavoriteMovies": "Lieblingsfilme",
|
||||
"HeaderFavoriteShows": "Lieblingsserien",
|
||||
"HeaderFavoriteSongs": "Lieblings Songs",
|
||||
|
@ -339,7 +337,6 @@
|
|||
"HeaderForgotPassword": "Passwort vergessen",
|
||||
"HeaderFreeApps": "Kostenlose Jellyfin Apps",
|
||||
"HeaderFrequentlyPlayed": "Oft gesehen",
|
||||
"HeaderGames": "Spiele",
|
||||
"HeaderGuests": "Gäste",
|
||||
"HeaderGuideProviders": "Fernsehprogramm Quellen",
|
||||
"HeaderHomePage": "Startseite",
|
||||
|
@ -1036,7 +1033,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Die folgende Datei wurde auf deinem Server erstellt und enthält eine Anleitung, wie fortgefahren werden muss:",
|
||||
"MessageForgotPasswordFileExpiration": "Der Zurücksetzungs-PIN wird am {0} auslaufen.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Bitte versuche es erneut innerhalb deines Heimnetzwerks, um die Passwort Zurücksetzung zu starten.",
|
||||
"MessageGamePluginRequired": "Setzt die Installation des GameBrowser-Plugins voraus.",
|
||||
"MessageGuestSharingPermissionsHelp": "Die meisten Funktionen sind für Gäste zunächst nicht verfügbar, können aber je nach Bedarf aktiviert werden.",
|
||||
"MessageInstallPluginFromApp": "Dieses Plugin muss von der App aus installiert werden, mit der du es benutzen willst.",
|
||||
"MessageInvalidForgotPasswordPin": "Ein ungültiger oder abgelaufener PIN wurde eingegeben. Bitte versuche es noch einmal.",
|
||||
|
@ -1143,7 +1139,6 @@
|
|||
"OptionBirthLocation": "Geburtsort",
|
||||
"OptionBlockBooks": "Bücher",
|
||||
"OptionBlockChannelContent": "Internet Channelinhalte",
|
||||
"OptionBlockGames": "Spiele",
|
||||
"OptionBlockLiveTvChannels": "Live-TV Kanäle",
|
||||
"OptionBlockLiveTvPrograms": "Live-TV Programm",
|
||||
"OptionBlockMovies": "Filme",
|
||||
|
@ -1220,8 +1215,6 @@
|
|||
"OptionFolderSort": "Verzeichnisse",
|
||||
"OptionFriday": "Freitag",
|
||||
"OptionFridayShort": "Fr",
|
||||
"OptionGameSystems": "Spielsysteme",
|
||||
"OptionGames": "Spiele",
|
||||
"OptionGuestStars": "Gaststar",
|
||||
"OptionHasSpecialFeatures": "Besonderes Merkmal",
|
||||
"OptionHasSubtitles": "Untertitel",
|
||||
|
@ -1434,7 +1427,6 @@
|
|||
"TabExpert": "Experte",
|
||||
"TabFavorites": "Favoriten",
|
||||
"TabFolders": "Verzeichnisse",
|
||||
"TabGames": "Spiele",
|
||||
"TabGeneral": "Allgemein",
|
||||
"TabGuide": "Programm",
|
||||
"TabHelp": "Hilfe",
|
||||
|
@ -1523,7 +1515,6 @@
|
|||
"ValueDateCreated": "Erstellungsdatum: {0}",
|
||||
"ValueEpisodeCount": "{0} Episoden",
|
||||
"ValueExample": "Beispiel: {0}",
|
||||
"ValueGameCount": "{0} Spiele",
|
||||
"ValueGuestStar": "Gaststar",
|
||||
"ValueItemCount": "{0} Eintrag",
|
||||
"ValueItemCountPlural": "{0} Einträge",
|
||||
|
@ -1533,7 +1524,6 @@
|
|||
"ValueMusicVideoCount": "{0} Musikvideos",
|
||||
"ValueOneAlbum": "1 Album",
|
||||
"ValueOneEpisode": "1 Episode",
|
||||
"ValueOneGame": "1 Spiel",
|
||||
"ValueOneMovie": "1 Film",
|
||||
"ValueOneMusicVideo": "1 Musikvideo",
|
||||
"ValueOneSeries": "1 Serie",
|
||||
|
@ -1550,7 +1540,6 @@
|
|||
"ValueTrailerCount": "{0} Trailer",
|
||||
"ViewPlaybackInfo": "Abspielinfo ansehen",
|
||||
"ViewTypeFolders": "Verzeichnisse",
|
||||
"ViewTypeGames": "Spiele",
|
||||
"ViewTypeLiveTvChannels": "Kanäle",
|
||||
"ViewTypeLiveTvRecordingGroups": "Aufnahmen",
|
||||
"ViewTypeMovies": "Filme",
|
||||
|
|
|
@ -188,7 +188,6 @@
|
|||
"FileReadCancelled": "Η ανάγνωση αρχείου ακυρώθηκε.",
|
||||
"FileReadError": "Παρουσιάστηκε σφάλμα κατά την ανάγνωση του αρχείου",
|
||||
"FolderTypeBooks": "Βιβλία",
|
||||
"FolderTypeGames": "Παιχνίδια",
|
||||
"FolderTypeMixed": "Ανάμεικτο Περιεχόμενο",
|
||||
"FolderTypeMovies": "Ταινίες",
|
||||
"FolderTypeMusic": "Μουσική",
|
||||
|
@ -292,7 +291,6 @@
|
|||
"HeaderFavoriteAlbums": "Αγαπημένα Άλμπουμ",
|
||||
"HeaderFavoriteArtists": "Αγαπημένοι Καλλιτέχνες",
|
||||
"HeaderFavoriteEpisodes": "Αγαπημένα επεισόδια",
|
||||
"HeaderFavoriteGames": "Αγαπημένα Παιχνίδια",
|
||||
"HeaderFavoriteMovies": "Αγαπημένες Ταινίες",
|
||||
"HeaderFavoriteShows": "Αγαπημένες Σειρές",
|
||||
"HeaderFavoriteSongs": "Αγαπημένα Τραγούδια",
|
||||
|
@ -306,7 +304,6 @@
|
|||
"HeaderForgotPassword": "Ξέχασα τον κωδικό",
|
||||
"HeaderFreeApps": "Δωρεάν Εφαρμογές Jellyfin",
|
||||
"HeaderFrequentlyPlayed": "Συχνά έπαιξε",
|
||||
"HeaderGames": "Παιχνίδια",
|
||||
"HeaderGenres": "Είδη",
|
||||
"HeaderGuests": "Επισκέπτες",
|
||||
"HeaderHomePage": "Αρχική Σελίδα",
|
||||
|
@ -986,7 +983,6 @@
|
|||
"OptionBirthLocation": "Τόπος Γέννησης",
|
||||
"OptionBlockBooks": "Βιβλία",
|
||||
"OptionBlockChannelContent": "Προτιμώμενη ποιότητα καναλιού διαδικτύου:",
|
||||
"OptionBlockGames": "Παιχνίδια",
|
||||
"OptionBlockLiveTvChannels": "ΚΑΝΑΛΙΑ ΖΩΝΤΑΝΗΣ ΤΗΛΕΟΡΑΣΗΣ",
|
||||
"OptionBlockLiveTvPrograms": "ΖΩΝΤΑΝΗ ΤΗΛΕΟΡΑΣΗ",
|
||||
"OptionBlockMovies": "Ταινίες",
|
||||
|
@ -1054,8 +1050,6 @@
|
|||
"OptionFolderSort": "Φάκελοι",
|
||||
"OptionFriday": "Παρασκευή",
|
||||
"OptionFridayShort": "Παρ",
|
||||
"OptionGameSystems": "Συστήματα παιχνιδιών",
|
||||
"OptionGames": "Παιχνίδια",
|
||||
"OptionGenres": "Είδη",
|
||||
"OptionGuestStars": "Φιλική Συμμετοχή",
|
||||
"OptionHasSpecialFeatures": "Ειδικά Χαρακτηριστικά",
|
||||
|
@ -1248,7 +1242,6 @@
|
|||
"TabFavorites": "Αγαπημένα",
|
||||
"TabFilter": "Φίλτρο",
|
||||
"TabFolders": "Φάκελοι",
|
||||
"TabGames": "Παιχνίδια",
|
||||
"TabGeneral": "Γενικα",
|
||||
"TabGenres": "Είδη",
|
||||
"TabGuide": "Οδηγός",
|
||||
|
@ -1347,7 +1340,6 @@
|
|||
"ValueDiscNumber": "Δίσκος {0}",
|
||||
"ValueEpisodeCount": "{0} επεισόδια",
|
||||
"ValueExample": "Παράδειγμα: {0}",
|
||||
"ValueGameCount": "{0} παιχνίδια",
|
||||
"ValueGuestStar": "Φιλική Συμμετοχή",
|
||||
"ValueItemCount": "{0} στοιχείο",
|
||||
"ValueItemCountPlural": "{0} στοιχεία",
|
||||
|
@ -1357,7 +1349,6 @@
|
|||
"ValueMusicVideoCount": "{0} μουσικά βίντεο",
|
||||
"ValueOneAlbum": "1 Άλμπουμ",
|
||||
"ValueOneEpisode": "1 επεισόδιο",
|
||||
"ValueOneGame": "1 παιχνίδι",
|
||||
"ValueOneMovie": "1 ταινία",
|
||||
"ValueOneMusicVideo": "1 μουσικό βίντεο",
|
||||
"ValueOneSeries": "1 Σειρά",
|
||||
|
@ -1377,7 +1368,6 @@
|
|||
"VersionNumber": "Έκδοση {0}",
|
||||
"ViewPlaybackInfo": "Προβολή πληροφοριών αναπαραγωγής",
|
||||
"ViewTypeFolders": "Φάκελοι",
|
||||
"ViewTypeGames": "Παιχνίδια",
|
||||
"ViewTypeLiveTvChannels": "Κανάλια",
|
||||
"ViewTypeLiveTvRecordingGroups": "Εγγραφές",
|
||||
"ViewTypeMovies": "Ταινίες",
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"HeaderFavoriteAlbums": "Favourite Albums",
|
||||
"HeaderFavoriteArtists": "Favourite Artists",
|
||||
"HeaderFavoriteEpisodes": "Favourite Episodes",
|
||||
"HeaderFavoriteGames": "Favourite Games",
|
||||
"HeaderFavoriteMovies": "Favourite Movies",
|
||||
"HeaderFavoriteShows": "Favourite Shows",
|
||||
"HeaderFavoriteSongs": "Favourite Songs",
|
||||
|
@ -86,7 +85,6 @@
|
|||
"MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this API key? The application's connection to Jellyfin Server will be abruptly terminated.",
|
||||
"MessageForgotPasswordFileExpiration": "The reset PIN will expire at {0}.",
|
||||
"MessageInvalidForgotPasswordPin": "An invalid or expired PIN was entered. Please try again.",
|
||||
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalised groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
|
||||
"MessagePluginInstallDisclaimer": "Plugins built by Jellyfin community members are a great way to enhance your Jellyfin experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Jellyfin Server, such as longer library scans, additional background processing and decreased system stability.",
|
||||
"NoNewDevicesFound": "No new devices found. To add a new tuner, close this dialogue and enter the device information manually.",
|
||||
"OptionAllowRemoteSharedDevicesHelp": "DLNA devices are considered shared until a user begins controlling it.",
|
||||
|
|
|
@ -227,7 +227,6 @@
|
|||
"FileReadCancelled": "The file read has been canceled.",
|
||||
"FileReadError": "An error occurred while reading the file.",
|
||||
"FolderTypeBooks": "Books",
|
||||
"FolderTypeGames": "Games",
|
||||
"FolderTypeInherit": "Inherit",
|
||||
"FolderTypeMixed": "Mixed content",
|
||||
"FolderTypeMovies": "Movies",
|
||||
|
@ -353,7 +352,6 @@
|
|||
"HeaderFavoriteAlbums": "Favorite Albums",
|
||||
"HeaderFavoriteArtists": "Favorite Artists",
|
||||
"HeaderFavoriteEpisodes": "Favorite Episodes",
|
||||
"HeaderFavoriteGames": "Favorite Games",
|
||||
"HeaderFavoriteMovies": "Favorite Movies",
|
||||
"HeaderFavoriteShows": "Favorite Shows",
|
||||
"HeaderFavoriteSongs": "Favorite Songs",
|
||||
|
@ -368,7 +366,6 @@
|
|||
"HeaderForgotPassword": "Forgot Password",
|
||||
"HeaderFreeApps": "Free Jellyfin Apps",
|
||||
"HeaderFrequentlyPlayed": "Frequently Played",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderGenres": "Genres",
|
||||
"HeaderGuests": "Guests",
|
||||
"HeaderGuideProviders": "TV Guide Data Providers",
|
||||
|
@ -1117,7 +1114,6 @@
|
|||
"MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:",
|
||||
"MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.",
|
||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
|
||||
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
|
||||
"MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.",
|
||||
|
@ -1131,7 +1127,6 @@
|
|||
"MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.",
|
||||
"MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated",
|
||||
"MessageNoAvailablePlugins": "No available plugins.",
|
||||
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
|
||||
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
|
||||
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
||||
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
|
||||
|
@ -1235,7 +1230,6 @@
|
|||
"OptionBirthLocation": "Birth Location",
|
||||
"OptionBlockBooks": "Books",
|
||||
"OptionBlockChannelContent": "Internet Channel Content",
|
||||
"OptionBlockGames": "Games",
|
||||
"OptionBlockLiveTvChannels": "Live TV Channels",
|
||||
"OptionBlockLiveTvPrograms": "Live TV Programs",
|
||||
"OptionBlockMovies": "Movies",
|
||||
|
@ -1320,8 +1314,6 @@
|
|||
"OptionFolderSort": "Folders",
|
||||
"OptionFriday": "Friday",
|
||||
"OptionFridayShort": "Fri",
|
||||
"OptionGameSystems": "Game systems",
|
||||
"OptionGames": "Games",
|
||||
"OptionGenres": "Genres",
|
||||
"OptionGuestStars": "Guest Stars",
|
||||
"OptionHasSpecialFeatures": "Special Features",
|
||||
|
@ -1566,7 +1558,6 @@
|
|||
"TabFavorites": "Favorites",
|
||||
"TabFilter": "Filter",
|
||||
"TabFolders": "Folders",
|
||||
"TabGames": "Games",
|
||||
"TabGeneral": "General",
|
||||
"TabGenres": "Genres",
|
||||
"TabGuide": "Guide",
|
||||
|
@ -1673,7 +1664,6 @@
|
|||
"ValueDiscNumber": "Disc {0}",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueExample": "Example: {0}",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueGuestStar": "Guest star",
|
||||
"ValueItemCount": "{0} item",
|
||||
"ValueItemCountPlural": "{0} items",
|
||||
|
@ -1683,7 +1673,6 @@
|
|||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueOneSeries": "1 series",
|
||||
|
@ -1705,7 +1694,6 @@
|
|||
"VersionNumber": "Version {0}",
|
||||
"ViewPlaybackInfo": "View playback info",
|
||||
"ViewTypeFolders": "Folders",
|
||||
"ViewTypeGames": "Games",
|
||||
"ViewTypeLiveTvChannels": "Channels",
|
||||
"ViewTypeLiveTvRecordingGroups": "Recordings",
|
||||
"ViewTypeMovies": "Movies",
|
||||
|
|
|
@ -221,7 +221,6 @@
|
|||
"FileReadCancelled": "La lectura del archivo ha sido cancelada.",
|
||||
"FileReadError": "Ha ocurrido un error al leer el archivo.",
|
||||
"FolderTypeBooks": "Libros",
|
||||
"FolderTypeGames": "Juegos",
|
||||
"FolderTypeInherit": "Heredar",
|
||||
"FolderTypeMixed": "Contenido mezclado",
|
||||
"FolderTypeMovies": "Películas",
|
||||
|
@ -341,7 +340,6 @@
|
|||
"HeaderFavoriteAlbums": "Álbumes Favoritos",
|
||||
"HeaderFavoriteArtists": "Artistas Favoritos",
|
||||
"HeaderFavoriteEpisodes": "Episodios Preferidos",
|
||||
"HeaderFavoriteGames": "Juegos Preferidos",
|
||||
"HeaderFavoriteMovies": "Películas Preferidas",
|
||||
"HeaderFavoriteShows": "Programas Preferidos",
|
||||
"HeaderFavoriteSongs": "Canciones Favoritas",
|
||||
|
@ -356,7 +354,6 @@
|
|||
"HeaderForgotPassword": "Contraseña Olvidada",
|
||||
"HeaderFreeApps": "Aplicaciones Jellyfin Gratuitas",
|
||||
"HeaderFrequentlyPlayed": "Reproducido Frecuentemente",
|
||||
"HeaderGames": "Juegos",
|
||||
"HeaderGenres": "Géneros",
|
||||
"HeaderGuests": "Invitados",
|
||||
"HeaderGuideProviders": "Proveedores de Guías de TV",
|
||||
|
@ -1087,7 +1084,6 @@
|
|||
"MessageForgotPasswordFileCreated": "El siguiente archivo fue creado en tu servidor y contiene instrucciones de como proceder.",
|
||||
"MessageForgotPasswordFileExpiration": "El pin de restablecimiento expirara en {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Por favor intente de nuevo dentro de su red de hogar para iniciar el proceso de restablecimiento de contraseña.",
|
||||
"MessageGamePluginRequired": "Requiere instalación del complemento de GameBrowser",
|
||||
"MessageGuestSharingPermissionsHelp": "Muchas de las características no están disponibles inicialmente para invitados pero pueden ser activadas conforme se necesiten.",
|
||||
"MessageInstallPluginFromApp": "El complemento debe estar instalado desde la aplicación en la que va a utilizarlo.",
|
||||
"MessageInvalidForgotPasswordPin": "Se introdujo un pin expirado o invalido. Por favor intente de nuevo.",
|
||||
|
@ -1199,7 +1195,6 @@
|
|||
"OptionBirthLocation": "Lugar de Nacimiento",
|
||||
"OptionBlockBooks": "Libros",
|
||||
"OptionBlockChannelContent": "Contenido de Canales de Internet",
|
||||
"OptionBlockGames": "Juegos",
|
||||
"OptionBlockLiveTvChannels": "Canales de TV en Vivo",
|
||||
"OptionBlockLiveTvPrograms": "Programas de TV en Vivo",
|
||||
"OptionBlockMovies": "Películas",
|
||||
|
@ -1280,8 +1275,6 @@
|
|||
"OptionFolderSort": "Carpetas",
|
||||
"OptionFriday": "Viernes",
|
||||
"OptionFridayShort": "Vie",
|
||||
"OptionGameSystems": "Sistemas de juegos",
|
||||
"OptionGames": "Juegos",
|
||||
"OptionGenres": "Géneros",
|
||||
"OptionGuestStars": "Estrellas Invitadas",
|
||||
"OptionHasSpecialFeatures": "Características Especiales",
|
||||
|
@ -1514,7 +1507,6 @@
|
|||
"TabFavorites": "Favoritos",
|
||||
"TabFilter": "Filtro",
|
||||
"TabFolders": "Carpetas",
|
||||
"TabGames": "Juegos",
|
||||
"TabGenres": "Géneros",
|
||||
"TabGuide": "Guía",
|
||||
"TabHelp": "Ayuda",
|
||||
|
@ -1617,7 +1609,6 @@
|
|||
"ValueDiscNumber": "Disco {0}",
|
||||
"ValueEpisodeCount": "{0} episodios",
|
||||
"ValueExample": "Ejemplo: {0}",
|
||||
"ValueGameCount": "{0} juegos",
|
||||
"ValueGuestStar": "Estrella invitada",
|
||||
"ValueItemCount": "{0} ítem",
|
||||
"ValueItemCountPlural": "{0} ítems",
|
||||
|
@ -1626,7 +1617,6 @@
|
|||
"ValueMusicVideoCount": "{0} videos musicales",
|
||||
"ValueOneAlbum": "1 álbum",
|
||||
"ValueOneEpisode": "1 episodio",
|
||||
"ValueOneGame": "1 juego",
|
||||
"ValueOneMovie": "1 película",
|
||||
"ValueOneMusicVideo": "1 video musical",
|
||||
"ValueOneSeries": "1 serie",
|
||||
|
@ -1647,7 +1637,6 @@
|
|||
"VersionNumber": "Versión {0}",
|
||||
"ViewPlaybackInfo": "Ver información de reproducción",
|
||||
"ViewTypeFolders": "Carpetas",
|
||||
"ViewTypeGames": "Juegos",
|
||||
"ViewTypeLiveTvChannels": "Canales",
|
||||
"ViewTypeLiveTvRecordingGroups": "Grabaciones",
|
||||
"ViewTypeMovies": "Películas",
|
||||
|
|
|
@ -220,7 +220,6 @@
|
|||
"FileReadCancelled": "La lectura del archivo se ha cancelado.",
|
||||
"FileReadError": "Se encontró un error al leer el archivo.",
|
||||
"FolderTypeBooks": "Libros",
|
||||
"FolderTypeGames": "Juegos",
|
||||
"FolderTypeInherit": "Heredado",
|
||||
"FolderTypeMixed": "Contenido mixto",
|
||||
"FolderTypeMovies": "Peliculas",
|
||||
|
@ -338,7 +337,6 @@
|
|||
"HeaderFavoriteAlbums": "Álbumes favoritos",
|
||||
"HeaderFavoriteArtists": "Artistas favoritos",
|
||||
"HeaderFavoriteEpisodes": "Episodios favoritos",
|
||||
"HeaderFavoriteGames": "Juegos favoritos",
|
||||
"HeaderFavoriteMovies": "Películas favoritas",
|
||||
"HeaderFavoriteShows": "Programas favoritos",
|
||||
"HeaderFavoriteSongs": "Canciones favoritas",
|
||||
|
@ -353,7 +351,6 @@
|
|||
"HeaderForgotPassword": "Contraseña olvidada",
|
||||
"HeaderFreeApps": "Apps de Jellyfin gratuitas",
|
||||
"HeaderFrequentlyPlayed": "Reproducido frecuentemente",
|
||||
"HeaderGames": "Juegos",
|
||||
"HeaderGenres": "Géneros",
|
||||
"HeaderGuests": "Invitados",
|
||||
"HeaderGuideProviders": "Proveedores de guías",
|
||||
|
@ -1085,7 +1082,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Se ha creado el siguiente archivo en tu servidor y contiene instrucciones de cómo proceder:",
|
||||
"MessageForgotPasswordFileExpiration": "El pin de restablecimiento caducará el {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Por favor inténtalo de nuevo desde tu red de casa para iniciar el proceso de restablecimiento de la contraseña.",
|
||||
"MessageGamePluginRequired": "Necesita de la instalación del plugin GameBrowser",
|
||||
"MessageGuestSharingPermissionsHelp": "Muchas de las características no están disponibles para los invitados, pero pueden activarse según se requieran.",
|
||||
"MessageInstallPluginFromApp": "Este plugin debe instalarse desde la aplicación donde lo vayas a usar.",
|
||||
"MessageInvalidForgotPasswordPin": "Se ingresó un código PIN inválido o expirado. Por favor, inténtelo de nuevo.",
|
||||
|
@ -1194,7 +1190,6 @@
|
|||
"OptionBirthLocation": "Lugar de nacimiento",
|
||||
"OptionBlockBooks": "Libros",
|
||||
"OptionBlockChannelContent": "Contenido de canales de Internet",
|
||||
"OptionBlockGames": "Juegos",
|
||||
"OptionBlockLiveTvChannels": "Canales de TV en directo",
|
||||
"OptionBlockLiveTvPrograms": "Programas de TV en directo",
|
||||
"OptionBlockMovies": "Películas",
|
||||
|
@ -1273,8 +1268,6 @@
|
|||
"OptionFolderSort": "Carpetas",
|
||||
"OptionFriday": "Viernes",
|
||||
"OptionFridayShort": "Vie",
|
||||
"OptionGameSystems": "Sistemas de juego",
|
||||
"OptionGames": "Juegos",
|
||||
"OptionGenres": "Géneros",
|
||||
"OptionGuestStars": "Estrellas invitadas",
|
||||
"OptionHasSpecialFeatures": "Características especiales",
|
||||
|
@ -1501,7 +1494,6 @@
|
|||
"TabFavorites": "Favoritos",
|
||||
"TabFilter": "Filtrar",
|
||||
"TabFolders": "Carpetas",
|
||||
"TabGames": "Juegos",
|
||||
"TabGenres": "Géneros",
|
||||
"TabGuide": "Guía",
|
||||
"TabHelp": "Ayuda",
|
||||
|
@ -1599,7 +1591,6 @@
|
|||
"ValueDiscNumber": "Disco {0}",
|
||||
"ValueEpisodeCount": "{0} episodios",
|
||||
"ValueExample": "Ejemplo: {0}",
|
||||
"ValueGameCount": "{0} juegos",
|
||||
"ValueGuestStar": "Estrella invitada",
|
||||
"ValueItemCount": "ítem {0}",
|
||||
"ValueItemCountPlural": "ítems {0}",
|
||||
|
@ -1608,7 +1599,6 @@
|
|||
"ValueMusicVideoCount": "{0} vídeos musicales",
|
||||
"ValueOneAlbum": "1 álbum",
|
||||
"ValueOneEpisode": "1 episodio",
|
||||
"ValueOneGame": "1 juego",
|
||||
"ValueOneMovie": "1 película",
|
||||
"ValueOneMusicVideo": "1 vídeo musical",
|
||||
"ValueOneSeries": "1 serie",
|
||||
|
@ -1629,7 +1619,6 @@
|
|||
"VersionNumber": "Versión {0}",
|
||||
"ViewPlaybackInfo": "Ver info de la reproducción",
|
||||
"ViewTypeFolders": "Carpetas",
|
||||
"ViewTypeGames": "Juegos",
|
||||
"ViewTypeLiveTvChannels": "Canales",
|
||||
"ViewTypeLiveTvRecordingGroups": "Grabaciones",
|
||||
"ViewTypeMovies": "Películas",
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
"DeleteMedia": "حذف رسانه",
|
||||
"Disabled": "غیرفعال شده",
|
||||
"FolderTypeBooks": "کتاب ها",
|
||||
"FolderTypeGames": "بازی ها",
|
||||
"FolderTypeInherit": "به ارث می برند",
|
||||
"FolderTypeMixed": "محتوای مشترک",
|
||||
"FolderTypeMovies": "سینمایی ها",
|
||||
|
|
|
@ -220,7 +220,6 @@
|
|||
"FileReadCancelled": "La lecture du fichier a été annulée.",
|
||||
"FileReadError": "Une erreur est survenue pendant la lecture du fichier.",
|
||||
"FolderTypeBooks": "Livres",
|
||||
"FolderTypeGames": "Jeux",
|
||||
"FolderTypeInherit": "Hériter",
|
||||
"FolderTypeMixed": "Contenu mixte",
|
||||
"FolderTypeMovies": "Films",
|
||||
|
@ -338,7 +337,6 @@
|
|||
"HeaderFavoriteAlbums": "Albums favoris",
|
||||
"HeaderFavoriteArtists": "Artistes préférés",
|
||||
"HeaderFavoriteEpisodes": "Épisodes favoris",
|
||||
"HeaderFavoriteGames": "Jeux favoris",
|
||||
"HeaderFavoriteMovies": "Films favoris",
|
||||
"HeaderFavoriteShows": "Séries favorites",
|
||||
"HeaderFavoriteSongs": "Chansons préférées",
|
||||
|
@ -353,7 +351,6 @@
|
|||
"HeaderForgotPassword": "Mot de passe oublié",
|
||||
"HeaderFreeApps": "Applications Jellyfin gratuites",
|
||||
"HeaderFrequentlyPlayed": "Fréquemment lus",
|
||||
"HeaderGames": "Jeux",
|
||||
"HeaderGuests": "Invités",
|
||||
"HeaderGuideProviders": "Fournisseurs de données de guides TV",
|
||||
"HeaderHomePage": "Accueil",
|
||||
|
@ -1074,7 +1071,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Le fichier suivant a été créé sur votre serveur et contient les instructions sur la procédure à suivre :",
|
||||
"MessageForgotPasswordFileExpiration": "Le code PIN de réinitialisation expirera à {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Veuillez réessayer à partir de votre réseau local pour démarrer la procédure de réinitialisation du mot de passe.",
|
||||
"MessageGamePluginRequired": "Nécessite l'installation de l'extension GameBrowser",
|
||||
"MessageGuestSharingPermissionsHelp": "La plupart des fonctions sont initialement indisponibles pour les invités mais peuvent être activées au besoin.",
|
||||
"MessageInstallPluginFromApp": "Cette extension doit-être installée depuis l'application dans laquelle vous voulez l'utiliser",
|
||||
"MessageInvalidForgotPasswordPin": "Le code PIN saisi est invalide ou a expiré. Veuillez réessayer.",
|
||||
|
@ -1184,7 +1180,6 @@
|
|||
"OptionBirthLocation": "Lieu de naissance",
|
||||
"OptionBlockBooks": "Livres",
|
||||
"OptionBlockChannelContent": "Chaînes Internet",
|
||||
"OptionBlockGames": "Jeux",
|
||||
"OptionBlockLiveTvChannels": "Chaînes TV en direct",
|
||||
"OptionBlockLiveTvPrograms": "Programmes TV en direct",
|
||||
"OptionBlockMovies": "Films",
|
||||
|
@ -1263,8 +1258,6 @@
|
|||
"OptionFolderSort": "Répertoires",
|
||||
"OptionFriday": "Vendredi",
|
||||
"OptionFridayShort": "Ven",
|
||||
"OptionGameSystems": "Plateformes de jeu",
|
||||
"OptionGames": "Jeux",
|
||||
"OptionGuestStars": "Guest stars",
|
||||
"OptionHasSpecialFeatures": "Bonus",
|
||||
"OptionHasSubtitles": "Sous-titres",
|
||||
|
@ -1489,7 +1482,6 @@
|
|||
"TabFavorites": "Favoris",
|
||||
"TabFilter": "Filtre",
|
||||
"TabFolders": "Répertoires",
|
||||
"TabGames": "Jeux",
|
||||
"TabGeneral": "Général",
|
||||
"TabHelp": "Aide",
|
||||
"TabHome": "Accueil",
|
||||
|
@ -1580,7 +1572,6 @@
|
|||
"ValueDiscNumber": "Disque {0}",
|
||||
"ValueEpisodeCount": "{0} épisodes",
|
||||
"ValueExample": "Exemple : {0}",
|
||||
"ValueGameCount": "{0} jeux",
|
||||
"ValueGuestStar": "Vedette invitée",
|
||||
"ValueItemCount": "{0} élément",
|
||||
"ValueItemCountPlural": "{0} éléments",
|
||||
|
@ -1588,7 +1579,6 @@
|
|||
"ValueMovieCount": "{0} films",
|
||||
"ValueMusicVideoCount": "{0} vidéos musicales",
|
||||
"ValueOneEpisode": "1 épisode",
|
||||
"ValueOneGame": "1 jeu",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 vidéo musicale",
|
||||
"ValueOneSeries": "1 série",
|
||||
|
@ -1609,7 +1599,6 @@
|
|||
"ValueVideoCodec": "Codec Vidéo : {0}",
|
||||
"ViewPlaybackInfo": "Voir les informations de lecture",
|
||||
"ViewTypeFolders": "Dossiers",
|
||||
"ViewTypeGames": "Jeux",
|
||||
"ViewTypeLiveTvChannels": "Chaînes",
|
||||
"ViewTypeLiveTvRecordingGroups": "Enregistrements",
|
||||
"ViewTypeMovies": "Films",
|
||||
|
|
|
@ -387,7 +387,6 @@
|
|||
"TabEpisodes": "פרקים",
|
||||
"TabFavorites": "מועדפים",
|
||||
"TabFolders": "תיקיות",
|
||||
"TabGames": "משחקים",
|
||||
"TabGeneral": "כללי",
|
||||
"TabGenres": "זאנרים",
|
||||
"TabGuide": "מדריך",
|
||||
|
|
|
@ -182,7 +182,6 @@
|
|||
"FileReadCancelled": "Učitavanje datoteke je prekinuto.",
|
||||
"FileReadError": "Prilikom učitavanja datoteke desila se greška",
|
||||
"FolderTypeBooks": "Knjige",
|
||||
"FolderTypeGames": "Igre",
|
||||
"FolderTypeInherit": "Naslijedi",
|
||||
"FolderTypeMixed": "Miješani sadržaj",
|
||||
"FolderTypeMovies": "Filmovi",
|
||||
|
@ -289,7 +288,6 @@
|
|||
"HeaderFavoriteAlbums": "Omiljeni albumi",
|
||||
"HeaderFavoriteArtists": "Omiljeni izvođači",
|
||||
"HeaderFavoriteEpisodes": "Omiljene epizode",
|
||||
"HeaderFavoriteGames": "Omiljene igre",
|
||||
"HeaderFavoriteMovies": "Omiljeni filmovi",
|
||||
"HeaderFavoriteShows": "Omiljene emisije",
|
||||
"HeaderFavoriteSongs": "Omiljene pjesme",
|
||||
|
@ -302,7 +300,6 @@
|
|||
"HeaderForgotPassword": "Zaboravili ste lozinku",
|
||||
"HeaderFreeApps": "Besplatne Jellyfin aplikacije",
|
||||
"HeaderFrequentlyPlayed": "Često izvođeno",
|
||||
"HeaderGames": "Igre",
|
||||
"HeaderGuests": "Gosti",
|
||||
"HeaderGuideProviders": "Pružatelji vodiča",
|
||||
"HeaderHomePage": "Početna stranica",
|
||||
|
@ -943,7 +940,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Sljedeća datoteka je stvorena na vašem poslužitelju i sadrži upute o tome kako postupiti:",
|
||||
"MessageForgotPasswordFileExpiration": "Poništavanje pin-a istječe u {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Molim pokušajte ponovno unutar kućne mreže za pokretanje postupka za poništavanje zaporke.",
|
||||
"MessageGamePluginRequired": "Zahtijeva instalaciju GameBrowser dodatka",
|
||||
"MessageGuestSharingPermissionsHelp": "Većina značajka u početku nisu na raspolaganju gostima, ali mogu biti omogućene po potrebi.",
|
||||
"MessageInstallPluginFromApp": "Ovaj dodatak mora biti instaliran unutar aplikacije u kojoj ga namjeravate koristiti.",
|
||||
"MessageInvalidForgotPasswordPin": "Upisan je neispravan ili zastarjele pin. Molim, pokušajte ponovno.",
|
||||
|
@ -1040,7 +1036,6 @@
|
|||
"OptionBirthLocation": "Lokacije rođenja",
|
||||
"OptionBlockBooks": "Knjige",
|
||||
"OptionBlockChannelContent": "Sadržaj Internet kanala",
|
||||
"OptionBlockGames": "Igre",
|
||||
"OptionBlockLiveTvChannels": "TV kanali uživo",
|
||||
"OptionBlockLiveTvPrograms": "TV programi uživo",
|
||||
"OptionBlockMovies": "Filmovi",
|
||||
|
@ -1118,8 +1113,6 @@
|
|||
"OptionFolderSort": "Mape",
|
||||
"OptionFriday": "Petak",
|
||||
"OptionFridayShort": "Pet",
|
||||
"OptionGameSystems": "Sistemi igrica",
|
||||
"OptionGames": "Igre",
|
||||
"OptionGenres": "Žanrovi",
|
||||
"OptionGuestStars": "Gostuće zvjezde",
|
||||
"OptionHasSpecialFeatures": "Specijalne opcije",
|
||||
|
@ -1317,7 +1310,6 @@
|
|||
"TabExtras": "Dodaci",
|
||||
"TabFavorites": "Omiljeni",
|
||||
"TabFolders": "Mapa",
|
||||
"TabGames": "Igre",
|
||||
"TabGeneral": "Opće",
|
||||
"TabGenres": "Žanrovi",
|
||||
"TabGuide": "Vodič",
|
||||
|
@ -1416,7 +1408,6 @@
|
|||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} epizoda",
|
||||
"ValueExample": "Primjer: {0}",
|
||||
"ValueGameCount": "{0} igra",
|
||||
"ValueGuestStar": "Zvijezda gost",
|
||||
"ValueItemCount": "{0} stavka",
|
||||
"ValueItemCountPlural": "{0} stavaka",
|
||||
|
@ -1425,7 +1416,6 @@
|
|||
"ValueMovieCount": "{0} filmova",
|
||||
"ValueMusicVideoCount": "{0} glazbenih videa",
|
||||
"ValueOneEpisode": "1 epizoda",
|
||||
"ValueOneGame": "1 igra",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 glazbeni video",
|
||||
"ValueOneSeries": "1 serija",
|
||||
|
|
|
@ -120,7 +120,6 @@
|
|||
"FeatureRequiresJellyfinPremiere": "Ez a szolgáltatás aktív Jellyfin Premier előfizetést igényel.",
|
||||
"FileNotFound": "Fájl nem található.",
|
||||
"FolderTypeBooks": "Könyvek",
|
||||
"FolderTypeGames": "Játékok",
|
||||
"FolderTypeMixed": "Vegyes tartalom",
|
||||
"FolderTypeMovies": "Filmek",
|
||||
"FolderTypeMusic": "Zenék",
|
||||
|
@ -177,7 +176,6 @@
|
|||
"HeaderFavoriteAlbums": "Kedvenc Albumok",
|
||||
"HeaderFavoriteArtists": "Kedvenc Előadók",
|
||||
"HeaderFavoriteEpisodes": "Kedvenc Epizódok",
|
||||
"HeaderFavoriteGames": "Kedvenc Játékok",
|
||||
"HeaderFavoriteMovies": "Kedvenc Filmek",
|
||||
"HeaderFavoriteShows": "Kedvenc Műsorok",
|
||||
"HeaderFavoriteSongs": "Kedvenc Dalok",
|
||||
|
@ -640,7 +638,6 @@
|
|||
"TabFavorites": "Kedvencek",
|
||||
"TabFilter": "Szűrő",
|
||||
"TabFolders": "Könyvtárak",
|
||||
"TabGames": "Játékok",
|
||||
"TabGeneral": "Általános",
|
||||
"TabGenres": "Műfajok",
|
||||
"TabGuide": "Leírás",
|
||||
|
@ -737,7 +734,6 @@
|
|||
"VersionNumber": "Verzió {0}",
|
||||
"ViewPlaybackInfo": "Lejátszási információk megtekintése",
|
||||
"ViewTypeFolders": "Könyvtárak",
|
||||
"ViewTypeGames": "Játékok",
|
||||
"ViewTypeLiveTvChannels": "Csatornák",
|
||||
"ViewTypeLiveTvRecordingGroups": "Felvételek",
|
||||
"ViewTypeMovies": "Filmek",
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
"CategorySync": "Samþætting",
|
||||
"DeleteMedia": "Eyða margmiðlunarefni",
|
||||
"FolderTypeBooks": "Bækur",
|
||||
"FolderTypeGames": "Leikir",
|
||||
"FolderTypeMovies": "Kvikmyndir",
|
||||
"FolderTypeMusic": "Tónlist",
|
||||
"FolderTypeMusicVideos": "Tónlistarmyndbönd",
|
||||
|
|
|
@ -207,7 +207,6 @@
|
|||
"FileReadCancelled": "Il file letto è stato cancellato.",
|
||||
"FileReadError": "Errore durante la lettura del file.",
|
||||
"FolderTypeBooks": "Libri",
|
||||
"FolderTypeGames": "Giochi",
|
||||
"FolderTypeInherit": "Eredita",
|
||||
"FolderTypeMixed": "Contenuto misto",
|
||||
"FolderTypeMovies": "Film",
|
||||
|
@ -326,7 +325,6 @@
|
|||
"HeaderFavoriteAlbums": "Album preferiti",
|
||||
"HeaderFavoriteArtists": "Artisti preferiti",
|
||||
"HeaderFavoriteEpisodes": "Episodi preferiti",
|
||||
"HeaderFavoriteGames": "Giochi preferiti",
|
||||
"HeaderFavoriteMovies": "Film preferiti",
|
||||
"HeaderFavoriteShows": "Show preferiti",
|
||||
"HeaderFavoriteSongs": "Brani Preferiti",
|
||||
|
@ -340,7 +338,6 @@
|
|||
"HeaderForgotPassword": "Password dimenticata",
|
||||
"HeaderFreeApps": "App Gratuite Jellyfin",
|
||||
"HeaderFrequentlyPlayed": "Visti di frequente",
|
||||
"HeaderGames": "Giochi",
|
||||
"HeaderGenres": "Generi",
|
||||
"HeaderGuests": "Ospiti",
|
||||
"HeaderGuideProviders": "Provider Guida",
|
||||
|
@ -1046,7 +1043,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Il seguente file è stato creato sul server e contiene le istruzioni su come procedere:",
|
||||
"MessageForgotPasswordFileExpiration": "Il pin scadrà {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Riprova all'interno della rete domestica per avviare il processo di reimpostazione della password.",
|
||||
"MessageGamePluginRequired": "Richiede l'installazione del plugin GameBrowser",
|
||||
"MessageGuestSharingPermissionsHelp": "La maggior parte delle caratteristiche sono inizialmente disponibili per gli ospiti, ma possono essere attivate in base alle esigenze.",
|
||||
"MessageInstallPluginFromApp": "Questo Plugin deve essere installato dall'app in cui vuoi farlo funzionare",
|
||||
"MessageInvalidForgotPasswordPin": "Un pin Invalido o scaduto è stato inserito. Riprova.",
|
||||
|
@ -1066,12 +1062,10 @@
|
|||
"MessageNoPlaylistsAvailable": "Playlist ti permettere di mettere in coda gli elementi da riprodurre.Usa il tasto destro o tap e tieni premuto quindi seleziona elemento da aggiungere",
|
||||
"MessageNoPluginsDueToAppStore": "Per gestire i plug-in, per favore usa la web app Jellyfin.",
|
||||
"MessageNoPluginsInstalled": "Non hai plugin installati",
|
||||
"MessageNoServersAvailableToConnect": "Nessun server sono disponibili per la connessione a. Se siete stati invitati a condividere un server, assicurarsi di accettarla sotto o facendo clic sul collegamento nell'e-mail.",
|
||||
"MessageNoServicesInstalled": "Nessun servizio attualmente installato",
|
||||
"MessageNoTrailersFound": "Nessun Trailer trovato.Installa Il plug in dei trailer per importare la libreria dei trailer da internet",
|
||||
"MessageNothingHere": "Non c'è niente qui.",
|
||||
"MessagePasswordResetForUsers": "Le password sono state rimosse dai seguenti utenti. Per accedere lasciare vuoto il campo password.",
|
||||
"MessagePaymentServicesUnavailable": "I servizi di pagamento non sono attualmente disponibili. Per favore riprova più tardi.",
|
||||
"MessagePendingJellyfinAccountAdded": "L'account Jellyfin è stato aggiunto a questo utente. Un'email sarà inviata al proprietario dell'account. L'invito dovrà essere confermato selezionando il link contenuto nell'email",
|
||||
"MessagePleaseEnsureInternetMetadata": "Assicurarsi che il download dei metadati Internet sia abilitato.",
|
||||
"MessagePleaseRestart": "Si prega di riavviare per completare l'aggiornamento.",
|
||||
|
@ -1152,7 +1146,6 @@
|
|||
"OptionBirthLocation": "Nascita Posizione",
|
||||
"OptionBlockBooks": "Libri",
|
||||
"OptionBlockChannelContent": "Contenuto di Canali Internet",
|
||||
"OptionBlockGames": "Giochi",
|
||||
"OptionBlockLiveTvChannels": "Canali TV in onda",
|
||||
"OptionBlockLiveTvPrograms": "Programmi TV in onda",
|
||||
"OptionBlockMovies": "Film",
|
||||
|
@ -1228,8 +1221,6 @@
|
|||
"OptionFolderSort": "Cartelle",
|
||||
"OptionFriday": "Venerdì",
|
||||
"OptionFridayShort": "Ven",
|
||||
"OptionGameSystems": "Configurazione gioco",
|
||||
"OptionGames": "Giochi",
|
||||
"OptionGenres": "Generi",
|
||||
"OptionGuestStars": "Personaggi Famosi",
|
||||
"OptionHasSpecialFeatures": "Contenuti speciali",
|
||||
|
@ -1448,7 +1439,6 @@
|
|||
"TabFavorites": "Preferiti",
|
||||
"TabFilter": "Filtra",
|
||||
"TabFolders": "Cartelle",
|
||||
"TabGames": "Giochi",
|
||||
"TabGeneral": "Generale",
|
||||
"TabGenres": "Generi",
|
||||
"TabGuide": "Guida",
|
||||
|
@ -1543,15 +1533,12 @@
|
|||
"ValueDiscNumber": "Disco {0}",
|
||||
"ValueEpisodeCount": "{0} episodi",
|
||||
"ValueExample": "Esempio: {0}",
|
||||
"ValueGameCount": "{0} giochi",
|
||||
"ValueGuestStar": "Personaggi famosi",
|
||||
"ValueItemCount": "{0} elemento",
|
||||
"ValueItemCountPlural": "{0} elementi",
|
||||
"ValueLinks": "Collegamenti: {0}",
|
||||
"ValueMovieCount": "{0} film",
|
||||
"ValueMusicVideoCount": "{0} video musicali",
|
||||
"ValueOneEpisode": "1 episodio",
|
||||
"ValueOneGame": "1 gioco",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 video musicale",
|
||||
"ValueOneSeries": "1 serie",
|
||||
|
@ -1571,7 +1558,6 @@
|
|||
"VersionNumber": "Versione {0}",
|
||||
"ViewPlaybackInfo": "Vedi info sulla riproduzione",
|
||||
"ViewTypeFolders": "Cartelle",
|
||||
"ViewTypeGames": "Giochi",
|
||||
"ViewTypeLiveTvChannels": "canali",
|
||||
"ViewTypeLiveTvRecordingGroups": "Registrazioni",
|
||||
"ViewTypeMovies": "Film",
|
||||
|
|
|
@ -225,7 +225,6 @@
|
|||
"FileReadCancelled": "Файл оқуы болдырылмады.",
|
||||
"FileReadError": "Файлды оқып жатқанда қате пайда болды.",
|
||||
"FolderTypeBooks": "Кітаптар",
|
||||
"FolderTypeGames": "Ойындар",
|
||||
"FolderTypeInherit": "Мұраға иелену",
|
||||
"FolderTypeMixed": "Аралас мазмұн",
|
||||
"FolderTypeMovies": "Кино",
|
||||
|
@ -350,7 +349,6 @@
|
|||
"HeaderFavoriteAlbums": "Таңдаулы альбомдар",
|
||||
"HeaderFavoriteArtists": "Таңдаулы орындаушылар",
|
||||
"HeaderFavoriteEpisodes": "Таңдаулы бөлімдер",
|
||||
"HeaderFavoriteGames": "Таңдаулы ойындар",
|
||||
"HeaderFavoriteMovies": "Таңдаулы фильмдер",
|
||||
"HeaderFavoriteShows": "Таңдаулы көрсетімдер",
|
||||
"HeaderFavoriteSongs": "Таңдаулы әуендер",
|
||||
|
@ -365,7 +363,6 @@
|
|||
"HeaderForgotPassword": "Құпия сөзді ұмытыңыз ба?",
|
||||
"HeaderFreeApps": "Тегін Jellyfin қолданбалары",
|
||||
"HeaderFrequentlyPlayed": "Жиі ойнатылғандар",
|
||||
"HeaderGames": "Ойындар",
|
||||
"HeaderGenres": "Жанрлар",
|
||||
"HeaderGuests": "Қонақтар",
|
||||
"HeaderGuideProviders": "Телегид деректерін жеткізушілері",
|
||||
|
@ -1112,7 +1109,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Келесі файл серверіңізде жасалды және қалай кірісу туралы нұсқаулар ішінде бар:",
|
||||
"MessageForgotPasswordFileExpiration": "PIN ысыру мезгілі {0} бітеді.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Құпия сөзді ысыру процесі үшін әрекетті үйлік желіңіздің ішінде қайталаңыз.",
|
||||
"MessageGamePluginRequired": "GameBrowser плагинін орнатуды қажет етеді",
|
||||
"MessageGuestSharingPermissionsHelp": "Мүмкіндіктердің көбі әдепкіде қонақтарға қолжетімді емес, бірақ керек болса қосылады.",
|
||||
"MessageInstallPluginFromApp": "Бұл плагин қандай қолданбаға тағайындалса, соның ішінен орнатылуы тиісті.",
|
||||
"MessageInvalidForgotPasswordPin": "Жарамсыз немесе мерзімі аяқталған PIN енгізілді. Әрекетті қайталаңыз.",
|
||||
|
@ -1226,7 +1222,6 @@
|
|||
"OptionBirthLocation": "Туған орны",
|
||||
"OptionBlockBooks": "Кітаптар",
|
||||
"OptionBlockChannelContent": "Интернет арна мазмұны",
|
||||
"OptionBlockGames": "Ойындар",
|
||||
"OptionBlockLiveTvChannels": "Эфирлік ТД арналары",
|
||||
"OptionBlockLiveTvPrograms": "Эфирлік ТД таратымдары",
|
||||
"OptionBlockMovies": "Фильмдер",
|
||||
|
@ -1310,8 +1305,6 @@
|
|||
"OptionFolderSort": "Қалталар",
|
||||
"OptionFriday": "жұма",
|
||||
"OptionFridayShort": "жұм",
|
||||
"OptionGameSystems": "Ойын жүйелері",
|
||||
"OptionGames": "Ойындар",
|
||||
"OptionGenres": "Жанрлар",
|
||||
"OptionGuestStars": "Шақырылған актерлер",
|
||||
"OptionHasSpecialFeatures": "Арнайы мүмкіндіктер",
|
||||
|
@ -1552,7 +1545,6 @@
|
|||
"TabFavorites": "Таңдаулылар",
|
||||
"TabFilter": "Сүзу",
|
||||
"TabFolders": "Қалталар",
|
||||
"TabGames": "Ойындар",
|
||||
"TabGeneral": "Жалпы",
|
||||
"TabGenres": "Жанрлар",
|
||||
"TabGuide": "Телегид",
|
||||
|
@ -1659,7 +1651,6 @@
|
|||
"ValueDiscNumber": "{0}-дискі",
|
||||
"ValueEpisodeCount": "{0} бөлім",
|
||||
"ValueExample": "Мысал: {0}",
|
||||
"ValueGameCount": "{0} ойын",
|
||||
"ValueGuestStar": "Шақырылған актер",
|
||||
"ValueItemCount": "{0} тармақ",
|
||||
"ValueItemCountPlural": "{0} тармақ",
|
||||
|
@ -1669,7 +1660,6 @@
|
|||
"ValueMusicVideoCount": "{0} музыкалық бейне",
|
||||
"ValueOneAlbum": "1 альбом",
|
||||
"ValueOneEpisode": "1 бөлім",
|
||||
"ValueOneGame": "1 ойын",
|
||||
"ValueOneMovie": "1 фильм",
|
||||
"ValueOneMusicVideo": "1 музыкалық бейне",
|
||||
"ValueOneSeries": "1 телехикая",
|
||||
|
@ -1691,7 +1681,6 @@
|
|||
"VersionNumber": "Нұсқасы: {0}",
|
||||
"ViewPlaybackInfo": "Ойнату туралы ақпарат",
|
||||
"ViewTypeFolders": "Қалталар",
|
||||
"ViewTypeGames": "Ойындар",
|
||||
"ViewTypeLiveTvChannels": "Арналар",
|
||||
"ViewTypeLiveTvRecordingGroups": "Жазбалар",
|
||||
"ViewTypeMovies": "Кино",
|
||||
|
|
|
@ -153,7 +153,6 @@
|
|||
"FileNotFound": "파일을 찾을 수 없습니다.",
|
||||
"FileReadError": "파일을 읽는 동안 오류가 발생하였습니다.",
|
||||
"FolderTypeBooks": "책",
|
||||
"FolderTypeGames": "게임",
|
||||
"FolderTypeMixed": "혼합 콘텐츠",
|
||||
"FolderTypeMovies": "영화",
|
||||
"FolderTypeMusic": "음악",
|
||||
|
@ -244,7 +243,6 @@
|
|||
"HeaderExternalServices": "외부 서비스",
|
||||
"HeaderFavoriteAlbums": "즐겨찾는 앨범",
|
||||
"HeaderFavoriteEpisodes": "즐겨찾는 에피소드",
|
||||
"HeaderFavoriteGames": "즐겨찾는 게임",
|
||||
"HeaderFavoriteMovies": "즐겨찾는 영화",
|
||||
"HeaderFavoriteShows": "즐겨찾는 쇼",
|
||||
"HeaderFeatureAccess": "기능 접근",
|
||||
|
@ -254,7 +252,6 @@
|
|||
"HeaderForgotKey": "키 분실",
|
||||
"HeaderForgotPassword": "비밀번호 분실",
|
||||
"HeaderFrequentlyPlayed": "자주 재생",
|
||||
"HeaderGames": "게임",
|
||||
"HeaderGenres": "장르",
|
||||
"HeaderGuests": "손님",
|
||||
"HeaderGuideProviders": "가이드 제공자",
|
||||
|
@ -795,7 +792,6 @@
|
|||
"MessageForgotPasswordFileCreated": "진행 방법이 설명된 다음의 파일이 귀하의 서버에 생성되었습니다.",
|
||||
"MessageForgotPasswordFileExpiration": "초기화 PIN 코드가 {0}에 만료됩니다.",
|
||||
"MessageForgotPasswordInNetworkRequired": "비밀번호 초기화를 진행하려면 귀하의 홈 네트워크에서 다시 시도하세요.",
|
||||
"MessageGamePluginRequired": "GameBrowser 플러그인 설치 필요",
|
||||
"MessageGuestSharingPermissionsHelp": "손님 계정의 초기 설정은 대부분의 기능을 사용할 수 없지만 필요한 경우 사용할 수 있게 켤 수 있습니다.",
|
||||
"MessageInvalidForgotPasswordPin": "올바르지 않거나 만료된 PIN 코드입니다. 다시 시도하세요.",
|
||||
"MessageInvalidUser": "올바르지 않은 사용자명 또는 비밀번호입니다. 다시 시도하세요.",
|
||||
|
@ -870,7 +866,6 @@
|
|||
"OptionBirthLocation": "출생지",
|
||||
"OptionBlockBooks": "책",
|
||||
"OptionBlockChannelContent": "인터넷 채널 콘텐트",
|
||||
"OptionBlockGames": "게임",
|
||||
"OptionBlockLiveTvChannels": "TV 방송 채널",
|
||||
"OptionBlockLiveTvPrograms": "TV 방송 프로그램",
|
||||
"OptionBlockMovies": "영화",
|
||||
|
@ -936,8 +931,6 @@
|
|||
"OptionFolderSort": "폴더",
|
||||
"OptionFriday": "금요일",
|
||||
"OptionFridayShort": "금",
|
||||
"OptionGameSystems": "게임 시스템",
|
||||
"OptionGames": "게임",
|
||||
"OptionGenres": "장르",
|
||||
"OptionGuestStars": "특별 출연자들",
|
||||
"OptionHasSpecialFeatures": "특별한 기능",
|
||||
|
@ -1120,7 +1113,6 @@
|
|||
"TabFavorites": "즐겨찾기",
|
||||
"TabFilter": "필터",
|
||||
"TabFolders": "폴더",
|
||||
"TabGames": "게임",
|
||||
"TabGeneral": "일반",
|
||||
"TabGenres": "장르",
|
||||
"TabGuide": "가이드",
|
||||
|
@ -1214,7 +1206,6 @@
|
|||
"ValueDateCreated": "생성 날짜: {0}",
|
||||
"ValueDiscNumber": "디스크 {0}",
|
||||
"ValueEpisodeCount": "{0} 에피소드",
|
||||
"ValueGameCount": "{0} 게임",
|
||||
"ValueItemCount": "{0} 항목",
|
||||
"ValueItemCountPlural": "{0} 항목",
|
||||
"ValueMinutes": "{0} 분",
|
||||
|
@ -1222,7 +1213,6 @@
|
|||
"ValueMusicVideoCount": "{0} 뮤직 비디오",
|
||||
"ValueOneAlbum": "1 앨범",
|
||||
"ValueOneEpisode": "1 에피소드",
|
||||
"ValueOneGame": "1 게임",
|
||||
"ValueOneMovie": "1 영화",
|
||||
"ValueOneMusicVideo": "1 뮤직 비디오",
|
||||
"ValueOneSeries": "1 시리즈",
|
||||
|
@ -1239,7 +1229,6 @@
|
|||
"ValueVideoCodec": "비디오 코덱: {0}",
|
||||
"VersionNumber": "버전 {0}",
|
||||
"ViewTypeFolders": "폴더",
|
||||
"ViewTypeGames": "게임",
|
||||
"ViewTypeLiveTvChannels": "채널",
|
||||
"ViewTypeLiveTvRecordingGroups": "녹화",
|
||||
"ViewTypeMovies": "영화",
|
||||
|
|
|
@ -61,7 +61,6 @@
|
|||
"DeviceAccessHelp": "Tai taikoma tik įrenginiams, kurie gali būti identifikuojami, ir neuždraus prieigos per naršyklę. Vartotojo įrenginio prieigos filtravimas neleis jiems naudotis naujais įrenginiais kol jie nepatvirtinti čia.",
|
||||
"ExtractChapterImagesHelp": "Skyrių paveikslų išskyrimas padės Jellyfin programėlėms rodyti vaizdingus scenų pasirinkimo meniu. Procesas gana lėtas, naudoja daug procesoriaus pajėgumų ir gigabaitus vietos. Jis vyksta atradus video, taip pat numatytas naktimis. Tvarkaraštį galima keisti numatytų užduočių skyriuje. Nerekomenduojama vykdyti šios užduoties pikinio vartojimo valandomis.",
|
||||
"FolderTypeBooks": "Knygos",
|
||||
"FolderTypeGames": "Žaidimai",
|
||||
"FolderTypeInherit": "Paveldėti",
|
||||
"FolderTypeMixed": "Mišrus turinys",
|
||||
"FolderTypeMovies": "Filmai",
|
||||
|
@ -413,7 +412,6 @@
|
|||
"TabEpisodes": "Serijos",
|
||||
"TabFavorites": "Mėgstamiausi",
|
||||
"TabFolders": "Aplankai",
|
||||
"TabGames": "Žaidimai",
|
||||
"TabGeneral": "Bendra",
|
||||
"TabGenres": "Žanrai",
|
||||
"TabGuide": "Gidas",
|
||||
|
|
|
@ -194,7 +194,6 @@
|
|||
"FileReadCancelled": "Lesing av filen kansellert.",
|
||||
"FileReadError": "Feil oppstod i det filen ble lest",
|
||||
"FolderTypeBooks": "Bøker",
|
||||
"FolderTypeGames": "Spill",
|
||||
"FolderTypeInherit": "Arve",
|
||||
"FolderTypeMixed": "Blandet innhold",
|
||||
"FolderTypeMovies": "Filmer",
|
||||
|
@ -307,7 +306,6 @@
|
|||
"HeaderFavoriteAlbums": "Favoritt Albumer",
|
||||
"HeaderFavoriteArtists": "Favoritt artist",
|
||||
"HeaderFavoriteEpisodes": "Favorittepisoder",
|
||||
"HeaderFavoriteGames": "Favorittspill",
|
||||
"HeaderFavoriteMovies": "Favorittfilmer",
|
||||
"HeaderFavoriteShows": "Favorittserier",
|
||||
"HeaderFavoriteSongs": "Favoritt sang",
|
||||
|
@ -321,7 +319,6 @@
|
|||
"HeaderForgotPassword": "Glemt passord",
|
||||
"HeaderFreeApps": "Gratis Jellyfin Applikasjoner",
|
||||
"HeaderFrequentlyPlayed": "Ofte avspilt",
|
||||
"HeaderGames": "Spill",
|
||||
"HeaderGenres": "Sjanger",
|
||||
"HeaderGuests": "Gjester",
|
||||
"HeaderGuideProviders": "Guide leverandører",
|
||||
|
@ -981,7 +978,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Følgende fil er opprettet på serveren og inneholder instruksjoner om hvordan du kan fortsette:",
|
||||
"MessageForgotPasswordFileExpiration": "PIN-koden for gjenoppretting er gyldig til {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Vennligst prøv igjen fra hjemmenettet ditt for å starte prosessen med å gjenopprette passordet ditt.",
|
||||
"MessageGamePluginRequired": "Forutsetter at programtillegget GameBrowser er installert",
|
||||
"MessageGuestSharingPermissionsHelp": "De fleste funksjonene er i utgangspunktet utilgjengelig for gjester, men kan aktiveres ved behov.",
|
||||
"MessageInstallPluginFromApp": "Dette programtillegget må installeres direkte i appen du har tenkt å bruke den i.",
|
||||
"MessageInvalidForgotPasswordPin": "Ugyldig eller utgått PIN kode angitt. Vennligst prøv igjen.",
|
||||
|
@ -1079,7 +1075,6 @@
|
|||
"OptionBirthLocation": "Fødested",
|
||||
"OptionBlockBooks": "Bøker",
|
||||
"OptionBlockChannelContent": "Innhold fra Internettkanal",
|
||||
"OptionBlockGames": "Spill",
|
||||
"OptionBlockLiveTvChannels": "Live TV Kanaler",
|
||||
"OptionBlockLiveTvPrograms": "Live TV Programmer",
|
||||
"OptionBlockMovies": "Filmer",
|
||||
|
@ -1153,8 +1148,6 @@
|
|||
"OptionFolderSort": "Mapper",
|
||||
"OptionFriday": "Fredag",
|
||||
"OptionFridayShort": "Fre",
|
||||
"OptionGameSystems": "Spill systemer",
|
||||
"OptionGames": "Spill",
|
||||
"OptionGenres": "Sjangere",
|
||||
"OptionGuestStars": "Gjeste-opptredener",
|
||||
"OptionHasSpecialFeatures": "Spesialfunksjoner",
|
||||
|
@ -1366,7 +1359,6 @@
|
|||
"TabExtras": "Ekstra",
|
||||
"TabFavorites": "Favoritter",
|
||||
"TabFolders": "Mapper",
|
||||
"TabGames": "Spill",
|
||||
"TabGeneral": "Genrelt",
|
||||
"TabGenres": "Sjangre",
|
||||
"TabHelp": "Hjelp",
|
||||
|
@ -1459,7 +1451,6 @@
|
|||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} episoder",
|
||||
"ValueExample": "Eksempel: {0}",
|
||||
"ValueGameCount": "{0} spill",
|
||||
"ValueGuestStar": "Gjesteartist",
|
||||
"ValueItemCount": "{0} element",
|
||||
"ValueItemCountPlural": "{0} elementer",
|
||||
|
@ -1467,7 +1458,6 @@
|
|||
"ValueMinutes": "{0} minutter",
|
||||
"ValueMovieCount": "{0} filmer",
|
||||
"ValueMusicVideoCount": "{0} musikkvideoer",
|
||||
"ValueOneGame": "1 spill",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 musikkvideo",
|
||||
"ValueOneSeries": "1 serie",
|
||||
|
@ -1485,7 +1475,6 @@
|
|||
"VersionNumber": "Versjon {0}",
|
||||
"ViewPlaybackInfo": "Vis avspilling informasjon",
|
||||
"ViewTypeFolders": "Mapper",
|
||||
"ViewTypeGames": "Spill",
|
||||
"ViewTypeLiveTvChannels": "Kanaler",
|
||||
"ViewTypeLiveTvRecordingGroups": "Opptak",
|
||||
"ViewTypeMovies": "Filmer",
|
||||
|
|
|
@ -325,7 +325,6 @@
|
|||
"HeaderFavoriteAlbums": "Favoriete Albums",
|
||||
"HeaderFavoriteArtists": "Favoriete Artiest",
|
||||
"HeaderFavoriteEpisodes": "Favoriete Afleveringen",
|
||||
"HeaderFavoriteGames": "Favoriete Games",
|
||||
"HeaderFavoriteMovies": "Favoriete Films",
|
||||
"HeaderFavoriteShows": "Favoriete Shows",
|
||||
"HeaderFavoriteSongs": "Favoriete Titels",
|
||||
|
@ -1015,7 +1014,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Het volgende bestand met instructies hoe nu verder te gaan is gemaakt:",
|
||||
"MessageForgotPasswordFileExpiration": "De herstel pincode verloopt {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Probeer de wachtwoord herstel procedure opnieuw vanuit uw thuisnetwerk.",
|
||||
"MessageGamePluginRequired": "Vereist installatie van de GameBrowser plugin",
|
||||
"MessageGuestSharingPermissionsHelp": "De meeste features zijn niet direct beschikbaar voor gasten maar kunnen aangezet worden waar gewenst.",
|
||||
"MessageInstallPluginFromApp": "Deze plugin moet geïnstalleerd worden vanuit de app waarin u het wilt gebruiken.",
|
||||
"MessageInvalidForgotPasswordPin": "Er is een ongeldige of verlopen pincode ingegeven. Probeer opnieuw.",
|
||||
|
@ -1029,7 +1027,6 @@
|
|||
"MessageLoggedOutParentalControl": "Toegang is momenteel bepertk, probeer later opnieuw.",
|
||||
"MessageNamedServerConfigurationUpdatedWithValue": "Sectie {0} van de server configuratie is bijgewerkt",
|
||||
"MessageNoAvailablePlugins": "Geen beschikbare Plugins.",
|
||||
"MessageNoCollectionsAvailable": "Collecties maken het u mogelijk om Films, Series, Albums, Boeken en Games te groeperen. Klik op de + knop om Collecties aan te maken.",
|
||||
"MessageNoMovieSuggestionsAvailable": "Er zijn momenteel geen film suggesties beschikbaar. Begin met het bekijken en waardeer uw films, kom daarna terug om uw aanbevelingen te bekijken.",
|
||||
"MessageNoPlaylistItemsAvailable": "De afspeellijst is momenteel leeg.",
|
||||
"MessageNoPlaylistsAvailable": "Met afspeellijsten kunt u een lijst maken waarvan de items achter elkaar afgespeeld worden. Om een item toe te voegen klikt u met rechts of tik en houd het vast om het te selecteren, klik vervolgens op Toevoegen aan afspeellijst.",
|
||||
|
@ -1196,7 +1193,6 @@
|
|||
"OptionFolderSort": "Mappen",
|
||||
"OptionFriday": "Vrijdag",
|
||||
"OptionFridayShort": "Vr",
|
||||
"OptionGameSystems": "Spel Systemen",
|
||||
"OptionGuestStars": "Gast Sterren",
|
||||
"OptionHasSpecialFeatures": "Extra's",
|
||||
"OptionHasSubtitles": "Ondertiteling",
|
||||
|
|
|
@ -223,7 +223,6 @@
|
|||
"FileReadCancelled": "Odczytywanie pliku zostało anulowane.",
|
||||
"FileReadError": "Podczas odczytywania pliku wystąpił błąd.",
|
||||
"FolderTypeBooks": "Książki",
|
||||
"FolderTypeGames": "Gry",
|
||||
"FolderTypeInherit": "Dziedzicz",
|
||||
"FolderTypeMixed": "Zawartość mieszana",
|
||||
"FolderTypeMovies": "Filmy",
|
||||
|
@ -348,7 +347,6 @@
|
|||
"HeaderFavoriteAlbums": "Albumy ulubione",
|
||||
"HeaderFavoriteArtists": "Wykonawcy ulubieni",
|
||||
"HeaderFavoriteEpisodes": "Odcinki ulubione",
|
||||
"HeaderFavoriteGames": "Gry ulubione",
|
||||
"HeaderFavoriteMovies": "Filmy ulubione",
|
||||
"HeaderFavoriteShows": "Seriale ulubione",
|
||||
"HeaderFavoriteSongs": "Utwory ulubione",
|
||||
|
@ -363,7 +361,6 @@
|
|||
"HeaderForgotPassword": "Zapomniałem hasła",
|
||||
"HeaderFreeApps": "Darmowe aplikacje Jellyfin",
|
||||
"HeaderFrequentlyPlayed": "Często odtwarzane",
|
||||
"HeaderGames": "Gry",
|
||||
"HeaderGenres": "Gatunki",
|
||||
"HeaderGuests": "Goście",
|
||||
"HeaderGuideProviders": "Dostawcy danych przewodnika telewizyjnego",
|
||||
|
@ -1098,7 +1095,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Plik zawierający instrukcje z dalszymi krokami został utworzony na serwerze:",
|
||||
"MessageForgotPasswordFileExpiration": "Kod resetowania wygaśnie za {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Spróbuj ponownie zainicjować czyszczenie hasła, tym razem używając swojej sieci domowej.",
|
||||
"MessageGamePluginRequired": "Wymaga instalacji wtyczki GameBrowser",
|
||||
"MessageGuestSharingPermissionsHelp": "Większość opcji jest wstępnie nieaktywna dla gości ale może zostać aktywowana wedle potrzeby.",
|
||||
"MessageInstallPluginFromApp": "Wtyczka musi być zainstalowana bezpośrednio z aplikacji, w której ma być używana.",
|
||||
"MessageInvalidForgotPasswordPin": "Nieprawidłowy lub wygasły PIN. Proszę spróbować ponownie.",
|
||||
|
@ -1210,7 +1206,6 @@
|
|||
"OptionBirthLocation": "Miejsce urodzenia",
|
||||
"OptionBlockBooks": "Książki",
|
||||
"OptionBlockChannelContent": "Kanały internetowe",
|
||||
"OptionBlockGames": "Gry",
|
||||
"OptionBlockLiveTvChannels": "Kanały telewizyjne",
|
||||
"OptionBlockLiveTvPrograms": "Programy telewizyjne",
|
||||
"OptionBlockMovies": "Filmy",
|
||||
|
@ -1291,8 +1286,6 @@
|
|||
"OptionFolderSort": "Foldery",
|
||||
"OptionFriday": "Piątek",
|
||||
"OptionFridayShort": "Pt.",
|
||||
"OptionGameSystems": "Konsole gier",
|
||||
"OptionGames": "Gry",
|
||||
"OptionGenres": "Gatunek",
|
||||
"OptionGuestStars": "Gość specjalny",
|
||||
"OptionHasSpecialFeatures": "Funkcje Specjalne",
|
||||
|
@ -1529,7 +1522,6 @@
|
|||
"TabFavorites": "Ulubione",
|
||||
"TabFilter": "Filtruj",
|
||||
"TabFolders": "Foldery",
|
||||
"TabGames": "Gry",
|
||||
"TabGeneral": "Ogólne",
|
||||
"TabGenres": "Gatunki",
|
||||
"TabGuide": "Przewodnik",
|
||||
|
@ -1636,7 +1628,6 @@
|
|||
"ValueDiscNumber": "Dysk {0}",
|
||||
"ValueEpisodeCount": "{0} odcinki",
|
||||
"ValueExample": "Przykład: {0}",
|
||||
"ValueGameCount": "{0} gry",
|
||||
"ValueGuestStar": "Gość specjalny",
|
||||
"ValueItemCount": "{0} pozycja",
|
||||
"ValueItemCountPlural": "{0} pozycji",
|
||||
|
@ -1644,7 +1635,6 @@
|
|||
"ValueMovieCount": "{0} filmy",
|
||||
"ValueMusicVideoCount": "{0} teledyski",
|
||||
"ValueOneEpisode": "1 odcinek",
|
||||
"ValueOneGame": "1 gra",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 teledysk",
|
||||
"ValueOneSeries": "1 serial",
|
||||
|
@ -1666,7 +1656,6 @@
|
|||
"VersionNumber": "Wersja {0}",
|
||||
"ViewPlaybackInfo": "Wyświetlaj informacje o odtwarzaniu",
|
||||
"ViewTypeFolders": "Foldery",
|
||||
"ViewTypeGames": "Gry",
|
||||
"ViewTypeLiveTvChannels": "Kanały",
|
||||
"ViewTypeLiveTvRecordingGroups": "Nagrania",
|
||||
"ViewTypeMovies": "Filmy",
|
||||
|
|
|
@ -216,7 +216,6 @@
|
|||
"FileReadCancelled": "A leitura do arquivo foi cancelada.",
|
||||
"FileReadError": "Ocorreu um erro ao ler o arquivo.",
|
||||
"FolderTypeBooks": "Livros",
|
||||
"FolderTypeGames": "Jogos",
|
||||
"FolderTypeInherit": "Herdar",
|
||||
"FolderTypeMixed": "Conteúdo misto",
|
||||
"FolderTypeMovies": "Filmes",
|
||||
|
@ -338,7 +337,6 @@
|
|||
"HeaderFavoriteAlbums": "Álbuns Favoritos",
|
||||
"HeaderFavoriteArtists": "Artistas Favoritos",
|
||||
"HeaderFavoriteEpisodes": "Episódios Favoritos",
|
||||
"HeaderFavoriteGames": "Jogos Favoritos",
|
||||
"HeaderFavoriteMovies": "Filmes Favoritos",
|
||||
"HeaderFavoriteShows": "Séries Favoritas",
|
||||
"HeaderFavoriteSongs": "Músicas Favoritas",
|
||||
|
@ -353,7 +351,6 @@
|
|||
"HeaderForgotPassword": "Esqueci a Senha",
|
||||
"HeaderFreeApps": "Apps Jellyfin gratuitos",
|
||||
"HeaderFrequentlyPlayed": "Reproduzido Frequentemente",
|
||||
"HeaderGames": "Jogos",
|
||||
"HeaderGenres": "Gêneros",
|
||||
"HeaderGuests": "Convidados",
|
||||
"HeaderGuideProviders": "Provedores de Dados de Guia de TV",
|
||||
|
@ -588,7 +585,6 @@
|
|||
"JellyfinIntroDownloadMessage": "Para fazer o download e instalar o Servidor Jellyfin grátis visite {0}.",
|
||||
"JellyfinIntroDownloadMessageWithoutLink": "Para fazer download e instalar o Servidor Jellyfin grátis visite o website do Jellyfin.",
|
||||
"JellyfinIntroMessage": "Com o Jellyfin você pode facilmente fazer streaming de vídeos, músicas e fotos do Servidor Jellyfin para smartphones, tablets e outros dispositivos.",
|
||||
"LabelAbortedByServerShutdown": "(Abortada pelo desligamento do servidor)",
|
||||
"LabelAccessDay": "Dia da semana:",
|
||||
"LabelAccessEnd": "Hora final:",
|
||||
"LabelAccessStart": "Hora inicial:",
|
||||
|
@ -1073,7 +1069,6 @@
|
|||
"MessageForgotPasswordFileCreated": "O seguinte arquivo foi criado no seu servidor e contém instruções de como proceder:",
|
||||
"MessageForgotPasswordFileExpiration": "O código para redefinição expirará às {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Por favor, tente novamente dentro da rede de sua casa para iniciar o processo para redefinir a senha.",
|
||||
"MessageGamePluginRequired": "Requer a instalação do plugin GameBrowser",
|
||||
"MessageGuestSharingPermissionsHelp": "A maioria dos recursos estão inicialmente indisponíveis para convidados, mas podem ser ativados conforme necessário.",
|
||||
"MessageInstallPluginFromApp": "Este plugin deve ser instalado de dentro do app em que deseja usá-lo.",
|
||||
"MessageInvalidForgotPasswordPin": "Foi digitado um código inválido ou expirado. Por favor, tente novamente.",
|
||||
|
@ -1098,7 +1093,6 @@
|
|||
"MessageNoTrailersFound": "Nenhum trailer encontrado. Instale o canal Trailer para melhorar sua experiência com filmes, adicionando uma biblioteca de trailers da internet.",
|
||||
"MessageNothingHere": "Nada aqui.",
|
||||
"MessagePasswordResetForUsers": "As senhas foram removidas dos seguintes usuários. Para entrar, acesse com uma senha em branco",
|
||||
"MessagePaymentServicesUnavailable": "Serviços de pagamento estão indisponíveis no momento. Por favor, tente novamente mais tarde.",
|
||||
"MessagePendingJellyfinAccountAdded": "A conta do Jellyfin foi adicionada para este usuário. Um email será enviado para o dono da conta. O convite precisará ser confirmado clicando no link dentro do email.",
|
||||
"MessagePleaseEnsureInternetMetadata": "Por favor, certifique-se que o download de metadados da internet está habilitado.",
|
||||
"MessagePleaseRestart": "Por favor, reinicie para finalizar a atualização.",
|
||||
|
@ -1183,7 +1177,6 @@
|
|||
"OptionBirthLocation": "Local de Nascimento",
|
||||
"OptionBlockBooks": "Livros",
|
||||
"OptionBlockChannelContent": "Conteúdo do Canal de Internet",
|
||||
"OptionBlockGames": "Jogos",
|
||||
"OptionBlockLiveTvChannels": "Canais de TV ao vivo",
|
||||
"OptionBlockLiveTvPrograms": "Programas de TV ao vivo",
|
||||
"OptionBlockMovies": "Filmes",
|
||||
|
@ -1261,8 +1254,6 @@
|
|||
"OptionFolderSort": "Pastas",
|
||||
"OptionFriday": "Sexta-feira",
|
||||
"OptionFridayShort": "Sex",
|
||||
"OptionGameSystems": "Sistemas de jogos",
|
||||
"OptionGames": "Jogos",
|
||||
"OptionGenres": "Gêneros",
|
||||
"OptionGuestStars": "Convidados Especiais",
|
||||
"OptionHasSpecialFeatures": "Recursos Especiais",
|
||||
|
@ -1489,7 +1480,6 @@
|
|||
"TabFavorites": "Favoritos",
|
||||
"TabFilter": "Filtro",
|
||||
"TabFolders": "Pastas",
|
||||
"TabGames": "Jogos",
|
||||
"TabGeneral": "Geral",
|
||||
"TabGenres": "Gêneros",
|
||||
"TabGuide": "Guia",
|
||||
|
@ -1587,14 +1577,12 @@
|
|||
"ValueDiscNumber": "Disco {0}",
|
||||
"ValueEpisodeCount": "{0} episódios",
|
||||
"ValueExample": "Exemplo: {0}",
|
||||
"ValueGameCount": "{0} jogos",
|
||||
"ValueGuestStar": "Convidado Especial",
|
||||
"ValueItemCountPlural": "{0} itens",
|
||||
"ValueMovieCount": "{0} filmes",
|
||||
"ValueMusicVideoCount": "{0} vídeos musicais",
|
||||
"ValueOneAlbum": "1 álbum",
|
||||
"ValueOneEpisode": "1 episódio",
|
||||
"ValueOneGame": "1 jogo",
|
||||
"ValueOneMovie": "1 filme",
|
||||
"ValueOneMusicVideo": "1 vídeo musical",
|
||||
"ValueOneSeries": "1 série",
|
||||
|
@ -1613,7 +1601,6 @@
|
|||
"VersionNumber": "Versão {0}",
|
||||
"ViewPlaybackInfo": "Ver informação de reprodução",
|
||||
"ViewTypeFolders": "Pastas",
|
||||
"ViewTypeGames": "Jogos",
|
||||
"ViewTypeLiveTvChannels": "Canais",
|
||||
"ViewTypeLiveTvRecordingGroups": "Gravações",
|
||||
"ViewTypeMovies": "Filmes",
|
||||
|
|
|
@ -135,7 +135,6 @@
|
|||
"FileReadCancelled": "A leitura do ficheiro foi cancelada.",
|
||||
"FileReadError": "Ocorreu um erro ao ler o ficheiro.",
|
||||
"FolderTypeBooks": "Livros",
|
||||
"FolderTypeGames": "Jogos",
|
||||
"FolderTypeInherit": "Herdar",
|
||||
"FolderTypeMixed": "Conteúdo misto",
|
||||
"FolderTypeMovies": "Filmes",
|
||||
|
@ -226,7 +225,6 @@
|
|||
"HeaderExternalServices": "Serviços Externos",
|
||||
"HeaderFavoriteAlbums": "Álbuns Favoritos",
|
||||
"HeaderFavoriteEpisodes": "Episódios Favoritos",
|
||||
"HeaderFavoriteGames": "Jogos Favoritos",
|
||||
"HeaderFavoriteMovies": "Filmes Favoritos",
|
||||
"HeaderFavoriteShows": "Séries Favoritas",
|
||||
"HeaderFeatureAccess": "Acesso a Características",
|
||||
|
@ -414,7 +412,6 @@
|
|||
"ImportMissingEpisodesHelp": "Se ativo, a informação acerca dos episódios em falta, serão importados para a sua base de dados do Jellyfin e exibida dentro das temporadas e séries. Isto pode aumentar significativamente a duração da análise da biblioteca.",
|
||||
"Invitations": "Convites",
|
||||
"JellyfinIntroMessage": "Com o Jellyfin você pode facilmente fazer streaming de vídeos, músicas e fotos do Servidor Jellyfin para smartphones, tablets e outros dispositivos.",
|
||||
"LabelAbortedByServerShutdown": "(Abortada pelo desligamento do servidor)",
|
||||
"LabelAccessDay": "Dia da semana:",
|
||||
"LabelAccessEnd": "Hora final:",
|
||||
"LabelAccessStart": "Hora inicial:",
|
||||
|
@ -840,7 +837,6 @@
|
|||
"OptionBestAvailableStreamQuality": "Melhor disponível",
|
||||
"OptionBlockBooks": "Livros",
|
||||
"OptionBlockChannelContent": "Conteúdo do Canal de Internet",
|
||||
"OptionBlockGames": "Jogos",
|
||||
"OptionBlockLiveTvChannels": "Canais de TV ao vivo",
|
||||
"OptionBlockLiveTvPrograms": "Programas de TV ao vivo",
|
||||
"OptionBlockMovies": "Filmes",
|
||||
|
@ -1075,7 +1071,6 @@
|
|||
"TabFavorites": "Favoritos",
|
||||
"TabFilter": "Filtro",
|
||||
"TabFolders": "Pastas",
|
||||
"TabGames": "Jogos",
|
||||
"TabGeneral": "Geral",
|
||||
"TabGenres": "Géneros",
|
||||
"TabGuide": "Guia",
|
||||
|
@ -1165,7 +1160,6 @@
|
|||
"ValueVideoCodec": "Codec de Vídeo: {0}",
|
||||
"VersionNumber": "Versão {0}",
|
||||
"ViewTypeFolders": "Pastas",
|
||||
"ViewTypeGames": "Jogos",
|
||||
"ViewTypeLiveTvChannels": "Canais",
|
||||
"ViewTypeLiveTvRecordingGroups": "Gravações",
|
||||
"ViewTypeMovies": "Filmes",
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
"DeviceAccessHelp": "Aceasta se aplică numai pentru dispozitive care pot fi identificate în mod unic și nu va împiedica accesul din navigatorul de internet. Filtrând accesul dispozitivelor utilizatorului va împiedica utilizarea noilor dispozitive până când acestea nu vor fi aprobate aici.",
|
||||
"ExtractChapterImagesHelp": "Extragerea de imagini de capitol va permite aplicațiilor Jellyfin sa afișeze grafic un meniu de selecție a scenelor. Procesul poate fi lent, intensiv pentru procesor și poate necesita câțiva gigaocteți de spațiu de stocare. Acesta rulează atunci când fișierele media sunt detectate ca noi, și de asemenea ca o sarcină programată de noapte. Programare este configurabilă în zona de administrare a sarcinilor programate. Nu este recomandat ca această sarcină să ruleze în timpul perioadelor de utilizare intensă de către utilizatori.",
|
||||
"FolderTypeBooks": "Cărți",
|
||||
"FolderTypeGames": "Jocuri",
|
||||
"FolderTypeInherit": "Moștenește",
|
||||
"FolderTypeMixed": "Conținut mixt",
|
||||
"FolderTypeMovies": "Filme",
|
||||
|
@ -282,7 +281,6 @@
|
|||
"TabCollections": "Colecții",
|
||||
"TabEpisodes": "Episoade",
|
||||
"TabFavorites": "Favorite",
|
||||
"TabGames": "Jocuri",
|
||||
"TabGenres": "Genuri",
|
||||
"TabGuide": "Ghid",
|
||||
"TabImage": "Imagine",
|
||||
|
|
|
@ -225,7 +225,6 @@
|
|||
"FileReadCancelled": "Чтение файла было отменено.",
|
||||
"FileReadError": "Произошла ошибка при чтении файла.",
|
||||
"FolderTypeBooks": "Книги",
|
||||
"FolderTypeGames": "Игры",
|
||||
"FolderTypeInherit": "Наследуемое",
|
||||
"FolderTypeMixed": "Смешанное содержание",
|
||||
"FolderTypeMovies": "Фильмы",
|
||||
|
@ -350,7 +349,6 @@
|
|||
"HeaderFavoriteAlbums": "Избранные альбомы",
|
||||
"HeaderFavoriteArtists": "Избранные исполнители",
|
||||
"HeaderFavoriteEpisodes": "Избранные эпизоды",
|
||||
"HeaderFavoriteGames": "Избранные игры",
|
||||
"HeaderFavoriteMovies": "Избранные фильмы",
|
||||
"HeaderFavoriteShows": "Избранные передачи",
|
||||
"HeaderFavoriteSongs": "Избранные композиции",
|
||||
|
@ -365,7 +363,6 @@
|
|||
"HeaderForgotPassword": "Забыли пароль?",
|
||||
"HeaderFreeApps": "Бесплатные Jellyfin-приложения",
|
||||
"HeaderFrequentlyPlayed": "Воспроизведённые часто",
|
||||
"HeaderGames": "Игры",
|
||||
"HeaderGenres": "Жанры",
|
||||
"HeaderGuests": "Гости",
|
||||
"HeaderGuideProviders": "Поставщики данных телегида",
|
||||
|
@ -1112,7 +1109,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Следующий файл был создан на вашем сервере и содержит инструкции о том, как поступить:",
|
||||
"MessageForgotPasswordFileExpiration": "Сброс PIN-кода истекает {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Повторите попытку в пределах своей домашней сети, чтобы начать процесс сброса пароля.",
|
||||
"MessageGamePluginRequired": "Требуется установка плагина GameBrowser",
|
||||
"MessageGuestSharingPermissionsHelp": "Многих компонентов изначально для гостей не имеется, но могут быть включены по необходимости.",
|
||||
"MessageInstallPluginFromApp": "Данный плагин должен устанавливаться изнутри приложения, для которого оно предназначено.",
|
||||
"MessageInvalidForgotPasswordPin": "Был введён неверный или истёкший PIN-код. Повторите попытку.",
|
||||
|
@ -1226,7 +1222,6 @@
|
|||
"OptionBirthLocation": "Место рождения",
|
||||
"OptionBlockBooks": "Книги",
|
||||
"OptionBlockChannelContent": "Содержание интернет-канала",
|
||||
"OptionBlockGames": "Игры",
|
||||
"OptionBlockLiveTvChannels": "Эфирные каналы",
|
||||
"OptionBlockLiveTvPrograms": "Эфирные передачи",
|
||||
"OptionBlockMovies": "Фильмы",
|
||||
|
@ -1310,8 +1305,6 @@
|
|||
"OptionFolderSort": "Папки",
|
||||
"OptionFriday": "пятница",
|
||||
"OptionFridayShort": "птн",
|
||||
"OptionGameSystems": "Платформы",
|
||||
"OptionGames": "Игры",
|
||||
"OptionGenres": "Жанры",
|
||||
"OptionGuestStars": "Приглашённые актёры",
|
||||
"OptionHasSpecialFeatures": "Доп. материалы",
|
||||
|
@ -1552,7 +1545,6 @@
|
|||
"TabFavorites": "Избранное",
|
||||
"TabFilter": "Фильтры",
|
||||
"TabFolders": "Папки",
|
||||
"TabGames": "Игры",
|
||||
"TabGeneral": "Общие",
|
||||
"TabGenres": "Жанры",
|
||||
"TabGuide": "Телегид",
|
||||
|
@ -1659,7 +1651,6 @@
|
|||
"ValueDiscNumber": "Диск {0}",
|
||||
"ValueEpisodeCount": "{0} эпизод(а/ов)",
|
||||
"ValueExample": "Пример: {0}",
|
||||
"ValueGameCount": "{0} игр(ы)",
|
||||
"ValueGuestStar": "Пригл. актёр",
|
||||
"ValueItemCount": "{0} элемент(а/ов)",
|
||||
"ValueItemCountPlural": "{0} элемент(а/ов)",
|
||||
|
@ -1669,7 +1660,6 @@
|
|||
"ValueMusicVideoCount": "{0} музыкальных видео",
|
||||
"ValueOneAlbum": "1 альбом",
|
||||
"ValueOneEpisode": "1 эпизод",
|
||||
"ValueOneGame": "1 игра",
|
||||
"ValueOneMovie": "1 фильм",
|
||||
"ValueOneMusicVideo": "1 музыкальное видео",
|
||||
"ValueOneSeries": "1 сериал",
|
||||
|
@ -1691,7 +1681,6 @@
|
|||
"VersionNumber": "Версия {0}",
|
||||
"ViewPlaybackInfo": "Сведения о воспроизводимом",
|
||||
"ViewTypeFolders": "Папки",
|
||||
"ViewTypeGames": "Игры",
|
||||
"ViewTypeLiveTvChannels": "Каналы",
|
||||
"ViewTypeLiveTvRecordingGroups": "Записи",
|
||||
"ViewTypeMovies": "Кино",
|
||||
|
|
|
@ -160,7 +160,6 @@
|
|||
"FileNotFound": "Súbor nenájdený.",
|
||||
"FileReadError": "Pri čítaní súboru nastala chyba.",
|
||||
"FolderTypeBooks": "Knihy",
|
||||
"FolderTypeGames": "Hry",
|
||||
"FolderTypeInherit": "Zdediť",
|
||||
"FolderTypeMixed": "Zmiešaný obsah",
|
||||
"FolderTypeMovies": "Filmy",
|
||||
|
@ -240,7 +239,6 @@
|
|||
"HeaderFavoriteAlbums": "Obľúbené albumy",
|
||||
"HeaderFavoriteArtists": "Obľúbení umelci",
|
||||
"HeaderFavoriteEpisodes": "Obľúbené epizódy",
|
||||
"HeaderFavoriteGames": "Obľúbené hry",
|
||||
"HeaderFavoriteMovies": "Obľúbené filmy",
|
||||
"HeaderFavoriteShows": "Obľúbené seriály",
|
||||
"HeaderFavoriteSongs": "Obľúbené pesničky",
|
||||
|
@ -251,7 +249,6 @@
|
|||
"HeaderForgotKey": "Zabudol som kľúč",
|
||||
"HeaderForgotPassword": "Zabudnuté heslo",
|
||||
"HeaderFrequentlyPlayed": "Často hrané",
|
||||
"HeaderGames": "Hry",
|
||||
"HeaderGenres": "Žánre",
|
||||
"HeaderGuests": "Hostia",
|
||||
"HeaderHomePage": "Domovská stránka",
|
||||
|
@ -697,7 +694,6 @@
|
|||
"MessageFileReadError": "Pri čítaní súboru nastala chyba.",
|
||||
"MessageFileWillBeDeleted": "Nasledovný súbor bude odstránený:",
|
||||
"MessageFollowingFileWillBeMovedFrom": "Nasledujúci súbor bude presunutý z:",
|
||||
"MessageGamePluginRequired": "Požaduje inštaláciu rozšírenia GameBrowser",
|
||||
"MessageGuestSharingPermissionsHelp": "Väčšina funkcií je hosťom spočiatku nedostupná, ale môžete ich povoliť ak treba.",
|
||||
"MessageInvalidForgotPasswordPin": "Bol zadaný neplatný alebo expirovaný PIN. Skúste znova prosím.",
|
||||
"MessageInvalidUser": "Nesprávne meno alebo heslo. Skúste prosím znovu.",
|
||||
|
@ -771,7 +767,6 @@
|
|||
"OptionBackdrop": "Pozadie",
|
||||
"OptionBirthLocation": "Miesto narodenia",
|
||||
"OptionBlockBooks": "Knihy",
|
||||
"OptionBlockGames": "Hry",
|
||||
"OptionBlockMovies": "Filmy",
|
||||
"OptionBlockMusic": "Hudba",
|
||||
"OptionBlockOthers": "Iné",
|
||||
|
@ -823,8 +818,6 @@
|
|||
"OptionFolderSort": "Priečinky",
|
||||
"OptionFriday": "Piatok",
|
||||
"OptionFridayShort": "Pia",
|
||||
"OptionGameSystems": "Herné systémy",
|
||||
"OptionGames": "Hry",
|
||||
"OptionGenres": "Žánre",
|
||||
"OptionGuestStars": "Hosťujúce hviezdy",
|
||||
"OptionHasSubtitles": "Titulky",
|
||||
|
@ -997,7 +990,6 @@
|
|||
"TabEpisodes": "Epizódy",
|
||||
"TabFavorites": "Obľúbené",
|
||||
"TabFolders": "Priečinky",
|
||||
"TabGames": "Hry",
|
||||
"TabGeneral": "Všeobecné",
|
||||
"TabGenres": "Žánre",
|
||||
"TabGuide": "Sprievodca",
|
||||
|
@ -1086,7 +1078,6 @@
|
|||
"ValueDiscNumber": "Disk {0}",
|
||||
"ValueEpisodeCount": "{0} epizód",
|
||||
"ValueExample": "Príklad: {0}",
|
||||
"ValueGameCount": "{0} hier",
|
||||
"ValueGuestStar": "Hosťujúca hviezda",
|
||||
"ValueItemCount": "{0} položka",
|
||||
"ValueItemCountPlural": "{0} položiek",
|
||||
|
@ -1094,7 +1085,6 @@
|
|||
"ValueMovieCount": "{0} filmov",
|
||||
"ValueMusicVideoCount": "{0} hudobných videí",
|
||||
"ValueOneEpisode": "1 epizóda",
|
||||
"ValueOneGame": "1 hra",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 hudobné video",
|
||||
"ValueOneSeries": "1 seriál",
|
||||
|
@ -1112,7 +1102,6 @@
|
|||
"ValueVideoCodec": "Video kodeky: {0}",
|
||||
"VersionNumber": "Verzia {0}",
|
||||
"ViewTypeFolders": "Priečinky",
|
||||
"ViewTypeGames": "Hry",
|
||||
"ViewTypeLiveTvChannels": "Kanály",
|
||||
"ViewTypeLiveTvRecordingGroups": "Nahrávky",
|
||||
"ViewTypeMovies": "Filmy",
|
||||
|
|
|
@ -107,7 +107,6 @@
|
|||
"ThisWizardWillGuideYou": "Carovnik vas bo vodil skozi postopek namestitve. Za zacetek, izberite jezik.",
|
||||
"TitleSupport": "Podpora",
|
||||
"VersionNumber": "Verzija {0}",
|
||||
"ViewTypeGames": "Igre",
|
||||
"ViewTypeMovies": "Filmi",
|
||||
"ViewTypeMusic": "Glasba",
|
||||
"ViewTypeMusicFavoriteAlbums": "Priljubljeni Albumi",
|
||||
|
|
|
@ -203,7 +203,6 @@
|
|||
"FileReadCancelled": "Inläsningen av filen har avbrutits.",
|
||||
"FileReadError": "Ett fel inträffade vid inläsningen av filen.",
|
||||
"FolderTypeBooks": "Böcker",
|
||||
"FolderTypeGames": "Spel",
|
||||
"FolderTypeInherit": "Ärv",
|
||||
"FolderTypeMixed": "Blandat innehåll",
|
||||
"FolderTypeMovies": "Filmer",
|
||||
|
@ -323,7 +322,6 @@
|
|||
"HeaderFavoriteAlbums": "Favoritalbum",
|
||||
"HeaderFavoriteArtists": "Favorit artister",
|
||||
"HeaderFavoriteEpisodes": "Favoritavsnitt",
|
||||
"HeaderFavoriteGames": "Favoritspel",
|
||||
"HeaderFavoriteMovies": "Favoritfilmer",
|
||||
"HeaderFavoriteShows": "Favoritserier",
|
||||
"HeaderFavoriteSongs": "Favorit låtar",
|
||||
|
@ -337,7 +335,6 @@
|
|||
"HeaderForgotPassword": "Glömt Lösenord",
|
||||
"HeaderFreeApps": "Gratis Jellyfin appar",
|
||||
"HeaderFrequentlyPlayed": "Ofta spelade",
|
||||
"HeaderGames": "Spel",
|
||||
"HeaderGenres": "Genrer",
|
||||
"HeaderGuests": "Gäster",
|
||||
"HeaderGuideProviders": "Källor för programguide",
|
||||
|
@ -1036,7 +1033,6 @@
|
|||
"MessageForgotPasswordFileCreated": "Följande fil har skapats på din server och innehåller information om hur du går vidare:",
|
||||
"MessageForgotPasswordFileExpiration": "Koden för återställning går ut {0}.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Försök igen innanför ditt hemma-nätverk, att starta återställningen av lösenordet.",
|
||||
"MessageGamePluginRequired": "Kräver installation av tjänsten 'GameBrowser'",
|
||||
"MessageGuestSharingPermissionsHelp": "De flesta funktioner är inaktiverade för gäster men kan aktiveras efter behov.",
|
||||
"MessageInstallPluginFromApp": "Detta tillägg måste installeras inifrån den app det skall användas i.",
|
||||
"MessageInvalidForgotPasswordPin": "Koden har gått ut eller så är den felaktig. Försök igen.",
|
||||
|
@ -1141,7 +1137,6 @@
|
|||
"OptionBirthLocation": "Födelseort",
|
||||
"OptionBlockBooks": "Böcker",
|
||||
"OptionBlockChannelContent": "Kanalinnehåll från Internet",
|
||||
"OptionBlockGames": "Spel",
|
||||
"OptionBlockLiveTvChannels": "TV-kanaler",
|
||||
"OptionBlockLiveTvPrograms": "TV-program",
|
||||
"OptionBlockMovies": "Filmer",
|
||||
|
@ -1223,8 +1218,6 @@
|
|||
"OptionFolderSort": "Mappar",
|
||||
"OptionFriday": "Fredag",
|
||||
"OptionFridayShort": "Fre",
|
||||
"OptionGameSystems": "Spelsystem",
|
||||
"OptionGames": "Spel",
|
||||
"OptionGenres": "Genrer",
|
||||
"OptionGuestStars": "Gästartister",
|
||||
"OptionHasSpecialFeatures": "Extramaterial:",
|
||||
|
@ -1446,7 +1439,6 @@
|
|||
"TabFavorites": "Favoriter",
|
||||
"TabFilter": "Filtrera",
|
||||
"TabFolders": "Mappar",
|
||||
"TabGames": "Spel",
|
||||
"TabGeneral": "Allmänt",
|
||||
"TabGenres": "Genrer",
|
||||
"TabGuide": "TV-guide",
|
||||
|
@ -1543,7 +1535,6 @@
|
|||
"ValueDiscNumber": "Skiva {0}",
|
||||
"ValueEpisodeCount": "{0} avsnitt",
|
||||
"ValueExample": "Exempel: {0}",
|
||||
"ValueGameCount": "{0} spel",
|
||||
"ValueGuestStar": "Gästartist",
|
||||
"ValueItemCount": "{0} objekt",
|
||||
"ValueItemCountPlural": "{0} objekt",
|
||||
|
@ -1551,7 +1542,6 @@
|
|||
"ValueMovieCount": "{0} filmer",
|
||||
"ValueMusicVideoCount": "{0} musikvideor",
|
||||
"ValueOneEpisode": "1 avsnitt",
|
||||
"ValueOneGame": "1 spel",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueOneMusicVideo": "1 musikvideo",
|
||||
"ValueOneSeries": "1 serie",
|
||||
|
@ -1568,7 +1558,6 @@
|
|||
"ValueVideoCodec": "Videokodning: {0}",
|
||||
"ViewPlaybackInfo": "Visa uppspelningsinfo",
|
||||
"ViewTypeFolders": "Mappar",
|
||||
"ViewTypeGames": "Spel",
|
||||
"ViewTypeLiveTvChannels": "Kanaler",
|
||||
"ViewTypeLiveTvRecordingGroups": "Inspelningar",
|
||||
"ViewTypeMovies": "Filmer",
|
||||
|
|
|
@ -58,7 +58,6 @@
|
|||
"FileReadCancelled": "Dosya Okuma İptal Edildi",
|
||||
"FileReadError": "Dosya Okunurken Bir Hata Oluştu",
|
||||
"FolderTypeBooks": "Kitaplar",
|
||||
"FolderTypeGames": "Oyunlar",
|
||||
"FolderTypeMixed": "Karışık içerik",
|
||||
"FolderTypeMovies": "Filmler",
|
||||
"FolderTypeMusic": "Müzik",
|
||||
|
@ -85,7 +84,6 @@
|
|||
"HeaderEasyPinCode": "Kolay Pin Kodu",
|
||||
"HeaderFavoriteAlbums": "Favori Albumler",
|
||||
"HeaderFavoriteEpisodes": "Favori Bölümler",
|
||||
"HeaderFavoriteGames": "Favori Oyunlar",
|
||||
"HeaderFavoriteMovies": "Favori Filmler",
|
||||
"HeaderFavoriteShows": "Favori Showlar",
|
||||
"HeaderFilters": "Filtreler",
|
||||
|
@ -298,7 +296,6 @@
|
|||
"TabEpisodes": "Bölümler",
|
||||
"TabFavorites": "Favoriler",
|
||||
"TabFolders": "Klasörler",
|
||||
"TabGames": "Oyunlar",
|
||||
"TabGeneral": "Genel",
|
||||
"TabGenres": "Türler",
|
||||
"TabGuide": "Kılavuz",
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
"ButtonSignOut": "Sign out",
|
||||
"DeathDateValue": "Помер: {0}",
|
||||
"FolderTypeBooks": "Книги",
|
||||
"FolderTypeGames": "Ігри",
|
||||
"FolderTypeMovies": "Фільми",
|
||||
"FolderTypeMusic": "Музика",
|
||||
"FolderTypePhotos": "Світлини",
|
||||
|
@ -27,7 +26,6 @@
|
|||
"HeaderCreatePassword": "Створити пароль",
|
||||
"HeaderDeleteDevice": "Видалить пристрій",
|
||||
"HeaderFavoriteMovies": "Улюблені фільми",
|
||||
"HeaderGames": "Ігри",
|
||||
"HeaderInvitationSent": "Запрошення надіслано",
|
||||
"HeaderLatestAlbums": "Останні альбоми",
|
||||
"HeaderLatestEpisodes": "Останні епізоди",
|
||||
|
@ -100,7 +98,6 @@
|
|||
"OptionDislikes": "Не подобається",
|
||||
"OptionFavorite": "Улюблене",
|
||||
"OptionFolderSort": "Теки",
|
||||
"OptionGames": "Ігри",
|
||||
"OptionHasSubtitles": "Субтитри",
|
||||
"OptionLatestMedia": "Останні медіа",
|
||||
"OptionLatestTvRecordings": "Останні записи",
|
||||
|
@ -136,14 +133,12 @@
|
|||
"ValueAwards": "Нагороди: {0}",
|
||||
"ValueDiscNumber": "Диск {0}",
|
||||
"ValueEpisodeCount": "{0} епізодів",
|
||||
"ValueGameCount": "{0} ігр",
|
||||
"ValueLinks": "Посилання: {0}",
|
||||
"ValueMinutes": "{0} хвилин",
|
||||
"ValueMovieCount": "{0} фільмів",
|
||||
"ValueMusicVideoCount": "{0} музичних кліпів",
|
||||
"ValueOneAlbum": "1 альбом",
|
||||
"ValueOneEpisode": "1 епізод",
|
||||
"ValueOneGame": "1 гра",
|
||||
"ValueOneMovie": "1 фільм",
|
||||
"ValueOneMusicVideo": "1 музичний кліп",
|
||||
"ValueOneSeries": "1 серія",
|
||||
|
|
|
@ -227,7 +227,6 @@
|
|||
"FileReadCancelled": "文件读取已被取消。",
|
||||
"FileReadError": "读取文件发生错误。",
|
||||
"FolderTypeBooks": "有声读物",
|
||||
"FolderTypeGames": "游戏",
|
||||
"FolderTypeInherit": "继承",
|
||||
"FolderTypeMixed": "各类内容",
|
||||
"FolderTypeMovies": "电影",
|
||||
|
@ -351,7 +350,6 @@
|
|||
"HeaderFavoriteAlbums": "最爱的专辑",
|
||||
"HeaderFavoriteArtists": "最爱的作家",
|
||||
"HeaderFavoriteEpisodes": "最爱的剧集",
|
||||
"HeaderFavoriteGames": "最爱的游戏",
|
||||
"HeaderFavoriteMovies": "最爱的电影",
|
||||
"HeaderFavoriteShows": "最爱的节目",
|
||||
"HeaderFavoriteSongs": "最爱的歌曲",
|
||||
|
@ -366,7 +364,6 @@
|
|||
"HeaderForgotPassword": "忘记密码",
|
||||
"HeaderFreeApps": "免费 Jellyfin 应用程序",
|
||||
"HeaderFrequentlyPlayed": "多次播放",
|
||||
"HeaderGames": "游戏",
|
||||
"HeaderGenres": "风格",
|
||||
"HeaderGuests": "访客",
|
||||
"HeaderGuideProviders": "电视指南数据提供方",
|
||||
|
@ -1114,7 +1111,6 @@
|
|||
"MessageForgotPasswordFileCreated": "已在服务器上创建了以下文件, 并包含有关后续步骤说明:",
|
||||
"MessageForgotPasswordFileExpiration": "复位 pin 将在 {0} 过期。",
|
||||
"MessageForgotPasswordInNetworkRequired": "请连接你的家庭网络后再试一次以开始密码重置流程。",
|
||||
"MessageGamePluginRequired": "需要安装 GameBrowser 插件",
|
||||
"MessageGuestSharingPermissionsHelp": "大多数功能对访客是默认不可用的,但你可以按需要启用他们。",
|
||||
"MessageInstallPluginFromApp": "这个插件必须从你打算使用的应用程序中安装。",
|
||||
"MessageInvalidForgotPasswordPin": "你输入了一个无效的或过期的 pin 码。请再试一次。",
|
||||
|
@ -1228,7 +1224,6 @@
|
|||
"OptionBirthLocation": "出生地",
|
||||
"OptionBlockBooks": "书籍",
|
||||
"OptionBlockChannelContent": "互联网频道内容",
|
||||
"OptionBlockGames": "游戏",
|
||||
"OptionBlockLiveTvChannels": "电视直播频道",
|
||||
"OptionBlockLiveTvPrograms": "电视直播程序",
|
||||
"OptionBlockMovies": "电影",
|
||||
|
@ -1312,8 +1307,6 @@
|
|||
"OptionFolderSort": "文件夹",
|
||||
"OptionFriday": "星期五",
|
||||
"OptionFridayShort": "星期五",
|
||||
"OptionGameSystems": "游戏系统",
|
||||
"OptionGames": "游戏",
|
||||
"OptionGenres": "风格",
|
||||
"OptionGuestStars": "特邀嘉宾",
|
||||
"OptionHasSpecialFeatures": "特殊功能",
|
||||
|
@ -1554,7 +1547,6 @@
|
|||
"TabFavorites": "我的最爱",
|
||||
"TabFilter": "筛选",
|
||||
"TabFolders": "文件夹",
|
||||
"TabGames": "游戏",
|
||||
"TabGeneral": "常规",
|
||||
"TabGenres": "风格",
|
||||
"TabGuide": "指南",
|
||||
|
@ -1661,7 +1653,6 @@
|
|||
"ValueDiscNumber": "盘 {0}",
|
||||
"ValueEpisodeCount": "{0} 集",
|
||||
"ValueExample": "例如:{0}",
|
||||
"ValueGameCount": "{0} 个游戏",
|
||||
"ValueGuestStar": "特邀嘉宾",
|
||||
"ValueItemCount": "{0} 项",
|
||||
"ValueItemCountPlural": "{0} 项",
|
||||
|
@ -1671,7 +1662,6 @@
|
|||
"ValueMusicVideoCount": "{0} 个音乐视频",
|
||||
"ValueOneAlbum": "1张专辑",
|
||||
"ValueOneEpisode": "1 集",
|
||||
"ValueOneGame": "1 个游戏",
|
||||
"ValueOneMovie": "1 个电影",
|
||||
"ValueOneMusicVideo": "1个音乐视频",
|
||||
"ValueOneSeries": "1 部电视剧",
|
||||
|
@ -1693,7 +1683,6 @@
|
|||
"VersionNumber": "版本 {0}",
|
||||
"ViewPlaybackInfo": "查看播放信息",
|
||||
"ViewTypeFolders": "文件夹",
|
||||
"ViewTypeGames": "游戏",
|
||||
"ViewTypeLiveTvChannels": "频道",
|
||||
"ViewTypeLiveTvRecordingGroups": "录制",
|
||||
"ViewTypeMovies": "电影",
|
||||
|
|
|
@ -48,7 +48,6 @@
|
|||
"CustomDlnaProfilesHelp": "為新的設備建立自定配置或覆蓋原有系統配置。",
|
||||
"DeviceAccessHelp": "只適用於唯一辨識方法的裝置,並不會阻止瀏覽器訪問。已過濾的用戶設備會被阻止訪問,直到他們使用已批准裝置。",
|
||||
"FolderTypeBooks": "書藉",
|
||||
"FolderTypeGames": "遊戲",
|
||||
"FolderTypeInherit": "繼承",
|
||||
"FolderTypeMixed": "混合內容",
|
||||
"FolderTypeMovies": "電影",
|
||||
|
@ -89,12 +88,10 @@
|
|||
"HeaderDownloadSubtitlesFor": "下載字幕:",
|
||||
"HeaderEasyPinCode": "簡易 Pin 碼",
|
||||
"HeaderFavoriteEpisodes": "我的最愛劇集",
|
||||
"HeaderFavoriteGames": "我的最愛遊戲",
|
||||
"HeaderFeatureAccess": "可以使用的功能",
|
||||
"HeaderFetchImages": "獲取圖像:",
|
||||
"HeaderFilters": "篩選條件",
|
||||
"HeaderFrequentlyPlayed": "經常播放",
|
||||
"HeaderGames": "遊戲",
|
||||
"HeaderGuests": "賓客",
|
||||
"HeaderImageSettings": "圖像設置",
|
||||
"HeaderInstalledServices": "已安裝的服務",
|
||||
|
@ -331,7 +328,6 @@
|
|||
"OptionBanner": "橫幅",
|
||||
"OptionBeta": "公測",
|
||||
"OptionBlockBooks": "書籍",
|
||||
"OptionBlockGames": "遊戲",
|
||||
"OptionBluray": "藍光",
|
||||
"OptionBooks": "書籍",
|
||||
"OptionCollections": "藏品",
|
||||
|
@ -370,8 +366,6 @@
|
|||
"OptionFavorite": "我的最愛",
|
||||
"OptionFolderSort": "文件夾",
|
||||
"OptionFriday": "星期五",
|
||||
"OptionGameSystems": "遊戲系統",
|
||||
"OptionGames": "遊戲",
|
||||
"OptionGuestStars": "特約明星",
|
||||
"OptionHasSpecialFeatures": "特色",
|
||||
"OptionHasSubtitles": "字幕",
|
||||
|
@ -462,7 +456,6 @@
|
|||
"TabEpisodes": "劇集",
|
||||
"TabFavorites": "我的最受",
|
||||
"TabFolders": "文件夾",
|
||||
"TabGames": "遊戲",
|
||||
"TabGeneral": "一般",
|
||||
"TabGenres": "風格",
|
||||
"TabGuide": "指南",
|
||||
|
@ -517,7 +510,6 @@
|
|||
"UserProfilesIntro": "Jellyfin 已內置支援用戶設置文件,讓每個用戶都有自己的顯示設置,播放情況和家長監護。",
|
||||
"Users": "用戶",
|
||||
"ValueEpisodeCount": "{0} 劇集",
|
||||
"ValueGameCount": "{0} 遊戲",
|
||||
"ValueGuestStar": "特約明星",
|
||||
"ValueMusicVideoCount": "{0} 個 MV",
|
||||
"ValueOneMusicVideo": "1個 MV",
|
||||
|
@ -525,7 +517,6 @@
|
|||
"ValueSeriesCount": "{0} 劇集",
|
||||
"ValueSongCount": "{0} 首歌",
|
||||
"VersionNumber": "版本 {0}",
|
||||
"ViewTypeGames": "遊戲",
|
||||
"ViewTypeMusicFavoriteSongs": "我的最愛歌曲",
|
||||
"ViewTypeMusicSongs": "歌曲",
|
||||
"WelcomeToProject": "歡迎來到 Jellyfin!",
|
||||
|
|
|
@ -308,7 +308,6 @@
|
|||
"TabCollectionTitles": "標題",
|
||||
"TabEpisodes": "單元",
|
||||
"TabFolders": "文件夾",
|
||||
"TabGames": "遊戲",
|
||||
"TabGeneral": "一般",
|
||||
"TabGenres": "類型",
|
||||
"TabGuide": "節目表",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue