diff --git a/web/package/agama-web-ui.changes b/web/package/agama-web-ui.changes index 36fbf9539..65f79273e 100644 --- a/web/package/agama-web-ui.changes +++ b/web/package/agama-web-ui.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Sep 27 14:54:46 UTC 2024 - Imobach Gonzalez Sosa + +- Translate overview page headers and a missing text in the + networking page (gh#agama-project/agama#1629). + ------------------------------------------------------------------- Fri Sep 27 13:00:05 UTC 2024 - Imobach Gonzalez Sosa diff --git a/web/src/components/network/WifiNetworksListPage.tsx b/web/src/components/network/WifiNetworksListPage.tsx index ce0dec8c4..68b4d30f5 100644 --- a/web/src/components/network/WifiNetworksListPage.tsx +++ b/web/src/components/network/WifiNetworksListPage.tsx @@ -264,7 +264,7 @@ function WifiNetworksListPage() { {networks.length === 0 ? ( - + ) : ( // @ts-expect-error: related to https://github.com/patternfly/patternfly-react/issues/9823 (
@@ -59,6 +53,12 @@ const ReadyForInstallation = () => ( ); const IssuesList = ({ issues }: { issues: IssuesListType }) => { + const scopeHeaders = { + users: _("Users"), + storage: _("Storage"), + software: _("Software"), + }; + const { issues: issuesByScope } = issues; const list = []; Object.entries(issuesByScope).forEach(([scope, issues], idx) => { @@ -68,7 +68,7 @@ const IssuesList = ({ issues }: { issues: IssuesListType }) => { const link = ( @@ -109,7 +109,7 @@ const ResultSection = () => { const OverviewSection = () => (