Skip to content

Commit

Permalink
WIP: texts
Browse files Browse the repository at this point in the history
  • Loading branch information
joseivanlopez committed Sep 26, 2023
1 parent 5ace28b commit 1e235da
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions web/src/components/storage/ProposalSettingsSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,7 @@ const InstallationDeviceField = ({
return <Skeleton width="25%" />;
}

const description = _("Select the device for installing the system. All the \
file systems will be created on the selected device.");
const description = _("Select the device for installing the system.");

return (
<>
Expand Down Expand Up @@ -238,13 +237,13 @@ const LVMSettingsForm = ({
<span>{_("Devices for creating the volume group")}</span>
<ToggleGroup aria-label="Volume group devices" isCompact>
<ToggleGroupItem
text="Boot device"
text={_("Installation device")}
buttonId="bootDevice"
isSelected={isBootDeviceSelected}
onClick={selectBootDevice}
/>
<ToggleGroupItem
text="Custom devices"
text={_("Custom devices")}
buttonId="customDevices"
isSelected={!isBootDeviceSelected}
onClick={selectCustomDevices}
Expand Down Expand Up @@ -308,9 +307,8 @@ const LVMField = ({
onChangeProp({ vgDevices });
};

const description = _("Configuration of the system volume group. All the file system will be \
created in a logical volume of the system volume group unless a different location is \
assigned to the file system.");
const description = _("Configuration of the system volume group. All the file systems will be \
created in a logical volume of the system volume group.");

const LVMSettingsButton = () => {
return (
Expand Down

0 comments on commit 1e235da

Please sign in to comment.