Skip to content

Commit

Permalink
feat(i18n): add korean support
Browse files Browse the repository at this point in the history
  • Loading branch information
GalvinGao committed Feb 26, 2020
1 parent 00eefbd commit 438a8c3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@
@click="changeLocale(locale.id)"
>
<v-list-item-title>{{ locale.name }}</v-list-item-title>
<v-list-item-action v-if="locale.beta">
<v-icon small>
mdi-beta
</v-icon>
</v-list-item-action>
</v-list-item>
</v-list>
</v-menu>
Expand Down Expand Up @@ -312,6 +317,10 @@ export default {
}, {
id: 'ja',
name: '日本語'
}, {
id: 'kr',
name: '한국어',
beta: true,
}
],
prefetchingResources: false,
Expand Down

0 comments on commit 438a8c3

Please sign in to comment.