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

This commit is contained in:
camperbot
2022-02-25 00:11:18 +05:30
committed by GitHub
parent 8ee7aa08f8
commit 0d26a9e29d
27 changed files with 658 additions and 504 deletions

View File

@ -42,19 +42,19 @@ let camper = "David";
`var` 不应存在于代码中。
```js
(getUserInput) => assert(!getUserInput('index').match(/var/g));
assert.notMatch(code, /var/g);
```
`catName` 应该是字符串 `Oliver`
```js
assert(catName === 'Oliver');
assert.equal(catName, 'Oliver');
```
`catSound` 应该是字符串 `Meow!`
```js
assert(catSound === 'Meow!');
assert.equal(catSound, 'Meow!');
```
# --seed--