-
Notifications
You must be signed in to change notification settings - Fork 302
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/add-german-translation-for-start-buttons
- Loading branch information
Showing
18 changed files
with
2,277 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
CheckInternet: Dai un'occhiata se la tua connessione Internet funziona correttamente. | ||
CheckInternet: Controlla se la connessione a Internet funzioni correttamente. | ||
Connection_error: Non siamo riuscito a contattare il server. | ||
Empty_output: Questo codice funziona ma non stampa nulla. Aggiungi un comando print al tuo codice o usa la tartaruga per ottenere l'output. | ||
Errors_found: Hai fatto un errore! Non preoccuparti, abbiamo comunque eseguito il programma | ||
Execute_error: Qualcosa è andato storto nell'esecuzione del tuo codice. | ||
Execute_error: Qualcosa è andato storto. | ||
Other_error: Ops! Forse abbiamo fatto un errore. | ||
Program_repair: Questo potrebbe essere il codice corretto, puoi risolverlo? | ||
Program_too_long: Il tuo programma impiega troppo tempo per essere eseguito. | ||
|
@@ -22,3 +22,4 @@ restaurant: Ristorante | |
rock: Roccia | ||
songs: Suono | ||
turtle: Tartaruga | ||
ServerError: Puoi aiutarci inviandoci un'email con il livello e il tuo programma a [email protected]. Nel frattempo, prova qualcosa di diverso. Grazie! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
_DEFINE: ("define" | "define") _SPACE? | ||
_CALL: ("call" | "call") _SPACE? | ||
_WITH: ("with" | "with") _SPACE? | ||
_DEF: ("def" | "def") _SPACE? | ||
_RETURN: ("return" | "return") _SPACE? | ||
_PRINT: ("print" | "print") _SPACE? | ||
_PLAY: ("play" | "play") _SPACE | ||
_ASK: ("ask" | "ask") | ||
_ECHO: ("echo" | "echo") _SPACE? | ||
_FORWARD: ("forward" | "forward") _SPACE? | ||
_TURN: ("turn" | "turn") _SPACE? | ||
left: ("left" | "left") _SPACE? | ||
right: ("right" | "right") _SPACE? | ||
black: ("black" | "black") _SPACE? | ||
blue: ("blue" | "blue") _SPACE? | ||
brown: ("brown" | "brown") _SPACE? | ||
gray: ("gray" | "gray") _SPACE? | ||
green: ("green" | "green") _SPACE? | ||
orange: ("orange" | "orange") _SPACE? | ||
pink: ("pink" | "pink") _SPACE? | ||
purple: ("purple" | "purple") _SPACE? | ||
red: ("red" | "red") _SPACE? | ||
white: ("white" | "white") _SPACE? | ||
yellow: ("yellow" | "yellow") _SPACE? | ||
_IS: _SPACE ("is" | "is") _SPACE | ||
_STANDALONE_IS: ("is" | "is") | ||
_SLEEP: ("sleep" | "sleep") _SPACE? | ||
_ADD_LIST: ("add" | "add") _SPACE | ||
_TO_LIST: _SPACE? ("to" | "to") | ||
_REMOVE: ("remove" | "remove") _SPACE | ||
_FROM: _SPACE? ("from" | "from") | ||
_AT: _SPACE ("at" | "at") _SPACE | ||
random: ("random" | "random") _SPACE? | ||
_IN: _SPACE ("in" | "in") _SPACE | ||
_NOT_IN: _SPACE ("not in" | "not in") _SPACE | ||
_IF: ("if" | "if") _SPACE | ||
_ELSE: "else" | "else" | ||
_AND: _SPACE? ("and" | "and") _SPACE | ||
_REPEAT: ("repeat" | "repeat") _SPACE | ||
_TIMES: _SPACE ("times" | "times") | ||
_FOR: ("for" | "for") _SPACE | ||
_RANGE: ("range" | "range") _SPACE? | ||
_TO: _SPACE ("to" | "to") _SPACE | ||
_STEP: "step" | "step" | ||
_ELIF: _SPACE? ("elif" | "elif") _SPACE | ||
_INPUT: ("input" | "input") | ||
_OR: _SPACE? ("or" | "or") _SPACE | ||
_WHILE: ("while" | "while") _SPACE | ||
_LENGTH: "length" | "length" | ||
_COLOR : ("color" | "color") _SPACE? | ||
_PRESSED: ("pressed" | "pressed") _SPACE? | ||
clear: ("clear" | "clear") _SPACE? | ||
TRUE: ("true" | "True" | "true" | "True") _SPACE? | ||
FALSE: ("false" | "False" | "false" | "False") _SPACE? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.