Localize strings (#16781)

Localize all user viewable strings
This commit is contained in:
goyal-anjali
2021-08-16 10:59:40 -07:00
committed by GitHub
parent 6014b17d52
commit 1121429f5c
4 changed files with 29 additions and 19 deletions

View File

@@ -255,7 +255,7 @@ export class DatabaseBackupPage extends MigrationWizardPage {
}
}).component();
this._networkSharePath = this._view.modelBuilder.inputBox().withProps({
placeHolder: '\\\\Servername.domainname.com\\Backupfolder',
placeHolder: constants.NETWORK_SHARE_PATH,
validationErrorMessage: constants.INVALID_NETWORK_SHARE_LOCATION,
width: WIZARD_INPUT_COMPONENT_WIDTH,
CSSStyles: {
@@ -299,7 +299,7 @@ export class DatabaseBackupPage extends MigrationWizardPage {
}).component();
this._windowsUserAccountText = this._view.modelBuilder.inputBox()
.withProps({
placeHolder: 'Domain\\username',
placeHolder: constants.WINDOWS_USER_ACCOUNT,
required: true,
validationErrorMessage: constants.INVALID_USER_ACCOUNT,
width: WIZARD_INPUT_COMPONENT_WIDTH