mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Add new file UI (#14773)
Adds a notebook or markdown file to a book's top level or a section by right click on Book Tree View
This commit is contained in:
@@ -94,8 +94,18 @@ export const name = localize('name', "Name");
|
||||
export const saveLocation = localize('saveLocation', "Save location");
|
||||
export const contentFolder = localize('contentFolder', "Content folder (Optional)");
|
||||
export const msgContentFolderError = localize('msgContentFolderError', "Content folder path does not exist");
|
||||
export const msgSaveFolderError = localize('msgSaveFolderError', "Save location path does not exist");
|
||||
export const msgSaveFolderError = localize('msgSaveFolderError', "Save location path does not exist.");
|
||||
export function msgCreateBookWarningMsg(file: string): string { return localize('msgCreateBookWarningMsg', "Error while trying to access: {0}", file); }
|
||||
|
||||
// Add a notebook dialog constants
|
||||
export const newNotebook = localize('newNotebook', "New Notebook (Preview)");
|
||||
export const newMarkdown = localize('newMarkdown', "New Markdown (Preview)");
|
||||
export const fileExtension = localize('fileExtension', "File Extension");
|
||||
export const confirmOverwrite = localize('confirmOverwrite', "File already exists. Are you sure you want to overwrite this file?");
|
||||
export const title = localize('title', "Title");
|
||||
export const fileName = localize('fileName', "File Name");
|
||||
export const msgInvalidSaveFolder = localize('msgInvalidSaveFolder', "Save location path is not valid.");
|
||||
export function msgDuplicadFileName(file: string): string { return localize('msgDuplicadFileName', "File {0} already exists in the destination folder", file); }
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user