diff --git a/src/Footer.tsx b/src/Footer.tsx
index c7440592b..e01f7b617 100644
--- a/src/Footer.tsx
+++ b/src/Footer.tsx
@@ -332,6 +332,7 @@ export const Footer = memo(
)}
target="_blank"
href={`https://${domain}`}
+ title={`${domain} - ${t("open new window")}`}
>
{domain}
@@ -502,12 +503,17 @@ const { useTranslation, addFooterTranslations } = createComponentI18nApi({
"license mention": (p: { licenseUrl: string }) => (
<>
Sauf mention contraire, tous les contenus de ce site sont sous{" "}
-
+
licence etalab-2.0
>
),
- "our partners": "Nos partenaires"
+ "our partners": "Nos partenaires",
+ "open new window": "ouvre une nouvelle fenĂȘtre"
/* spell-checker: enable */
}
});
@@ -524,11 +530,16 @@ addFooterTranslations({
"license mention": p => (
<>
Unless stated otherwise, all content of this website is under the{" "}
-
+
etalab-2.0 license
>
- )
+ ),
+ "open new window": "open new window"
}
});