diff --git a/components/jellyseerr/RequestModal.tsx b/components/jellyseerr/RequestModal.tsx index 6ff70030..192d2d83 100644 --- a/components/jellyseerr/RequestModal.tsx +++ b/components/jellyseerr/RequestModal.tsx @@ -106,7 +106,12 @@ const RequestModal = forwardRef requestBody?.seasons?.length ? t("jellyseerr.season_x", {seasons: requestBody?.seasons}) : undefined, + () => { + if (requestBody?.seasons && requestBody?.seasons?.length > 1) { + return t("jellyseerr.season_all") + } + return t("jellyseerr.season_number", {season_number: requestBody?.seasons}) + }, [requestBody?.seasons] ); diff --git a/translations/de.json b/translations/de.json index 18c3de25..50995e15 100644 --- a/translations/de.json +++ b/translations/de.json @@ -433,7 +433,7 @@ "tags": "Tags", "quality_profile": "Qualitätsprofil", "root_folder": "Root-Ordner", - "season_x": "Staffel {{seasons}}", + "season_all": "Season (all)", "season_number": "Staffel {{season_number}}", "number_episodes": "{{episode_number}} Episodes", "born": "Geboren", diff --git a/translations/en.json b/translations/en.json index 615c3e40..ca19a136 100644 --- a/translations/en.json +++ b/translations/en.json @@ -437,7 +437,7 @@ "tags": "Tags", "quality_profile": "Quality Profile", "root_folder": "Root Folder", - "season_x": "Season {{seasons}}", + "season_all": "Season (all)", "season_number": "Season {{season_number}}", "number_episodes": "{{episode_number}} Episodes", "born": "Born", diff --git a/translations/es.json b/translations/es.json index 8883c2be..c03c2e69 100644 --- a/translations/es.json +++ b/translations/es.json @@ -433,7 +433,7 @@ "tags": "Etiquetas", "quality_profile": "Perfil de calidad", "root_folder": "Carpeta raíz", - "season_x": "Temporada {{seasons}}", + "season_all": "Season (all)", "season_number": "Temporada {{season_number}}", "number_episodes": "{{episode_number}} episodios", "born": "Nacido", diff --git a/translations/fr.json b/translations/fr.json index f197494d..e9c576e6 100644 --- a/translations/fr.json +++ b/translations/fr.json @@ -434,7 +434,7 @@ "tags": "Tags", "quality_profile": "Profil de qualité", "root_folder": "Dossier racine", - "season_x": "Saison {{seasons}}", + "season_all": "Season (all)", "season_number": "Saison {{season_number}}", "number_episodes": "{{episode_number}} épisodes", "born": "Né(e) le", diff --git a/translations/it.json b/translations/it.json index c9326a7d..d88ec71e 100644 --- a/translations/it.json +++ b/translations/it.json @@ -433,7 +433,7 @@ "tags": "Tag", "quality_profile": "Profilo qualità", "root_folder": "Cartella radice", - "season_x": "Stagione {{seasons}}", + "season_all": "Season (all)", "season_number": "Stagione {{season_number}}", "number_episodes": "{{episode_number}} Episodio", "born": "Nato", diff --git a/translations/ja.json b/translations/ja.json index 2f43f5ae..616067d5 100644 --- a/translations/ja.json +++ b/translations/ja.json @@ -432,7 +432,7 @@ "tags": "タグ", "quality_profile": "画質プロファイル", "root_folder": "ルートフォルダ", - "season_x": "シーズン{{seasons}}", + "season_all": "Season (all)", "season_number": "シーズン{{season_number}}", "number_episodes": "エピソード{{episode_number}}", "born": "生まれ", diff --git a/translations/nl.json b/translations/nl.json index 7f8dde50..7912e6b4 100644 --- a/translations/nl.json +++ b/translations/nl.json @@ -433,7 +433,7 @@ "tags": "Labels", "quality_profile": "Kwaliteitsprofiel", "root_folder": "Hoofdmap", - "season_x": "Seizoen {{seasons}}", + "season_all": "Season (all)", "season_number": "Seizoen {{season_number}}", "number_episodes": "{{episode_number}} Afleveringen", "born": "Geboren", diff --git a/translations/tr.json b/translations/tr.json index 7b3a2320..7bc2e6d3 100644 --- a/translations/tr.json +++ b/translations/tr.json @@ -432,7 +432,7 @@ "tags": "Etiketler", "quality_profile": "Kalite Profili", "root_folder": "Kök Klasör", - "season_x": "Sezon {{seasons}}", + "season_all": "Season (all)", "season_number": "Sezon {{season_number}}", "number_episodes": "Bölüm {{episode_number}}", "born": "Doğum", diff --git a/translations/zh-CN.json b/translations/zh-CN.json index b501cef0..e3a834a6 100644 --- a/translations/zh-CN.json +++ b/translations/zh-CN.json @@ -432,7 +432,7 @@ "tags": "标签", "quality_profile": "质量配置文件", "root_folder": "根文件夹", - "season_x": "第 {{seasons}} 季", + "season_all": "Season (all)", "season_number": "第 {{season_number}} 季", "number_episodes": "{{episode_number}} 集", "born": "出生", diff --git a/translations/zh-TW.json b/translations/zh-TW.json index 21800640..f36174fd 100644 --- a/translations/zh-TW.json +++ b/translations/zh-TW.json @@ -432,7 +432,7 @@ "tags": "標籤", "quality_profile": "質量配置文件", "root_folder": "根文件夾", - "season_x": "第 {{seasons}} 季", + "season_all": "Season (all)", "season_number": "第 {{season_number}} 季", "number_episodes": "{{episode_number}} 集", "born": "出生",