using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Globalization
{
    /// 
    /// Interface ILocalizationManager.
    /// 
    public interface ILocalizationManager
    {
        /// 
        /// Gets the cultures.
        /// 
        /// .
        IEnumerable GetCultures();
        /// 
        /// Gets the countries.
        /// 
        /// .
        IEnumerable GetCountries();
        /// 
        /// Gets the parental ratings.
        /// 
        /// .
        IEnumerable GetParentalRatings();
        /// 
        /// Gets the rating level.
        /// 
        /// The rating.
        /// The optional two letter ISO language string.
        ///  or null.
        int? GetRatingLevel(string rating, string? countryCode = null);
        /// 
        /// Gets the localized string.
        /// 
        /// The phrase.
        /// The culture.
        /// .
        string GetLocalizedString(string phrase, string culture);
        /// 
        /// Gets the localized string.
        /// 
        /// The phrase.
        /// System.String.
        string GetLocalizedString(string phrase);
        /// 
        /// Gets the localization options.
        /// 
        /// .
        IEnumerable GetLocalizationOptions();
        /// 
        /// Returns the correct  for the given language.
        /// 
        /// The language.
        /// The correct  for the given language.
        CultureDto? FindLanguageInfo(string language);
    }
}