Add IsTranslated to Node and Page
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 9 Aug 2016 12:26:55 +0000 (14:26 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 6 Sep 2016 15:32:19 +0000 (18:32 +0300)
Makes the templates simpler.

See #2309

docs/content/content/multilingual.md
hugolib/node.go
hugolib/page.go

index f5ff46f9c37961d984d5aae933f28ed884a26c6f..7e1df45e18653cf51fcd38cc357ff36b41db062c 100644 (file)
@@ -93,13 +93,12 @@ By having the same _base file name_, the content pieces are linked together as t
 To create a list of links to translated content, use a template similar to this:
 
 ```
-{{ $translations := .Translations }} 
-{{ if gt (len $translations) 0 }}
+{{ if .IsTranslated }}
 <h4>{{ i18n "translations" }}</h4>
 <ul>
-    {{ range $translations }}
+    {{ range .Translations }}
     <li>
-        <a href="{{ .Permalink }}">{{ .Lang }}: {{ .Title }}</a>
+        <a href="{{ .Permalink }}">{{ .Lang }}: {{ .Title }}{{ if .IsPage }} ({{ i18n "wordCount" . }}){{ end }}</a>
     </li>
     {{ end}}
 </ul>
index 53c22af13c5ab7712fe337221ce2ae211cc4b599..780190ec6f4efc9b8ea5b57e1759868582455db3 100644 (file)
@@ -271,10 +271,16 @@ func (n *Node) Translations() Nodes {
                        translations = append(translations, t)
                }
        }
-
        return translations
 }
 
+// IsTranslated returns whether this node is translated to
+// other language(s).
+func (n *Node) IsTranslated() bool {
+       n.initTranslations()
+       return len(n.translations) > 1
+}
+
 func (n *Node) initTranslations() {
        n.translationsInit.Do(func() {
                if n.translations != nil {
index 74f51c0bb66809490419979e4dd7e1d369c74503..b09e2b1f7546bf3bcfab1425fd68b91721f93705 100644 (file)
@@ -531,6 +531,12 @@ func (p *Page) AllTranslations() Pages {
        return p.translations
 }
 
+// IsTranslated returns whether this content file is translated to
+// other language(s).
+func (p *Page) IsTranslated() bool {
+       return len(p.translations) > 1
+}
+
 // Translations returns the translations excluding the current Page.
 func (p *Page) Translations() Pages {
        translations := make(Pages, 0)