diff options
author | uvok cheetah | 2024-12-10 18:31:52 +0100 |
---|---|---|
committer | uvok cheetah | 2024-12-10 18:31:52 +0100 |
commit | cbe35821d7d1c436c96b3a7805faed82688bc06c (patch) | |
tree | 901a911ee8dcfc4dcbf3d6f06f4320aadcbedb4f | |
parent | 3a66285ef41492d0f5ac483ffb5048476088b1c5 (diff) |
Fix localization
-rw-r--r-- | _includes/header.html | 2 | ||||
-rw-r--r-- | contact.html | 5 | ||||
-rw-r--r-- | dn42.md | 1 | ||||
-rw-r--r-- | search.html | 9 |
4 files changed, 10 insertions, 7 deletions
diff --git a/_includes/header.html b/_includes/header.html index c06e4cb..4663f3d 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -13,7 +13,7 @@ </span> </label> - <div class="trigger"> + <div class="trigger" lang="en"> {% comment %} my_page.autogen is populated by the pagination logic for all pages that are automatically created by the gem. Check for non-existence to exclude pagination pages from site.pages iterators diff --git a/contact.html b/contact.html index c451bc3..e4e39f3 100644 --- a/contact.html +++ b/contact.html @@ -1,13 +1,14 @@ --- layout: page -title: Kontakt +title: Contact in_navbar: true order: 100 +lang: "en" --- <ul> <li> - Email: bl<span style="display:none">dasnicht</span>ogspot@<span style="display:inline">uvok</span><span style="display:none">dasnicht</span>chee.de + Email: bl<span style="display:none">-leavethisout-</span>ogspot@<span style="display:inline">uvok</span><span style="display:none">-leavethisout-</span>chee.de </li> <li> XMPP: @uvok@uvok.de @@ -3,6 +3,7 @@ layout: page title: DN42 in_navbar: true order: 50 +lang: "en" --- I participate in [DN42](https://dn42.eu). diff --git a/search.html b/search.html index 952ec55..fe400ce 100644 --- a/search.html +++ b/search.html @@ -1,20 +1,21 @@ --- -title: Suche +title: Search layout: page in_navbar: true +lang: "en" --- -<p><i>Die Suche erfordert JavaScript.</i></p> +<p><i>Search requires JavaScript.</i></p> <script src="/assets/js/lunr.min.js"></script> <script src="/assets/js/search.js"></script> <p> <input id="input_qterm"></input> -<button id="qsubmit">Suchen</button> +<button id="qsubmit">Search</button> </p> -<h2>Suchergebnisse für <span id="qterm"></span></h1> +<h2>Results for <span id="qterm"></span></h1> <div id="results"> </div> |