diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-25 20:17:33 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-25 20:17:33 +0900 |
| commit | bc243c1ea36dfa247533939d5489c9170a8f3798 (patch) | |
| tree | 251823bfc4c18770a9e68bbc4070a58870f2dcb9 /src/client | |
| parent | :art: (diff) | |
| download | misskey-bc243c1ea36dfa247533939d5489c9170a8f3798.tar.gz misskey-bc243c1ea36dfa247533939d5489c9170a8f3798.tar.bz2 misskey-bc243c1ea36dfa247533939d5489c9170a8f3798.zip | |
i18n
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/common/views/components/dialog.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/dialog.vue b/src/client/app/common/views/components/dialog.vue index 2dbe848d7c..3fe03c2d59 100644 --- a/src/client/app/common/views/components/dialog.vue +++ b/src/client/app/common/views/components/dialog.vue @@ -15,7 +15,7 @@ <option v-for="item in select.items" :value="item.value">{{ item.text }}</option> </ui-select> <ui-horizon-group no-grow class="buttons fit-bottom" v-if="!splash"> - <ui-button @click="ok" primary :autofocus="!input && !select && !user">{{ $t('@.ok') }}</ui-button> + <ui-button @click="ok" primary :autofocus="!input && !select && !user">{{ (showCancelButton || input || select || user) ? $t('@.ok') : $t('@.got-it') }}</ui-button> <ui-button @click="cancel" v-if="showCancelButton || input || select || user">{{ $t('@.cancel') }}</ui-button> </ui-horizon-group> </template> |