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

landing screen options clean up

This commit is contained in:
nyanmisaka 2020-12-10 22:13:29 +08:00
parent 52543f8a51
commit eee9ede2bb

View file

@ -57,8 +57,8 @@ import template from './homeScreenSettings.template.html';
value: 'suggestions'
});
list.push({
name: globalize.translate('Genres'),
value: 'genres'
name: globalize.translate('Trailers'),
value: 'trailers'
});
list.push({
name: globalize.translate('Favorites'),
@ -68,6 +68,10 @@ import template from './homeScreenSettings.template.html';
name: globalize.translate('Collections'),
value: 'collections'
});
list.push({
name: globalize.translate('Genres'),
value: 'genres'
});
} else if (type === 'tvshows') {
list.push({
name: globalize.translate('Shows'),
@ -79,7 +83,7 @@ import template from './homeScreenSettings.template.html';
value: 'suggestions'
});
list.push({
name: globalize.translate('Upcoming'),
name: globalize.translate('TabUpcoming'),
value: 'upcoming'
});
list.push({
@ -87,7 +91,7 @@ import template from './homeScreenSettings.template.html';
value: 'genres'
});
list.push({
name: globalize.translate('Networks'),
name: globalize.translate('TabNetworks'),
value: 'networks'
});
list.push({
@ -116,20 +120,40 @@ import template from './homeScreenSettings.template.html';
name: globalize.translate('Playlists'),
value: 'playlists'
});
list.push({
name: globalize.translate('Songs'),
value: 'songs'
});
list.push({
name: globalize.translate('Genres'),
value: 'genres'
});
} else if (type === 'livetv') {
list.push({
name: globalize.translate('Suggestions'),
value: 'suggestions',
name: globalize.translate('Programs'),
value: 'programs',
isDefault: true
});
list.push({
name: globalize.translate('Guide'),
value: 'guide'
});
list.push({
name: globalize.translate('Channels'),
value: 'channels'
});
list.push({
name: globalize.translate('Recordings'),
value: 'recordings'
});
list.push({
name: globalize.translate('Schedule'),
value: 'schedule'
});
list.push({
name: globalize.translate('Series'),
value: 'series'
});
}
return list;