change order of privacy controls according to #47

Signed-off-by: Jonas Sulzer <jonas@violoncello.ch>
pull/16/head
Jonas Sulzer 2018-11-28 15:16:03 +01:00 zatwierdzone przez Julius Härtl
rodzic d69471957b
commit 4dc87c2fea
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4C614C6ED2CDE6DF
1 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@ -363,18 +363,18 @@ export default {
},
visibilityPopover() {
return [
{
action: () => { this.switchType('public') },
icon: this.visibilityIconClass('public'),
text: t('social', 'Public'),
longtext: t('social', 'Post to public timelines')
},
{
action: () => { this.switchType('direct') },
icon: this.visibilityIconClass('direct'),
text: t('social', 'Direct'),
longtext: t('social', 'Post to mentioned users only')
},
{
action: () => { this.switchType('unlisted') },
icon: this.visibilityIconClass('unlisted'),
text: t('social', 'Unlisted'),
longtext: t('social', 'Do not post to public timelines')
},
{
action: () => { this.switchType('followers') },
icon: this.visibilityIconClass('followers'),
@ -382,10 +382,10 @@ export default {
longtext: t('social', 'Post to followers only')
},
{
action: () => { this.switchType('unlisted') },
icon: this.visibilityIconClass('unlisted'),
text: t('social', 'Unlisted'),
longtext: t('social', 'Do not post to public timelines')
action: () => { this.switchType('public') },
icon: this.visibilityIconClass('public'),
text: t('social', 'Public'),
longtext: t('social', 'Post to public timelines')
}
]
}