Add an informational message when a user tries to open an already opened project (#13853)

This commit is contained in:
Sakshi Sharma
2020-12-18 12:33:33 -08:00
committed by GitHub
parent 72a3aa1207
commit 0b8b6064ed
3 changed files with 7 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ export const Workspace = localize('dataworkspace.workspace', "Workspace");
export const LocationSelectorTitle = localize('dataworkspace.locationSelectorTitle', "Location");
export const ProjectFilePlaceholder = localize('dataworkspace.projectFilePlaceholder', "Select project (.sqlproj) file");
export const WorkspacePlaceholder = localize('dataworkspace.workspacePlaceholder', "Select workspace ({0}) file", WorkspaceFileExtension);
export const ProjectAlreadyOpened = (path: string): string => { return localize('dataworkspace.projectAlreadyOpened', "Project '{0}' is already opened.", path); };
// Workspace settings for saving new projects
export const ProjectConfigurationKey = 'projects';