summaryrefslogtreecommitdiff
path: root/src/client/pages/scratchpad.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/scratchpad.vue
parentwip (diff)
downloadmisskey-5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8.tar.gz
misskey-5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8.tar.bz2
misskey-5a8cc7851b4af9ae4a0d7efc5b66b224bbe9b4c8.zip
wip
Diffstat (limited to 'src/client/pages/scratchpad.vue')
-rw-r--r--src/client/pages/scratchpad.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/pages/scratchpad.vue b/src/client/pages/scratchpad.vue
index 6dc7ae9c97..d55910e9d5 100644
--- a/src/client/pages/scratchpad.vue
+++ b/src/client/pages/scratchpad.vue
@@ -6,14 +6,14 @@
</div>
<MkContainer :body-togglable="true">
- <template #header><Fa fixed-width/>{{ $t('output') }}</template>
+ <template #header><Fa fixed-width/>{{ $ts.output }}</template>
<div class="bepmlvbi">
<div v-for="log in logs" class="log" :key="log.id" :class="{ print: log.print }">{{ log.text }}</div>
</div>
</MkContainer>
<section class="_section" style="margin-top: var(--margin);">
- <div class="_content">{{ $t('scratchpadDescription') }}</div>
+ <div class="_content">{{ $ts.scratchpadDescription }}</div>
</section>
</div>
</template>
@@ -44,7 +44,7 @@ export default defineComponent({
data() {
return {
INFO: {
- title: this.$t('scratchpad'),
+ title: this.$ts.scratchpad,
icon: faTerminal,
},
code: '',