雨果,如何设置日期语言
hugo, how to set date language
与 Hugo 一起,我正在创建一个法语博客。
目前我所有的日期都以英语(二月)显示,但我希望它们以法语(février)显示。
如何设置语言?
我的 config.toml
看起来像这样:
baseURL = 'http://example.org/'
languageCode = 'fr-FR'
defaultContentLanguage = "fr"
defaultContentLang = "fr"
title = 'TITLE'
theme = "THEME"
我尝试将 languageCode
、defaultContentLanguage
和 defaultContentLang
设置为 fr
但没有成功。
我不需要多语言支持,我只需要法语。
要使用本地化,您需要使用 Hugo 函数 time.Format
(它有一个别名 dateFormat
)。它有两个参数:
- 所需格式
- time.Time 对象,或时间戳
示例:
{{ time.Format "Jan. 2, 2006" .Date }}
或
{{ dateFormat "Jan. 2, 2006" .Date }}
文档:https://gohugo.io/functions/dateformat/
.Format
方法(例如 {{.Date.Format "Jan. 2, 2006}}
)不会应用所需的本地化。
与 Hugo 一起,我正在创建一个法语博客。 目前我所有的日期都以英语(二月)显示,但我希望它们以法语(février)显示。 如何设置语言?
我的 config.toml
看起来像这样:
baseURL = 'http://example.org/'
languageCode = 'fr-FR'
defaultContentLanguage = "fr"
defaultContentLang = "fr"
title = 'TITLE'
theme = "THEME"
我尝试将 languageCode
、defaultContentLanguage
和 defaultContentLang
设置为 fr
但没有成功。
我不需要多语言支持,我只需要法语。
要使用本地化,您需要使用 Hugo 函数 time.Format
(它有一个别名 dateFormat
)。它有两个参数:
- 所需格式
- time.Time 对象,或时间戳
示例:
{{ time.Format "Jan. 2, 2006" .Date }}
或
{{ dateFormat "Jan. 2, 2006" .Date }}
文档:https://gohugo.io/functions/dateformat/
.Format
方法(例如 {{.Date.Format "Jan. 2, 2006}}
)不会应用所需的本地化。