mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
* 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
30 lines
672 B
JavaScript
30 lines
672 B
JavaScript
import de from "./de";
|
|
import en from "./en";
|
|
import es from "./es";
|
|
import fr from "./fr";
|
|
import it from "./it";
|
|
import ko from "./ko";
|
|
import pl from "./pl";
|
|
import pt_br from "./pt_br";
|
|
import ro from "./ro";
|
|
import ru from "./ru";
|
|
import tr from "./tr";
|
|
import uk from "./uk";
|
|
import zh from "./zh";
|
|
|
|
export default {
|
|
de: { translation: de },
|
|
en: { translation: en },
|
|
es: { translation: es },
|
|
fr: { translation: fr },
|
|
it: { translation: it },
|
|
ko: { translation: ko },
|
|
pl: { translation: pl },
|
|
"pt-BR": { translation: pt_br },
|
|
ro: { translation: ro },
|
|
ru: { translation: ru },
|
|
tr: { translation: tr },
|
|
uk: { translation: uk },
|
|
zh: { translation: zh },
|
|
};
|