From 92bfb42784393b0e83dc52740fbe2cb4248f7b26 Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Tue, 23 Oct 2018 13:11:34 -0500 Subject: [PATCH] Use one string instead of two Signed-off-by: Aaron Raimist --- src/components/structures/GroupView.js | 5 +++-- src/i18n/strings/en_EN.json | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/structures/GroupView.js b/src/components/structures/GroupView.js index ddd3cb87bb..8a2b7a23ca 100644 --- a/src/components/structures/GroupView.js +++ b/src/components/structures/GroupView.js @@ -753,8 +753,9 @@ export default React.createClass({ warnings.push(( { " " /* 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 */ } )); } diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 364aaeac9a..2885eb68a7 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -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",