🐛 💬 Improve "home" links in french
This commit is contained in:
parent
8a77e3f44e
commit
3d6d131696
3 changed files with 3 additions and 2 deletions
|
@ -243,6 +243,7 @@
|
||||||
"static": "Statique",
|
"static": "Statique",
|
||||||
"about-your-site-or-yourself": "À propos de votre site ou de vous-même",
|
"about-your-site-or-yourself": "À propos de votre site ou de vous-même",
|
||||||
"homepage": "Page d’accueil",
|
"homepage": "Page d’accueil",
|
||||||
|
"home": "Accueil",
|
||||||
"disabled": "Désactivé",
|
"disabled": "Désactivé",
|
||||||
"to-enable-the-user-you-must-set-a-new-password": "Pour activer l’utilisateur, vous devez définir un nouveau mot de passe.",
|
"to-enable-the-user-you-must-set-a-new-password": "Pour activer l’utilisateur, vous devez définir un nouveau mot de passe.",
|
||||||
"delete-the-user-and-associate-his-content-to-admin-user": "Supprimer l’utilisateur et associer son contenu à l’administrateur.",
|
"delete-the-user-and-associate-his-content-to-admin-user": "Supprimer l’utilisateur et associer son contenu à l’administrateur.",
|
||||||
|
|
|
@ -66,7 +66,7 @@ class pluginNavigation extends Plugin
|
||||||
// Show Home page link
|
// Show Home page link
|
||||||
if ($this->getValue('homeLink')) {
|
if ($this->getValue('homeLink')) {
|
||||||
$html .= '<li>';
|
$html .= '<li>';
|
||||||
$html .= '<a href="' . $site->url() . '">' . $L->get('Home page') . '</a>';
|
$html .= '<a href="' . $site->url() . '">' . $L->get('Home') . '</a>';
|
||||||
$html .= '</li>';
|
$html .= '</li>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,7 @@ class pluginStaticPages extends Plugin
|
||||||
// Show Home page link
|
// Show Home page link
|
||||||
if ($this->getValue('homeLink')) {
|
if ($this->getValue('homeLink')) {
|
||||||
$html .= '<li>';
|
$html .= '<li>';
|
||||||
$html .= '<a href="' . $site->url() . '">' . $L->get('Home page') . '</a>';
|
$html .= '<a href="' . $site->url() . '">' . $L->get('Home') . '</a>';
|
||||||
$html .= '</li>';
|
$html .= '</li>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue