Use i18n for site navigation link tooltips (#392)
This commit is contained in:
parent
1ae24ada38
commit
08d842f171
|
@ -33,3 +33,6 @@ other = "Изпрати"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} страница"
|
|
@ -33,3 +33,6 @@ other = "Senden"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} Seite"
|
|
@ -33,3 +33,6 @@ other = "Send"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} page"
|
|
@ -33,3 +33,6 @@ other = "Enviar"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "A continuación encontrará las páginas asociadas a “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} pagina"
|
|
@ -33,3 +33,6 @@ other = "Envoyer"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} page"
|
|
@ -33,3 +33,6 @@ other = "Küldés"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Ezen a lapon a(z) {{ .Title }} kategóriába tartozó cikkeket találod"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} oldal"
|
|
@ -33,3 +33,6 @@ other = "Invia"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} pagina"
|
|
@ -33,3 +33,6 @@ other = "Stuur"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} pagina"
|
|
@ -33,3 +33,6 @@ other = "Sende"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} side"
|
|
@ -33,3 +33,6 @@ other = "Enviar"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Abaixo você encontrará as páginas que utilizam o termo de taxonomia “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} página"
|
|
@ -33,3 +33,6 @@ other = "Отправить"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Ниже вы найдете страницы, на которых используется термин таксономии “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} страница"
|
|
@ -33,3 +33,6 @@ other = "Skicka"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} sida"
|
|
@ -33,3 +33,6 @@ other = "Gönder"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Aşağıda, “{{ .Title }}” sınıflandırma terimini kullanan sayfaları bulacaksınız."
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} sayfa"
|
|
@ -33,3 +33,6 @@ other = "Надіслати"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "Below you will find pages that utilize the taxonomy term “{{ .Title }}”"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} сторінки"
|
|
@ -33,3 +33,6 @@ other = "送出"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "標籤為 “{{ .Title }}” 的頁面如下"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} 頁"
|
|
@ -33,3 +33,6 @@ other = "发送"
|
|||
|
||||
[taxonomyPageList]
|
||||
other = "标签为“{{ .Title }}”的页面如下"
|
||||
|
||||
[pageTitle]
|
||||
other = "{{ .Name }} 页"
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue