Skip to content

Commit f5a5252

Browse files
authored
Merge pull request #3706 from IntersectMBO/3702-update-red-banner-copy-on-govtool-cherry-pick-to-develop
fix: update the content of the red banner displayed on GovTool
2 parents 79f9269 + 1fa8aba commit f5a5252

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

govtool/frontend/src/components/organisms/MaintenanceEndingBanner/MaintenanceEndingBanner.tsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Box, Typography, IconButton } from "@mui/material";
1+
import { Box, Typography, IconButton, Link } from "@mui/material";
22
import KeyboardArrowDownIcon from "@mui/icons-material/KeyboardArrowDown";
33
import KeyboardArrowUpIcon from "@mui/icons-material/KeyboardArrowUp";
44
import { Trans, useTranslation } from "react-i18next";
@@ -101,7 +101,18 @@ export const MaintenanceEndingBanner = () => {
101101
/>
102102
</Typography>
103103
<Typography variant="caption" color="common.white">
104-
{t("system.maintenanceEnding.description3")}
104+
{t("system.maintenanceEnding.description3")}{" "}
105+
<Link
106+
variant="caption"
107+
fontWeight={600}
108+
color="common.white"
109+
href="https://docs.gov.tools/overview/important-updates/the-future-of-govtool-why-it-matters-and-what-comes-next"
110+
target="_blank"
111+
rel="noopener noreferrer"
112+
data-testid="govtool-future-link"
113+
>
114+
{t("system.maintenanceEnding.linkText")}
115+
</Link>
105116
</Typography>
106117
</Box>
107118
</Box>

govtool/frontend/src/i18n/locales/en.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -755,10 +755,11 @@
755755
"title": "This tool is connected to {{networkName}}",
756756
"bootstrappingWarning": "Govtool is in the Bootstrapping phase. Some features are not available. <docs>Learn more</docs>",
757757
"maintenanceEnding": {
758-
"title": "⚠️ GovTool Maintenance Ending Soon",
759-
"description1": "GovTool has not been included in the 2025 Cardano budget.",
760-
"description2": "Unless alternative support is secured, <0>maintenance will end in June 2025.</0>",
761-
"description3": "We remain committed to transparency and will keep you updated."
758+
"title": "⚠️ Funding for GovTool is at risk",
759+
"description1": "GovTool was not included in the current Cardano budget.",
760+
"description2": "Without new support, active development and <0>maintenance will end in June 2025.</0>",
761+
"description3": "Learn what this means and what’s next:",
762+
"linkText": "The future of GovTool"
762763
}
763764
},
764765
"tooltips": {

0 commit comments

Comments
 (0)