forked from Alnyli07/vscode-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.nls.zh-cn.json
63 lines (63 loc) · 7.76 KB
/
package.nls.zh-cn.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"reactNative.description": "React Native 的代码提示、调试和集成的命令",
"reactNative.license": "请参阅 LICENSE.txt 中的许可证",
"reactNative.command.runAndroidSimulator.title": "在仿真器上运行 Android",
"reactNative.command.runAndroidDevice.title": "在设备上运行 Android",
"reactNative.command.runIosSimulator.title": "在模拟器上运行 iOS",
"reactNative.command.runIosDevice.title": "在设备上运行 iOS",
"reactNative.command.runExponent.title": "运行 Expo",
"reactNative.command.startPackager.title": "启动包生成工具",
"reactNative.command.stopPackager.title": "停止包生成工具",
"reactNative.command.restartPackager.title": "重启包生成工具",
"reactNative.command.publishToExpHost.title": "发布到 Expo",
"reactNative.command.showDevMenu.title": "显示开发人员菜单",
"reactNative.command.reloadApp.title": "重新加载应用",
"reactNative.command.runInspector.title": "运行元素检查器",
"reactNative.snippets.debugAndroid.description": "用于在 Android 上启动 react-native 应用的新配置",
"reactNative.snippets.debugiOS.description": "用于在 iOS 上启动 react-native 应用的新配置",
"reactNative.snippets.attachPackager.description": "用于附加到包生成工具的新配置",
"reactNative.snippets.debugExpo.description": "用于启动 Expo 应用的新配置",
"reactNative.attach.program.description": "[DEPRECATED. USE cwd INSTEAD] 指向 vscode 文件夹中的 launchReactNative.js 的路径",
"reactNative.attach.cwd.description": "项目根文件夹的路径",
"reactNative.attach.sourceMaps.description": "是否要使用 JavaScript 源映射将生成的捆绑代码映射回其原始源",
"reactNative.attach.sourceMapsPathOverrides.description": "一组用于重写源映射中所述的源文件位置的映射,映射到磁盘上的相应位置。有关详细信息,请参阅 https://github.com/microsoft/vscode-react-native/blob/master/doc/debugging.md#debugging-with-typescript-and-haul",
"reactNative.attach.trace.description": "调试器进程中的日志记录级别。可能有助于诊断。如果设置为“跟踪”,则可通过“调试控制台”输出窗口查看所有调试器进程日志。",
"reactNative.attach.address.description": "要附加到(以进行调试)的包生成工具的 TCP/IP 地址。默认为 \"localhost\"。",
"reactNative.attach.port.description": "要附加到(以进行调试)的包生成工具的端口。默认为 8081。",
"reactNative.attach.remoteRoot.description": "远程主机的源根目录。",
"reactNative.attach.localRoot.description": "本地源根对应于 \"remoteRoot\"。",
"reactNative.attach.skipFiles.description": "文件或文件夹名称,或 glob 模式的数组,在调试时跳过。",
"reactNative.attach.debuggerWorkerUrlPath.description": "要替代的应用调试程序辅助进程的路径。例如,如果调试程序尝试附加到 http://localhost:8081/debugger-ui/debuggerWorker.js,而你从包生成工具输出中得到 404 错误,那么你可能需要将 debuggerWorkerUrlPath 更改为适合包生成工具的另一个值(\"debugger-ui\" 将替换为你提供的值)。",
"reactNative.launch.platform.description": "要面向的平台。可能的值: \"android\"、\"ios\"、\"exponent\"、\"windows\"、\"wpf\"",
"reactNative.launch.program.description": "[DEPRECATED. USE cwd INSTEAD] 指向 vscode 文件夹中的 launchReactNative.js 的路径",
"reactNative.launch.cwd.description": "项目根文件夹的路径",
"reactNative.launch.target.description": "要在其上运行的目标。可能的值: \"simulator\"、\"device\"、\"<Android emulator/device id>\"、\"<iOS simulator/device name>\"",
"reactNative.launch.sourceMaps.description": "是否要使用 JavaScript 源映射将生成的捆绑代码映射回其原始源",
"reactNative.launch.logCatArguments.description": "要用于 LogCat (LogCat 输出将显示在输出通道上)的参数。它可能是一个数组,如: [\":S\"、\"ReactNative:V\"、\"ReactNativeJS:V\"]",
"reactNative.launch.outDir.description": "生成的 JavaScript 代码(捆绑文件)的位置。此位置通常应为 \"${workspaceRoot}/.vscode/.react\"",
"reactNative.launch.runArguments.description": "运行传递给 \"react-native run-<platform>\" 命令的参数(替代所有其他配置参数)",
"reactNative.launch.env.description": "传递给调试器和 \"react-native run-<platform>\" 命令的环境变量。",
"reactNative.launch.envFile.description": "包含环境变量定义的文件的绝对路径。",
"reactNative.launch.variant.description": "要传递到 \"react-native run-android\" (例如 \"devDebug\")以指定 \"--variant=devDebug\" 的变体",
"reactNative.launch.scheme.description": "要传递到 \"react-native run-ios\" (例如 \"devDebug\")以指定 \"--scheme=devDebug\" 的方案名称",
"reactNative.launch.productName.description": "iOS 捆绑显示名称(例如,\"AwesomeProject\")值表示扩展将搜索 \"AwesomeProject. app\" 捆绑",
"reactNative.launch.skipFiles.description": "文件或文件夹名称,或 glob 模式的数组,在调试时跳过。",
"reactNative.launch.trace.description": "调试器进程中的日志记录级别。可能有助于诊断。如果设置为“跟踪”,则可通过“调试控制台”输出窗口查看所有调试器进程日志。",
"reactNative.launch.debuggerWorkerUrlPath.description": "要替代的应用调试程序辅助进程的路径。例如,如果调试程序尝试附加到 http://localhost:8081/debugger-ui/debuggerWorker.js,而你从包生成工具输出中得到 404 错误,那么你可能需要将 debuggerWorkerUrlPath 更改为适合包生成工具的另一个值(\"debugger-ui\" 将替换为你提供的值)。",
"reactNative.configuration.title": "React Native 配置",
"reactNative.configuration.properties.react-native.ios.runArguments.simulator.description": "运行要传递给 \"react-native run-ios\" 命令的参数",
"reactNative.configuration.properties.react-native.ios.runArguments.device.description": "运行要传递给 \"react-native run-ios\" 命令的参数",
"reactNative.configuration.properties.react-native.ios.env.simulator.description": "传递给程序的环境变量。",
"reactNative.configuration.properties.react-native.ios.env.device.description": "传递给程序的环境变量。",
"reactNative.configuration.properties.react-native.ios.envFile.simulator.description": "包含环境变量定义的文件的绝对路径。",
"reactNative.configuration.properties.react-native.ios.envFile.device.description": "包含环境变量定义的文件的绝对路径。",
"reactNative.configuration.properties.react-native.android.runArguments.simulator.description": "运行要传递给 \"react-native run-android\" 命令的参数",
"reactNative.configuration.properties.react-native.android.runArguments.device.description": "运行要传递给 \"react-native run-android\" 命令的参数",
"reactNative.configuration.properties.react-native.android.env.simulator.description": "传递给程序的环境变量。",
"reactNative.configuration.properties.react-native.android.env.device.description": "传递给程序的环境变量。",
"reactNative.configuration.properties.react-native.android.envFile.simulator.description": "包含环境变量定义的文件的绝对路径。",
"reactNative.configuration.properties.react-native.android.envFile.device.description": "包含环境变量定义的文件的绝对路径。",
"reactNative.configuration.properties.react-native.packager.port.description": "React Native 包生成工具端口",
"reactNative.configuration.properties.react-native-tools.projectRoot.description": "此 react-native 项目所在的子文件夹",
"reactNative.configuration.properties.react-native-tools.logLevel.description": "扩展中的日志记录级别"
}