Skip to content

Commit

Permalink
[index pattern field editor] index patterns => data views for user fa…
Browse files Browse the repository at this point in the history
…cing content (#109704)

* [index pattern field editor] index patterns => data views for user facing content
  • Loading branch information
mattkime authored Aug 24, 2021
1 parent d5faaf7 commit 1601ba8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ const FieldEditorFlyoutContentComponent = ({
<p>
<FormattedMessage
id="indexPatternFieldEditor.editor.flyoutEditFieldSubtitle"
defaultMessage="Index pattern: {patternName}"
defaultMessage="Data view: {patternName}"
values={{
patternName: <i>{indexPattern.title}</i>,
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export const PreviewFieldList: React.FC<Props> = ({ height, clearSearch, searchV
{i18n.translate(
'indexPatternFieldEditor.fieldPreview.searchResult.emptyPromptTitle',
{
defaultMessage: 'No matching fields in this index pattern',
defaultMessage: 'No matching fields in this data view',
}
)}
</h3>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const getFieldEditorOpener = ({

if (fieldName && !field) {
const err = i18n.translate('indexPatternFieldEditor.noSuchFieldName', {
defaultMessage: "Field named '{fieldName}' not found on index pattern",
defaultMessage: "Field named '{fieldName}' not found in this data view",
values: { fieldName },
});
notifications.toasts.addDanger(err);
Expand Down

0 comments on commit 1601ba8

Please sign in to comment.