diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-09 13:47:22 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-09 13:47:22 +0900 |
| commit | c8081ed35354143654bd60b5751f17b8791b81d6 (patch) | |
| tree | ce8a2df5d6a4737cba036e267372fb2d3f2cc074 /src/client/app/dev | |
| parent | Update autobind-decorator requirement from 2.1.0 to 2.2.1 (#3151) (diff) | |
| download | misskey-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.vue | 6 |
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')"> |