|
@@ -9,13 +9,13 @@
|
|
<mat-label>{{ "creator.species" | translate }}</mat-label>
|
|
<mat-label>{{ "creator.species" | translate }}</mat-label>
|
|
<mat-select [(ngModel)]="characterSpecies" name="species">
|
|
<mat-select [(ngModel)]="characterSpecies" name="species">
|
|
<mat-optgroup [label]="'Häufige Spezies'"></mat-optgroup>
|
|
<mat-optgroup [label]="'Häufige Spezies'"></mat-optgroup>
|
|
- @for (species of translator.commonRaces; track species) {
|
|
|
|
|
|
+ @for (species of list.commonRaces; track species) {
|
|
<mat-option [value]="species">{{
|
|
<mat-option [value]="species">{{
|
|
"species." + species | translate
|
|
"species." + species | translate
|
|
}}</mat-option>
|
|
}}</mat-option>
|
|
}
|
|
}
|
|
<mat-optgroup [label]="'Andere Spezies'"></mat-optgroup>
|
|
<mat-optgroup [label]="'Andere Spezies'"></mat-optgroup>
|
|
- @for (species of translator.otherRaces; track species) {
|
|
|
|
|
|
+ @for (species of list.otherRaces; track species) {
|
|
<mat-option [value]="species">{{
|
|
<mat-option [value]="species">{{
|
|
"species." + species | translate
|
|
"species." + species | translate
|
|
}}</mat-option>
|
|
}}</mat-option>
|
|
@@ -25,7 +25,7 @@
|
|
<mat-form-field appearance="outline">
|
|
<mat-form-field appearance="outline">
|
|
<mat-label>{{ "creator.class" | translate }}</mat-label>
|
|
<mat-label>{{ "creator.class" | translate }}</mat-label>
|
|
<mat-select [(ngModel)]="characterClass" name="class">
|
|
<mat-select [(ngModel)]="characterClass" name="class">
|
|
- @for (characterClass of translator.classes; track characterClass) {
|
|
|
|
|
|
+ @for (characterClass of list.classes; track characterClass) {
|
|
<mat-option [value]="characterClass">{{
|
|
<mat-option [value]="characterClass">{{
|
|
"classes." + characterClass | translate
|
|
"classes." + characterClass | translate
|
|
}}</mat-option>
|
|
}}</mat-option>
|
|
@@ -35,7 +35,7 @@
|
|
<mat-form-field appearance="outline">
|
|
<mat-form-field appearance="outline">
|
|
<mat-label>{{ "creator.background" | translate }}</mat-label>
|
|
<mat-label>{{ "creator.background" | translate }}</mat-label>
|
|
<mat-select [(ngModel)]="characterBackground" name="background">
|
|
<mat-select [(ngModel)]="characterBackground" name="background">
|
|
- @for (background of translator.backgrounds; track background) {
|
|
|
|
|
|
+ @for (background of list.backgrounds; track background) {
|
|
<mat-option [value]="background">{{
|
|
<mat-option [value]="background">{{
|
|
"backgrounds." + background | translate
|
|
"backgrounds." + background | translate
|
|
}}</mat-option>
|
|
}}</mat-option>
|
|
@@ -45,7 +45,7 @@
|
|
<mat-form-field appearance="outline">
|
|
<mat-form-field appearance="outline">
|
|
<mat-label>{{ "creator.gender" | translate }}</mat-label>
|
|
<mat-label>{{ "creator.gender" | translate }}</mat-label>
|
|
<mat-select [(ngModel)]="characterGender" name="gender">
|
|
<mat-select [(ngModel)]="characterGender" name="gender">
|
|
- @for (gender of translator.genders; track gender) {
|
|
|
|
|
|
+ @for (gender of list.genders; track gender) {
|
|
<mat-option [value]="gender">{{
|
|
<mat-option [value]="gender">{{
|
|
"genders." + gender | translate
|
|
"genders." + gender | translate
|
|
}}</mat-option>
|
|
}}</mat-option>
|