Skip to content

Commit

Permalink
update translations
Browse files Browse the repository at this point in the history
  • Loading branch information
ashokaditya committed Apr 4, 2023
1 parent e331813 commit 79430d6
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,19 @@ const ACCORDION_BUTTON_TEXT = Object.freeze({

const SHELL_INFO = Object.freeze({
shell: i18n.translate('xpack.securitySolution.responseActionExecuteAccordion.shellInformation', {
defaultMessage: 'Shell: ',
defaultMessage: 'Shell',
}),

returnCode: i18n.translate(
'xpack.securitySolution.responseActionExecuteAccordion.shellReturnCode',
{
defaultMessage: 'Return code: ',
defaultMessage: 'Return code',
}
),
currentDir: i18n.translate(
'xpack.securitySolution.responseActionExecuteAccordion.currentWorkingDirectory',
{
defaultMessage: 'Current working directory: ',
defaultMessage: 'Current working directory',
}
),
});
Expand All @@ -84,7 +84,10 @@ interface ShellInfoContentProps {
}
const ShellInfoContent = memo<ShellInfoContentProps>(({ content, textSize, title }) => (
<StyledEuiText size={textSize}>
<strong>{title}</strong>
<strong>
{title}
{': '}
</strong>
{content}
</StyledEuiText>
));
Expand Down

0 comments on commit 79430d6

Please sign in to comment.