[App Search, Crawler] Use consistent casing for validation step titles (#120064)

This commit is contained in:
Orhan Toy 2021-12-02 15:52:41 +01:00 committed by GitHub
parent 90439793c2
commit 70a1b3892a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View file

@ -507,16 +507,16 @@ describe('AddDomainLogic', () => {
networkConnectivity: {
state: 'invalid',
message:
'Unable to establish a network connection because the "Initial Validation" check failed.',
'Unable to establish a network connection because the "Initial validation" check failed.',
},
indexingRestrictions: {
state: 'invalid',
message:
'Unable to determine indexing restrictions because the "Network Connectivity" check failed.',
'Unable to determine indexing restrictions because the "Network connectivity" check failed.',
},
contentVerification: {
state: 'invalid',
message: 'Unable to verify content because the "Indexing Restrictions" check failed.',
message: 'Unable to verify content because the "Indexing restrictions" check failed.',
},
});
});
@ -602,16 +602,16 @@ describe('AddDomainLogic', () => {
networkConnectivity: {
state: 'invalid',
message:
'Unable to establish a network connection because the "Initial Validation" check failed.',
'Unable to establish a network connection because the "Initial validation" check failed.',
},
indexingRestrictions: {
state: 'invalid',
message:
'Unable to determine indexing restrictions because the "Network Connectivity" check failed.',
'Unable to determine indexing restrictions because the "Network connectivity" check failed.',
},
contentVerification: {
state: 'invalid',
message: 'Unable to verify content because the "Indexing Restrictions" check failed.',
message: 'Unable to verify content because the "Indexing restrictions" check failed.',
},
});
});

View file

@ -86,7 +86,7 @@ export const AddDomainValidation: React.FC = () => {
label={i18n.translate(
'xpack.enterpriseSearch.appSearch.crawler.addDomainForm.contentVerificationLabel',
{
defaultMessage: 'Content Verification',
defaultMessage: 'Content verification',
}
)}
/>

View file

@ -82,7 +82,7 @@ const allFailureResultChanges: CrawlerDomainValidationResultChange = {
'xpack.enterpriseSearch.appSearch.crawler.addDomainForm.networkConnectivityFailureMessage',
{
defaultMessage:
'Unable to establish a network connection because the "Initial Validation" check failed.',
'Unable to establish a network connection because the "Initial validation" check failed.',
}
),
},
@ -92,7 +92,7 @@ const allFailureResultChanges: CrawlerDomainValidationResultChange = {
'xpack.enterpriseSearch.appSearch.crawler.addDomainForm.indexingRestrictionsFailureMessage',
{
defaultMessage:
'Unable to determine indexing restrictions because the "Network Connectivity" check failed.',
'Unable to determine indexing restrictions because the "Network connectivity" check failed.',
}
),
},
@ -102,7 +102,7 @@ const allFailureResultChanges: CrawlerDomainValidationResultChange = {
'xpack.enterpriseSearch.appSearch.crawler.addDomainForm.contentVerificationFailureMessage',
{
defaultMessage:
'Unable to verify content because the "Indexing Restrictions" check failed.',
'Unable to verify content because the "Indexing restrictions" check failed.',
}
),
},