Skip to content

Commit

Permalink
Replace "Satellite" with "Foreman" in user-facing strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorben-D authored and chris1984 committed Oct 15, 2024
1 parent e2ea864 commit f8f2f49
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ export const PageDescription = () => (
<div id="inventory_page_description">
<Text>
{__(
'The Red Hat Hybrid Cloud Console provides a set of cloud services, including Red Hat Insights and Subscriptions, that provide predictive analysis, remediation of issues, and unified subscription reporting for this Satellite instance.'
'The Red Hat Hybrid Cloud Console provides a set of cloud services, including Red Hat Insights and Subscriptions, that provide predictive analysis, remediation of issues, and unified subscription reporting for this Foreman instance.'
)}
</Text>
<Text>
{__(
'The Satellite inventory upload plugin automatically uploads Satellite host inventory data to the Inventory service of Insights, where it can also be used by the Subscriptions service for subscription reporting. If you use the Subscriptions service, enabling inventory uploads is required.'
'The Foreman inventory upload plugin automatically uploads Foreman host inventory data to the Inventory service of Insights, where it can also be used by the Subscriptions service for subscription reporting. If you use the Subscriptions service, enabling inventory uploads is required.'
)}
</Text>
<Text>
<FormattedMessage
id="enable-upload-hint"
defaultMessage={__(
'To enable this reporting for all Satellite organizations, set {uploadButtonName} to on. The data will be reported automatically once per day.'
'To enable this reporting for all Foreman organizations, set {uploadButtonName} to on. The data will be reported automatically once per day.'
)}
values={{
uploadButtonName: <strong>{__('Automatic inventory upload')}</strong>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ exports[`PageDescription rendering render without Props 1`] = `
id="inventory_page_description"
>
<Text>
The Red Hat Hybrid Cloud Console provides a set of cloud services, including Red Hat Insights and Subscriptions, that provide predictive analysis, remediation of issues, and unified subscription reporting for this Satellite instance.
The Red Hat Hybrid Cloud Console provides a set of cloud services, including Red Hat Insights and Subscriptions, that provide predictive analysis, remediation of issues, and unified subscription reporting for this Foreman instance.
</Text>
<Text>
The Satellite inventory upload plugin automatically uploads Satellite host inventory data to the Inventory service of Insights, where it can also be used by the Subscriptions service for subscription reporting. If you use the Subscriptions service, enabling inventory uploads is required.
The Foreman inventory upload plugin automatically uploads Foreman host inventory data to the Inventory service of Insights, where it can also be used by the Subscriptions service for subscription reporting. If you use the Subscriptions service, enabling inventory uploads is required.
</Text>
<Text>
<FormattedMessage
defaultMessage="To enable this reporting for all Satellite organizations, set {uploadButtonName} to on. The data will be reported automatically once per day."
defaultMessage="To enable this reporting for all Foreman organizations, set {uploadButtonName} to on. The data will be reported automatically once per day."
id="enable-upload-hint"
values={
Object {
Expand Down
2 changes: 1 addition & 1 deletion webpack/InsightsHostDetailsTab/NewHostDetailsTab.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const NewHostDetailsTab = ({ hostName, router }) => {

const dropdownItems = [
<DropdownItem key="insights-link" ouiaId="insights-link">
<a onClick={onSatInsightsClick}>{__('Go to Satellite Insights page')}</a>
<a onClick={onSatInsightsClick}>{__('Go to Foreman Insights page')}</a>
</DropdownItem>,
];

Expand Down

0 comments on commit f8f2f49

Please sign in to comment.