Skip to content

Commit a40089c

Browse files
authored
Update template users language (#2523)
1 parent f476a4a commit a40089c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/src/components/TemplateStats/TemplateStats.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ const Language = {
1111
usedByLabel: "Used by",
1212
activeVersionLabel: "Active version",
1313
lastUpdateLabel: "Last updated",
14-
userPlural: "users",
15-
userSingular: "user",
14+
developerPlural: "developers",
15+
developerSingular: "developer",
1616
createdByLabel: "Created by",
1717
}
1818

@@ -31,7 +31,7 @@ export const TemplateStats: FC<TemplateStatsProps> = ({ template, activeVersion
3131

3232
<span className={styles.statsValue}>
3333
{template.workspace_owner_count}{" "}
34-
{template.workspace_owner_count === 1 ? Language.userSingular : Language.userPlural}
34+
{template.workspace_owner_count === 1 ? Language.developerSingular : Language.developerPlural}
3535
</span>
3636
</div>
3737
<div className={styles.statsDivider} />

0 commit comments

Comments
 (0)