using System.Collections.Generic;
using Abp.Localization.Sources;
namespace Abp.Localization
{
///
/// This interface is used to manage localization system.
///
public interface ILocalizationManager
{
///
/// Gets a localization source with name.
///
/// Unique name of the localization source
/// The localization source
ILocalizationSource GetSource(string name);
///
/// Gets all registered localization sources.
///
/// List of sources
IReadOnlyList GetAllSources();
}
}