summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgutfuckllc <40531868+gutfuckllc@users.noreply.github.com>2018-08-01 15:04:00 -0400
committergutfuckllc <40531868+gutfuckllc@users.noreply.github.com>2018-08-01 15:04:00 -0400
commit3ec3fa2d1eae9d97bc43486ed51a8dfff1b6a0c0 (patch)
treecb5ee703090cab1b5fbd36c58b1ff6c520b71b4a /src
parentForgot to add vue. here (diff)
downloadmisskey-3ec3fa2d1eae9d97bc43486ed51a8dfff1b6a0c0.tar.gz
misskey-3ec3fa2d1eae9d97bc43486ed51a8dfff1b6a0c0.tar.bz2
misskey-3ec3fa2d1eae9d97bc43486ed51a8dfff1b6a0c0.zip
Localized mobile/views/components/ui.header.vue
Also added name i18n line, as to allow easier rebranding should there be any.
Diffstat (limited to 'src')
-rw-r--r--src/client/app/mobile/views/components/ui.header.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/components/ui.header.vue b/src/client/app/mobile/views/components/ui.header.vue
index c1ee70d105..794ec9a307 100644
--- a/src/client/app/mobile/views/components/ui.header.vue
+++ b/src/client/app/mobile/views/components/ui.header.vue
@@ -3,12 +3,12 @@
<mk-special-message/>
<div class="main" ref="main">
<div class="backdrop"></div>
- <p ref="welcomeback" v-if="$store.getters.isSignedIn">おかえりなさい、<b>{{ $store.state.i | userName }}</b>さん</p>
+ <p ref="welcomeback" v-if="$store.getters.isSignedIn">%i18n:@welcome-back%<b>{{ $store.state.i | userName }}</b>さん</p>
<div class="content" ref="mainContainer">
<button class="nav" @click="$parent.isDrawerOpening = true">%fa:bars%</button>
<template v-if="hasUnreadNotification || hasUnreadMessagingMessage || hasGameInvitation">%fa:circle%</template>
<h1>
- <slot>Misskey</slot>
+ <slot>%i18n:common.name%</slot>
</h1>
<slot name="func"></slot>
</div>