diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-23 19:35:19 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-23 19:35:19 +0900 |
| commit | a76fb4c1738dea589f4dc308d05b5466f3e451d4 (patch) | |
| tree | 537119cb95dbaf2d96759f8e25faa1aa5aaf4c17 | |
| parent | MFM: Improve search syntax (diff) | |
| download | misskey-a76fb4c1738dea589f4dc308d05b5466f3e451d4.tar.gz misskey-a76fb4c1738dea589f4dc308d05b5466f3e451d4.tar.bz2 misskey-a76fb4c1738dea589f4dc308d05b5466f3e451d4.zip | |
i18n
| -rw-r--r-- | locales/ja.yml | 1 | ||||
| -rw-r--r-- | src/client/app/common/views/components/google.vue | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/locales/ja.yml b/locales/ja.yml index 80fb50ea3e..78779da206 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -47,6 +47,7 @@ common: e: "ここに書いてください" f: "あなたが書くのを待っています..." + search: "検索" delete: "削除" loading: "読み込み中" ok: "わかった" diff --git a/src/client/app/common/views/components/google.vue b/src/client/app/common/views/components/google.vue index 92817d3c1f..8272961ef2 100644 --- a/src/client/app/common/views/components/google.vue +++ b/src/client/app/common/views/components/google.vue @@ -1,7 +1,7 @@ <template> <div class="mk-google"> <input type="search" v-model="query" :placeholder="q"> - <button @click="search">検索</button> + <button @click="search">%fa:search% %i18n:common.search%</button> </div> </template> |