summaryrefslogtreecommitdiff
path: root/src/client/app/dev
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-11-09 13:47:22 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-11-09 13:47:22 +0900
commitc8081ed35354143654bd60b5751f17b8791b81d6 (patch)
treece8a2df5d6a4737cba036e267372fb2d3f2cc074 /src/client/app/dev
parentUpdate autobind-decorator requirement from 2.1.0 to 2.2.1 (#3151) (diff)
downloadmisskey-c8081ed35354143654bd60b5751f17b8791b81d6.tar.gz
misskey-c8081ed35354143654bd60b5751f17b8791b81d6.tar.bz2
misskey-c8081ed35354143654bd60b5751f17b8791b81d6.zip
Fix i18n
Diffstat (limited to 'src/client/app/dev')
-rw-r--r--src/client/app/dev/views/new-app.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/dev/views/new-app.vue b/src/client/app/dev/views/new-app.vue
index 298b6f9925..d8c128904a 100644
--- a/src/client/app/dev/views/new-app.vue
+++ b/src/client/app/dev/views/new-app.vue
@@ -2,13 +2,13 @@
<mk-ui>
<b-card :header="$t('header')">
<b-form @submit.prevent="onSubmit" autocomplete="off">
- <b-form-group :label="$t('label')" :description="$t('description')">
+ <b-form-group :label="$t('app-name')" :description="$t('description')">
<b-form-input v-model="name" type="text" :placeholder="$t('placeholder')" autocomplete="off" required/>
</b-form-group>
- <b-form-group :label="$t('label')" :description="$t('description')">
+ <b-form-group :label="$t('app-overview')" :description="$t('description')">
<b-textarea v-model="description" :placeholder="$t('placeholder')" autocomplete="off" required></b-textarea>
</b-form-group>
- <b-form-group :label="$t('label')" :description="$t('description')">
+ <b-form-group :label="$t('callback-url')" :description="$t('description')">
<b-input v-model="cb" type="url" placeholder="ex) https://your.app.example.com/callback.php" autocomplete="off"/>
</b-form-group>
<b-card :header="$t('header')">