summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts/date-stringify.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/common/scripts/date-stringify.ts')
-rw-r--r--src/client/app/common/scripts/date-stringify.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/app/common/scripts/date-stringify.ts b/src/client/app/common/scripts/date-stringify.ts
index e51de8833d..2b8e525567 100644
--- a/src/client/app/common/scripts/date-stringify.ts
+++ b/src/client/app/common/scripts/date-stringify.ts
@@ -1,12 +1,12 @@
export default date => {
if (typeof date == 'string') date = new Date(date);
return (
- date.getFullYear() + '年' +
- (date.getMonth() + 1) + '月' +
- date.getDate() + '日' +
+ date.getFullYear() + '%i18n:common.date.full-year%' +
+ (date.getMonth() + 1) + '%i18n:common.date.month%' +
+ date.getDate() + '%i18n:common.date.day%' +
' ' +
- date.getHours() + '時' +
- date.getMinutes() + '分' +
+ date.getHours() + '%i18n:common.date.hours%' +
+ date.getMinutes() + '%i18n:common.date.minutes%' +
' ' +
`(${['日', '月', '火', '水', '木', '金', '土'][date.getDay()]})`
);