diff --git a/client/views/teams/modals/CreateTeamModal/CreateTeamModal.tsx b/client/views/teams/modals/CreateTeamModal/CreateTeamModal.tsx index ea94462f0a827..6efb27b07a048 100644 --- a/client/views/teams/modals/CreateTeamModal/CreateTeamModal.tsx +++ b/client/views/teams/modals/CreateTeamModal/CreateTeamModal.tsx @@ -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]); diff --git a/packages/rocketchat-i18n/i18n/en.i18n.json b/packages/rocketchat-i18n/i18n/en.i18n.json index 68895ad417bde..36e8e375a1b83 100644 --- a/packages/rocketchat-i18n/i18n/en.i18n.json +++ b/packages/rocketchat-i18n/i18n/en.i18n.json @@ -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?",