feat(i18n): Coverage improvements (#59)

* Replace hardcoded text with i18n

* Add categoriesTitle text

* Add categoriesTitle text

* Add new strings available

Co-authored-by: Daniel Pessoa <cobalto@users.noreply.github.com>
This commit is contained in:
Daniel Pessoa 2020-12-11 12:11:47 -03:00 committed by GitHub
parent 69b1524f91
commit bfeddf3217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 4 deletions

View File

@ -16,6 +16,9 @@
[widgetTagCloudTitle] [widgetTagCloudTitle]
other = "Tags" other = "Tags"
[categoriesTitle]
other = "Categories"
[notFoundTitle] [notFoundTitle]
other = "Not Found" other = "Not Found"
@ -35,4 +38,4 @@
other = "Built with {{ .Generator }}" other = "Built with {{ .Generator }}"
[footerDesignedBy] [footerDesignedBy]
other = "Theme {{ .Theme }} designed by {{ .DesignedBy }}" other = "Theme {{ .Theme }} designed by {{ .DesignedBy }}"

View File

@ -16,6 +16,9 @@
[widgetTagCloudTitle] [widgetTagCloudTitle]
other = "Tags" other = "Tags"
[categoriesTitle]
other = "Categorias"
[notFoundTitle] [notFoundTitle]
other = "Não Encontrado" other = "Não Encontrado"
@ -29,4 +32,10 @@
other = "Digite algo..." other = "Digite algo..."
[searchResultTitle] [searchResultTitle]
other = "#PAGES_COUNT páginas (#TIME_SECONDS segundos)" other = "#PAGES_COUNT páginas (#TIME_SECONDS segundos)"
[footerBuiltWith]
other = "Criado com {{ .Generator }}"
[footerDesignedBy]
other = "Tema {{ .Theme }} desenvolvido por {{ .DesignedBy }}"

View File

@ -2,7 +2,7 @@
{{ define "main" }} {{ define "main" }}
{{ $categories := ($.Site.GetPage "taxonomyTerm" "categories").Pages }} {{ $categories := ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
{{ if $categories }} {{ if $categories }}
<h2 class="section-title">Categories</h2> <h2 class="section-title">{{ T "categoriesTitle" }}</h2>
<div class="category-list"> <div class="category-list">
<div class="article-list--tile"> <div class="article-list--tile">
{{ range $categories }} {{ range $categories }}
@ -29,4 +29,4 @@
{{ end }} {{ end }}
{{ partialCached "footer/footer" . }} {{ partialCached "footer/footer" . }}
{{ end }} {{ end }}