👌 IMPROVE: reorder post privacy to be consistent with mastodon

Signed-off-by: Jonas Sulzer <jonas@violoncello.ch>
pull/463/head
Jonas Sulzer 2019-03-12 18:40:14 +01:00
rodzic dd2346d4a4
commit 5bf59e86ff
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6D1DC8E0D9904C83
1 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@ -464,11 +464,11 @@ export default {
visibilityPopover() {
return [
{
action: () => { this.switchType('direct') },
icon: this.visibilityIconClass('direct'),
active: this.activeState('direct'),
text: t('social', 'Direct'),
longtext: t('social', 'Post to mentioned users only')
action: () => { this.switchType('public') },
icon: this.visibilityIconClass('public'),
active: this.activeState('public'),
text: t('social', 'Public'),
longtext: t('social', 'Post to public timelines')
},
{
action: () => { this.switchType('unlisted') },
@ -485,11 +485,11 @@ export default {
longtext: t('social', 'Post to followers only')
},
{
action: () => { this.switchType('public') },
icon: this.visibilityIconClass('public'),
active: this.activeState('public'),
text: t('social', 'Public'),
longtext: t('social', 'Post to public timelines')
action: () => { this.switchType('direct') },
icon: this.visibilityIconClass('direct'),
active: this.activeState('direct'),
text: t('social', 'Direct'),
longtext: t('social', 'Post to mentioned users only')
}
]
}