Add preview and bump versions (#18749)

This commit is contained in:
Kim Santiago
2022-03-17 10:47:50 -07:00
committed by GitHub
parent 27cb693bd5
commit 023e10b496
3 changed files with 4 additions and 4 deletions

View File

@@ -258,7 +258,7 @@ export const folderStructureLabel = localize('folderStructureLabel', "Folder str
export const WorkspaceFileExtension = '.code-workspace';
export const browseEllipsisWithIcon = `$(folder) ${localize('browseEllipsis', "Browse...")}`;
export const selectProjectLocation = localize('selectProjectLocation', "Select project location");
export const sdkStyleProject = localize('sdkStyleProject', 'SDK-style project');
export const sdkStyleProject = localize('sdkStyleProject', 'SDK-style project (Preview)');
export const ProjectParentDirectoryNotExistError = (location: string): string => { return localize('dataworkspace.projectParentDirectoryNotExistError', "The selected project location '{0}' does not exist or is not a directory.", location); };
export const ProjectDirectoryAlreadyExistError = (projectName: string, location: string): string => { return localize('dataworkspace.projectDirectoryAlreadyExistError', "There is already a directory named '{0}' in the selected location: '{1}'.", projectName, location); };