Prepare for ICU migration
This commit is contained in:
parent
d0f17a1398
commit
2781e621ad
62 changed files with 550 additions and 414 deletions
|
@ -118,11 +118,19 @@ function renderUsers(
|
|||
<Intl
|
||||
i18n={i18n}
|
||||
id={`${keyPrefix}--one`}
|
||||
components={[<ContactName title={members[0].title} />]}
|
||||
components={{
|
||||
contact: <ContactName title={members[0].title} />,
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
);
|
||||
}
|
||||
|
||||
return <p>{i18n(`${keyPrefix}--many`, [members.length.toString()])}</p>;
|
||||
return (
|
||||
<p>
|
||||
{i18n(`${keyPrefix}--many`, {
|
||||
count: members.length.toString(),
|
||||
})}
|
||||
</p>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue