Use one string instead of two

Signed-off-by: Aaron Raimist <aaron@raim.ist>
pull/21833/head
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>
));
}

View File

@ -1008,8 +1008,7 @@
"Failed to update community": "Failed to update community",
"Unable to accept invite": "Unable to accept invite",
"Unable to join community": "Unable to join community",
"You are an administrator of this community": "You are an administrator of this community",
"You will not be able to rejoin without an invite from another administrator.": "You will not be able to rejoin without an invite from another administrator.",
"You are an administrator of this community. You will not be able to rejoin without an invite from another administrator.": "You are an administrator of this community. You will not be able to rejoin without an invite from another administrator.",
"Leave Community": "Leave Community",
"Leave %(groupName)s?": "Leave %(groupName)s?",
"Unable to leave community": "Unable to leave community",
@ -1022,6 +1021,7 @@
"%(inviter)s has invited you to join this community": "%(inviter)s has invited you to join this community",
"Join this community": "Join this community",
"Leave this community": "Leave this community",
"You are an administrator of this community": "You are an administrator of this community",
"You are a member of this community": "You are a member of this community",
"Who can join this community?": "Who can join this community?",
"Everyone": "Everyone",