From 4b296fe2072d6a15327390ee5a370abfd661f9f1 Mon Sep 17 00:00:00 2001 From: Lukas Date: Sat, 15 Jun 2024 20:22:44 -0400 Subject: [PATCH] Update german translations (#746) --- locales/de.json | 2 ++ pages/[league]/[user]/predictions/index.tsx | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/locales/de.json b/locales/de.json index 3c2fed52..701c04d4 100644 --- a/locales/de.json +++ b/locales/de.json @@ -127,6 +127,7 @@ "Forbidden": "Verboten", "Forecast": "Vorhersage", "Formation": "Formation", + "Future": "Zukunft", "Goalkeeper": "Torhüter", "Help": "Hilfe", "Here you can download the player data for personal use. ": "Hier können Sie die Spielerdaten für den persönlichen Gebrauch herunterladen. ", @@ -407,6 +408,7 @@ "{home_team} - {away_team} in {day} D {hour} H {minute} M ": "{home_team} - {away_team} in {day} T {hour} H {minute} M ", "{points} X Star": "{points} X Star", "{team} in {day} D {hour} H {minute} M ": "{team} in {day} T {hour} H {minute} M ", + "{username}'s future predictions for {leagueName}": "{username}'s Zukunftige Vorhersagen für {leagueName}", "{username}'s predictions {matchday} from {leagueName}": "{username}'s Vorhersagen {matchday} von {leagueName}", "{username}'s squad {matchday} from {leagueName}": "{username}'s Kader {matchday} von {leagueName}" } diff --git a/pages/[league]/[user]/predictions/index.tsx b/pages/[league]/[user]/predictions/index.tsx index 93235665..f76faea1 100644 --- a/pages/[league]/[user]/predictions/index.tsx +++ b/pages/[league]/[user]/predictions/index.tsx @@ -44,14 +44,14 @@ export default function HistoricalView({ <> - {t("Predictions from {leagueName}", { + {t("Predictions for {leagueName}", { leagueName, })}

- {t("Predictions from {leagueName}", { + {t("Predictions for {leagueName}", { leagueName, })}

@@ -71,7 +71,7 @@ export default function HistoricalView({ leagueName, }); if (currentMatchday === -1) { - title_text = t("{username}'s future predictions from {leagueName}", { + title_text = t("{username}'s future predictions for {leagueName}", { username, leagueName, });