mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-17 13:25:57 -06:00
Support multilingual mode (experimental)
Please report any bugs!
This commit is contained in:
parent
03834fb1ba
commit
c7cfb9c844
12
data/meses.toml
Normal file
12
data/meses.toml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
1 = "enero"
|
||||||
|
2 = "febrero"
|
||||||
|
3 = "marzo"
|
||||||
|
4 = "abril"
|
||||||
|
5 = "mayo"
|
||||||
|
6 = "julio"
|
||||||
|
7 = "junio"
|
||||||
|
8 = "agosto"
|
||||||
|
9 = "septiembre"
|
||||||
|
10 = "octubre"
|
||||||
|
11 = "noviembre"
|
||||||
|
12 = "diciembre"
|
31
i18n/en.toml
Normal file
31
i18n/en.toml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
[credit_comment]
|
||||||
|
other = "<!-- bobatheme is available under the MIT license at https://github.com/BBaoVanC/bobatheme. -->"
|
||||||
|
|
||||||
|
[long_date]
|
||||||
|
other = "{{ .Date.Format `January 2, 2006` }}"
|
||||||
|
|
||||||
|
[wordcount]
|
||||||
|
one = "{{ . }} word"
|
||||||
|
other = "{{ . }} words"
|
||||||
|
|
||||||
|
[readingtime]
|
||||||
|
one = "{{ . }} min"
|
||||||
|
other = "{{ . }} mins"
|
||||||
|
|
||||||
|
[read_more]
|
||||||
|
other = "Read more"
|
||||||
|
|
||||||
|
|
||||||
|
[browser_no_video_support]
|
||||||
|
other = "Your browser does not support video."
|
||||||
|
|
||||||
|
|
||||||
|
[filtering_for]
|
||||||
|
other = "Filtering for \"{{ . }}\""
|
||||||
|
|
||||||
|
[no_posts]
|
||||||
|
other = "No posts here!"
|
||||||
|
|
||||||
|
|
||||||
|
[table_of_contents]
|
||||||
|
other = "Table of Contents"
|
31
i18n/es.toml
Normal file
31
i18n/es.toml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
[credit_comment]
|
||||||
|
other = "<!-- bobatheme está en GitHub con la licencia MIT a https://github.com/BBaoVanC/bobatheme. -->"
|
||||||
|
|
||||||
|
[long_date]
|
||||||
|
other = "{{ .Date.Day }} de {{ index .Data.meses (printf `%d` .Date.Month) }} de {{ .Date.Year }}"
|
||||||
|
|
||||||
|
[wordcount]
|
||||||
|
one = "{{ . }} palabra"
|
||||||
|
other = "{{ . }} palabras"
|
||||||
|
|
||||||
|
[readingtime]
|
||||||
|
one = "{{ . }} min"
|
||||||
|
other = "{{ . }} mins"
|
||||||
|
|
||||||
|
[read_more]
|
||||||
|
other = "Leer más"
|
||||||
|
|
||||||
|
|
||||||
|
[browser_no_video_support]
|
||||||
|
other = "Tu navegador de internet no admite video."
|
||||||
|
|
||||||
|
|
||||||
|
[filtering_for]
|
||||||
|
other = "Filtrando por \"{{ . }}\""
|
||||||
|
|
||||||
|
[no_posts]
|
||||||
|
other = "¡No páginas aquí!"
|
||||||
|
|
||||||
|
|
||||||
|
[table_of_contents]
|
||||||
|
other = "Índice"
|
@ -1,6 +1,6 @@
|
|||||||
{{ partialCached "credit.html" . }}
|
{{ partialCached "credit.html" . }}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="{{ .Language.Lang }}">
|
||||||
{{- partial "head.html" . -}}
|
{{- partial "head.html" . -}}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
{{ if or (eq .Kind "term") (eq .Kind "taxonomy") }}
|
{{ if or (eq .Kind "term") (eq .Kind "taxonomy") }}
|
||||||
<h1>
|
<h1>
|
||||||
{{ partialCached "icon.html" "filter" "filter" }}
|
{{ partialCached "icon.html" "filter" "filter" }}
|
||||||
Filtering for "{{ .Title }}"
|
{{ i18n "filtering_for" .Title }}
|
||||||
{{ if eq .Kind "term" }}
|
{{ if eq .Kind "term" }}
|
||||||
<span class="rss-link">
|
<span class="rss-link">
|
||||||
{{ with .OutputFormats.Get "rss" }}
|
{{ with .OutputFormats.Get "rss" }}
|
||||||
@ -37,7 +37,7 @@
|
|||||||
{{ .Render "summary" }}
|
{{ .Render "summary" }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<div>
|
<div>
|
||||||
No posts here!
|
{{ i18n "no_posts" }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
{{ if .Params.Toc }}
|
{{ if .Params.Toc }}
|
||||||
<div id="table-of-contents">
|
<div id="table-of-contents">
|
||||||
<h2>Table of Contents</h2>
|
<h2>{{ i18n "table_of_contents" }}</h2>
|
||||||
{{ .TableOfContents }}
|
{{ .TableOfContents }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -32,6 +32,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="readmore">
|
<div class="readmore">
|
||||||
<a href="{{ .Permalink }}">Read more →</a>
|
<a href="{{ .Permalink }}">{{ i18n "read_more" }} →</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1 +1 @@
|
|||||||
{{ "<!-- bobatheme is available under the MIT license at https://github.com/BBaoVanC/bobatheme. -->" | safeHTML }}
|
{{ i18n "credit_comment" | safeHTML }}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<span class="post-meta-item">
|
<span class="post-meta-item">
|
||||||
{{ partialCached "icon.html" "calendar" "calendar" }}
|
{{ partialCached "icon.html" "calendar" "calendar" }}
|
||||||
<time datetime="{{ .Date.Format "January 2, 2006" }}" pubdate>
|
<time datetime="{{ .Date.Format "January 2, 2006" }}" pubdate>
|
||||||
{{ .Date.Format "January 2, 2006" }}
|
{{ i18n "long_date" (dict "Date" .Date "Data" .Site.Data) }}
|
||||||
</time>
|
</time>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
@ -13,7 +13,7 @@
|
|||||||
<span class="post-meta-item">
|
<span class="post-meta-item">
|
||||||
{{ partialCached "icon.html" "edit-2" "edit-2" }}
|
{{ partialCached "icon.html" "edit-2" "edit-2" }}
|
||||||
<time datetime="{{ .Lastmod.Format "2006-01-02" }}" pubdate>
|
<time datetime="{{ .Lastmod.Format "2006-01-02" }}" pubdate>
|
||||||
{{ .Lastmod.Format "January 2, 2006" }}
|
{{ i18n "long_date" (dict "Date" .Lastmod "Data" .Site.Data) }}
|
||||||
</time>
|
</time>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</span>
|
</span>
|
||||||
@ -23,14 +23,14 @@
|
|||||||
{{ if .Site.Params.wordcount }}
|
{{ if .Site.Params.wordcount }}
|
||||||
<span class="post-meta-item">
|
<span class="post-meta-item">
|
||||||
{{ partialCached "icon.html" "type" "type" }}
|
{{ partialCached "icon.html" "type" "type" }}
|
||||||
{{ .WordCount }} words
|
{{ i18n "wordcount" .WordCount }}
|
||||||
</span>
|
</span>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ if .Site.Params.readingtime }}
|
{{ if .Site.Params.readingtime }}
|
||||||
<span class="post-meta-item">
|
<span class="post-meta-item">
|
||||||
{{ partialCached "icon.html" "clock" "clock" }}
|
{{ partialCached "icon.html" "clock" "clock" }}
|
||||||
{{ .ReadingTime }} {{ if gt .ReadingTime 1 }} mins {{ else }} min {{ end }}
|
{{ i18n "readingtime" .ReadingTime }}
|
||||||
</span>
|
</span>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
@ -38,7 +38,7 @@
|
|||||||
{{ with .GitInfo }}
|
{{ with .GitInfo }}
|
||||||
<span class="post-meta-item">
|
<span class="post-meta-item">
|
||||||
{{ partialCached "icon.html" "git-commit" "git-commit" }}
|
{{ partialCached "icon.html" "git-commit" "git-commit" }}
|
||||||
<a href="{{ (printf "%s/commit/%s" $.Site.Params.repoURL .Hash) | absURL }}">
|
<a href="{{ (printf "%s/commit/%s" $.Site.Params.repoURL .Hash) | absLangURL }}">
|
||||||
<code>{{ .AbbreviatedHash }}</code>
|
<code>{{ .AbbreviatedHash }}</code>
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<nav id="navbar">
|
<nav id="navbar">
|
||||||
<a class="navbar-item" href="{{ "/" | relURL }}">Home</a>
|
<a class="navbar-item" href="{{ "/" | relLangURL }}">Home</a>
|
||||||
{{ range .Site.Menus.main }}
|
{{ range .Site.Menus.main }}
|
||||||
<a class="navbar-item" href="{{ .URL }}">{{ .Name }}</a>
|
<a class="navbar-item" href="{{ .URL }}">{{ .Name }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
User-Agent: *
|
User-Agent: *
|
||||||
Sitemap: {{ "sitemap.xml" | absURL }}
|
Sitemap: {{ "sitemap.xml" | absLangURL }}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<video controls>
|
<video controls>
|
||||||
<source src="{{ .Get "src" }}" alt="{{ .Get "title" }}">
|
<source src="{{ .Get "src" }}" alt="{{ .Get "title" }}">
|
||||||
Your browser does not support video.
|
{{ i18n "browser_no_video_support" }}
|
||||||
</video>
|
</video>
|
||||||
|
Loading…
Reference in New Issue
Block a user