Use single string to translate active users per month (fixes #112) (#114)

* Use single string to translate active users per month (fixes #112)

* use formattedCount
This commit is contained in:
Nutomic 2022-08-04 16:51:21 +02:00 committed by GitHub
parent 0ed1fe7cba
commit 9292d2750d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 6 deletions

@ -1 +1 @@
Subproject commit 6f8e82eac5449e1e2c61b1e248faeb7e9cf46752 Subproject commit 7c61980d6f3d6a004dee82fd6da65d1ee62a3447

@ -1 +1 @@
Subproject commit 76b397aac77c038e4f53ecb629c4d08acebdbb7c Subproject commit 70e433a9f98bfb55c04d8b1c2d86f35ae79368af

@ -1 +1 @@
Subproject commit e7f5a5d05f1ce085e7b451ee2bfa41bb35f5f2dd Subproject commit 54a61241cee2a8e16c8ff8fbaed9ac2b1024a51b

@ -1 +1 @@
Subproject commit 7c3945745dcd07774b19453803f7f14ab80ab3d3 Subproject commit 29c689af8d16417c1b84d9491f6bcea888720a87

View file

@ -79,8 +79,10 @@ export class Instances extends Component<any, any> {
<h4 class="col">{domain}</h4> <h4 class="col">{domain}</h4>
<h4 class="col text-right"> <h4 class="col text-right">
<i> <i>
{numToSI(users_active_month)} {i18n.t("users")} /{" "} {i18n.t("users_active_per_month", {
{i18n.t("month")} count: users_active_month,
formattedCount: numToSI(users_active_month),
})}
</i> </i>
</h4> </h4>
</div> </div>