kopia lustrzana https://github.com/nextcloud/social
Merge pull request #463 from nextcloud/privacySettingsOrder
reorder post privacy to be consistent with mastodonpull/464/head
commit
0a14f7ce33
|
@ -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')
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue