added comments desc

This commit is contained in:
ClovertaTheTrilobita 2026-06-02 01:55:28 +08:00
parent eeff9fa4f6
commit 6e84ef4884
3 changed files with 9 additions and 0 deletions

View file

@ -15,6 +15,10 @@ export default {
writtenBy: "Written by",
comments: "Comments",
publishedOn: "Published on",
commentsDesc: [
"Feel free to leave your thoughts here. 💭💡",
"After signing in, you can click the “Subscribe by Email” button at the bottom right of the text box to receive notifications of new interactions via email."
]
},
theme: {
toggle: "Toggle theme",

View file

@ -15,6 +15,10 @@ export default {
writtenBy: "作者",
comments: "评论",
publishedOn: "发布于",
commentsDesc: [
"欢迎在这里留下你的想法。💭💡",
"你可以在登录评论区后点击文本框右下角的「Subscribe by Email」以通过邮件接收最新的互动通知。"
]
},
theme: {
toggle: "切换主题",

View file

@ -87,6 +87,7 @@ const t = getTranslations(lang);
<PostNav post={post} lang={lang} />
<h2>{comments}</h2>
{t.post.commentsDesc.map((line: string) => <p set:html={line} />)}
<Remark42Embed slug={slug} />
</article>
</BaseLayout>