Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const useCreateTeamModalState = (onClose: () => void): CreateTeamModalState => {

const isNotAvailable = await teamNameExists(name);
if (isNotAvailable) {
setNameError(t('Teams_Errors_Already_exists', { name }));
setNameError(t('Teams_Errors_team_name', { name }));
}
}, 230, [name]);

Expand Down
1 change: 1 addition & 0 deletions packages/rocketchat-i18n/i18n/en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -3806,6 +3806,7 @@
"Teams_delete_team": "You are about to delete this Team.",
"Teams_deleted_channels": "The following Channels are going to be deleted:",
"Teams_Errors_Already_exists": "The team `__name__` already exists.",
"Teams_Errors_team_name": "You can't use \"__name__\" as a team name.",
"Teams_move_channel_to_team": "Move to Team",
"Teams_move_channel_to_team_description": "Moving a Channel inside a Team means that this Channel will be added in the Team’s context, however, all Channel’s members, which are not members of the respective Team, will still have access to this Channel, but will not be added as Team’s members.\n\nAll Channel’s management will still be made by the owners of this Channel.\n\nTeam’s members and even Team’s owners, if not a member of this Channel, can not have access to the Channel’s content.\n\nPlease notice that the Team’s owner will be able remove members from the Channel.",
"Teams_move_channel_to_team_confirm_description": "After reading the previous intructions about this behavior, do you want to move forward with this action?",
Expand Down