@ticketmaster/tm-global-address 0.5.0 → 0.7.0
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/components/AddressCard/AddressCard.d.ts +5 -0
- package/dist/components/AddressCard/AddressCard.js +45 -46
- package/dist/components/AddressForm/AddressForm.d.ts +14 -2
- package/dist/components/AddressForm/AddressForm.js +204 -227
- package/dist/components/AddressList/AddressList.d.ts +7 -2
- package/dist/components/AddressList/AddressList.js +41 -37
- package/dist/components/PhoneField/PhoneField.d.ts +57 -0
- package/dist/components/PhoneField/PhoneField.js +119 -0
- package/dist/i18n/defaultLabels.d.ts +2 -0
- package/dist/i18n/defaultLabels.js +66 -0
- package/dist/i18n/index.d.ts +14 -0
- package/dist/i18n/index.js +45 -0
- package/dist/i18n/labelResolver.d.ts +24 -0
- package/dist/i18n/labelResolver.js +98 -0
- package/dist/i18n/locales/ar-sa.json.d.ts +159 -0
- package/dist/i18n/locales/ar-sa.json.js +163 -0
- package/dist/i18n/locales/ca-es.json.d.ts +159 -0
- package/dist/i18n/locales/ca-es.json.js +163 -0
- package/dist/i18n/locales/cs-cz.json.d.ts +159 -0
- package/dist/i18n/locales/cs-cz.json.js +163 -0
- package/dist/i18n/locales/da-dk.json.d.ts +159 -0
- package/dist/i18n/locales/da-dk.json.js +163 -0
- package/dist/i18n/locales/de-at.json.d.ts +159 -0
- package/dist/i18n/locales/de-at.json.js +163 -0
- package/dist/i18n/locales/de-ch.json.d.ts +159 -0
- package/dist/i18n/locales/de-ch.json.js +163 -0
- package/dist/i18n/locales/de-de.json.d.ts +159 -0
- package/dist/i18n/locales/de-de.json.js +163 -0
- package/dist/i18n/locales/en-au.json.d.ts +159 -0
- package/dist/i18n/locales/en-au.json.js +163 -0
- package/dist/i18n/locales/en-ca.json.d.ts +159 -0
- package/dist/i18n/locales/en-ca.json.js +163 -0
- package/dist/i18n/locales/en-gb.json.d.ts +159 -0
- package/dist/i18n/locales/en-gb.json.js +163 -0
- package/dist/i18n/locales/en-nz.json.d.ts +159 -0
- package/dist/i18n/locales/en-nz.json.js +163 -0
- package/dist/i18n/locales/en-us.json.d.ts +159 -0
- package/dist/i18n/locales/en-us.json.js +163 -0
- package/dist/i18n/locales/es-es.json.d.ts +159 -0
- package/dist/i18n/locales/es-es.json.js +163 -0
- package/dist/i18n/locales/es-mx.json.d.ts +159 -0
- package/dist/i18n/locales/es-mx.json.js +163 -0
- package/dist/i18n/locales/fi-fi.json.d.ts +159 -0
- package/dist/i18n/locales/fi-fi.json.js +163 -0
- package/dist/i18n/locales/fr-be.json.d.ts +159 -0
- package/dist/i18n/locales/fr-be.json.js +163 -0
- package/dist/i18n/locales/fr-ca.json.d.ts +159 -0
- package/dist/i18n/locales/fr-ca.json.js +163 -0
- package/dist/i18n/locales/fr-ch.json.d.ts +159 -0
- package/dist/i18n/locales/fr-ch.json.js +163 -0
- package/dist/i18n/locales/fr-fr.json.d.ts +159 -0
- package/dist/i18n/locales/fr-fr.json.js +163 -0
- package/dist/i18n/locales/it-ch.json.d.ts +159 -0
- package/dist/i18n/locales/it-ch.json.js +163 -0
- package/dist/i18n/locales/ja-jp.json.d.ts +159 -0
- package/dist/i18n/locales/ja-jp.json.js +163 -0
- package/dist/i18n/locales/nl-be.json.d.ts +159 -0
- package/dist/i18n/locales/nl-be.json.js +163 -0
- package/dist/i18n/locales/nl-nl.json.d.ts +159 -0
- package/dist/i18n/locales/nl-nl.json.js +163 -0
- package/dist/i18n/locales/no-no.json.d.ts +159 -0
- package/dist/i18n/locales/no-no.json.js +163 -0
- package/dist/i18n/locales/pl-pl.json.d.ts +159 -0
- package/dist/i18n/locales/pl-pl.json.js +163 -0
- package/dist/i18n/locales/sv-se.json.d.ts +159 -0
- package/dist/i18n/locales/sv-se.json.js +163 -0
- package/dist/i18n/types.d.ts +67 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +48 -38
- package/package.json +1 -1
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"form": {
|
|
3
|
+
"firstName": "Jméno",
|
|
4
|
+
"lastName": "Příjmení",
|
|
5
|
+
"address1": "Adresní řádek 1",
|
|
6
|
+
"address2": "Adresní řádek 2 (nepovinné)",
|
|
7
|
+
"city": "Město",
|
|
8
|
+
"postal": "PSČ",
|
|
9
|
+
"stateCode": "Stát / provincie",
|
|
10
|
+
"country": "Země",
|
|
11
|
+
"phoneNumber": "Telefonní číslo",
|
|
12
|
+
"dialCode": "Kód předvolby",
|
|
13
|
+
"defaultAddress": "Nastavte tuto kartu jako výchozí.",
|
|
14
|
+
"countryPlaceholder": "Please select",
|
|
15
|
+
"stateCodePlaceholder": "Vyberte stát nebo provincii",
|
|
16
|
+
"phoneNumberPlaceholder": "Zadejte své telefonní číslo",
|
|
17
|
+
"addressHeading": "Fakturační a doručovací adresa",
|
|
18
|
+
"addNewAddress": "Přidat novou adresu",
|
|
19
|
+
"confirm": "Potvrdit adresu",
|
|
20
|
+
"cancel": "Zrušit",
|
|
21
|
+
"editButton": "Upravit",
|
|
22
|
+
"deleteButton": "Smazat",
|
|
23
|
+
"defaultBadge": "Výchozí",
|
|
24
|
+
"makeDefault": "Nastavit jako výchozí",
|
|
25
|
+
"countrySelectPlaceholder": "Zvolte zemi"
|
|
26
|
+
},
|
|
27
|
+
"validation": {
|
|
28
|
+
"FIELD_REQUIRED": "{{field}} is required",
|
|
29
|
+
"FIELD_TOO_LONG": "Může obsahovat maximálně {{maxLength}} znaků",
|
|
30
|
+
"FIELD_TOO_SHORT": "Může obsahovat maximálně {{minLength}} znaků",
|
|
31
|
+
"FIELD_INVALID_FORMAT": "Please enter a valid {{field}}",
|
|
32
|
+
"FIELD_INVALID_CHARACTERS": "{{field}} contains invalid characters",
|
|
33
|
+
"POSTAL_CODE_MISMATCH": "Postal code does not match the selected {{stateLabel}}"
|
|
34
|
+
},
|
|
35
|
+
"country": {
|
|
36
|
+
"AT": {
|
|
37
|
+
"stateCode": "Stát",
|
|
38
|
+
"stateCodePlaceholder": "Vyberte stát",
|
|
39
|
+
"city": "Město",
|
|
40
|
+
"postal": "PSČ"
|
|
41
|
+
},
|
|
42
|
+
"AU": {
|
|
43
|
+
"stateCode": "Stát",
|
|
44
|
+
"stateCodePlaceholder": "Vyberte stát",
|
|
45
|
+
"city": "Předměstí",
|
|
46
|
+
"postal": "PSČ"
|
|
47
|
+
},
|
|
48
|
+
"CA": {
|
|
49
|
+
"stateCode": "Provincie",
|
|
50
|
+
"stateCodePlaceholder": "Vyberte provincii",
|
|
51
|
+
"city": "Město",
|
|
52
|
+
"postal": "PSČ"
|
|
53
|
+
},
|
|
54
|
+
"CZ": {
|
|
55
|
+
"stateCode": "Region",
|
|
56
|
+
"stateCodePlaceholder": "Vyberte region",
|
|
57
|
+
"city": "Město",
|
|
58
|
+
"postal": "PSČ"
|
|
59
|
+
},
|
|
60
|
+
"DE": {
|
|
61
|
+
"stateCode": "Stát",
|
|
62
|
+
"stateCodePlaceholder": "Vyberte stát",
|
|
63
|
+
"city": "Město",
|
|
64
|
+
"postal": "PSČ"
|
|
65
|
+
},
|
|
66
|
+
"DK": {
|
|
67
|
+
"stateCode": "Region",
|
|
68
|
+
"stateCodePlaceholder": "Vyberte region",
|
|
69
|
+
"city": "Město",
|
|
70
|
+
"postal": "PSČ"
|
|
71
|
+
},
|
|
72
|
+
"ES": {
|
|
73
|
+
"stateCode": "Stát",
|
|
74
|
+
"stateCodePlaceholder": "Vyberte stát",
|
|
75
|
+
"city": "Město",
|
|
76
|
+
"postal": "PSČ"
|
|
77
|
+
},
|
|
78
|
+
"FI": {
|
|
79
|
+
"stateCode": "Region",
|
|
80
|
+
"stateCodePlaceholder": "Vyberte region",
|
|
81
|
+
"city": "Město",
|
|
82
|
+
"postal": "PSČ"
|
|
83
|
+
},
|
|
84
|
+
"IE": {
|
|
85
|
+
"stateCode": "Země",
|
|
86
|
+
"stateCodePlaceholder": "Vyberte kraj",
|
|
87
|
+
"city": "Město",
|
|
88
|
+
"postal": "PSČ"
|
|
89
|
+
},
|
|
90
|
+
"MX": {
|
|
91
|
+
"stateCode": "Stát",
|
|
92
|
+
"stateCodePlaceholder": "Vyberte stát",
|
|
93
|
+
"city": "Město",
|
|
94
|
+
"postal": "PSČ"
|
|
95
|
+
},
|
|
96
|
+
"NL": {
|
|
97
|
+
"stateCode": "Provincie",
|
|
98
|
+
"stateCodePlaceholder": "Vyberte provincii",
|
|
99
|
+
"city": "Město",
|
|
100
|
+
"postal": "PSČ"
|
|
101
|
+
},
|
|
102
|
+
"NO": {
|
|
103
|
+
"stateCode": "Země",
|
|
104
|
+
"stateCodePlaceholder": "Vyberte kraj",
|
|
105
|
+
"city": "Město",
|
|
106
|
+
"postal": "PSČ"
|
|
107
|
+
},
|
|
108
|
+
"NZ": {
|
|
109
|
+
"stateCode": "Region",
|
|
110
|
+
"stateCodePlaceholder": "Vyberte region",
|
|
111
|
+
"city": "Město",
|
|
112
|
+
"postal": "PSČ"
|
|
113
|
+
},
|
|
114
|
+
"PL": {
|
|
115
|
+
"stateCode": "Region / Provincie",
|
|
116
|
+
"stateCodePlaceholder": "Vyberte region / provincii",
|
|
117
|
+
"city": "Město",
|
|
118
|
+
"postal": "PSČ"
|
|
119
|
+
},
|
|
120
|
+
"SE": {
|
|
121
|
+
"stateCode": "Region",
|
|
122
|
+
"stateCodePlaceholder": "Vyberte region",
|
|
123
|
+
"city": "Město",
|
|
124
|
+
"postal": "PSČ"
|
|
125
|
+
},
|
|
126
|
+
"US": {
|
|
127
|
+
"stateCode": "Stát",
|
|
128
|
+
"stateCodePlaceholder": "Vyberte stát",
|
|
129
|
+
"city": "Město",
|
|
130
|
+
"postal": "PSČ"
|
|
131
|
+
},
|
|
132
|
+
"ZA": {
|
|
133
|
+
"stateCode": "Stát",
|
|
134
|
+
"stateCodePlaceholder": "Vyberte stát",
|
|
135
|
+
"city": "Město",
|
|
136
|
+
"postal": "PSČ"
|
|
137
|
+
},
|
|
138
|
+
"GB": {
|
|
139
|
+
"postal": "Postcode"
|
|
140
|
+
},
|
|
141
|
+
"JP": {
|
|
142
|
+
"stateCode": "Prefecture",
|
|
143
|
+
"stateCodePlaceholder": "Select the prefecture"
|
|
144
|
+
},
|
|
145
|
+
"AE": {
|
|
146
|
+
"stateCode": "Emirate",
|
|
147
|
+
"stateCodePlaceholder": "Select the emirate"
|
|
148
|
+
},
|
|
149
|
+
"IN": {
|
|
150
|
+
"postal": "PIN Code"
|
|
151
|
+
},
|
|
152
|
+
"CH": {
|
|
153
|
+
"stateCode": "Canton",
|
|
154
|
+
"stateCodePlaceholder": "Select the canton"
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
export default _default;
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
firstName: "Jméno",
|
|
3
|
+
lastName: "Příjmení",
|
|
4
|
+
address1: "Adresní řádek 1",
|
|
5
|
+
address2: "Adresní řádek 2 (nepovinné)",
|
|
6
|
+
city: "Město",
|
|
7
|
+
postal: "PSČ",
|
|
8
|
+
stateCode: "Stát / provincie",
|
|
9
|
+
country: "Země",
|
|
10
|
+
phoneNumber: "Telefonní číslo",
|
|
11
|
+
dialCode: "Kód předvolby",
|
|
12
|
+
defaultAddress: "Nastavte tuto kartu jako výchozí.",
|
|
13
|
+
countryPlaceholder: "Please select",
|
|
14
|
+
stateCodePlaceholder: "Vyberte stát nebo provincii",
|
|
15
|
+
phoneNumberPlaceholder: "Zadejte své telefonní číslo",
|
|
16
|
+
addressHeading: "Fakturační a doručovací adresa",
|
|
17
|
+
addNewAddress: "Přidat novou adresu",
|
|
18
|
+
confirm: "Potvrdit adresu",
|
|
19
|
+
cancel: "Zrušit",
|
|
20
|
+
editButton: "Upravit",
|
|
21
|
+
deleteButton: "Smazat",
|
|
22
|
+
defaultBadge: "Výchozí",
|
|
23
|
+
makeDefault: "Nastavit jako výchozí",
|
|
24
|
+
countrySelectPlaceholder: "Zvolte zemi"
|
|
25
|
+
}, t = {
|
|
26
|
+
FIELD_REQUIRED: "{{field}} is required",
|
|
27
|
+
FIELD_TOO_LONG: "Může obsahovat maximálně {{maxLength}} znaků",
|
|
28
|
+
FIELD_TOO_SHORT: "Může obsahovat maximálně {{minLength}} znaků",
|
|
29
|
+
FIELD_INVALID_FORMAT: "Please enter a valid {{field}}",
|
|
30
|
+
FIELD_INVALID_CHARACTERS: "{{field}} contains invalid characters",
|
|
31
|
+
POSTAL_CODE_MISMATCH: "Postal code does not match the selected {{stateLabel}}"
|
|
32
|
+
}, o = {
|
|
33
|
+
AT: {
|
|
34
|
+
stateCode: "Stát",
|
|
35
|
+
stateCodePlaceholder: "Vyberte stát",
|
|
36
|
+
city: "Město",
|
|
37
|
+
postal: "PSČ"
|
|
38
|
+
},
|
|
39
|
+
AU: {
|
|
40
|
+
stateCode: "Stát",
|
|
41
|
+
stateCodePlaceholder: "Vyberte stát",
|
|
42
|
+
city: "Předměstí",
|
|
43
|
+
postal: "PSČ"
|
|
44
|
+
},
|
|
45
|
+
CA: {
|
|
46
|
+
stateCode: "Provincie",
|
|
47
|
+
stateCodePlaceholder: "Vyberte provincii",
|
|
48
|
+
city: "Město",
|
|
49
|
+
postal: "PSČ"
|
|
50
|
+
},
|
|
51
|
+
CZ: {
|
|
52
|
+
stateCode: "Region",
|
|
53
|
+
stateCodePlaceholder: "Vyberte region",
|
|
54
|
+
city: "Město",
|
|
55
|
+
postal: "PSČ"
|
|
56
|
+
},
|
|
57
|
+
DE: {
|
|
58
|
+
stateCode: "Stát",
|
|
59
|
+
stateCodePlaceholder: "Vyberte stát",
|
|
60
|
+
city: "Město",
|
|
61
|
+
postal: "PSČ"
|
|
62
|
+
},
|
|
63
|
+
DK: {
|
|
64
|
+
stateCode: "Region",
|
|
65
|
+
stateCodePlaceholder: "Vyberte region",
|
|
66
|
+
city: "Město",
|
|
67
|
+
postal: "PSČ"
|
|
68
|
+
},
|
|
69
|
+
ES: {
|
|
70
|
+
stateCode: "Stát",
|
|
71
|
+
stateCodePlaceholder: "Vyberte stát",
|
|
72
|
+
city: "Město",
|
|
73
|
+
postal: "PSČ"
|
|
74
|
+
},
|
|
75
|
+
FI: {
|
|
76
|
+
stateCode: "Region",
|
|
77
|
+
stateCodePlaceholder: "Vyberte region",
|
|
78
|
+
city: "Město",
|
|
79
|
+
postal: "PSČ"
|
|
80
|
+
},
|
|
81
|
+
IE: {
|
|
82
|
+
stateCode: "Země",
|
|
83
|
+
stateCodePlaceholder: "Vyberte kraj",
|
|
84
|
+
city: "Město",
|
|
85
|
+
postal: "PSČ"
|
|
86
|
+
},
|
|
87
|
+
MX: {
|
|
88
|
+
stateCode: "Stát",
|
|
89
|
+
stateCodePlaceholder: "Vyberte stát",
|
|
90
|
+
city: "Město",
|
|
91
|
+
postal: "PSČ"
|
|
92
|
+
},
|
|
93
|
+
NL: {
|
|
94
|
+
stateCode: "Provincie",
|
|
95
|
+
stateCodePlaceholder: "Vyberte provincii",
|
|
96
|
+
city: "Město",
|
|
97
|
+
postal: "PSČ"
|
|
98
|
+
},
|
|
99
|
+
NO: {
|
|
100
|
+
stateCode: "Země",
|
|
101
|
+
stateCodePlaceholder: "Vyberte kraj",
|
|
102
|
+
city: "Město",
|
|
103
|
+
postal: "PSČ"
|
|
104
|
+
},
|
|
105
|
+
NZ: {
|
|
106
|
+
stateCode: "Region",
|
|
107
|
+
stateCodePlaceholder: "Vyberte region",
|
|
108
|
+
city: "Město",
|
|
109
|
+
postal: "PSČ"
|
|
110
|
+
},
|
|
111
|
+
PL: {
|
|
112
|
+
stateCode: "Region / Provincie",
|
|
113
|
+
stateCodePlaceholder: "Vyberte region / provincii",
|
|
114
|
+
city: "Město",
|
|
115
|
+
postal: "PSČ"
|
|
116
|
+
},
|
|
117
|
+
SE: {
|
|
118
|
+
stateCode: "Region",
|
|
119
|
+
stateCodePlaceholder: "Vyberte region",
|
|
120
|
+
city: "Město",
|
|
121
|
+
postal: "PSČ"
|
|
122
|
+
},
|
|
123
|
+
US: {
|
|
124
|
+
stateCode: "Stát",
|
|
125
|
+
stateCodePlaceholder: "Vyberte stát",
|
|
126
|
+
city: "Město",
|
|
127
|
+
postal: "PSČ"
|
|
128
|
+
},
|
|
129
|
+
ZA: {
|
|
130
|
+
stateCode: "Stát",
|
|
131
|
+
stateCodePlaceholder: "Vyberte stát",
|
|
132
|
+
city: "Město",
|
|
133
|
+
postal: "PSČ"
|
|
134
|
+
},
|
|
135
|
+
GB: {
|
|
136
|
+
postal: "Postcode"
|
|
137
|
+
},
|
|
138
|
+
JP: {
|
|
139
|
+
stateCode: "Prefecture",
|
|
140
|
+
stateCodePlaceholder: "Select the prefecture"
|
|
141
|
+
},
|
|
142
|
+
AE: {
|
|
143
|
+
stateCode: "Emirate",
|
|
144
|
+
stateCodePlaceholder: "Select the emirate"
|
|
145
|
+
},
|
|
146
|
+
IN: {
|
|
147
|
+
postal: "PIN Code"
|
|
148
|
+
},
|
|
149
|
+
CH: {
|
|
150
|
+
stateCode: "Canton",
|
|
151
|
+
stateCodePlaceholder: "Select the canton"
|
|
152
|
+
}
|
|
153
|
+
}, a = {
|
|
154
|
+
form: e,
|
|
155
|
+
validation: t,
|
|
156
|
+
country: o
|
|
157
|
+
};
|
|
158
|
+
export {
|
|
159
|
+
o as country,
|
|
160
|
+
a as default,
|
|
161
|
+
e as form,
|
|
162
|
+
t as validation
|
|
163
|
+
};
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"form": {
|
|
3
|
+
"firstName": "Fornavn",
|
|
4
|
+
"lastName": "Efternavn",
|
|
5
|
+
"address1": "Adresselinje 1",
|
|
6
|
+
"address2": "Adresse linje 2",
|
|
7
|
+
"city": "By",
|
|
8
|
+
"postal": "Postnummer",
|
|
9
|
+
"stateCode": "Stat/Område",
|
|
10
|
+
"country": "Land",
|
|
11
|
+
"phoneNumber": "Telefonnummer (inkl. landekode, f.eks. \"+45\" for Danmark)",
|
|
12
|
+
"dialCode": "Telefonkode",
|
|
13
|
+
"defaultAddress": "Gør dette til mit standardkort.",
|
|
14
|
+
"countryPlaceholder": "Please select",
|
|
15
|
+
"stateCodePlaceholder": "Select state or Province",
|
|
16
|
+
"phoneNumberPlaceholder": "Enter your phone number",
|
|
17
|
+
"addressHeading": "Betalings- og leveringsadresse",
|
|
18
|
+
"addNewAddress": "Tilføj ny adresse",
|
|
19
|
+
"confirm": "Bekræft adresse",
|
|
20
|
+
"cancel": "Annuller",
|
|
21
|
+
"editButton": "Rediger",
|
|
22
|
+
"deleteButton": "Slet",
|
|
23
|
+
"defaultBadge": "Standard",
|
|
24
|
+
"makeDefault": "Gør dette til min standardadresse",
|
|
25
|
+
"countrySelectPlaceholder": "Vælg land"
|
|
26
|
+
},
|
|
27
|
+
"validation": {
|
|
28
|
+
"FIELD_REQUIRED": "{{field}} is required",
|
|
29
|
+
"FIELD_TOO_LONG": "Koden må ikke være mere end {{maxLength}} tegn",
|
|
30
|
+
"FIELD_TOO_SHORT": "Koden må ikke være mere end {{minLength}} tegn",
|
|
31
|
+
"FIELD_INVALID_FORMAT": "Please enter a valid {{field}}",
|
|
32
|
+
"FIELD_INVALID_CHARACTERS": "{{field}} contains invalid characters",
|
|
33
|
+
"POSTAL_CODE_MISMATCH": "Postal code does not match the selected {{stateLabel}}"
|
|
34
|
+
},
|
|
35
|
+
"country": {
|
|
36
|
+
"AT": {
|
|
37
|
+
"stateCode": "Stat",
|
|
38
|
+
"stateCodePlaceholder": "Select the state",
|
|
39
|
+
"city": "By",
|
|
40
|
+
"postal": "Postnummer"
|
|
41
|
+
},
|
|
42
|
+
"AU": {
|
|
43
|
+
"stateCode": "Stat",
|
|
44
|
+
"stateCodePlaceholder": "Select the state",
|
|
45
|
+
"city": "Suburb er påkrævet",
|
|
46
|
+
"postal": "Postnummer"
|
|
47
|
+
},
|
|
48
|
+
"CA": {
|
|
49
|
+
"stateCode": "Province",
|
|
50
|
+
"stateCodePlaceholder": "Select the province",
|
|
51
|
+
"city": "By",
|
|
52
|
+
"postal": "Postnummer"
|
|
53
|
+
},
|
|
54
|
+
"CZ": {
|
|
55
|
+
"stateCode": "Region",
|
|
56
|
+
"stateCodePlaceholder": "Select the region",
|
|
57
|
+
"city": "By",
|
|
58
|
+
"postal": "Postnummer"
|
|
59
|
+
},
|
|
60
|
+
"DE": {
|
|
61
|
+
"stateCode": "Stat",
|
|
62
|
+
"stateCodePlaceholder": "Select the state",
|
|
63
|
+
"city": "By",
|
|
64
|
+
"postal": "Postnummer"
|
|
65
|
+
},
|
|
66
|
+
"DK": {
|
|
67
|
+
"stateCode": "Region",
|
|
68
|
+
"stateCodePlaceholder": "Select the region",
|
|
69
|
+
"city": "By",
|
|
70
|
+
"postal": "Postnummer"
|
|
71
|
+
},
|
|
72
|
+
"ES": {
|
|
73
|
+
"stateCode": "Stat",
|
|
74
|
+
"stateCodePlaceholder": "Select the state",
|
|
75
|
+
"city": "By",
|
|
76
|
+
"postal": "Postnummer"
|
|
77
|
+
},
|
|
78
|
+
"FI": {
|
|
79
|
+
"stateCode": "Region",
|
|
80
|
+
"stateCodePlaceholder": "Select the region",
|
|
81
|
+
"city": "By",
|
|
82
|
+
"postal": "Postnummer"
|
|
83
|
+
},
|
|
84
|
+
"IE": {
|
|
85
|
+
"stateCode": "Land",
|
|
86
|
+
"stateCodePlaceholder": "Select the county",
|
|
87
|
+
"city": "By",
|
|
88
|
+
"postal": "Postnummer"
|
|
89
|
+
},
|
|
90
|
+
"MX": {
|
|
91
|
+
"stateCode": "State",
|
|
92
|
+
"stateCodePlaceholder": "Select the state",
|
|
93
|
+
"city": "City",
|
|
94
|
+
"postal": "Postal Code"
|
|
95
|
+
},
|
|
96
|
+
"NL": {
|
|
97
|
+
"stateCode": "Province",
|
|
98
|
+
"stateCodePlaceholder": "Select the province",
|
|
99
|
+
"city": "By",
|
|
100
|
+
"postal": "Postnummer"
|
|
101
|
+
},
|
|
102
|
+
"NO": {
|
|
103
|
+
"stateCode": "Land",
|
|
104
|
+
"stateCodePlaceholder": "Select the county",
|
|
105
|
+
"city": "By",
|
|
106
|
+
"postal": "Postnummer"
|
|
107
|
+
},
|
|
108
|
+
"NZ": {
|
|
109
|
+
"stateCode": "Region",
|
|
110
|
+
"stateCodePlaceholder": "Select the region",
|
|
111
|
+
"city": "By",
|
|
112
|
+
"postal": "Postnummer"
|
|
113
|
+
},
|
|
114
|
+
"PL": {
|
|
115
|
+
"stateCode": "Region / Province",
|
|
116
|
+
"stateCodePlaceholder": "Select the region / province",
|
|
117
|
+
"city": "By",
|
|
118
|
+
"postal": "Postnummer"
|
|
119
|
+
},
|
|
120
|
+
"SE": {
|
|
121
|
+
"stateCode": "Region",
|
|
122
|
+
"stateCodePlaceholder": "Select the region",
|
|
123
|
+
"city": "By",
|
|
124
|
+
"postal": "Postnummer"
|
|
125
|
+
},
|
|
126
|
+
"US": {
|
|
127
|
+
"stateCode": "Stat",
|
|
128
|
+
"stateCodePlaceholder": "Select the state",
|
|
129
|
+
"city": "By",
|
|
130
|
+
"postal": "Postnummer"
|
|
131
|
+
},
|
|
132
|
+
"ZA": {
|
|
133
|
+
"stateCode": "Stat",
|
|
134
|
+
"stateCodePlaceholder": "Select the state",
|
|
135
|
+
"city": "By",
|
|
136
|
+
"postal": "Postnummer"
|
|
137
|
+
},
|
|
138
|
+
"GB": {
|
|
139
|
+
"postal": "Postcode"
|
|
140
|
+
},
|
|
141
|
+
"JP": {
|
|
142
|
+
"stateCode": "Prefecture",
|
|
143
|
+
"stateCodePlaceholder": "Select the prefecture"
|
|
144
|
+
},
|
|
145
|
+
"AE": {
|
|
146
|
+
"stateCode": "Emirate",
|
|
147
|
+
"stateCodePlaceholder": "Select the emirate"
|
|
148
|
+
},
|
|
149
|
+
"IN": {
|
|
150
|
+
"postal": "PIN Code"
|
|
151
|
+
},
|
|
152
|
+
"CH": {
|
|
153
|
+
"stateCode": "Canton",
|
|
154
|
+
"stateCodePlaceholder": "Select the canton"
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
export default _default;
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
firstName: "Fornavn",
|
|
3
|
+
lastName: "Efternavn",
|
|
4
|
+
address1: "Adresselinje 1",
|
|
5
|
+
address2: "Adresse linje 2",
|
|
6
|
+
city: "By",
|
|
7
|
+
postal: "Postnummer",
|
|
8
|
+
stateCode: "Stat/Område",
|
|
9
|
+
country: "Land",
|
|
10
|
+
phoneNumber: 'Telefonnummer (inkl. landekode, f.eks. "+45" for Danmark)',
|
|
11
|
+
dialCode: "Telefonkode",
|
|
12
|
+
defaultAddress: "Gør dette til mit standardkort.",
|
|
13
|
+
countryPlaceholder: "Please select",
|
|
14
|
+
stateCodePlaceholder: "Select state or Province",
|
|
15
|
+
phoneNumberPlaceholder: "Enter your phone number",
|
|
16
|
+
addressHeading: "Betalings- og leveringsadresse",
|
|
17
|
+
addNewAddress: "Tilføj ny adresse",
|
|
18
|
+
confirm: "Bekræft adresse",
|
|
19
|
+
cancel: "Annuller",
|
|
20
|
+
editButton: "Rediger",
|
|
21
|
+
deleteButton: "Slet",
|
|
22
|
+
defaultBadge: "Standard",
|
|
23
|
+
makeDefault: "Gør dette til min standardadresse",
|
|
24
|
+
countrySelectPlaceholder: "Vælg land"
|
|
25
|
+
}, t = {
|
|
26
|
+
FIELD_REQUIRED: "{{field}} is required",
|
|
27
|
+
FIELD_TOO_LONG: "Koden må ikke være mere end {{maxLength}} tegn",
|
|
28
|
+
FIELD_TOO_SHORT: "Koden må ikke være mere end {{minLength}} tegn",
|
|
29
|
+
FIELD_INVALID_FORMAT: "Please enter a valid {{field}}",
|
|
30
|
+
FIELD_INVALID_CHARACTERS: "{{field}} contains invalid characters",
|
|
31
|
+
POSTAL_CODE_MISMATCH: "Postal code does not match the selected {{stateLabel}}"
|
|
32
|
+
}, o = {
|
|
33
|
+
AT: {
|
|
34
|
+
stateCode: "Stat",
|
|
35
|
+
stateCodePlaceholder: "Select the state",
|
|
36
|
+
city: "By",
|
|
37
|
+
postal: "Postnummer"
|
|
38
|
+
},
|
|
39
|
+
AU: {
|
|
40
|
+
stateCode: "Stat",
|
|
41
|
+
stateCodePlaceholder: "Select the state",
|
|
42
|
+
city: "Suburb er påkrævet",
|
|
43
|
+
postal: "Postnummer"
|
|
44
|
+
},
|
|
45
|
+
CA: {
|
|
46
|
+
stateCode: "Province",
|
|
47
|
+
stateCodePlaceholder: "Select the province",
|
|
48
|
+
city: "By",
|
|
49
|
+
postal: "Postnummer"
|
|
50
|
+
},
|
|
51
|
+
CZ: {
|
|
52
|
+
stateCode: "Region",
|
|
53
|
+
stateCodePlaceholder: "Select the region",
|
|
54
|
+
city: "By",
|
|
55
|
+
postal: "Postnummer"
|
|
56
|
+
},
|
|
57
|
+
DE: {
|
|
58
|
+
stateCode: "Stat",
|
|
59
|
+
stateCodePlaceholder: "Select the state",
|
|
60
|
+
city: "By",
|
|
61
|
+
postal: "Postnummer"
|
|
62
|
+
},
|
|
63
|
+
DK: {
|
|
64
|
+
stateCode: "Region",
|
|
65
|
+
stateCodePlaceholder: "Select the region",
|
|
66
|
+
city: "By",
|
|
67
|
+
postal: "Postnummer"
|
|
68
|
+
},
|
|
69
|
+
ES: {
|
|
70
|
+
stateCode: "Stat",
|
|
71
|
+
stateCodePlaceholder: "Select the state",
|
|
72
|
+
city: "By",
|
|
73
|
+
postal: "Postnummer"
|
|
74
|
+
},
|
|
75
|
+
FI: {
|
|
76
|
+
stateCode: "Region",
|
|
77
|
+
stateCodePlaceholder: "Select the region",
|
|
78
|
+
city: "By",
|
|
79
|
+
postal: "Postnummer"
|
|
80
|
+
},
|
|
81
|
+
IE: {
|
|
82
|
+
stateCode: "Land",
|
|
83
|
+
stateCodePlaceholder: "Select the county",
|
|
84
|
+
city: "By",
|
|
85
|
+
postal: "Postnummer"
|
|
86
|
+
},
|
|
87
|
+
MX: {
|
|
88
|
+
stateCode: "State",
|
|
89
|
+
stateCodePlaceholder: "Select the state",
|
|
90
|
+
city: "City",
|
|
91
|
+
postal: "Postal Code"
|
|
92
|
+
},
|
|
93
|
+
NL: {
|
|
94
|
+
stateCode: "Province",
|
|
95
|
+
stateCodePlaceholder: "Select the province",
|
|
96
|
+
city: "By",
|
|
97
|
+
postal: "Postnummer"
|
|
98
|
+
},
|
|
99
|
+
NO: {
|
|
100
|
+
stateCode: "Land",
|
|
101
|
+
stateCodePlaceholder: "Select the county",
|
|
102
|
+
city: "By",
|
|
103
|
+
postal: "Postnummer"
|
|
104
|
+
},
|
|
105
|
+
NZ: {
|
|
106
|
+
stateCode: "Region",
|
|
107
|
+
stateCodePlaceholder: "Select the region",
|
|
108
|
+
city: "By",
|
|
109
|
+
postal: "Postnummer"
|
|
110
|
+
},
|
|
111
|
+
PL: {
|
|
112
|
+
stateCode: "Region / Province",
|
|
113
|
+
stateCodePlaceholder: "Select the region / province",
|
|
114
|
+
city: "By",
|
|
115
|
+
postal: "Postnummer"
|
|
116
|
+
},
|
|
117
|
+
SE: {
|
|
118
|
+
stateCode: "Region",
|
|
119
|
+
stateCodePlaceholder: "Select the region",
|
|
120
|
+
city: "By",
|
|
121
|
+
postal: "Postnummer"
|
|
122
|
+
},
|
|
123
|
+
US: {
|
|
124
|
+
stateCode: "Stat",
|
|
125
|
+
stateCodePlaceholder: "Select the state",
|
|
126
|
+
city: "By",
|
|
127
|
+
postal: "Postnummer"
|
|
128
|
+
},
|
|
129
|
+
ZA: {
|
|
130
|
+
stateCode: "Stat",
|
|
131
|
+
stateCodePlaceholder: "Select the state",
|
|
132
|
+
city: "By",
|
|
133
|
+
postal: "Postnummer"
|
|
134
|
+
},
|
|
135
|
+
GB: {
|
|
136
|
+
postal: "Postcode"
|
|
137
|
+
},
|
|
138
|
+
JP: {
|
|
139
|
+
stateCode: "Prefecture",
|
|
140
|
+
stateCodePlaceholder: "Select the prefecture"
|
|
141
|
+
},
|
|
142
|
+
AE: {
|
|
143
|
+
stateCode: "Emirate",
|
|
144
|
+
stateCodePlaceholder: "Select the emirate"
|
|
145
|
+
},
|
|
146
|
+
IN: {
|
|
147
|
+
postal: "PIN Code"
|
|
148
|
+
},
|
|
149
|
+
CH: {
|
|
150
|
+
stateCode: "Canton",
|
|
151
|
+
stateCodePlaceholder: "Select the canton"
|
|
152
|
+
}
|
|
153
|
+
}, a = {
|
|
154
|
+
form: e,
|
|
155
|
+
validation: t,
|
|
156
|
+
country: o
|
|
157
|
+
};
|
|
158
|
+
export {
|
|
159
|
+
o as country,
|
|
160
|
+
a as default,
|
|
161
|
+
e as form,
|
|
162
|
+
t as validation
|
|
163
|
+
};
|