unoffical wafrn mirror
wafrn.net
atproto
social-network
activitypub
1<mat-form-field class="block w-full mat-form-field-no-padding" floatLabel="always">
2 <mat-label>{{ 'settings.uiLanguage' | translate }}</mat-label>
3 <mat-select [value]="appLanguage" (selectionChange)="setLanguage($event)">
4 @for (entry of allLanguages; track $index) {
5 <mat-option [value]="entry">{{ languageMap[entry].name }}</mat-option>
6 }
7 </mat-select>
8</mat-form-field>
9<p class="setting-description" [innerHTML]="'settings.uiLanguageDescription' | translate"></p>