Anime Folder shows season names in japanese even though everything is set to english

Server Version#: 1.32.4.7195
Player Version#:
<If providing server logs please do NOT turn on verbose logging, only debug logging should be enabled>
The series in my anime library all show the names of seasons in Japanese even though it is supposed to be English.
-The language of the library is set to English
-Scanner and Agent are both Plex Tv Series
-Use season titles is checked
-Use original titles is unchecked (this setting Uses the original titles for all items regardless of the library language.)

I contacted the TVDB and they told me to report it to Plex’s Support Channel to see if it is a bug with the API or a Caching issue

1 Like

AFAIK it is a bug with the TheTVDB API. They simply won’t deliver translated season titles.

1 Like

can I fix this?

You cannot, unless you overwrite the season titles yourself.

how long has this been a bug and have they acknowledged that it needs to be fixed

Not sure about the v3 API, but it’s available in v4’s /seasons/{id}/extended endpoint for at least a year:

curl -X 'GET' 'https://api4.thetvdb.com/v4/seasons/814054/extended?meta=translations' -H 'accept: application/json' -H 'Authorization: Bearer XXX'
{
  "status": "success",
  "data": {
    "id": 814054,
    "seriesId": 81797,
    "type": {
      "id": 1,
      "name": "Aired Order",
      "type": "official",
      "alternateName": null
    },
    "name": "ワノ国編",
    "number": 21,
    "nameTranslations": [
      "deu,eng,fra,ita,jpn,pt,spa"
    ],
    "overviewTranslations": [
      "deu,eng,jpn,pt,spa"
    ],
    "image": "https://artworks.thetvdb.com/banners/v4/season/814054/posters/63719b52aecda.jpg",
    "imageType": 7,
    "companies": {
      "studio": [],
      "network": [],
      "production": [],
      "distributor": [],
      "special_effects": []
    },
    "translations": {
      "nameTranslations": [
        {
          "name": "Staffel 21 - Wano Kuni",
          "isAlias": true,
          "language": "deu"
        },
        {
          "name": "Wano Country",
          "isAlias": true,
          "language": "eng"
        },
        {
          "name": "Pays de Wano",
          "isAlias": true,
          "language": "fra"
        },
        {
          "name": "Saga del paese di Wa",
          "isAlias": true,
          "language": "ita"
        },
        {
          "name": "ワノ国編",
          "isAlias": true,
          "language": "jpn"
        },
        {
          "name": "Arco País de Wano",
          "isAlias": true,
          "language": "pt"
        },
        {
          "name": "Arco del Pais de Wano",
          "isAlias": true,
          "language": "spa"
        }
      ],
      "overviewTranslations": [
        {
          "overview": "Auf der Samurai Insel Wano Kuni fordern die Strohhutpiraten den stärksten Mann der Welt und Kaiser der Meere heraus: Kaido!",
          "language": "deu"
        },
        {
          "overview": "On his quest to take down Kaido, Luffy's alliance become embroiled in the history and strife of Wano, a once beautiful country of samurai, imprisoned and polluted under the tyranny of Shogun Orochi.",
          "language": "eng"
        },
        {
          "overview": "ワノ国。それは侍が闊歩し、忍者が暗躍する謎多き鎖国国家。四皇カイドウが支配するこの国へやってきたルフィ達。やっと手に入れた僅かな米を炊きごちそうしてくれたお玉へのお礼に、腹いっぱいに飯が食える国にしてやると約束するルフィ。立ちはだかるカイドウ。仁義、団結、裏切り、陰謀。様々な想いを胸に、つわもの達が集結する!",
          "language": "jpn"
        },
        {
          "overview": "Os Chapéus de Palha finalmente se reúnem no País de Wano! Formidáveis inimigos os aguardam nesta terra de guerreiros onde a Marinha ousa pisar! Uma batalha sem precedentes começa agora!",
          "language": "pt"
        },
        {
          "overview": "Tras el éxito de su misión de recuperar a Sanji, el grupo de Luffy se dirige al País de Wano para reunirse con el resto de la banda y sus aliados y prepararse para un asalto culminante contra Kaidou de los Cuatro Emperadores. Sin embargo, las acciones de Luffy en Whole Cake Island hacen que la Emperatriz del Mar Big Mom se dirija también a Wano, queriendo tomar su cabeza antes de que Kaidou pueda hacerlo. Esta enorme colisión de poderes, unido a los grandes acontecimientos que se han producido durante el Levely hacen que el equilibrio de los poderes del mundo se dirija a una inminente ruptura.",
          "language": "spa"
        }
      ],
      "aliases": [
        "Staffel 21 - Wano Kuni",
        "Wano Country",
        "Pays de Wano",
        "Saga del paese di Wa",
        "ワノ国編",
        "Arco País de Wano",
        "Arco del Pais de Wano"
      ]
    },
    "lastUpdated": "2023-09-04 19:09:35",
    "year": "2019",
    "episodes": [
      ...
    ]
    ...

Just curious if this will be fixed in the near future? Like will TTVDB Api v4 be used for this or is something else planned? Otherwise the feature of named seasons is quite useless IMO.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.