From a133fd1cf41a4b012e755ab96d82a55422f736b8 Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Mon, 23 Oct 2017 14:57:40 +0100 Subject: [PATCH] Fix "failed to create community" message --- src/components/views/dialogs/CreateGroupDialog.js | 2 +- src/i18n/strings/en_EN.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/views/dialogs/CreateGroupDialog.js b/src/components/views/dialogs/CreateGroupDialog.js index ed143358e9..bda298ef0b 100644 --- a/src/components/views/dialogs/CreateGroupDialog.js +++ b/src/components/views/dialogs/CreateGroupDialog.js @@ -108,7 +108,7 @@ export default React.createClass({ // rather than displaying what the server gives us, but synapse doesn't give // any yet. createErrorNode =
-
{ _t('Room creation failed') }
+
{ _t('Something went wrong whilst creating your community') }
{ this.state.createError.message }
; } diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index a9f14151c9..1e8a7cadbc 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -583,7 +583,7 @@ "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.": "Are you sure you wish to remove (delete) this event? Note that if you delete a room name or topic change, it could undo the change.", "%(actionVerb)s this person?": "%(actionVerb)s this person?", "Community IDs may only contain alphanumeric characters": "Community IDs may only contain alphanumeric characters", - "Room creation failed": "Room creation failed", + "Something went wrong whilst creating your community": "Something went wrong whilst creating your community", "Create Community": "Create Community", "Community Name": "Community Name", "Example": "Example",