Change wording from 'custom status' to 'status message'

Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Signed-off-by: Gary Kim <gary@garykim.dev>
This commit is contained in:
Jan C. Borchardt 2020-09-30 16:15:29 +02:00 committed by Gary Kim
parent f0dc0d1347
commit b66f5c55e5
No known key found for this signature in database
GPG Key ID: 9349B59FB54594AC
4 changed files with 8 additions and 8 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -46,7 +46,7 @@
<ActionButton
icon="icon-rename"
:close-after-click="true"
:title="$t('user_status', 'Set custom status')"
:title="$t('user_status', 'Set status message')"
@click.prevent.stop="openModal" />
</Actions>
<SetStatusModal

View File

@ -22,11 +22,11 @@
<template>
<Modal
size="normal"
:title="$t('user_status', 'Set a custom status')"
:title="$t('user_status', 'Set status message')"
@close="closeModal">
<div class="set-status-modal">
<div class="set-status-modal__header">
<h3>{{ $t('user_status', 'Set a custom status') }}</h3>
<h3>{{ $t('user_status', 'Set status message') }}</h3>
</div>
<div class="set-status-modal__custom-input">
<EmojiPicker @select="setIcon">
@ -46,10 +46,10 @@
@selectClearAt="setClearAt" />
<div class="status-buttons">
<button class="status-buttons__select" @click="clearStatus">
{{ $t('user_status', 'Clear custom status') }}
{{ $t('user_status', 'Clear status message') }}
</button>
<button class="status-buttons__primary primary" @click="saveStatus">
{{ $t('user_status', 'Set status') }}
{{ $t('user_status', 'Set status message') }}
</button>
</div>
</div>