Add fr translation and fix some translation on the go

This commit is contained in:
Louis Delbosc
2022-12-19 19:53:26 +01:00
parent c18c6cb264
commit 78a1c2d890
7 changed files with 637 additions and 653 deletions

View File

@@ -293,8 +293,8 @@ function buildOtherSites(home: HomeModel) {
const siteName = home.app.currentOrgName;
return [
dom('div',
personal ? t("You are on the {{siteName}} site. You also have access to the following sites:", {siteName}) :
t("You are on your personal site. You also have access to the following sites:"),
personal ? t("You are on your personal site. You also have access to the following sites:") :
t("You are on the {{siteName}} site. You also have access to the following sites:", {siteName}),
testId('other-sites-message')
),
css.otherSitesButtons(
@@ -306,7 +306,7 @@ function buildOtherSites(home: HomeModel) {
)
),
testId('other-sites-buttons')
)
),
];
})
);