@nodebb/nodebb-plugin-reactions 2.2.6 → 2.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/eslint.config.mjs +10 -0
- package/languages/zh-CN/reactions.json +25 -0
- package/package.json +3 -4
- package/.eslintrc +0 -6
- package/package-lock.json +0 -4404
- package/public/.eslintrc +0 -3
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"reactions": "回应",
|
|
3
|
+
"add-reaction": "添加回应",
|
|
4
|
+
"error.invalid-reaction": "无效的回应",
|
|
5
|
+
"error.maximum-reached": "达到最大回应数",
|
|
6
|
+
"error.maximum-per-user-per-post-reached": "每个用户每篇帖子的最大回应数",
|
|
7
|
+
"settings.title": "回应插件设置",
|
|
8
|
+
"settings.enable-post-reactions": "启用帖子回应",
|
|
9
|
+
"settings.max-reactions-per-post": "每个帖子的最大唯一回应数(0 表示无限制,默认值:4)",
|
|
10
|
+
"settings.max-reactions-per-user-per-post": "每个用户每个帖子的最大回应数(0 表示无限制)",
|
|
11
|
+
"settings.max-reactions-per-user-per-post-help": "该限制仅在添加新回应时有效,在添加现有回应时无效。",
|
|
12
|
+
"settings.enable-message-reactions": "启用信息回应",
|
|
13
|
+
"settings.max-reactions-per-message": "每条信息的最大唯一回应数(0 表示无限制,默认值:4)",
|
|
14
|
+
"settings.max-reactions-per-user-per-message": "每个用户每条信息的最大回应次数(0 表示无限制)",
|
|
15
|
+
"settings.max-reactions-per-user-per-message-help": "该限制仅在添加新回应时有效,在添加现有回应时无效。",
|
|
16
|
+
"settings.reaction-reputations": "回应声望(可选)",
|
|
17
|
+
"settings.reaction-reputations-help": "您可以为单个回应分配声望。当一个回应应用到一个帖子时,该帖子的所有者就会得到这个声望。",
|
|
18
|
+
"settings.reaction-reputations.add": "添加规则",
|
|
19
|
+
"settings.reaction-reputations.reaction": "回应",
|
|
20
|
+
"settings.reaction-reputations.reputation": "声望",
|
|
21
|
+
"settings.reaction-reputations.remove": "删除",
|
|
22
|
+
"settings.reaction-reputations.edit": "编辑",
|
|
23
|
+
"notification.user-has-reacted-with-to-your-post-in-topic": "<strong>%1</strong> 已用 %2 对您在 <strong>%3</strong> 中发表的帖子做出了回应",
|
|
24
|
+
"notification.user-has-reacted-with-to-your-message-in-room": "<strong>%1</strong> 已用 %2 对您在 <strong class=\"text-nowrap\"><i class=\"fa %3\"></i>%4</strong> 中的信息做出了回应"
|
|
25
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nodebb/nodebb-plugin-reactions",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.7",
|
|
4
4
|
"nbbpm": {
|
|
5
5
|
"compatibility": "^3.6.0 || ^4.0.0"
|
|
6
6
|
},
|
|
@@ -38,9 +38,8 @@
|
|
|
38
38
|
},
|
|
39
39
|
"license": "MIT",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"eslint": "
|
|
42
|
-
"eslint-config-nodebb": "
|
|
43
|
-
"eslint-plugin-import": "^2.27.5"
|
|
41
|
+
"eslint": "9.28.0",
|
|
42
|
+
"eslint-config-nodebb": "1.1.7"
|
|
44
43
|
},
|
|
45
44
|
"scripts": {
|
|
46
45
|
"lint": "eslint ."
|