mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 10:12:34 -05:00
SQL Assessment Database Selector (#16030)
* wip * wip * database selector table * fixed db icon * wip * fixed assessment results table * replaced large query * fix build error * updated spacing and other fixes * removed commented code * added search bar, fix margins, disable checkbox for offline db * change width of checkbox column * changed api to require databases * Revert "changed api to require databases" This reverts commit 20fe2d8bd223bae90dfb09609225a1781267a01d. * removed optional flag from databases parameter * removed icons on assessment dialog page * formatting changes, fixed search * bump STS * bumped extension version number * one excludeDbs
This commit is contained in:
@@ -464,6 +464,11 @@ export const SOURCE_CREDENTIALS = localize('sql.migration.source.credentials', "
|
||||
export const ENTER_YOUR_SQL_CREDS = localize('sql.migration.enter.your.sql.cred', "Enter the credential for source SQL Server instance. This credential will be used while migrating database(s) to Azure SQL.");
|
||||
export const SERVER = localize('sql.migration.server', "Server");
|
||||
export const USERNAME = localize('sql.migration.username', "Username");
|
||||
export const SIZE = localize('sql.migration.size', "Size (MB)");
|
||||
export const LAST_BACKUP = localize('sql.migration.last.backup', "Last backup");
|
||||
export const DATABASE_FOR_MIGRATION = localize('sql.migration.database.migration', "Databases for migration");
|
||||
export const DATABASE_MIGRATE_TEXT = localize('sql.migrate.text', "Select database(s) that you want to migrate to Azure SQL");
|
||||
export const OFFLINE_CAPS = localize('sql.migration.offline.caps', "OFFLINE");
|
||||
|
||||
//Assessment Dialog
|
||||
export const ISSUES = localize('sql.migration.issues', "Issues");
|
||||
@@ -493,6 +498,9 @@ export function IMPACT_OBJECT_NAME(objectName?: string): string {
|
||||
export function DATABASES(selectedCount: number, totalCount: number): string {
|
||||
return localize('sql.migration.databases', "Databases ({0}/{1})", selectedCount, totalCount);
|
||||
}
|
||||
export function DATABASES_SELECTED(selectedCount: number, totalCount: number): string {
|
||||
return localize('sql.migration.databases.selected', "{0}/{1} Databases Selected", selectedCount, totalCount);
|
||||
}
|
||||
export function ISSUES_COUNT(totalCount: number): string {
|
||||
return localize('sql.migration.issues.count', "Issues ({0})", totalCount);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user