From 7bd902d5e22d1bdaeac35b76d01972fb4eeb8f0d Mon Sep 17 00:00:00 2001 From: hdx Date: Mon, 1 Jul 2024 11:45:37 +0800 Subject: [PATCH] =?UTF-8?q?i18n:=20=E7=A7=BB=E5=8A=A8=20uni.async.error=20?= =?UTF-8?q?=E5=88=B0=20web=E5=B9=B3=E5=8F=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/i18n.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/i18n.md b/docs/i18n.md index c21e326c..af2e74e6 100644 --- a/docs/i18n.md +++ b/docs/i18n.md @@ -183,7 +183,6 @@ uni-app.zh-Hans.json 文件 ```json { "common": { - "uni.async.error": "连接服务器超时,点击屏幕重试", "uni.showActionSheet.cancel": "取消", "uni.showModal.cancel": "取消", "uni.showModal.confirm": "确定", @@ -193,10 +192,13 @@ uni-app.zh-Hans.json 文件 "uni.chooseVideo.cancel": "取消", "uni.chooseVideo.sourceType.album": "从相册选择", "uni.chooseVideo.sourceType.camera": "拍摄", - "uni.setClipboardData.success": "内容已复制", + "uni.setClipboardData.success": "内容已复制" }, "ios": {}, - "android": {} + "android": {}, + "web": { + "uni.async.error": "连接服务器超时,点击屏幕重试" + } } ``` -- GitLab