@@ -75,10 +75,10 @@ export const ParamsWizardStep: React.FC<ParamsWizardStepProps> = ({ formMethods,
7575
7676 return (
7777 < FormInput
78- label = { t ( 'runs.dev_env .wizard.name' ) }
79- description = { t ( 'runs.dev_env .wizard.name_description' ) }
80- constraintText = { t ( 'runs.dev_env .wizard.name_constraint' ) }
81- placeholder = { t ( 'runs.dev_env .wizard.name_placeholder' ) }
78+ label = { t ( 'runs.launch .wizard.name' ) }
79+ description = { t ( 'runs.launch .wizard.name_description' ) }
80+ constraintText = { t ( 'runs.launch .wizard.name_constraint' ) }
81+ placeholder = { t ( 'runs.launch .wizard.name_placeholder' ) }
8282 control = { control }
8383 name = { FORM_FIELD_NAMES . name }
8484 disabled = { loading }
@@ -98,8 +98,8 @@ export const ParamsWizardStep: React.FC<ParamsWizardStepProps> = ({ formMethods,
9898
9999 return (
100100 < FormSelect
101- label = { t ( 'runs.dev_env .wizard.ide' ) }
102- description = { t ( 'runs.dev_env .wizard.ide_description' ) }
101+ label = { t ( 'runs.launch .wizard.ide' ) }
102+ description = { t ( 'runs.launch .wizard.ide_description' ) }
103103 control = { control }
104104 name = { FORM_FIELD_NAMES . ide }
105105 options = { IDE_OPTIONS }
@@ -120,14 +120,14 @@ export const ParamsWizardStep: React.FC<ParamsWizardStepProps> = ({ formMethods,
120120 activeTabId = { dockerPythonTab }
121121 tabs = { [
122122 {
123- label : t ( 'runs.dev_env .wizard.python' ) ,
123+ label : t ( 'runs.launch .wizard.python' ) ,
124124 id : DockerPythonTabs . PYTHON ,
125125 content : (
126126 < div >
127127 < FormInput
128- label = { t ( 'runs.dev_env .wizard.python' ) }
129- description = { t ( 'runs.dev_env .wizard.python_description' ) }
130- placeholder = { t ( 'runs.dev_env .wizard.python_placeholder' ) }
128+ label = { t ( 'runs.launch .wizard.python' ) }
129+ description = { t ( 'runs.launch .wizard.python_description' ) }
130+ placeholder = { t ( 'runs.launch .wizard.python_placeholder' ) }
131131 control = { control }
132132 name = { FORM_FIELD_NAMES . python }
133133 disabled = { loading }
@@ -136,15 +136,15 @@ export const ParamsWizardStep: React.FC<ParamsWizardStepProps> = ({ formMethods,
136136 ) ,
137137 } ,
138138 {
139- label : t ( 'runs.dev_env .wizard.docker' ) ,
139+ label : t ( 'runs.launch .wizard.docker' ) ,
140140 id : DockerPythonTabs . DOCKER ,
141141 content : (
142142 < div >
143143 < FormInput
144- label = { t ( 'runs.dev_env .wizard.docker_image' ) }
145- description = { t ( 'runs.dev_env .wizard.docker_image_description' ) }
146- constraintText = { t ( 'runs.dev_env .wizard.docker_image_constraint' ) }
147- placeholder = { t ( 'runs.dev_env .wizard.docker_image_placeholder' ) }
144+ label = { t ( 'runs.launch .wizard.docker_image' ) }
145+ description = { t ( 'runs.launch .wizard.docker_image_description' ) }
146+ constraintText = { t ( 'runs.launch .wizard.docker_image_constraint' ) }
147+ placeholder = { t ( 'runs.launch .wizard.docker_image_placeholder' ) }
148148 control = { control }
149149 name = { FORM_FIELD_NAMES . image }
150150 disabled = { loading }
@@ -164,10 +164,10 @@ export const ParamsWizardStep: React.FC<ParamsWizardStepProps> = ({ formMethods,
164164
165165 return (
166166 < FormInput
167- label = { t ( 'runs.dev_env .wizard.working_dir' ) }
168- description = { t ( 'runs.dev_env .wizard.working_dir_description' ) }
169- constraintText = { t ( 'runs.dev_env .wizard.working_dir_constraint' ) }
170- placeholder = { t ( 'runs.dev_env .wizard.working_dir_placeholder' ) }
167+ label = { t ( 'runs.launch .wizard.working_dir' ) }
168+ description = { t ( 'runs.launch .wizard.working_dir_description' ) }
169+ constraintText = { t ( 'runs.launch .wizard.working_dir_constraint' ) }
170+ placeholder = { t ( 'runs.launch .wizard.working_dir_placeholder' ) }
171171 control = { control }
172172 name = "working_dir"
173173 disabled = { loading }
@@ -185,7 +185,7 @@ export const ParamsWizardStep: React.FC<ParamsWizardStepProps> = ({ formMethods,
185185 < FormToggle
186186 control = { control }
187187 defaultValue = { false }
188- label = { t ( 'runs.dev_env .wizard.repo' ) }
188+ label = { t ( 'runs.launch .wizard.repo' ) }
189189 name = { FORM_FIELD_NAMES . repo_enabled }
190190 disabled = { loading }
191191 onChange = { toggleRepo }
@@ -194,20 +194,20 @@ export const ParamsWizardStep: React.FC<ParamsWizardStepProps> = ({ formMethods,
194194 { isEnabledRepo && (
195195 < SpaceBetween direction = "vertical" size = "l" >
196196 < FormInput
197- label = { t ( 'runs.dev_env .wizard.repo_url' ) }
198- description = { t ( 'runs.dev_env .wizard.repo_url_description' ) }
199- constraintText = { t ( 'runs.dev_env .wizard.repo_url_constraint' ) }
200- placeholder = { t ( 'runs.dev_env .wizard.repo_url_placeholder' ) }
197+ label = { t ( 'runs.launch .wizard.repo_url' ) }
198+ description = { t ( 'runs.launch .wizard.repo_url_description' ) }
199+ constraintText = { t ( 'runs.launch .wizard.repo_url_constraint' ) }
200+ placeholder = { t ( 'runs.launch .wizard.repo_url_placeholder' ) }
201201 control = { control }
202202 name = "repo_url"
203203 disabled = { loading }
204204 />
205205
206206 < FormInput
207- label = { t ( 'runs.dev_env .wizard.repo_path' ) }
208- description = { t ( 'runs.dev_env .wizard.repo_path_description' ) }
209- constraintText = { t ( 'runs.dev_env .wizard.repo_path_constraint' ) }
210- placeholder = { t ( 'runs.dev_env .wizard.repo_path_placeholder' ) }
207+ label = { t ( 'runs.launch .wizard.repo_path' ) }
208+ description = { t ( 'runs.launch .wizard.repo_path_description' ) }
209+ constraintText = { t ( 'runs.launch .wizard.repo_path_constraint' ) }
210+ placeholder = { t ( 'runs.launch .wizard.repo_path_placeholder' ) }
211211 control = { control }
212212 name = "repo_path"
213213 disabled = { loading }
0 commit comments