-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chg: feat: add al missing translations
- Loading branch information
1 parent
bda5d71
commit 7bf7dc5
Showing
1 changed file
with
11 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,29 @@ | ||
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 }, | ||
pt_br: { translation: pt_br }, | ||
}; |