Skip to content

Commit

Permalink
Feat: Add missing languages options (#667)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
felipemarinho97 authored Nov 10, 2024
1 parent 4acd2be commit cee6993
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions front/translations/index.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@
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 },
Expand Down

0 comments on commit cee6993

Please sign in to comment.