feat: allow ad-hoc creation of new teams (#3964)

Co-authored-by: Tom Moor <tom@getoutline.com>
This commit is contained in:
Nan Yu
2022-10-16 08:57:27 -04:00
committed by GitHub
parent 1fbc000e03
commit 39fc8d5c14
33 changed files with 529 additions and 186 deletions

View File

@@ -84,7 +84,7 @@ class AddPeopleToGroup extends React.Component<Props> {
<Flex column>
<Text type="secondary">
{t(
"Add team members below to give them access to the group. Need to add someone whos not yet on the team yet?"
"Add members below to give them access to the group. Need to add someone whos not yet a member?"
)}{" "}
<ButtonLink onClick={this.handleInviteModalOpen}>
{t("Invite them to {{teamName}}", {

View File

@@ -59,7 +59,7 @@ function GroupMembers({ group }: Props) {
<>
<Text type="secondary">
<Trans
defaults="Add and remove team members in the <em>{{groupName}}</em> group. Adding people to the group will give them access to any collections this group has been added to."
defaults="Add and remove members to the <em>{{groupName}}</em> group. Members of the group will have access to any collections this group has been added to."
values={{
groupName: group.name,
}}
@@ -82,7 +82,7 @@ function GroupMembers({ group }: Props) {
) : (
<Text type="secondary">
<Trans
defaults="Listing team members in the <em>{{groupName}}</em> group."
defaults="Listing members of the <em>{{groupName}}</em> group."
values={{
groupName: group.name,
}}