Change sentence "on your local computer" to "locally"

This commit is contained in:
grossmj
2020-05-20 15:42:14 +09:30
parent 1ed8123082
commit 0cee6188fb
8 changed files with 56 additions and 56 deletions

View File

@ -9,7 +9,7 @@
<mat-vertical-stepper [linear]="true">
<mat-step label="Server type">
<mat-radio-group class="radio-group">
<mat-radio-button class="radio-button" value="1" (click)="setServerType('local')" checked>Run this QEMU VM on your local computer</mat-radio-button>
<mat-radio-button class="radio-button" value="1" (click)="setServerType('local')" checked>Run this QEMU VM locally</mat-radio-button>
<mat-radio-button [disabled]="!isGns3VmAvailable" class="radio-button" value="2" (click)="setServerType('gns3 vm')">Run this QEMU VM on the GNS3 VM</mat-radio-button>
</mat-radio-group>
</mat-step>
@ -17,8 +17,8 @@
<mat-step label="QEMU VM Name">
<form [formGroup]="nameForm">
<mat-form-field class="form-field">
<input
matInput type="text"
<input
matInput type="text"
formControlName="templateName"
placeholder="Please choose a descriptive name for your new QEMU virtual machine"
ngDefaultContro/>
@ -31,7 +31,7 @@
<mat-step label="QEMU binary and memory">
<form [formGroup]="memoryForm">
<mat-form-field class="form-field">
<mat-select
<mat-select
placeholder="Qemu binary"
[(ngModel)]="selectedBinary"
[ngModelOptions]="{standalone: true}">
@ -41,9 +41,9 @@
</mat-select>
</mat-form-field><br/>
<mat-form-field class="form-field">
<input
matInput type="number"
placeholder="RAM"
<input
matInput type="number"
placeholder="RAM"
formControlName="ramMemory"
ngDefaultContro/>
<span matSuffix>MB</span>
@ -52,8 +52,8 @@
</mat-step>
<mat-step label="Console type">
<mat-form-field class="form-field">
<mat-select
placeholder="Console type"
<mat-select
placeholder="Console type"
[(ngModel)]="qemuTemplate.console_type"
[ngModelOptions]="{standalone: true}" >
<mat-option *ngFor="let type of consoleTypes" [value]="type">
@ -68,10 +68,10 @@
<mat-radio-button class="radio-button" value="1" (click)="setDiskImage('existingImage')" checked>Existing image</mat-radio-button>
<mat-radio-button class="radio-button" value="2" (click)="setDiskImage('newImage')">New image</mat-radio-button>
</mat-radio-group><br/><br/>
<mat-select
*ngIf="!newImageSelected"
placeholder="Disk image (hda)"
[ngModelOptions]="{standalone: true}"
<mat-select
*ngIf="!newImageSelected"
placeholder="Disk image (hda)"
[ngModelOptions]="{standalone: true}"
[(ngModel)]="selectedImage">
<mat-option *ngFor="let image of qemuImages" [value]="image">
{{image.filename}}