mirror of
https://github.com/ansible/awx.git
synced 2026-01-28 23:04:41 -03:30
Fix non-translatable template string
This commit is contained in:
parent
cb32f5b096
commit
b75d0c1dad
@ -25,13 +25,15 @@ function About({ version, isOpen, onClose, i18n }) {
|
||||
};
|
||||
|
||||
const speechBubble = createSpeechBubble();
|
||||
const copyright = i18n._(t`Copyright`);
|
||||
const redHatInc = i18n._(t`Red Hat, Inc.`);
|
||||
|
||||
return (
|
||||
<AboutModal
|
||||
isOpen={isOpen}
|
||||
onClose={onClose}
|
||||
productName={`Ansible ${BrandName}`}
|
||||
trademark={i18n._(t`Copyright ${new Date().getFullYear()} Red Hat, Inc.`)}
|
||||
trademark={`${copyright} ${new Date().getFullYear()} ${redHatInc}`}
|
||||
brandImageSrc="/static/media/logo-header.svg"
|
||||
brandImageAlt={i18n._(t`Brand Image`)}
|
||||
>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user