diff --git a/i18n/en.toml b/i18n/en.toml index 1a7e1c8..1261a18 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -16,6 +16,9 @@ [widgetTagCloudTitle] other = "Tags" +[categoriesTitle] + other = "Categories" + [notFoundTitle] other = "Not Found" @@ -35,4 +38,4 @@ other = "Built with {{ .Generator }}" [footerDesignedBy] - other = "Theme {{ .Theme }} designed by {{ .DesignedBy }}" \ No newline at end of file + other = "Theme {{ .Theme }} designed by {{ .DesignedBy }}" diff --git a/i18n/pt-BR.toml b/i18n/pt-BR.toml index eadb640..4f7436f 100644 --- a/i18n/pt-BR.toml +++ b/i18n/pt-BR.toml @@ -16,6 +16,9 @@ [widgetTagCloudTitle] other = "Tags" +[categoriesTitle] + other = "Categorias" + [notFoundTitle] other = "Não Encontrado" @@ -29,4 +32,10 @@ other = "Digite algo..." [searchResultTitle] - other = "#PAGES_COUNT páginas (#TIME_SECONDS segundos)" \ No newline at end of file + other = "#PAGES_COUNT páginas (#TIME_SECONDS segundos)" + +[footerBuiltWith] + other = "Criado com {{ .Generator }}" + +[footerDesignedBy] + other = "Tema {{ .Theme }} desenvolvido por {{ .DesignedBy }}" \ No newline at end of file diff --git a/layouts/_default/archives.html b/layouts/_default/archives.html index d2326ee..0071565 100644 --- a/layouts/_default/archives.html +++ b/layouts/_default/archives.html @@ -2,7 +2,7 @@ {{ define "main" }} {{ $categories := ($.Site.GetPage "taxonomyTerm" "categories").Pages }} {{ if $categories }} -

Categories

+

{{ T "categoriesTitle" }}

{{ range $categories }} @@ -29,4 +29,4 @@ {{ end }} {{ partialCached "footer/footer" . }} -{{ end }} \ No newline at end of file +{{ end }}