Skip to content

Commit

Permalink
Merge branch 'main' into 5901
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Oct 30, 2024
2 parents 5cb1f65 + f5e6b52 commit ee9b658
Show file tree
Hide file tree
Showing 16 changed files with 704 additions and 36 deletions.
129 changes: 129 additions & 0 deletions content/adventures/es.yaml

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions content/client-messages/de.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,10 @@ Transpile_success:
- Das hast du großartig gemacht!
Transpile_warning: Warnung!
Unsaved_Changes: Du hast ein nicht gespeichertes Programm. Möchtest du es verwerfen, ohne zu speichern?
dice: 🎲
fortune: 🔮, ✨
haunted: 🦇, 👻, 🎃
restaurant: 🍣, 🍕, 🍔
rock: ✂️, 📜, 🗻
songs: 🎵,🎶
turtle: 🐢
18 changes: 18 additions & 0 deletions content/keywords/ca.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,21 @@ while: mentre
white: blanc
with: amb
yellow: groc
d0: '0'
comma: ','
d6: '6'
d9: '9'
d1: '1'
d2: '2'
def: def
d3: '3'
d4: '4'
d5: '5'
d7: '7'
d8: '8'
color: color
'false': fals
'False': Fals
quote: "'"
'true': cert
'True': Cert
16 changes: 16 additions & 0 deletions content/keywords/de.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,19 @@ while: solange
white: Weiß
with: mit
yellow: Gelb
comma: ','
quote: "'"
def: def
d0: '0'
d8: '8'
d9: '9'
d1: '1'
d2: '2'
d3: '3'
d4: '4'
d5: '5'
d6: '6'
d7: '7'
echo: Echo
in: in
return: zurück
19 changes: 19 additions & 0 deletions content/keywords/es.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,22 @@ while: mientras
white: blanco
with: con
yellow: amarillo
d0: '0'
comma: ','
color: color
d1: '1'
d2: '2'
d3: '3'
d4: '4'
d5: '5'
d6: '6'
d8: '8'
d9: '9'
'false': falso
'False': Falso
'true': verdadero
d7: '7'
def: def
play: jugar
quote: "'"
'True': Verdadero
4 changes: 4 additions & 0 deletions content/parsons/de.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ levels:
7:
1:
story: Vervollständige den Baby Shark Song. Zuerst kommt Baby Shark, dann Mommy und zum Schluss Daddy Shark.
code: "{repeat} 3 {times} {print} 'Babyhai tututututudu'\n{print} 'Baby shark'\n{repeat} 3 {times} {print} 'Mamahai tututututudu'\n{print} 'Mommy shark'\n{repeat} 3 {times} {print} 'Papahai tututututudu'\n{print} 'Papahai'"
2:
story: Erstelle den Song 'Die Räder am Bus gehen rundherum'
code: |-
Expand Down Expand Up @@ -153,6 +154,7 @@ levels:
9:
1:
story: Dieses Spiel wird dir drei Mathe Aufgaben geben. Die Frage ist jedesmal anders. Kannst du die Reihenfolge herausfinden?
code: "zahlen = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10\n{repeat} 3 {times}\n zahl = zahlen {at} {random}\n richtige_antwort = 5 * zahl\n antwort = {ask} 'Was ist 5 mal 'zahl'?'\n {if} antwort = richtige_antwort\n {print} 'Gut gemacht!'\n {else}\n {print} 'Nein! Die richtige Antwort ist 'richtige_antwort'.'"
2:
story: |-
Dieser Code fragt die Kunden in einem Restaurant, ob sie Nachtisch bestellen wollen. Falls sie Nachtisch bestellen wollen, frag sie, was sie für einen Nachtisch wollen. Wenn sie Tiramisu bestellen, wird ihnen gesagt, dass es ausverkauft ist.
Expand Down Expand Up @@ -186,9 +188,11 @@ levels:
story: |-
Dieser Friseur-Roboter wird für dich einen neuen Haarschnitt aussuchen. Wenn du mit der ersten Wahl nicht einverstanden bist, kannst du es nochmal versuchen.
**Achtung** Die Variable person wird in der ersten Zeile bestimmt. Die Variable frisur wird in der zweiten Zeile bestimmt.
code: "personen = Betty, Amanda, Marc\nfrisuren = eine Glatze, ein Iro, ein Pferdeschwanz, Spikes\n{for} person {in} personen\n {print} person ' bekommt ' frisuren {at} {random}\n zufrieden = {ask} person ', bist du zufrieden mit dieser Wahl?'\n {if} zufrieden {is} ja\n {print} 'Super'\n {else}\n {print} 'Versuchen wir es nochmal … Dann bekommt 'person ' ' frisuren {at} {random}"
11:
1:
story: Erzeuge die Countdown Uhr für Neujahr! Das Programm sollte die Zahlen 10 bis 1 für eine Sekunde zeigen und dir dann ein Frohes neues Jahr wünschen.
code: "{for} zahl {in} {range} 10 {to} 1\n {print} zahl\n {sleep}\n {clear}\n{print} 'Frohes neues Jahr!'"
2:
story: |-
Erstelle ein Programm, das uns die Ergebnisse der Wissenschaftsschau sagt. Definiere zuerst die Variable Teilnehmer, dann die Variable Platzierung.
Expand Down
Loading

0 comments on commit ee9b658

Please sign in to comment.