-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4922 from KKoukiou/webui-redesign
webui: new design for the storage entry page
- Loading branch information
Showing
16 changed files
with
517 additions
and
1,089 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,9 @@ | ||
import React from "react"; | ||
import cockpit from "cockpit"; | ||
|
||
import { | ||
Text, | ||
TextContent, | ||
TextVariants, | ||
} from "@patternfly/react-core"; | ||
|
||
const _ = cockpit.gettext; | ||
|
||
export const helpEraseAll = ( | ||
<TextContent> | ||
<Text component={TextVariants.p}> | ||
{_("Removes all partitions on the selected devices, " + | ||
"which includes partitions created by other operating systems.")} | ||
</Text> | ||
|
||
<Text component={TextVariants.p}> | ||
{_("This option removes data from the selected devices, " + | ||
"so make sure you have backed up your data.")} | ||
</Text> | ||
</TextContent> | ||
); | ||
export const helpEraseAll = _("Remove all partitions on the selected devices, including existing operating systems. Make sure you have backed up your data."); | ||
|
||
export const helpUseFreeSpace = ( | ||
<TextContent> | ||
<Text component={TextVariants.p}> | ||
{_("Retains your current data and partitions and uses " + | ||
"only the unpartitioned space on the selected devices, " + | ||
"assuming you have enough free space available.")} | ||
</Text> | ||
</TextContent> | ||
); | ||
export const helpUseFreeSpace = _("Keeps current disk layout and uses only available space."); | ||
|
||
export const helpCustomMountPoint = ( | ||
<TextContent> | ||
<Text component={TextVariants.p}> | ||
{_("This option requires that the selected device has formated partitions.")} | ||
</Text> | ||
</TextContent> | ||
); | ||
export const helpCustomMountPoint = _("This option requires that the selected device has formated partitions."); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.