new room copy updates
This commit is contained in:
parent
1894301f87
commit
9e7397e757
2 changed files with 12 additions and 3 deletions
|
|
@ -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…
Add table
Reference in a new issue