mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Sarah Grefalda
01.20.2021 08d842f171dfdfe97fafe888fe1a19ecd9f9cc28
Use i18n for site navigation link tooltips (#392)

17 files modified
50 ■■■■■ changed files
i18n/bg.toml 3 ●●●●● patch | view | raw | blame | history
i18n/de.toml 3 ●●●●● patch | view | raw | blame | history
i18n/en.toml 3 ●●●●● patch | view | raw | blame | history
i18n/es.toml 3 ●●●●● patch | view | raw | blame | history
i18n/fr.toml 3 ●●●●● patch | view | raw | blame | history
i18n/hu.toml 3 ●●●●● patch | view | raw | blame | history
i18n/it.toml 3 ●●●●● patch | view | raw | blame | history
i18n/nl.toml 3 ●●●●● patch | view | raw | blame | history
i18n/no.toml 3 ●●●●● patch | view | raw | blame | history
i18n/pt.toml 3 ●●●●● patch | view | raw | blame | history
i18n/ru.toml 3 ●●●●● patch | view | raw | blame | history
i18n/sv.toml 3 ●●●●● patch | view | raw | blame | history
i18n/tr.toml 3 ●●●●● patch | view | raw | blame | history
i18n/uk.toml 3 ●●●●● patch | view | raw | blame | history
i18n/zh-tw.toml 3 ●●●●● patch | view | raw | blame | history
i18n/zh.toml 3 ●●●●● patch | view | raw | blame | history
layouts/partials/site-navigation.html 2 ●●● patch | view | raw | blame | history
i18n/bg.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} страница"
i18n/de.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} Seite"
i18n/en.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} page"
i18n/es.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "A continuación encontrará las páginas asociadas a “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} pagina"
i18n/fr.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} page"
i18n/hu.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Ezen a lapon a(z) {{ .Title }} kategóriába tartozó cikkeket találod"
[pageTitle]
other = "{{ .Name }} oldal"
i18n/it.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} pagina"
i18n/nl.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} pagina"
i18n/no.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} side"
i18n/pt.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Abaixo você encontrará as páginas que utilizam o termo de taxonomia “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} página"
i18n/ru.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Ниже вы найдете страницы, на которых используется термин таксономии “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} страница"
i18n/sv.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} sida"
i18n/tr.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Aşağıda, “{{ .Title }}” sınıflandırma terimini kullanan sayfaları bulacaksınız."
[pageTitle]
other = "{{ .Name }} sayfa"
i18n/uk.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
[pageTitle]
other = "{{ .Name }} сторінки"
i18n/zh-tw.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "標籤為 “{{ .Title }}” 的頁面如下"
[pageTitle]
other = "{{ .Name }} 頁"
i18n/zh.toml
@@ -33,3 +33,6 @@
[taxonomyPageList]
other = "标签为“{{ .Title }}”的页面如下"
[pageTitle]
other = "{{ .Name }} 页"
layouts/partials/site-navigation.html
@@ -13,7 +13,7 @@
        <ul class="pl0 mr3">
          {{ range .Site.Menus.main }}
          <li class="list f5 f4-ns fw4 dib pr3">
            <a class="hover-white no-underline white-90" href="{{ .URL }}" title="{{ .Name }} page">
            <a class="hover-white no-underline white-90" href="{{ .URL }}" title="{{ i18n "pageTitle" . }}">
              {{ .Name }}
            </a>
          </li>