1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add latest translations

This commit is contained in:
Luke Pulverenti 2014-04-03 18:50:04 -04:00
parent 55bfb651b6
commit 861df73b9b
71 changed files with 452 additions and 309 deletions

View file

@ -10,14 +10,14 @@
SortOrder: "Descending",
MediaTypes: "Game",
Limit: 10,
Recursive: true
Recursive: true,
Fields: "ItemCounts,AudioInfo,PrimaryImageAspectRatio"
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
$('#recentlyAddedItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
useAverageAspectRatio: false,
transparent: true,
borderless: true
}));
@ -31,7 +31,8 @@
MediaTypes: "Game",
Limit: 10,
Recursive: true,
Filters: "IsPlayed"
Filters: "IsPlayed",
Fields: "ItemCounts,AudioInfo,PrimaryImageAspectRatio"
};
ApiClient.getItems(Dashboard.getCurrentUserId(), options).done(function (result) {
@ -44,7 +45,6 @@
$('#recentlyPlayedItems', page).html(LibraryBrowser.getPosterViewHtml({
items: result.Items,
useAverageAspectRatio: false,
transparent: true,
borderless: true
}));