From 23f2370c4b1ffd9a7c3a7a51209be4f7e2580092 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 2 Aug 2018 07:53:11 +0900 Subject: [PATCH] Improve i18n --- src/client/app/common/views/widgets/calendar.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/app/common/views/widgets/calendar.vue b/src/client/app/common/views/widgets/calendar.vue index 68a58f8936..eb15030370 100644 --- a/src/client/app/common/views/widgets/calendar.vue +++ b/src/client/app/common/views/widgets/calendar.vue @@ -4,10 +4,10 @@

- %i18n:@year-english%{{ year }}%i18n:@year-japanese% - %i18n:@month-english%{{ month }}%i18n:@month-japanese% + {{ '%i18n:@year%'.split('{}')[0] }}{{ year }}{{ '%i18n:@year%'.split('{}')[1] }} + {{ '%i18n:@month%'.split('{}')[0] }}{{ month }}{{ '%i18n:@month%'.split('{}')[1] }}

-

%i18n:@day-english%{{ day }}%i18n:@day-japanese%

+

{{ '%i18n:@day%'.split('{}')[0] }}{{ day }}{{ '%i18n:@day%'.split('{}')[1] }}

{{ weekDay }}