From bf96e207ed5b277657683b9b6172ddf83cbc7751 Mon Sep 17 00:00:00 2001 From: chenwenhui133 <2984202073@qq.com> Date: Wed, 11 Jun 2025 20:57:21 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20[Issues:=20#ICEG95]=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E6=96=87=E6=A1=A3=E4=B8=ADgithub=E5=9C=B0=E5=9D=80?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E4=B8=8D=E5=87=86=E7=A1=AE=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- en/js/react-redux.md | 2 +- en/react-native-cookies-cookies.md | 32 ++++++++++++------------- en/react-native-drag-sort.md | 2 +- en/react-native-fit-Image.md | 2 +- en/react-native-fs.md | 3 ++- en/react-native-image-crop-picker.md | 2 +- en/react-native-image-editor.md | 2 +- en/react-native-vector-icons.md | 2 +- zh-cn/js/react-redux.md | 2 +- zh-cn/react-native-drag-sort.md | 2 +- zh-cn/react-native-fit-Image.md | 2 +- zh-cn/react-native-fs.md | 2 +- zh-cn/react-native-image-crop-picker.md | 2 +- zh-cn/react-native-image-editor.md | 2 +- zh-cn/react-native-vector-icons.md | 2 +- 15 files changed, 31 insertions(+), 30 deletions(-) diff --git a/en/js/react-redux.md b/en/js/react-redux.md index 1d5beb47..061b1c88 100644 --- a/en/js/react-redux.md +++ b/en/js/react-redux.md @@ -9,7 +9,7 @@

-> [!TIP] [GitHub address](https://github.com/reduxjs/react-redux?tab=readme-ov-file) +> [!TIP] [GitHub address](https://github.com/reduxjs/react-redux/tree/v9.1.0?tab=readme-ov-file) ## Installation and Usage diff --git a/en/react-native-cookies-cookies.md b/en/react-native-cookies-cookies.md index 760cd6ea..112d4468 100644 --- a/en/react-native-cookies-cookies.md +++ b/en/react-native-cookies-cookies.md @@ -38,7 +38,7 @@ yarn add @react-native-oh-tpl/cookies -HarmonyOS 中使用 react-native-cookies 需要配合 react-native-webview 使用,具体请参考[@react-native-oh-tpl/react-native-webview](/en/react-native-webview.md) +On HarmonyOS, **react-native-cookies** must be used together with **react-native-webview**. For details, see [@react-native-oh-tpl/react-native-webview](/en/react-native-webview.md). The following code shows the basic use scenario of the repository: @@ -73,7 +73,7 @@ export interface Cookies { export default function CookiesPage() { const httpUrl = "https://www.baidu.com"; - const [result, setResult] = useState("请点击按钮,进行操作"); + const [result, setResult] = useState("Touch the button to perform the operation."); const webViewRef = useRef(null); return ( @@ -90,12 +90,12 @@ export default function CookiesPage() { onPress={async () => { let cookieResult = await CookieManager.clearAll(true); let result = cookieResult - ? "清除所有cookie成功" - : "清除所有cookie失败"; + ? "All cookies cleared successfully." + : "Failed to clear all cookies."; setResult(result + ""); }} > - clearAll()【清除所有cookie】 + clearAll()【Clear all cookies.】 - get()【根据url获取cookie】 + get()【Obtain cookies using the URL.】 - set()【根据url设置cookie】 + set()【Set cookies using the URL.】 - clearByName()【根据名称删除cookie】 + clearByName()【Delete cookies by name.】 { let cookieResult = await CookieManager.removeSessionCookies(); let result = cookieResult - ? "清除会话cookie成功" - : "清除会话cookie失败"; + ? "Session cookies cleared successfully." + : "Failed to clear session cookies."; setResult(result); }} > - removeSessionCookies()【清除会话cookie】 + removeSessionCookies()【Clear session cookies.】 ); @@ -345,7 +345,7 @@ Check the release version information in the release address of the third-party ## Known Issues -- [ ] 这四个方法getAll,setFromResponse,getFromResponse,flush 在ios是可用的andriod不可用,Harmony没有对应的api 问题: [issue#1](https://github.com/react-native-oh-library/react-native-cookies/issues/1) +- [ ] The **getAll**, **setFromResponse**, **getFromResponse**, and **flush** methods are available on iOS, but not on Android. HarmonyOS does not have the corresponding API: [issue#1](https://github.com/react-native-oh-library/react-native-cookies/issues/1). ## Others diff --git a/en/react-native-drag-sort.md b/en/react-native-drag-sort.md index e6b7fb7d..9f224948 100644 --- a/en/react-native-drag-sort.md +++ b/en/react-native-drag-sort.md @@ -13,7 +13,7 @@

-> [!TIP] [GitHub address](https://github.com/mochixuan/react-native-drag-sort) +> [!TIP] [GitHub address](https://github.com/react-native-oh-library/react-native-drag-sort) ## Installation and Usage diff --git a/en/react-native-fit-Image.md b/en/react-native-fit-Image.md index 41e2790a..6ad318d4 100644 --- a/en/react-native-fit-Image.md +++ b/en/react-native-fit-Image.md @@ -15,7 +15,7 @@ -> [!TIP] [GitHub address](https://github.com/huiseoul/react-native-fit-image) +> [!TIP] [GitHub address](https://github.com/huiseoul/react-native-fit-image/tree/v1.5.5) ## Installation and Usage diff --git a/en/react-native-fs.md b/en/react-native-fs.md index d2f404a7..ac98b147 100644 --- a/en/react-native-fs.md +++ b/en/react-native-fs.md @@ -3,7 +3,8 @@

react-native-fs

-This project is based on [react-native-fs@2.20.0](https://github.com/itinance/react-native-fs)。 + +This project is based on [react-native-fs@2.20.0](https://github.com/itinance/react-native-fs/tree/v2.20.0)。 | Version | Package Name | Repository | Release | | --------------------------- | ------------------------------------ | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | diff --git a/en/react-native-image-crop-picker.md b/en/react-native-image-crop-picker.md index dbb8b3b0..c9fe55e5 100644 --- a/en/react-native-image-crop-picker.md +++ b/en/react-native-image-crop-picker.md @@ -4,7 +4,7 @@

react-native-image-crop-picker

-This project is based on [react-native-image-crop-picker@0.40.3](https://github.com/ivpusic/react-native-image-crop-picker)。 +This project is based on [react-native-image-crop-picker@0.40.3](https://github.com/ivpusic/react-native-image-crop-picker/tree/v0.40.3)。 | Version | Package Name | Repository | Release | | --------------------------- | ------------------------------------ | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | diff --git a/en/react-native-image-editor.md b/en/react-native-image-editor.md index 450367b8..654b8644 100644 --- a/en/react-native-image-editor.md +++ b/en/react-native-image-editor.md @@ -4,7 +4,7 @@

@react-native-community/image-editor

-This project is based on [@react-native-community/image-editor@3.2.0](https://github.com/callstack/react-native-image-editor). +This project is based on [@react-native-community/image-editor@3.2.0](https://github.com/callstack/react-native-image-editor/tree/3.2.0). This third-party library has been migrated to Gitee and is now available for direct download from npm, the new package name is: `@react-native-ohos/image-editor`, The version correspondence details are as follows: diff --git a/en/react-native-vector-icons.md b/en/react-native-vector-icons.md index 478cb7ee..a433d940 100644 --- a/en/react-native-vector-icons.md +++ b/en/react-native-vector-icons.md @@ -13,7 +13,7 @@

-> [!TIP] [GitHub address](https://github.com/oblador/react-native-vector-icons) +> [!TIP] [GitHub address](https://github.com/oblador/react-native-vector-icons/tree/v10.0.3) ## Installation and Usage diff --git a/zh-cn/js/react-redux.md b/zh-cn/js/react-redux.md index fdf3bfb0..61f864e6 100644 --- a/zh-cn/js/react-redux.md +++ b/zh-cn/js/react-redux.md @@ -9,7 +9,7 @@

-> [!TIP] [Github 地址](https://github.com/reduxjs/react-redux?tab=readme-ov-file) +> [!TIP] [Github 地址](https://github.com/reduxjs/react-redux/tree/v9.1.0?tab=readme-ov-file) ## 安装与使用 diff --git a/zh-cn/react-native-drag-sort.md b/zh-cn/react-native-drag-sort.md index 73655807..121293c0 100644 --- a/zh-cn/react-native-drag-sort.md +++ b/zh-cn/react-native-drag-sort.md @@ -13,7 +13,7 @@

-> [!TIP] [Github 地址](https://github.com/mochixuan/react-native-drag-sort) +> [!TIP] [Github 地址](https://github.com/react-native-oh-library/react-native-drag-sort) ## 安装与使用 diff --git a/zh-cn/react-native-fit-Image.md b/zh-cn/react-native-fit-Image.md index cbfe749f..1a039e83 100644 --- a/zh-cn/react-native-fit-Image.md +++ b/zh-cn/react-native-fit-Image.md @@ -15,7 +15,7 @@ -> [!TIP] [Github 地址](https://github.com/huiseoul/react-native-fit-image) +> [!TIP] [Github 地址](https://github.com/huiseoul/react-native-fit-image/tree/v1.5.5) ## 安装与使用 diff --git a/zh-cn/react-native-fs.md b/zh-cn/react-native-fs.md index 6652a41f..c529da19 100644 --- a/zh-cn/react-native-fs.md +++ b/zh-cn/react-native-fs.md @@ -4,7 +4,7 @@

react-native-fs

-本项目基于 [react-native-fs@2.20.0](https://github.com/itinance/react-native-fs) 开发。 +本项目基于 [react-native-fs@2.20.0](https://github.com/itinance/react-native-fs/tree/v2.20.0) 开发。 | Version | Package Name | Repository | Release | | --------------------------- | ------------------------------------ | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | diff --git a/zh-cn/react-native-image-crop-picker.md b/zh-cn/react-native-image-crop-picker.md index 55540ec0..92efa7f3 100644 --- a/zh-cn/react-native-image-crop-picker.md +++ b/zh-cn/react-native-image-crop-picker.md @@ -4,7 +4,7 @@

react-native-image-crop-picker

-本项目基于 [react-native-image-crop-picker@0.40.3](https://github.com/ivpusic/react-native-image-crop-picker) 开发。 +本项目基于 [react-native-image-crop-picker@0.40.3](https://github.com/ivpusic/react-native-image-crop-picker/tree/v0.40.3) 开发。 | Version | Package Name | Repository | Release | | --------------------------- | ------------------------------------ | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | diff --git a/zh-cn/react-native-image-editor.md b/zh-cn/react-native-image-editor.md index 3e09cb2e..25f3a01d 100644 --- a/zh-cn/react-native-image-editor.md +++ b/zh-cn/react-native-image-editor.md @@ -4,7 +4,7 @@

@react-native-community/image-editor

-本项目基于 [@react-native-community/image-editor@3.2.0](https://github.com/callstack/react-native-image-editor) 开发。 +本项目基于 [@react-native-community/image-editor@3.2.0](https://github.com/callstack/react-native-image-editor/tree/3.2.0) 开发。 该第三方库的仓库已迁移至 Gitee,且支持直接从 npm 下载,新的包名为:`@react-native-ohos/image-editor`,具体版本所属关系如下: diff --git a/zh-cn/react-native-vector-icons.md b/zh-cn/react-native-vector-icons.md index e5a38672..fe702c53 100644 --- a/zh-cn/react-native-vector-icons.md +++ b/zh-cn/react-native-vector-icons.md @@ -13,7 +13,7 @@

-> [!TIP] [Github 地址](https://github.com/oblador/react-native-vector-icons) +> [!TIP] [Github 地址](https://github.com/oblador/react-native-vector-icons/tree/v10.0.3) ## 安装与使用 -- Gitee