diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-04-02 03:01:41 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2017-04-02 03:01:41 +0900 |
| commit | 7770eac9cbc44620b2f03393ee421ddb54bc1f09 (patch) | |
| tree | d7bf0e2972042f880e79f6490e2b5a83bfe7407d /src | |
| parent | Fix #388 (diff) | |
| download | misskey-7770eac9cbc44620b2f03393ee421ddb54bc1f09.tar.gz misskey-7770eac9cbc44620b2f03393ee421ddb54bc1f09.tar.bz2 misskey-7770eac9cbc44620b2f03393ee421ddb54bc1f09.zip | |
Fix typo
Diffstat (limited to 'src')
| -rw-r--r-- | src/web/app/common/tags/messaging/form.tag | 2 | ||||
| -rw-r--r-- | src/web/app/common/tags/poll.tag | 2 | ||||
| -rw-r--r-- | src/web/app/mobile/tags/page/entrance/signin.tag | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/web/app/common/tags/messaging/form.tag b/src/web/app/common/tags/messaging/form.tag index 9bbb10320b..b3b61b43d2 100644 --- a/src/web/app/common/tags/messaging/form.tag +++ b/src/web/app/common/tags/messaging/form.tag @@ -8,7 +8,7 @@ <button class="attach-from-local" type="button" title="%i18n:common.tags.mk-messaging-form.attach-from-local%"> <i class="fa fa-upload"></i> </button> - <button class="attach-from-drive" type="button" title="%i18n:common.tags.mk-messaging-form.atach-from-drive%"> + <button class="attach-from-drive" type="button" title="%i18n:common.tags.mk-messaging-form.attach-from-drive%"> <i class="fa fa-folder-open"></i> </button> <input name="file" type="file" accept="image/*"/> diff --git a/src/web/app/common/tags/poll.tag b/src/web/app/common/tags/poll.tag index 8ab899652e..52614cf709 100644 --- a/src/web/app/common/tags/poll.tag +++ b/src/web/app/common/tags/poll.tag @@ -1,6 +1,6 @@ <mk-poll data-is-voted={ isVoted }> <ul> - <li each={ poll.choices } onclick={ vote.bind(null, id) } class={ voted: voted } title={ !parent.isVoted ? '%i18n:common.tags.mk-poll.%'.replace('{}', '%i18n:common.tags.mk-poll.vote-to%') : '' }> + <li each={ poll.choices } onclick={ vote.bind(null, id) } class={ voted: voted } title={ !parent.isVoted ? '%i18n:common.tags.mk-poll.vote-to%'.replace('{}', text) : '' }> <div class="backdrop" style={ 'width:' + (parent.result ? (votes / parent.total * 100) : 0) + '%' }></div> <span> <i class="fa fa-check" if={ is_voted }></i> diff --git a/src/web/app/mobile/tags/page/entrance/signin.tag b/src/web/app/mobile/tags/page/entrance/signin.tag index f622af54c8..119208c7d4 100644 --- a/src/web/app/mobile/tags/page/entrance/signin.tag +++ b/src/web/app/mobile/tags/page/entrance/signin.tag @@ -1,7 +1,7 @@ <mk-entrance-signin> <mk-signin></mk-signin> <div class="divider"><span>or</span></div> - <button class="signup" onclick={ parent.signup }>%i18n:mobile.tags.mk-entrance.signup%</button><a class="introduction" onclick={ parent.introduction }>%i18n:mobile.tags.mk-entrance-signin.about%</a> + <button class="signup" onclick={ parent.signup }>%i18n:mobile.tags.mk-entrance-signin.signup%</button><a class="introduction" onclick={ parent.introduction }>%i18n:mobile.tags.mk-entrance-signin.about%</a> <style> :scope display block |