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

update translations

This commit is contained in:
Luke Pulverenti 2014-06-17 13:46:52 -04:00
parent d12c2644e7
commit 5412ab129e
4 changed files with 40 additions and 22 deletions

View file

@ -92,7 +92,7 @@
} }
.squareEhsContent { .squareEhsContent {
max-width: 750px; max-width: 900px;
} }
} }

View file

@ -125,14 +125,6 @@
text-align: center; text-align: center;
} }
.squarePosterItem {
width: 140px;
}
.squarePosterItem .posterItemImage {
height: 140px;
}
.storeReviewCount { .storeReviewCount {
display: none; display: none;
} }
@ -203,6 +195,14 @@
background-color: rgba(143, 54, 168, 0.7); background-color: rgba(143, 54, 168, 0.7);
} }
.squarePosterItem {
width: 140px;
}
.squarePosterItem .posterItemImage {
height: 140px;
}
.backdropPosterItem { .backdropPosterItem {
width: 128px; width: 128px;
} }
@ -341,14 +341,6 @@
.smallBackdropPosterItem .posterItemImage { .smallBackdropPosterItem .posterItemImage {
height: 101.25px; height: 101.25px;
} }
.miniBackdropPosterItem {
width: 168px;
}
.miniBackdropPosterItem .posterItemImage {
height: 94.5px;
}
} }
@media all and (min-width: 600px) { @media all and (min-width: 600px) {
@ -459,6 +451,30 @@
.backdropPosterItem .posterItemImage { .backdropPosterItem .posterItemImage {
height: 167.625px; height: 167.625px;
} }
.miniBackdropPosterItem {
width: 180px;
}
.miniBackdropPosterItem .posterItemImage {
height: 101.25px;
}
.squarePosterItem {
width: 160px;
}
.squarePosterItem .posterItemImage {
height: 160px;
}
.portraitPosterItem {
width: 144px;
}
.portraitPosterItem .posterItemImage {
height: 216px;
}
} }

View file

@ -20,9 +20,11 @@
function reloadFromChannel(page, channel, index) { function reloadFromChannel(page, channel, index) {
var screenWidth = $(window).width();
var options = { var options = {
Limit: 7, Limit: screenWidth >= 1920 ? 10 : (screenWidth >= 1440 ? 8 : (screenWidth >= 800 ? 6 : 6)),
Fields: "PrimaryImageAspectRatio", Fields: "PrimaryImageAspectRatio",
Filters: "IsUnplayed", Filters: "IsUnplayed",
UserId: Dashboard.getCurrentUserId(), UserId: Dashboard.getCurrentUserId(),

View file

@ -13,7 +13,7 @@
SortBy: "DateCreated", SortBy: "DateCreated",
SortOrder: "Descending", SortOrder: "Descending",
IncludeItemTypes: "MusicAlbum", IncludeItemTypes: "MusicAlbum",
Limit: screenWidth >= 1920 ? 8 : (screenWidth >= 1440 ? 7 : 6), Limit: screenWidth >= 1920 ? 8 : (screenWidth >= 1440 ? 8 : 6),
Recursive: true, Recursive: true,
Fields: "PrimaryImageAspectRatio", Fields: "PrimaryImageAspectRatio",
ParentId: parentId ParentId: parentId
@ -36,7 +36,7 @@
SortBy: "DateCreated", SortBy: "DateCreated",
SortOrder: "Descending", SortOrder: "Descending",
IncludeItemTypes: "Audio", IncludeItemTypes: "Audio",
Limit: screenWidth >= 1920 ? 8 : (screenWidth >= 1440 ? 7 : 6), Limit: screenWidth >= 1920 ? 8 : (screenWidth >= 1440 ? 8 : 6),
Recursive: true, Recursive: true,
Fields: "PrimaryImageAspectRatio,AudioInfo", Fields: "PrimaryImageAspectRatio,AudioInfo",
ParentId: parentId ParentId: parentId
@ -59,7 +59,7 @@
SortBy: "DatePlayed", SortBy: "DatePlayed",
SortOrder: "Descending", SortOrder: "Descending",
IncludeItemTypes: "Audio", IncludeItemTypes: "Audio",
Limit: screenWidth >= 1920 ? 8 : (screenWidth >= 1440 ? 7 : 6), Limit: screenWidth >= 1920 ? 8 : (screenWidth >= 1440 ? 8 : 6),
Recursive: true, Recursive: true,
Fields: "PrimaryImageAspectRatio,AudioInfo", Fields: "PrimaryImageAspectRatio,AudioInfo",
Filters: "IsPlayed", Filters: "IsPlayed",
@ -89,7 +89,7 @@
SortBy: "PlayCount", SortBy: "PlayCount",
SortOrder: "Descending", SortOrder: "Descending",
IncludeItemTypes: "Audio", IncludeItemTypes: "Audio",
Limit: screenWidth >= 1920 ? 14 : (screenWidth >= 1440 ? 14 : 12), Limit: screenWidth >= 1920 ? 16 : (screenWidth >= 1440 ? 16 : 12),
Recursive: true, Recursive: true,
Fields: "PrimaryImageAspectRatio,AudioInfo", Fields: "PrimaryImageAspectRatio,AudioInfo",
Filters: "IsPlayed", Filters: "IsPlayed",