Skip to content
This repository was archived by the owner on Nov 1, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions i18n/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,8 @@
# Footer
- id: poweredBy
translation: 'This page was built with <a href="https://gohugo.io/">Hugo {{ . }}</a> using the <a href="https://github.com/basil/antora-default-ui-hugo-theme">Hugo port</a> of the <a href="https://gitlab.com/antora/antora-ui-default">Antora default UI</a>. The source code for this UI is licensed under the terms of the <a href="https://www.mozilla.org/en-US/MPL/2.0/">Mozilla Public License, Version 2.0</a> (MPL-2.0).'


# Taxo
- id: categories
translation: catégories
34 changes: 34 additions & 0 deletions i18n/fr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Content
- id: contents
translation: "Sur cette page..."
- id: continueReading
translation: "Poursuivre la lecture &ldquo;{{ . }}&rdquo; &hellip;"
- id: dateFormat
translation: "January 2, 2006"
- id: editThisPage
translation: "Editer cette page"
- id: in
translation: "en"
- id: lastModified
translation: "(Modifié le {{ . }})"
- id: postedOnDate
translation: "Enrégistré le {{ . }}"
- id: taggedWith
translation: "Marqué par"


# 404 page
- id: pageNotFoundLink
translation: 'Cette page n&rsquo;existe pas. Elle se trouve probablement ailleurs sur le site. Vous pouvez retourner à la <a href="{{ .RelPermalink }}">page d&rsquo;acceuil</a> ou bien suivre les liens de navigation à gauche.'
- id: pageNotFoundAction
translation: 'Si vous êtes arrivé ici en cliquant sur un lien, Veuillez avertir le propriétaire du site que le lien est brisé. Si vous avez tapé le lien manuellement veuillez vérifiez que vous l&rsquo;avez saisi correctement.'


# Footer
- id: poweredBy
translation: 'Cette page a été construite avec <a href="https://gohugo.io/">Hugo {{ . }}</a> et le <a href="https://github.com/basil/antora-default-ui-hugo-theme">port Hugo</a> de <a href="https://gitlab.com/antora/antora-ui-default">Antora default UI</a>. Ce code est publié sous les termes de <a href="https://www.mozilla.org/en-US/MPL/2.0/">Mozilla Public License, Version 2.0</a> (MPL-2.0).'


# Taxo
- id: categories
translation: catégories
2 changes: 1 addition & 1 deletion layouts/_default/baseof.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html{{ with .Site.LanguageCode }} lang="{{ . }}"{{ end }}>
<html{{ with .Language.Lang }} lang="{{ . }}"{{ end }}>
<head>
{{ partial "head.html" . }}
</head>
Expand Down
4 changes: 2 additions & 2 deletions layouts/partials/header-content.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
<a class="navbar-link" href="#" title="{{ .Title | markdownify }}">{{ .Name }}</a>
<div class="navbar-dropdown">
{{ range .Children }}
<a class="navbar-item" href="{{ .URL }}" title="{{ .Title | markdownify }}">{{ .Name }}</a>
<a class="navbar-item" href="{{ .URL | absLangURL }}" title="{{ .Title | markdownify }}">{{ .Name }}</a>
{{ end }}
</div>
</div>
{{ else }}
<a class="navbar-item" href="{{ .URL }}" title="{{ .Title | markdownify }}">{{ .Name }}</a>
<a class="navbar-item" href="{{ .URL | absLangURL }}" title="{{ .Title | markdownify }}">{{ .Name }}</a>
{{ end }}
{{ end }}
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/toc.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<aside class="toc sidebar" data-title="{{ i18n "Contents" }}" data-levels="2">
<aside class="toc sidebar" data-title="{{ i18n "contents" }}" data-levels="2">
<div class="toc-menu"></div>
</aside>