Skip to content

Commit

Permalink
add language bars
Browse files Browse the repository at this point in the history
  • Loading branch information
liangping committed Oct 12, 2024
1 parent ccbf4a9 commit ad05cba
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/layouts/components/NavBarI18n.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,27 @@ const i18nLangs: Array<{ label: string; i18nLang: string }> = [
},
{
label: '中文',
i18nLang: 'cn',
i18nLang: 'zh',
},
{
label: 'Indonesian',
i18nLang: 'id',
},
{
label: '日本語',
i18nLang: 'jo',
i18nLang: 'ja',
},
{
label: '한국인',
i18nLang: 'ko',
},
{
label: 'Deutsch',
i18nLang: 'de',
},
{
label: 'Español',
i18nLang: 'es',
},
];
Expand Down

0 comments on commit ad05cba

Please sign in to comment.