-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #930 from hydralauncher/feat/refactor-languages
feat: refactor languages
- Loading branch information
Showing
29 changed files
with
172 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "اَلْعَرَبِيَّةُ", | ||
"home": { | ||
"featured": "مميّز", | ||
"trending": "شائع", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "беларуская мова", | ||
"home": { | ||
"featured": "Рэкамэндаванае", | ||
"trending": "Актуальнае", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Català", | ||
"app": { | ||
"successfully_signed_in": "Has entrat correctament" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Dansk", | ||
"home": { | ||
"featured": "Anbefalet", | ||
"trending": "Trender", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "English", | ||
"app": { | ||
"successfully_signed_in": "Successfully signed in" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Español", | ||
"app": { | ||
"successfully_signed_in": "Sesión iniciada correctamente" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "فارسی", | ||
"home": { | ||
"featured": "پیشنهادی", | ||
"trending": "پرطرفدار", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Français", | ||
"home": { | ||
"featured": "En vedette", | ||
"trending": "Tendance", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Magyar", | ||
"home": { | ||
"featured": "Featured", | ||
"trending": "Népszerű", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Bahasa Indonesia", | ||
"app": { | ||
"successfully_signed_in": "Berhasil masuk" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,47 @@ | ||
export { default as en } from "./en/translation.json"; | ||
export { default as ptPT } from "./pt-PT/translation.json"; | ||
export { default as ptBR } from "./pt-BR/translation.json"; | ||
export { default as es } from "./es/translation.json"; | ||
export { default as nl } from "./nl/translation.json"; | ||
export { default as fr } from "./fr/translation.json"; | ||
export { default as hu } from "./hu/translation.json"; | ||
export { default as it } from "./it/translation.json"; | ||
export { default as pl } from "./pl/translation.json"; | ||
export { default as ru } from "./ru/translation.json"; | ||
export { default as tr } from "./tr/translation.json"; | ||
export { default as be } from "./be/translation.json"; | ||
export { default as uk } from "./uk/translation.json"; | ||
export { default as zh } from "./zh/translation.json"; | ||
export { default as id } from "./id/translation.json"; | ||
export { default as ko } from "./ko/translation.json"; | ||
export { default as da } from "./da/translation.json"; | ||
export { default as ar } from "./ar/translation.json"; | ||
export { default as fa } from "./fa/translation.json"; | ||
export { default as ro } from "./ro/translation.json"; | ||
export { default as ca } from "./ca/translation.json"; | ||
export { default as kk } from "./kk/translation.json"; | ||
import en from "./en/translation.json"; | ||
import ptPT from "./pt-PT/translation.json"; | ||
import ptBR from "./pt-BR/translation.json"; | ||
import es from "./es/translation.json"; | ||
import nl from "./nl/translation.json"; | ||
import fr from "./fr/translation.json"; | ||
import hu from "./hu/translation.json"; | ||
import it from "./it/translation.json"; | ||
import pl from "./pl/translation.json"; | ||
import ru from "./ru/translation.json"; | ||
import tr from "./tr/translation.json"; | ||
import be from "./be/translation.json"; | ||
import uk from "./uk/translation.json"; | ||
import zh from "./zh/translation.json"; | ||
import id from "./id/translation.json"; | ||
import ko from "./ko/translation.json"; | ||
import da from "./da/translation.json"; | ||
import ar from "./ar/translation.json"; | ||
import fa from "./fa/translation.json"; | ||
import ro from "./ro/translation.json"; | ||
import ca from "./ca/translation.json"; | ||
import kk from "./kk/translation.json"; | ||
|
||
export default { | ||
"pt-BR": ptBR, | ||
"pt-PT": ptPT, | ||
en, | ||
es, | ||
nl, | ||
fr, | ||
hu, | ||
it, | ||
pl, | ||
ru, | ||
tr, | ||
be, | ||
uk, | ||
zh, | ||
id, | ||
ko, | ||
da, | ||
ar, | ||
fa, | ||
ro, | ||
ca, | ||
kk, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Italiano", | ||
"home": { | ||
"featured": "In primo piano", | ||
"trending": "Di tendenza", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "қазақ тілі", | ||
"app": { | ||
"successfully_signed_in": "Сәтті кіру" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "한국어", | ||
"home": { | ||
"featured": "추천", | ||
"trending": "인기", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Nederlands", | ||
"home": { | ||
"featured": "Uitgelicht", | ||
"trending": "Trending", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Polski", | ||
"home": { | ||
"featured": "Wyróżnione", | ||
"trending": "Trendujące", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Português (Brasil)", | ||
"app": { | ||
"successfully_signed_in": "Autenticado com sucesso" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Português (Portugal)", | ||
"app": { | ||
"successfully_signed_in": "Sessão iniciada com sucesso" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Română", | ||
"home": { | ||
"featured": "Recomandate", | ||
"trending": "Populare", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Русский", | ||
"app": { | ||
"successfully_signed_in": "Успешный вход" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Türkçe", | ||
"home": { | ||
"featured": "Öne çıkan", | ||
"trending": "Popüler", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "Українська", | ||
"app": { | ||
"successfully_signed_in": "Успішний вхід в систему" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"language_name": "中文", | ||
"app": { | ||
"successfully_signed_in": "已成功登录" | ||
}, | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.