-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.nls.json
More file actions
102 lines (102 loc) · 7.05 KB
/
package.nls.json
File metadata and controls
102 lines (102 loc) · 7.05 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"ext.displayName": "Arduino CLI Wrapper",
"ext.description": "Run Arduino CLI commands from VS Code",
"cmd.runArbitrary": "Arduino CLI: Run Command",
"cmd.version": "Arduino CLI: Check CLI Version",
"cmd.update": "Arduino CLI: Update Index",
"cmd.upgrade": "Arduino CLI: Upgrade Cores/Libraries",
"cmd.cacheClean": "Arduino CLI: Clean Cache",
"cmd.sketchNew": "Arduino CLI: New Sketch",
"cmd.listBoards": "Arduino CLI: List Connected Boards",
"cmd.listAllBoards": "Arduino CLI: List All Boards (listall)",
"cmd.boardDetails": "Arduino CLI: Board Details",
"cmd.configureWarnings": "Arduino CLI: Configure Warnings & Verbose",
"cmd.compile": "Arduino CLI: Compile Sketch",
"cmd.compileExportBinaries": "Arduino CLI: Export Binaries",
"cmd.exportAllBinaries": "Arduino CLI: Export All Binaries",
"cmd.cleanCompile": "Arduino CLI: Clean Compile",
"cmd.embedAssets": "Arduino CLI: Embed Assets",
"cmd.sourceBackup": "Arduino CLI: Source Backup",
"cmd.upload": "Arduino CLI: Upload Sketch",
"cmd.debug": "Arduino CLI: Debug",
"cmd.monitor": "Arduino CLI: Monitor Serial",
"cmd.versionCheck": "Arduino CLI: Check Sketch.yaml Versions",
"cmd.refreshView": "Arduino CLI: Refresh View",
"cmd.examples": "Arduino CLI: Examples Browser",
"cmd.expandAll": "Arduino CLI: Expand All",
"cmd.runTreeAction": "Arduino CLI: Run Action",
"cmd.sketchYamlHelper": "Arduino CLI: Sketch.yaml Profile Helper",
"cmd.commandCenter": "Arduino CLI: Command Center",
"cmd.configureIntelliSense": "Arduino CLI: Configure C/C++ IntelliSense",
"cmd.setProfile": "Arduino CLI: Set Profile (sketch.yaml)",
"cmd.setFqbn": "Arduino CLI: Set FQBN",
"cmd.setPort": "Arduino CLI: Set Serial Port",
"cmd.setBaud": "Arduino CLI: Set Baudrate",
"cmd.localPortHelper": "Arduino CLI: Edit Local Port Rules",
"cmd.openSketchFromTree": "Arduino CLI: Open Sketch from Tree",
"cmd.uploadData": "Arduino CLI: Upload Data (FS)",
"cmd.runWokwi": "Arduino CLI: Run in Wokwi",
"treeEmbedAssets": "Embed Assets",
"treeSourceBackup": "Source Backup",
"treeLocalPortRules": "Local Port Rules",
"embedAssetsNoAssets": "No files were found under {assets}. Generated {header} with placeholder content.",
"embedAssetsDone": "Embedded {count} files into {header}.",
"embedAssetsOutdated": "{header} is older than {folder}/{file}. Run Embed Assets to refresh it.",
"embedAssetsMissing": "{folder}/{file} exists while {header} is missing. Run Embed Assets to generate it.",
"sourceBackupConfigCreated": "Created {path}.",
"sourceBackupConfigExists": "{path} already exists.",
"cmd.openSecretsHeader": "Arduino CLI: Open arduino_secrets.h",
"cmd.createSecretsHeader": "Arduino CLI: Create arduino_secrets.h",
"secretsLensOpen": "🔐 Open arduino_secrets.h",
"secretsLensCreate": "📝 Create arduino_secrets.h",
"secretsSelectIno": "Focus an .ino file to manage arduino_secrets.h.",
"secretsHeaderMissing": "arduino_secrets.h was not found at {path}. Use the Create action to generate it.",
"secretsCreated": "Created arduino_secrets.h at {path}.",
"secretsCreatedNoDefaults": "Created arduino_secrets.h at {path}. No fallback #define entries were found; update the file manually.",
"lang.buildOpt.alias": "Arduino Build Options",
"config.title": "Arduino CLI Wrapper",
"config.path.description": "Path to the arduino-cli executable (e.g. arduino-cli, arduino-cli.exe, or full path).",
"config.additionalArgs.description": "Additional arguments to append to every arduino-cli invocation.",
"config.compileWarnings.description": "Select the warning level passed to arduino-cli compile (--warnings). (Managed from the status bar)",
"config.compileWarnings.enum.workspace": "Enable all compiler warnings but only report issues within workspace files.",
"config.compileWarnings.enum.none": "Disable compiler warnings.",
"config.compileWarnings.enum.default": "Use Arduino CLI's default warning level.",
"config.compileWarnings.enum.more": "Enable extra compiler warnings.",
"config.compileWarnings.enum.all": "Enable all compiler warnings.",
"config.verbose.description": "Add --verbose to compile/upload commands. (Managed from the status bar)",
"config.localBuildPath.description": "Store Arduino CLI build outputs under a local `.build/<profile>` folder and pass --build-path automatically during compile commands.",
"config.injectTimezoneMacros.description": "Inject CLI_BUILD_TZ_* macros based on the host timezone into every compile and Inspector run.",
"config.autoCopySketchYaml.description": "When Refresh View discovers a sketch folder without sketch.yaml, copy the closest parent sketch.yaml into that folder.",
"config.lint.m5gfxIncludes.description": "Headers treated as part of the M5GFX family for include-order linting.",
"config.lint.fsIncludes.description": "Headers treated as filesystem-related for include-order linting.",
"view.arduinoCli": "Arduino CLI",
"cmd.buildCheck": "Arduino CLI: Build Check",
"cmd.inspect": "Open Sketch Inspector",
"msg.compileProgressTitle": "Compiling sketch…",
"msg.compileProgressMessage": "Running arduino-cli compile…",
"msg.compileProgressMessageProfile": "Running arduino-cli compile for profile {profile}",
"msg.compileProgressMessageFqbn": "Running arduino-cli compile for {fqbn}",
"msg.compileExtraFlagsApplied": "Added build.extra_flags from {file}",
"msg.compileExtraFlagsReadError": "Failed to read extra flags file {file}: {msg}",
"msg.compileExtraFlagsEmpty": "Extra flags file {file} is empty; skipping.",
"msg.compileExtraFlagsSkipExisting": "Skipped {file} because build.extra_flags is already provided.",
"msg.inspectorProgressTitle": "Running Sketch Inspector…",
"msg.inspectorProgressMessage": "Sketch: {sketch}",
"msg.inspectorProgressMessageProfile": "Sketch: {sketch} (Profile: {profile})",
"msg.uploadProgressTitle": "Uploading sketch…",
"msg.uploadProgressMessage": "Running arduino-cli upload…",
"msg.uploadProgressMessageProfile": "Running arduino-cli upload for profile {profile}",
"msg.uploadProgressMessageFqbn": "Running arduino-cli upload for {fqbn}",
"msg.uploadDataProgressTitle": "Uploading data image…",
"msg.uploadDataProgressMessageResolve": "Collecting filesystem metadata…",
"msg.uploadDataProgressMessageBuild": "Building {fsType} image…",
"msg.uploadDataProgressMessageFlash": "Flashing filesystem image via esptool…",
"msg.uploadDataWindowsShowPropsStart": "Detecting Windows tool paths via arduino-cli.exe --show-properties…",
"msg.uploadDataWindowsShowPropsFail": "[upload-data] Failed to run arduino-cli.exe --show-properties: {msg}",
"msg.uploadDataWindowsEsptoolMissing": "arduino-cli.exe output did not include runtime.tools.esptool_py.path.",
"msg.uploadDataWindowsPathMissing": "Could not convert sketch path for arduino-cli.exe (wslpath -w failed).",
"msg.uploadDataWindowsImagePathFail": "Could not convert the filesystem image path for esptool.exe; aborting.",
"msg.progressBusyWarn": "Another command is already running. Please wait for it to finish.",
"msg.progressCancelled": "Command cancelled.",
"inspectorCleanOptionLabel": "Clean build (--clean)"
}