🐛 💬 Improve "home" links in french

This commit is contained in:
Kazhnuz 2025-07-13 14:53:32 +02:00
parent 8a77e3f44e
commit 3d6d131696
3 changed files with 3 additions and 2 deletions

View file

@ -243,6 +243,7 @@
"static": "Statique",
"about-your-site-or-yourself": "À propos de votre site ou de vous-même",
"homepage": "Page daccueil",
"home": "Accueil",
"disabled": "Désactivé",
"to-enable-the-user-you-must-set-a-new-password": "Pour activer lutilisateur, vous devez définir un nouveau mot de passe.",
"delete-the-user-and-associate-his-content-to-admin-user": "Supprimer lutilisateur et associer son contenu à ladministrateur.",

View file

@ -66,7 +66,7 @@ class pluginNavigation extends Plugin
// Show Home page link
if ($this->getValue('homeLink')) {
$html .= '<li>';
$html .= '<a href="' . $site->url() . '">' . $L->get('Home page') . '</a>';
$html .= '<a href="' . $site->url() . '">' . $L->get('Home') . '</a>';
$html .= '</li>';
}

View file

@ -58,7 +58,7 @@ class pluginStaticPages extends Plugin
// Show Home page link
if ($this->getValue('homeLink')) {
$html .= '<li>';
$html .= '<a href="' . $site->url() . '">' . $L->get('Home page') . '</a>';
$html .= '<a href="' . $site->url() . '">' . $L->get('Home') . '</a>';
$html .= '</li>';
}