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

This commit is contained in:
camperbot
2023-04-03 20:21:10 +05:30
committed by GitHub
parent 5151d70ad3
commit 16a1f915d6
96 changed files with 704 additions and 614 deletions

View File

@@ -25,13 +25,13 @@ FirstLine
ThirdLine
</pre>
You will need to use escape sequences to insert special characters correctly. You will also need to follow the spacing as it looks above, with no spaces between escape sequences or words.
Um Sonderzeichen korrekt einzufügen, musst du Escape-Sequenzen verwenden. Du musst auch die Abstände so einhalten, wie sie oben aussehen, ohne Leerzeichen zwischen Escape-Sequenzen oder Wörtern.
**Note:** The indentation for `SecondLine` is achieved with the tab escape character, not spaces.
**Hinweis:** Die Einrückung für `SecondLine` wird mit dem Tabulator-Escape-Zeichen erreicht, nicht mit Leerzeichen.
# --hints--
`myStr` should not contain any spaces
`myStr` sollte keine Leerzeichen enthalten
```js
assert(!/ /.test(myStr));
@@ -69,7 +69,7 @@ There should be a newline character between `SecondLine` and `ThirdLine`
assert(/SecondLine\nThirdLine/.test(myStr));
```
`myStr` should only contain characters shown in the instructions
`myStr` sollte nur die in der Anleitung angegebenen Zeichen enthalten
```js
assert(myStr === 'FirstLine\n\t\\SecondLine\nThirdLine');

View File

@@ -18,7 +18,7 @@ let myStr = "Bob";
myStr[0] = "J";
```
Note that this does *not* mean that `myStr` could not be re-assigned. The only way to change `myStr` would be to assign it with a new value, like this:
Beachte, dass dies *nicht* bedeutet, dass `myStr` kein neuer Wert zugewiesen werden kann. Die einzige Möglichkeit, `myStr` zu ändern, wäre, ihr einen neuen Wert zuzuweisen, etwa so:
```js
let myStr = "Bob";

View File

@@ -30,7 +30,7 @@ const value = "title";
const valueLookup = article[value];
```
`articleAuthor` is the string `Kaashan Hussain`, `articleLink` is the string `https://www.freecodecamp.org/news/a-complete-guide-to-creating-objects-in-javascript-b0e2450655e8/`, and `valueLookup` is the string `How to create objects in JavaScript`.
`articleAuthor` ist `Kaashan Hussain`, `articleLink` ist `https://www.freecodecamp.org/news/a-complete-guide-to-creating-objects-in-javascript-b0e2450655e8/` und `valueLookup` ist `How to create objects in JavaScript`. Es handelt sich jeweils um Stringwerte.
# --instructions--