diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-10 00:28:50 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-10 00:28:50 +0900 |
| commit | 27bdb2620282fcc06be8c042059c663d4b565c6b (patch) | |
| tree | c00e0fa1863d2c84e0e810878c7f7fc82e6de078 /src/client | |
| parent | 10.46.2 (diff) | |
| download | misskey-27bdb2620282fcc06be8c042059c663d4b565c6b.tar.gz misskey-27bdb2620282fcc06be8c042059c663d4b565c6b.tar.bz2 misskey-27bdb2620282fcc06be8c042059c663d4b565c6b.zip | |
Fix #3187
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/desktop/views/pages/user/user.header.vue | 2 | ||||
| -rw-r--r-- | src/client/app/mobile/views/pages/user.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/pages/user/user.header.vue b/src/client/app/desktop/views/pages/user/user.header.vue index a2f3f183b8..48b5a487f4 100644 --- a/src/client/app/desktop/views/pages/user/user.header.vue +++ b/src/client/app/desktop/views/pages/user/user.header.vue @@ -18,7 +18,7 @@ </div> <div class="info"> <span class="location" v-if="user.host === null && user.profile.location"><fa icon="map-marker"/> {{ user.profile.location }}</span> - <span class="birthday" v-if="user.host === null && user.profile.birthday"><fa icon="birthday-cake"/> {{ user.profile.birthday.replace('-', this.$t('year')).replace('-', this.$t('month')) + this.$t('day') }} ({{ age }}%i18n:@years-old%)</span> + <span class="birthday" v-if="user.host === null && user.profile.birthday"><fa icon="birthday-cake"/> {{ user.profile.birthday.replace('-', $t('year')).replace('-', $t('month')) + $t('day') }} ({{ $t('years-old', { age }) }})</span> </div> <div class="status"> <span class="notes-count"><b>{{ user.notesCount | number }}</b>{{ $t('posts') }}</span> diff --git a/src/client/app/mobile/views/pages/user.vue b/src/client/app/mobile/views/pages/user.vue index 7ac6e17723..c88cbe6813 100644 --- a/src/client/app/mobile/views/pages/user.vue +++ b/src/client/app/mobile/views/pages/user.vue @@ -27,7 +27,7 @@ <fa icon="map-marker"/>{{ user.profile.location }} </p> <p class="birthday" v-if="user.host === null && user.profile.birthday"> - <fa icon="birthday-cake"/>{{ user.profile.birthday.replace('-', '年').replace('-', '月') + '日' }} ({{ age }}歳) + <fa icon="birthday-cake"/>{{ user.profile.birthday.replace('-', '年').replace('-', '月') + '日' }} ({{ $t('years-old', { age }) }}) </p> </div> <div class="status"> |