Skip to content

Commit b795b00

Browse files
committed
Translate no results
1 parent 5eecbfb commit b795b00

18 files changed

Lines changed: 41 additions & 7 deletions

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@
7070
- [x] Update apps
7171
- [x] Blocklist
7272
- [x] New messages on start
73+
- [x] Fix no results
74+
- [x] Translate no results
75+
- [x] Upgrade dependencies
7376

7477
### Roadmap
7578
The roadmap has moved [here](https://github.com/orgs/Metallic-Web/projects/1/views/1).

src/locales/de/apps.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"noResults": "Keine Ergebnisse gefunden."
3+
}

src/locales/de/games.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"comingSoon": "Spiele - Demnächst!"
2+
"noResults": "Keine Ergebnisse gefunden."
33
}

src/locales/de/index.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import home from "./home.json"
2+
import apps from "./apps.json"
23
import games from "./games.json"
34
import settings from "./settings.json"
45
import error from "./error.json"
@@ -9,6 +10,7 @@ import title from "./title.json"
910

1011
var de = {
1112
"home": home,
13+
"apps": apps,
1214
"games": games,
1315
"settings": settings,
1416
"error": error,

src/locales/en/apps.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"noResults": "No results found."
3+
}

src/locales/en/games.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"comingSoon": "Games - Coming Soon!"
2+
"noResults": "No results found."
33
}

src/locales/en/index.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import home from "./home.json"
2+
import apps from "./apps.json"
23
import games from "./games.json"
34
import settings from "./settings.json"
45
import error from "./error.json"
@@ -9,6 +10,7 @@ import title from "./title.json"
910

1011
var en = {
1112
"home": home,
13+
"apps": apps,
1214
"games": games,
1315
"settings": settings,
1416
"error": error,

src/locales/es/apps.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"noResults": "No se han encontrado resultados."
3+
}

src/locales/es/games.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"comingSoon": "Juegos - ¡Próximamente!"
2+
"noResults": "No se han encontrado resultados."
33
}

src/locales/es/index.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import home from "./home.json"
2+
import apps from "./apps.json"
23
import games from "./games.json"
34
import settings from "./settings.json"
45
import error from "./error.json"
@@ -9,6 +10,7 @@ import title from "./title.json"
910

1011
var es = {
1112
"home": home,
13+
"apps": apps,
1214
"games": games,
1315
"settings": settings,
1416
"error": error,

0 commit comments

Comments
 (0)