From 523633678b26908516f0f7a65d1ff7bca7024a51 Mon Sep 17 00:00:00 2001 From: camperbot Date: Fri, 18 Jun 2021 22:50:39 +0900 Subject: [PATCH] chore(i18n,curriculum): processed translations (#42559) --- .../redux/use-const-for-action-types.md | 5 +++-- .../redux/use-const-for-action-types.md | 5 +++-- .../nest-an-anchor-element-within-a-paragraph.md | 2 +- .../basic-html-and-html5/say-hello-to-html-elements.md | 2 +- .../basic-html-and-html5/uncomment-html.md | 2 +- .../compound-assignment-with-augmented-subtraction.md | 2 +- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/curriculum/challenges/chinese-traditional/03-front-end-libraries/redux/use-const-for-action-types.md b/curriculum/challenges/chinese-traditional/03-front-end-libraries/redux/use-const-for-action-types.md index c31a728dc3..ca543ac4b8 100644 --- a/curriculum/challenges/chinese-traditional/03-front-end-libraries/redux/use-const-for-action-types.md +++ b/curriculum/challenges/chinese-traditional/03-front-end-libraries/redux/use-const-for-action-types.md @@ -88,8 +88,9 @@ assert( ```js const noWhiteSpace = __helpers.removeWhiteSpace(code); assert( - /constLOGIN=(['"`])LOGIN\1/.test(noWhiteSpace) && - /constLOGOUT=(['"`])LOGOUT\1/.test(noWhiteSpace) + (/constLOGIN=(['"`])LOGIN\1/.test(noWhiteSpace) && + /constLOGOUT=(['"`])LOGOUT\1/.test(noWhiteSpace)) || + /const(LOGIN|LOGOUT)=(['"`])\1\2,(?!\1)(LOGIN|LOGOUT)=(['"`])\3\4/.test(noWhiteSpace) ); ``` diff --git a/curriculum/challenges/chinese/03-front-end-libraries/redux/use-const-for-action-types.md b/curriculum/challenges/chinese/03-front-end-libraries/redux/use-const-for-action-types.md index 67bd8cdf81..a5fcf18788 100644 --- a/curriculum/challenges/chinese/03-front-end-libraries/redux/use-const-for-action-types.md +++ b/curriculum/challenges/chinese/03-front-end-libraries/redux/use-const-for-action-types.md @@ -88,8 +88,9 @@ assert( ```js const noWhiteSpace = __helpers.removeWhiteSpace(code); assert( - /constLOGIN=(['"`])LOGIN\1/.test(noWhiteSpace) && - /constLOGOUT=(['"`])LOGOUT\1/.test(noWhiteSpace) + (/constLOGIN=(['"`])LOGIN\1/.test(noWhiteSpace) && + /constLOGOUT=(['"`])LOGOUT\1/.test(noWhiteSpace)) || + /const(LOGIN|LOGOUT)=(['"`])\1\2,(?!\1)(LOGIN|LOGOUT)=(['"`])\3\4/.test(noWhiteSpace) ); ``` diff --git a/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph.md b/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph.md index ba233e29b1..d06c28c3e1 100644 --- a/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph.md +++ b/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph.md @@ -46,7 +46,7 @@ Here's a link to www.free # --instructions-- -Annida l'elemento `a` all'interno del nuovo elemento `p`. Il nuovo paragrafo dovrebbe contenere un testo che dice `View more cat photos`, dove `cat photos` è un collegamento, e il resto è testo semplice. +Annida l'elemento `a` esistente all'interno di un nuovo elemento `p`. Il nuovo paragrafo dovrebbe contenere un testo che dice `View more cat photos`, dove `cat photos` è un collegamento, e il resto è testo semplice. # --hints-- diff --git a/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/say-hello-to-html-elements.md b/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/say-hello-to-html-elements.md index b318f25d96..e4360bd0d3 100644 --- a/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/say-hello-to-html-elements.md +++ b/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/say-hello-to-html-elements.md @@ -13,7 +13,7 @@ Benvenuto nelle sfide di programmazione HTML di freeCodeCamp. Queste ti guideran Innanzitutto, inizierai costruendo una semplice pagina web usando HTML. Puoi modificare il codice nel tuo editor di codice, che è integrato in questa pagina web. -Vedi il codice nel tuo editor di codici che dice `

Hello

`? Questo è un elemento HTML. +Vedi il codice nel tuo editor che dice `

Hello

`? Questo è un elemento HTML. La maggior parte degli elementi HTML hanno un tag di apertura e un tag di chiusura. diff --git a/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/uncomment-html.md b/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/uncomment-html.md index 497ef4c350..6b09533f52 100644 --- a/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/uncomment-html.md +++ b/curriculum/challenges/italian/01-responsive-web-design/basic-html-and-html5/uncomment-html.md @@ -9,7 +9,7 @@ dashedName: uncomment-html # --description-- -I commenti sono un modo per lasciare nel tuo codice commenti per altri sviluppatori senza modificare l'output mostrato all'utente finale. +I commenti sono un modo per lasciare nel tuo codice informazioni per altri sviluppatori senza modificare l'output mostrato all'utente finale. Commentare è anche un modo conveniente per rendere inattivo il codice senza doverlo eliminare completamente. diff --git a/curriculum/challenges/italian/02-javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-subtraction.md b/curriculum/challenges/italian/02-javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-subtraction.md index 6efed08c17..37aaeb515a 100644 --- a/curriculum/challenges/italian/02-javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-subtraction.md +++ b/curriculum/challenges/italian/02-javascript-algorithms-and-data-structures/basic-javascript/compound-assignment-with-augmented-subtraction.md @@ -1,6 +1,6 @@ --- id: 56533eb9ac21ba0edf2244b0 -title: Assegnare composta con sottrazione aumentata +title: Assegnazione composta con sottrazione aumentata challengeType: 1 videoUrl: 'https://scrimba.com/c/c2Qv7AV' forumTopicId: 16660