diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 17:50:59 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 17:50:59 +0900 |
| commit | 1b7a601d276e9c4420702a9c2dd9cc3ef8c82f41 (patch) | |
| tree | 2f201dadafb1cfc9cee6bb28a692c139e44eeb91 /src/client | |
| parent | :art: (diff) | |
| download | misskey-1b7a601d276e9c4420702a9c2dd9cc3ef8c82f41.tar.gz misskey-1b7a601d276e9c4420702a9c2dd9cc3ef8c82f41.tar.bz2 misskey-1b7a601d276e9c4420702a9c2dd9cc3ef8c82f41.zip | |
Fix i18n
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app.vue b/src/client/app.vue index ef464d7e4f..4e89aa4351 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -102,7 +102,7 @@ > <div v-for="widget in widgets" class="customize-container _panel" :key="widget.id"> <header> - <span class="handle"><fa :icon="faBars"/></span>{{ widget.name }}<button class="remove _button" @click="removeWidget(widget)"><fa :icon="faTimes"/></button> + <span class="handle"><fa :icon="faBars"/></span>{{ $t('_widgets.' + widget.name) }}<button class="remove _button" @click="removeWidget(widget)"><fa :icon="faTimes"/></button> </header> <div @click="widgetFunc(widget.id)"> <component :is="`mkw-${widget.name}`" :widget="widget" :ref="widget.id" :is-customize-mode="true"/> |