mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
887 B
32 lines
887 B
using System;
|
|
|
|
namespace DOM.Services
|
|
{
|
|
public static class LanguageParser
|
|
{
|
|
public const string RUS = "ru";
|
|
public const string ENG = "en";
|
|
|
|
/// <summary>
|
|
/// Detect language by abbreviation
|
|
/// </summary>
|
|
/// <param name="lang">Abbreviation</param>
|
|
/// <returns>Language</returns>
|
|
public static string Parse(string lang)
|
|
{
|
|
if (false == string.IsNullOrWhiteSpace(lang))
|
|
{
|
|
var key = lang.Trim().ToLowerInvariant();
|
|
if (key.IndexOf("ru", StringComparison.InvariantCulture) >= 0)
|
|
{
|
|
return RUS;
|
|
}
|
|
if (key.IndexOf("en", StringComparison.InvariantCulture) >= 0)
|
|
{
|
|
return ENG;
|
|
}
|
|
}
|
|
return RUS;
|
|
}
|
|
}
|
|
} |