diff options
Diffstat (limited to 'src/client/app/mobile/views/components/notifications.vue')
| -rw-r--r-- | src/client/app/mobile/views/components/notifications.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/components/notifications.vue b/src/client/app/mobile/views/components/notifications.vue index fc220c252a..9f20c3fb22 100644 --- a/src/client/app/mobile/views/components/notifications.vue +++ b/src/client/app/mobile/views/components/notifications.vue @@ -42,7 +42,7 @@ export default Vue.extend({ const date = new Date(notification.createdAt).getDate(); const month = new Date(notification.createdAt).getMonth() + 1; notification._date = date; - notification._datetext = `${month}月 ${date}日`; + notification._datetext = '%i18n:common.month-and-day%'.replace('{month}', month.toString()).replace('{day}', date.toString()); return notification; }); } |