Skip to content

Commit cec66be

Browse files
author
mehara-rothila
committed
Fix sentence casing in dialog messages
1 parent 7c7735b commit cec66be

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

portals/devportal/src/main/webapp/source/src/app/components/Shared/ApiTryOut/TryOutController.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ function TryOutController(props) {
805805
<DialogTitle>
806806
<FormattedMessage
807807
id='Apis.Details.ApiConsole.generate.test.key.dialog.title'
808-
defaultMessage='Generate Test Key'
808+
defaultMessage='Generate test key'
809809
/>
810810
</DialogTitle>
811811
<DialogContent>
@@ -817,7 +817,7 @@ function TryOutController(props) {
817817
label={(
818818
<FormattedMessage
819819
id='Apis.Details.ApiConsole.consumer.secret.text.field'
820-
defaultMessage='Consumer Secret'
820+
defaultMessage='Consumer secret'
821821
/>
822822
)}
823823
name='consumerSecret'
@@ -828,7 +828,7 @@ function TryOutController(props) {
828828
helperText={(
829829
<FormattedMessage
830830
id='Apis.Details.TryOutConsole.consumerSecret.required.helper'
831-
defaultMessage='Enter the Consumer Secret for the selected application to generate a test key.'
831+
defaultMessage='Enter the consumer secret for the selected application to generate a test key.'
832832
/>
833833
)}
834834
InputProps={{
@@ -1014,13 +1014,13 @@ function TryOutController(props) {
10141014
<>
10151015
<FormattedMessage
10161016
id='Apis.Details.TryOutConsole.access.token.tooltip'
1017-
defaultMessage='You can use your existing Access Token or generate a new Test Key.'
1017+
defaultMessage='You can use your existing access token or generate a new test key.'
10181018
/>
10191019
{isConsumerSecretRequired && (
10201020
<div style={{ marginTop: 4, fontWeight: 500 }}>
10211021
<FormattedMessage
10221022
id='Apis.Details.TryOutConsole.consumer.secret.dialog.hint'
1023-
defaultMessage='You will be prompted for the Consumer Secret.'
1023+
defaultMessage='You will be prompted for the consumer secret.'
10241024
/>
10251025
</div>
10261026
)}
@@ -1029,7 +1029,7 @@ function TryOutController(props) {
10291029
>
10301030
<Box m={1} mt={2}>
10311031
<IconButton
1032-
aria-label='Use existing Access Token or generate a new Test Key'
1032+
aria-label='Use existing access token or generate a new test key'
10331033
size='large'
10341034
>
10351035
<HelpOutline />

0 commit comments

Comments
 (0)