Move dacpac and schema compare localized strings (#9107)

* move localized strings

* move schema compare localized strings
This commit is contained in:
Kim Santiago
2020-02-10 13:30:52 -08:00
committed by GitHub
parent eac05c85f1
commit 45341d786b
17 changed files with 1166 additions and 1078 deletions

View File

@@ -4,11 +4,9 @@
*--------------------------------------------------------------------------------------------*/
import * as azdata from 'azdata';
import * as nls from 'vscode-nls';
import * as loc from '../../localizedConstants';
import { DacFxDataModel } from './models';
const localize = nls.loadMessageBundle();
export abstract class BasePage {
protected readonly wizardPage: azdata.window.WizardPage;
@@ -75,7 +73,7 @@ export abstract class BasePage {
let srv = c.options.server;
if (!usr) {
usr = localize('basePage.defaultUser', "default");
usr = loc.defaultText;
}
let finalName = `${srv} (${usr})`;