|
@@ -92,7 +92,7 @@
|
|
<label>{{ "general.attribute" | translate }}</label>
|
|
<label>{{ "general.attribute" | translate }}</label>
|
|
<mat-form-field appearance="outline">
|
|
<mat-form-field appearance="outline">
|
|
<mat-select [(ngModel)]="savingThrowAttribute">
|
|
<mat-select [(ngModel)]="savingThrowAttribute">
|
|
- @for (attribute of translator.attributes; track school) {
|
|
|
|
|
|
+ @for (attribute of list.attributes; track school) {
|
|
<mat-option [value]="savingThrowAttribute">{{
|
|
<mat-option [value]="savingThrowAttribute">{{
|
|
"attributes." + attribute | translate
|
|
"attributes." + attribute | translate
|
|
}}</mat-option>
|
|
}}</mat-option>
|
|
@@ -154,7 +154,7 @@
|
|
[(ngModel)]="durationtype"
|
|
[(ngModel)]="durationtype"
|
|
(selectionChange)="checkIfInstant()"
|
|
(selectionChange)="checkIfInstant()"
|
|
>
|
|
>
|
|
- @for (type of translator.durationTypes; track type) {
|
|
|
|
|
|
+ @for (type of list.durationTypes; track type) {
|
|
<mat-option [value]="type">{{
|
|
<mat-option [value]="type">{{
|
|
"time." + type | translate
|
|
"time." + type | translate
|
|
}}</mat-option>
|
|
}}</mat-option>
|
|
@@ -178,7 +178,7 @@
|
|
<label>{{ "spellmodal.school" | translate }}</label>
|
|
<label>{{ "spellmodal.school" | translate }}</label>
|
|
<mat-form-field appearance="outline">
|
|
<mat-form-field appearance="outline">
|
|
<mat-select [(ngModel)]="school">
|
|
<mat-select [(ngModel)]="school">
|
|
- @for (school of translator.schools; track school) {
|
|
|
|
|
|
+ @for (school of list.schools; track school) {
|
|
<mat-option [value]="school">{{
|
|
<mat-option [value]="school">{{
|
|
"schools." + school | translate
|
|
"schools." + school | translate
|
|
}}</mat-option>
|
|
}}</mat-option>
|
|
@@ -256,7 +256,7 @@
|
|
</div>
|
|
</div>
|
|
<mat-form-field appearance="outline">
|
|
<mat-form-field appearance="outline">
|
|
<mat-select [(ngModel)]="damageEntry.damageType">
|
|
<mat-select [(ngModel)]="damageEntry.damageType">
|
|
- @for (type of translator.damageTypes; track type) {
|
|
|
|
|
|
+ @for (type of list.damageTypes; track type) {
|
|
<mat-option [value]="type">
|
|
<mat-option [value]="type">
|
|
{{ "damageTypes." + type | translate }}
|
|
{{ "damageTypes." + type | translate }}
|
|
</mat-option>
|
|
</mat-option>
|
|
@@ -347,7 +347,7 @@
|
|
</div>
|
|
</div>
|
|
<mat-form-field appearance="outline">
|
|
<mat-form-field appearance="outline">
|
|
<mat-select [(ngModel)]="areaOfEffectType">
|
|
<mat-select [(ngModel)]="areaOfEffectType">
|
|
- @for (areaType of translator.areaTypes; track areaType) {
|
|
|
|
|
|
+ @for (areaType of list.areaTypes; track areaType) {
|
|
<mat-option [value]="areaType">
|
|
<mat-option [value]="areaType">
|
|
{{ "areaTypes." + areaType | translate }}
|
|
{{ "areaTypes." + areaType | translate }}
|
|
</mat-option>
|
|
</mat-option>
|