Add longtext to popover menu

Signed-off-by: Julius Härtl <jus@bitgrid.net>
pull/18/head
Julius Härtl 2018-11-21 11:06:30 +01:00
rodzic 1f93c0a03a
commit 25aeb5b4b4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4C614C6ED2CDE6DF
1 zmienionych plików z 9 dodań i 5 usunięć

Wyświetl plik

@ -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')
}
]
},