Activities of "drpdev2"

@maliming: Could you guide step by step to do it? I cannot find the package: Volo.Abp.Account.Pro.Localization.AccountResource What packages should we install? and how to fix this configure?

ABP Framework version: v2.9.0 UI type: Angular 9 Identity Server Seperated (Angular): yes

Thanks @mailiming.

I found the package name. I implemented the localizationfor AccountResource in ApplicationContract layer as the following. It works well.

public class PortalApplicationContractsModule : AbpModule
    {
        public override void ConfigureServices(ServiceConfigurationContext context)
        {
            Configure<AbpLocalizationOptions>(options =>
            {
                options.Resources.Get<AccountResource>().AddVirtualJson("/Localization/Account");
            });

            base.ConfigureServices(context);
        }
    }
Showing 31 to 32 of 32 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on December 05, 2024, 12:19