summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-07-12 17:37:56 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-07-12 17:37:56 +0900
commit7555ab097a6aab68851782b641a33fb3fdf2f101 (patch)
treee2b55dd804cdbc3774f914044eb14050eb7d45a2 /src/client
parentfix(client): Fix #6532 (diff)
downloadmisskey-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.vue2
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>