Skip to content

Commit

Permalink
fix(i18n): add ja to supported languages
Browse files Browse the repository at this point in the history
  • Loading branch information
amazanzan authored Jan 6, 2024
1 parent 828c325 commit 55c8606
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/i18n/getSupportedLanguages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ import en from './lang/en';
import es from './lang/es';
import fr from './lang/fr';
import it from './lang/it';
import ja from './lang/ja';

const i18n = {
en,
es,
fr,
it
it,
ja
};

export default function getSupportedLanguages (): string[] {
Expand Down

0 comments on commit 55c8606

Please sign in to comment.