Explorar el Código

fix: Language name doesn't appear for zh-Hant

Language name doesn't appear when LanguageCode has a sub-code

The issue appears to be an inconsistency/bug with Hugo's `.Translations` lowercasing zh-Hant to zh-hant without offering a way to get the language code as it was defined.

We can workaround it for now by converting to lowercase to align with Hugo's current implementation.

Fix #2256
George Cushen hace 4 años
padre
commit
97ff003d9f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      wowchemy/data/i18n/languages.yaml

+ 1 - 1
wowchemy/data/i18n/languages.yaml

@@ -32,4 +32,4 @@
 'uk': 'Українська'
 'vi': 'Tiếng Việt'
 'zh': '中文 (简体)'
-'zh-Hant': '中文 (繁體)'
+'zh-hant': '中文 (繁體)'