New default theme #82

Merged
kazhnuz merged 36 commits from feat/new-default-theme into koblog2 2025-07-27 16:03:24 +02:00
3 changed files with 3 additions and 2 deletions
Showing only changes of commit 3d6d131696 - Show all commits

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>';
}