-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added i18n and changed hidden to be true so we cannot copy the object…
…s from space to space
- Loading branch information
1 parent
b0ab0e5
commit a877b9d
Showing
2 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
import { i18n } from '@kbn/i18n'; | ||
|
||
export const EXCEPTION_LIST_NAME = i18n.translate('xpack.lists.exceptions.listNameLabel', { | ||
defaultMessage: 'Exception List', | ||
}); | ||
|
||
export const EXCEPTION_LIST_ITEM_NAME = i18n.translate('xpack.lists.exceptions.listItemNameLabel', { | ||
defaultMessage: 'Exception List Item', | ||
}); | ||
|
||
export const AGNOSTIC_EXCEPTION_LIST_NAME = i18n.translate( | ||
'xpack.lists.exceptions.agnosticListNameLabel', | ||
{ | ||
defaultMessage: 'Agnostic Exception List', | ||
} | ||
); | ||
|
||
export const AGNOSTIC_EXCEPTION_LIST_ITEM_NAME = i18n.translate( | ||
'xpack.lists.exceptions.agnosticListItemNameLabel', | ||
{ | ||
defaultMessage: 'Agnostic Exception List Item', | ||
} | ||
); |