From c45f64f4eb296f07f2fa208c9754f040156fec52 Mon Sep 17 00:00:00 2001 From: Etherrreal <65111206+lifeafter619@users.noreply.github.com> Date: Thu, 29 Dec 2022 10:57:50 +0800 Subject: [PATCH] Update WalineComponent.js --- components/WalineComponent.js | 51 ++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/components/WalineComponent.js b/components/WalineComponent.js index 22d6ceee..75f5ec2f 100644 --- a/components/WalineComponent.js +++ b/components/WalineComponent.js @@ -20,6 +20,50 @@ const WalineComponent = (props) => { waline.update(props) } } + const locale = { + nick: '昵称', + nickError: '昵称不能少于3个字符', + mail: '邮箱', + mailError: '请填写正确的邮件地址', + link: '网址', + optional: '可选', + placeholder: '欢迎评论', + sofa: '来发评论吧~', + submit: '提交', + like: '喜欢', + cancelLike: '取消喜欢', + reply: '回复~', + cancelReply: '取消回复', + comment: '评论', + refresh: '刷新', + more: '加载更多...', + preview: '预览', + emoji: '表情', + uploadImage: '上传图片', + seconds: '秒前', + minutes: '分钟前', + hours: '小时前', + days: '天前', + now: '刚刚', + uploading: '正在上传', + login: '登录', + logout: '退出', + admin: '博主', + sticky: '置顶', + word: '字', + wordHint: '评论字数应在 $0 到 $1 字之间!\n当前字数:$2', + anonymous: '匿名', + gif: '表情包', + profile: '个人资料', + approved: '通过', + waiting: '待审核', + spam: '垃圾', + unsticky: '取消置顶', + oldest: '按倒序', + latest: '按正序', + hottest: '按热度', + reactionTitle: '你认为这篇文章怎么样?' + } React.useEffect(() => { if (!waline) { @@ -28,7 +72,12 @@ const WalineComponent = (props) => { el: containerRef.current, serverURL: BLOG.COMMENT_WALINE_SERVER_URL, lang: BLOG.lang, - reaction: true + reaction: true, + emoji: [ + '//npm.elemecdn.com/@waline/emojis@1.1.0/tieba', + '//npm.elemecdn.com/@waline/emojis@1.1.0/weibo', + '//npm.elemecdn.com/@waline/emojis@1.1.0/bilibili' + ] }) }