0
korolei created
- ABP Framework version: v4.4.2
- UI type: Blazor
- DB provider: EF Core
Hi guys,
is it possible to use IStringLocalizer in DataSeedContributor, so I could convert LocalizableString into actual string from localization resource?
I'm using following method to get value, but StringLocalized doesn't have any items to get value:
private string DeLocalize(LocalizableString localizedString) { var l = _localizerFactory.Create(localizedString.ResourceType); return l[localizedString.Name]; }
Thanks