-
-
Notifications
You must be signed in to change notification settings - Fork 32
MudExObjectEditForm Localization for German #189
Description
Feature request type
Enhance component
Component name
MudExObjectEditForm
Is your feature request related to a problem?
MudExObjectEditForm — German translations not applied
We integrated MudBlazor.Translations and added our German JSON resource, but many built-in UI texts (tooltips, warnings, and standard button texts) remain in English. We have:
builder.Services.AddMudTranslations(); called in Program.cs.
A JSON resource file containing German keys (attached).
App-level localization configured, but UI still shows English for several MudBlazor controls.
Describe the solution you'd like
All MudBlazor built-in strings (tooltips, warnings, dialog buttons, etc.) should display German text from our translations.
Field labels produced by MudExObjectEditForm should use LocalizedDisplayNameAttribute, How can i configure that, sample property is given below
[LocalizedDisplayNameAttribute("Projektadministrator")]
[SafeCategory("Projekte"), LocalizedDescriptionAttribute("Zugriff auf Projektadministrator")]
public bool ProjectsAdmin
{
get { return projectsAdmin; }
set { projectsAdmin = value; }
}
Have you seen this feature anywhere else?
No response
Describe alternatives you've considered
No response
Pull Request
No response
Code of Conduct
- I agree to follow this project's Code of Conduct