mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
Removed translation for Season and Episode numbers. Should be done in another way.
This commit is contained in:
parent
0f994ccb5b
commit
c0b4d72589
@ -27,7 +27,7 @@ export function getDisplayName(item, options = {}) {
|
||||
let nameSeparator = ' - ';
|
||||
|
||||
if (options.includeParentInfo !== false) {
|
||||
number = 'S' + item.ParentIndexNumber.toLocaleString() + ':E' + number.toLocaleString();
|
||||
number = 'S' + item.ParentIndexNumber + ':E' + number;
|
||||
} else {
|
||||
nameSeparator = '. ';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user