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

This commit is contained in:
camperbot
2023-09-06 12:29:19 -07:00
committed by GitHub
parent 7903cb9a8e
commit d18eae0589
127 changed files with 878 additions and 618 deletions

View File

@@ -45,16 +45,16 @@ Greife auf das Objekt `myStorage` zu und weise den Inhalt der Eigenschaft `glove
assert(gloveBoxContents === 'maps');
```
Dein Code sollte die Punkt- und Klammerschreibweise verwenden, um auf `myStorage` zuzugreifen.
Your code should use dot notation, where possible, to access `myStorage`.
```js
assert(/=\s*myStorage\.car\.inside\[\s*("|')glove box\1\s*\]/g.test(code));
assert.match(code, /myStorage\.car\.inside/);
```
`gloveBoxContents` sollte mit `const` deklariert werden.
```js
assert.match(code, /const\s+gloveBoxContents\s*=/)
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;/);
```
# --seed--