From edbe28d9fc3091121b7e2323fe42d62a70c9e351 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 23 Oct 2016 22:45:23 -0400 Subject: move interface to model --- .../Localization/ILocalizationManager.cs | 55 ---------------------- 1 file changed, 55 deletions(-) delete mode 100644 MediaBrowser.Controller/Localization/ILocalizationManager.cs (limited to 'MediaBrowser.Controller/Localization/ILocalizationManager.cs') diff --git a/MediaBrowser.Controller/Localization/ILocalizationManager.cs b/MediaBrowser.Controller/Localization/ILocalizationManager.cs deleted file mode 100644 index 5742d235c..000000000 --- a/MediaBrowser.Controller/Localization/ILocalizationManager.cs +++ /dev/null @@ -1,55 +0,0 @@ -using MediaBrowser.Model.Entities; -using MediaBrowser.Model.Globalization; -using System.Collections.Generic; - -namespace MediaBrowser.Controller.Localization -{ - /// - /// Interface ILocalizationManager - /// - public interface ILocalizationManager - { - /// - /// Gets the cultures. - /// - /// IEnumerable{CultureDto}. - IEnumerable GetCultures(); - /// - /// Gets the countries. - /// - /// IEnumerable{CountryInfo}. - IEnumerable GetCountries(); - /// - /// Gets the parental ratings. - /// - /// IEnumerable{ParentalRating}. - IEnumerable GetParentalRatings(); - /// - /// Gets the rating level. - /// - /// The rating. - /// System.Int32. - int? GetRatingLevel(string rating); - - /// - /// Gets the localized string. - /// - /// The phrase. - /// The culture. - /// System.String. - string GetLocalizedString(string phrase, string culture); - - /// - /// Gets the localized string. - /// - /// The phrase. - /// System.String. - string GetLocalizedString(string phrase); - - /// - /// Gets the localization options. - /// - /// IEnumerable{LocalizatonOption}. - IEnumerable GetLocalizationOptions(); - } -} -- cgit v1.2.3