mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-06-04 07:26:47 +00:00
Update WalineComponent.js
This commit is contained in:
@@ -20,6 +20,50 @@ const WalineComponent = (props) => {
|
|||||||
waline.update(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(() => {
|
React.useEffect(() => {
|
||||||
if (!waline) {
|
if (!waline) {
|
||||||
@@ -28,7 +72,12 @@ const WalineComponent = (props) => {
|
|||||||
el: containerRef.current,
|
el: containerRef.current,
|
||||||
serverURL: BLOG.COMMENT_WALINE_SERVER_URL,
|
serverURL: BLOG.COMMENT_WALINE_SERVER_URL,
|
||||||
lang: BLOG.lang,
|
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'
|
||||||
|
]
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user