mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Removed translation for Season and Episode numbers. Should be done in another way.
This commit is contained in:
parent
0f994ccb5b
commit
c0b4d72589
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ export function getDisplayName(item, options = {}) {
|
||||||
let nameSeparator = ' - ';
|
let nameSeparator = ' - ';
|
||||||
|
|
||||||
if (options.includeParentInfo !== false) {
|
if (options.includeParentInfo !== false) {
|
||||||
number = 'S' + item.ParentIndexNumber.toLocaleString() + ':E' + number.toLocaleString();
|
number = 'S' + item.ParentIndexNumber + ':E' + number;
|
||||||
} else {
|
} else {
|
||||||
nameSeparator = '. ';
|
nameSeparator = '. ';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue