Skip to content
Open
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 @@ -87,7 +87,7 @@ const CreateCloudWorkspaceForm = ({
<FieldGroup mbs={16}>
<Field>
<FieldLabel>
{t('form.createCloudWorkspace.fields.orgEmaillabel')}
{t('form.createCloudWorkspace.fields.orgEmail.label')}
</FieldLabel>
<FieldRow>
<EmailInput
Expand All @@ -107,7 +107,7 @@ const CreateCloudWorkspaceForm = ({
<Field>
<FieldLabel>
<Box display='inline' mie={8}>
{t('form.createCloudWorkspace.fields.workspaceNamelabel')}
{t('form.createCloudWorkspace.fields.workspaceName.label')}
</Box>
</FieldLabel>
<FieldRow>
Expand All @@ -126,7 +126,7 @@ const CreateCloudWorkspaceForm = ({
<Field>
<FieldLabel>
<Box display='inline' mie={8}>
{t('form.createCloudWorkspace.fields.workspaceUrllabel')}
{t('form.createCloudWorkspace.fields.workspaceUrl.label')}
</Box>
</FieldLabel>
<FieldRow>
Expand All @@ -149,7 +149,7 @@ const CreateCloudWorkspaceForm = ({
<Field>
<FieldLabel>
<Box display='inline' mie={8}>
{t('form.createCloudWorkspace.fields.serverRegionlabel')}
{t('form.createCloudWorkspace.fields.serverRegion.label')}
</Box>
<Tooltip
text={t(
Expand All @@ -168,7 +168,7 @@ const CreateCloudWorkspaceForm = ({
{...field}
options={serverRegionOptions}
placeholder={t(
'form.createCloudWorkspace.fields.serverRegionlabel',
'form.createCloudWorkspace.fields.serverRegion.label',
)}
/>
)}
Expand All @@ -181,7 +181,7 @@ const CreateCloudWorkspaceForm = ({
<Field>
<FieldLabel>
<Box display='inline' mie={8}>
{t('form.createCloudWorkspace.fields.languagelabel')}
{t('form.createCloudWorkspace.fields.language.label')}
</Box>
<Tooltip
text={t('form.createCloudWorkspace.fields.language.tooltip')}
Expand All @@ -198,7 +198,7 @@ const CreateCloudWorkspaceForm = ({
{...field}
options={languageOptions}
placeholder={t(
'form.createCloudWorkspace.fields.languagelabel',
'form.createCloudWorkspace.fields.language.label',
)}
/>
)}
Expand Down