Use one string instead of two

Signed-off-by: Aaron Raimist <aaron@raim.ist>
This commit is contained in:
Aaron Raimist 2018-10-23 13:11:34 -05:00
parent a6c78ace4f
commit 92bfb42784
No known key found for this signature in database
GPG key ID: 37419210002890EF
2 changed files with 5 additions and 4 deletions

View file

@ -753,8 +753,9 @@ export default React.createClass({
warnings.push((
<span className="warning">
{ " " /* Whitespace, otherwise the sentences get smashed together */ }
{ _t("You are an administrator of this community") + ". " }
{ _t("You will not be able to rejoin without an invite from another administrator.") }
{ /* eslint-disable max-len */ }
{ _t("You are an administrator of this community. You will not be able to rejoin without an invite from another administrator.") }
{ /* eslint-enable max-len */ }
</span>
));
}