vite-uni-dev-tool 0.0.48 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -0
- package/dist/const.cjs +1 -0
- package/dist/const.d.ts +78 -161
- package/dist/const.d.ts.map +1 -1
- package/dist/const.js +1 -47
- package/dist/core-shared.d.ts +44 -0
- package/dist/core-shared.d.ts.map +1 -0
- package/dist/core-shared.js +1 -0
- package/dist/core.d.ts +2 -40
- package/dist/core.d.ts.map +1 -1
- package/dist/core.js +4 -159
- package/dist/i18n/index.cjs +1 -0
- package/dist/i18n/index.d.ts +9 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +1 -0
- package/dist/i18n/instance.cjs +1 -0
- package/dist/i18n/instance.d.ts +15 -0
- package/dist/i18n/instance.d.ts.map +1 -0
- package/dist/i18n/instance.js +1 -0
- package/dist/i18n/locales/en.cjs +1 -0
- package/dist/i18n/locales/en.d.ts +470 -0
- package/dist/i18n/locales/en.d.ts.map +1 -0
- package/dist/i18n/locales/en.js +1 -0
- package/dist/i18n/locales/zh-Hans.cjs +1 -0
- package/dist/i18n/locales/zh-Hans.d.ts +476 -0
- package/dist/i18n/locales/zh-Hans.d.ts.map +1 -0
- package/dist/i18n/locales/zh-Hans.js +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/modules/devConsole/index.cjs +4 -0
- package/dist/{devConsole → modules/devConsole}/index.d.ts +1 -1
- package/dist/modules/devConsole/index.d.ts.map +1 -0
- package/dist/modules/devConsole/index.js +4 -0
- package/dist/modules/devEvent/index.cjs +5 -0
- package/dist/modules/devEvent/index.d.ts +115 -0
- package/dist/modules/devEvent/index.d.ts.map +1 -0
- package/dist/modules/devEvent/index.js +5 -0
- package/dist/modules/devIntercept/index.cjs +13 -0
- package/dist/modules/devIntercept/index.d.ts +71 -0
- package/dist/modules/devIntercept/index.d.ts.map +1 -0
- package/dist/modules/devIntercept/index.js +13 -0
- package/dist/modules/devStore/index.cjs +1 -0
- package/dist/modules/devStore/index.d.ts +159 -0
- package/dist/modules/devStore/index.d.ts.map +1 -0
- package/dist/modules/devStore/index.js +1 -0
- package/dist/modules/devToolInfo/index.cjs +1 -0
- package/dist/modules/devToolInfo/index.d.ts +27 -0
- package/dist/modules/devToolInfo/index.d.ts.map +1 -0
- package/dist/modules/devToolInfo/index.js +1 -0
- package/dist/plugins/uniDevTool/transform/transformApp.cjs +44 -0
- package/dist/plugins/uniDevTool/transform/transformApp.d.ts.map +1 -1
- package/dist/plugins/uniDevTool/transform/transformApp.js +17 -17
- package/dist/plugins/uniDevTool/transform/transformMain.cjs +3 -0
- package/dist/plugins/uniDevTool/transform/transformMain.d.ts.map +1 -1
- package/dist/plugins/uniDevTool/transform/transformMain.js +3 -3
- package/dist/plugins/uniDevTool/transform/transformVue.cjs +41 -0
- package/dist/plugins/uniDevTool/transform/transformVue.d.ts +1 -2
- package/dist/plugins/uniDevTool/transform/transformVue.d.ts.map +1 -1
- package/dist/plugins/uniDevTool/transform/transformVue.js +32 -19
- package/dist/plugins/uniDevTool/uniDevTool.cjs +5 -0
- package/dist/plugins/uniDevTool/uniDevTool.d.ts +3 -11
- package/dist/plugins/uniDevTool/uniDevTool.d.ts.map +1 -1
- package/dist/plugins/uniDevTool/uniDevTool.js +3 -3
- package/dist/plugins/uniGlobalComponents/uniGlobalComponents.cjs +19 -0
- package/dist/plugins/uniGlobalComponents/uniGlobalComponents.d.ts.map +1 -1
- package/dist/plugins/uniGlobalComponents/uniGlobalComponents.js +11 -19
- package/dist/plugins/uniParseStock/index.d.ts +10 -0
- package/dist/plugins/uniParseStock/index.d.ts.map +1 -0
- package/dist/plugins/utils/index.cjs +2 -0
- package/dist/plugins/utils/index.d.ts +1 -3
- package/dist/plugins/utils/index.d.ts.map +1 -1
- package/dist/plugins/utils/index.js +2 -2
- package/dist/shims-uni.d.ts +140 -0
- package/dist/type.d.ts +174 -16
- package/dist/type.d.ts.map +1 -1
- package/dist/utils/array.cjs +1 -0
- package/dist/utils/array.d.ts.map +1 -1
- package/dist/utils/array.js +1 -12
- package/dist/utils/date.cjs +1 -0
- package/dist/utils/date.d.ts.map +1 -1
- package/dist/utils/date.js +1 -59
- package/dist/utils/file.cjs +1 -0
- package/dist/utils/file.d.ts.map +1 -1
- package/dist/utils/file.js +1 -85
- package/dist/utils/function.cjs +1 -0
- package/dist/utils/function.d.ts +13 -0
- package/dist/utils/function.d.ts.map +1 -1
- package/dist/utils/function.js +1 -68
- package/dist/utils/index.cjs +1 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +1 -63
- package/dist/utils/ip.cjs +1 -0
- package/dist/utils/ip.d.ts +1 -1
- package/dist/utils/ip.d.ts.map +1 -1
- package/dist/utils/ip.js +1 -45
- package/dist/utils/language.cjs +1 -0
- package/dist/utils/language.d.ts +2 -1
- package/dist/utils/language.d.ts.map +1 -1
- package/dist/utils/language.js +1 -63
- package/dist/utils/object.cjs +1 -0
- package/dist/utils/object.d.ts +4 -5
- package/dist/utils/object.d.ts.map +1 -1
- package/dist/utils/object.js +1 -136
- package/dist/utils/openLink.cjs +1 -0
- package/dist/utils/openLink.d.ts.map +1 -1
- package/dist/utils/openLink.js +1 -28
- package/dist/utils/page.cjs +1 -0
- package/dist/utils/page.d.ts.map +1 -1
- package/dist/utils/page.js +1 -7
- package/dist/utils/platform.cjs +1 -0
- package/dist/utils/platform.d.ts.map +1 -1
- package/dist/utils/platform.js +1 -17
- package/dist/utils/string.cjs +1 -0
- package/dist/utils/string.d.ts.map +1 -1
- package/dist/utils/string.js +1 -114
- package/dist/utils/utils.cjs +1 -0
- package/dist/utils/utils.d.ts +1 -1
- package/dist/utils/utils.d.ts.map +1 -1
- package/dist/utils/utils.js +1 -126
- package/dist/v3/AppTransition/index.vue +170 -0
- package/dist/v3/AutoSizer/index.vue +4 -5
- package/dist/v3/AutoSizer/index1.vue +4 -6
- package/dist/v3/AutoSizer/utils.ts +1 -1
- package/dist/v3/CaptureScreen/index.vue +19 -8
- package/dist/v3/CircularButton/index.vue +64 -13
- package/dist/v3/ConsoleList/ConsoleItem.vue +56 -5
- package/dist/v3/ConsoleList/RunJSInput.vue +10 -6
- package/dist/v3/ConsoleList/index.vue +51 -35
- package/dist/v3/CustomSwiper/CustomSwiperItem.vue +49 -0
- package/dist/v3/CustomSwiper/index.vue +104 -0
- package/dist/v3/DevTool/fps-collector.render.ts +148 -0
- package/dist/v3/DevTool/index.vue +209 -102
- package/dist/v3/DevToolButton/index.vue +40 -59
- package/dist/v3/DevToolTitle/index.vue +4 -1
- package/dist/v3/DevToolWindow/DevToolOverlay.vue +182 -0
- package/dist/v3/DevToolWindow/const.ts +47 -69
- package/dist/v3/DevToolWindow/hooks/dataUtils.ts +48 -0
- package/dist/v3/DevToolWindow/hooks/useDevToolData.ts +338 -0
- package/dist/v3/DevToolWindow/hooks/useDevToolHandlers.ts +549 -0
- package/dist/v3/DevToolWindow/hooks/useDevToolOverlay.ts +184 -0
- package/dist/v3/DevToolWindow/index.css +89 -0
- package/dist/v3/DevToolWindow/index.vue +800 -1450
- package/dist/v3/DraggableContainer/index.vue +456 -0
- package/dist/v3/ElEvent/ElEventItem.vue +4 -3
- package/dist/v3/ElEvent/index.vue +26 -9
- package/dist/v3/Empty/index.vue +1 -0
- package/dist/v3/FilterInput/index.vue +8 -22
- package/dist/v3/FilterSelect/index.vue +37 -24
- package/dist/v3/Instance/components/InstanceTreeNode.vue +265 -0
- package/dist/v3/Instance/flatten.ts +226 -0
- package/dist/v3/Instance/index.vue +94 -0
- package/dist/v3/Instance/registry.ts +49 -0
- package/dist/v3/Instance/transformTree.ts +375 -0
- package/dist/v3/Instance/transformTreeCtx.ts +268 -0
- package/dist/v3/{InstanceTree → Instance}/typing.d.ts +15 -2
- package/dist/v3/InstanceDetail/index.vue +433 -44
- package/dist/v3/JsonDetail/index.vue +12 -8
- package/dist/v3/JsonPretty/components/Brackets/index.vue +1 -0
- package/dist/v3/JsonPretty/components/Carets/index.vue +2 -1
- package/dist/v3/JsonPretty/components/CheckController/index.vue +26 -15
- package/dist/v3/JsonPretty/components/TreeNode/index.vue +42 -20
- package/dist/v3/JsonPretty/index.vue +60 -37
- package/dist/v3/JsonPretty/utils/index.ts +41 -44
- package/dist/v3/MovableContainer/index.vue +89 -0
- package/dist/v3/NFCList/NFCItem.vue +14 -14
- package/dist/v3/NFCList/NFCTool.vue +99 -81
- package/dist/v3/NFCList/index.vue +14 -10
- package/dist/v3/NetworkList/InterceptConfig.vue +154 -364
- package/dist/v3/NetworkList/InterceptItem.vue +14 -6
- package/dist/v3/NetworkList/NetworkDetail.vue +34 -29
- package/dist/v3/NetworkList/NetworkIntercept.vue +11 -8
- package/dist/v3/NetworkList/NetworkItem.vue +27 -11
- package/dist/v3/NetworkList/NetworkSend.vue +132 -290
- package/dist/v3/NetworkList/hooks/useNetworkForm.ts +86 -0
- package/dist/v3/NetworkList/index.vue +32 -24
- package/dist/v3/NetworkList/utils.ts +101 -0
- package/dist/v3/Performance/index.vue +495 -0
- package/dist/v3/Performance/modules/PerformanceMetrics.vue +153 -0
- package/dist/v3/Performance/modules/PerformanceWidget.vue +249 -0
- package/dist/v3/Performance/modules/usePerformanceChart.ts +460 -0
- package/dist/v3/Performance/modules/usePerformanceData.ts +258 -0
- package/dist/v3/Pick/index.vue +322 -0
- package/dist/v3/PiniaList/index.vue +38 -17
- package/dist/v3/RouteList/index.vue +32 -15
- package/dist/v3/RunJS/index.vue +30 -10
- package/dist/v3/ScanCodeList/ScanCodeItem.vue +2 -9
- package/dist/v3/ScanCodeList/index.vue +12 -9
- package/dist/v3/SettingButton/index.vue +45 -0
- package/dist/v3/SettingList/index.css +120 -0
- package/dist/v3/SettingList/index.vue +96 -537
- package/dist/v3/SettingList/modules/SettingDevTool.vue +208 -0
- package/dist/v3/SettingList/modules/SettingInfo.vue +119 -0
- package/dist/v3/SettingList/modules/SettingLanguage.vue +74 -0
- package/dist/v3/SettingList/modules/SettingLog.vue +230 -0
- package/dist/v3/SettingList/modules/SettingNetwork.vue +120 -0
- package/dist/v3/SettingList/modules/SettingTheme.vue +312 -0
- package/dist/v3/SourceCode/Line.vue +15 -2
- package/dist/v3/SourceCode/index.vue +25 -24
- package/dist/v3/SourceCode/parseCode.ts +114 -56
- package/dist/v3/StorageList/index.vue +33 -33
- package/dist/v3/Tabs/index.vue +31 -28
- package/dist/v3/Tag/index.vue +39 -20
- package/dist/v3/TransferList/TransferDetail.vue +268 -0
- package/dist/v3/TransferList/TransferItem.vue +125 -0
- package/dist/v3/TransferList/index.vue +181 -0
- package/dist/v3/UniEvent/UniEventItem.vue +1 -0
- package/dist/v3/UniEvent/index.vue +28 -29
- package/dist/v3/{VirtualListPro → VirtualList}/AutoSize.vue +1 -1
- package/dist/v3/VirtualList/index.vue +382 -82
- package/dist/v3/VuexList/index.vue +38 -17
- package/dist/v3/WebSocket/WebSocketDetail.vue +142 -80
- package/dist/v3/WebSocket/WebSocketItem.vue +10 -4
- package/dist/v3/WebSocket/index.vue +44 -30
- package/dist/v3/hooks/useNFC/index.ts +6 -6
- package/dist/v3/hooks/useNFC/typing.d.ts +2 -2
- package/dist/v3/hooks/useNFC/useNFCAndroid.ts +215 -626
- package/dist/v3/hooks/useNFC/useNFCMpWeiXin.ts +54 -85
- package/dist/v3/hooks/useNFC/utils.ts +3 -3
- package/dist/v3/hooks/useRequest/index.ts +2 -2
- package/dist/v3/hooks/useScanCode/index.ts +10 -8
- package/dist/v3/styles/theme.css +290 -0
- package/dist/v3/styles/theme.ts +12 -0
- package/package.json +25 -5
- package/dist/devConsole/index.d.ts.map +0 -1
- package/dist/devConsole/index.js +0 -273
- package/dist/devEvent/index.d.ts +0 -328
- package/dist/devEvent/index.d.ts.map +0 -1
- package/dist/devEvent/index.js +0 -697
- package/dist/devEventBus/index.d.ts +0 -42
- package/dist/devEventBus/index.d.ts.map +0 -1
- package/dist/devEventBus/index.js +0 -70
- package/dist/devIntercept/index.d.ts +0 -281
- package/dist/devIntercept/index.d.ts.map +0 -1
- package/dist/devIntercept/index.js +0 -949
- package/dist/devRunJS/index.d.ts +0 -67
- package/dist/devRunJS/index.d.ts.map +0 -1
- package/dist/devStore/index.d.ts +0 -199
- package/dist/devStore/index.d.ts.map +0 -1
- package/dist/devStore/index.js +0 -562
- package/dist/devToolInfo/index.d.ts +0 -17
- package/dist/devToolInfo/index.d.ts.map +0 -1
- package/dist/devToolInfo/index.js +0 -15
- package/dist/v3/AutoSizer/utils.d.ts +0 -5
- package/dist/v3/AutoSizer/utils.d.ts.map +0 -1
- package/dist/v3/ConsoleList/staticTips.d.ts +0 -13
- package/dist/v3/ConsoleList/staticTips.d.ts.map +0 -1
- package/dist/v3/DevToolWindow/const.d.ts +0 -46
- package/dist/v3/DevToolWindow/const.d.ts.map +0 -1
- package/dist/v3/InstanceTree/components/InstanceTreeNode.vue +0 -81
- package/dist/v3/InstanceTree/flatten.d.ts +0 -10
- package/dist/v3/InstanceTree/flatten.d.ts.map +0 -1
- package/dist/v3/InstanceTree/flatten.ts +0 -75
- package/dist/v3/InstanceTree/index.vue +0 -51
- package/dist/v3/InstanceTree/transformTree.d.ts +0 -17
- package/dist/v3/InstanceTree/transformTree.d.ts.map +0 -1
- package/dist/v3/InstanceTree/transformTree.ts +0 -237
- package/dist/v3/JsonPretty/hooks/useClipboard.d.ts +0 -4
- package/dist/v3/JsonPretty/hooks/useClipboard.d.ts.map +0 -1
- package/dist/v3/JsonPretty/hooks/useError.d.ts +0 -8
- package/dist/v3/JsonPretty/hooks/useError.d.ts.map +0 -1
- package/dist/v3/JsonPretty/type.d.ts +0 -94
- package/dist/v3/JsonPretty/type.d.ts.map +0 -1
- package/dist/v3/JsonPretty/utils/index.d.ts +0 -10
- package/dist/v3/JsonPretty/utils/index.d.ts.map +0 -1
- package/dist/v3/NFCList/const.d.ts +0 -13
- package/dist/v3/NFCList/const.d.ts.map +0 -1
- package/dist/v3/NetworkList/const.d.ts +0 -5
- package/dist/v3/NetworkList/const.d.ts.map +0 -1
- package/dist/v3/SourceCode/parseCode.d.ts +0 -27
- package/dist/v3/SourceCode/parseCode.d.ts.map +0 -1
- package/dist/v3/UploadList/UploadDetail.vue +0 -255
- package/dist/v3/UploadList/UploadItem.vue +0 -122
- package/dist/v3/UploadList/index.vue +0 -125
- package/dist/v3/VirtualListPro/index.vue +0 -229
- package/dist/v3/hooks/useContainerStyle.d.ts +0 -15
- package/dist/v3/hooks/useContainerStyle.d.ts.map +0 -1
- package/dist/v3/hooks/useNFC/index.d.ts +0 -5
- package/dist/v3/hooks/useNFC/index.d.ts.map +0 -1
- package/dist/v3/hooks/useNFC/useNFCAndroid.d.ts +0 -2
- package/dist/v3/hooks/useNFC/useNFCAndroid.d.ts.map +0 -1
- package/dist/v3/hooks/useNFC/useNFCMpWeiXin.d.ts +0 -2
- package/dist/v3/hooks/useNFC/useNFCMpWeiXin.d.ts.map +0 -1
- package/dist/v3/hooks/useNFC/utils.d.ts +0 -95
- package/dist/v3/hooks/useNFC/utils.d.ts.map +0 -1
- package/dist/v3/hooks/useRequest/index.d.ts +0 -126
- package/dist/v3/hooks/useRequest/index.d.ts.map +0 -1
- package/dist/v3/hooks/useRequest/utils.d.ts +0 -35
- package/dist/v3/hooks/useRequest/utils.d.ts.map +0 -1
- package/dist/v3/hooks/useScanCode/index.d.ts +0 -36
- package/dist/v3/hooks/useScanCode/index.d.ts.map +0 -1
- /package/dist/v3/{VirtualListPro → VirtualList}/readme.md +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{ref as c}from"vue";import{i18n as o}from"./instance.js";const l=c(o.locale);o.onChange(t=>{l.value=t});function s(){return{locale:l,t:e=>o.t(e),setLocale:e=>{o.locale=e}}}export{s as useI18n};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./locales/zh-Hans.cjs"),a=require("./locales/en.cjs"),c=require("../modules/devToolInfo/index.cjs"),u={"zh-Hans":l.default||l,en:a.default||a};let o=c.getDevToolInfo().language||"zh-Hans";const r=new Set,i={get locale(){return o},set locale(e){u[e]&&(o=e,c.setDevToolInfo({language:e}),r.forEach(n=>n(e)))},t(e){const n=e.split(".");let t=u[o];for(const s of n)if(t&&t[s]!==void 0)t=t[s];else return e;return t},onChange(e){return r.add(e),()=>r.delete(e)}};exports.i18n=i;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 核心层 i18n 实例,不依赖 Vue 响应式
|
|
3
|
+
*/
|
|
4
|
+
export declare const i18n: {
|
|
5
|
+
locale: string;
|
|
6
|
+
/**
|
|
7
|
+
* 翻译方法
|
|
8
|
+
*/
|
|
9
|
+
t(key: string): string;
|
|
10
|
+
/**
|
|
11
|
+
* 监听语言变更
|
|
12
|
+
*/
|
|
13
|
+
onChange(cb: (lang: string) => void): () => boolean;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=instance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"instance.d.ts","sourceRoot":"","sources":["../../src/i18n/instance.ts"],"names":[],"mappings":"AAYA;;GAEG;AACH,eAAO,MAAM,IAAI;;IAWf;;OAEG;WACI,MAAM,GAAG,MAAM;IAYtB;;OAEG;wBACiB,MAAM,KAAK,IAAI;CAIpC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import l from"./locales/zh-Hans.js";import a from"./locales/en.js";import{getDevToolInfo as u,setDevToolInfo as c}from"../modules/devToolInfo/index.js";const f={"zh-Hans":l.default||l,en:a.default||a};let n=u().language||"zh-Hans";const r=new Set,g={get locale(){return n},set locale(e){f[e]&&(n=e,c({language:e}),r.forEach(o=>o(e)))},t(e){const o=e.split(".");let t=f[n];for(const s of o)if(t&&t[s]!==void 0)t=t[s];else return e;return t},onChange(e){return r.add(e),()=>r.delete(e)}};export{g as i18n};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const e={route:{title:"Route",startPage:"Start Page",currentPage:"Current Page",visitTimes:"Visit Times",lastEnterTime:"Last Enter Time",lastLeaveTime:"Last Leave Time",lastDuration:"Last Duration",totalDuration:"Total Duration"},tabs:{console:"Console",network:"Network",upload:"Upload",download:"Download",transfer:"Transfer",websocket:"WebSocket",route:"Route",elEvent:"Element Event",uniEvent:"UniEvent",captureScreen:"Capture Screen",scanCode:"Scan Code",nfc:"NFC",storage:"Storage",vuex:"Vuex",pinia:"Pinia",performance:"Performance",instance:"Component",setting:"Setting"},performance:{title:"Performance",fps:"FPS",cpu:"CPU",memory:"Memory",widget:"Widget",enable:"Monitor",settings:"Settings",longTaskTitle:"CPU Profile (Long Tasks)",longTaskTip:"Capture long task records that cause frame drops",ui:"UI",logic:"Logic",platformTip:"Platform Limits: Some metrics may be unavailable on this platform"},storage:{title:"Storage",searchKey:"Search Key"},transfer:{title:"Transfer List",searchUrl:"Search URL",detailTitle:"Transfer Detail"},upload:{title:"Upload",searchUrl:"Search URL",detailTitle:"Upload Detail"},download:{title:"Download",searchUrl:"Search URL",detailTitle:"Download Detail",filePath:"File Path"},websocket:{title:"WebSocket",searchUrl:"Search URL",detailTitle:"WebSocket Detail",messageList:"Message List",noMessage:"No Message",messageDetail:"Message Detail",send:"Send",sendPlaceholder:"Send message..."},uniEvent:{title:"UniEvent",eventList:"Event List"},elEvent:{title:"Element Event List"},captureScreen:{title:"Capture Screen",type:"Type",page:"Page",captureTime:"Capture Time",startTime:"Start Time",endTime:"End Time",path:"Path"},setting:{devTool:{title:"DevTool",currentVersion:"Current Version",buildTime:"Build Time",feedbackUrl:"Feedback URL",slogan:"Write once, debug everywhere 😂 , feedback if any issues",showHideButton:"Show/Hide Debug Button",hideButtonTip:"Will not show debug button after unchecking",hideButton:"Hide Debug Button",showButton:"Show Debug Button",tabsConfig:"Tabs Configuration",tabsConfigTip:"Check to show tabs in DevTool, uncheck to hide",saveAndRestart:"Save and Restart",restartDevTool:"Restart DevTool",restartDevToolTip:"Click to restart DevTool",restartDevToolButton:"Restart DevTool",destroyDevTool:"Destroy DevTool",destroyDevToolTip:"Click to destroy DevTool, will not receive debug info after destruction, need to re-create via createDevTool()",destroyDevToolButton:"Destroy DevTool",restartApp:"Restart App",restartAppTip:"Click to restart App",restartAppButton:"Restart App",storageUsage:"Storage Usage",storageUsageTip:"Storage usage of current info, only clears Console, Network, Upload, Websocket, UniEvent",clearCache:"Clear Cache",language:"Language",languageTip:"Select Interface Language",confirmLanguage:"Change Language",confirmLanguageTip:"Language changed successfully, restarting...",showPerformanceTitle:"Show/Hide Performance Panel",performanceTip:"Will not show performance panel after unchecking",hidePerformance:"Hide Performance Panel",showPerformance:"Show Performance Panel",performanceShowFps:"Draw FPS Line",performanceShowCpu:"Draw CPU Line",performanceShowMemory:"Draw Memory Line"},network:{title:"Network",ip:"IP Address",unknown:"Unknown",ipTip:"IP address not available on some platforms",status:"Connection Status",connected:"Connected",disconnected:"Disconnected",type:"Network Type",interceptRole:"Request Interception Rules",intercept:"Cache Interception Rules Locally",interceptTip:"If checked, network interception rules will be cached locally.",cacheNetworkLog:"Cache network logs locally",cacheNetworkLogTip:"If checked, network logs will be cached locally.",searchUrl:"Search URL",btnIntercept:"Intercept",send:"Send",requestDetail:"Request Detail",general:"General",requestUrl:"Request URL",method:"Request Method",statusCode:"Status Code",duration:"Duration",size:"Size",sponsor:"Initiator",requestHeaders:"Request Headers",responseHeaders:"Response Headers",noRequestHeaders:"No Request Headers",noResponseHeaders:"No Response Headers",resend:"Resend",intercepted:"Intercepted",interceptedShort:"Int",interceptConfig:"Intercept Configuration",timeout:"Timeout (ms)",responseStatus:"Response Status",requestMethod:"Request Method",placeholderHeaderName:"Enter header name",placeholderHeaderValue:"Enter header value",placeholderRespHeaderName:"Enter response header name",placeholderRespHeaderValue:"Enter response header value",placeholderUrl:"Enter request URL",toastEnterUrl:"Please enter a request URL",requestParams:"Request Parameters (query)",placeholderParamName:"Enter parameter name",placeholderParamValue:"Enter parameter value",emptyParams:"No request parameters",requestBody:"Request Body",placeholderBody:"Enter request body",responseBody:"Response Body",placeholderRespBody:"Enter response body",saveConfig:"Save Configuration",toastSaveSuccess:"Configuration saved",toastBodyJson:"Please enter valid JSON for request body",toastRespJson:"Please enter valid JSON for response body",tipsIntercept:"tips: Intercept the request, the input headers and parameters will be used before sending. A real request will be made (might fail), and the final response will be modified.",tipsTimeout:"tips: Prevent non-existent requests or abnormal durations.",expectedStatus:"Expected Status",expectedResult:"Expected Result"},theme:{title:"Theme",lightMode:"Light Mode",darkMode:"Dark Mode",themes:{light:"Light",eye:"Eye Care",sakura:"Sakura",frost:"Frost",sunny:"Sunny",dark:"Dark",midnight:"Midnight",gulf:"Gulf Stream",lava:"Lava",emerald:"Emerald"},useTransition:"Enable Transition Animation",useTransitionTip:"Check to enable transition animation.",baseFontSize:"Base Font Size",tagFontSize:"Tag Font Size",tipsFontSize:"Tips Font Size",fontFamily:"Font Family",fontWeight:"Font Weight",save:"Save Font Settings",fonts:{default:"Default",pingFangSC:"PingFang SC",microsoftYaHei:"Microsoft YaHei",simHei:"SimHei",simSun:"SimSun",kaiti:"KaiTi",fangSong:"FangSong"},saveTip:"Settings saved, restarting..."},info:{title:"Info",viewWindow:"View Window",viewWindowTip:"View window info via uni.getWindowInfo (may not be supported)",viewDevice:"View Device",viewDeviceTip:"View device info via uni.getDeviceInfo (may not be supported)",viewSystem:"View System",viewSystemTip:"View system info via uni.getSystemInfoSync (may not be supported)",viewAppInfo:"View AppInfo",viewAppInfoTip:"View app info via uni.getAppBaseInfo (may not be supported)",notSupported:"Not supported"},log:{title:"Log",exportLog:"Export Console Logs",exportLogTip:"Select to export current Console logs",cacheConsoleLog:"Cache console logs locally",cacheConsoleLogTip:"If checked, console logs will be cached locally",exportNetwork:"Export Network Logs",exportNetworkTip:"Select to export current Network logs",exportTransfer:"Export Transfer Logs",exportTransferTip:"Select to export current Transfer logs",exportWebsocket:"Export WebSocket Logs",exportWebsocketTip:"Select to export current WebSocket logs",exportStorage:"Export Storage Logs",exportStorageTip:"Select to export current Storage, Vuex, Pinia logs",exportWindow:"Export Window Info",exportWindowTip:"Select to export current Window info",exportDevice:"Export Device Info",exportDeviceTip:"Select to export current Device info",exportSystem:"Export System Info",exportSystemTip:"Select to export current System info",exportUniEvent:"Export Uni Events",exportUniEventTip:"Select to export current Uni events",exportElEvent:"Export Element Events",exportElEventTip:"Select to export current Element events",exportScanCodeList:"Export ScanCode Logs",exportScanCodeListTip:"Select to export current ScanCode logs",exportNfcList:"Export NFC Logs",exportNfcListTip:"Select to export current NFC logs",export:"Export"}},pinia:{title:"Pinia"},vuex:{title:"Vuex"},scanCode:{title:"ScanCode"},instance:{title:"Instance",refresh:"Refresh",gettingInfo:"Getting Instance Info...",noInfo:"No Instance Info",selectNode:"Select Node to View Info",props:"Props",data:"Data",provides:"Provides",functions:"Functions",emits:"Emits",other:"Other"},nfc:{title:"NFC",detail:"NFC Details",tagId:"Tag ID",tagType:"Tag Type",standard:"Standard",maxTransceiveLength:"Max Transceive Length",unitByte:"bytes",toolTitle:"NFC Tool",status:"Status",deviceSupport:"Device Support NFC:",support:"Supported",notSupport:"Not Supported",enabledStatus:"NFC Enabled:",enabled:"Enabled",disabled:"Disabled",connectStatus:"NFC Connection:",connected:"Connected",disconnected:"Disconnected",operation:"NFC Operation",startScan:"Start Scan",stopScan:"Stop Scan",read:"Read",writeLabel:"Write",result:"Result",noResult:"No Result",write:"NFC Write",textContent:"Text Content",placeholderText:"Enter text to write",link:"Link",placeholderLink:"Enter URL, eg: https://gitee.com/cloud_l/vite-uni-dev-tool",wifiConfig:"WIFI Config",placeholderSsid:"SSID",placeholderPassword:"Password",encryption:"Encryption:",cardInfo:"Card Info",placeholderName:"Name",placeholderOrg:"Organization",placeholderTel:"Telephone",placeholderAddress:"Address",placeholderWeb:"Website",tel:"Telephone",placeholderTelInput:"Tel: eg 188888888888",appLaunch:"App Launch",placeholderPkg:"Package Name, eg: com.example.app",startWrite:"Start Write",tipsWriting:"tips: Do not move during writing to avoid failure",copy:"NFC Copy",step1:"Step 1: Enable NFC Scan to read source tag",step2:"Step 2: Change to target tag, copy source to target",step3:"Step 3: Disable NFC Scan after writing",tipsCopying:"tips: Do not move during copying to avoid failure",tipsTool:"tips: Tool for dev/test only, use at your own risk",toCopy:"Copy",copying:"Copying...",writeMethods:{text:"Text",uri:"URI",wifi:"WIFI",card:"Card",tel:"Tel",packageName:"App"},authTypes:{OPEN:"Open","WPA-Personal":"WPA","WPA2-Personal":"WPA2",WPA_PERSONAL:"WPA Personal",WPA_WPA2_PERSONAL:"WPA/WPA2 Personal",WPA2_PERSONAL:"WPA2 Personal",WPA2_ENTERPRISE:"WPA2 Enterprise",WPA3_PERSONAL:"WPA3 Personal",WPA3_ENTERPRISE:"WPA3 Enterprise"},toast:{enterName:"Please enter name",enterTel:"Please enter telephone"}},network:{title:"Network",ip:"IP Address",unknown:"Unknown",ipTip:"IP address not available on some platforms",status:"Connection Status",connected:"Connected",disconnected:"Disconnected",type:"Network Type",interceptRole:"Request Interception Rules",intercept:"Cache Interception Rules Locally",interceptTip:"If checked, network interception rules will be cached locally.",searchUrl:"Search URL",btnIntercept:"Intercept",send:"Send",requestDetail:"Request Detail",general:"General",requestUrl:"Request URL",method:"Request Method",statusCode:"Status Code",duration:"Duration",size:"Size",sponsor:"Initiator",requestHeaders:"Request Headers",responseHeaders:"Response Headers",noRequestHeaders:"No Request Headers",noResponseHeaders:"No Response Headers",resend:"Resend",intercepted:"Intercepted",interceptedShort:"Int",sendRequest:"Send Request",timeout:"Timeout(ms)",requestMethod:"Request Method",requestParams:"Request Params(query)",requestBody:"Request Body(body)",responseBody:"Response Body(body)",interceptConfig:"Intercept Config",responseStatus:"Response Status",saveConfig:"Save Config",detail:"Detail",reset:"Reset",sending:"Sending...",tipsIntercept:"tips: Intercept request. Uses input headers/params before sending. Returns response headers/data. Will initiate a real request (may fail), modifying final response.",tipsTimeout:"tips: Prevent non-existent request or abnormal duration",placeholderHeaderName:"Enter header name",placeholderHeaderValue:"Enter header value",placeholderParamName:"Enter param name",placeholderParamValue:"Enter param value",placeholderUrl:"Enter request URL",placeholderBody:"Enter request body",placeholderRespHeaderName:"Enter response header name",placeholderRespHeaderValue:"Enter response header value",placeholderRespBody:"Enter response body",emptyParams:"No Query Params",toastEnterUrl:"Please enter request URL",toastBodyJson:"Please enter valid JSON for Request Body",toastRespJson:"Please enter valid JSON for Response Body",toastSaveSuccess:"Saved Successfully",toastRequestSuccess:"Request completed, click detail to view result"},common:{clear:"Clear",console:"Console",all:"All",selectType:"Select Type",refresh:"Refresh",navigate:"Navigate",add:"Add",scan:"Scan",tool:"Tool",searchNamePath:"Search name/path",selectStatus:"Select Status",startTime:"Start Time",endTime:"End Time",copySuccess:"Copy Success",copyFail:"Copy Failed",progress:"Progress",executionTime:"Execution Time",runPlaceholder:"Run Script...",jsonDetail:"JSON Detail",base:"Base",message:"Message",payload:"Payload",response:"Response",header:"Headers",formData:"Form Data",initSuccess:"Initialization Successful",debugSlogan:"Write once, debug everywhere 😂",devVersion:"Dev Version",modeRequired:"Please pass mode: import.meta.env.MODE",pending:"Pending",success:"Success",error:"Error",uploading:"Uploading",downloading:"Downloading",status:"Status",upload:"Upload",download:"Download",network:"Network"}};module.exports=e;
|
|
@@ -0,0 +1,470 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
route: {
|
|
3
|
+
title: string;
|
|
4
|
+
startPage: string;
|
|
5
|
+
currentPage: string;
|
|
6
|
+
visitTimes: string;
|
|
7
|
+
lastEnterTime: string;
|
|
8
|
+
lastLeaveTime: string;
|
|
9
|
+
lastDuration: string;
|
|
10
|
+
totalDuration: string;
|
|
11
|
+
};
|
|
12
|
+
tabs: {
|
|
13
|
+
console: string;
|
|
14
|
+
network: string;
|
|
15
|
+
upload: string;
|
|
16
|
+
download: string;
|
|
17
|
+
transfer: string;
|
|
18
|
+
websocket: string;
|
|
19
|
+
route: string;
|
|
20
|
+
elEvent: string;
|
|
21
|
+
uniEvent: string;
|
|
22
|
+
captureScreen: string;
|
|
23
|
+
scanCode: string;
|
|
24
|
+
nfc: string;
|
|
25
|
+
storage: string;
|
|
26
|
+
vuex: string;
|
|
27
|
+
pinia: string;
|
|
28
|
+
performance: string;
|
|
29
|
+
instance: string;
|
|
30
|
+
setting: string;
|
|
31
|
+
};
|
|
32
|
+
performance: {
|
|
33
|
+
title: string;
|
|
34
|
+
fps: string;
|
|
35
|
+
cpu: string;
|
|
36
|
+
memory: string;
|
|
37
|
+
widget: string;
|
|
38
|
+
enable: string;
|
|
39
|
+
settings: string;
|
|
40
|
+
longTaskTitle: string;
|
|
41
|
+
longTaskTip: string;
|
|
42
|
+
ui: string;
|
|
43
|
+
logic: string;
|
|
44
|
+
platformTip: string;
|
|
45
|
+
};
|
|
46
|
+
storage: {
|
|
47
|
+
title: string;
|
|
48
|
+
searchKey: string;
|
|
49
|
+
};
|
|
50
|
+
transfer: {
|
|
51
|
+
title: string;
|
|
52
|
+
searchUrl: string;
|
|
53
|
+
detailTitle: string;
|
|
54
|
+
};
|
|
55
|
+
upload: {
|
|
56
|
+
title: string;
|
|
57
|
+
searchUrl: string;
|
|
58
|
+
detailTitle: string;
|
|
59
|
+
};
|
|
60
|
+
download: {
|
|
61
|
+
title: string;
|
|
62
|
+
searchUrl: string;
|
|
63
|
+
detailTitle: string;
|
|
64
|
+
filePath: string;
|
|
65
|
+
};
|
|
66
|
+
websocket: {
|
|
67
|
+
title: string;
|
|
68
|
+
searchUrl: string;
|
|
69
|
+
detailTitle: string;
|
|
70
|
+
messageList: string;
|
|
71
|
+
noMessage: string;
|
|
72
|
+
messageDetail: string;
|
|
73
|
+
send: string;
|
|
74
|
+
sendPlaceholder: string;
|
|
75
|
+
};
|
|
76
|
+
uniEvent: {
|
|
77
|
+
title: string;
|
|
78
|
+
eventList: string;
|
|
79
|
+
};
|
|
80
|
+
elEvent: {
|
|
81
|
+
title: string;
|
|
82
|
+
};
|
|
83
|
+
captureScreen: {
|
|
84
|
+
title: string;
|
|
85
|
+
type: string;
|
|
86
|
+
page: string;
|
|
87
|
+
captureTime: string;
|
|
88
|
+
startTime: string;
|
|
89
|
+
endTime: string;
|
|
90
|
+
path: string;
|
|
91
|
+
};
|
|
92
|
+
setting: {
|
|
93
|
+
devTool: {
|
|
94
|
+
title: string;
|
|
95
|
+
currentVersion: string;
|
|
96
|
+
buildTime: string;
|
|
97
|
+
feedbackUrl: string;
|
|
98
|
+
slogan: string;
|
|
99
|
+
showHideButton: string;
|
|
100
|
+
hideButtonTip: string;
|
|
101
|
+
hideButton: string;
|
|
102
|
+
showButton: string;
|
|
103
|
+
tabsConfig: string;
|
|
104
|
+
tabsConfigTip: string;
|
|
105
|
+
saveAndRestart: string;
|
|
106
|
+
restartDevTool: string;
|
|
107
|
+
restartDevToolTip: string;
|
|
108
|
+
restartDevToolButton: string;
|
|
109
|
+
destroyDevTool: string;
|
|
110
|
+
destroyDevToolTip: string;
|
|
111
|
+
destroyDevToolButton: string;
|
|
112
|
+
restartApp: string;
|
|
113
|
+
restartAppTip: string;
|
|
114
|
+
restartAppButton: string;
|
|
115
|
+
storageUsage: string;
|
|
116
|
+
storageUsageTip: string;
|
|
117
|
+
clearCache: string;
|
|
118
|
+
language: string;
|
|
119
|
+
languageTip: string;
|
|
120
|
+
confirmLanguage: string;
|
|
121
|
+
confirmLanguageTip: string;
|
|
122
|
+
showPerformanceTitle: string;
|
|
123
|
+
performanceTip: string;
|
|
124
|
+
hidePerformance: string;
|
|
125
|
+
showPerformance: string;
|
|
126
|
+
performanceShowFps: string;
|
|
127
|
+
performanceShowCpu: string;
|
|
128
|
+
performanceShowMemory: string;
|
|
129
|
+
};
|
|
130
|
+
network: {
|
|
131
|
+
title: string;
|
|
132
|
+
ip: string;
|
|
133
|
+
unknown: string;
|
|
134
|
+
ipTip: string;
|
|
135
|
+
status: string;
|
|
136
|
+
connected: string;
|
|
137
|
+
disconnected: string;
|
|
138
|
+
type: string;
|
|
139
|
+
interceptRole: string;
|
|
140
|
+
intercept: string;
|
|
141
|
+
interceptTip: string;
|
|
142
|
+
cacheNetworkLog: string;
|
|
143
|
+
cacheNetworkLogTip: string;
|
|
144
|
+
searchUrl: string;
|
|
145
|
+
btnIntercept: string;
|
|
146
|
+
send: string;
|
|
147
|
+
requestDetail: string;
|
|
148
|
+
general: string;
|
|
149
|
+
requestUrl: string;
|
|
150
|
+
method: string;
|
|
151
|
+
statusCode: string;
|
|
152
|
+
duration: string;
|
|
153
|
+
size: string;
|
|
154
|
+
sponsor: string;
|
|
155
|
+
requestHeaders: string;
|
|
156
|
+
responseHeaders: string;
|
|
157
|
+
noRequestHeaders: string;
|
|
158
|
+
noResponseHeaders: string;
|
|
159
|
+
resend: string;
|
|
160
|
+
intercepted: string;
|
|
161
|
+
interceptedShort: string;
|
|
162
|
+
interceptConfig: string;
|
|
163
|
+
timeout: string;
|
|
164
|
+
responseStatus: string;
|
|
165
|
+
requestMethod: string;
|
|
166
|
+
placeholderHeaderName: string;
|
|
167
|
+
placeholderHeaderValue: string;
|
|
168
|
+
placeholderRespHeaderName: string;
|
|
169
|
+
placeholderRespHeaderValue: string;
|
|
170
|
+
placeholderUrl: string;
|
|
171
|
+
toastEnterUrl: string;
|
|
172
|
+
requestParams: string;
|
|
173
|
+
placeholderParamName: string;
|
|
174
|
+
placeholderParamValue: string;
|
|
175
|
+
emptyParams: string;
|
|
176
|
+
requestBody: string;
|
|
177
|
+
placeholderBody: string;
|
|
178
|
+
responseBody: string;
|
|
179
|
+
placeholderRespBody: string;
|
|
180
|
+
saveConfig: string;
|
|
181
|
+
toastSaveSuccess: string;
|
|
182
|
+
toastBodyJson: string;
|
|
183
|
+
toastRespJson: string;
|
|
184
|
+
tipsIntercept: string;
|
|
185
|
+
tipsTimeout: string;
|
|
186
|
+
expectedStatus: string;
|
|
187
|
+
expectedResult: string;
|
|
188
|
+
};
|
|
189
|
+
theme: {
|
|
190
|
+
title: string;
|
|
191
|
+
lightMode: string;
|
|
192
|
+
darkMode: string;
|
|
193
|
+
themes: {
|
|
194
|
+
light: string;
|
|
195
|
+
eye: string;
|
|
196
|
+
sakura: string;
|
|
197
|
+
frost: string;
|
|
198
|
+
sunny: string;
|
|
199
|
+
dark: string;
|
|
200
|
+
midnight: string;
|
|
201
|
+
gulf: string;
|
|
202
|
+
lava: string;
|
|
203
|
+
emerald: string;
|
|
204
|
+
};
|
|
205
|
+
useTransition: string;
|
|
206
|
+
useTransitionTip: string;
|
|
207
|
+
baseFontSize: string;
|
|
208
|
+
tagFontSize: string;
|
|
209
|
+
tipsFontSize: string;
|
|
210
|
+
fontFamily: string;
|
|
211
|
+
fontWeight: string;
|
|
212
|
+
save: string;
|
|
213
|
+
fonts: {
|
|
214
|
+
default: string;
|
|
215
|
+
pingFangSC: string;
|
|
216
|
+
microsoftYaHei: string;
|
|
217
|
+
simHei: string;
|
|
218
|
+
simSun: string;
|
|
219
|
+
kaiti: string;
|
|
220
|
+
fangSong: string;
|
|
221
|
+
};
|
|
222
|
+
saveTip: string;
|
|
223
|
+
};
|
|
224
|
+
info: {
|
|
225
|
+
title: string;
|
|
226
|
+
viewWindow: string;
|
|
227
|
+
viewWindowTip: string;
|
|
228
|
+
viewDevice: string;
|
|
229
|
+
viewDeviceTip: string;
|
|
230
|
+
viewSystem: string;
|
|
231
|
+
viewSystemTip: string;
|
|
232
|
+
viewAppInfo: string;
|
|
233
|
+
viewAppInfoTip: string;
|
|
234
|
+
notSupported: string;
|
|
235
|
+
};
|
|
236
|
+
log: {
|
|
237
|
+
title: string;
|
|
238
|
+
exportLog: string;
|
|
239
|
+
exportLogTip: string;
|
|
240
|
+
cacheConsoleLog: string;
|
|
241
|
+
cacheConsoleLogTip: string;
|
|
242
|
+
exportNetwork: string;
|
|
243
|
+
exportNetworkTip: string;
|
|
244
|
+
exportTransfer: string;
|
|
245
|
+
exportTransferTip: string;
|
|
246
|
+
exportWebsocket: string;
|
|
247
|
+
exportWebsocketTip: string;
|
|
248
|
+
exportStorage: string;
|
|
249
|
+
exportStorageTip: string;
|
|
250
|
+
exportWindow: string;
|
|
251
|
+
exportWindowTip: string;
|
|
252
|
+
exportDevice: string;
|
|
253
|
+
exportDeviceTip: string;
|
|
254
|
+
exportSystem: string;
|
|
255
|
+
exportSystemTip: string;
|
|
256
|
+
exportUniEvent: string;
|
|
257
|
+
exportUniEventTip: string;
|
|
258
|
+
exportElEvent: string;
|
|
259
|
+
exportElEventTip: string;
|
|
260
|
+
exportScanCodeList: string;
|
|
261
|
+
exportScanCodeListTip: string;
|
|
262
|
+
exportNfcList: string;
|
|
263
|
+
exportNfcListTip: string;
|
|
264
|
+
export: string;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
pinia: {
|
|
268
|
+
title: string;
|
|
269
|
+
};
|
|
270
|
+
vuex: {
|
|
271
|
+
title: string;
|
|
272
|
+
};
|
|
273
|
+
scanCode: {
|
|
274
|
+
title: string;
|
|
275
|
+
};
|
|
276
|
+
instance: {
|
|
277
|
+
title: string;
|
|
278
|
+
refresh: string;
|
|
279
|
+
gettingInfo: string;
|
|
280
|
+
noInfo: string;
|
|
281
|
+
selectNode: string;
|
|
282
|
+
props: string;
|
|
283
|
+
data: string;
|
|
284
|
+
provides: string;
|
|
285
|
+
functions: string;
|
|
286
|
+
emits: string;
|
|
287
|
+
other: string;
|
|
288
|
+
};
|
|
289
|
+
nfc: {
|
|
290
|
+
title: string;
|
|
291
|
+
detail: string;
|
|
292
|
+
tagId: string;
|
|
293
|
+
tagType: string;
|
|
294
|
+
standard: string;
|
|
295
|
+
maxTransceiveLength: string;
|
|
296
|
+
unitByte: string;
|
|
297
|
+
toolTitle: string;
|
|
298
|
+
status: string;
|
|
299
|
+
deviceSupport: string;
|
|
300
|
+
support: string;
|
|
301
|
+
notSupport: string;
|
|
302
|
+
enabledStatus: string;
|
|
303
|
+
enabled: string;
|
|
304
|
+
disabled: string;
|
|
305
|
+
connectStatus: string;
|
|
306
|
+
connected: string;
|
|
307
|
+
disconnected: string;
|
|
308
|
+
operation: string;
|
|
309
|
+
startScan: string;
|
|
310
|
+
stopScan: string;
|
|
311
|
+
read: string;
|
|
312
|
+
writeLabel: string;
|
|
313
|
+
result: string;
|
|
314
|
+
noResult: string;
|
|
315
|
+
write: string;
|
|
316
|
+
textContent: string;
|
|
317
|
+
placeholderText: string;
|
|
318
|
+
link: string;
|
|
319
|
+
placeholderLink: string;
|
|
320
|
+
wifiConfig: string;
|
|
321
|
+
placeholderSsid: string;
|
|
322
|
+
placeholderPassword: string;
|
|
323
|
+
encryption: string;
|
|
324
|
+
cardInfo: string;
|
|
325
|
+
placeholderName: string;
|
|
326
|
+
placeholderOrg: string;
|
|
327
|
+
placeholderTel: string;
|
|
328
|
+
placeholderAddress: string;
|
|
329
|
+
placeholderWeb: string;
|
|
330
|
+
tel: string;
|
|
331
|
+
placeholderTelInput: string;
|
|
332
|
+
appLaunch: string;
|
|
333
|
+
placeholderPkg: string;
|
|
334
|
+
startWrite: string;
|
|
335
|
+
tipsWriting: string;
|
|
336
|
+
copy: string;
|
|
337
|
+
step1: string;
|
|
338
|
+
step2: string;
|
|
339
|
+
step3: string;
|
|
340
|
+
tipsCopying: string;
|
|
341
|
+
tipsTool: string;
|
|
342
|
+
toCopy: string;
|
|
343
|
+
copying: string;
|
|
344
|
+
writeMethods: {
|
|
345
|
+
text: string;
|
|
346
|
+
uri: string;
|
|
347
|
+
wifi: string;
|
|
348
|
+
card: string;
|
|
349
|
+
tel: string;
|
|
350
|
+
packageName: string;
|
|
351
|
+
};
|
|
352
|
+
authTypes: {
|
|
353
|
+
OPEN: string;
|
|
354
|
+
'WPA-Personal': string;
|
|
355
|
+
'WPA2-Personal': string;
|
|
356
|
+
WPA_PERSONAL: string;
|
|
357
|
+
WPA_WPA2_PERSONAL: string;
|
|
358
|
+
WPA2_PERSONAL: string;
|
|
359
|
+
WPA2_ENTERPRISE: string;
|
|
360
|
+
WPA3_PERSONAL: string;
|
|
361
|
+
WPA3_ENTERPRISE: string;
|
|
362
|
+
};
|
|
363
|
+
toast: {
|
|
364
|
+
enterName: string;
|
|
365
|
+
enterTel: string;
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
network: {
|
|
369
|
+
title: string;
|
|
370
|
+
ip: string;
|
|
371
|
+
unknown: string;
|
|
372
|
+
ipTip: string;
|
|
373
|
+
status: string;
|
|
374
|
+
connected: string;
|
|
375
|
+
disconnected: string;
|
|
376
|
+
type: string;
|
|
377
|
+
interceptRole: string;
|
|
378
|
+
intercept: string;
|
|
379
|
+
interceptTip: string;
|
|
380
|
+
searchUrl: string;
|
|
381
|
+
btnIntercept: string;
|
|
382
|
+
send: string;
|
|
383
|
+
requestDetail: string;
|
|
384
|
+
general: string;
|
|
385
|
+
requestUrl: string;
|
|
386
|
+
method: string;
|
|
387
|
+
statusCode: string;
|
|
388
|
+
duration: string;
|
|
389
|
+
size: string;
|
|
390
|
+
sponsor: string;
|
|
391
|
+
requestHeaders: string;
|
|
392
|
+
responseHeaders: string;
|
|
393
|
+
noRequestHeaders: string;
|
|
394
|
+
noResponseHeaders: string;
|
|
395
|
+
resend: string;
|
|
396
|
+
intercepted: string;
|
|
397
|
+
interceptedShort: string;
|
|
398
|
+
sendRequest: string;
|
|
399
|
+
timeout: string;
|
|
400
|
+
requestMethod: string;
|
|
401
|
+
requestParams: string;
|
|
402
|
+
requestBody: string;
|
|
403
|
+
responseBody: string;
|
|
404
|
+
interceptConfig: string;
|
|
405
|
+
responseStatus: string;
|
|
406
|
+
saveConfig: string;
|
|
407
|
+
detail: string;
|
|
408
|
+
reset: string;
|
|
409
|
+
sending: string;
|
|
410
|
+
tipsIntercept: string;
|
|
411
|
+
tipsTimeout: string;
|
|
412
|
+
placeholderHeaderName: string;
|
|
413
|
+
placeholderHeaderValue: string;
|
|
414
|
+
placeholderParamName: string;
|
|
415
|
+
placeholderParamValue: string;
|
|
416
|
+
placeholderUrl: string;
|
|
417
|
+
placeholderBody: string;
|
|
418
|
+
placeholderRespHeaderName: string;
|
|
419
|
+
placeholderRespHeaderValue: string;
|
|
420
|
+
placeholderRespBody: string;
|
|
421
|
+
emptyParams: string;
|
|
422
|
+
toastEnterUrl: string;
|
|
423
|
+
toastBodyJson: string;
|
|
424
|
+
toastRespJson: string;
|
|
425
|
+
toastSaveSuccess: string;
|
|
426
|
+
toastRequestSuccess: string;
|
|
427
|
+
};
|
|
428
|
+
common: {
|
|
429
|
+
clear: string;
|
|
430
|
+
console: string;
|
|
431
|
+
all: string;
|
|
432
|
+
selectType: string;
|
|
433
|
+
refresh: string;
|
|
434
|
+
navigate: string;
|
|
435
|
+
add: string;
|
|
436
|
+
scan: string;
|
|
437
|
+
tool: string;
|
|
438
|
+
searchNamePath: string;
|
|
439
|
+
selectStatus: string;
|
|
440
|
+
startTime: string;
|
|
441
|
+
endTime: string;
|
|
442
|
+
copySuccess: string;
|
|
443
|
+
copyFail: string;
|
|
444
|
+
progress: string;
|
|
445
|
+
executionTime: string;
|
|
446
|
+
runPlaceholder: string;
|
|
447
|
+
jsonDetail: string;
|
|
448
|
+
base: string;
|
|
449
|
+
message: string;
|
|
450
|
+
payload: string;
|
|
451
|
+
response: string;
|
|
452
|
+
header: string;
|
|
453
|
+
formData: string;
|
|
454
|
+
initSuccess: string;
|
|
455
|
+
debugSlogan: string;
|
|
456
|
+
devVersion: string;
|
|
457
|
+
modeRequired: string;
|
|
458
|
+
pending: string;
|
|
459
|
+
success: string;
|
|
460
|
+
error: string;
|
|
461
|
+
uploading: string;
|
|
462
|
+
downloading: string;
|
|
463
|
+
status: string;
|
|
464
|
+
upload: string;
|
|
465
|
+
download: string;
|
|
466
|
+
network: string;
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
export default _default;
|
|
470
|
+
//# sourceMappingURL=en.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/i18n/locales/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA+dE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e={route:{title:"Route",startPage:"Start Page",currentPage:"Current Page",visitTimes:"Visit Times",lastEnterTime:"Last Enter Time",lastLeaveTime:"Last Leave Time",lastDuration:"Last Duration",totalDuration:"Total Duration"},tabs:{console:"Console",network:"Network",upload:"Upload",download:"Download",transfer:"Transfer",websocket:"WebSocket",route:"Route",elEvent:"Element Event",uniEvent:"UniEvent",captureScreen:"Capture Screen",scanCode:"Scan Code",nfc:"NFC",storage:"Storage",vuex:"Vuex",pinia:"Pinia",performance:"Performance",instance:"Component",setting:"Setting"},performance:{title:"Performance",fps:"FPS",cpu:"CPU",memory:"Memory",widget:"Widget",enable:"Monitor",settings:"Settings",longTaskTitle:"CPU Profile (Long Tasks)",longTaskTip:"Capture long task records that cause frame drops",ui:"UI",logic:"Logic",platformTip:"Platform Limits: Some metrics may be unavailable on this platform"},storage:{title:"Storage",searchKey:"Search Key"},transfer:{title:"Transfer List",searchUrl:"Search URL",detailTitle:"Transfer Detail"},upload:{title:"Upload",searchUrl:"Search URL",detailTitle:"Upload Detail"},download:{title:"Download",searchUrl:"Search URL",detailTitle:"Download Detail",filePath:"File Path"},websocket:{title:"WebSocket",searchUrl:"Search URL",detailTitle:"WebSocket Detail",messageList:"Message List",noMessage:"No Message",messageDetail:"Message Detail",send:"Send",sendPlaceholder:"Send message..."},uniEvent:{title:"UniEvent",eventList:"Event List"},elEvent:{title:"Element Event List"},captureScreen:{title:"Capture Screen",type:"Type",page:"Page",captureTime:"Capture Time",startTime:"Start Time",endTime:"End Time",path:"Path"},setting:{devTool:{title:"DevTool",currentVersion:"Current Version",buildTime:"Build Time",feedbackUrl:"Feedback URL",slogan:"Write once, debug everywhere 😂 , feedback if any issues",showHideButton:"Show/Hide Debug Button",hideButtonTip:"Will not show debug button after unchecking",hideButton:"Hide Debug Button",showButton:"Show Debug Button",tabsConfig:"Tabs Configuration",tabsConfigTip:"Check to show tabs in DevTool, uncheck to hide",saveAndRestart:"Save and Restart",restartDevTool:"Restart DevTool",restartDevToolTip:"Click to restart DevTool",restartDevToolButton:"Restart DevTool",destroyDevTool:"Destroy DevTool",destroyDevToolTip:"Click to destroy DevTool, will not receive debug info after destruction, need to re-create via createDevTool()",destroyDevToolButton:"Destroy DevTool",restartApp:"Restart App",restartAppTip:"Click to restart App",restartAppButton:"Restart App",storageUsage:"Storage Usage",storageUsageTip:"Storage usage of current info, only clears Console, Network, Upload, Websocket, UniEvent",clearCache:"Clear Cache",language:"Language",languageTip:"Select Interface Language",confirmLanguage:"Change Language",confirmLanguageTip:"Language changed successfully, restarting...",showPerformanceTitle:"Show/Hide Performance Panel",performanceTip:"Will not show performance panel after unchecking",hidePerformance:"Hide Performance Panel",showPerformance:"Show Performance Panel",performanceShowFps:"Draw FPS Line",performanceShowCpu:"Draw CPU Line",performanceShowMemory:"Draw Memory Line"},network:{title:"Network",ip:"IP Address",unknown:"Unknown",ipTip:"IP address not available on some platforms",status:"Connection Status",connected:"Connected",disconnected:"Disconnected",type:"Network Type",interceptRole:"Request Interception Rules",intercept:"Cache Interception Rules Locally",interceptTip:"If checked, network interception rules will be cached locally.",cacheNetworkLog:"Cache network logs locally",cacheNetworkLogTip:"If checked, network logs will be cached locally.",searchUrl:"Search URL",btnIntercept:"Intercept",send:"Send",requestDetail:"Request Detail",general:"General",requestUrl:"Request URL",method:"Request Method",statusCode:"Status Code",duration:"Duration",size:"Size",sponsor:"Initiator",requestHeaders:"Request Headers",responseHeaders:"Response Headers",noRequestHeaders:"No Request Headers",noResponseHeaders:"No Response Headers",resend:"Resend",intercepted:"Intercepted",interceptedShort:"Int",interceptConfig:"Intercept Configuration",timeout:"Timeout (ms)",responseStatus:"Response Status",requestMethod:"Request Method",placeholderHeaderName:"Enter header name",placeholderHeaderValue:"Enter header value",placeholderRespHeaderName:"Enter response header name",placeholderRespHeaderValue:"Enter response header value",placeholderUrl:"Enter request URL",toastEnterUrl:"Please enter a request URL",requestParams:"Request Parameters (query)",placeholderParamName:"Enter parameter name",placeholderParamValue:"Enter parameter value",emptyParams:"No request parameters",requestBody:"Request Body",placeholderBody:"Enter request body",responseBody:"Response Body",placeholderRespBody:"Enter response body",saveConfig:"Save Configuration",toastSaveSuccess:"Configuration saved",toastBodyJson:"Please enter valid JSON for request body",toastRespJson:"Please enter valid JSON for response body",tipsIntercept:"tips: Intercept the request, the input headers and parameters will be used before sending. A real request will be made (might fail), and the final response will be modified.",tipsTimeout:"tips: Prevent non-existent requests or abnormal durations.",expectedStatus:"Expected Status",expectedResult:"Expected Result"},theme:{title:"Theme",lightMode:"Light Mode",darkMode:"Dark Mode",themes:{light:"Light",eye:"Eye Care",sakura:"Sakura",frost:"Frost",sunny:"Sunny",dark:"Dark",midnight:"Midnight",gulf:"Gulf Stream",lava:"Lava",emerald:"Emerald"},useTransition:"Enable Transition Animation",useTransitionTip:"Check to enable transition animation.",baseFontSize:"Base Font Size",tagFontSize:"Tag Font Size",tipsFontSize:"Tips Font Size",fontFamily:"Font Family",fontWeight:"Font Weight",save:"Save Font Settings",fonts:{default:"Default",pingFangSC:"PingFang SC",microsoftYaHei:"Microsoft YaHei",simHei:"SimHei",simSun:"SimSun",kaiti:"KaiTi",fangSong:"FangSong"},saveTip:"Settings saved, restarting..."},info:{title:"Info",viewWindow:"View Window",viewWindowTip:"View window info via uni.getWindowInfo (may not be supported)",viewDevice:"View Device",viewDeviceTip:"View device info via uni.getDeviceInfo (may not be supported)",viewSystem:"View System",viewSystemTip:"View system info via uni.getSystemInfoSync (may not be supported)",viewAppInfo:"View AppInfo",viewAppInfoTip:"View app info via uni.getAppBaseInfo (may not be supported)",notSupported:"Not supported"},log:{title:"Log",exportLog:"Export Console Logs",exportLogTip:"Select to export current Console logs",cacheConsoleLog:"Cache console logs locally",cacheConsoleLogTip:"If checked, console logs will be cached locally",exportNetwork:"Export Network Logs",exportNetworkTip:"Select to export current Network logs",exportTransfer:"Export Transfer Logs",exportTransferTip:"Select to export current Transfer logs",exportWebsocket:"Export WebSocket Logs",exportWebsocketTip:"Select to export current WebSocket logs",exportStorage:"Export Storage Logs",exportStorageTip:"Select to export current Storage, Vuex, Pinia logs",exportWindow:"Export Window Info",exportWindowTip:"Select to export current Window info",exportDevice:"Export Device Info",exportDeviceTip:"Select to export current Device info",exportSystem:"Export System Info",exportSystemTip:"Select to export current System info",exportUniEvent:"Export Uni Events",exportUniEventTip:"Select to export current Uni events",exportElEvent:"Export Element Events",exportElEventTip:"Select to export current Element events",exportScanCodeList:"Export ScanCode Logs",exportScanCodeListTip:"Select to export current ScanCode logs",exportNfcList:"Export NFC Logs",exportNfcListTip:"Select to export current NFC logs",export:"Export"}},pinia:{title:"Pinia"},vuex:{title:"Vuex"},scanCode:{title:"ScanCode"},instance:{title:"Instance",refresh:"Refresh",gettingInfo:"Getting Instance Info...",noInfo:"No Instance Info",selectNode:"Select Node to View Info",props:"Props",data:"Data",provides:"Provides",functions:"Functions",emits:"Emits",other:"Other"},nfc:{title:"NFC",detail:"NFC Details",tagId:"Tag ID",tagType:"Tag Type",standard:"Standard",maxTransceiveLength:"Max Transceive Length",unitByte:"bytes",toolTitle:"NFC Tool",status:"Status",deviceSupport:"Device Support NFC:",support:"Supported",notSupport:"Not Supported",enabledStatus:"NFC Enabled:",enabled:"Enabled",disabled:"Disabled",connectStatus:"NFC Connection:",connected:"Connected",disconnected:"Disconnected",operation:"NFC Operation",startScan:"Start Scan",stopScan:"Stop Scan",read:"Read",writeLabel:"Write",result:"Result",noResult:"No Result",write:"NFC Write",textContent:"Text Content",placeholderText:"Enter text to write",link:"Link",placeholderLink:"Enter URL, eg: https://gitee.com/cloud_l/vite-uni-dev-tool",wifiConfig:"WIFI Config",placeholderSsid:"SSID",placeholderPassword:"Password",encryption:"Encryption:",cardInfo:"Card Info",placeholderName:"Name",placeholderOrg:"Organization",placeholderTel:"Telephone",placeholderAddress:"Address",placeholderWeb:"Website",tel:"Telephone",placeholderTelInput:"Tel: eg 188888888888",appLaunch:"App Launch",placeholderPkg:"Package Name, eg: com.example.app",startWrite:"Start Write",tipsWriting:"tips: Do not move during writing to avoid failure",copy:"NFC Copy",step1:"Step 1: Enable NFC Scan to read source tag",step2:"Step 2: Change to target tag, copy source to target",step3:"Step 3: Disable NFC Scan after writing",tipsCopying:"tips: Do not move during copying to avoid failure",tipsTool:"tips: Tool for dev/test only, use at your own risk",toCopy:"Copy",copying:"Copying...",writeMethods:{text:"Text",uri:"URI",wifi:"WIFI",card:"Card",tel:"Tel",packageName:"App"},authTypes:{OPEN:"Open","WPA-Personal":"WPA","WPA2-Personal":"WPA2",WPA_PERSONAL:"WPA Personal",WPA_WPA2_PERSONAL:"WPA/WPA2 Personal",WPA2_PERSONAL:"WPA2 Personal",WPA2_ENTERPRISE:"WPA2 Enterprise",WPA3_PERSONAL:"WPA3 Personal",WPA3_ENTERPRISE:"WPA3 Enterprise"},toast:{enterName:"Please enter name",enterTel:"Please enter telephone"}},network:{title:"Network",ip:"IP Address",unknown:"Unknown",ipTip:"IP address not available on some platforms",status:"Connection Status",connected:"Connected",disconnected:"Disconnected",type:"Network Type",interceptRole:"Request Interception Rules",intercept:"Cache Interception Rules Locally",interceptTip:"If checked, network interception rules will be cached locally.",searchUrl:"Search URL",btnIntercept:"Intercept",send:"Send",requestDetail:"Request Detail",general:"General",requestUrl:"Request URL",method:"Request Method",statusCode:"Status Code",duration:"Duration",size:"Size",sponsor:"Initiator",requestHeaders:"Request Headers",responseHeaders:"Response Headers",noRequestHeaders:"No Request Headers",noResponseHeaders:"No Response Headers",resend:"Resend",intercepted:"Intercepted",interceptedShort:"Int",sendRequest:"Send Request",timeout:"Timeout(ms)",requestMethod:"Request Method",requestParams:"Request Params(query)",requestBody:"Request Body(body)",responseBody:"Response Body(body)",interceptConfig:"Intercept Config",responseStatus:"Response Status",saveConfig:"Save Config",detail:"Detail",reset:"Reset",sending:"Sending...",tipsIntercept:"tips: Intercept request. Uses input headers/params before sending. Returns response headers/data. Will initiate a real request (may fail), modifying final response.",tipsTimeout:"tips: Prevent non-existent request or abnormal duration",placeholderHeaderName:"Enter header name",placeholderHeaderValue:"Enter header value",placeholderParamName:"Enter param name",placeholderParamValue:"Enter param value",placeholderUrl:"Enter request URL",placeholderBody:"Enter request body",placeholderRespHeaderName:"Enter response header name",placeholderRespHeaderValue:"Enter response header value",placeholderRespBody:"Enter response body",emptyParams:"No Query Params",toastEnterUrl:"Please enter request URL",toastBodyJson:"Please enter valid JSON for Request Body",toastRespJson:"Please enter valid JSON for Response Body",toastSaveSuccess:"Saved Successfully",toastRequestSuccess:"Request completed, click detail to view result"},common:{clear:"Clear",console:"Console",all:"All",selectType:"Select Type",refresh:"Refresh",navigate:"Navigate",add:"Add",scan:"Scan",tool:"Tool",searchNamePath:"Search name/path",selectStatus:"Select Status",startTime:"Start Time",endTime:"End Time",copySuccess:"Copy Success",copyFail:"Copy Failed",progress:"Progress",executionTime:"Execution Time",runPlaceholder:"Run Script...",jsonDetail:"JSON Detail",base:"Base",message:"Message",payload:"Payload",response:"Response",header:"Headers",formData:"Form Data",initSuccess:"Initialization Successful",debugSlogan:"Write once, debug everywhere 😂",devVersion:"Dev Version",modeRequired:"Please pass mode: import.meta.env.MODE",pending:"Pending",success:"Success",error:"Error",uploading:"Uploading",downloading:"Downloading",status:"Status",upload:"Upload",download:"Download",network:"Network"}};export{e as default};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const e={route:{title:"路由列表",startPage:"启动页",currentPage:"当前页",visitTimes:"进入次数",lastEnterTime:"最近进入时间",lastLeaveTime:"最近离开时间",lastDuration:"最近停留时长",totalDuration:"总停留时长"},tabs:{console:"控制台",network:"网络",upload:"上传",download:"下载",transfer:"传输",websocket:"套接字",route:"路由",elEvent:"元素事件",uniEvent:"Uni事件",captureScreen:"截屏录屏",scanCode:"扫码",nfc:"NFC",storage:"存储",vuex:"Vuex",pinia:"Pinia",performance:"性能",instance:"组件",setting:"设置"},performance:{title:"性能",fps:"FPS",cpu:"CPU",memory:"内存",widget:"悬浮窗",enable:"启用监测",enableTip:"开启后将实时监控性能指标",settings:"监控设置",widgetTip:"开启后将在页面上显示悬浮窗",fpsTip:"在图表中显示 FPS 曲线",cpuTip:"在图表中显示 CPU 使用率",memoryTip:"在图表中显示内存使用情况",longTaskTitle:"CPU Profile (长任务)",longTaskTip:"捕获导致掉帧的长任务记录",ui:"UI层",logic:"逻辑层",platformTip:"当前平台限制:部分性能指标可能无法完全获取"},storage:{title:"存储列表",searchKey:"查询key"},transfer:{title:"传输列表",searchUrl:"查询url",detailTitle:"传输详情"},upload:{title:"上传列表",searchUrl:"查询url",detailTitle:"上传详情"},download:{title:"下载列表",searchUrl:"查询url",detailTitle:"下载详情",filePath:"文件路径"},websocket:{title:"套接字列表",searchUrl:"查询url",detailTitle:"套接字详情",messageList:"消息列表",noMessage:"暂无消息",messageDetail:"消息详情",send:"发送",sendPlaceholder:"发送消息..."},uniEvent:{title:"事件列表",eventList:"事件触发列表"},elEvent:{title:"元素事件列表"},captureScreen:{title:"截屏录屏",type:"类型",page:"页面",captureTime:"截屏时间",startTime:"开始",endTime:"结束",path:"路径"},setting:{devTool:{title:"DevTool",currentVersion:"当前版本",buildTime:"编译时间",feedbackUrl:"反馈地址",slogan:"一次编写,到处执行 😂 ,有问题请反馈",showHideButton:"显示/隐藏 调试按钮",hideButtonTip:"取消勾选后,将不再显示调试按钮",hideButton:"隐藏调试按钮",showButton:"显示调试按钮",tabsConfig:"标签页配置",tabsConfigTip:"勾选后,将在 DevTool 中显示对应的标签页,取消勾选则隐藏",saveAndRestart:"保存并重启",restartDevTool:"重启 DevTool",restartDevToolTip:"点击后,将重启 DevTool",restartDevToolButton:"重启 DevTool",destroyDevTool:"销毁 DevTool",destroyDevToolTip:"点击后,将销毁 DevTool,销毁后将不再接收调试信息,需要重新运行 createDevTool() 创建",destroyDevToolButton:"销毁 DevTool",restartApp:"重启应用",restartAppTip:"点击后,将重启当前应用",restartAppButton:"重启应用",storageUsage:"存储占用",storageUsageTip:"当前信息占用的存储空间, 仅清理 Console、Network、Upload、Websocket、UniEvent",clearCache:"清理缓存",language:"语言",languageTip:"选择界面语言",confirmLanguage:"更换语言",confirmLanguageTip:"语言更换成功,正在重启中...",showPerformanceTitle:"显示/隐藏 性能面板",performanceTip:"取消勾选后,将不再显示性能面板",hidePerformance:"隐藏性能面板",showPerformance:"显示性能面板",performanceShowFps:"绘制帧率折线",performanceShowCpu:"绘制 CPU 使用率折线",performanceShowMemory:"绘制内存使用率折线"},network:{title:"网络",ip:"IP地址",unknown:"未获取",ipTip:"部分平台无法获取 ip 地址",status:"连接状态",connected:"已连接",disconnected:"已断开",type:"网络类型",interceptRole:"请求拦截规则",intercept:"缓存拦截规则到本地",interceptTip:"勾选后将会把 network 拦截缓存到本地",cacheNetworkLog:"缓存网络日志到本地",cacheNetworkLogTip:"勾选后将会把 network 日志缓存到本地",searchUrl:"查询url",btnIntercept:"拦截",send:"发起",requestDetail:"请求详情",general:"常规",requestUrl:"请求地址",method:"请求方法",statusCode:"状态代码",duration:"请求耗时",size:"请求大小",sponsor:"发起人",requestHeaders:"请求头",responseHeaders:"响应头",noRequestHeaders:"暂无请求头",noResponseHeaders:"暂无响应头",resend:"重发",intercepted:"已拦截",interceptedShort:"拦",interceptConfig:"拦截规则配置",timeout:"超时时间(ms)",responseStatus:"响应状态",requestMethod:"请求方式",placeholderHeaderName:"请输入请求头名称",placeholderHeaderValue:"请输入请求头值",placeholderRespHeaderName:"请输入响应头名称",placeholderRespHeaderValue:"请输入响应头值",placeholderUrl:"请输入请求地址",toastEnterUrl:"请输入请求地址",requestParams:"请求参数(query)",placeholderParamName:"请输入参数名称",placeholderParamValue:"请输入参数值",emptyParams:"暂无请求参数",requestBody:"请求体(request body)",placeholderBody:"请输入请求体",responseBody:"响应体(response body)",placeholderRespBody:"请输入响应体",saveConfig:"保存配置",toastSaveSuccess:"保存成功",toastBodyJson:"请求体请输入正确的JSON格式",toastRespJson:"响应体请输入正确的JSON格式",tipsIntercept:"tips: 拦截请求,发送请求之前将采用输入的请求头和请求参数,返回响应头和响应参数。会真实发起一次请求(真实请求可能失败),更改最后的响应结果。",tipsTimeout:"tips: 防止请求不存在,请求时长异常",expectedStatus:"期待状态",expectedResult:"期待结果"},theme:{title:"主题",lightMode:"亮色模式",darkMode:"暗色模式",themes:{light:"简约亮",eye:"护眼",sakura:"樱花粉",frost:"冰霜蓝",sunny:"明快黄",dark:"深邃暗",midnight:"午夜",gulf:"海湾",lava:"熔岩",emerald:"翡翠暗"},useTransition:"开启过渡动画",useTransitionTip:"勾选后,将开启过渡动画",baseFontSize:"基础字体大小",tagFontSize:"Tag 字体大小",tipsFontSize:"Tips 字体大小",fontFamily:"字体",fontWeight:"字重",save:"保存字体配置",fonts:{default:"默认",pingFangSC:"苹方 (PingFang SC)",microsoftYaHei:"微软雅黑 (Microsoft YaHei)",simHei:"黑体 (SimHei)",simSun:"宋体 (SimSun)",kaiti:"楷体 (KaiTi)",fangSong:"仿宋 (FangSong)"},saveTip:"配置保存成功,正在重启中..."},info:{title:"信息",viewWindow:"查看 Window 信息",viewWindowTip:"通过 uni.getWindowInfo 获取当前窗口信息(可能不支持)",viewDevice:"查看 Device 信息",viewDeviceTip:"通过 uni.getDeviceInfo 获取当前设备信息(可能不支持)",viewSystem:"查看 System 信息",viewSystemTip:"通过 uni.getSystemInfoSync 获取当前系统信息(可能不支持)",viewAppInfo:"查看 AppInfo 信息",viewAppInfoTip:"通过 uni.getAppBaseInfo 获取当前应用信息(可能不支持)",notSupported:"不支持"},log:{title:"日志",exportLog:"导出当前Console日志",exportLogTip:"勾选后将会导出当前的 Console",cacheConsoleLog:"缓存控制台日志到本地",cacheConsoleLogTip:"勾选后将会把 console 日志缓存到本地",exportNetwork:"导出当前Network",exportNetworkTip:"勾选后将会导出当前的 Network",exportTransfer:"导出当前Transfer",exportTransferTip:"勾选后将会导出当前的 Transfer",exportWebsocket:"导出当前Websocket",exportWebsocketTip:"勾选后将会导出当前的 Websocket",exportStorage:"导出当前Storage",exportStorageTip:"勾选后将会导出当前的 Storage、Vuex、Pinia",exportWindow:"导出当前Window信息",exportWindowTip:"勾选后将会导出当前的 Window",exportDevice:"导出当前Device信息",exportDeviceTip:"勾选后将会导出当前的 Device",exportSystem:"导出当前系统信息",exportSystemTip:"勾选后将会导出当前的 System",exportUniEvent:"导出当前Uni事件",exportUniEventTip:"勾选后将会导出当前的 Uni事件",exportElEvent:"导出当前El事件",exportElEventTip:"勾选后将会导出当前的 El事件",exportScanCodeList:"导出当前ScanCode",exportScanCodeListTip:"勾选后将会导出当前的 ScanCode",exportNfcList:"导出当前NFC列表",exportNfcListTip:"勾选后将会导出当前的 NFC列表",export:"导出"}},pinia:{title:"Pinia"},vuex:{title:"Vuex"},scanCode:{title:"扫描列表"},instance:{title:"组件",refresh:"刷新",gettingInfo:"正在获取节点信息",noInfo:"没有获取到节点信息",selectNode:"选择节点查看信息",props:"属性",data:"数据",provides:"注入",functions:"函数",emits:"事件",other:"其他"},nfc:{title:"NFC",detail:"NFC 详情",tagId:"标签ID",tagType:"标签类型",standard:"技术标准",maxTransceiveLength:"最大传输长度",unitByte:"字节",toolTitle:"NFC 工具",status:"状态",deviceSupport:"设备是否支持NFC:",support:"支持",notSupport:"不支持",enabledStatus:"NFC启用状态:",enabled:"启用",disabled:"关闭",connectStatus:"NFC连接状态:",connected:"连接",disconnected:"断开",operation:"NFC 操作",startScan:"启用NFC扫描",stopScan:"关闭NFC扫描",read:"读取",writeLabel:"写入",result:"结果",noResult:"暂无结果",write:"NFC 写入",textContent:"文本内容",placeholderText:"请输入要写入的文本",link:"网址链接",placeholderLink:"请输入要写入的网址, 例如:https://gitee.com/cloud_l/vite-uni-dev-tool",wifiConfig:"WIFI配置",placeholderSsid:"WIFI名称(SSID)",placeholderPassword:"WIFI密码",encryption:"加密方式:",cardInfo:"名片信息",placeholderName:"姓名",placeholderOrg:"公司",placeholderTel:"电话",placeholderAddress:"地址",placeholderWeb:"网址",tel:"电话",placeholderTelInput:"电话: 例如 188888888888",appLaunch:"APP启动",placeholderPkg:"APP包名 例如: com.example.app",startWrite:"开始写入",tipsWriting:"tips: 写入过程中请勿移动,防止写入失败",copy:"NFC 复制",step1:"第一步:启用NFC扫描读取源标签",step2:"第二步:更换为目标标签,将源标签复制到目标标签",step3:"第三步:写入完成之后关闭NFC扫描",tipsCopying:"tips: 复制过程中请勿移动,防止写入失败",tipsTool:"tips: 工具仅用于开发测试,如做其他用途,后果自负",toCopy:"复制",copying:"NFC 卡购买中...",writeMethods:{text:"文本",uri:"网址",wifi:"WIFI",card:"名片",tel:"电话",packageName:"APP"},authTypes:{OPEN:"开放","WPA-Personal":"WPA个人","WPA2-Personal":"WPA2个人","WPA-WPA2-Personal":"WPA/WPA2个人",WPA2_ENTERPRISE:"WPA2企业",WPA3_PERSONAL:"WPA3个人",WPA3_ENTERPRISE:"WPA3企业"},toast:{enterName:"请填写姓名",enterTel:"请填写电话"}},network:{title:"网络",ip:"IP地址",unknown:"未获取",ipTip:"部分平台无法获取 ip 地址",status:"连接状态",connected:"已连接",disconnected:"已断开",type:"网络类型",interceptRole:"请求拦截规则",intercept:"缓存拦截规则到本地",interceptTip:"勾选后将会把 network 拦截缓存到本地",searchUrl:"查询url",btnIntercept:"拦截",send:"发起",requestDetail:"请求详情",general:"常规",requestUrl:"请求地址",method:"请求方法",statusCode:"状态代码",duration:"请求耗时",size:"请求大小",sponsor:"发起人",requestHeaders:"请求头",responseHeaders:"响应头",noRequestHeaders:"暂无请求头",noResponseHeaders:"暂无响应头",resend:"重发",intercepted:"已拦截",interceptedShort:"拦",sendRequest:"发起请求",timeout:"超时时间(ms)",requestMethod:"请求方式",requestParams:"请求参数(query)",requestBody:"请求体(body)",responseBody:"响应体(response body)",interceptConfig:"拦截规则配置",responseStatus:"响应状态",saveConfig:"保存配置",detail:"详情",reset:"重置",sending:"发送中...",tipsIntercept:"tips: 拦截请求,发送请求之前将采用输入的请求头和请求参数,返回响应头和响应参数。会真实发起一次请求(真实请求可能失败),更改最后的响应结果。",tipsTimeout:"tips: 防止请求不存在,请求时长异常",placeholderHeaderName:"请输入请求头名称",placeholderHeaderValue:"请输入请求头值",placeholderParamName:"请输入参数名称",placeholderParamValue:"请输入参数值",placeholderUrl:"请输入请求地址",placeholderBody:"请输入请求体",placeholderRespHeaderName:"请输入响应头名称",placeholderRespHeaderValue:"请输入响应头值",placeholderRespBody:"请输入响应体",emptyParams:"暂无请求参数",toastEnterUrl:"请输入请求地址",toastBodyJson:"请求体请输入正确的JSON格式",toastRespJson:"响应体请输入正确的JSON格式",toastSaveSuccess:"保存成功",toastRequestSuccess:"请求完成,点击左下角详情进行查看结果"},common:{clear:"清空",console:"控制台",all:"全部",selectType:"选择类型",refresh:"刷新",navigate:"跳转",add:"新增",scan:"扫描",tool:"工具",searchNamePath:"搜索name/path",selectStatus:"选择状态",startTime:"开始",endTime:"结束",copySuccess:"复制成功",copyFail:"复制失败",progress:"进度",executionTime:"执行时长",runPlaceholder:"运行脚本...",jsonDetail:"JSON 详情",base:"基本信息",message:"消息",payload:"载荷",response:"响应",header:"头信息",formData:"表单数据",delete:"删除",custom:"自定义",none:"无",initSuccess:"初始化成功",debugSlogan:"一处编写,到处调试 😂",devVersion:"开发版",modeRequired:"请传入 mode: import.meta.env.MODE",pending:"等待中",success:"成功",error:"失败",uploading:"上传中",downloading:"下载中",status:"状态",upload:"上传",download:"下载",network:"网络"}};module.exports=e;
|