Parameter renaming and number of calls reduce (#23760)

Co-authored-by: Alexander Perfilyev <aperfilyev@microsoft.com>
This commit is contained in:
Alexander Perfilyev
2023-07-12 15:28:23 -07:00
committed by GitHub
parent 8bdc7d0346
commit 8b4b84e5c0
2 changed files with 5 additions and 4 deletions

View File

@@ -141,7 +141,7 @@ export const ASSESSMENT_COMPLETED = (serverName: string): string => {
export const ASSESSMENT_FAILED = (serverName: string): string => {
return localize('sql.migration.assessment.failed', "The assessment of your SQL Server instance '{0}' failed.", serverName);
};
export function ASSESSMENT_TILE(serverName: string): string {
export function ASSESSMENT_TITLE(serverName: string): string {
return localize('sql.migration.assessment', "Assessment results for '{0}'", serverName);
}
export function CAN_BE_MIGRATED(eligibleDbs: number, totalDbs: number): string {