forked from iodes/GSharp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGTranslation.cs
53 lines (48 loc) · 1.18 KB
/
GTranslation.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using GSharp.Extension.Attributes;
using System.Globalization;
using System.Linq;
namespace GSharp.Extension
{
public class GTranslation
{
#region 속성
public Locale Locale
{
get
{
return _Locale;
}
}
private Locale _Locale;
public string FriendlyName
{
get
{
return _FriendlyName;
}
}
private string _FriendlyName;
#endregion
#region 생성자
public GTranslation(string friendlyName, Locale locale)
{
_Locale = locale;
_FriendlyName = friendlyName;
}
#endregion
}
public static class GTranslationSupport
{
public static GTranslation GetTranslation(GTranslation[] translations)
{
foreach (var translation in translations)
{
if (translation.Locale.ToString() == CultureInfo.CurrentUICulture.Name.ToUpper().Replace('-', '_'))
{
return translation;
}
}
return translations.First();
}
}
}