File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
static/app/views/detectors/components/forms Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ function DetectSection() {
164
164
</ DetectColumn >
165
165
</ FirstRow >
166
166
< MonitorKindField
167
- label = " ...and monitor for changes in the following way:"
167
+ label = { t ( ' ...and monitor for changes in the following way:' ) }
168
168
flexibleControlStateSize
169
169
inline = { false }
170
170
name = "kind"
@@ -186,7 +186,9 @@ function DetectSection() {
186
186
< Flex column >
187
187
{ ( ! kind || kind === 'threshold' ) && (
188
188
< Flex column >
189
- < MutedText > An issue will be created when query value exceeds:</ MutedText >
189
+ < MutedText >
190
+ { t ( 'An issue will be created when query value exceeds:' ) }
191
+ </ MutedText >
190
192
< ThresholdField
191
193
flexibleControlStateSize
192
194
inline = { false }
@@ -199,15 +201,15 @@ function DetectSection() {
199
201
) }
200
202
{ kind === 'change' && (
201
203
< Flex column >
202
- < MutedText > An issue will be created when query value is:</ MutedText >
204
+ < MutedText > { t ( ' An issue will be created when query value is:' ) } </ MutedText >
203
205
< Flex align = "center" gap = { space ( 1 ) } >
204
206
< ChangePercentField
205
207
name = "config.low_threshold.change"
206
208
placeholder = "0"
207
209
hideLabel
208
210
inline
209
211
/>
210
- < span > percent</ span >
212
+ < span > { t ( ' percent' ) } </ span >
211
213
< DirectionField
212
214
name = "config.low_threshold.direction"
213
215
hideLabel
@@ -219,7 +221,7 @@ function DetectSection() {
219
221
[ 'lower' , t ( 'lower' ) ] ,
220
222
] }
221
223
/>
222
- < span > than the previous</ span >
224
+ < span > { t ( ' than the previous' ) } </ span >
223
225
< StyledSelectField
224
226
name = "config.low_threshold.unit"
225
227
hideLabel
You can’t perform that action at this time.
0 commit comments