Skip to content

Commit

Permalink
Fix shared list creation message (#145701)
Browse files Browse the repository at this point in the history
Fix: #145542
<img width="342" alt="Screenshot 2022-11-18 at 10 49 10"
src="https://user-images.githubusercontent.com/7609147/202672812-5693a050-8f08-4ac8-b52b-059dd1bc58f8.png">

Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
nkhristinin and kibanamachine authored Nov 21, 2022
1 parent f96d81c commit 4b0d93d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -337,14 +337,14 @@ export const CREATE_BUTTON = i18n.translate(

export const getSuccessText = (listName: string) =>
i18n.translate('xpack.securitySolution.exceptions.createSharedExceptionListSuccessDescription', {
defaultMessage: 'list with name ${listName} was created!',
defaultMessage: 'List with name {listName} was created!',
values: { listName },
});

export const SUCCESS_TITLE = i18n.translate(
'xpack.securitySolution.exceptions.createSharedExceptionListSuccessTitle',
{
defaultMessage: 'created list',
defaultMessage: 'Created list',
}
);

Expand Down

0 comments on commit 4b0d93d

Please sign in to comment.