diff options
| author | Acid Chicken (硫酸鶏) <root@acid-chicken.com> | 2024-01-20 08:11:59 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-20 08:11:59 +0900 |
| commit | 7881f06be060dd955499a6beff3ad1967ed628f6 (patch) | |
| tree | 7b91a1c5e0f1ef99d9f66e702c7d954a54958a56 /packages/frontend/src/components/MkNotificationSelectWindow.vue | |
| parent | feat: reversi (diff) | |
| download | sharkey-7881f06be060dd955499a6beff3ad1967ed628f6.tar.gz sharkey-7881f06be060dd955499a6beff3ad1967ed628f6.tar.bz2 sharkey-7881f06be060dd955499a6beff3ad1967ed628f6.zip | |
refactor: deprecate i18n.t (#13039)
* refactor: deprecate i18n.t
* revert: deprecate i18n.t
This reverts commit 7dbf873a2f745040ee723df5db659acacff84e12.
* chore: reimpl
Diffstat (limited to 'packages/frontend/src/components/MkNotificationSelectWindow.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNotificationSelectWindow.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNotificationSelectWindow.vue b/packages/frontend/src/components/MkNotificationSelectWindow.vue index 6725776f43..0e77d2a6aa 100644 --- a/packages/frontend/src/components/MkNotificationSelectWindow.vue +++ b/packages/frontend/src/components/MkNotificationSelectWindow.vue @@ -23,7 +23,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkButton inline @click="disableAll">{{ i18n.ts.disableAll }}</MkButton> <MkButton inline @click="enableAll">{{ i18n.ts.enableAll }}</MkButton> </div> - <MkSwitch v-for="ntype in notificationTypes" :key="ntype" v-model="typesMap[ntype].value">{{ i18n.t(`_notification._types.${ntype}`) }}</MkSwitch> + <MkSwitch v-for="ntype in notificationTypes" :key="ntype" v-model="typesMap[ntype].value">{{ i18n.ts._notification._types[ntype] }}</MkSwitch> </div> </MkSpacer> </MkModalWindow> |