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

This commit is contained in:
camperbot
2023-10-11 19:02:00 -07:00
committed by GitHub
parent 8507c952e8
commit 2cc2ba2708
792 changed files with 213066 additions and 596 deletions

View File

@@ -54,7 +54,24 @@ assert.match(code, /myStorage\.car\.inside/);
`gloveBoxContents` should still be declared with `const`.
```js
assert.match(code, /const\s+gloveBoxContents\s*=\s*myStorage\.car\.inside\[\s*("|')glove box\1\s*\]|const\s*{\s*('|")glove box\2:\s*gloveBoxContents\s*}\s*=\s*myStorage\.car\.inside;/);
assert.match(code, /const\s+gloveBoxContents\s*=/);
```
You should not change the `myStorage` object.
```js
const expectedMyStorage = {
"car":{
"inside":{
"glove box":"maps",
"passenger seat":"crumbs"
},
"outside":{
"trunk":"jack"
}
}
};
assert.deepStrictEqual(myStorage, expectedMyStorage);
```
# --seed--