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() {
|
||||
const { intl, instance } = this.props;
|
||||
const v = parseVersion(instance.get('version'));
|
||||
const userCount = instance.getIn(['stats', 'user_count']);
|
||||
const mau = instance.getIn(['pleroma', 'stats', 'mau']);
|
||||
const retention = (userCount && mau) ? Math.round(mau / userCount * 100) : null;
|
||||
|
||||
return (
|
||||
<Column icon='tachometer' heading={intl.formatMessage(messages.heading)} backBtnSlim>
|
||||
<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'>
|
||||
<a href='/pleroma/admin/#/users/index' target='_blank'>
|
||||
<div className='dashcounter__num'>
|
||||
<FormattedNumber value={instance.getIn(['stats', 'user_count'])} />
|
||||
<FormattedNumber value={userCount} />
|
||||
</div>
|
||||
<div className='dashcounter__label'>
|
||||
<FormattedMessage id='admin.dashcounters.user_count_label' defaultMessage='users' />
|
||||
<FormattedMessage id='admin.dashcounters.user_count_label' defaultMessage='total users' />
|
||||
</div>
|
||||
</a>
|
||||
</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'>
|
||||
<a href='/pleroma/admin/#/statuses/index' target='_blank'>
|
||||
<div className='dashcounter__num'>
|
||||
|
@ -64,16 +86,6 @@ class Dashboard extends ImmutablePureComponent {
|
|||
</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>
|
||||
<RegistrationModePicker />
|
||||
<div className='dashwidgets'>
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -1118,7 +1118,7 @@
|
|||
"id": "column.admin.dashboard"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "users",
|
||||
"defaultMessage": "total users",
|
||||
"id": "admin.dashcounters.user_count_label"
|
||||
},
|
||||
{
|
||||
|
@ -4161,4 +4161,4 @@
|
|||
],
|
||||
"path": "app/soapbox/features/video/index.json"
|
||||
}
|
||||
]
|
||||
]
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"admin.dashboard.settings_saved": "Settings saved!",
|
||||
"admin.dashcounters.domain_count_label": "peers",
|
||||
"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.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",
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
> a,
|
||||
> div {
|
||||
box-sizing: border-box;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
display: block;
|
||||
|
@ -20,6 +21,7 @@
|
|||
background: var(--accent-color--faint);
|
||||
border-radius: 4px;
|
||||
transition: 0.2s;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
> a:hover {
|
||||
|
|
Loading…
Reference in a new issue