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: l10n/bundle.l10n.json
+16-5Lines changed: 16 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,6 @@
33
33
},
34
34
"Enter the environment URL": "Enter the environment URL",
35
35
"Active auth profile is not found or has expired. To create a new auth profile, enter the environment URL.": "Active auth profile is not found or has expired. To create a new auth profile, enter the environment URL.",
36
-
"Website not found in the environment. Please check the credentials and root folder path.": "Website not found in the environment. Please check the credentials and root folder path.",
37
36
"Selection is empty.": "Selection is empty.",
38
37
"PREVIEW": "PREVIEW",
39
38
"Explain the following code snippet:": "Explain the following code snippet:",
@@ -93,13 +92,25 @@
93
92
"Do not translate 'PCF' as it is a product name."
94
93
]
95
94
},
96
-
"The extension Microsoft Edge Tools is required to run this command. Do you want to install it now?": "The extension Microsoft Edge Tools is required to run this command. Do you want to install it now?",
97
-
"Install": "Install",
98
95
"Cancel": "Cancel",
96
+
"Install": "Install",
97
+
"The extension 'Microsoft Edge Tools' is required to run this command. Do you want to install it now?/Do not translate 'Microsoft Edge Tools' ": {
98
+
"message": "The extension 'Microsoft Edge Tools' is required to run this command. Do you want to install it now?",
99
+
"comment": [
100
+
"Do not translate 'Microsoft Edge Tools' "
101
+
]
102
+
},
103
+
"Opening site preview...": "Opening site preview...",
104
+
"The preview shown is for published changes.": "The preview shown is for published changes.",
99
105
"Site runtime preview feature is not enabled.": "Site runtime preview feature is not enabled.",
100
106
"No workspace folder opened. Please open a site folder to preview.": "No workspace folder opened. Please open a site folder to preview.",
101
-
"Website URL not found.": "Website URL not found.",
102
-
"Opening site preview...": "Opening site preview...",
107
+
"Initializing site preview. Please try again after few seconds.": "Initializing site preview. Please try again after few seconds.",
108
+
"Website not found in the environment. Please check the credentials and login with correct account.": "Website not found in the environment. Please check the credentials and login with correct account.",
109
+
"Initializing site preview": "Initializing site preview",
<sourcexml:lang="en">In your own words, describe what you need. You can get help with writing code for Power Pages sites in HTML, CSS, and JS languages.</source>
* Copyright (c) Microsoft Corporation. All rights reserved.
3
+
* Licensed under the MIT License. See License.txt in the project root for license information.
4
+
*/
5
+
6
+
import*asvscodefrom'vscode';
7
+
8
+
exportconstMessages={
9
+
LOGIN: vscode.l10n.t("Login"),
10
+
CANCEL: vscode.l10n.t("Cancel"),
11
+
INSTALL: vscode.l10n.t("Install"),
12
+
EDGE_DEV_TOOLS_NOT_INSTALLED_MESSAGE: vscode.l10n.t({message: "The extension 'Microsoft Edge Tools' is required to run this command. Do you want to install it now?",comment:["Do not translate 'Microsoft Edge Tools' "]}),
13
+
OPENING_SITE_PREVIEW: vscode.l10n.t("Opening site preview..."),
14
+
PREVIEW_SHOWN_FOR_PUBLISHED_CHANGES: vscode.l10n.t("The preview shown is for published changes."),
15
+
SITE_PREVIEW_FEATURE_NOT_ENABLED: vscode.l10n.t("Site runtime preview feature is not enabled."),
16
+
NO_FOLDER_OPENED: vscode.l10n.t("No workspace folder opened. Please open a site folder to preview."),
17
+
INITIALIZING_PREVIEW_TRY_AGAIN: vscode.l10n.t("Initializing site preview. Please try again after few seconds."),
18
+
WEBSITE_NOT_FOUND_IN_ENVIRONMENT: vscode.l10n.t("Website not found in the environment. Please check the credentials and login with correct account."),
19
+
INITIALIZING_PREVIEW: vscode.l10n.t("Initializing site preview"),
0 commit comments