File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ export const NotificationsSettingsDetails: React.FC<
42
42
{ trans . __ ( 'Notifications Settings' ) }
43
43
</ FormLabel >
44
44
< Stack spacing = { 2 } >
45
- < FormLabel component = "legend" > { trans . __ ( 'Send To ' ) } </ FormLabel >
45
+ < FormLabel component = "legend" > { trans . __ ( 'Send to ' ) } </ FormLabel >
46
46
{ notificationsSettings . send_to . map ( ( email , idx ) => (
47
47
< NotificationsSettingsItem
48
48
key = { idx }
49
- label = { trans . __ ( `Send To ${ idx + 1 } ` ) }
49
+ label = { trans . __ ( `Send to ${ idx + 1 } ` ) }
50
50
value = { email }
51
51
/>
52
52
) ) }
@@ -61,7 +61,7 @@ export const NotificationsSettingsDetails: React.FC<
61
61
/>
62
62
) ) }
63
63
< NotificationsSettingsItem
64
- label = { trans . __ ( 'Include Output ' ) }
64
+ label = { trans . __ ( 'Include output ' ) }
65
65
value = { notificationsSettings . include_output }
66
66
/>
67
67
</ Stack >
Original file line number Diff line number Diff line change @@ -142,10 +142,10 @@ export function NotificationsSettings({
142
142
onChange = { enableNotificationChange }
143
143
/>
144
144
}
145
- label = { trans . __ ( 'Enable Notifications ' ) }
145
+ label = { trans . __ ( 'Enable notifications ' ) }
146
146
/>
147
147
< TextField
148
- label = { trans . __ ( 'Send To ' ) }
148
+ label = { trans . __ ( 'Send to ' ) }
149
149
value = { sendToInput }
150
150
name = "sendTo"
151
151
variant = "outlined"
@@ -175,7 +175,7 @@ export function NotificationsSettings({
175
175
disabled = { ! enableNotification }
176
176
/>
177
177
}
178
- label = { trans . __ ( 'Include Output ' ) }
178
+ label = { trans . __ ( 'Include output ' ) }
179
179
/>
180
180
</ Stack >
181
181
) ;
You can’t perform that action at this time.
0 commit comments