From 5273f40afc08385f1ea00b6e40bd65532e272401 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 28 Feb 2022 15:33:03 +0100 Subject: Improve stat labels --- .../instance-statistics.component.html | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/client/src/app/shared/shared-instance/instance-statistics.component.html b/client/src/app/shared/shared-instance/instance-statistics.component.html index 399cf10fe..2ca61fd94 100644 --- a/client/src/app/shared/shared-instance/instance-statistics.component.html +++ b/client/src/app/shared/shared-instance/instance-statistics.component.html @@ -1,13 +1,13 @@

Loading instance statistics...

-

Local

+

By users on this instance

-

{{ serverStats.totalUsers }}

+

{{ serverStats.totalUsers | number }}

users

@@ -17,7 +17,7 @@
-

{{ serverStats.totalLocalVideos }}

+

{{ serverStats.totalLocalVideos | number }}

videos

@@ -27,8 +27,8 @@
-

{{ serverStats.totalLocalVideoViews }}

-

video views

+

{{ serverStats.totalLocalVideoViews | number }}

+

views

@@ -37,8 +37,8 @@
-

{{ serverStats.totalLocalVideoComments }}

-

video comments

+

{{ serverStats.totalLocalVideoComments | number }}

+

comments

@@ -48,20 +48,20 @@

{{ serverStats.totalLocalVideoFilesSize | bytes:1 }}

-

of hosted video

+

hosted video

-

Federation

+

In this instance federation

-

{{ serverStats.totalVideos }}

+

{{ serverStats.totalVideos | number }}

videos

@@ -71,8 +71,8 @@
-

{{ serverStats.totalVideoComments }}

-

video comments

+

{{ serverStats.totalVideoComments | number }}

+

comments

@@ -81,7 +81,7 @@
-

{{ serverStats.totalInstanceFollowers }}

+

{{ serverStats.totalInstanceFollowers | number }}

followers

@@ -91,7 +91,7 @@
-

{{ serverStats.totalInstanceFollowing }}

+

{{ serverStats.totalInstanceFollowing | number }}

following

-- cgit v1.2.3