Show detailled statistics per platform

This commit is contained in:
Michael 2022-02-07 06:11:37 +00:00
commit bdba75ec47
3 changed files with 57 additions and 7 deletions

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 2022.05-dev\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-07 05:22+0000\n"
"POT-Creation-Date: 2022-02-07 06:11+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -4699,7 +4699,7 @@ msgstr ""
#: src/Module/Admin/Blocklist/Contact.php:94
#: src/Module/Admin/Blocklist/Server/Add.php:89
#: src/Module/Admin/Blocklist/Server/Index.php:78
#: src/Module/Admin/Federation.php:174 src/Module/Admin/Item/Delete.php:64
#: src/Module/Admin/Federation.php:188 src/Module/Admin/Item/Delete.php:64
#: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:83
#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:498
#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:232
@ -5113,22 +5113,47 @@ msgstr ""
msgid "Other"
msgstr ""
#: src/Module/Admin/Federation.php:131 src/Module/Admin/Federation.php:363
#: src/Module/Admin/Federation.php:134 src/Module/Admin/Federation.php:377
msgid "unknown"
msgstr ""
#: src/Module/Admin/Federation.php:167
#, php-format
msgid "%d active users last month"
msgstr ""
#: src/Module/Admin/Federation.php:168
#, php-format
msgid "%d active users last six month"
msgstr ""
#: src/Module/Admin/Federation.php:169
#, php-format
msgid "%d registered users"
msgstr ""
#: src/Module/Admin/Federation.php:170
#, php-format
msgid "%d local posts"
msgstr ""
#: src/Module/Admin/Federation.php:173
#, php-format
msgid "%d posts per user"
msgstr ""
#: src/Module/Admin/Federation.php:183
msgid ""
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr ""
#: src/Module/Admin/Federation.php:175 src/Module/BaseAdmin.php:87
#: src/Module/Admin/Federation.php:189 src/Module/BaseAdmin.php:87
msgid "Federation Statistics"
msgstr ""
#: src/Module/Admin/Federation.php:179
#: src/Module/Admin/Federation.php:193
#, php-format
msgid ""
"Currently this node is aware of %d nodes (%d active users last month, %d "

View file

@ -10,7 +10,7 @@
<ul>
{{foreach $counts as $c}}
{{if $c[0]['total'] > 0}}
<li>{{$c[0]['platform']}} ({{$c[0]['total']}} &bull; {{$c[0]['month']}} &bull; {{$c[0]['halfyear']}} &bull; {{$c[0]['users']}})</li>
<li>{{$c[0]['platform']}} ({{$c[0]['total']}}/{{$c[0]['users']}})</li>
{{/if}}
{{/foreach}}
</ul>
@ -60,6 +60,17 @@
<th><strong>{{$c[0]['total']}}</strong></td>
<td>{{$c[0]['network']}}</td>
</tr>
<tr>
<td colspan="3" class="federation-summary">
<ul>
{{if $c[0]['month']}}<li>{{$c[0]['monthlbl']}}</li>{{/if}}
{{if $c[0]['halfyear']}}<li>{{$c[0]['halfyearlbl']}}</li>{{/if}}
{{if $c[0]['users']}}<li>{{$c[0]['userslbl']}}</li>{{/if}}
{{if $c[0]['posts']}}<li>{{$c[0]['postslbl']}}</li>{{/if}}
{{if $c[0]['postsuserlbl']}}<li>{{$c[0]['postsuserlbl']}}</li>{{/if}}
</ul>
</td>
</tr>
<tr>
<td colspan="3" class="federation-data">
<canvas id="{{$c[2]}}Chart" class="federation-network-graph" width="240" height="240"></canvas>