Skip to content

Commit

Permalink
[Fleet] Replaced the term "upgraded" with "upgrading" in upgrade noti…
Browse files Browse the repository at this point in the history
…fications (#133138) (#133194)

(cherry picked from commit 2d170f8)

Co-authored-by: Najmieh Sadat <98463228+najmiehsa@users.noreply.github.com>
  • Loading branch information
kibanamachine and Najmieh Sadat committed May 31, 2022
1 parent b8ce015 commit be3c8db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ export const AgentUpgradeAgentModal: React.FunctionComponent<Props> = ({
setIsSubmitting(false);
const successMessage = isSingleAgent
? i18n.translate('xpack.fleet.upgradeAgents.successSingleNotificationTitle', {
defaultMessage: 'Upgraded {count} agent',
defaultMessage: 'Upgrading {count} agent',
values: { count: 1 },
})
: i18n.translate('xpack.fleet.upgradeAgents.successMultiNotificationTitle', {
defaultMessage:
'Upgraded {isMixed, select, true {{success} of {total}} other {{isAllAgents, select, true {all selected} other {{success}} }}} agents',
'Upgrading {isMixed, select, true {{success} of {total}} other {{isAllAgents, select, true {all selected} other {{success}} }}} agents',
values: {
isMixed: counts.success !== counts.total,
success: counts.success,
Expand Down

0 comments on commit be3c8db

Please sign in to comment.