If there is anything that we can add in the JSON file (present in the localization folder) for this?
You won't change anything in your current localization files. You need to create another localization folder and configure it to extend the resource you want to change.
See Extending Existing Resource section in the documentation.
In your scenario, you need to extend AbpUiNavigationResource.
Localization key for administration menu is Menu:Administration.
example code:
services.Configure<AbpLocalizationOptions>(options =>
{
options.Resources
.Get<AbpUiNavigationResource>()
.AddVirtualJson("/Localization/Resources/Test/Extensions");
});
/Localization/Resources/Test/Extensions/en.json file:
{
"culture": "en",
"texts": {
"Menu:Administration": "Custom administration translate"
}
}
Hi @safi
I answered this question at https://support.abp.io/QA/Questions/2413/Changing-the-name-of-Administration-menu-item#answer-c47fcd18-b187-5cae-4a43-3a0160d834cf
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.
See Extending Existing Resource section in the documentation.
If an extension file defines the same localized string, it overrides the string.
Hi @dekiyana,
This is not a suggested way to relate Aggregate Roots, by ABP and DomainDrivenDesign. Check the note section in Add Relation to The Book Entity section: https://docs.abp.io/en/abp/latest/Tutorials/Part-10?UI=MVC&DB=EF#add-relation-to-the-book-entity
However, as the note stated, you can do it your way if you want. I think you have to check your implementation. I've found a stackoverflow question similar to yours: https://stackoverflow.com/questions/59199593/net-core-3-0-possible-object-cycle-was-detected-which-is-not-supported
Hi @mostafa_ibrahem22,
Sorry for the misunderstanding. Chat & FileManagement does have Angular UI. But it seems like your local cache has stored some source codes that angular ui's are missing.
You need to delete these files in %USERPROFILE%\.abp\templates folder:
Volo.Chat-5.0.1.zip
Volo.FileManagement-5.0.1.zip
(Or 5.0.0 versions)
Then you can access to source codes with Suite.
I will refund your question credit.
Hi @Tony_Albutt,
This is not an expected usage of the chat module. I can't help you with that.
We've a Real-time Notification System on our roadmap, though release date is not set.
Hi @jkrause
I've followed the commands below and didn't see any error.
abp new Acme.BookStore -t app-pro
abp add-module Acme.Abp.Crm -t module-pro --new
Actually error with the package referencing is probably the result of the previous error (Could not find a class derived from AbpModule in the project '<path-to-project>/<project-name>.csproj').
Which project that AbpModule couldn't be found in? web, application, domain etc? ('<path-to-project>/<project-name>.csproj')
Hi @zalak,
if done by abp-input using directly DTO it isn't happening. Instead it only shows a normal input field of type text.
What is the html output of the field if done by abp-input using directly DTO? Can you share it?
Hi,
The problem you encounter is unrelated to our product.
I created a project (v4.4.3) and created-deleted-recreated a user with same username & email. I didn't get any exception.
Have you made any changes related with soft deletion in your project?