Update sql migration extension strings (#16801)

* initial capitalize; add periods; replace (s) with plural nouns to improve localization
This commit is contained in:
Rachel Kim
2021-08-19 11:07:51 -07:00
committed by GitHub
parent 9f9e562e77
commit c8602c2ced
3 changed files with 90 additions and 90 deletions

View File

@@ -571,7 +571,7 @@ export class MigrationCutoverDialog {
fileName: f.fileName,
type: activeBackupSet.backupType,
status: f.status,
dataUploaded: `${convertByteSizeToReadableUnit(f.dataWritten)}/ ${convertByteSizeToReadableUnit(f.totalSize)}`,
dataUploaded: `${convertByteSizeToReadableUnit(f.dataWritten)} / ${convertByteSizeToReadableUnit(f.totalSize)}`,
copyThroughput: (f.copyThroughput) ? (f.copyThroughput / 1024).toFixed(2) : '-',
backupStartTime: activeBackupSet.backupStartDate,
firstLSN: activeBackupSet.firstLSN,