Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -385,10 +385,10 @@
"Incompatible": "Incompatible",
"No data available": "No data available",
"This might not reflect your actual SKU. Check your account subscription details or contact your administrator for extended support options.": "This might not reflect your actual SKU. Check your account subscription details or contact your administrator for extended support options.",
"OpenShift Operator lifecycle": "OpenShift Operator lifecycle",
"OpenShift lifecycle ({{version}})": "OpenShift lifecycle ({{version}})",
"Red Hat product lifecycles": "Red Hat product lifecycles",
"Lifecycle dates": "Lifecycle dates",
"OpenShift Operator life cycle": "OpenShift Operator life cycle",
"OpenShift life cycle ({{version}})": "OpenShift life cycle ({{version}})",
"Red Hat product life cycles": "Red Hat product life cycles",
"Life cycle dates": "Life cycle dates",
"Self-support": "Self-support",
"No PackageManifests Found": "No PackageManifests Found",
"The CatalogSource author has not added any packages.": "The CatalogSource author has not added any packages.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const LifecycleDatesFooter: FC = () => {
</span>
<div className="pf-v6-u-mt-sm">
<ExternalLink href="https://access.redhat.com/support/policy/updates/openshift_operators/lifecycle">
{t('OpenShift Operator lifecycle')}
{t('OpenShift Operator life cycle')}
</ExternalLink>
</div>
{clusterMinor && (
Expand All @@ -200,13 +200,13 @@ const LifecycleDatesFooter: FC = () => {
'',
)}`}
>
{t('OpenShift lifecycle ({{version}})', { version: clusterMinor })}
{t('OpenShift life cycle ({{version}})', { version: clusterMinor })}
</ExternalLink>
</div>
)}
<div>
<ExternalLink href="https://access.redhat.com/product-life-cycles">
{t('Red Hat product lifecycles')}
{t('Red Hat product life cycles')}
</ExternalLink>
</div>
</>
Expand All @@ -224,7 +224,7 @@ const LifecycleDatesPopover: FC<{

return (
<Popover
headerContent={t('Lifecycle dates')}
headerContent={t('Life cycle dates')}
appendTo="inline"
position="left"
onHide={() => (document.activeElement as HTMLElement)?.blur()}
Expand Down