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 @@ -226,7 +226,7 @@ const CreateChannelModal = ({ teamId = '', onClose, reload }: CreateChannelModal
{errors.name.message}
</FieldError>
)}
{!allowSpecialNames && <FieldHint id={`${nameId}-hint`}>{t('No_spaces')}</FieldHint>}
{!allowSpecialNames && <FieldHint id={`${nameId}-hint`}>{t('No_spaces_or_special_characters')}</FieldHint>}
</Field>
<Field>
<FieldLabel htmlFor={topicId}>{t('Topic')}</FieldLabel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const CreateTeamModal = ({ onClose }: CreateTeamModalProps) => {
{errors.name.message}
</FieldError>
)}
{!allowSpecialNames && <FieldHint id={`${nameId}-hint`}>{t('No_spaces')}</FieldHint>}
{!allowSpecialNames && <FieldHint id={`${nameId}-hint`}>{t('No_spaces_or_special_characters')}</FieldHint>}
</Field>
<Field>
<FieldLabel htmlFor={topicId}>{t('Topic')}</FieldLabel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ const CreateChannelModal = ({ teamId = '', mainRoom, onClose, reload }: CreateCh
{errors.name.message}
</FieldError>
)}
{!allowSpecialNames && <FieldHint id={`${nameId}-hint`}>{t('No_spaces')}</FieldHint>}
{!allowSpecialNames && <FieldHint id={`${nameId}-hint`}>{t('No_spaces_or_special_characters')}</FieldHint>}
</Field>
<Field>
<FieldLabel htmlFor={topicId}>{t('Topic')}</FieldLabel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const CreateTeamModal = ({ onClose }: { onClose: () => void }): ReactElement =>
{errors.name.message}
</FieldError>
)}
{!allowSpecialNames && <FieldHint id={`${nameId}-hint`}>{t('No_spaces')}</FieldHint>}
{!allowSpecialNames && <FieldHint id={`${nameId}-hint`}>{t('No_spaces_or_special_characters')}</FieldHint>}
</Field>
<Field>
<FieldLabel htmlFor={topicId}>{t('Topic')}</FieldLabel>
Expand Down
4 changes: 2 additions & 2 deletions packages/i18n/src/locales/en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -3671,7 +3671,7 @@
"No_results_found": "No results found",
"No_results_found_for": "No results found for:",
"No_snippet_messages": "No snippet",
"No_spaces": "No spaces",
"No_spaces_or_special_characters": "No spaces or special characters",
"No_starred_messages": "No starred messages",
"No_such_command": "No such command: `/{{command}}`",
"No_tags_yet": "No tags yet",
Expand Down Expand Up @@ -6932,4 +6932,4 @@
"__usernames__joined": "{{usernames}} joined",
"__usersCount__joined": "{{count}} joined",
"__usersCount__people_will_be_invited": "{{usersCount}} people will be invited"
}
}
1 change: 0 additions & 1 deletion packages/i18n/src/locales/nb.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -3628,7 +3628,6 @@
"No_results_found": "Ingen resultater funnet",
"No_results_found_for": "Ingen resultater funnet for:",
"No_snippet_messages": "Ingen utdrag",
"No_spaces": "Ingen mellomrom",
"No_starred_messages": "Ingen stjernemerkede meldinger",
"No_such_command": "Ingen slik kommando: `/ {{command}}`",
"No_tags_yet": "Ingen tagger ennå",
Expand Down
1 change: 0 additions & 1 deletion packages/i18n/src/locales/nn.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -3567,7 +3567,6 @@
"No_results_found": "Ingen resultater",
"No_results_found_for": "Ingen resultater funnet for:",
"No_snippet_messages": "Ingen utdrag",
"No_spaces": "Ingen mellomrom",
"No_starred_messages": "Ingen stjernemerkede meldinger",
"No_such_command": "Ingen slik kommando: `/ {{command}}`",
"No_tags_yet": "Ingen tagger ennå",
Expand Down
1 change: 0 additions & 1 deletion packages/i18n/src/locales/pt-BR.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -3609,7 +3609,6 @@
"No_results_found": "Nenhum resultado encontrado",
"No_results_found_for": "Nenhum resultado encontrado para:",
"No_snippet_messages": "Não há snippets",
"No_spaces": "Sem espaços",
"No_starred_messages": "Não há mensagens favoritas",
"No_such_command": "Nenhum comando deste tipo: `/{{command}}`",
"No_tags_yet": "Ainda não há tags",
Expand Down
1 change: 0 additions & 1 deletion packages/i18n/src/locales/sv.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -3627,7 +3627,6 @@
"No_results_found": "Inga resultat funna",
"No_results_found_for": "Inga resultat hittade för:",
"No_snippet_messages": "Inget utdrag",
"No_spaces": "Inga mellanslag",
"No_starred_messages": "Inga stjärnmarkerade meddelanden",
"No_such_command": "Inget sådant kommando: `/ {{command}}`",
"No_tags_yet": "Inga taggar ännu",
Expand Down
Loading