chore(i18n,learn): processed translations (#49222)

This commit is contained in:
camperbot
2023-02-02 13:07:07 +05:30
committed by GitHub
parent 6221b2b1a5
commit 3d610c3b3c
5 changed files with 9 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ dashedName: increment-a-number-with-javascript
# --description--
يمكنك بسهولة <dfn>زيادة</dfn> أو إضافة واحد إلى متغير مع مشغل `+ +`.
يمكنك بسهولة <dfn>زيادة</dfn> أو إضافة واحد إلى متغير مع مشغل `++`.
```js
i++;
@@ -21,7 +21,7 @@ i++;
i = i + 1;
```
**ملاحظة:** السطر بِرُمَّته يصبح `i++;`، مما يزيل الحاجة إلى علامة يساوي (equal sign).
**ملاحظة:** السطر بأكمله يصبح `i++;`، مما يزيل الحاجة إلى علامة المساواة (equal sign).
# --instructions--

View File

@@ -23,7 +23,7 @@ const myVar = 13 * 13;
# --instructions--
غيّر `0` بحيث يساوي الناتج `80`.
غيّر `0` بحيث يساوي الناتج (product) `80`.
# --hints--

View File

@@ -22,11 +22,11 @@ const myVar = 12 - 6;
لدي `myVar` قيمة `6` الآن.
# --instructions--
غيّر `0` بحيث يكون الفرق `12`.
غيّر `0` بحيث يكون الفرق (difference) `12`.
# --hints--
يجب أن يساوى المتغير `difference` لقيمة `12`.
يجب أن يساوي المتغير `difference` قيمة `12`.
```js
assert(difference === 12);