️(i18n) fix waffle aria-label spacing for new-window links

Include space and parentheses in translation value for proper aria-label.
This commit is contained in:
Cyril
2026-03-17 10:17:30 +01:00
parent 0e5c9ed834
commit 35fba02085
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -19,6 +19,7 @@ and this project adheres to
- ♿️(frontend) fix Copy link toast accessibility for screen readers #2029
- ♿️(frontend) fix modal aria-label and name #2014
- ♿️(frontend) fix language dropdown ARIA for screen readers #2020
- ♿️(frontend) fix waffle aria-label spacing for new-window links #2030
## [v4.8.1] - 2026-03-17
@@ -47,7 +47,7 @@ export const Waffle = () => {
<LaGaufreV2Fixed
{...waffleConfig}
label={waffleConfig.label ?? t('Digital LaSuite services')}
newWindowLabelSuffix={t('new window')}
newWindowLabelSuffix={` (${t('new window')})`}
/>
</Box>
);