i18n: add variables for footer translation

This commit is contained in:
Jimmy Cai 2020-11-28 12:29:43 +01:00
parent 50b3ed18e3
commit 81c0b1ba9c
3 changed files with 12 additions and 8 deletions

View file

@ -32,7 +32,7 @@
other = "#PAGES_COUNT pages (#TIME_SECONDS seconds)"
[footerBuiltWith]
other = "Built with"
other = "Built with {{ .Generator }}"
[footerDesignedBy]
other = "designed by"
other = "Theme {{ .Theme }} designed by {{ .DesignedBy }}"

View file

@ -32,7 +32,7 @@
other = "#PAGES_COUNT pages (#TIME_SECONDS secondes)"
[footerBuiltWith]
other = "Généré avec"
other = "Généré avec {{ .Generator }}"
[footerDesignedBy]
other = "conçu par"
other = "Thème {{ .Theme }} conçu par {{ .DesignedBy }}"

View file

@ -1,8 +1,12 @@
{{- $ThemeVersion := "1.1.0" -}}
<footer class="site-footer">
<section class="copyright">&copy; {{ now.Format "2006" }} {{ .Site.Title }}</section>
<section class="powerby">
{{ T "footerBuiltWith" }} <a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a> <br />
Theme <b><a href="https://github.com/CaiJimmy/hugo-theme-stack" target="_blank" rel="noopener" data-version="1.1.0">Stack</a></b> {{ T "footerDesignedBy" }}
<a href="https://jimmycai.com" target="_blank" rel="noopener">Jimmy</a>
{{- $Generator := `<a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a>` -}}
{{- $Theme := printf `<b><a href="https://github.com/CaiJimmy/hugo-theme-stack" target="_blank" rel="noopener" data-version="%s">Stack</a></b>` $ThemeVersion -}}
{{- $DesignedBy := `<a href="https://jimmycai.com" target="_blank" rel="noopener">Jimmy</a>` -}}
{{ T "footerBuiltWith" (dict "Generator" $Generator) | safeHTML }} <br />
{{ T "footerDesignedBy" (dict "Theme" $Theme "DesignedBy" $DesignedBy) | safeHTML }}
</section>
</footer>