diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-07-12 17:37:56 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-07-12 17:37:56 +0900 |
| commit | 7555ab097a6aab68851782b641a33fb3fdf2f101 (patch) | |
| tree | e2b55dd804cdbc3774f914044eb14050eb7d45a2 /src/client | |
| parent | fix(client): Fix #6532 (diff) | |
| download | misskey-7555ab097a6aab68851782b641a33fb3fdf2f101.tar.gz misskey-7555ab097a6aab68851782b641a33fb3fdf2f101.tar.bz2 misskey-7555ab097a6aab68851782b641a33fb3fdf2f101.zip | |
fix(client): i18n
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/pages/theme-editor.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/pages/theme-editor.vue b/src/client/pages/theme-editor.vue index 3a3fbfa2d7..2ad95c065e 100644 --- a/src/client/pages/theme-editor.vue +++ b/src/client/pages/theme-editor.vue @@ -9,7 +9,7 @@ <mk-input v-model="author" required><span>{{ $t('author') }}</span></mk-input> <mk-textarea v-model="description"><span>{{ $t('description') }}</span></mk-textarea> <div class="_inputs"> - <div v-text="$t('_theme.baseTheme')" /> + <div v-text="$t('_theme.base')" /> <mk-radio v-model="baseTheme" value="light">{{ $t('light') }}</mk-radio> <mk-radio v-model="baseTheme" value="dark">{{ $t('dark') }}</mk-radio> </div> |