-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCountries.cs
More file actions
44 lines (38 loc) · 1 KB
/
Copy pathCountries.cs
File metadata and controls
44 lines (38 loc) · 1 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AtomFormat
{
public enum Countries
{
AUSTRALIA,
BRITAIN,
CANADA,
CHINA,
FRANCE,
FRENCH_CANADIAN,
JAPAN,
RUSSIA,
SINGAPORE,
SINGAPORE_SIMPLIFIED,
USA,
}
public static class Mapping
{
internal static Dictionary<Countries, string> currencyMap = new Dictionary<Countries, string>()
{
{Countries.AUSTRALIA, "de-AT"},
{Countries.BRITAIN, "br, EN"},
{Countries.CANADA, "en-CA"},
{Countries.CHINA, "zh-CN"},
{Countries.FRANCE, "fr-FR"},
{Countries.FRENCH_CANADIAN, "fr-CA"},
{Countries.RUSSIA, "ru-RU"},
{Countries.SINGAPORE, "en-SG"},
{Countries.SINGAPORE_SIMPLIFIED, "zh-SG"},
{Countries.JAPAN, "ja-JP"},
{Countries.USA, "us-US"}
};
}
}