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
{{ message }}
This repository was archived by the owner on Dec 23, 2021. It is now read-only.
Copy file name to clipboardexpand all lines: locales/en/out/constants.i18n.json
+3-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,8 @@
14
14
"error.debuggerServerInitFailed": "Warning : The Debugger Server cannot be opened. Please try to free the port {0} if it's already in use or select another one in your Settings 'Device Simulator Express: Debugger Server Port' and start another debug session.\n You can still debug your code but you won't be able to use the Simulator.",
15
15
"error.debuggingSessionInProgress": "[ERROR] A debugging session is currently in progress, please stop it before running your code. \n",
16
16
"error.noDevice": "No plugged in boards detected. Please double check if your board is connected and/or properly formatted",
17
-
"error.noFileToRun": "\n[ERROR] We can't find the .py file to run on simulator. Open up a new .py file, or browse through some examples\n",
17
+
"error.noFileToRun": "\n[ERROR] We can't find the .py file to run. Open up a new .py file, or browse through some examples\n",
18
+
"error.noFileToDeploy": "\n[ERROR] We can't find a Python file to deploy to your device.\n",
18
19
"error.noFolderCreated": "In order to use the Serial Monitor, you need to open a folder and reload VS Code.",
19
20
"error.noProgramFoundDebug": "Cannot find a program to debug.",
20
21
"error.noPythonPath": "We found that you don't have Python 3 installed on your computer, please install the latest version, add it to your PATH and try again.",
@@ -28,6 +29,7 @@
28
29
"info.installPythonDependencies": "Do you want us to try and install this extensions dependencies for you?",
29
30
"error.invalidFileExtensionDebug": "The file you tried to run isn\\'t a Python file.",
30
31
"info.newFile": "New to Python or the Circuit Playground Express? We are here to help!",
32
+
"info.noDeviceChosenToDeployTo": "\n[INFO] No device was selected to deploy to.\n",
Copy file name to clipboardexpand all lines: src/constants.ts
+26-2
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,11 @@ export const CONSTANTS = {
35
35
MICROBIT: "micro:bit",
36
36
CLUE: "CLUE",
37
37
},
38
+
DEVICE_NAME_FORMAL: {
39
+
CPX: "Circuit Playground Express",
40
+
MICROBIT: "micro:bit",
41
+
CLUE: "CLUE",
42
+
},
38
43
ERROR: {
39
44
BAD_PYTHON_PATH:
40
45
'Your interpreter is not pointing to a valid Python executable. Please select a different interpreter (CTRL+SHIFT+P and type "python.selectInterpreter") and restart the application',
@@ -88,12 +93,16 @@ export const CONSTANTS = {
88
93
),
89
94
NO_DEVICE: localize(
90
95
"error.noDevice",
91
-
"No plugged in boards detected. Please double check if your board is connected and/or properly formatted"
96
+
"The device is not detected. Please double check if your board is connected and/or properly formatted"
92
97
),
93
98
NO_FILE_TO_RUN: localize(
94
99
"error.noFileToRun",
95
100
'[ERROR] We can\'t find a Python file to run. Please make sure you select or open a new ".py" code file, or use the "New File" command to get started and see useful links.\n'
96
101
),
102
+
NO_FILE_TO_DEPLOY: localize(
103
+
"error.noFileToDeploy",
104
+
"[ERROR] We can't find a Python file to deploy to your device.\n"
105
+
),
97
106
NO_FOLDER_OPENED: localize(
98
107
"error.noFolderCreated",
99
108
"In order to use the Serial Monitor, you need to open a folder and reload VS Code."
@@ -189,6 +198,10 @@ export const CONSTANTS = {
189
198
"info.newFile",
190
199
"New to Python or the Circuit Playground Express? We are here to help!"
0 commit comments