diff --git a/extensions/data-workspace/package.nls.json b/extensions/data-workspace/package.nls.json index 02d1fd9427..4a5940d37f 100644 --- a/extensions/data-workspace/package.nls.json +++ b/extensions/data-workspace/package.nls.json @@ -6,8 +6,8 @@ "new-command": "New", "refresh-workspace-command": "Refresh", "remove-project-command": "Remove Project", - "projects-view-no-workspace-content": "[Create new](command:projects.new)\n[Open existing](command:projects.openExisting)\n", - "projects-view-no-project-content": "No projects found in current workspace.\n[Create new](command:projects.new)\n[Open existing](command:projects.openExisting)\n", + "projects-view-no-workspace-content": "No workspace open, create new or open existing to get started.\n[Create new](command:projects.new)\n[Open existing](command:projects.openExisting)\nTo learn more about SQL Database projects [read our docs](https://aka.ms/azuredatastudio-sqlprojects)", + "projects-view-no-project-content": "No projects found in current workspace.\n[Create new](command:projects.new)\n[Open existing](command:projects.openExisting)\nTo learn more about SQL Database projects [read our docs](https://aka.ms/azuredatastudio-sqlprojects).\n", "open-existing-command": "Open existing", "projects.defaultProjectSaveLocation": "Full path to folder where new projects are saved by default." } diff --git a/extensions/data-workspace/src/common/constants.ts b/extensions/data-workspace/src/common/constants.ts index 5022b23620..6a89484181 100644 --- a/extensions/data-workspace/src/common/constants.ts +++ b/extensions/data-workspace/src/common/constants.ts @@ -31,7 +31,7 @@ export const TypeTitle = localize('dataworkspace.Type', "Type"); export const ProjectNameTitle = localize('dataworkspace.projectNameTitle', "Name"); export const ProjectNamePlaceholder = localize('dataworkspace.projectNamePlaceholder', "Enter project name"); export const ProjectLocationTitle = localize('dataworkspace.projectLocationTitle', "Location"); -export const ProjectLocationPlaceholder = localize('dataworkspace.projectLocationPlaceholder', "Enter project location"); +export const ProjectLocationPlaceholder = localize('dataworkspace.projectLocationPlaceholder', "Select location to create project"); export const AddProjectToCurrentWorkspace = localize('dataworkspace.AddProjectToCurrentWorkspace', "This project will be added to the current workspace."); export const NewWorkspaceWillBeCreated = localize('dataworkspace.NewWorkspaceWillBeCreated', "A new workspace will be created for this project."); export const WorkspaceLocationTitle = localize('dataworkspace.workspaceLocationTitle', "Workspace location"); @@ -45,8 +45,8 @@ export const WorkspaceFileNotExistError = (workspaceFilePath: string): string => export const Project = localize('dataworkspace.project', "Project"); export const Workspace = localize('dataworkspace.workspace', "Workspace"); export const LocationSelectorTitle = localize('dataworkspace.locationSelectorTitle', "Location"); -export const ProjectFilePlaceholder = localize('dataworkspace.projectFilePlaceholder', "Enter project location"); -export const WorkspacePlaceholder = localize('dataworkspace.workspacePlaceholder', "Enter workspace location"); +export const ProjectFilePlaceholder = localize('dataworkspace.projectFilePlaceholder', "Select project (.sqlproj) file"); +export const WorkspacePlaceholder = localize('dataworkspace.workspacePlaceholder', "Select workspace (.code-workspace) file"); export const WorkspaceFileExtension = 'code-workspace'; // Workspace settings for saving new projects