From 171102632fcfa14d546af3cc20c1409dcbf4e519 Mon Sep 17 00:00:00 2001 From: Roberto Pauletto Date: Mon, 15 Feb 2021 14:04:53 +0100 Subject: [PATCH 1/3] Italian translation - Added query string for localization in quizzes where missing --- 2-js-basics/1-data-types/translations/README.it.md | 4 ++-- 2-js-basics/2-functions-methods/translations/README.it.md | 4 ++-- 2-js-basics/3-making-decisions/translations/README.it.md | 2 +- 2-js-basics/4-arrays-loops/translations/README.it.md | 2 +- 4-typing-game/typing-game/translations/README.it.md | 4 ++-- .../1-about-browsers/translations/README.it.md | 4 ++-- .../2-forms-browsers-local-storage/translations/README.it.md | 2 +- .../translations/README.it.md | 4 ++-- 6-space-game/1-introduction/translations/README.it.md | 2 +- 6-space-game/2-drawing-to-canvas/translations/README.it.md | 2 +- .../3-moving-elements-around/translations/README.it.md | 2 +- 6-space-game/4-collision-detection/translations/README.it.md | 2 +- 6-space-game/5-keeping-score/translations/README.it.md | 2 +- 6-space-game/6-end-condition/translations/README.it.md | 2 +- 7-bank-project/1-template-route/translations/README.it.md | 2 +- 7-bank-project/2-forms/translations/README.it.md | 2 +- 7-bank-project/3-data/translations/README.it.md | 4 ++-- 7-bank-project/4-state-management/translations/README.it.md | 4 ++-- 18 files changed, 25 insertions(+), 25 deletions(-) diff --git a/2-js-basics/1-data-types/translations/README.it.md b/2-js-basics/1-data-types/translations/README.it.md index 176fab15..ab80147c 100644 --- a/2-js-basics/1-data-types/translations/README.it.md +++ b/2-js-basics/1-data-types/translations/README.it.md @@ -4,7 +4,7 @@ > Sketchnote di [Tomomi Imura](https://twitter.com/girlie_mac) ## Quiz pre-lezione -[Quiz pre-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/7) +[Quiz pre-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/7?loc=it) Questa lezione copre le basi di JavaScript, il linguaggio che fornisce l'interattività sul web. @@ -184,7 +184,7 @@ I booleani possono avere solo due valori: vero (`true`) o falso (`false`). I bo JavaScript è noto per i suoi modi sorprendenti di gestire talvolta i tipi di dato. Effettuare un po' di ricerca su questi "trabocchetti". Ad esempio: la distinzione tra maiuscole e minuscole può mordere! Provare questo nella propria console: `let age = 1; let Age = 2; age == Age` (risulta `false` - perché?). Quali altri trabocchetti si riescono a trovare? ## quiz post-lezione -[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/8) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/8?loc=it) ## Revisione e auto apprendimento diff --git a/2-js-basics/2-functions-methods/translations/README.it.md b/2-js-basics/2-functions-methods/translations/README.it.md index fd7eb8cb..2718bb8d 100644 --- a/2-js-basics/2-functions-methods/translations/README.it.md +++ b/2-js-basics/2-functions-methods/translations/README.it.md @@ -5,7 +5,7 @@ ## Quiz pre-lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/9) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/9?loc=it) Quando si pensa di scrivere codice, ci si vuole sempre assicurare che il proprio codice sia leggibile. Anche se questo sembra controintuitivo, il codice viene letto molte più volte di quanto non venga scritto. Uno strumento base nella cassetta degli attrezzi dello sviluppatore è la **funzione** @@ -184,7 +184,7 @@ Si riesce ad articolare in una frase la differenza tra funzioni e metodi? Fare u ## Quiz post-lezione -[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/10) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/10?loc=it) ## Revisione e auto apprendimento diff --git a/2-js-basics/3-making-decisions/translations/README.it.md b/2-js-basics/3-making-decisions/translations/README.it.md index e1100713..3170511a 100644 --- a/2-js-basics/3-making-decisions/translations/README.it.md +++ b/2-js-basics/3-making-decisions/translations/README.it.md @@ -162,7 +162,7 @@ Creare un programma che viene scritto prima con operatori logici, quindi riscriv --- ## Quiz Post-Lezione -[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/12?loc=12) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/12?loc=it) ## Revisione e Auto Apprendimento diff --git a/2-js-basics/4-arrays-loops/translations/README.it.md b/2-js-basics/4-arrays-loops/translations/README.it.md index 21014a8e..1a02a71e 100644 --- a/2-js-basics/4-arrays-loops/translations/README.it.md +++ b/2-js-basics/4-arrays-loops/translations/README.it.md @@ -113,7 +113,7 @@ for (let i = 0; i < iceCreamFlavors.length; i++) { Esistono altri modi per eseguire un ciclo sugli array. diversi dai cicli for e while. Ci sono [forEach](https://developer.mozilla.org/it/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach), [for-of](https://developer.mozilla.org/it/docs/Web/JavaScript/Reference/Statements/for...of) e [map](https://developer.mozilla.org/it/docs/Web/JavaScript/Reference/Global_Objects/Array/map). Riscrivere il ciclo sull'array usando una di queste tecniche. ## Quiz Post-Lezione -[Quiz Post-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/14?loc=14) +[Quiz Post-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/14?loc=it) ## Revisione e Auto Apprendimento diff --git a/4-typing-game/typing-game/translations/README.it.md b/4-typing-game/typing-game/translations/README.it.md index 4e17044e..7c67117c 100644 --- a/4-typing-game/typing-game/translations/README.it.md +++ b/4-typing-game/typing-game/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/21) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/21?loc=it) ## Programmazione guidata dagli eventi @@ -328,7 +328,7 @@ Aggiungere più funzionalità ## Quiz Post-Lezione -[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/22) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/22?loc=it) ## Revisione e Auto Apprendimento diff --git a/5-browser-extension/1-about-browsers/translations/README.it.md b/5-browser-extension/1-about-browsers/translations/README.it.md index d9bb346d..bdff1237 100644 --- a/5-browser-extension/1-about-browsers/translations/README.it.md +++ b/5-browser-extension/1-about-browsers/translations/README.it.md @@ -5,7 +5,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/23) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/23?loc=it) ### Introduzione @@ -152,7 +152,7 @@ Si dia un'occhiata alle estensioni del browser in uno store e se ne installi una ## Quiz Post-Lezione -[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/24) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/24?loc=it) ## Revisione e Auto Apprendimento diff --git a/5-browser-extension/2-forms-browsers-local-storage/translations/README.it.md b/5-browser-extension/2-forms-browsers-local-storage/translations/README.it.md index d7de59f3..d4fcd817 100644 --- a/5-browser-extension/2-forms-browsers-local-storage/translations/README.it.md +++ b/5-browser-extension/2-forms-browsers-local-storage/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/25) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/25?loc=it) ### Introduzione diff --git a/5-browser-extension/3-background-tasks-and-performance/translations/README.it.md b/5-browser-extension/3-background-tasks-and-performance/translations/README.it.md index 1061a430..78a01c39 100644 --- a/5-browser-extension/3-background-tasks-and-performance/translations/README.it.md +++ b/5-browser-extension/3-background-tasks-and-performance/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/27) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/27?loc=it) ### Introduzione @@ -147,7 +147,7 @@ Esaminare alcuni siti web open source che esistono da molto tempo e, in base all ## Quiz Post-Lezione -[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/28) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/28?loc=it) ## Revisione e Auto Apprendimento diff --git a/6-space-game/1-introduction/translations/README.it.md b/6-space-game/1-introduction/translations/README.it.md index 4caeabb0..30f6a9a5 100644 --- a/6-space-game/1-introduction/translations/README.it.md +++ b/6-space-game/1-introduction/translations/README.it.md @@ -4,7 +4,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/29) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/29?loc=it) ### Ereditarietà e Composizione nello sviluppo del gioco diff --git a/6-space-game/2-drawing-to-canvas/translations/README.it.md b/6-space-game/2-drawing-to-canvas/translations/README.it.md index e819db12..b4c7297a 100644 --- a/6-space-game/2-drawing-to-canvas/translations/README.it.md +++ b/6-space-game/2-drawing-to-canvas/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/31) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/31?loc=it) ## Canvas diff --git a/6-space-game/3-moving-elements-around/translations/README.it.md b/6-space-game/3-moving-elements-around/translations/README.it.md index dda320dc..98226d36 100644 --- a/6-space-game/3-moving-elements-around/translations/README.it.md +++ b/6-space-game/3-moving-elements-around/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/33) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/33?loc=it) I giochi non sono molto divertenti finché non si hanno alieni che scorazzano per lo schermo! In questo gioco, si utilizzeranno due tipi di movimenti: diff --git a/6-space-game/4-collision-detection/translations/README.it.md b/6-space-game/4-collision-detection/translations/README.it.md index dd37d9c0..9da71d3e 100644 --- a/6-space-game/4-collision-detection/translations/README.it.md +++ b/6-space-game/4-collision-detection/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/35) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/35?loc=it) In questa lezione si imparererà come fare fuoco con i laser con JavaScript! Verranno aggiunte due cose al gioco: diff --git a/6-space-game/5-keeping-score/translations/README.it.md b/6-space-game/5-keeping-score/translations/README.it.md index f2f82c6b..e59b4c34 100644 --- a/6-space-game/5-keeping-score/translations/README.it.md +++ b/6-space-game/5-keeping-score/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/37) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/37?loc=it) In questa lezione si imparerà come aggiungere punteggi a una partita e calcolare le vite. diff --git a/6-space-game/6-end-condition/translations/README.it.md b/6-space-game/6-end-condition/translations/README.it.md index 814901a9..66faf4c4 100644 --- a/6-space-game/6-end-condition/translations/README.it.md +++ b/6-space-game/6-end-condition/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/39) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/39?loc=it) Esistono diversi modi per esprimere una *condizione di fine gioco*. Spetta al creatore del gioco dire perché il gioco è finito. Ecco alcuni motivi, si supponga di parlare del gioco spaziale costruito finora: diff --git a/7-bank-project/1-template-route/translations/README.it.md b/7-bank-project/1-template-route/translations/README.it.md index f7cbb804..fa33d7cf 100644 --- a/7-bank-project/1-template-route/translations/README.it.md +++ b/7-bank-project/1-template-route/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/41) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/41?loc=it) ### Introduzione diff --git a/7-bank-project/2-forms/translations/README.it.md b/7-bank-project/2-forms/translations/README.it.md index c4936be0..5ca501d5 100644 --- a/7-bank-project/2-forms/translations/README.it.md +++ b/7-bank-project/2-forms/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/43) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/43?loc=it) ### Introduzione diff --git a/7-bank-project/3-data/translations/README.it.md b/7-bank-project/3-data/translations/README.it.md index a33f2704..b21e585f 100644 --- a/7-bank-project/3-data/translations/README.it.md +++ b/7-bank-project/3-data/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/45) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/45?loc=it) ### Introduzione @@ -327,7 +327,7 @@ Ecco un esempio di una pagina cruscotto con applicato uno stile: ## Quiz Post-Lezione -[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/46) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/46?loc=it) ## Compito diff --git a/7-bank-project/4-state-management/translations/README.it.md b/7-bank-project/4-state-management/translations/README.it.md index bdea6e32..2af21d74 100644 --- a/7-bank-project/4-state-management/translations/README.it.md +++ b/7-bank-project/4-state-management/translations/README.it.md @@ -2,7 +2,7 @@ ## Quiz Pre-Lezione -[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/47) +[Quiz Pre-Lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/47?loc=it) ### Introduzione @@ -270,7 +270,7 @@ Provare a lavorare insieme per cambiare ciò che viene salvato e caricato da `lo ## Quiz Post-Lezione -[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/48) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/48?loc=it) ## Compito From c7bff17c572b673c83d4661dcfb239bbf12d3b62 Mon Sep 17 00:00:00 2001 From: Roberto Pauletto Date: Mon, 15 Feb 2021 14:18:48 +0100 Subject: [PATCH 2/3] Italian translation - Some more localization query strings in quizzes missing --- .../2-forms-browsers-local-storage/translations/README.it.md | 3 +-- 6-space-game/1-introduction/translations/README.it.md | 3 +-- 6-space-game/2-drawing-to-canvas/translations/README.it.md | 3 +-- .../3-moving-elements-around/translations/README.it.md | 3 +-- 6-space-game/4-collision-detection/translations/README.it.md | 3 +-- 6-space-game/5-keeping-score/translations/README.it.md | 3 +-- 6-space-game/6-end-condition/translations/README.it.md | 3 +-- 7-bank-project/1-template-route/translations/README.it.md | 3 +-- 7-bank-project/2-forms/translations/README.it.md | 3 +-- 9 files changed, 9 insertions(+), 18 deletions(-) diff --git a/5-browser-extension/2-forms-browsers-local-storage/translations/README.it.md b/5-browser-extension/2-forms-browsers-local-storage/translations/README.it.md index d4fcd817..f2922d05 100644 --- a/5-browser-extension/2-forms-browsers-local-storage/translations/README.it.md +++ b/5-browser-extension/2-forms-browsers-local-storage/translations/README.it.md @@ -212,8 +212,7 @@ Finora si è discusso sui diversi tipi di API in queste lezioni. Scegliere un'AP ## Quiz Post-Lezione -[ -Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/26) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/26?loc=it) ## Revisione e Auto Apprendimento diff --git a/6-space-game/1-introduction/translations/README.it.md b/6-space-game/1-introduction/translations/README.it.md index 30f6a9a5..215b026e 100644 --- a/6-space-game/1-introduction/translations/README.it.md +++ b/6-space-game/1-introduction/translations/README.it.md @@ -213,8 +213,7 @@ Pensare a come il modello pub/sub può migliorare un gioco. Quali parti dovrebbe ## Quiz Post-Lezione -[ -Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/30) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/30?loc=it) ## Revisione e Auto Apprendimento diff --git a/6-space-game/2-drawing-to-canvas/translations/README.it.md b/6-space-game/2-drawing-to-canvas/translations/README.it.md index b4c7297a..f460000d 100644 --- a/6-space-game/2-drawing-to-canvas/translations/README.it.md +++ b/6-space-game/2-drawing-to-canvas/translations/README.it.md @@ -205,8 +205,7 @@ Si è imparato a disegnare con l'API Canvas incentrata sul 2D; dare un'occhiata ## Quiz Post-Lezione -[ -Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/32) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/32?loc=it) ## Revisione e Auto Apprendimento diff --git a/6-space-game/3-moving-elements-around/translations/README.it.md b/6-space-game/3-moving-elements-around/translations/README.it.md index 98226d36..5abdc80b 100644 --- a/6-space-game/3-moving-elements-around/translations/README.it.md +++ b/6-space-game/3-moving-elements-around/translations/README.it.md @@ -377,8 +377,7 @@ Come si può vedere, il proprio codice può trasformarsi in ["spaghetti code"](h ## Quiz Post-Lezione -[ -Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/34) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/34?loc=it) ## Revisione e Auto Apprendimento diff --git a/6-space-game/4-collision-detection/translations/README.it.md b/6-space-game/4-collision-detection/translations/README.it.md index 9da71d3e..070b0fa3 100644 --- a/6-space-game/4-collision-detection/translations/README.it.md +++ b/6-space-game/4-collision-detection/translations/README.it.md @@ -286,8 +286,7 @@ Aggiungere un'esplosione! Dare un'occhiata alle risorse di gioco [nel repository ## Quiz Post-Lezione -[ -Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/36) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/36?loc=it) ## Revisione e Auto Apprendimento diff --git a/6-space-game/5-keeping-score/translations/README.it.md b/6-space-game/5-keeping-score/translations/README.it.md index e59b4c34..616246e2 100644 --- a/6-space-game/5-keeping-score/translations/README.it.md +++ b/6-space-game/5-keeping-score/translations/README.it.md @@ -178,8 +178,7 @@ Il codice è quasi completo. Si riescono a immaginare i prossimi passi? ## Quiz Post-Lezione -[ -Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/38) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/38?loc=it) ## Revisione e Auto Apprendimento diff --git a/6-space-game/6-end-condition/translations/README.it.md b/6-space-game/6-end-condition/translations/README.it.md index 66faf4c4..ea7da529 100644 --- a/6-space-game/6-end-condition/translations/README.it.md +++ b/6-space-game/6-end-condition/translations/README.it.md @@ -211,8 +211,7 @@ Aggiungere un suono! Si può aggiungere un suono per migliorare il gioco, magari ## Quiz Post-Lezione -[ -Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/40) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/40?loc=it) ## Revisione e Auto Apprendimento diff --git a/7-bank-project/1-template-route/translations/README.it.md b/7-bank-project/1-template-route/translations/README.it.md index fa33d7cf..7c45b6ba 100644 --- a/7-bank-project/1-template-route/translations/README.it.md +++ b/7-bank-project/1-template-route/translations/README.it.md @@ -295,8 +295,7 @@ Aggiungere un nuovo modello e instradare per una terza pagina che mostra i credi ## Quiz Post-Lezione -[ -Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/42) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/42?loc=it) ## Revisione e Auto Apprendimento diff --git a/7-bank-project/2-forms/translations/README.it.md b/7-bank-project/2-forms/translations/README.it.md index 5ca501d5..d6d85592 100644 --- a/7-bank-project/2-forms/translations/README.it.md +++ b/7-bank-project/2-forms/translations/README.it.md @@ -282,8 +282,7 @@ Ecco un esempio di come può apparire la pagina di accesso finale dopo l'applica ## Quiz Post-Lezione -[ -Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/44) +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/44?loc=it) ## Revisione e Auto Apprendimento From fadabc2f5edb9cae4d72ebf7dbf0e7f3f447e800 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Mon, 15 Feb 2021 10:24:25 -0500 Subject: [PATCH 3/3] Update README.it.md --- 6-space-game/6-end-condition/translations/README.it.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/6-space-game/6-end-condition/translations/README.it.md b/6-space-game/6-end-condition/translations/README.it.md index 04ffe347..ea7da529 100644 --- a/6-space-game/6-end-condition/translations/README.it.md +++ b/6-space-game/6-end-condition/translations/README.it.md @@ -211,7 +211,8 @@ Aggiungere un suono! Si può aggiungere un suono per migliorare il gioco, magari ## Quiz Post-Lezione -[Quiz post-lezione](https://nice-b +[Quiz post-lezione](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/40?loc=it) + ## Revisione e Auto Apprendimento Il compito è creare un nuovo gioco di esempio, quindi esplorare alcuni dei giochi interessanti esistenti per vedere che tipo di gioco si potrebbe costruire.