Merge pull request #1199 from pangeachat/1187-feedback-on-new-spacechat-flow

new room copy updates
pull/1544/head
ggurdin 11 months ago committed by GitHub
commit 4561c65603
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4585,5 +4585,7 @@
"pleaseFillOut": "Please fill out",
"invalidUrl": "Invalid url",
"addLink": "Add link",
"unableToJoinChat": "Unable to join chat. Maybe the other party has already closed the conversation."
"unableToJoinChat": "Unable to join chat. Maybe the other party has already closed the conversation.",
"createChatAndInviteUsers": "Create chat and invite users",
"updatedNewSpaceDescription": "Spaces allow you to consolidate your chats and build private or public communities."
}

@ -172,7 +172,11 @@ class NewGroupView extends StatelessWidget {
padding: EdgeInsets.symmetric(horizontal: 16.0),
child: Icon(Icons.info_outlined),
),
subtitle: Text(L10n.of(context).newSpaceDescription),
// #Pangea
// subtitle: Text(L10n.of(context).newSpaceDescription),
subtitle:
Text(L10n.of(context).updatedNewSpaceDescription),
// Pangea#
)
: const SizedBox.shrink(),
),
@ -188,7 +192,10 @@ class NewGroupView extends StatelessWidget {
: Text(
controller.createGroupType == CreateGroupType.space
? L10n.of(context).createNewSpace
: L10n.of(context).createGroupAndInviteUsers,
// #Pangea
// : L10n.of(context).createGroupAndInviteUsers,
: L10n.of(context).createChatAndInviteUsers,
// Pangea#
),
),
),

Loading…
Cancel
Save