mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
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 劇集",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue