Skip to content

Commit

Permalink
convert processor labels to sentence case (#75278) (#75392)
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens authored Aug 19, 2020
1 parent 4d3095f commit a9918ef
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: DateIndexName,
docLinkPath: '/date-index-name-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.dateIndexName', {
defaultMessage: 'Date Index Name',
defaultMessage: 'Date index name',
}),
},
dissect: {
Expand All @@ -95,7 +95,7 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: DotExpander,
docLinkPath: '/dot-expand-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.dotExpander', {
defaultMessage: 'Dot Expander',
defaultMessage: 'Dot expander',
}),
},
drop: {
Expand Down Expand Up @@ -144,7 +144,7 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: undefined, // TODO: Implement
docLinkPath: '/htmlstrip-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.htmlStrip', {
defaultMessage: 'HTML Strip',
defaultMessage: 'HTML strip',
}),
},
inference: {
Expand Down Expand Up @@ -214,7 +214,7 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: undefined, // TODO: Implement
docLinkPath: '/ingest-node-set-security-user-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.setSecurityUser', {
defaultMessage: 'Set Security User',
defaultMessage: 'Set security user',
}),
},
split: {
Expand Down Expand Up @@ -249,14 +249,14 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: undefined, // TODO: Implement
docLinkPath: '/urldecode-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.urldecode', {
defaultMessage: 'URL Decode',
defaultMessage: 'URL decode',
}),
},
user_agent: {
FieldsComponent: undefined, // TODO: Implement
docLinkPath: '/user-agent-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.userAgent', {
defaultMessage: 'User Agent',
defaultMessage: 'User agent',
}),
},

Expand Down

0 comments on commit a9918ef

Please sign in to comment.