From 25aeb5b4b49450bffa0c1ea155efb18b4d272b40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 21 Nov 2018 11:06:30 +0100 Subject: [PATCH] Add longtext to popover menu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/components/Composer.vue | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/components/Composer.vue b/src/components/Composer.vue index 4bb653b1..640aac24 100644 --- a/src/components/Composer.vue +++ b/src/components/Composer.vue @@ -234,7 +234,7 @@ .tribute-container li.highlight .account, .tribute-container li:hover .account { color: var(--color-primary-text) !important; - opacity: .9; + opacity: .6; } .message .mention { color: var(--color-primary-element); @@ -309,22 +309,26 @@ export default { { action: () => { this.switchType('public') }, icon: this.visibilityIconClass('public'), - text: 'Public' + text: t('social', 'Public'), + longtext: t('social', 'Post to public timelines') }, { action: () => { this.switchType('direct') }, icon: this.visibilityIconClass('direct'), - text: 'Direct' + text: t('social', 'Direct'), + longtext: t('social', 'Post to mentioned users only') }, { action: () => { this.switchType('followers') }, icon: this.visibilityIconClass('followers'), - text: 'Followers' + text: t('social', 'Followers'), + longtext: t('social', 'Post to followers only') }, { action: () => { this.switchType('unlisted') }, icon: this.visibilityIconClass('unlisted'), - text: 'Unlisted' + text: t('social', 'Unlisted'), + longtext: t('social', 'Do not post to public timelines') } ] },