mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
Feat: Add missing languages options (#667)
* chg: feat: add brazillian portuguese to language options * chg: fix: organize imports * chg: feat: add al missing translations * chg: fix: lint issues * chg: fix: revert changes, lol
This commit is contained in:
parent
4acd2be626
commit
cee6993ed0
@ -1,7 +1,13 @@
|
|||||||
import de from "./de";
|
import de from "./de";
|
||||||
import en from "./en";
|
import en from "./en";
|
||||||
|
import es from "./es";
|
||||||
import fr from "./fr";
|
import fr from "./fr";
|
||||||
|
import it from "./it";
|
||||||
|
import ko from "./ko";
|
||||||
import pl from "./pl";
|
import pl from "./pl";
|
||||||
|
import pt_br from "./pt_br";
|
||||||
|
import ro from "./ro";
|
||||||
|
import ru from "./ru";
|
||||||
import tr from "./tr";
|
import tr from "./tr";
|
||||||
import uk from "./uk";
|
import uk from "./uk";
|
||||||
import zh from "./zh";
|
import zh from "./zh";
|
||||||
@ -9,8 +15,14 @@ import zh from "./zh";
|
|||||||
export default {
|
export default {
|
||||||
de: { translation: de },
|
de: { translation: de },
|
||||||
en: { translation: en },
|
en: { translation: en },
|
||||||
|
es: { translation: es },
|
||||||
fr: { translation: fr },
|
fr: { translation: fr },
|
||||||
|
it: { translation: it },
|
||||||
|
ko: { translation: ko },
|
||||||
pl: { translation: pl },
|
pl: { translation: pl },
|
||||||
|
"pt-BR": { translation: pt_br },
|
||||||
|
ro: { translation: ro },
|
||||||
|
ru: { translation: ru },
|
||||||
tr: { translation: tr },
|
tr: { translation: tr },
|
||||||
uk: { translation: uk },
|
uk: { translation: uk },
|
||||||
zh: { translation: zh },
|
zh: { translation: zh },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user