Skip to content

Commit 01a8fb2

Browse files
authored
rename 'Getting Started' page to 'Beginner Tips' (#822)
Signed-off-by: Yan Zhang <[email protected]>
1 parent 3a72d17 commit 01a8fb2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
{
213213
"command": "java.gettingStarted",
214214
"category": "Java",
215-
"title": "Getting Started"
215+
"title": "Beginner Tips"
216216
},
217217
{
218218
"command": "java.extGuide",
@@ -248,7 +248,7 @@
248248
"enumDescriptions": [
249249
"Automatically pick the first experience view",
250250
"Present the Java Overview page",
251-
"Present the Java Getting Started page",
251+
"Present the Java Beginner Tips page",
252252
"Present the Java Help Center page",
253253
"Do not show any view"
254254
],

src/getting-started/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function javaGettingStartedCmdHandler(context: vscode.ExtensionCont
1515
return;
1616
}
1717

18-
javaGettingStartedView = vscode.window.createWebviewPanel("java.gettingStarted", "Java Getting Started", {
18+
javaGettingStartedView = vscode.window.createWebviewPanel("java.gettingStarted", "Java Beginner Tips", {
1919
viewColumn: vscode.ViewColumn.One,
2020
}, {
2121
enableScripts: true,

src/overview/assets/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ <h3 class="font-weight-light">Help</h3>
152152
<div class="col">
153153
<h3 class="font-weight-light">Learn</h3>
154154
<div class="list-group">
155-
<button command="java.gettingStarted" class="list-group-item list-group-item-action flex-column align-items-start btn btn-link mb-2 p-2" title="Open Java Getting Started View">
156-
<p class="mb-1">Java Getting Started</p>
155+
<button command="java.gettingStarted" class="list-group-item list-group-item-action flex-column align-items-start btn btn-link mb-2 p-2" title="Open Java Beginner Tips View">
156+
<p class="mb-1">Java Beginner Tips</p>
157157
<small>Learn 1 min <a href="javascript:void(0)" title="Quick Start" command="java.gettingStarted" args='"#quick-start-tab"'>Quick Start</a> tutorial, common shortcuts for <a href="javascript:void(0)" title="Code Editing" command="java.gettingStarted" args='"#code-editing-tab"'>Code Editing</a> and <a href="javascript:void(0)" title="Debugging" command="java.gettingStarted" args='"#debugging-tab"'>Debugging</a>, and <a href="javascript:void(0)" title="FAQ" command="java.gettingStarted" args='"#faq-tab"'>FAQ</a>.</small>
158158
</button>
159159
<button command="java.helper.openUrl" args='"https://code.visualstudio.com/docs/java/java-tutorial"' class="list-group-item list-group-item-action flex-column align-items-start btn btn-link mb-2 p-2" title="Open Java Tutorials">

0 commit comments

Comments
 (0)