Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions src/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ export const Footer = memo(
)}
target="_blank"
href={`https://${domain}`}
title={`${domain} - ${t("open new window")}`}
>
{domain}
</a>
Expand Down Expand Up @@ -502,12 +503,17 @@ const { useTranslation, addFooterTranslations } = createComponentI18nApi({
"license mention": (p: { licenseUrl: string }) => (
<>
Sauf mention contraire, tous les contenus de ce site sont sous{" "}
<a href={p.licenseUrl} target="_blank">
<a
href={p.licenseUrl}
target="_blank"
title="licence etalab-2.0 - ouvre une nouvelle fenêtre"
>
licence etalab-2.0
</a>
</>
),
"our partners": "Nos partenaires"
"our partners": "Nos partenaires",
"open new window": "ouvre une nouvelle fenêtre"
/* spell-checker: enable */
}
});
Expand All @@ -524,11 +530,16 @@ addFooterTranslations({
"license mention": p => (
<>
Unless stated otherwise, all content of this website is under the{" "}
<a href={p.licenseUrl} target="_blank">
<a
href={p.licenseUrl}
target="_blank"
title="etalab-2.0 license - open a new window"
>
etalab-2.0 license
</a>
</>
)
),
"open new window": "open new window"
}
});

Expand Down