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/settings_modal/tabs/profile_tab.vue | |
| 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/settings_modal/tabs/profile_tab.vue')
| -rw-r--r-- | src/components/settings_modal/tabs/profile_tab.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/settings_modal/tabs/profile_tab.vue b/src/components/settings_modal/tabs/profile_tab.vue index 175a0219..bb3c301d 100644 --- a/src/components/settings_modal/tabs/profile_tab.vue +++ b/src/components/settings_modal/tabs/profile_tab.vue @@ -153,7 +153,7 @@ class="btn button-default" @click="updateProfile" > - {{ $t('general.submit') }} + {{ $t('settings.save') }} </button> </div> <div class="setting-item"> @@ -227,7 +227,7 @@ class="btn button-default" @click="submitBanner(banner)" > - {{ $t('general.submit') }} + {{ $t('settings.save') }} </button> </div> <div class="setting-item"> @@ -266,7 +266,7 @@ class="btn button-default" @click="submitBackground(background)" > - {{ $t('general.submit') }} + {{ $t('settings.save') }} </button> </div> </div> |
