diff --git a/src/views/Options/index.js b/src/views/Options/index.js index af02405..ec8d5e6 100644 --- a/src/views/Options/index.js +++ b/src/views/Options/index.js @@ -36,7 +36,7 @@ export default function Options() { // 检查版本是否一致 if (version !== process.env.REACT_APP_VERSION) { setError( - `The version of the script(v${version}) and this page(v${process.env.REACT_APP_VERSION}) are inconsistent.` + `The version is inconsistent, please check whether the script(v${version}) is the latest version(v${process.env.REACT_APP_VERSION}). (版本不一致,请检查脚本(v${version})是否为最新版(v${process.env.REACT_APP_VERSION}))` ); break; } @@ -53,7 +53,7 @@ export default function Options() { } if (++i > 8) { - setError("Time out."); + setError("Time out. (连接超时)"); break; } @@ -78,26 +78,26 @@ export default function Options() {