From 6a8f20c5a89220176772127d4ce1c921a979d1a8 Mon Sep 17 00:00:00 2001 From: GSteve-Paul Date: Sun, 8 Jun 2025 16:33:01 +0800 Subject: [PATCH] docs: let users know they can customize their language preference --- docs/features/comments.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/features/comments.md b/docs/features/comments.md index 48037735a..6e5a25ca1 100644 --- a/docs/features/comments.md +++ b/docs/features/comments.md @@ -45,6 +45,8 @@ afterBody: [ category: 'Announcements', // from data-category-id categoryId: 'DIC_kwDOFxRnmM4B-Xg6', + // from data-lang + lang: 'en' } }), ], @@ -90,6 +92,10 @@ type Options = { // where to put the comment input box relative to the comments // defaults to 'bottom' inputPosition?: "top" | "bottom" + + // set your preference language here + // defaults to 'en' + lang?: string } } ```