summaryrefslogtreecommitdiff
path: root/src/client/pages/share.vue
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-12-26 10:47:36 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-12-26 10:47:36 +0900
commit5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8 (patch)
tree18f6338f1d5935c401298515d4e400d5a2306301 /src/client/pages/share.vue
parentwip (diff)
downloadmisskey-5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8.tar.gz
misskey-5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8.tar.bz2
misskey-5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8.zip
wip
Diffstat (limited to 'src/client/pages/share.vue')
-rw-r--r--src/client/pages/share.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/pages/share.vue b/src/client/pages/share.vue
index d56307466c..7912e5421f 100644
--- a/src/client/pages/share.vue
+++ b/src/client/pages/share.vue
@@ -4,7 +4,7 @@
<div class="_title" v-if="title">{{ title }}</div>
<div class="_content">
<XPostForm v-if="!posted" fixed :instant="true" :initial-text="initialText" @posted="posted = true" class="_panel"/>
- <MkButton v-else primary @click="close()">{{ $t('close') }}</MkButton>
+ <MkButton v-else primary @click="close()">{{ $ts.close }}</MkButton>
</div>
<div class="_footer" v-if="url">{{ url }}</div>
</section>
@@ -27,7 +27,7 @@ export default defineComponent({
data() {
return {
INFO: {
- title: this.$t('share'),
+ title: this.$ts.share,
icon: faShareAlt
},
title: null,