@shopify/cli-hydrogen 3.27.0 → 4.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/hydrogen/build.js +89 -0
- package/dist/commands/hydrogen/dev.js +116 -0
- package/dist/commands/hydrogen/init.js +42 -0
- package/dist/commands/hydrogen/preview.js +34 -0
- package/dist/hooks/init.js +21 -0
- package/dist/templates/demo-store/.editorconfig +8 -0
- package/dist/templates/demo-store/.eslintignore +4 -0
- package/dist/templates/demo-store/.eslintrc.js +16 -0
- package/dist/templates/demo-store/.graphqlrc.yml +1 -0
- package/dist/templates/demo-store/.prettierignore +2 -0
- package/dist/templates/demo-store/.turbo/turbo-build.log +13 -0
- package/dist/templates/demo-store/app/components/AccountAddressBook.tsx +97 -0
- package/dist/templates/demo-store/app/components/AccountDetails.tsx +41 -0
- package/dist/templates/demo-store/app/components/AddToCartButton.tsx +42 -0
- package/dist/templates/demo-store/app/components/Breadcrumbs.tsx +36 -0
- package/dist/templates/demo-store/app/components/Button.tsx +56 -0
- package/dist/templates/demo-store/app/components/Cart.tsx +431 -0
- package/dist/templates/demo-store/app/components/CartLoading.tsx +50 -0
- package/dist/templates/demo-store/app/components/CountrySelector.tsx +180 -0
- package/dist/templates/demo-store/app/components/Drawer.tsx +115 -0
- package/dist/templates/demo-store/app/components/FeaturedCollections.tsx +54 -0
- package/dist/templates/demo-store/app/components/FeaturedProducts.tsx +116 -0
- package/dist/templates/demo-store/app/components/FeaturedSection.tsx +39 -0
- package/dist/templates/demo-store/app/components/GenericError.tsx +58 -0
- package/dist/templates/demo-store/app/components/Grid.tsx +44 -0
- package/dist/templates/demo-store/app/components/Hero.tsx +136 -0
- package/dist/templates/demo-store/app/components/Icon.tsx +253 -0
- package/dist/templates/demo-store/app/components/Input.tsx +24 -0
- package/dist/templates/demo-store/app/components/Layout.tsx +492 -0
- package/dist/templates/demo-store/app/components/Link.tsx +46 -0
- package/dist/templates/demo-store/app/components/Modal.tsx +46 -0
- package/dist/templates/demo-store/app/components/NotFound.tsx +22 -0
- package/dist/templates/demo-store/app/components/OrderCard.tsx +85 -0
- package/dist/templates/demo-store/app/components/Pagination.tsx +277 -0
- package/dist/templates/demo-store/app/components/ProductCard.tsx +146 -0
- package/dist/templates/demo-store/app/components/ProductGallery.tsx +114 -0
- package/dist/templates/demo-store/app/components/ProductGrid.tsx +93 -0
- package/dist/templates/demo-store/app/components/ProductSwimlane.tsx +30 -0
- package/dist/templates/demo-store/app/components/Skeleton.tsx +24 -0
- package/dist/templates/demo-store/app/components/SortFilter.tsx +411 -0
- package/dist/templates/demo-store/app/components/Text.tsx +192 -0
- package/dist/templates/demo-store/app/components/index.ts +28 -0
- package/dist/templates/demo-store/app/data/countries.ts +194 -0
- package/dist/templates/demo-store/app/data/index.ts +1037 -0
- package/dist/templates/demo-store/app/entry.client.tsx +4 -0
- package/dist/templates/demo-store/app/entry.server.tsx +26 -0
- package/dist/templates/demo-store/app/hooks/useCartFetchers.tsx +14 -0
- package/dist/templates/demo-store/app/hooks/useIsHydrated.tsx +12 -0
- package/dist/templates/demo-store/app/lib/const.ts +10 -0
- package/dist/templates/demo-store/app/lib/placeholders.ts +242 -0
- package/dist/templates/demo-store/app/lib/seo/common.tsx +324 -0
- package/dist/templates/demo-store/app/lib/seo/debugger.tsx +175 -0
- package/dist/templates/demo-store/app/lib/seo/image.tsx +32 -0
- package/dist/templates/demo-store/app/lib/seo/index.ts +4 -0
- package/dist/templates/demo-store/app/lib/seo/seo.tsx +24 -0
- package/dist/templates/demo-store/app/lib/seo/types.ts +70 -0
- package/dist/templates/demo-store/app/lib/session.server.ts +57 -0
- package/dist/templates/demo-store/app/lib/type.ts +21 -0
- package/dist/templates/demo-store/app/lib/utils.ts +310 -0
- package/dist/templates/demo-store/app/root.tsx +282 -0
- package/dist/templates/demo-store/app/routes/$.tsx +7 -0
- package/dist/templates/demo-store/app/routes/$lang/$.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/[robots.txt].tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/[sitemap.xml].tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/account/__private/address/$id.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/account/__private/edit.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/account/__private/logout.ts +1 -0
- package/dist/templates/demo-store/app/routes/$lang/account/__private/orders.$id.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/account/__public/activate.$id.$activationToken.tsx +6 -0
- package/dist/templates/demo-store/app/routes/$lang/account/__public/login.tsx +7 -0
- package/dist/templates/demo-store/app/routes/$lang/account/__public/recover.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/account/__public/register.tsx +6 -0
- package/dist/templates/demo-store/app/routes/$lang/account/__public/reset.$id.$resetToken.tsx +5 -0
- package/dist/templates/demo-store/app/routes/$lang/account.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/api/countries.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/api/products.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/cart.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/collections/$collectionHandle.tsx +6 -0
- package/dist/templates/demo-store/app/routes/$lang/collections/all.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/collections/index.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/featured-products.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/index.tsx +7 -0
- package/dist/templates/demo-store/app/routes/$lang/journal/$journalHandle.tsx +7 -0
- package/dist/templates/demo-store/app/routes/$lang/journal/index.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/og-image.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/pages/$pageHandle.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/policies/$policyHandle.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/policies/index.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/products/$productHandle.tsx +6 -0
- package/dist/templates/demo-store/app/routes/$lang/products/index.tsx +1 -0
- package/dist/templates/demo-store/app/routes/$lang/search.tsx +6 -0
- package/dist/templates/demo-store/app/routes/[robots.txt].tsx +40 -0
- package/dist/templates/demo-store/app/routes/[sitemap.xml].tsx +198 -0
- package/dist/templates/demo-store/app/routes/account/__private/address/$id.tsx +320 -0
- package/dist/templates/demo-store/app/routes/account/__private/edit.tsx +273 -0
- package/dist/templates/demo-store/app/routes/account/__private/logout.ts +29 -0
- package/dist/templates/demo-store/app/routes/account/__private/orders.$id.tsx +324 -0
- package/dist/templates/demo-store/app/routes/account/__public/activate.$id.$activationToken.tsx +218 -0
- package/dist/templates/demo-store/app/routes/account/__public/login.tsx +197 -0
- package/dist/templates/demo-store/app/routes/account/__public/recover.tsx +144 -0
- package/dist/templates/demo-store/app/routes/account/__public/register.tsx +184 -0
- package/dist/templates/demo-store/app/routes/account/__public/reset.$id.$resetToken.tsx +214 -0
- package/dist/templates/demo-store/app/routes/account.tsx +191 -0
- package/dist/templates/demo-store/app/routes/api/countries.tsx +22 -0
- package/dist/templates/demo-store/app/routes/api/products.tsx +116 -0
- package/dist/templates/demo-store/app/routes/cart.tsx +498 -0
- package/dist/templates/demo-store/app/routes/collections/$collectionHandle.tsx +308 -0
- package/dist/templates/demo-store/app/routes/collections/all.tsx +5 -0
- package/dist/templates/demo-store/app/routes/collections/index.tsx +195 -0
- package/dist/templates/demo-store/app/routes/discounts.$code.tsx +60 -0
- package/dist/templates/demo-store/app/routes/featured-products.tsx +58 -0
- package/dist/templates/demo-store/app/routes/index.tsx +254 -0
- package/dist/templates/demo-store/app/routes/journal/$journalHandle.tsx +147 -0
- package/dist/templates/demo-store/app/routes/journal/index.tsx +150 -0
- package/dist/templates/demo-store/app/routes/og-image.tsx +19 -0
- package/dist/templates/demo-store/app/routes/pages/$pageHandle.tsx +82 -0
- package/dist/templates/demo-store/app/routes/policies/$policyHandle.tsx +117 -0
- package/dist/templates/demo-store/app/routes/policies/index.tsx +104 -0
- package/dist/templates/demo-store/app/routes/products/$productHandle.tsx +561 -0
- package/dist/templates/demo-store/app/routes/products/index.tsx +155 -0
- package/dist/templates/demo-store/app/routes/search.tsx +205 -0
- package/dist/templates/demo-store/app/styles/custom-font.css +13 -0
- package/dist/templates/demo-store/package-lock.json +25515 -0
- package/dist/templates/demo-store/package.json +67 -0
- package/dist/templates/demo-store/playwright.config.ts +109 -0
- package/dist/templates/demo-store/postcss.config.js +10 -0
- package/dist/templates/demo-store/public/favicon.svg +28 -0
- package/dist/templates/demo-store/public/fonts/IBMPlexSerif-Text.woff2 +0 -0
- package/dist/templates/demo-store/public/fonts/IBMPlexSerif-TextItalic.woff2 +0 -0
- package/dist/templates/demo-store/remix.config.js +12 -0
- package/dist/templates/demo-store/remix.env.d.ts +34 -0
- package/dist/templates/demo-store/remix.init/index.ts +15 -0
- package/dist/templates/demo-store/remix.init/package.json +7 -0
- package/dist/templates/demo-store/server.ts +87 -0
- package/dist/templates/demo-store/styles/app.css +182 -0
- package/dist/templates/demo-store/tailwind.config.js +70 -0
- package/dist/templates/demo-store/tests/cart.test.ts +70 -0
- package/dist/templates/demo-store/tests/seo.test.ts +36 -0
- package/dist/templates/demo-store/tests/utils.ts +100 -0
- package/dist/templates/demo-store/tsconfig.json +26 -0
- package/dist/templates/hello-world/.eslintignore +4 -0
- package/dist/templates/hello-world/.eslintrc.js +6 -0
- package/dist/templates/hello-world/.graphqlrc.yml +1 -0
- package/dist/templates/hello-world/.turbo/turbo-build.log +9 -0
- package/dist/templates/hello-world/README.md +20 -0
- package/dist/templates/hello-world/app/components/Layout.tsx +15 -0
- package/dist/templates/hello-world/app/components/index.ts +1 -0
- package/dist/templates/hello-world/app/entry.client.tsx +4 -0
- package/dist/templates/hello-world/app/entry.server.tsx +21 -0
- package/dist/templates/hello-world/app/root.tsx +212 -0
- package/dist/templates/hello-world/app/routes/index.tsx +7 -0
- package/dist/templates/hello-world/app/styles/app.css +38 -0
- package/dist/templates/hello-world/package-lock.json +27641 -0
- package/dist/templates/hello-world/package.json +41 -0
- package/dist/templates/hello-world/public/favicon.svg +28 -0
- package/dist/templates/hello-world/remix.env.d.ts +29 -0
- package/dist/templates/hello-world/server.ts +127 -0
- package/dist/templates/hello-world/tsconfig.json +25 -0
- package/dist/utils/config.js +81 -0
- package/dist/utils/flags.js +15 -0
- package/dist/utils/log.js +20 -0
- package/dist/utils/mini-oxygen.js +70 -0
- package/package.json +27 -64
- package/tmp-create-app.mjs +29 -0
- package/LICENSE +0 -8
- package/README.md +0 -63
- package/dist/cli/commands/hydrogen/add/eslint.d.ts +0 -11
- package/dist/cli/commands/hydrogen/add/eslint.js +0 -26
- package/dist/cli/commands/hydrogen/add/eslint.js.map +0 -1
- package/dist/cli/commands/hydrogen/add/tailwind.d.ts +0 -11
- package/dist/cli/commands/hydrogen/add/tailwind.js +0 -26
- package/dist/cli/commands/hydrogen/add/tailwind.js.map +0 -1
- package/dist/cli/commands/hydrogen/build.d.ts +0 -14
- package/dist/cli/commands/hydrogen/build.js +0 -49
- package/dist/cli/commands/hydrogen/build.js.map +0 -1
- package/dist/cli/commands/hydrogen/deploy.d.ts +0 -19
- package/dist/cli/commands/hydrogen/deploy.js +0 -58
- package/dist/cli/commands/hydrogen/deploy.js.map +0 -1
- package/dist/cli/commands/hydrogen/dev.d.ts +0 -13
- package/dist/cli/commands/hydrogen/dev.js +0 -31
- package/dist/cli/commands/hydrogen/dev.js.map +0 -1
- package/dist/cli/commands/hydrogen/info.d.ts +0 -12
- package/dist/cli/commands/hydrogen/info.js +0 -28
- package/dist/cli/commands/hydrogen/info.js.map +0 -1
- package/dist/cli/commands/hydrogen/preview.d.ts +0 -13
- package/dist/cli/commands/hydrogen/preview.js +0 -46
- package/dist/cli/commands/hydrogen/preview.js.map +0 -1
- package/dist/cli/constants.d.ts +0 -15
- package/dist/cli/constants.js +0 -16
- package/dist/cli/constants.js.map +0 -1
- package/dist/cli/flags.d.ts +0 -4
- package/dist/cli/flags.js +0 -16
- package/dist/cli/flags.js.map +0 -1
- package/dist/cli/models/hydrogen.d.ts +0 -22
- package/dist/cli/models/hydrogen.js +0 -82
- package/dist/cli/models/hydrogen.js.map +0 -1
- package/dist/cli/prompts/git-init.d.ts +0 -1
- package/dist/cli/prompts/git-init.js +0 -16
- package/dist/cli/prompts/git-init.js.map +0 -1
- package/dist/cli/services/build/check-lockfile.d.ts +0 -3
- package/dist/cli/services/build/check-lockfile.js +0 -80
- package/dist/cli/services/build/check-lockfile.js.map +0 -1
- package/dist/cli/services/build.d.ts +0 -14
- package/dist/cli/services/build.js +0 -44
- package/dist/cli/services/build.js.map +0 -1
- package/dist/cli/services/deploy/config.d.ts +0 -4
- package/dist/cli/services/deploy/config.js +0 -49
- package/dist/cli/services/deploy/config.js.map +0 -1
- package/dist/cli/services/deploy/error.d.ts +0 -4
- package/dist/cli/services/deploy/error.js +0 -11
- package/dist/cli/services/deploy/error.js.map +0 -1
- package/dist/cli/services/deploy/graphql/create_deployment.d.ts +0 -10
- package/dist/cli/services/deploy/graphql/create_deployment.js +0 -15
- package/dist/cli/services/deploy/graphql/create_deployment.js.map +0 -1
- package/dist/cli/services/deploy/graphql/upload_deployment.d.ts +0 -1
- package/dist/cli/services/deploy/graphql/upload_deployment.js +0 -16
- package/dist/cli/services/deploy/graphql/upload_deployment.js.map +0 -1
- package/dist/cli/services/deploy/types.d.ts +0 -37
- package/dist/cli/services/deploy/types.js +0 -2
- package/dist/cli/services/deploy/types.js.map +0 -1
- package/dist/cli/services/deploy/upload.d.ts +0 -5
- package/dist/cli/services/deploy/upload.js +0 -81
- package/dist/cli/services/deploy/upload.js.map +0 -1
- package/dist/cli/services/deploy.d.ts +0 -2
- package/dist/cli/services/deploy.js +0 -103
- package/dist/cli/services/deploy.js.map +0 -1
- package/dist/cli/services/dev/check-version.d.ts +0 -1
- package/dist/cli/services/dev/check-version.js +0 -30
- package/dist/cli/services/dev/check-version.js.map +0 -1
- package/dist/cli/services/dev.d.ts +0 -10
- package/dist/cli/services/dev.js +0 -36
- package/dist/cli/services/dev.js.map +0 -1
- package/dist/cli/services/eslint.d.ts +0 -8
- package/dist/cli/services/eslint.js +0 -74
- package/dist/cli/services/eslint.js.map +0 -1
- package/dist/cli/services/info.d.ts +0 -7
- package/dist/cli/services/info.js +0 -131
- package/dist/cli/services/info.js.map +0 -1
- package/dist/cli/services/preview.d.ts +0 -12
- package/dist/cli/services/preview.js +0 -63
- package/dist/cli/services/preview.js.map +0 -1
- package/dist/cli/services/tailwind.d.ts +0 -9
- package/dist/cli/services/tailwind.js +0 -103
- package/dist/cli/services/tailwind.js.map +0 -1
- package/dist/cli/utilities/load-config.d.ts +0 -5
- package/dist/cli/utilities/load-config.js +0 -6
- package/dist/cli/utilities/load-config.js.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/oclif.manifest.json +0 -1
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
import {Localizations} from '~/lib/type';
|
|
2
|
+
|
|
3
|
+
export const countries: Localizations = {
|
|
4
|
+
default: {
|
|
5
|
+
label: 'United States (USD $)',
|
|
6
|
+
language: 'EN',
|
|
7
|
+
country: 'US',
|
|
8
|
+
},
|
|
9
|
+
'/en-ad': {
|
|
10
|
+
label: 'Andorra (EUR €)',
|
|
11
|
+
language: 'EN',
|
|
12
|
+
country: 'AD',
|
|
13
|
+
},
|
|
14
|
+
'/en-at': {
|
|
15
|
+
label: 'Austria (EUR €)',
|
|
16
|
+
language: 'EN',
|
|
17
|
+
country: 'AT',
|
|
18
|
+
},
|
|
19
|
+
'/en-au': {
|
|
20
|
+
label: 'Australia (AUD $)',
|
|
21
|
+
language: 'EN',
|
|
22
|
+
country: 'AU',
|
|
23
|
+
},
|
|
24
|
+
'/en-be': {
|
|
25
|
+
label: 'Belgium (EUR €)',
|
|
26
|
+
language: 'EN',
|
|
27
|
+
country: 'BE',
|
|
28
|
+
},
|
|
29
|
+
'/en-ca': {
|
|
30
|
+
label: 'Canada (CAD $)',
|
|
31
|
+
language: 'EN',
|
|
32
|
+
country: 'CA',
|
|
33
|
+
},
|
|
34
|
+
'/en-cn': {
|
|
35
|
+
label: 'China (CNY ¥)',
|
|
36
|
+
language: 'EN',
|
|
37
|
+
country: 'CN',
|
|
38
|
+
},
|
|
39
|
+
'/en-cy': {
|
|
40
|
+
label: 'Cyprus (EUR €)',
|
|
41
|
+
language: 'EN',
|
|
42
|
+
country: 'CY',
|
|
43
|
+
},
|
|
44
|
+
'/en-de': {
|
|
45
|
+
label: 'Germany (EUR €)',
|
|
46
|
+
language: 'EN',
|
|
47
|
+
country: 'DE',
|
|
48
|
+
},
|
|
49
|
+
'/en-ee': {
|
|
50
|
+
label: 'Estonia (EUR €)',
|
|
51
|
+
language: 'EN',
|
|
52
|
+
country: 'EE',
|
|
53
|
+
},
|
|
54
|
+
'/en-es': {
|
|
55
|
+
label: 'Spain (EUR €)',
|
|
56
|
+
language: 'EN',
|
|
57
|
+
country: 'ES',
|
|
58
|
+
},
|
|
59
|
+
'/en-fi': {
|
|
60
|
+
label: 'Finland (EUR €)',
|
|
61
|
+
language: 'EN',
|
|
62
|
+
country: 'FI',
|
|
63
|
+
},
|
|
64
|
+
'/en-fr': {
|
|
65
|
+
label: 'France (EUR €)',
|
|
66
|
+
language: 'EN',
|
|
67
|
+
country: 'FR',
|
|
68
|
+
},
|
|
69
|
+
'/en-gb': {
|
|
70
|
+
label: 'United Kingdom (GBP £)',
|
|
71
|
+
language: 'EN',
|
|
72
|
+
country: 'GB',
|
|
73
|
+
},
|
|
74
|
+
'/en-gr': {
|
|
75
|
+
label: 'Greece (EUR €)',
|
|
76
|
+
language: 'EN',
|
|
77
|
+
country: 'GR',
|
|
78
|
+
},
|
|
79
|
+
'/en-id': {
|
|
80
|
+
label: 'Indonesia (IDR Rp)',
|
|
81
|
+
language: 'EN',
|
|
82
|
+
country: 'ID',
|
|
83
|
+
},
|
|
84
|
+
'/en-ie': {
|
|
85
|
+
label: 'Ireland (EUR €)',
|
|
86
|
+
language: 'EN',
|
|
87
|
+
country: 'IE',
|
|
88
|
+
},
|
|
89
|
+
'/en-in': {
|
|
90
|
+
label: 'India (INR ₹)',
|
|
91
|
+
language: 'EN',
|
|
92
|
+
country: 'IN',
|
|
93
|
+
},
|
|
94
|
+
'/en-it': {
|
|
95
|
+
label: 'Italy (EUR €)',
|
|
96
|
+
language: 'EN',
|
|
97
|
+
country: 'IT',
|
|
98
|
+
},
|
|
99
|
+
'/en-jp': {
|
|
100
|
+
label: 'Japan (JPY ¥)',
|
|
101
|
+
language: 'EN',
|
|
102
|
+
country: 'JP',
|
|
103
|
+
},
|
|
104
|
+
'/en-kr': {
|
|
105
|
+
label: 'South Korea (KRW ₩)',
|
|
106
|
+
language: 'EN',
|
|
107
|
+
country: 'KR',
|
|
108
|
+
},
|
|
109
|
+
'/en-lt': {
|
|
110
|
+
label: 'Lithuania (EUR €)',
|
|
111
|
+
language: 'EN',
|
|
112
|
+
country: 'LT',
|
|
113
|
+
},
|
|
114
|
+
'/en-lu': {
|
|
115
|
+
label: 'Luxembourg (EUR €)',
|
|
116
|
+
language: 'EN',
|
|
117
|
+
country: 'LU',
|
|
118
|
+
},
|
|
119
|
+
'/en-lv': {
|
|
120
|
+
label: 'Latvia (EUR €)',
|
|
121
|
+
language: 'EN',
|
|
122
|
+
country: 'LV',
|
|
123
|
+
},
|
|
124
|
+
'/en-mc': {
|
|
125
|
+
label: 'Monaco (EUR €)',
|
|
126
|
+
language: 'EN',
|
|
127
|
+
country: 'MC',
|
|
128
|
+
},
|
|
129
|
+
'/en-me': {
|
|
130
|
+
label: 'Montenegro (EUR €)',
|
|
131
|
+
language: 'EN',
|
|
132
|
+
country: 'ME',
|
|
133
|
+
},
|
|
134
|
+
'/en-mt': {
|
|
135
|
+
label: 'Malta (EUR €)',
|
|
136
|
+
language: 'EN',
|
|
137
|
+
country: 'MT',
|
|
138
|
+
},
|
|
139
|
+
'/en-nl': {
|
|
140
|
+
label: 'Netherlands (EUR €)',
|
|
141
|
+
language: 'EN',
|
|
142
|
+
country: 'NL',
|
|
143
|
+
},
|
|
144
|
+
'/en-nz': {
|
|
145
|
+
label: 'New Zealand (NZD $)',
|
|
146
|
+
language: 'EN',
|
|
147
|
+
country: 'NZ',
|
|
148
|
+
},
|
|
149
|
+
'/en-pt': {
|
|
150
|
+
label: 'Portugal (EUR €)',
|
|
151
|
+
language: 'EN',
|
|
152
|
+
country: 'PT',
|
|
153
|
+
},
|
|
154
|
+
'/en-sg': {
|
|
155
|
+
label: 'Singapore (SGD $)',
|
|
156
|
+
language: 'EN',
|
|
157
|
+
country: 'SG',
|
|
158
|
+
},
|
|
159
|
+
'/en-si': {
|
|
160
|
+
label: 'Slovenia (EUR €)',
|
|
161
|
+
language: 'EN',
|
|
162
|
+
country: 'SI',
|
|
163
|
+
},
|
|
164
|
+
'/en-sk': {
|
|
165
|
+
label: 'Slovakia (EUR €)',
|
|
166
|
+
language: 'EN',
|
|
167
|
+
country: 'SK',
|
|
168
|
+
},
|
|
169
|
+
'/en-sm': {
|
|
170
|
+
label: 'San Marino (EUR €)',
|
|
171
|
+
language: 'EN',
|
|
172
|
+
country: 'SM',
|
|
173
|
+
},
|
|
174
|
+
'/en-th': {
|
|
175
|
+
label: 'Thailand (THB ฿)',
|
|
176
|
+
language: 'EN',
|
|
177
|
+
country: 'TH',
|
|
178
|
+
},
|
|
179
|
+
'/en-va': {
|
|
180
|
+
label: 'Vatican City (EUR €)',
|
|
181
|
+
language: 'EN',
|
|
182
|
+
country: 'VA',
|
|
183
|
+
},
|
|
184
|
+
'/en-vn': {
|
|
185
|
+
label: 'Vietnam (VND ₫)',
|
|
186
|
+
language: 'EN',
|
|
187
|
+
country: 'VN',
|
|
188
|
+
},
|
|
189
|
+
'/en-xk': {
|
|
190
|
+
label: 'Kosovo (EUR €)',
|
|
191
|
+
language: 'EN',
|
|
192
|
+
country: 'XK',
|
|
193
|
+
},
|
|
194
|
+
};
|