mirror of https://github.com/abpframework/abp.git
4 changed files with 15 additions and 12 deletions
@ -0,0 +1,12 @@ |
|||
using System.Collections.Generic; |
|||
using Microsoft.Extensions.Localization; |
|||
|
|||
namespace Volo.Abp.Localization; |
|||
|
|||
public interface IAbpStringLocalizer : IStringLocalizer |
|||
{ |
|||
IEnumerable<LocalizedString> GetAllStrings( |
|||
bool includeParentCultures, |
|||
bool includeBaseLocalizers |
|||
); |
|||
} |
|||
@ -1,9 +0,0 @@ |
|||
using System.Collections.Generic; |
|||
using Microsoft.Extensions.Localization; |
|||
|
|||
namespace Volo.Abp.Localization; |
|||
|
|||
public interface IStringLocalizerSupportsInheritance |
|||
{ |
|||
IEnumerable<LocalizedString> GetAllStrings(bool includeParentCultures, bool includeBaseLocalizers); |
|||
} |
|||
Loading…
Reference in new issue