mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-25 15:25:57 +08:00
subssabbz, subsunacs - fix inconsistent movie/tv naming
This commit is contained in:
parent
8f7c402259
commit
21b288308f
2 changed files with 5 additions and 0 deletions
|
@ -40,6 +40,8 @@ def fix_tv_naming(title):
|
||||||
"Marvel's Jessica Jones": "Jessica Jones",
|
"Marvel's Jessica Jones": "Jessica Jones",
|
||||||
"DC's Legends of Tomorrow": "Legends of Tomorrow",
|
"DC's Legends of Tomorrow": "Legends of Tomorrow",
|
||||||
"Doctor Who (2005)": "Doctor Who",
|
"Doctor Who (2005)": "Doctor Who",
|
||||||
|
"Star Trek: Deep Space Nine": "Star Trek DS9",
|
||||||
|
"Star Trek: The Next Generation": "Star Trek TNG",
|
||||||
}, True)
|
}, True)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -40,12 +40,15 @@ def fix_tv_naming(title):
|
||||||
"Marvel's Iron Fist": "Iron Fist",
|
"Marvel's Iron Fist": "Iron Fist",
|
||||||
"DC's Legends of Tomorrow": "Legends of Tomorrow",
|
"DC's Legends of Tomorrow": "Legends of Tomorrow",
|
||||||
"Doctor Who (2005)": "Doctor Who",
|
"Doctor Who (2005)": "Doctor Who",
|
||||||
|
"Star Trek: Deep Space Nine": "Star Trek DS9",
|
||||||
|
"Star Trek: The Next Generation": "Star Trek TNG",
|
||||||
}, True)
|
}, True)
|
||||||
|
|
||||||
|
|
||||||
def fix_movie_naming(title):
|
def fix_movie_naming(title):
|
||||||
return fix_inconsistent_naming(title, {"Back to the Future Part III": "Back to the Future 3",
|
return fix_inconsistent_naming(title, {"Back to the Future Part III": "Back to the Future 3",
|
||||||
"Back to the Future Part II": "Back to the Future 2",
|
"Back to the Future Part II": "Back to the Future 2",
|
||||||
|
'Bill & Ted Face the Music': 'Bill Ted Face the Music',
|
||||||
}, True)
|
}, True)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue