Merge branch 'user-retention' into 'develop'
Display user retention % in dashboard See merge request soapbox-pub/soapbox-fe!485
This commit is contained in:
commit
b3195c857f
61 changed files with 86 additions and 72 deletions
|
@ -29,21 +29,43 @@ class Dashboard extends ImmutablePureComponent {
|
||||||
render() {
|
render() {
|
||||||
const { intl, instance } = this.props;
|
const { intl, instance } = this.props;
|
||||||
const v = parseVersion(instance.get('version'));
|
const v = parseVersion(instance.get('version'));
|
||||||
|
const userCount = instance.getIn(['stats', 'user_count']);
|
||||||
const mau = instance.getIn(['pleroma', 'stats', 'mau']);
|
const mau = instance.getIn(['pleroma', 'stats', 'mau']);
|
||||||
|
const retention = (userCount && mau) ? Math.round(mau / userCount * 100) : null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Column icon='tachometer' heading={intl.formatMessage(messages.heading)} backBtnSlim>
|
<Column icon='tachometer' heading={intl.formatMessage(messages.heading)} backBtnSlim>
|
||||||
<div className='dashcounters'>
|
<div className='dashcounters'>
|
||||||
|
{mau && <div className='dashcounter'>
|
||||||
|
<div>
|
||||||
|
<div className='dashcounter__num'>
|
||||||
|
<FormattedNumber value={mau} />
|
||||||
|
</div>
|
||||||
|
<div className='dashcounter__label'>
|
||||||
|
<FormattedMessage id='admin.dashcounters.mau_label' defaultMessage='monthly active users' />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>}
|
||||||
<div className='dashcounter'>
|
<div className='dashcounter'>
|
||||||
<a href='/pleroma/admin/#/users/index' target='_blank'>
|
<a href='/pleroma/admin/#/users/index' target='_blank'>
|
||||||
<div className='dashcounter__num'>
|
<div className='dashcounter__num'>
|
||||||
<FormattedNumber value={instance.getIn(['stats', 'user_count'])} />
|
<FormattedNumber value={userCount} />
|
||||||
</div>
|
</div>
|
||||||
<div className='dashcounter__label'>
|
<div className='dashcounter__label'>
|
||||||
<FormattedMessage id='admin.dashcounters.user_count_label' defaultMessage='users' />
|
<FormattedMessage id='admin.dashcounters.user_count_label' defaultMessage='total users' />
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
{retention && <div className='dashcounter'>
|
||||||
|
<div>
|
||||||
|
<div className='dashcounter__num'>
|
||||||
|
{retention}%
|
||||||
|
</div>
|
||||||
|
<div className='dashcounter__label'>
|
||||||
|
<FormattedMessage id='admin.dashcounters.retention_label' defaultMessage='user retention' />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>}
|
||||||
<div className='dashcounter'>
|
<div className='dashcounter'>
|
||||||
<a href='/pleroma/admin/#/statuses/index' target='_blank'>
|
<a href='/pleroma/admin/#/statuses/index' target='_blank'>
|
||||||
<div className='dashcounter__num'>
|
<div className='dashcounter__num'>
|
||||||
|
@ -64,16 +86,6 @@ class Dashboard extends ImmutablePureComponent {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{mau && <div className='dashcounter'>
|
|
||||||
<div>
|
|
||||||
<div className='dashcounter__num'>
|
|
||||||
<FormattedNumber value={mau} />
|
|
||||||
</div>
|
|
||||||
<div className='dashcounter__label'>
|
|
||||||
<FormattedMessage id='admin.dashcounters.mau_label' defaultMessage='monthly active users (MAU)' />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>}
|
|
||||||
</div>
|
</div>
|
||||||
<RegistrationModePicker />
|
<RegistrationModePicker />
|
||||||
<div className='dashwidgets'>
|
<div className='dashwidgets'>
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -1118,7 +1118,7 @@
|
||||||
"id": "column.admin.dashboard"
|
"id": "column.admin.dashboard"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"defaultMessage": "users",
|
"defaultMessage": "total users",
|
||||||
"id": "admin.dashcounters.user_count_label"
|
"id": "admin.dashcounters.user_count_label"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"admin.dashboard.settings_saved": "Settings saved!",
|
"admin.dashboard.settings_saved": "Settings saved!",
|
||||||
"admin.dashcounters.domain_count_label": "peers",
|
"admin.dashcounters.domain_count_label": "peers",
|
||||||
"admin.dashcounters.status_count_label": "posts",
|
"admin.dashcounters.status_count_label": "posts",
|
||||||
"admin.dashcounters.user_count_label": "users",
|
"admin.dashcounters.user_count_label": "total users",
|
||||||
"admin.dashwidgets.software_header": "Software",
|
"admin.dashwidgets.software_header": "Software",
|
||||||
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
"admin.moderation_log.empty_message": "You have not performed any moderation actions yet. When you do, a history will be shown here.",
|
||||||
"admin.reports.actions.close": "Close",
|
"admin.reports.actions.close": "Close",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
|
|
||||||
> a,
|
> a,
|
||||||
> div {
|
> div {
|
||||||
|
box-sizing: border-box;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -20,6 +21,7 @@
|
||||||
background: var(--accent-color--faint);
|
background: var(--accent-color--faint);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
transition: 0.2s;
|
transition: 0.2s;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
> a:hover {
|
> a:hover {
|
||||||
|
|
Loading…
Reference in a new issue