init
This commit is contained in:
17
Framework/Localization/ILocalizable.cs
Normal file
17
Framework/Localization/ILocalizable.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Globalization;
|
||||
|
||||
namespace Kreta.Framework.Localization
|
||||
{
|
||||
/// <summary>
|
||||
/// Önmagukat nyelvesíteni képes osztályok felülete. Lásd <see cref="Localizer"/>.
|
||||
/// </summary>
|
||||
public interface ILocalizable
|
||||
{
|
||||
/// <summary>
|
||||
/// Nyelvesíti az objektumot.
|
||||
/// </summary>
|
||||
/// <param name="cultureInfo">A nyelv</param>
|
||||
/// <returns>Az objektum nyelvesítve</returns>
|
||||
string Localize(CultureInfo cultureInfo);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user