More strings.

This commit is contained in:
gaba
2017-05-25 14:05:17 -04:00
parent 492f4a674c
commit 96985b4780
2 changed files with 2 additions and 2 deletions
@@ -36,7 +36,7 @@ export class CountdownSeconds extends React.Component {
const secRemaining = msRemaining / 1000;
const wholeSecRemaining = Math.floor(secRemaining);
const plural = secRemaining !== 1;
const units = t(plural ? 'editComment.secondsPlural' : 'editComment.second');
const units = t(plural ? 'edit_comment.secondsPlural' : 'edit_comment.second');
let classFromProp;
if (typeof classNameForMsRemaining === 'function') {
classFromProp = classNameForMsRemaining(msRemaining);
@@ -80,7 +80,7 @@ class Stream extends React.Component {
{!banned && temporarilySuspended &&
<RestrictedMessageBox>
{
t('sign_in.temporaly_suspended',
t('sign_in.temporarily_suspended',
this.props.root.settings.organizationName,
timeago(user.suspension.until),
)