Skip to content

Commit

Permalink
Translate evaluation form to English.
Browse files Browse the repository at this point in the history
  • Loading branch information
KonradHoeffner committed Feb 2, 2022
1 parent 88fac77 commit 17e0043
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/components/Evaluation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@ const Evaluation = ({ handleEvalChange, handleNext }) => {

return (
<div>
<h4>Probleme melden</h4>
<h4>Report Problem</h4>
<ul className="evaluation-list">
<form>
<EvaluationBox handleChange={handleChange} name="correct-wrong" content="Die korrekt markierte Antwort ist tatsächlich falsch." />
<EvaluationBox handleChange={handleChange} name="incorrect-right" content="Eine falsch markierte Antwort ist tatsächlich richtig." />
<EvaluationBox handleChange={handleChange} name="incomprehensible" content="Die Frage ist unverständlich." />
<EvaluationBox handleChange={handleChange} name="contains-answer" content="Die Frage enthält die Antwort." />
<EvaluationBox handleChange={handleChange} name="grammar" content="Die Frage ist grammatikalisch falsch." />
<EvaluationBox handleChange={handleChange} name="ontology" content="Wahrscheinlich liegt ein Fehler in der SNIK Ontologie zugrunde." />
<EvaluationBox handleChange={handleChange} name="artificial" content="Die Frage klingt künstlich." />
<EvaluationBox handleChange={handleChange} name="undidactic" content="Die Frage ist didaktisch nicht sinnvoll." />
<EvaluationBox handleChange={handleChange} name="correct-wrong" content="The correctly marked answer is actually wrong." />
<EvaluationBox handleChange={handleChange} name="incorrect-right" content="An incorrectly marked answer is actually correct." />
<EvaluationBox handleChange={handleChange} name="incomprehensible" content="The question is incomprehensible." />
<EvaluationBox handleChange={handleChange} name="contains-answer" content="The question contains the answer." />
<EvaluationBox handleChange={handleChange} name="grammar" content="The question is grammatically incorrect." />
<EvaluationBox handleChange={handleChange} name="ontology" content="There is an error in the SNIK ontology." />
<EvaluationBox handleChange={handleChange} name="artificial" content="The question sounds artificial." />
<EvaluationBox handleChange={handleChange} name="undidactic" content="The question is not didactically useful." />
<textarea className="evaluation-area" name="evaluation-area" onChange={handleChange}></textarea>
{config.WAIT && (
<button type="button" onClick={handleNext}>
Weiter
Continue
</button>
)}
</form>
Expand Down

0 comments on commit 17e0043

Please sign in to comment.