diff options
| author | rinpatch <rin@patch.cx> | 2021-03-15 13:28:33 +0300 |
|---|---|---|
| committer | rinpatch <rin@patch.cx> | 2021-03-15 13:28:33 +0300 |
| commit | 47719571e454e3432e9d8fd34b5ce1ac513a187f (patch) | |
| tree | ce4034e264e661f6e4b013c6d67856186e8c998e /src/components/post_status_form | |
| parent | a00212a3bbc029439a27ba01895e01adf37a2db6 (diff) | |
Use more specific button titles instead of general.submit
- "Post" for post submission (we already had the button title be "Posting"
when the post was being sent, so there was a weird inconsistency)
- "Register" for registration submission
- "Save changes" for usages in settings
Diffstat (limited to 'src/components/post_status_form')
| -rw-r--r-- | src/components/post_status_form/post_status_form.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue index 73f6a4f1..6b490aee 100644 --- a/src/components/post_status_form/post_status_form.vue +++ b/src/components/post_status_form/post_status_form.vue @@ -272,7 +272,7 @@ disabled class="btn button-default" > - {{ $t('general.submit') }} + {{ $t('post_status.post') }} </button> <!-- touchstart is used to keep the OSK at the same position after a message send --> <button @@ -282,7 +282,7 @@ @touchstart.stop.prevent="postStatus($event, newStatus)" @click.stop.prevent="postStatus($event, newStatus)" > - {{ $t('general.submit') }} + {{ $t('post_status.post') }} </button> </div> <div |
