From 0f9a1f74c9a9fa142912cd5299b99c84971eac15 Mon Sep 17 00:00:00 2001 From: camperbot Date: Mon, 13 Mar 2023 19:41:01 +0530 Subject: [PATCH] chore(i18n,learn): processed translations (#49694) --- ...rest-parameter-with-function-parameters.md | 2 +- ...-response-mime-type-with-helmet.nosniff.md | 2 +- ...-of-clickjacking-with-helmet.frameguard.md | 2 +- .../60a3e3396c7b40068ad69993.md | 2 +- .../html-boilerplate-question-c.md | 2 +- ...rest-parameter-with-function-parameters.md | 2 +- ...-response-mime-type-with-helmet.nosniff.md | 2 +- ...-of-clickjacking-with-helmet.frameguard.md | 2 +- .../60a3e3396c7b40068ad69993.md | 2 +- .../html-boilerplate-question-c.md | 2 +- ...rest-parameter-with-function-parameters.md | 2 +- ...-response-mime-type-with-helmet.nosniff.md | 2 +- ...-of-clickjacking-with-helmet.frameguard.md | 2 +- .../60a3e3396c7b40068ad69993.md | 2 +- .../html-boilerplate-question-c.md | 2 +- ...rest-parameter-with-function-parameters.md | 2 +- ...-response-mime-type-with-helmet.nosniff.md | 2 +- ...-of-clickjacking-with-helmet.frameguard.md | 2 +- .../60a3e3396c7b40068ad69993.md | 2 +- .../html-boilerplate-question-c.md | 2 +- ...rest-parameter-with-function-parameters.md | 2 +- ...-response-mime-type-with-helmet.nosniff.md | 2 +- ...-of-clickjacking-with-helmet.frameguard.md | 2 +- .../60a3e3396c7b40068ad69993.md | 2 +- .../html-boilerplate-question-c.md | 2 +- ...rest-parameter-with-function-parameters.md | 2 +- ...h-javascript-using-the-onclick-property.md | 4 ++-- ...-response-mime-type-with-helmet.nosniff.md | 2 +- ...-of-clickjacking-with-helmet.frameguard.md | 2 +- .../60a3e3396c7b40068ad69993.md | 2 +- .../html-boilerplate-question-c.md | 2 +- .../assignment-with-a-returned-value.md | 4 ++-- .../escape-sequences-in-strings.md | 24 +++++++++---------- .../finding-a-remainder-in-javascript.md | 6 ++--- .../replacing-if-else-chains-with-switch.md | 14 +++++------ ...rest-parameter-with-function-parameters.md | 2 +- .../sum-all-odd-fibonacci-numbers.md | 2 +- .../how-to-use-passport-strategies.md | 2 +- ...ementation-of-social-authentication-iii.md | 2 +- ...-response-mime-type-with-helmet.nosniff.md | 2 +- ...-of-clickjacking-with-helmet.frameguard.md | 2 +- .../60a3e3396c7b40068ad69993.md | 2 +- .../html-boilerplate-question-c.md | 2 +- ...lege-algebra-with-python-certification.yml | 12 +++++----- ...rest-parameter-with-function-parameters.md | 2 +- ...h-javascript-using-the-onclick-property.md | 4 ++-- ...-response-mime-type-with-helmet.nosniff.md | 2 +- ...-of-clickjacking-with-helmet.frameguard.md | 2 +- .../60a3e3396c7b40068ad69993.md | 2 +- .../html-boilerplate-question-c.md | 2 +- ...rest-parameter-with-function-parameters.md | 2 +- ...-response-mime-type-with-helmet.nosniff.md | 2 +- ...-of-clickjacking-with-helmet.frameguard.md | 2 +- .../60a3e3396c7b40068ad69993.md | 2 +- .../html-boilerplate-question-c.md | 2 +- 55 files changed, 82 insertions(+), 82 deletions(-) diff --git a/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/es6/use-the-rest-parameter-with-function-parameters.md b/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/es6/use-the-rest-parameter-with-function-parameters.md index 35f80e2f6c1..cada1dfdc73 100644 --- a/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/es6/use-the-rest-parameter-with-function-parameters.md +++ b/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/es6/use-the-rest-parameter-with-function-parameters.md @@ -22,7 +22,7 @@ console.log(howMany("string", null, [1, 2, 3], { })); ستعرض وحدة التحكم السلاسل `You have passed 3 arguments.` و `You have passed 4 arguments.`. -يزيل وسيط rest الحاجة إلى التحقق من القائمة (array) المسمى `args` وتسمح لك باستعمال `map()` و `filter()` و `reduce()` في وسائط القائمة. +The rest parameter eliminates the need to use the `arguments` object and allows us to use array methods on the array of parameters passed to the function `howMany`. # --instructions-- diff --git a/curriculum/challenges/arabic/09-information-security/information-security-with-helmetjs/avoid-inferring-the-response-mime-type-with-helmet.nosniff.md b/curriculum/challenges/arabic/09-information-security/information-security-with-helmetjs/avoid-inferring-the-response-mime-type-with-helmet.nosniff.md index bdfe0a5f4e0..1c8b0a039da 100644 --- a/curriculum/challenges/arabic/09-information-security/information-security-with-helmetjs/avoid-inferring-the-response-mime-type-with-helmet.nosniff.md +++ b/curriculum/challenges/arabic/09-information-security/information-security-with-helmetjs/avoid-inferring-the-response-mime-type-with-helmet.nosniff.md @@ -8,7 +8,7 @@ dashedName: avoid-inferring-the-response-mime-type-with-helmet-nosniff # --description-- -As a reminder, this project is being built upon the following starter project on Replit, or cloned from GitHub. Browsers can use content or MIME sniffing to override response `Content-Type` headers to guess and process the data using an implicit content type. While this can be convenient in some scenarios, it can also lead to some dangerous attacks. This middleware sets the X-Content-Type-Options header to `nosniff`, instructing the browser to not bypass the provided `Content-Type`. +As a reminder, this project is being built upon the following starter project on Replit, or cloned from GitHub. Browsers can use content or MIME sniffing to override the `Content-Type` header of a response to guess and process the data using an implicit content type. While this can be convenient in some scenarios, it can also lead to some dangerous attacks. This middleware sets the `X-Content-Type-Options` header to `nosniff`, instructing the browser to not bypass the provided `Content-Type`. # --instructions-- diff --git a/curriculum/challenges/arabic/09-information-security/information-security-with-helmetjs/mitigate-the-risk-of-clickjacking-with-helmet.frameguard.md b/curriculum/challenges/arabic/09-information-security/information-security-with-helmetjs/mitigate-the-risk-of-clickjacking-with-helmet.frameguard.md index 6b032da9b70..5c9c9d7b740 100644 --- a/curriculum/challenges/arabic/09-information-security/information-security-with-helmetjs/mitigate-the-risk-of-clickjacking-with-helmet.frameguard.md +++ b/curriculum/challenges/arabic/09-information-security/information-security-with-helmetjs/mitigate-the-risk-of-clickjacking-with-helmet.frameguard.md @@ -10,7 +10,7 @@ dashedName: mitigate-the-risk-of-clickjacking-with-helmet-frameguard As a reminder, this project is being built upon the following starter project on Replit, or cloned from GitHub. -Your page could be put in a `` or `