diff --git a/awx/ui_next/src/components/Chip/CredentialChip.jsx b/awx/ui_next/src/components/Chip/CredentialChip.jsx index 1e806a0c01..4919f7b9da 100644 --- a/awx/ui_next/src/components/Chip/CredentialChip.jsx +++ b/awx/ui_next/src/components/Chip/CredentialChip.jsx @@ -13,7 +13,7 @@ function CredentialChip({ credential, i18n, ...props }) { } else if (credential.kind === 'aws' || credential.kind === 'ssh') { type = credential.kind.toUpperCase(); } else { - type = toTitleCase(credential.kind); + type = i18n._(toTitleCase(credential.kind)); } return (