added import-extensions-xlf gulp task (#15966)

* added import-extensions-xlf gulp task

* combined export and import

* changed vscode-translations-export

* added rename vscode langpacks task

* added node command to import language xlfs

* fixed import language xlfs command

* added comments

* removed import script as we need to investigate localization
This commit is contained in:
Alex Ma
2021-07-02 10:58:14 -07:00
committed by GitHub
parent 24b77a6a40
commit ba3ab201c8
7 changed files with 135 additions and 25 deletions

View File

@@ -611,7 +611,7 @@ const editorProject: string = 'vscode-editor',
setupProject: string = 'vscode-setup';
// {{SQL CARBON EDIT}}
const sqlopsProject: string = 'sqlops-core';
const adsProject: string = 'ads-core';
export function getResource(sourceFile: string): Resource {
let resource: string;
@@ -638,7 +638,7 @@ export function getResource(sourceFile: string): Resource {
// {{SQL CARBON EDIT}}
else if (/^sql/.test(sourceFile)) {
return { name: 'sql', project: sqlopsProject };
return { name: 'sql', project: adsProject };
}
throw new Error(`Could not identify the XLF bundle for ${sourceFile}`);