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

This commit is contained in:
Felix Ableitner 2022-08-03 20:34:56 +02:00
parent 0ed1fe7cba
commit 4fbf57ccfe
5 changed files with 7 additions and 6 deletions

@ -1 +1 @@
Subproject commit 6f8e82eac5449e1e2c61b1e248faeb7e9cf46752
Subproject commit dbdbaa9e6176aca1f7772ced2c61ed5209af86a6

@ -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,9 @@ export class Instances extends Component<any, any> {
<h4 class="col">{domain}</h4>
<h4 class="col text-right">
<i>
{numToSI(users_active_month)} {i18n.t("users")} /{" "}
{i18n.t("month")}
{i18n.t("users_active_per_month", {
count: users_active_month,
})}
</i>
</h4>
</div>