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

This commit is contained in:
camperbot
2023-11-13 20:44:46 +05:30
committed by GitHub
parent 65dd8bf589
commit e1f535f7c6
579 changed files with 7502 additions and 1032 deletions

View File

@@ -81,13 +81,13 @@ Das Objekt `foods` sollte einen Schlüssel `strawberries` mit einem Wert von `27
assert(foods.strawberries === 27);
```
Die Schlüssel-Wert-Paare sollten mit Punkt- oder Klammernotation angegeben werden.
The definition of the `foods` object should not be changed.
```js
assert(
code.search(/bananas:/) === -1 &&
code.search(/grapes:/) === -1 &&
code.search(/strawberries:/) === -1
code.search(/let foods/) === -1 &&
code.search(/const\s+foods\s*=\s*{\s*apples:\s*25,\s*oranges:\s*32,\s*plums:\s*28\s*};/
) !== -1
);
```
@@ -96,7 +96,7 @@ assert(
## --seed-contents--
```js
let foods = {
const foods = {
apples: 25,
oranges: 32,
plums: 28
@@ -112,7 +112,7 @@ console.log(foods);
# --solutions--
```js
let foods = {
const foods = {
apples: 25,
oranges: 32,
plums: 28