Merge branch 'rel-7.0' into 7.0-resetting-features

pull/15524/head
maliming 3 years ago
commit a667310a25
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4

@ -26,6 +26,11 @@ public class AbpApplicationLocalizationAppService :
public async Task<ApplicationLocalizationDto> GetAsync(ApplicationLocalizationRequestDto input)
{
if (!CultureHelper.IsValidCultureCode(input.CultureName))
{
throw new AbpException("The selected culture is not valid! Make sure you enter a valid culture name.");
}
using (CultureHelper.Use(input.CultureName))
{
var resources = LocalizationOptions

Loading…
Cancel
Save