Update XLF files and fix errors with export (#7586)

* Update XLF files and fix errors with export

* Update file name

* Patch
This commit is contained in:
Karl Burtram
2019-10-10 20:47:28 -07:00
committed by GitHub
parent 248464191d
commit c292561eb1
13 changed files with 1639 additions and 4271 deletions

View File

@@ -26,14 +26,15 @@ import { registerServiceEndpoints } from './dashboard/serviceEndpoints';
import { getBookExtensionContributions } from './dashboard/bookExtensions';
import { registerBooksWidget } from './dashboard/bookWidget';
import { createMssqlApi } from './mssqlApiFactory';
import { localize } from './localize';
import { SqlToolsServer } from './sqlToolsServer';
import { promises as fs } from 'fs';
import { IconPathHelper } from './iconHelper';
import * as nls from 'vscode-nls';
const localize = nls.loadMessageBundle();
const msgSampleCodeDataFrame = localize('msgSampleCodeDataFrame', 'This sample code loads the file into a data frame and shows the first 10 results.');
export async function activate(context: vscode.ExtensionContext): Promise<IExtension> {
// lets make sure we support this platform first
let supported = await Utils.verifyPlatform();