@ -121,7 +121,7 @@ class Onboarding extends ImmutablePureComponent {
<divclassName='onboarding__steps'>
<SteponClick={this.handleProfileClick}href='/settings/profile'completed={(!account.get('avatar').endsWith('missing.png'))||(account.get('display_name').length>0&&account.get('note').length>0)}icon='address-book-o'label={<FormattedMessageid='onboarding.steps.setup_profile.title'defaultMessage='Customize your profile'/>}description={<FormattedMessageid='onboarding.steps.setup_profile.body'defaultMessage='Others are more likely to interact with you with a filled out profile.'/>}/>
<SteponClick={this.handleFollowClick}completed={(account.get('following_count')*1)>=7}icon='user-plus'label={<FormattedMessageid='onboarding.steps.follow_people.title'defaultMessage='Follow {count, plural, one {one person} other {# people}}' values={{count:7}}/>}description={<FormattedMessageid='onboarding.steps.follow_people.body'defaultMessage="You curate your own feed. Let's fill it with interesting people." />}/>
<SteponClick={this.handleFollowClick}completed={(account.get('following_count')*1)>=7}icon='user-plus'label={<FormattedMessageid='onboarding.steps.follow_people.title'defaultMessage='Find at least {count, plural, one {one person} other {# people}} to follow' values={{count:7}}/>}description={<FormattedMessageid='onboarding.steps.follow_people.body'defaultMessage="You curate your own home feed. Let's fill it with interesting people." />}/>
<SteponClick={this.handleComposeClick}completed={(account.get('statuses_count')*1)>=1}icon='pencil-square-o'label={<FormattedMessageid='onboarding.steps.publish_status.title'defaultMessage='Make your first post'/>}description={<FormattedMessageid='onboarding.steps.publish_status.body'defaultMessage='Say hello to the world.'/>}/>
<SteponClick={this.handleShareClick}completed={shareClicked}icon='copy'label={<FormattedMessageid='onboarding.steps.share_profile.title'defaultMessage='Share your profile'/>}description={<FormattedMessageid='onboarding.steps.share_profile.body'defaultMessage='Let your friends know how to find you on Mastodon!'/>}/>
backups_retention_period:Keep generated user archives for the specified number of days.
bootstrap_timeline_accounts:These accounts will be pinned to the top of new users' follow recommendations.
closed_registrations_message:Displayed when sign-ups are closed
content_cache_retention_period:Posts from other servers will be deleted after the specified number of days when set to a positive value. This may be irreversible.
content_cache_retention_period:All posts and boosts from other servers will be deleted after the specified number of days. Some posts may not be recoverable. All related bookmarks, favourites and boosts will also be lost and impossible to undo.
custom_css:You can apply custom styles on the web version of Mastodon.
mascot:Overrides the illustration in the advanced web interface.
media_cache_retention_period:Downloaded media files will be deleted after the specified number of days when set to a positive value, and re-downloaded on demand.
console.error("The localisation functionality has been refactored, please see the Localisation section in the development documentation (https://docs.joinmastodon.org/dev/code/#localizations)");
# Bans the usage of “•” (bullet) in HTML/HAML in favor of “·” (middle dot) in anything that will end up as a text node. (including string literals in Ruby code)
classLinter::MiddleDot<Linter
includeLinterRegistry
# rubocop:disable Style/MiddleDot
BULLET='•'
# rubocop:enable Style/MiddleDot
MIDDLE_DOT='·'
MESSAGE="Use '#{MIDDLE_DOT}' (middle dot) instead of '#{BULLET}' (bullet)".freeze