fix wordings
This commit is contained in:
parent
e2ee3e6afe
commit
7e995697f7
|
|
@ -10,7 +10,7 @@
|
||||||
<MudNavLink Href="/dashboard"
|
<MudNavLink Href="/dashboard"
|
||||||
Match="NavLinkMatch.All"
|
Match="NavLinkMatch.All"
|
||||||
Icon="@Icons.Material.Filled.Dashboard">
|
Icon="@Icons.Material.Filled.Dashboard">
|
||||||
<EFBFBD>bersicht
|
Übersicht
|
||||||
</MudNavLink>
|
</MudNavLink>
|
||||||
|
|
||||||
@if (AuthState.Value.IsAuthenticated && HasSelectedClub)
|
@if (AuthState.Value.IsAuthenticated && HasSelectedClub)
|
||||||
|
|
@ -79,7 +79,7 @@
|
||||||
<MudNavLink Href="/settings"
|
<MudNavLink Href="/settings"
|
||||||
Match="NavLinkMatch.All"
|
Match="NavLinkMatch.All"
|
||||||
Icon="@Icons.Material.Filled.Tune">
|
Icon="@Icons.Material.Filled.Tune">
|
||||||
Vereins-Einstellungen
|
Einstellungen
|
||||||
</MudNavLink>
|
</MudNavLink>
|
||||||
|
|
||||||
<MudNavLink Href="/admin/terminology"
|
<MudNavLink Href="/admin/terminology"
|
||||||
|
|
|
||||||
|
|
@ -10,16 +10,16 @@
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
<MudForm @ref="_form" @bind-IsValid="_isValid">
|
<MudForm @ref="_form" @bind-IsValid="_isValid">
|
||||||
<MudTextField @bind-Value="_name"
|
<MudTextField @bind-Value="_name"
|
||||||
Label="Name"
|
Label="Name"
|
||||||
Required="true"
|
Required="true"
|
||||||
RequiredError="Name ist erforderlich"
|
RequiredError="Name ist erforderlich"
|
||||||
Immediate="true"
|
Immediate="true"
|
||||||
Class="mb-4" />
|
Class="mb-4" />
|
||||||
|
|
||||||
<MudSelect T="PersonStatus" @bind-Value="_personStatus"
|
<MudSelect T="PersonStatus" @bind-Value="_personStatus"
|
||||||
Label="Status"
|
Label="Status"
|
||||||
AnchorOrigin="Origin.BottomCenter"
|
AnchorOrigin="Origin.BottomCenter"
|
||||||
Class="mb-4">
|
Class="mb-4">
|
||||||
<MudSelectItem Value="PersonStatus.Member">Mitglied</MudSelectItem>
|
<MudSelectItem Value="PersonStatus.Member">Mitglied</MudSelectItem>
|
||||||
<MudSelectItem Value="PersonStatus.Guest">Gast</MudSelectItem>
|
<MudSelectItem Value="PersonStatus.Guest">Gast</MudSelectItem>
|
||||||
</MudSelect>
|
</MudSelect>
|
||||||
|
|
@ -29,10 +29,10 @@
|
||||||
</MudText>
|
</MudText>
|
||||||
|
|
||||||
<MudSelect T="Guid?" @bind-Value="_userProfileId"
|
<MudSelect T="Guid?" @bind-Value="_userProfileId"
|
||||||
Label="Benutzerkonto"
|
Label="Benutzerkonto"
|
||||||
AnchorOrigin="Origin.BottomCenter"
|
AnchorOrigin="Origin.BottomCenter"
|
||||||
Clearable="true"
|
Clearable="true"
|
||||||
Disabled="AvailableUserProfiles.Count == 0">
|
Disabled="AvailableUserProfiles.Count == 0">
|
||||||
@foreach (var profile in AvailableUserProfiles)
|
@foreach (var profile in AvailableUserProfiles)
|
||||||
{
|
{
|
||||||
<MudSelectItem T="Guid?" Value="@profile.Id">
|
<MudSelectItem T="Guid?" Value="@profile.Id">
|
||||||
|
|
@ -42,9 +42,11 @@
|
||||||
</MudSelect>
|
</MudSelect>
|
||||||
|
|
||||||
<MudText Typo="Typo.caption" Class="mt-2" Color="Color.Secondary">
|
<MudText Typo="Typo.caption" Class="mt-2" Color="Color.Secondary">
|
||||||
Verknüpfe diese Person optional mit einem Benutzerkonto des Vereins.
|
Verknüpfe diese Person optional mit einem Benutzerkonto des Vereins. *
|
||||||
</MudText>
|
</MudText>
|
||||||
</MudForm>
|
</MudForm>
|
||||||
|
<MudSpacer/>
|
||||||
|
<MudAlert Severity="Severity.Info">* Für den Erhalt individueller Strafen-Berichte oder Statistiken per E-Mail muss eine Zuordnung zwischen Personen und Benutzerkonten vorhanden sein.</MudAlert>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
<DialogActions>
|
<DialogActions>
|
||||||
<MudButton OnClick="Cancel">Abbrechen</MudButton>
|
<MudButton OnClick="Cancel">Abbrechen</MudButton>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue