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 @@ Las comillas no son los únicos caracteres que pueden ser <dfn>escapados</dfn> d
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 @@ Debes tener al menos cuatro sentencias `break`
assert(code.match(/break/g).length >= 4);
```
`chainToSwitch("bob")` debe ser la cadena `Marley`
`chainToSwitch("bob")` should return the string `Marley`
```js
assert(chainToSwitch('bob') === 'Marley');
```
`chainToSwitch(42)` debe ser la cadena `The Answer`
`chainToSwitch(42)` should return the string `The Answer`
```js
assert(chainToSwitch(42) === 'The Answer');
```
`chainToSwitch(1)` debe ser la cadena `There is no #1`
`chainToSwitch(1)` should return the string `There is no #1`
```js
assert(chainToSwitch(1) === 'There is no #1');
```
`chainToSwitch(99)` debe ser la cadena `Missed me by this much!`
`chainToSwitch(99)` should return the string `Missed me by this much!`
```js
assert(chainToSwitch(99) === 'Missed me by this much!');
```
`chainToSwitch(7)` debe ser la cadena `Ate Nine`
`chainToSwitch(7)` should return the string `Ate Nine`
```js
assert(chainToSwitch(7) === 'Ate Nine');
```
`chainToSwitch("John")` debe ser `""` (cadena vacía)
`chainToSwitch("John")` should return `""` (empty string)
```js
assert(chainToSwitch('John') === '');
```
`chainToSwitch(156)` debe ser `""` (cadena vacía)
`chainToSwitch(156)` should return `""` (empty string)
```js
assert(chainToSwitch(156) === '');