Merge pull request #23116 from nextcloud/backport/23113/stable20

[stable20] Change wording from 'custom status' to 'status message'
This commit is contained in:
Roeland Jago Douma 2020-10-01 08:29:27 +02:00 committed by GitHub
commit 612306d290
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>