mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-22 04:11:15 +00:00
* Use single string to translate active users per month (fixes #112) * use formattedCount
This commit is contained in:
parent
0ed1fe7cba
commit
9292d2750d
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
|
|
@ -79,8 +79,10 @@ 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,
|
||||
formattedCount: numToSI(users_active_month),
|
||||
})}
|
||||
</i>
|
||||
</h4>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue