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

This commit is contained in:
camperbot
2023-02-28 21:38:50 +05:30
committed by GitHub
parent 6bd8d2ba63
commit 43295afc0a
335 changed files with 1536 additions and 1464 deletions

View File

@@ -19,7 +19,11 @@ Anführungszeichen sind nicht die einzigen Zeichen, die innerhalb eines Strings
Assign the following three lines of text into the single variable `myStr` using escape sequences.
<blockquote>FirstLine<br>    \SecondLine<br>ThirdLine</blockquote>
<pre>
FirstLine
    \SecondLine
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.

View File

@@ -60,43 +60,43 @@ Du solltest mindestens vier `break`-Anweisungen verwenden
assert(code.match(/break/g).length >= 4);
```
`chainToSwitch("bob")` sollte den String `Marley` ausgeben
`chainToSwitch("bob")` should return the string `Marley`
```js
assert(chainToSwitch('bob') === 'Marley');
```
`chainToSwitch(42)` sollte den String `The Answer` ausgeben
`chainToSwitch(42)` should return the string `The Answer`
```js
assert(chainToSwitch(42) === 'The Answer');
```
`chainToSwitch(1)` sollte den String `There is no #1` ausgeben
`chainToSwitch(1)` should return the string `There is no #1`
```js
assert(chainToSwitch(1) === 'There is no #1');
```
`chainToSwitch(99)` sollte den String `Missed me by this much!` ausgeben
`chainToSwitch(99)` should return the string `Missed me by this much!`
```js
assert(chainToSwitch(99) === 'Missed me by this much!');
```
`chainToSwitch(7)` sollte den String `Ate Nine` ausgeben
`chainToSwitch(7)` should return the string `Ate Nine`
```js
assert(chainToSwitch(7) === 'Ate Nine');
```
`chainToSwitch("John")` sollte `""` (leerer String) ausgeben
`chainToSwitch("John")` should return `""` (empty string)
```js
assert(chainToSwitch('John') === '');
```
`chainToSwitch(156)` sollte `""` (leerer String) ausgeben
`chainToSwitch(156)` should return `""` (empty string)
```js
assert(chainToSwitch(156) === '');