View Issue Details

IDProjectCategoryView StatusLast Update
0007488TalerWeb site(s)public2023-01-26 22:53
Reporternervuri Assigned ToStefan  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version0.9.1 
Target Version0.9.1Fixed in Version0.9.1 
Summary0007488: taler.net navbar issues
DescriptionThe hamburger menu on taler.net (mobile) does not work. This is because Bootstrap v5.0 made a bunch of breaking changes:

https://getbootstrap.com/docs/5.2/migration/#v510

The first patch fixes it. Bootstrap 5 may have also broken other things on taler.net. I haven't noticed any other breakage, though.

Aside from that, the navbar looks pretty bad, in my opinion. Patch #2 improves the look of the navbar (see screenshots below). Patch #3 moves the Taler logo on the index page slightly, to make it look better on mobile. Patch #4 contains changes made by the build commands. All good?
TagsNo tags attached.
Attached Files
0001-fix-navbar-menu-button.patch (950 bytes)   
From d48de3ba7b945a9cf8494b48c8f16820d64cf1f0 Mon Sep 17 00:00:00 2001
From: nervuri <seva@nervuri.net>
Date: Sun, 20 Nov 2022 15:09:18 +0000
Subject: [PATCH Taler website 1/4] fix navbar menu button

Hamburger menu was broken due to a breaking change in Bootstrap v5.0:
https://getbootstrap.com/docs/5.2/migration/#v510
---
 common/navigation.j2.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/navigation.j2.inc b/common/navigation.j2.inc
index 357d76e..e793ff7 100644
--- a/common/navigation.j2.inc
+++ b/common/navigation.j2.inc
@@ -11,8 +11,8 @@
   </a>
   <button class="navbar-toggler"
           type="button"
-          data-toggle="collapse"
-          data-target="#navbarNavAltMarkup"
+          data-bs-toggle="collapse"
+          data-bs-target="#navbarNavAltMarkup"
           aria-controls="navbarNavAltMarkup"
           aria-expanded="false"
           aria-label="Toggle navigation">
-- 
2.35.1

0002-improve-navbar-appearance.patch (9,836 bytes)   
From da0f5e80dfe104a2af6faecc49fc437a35c17025 Mon Sep 17 00:00:00 2001
From: nervuri <seva@nervuri.net>
Date: Sun, 20 Nov 2022 15:16:22 +0000
Subject: [PATCH Taler website 2/4] improve navbar appearance

---
 common/navigation.j2.inc | 186 ++++++++++++++++++++-------------------
 static/styles.css        |   4 -
 2 files changed, 96 insertions(+), 94 deletions(-)

diff --git a/common/navigation.j2.inc b/common/navigation.j2.inc
index e793ff7..ddd2c1e 100644
--- a/common/navigation.j2.inc
+++ b/common/navigation.j2.inc
@@ -1,96 +1,102 @@
 {% macro navlink(site, text) -%}
-   <a class="nav-link {{ 'active' if filename == site else '' }}"
-      href="{{ url_localized(site) }}">
-    {{ text }}
-   </a>
+   <li class="nav-item mx-2">
+     <a class="nav-link {{ 'active' if filename == site else '' }}"
+        href="{{ url_localized(site) }}">
+      {{ text }}
+     </a>
+   </li>
 {%- endmacro %}
 
-<nav class="navbar navbar-expand-lg navbar-light">
-  <a class="navbar-brand" href="{{ url_localized('index.html') }}">
-    <img class="taler_home" alt="Home" src="{{ url_static('images/logo-2021.svg') }}">
-  </a>
-  <button class="navbar-toggler"
-          type="button"
-          data-bs-toggle="collapse"
-          data-bs-target="#navbarNavAltMarkup"
-          aria-controls="navbarNavAltMarkup"
-          aria-expanded="false"
-          aria-label="Toggle navigation">
-    <span class="navbar-toggler-icon"></span>
-  </button>
-  <div class="collapse navbar-collapse" id="navbarNavAltMarkup">
-    <div class="navbar-nav mr-auto">
-      {{ navlink('features.html', _('Features')) }}
-      {{ navlink('principles.html', _('Principles')) }}
-      {{ navlink('docs.html', _('Docs')) }}
-      {{ navlink('news/index.html', _('News')) }}
-      <a class="nav-link" href="https://taler-systems.com/" target="_blank" rel="noopener noreferrer">{{ _('Company') }}</a>
-    </div>
-
-    <div class="nav-item dropdown">
-      <button class="btn btn-dark dropdown-toggle"
+<div class="container">
+  <nav class="navbar navbar-expand-lg border-bottom">
+    <div class="container-fluid">
+      <a class="navbar-brand d-flex" href="{{ url_localized('index.html') }}">
+        <img alt="Home" width="100.5" height="45" src="{{ url_static('images/logo-2021.svg') }}">
+      </a>
+      <button class="navbar-toggler"
               type="button"
-              id="dropdownMenu1"
-              data-bs-toggle="dropdown"
-              data-bs-auto-close="true"
-              aria-haspopup="true"
-              aria-expanded="true">
-              <img src="{{ url_static('images/languageicon.svg') }}"
-                    height="35"
-                    alt="[{{lang}}]" />
-                    {{ lang_full }} [{{ lang }}]
+              data-bs-toggle="collapse"
+              data-bs-target="#navbarNavAltMarkup"
+              aria-controls="navbarNavAltMarkup"
+              aria-expanded="false"
+              aria-label="Toggle navigation">
+        <span class="navbar-toggler-icon"></span>
       </button>
-      <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
-      {% if lang != 'en' %}
-        <li><a class="dropdown-item" href="{{ self_localized('en') }}">English [en]</a></li>
-      {% endif %}
-      {% if lang != 'ar' %}
-        <li><a class="dropdown-item" href="{{ self_localized('ar') }}">عربى [ar]</a></li>
-      {% endif %}
-      {% if lang != 'zh_Hant' %}
-        <li><a class="dropdown-item" href="{{ self_localized('zh_Hant') }}">繁體中文 [zh]</a></li>
-      {% endif %}
-      {% if lang != 'zh_Hans' %}
-        <li><a class="dropdown-item" href="{{ self_localized('zh_Hans') }}">简体中文 [zh_Hans]</a></li>
-      {% endif %}
-      {% if lang != 'fr' %}
-        <li><a class="dropdown-item" href="{{ self_localized('fr') }}">Fran&ccedil;ais [fr]</a></li>
-      {% endif %}
-      {% if lang != 'de' %}
-        <li><a class="dropdown-item" href="{{ self_localized('de') }}">Deutsch [de]</a></li>
-      {% endif %}
-<!--  {% if lang != 'hi' %}
-        <li><a class="dropdown-item" href="{{ self_localized('hi') }}">हिंदी [hi]</a></li>
-      {% endif %} -->
-      {% if lang != 'it' %}
-        <li><a class="dropdown-item" href="{{ self_localized('it') }}">Italiano [it]</a></li>
-      {% endif %}
-      {% if lang != 'ja' %}
-        <li><a class="dropdown-item" href="{{ self_localized('ja') }}">日本語 [ja]</a></li>
-      {% endif %}
-      {% if lang != 'ko' %}
-        <li><a class="dropdown-item" href="{{ self_localized('ko') }}">한국어 [ko]</a></li>
-      {% endif %}
-<!--  {% if lang != 'pt' %}
-        <li><a class="dropdown-item" href="{{ self_localized('pt') }}">Portugu&ecirc;s [pt]</a></li>
-      {% endif %} -->
-<!--  {% if lang != 'pt_BR' %}
-        <li><a class="dropdown-item" href="{{ self_localized('pt_BR') }}">Portugu&ecirc;s (Brazil) [pt]</a></li>
-      {% endif %} -->
-      {% if lang != 'ru' %}
-        <li><a class="dropdown-item" href="{{ self_localized('ru') }}">&#x420;&#x443;&#x301;&#x441;&#x441;&#x43A;&#x438;&#x439;&#x20;&#x44F;&#x437;&#x44B;&#x301;&#x43A; [ru]</a></li>
-      {% endif %}
-      {% if lang != 'es' %}
-        <li><a class="dropdown-item" href="{{ self_localized('es') }}">Espa&ntilde;ol [es]</a></li>
-      {% endif %}
-      {% if lang != 'sv' %}
-        <li><a class="dropdown-item" href="{{ self_localized('sv') }}">Svenska [sv]</a></li>
-      {% endif %}
-      {% if lang != 'tr' %}
-        <li><a class="dropdown-item" href="{{ self_localized('tr') }}">T&uuml;rk&ccedil;e [tr]</a></li>
-      {% endif %}
-
-      </ul>
+      <div class="collapse navbar-collapse" id="navbarNavAltMarkup">
+        <ul class="navbar-nav me-lg-auto">
+          {{ navlink('features.html', _('Features')) }}
+          {{ navlink('principles.html', _('Principles')) }}
+          {{ navlink('docs.html', _('Docs')) }}
+          {{ navlink('news/index.html', _('News')) }}
+          <li class="nav-item mx-2">
+            <a class="nav-link" href="https://taler-systems.com/" target="_blank" rel="noopener noreferrer">{{ _('Company') }}</a>
+          </li>
+        </ul>
+        <div class="nav-item dropdown">
+          <button class="btn btn-dark dropdown-toggle"
+                  type="button"
+                  id="dropdownMenu1"
+                  data-bs-toggle="dropdown"
+                  data-bs-auto-close="true"
+                  aria-haspopup="true"
+                  aria-expanded="true">
+                  <img src="{{ url_static('images/languageicon.svg') }}"
+                        height="35"
+                        alt="[{{lang}}]" />
+                        {{ lang_full }} [{{ lang }}]
+          </button>
+          <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          {% if lang != 'en' %}
+            <li><a class="dropdown-item" href="{{ self_localized('en') }}">English [en]</a></li>
+          {% endif %}
+          {% if lang != 'ar' %}
+            <li><a class="dropdown-item" href="{{ self_localized('ar') }}">عربى [ar]</a></li>
+          {% endif %}
+          {% if lang != 'zh_Hant' %}
+            <li><a class="dropdown-item" href="{{ self_localized('zh_Hant') }}">繁體中文 [zh]</a></li>
+          {% endif %}
+          {% if lang != 'zh_Hans' %}
+            <li><a class="dropdown-item" href="{{ self_localized('zh_Hans') }}">简体中文 [zh_Hans]</a></li>
+          {% endif %}
+          {% if lang != 'fr' %}
+            <li><a class="dropdown-item" href="{{ self_localized('fr') }}">Fran&ccedil;ais [fr]</a></li>
+          {% endif %}
+          {% if lang != 'de' %}
+            <li><a class="dropdown-item" href="{{ self_localized('de') }}">Deutsch [de]</a></li>
+          {% endif %}
+    <!--  {% if lang != 'hi' %}
+            <li><a class="dropdown-item" href="{{ self_localized('hi') }}">हिंदी [hi]</a></li>
+          {% endif %} -->
+          {% if lang != 'it' %}
+            <li><a class="dropdown-item" href="{{ self_localized('it') }}">Italiano [it]</a></li>
+          {% endif %}
+          {% if lang != 'ja' %}
+            <li><a class="dropdown-item" href="{{ self_localized('ja') }}">日本語 [ja]</a></li>
+          {% endif %}
+          {% if lang != 'ko' %}
+            <li><a class="dropdown-item" href="{{ self_localized('ko') }}">한국어 [ko]</a></li>
+          {% endif %}
+    <!--  {% if lang != 'pt' %}
+            <li><a class="dropdown-item" href="{{ self_localized('pt') }}">Portugu&ecirc;s [pt]</a></li>
+          {% endif %} -->
+    <!--  {% if lang != 'pt_BR' %}
+            <li><a class="dropdown-item" href="{{ self_localized('pt_BR') }}">Portugu&ecirc;s (Brazil) [pt]</a></li>
+          {% endif %} -->
+          {% if lang != 'ru' %}
+            <li><a class="dropdown-item" href="{{ self_localized('ru') }}">&#x420;&#x443;&#x301;&#x441;&#x441;&#x43A;&#x438;&#x439;&#x20;&#x44F;&#x437;&#x44B;&#x301;&#x43A; [ru]</a></li>
+          {% endif %}
+          {% if lang != 'es' %}
+            <li><a class="dropdown-item" href="{{ self_localized('es') }}">Espa&ntilde;ol [es]</a></li>
+          {% endif %}
+          {% if lang != 'sv' %}
+            <li><a class="dropdown-item" href="{{ self_localized('sv') }}">Svenska [sv]</a></li>
+          {% endif %}
+          {% if lang != 'tr' %}
+            <li><a class="dropdown-item" href="{{ self_localized('tr') }}">T&uuml;rk&ccedil;e [tr]</a></li>
+          {% endif %}
+          </ul>
+        </div>
+      </div>
     </div>
-  </div>
-</nav>
+  </nav>
+</div>
diff --git a/static/styles.css b/static/styles.css
index 44274f5..ace0a85 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -140,10 +140,6 @@ footer {
   display: contents;
 }
 
-.taler_home {
-  width: 8%;
-}
-
 .checkmark {
   height: 1em;
   margin-right: 0.3em;
-- 
2.35.1

0003-improve-spacing-for-logo-on-index-page.patch (987 bytes)   
From 00ea898743f3abdcd6689a431201042caebe30f8 Mon Sep 17 00:00:00 2001
From: nervuri <seva@nervuri.net>
Date: Sun, 20 Nov 2022 15:43:40 +0000
Subject: [PATCH Taler website 3/4] improve spacing for logo on index page

---
 template/index.html.j2 | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/template/index.html.j2 b/template/index.html.j2
index 9fd4f67..844e60c 100644
--- a/template/index.html.j2
+++ b/template/index.html.j2
@@ -3,12 +3,7 @@
   <div class="container">
 
     <div class="row justify-content-center">
-      <div style="width:40vw;" >
-        <img alt="{{ _("Taler logo") }}" style="width:100%; height: auto; display: block" src="{{ url_static('images/logo-2021.svg') }}">
-      </div>
-    </div>
-
-    <div class="row mt-5">
+      <img alt="{{ _("Taler logo") }}" style="width:40vw; display: block; margin-top: 10px; margin-bottom: 25px" src="{{ url_static('images/logo-2021.svg') }}">
     </div>
 
     <div class="row">
-- 
2.35.1

0004-build-result-update-.po-files-and-submodules.patch (70,612 bytes)   
From 2f3bf1bc7366948d12fe448a7d7017bf97fea9ce Mon Sep 17 00:00:00 2001
From: nervuri <seva@nervuri.net>
Date: Sun, 20 Nov 2022 15:57:29 +0000
Subject: [PATCH Taler website 4/4] [build result] update .po files and
 submodules

---
 build-system/taler-build-scripts       |  2 +-
 inc                                    |  2 +-
 locale/ar/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/cs/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/de/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/en/LC_MESSAGES/messages.po      | 34 +++++++++++-----------
 locale/es/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/fr/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/hi/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/hu/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/it/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/ja/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/ko/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/messages.pot                    | 36 +++++++++++------------
 locale/pt/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/pt_BR/LC_MESSAGES/messages.po   | 40 +++++++++++++-------------
 locale/ru/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/sv/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/tr/LC_MESSAGES/messages.po      | 40 +++++++++++++-------------
 locale/zh_Hans/LC_MESSAGES/messages.po | 40 +++++++++++++-------------
 locale/zh_Hant/LC_MESSAGES/messages.po | 40 +++++++++++++-------------
 21 files changed, 377 insertions(+), 377 deletions(-)

diff --git a/build-system/taler-build-scripts b/build-system/taler-build-scripts
index 38c168b..2353867 160000
--- a/build-system/taler-build-scripts
+++ b/build-system/taler-build-scripts
@@ -1 +1 @@
-Subproject commit 38c168b11eeeab93562ffa74b3e2aff4b596c77a
+Subproject commit 23538677f6c6be2a62f38dc6137ecdd1c76b7b15
diff --git a/inc b/inc
index 2b72c7f..218f02c 160000
--- a/inc
+++ b/inc
@@ -1 +1 @@
-Subproject commit 2b72c7f57d318271856f992eb2e58c133ae5179e
+Subproject commit 218f02cfc0453a0d4cc067ba9256123a675040ce
diff --git a/locale/ar/LC_MESSAGES/messages.po b/locale/ar/LC_MESSAGES/messages.po
index b60ce96..5e0ce09 100644
--- a/locale/ar/LC_MESSAGES/messages.po
+++ b/locale/ar/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-03-04 17:02+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: Arabic <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -33,7 +33,7 @@ msgstr "الاحتياطيات الإلكترونية الحرة ومجهولة
 msgid "Contact"
 msgstr "معلومات التواصل"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "مستندات"
 
@@ -81,20 +81,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "معلومات ترخيص JavaScript"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "المزايا"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "المبادئ"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "الأخبار"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1394,11 +1394,11 @@ msgstr ""
 "التحويلية المقابلة لعمليات الإيداع التي يقوم بها التجار مع شركة الصرافة، "
 "ودخل شركة الصرافة من رسوم المعاملات."
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1406,39 +1406,39 @@ msgstr ""
 "نحن نقدم نظام دفع يجعل <span class='tlr'> معاملات حماية الخصوصية</span> عبر "
 "الإنترنت <span class='tlr'> سريعة وسهلة</span>."
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "المدفوعات من دون تسجيل"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "حماية البيانات تلقائيًا"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "القضاء على الاحتيال حسب التصميم"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "ليست عملة جديدة!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr "يمكن المجتمعات من إدارة بنيتهم التحتية للدفع"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "برمجيات حرة"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "جرب النسخة التجريبية!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "اقرأ المستندات"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1850,6 +1850,9 @@ msgstr "اشترك في نشرتنا الإخبارية RSS"
 msgid "read more"
 msgstr "اقرأ المزيد"
 
+#~ msgid "Community"
+#~ msgstr "الجمهور"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1876,9 +1879,6 @@ msgstr "اقرأ المزيد"
 #~ msgid "Internals"
 #~ msgstr "المكونات الداخلية"
 
-#~ msgid "Community"
-#~ msgstr "الجمهور"
-
 #~ msgid "Code"
 #~ msgstr "رمز"
 
diff --git a/locale/cs/LC_MESSAGES/messages.po b/locale/cs/LC_MESSAGES/messages.po
index 6822316..aa442aa 100644
--- a/locale/cs/LC_MESSAGES/messages.po
+++ b/locale/cs/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2021-04-08 12:55+0000\n"
 "Last-Translator: Stefan Kügel <skuegel@web.de>\n"
 "Language-Team: Czech <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -32,7 +32,7 @@ msgstr "Taxable Anonymous Libre Electronic Reserves"
 msgid "Contact"
 msgstr "Kontaktujte nás"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Dokumentace"
 
@@ -84,20 +84,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "Informace o licenci JavaScriptu"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Vlastnosti"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "Zásady"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Novinky"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1251,49 +1251,49 @@ msgid ""
 "fees."
 msgstr ""
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
 msgstr ""
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr ""
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr ""
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr ""
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr ""
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr ""
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr ""
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr ""
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1635,15 +1635,15 @@ msgstr "Přihlaste se k našemu RSS kanálu"
 msgid "read more"
 msgstr "Číst dál"
 
+#~ msgid "Community"
+#~ msgstr "Community"
+
 #~ msgid "Components"
 #~ msgstr "Komponenty"
 
 #~ msgid "Internals"
 #~ msgstr "Další informace"
 
-#~ msgid "Community"
-#~ msgstr "Community"
-
 #~ msgid "Code"
 #~ msgstr "Kód"
 
diff --git a/locale/de/LC_MESSAGES/messages.po b/locale/de/LC_MESSAGES/messages.po
index bb2b839..79459f7 100644
--- a/locale/de/LC_MESSAGES/messages.po
+++ b/locale/de/LC_MESSAGES/messages.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: German (Taler Website)\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-10-14 19:05+0000\n"
 "Last-Translator: Stefan Kügel <skuegel@web.de>\n"
 "Language-Team: German <https://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -26,7 +26,7 @@ msgstr "Taxable Anonymous Libre Electronic Reserves"
 msgid "Contact"
 msgstr "Kontakt"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Dokumentation"
 
@@ -70,20 +70,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "JavaScript Lizenzinformationen"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Besonderheiten"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "Prinzipien"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Aktuelles"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr "Firma"
 
@@ -1626,11 +1626,11 @@ msgstr ""
 "entsprechenden Buchungen auf Bankverbindungen der Empfänger sowie die "
 "Gebühreneinkünfte jedes Exchange."
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr "Taler-Logo"
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1639,40 +1639,40 @@ msgstr ""
 "einfache </span> Geldüberweisen mit <span class='tlr'>Datenschutz und hoher "
 "technischer Sicherheit</span>."
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "Bezahlen ohne Registrierung"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "Datenschutz als Grundeinstellung"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "Systematisch gesichert gegen Betrug"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "Keine neue Währung!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 "Ermöglicht die Entwicklung einer selbstbestimmten Zahlungsinfrastruktur"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "Freie Software"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "Demo versuchen!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "Doku lesen"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr "Professionelle Unterstützung"
 
@@ -2135,6 +2135,9 @@ msgstr "Abonniere unseren RSS-Feed"
 msgid "read more"
 msgstr "weiterlesen"
 
+#~ msgid "Community"
+#~ msgstr "Gemeinschaft"
+
 #~ msgid ""
 #~ "If your friends provide goods or services for you in exchange for a "
 #~ "payment, they can easily set up a Taler merchant and receive the payment "
@@ -2162,9 +2165,6 @@ msgstr "weiterlesen"
 #~ msgid "Internals"
 #~ msgstr "Weitere Informationen"
 
-#~ msgid "Community"
-#~ msgstr "Gemeinschaft"
-
 #~ msgid "Code"
 #~ msgstr "Code"
 
diff --git a/locale/en/LC_MESSAGES/messages.po b/locale/en/LC_MESSAGES/messages.po
index 2239f05..5a450cc 100644
--- a/locale/en/LC_MESSAGES/messages.po
+++ b/locale/en/LC_MESSAGES/messages.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: en <LL@li.org>\n"
@@ -25,7 +25,7 @@ msgstr ""
 msgid "Contact"
 msgstr ""
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr ""
 
@@ -63,20 +63,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr ""
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr ""
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr ""
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr ""
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1159,49 +1159,49 @@ msgid ""
 "fees."
 msgstr ""
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
 msgstr ""
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr ""
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr ""
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr ""
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr ""
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr ""
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr ""
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr ""
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
diff --git a/locale/es/LC_MESSAGES/messages.po b/locale/es/LC_MESSAGES/messages.po
index bc0a3d1..50fa931 100644
--- a/locale/es/LC_MESSAGES/messages.po
+++ b/locale/es/LC_MESSAGES/messages.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-02-11 16:47+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: Spanish <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -27,7 +27,7 @@ msgstr "Reserva Electrónica Libre Anónima Tasable"
 msgid "Contact"
 msgstr "Contacto"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Documentación"
 
@@ -80,20 +80,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "Información de Licencia JavaScript"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Funcionalidades"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "Principios"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Noticias"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1469,11 +1469,11 @@ msgstr ""
 "operaciones de depósito llevadas a cabo por los comerciantes con el "
 "exchange, y el ingreso del exchange procedente de comisiones por transacción."
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr "Logotipo de Taler"
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1482,40 +1482,40 @@ msgstr ""
 "<span class='tlr'>amigables-privadas</span>,<span class='tlr'>rápidas y "
 "sencillas</span>."
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "Pagos sin necesidad de registrarse"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "Protección de datos predefinida"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "Diseño seguro contra el fraude"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "¡No es una nueva moneda!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 "Permite a las comunidades establecer su propia infraestructura de pagos"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "Software Libre"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "¡Prueba la Demo!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "Leer documentos"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1948,6 +1948,9 @@ msgstr "suscribirse a nuestro RSS"
 msgid "read more"
 msgstr "leer más"
 
+#~ msgid "Community"
+#~ msgstr "Comunidad"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1975,9 +1978,6 @@ msgstr "leer más"
 #~ msgid "Internals"
 #~ msgstr "Internos"
 
-#~ msgid "Community"
-#~ msgstr "Comunidad"
-
 #~ msgid "Code"
 #~ msgstr "Código"
 
diff --git a/locale/fr/LC_MESSAGES/messages.po b/locale/fr/LC_MESSAGES/messages.po
index 0f52290..c3d985b 100644
--- a/locale/fr/LC_MESSAGES/messages.po
+++ b/locale/fr/LC_MESSAGES/messages.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: French (Taler Website)\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-02-11 15:52+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: French <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -26,7 +26,7 @@ msgstr "Taxable Anonymous Libre Electronic Reserves"
 msgid "Contact"
 msgstr "Contact"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Docs"
 
@@ -78,20 +78,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "Information de licence JavaScript"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Fonctionnalités"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "Principes"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Actualité"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1500,11 +1500,11 @@ msgstr ""
 "correspondants des opérations de dépôt effectuées par les commerçants auprès "
 "de l'échange, et les revenus de l'échange provenant des frais de transaction."
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr "Logo Taler"
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1513,39 +1513,39 @@ msgstr ""
 "<span class='tlr'>privées</span>, <span class='tlr'>rapides et faciles</"
 "span>."
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "Paiements sans enregistrer de compte"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "Protection des données par défaut"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "Fraude impossible par conception"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "Ce n'est pas une monnaie !"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr "Permet aux communautés d'avoir leur propre infrastructure de paiement"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "Logiciel libre"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "Essayer la démo !"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "Lire les docs"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1995,6 +1995,9 @@ msgstr "s'abonner à notre flux RSS"
 msgid "read more"
 msgstr "lire la suite"
 
+#~ msgid "Community"
+#~ msgstr "Communauté"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -2022,9 +2025,6 @@ msgstr "lire la suite"
 #~ msgid "Internals"
 #~ msgstr "Pour les membres du projet"
 
-#~ msgid "Community"
-#~ msgstr "Communauté"
-
 #~ msgid "Code"
 #~ msgstr "Code"
 
diff --git a/locale/hi/LC_MESSAGES/messages.po b/locale/hi/LC_MESSAGES/messages.po
index 23787d7..665d7a1 100644
--- a/locale/hi/LC_MESSAGES/messages.po
+++ b/locale/hi/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-02-21 20:25+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: Hindi <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -32,7 +32,7 @@ msgstr "कर देने योग्य गुमनाम मुक्त 
 msgid "Contact"
 msgstr "संपर्क"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "दस्तावेज"
 
@@ -85,20 +85,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "जावास्क्रिप्ट लाइसेंस सूचना"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "विशेषताएँ"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "सिद्धांत"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "ख़बर"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1265,51 +1265,51 @@ msgid ""
 "fees."
 msgstr ""
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
 msgstr ""
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr ""
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr ""
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr ""
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr ""
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr ""
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr ""
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 #, fuzzy
 #| msgid "Docs"
 msgid "Read Docs"
 msgstr "दस्तावेज"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1659,6 +1659,9 @@ msgstr "हमारी आरएसएस फीड को सब्सक्
 msgid "read more"
 msgstr "और पढ़ें..."
 
+#~ msgid "Community"
+#~ msgstr "समुदाय"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1685,9 +1688,6 @@ msgstr "और पढ़ें..."
 #~ msgid "Internals"
 #~ msgstr "आंतरिक"
 
-#~ msgid "Community"
-#~ msgstr "समुदाय"
-
 #~ msgid "Code"
 #~ msgstr "कोड"
 
diff --git a/locale/hu/LC_MESSAGES/messages.po b/locale/hu/LC_MESSAGES/messages.po
index badfe57..96d69e9 100644
--- a/locale/hu/LC_MESSAGES/messages.po
+++ b/locale/hu/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2021-04-08 12:55+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: Hungarian <http://weblate.taler.net/projects/gnu-taler/main-"
@@ -32,7 +32,7 @@ msgstr "Taxable Anonymous Libre Electronic Reserves"
 msgid "Contact"
 msgstr "Kapcsolatfelvétel"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Dokumentáció"
 
@@ -84,20 +84,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "JavaScript licenc információk"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Jellemzők"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "Elvek"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Újdonságok"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1254,49 +1254,49 @@ msgid ""
 "fees."
 msgstr ""
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
 msgstr ""
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr ""
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr ""
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr ""
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr ""
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr ""
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr ""
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr ""
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1639,6 +1639,9 @@ msgstr "iratkozzon fel RSS hírlevelünkre"
 msgid "read more"
 msgstr "olvasson tovább"
 
+#~ msgid "Community"
+#~ msgstr "Közösség"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1666,9 +1669,6 @@ msgstr "olvasson tovább"
 #~ msgid "Internals"
 #~ msgstr "További információk"
 
-#~ msgid "Community"
-#~ msgstr "Közösség"
-
 #~ msgid "Code"
 #~ msgstr "Kód"
 
diff --git a/locale/it/LC_MESSAGES/messages.po b/locale/it/LC_MESSAGES/messages.po
index a46ecec..0a6eda6 100644
--- a/locale/it/LC_MESSAGES/messages.po
+++ b/locale/it/LC_MESSAGES/messages.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-02-07 15:13+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: Italian <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -27,7 +27,7 @@ msgstr "Riserve tassabili,anonime,elettroniche e libere"
 msgid "Contact"
 msgstr "Contatto"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Documenti"
 
@@ -79,20 +79,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "Informazioni della licenza JavaScript"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Funzioni"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "Principi"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Novità"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1449,11 +1449,11 @@ msgstr ""
 "deposito eseguite dai commercianti con lo scambio, e il reddito di "
 "commissioni di transazione del cambio."
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1461,40 +1461,40 @@ msgstr ""
 "Forniamo un sistema di pagamento che rende le transazioni online <span "
 "class='tlr'>rispettose della privacy, facili e veloci</span>."
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "Pagamenti senza registrazione"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "La prtoezione dei dati di default"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "Frode eliminata in base alla preogettazione"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "Non una nuova valuta!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 "Consente alle comunità di gestire la propria infrastruttura di pagamento"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "Software libero"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "Prova la versione demo!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "Leggere la documentazione"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1930,6 +1930,9 @@ msgstr "Abbonati ai nostri RSS feed"
 msgid "read more"
 msgstr "Leggi di più"
 
+#~ msgid "Community"
+#~ msgstr "Comunità"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1957,9 +1960,6 @@ msgstr "Leggi di più"
 #~ msgid "Internals"
 #~ msgstr "Per i membri del progetto"
 
-#~ msgid "Community"
-#~ msgstr "Comunità"
-
 #~ msgid "Code"
 #~ msgstr "Codice"
 
diff --git a/locale/ja/LC_MESSAGES/messages.po b/locale/ja/LC_MESSAGES/messages.po
index f634652..4a629d9 100644
--- a/locale/ja/LC_MESSAGES/messages.po
+++ b/locale/ja/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-02-22 10:35+0000\n"
 "Last-Translator: Mizuhashi Lexee <nekohamushi@outlook.jp>\n"
 "Language-Team: Japanese <http://weblate.taler.net/projects/gnu-taler/main-"
@@ -32,7 +32,7 @@ msgstr "プライバシー保護と漏れのない納税を両立する自由な
 msgid "Contact"
 msgstr "問合せ窓口"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "資料"
 
@@ -76,20 +76,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "JavaScriptライセンス情報"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "機能"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "行動規範"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "ニュース"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr "会社情報"
 
@@ -1401,11 +1401,11 @@ msgstr ""
 "保のデジタル通貨としての価値、マーチャントが交換所で預け入れた送金額に相当す"
 "る価値、そして送金手数料が反映されたものです。"
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr "Talerロゴマーク"
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1413,40 +1413,40 @@ msgstr ""
 "私たちは<span class='tlr'>プライバシー保護された</span>オンライン送金<span "
 "class='tlr'>を素早く簡単に</span>実現します。"
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "ショッピングサイトに登録せずにお支払い"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "初期設定でデータ保護"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "不正防止設計"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "新しい通貨ではありません!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 "自分たちで支払いインフラストラクチャーを運営するコミュニティーを応援する"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "オープンソースで自由なFree Software"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "体験版を使ってみよう!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "ドキュメントを読む"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr "商用サポート"
 
@@ -1876,6 +1876,9 @@ msgstr "RSSフィードを購読する"
 msgid "read more"
 msgstr "続きを読む"
 
+#~ msgid "Community"
+#~ msgstr "コミュニティ"
+
 #~ msgid ""
 #~ "If your friends provide goods or services for you in exchange for a "
 #~ "payment, they can easily set up a Taler merchant and receive the payment "
@@ -1898,9 +1901,6 @@ msgstr "続きを読む"
 #~ msgid "Internals"
 #~ msgstr "内部"
 
-#~ msgid "Community"
-#~ msgstr "コミュニティ"
-
 #~ msgid "Code"
 #~ msgstr "コード"
 
diff --git a/locale/ko/LC_MESSAGES/messages.po b/locale/ko/LC_MESSAGES/messages.po
index 18988b7..98de783 100644
--- a/locale/ko/LC_MESSAGES/messages.po
+++ b/locale/ko/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2021-03-20 15:15+0000\n"
 "Last-Translator: Choyi Whang <choyi.whang@gmail.com>\n"
 "Language-Team: Korean <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -34,7 +34,7 @@ msgstr ""
 msgid "Contact"
 msgstr "연락처"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "문서"
 
@@ -86,20 +86,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "자바스크립트 허가 정보"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "기능"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "원칙"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "뉴스"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1394,11 +1394,11 @@ msgstr ""
 "은 디지털 코인의 가치, 상인이 거래소를 통한 전신 송금으로 입금한 금액과 거래 "
 "내용, 그리고 거래수수료로 얻은 거래소의 수익."
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1406,39 +1406,39 @@ msgstr ""
 "<span class='tlr'>정보 보호에 우호적</span>이며 온라인 거래를 <span "
 "class='tlr'>빠르고 쉽게</span> 만드는 결제 시스템을 제공합니다."
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "등록이 필요없는 결제"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "자연스러운 데이터 보호"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "사기가 어렵도록 디자인됨"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "새로운 통화가 아닙니다!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr "공동체가 직접 결제 기반시스템을 운영할 수 있도록 권한을 줍니다"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "프리 소프트웨어(자유 소프트웨어)"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "데모버전을 사용해보세요!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "문서 읽기"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1848,6 +1848,9 @@ msgstr "RSS 피드 구독"
 msgid "read more"
 msgstr "더 읽기"
 
+#~ msgid "Community"
+#~ msgstr "커뮤니티"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1874,9 +1877,6 @@ msgstr "더 읽기"
 #~ msgid "Internals"
 #~ msgstr "내부사항"
 
-#~ msgid "Community"
-#~ msgstr "커뮤니티"
-
 #~ msgid "Code"
 #~ msgstr "코드"
 
diff --git a/locale/messages.pot b/locale/messages.pot
index c215009..354b232 100644
--- a/locale/messages.pot
+++ b/locale/messages.pot
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 20:57+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.8.0\n"
+"Generated-By: Babel 2.10.3\n"
 
 #: common/base.j2:5 common/news.j2:5
 msgid "GNU Taler"
@@ -29,7 +29,7 @@ msgstr ""
 msgid "Contact"
 msgstr ""
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr ""
 
@@ -67,20 +67,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr ""
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr ""
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr ""
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr ""
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1172,50 +1172,50 @@ msgid ""
 "from transaction fees."
 msgstr ""
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-"
 "friendly</span> online transactions <span class='tlr'>fast and "
 "easy</span>."
 msgstr ""
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr ""
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr ""
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr ""
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr ""
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr ""
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr ""
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr ""
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
diff --git a/locale/pt/LC_MESSAGES/messages.po b/locale/pt/LC_MESSAGES/messages.po
index 3a36309..86c049e 100644
--- a/locale/pt/LC_MESSAGES/messages.po
+++ b/locale/pt/LC_MESSAGES/messages.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: GNU taler master\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2021-03-25 09:18+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: Portuguese <http://weblate.taler.net/projects/gnu-taler/main-"
@@ -31,7 +31,7 @@ msgstr "Reservas eletrónicas livres anónimas tributáveis"
 msgid "Contact"
 msgstr "Contacto"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Documentos"
 
@@ -83,20 +83,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "Informações sobre a licença JavaScript"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Funcionalidades"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "Princípios"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Notícias"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1250,51 +1250,51 @@ msgid ""
 "fees."
 msgstr ""
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
 msgstr ""
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr ""
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr ""
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr ""
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr ""
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr ""
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr ""
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 #, fuzzy
 #| msgid "Docs"
 msgid "Read Docs"
 msgstr "Documentos"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1643,15 +1643,15 @@ msgstr "subscreva ao nosso feed RSS"
 msgid "read more"
 msgstr "ler mais"
 
+#~ msgid "Community"
+#~ msgstr "Comunidade"
+
 #~ msgid "Components"
 #~ msgstr "Componentes"
 
 #~ msgid "Internals"
 #~ msgstr "internos"
 
-#~ msgid "Community"
-#~ msgstr "Comunidade"
-
 #~ msgid ""
 #~ "You can find some team members in the IRC channel <tt>#taler</tt> on "
 #~ "<tt>irc.freenode.net</tt>."
diff --git a/locale/pt_BR/LC_MESSAGES/messages.po b/locale/pt_BR/LC_MESSAGES/messages.po
index 0659325..1008520 100644
--- a/locale/pt_BR/LC_MESSAGES/messages.po
+++ b/locale/pt_BR/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-02-22 10:48+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: Portuguese (Brazil) <http://weblate.taler.net/projects/gnu-"
@@ -32,7 +32,7 @@ msgstr "Reservas eletrônicas livres anônimas tributáveis"
 msgid "Contact"
 msgstr "Contato"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 #, fuzzy
 msgid "Docs"
 msgstr "Documentação"
@@ -82,23 +82,23 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "Informações de licença de JavaScript"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 #, fuzzy
 msgid "Features"
 msgstr "Recursos"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 #, fuzzy
 msgid "Principles"
 msgstr "Princípios"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 #, fuzzy
 msgid "News"
 msgstr "Novidades"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1365,50 +1365,50 @@ msgid ""
 "fees."
 msgstr ""
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
 msgstr ""
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr ""
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr ""
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr ""
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr ""
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr ""
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr ""
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 #, fuzzy
 msgid "Read Docs"
 msgstr "Documentação"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1756,6 +1756,9 @@ msgstr "Inscrever-se no Feed RSS"
 msgid "read more"
 msgstr "ler mais"
 
+#~ msgid "Community"
+#~ msgstr "Comunidade"
+
 #, fuzzy
 #~ msgid ""
 #~ "If your friends provide goods or services for you in exchange for a "
@@ -1777,9 +1780,6 @@ msgstr "ler mais"
 #~ msgid "Components"
 #~ msgstr "Componentes"
 
-#~ msgid "Community"
-#~ msgstr "Comunidade"
-
 #~ msgid "Code"
 #~ msgstr "Código"
 
diff --git a/locale/ru/LC_MESSAGES/messages.po b/locale/ru/LC_MESSAGES/messages.po
index d4ef876..820f492 100644
--- a/locale/ru/LC_MESSAGES/messages.po
+++ b/locale/ru/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-02-10 22:16+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: Russian <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -33,7 +33,7 @@ msgstr "Taxable Anonymous Libre Electronic Reserves"
 msgid "Contact"
 msgstr "Контакты"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Документация"
 
@@ -85,20 +85,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "Информация о лицензии JavaScript"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Особенности"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "Принципы"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Новости"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1397,11 +1397,11 @@ msgid ""
 "fees."
 msgstr ""
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr ""
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1410,40 +1410,40 @@ msgstr ""
 "систему, которая позволяет осуществлять денежные операции онлайн <span "
 "class='tlr'>быстро и просто</span>."
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "Оплата товаров и услуг без регистрации"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "Защита данных по умолчанию"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "Защита от мошенничества по дизайну"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "Не создаёт новую валюту!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr ""
 "Возможность для сообществ создавать свою собственную платёжную инфраструктуру"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "Свободное программное обеспечение"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "Попробуйте демоверсию!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "Техническая документация"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1886,6 +1886,9 @@ msgstr "подпишитесь на нашу RSS-ленту"
 msgid "read more"
 msgstr "Подробнее"
 
+#~ msgid "Community"
+#~ msgstr "Сообщество"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1913,9 +1916,6 @@ msgstr "Подробнее"
 #~ msgid "Internals"
 #~ msgstr "Внутренним пользователям"
 
-#~ msgid "Community"
-#~ msgstr "Сообщество"
-
 #~ msgid "Code"
 #~ msgstr "Код"
 
diff --git a/locale/sv/LC_MESSAGES/messages.po b/locale/sv/LC_MESSAGES/messages.po
index e7ec5ff..7833ec5 100644
--- a/locale/sv/LC_MESSAGES/messages.po
+++ b/locale/sv/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-02-11 12:44+0000\n"
 "Last-Translator: Stefan <eintritt@hotmail.com>\n"
 "Language-Team: Swedish <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -32,7 +32,7 @@ msgstr "Skattepliktiga anonyma och fria elektroniska tillgångar"
 msgid "Contact"
 msgstr "Kontakt"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Dokument"
 
@@ -84,20 +84,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "JavaScript licensinformation"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Funktioner"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "Principer"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Nyheter"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1449,11 +1449,11 @@ msgstr ""
 "motsvarande insättningar som utförs av handlare med växlingskontoret och "
 "intäkterna från växlingskontorets transaktionsavgifter."
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr "Taler logotyp"
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1462,39 +1462,39 @@ msgstr ""
 "sekretessvänliga </span> online-transaktioner <span class = 'tlr'> snabbt "
 "och enkelt </span>."
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "Betalningar utan registrering"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "Dataskydd som standard"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "Design som eliminerar bedrägeri"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "Inte en ny valuta!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr "Ger grupper möjlighet att driva sin egen betalningsinfrastruktur"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "Gratis mjukvara"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "Prova demon!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "Läs dokumenten"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1919,6 +1919,9 @@ msgstr "prenumerera på vårt RSS-flöde"
 msgid "read more"
 msgstr "läs mer"
 
+#~ msgid "Community"
+#~ msgstr "Gemenskap"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1946,9 +1949,6 @@ msgstr "läs mer"
 #~ msgid "Internals"
 #~ msgstr "Inre delar"
 
-#~ msgid "Community"
-#~ msgstr "Gemenskap"
-
 #~ msgid "Code"
 #~ msgstr "Kod"
 
diff --git a/locale/tr/LC_MESSAGES/messages.po b/locale/tr/LC_MESSAGES/messages.po
index 44fd5df..33997ba 100644
--- a/locale/tr/LC_MESSAGES/messages.po
+++ b/locale/tr/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2022-03-10 18:04+0000\n"
 "Last-Translator: Stefan Kügel <skuegel@web.de>\n"
 "Language-Team: Turkish <http://weblate.taler.net/projects/gnu-taler/main-web-"
@@ -33,7 +33,7 @@ msgstr ""
 msgid "Contact"
 msgstr "İletişim"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "Belgelerimiz"
 
@@ -77,20 +77,20 @@ msgstr ""
 msgid "JavaScript license information"
 msgstr "JavaScript lisans bilgileri"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "Özellikleri"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "İlkelerimiz"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "Haberdar olun"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr "Şirket"
 
@@ -1450,11 +1450,11 @@ msgstr ""
 "işlemlerinin değeri ve karşılık gelen banka havalesi ayrıntıları ve işlem "
 "ücretlerinden değişim."
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr "Taler logosu"
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1462,39 +1462,39 @@ msgstr ""
 "<span class='tlr'>gizlilik dostu</span> çevrimiçi işlemleri <span "
 "class='tlr'>hızlı ve kolay</span> yapan bir ödeme sistemi sağlıyoruz."
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "Kayıt olmadan yapılabilen ödemeler"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "Varsayılan olarak yapmakta olduğumuz veri koruması"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "Dolandırıcılık yaptığımız tasarımla ortadan kaldırıldı"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "Yeni bir para birimi değil!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr "Toplulukları kendi ödeme altyapılarını çalıştırmaları için güçlendirir"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "Özgür Yazılım"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "Tanıtımı deneyiniz !"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "Belgelerimizi okuyunuz"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr "Ticari Destek"
 
@@ -1924,6 +1924,9 @@ msgstr "RSS akışına abone olun"
 msgid "read more"
 msgstr "daha fazlasını okumak için"
 
+#~ msgid "Community"
+#~ msgstr "Topluluk"
+
 #~ msgid ""
 #~ "If your friends provide goods or services for you in exchange for a "
 #~ "payment, they can easily set up a Taler merchant and receive the payment "
@@ -1946,9 +1949,6 @@ msgstr "daha fazlasını okumak için"
 #~ msgid "Internals"
 #~ msgstr "Dahili Bileşenler"
 
-#~ msgid "Community"
-#~ msgstr "Topluluk"
-
 #~ msgid "Code"
 #~ msgstr "Kaynak Kodlarımız"
 
diff --git a/locale/zh_Hans/LC_MESSAGES/messages.po b/locale/zh_Hans/LC_MESSAGES/messages.po
index 8e12f8e..53c88db 100644
--- a/locale/zh_Hans/LC_MESSAGES/messages.po
+++ b/locale/zh_Hans/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2021-08-24 09:07+0000\n"
 "Last-Translator: Yiyuan Zhou <hi7fair@gmail.com>\n"
 "Language-Team: Chinese (Simplified) <http://weblate.taler.net/projects/gnu-"
@@ -32,7 +32,7 @@ msgstr "可征税的匿名自由电子储存"
 msgid "Contact"
 msgstr "联系我们"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "相关文件"
 
@@ -82,20 +82,20 @@ msgstr "此页面仅使用<a href='https://www.gnu.org/'>免费软件</a>创建
 msgid "JavaScript license information"
 msgstr "JavaScript 许可信息"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "产品特点"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "设计理念"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "最新消息"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1336,11 +1336,11 @@ msgstr ""
 "客户从交易所合法提取的数字货币数量,客户&#39;钱包中未兑换的数字货币的价值,商"
 "户在交易所进行存款操作的价值和相应的电汇明细,以及交易所的交易费收入。"
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr "Taler标志"
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1348,39 +1348,39 @@ msgstr ""
 "我们提供了一种支付系统,使<span class='tlr'>隐私友好的</span>在线交易<span "
 "class='tlr'>快速和简单</span>。"
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "无需注册的支付"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "默认的数据保护"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "通过设计消除欺诈行为"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "不是一种新的货币!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr "使社区有能力运行自己的支付基础设施"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "免费软件"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "试用演示!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "阅读文档"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1767,6 +1767,9 @@ msgstr "订阅我们的 RSS 提要"
 msgid "read more"
 msgstr "阅读更多"
 
+#~ msgid "Community"
+#~ msgstr "社区"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1791,9 +1794,6 @@ msgstr "阅读更多"
 #~ msgid "Internals"
 #~ msgstr "内部构件"
 
-#~ msgid "Community"
-#~ msgstr "社区"
-
 #~ msgid "Code"
 #~ msgstr "Code"
 
diff --git a/locale/zh_Hant/LC_MESSAGES/messages.po b/locale/zh_Hant/LC_MESSAGES/messages.po
index de0b673..b1b5fe8 100644
--- a/locale/zh_Hant/LC_MESSAGES/messages.po
+++ b/locale/zh_Hant/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-11-04 19:47+0100\n"
+"POT-Creation-Date: 2022-11-20 15:55+0000\n"
 "PO-Revision-Date: 2021-08-23 08:58+0000\n"
 "Last-Translator: Ting-Yi Fu <futingyi0215@gmail.com>\n"
 "Language-Team: Chinese (Traditional) <http://weblate.taler.net/projects/gnu-"
@@ -32,7 +32,7 @@ msgstr "應課稅匿名自由電子儲備 (Taxable Anonymous Libre Electronic Re
 msgid "Contact"
 msgstr "聯絡我們"
 
-#: common/footer.j2.inc:16 common/navigation.j2.inc:25
+#: common/footer.j2.inc:16 common/navigation.j2.inc:29
 msgid "Docs"
 msgstr "相關文件"
 
@@ -82,20 +82,20 @@ msgstr "此頁面僅使用 <a href='https://www.gnu.org/'>自由軟體</a> 來
 msgid "JavaScript license information"
 msgstr "JavaScript 授權資訊"
 
-#: common/navigation.j2.inc:23
+#: common/navigation.j2.inc:27
 msgid "Features"
 msgstr "功能"
 
-#: common/navigation.j2.inc:24
+#: common/navigation.j2.inc:28
 msgid "Principles"
 msgstr "設計理念"
 
-#: common/navigation.j2.inc:26 template/index.html.j2:58
+#: common/navigation.j2.inc:30 template/index.html.j2:53
 #: template/news/index.html.j2:8
 msgid "News"
 msgstr "最新消息"
 
-#: common/navigation.j2.inc:27
+#: common/navigation.j2.inc:32
 msgid "Company"
 msgstr ""
 
@@ -1341,11 +1341,11 @@ msgstr ""
 "客戶合法從交易所提取的數位硬幣數量、客戶錢包中尚未兌換的電子貨幣的價值、商家"
 "在交易所進行的存款操作的價值和相應的電匯詳細資訊、以及交易所交易費用的收入。"
 
-#: template/index.html.j2:7
+#: template/index.html.j2:6
 msgid "Taler logo"
 msgstr "Taler logo"
 
-#: template/index.html.j2:16
+#: template/index.html.j2:11
 msgid ""
 "We provide a payment system that makes <span class='tlr'>privacy-friendly</"
 "span> online transactions <span class='tlr'>fast and easy</span>."
@@ -1353,39 +1353,39 @@ msgstr ""
 "我們提供了一種付款系統,讓<span class='tlr'>隱私友好的</span>在線交易<span "
 "class='tlr'>更加輕鬆便捷</span>。"
 
-#: template/index.html.j2:21
+#: template/index.html.j2:16
 msgid "Payments without registration"
 msgstr "未經註冊的付款"
 
-#: template/index.html.j2:25
+#: template/index.html.j2:20
 msgid "Data protection by default"
 msgstr "默認情況下的資料保護"
 
-#: template/index.html.j2:29
+#: template/index.html.j2:24
 msgid "Fraud eliminated by design"
 msgstr "通過設計消除欺詐"
 
-#: template/index.html.j2:33
+#: template/index.html.j2:28
 msgid "Not a new currency!"
 msgstr "不是一個新的貨幣!"
 
-#: template/index.html.j2:37
+#: template/index.html.j2:32
 msgid "Empowers communities to run their own payment infrastructure"
 msgstr "授予權力於社區以運行自身的支付基礎設施"
 
-#: template/index.html.j2:41
+#: template/index.html.j2:36
 msgid "Free Software"
 msgstr "自由軟體"
 
-#: template/index.html.j2:44
+#: template/index.html.j2:39
 msgid "Try Demo!"
 msgstr "嘗試Demo!"
 
-#: template/index.html.j2:45
+#: template/index.html.j2:40
 msgid "Read Docs"
 msgstr "閱讀文件"
 
-#: template/index.html.j2:46
+#: template/index.html.j2:41
 msgid "Commercial Support"
 msgstr ""
 
@@ -1775,6 +1775,9 @@ msgstr "訂閱我們的 RSS feed"
 msgid "read more"
 msgstr "閱讀更多"
 
+#~ msgid "Community"
+#~ msgstr "社群"
+
 #, fuzzy
 #~| msgid ""
 #~| "If your friend provides goods or services for you in exchange for a "
@@ -1799,9 +1802,6 @@ msgstr "閱讀更多"
 #~ msgid "Internals"
 #~ msgstr "內部"
 
-#~ msgid "Community"
-#~ msgstr "社群"
-
 #~ msgid "Code"
 #~ msgstr "程式碼"
 
-- 
2.35.1

screenshot-1-before.png (291,517 bytes)
screenshot-2-after.png (288,806 bytes)
screenshot-3-before.png (195,281 bytes)   
screenshot-3-before.png (195,281 bytes)   
screenshot-4-after.png (200,315 bytes)   
screenshot-4-after.png (200,315 bytes)   
screenshot-5-before.png (110,511 bytes)   
screenshot-5-before.png (110,511 bytes)   
screenshot-6-after.png (110,529 bytes)   
screenshot-6-after.png (110,529 bytes)   

Activities

Stefan

2022-11-20 20:40

developer   ~0019467

Dear Nervuri,

From my point of view this looks gorgeous! As I do not own a smartphone (just a dumb mobile phone), I would recommend to have Florian take a look on the improvements. Therefore, I assign this post to Florian, who will please not waste his Sunday evening for assessment.

My 2 cents & thanks to Nervuri,
and thanks in advance to Florian!
S.

Christian Grothoff

2022-11-21 01:02

manager   ~0019468

Stefan: all of these changes are good, no need for further review from Florian. Can you please apply them?
You may also want to check about applying similar changes (especially for the navbar) to our other sites (anastasis.lu, taler-systems.com, gnunet.org), similar to 0007386: likely similar breakage applies to the other sites. Can you do that? If not, please ask Sebastian to have a look.

nervuri

2022-11-21 19:41

reporter   ~0019469

> (anastasis.lu, taler-systems.com, gnunet.org)

Indeed, the menu button is broken for anastatis.lu and taler-systems.com as well. The fix is simple (see the first patch), but it may also be worth going through the (long) list of Bootstrap 5's breaking changes and see if any of them affect your websites. Again, the list is at https://getbootstrap.com/docs/5.2/migration/#v510

The navbar on gnunet.org works, because it still uses Bootstrap 4. Sticking with Bootstrap 4 is an option too, of course.

One more thing: when using a dark theme, the favicon is invisible (black on black). So here's a favicon with a white background, like gnu.org has... although maybe you should make a favicon based on the Taler logo later on.

The browser caches favicons for a long time, so if you want the new one to show, add this to common/header.j2.inc:

    <link rel="icon" type="image/ico" href="/favicon.ico?v=2">
favicon.ico (15,086 bytes)   
favicon.ico (15,086 bytes)   

Stefan

2022-12-20 23:51

developer   ~0019530

All of these patches have been applied to taler.net. The remainder of websites is about to follow.

nervuri

2022-12-21 11:50

reporter   ~0019532

I don't know what you did exactly, but the navbar doesn't look right, it's less wide than it should be. Compare with the screenshots above to see how it's supposed to look.

Looking at the commit history, I see that you haven't applied my patches as I provided them. You can apply patches directly with `git am`. For example:

git am 0001-fix-navbar-menu-button.patch

Stefan

2022-12-21 13:41

developer   ~0019533

Should be fixed now.

Stefan

2022-12-28 12:18

developer   ~0019544

All patches have been applied. From my point of view (using browsers Firefox, Konqueror and Chromium) the result seems to work. The Hamburger menu should work, too. Can anybody check the web sites using a smartphone?

Thank you again, Nervuri, for reporting and assisting.
Cheers,
Stefan

Issue History

Date Modified Username Field Change
2022-11-20 18:52 nervuri New Issue
2022-11-20 18:52 nervuri Status new => assigned
2022-11-20 18:52 nervuri Assigned To => Stefan
2022-11-20 18:52 nervuri File Added: 0001-fix-navbar-menu-button.patch
2022-11-20 18:52 nervuri File Added: 0002-improve-navbar-appearance.patch
2022-11-20 18:52 nervuri File Added: 0003-improve-spacing-for-logo-on-index-page.patch
2022-11-20 18:52 nervuri File Added: 0004-build-result-update-.po-files-and-submodules.patch
2022-11-20 18:52 nervuri File Added: screenshot-1-before.png
2022-11-20 18:52 nervuri File Added: screenshot-2-after.png
2022-11-20 18:52 nervuri File Added: screenshot-3-before.png
2022-11-20 18:52 nervuri File Added: screenshot-4-after.png
2022-11-20 18:52 nervuri File Added: screenshot-5-before.png
2022-11-20 18:52 nervuri File Added: screenshot-6-after.png
2022-11-20 20:40 Stefan Note Added: 0019467
2022-11-20 20:40 Stefan Assigned To Stefan => Florian Dold
2022-11-21 01:02 Christian Grothoff Note Added: 0019468
2022-11-21 01:02 Christian Grothoff Assigned To Florian Dold => Stefan
2022-11-21 19:41 nervuri Note Added: 0019469
2022-11-21 19:41 nervuri File Added: favicon.ico
2022-12-20 23:51 Stefan Note Added: 0019530
2022-12-21 11:50 nervuri Note Added: 0019532
2022-12-21 13:41 Stefan Note Added: 0019533
2022-12-28 12:18 Stefan Status assigned => resolved
2022-12-28 12:18 Stefan Resolution open => fixed
2022-12-28 12:18 Stefan Product Version => 0.9.1
2022-12-28 12:18 Stefan Fixed in Version => 0.9.1
2022-12-28 12:18 Stefan Target Version => 0.9.1
2022-12-28 12:18 Stefan Note Added: 0019544
2023-01-26 22:53 Christian Grothoff Status resolved => closed