diff --git a/client/src/components/infoview/goals.tsx b/client/src/components/infoview/goals.tsx index 5a12531..17918e9 100644 --- a/client/src/components/infoview/goals.tsx +++ b/client/src/components/infoview/goals.tsx @@ -165,10 +165,10 @@ export const Goal = React.memo((props: GoalProps) => { {/* {goal.userName &&
case {goal.userName}
} */} {filter.reverse && goalLi} {! commandLine && objectHyps.length > 0 && -
Objekte:
+
Objects:
{objectHyps.map((h, i) => )}
} {!commandLine && assumptionHyps.length > 0 && -
Annahmen:
+
Assumptions:
{assumptionHyps.map((h, i) => )}
} {commandLine && commandLineMode && } {!filter.reverse && goalLi} @@ -201,14 +201,14 @@ export const MainAssumptions = React.memo((props: GoalProps2) => { const assumptionHyps = hyps.filter(hyp => hyp.isAssumption) return
-
Aktuelles Goal
+
Current Goal
{filter.reverse && goalLi} { objectHyps.length > 0 && -
Objekte:
+
Objects:
{objectHyps.map((h, i) => )}
} { assumptionHyps.length > 0 &&
-
Annahmen:
+
Assumptions:
{assumptionHyps.map((h, i) => )}
}
@@ -219,7 +219,7 @@ export const OtherGoals = React.memo((props: GoalProps2) => { return <> {goals && goals.length > 1 &&
-
Weitere Goals
+
Further Goals
{goals.slice(1).map((goal, i) =>
@@ -237,7 +237,7 @@ export const ProofDisplay = React.memo((props : ProofDisplayProps) => { return <> { steps &&
-
Bisheriger Beweis
+
Proof history
{steps.map((s) => diff --git a/client/src/components/infoview/hints.tsx b/client/src/components/infoview/hints.tsx index b7ba2b9..1e7816d 100644 --- a/client/src/components/infoview/hints.tsx +++ b/client/src/components/infoview/hints.tsx @@ -20,7 +20,7 @@ export function Hints({hints} : {hints: GameHint[]}) { {hiddenHints.length > 0 && setShowHints((prev) => !prev)} />} - label="Robo, hast du einen Tipp?" + label="I need help!" />} {showHints && hiddenHints.map(hint => )}