Skip to content

Commit

Permalink
add welcome page patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex313031 committed Apr 23, 2023
1 parent 0007a34 commit 34f1d26
Showing 1 changed file with 158 additions and 0 deletions.
158 changes: 158 additions & 0 deletions patches/welcome-page-branding-fix.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
From ac018eb1d2a30a592ff3097609462183059701e5 Mon Sep 17 00:00:00 2001
From: Alexander Frick <[email protected]>
Date: Sun, 23 Apr 2023 12:21:03 -0500
Subject: [PATCH 18/18] welcome page branding fix

---
.../common/gettingStartedContent.ts | 38 +++++++++----------
1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts b/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts
index 9fca852702e..96c791b7463 100644
--- a/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts
+++ b/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts
@@ -160,8 +160,8 @@ const Button = (title: string, href: string) => `[${title}](${href})`;
export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'Setup',
- title: localize('gettingStarted.setup.title', "Get Started with VS Code"),
- description: localize('gettingStarted.setup.description', "Discover the best customizations to make VS Code yours."),
+ title: localize('gettingStarted.setup.title', "Get Started with Codium"),
+ description: localize('gettingStarted.setup.description', "Discover the best customizations to make Codium yours."),
isFeatured: true,
icon: setupIcon,
when: '!isWeb',
@@ -182,7 +182,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'settingsSync',
title: localize('gettingStarted.settingsSync.title', "Sync to and from other devices"),
- description: localize('gettingStarted.settingsSync.description.interpolated', "Keep your essential VS Code customizations backed up and updated across all your devices.\n{0}", Button(localize('enableSync', "Enable Settings Sync"), 'command:workbench.userDataSync.actions.turnOn')),
+ description: localize('gettingStarted.settingsSync.description.interpolated', "Keep your essential Codium customizations backed up and updated across all your devices.\n{0}", Button(localize('enableSync', "Enable Settings Sync"), 'command:workbench.userDataSync.actions.turnOn')),
when: 'syncStatus != uninitialized',
completionEvents: ['onEvent:sync-enabled'],
media: {
@@ -192,13 +192,13 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'commandPaletteTask',
title: localize('gettingStarted.commandPalette.title', "One shortcut to access everything"),
- description: localize('gettingStarted.commandPalette.description.interpolated', "Commands are the keyboard way to accomplish any task in VS Code. **Practice** by looking up your frequent ones to save time.\n{0}\n__Try searching for 'view toggle'.__", Button(localize('commandPalette', "Open Command Palette"), 'command:workbench.action.showCommands')),
+ description: localize('gettingStarted.commandPalette.description.interpolated', "Commands are the keyboard way to accomplish any task in Codium. **Practice** by looking up your frequent ones to save time.\n{0}\n__Try searching for 'view toggle'.__", Button(localize('commandPalette', "Open Command Palette"), 'command:workbench.action.showCommands')),
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
},
{
id: 'extensionsWeb',
title: localize('gettingStarted.extensions.title', "Limitless extensibility"),
- description: localize('gettingStarted.extensionsWeb.description.interpolated', "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}", Button(localize('browsePopular', "Browse Popular Web Extensions"), 'command:workbench.extensions.action.showPopularExtensions')),
+ description: localize('gettingStarted.extensionsWeb.description.interpolated', "Extensions are Codium's power-ups. A growing number are becoming available in the web.\n{0}", Button(localize('browsePopular', "Browse Popular Web Extensions"), 'command:workbench.extensions.action.showPopularExtensions')),
when: 'workspacePlatform == \'webworker\'',
media: {
type: 'svg', altText: 'VS Code extension marketplace with featured language extensions', path: 'extensions-web.svg'
@@ -216,7 +216,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'pickAFolderTask-Mac',
title: localize('gettingStarted.setup.OpenFolder.title', "Open up your code"),
- description: localize('gettingStarted.setup.OpenFolder.description.interpolated', "You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}", Button(localize('pickFolder', "Pick a Folder"), 'command:workbench.action.files.openFileFolder')),
+ description: localize('gettingStarted.setup.OpenFolder.description.interpolated', "You're all set to start coding. Open a project folder to get your files into Codium.\n{0}", Button(localize('pickFolder', "Pick a Folder"), 'command:workbench.action.files.openFileFolder')),
when: 'isMac && workspaceFolderCount == 0',
media: {
type: 'svg', altText: 'Explorer view showing buttons for opening folder and cloning repository.', path: 'openFolder.svg'
@@ -225,7 +225,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'pickAFolderTask-Other',
title: localize('gettingStarted.setup.OpenFolder.title', "Open up your code"),
- description: localize('gettingStarted.setup.OpenFolder.description.interpolated', "You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}", Button(localize('pickFolder', "Pick a Folder"), 'command:workbench.action.files.openFolder')),
+ description: localize('gettingStarted.setup.OpenFolder.description.interpolated', "You're all set to start coding. Open a project folder to get your files into Codium.\n{0}", Button(localize('pickFolder', "Pick a Folder"), 'command:workbench.action.files.openFolder')),
when: '!isMac && workspaceFolderCount == 0',
media: {
type: 'svg', altText: 'Explorer view showing buttons for opening folder and cloning repository.', path: 'openFolder.svg'
@@ -246,8 +246,8 @@ export const walkthroughs: GettingStartedWalkthroughContent = [

{
id: 'SetupWeb',
- title: localize('gettingStarted.setupWeb.title', "Get Started with VS Code for the Web"),
- description: localize('gettingStarted.setupWeb.description', "Discover the best customizations to make VS Code for the Web yours."),
+ title: localize('gettingStarted.setupWeb.title', "Get Started with Codium for the Web"),
+ description: localize('gettingStarted.setupWeb.description', "Discover the best customizations to make Codium for the Web yours."),
isFeatured: true,
icon: setupIcon,
when: 'isWeb',
@@ -268,7 +268,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'settingsSyncWeb',
title: localize('gettingStarted.settingsSync.title', "Sync to and from other devices"),
- description: localize('gettingStarted.settingsSync.description.interpolated', "Keep your essential VS Code customizations backed up and updated across all your devices.\n{0}", Button(localize('enableSync', "Enable Settings Sync"), 'command:workbench.userDataSync.actions.turnOn')),
+ description: localize('gettingStarted.settingsSync.description.interpolated', "Keep your essential Codium customizations backed up and updated across all your devices.\n{0}", Button(localize('enableSync', "Enable Settings Sync"), 'command:workbench.userDataSync.actions.turnOn')),
when: 'syncStatus != uninitialized',
completionEvents: ['onEvent:sync-enabled'],
media: {
@@ -278,7 +278,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'commandPaletteTaskWeb',
title: localize('gettingStarted.commandPalette.title', "One shortcut to access everything"),
- description: localize('gettingStarted.commandPalette.description.interpolated', "Commands are the keyboard way to accomplish any task in VS Code. **Practice** by looking up your frequent ones to save time.\n{0}\n__Try searching for 'view toggle'.__", Button(localize('commandPalette', "Open Command Palette"), 'command:workbench.action.showCommands')),
+ description: localize('gettingStarted.commandPalette.description.interpolated', "Commands are the keyboard way to accomplish any task in Codium. **Practice** by looking up your frequent ones to save time.\n{0}\n__Try searching for 'view toggle'.__", Button(localize('commandPalette', "Open Command Palette"), 'command:workbench.action.showCommands')),
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
},
{
@@ -293,7 +293,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'extensionsWebWeb',
title: localize('gettingStarted.extensions.title', "Limitless extensibility"),
- description: localize('gettingStarted.extensionsWeb.description.interpolated', "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}", Button(localize('browsePopular', "Browse Popular Web Extensions"), 'command:workbench.extensions.action.showPopularExtensions')),
+ description: localize('gettingStarted.extensionsWeb.description.interpolated', "Extensions are Codium's power-ups. A growing number are becoming available in the web.\n{0}", Button(localize('browsePopular', "Browse Popular Web Extensions"), 'command:workbench.extensions.action.showPopularExtensions')),
when: 'workspacePlatform == \'webworker\'',
media: {
type: 'svg', altText: 'VS Code extension marketplace with featured language extensions', path: 'extensions-web.svg'
@@ -311,7 +311,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'pickAFolderTask-WebWeb',
title: localize('gettingStarted.setup.OpenFolder.title', "Open up your code"),
- description: localize('gettingStarted.setup.OpenFolderWeb.description.interpolated', "You're all set to start coding. You can open a local project or a remote repository to get your files into VS Code.\n{0}\n{1}", Button(localize('openFolder', "Open Folder"), 'command:workbench.action.addRootFolder'), Button(localize('openRepository', "Open Repository"), 'command:remoteHub.openRepository')),
+ description: localize('gettingStarted.setup.OpenFolderWeb.description.interpolated', "You're all set to start coding. You can open a local project or a remote repository to get your files into Codium.\n{0}\n{1}", Button(localize('openFolder', "Open Folder"), 'command:workbench.action.addRootFolder'), Button(localize('openRepository', "Open Repository"), 'command:remoteHub.openRepository')),
when: 'workspaceFolderCount == 0',
media: {
type: 'svg', altText: 'Explorer view showing buttons for opening folder and cloning repository.', path: 'openFolder.svg'
@@ -336,7 +336,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
icon: beginnerIcon,
isFeatured: false,
next: 'Intermediate',
- description: localize('gettingStarted.beginner.description', "Jump right into VS Code and get an overview of the must-have features."),
+ description: localize('gettingStarted.beginner.description', "Jump right into Codium and get an overview of the must-have features."),
content: {
type: 'steps',
steps: [
@@ -360,7 +360,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'extensions',
title: localize('gettingStarted.extensions.title', "Limitless extensibility"),
- description: localize('gettingStarted.extensions.description.interpolated', "Extensions are VS Code's power-ups. They range from handy productivity hacks, expanding out-of-the-box features, to adding completely new capabilities.\n{0}", Button(localize('browseRecommended', "Browse Recommended Extensions"), 'command:workbench.extensions.action.showRecommendedExtensions')),
+ description: localize('gettingStarted.extensions.description.interpolated', "Extensions are Codium's power-ups. They range from handy productivity hacks, expanding out-of-the-box features, to adding completely new capabilities.\n{0}", Button(localize('browseRecommended', "Browse Recommended Extensions"), 'command:workbench.extensions.action.showRecommendedExtensions')),
when: 'workspacePlatform != \'webworker\'',
media: {
type: 'svg', altText: 'VS Code extension marketplace with featured language extensions', path: 'extensions.svg'
@@ -369,9 +369,9 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'settings',
title: localize('gettingStarted.settings.title', "Tune your settings"),
- description: localize('gettingStarted.settings.description.interpolated', "Tweak every aspect of VS Code and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}", Button(localize('tweakSettings', "Tweak my Settings"), 'command:toSide:workbench.action.openSettings')),
+ description: localize('gettingStarted.settings.description.interpolated', "Tweak every aspect of Codium and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}", Button(localize('tweakSettings', "Tweak my Settings"), 'command:toSide:workbench.action.openSettings')),
media: {
- type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
+ type: 'svg', altText: 'Codium Settings', path: 'settings.svg'
},
},
{
@@ -386,8 +386,8 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'videoTutorial',
title: localize('gettingStarted.videoTutorial.title', "Lean back and learn"),
- description: localize('gettingStarted.videoTutorial.description.interpolated', "Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}", Button(localize('watch', "Watch Tutorial"), 'https://aka.ms/vscode-getting-started-video')),
- media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
+ description: localize('gettingStarted.videoTutorial.description.interpolated', "Watch the first in a series of short & practical video tutorials for Codium's key features.\n{0}", Button(localize('watch', "Watch Tutorial"), 'https://aka.ms/vscode-getting-started-video')),
+ media: { type: 'svg', altText: 'Codium Settings', path: 'learn.svg' },
}
]
}
--
2.34.1

0 comments on commit 34f1d26

Please sign in to comment.