Hi, I am working on an ABPIO project & there is a requirement from client to rename the "Administration" menu item in the Main Menu. I tried solutions provided on support & in documentation but couldn't find any that will solve my problem. Can someone please tell me how can I achieve that? The details of the framework are given below.
- ABP Framework version: v5.0.1
- UI type: Angular
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): yes
- Exception message and stack trace:
- Steps to reproduce the issue:"
2 Answer(s)
-
0
Hi @SushantPawar,
Client can change it in runtime using Language Management module. See screenshot below.
Also, you can also override the existing localization in development time, by extending
AbpUiNavigationResource
. SeeExtending Existing Resource
section in the documentation.If an extension file defines the same localized string, it overrides the string.
-
0
Hi @SushantPawar,
Client can change it in runtime using Language Management module. See screenshot below.
Also, you can also override the existing localization in development time, by extending
AbpUiNavigationResource
. SeeExtending Existing Resource
section in the documentation.If an extension file defines the same localized string, it overrides the string.
Thanks @yekalkan. It worked for me.