Translate fr only strings
This commit is contained in:
parent
21967b12fc
commit
9000fbd752
5 changed files with 68 additions and 10 deletions
|
|
@ -22,14 +22,14 @@
|
|||
</div>
|
||||
{{ end }}
|
||||
<span class="meta">
|
||||
Par
|
||||
{{ i18n "by" }}
|
||||
{{ if .Params.author }}
|
||||
{{ .Params.author }}
|
||||
{{ else }}
|
||||
{{ .Site.Title }}
|
||||
{{ end }}
|
||||
le
|
||||
{{ .Date.Format "2 Jan 2006" }}
|
||||
{{ i18n "on" }}
|
||||
{{ .Date.Format (i18n "date_fmt") }}
|
||||
{{ if .Site.Params.page_view_conter }}
|
||||
{{ partial "page_view_counter.html" . }}
|
||||
{{ end }}
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
|
||||
{{ if not (eq (.Param "showtoc") false) }}
|
||||
<header>
|
||||
<h2>Sommaire</h2>
|
||||
<h2>{{ i18n "toc" }}</h2>
|
||||
</header>
|
||||
{{.TableOfContents}}
|
||||
{{ end }}
|
||||
|
|
@ -69,12 +69,12 @@
|
|||
<div>
|
||||
{{ if .PrevInSection }}
|
||||
<a class="mb-2 btn btn-outline-primary float-left" href="{{ .PrevInSection.Permalink }}" data-toggle="tooltip" data-placement="top" title="{{ .PrevInSection.Title }}">←
|
||||
Article précédent
|
||||
{{ i18n "prev_article" }}
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .NextInSection }}
|
||||
<a class="mb-2 btn btn-outline-primary float-right" href="{{ .NextInSection.Permalink }}" data-toggle="tooltip" data-placement="top" title="{{ .NextInSection.Title}}">
|
||||
Article suivant →
|
||||
{{ i18n "next_article" }} →
|
||||
</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue