From e4a3b20a01705c0f1d1e264d88c1795028100370 Mon Sep 17 00:00:00 2001 From: haoxiuwen Date: Fri, 20 Dec 2024 14:33:15 +0800 Subject: [PATCH] modify --- docs/document/electron/message.md | 2 +- docs/document/flutter/conversation_receipt.md | 2 +- docs/document/flutter/message_send_receive.md | 2 +- docs/document/harmonyos/message_receipt.md | 4 ++-- docs/document/react-native/conversation_receipt.md | 2 +- docs/document/react-native/message_receipt.md | 2 +- docs/document/server-side/callback_offline_push.md | 2 +- docs/document/server-side/chatroom_manage.md | 2 +- docs/document/unity/conversation_receipt.md | 2 +- docs/document/unity/message_receipt.md | 4 ++-- docs/document/web/error.md | 2 +- docs/document/web/releasenote.md | 2 +- docs/document/windows/conversation_receipt.md | 2 +- docs/document/windows/error.md | 2 +- docs/document/windows/message_receipt.md | 4 ++-- docs/product/faq_quality_issues.md | 2 +- docs/product/glossary.md | 2 +- docs/push/push_createnotification.md | 2 +- 18 files changed, 21 insertions(+), 21 deletions(-) diff --git a/docs/document/electron/message.md b/docs/document/electron/message.md index fc540a967..86f79eb13 100644 --- a/docs/document/electron/message.md +++ b/docs/document/electron/message.md @@ -4,7 +4,7 @@ - 发送消息 -- 接受消息 +- 接收消息 同时对于发送不超过2分钟的消息,允许主动撤回。 diff --git a/docs/document/flutter/conversation_receipt.md b/docs/document/flutter/conversation_receipt.md index 7ea392f32..5b74f3bc5 100644 --- a/docs/document/flutter/conversation_receipt.md +++ b/docs/document/flutter/conversation_receipt.md @@ -30,7 +30,7 @@ 1. 开启已读回执功能,即 SDK 初始化时设置 `EMOptions#requireAck` 为 `true`。 ```dart -// 设置是否需要接受方已读确认,默认为 true +// 设置是否需要接收方已读确认,默认为 true final options = EMOptions( appKey: appKey, requireAck: true, diff --git a/docs/document/flutter/message_send_receive.md b/docs/document/flutter/message_send_receive.md index 85e8d1620..d54032c55 100644 --- a/docs/document/flutter/message_send_receive.md +++ b/docs/document/flutter/message_send_receive.md @@ -485,7 +485,7 @@ void _sendBeginTyping() async { ``` -以下示例代码展示如何接受和解析输入状态的透传消息。 +以下示例代码展示如何接收和解析输入状态的透传消息。 ```dart final int typingTime = 10; diff --git a/docs/document/harmonyos/message_receipt.md b/docs/document/harmonyos/message_receipt.md index 72b3e1c80..461557a72 100644 --- a/docs/document/harmonyos/message_receipt.md +++ b/docs/document/harmonyos/message_receipt.md @@ -80,7 +80,7 @@ ChatClient.getInstance().chatManager()?.removeMessageListener(msgListener); 1. App 开启已读回执功能,即 SDK 初始化时将 `ChatOptions.setRequireReadAck` 设置为 `true`。 ```TypeScript -// 设置是否需要接受方已读确认,默认为true +// 设置是否需要接收方已读确认,默认为true options.setRequireReadAck(true); ``` @@ -155,7 +155,7 @@ ChatClient.getInstance().chatManager()?.addMessageListener(msgListener); 该功能开启后,接收方阅读消息后,SDK 底层会自动进行消息已读回执。 ```TypeScript -// 设置是否需要接受方已读确认,默认为 `true`。 +// 设置是否需要接收方已读确认,默认为 `true`。 options.setRequireReadAck(true); ``` diff --git a/docs/document/react-native/conversation_receipt.md b/docs/document/react-native/conversation_receipt.md index 52bdadb42..de8b49c51 100644 --- a/docs/document/react-native/conversation_receipt.md +++ b/docs/document/react-native/conversation_receipt.md @@ -30,7 +30,7 @@ 1. 开启已读回执功能,即 SDK 初始化时设置 `ChatOptions#requireAck` 为 `true`。 ```TypeScript -// 设置是否需要接受方已读确认,默认为 true +// 设置是否需要接收方已读确认,默认为 true options.requireAck = true; ``` diff --git a/docs/document/react-native/message_receipt.md b/docs/document/react-native/message_receipt.md index 70f0ba4bf..eac7cf654 100644 --- a/docs/document/react-native/message_receipt.md +++ b/docs/document/react-native/message_receipt.md @@ -74,7 +74,7 @@ ChatClient.getInstance().chatManager.addMessageListener({ 1. App 开启已读回执功能,即 SDK 初始化时将 `ChatOptions#requireAck` 设置为 `true`。 ```TypeScript -// 设置是否需要接受方已读确认,默认为true +// 设置是否需要接收方已读确认,默认为true options.requireAck = true; ``` diff --git a/docs/document/server-side/callback_offline_push.md b/docs/document/server-side/callback_offline_push.md index 1bd062588..38ee92f74 100644 --- a/docs/document/server-side/callback_offline_push.md +++ b/docs/document/server-side/callback_offline_push.md @@ -68,7 +68,7 @@ | `invalid message` | 无效的消息(协议内容一般不会有这个错误)。 | | `expire message` | 过期的消息,推送延迟超过一天的消息,不再推送。 | | `user ignore push` | 主动免打扰。 | -| `ignore push device id` | 忽略用户设备推送(扩展限制接收或不接受推送设备)。 | +| `ignore push device id` | 忽略用户设备推送(扩展限制接收或不接收推送设备)。 | | `invalid VOIP notification` | 无效的 APNs VoIP 类型推送。 | | `get push token fail` | 获取推送 token 失败。 | | `push yet but fail ` | 已经推送,但是返回失败。 | diff --git a/docs/document/server-side/chatroom_manage.md b/docs/document/server-side/chatroom_manage.md index c0ba4c60d..b22e7c7de 100644 --- a/docs/document/server-side/chatroom_manage.md +++ b/docs/document/server-side/chatroom_manage.md @@ -378,7 +378,7 @@ POST https://{host}/{org_name}/{app_name}/chatrooms | :------------ | :----- | :------- | :------------------------------------------------------------------------------ | | `name` | String | 是 | 聊天室名称,最大长度为 128 个字符。 | | `description` | String | 是 | 聊天室描述,最大长度为 512 个字符。 | -| `maxusers` | Int | 否 | 聊天室最大成员数(包括聊天室所有者)。取值范围为 [1,10,000],默认值为 `1000`。如需调整请联系商务。 | +| `maxusers` | Int | 否 | 聊天室最大成员数(包括聊天室所有者)。取值范围为 [1, 10,000],默认值为 `1000`。如需调整请联系商务。 | | `owner` | String | 是 | 聊天室所有者。 | | `members` | Array | 否 | 聊天室普通成员和管理员的用户 ID 数组,不包含聊天室所有者的用户 ID。该数组可包含的元素数量不超过 `maxusers` 的值。若传该参数,确保至少设置一个数组元素。 创建聊天室时拉入的这些用户若从未登录过,会一直存在于聊天室中。 | | `custom` | String | 否 | 聊天室扩展信息,例如,可以给聊天室添加业务相关的标记,不能超过 8 KB。 | diff --git a/docs/document/unity/conversation_receipt.md b/docs/document/unity/conversation_receipt.md index 15a1a579d..b8516120f 100644 --- a/docs/document/unity/conversation_receipt.md +++ b/docs/document/unity/conversation_receipt.md @@ -30,7 +30,7 @@ 1. 开启已读回执功能,即 SDK 初始化时设置 `Options#RequireAck` 为 `true`。 ```C# -// 设置是否需要接受方已读确认,默认为 true +// 设置是否需要接收方已读确认,默认为 true options.RequireAck = true; ``` diff --git a/docs/document/unity/message_receipt.md b/docs/document/unity/message_receipt.md index 73db1d3f7..19d8b0923 100644 --- a/docs/document/unity/message_receipt.md +++ b/docs/document/unity/message_receipt.md @@ -88,7 +88,7 @@ SDKClient.Instance.ChatManager.RemoveChatManagerDelegate(myDelegate); 1. App 开启已读回执功能,即 SDK 初始化时将 `Options#RequireAck` 设置为 `true`。 ```C# -// 设置是否需要接受方已读确认,默认为true +// 设置是否需要接收方已读确认,默认为true options.RequireAck = true; ``` @@ -207,7 +207,7 @@ SDKClient.Instance.ChatManager.RemoveChatManagerDelegate(myDelegate); 该功能开启后,接收方阅读消息后,SDK 底层会自动进行消息已读回执。 ```C# -// 设置是否需要接受方已读确认,默认为 `true`。 +// 设置是否需要接收方已读确认,默认为 `true`。 options.RequireAck = true; ``` diff --git a/docs/document/web/error.md b/docs/document/web/error.md index 3f4fbcd30..17d05a189 100644 --- a/docs/document/web/error.md +++ b/docs/document/web/error.md @@ -72,7 +72,7 @@ error.type === statusCode.WEBIM_CONNCTION_USER_NOT_ASSIGN_ERROR 其中 `error` | 1100 | PRESENCE_PARAM_EXCEED | 发布自定义在线状态时,参数长度超出限制。 | | 1101 | REACTION_ALREADY_ADDED | Reaction 重复添加。 | | 1102 | REACTION_CREATING | 创建 Reaction 时,其他人正在创建。 | -| 1103 | REACTION_OPERATION_IS_ILLEGAL | 用户对该 Reaction 没有操作权限:没有添加过该 Reaction 的用户进行删除操作,或者单聊消息非发送者和非接受者进行添加 Reaction 操作。 | +| 1103 | REACTION_OPERATION_IS_ILLEGAL | 用户对该 Reaction 没有操作权限:没有添加过该 Reaction 的用户进行删除操作,或者单聊消息非发送者和非接收者进行添加 Reaction 操作。 | | 1200 | TRANSLATION_NOT_VALID | 传入的语言 code 不合法。 | | 1201 | TRANSLATION_TEXT_TOO_LONG | 翻译的文本过长。 | | 1204 | TRANSLATION_FAILED | 获取翻译服务失败。 | diff --git a/docs/document/web/releasenote.md b/docs/document/web/releasenote.md index 020efc42e..d5a4e47e2 100644 --- a/docs/document/web/releasenote.md +++ b/docs/document/web/releasenote.md @@ -978,6 +978,6 @@ - 修复 bug。demo 联系人过多时的样式问题。 - 修复 bug。conn = new Easemob.im.Connection();变量名不为 conn 或者 conn 不是全局变量时接收不到消息。 - 修复 bug。群组离线消息当作陌生人消息处理。 -- 修复 bug。IE 浏览器接受文本消息以换行符开始时会遮挡联系人名称。 +- 修复 bug。IE 浏览器接收文本消息以换行符开始时会遮挡联系人名称。 - 修复 bug。在线用户被邀请加入群组不能实时显示,必须重新登录。 - 丰富相关文档内容。 diff --git a/docs/document/windows/conversation_receipt.md b/docs/document/windows/conversation_receipt.md index 33bc4907a..548dfce09 100644 --- a/docs/document/windows/conversation_receipt.md +++ b/docs/document/windows/conversation_receipt.md @@ -30,7 +30,7 @@ 1. 开启已读回执功能,即 SDK 初始化时设置 `Options#RequireAck` 为 `true`。 ```C# -// 设置是否需要接受方已读确认,默认为 true +// 设置是否需要接收方已读确认,默认为 true options.RequireAck = true; ``` diff --git a/docs/document/windows/error.md b/docs/document/windows/error.md index 30c35f436..2e499e294 100644 --- a/docs/document/windows/error.md +++ b/docs/document/windows/error.md @@ -124,7 +124,7 @@ SDKClient.Instance.Login(username, passwd, | 1299 | THIRD_DEFAULT_FAILED | 除第三方内容审核服务的其他服务的消息审核结果为“拒绝”。 | | 1300 | REACTION_REACH_LIMIT | 该消息的 Reaction 数量已达到限制。 | | 1301 | REACTION_HAS_BEEN_OPERATED | Reaction 重复添加。 | -| 1302 | REACTION_OPERATION_IS_ILLEGAL | 没有操作权限:用户对该 Reaction 没有操作权限。例如,没有添加过该 Reaction 的用户进行删除操作,或者单聊消息非发送者和非接受者进行添加 Reaction 操作。 | +| 1302 | REACTION_OPERATION_IS_ILLEGAL | 没有操作权限:用户对该 Reaction 没有操作权限。例如,没有添加过该 Reaction 的用户进行删除操作,或者单聊消息非发送者和非接收者进行添加 Reaction 操作。 | | 1400 | THREAD_NOT_EXIST | 未找到该子区,该子区不存在。 | | 1401 | THREAD_ALREADY_EXIST | 该消息 ID 下子区已存在,重复添加子区。 | | 1402 | THREAD_CREATE_MESSAGE_ILLEGAL | 创建子区的消息无效:创建子区时父消息被撤回了,或者无法使用。 | diff --git a/docs/document/windows/message_receipt.md b/docs/document/windows/message_receipt.md index 28559a453..e552fe63b 100644 --- a/docs/document/windows/message_receipt.md +++ b/docs/document/windows/message_receipt.md @@ -88,7 +88,7 @@ SDKClient.Instance.ChatManager.RemoveChatManagerDelegate(myDelegate); 1. App 开启已读回执功能,即 SDK 初始化时将 `Options#RequireAck` 设置为 `true`。 ```C# -// 设置是否需要接受方已读确认,默认为true +// 设置是否需要接收方已读确认,默认为true options.RequireAck = true; ``` @@ -207,7 +207,7 @@ SDKClient.Instance.ChatManager.RemoveChatManagerDelegate(myDelegate); 该功能开启后,接收方阅读消息后,SDK 底层会自动进行消息已读回执。 ```C# -// 设置是否需要接受方已读确认,默认为 `true`。 +// 设置是否需要接收方已读确认,默认为 `true`。 options.RequireAck = true; ``` diff --git a/docs/product/faq_quality_issues.md b/docs/product/faq_quality_issues.md index d2dbce6c6..2b39214ce 100644 --- a/docs/product/faq_quality_issues.md +++ b/docs/product/faq_quality_issues.md @@ -13,7 +13,7 @@ 可能是以下原因: - 用户 A 消息发送失败; -- 接受消息的用户 ID 错误; +- 接收消息的用户 ID 错误; - 用户 B 把 A 设为黑名单了; - 用户 B 在其他设备上登录时接收了消息; - 用户 B 离线消息数量超过 500 条等。 diff --git a/docs/product/glossary.md b/docs/product/glossary.md index 8151fa4a5..48258b398 100644 --- a/docs/product/glossary.md +++ b/docs/product/glossary.md @@ -114,7 +114,7 @@ CallKit 提供应用内聊天中音视频通话的页面和 UI 组件,帮助 ### 离线 -离线是指用户成功登出环信即时通讯 IM 系统或与即时通讯 IM 系统断开连接后的状态。用户登出即时通讯 IM 系统之后,无法发送和接受消息,在下次登录后可以接收到离线消息。 +离线是指用户成功登出环信即时通讯 IM 系统或与即时通讯 IM 系统断开连接后的状态。用户登出即时通讯 IM 系统之后,无法发送和接收消息,在下次登录后可以接收到离线消息。 ## 封禁用户 diff --git a/docs/push/push_createnotification.md b/docs/push/push_createnotification.md index ce290c867..40c302bb3 100644 --- a/docs/push/push_createnotification.md +++ b/docs/push/push_createnotification.md @@ -25,7 +25,7 @@ #### 推送目标: - 全量用户 -- 指定用户:接受人以英文逗号分开,最多 1000 个接收人 +- 指定用户:接收人以英文逗号分开,最多 1000 个接收人 - 指定标签用户:支持最多选择3个标签,支持交集运算 ![img](/images/instantpush/push_user_certain.png)