summaryrefslogtreecommitdiff
path: root/src/application/views/nav_guest.php
diff options
context:
space:
mode:
authorJonas Kohl <git@jonaskohl.de>2024-09-15 19:55:12 +0200
committerJonas Kohl <git@jonaskohl.de>2024-09-15 19:55:12 +0200
commitcb9b87997993702131ca24d4d0e1fd45ef64805c (patch)
tree3ba1725028665f90b546703c461394b577b3e596 /src/application/views/nav_guest.php
parentcc97f36b8c9a9522636d5b50fbcd2f52de06a01a (diff)
Begun i18n work & more
Diffstat (limited to 'src/application/views/nav_guest.php')
-rw-r--r--src/application/views/nav_guest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application/views/nav_guest.php b/src/application/views/nav_guest.php
index f897763..1c65a50 100644
--- a/src/application/views/nav_guest.php
+++ b/src/application/views/nav_guest.php
@@ -1,6 +1,6 @@
<ul class="nav navbar-nav navbar-right">
-<li<?= $GLOBALS["action"] === "auth" ? ' class="active"' : '' ?>><a href="?_action=auth&amp;next=<?= htmlentities(urlencode($_SERVER["REQUEST_URI"])) ?>">Log in</a></li>
+<li<?= $GLOBALS["action"] === "auth" ? ' class="active"' : '' ?>><a href="?_action=auth&amp;next=<?= htmlentities(urlencode($_SERVER["REQUEST_URI"])) ?>"><?= __("Log in") ?></a></li>
<?php if (REGISTRATION_ENABLED): ?>
-<li<?= $GLOBALS["action"] === "register" ? ' class="active"' : '' ?>><a href="?_action=register&amp;next=<?= htmlentities(urlencode($_SERVER["REQUEST_URI"])) ?>">Register</a></li>
+<li<?= $GLOBALS["action"] === "register" ? ' class="active"' : '' ?>><a href="?_action=register&amp;next=<?= htmlentities(urlencode($_SERVER["REQUEST_URI"])) ?>"><?= __("Register") ?></a></li>
<?php endif; ?>
</ul> \ No newline at end of file