diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2020-07-26 13:30:36 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-26 13:30:36 +0900 |
| commit | 056fef70da235383b2fe6f776d1ac6cddffef23b (patch) | |
| tree | f7a34ce64fd8e87bebe8812a5a24f63d0cc6c5fa /src/client/components/deck/notifications-column.vue | |
| parent | :art: (diff) | |
| download | misskey-056fef70da235383b2fe6f776d1ac6cddffef23b.tar.gz misskey-056fef70da235383b2fe6f776d1ac6cddffef23b.tar.bz2 misskey-056fef70da235383b2fe6f776d1ac6cddffef23b.zip | |
:v: (#6567)
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'src/client/components/deck/notifications-column.vue')
| -rw-r--r-- | src/client/components/deck/notifications-column.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/components/deck/notifications-column.vue b/src/client/components/deck/notifications-column.vue index 58873aa130..331cb9207f 100644 --- a/src/client/components/deck/notifications-column.vue +++ b/src/client/components/deck/notifications-column.vue @@ -45,14 +45,14 @@ export default Vue.extend({ this.menu = [{ icon: faCog, - text: this.$t('@.notification-type'), + text: this.$t('notificationType'), action: () => { this.$root.dialog({ - title: this.$t('@.notification-type'), + title: this.$t('notificationType'), type: null, select: { items: ['all', 'follow', 'mention', 'reply', 'renote', 'quote', 'reaction', 'pollVote', 'receiveFollowRequest'].map(x => ({ - value: x, text: this.$t('@.notification-types.' + x) + value: x, text: this.$t(`_notification._types.${x}`) })) default: this.column.notificationType, }, |