Skip to content

Commit afb4555

Browse files
authored
fix(UI): product name on config page, China branding (#2166)
1 parent 4250dae commit afb4555

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,12 @@
8888
"contributes": {
8989
"configuration": {
9090
"type": "object",
91-
"title": "%AWS.configuration.title%",
91+
"title": "%AWS.productName%",
92+
"cloud9": {
93+
"cn": {
94+
"title": "%AWS.productName.cn%"
95+
}
96+
},
9297
"properties": {
9398
"aws.profile": {
9499
"type": "string",
@@ -2260,6 +2265,11 @@
22602265
"id": "getStarted",
22612266
"title": "%AWS.walkthrough.gettingStarted.title%",
22622267
"description": "%AWS.walkthrough.gettingStarted.description%",
2268+
"cloud9": {
2269+
"cn": {
2270+
"description": "%AWS.walkthrough.gettingStarted.description.cn%"
2271+
}
2272+
},
22632273
"steps": [
22642274
{
22652275
"id": "connect",

package.nls.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"AWS.title": "AWS",
33
"AWS.title.cn": "Amazon",
4+
"AWS.productName": "AWS Toolkit",
5+
"AWS.productName.cn": "Amazon Toolkit",
46
"AWS.vscode.shortName": "VS Code",
57
"AWS.vscode.longName": "Visual Studio Code",
68
"AWS.vscode.commandPalette": "Command Palette",
@@ -32,7 +34,6 @@
3234
"AWS.codelens.failToInitialize": "Failed to activate template registry. {0} will not appear on SAM template files.",
3335
"AWS.codelens.failToInitializeCode": "Failed to activate Lambda handler {0}",
3436
"AWS.codelens.lambda.configEditor": "Edit Debug Configuration",
35-
"AWS.configuration.title": "AWS Configuration",
3637
"AWS.configuration.profileDescription": "The name of the credential profile to obtain credentials from.",
3738
"AWS.configuration.description.logLevel": "The AWS Toolkit's log level (changes reflected on restart)",
3839
"AWS.configuration.description.logLevel.cn": "The Amazon Toolkit's log level (changes reflected on restart)",
@@ -599,7 +600,8 @@
599600
"AWS.picker.dynamic.noItemsFound.label": "[No items found]",
600601
"AWS.picker.dynamic.errorNode.label": "There was an error retrieving more items.",
601602
"AWS.walkthrough.gettingStarted.title": "Get Started with AWS",
602-
"AWS.walkthrough.gettingStarted.description": "These walkthroughs help you set up the AWS Toolkit for Visual Studio Code.",
603+
"AWS.walkthrough.gettingStarted.description": "These walkthroughs help you set up the AWS Toolkit.",
604+
"AWS.walkthrough.gettingStarted.description.cn": "These walkthroughs help you set up the Amazon Toolkit.",
603605
"AWS.walkthrough.gettingStarted.connect": "Connect to AWS",
604606
"AWS.walkthrough.gettingStarted.changeRegions": "Change AWS Regions",
605607
"AWS.walkthrough.gettingStarted.setupToolchain": "Configure your toolchain"

0 commit comments

Comments
 (0)