pinafore/src/routes/_static/statuses.js

28 wiersze
479 B
JavaScript

export const POST_PRIVACY_OPTIONS = [
{
label: 'intl.public',
key: 'public',
icon: '#fa-globe'
},
{
label: 'intl.unlisted',
key: 'unlisted',
icon: '#fa-unlock'
},
{
label: 'intl.followersOnly',
key: 'private',
icon: '#fa-lock'
},
{
label: 'intl.direct',
key: 'direct',
icon: '#fa-envelope'
}
]
export const LONG_POST_LENGTH = 1024
export const LONG_POST_TEXT = 'intl.longPost'
export const MAX_STATUS_CHARS = 500