fix: correct the i18n for tab titles

This commit is contained in:
Cotes Chung 2022-09-20 15:25:09 +08:00
parent f1d9e99bc0
commit 0c5b697fd3
No known key found for this signature in database
GPG Key ID: 0D9E54843167A808
5 changed files with 3 additions and 5 deletions

View File

@ -20,7 +20,8 @@ layout: default
{% endif %}
{% endcapture %}
{% if page.layout == 'page' or page.collection == 'tabs'%}
{% if page.collection == 'tabs' %}
{% assign tab_key = page.title | downcase %}
{% assign title = site.data.locales[lang].tabs[tab_key] | default: page.title %}
<h1 class="dynamic-title">
{{ title }}

View File

@ -1,5 +1,5 @@
---
title: About
# the default layout is 'page'
icon: fas fa-info-circle
order: 4
---

View File

@ -1,6 +1,5 @@
---
layout: archives
title: Archives
icon: fas fa-archive
order: 3
---

View File

@ -1,6 +1,5 @@
---
layout: categories
title: Categories
icon: fas fa-stream
order: 1
---

View File

@ -1,6 +1,5 @@
---
layout: tags
title: Tags
icon: fas fa-tag
order: 2
---