Skip to content

Commit 9c18905

Browse files
authored
Merge pull request #2232
Add the total numbers of members and alumni
2 parents 7e9e0b9 + 3a6a5e6 commit 9c18905

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

locales/en-US/governance.ftl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ governance-alumni-thanks = We also want to thank all past members for their inva
3636
3737
## governance/all-team-members.hbs
3838
governance-all-team-members-title = All Rust team members
39-
governance-all-team-members-intro = This section lists the members of currently active Rust teams.
40-
governance-all-team-members-alumni-intro = This section lists our team alumni.
39+
governance-all-team-members-intro = This section lists the { $count } members of currently active Rust teams.
40+
governance-all-team-members-alumni-intro = This section lists our { $count } team alumni.
4141
4242
## govenance/person.hbs
4343
governance-person-title = Rust Project team member

templates/governance/all-team-members.html.hbs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
{{#*inline "page"}}
1818
<section class="green" style="padding-bottom: 10px;">
1919
<div class="w-100 mw-none mw-8-m mw9-l center f2">
20-
<p>{{fluent "governance-all-team-members-intro"}}</p>
20+
<p>{{#fluent "governance-all-team-members-intro"}}{{#fluentparam
21+
"count"}}{{len data.active}}{{/fluentparam}}{{/fluent}}</p>
2122
</div>
2223
</section>
2324

@@ -31,7 +32,8 @@
3132

3233
<section class="red" style="padding-bottom: 10px;">
3334
<div class="w-100 mw-none mw-8-m mw9-l center f2">
34-
<p>{{fluent "governance-all-team-members-alumni-intro"}}</p>
35+
<p>{{#fluent "governance-all-team-members-alumni-intro"}}{{#fluentparam
36+
"count"}}{{len data.alumni}}{{/fluentparam}}{{/fluent}}</p>
3537
</div>
3638
</section>
3739

0 commit comments

Comments
 (0)