Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan C. Borchardt <hey@jancborchardt.net>2020-09-30 17:15:29 +0300
committerJoas Schilling <coding@schilljs.com>2020-09-30 17:49:41 +0300
commit9a517d5b355b60d2ec57985826b39218040b2ed0 (patch)
treed1447fc447f8e313a3b01b59937b0d4516b6cbb6 /apps/user_status/src
parentaeb7329b3db0b1cbfa41bdedf9bccb230a3910d8 (diff)
Change wording from 'custom status' to 'status message'
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/user_status/src')
-rw-r--r--apps/user_status/src/App.vue2
-rw-r--r--apps/user_status/src/components/ClearAtSelect.vue2
-rw-r--r--apps/user_status/src/components/SetStatusModal.vue8
3 files changed, 6 insertions, 6 deletions
diff --git a/apps/user_status/src/App.vue b/apps/user_status/src/App.vue
index 1bc275c5f32..ff927505bae 100644
--- a/apps/user_status/src/App.vue
+++ b/apps/user_status/src/App.vue
@@ -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
diff --git a/apps/user_status/src/components/ClearAtSelect.vue b/apps/user_status/src/components/ClearAtSelect.vue
index 2e96488a546..c813831c101 100644
--- a/apps/user_status/src/components/ClearAtSelect.vue
+++ b/apps/user_status/src/components/ClearAtSelect.vue
@@ -23,7 +23,7 @@
<div class="clear-at-select">
<span
class="clear-at-select__label">
- {{ $t('user_status', 'Clear status after') }}
+ {{ $t('user_status', 'Clear status message after') }}
</span>
<Multiselect
label="label"
diff --git a/apps/user_status/src/components/SetStatusModal.vue b/apps/user_status/src/components/SetStatusModal.vue
index 46c289d9e81..c0652ce990b 100644
--- a/apps/user_status/src/components/SetStatusModal.vue
+++ b/apps/user_status/src/components/SetStatusModal.vue
@@ -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>