Skip to content

Commit d28c22c

Browse files
authored
Merge pull request #3704 from IntersectMBO/3702-update-red-banner-copy-on-govtool
fix: update the content of the red banner displayed on GovTool
2 parents 5c8105b + db7602c commit d28c22c

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

govtool/frontend/src/components/organisms/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 { useState } from "react";
33
import KeyboardArrowDownIcon from "@mui/icons-material/KeyboardArrowDown";
44
import KeyboardArrowUpIcon from "@mui/icons-material/KeyboardArrowUp";
@@ -97,7 +97,18 @@ export const MaintenanceEndingBanner = () => {
9797
/>
9898
</Typography>
9999
<Typography variant="caption" color="common.white">
100-
{t("system.maintenanceEnding.description3")}
100+
{t("system.maintenanceEnding.description3")}{" "}
101+
<Link
102+
variant="caption"
103+
fontWeight={600}
104+
color="common.white"
105+
href="https://docs.gov.tools/overview/important-updates/the-future-of-govtool-why-it-matters-and-what-comes-next"
106+
target="_blank"
107+
rel="noopener noreferrer"
108+
data-testid="govtool-future-link"
109+
>
110+
{t("system.maintenanceEnding.linkText")}
111+
</Link>
101112
</Typography>
102113
</Box>
103114
</Box>

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

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

0 commit comments

Comments
 (0)