You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/config/ui/component/language.js
+84-41Lines changed: 84 additions & 41 deletions
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,21 @@
1
1
// 中文菜单
2
+
const{getGlobalConfig}=require("../../config");
2
3
constchinese={
3
4
global_settings: {
4
5
5
6
title: "全局设置",
6
7
7
8
language: "界面语言:",
8
-
languageTips: "你可以修改此配置界面的语言,修改后下次进入生效!",
9
+
languageTips: "你可以修改此配置界面的语言,修改后下次进入生效! <br/> You can modify the language of this configuration interface, and the changes will take effect the next time you enter!",
"languageTips": "你可以修改此配置界面的语言,修改后下次进入生效! <br/> You can modify the language of this configuration interface, and the changes will take effect the next time you enter!",
86
95
87
-
language: "语言",
88
-
languageTips: "语言",
96
+
"flagPrefix": "Hook Flag Prefix:",
97
+
"flagPrefixTips": "When hooking, some globally unique flags will be set. You can customize the prefix.",
98
+
"flagPrefixPlaceholder": "You can customize the global prefix. If not set, the default is JSREI_js_script_hook.",
"responseDebuggerHookTypeTips": "When hooking the callback function of JSONP, there are two ways to implement the hook: <br/><br/> One is to replace the reference of the callback function, which acts as a proxy function. This requires stepping into the callback function implementation after hitting the breakpoint. This method has better compatibility and works smoothly on most websites. <br/><br/> The other method is to directly rewrite the function body of the callback function, which is equivalent to editing and redeclaring the function's code. This allows you to place the breakpoint directly in the callback function body, but there may be some scope compatibility issues. If you encounter errors, please switch to the proxy method. <br/><br/> Note: This option takes effect after refreshing the page.",
102
+
"responseDebuggerHookTypeUseProxyFunction": "Use Proxy Function to Implement Hook",
103
+
"responseDebuggerHookTypeUseRedeclareFunction": "Directly Modify the Callback Function Body (Note: There May Be Compatibility Issues)",
"isIgnoreJsSuffixRequestTips": "Most of the time, requests with a .js suffix are simply loading JavaScript resource files. You can choose to ignore such requests. When checked, .js requests will not be printed on the console.",
"isIgnoreNotJsonpRequestTips": "If you are only concerned with JSONP-type requests, you can choose to ignore other requests. When checked, non-JSONP requests will not be printed on the console.",
"autoJumpProjectSiteOnConfiguraion": "Jump to the Project Homepage to Open This Interface to Prevent Style Issues:",
112
+
"autoJumpProjectSiteOnConfiguraionTips": "The interface injected by the Tampermonkey script may conflict with or pollute the original styles of the webpage, causing style issues. Jumping to the tested project homepage to open the settings interface can effectively prevent layout issues. It is recommended to check this option."
urlPatternType_EqualsThisString: "Equals This String",
112
-
urlPatternType_ContainsThisString: "Contains This String",
113
-
urlPatternType_MatchThisRegexp: "Match This Regexp",
114
-
urlPatternType_MatchALL: "Match ALL",
118
+
"enable": "Enable This Breakpoint:",
119
+
"enableTips": "Whether to enable this breakpoint. It will only take effect when the breakpoint is enabled. Unchecking it can temporarily disable the breakpoint without deleting it.",
115
120
116
-
urlPatternTextTips: "",
117
-
urlPatternTextPlaceholder: "关键字或正则表达式",
121
+
"urlPattern": "URL Matching Method:",
122
+
"urlPatternTips": "The URL matching method is used to specify when the script's URL meets certain conditions to hit this breakpoint.",
"enableResponseDebuggerTips": "After enabling the response breakpoint, the breakpoint will be triggered in the callback function of the JSONP request.",
143
+
144
+
"callbackFunctionParamName": "JSONP Callback Function Parameter Name:",
145
+
"callbackFunctionParamNameTips": "If not specified, the built-in engine will automatically infer the JSONP parameter name. If the inference fails, you can manually specify it.",
146
+
"callbackFunctionParamNamePlaceholder": "If not specified, the built-in engine will automatically infer the JSONP parameter name.",
147
+
148
+
"comment": "Comment:",
149
+
"commentTips": "You can enter some comments or contextual information to avoid forgetting it over time.",
150
+
"commentPlaceholder": "A good memory is not as good as a written record."
0 commit comments