Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions flex/findliar.flex
Original file line number Diff line number Diff line change
Expand Up @@ -365,9 +365,14 @@ description _ TaskData{..} = do
paragraph $ text
("Verwenden Sie dabei die atomaren Formeln A, B, C mit der Interpretation, " ++
"dass eine Zuordnung von 'wahr' dafür steht, dass die entsprechende Person die Wahrheit sagt.")
keyHeading
basicOpKey True
arrowsKey
collapsed True (translations $ do
english "Notes on notation:"
german "Notationshinweise:")
(do
basicOpKey True
arrowsKey
pure()
)
pure ()


Expand Down
11 changes: 8 additions & 3 deletions flex/proplogic.flex
Original file line number Diff line number Diff line change
Expand Up @@ -395,9 +395,14 @@ description _ (legend,hints,_) = do
"Geben Sie diese Formel in das entsprechend benannte Textfeld ein. " ++
"Verwenden Sie dabei die atomaren Formeln A, B, C, D mit der Interpretation, " ++
"dass eine Zuordnung von 'wahr' dafür steht, dass die entsprechende Person mitkommt."
keyHeading
basicOpKey True
arrowsKey
collapsed True (translations $ do
english "Notes on notation:"
german "Notationshinweise:")
(do
basicOpKey True
arrowsKey
pure()
)
paragraph $ text $
"Wer geht mit Eva zum Konzert? Leiten Sie Ihr Ergebnis mittels Wahrheitstafel her. " ++
"Kreuzen Sie dann alle Begleitenden in der Namensliste an."
Expand Down
13 changes: 10 additions & 3 deletions src/LogicTasks/Syntax/ComposeFormula.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import Control.OutputCapable.Blocks (
extra,
($=<<),
english,
collapsed,
german,
translate,
localise,
Expand Down Expand Up @@ -76,9 +77,15 @@ description inputHelp path ComposeFormulaInst{..} = do
english "(You are allowed to add arbitrarily many additional pairs of brackets in the formulas.)"
german "(In den Formeln dürfen Sie beliebig viele zusätzliche Klammerpaare hinzufügen.)"

keyHeading
basicOpKey unicodeAllowed
arrowsKey' arrowOperatorsToShow
collapsed True (translations $ do
english "Notes on notation:"
german "Notationshinweise:")
(do
keyHeading
basicOpKey unicodeAllowed
arrowsKey' arrowOperatorsToShow
pure()
)

when inputHelp $ paragraph $ indent $ do
translate $ do
Expand Down
13 changes: 10 additions & 3 deletions src/LogicTasks/Syntax/DecomposeFormula.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import Control.OutputCapable.Blocks (
OutputCapable,
extra,
($=<<),
collapsed,
english,
german,
localise,
Expand Down Expand Up @@ -53,9 +54,15 @@ description DecomposeFormulaInst{..} = do
english "(You are allowed to add arbitrarily many additional pairs of brackets in the formula.)"
german "(In der Formel dürfen Sie beliebig viele zusätzliche Klammerpaare hinzufügen.)"

keyHeading
basicOpKey unicodeAllowed
arrowsKey' arrowOperatorsToShow
collapsed True (translations $ do
english "Notes on notation:"
german "Notationshinweise:")
(do
keyHeading
basicOpKey unicodeAllowed
arrowsKey' arrowOperatorsToShow
pure()
)

paragraph $ indent $ do
translate $ do
Expand Down
12 changes: 9 additions & 3 deletions src/LogicTasks/Syntax/SubTreeSet.hs
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,15 @@ description withListInput SubTreeInst{..} = do
german "Sie können dafür die ursprüngliche Formel mehrfach in die Abgabe kopieren und Teile entfernen oder leer starten."
english "You can copy the original formula into the submission several times and remove parts or start from scratch."

keyHeading
basicOpKey unicodeAllowed
arrowsKey' arrowOperatorsToShow
collapsed True (translations $ do
Comment thread
jvoigtlaender marked this conversation as resolved.
english "Notes on notation:"
german "Notationshinweise:")
(do
keyHeading
basicOpKey unicodeAllowed
arrowsKey' arrowOperatorsToShow
pure()
)

extra addText
pure ()
Expand Down
Loading