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

This commit is contained in:
camperbot
2023-03-06 19:27:41 +05:30
committed by GitHub
parent 113036dad6
commit 92b33e8b46
693 changed files with 71907 additions and 1059 deletions

View File

@@ -8,31 +8,31 @@ dashedName: reverse-a-string
# --description--
Reverse the provided string and return the reversed string.
Drehe den übergebenen String um, und gib diesen dann zurück.
For example, `"hello"` should become `"olleh"`.
Zum Beispiel sollte `"hello"` zu `"olleh"` werden.
# --hints--
`reverseString("hello")` should return a string.
`reverseString("hello")` sollte einen String zurückgeben.
```js
assert(typeof reverseString('hello') === 'string');
```
`reverseString("hello")` should return the string `olleh`.
`reverseString("hello")` sollte den String `olleh` zurückgeben.
```js
assert(reverseString('hello') === 'olleh');
```
`reverseString("Howdy")` should return the string `ydwoH`.
`reverseString("Howdy")` sollte den String `ydwoH` zurückgeben.
```js
assert(reverseString('Howdy') === 'ydwoH');
```
`reverseString("Greetings from Earth")` should return the string `htraE morf sgniteerG`.
`reverseString("Greetings from Earth")` sollte den String `htraE morf sgniteerG` zurückgeben.
```js
assert(reverseString('Greetings from Earth') === 'htraE morf sgniteerG');