Use room(s) style in message

This commit is contained in:
J. Ryan Stinnett 2020-11-18 14:49:52 +00:00
parent a2a07b528a
commit 95a436cdaf
2 changed files with 3 additions and 3 deletions

View file

@ -130,10 +130,10 @@ export default class EventIndexPanel extends React.Component {
<div>
<div className='mx_SettingsTab_subsectionText'>
{_t("Securely cache encrypted messages locally for them " +
"to appear in search results, using %(size)s to store messages from %(count)s rooms.",
"to appear in search results, using %(size)s to store messages from %(rooms)s room(s).",
{
size: formatBytes(this.state.eventIndexSize, 0),
count: formatCountLong(this.state.roomCount),
rooms: formatCountLong(this.state.roomCount),
},
)}
</div>