summaryrefslogtreecommitdiff
path: root/src/client/pages/page-editor
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-01-31 07:01:45 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-01-31 07:01:45 +0900
commit963c7761f274d7263103cb69acf1d754c1c8d32f (patch)
tree38049e7cadeda98b6bb45cd2d82ef6205ae9f9dd /src/client/pages/page-editor
parentNew Crowdin translations (#5792) (diff)
downloadmisskey-963c7761f274d7263103cb69acf1d754c1c8d32f.tar.gz
misskey-963c7761f274d7263103cb69acf1d754c1c8d32f.tar.bz2
misskey-963c7761f274d7263103cb69acf1d754c1c8d32f.zip
Pages
Diffstat (limited to 'src/client/pages/page-editor')
-rw-r--r--src/client/pages/page-editor/page-editor.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/pages/page-editor/page-editor.vue b/src/client/pages/page-editor/page-editor.vue
index a5a4588f13..8b357584a5 100644
--- a/src/client/pages/page-editor/page-editor.vue
+++ b/src/client/pages/page-editor/page-editor.vue
@@ -2,7 +2,7 @@
<div>
<div class="gwbmwxkm _panel">
<header>
- <div class="title"><fa :icon="faStickyNote"/> {{ readonly ? $t('read-page') : pageId ? $t('edit-page') : $t('new-page') }}</div>
+ <div class="title"><fa :icon="faStickyNote"/> {{ readonly ? $t('readPage') : pageId ? $t('editPage') : $t('newPage') }}</div>
<div class="buttons">
<button class="_button" @click="del()" v-if="!readonly"><fa :icon="faTrashAlt"/></button>
<button class="_button" @click="() => showOptions = !showOptions"><fa :icon="faCog"/></button>
@@ -27,7 +27,7 @@
<span>{{ $t('url') }}</span>
</mk-input>
- <mk-switch v-model="alignCenter">{{ $t('align-center') }}</mk-switch>
+ <mk-switch v-model="alignCenter">{{ $t('alignCenter') }}</mk-switch>
<mk-select v-model="font">
<template #label>{{ $t('font') }}</template>
@@ -301,7 +301,7 @@ export default Vue.extend({
async add() {
const { canceled, result: type } = await this.$root.dialog({
type: null,
- title: this.$t('choose-block'),
+ title: this.$t('chooseBlock'),
select: {
groupedItems: this.getPageBlockList()
},
@@ -315,7 +315,7 @@ export default Vue.extend({
async addVariable() {
let { canceled, result: name } = await this.$root.dialog({
- title: this.$t('enter-variable-name'),
+ title: this.$t('enterVariableName'),
input: {
type: 'text',
},