-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathsites.js
More file actions
120 lines (120 loc) · 3.39 KB
/
sites.js
File metadata and controls
120 lines (120 loc) · 3.39 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
* Copyright (c) 2021, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
// Provide the sites for your app. Each site includes site id, and its localization configuration.
// You can also provide alias for your locale. They will be used in place of your locale id when generating paths across the app
module.exports = [
{
id: 'RefArch',
l10n: {
supportedCurrencies: ['USD'],
defaultCurrency: 'USD',
defaultLocale: 'en-US',
supportedLocales: [
{
id: 'en-US',
preferredCurrency: 'USD'
},
{
id: 'en-CA',
preferredCurrency: 'USD'
}
]
}
},
{
id: 'NTOManaged',
l10n: {
supportedCurrencies: ['USD'],
defaultCurrency: 'USD',
defaultLocale: 'en-US',
supportedLocales: [
{
id: 'en-US',
preferredCurrency: 'USD'
},
{
id: 'en-CA',
preferredCurrency: 'USD'
}
]
}
},
{
id: 'RefArchGlobal',
l10n: {
supportedCurrencies: ['GBP', 'EUR', 'CNY', 'JPY'],
defaultCurrency: 'GBP',
supportedLocales: [
{
id: 'da-DK',
preferredCurrency: 'EUR'
},
{
id: 'de-DE',
preferredCurrency: 'EUR'
},
{
id: 'en-GB',
preferredCurrency: 'GBP'
},
{
id: 'es-MX',
preferredCurrency: 'MXN'
},
{
id: 'fi-FI',
preferredCurrency: 'EUR'
},
{
id: 'fr-FR',
preferredCurrency: 'EUR'
},
{
id: 'it-IT',
preferredCurrency: 'EUR'
},
{
id: 'ja-JP',
preferredCurrency: 'JPY'
},
{
id: 'ko-KR',
preferredCurrency: 'KRW'
},
{
id: 'nl-NL',
preferredCurrency: 'EUR'
},
{
id: 'no-NO',
preferredCurrency: 'EUR'
},
{
id: 'pl-PL',
preferredCurrency: 'EUR'
},
{
id: 'pt-BR',
preferredCurrency: 'BRL'
},
{
id: 'sv-SE',
preferredCurrency: 'EUR'
},
{
id: 'zh-CN',
preferredCurrency: 'CNY'
},
{
id: 'zh-TW',
preferredCurrency: 'TWD'
}
],
defaultLocale: 'en-GB'
}
}
]