mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[App Search, Crawler] Use consistent casing for validation step titles (#120064)
This commit is contained in:
parent
90439793c2
commit
70a1b3892a
3 changed files with 10 additions and 10 deletions
|
@ -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.',
|
||||
},
|
||||
});
|
||||
});
|
||||
|
|
|
@ -86,7 +86,7 @@ export const AddDomainValidation: React.FC = () => {
|
|||
label={i18n.translate(
|
||||
'xpack.enterpriseSearch.appSearch.crawler.addDomainForm.contentVerificationLabel',
|
||||
{
|
||||
defaultMessage: 'Content Verification',
|
||||
defaultMessage: 'Content verification',
|
||||
}
|
||||
)}
|
||||
/>
|
||||
|
|
|
@ -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.',
|
||||
}
|
||||
),
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue