@ -3,7 +3,7 @@ import React from 'react';
import PropTypes from 'prop-types' ;
import { FormattedMessage , defineMessages , injectIntl } from 'react-intl' ;
import { Link } from 'react-router-dom' ;
import { invitesEnabled , version, repository , source _url } from 'mastodon/initial_state' ;
import { invitesEnabled , limitedFederationMode, version, repository , source _url } from 'mastodon/initial_state' ;
import { logOut } from 'mastodon/utils/log_out' ;
import { openModal } from 'mastodon/actions/modal' ;
@ -50,7 +50,7 @@ class LinkFooter extends React.PureComponent {
{ invitesEnabled && < li > < a href = '/invites' target = '_blank' > < FormattedMessage id = 'getting_started.invite' defaultMessage = 'Invite people' / > < / a > · < / l i > }
{ withHotkeys && < li > < Link to = '/keyboard-shortcuts' > < FormattedMessage id = 'navigation_bar.keyboard_shortcuts' defaultMessage = 'Hotkeys' / > < / L i n k > · < / l i > }
< li > < a href = '/auth/edit' > < FormattedMessage id = 'getting_started.security' defaultMessage = 'Security' / > < / a > · < / l i >
< li > < a href = '/about/more' target = '_blank' > < FormattedMessage id = 'navigation_bar.info' defaultMessage = 'About this server' / > < / a > · < / l i >
{ ! limitedFederationMode && < li > < a href = '/about/more' target = '_blank' > < FormattedMessage id = 'navigation_bar.info' defaultMessage = 'About this server' / > < / a > · < / l i > }
< li > < a href = 'https://joinmastodon.org/apps' target = '_blank' > < FormattedMessage id = 'navigation_bar.apps' defaultMessage = 'Mobile apps' / > < / a > · < / l i >
< li > < a href = '/terms' target = '_blank' > < FormattedMessage id = 'getting_started.terms' defaultMessage = 'Terms of service' / > < / a > · < / l i >
< li > < a href = '/settings/applications' target = '_blank' > < FormattedMessage id = 'getting_started.developers' defaultMessage = 'Developers' / > < / a > · < / l i >