Skip to content

Commit

Permalink
Fixes #38194 - Update UI wording for MultiCV (#11303)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylenz authored Feb 6, 2025
1 parent 155aa5b commit 3103f50
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const ErrataOverviewCard = ({ hostDetails }) => {
<ErrataToggleGroupItem
text={__('Installable')}
aria-label="Show installable errata chart"
tooltipText={__('Installable errata are applicable errata that are available in the host\'s content view and lifecycle environment.')}
tooltipText={__('Installable errata are applicable errata that are available in the host\'s assigned content view environments.')}
isSelected={errataCategory === 'installable'}
onChange={selected => selected && setErrataCategory('installable')}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const DebInstallModal = ({
isOpen, closeModal, hostId, hostName, triggerPackageInstall,
}) => {
const emptyContentTitle = __('No packages available to install');
const emptyContentBody = __('No packages available to install on this host. Please check the host\'s content view and lifecycle environment.');
const emptyContentBody = __('No packages available to install on this host. Please check the host\'s assigned content view environments.');
const emptySearchTitle = __('No matching packages found');
const emptySearchBody = __('Try changing your search settings.');
const columnHeaders = ['', __('Package'), __('Version')];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ export const ErrataTab = () => {
/>
<ErrataToggleGroupItem
text={__('Installable')}
tooltipText={__('Installable errata are applicable errata that are available in the host\'s content view and lifecycle environment.')}
tooltipText={__('Installable errata are applicable errata that are available in the host\'s assigned content view environments.')}
buttonId="installableToggle"
aria-label="Show installable errata"
isSelected={toggleGroupState === INSTALLABLE}
Expand Down Expand Up @@ -557,7 +557,7 @@ export const ErrataTab = () => {
<span>
<Tooltip
content={
__("This erratum is not installable because it is not in this host's content view and lifecycle environment.")
__("This erratum is not installable because it is not in this host's assigned content view environments.")
}
>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const PackageInstallModal = ({
isOpen, closeModal, hostId, hostName, triggerPackageInstall,
}) => {
const emptyContentTitle = __('No packages available to install');
const emptyContentBody = __('No packages available to install on this host. Please check the host\'s content view and lifecycle environment.');
const emptyContentBody = __('No packages available to install on this host. Please check the host\'s assigned content view environments.');
const emptySearchTitle = __('No matching packages found');
const emptySearchBody = __('Try changing your search settings.');
const columnHeaders = ['', __('Package'), __('Version')];
Expand Down

0 comments on commit 3103f50

Please sign in to comment.