@ticketmaster/tm-global-address 0.6.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 +216 -212
- package/dist/components/AddressList/AddressList.d.ts +7 -2
- package/dist/components/AddressList/AddressList.js +41 -37
- 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 +2 -0
- package/dist/index.js +46 -38
- package/package.json +1 -1
|
@@ -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
|
+
};
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"form": {
|
|
3
|
+
"firstName": "Vorname",
|
|
4
|
+
"lastName": "Nachname",
|
|
5
|
+
"address1": "Adresszeile 1",
|
|
6
|
+
"address2": "Adresszeile 2",
|
|
7
|
+
"city": "Stadt",
|
|
8
|
+
"postal": "Postleitzahl",
|
|
9
|
+
"stateCode": "Bundesland",
|
|
10
|
+
"country": "Land",
|
|
11
|
+
"phoneNumber": "Telefonnummer",
|
|
12
|
+
"dialCode": "Vorwahl",
|
|
13
|
+
"defaultAddress": "Mach dies zu meiner Standardkarte.",
|
|
14
|
+
"countryPlaceholder": "Please select",
|
|
15
|
+
"stateCodePlaceholder": "Bundesstaat, Bundesland, Kanton oder Provinz auswählen",
|
|
16
|
+
"phoneNumberPlaceholder": "Gib deine Telefonnummer ein",
|
|
17
|
+
"addressHeading": "Rechnungsadresse und Lieferadresse",
|
|
18
|
+
"addNewAddress": "Neue Adresse hinzufügen",
|
|
19
|
+
"confirm": "Adresse bestätigen",
|
|
20
|
+
"cancel": "Abbrechen",
|
|
21
|
+
"editButton": "Bearbeiten",
|
|
22
|
+
"deleteButton": "Löschen",
|
|
23
|
+
"defaultBadge": "Standard",
|
|
24
|
+
"makeDefault": "Als Standardadresse festlegen",
|
|
25
|
+
"countrySelectPlaceholder": "Land wählen"
|
|
26
|
+
},
|
|
27
|
+
"validation": {
|
|
28
|
+
"FIELD_REQUIRED": "{{field}} is required",
|
|
29
|
+
"FIELD_TOO_LONG": "Darf höchstens {{maxLength}} Zeichen lang sein",
|
|
30
|
+
"FIELD_TOO_SHORT": "Darf höchstens {{minLength}} Zeichen lang sein",
|
|
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": "Bundesstaat/Provinz",
|
|
38
|
+
"stateCodePlaceholder": "Bundestaat auswählen",
|
|
39
|
+
"city": "Stadt",
|
|
40
|
+
"postal": "Postleitzahl"
|
|
41
|
+
},
|
|
42
|
+
"AU": {
|
|
43
|
+
"stateCode": "Bundesstaat/Provinz",
|
|
44
|
+
"stateCodePlaceholder": "Bundestaat auswählen",
|
|
45
|
+
"city": "Vorort",
|
|
46
|
+
"postal": "Postleitzahl"
|
|
47
|
+
},
|
|
48
|
+
"CA": {
|
|
49
|
+
"stateCode": "Provinz",
|
|
50
|
+
"stateCodePlaceholder": "Provinz auswählen",
|
|
51
|
+
"city": "Stadt",
|
|
52
|
+
"postal": "Postleitzahl"
|
|
53
|
+
},
|
|
54
|
+
"CZ": {
|
|
55
|
+
"stateCode": "Ort",
|
|
56
|
+
"stateCodePlaceholder": "Region wählen",
|
|
57
|
+
"city": "Stadt",
|
|
58
|
+
"postal": "Postleitzahl"
|
|
59
|
+
},
|
|
60
|
+
"DE": {
|
|
61
|
+
"stateCode": "Bundesstaat/Provinz",
|
|
62
|
+
"stateCodePlaceholder": "Bundestaat auswählen",
|
|
63
|
+
"city": "Stadt",
|
|
64
|
+
"postal": "Postleitzahl"
|
|
65
|
+
},
|
|
66
|
+
"DK": {
|
|
67
|
+
"stateCode": "Ort",
|
|
68
|
+
"stateCodePlaceholder": "Region wählen",
|
|
69
|
+
"city": "Stadt",
|
|
70
|
+
"postal": "Postleitzahl"
|
|
71
|
+
},
|
|
72
|
+
"ES": {
|
|
73
|
+
"stateCode": "Bundesstaat/Provinz",
|
|
74
|
+
"stateCodePlaceholder": "Bundestaat auswählen",
|
|
75
|
+
"city": "Stadt",
|
|
76
|
+
"postal": "Postleitzahl"
|
|
77
|
+
},
|
|
78
|
+
"FI": {
|
|
79
|
+
"stateCode": "Ort",
|
|
80
|
+
"stateCodePlaceholder": "Region wählen",
|
|
81
|
+
"city": "Stadt",
|
|
82
|
+
"postal": "Postleitzahl"
|
|
83
|
+
},
|
|
84
|
+
"IE": {
|
|
85
|
+
"stateCode": "Bundesland",
|
|
86
|
+
"stateCodePlaceholder": "Bezirk wählen",
|
|
87
|
+
"city": "Stadt",
|
|
88
|
+
"postal": "Postleitzahl"
|
|
89
|
+
},
|
|
90
|
+
"MX": {
|
|
91
|
+
"stateCode": "State",
|
|
92
|
+
"stateCodePlaceholder": "Select the state",
|
|
93
|
+
"city": "City",
|
|
94
|
+
"postal": "Postal Code"
|
|
95
|
+
},
|
|
96
|
+
"NL": {
|
|
97
|
+
"stateCode": "Provinz",
|
|
98
|
+
"stateCodePlaceholder": "Provinz auswählen",
|
|
99
|
+
"city": "Stadt",
|
|
100
|
+
"postal": "Postleitzahl"
|
|
101
|
+
},
|
|
102
|
+
"NO": {
|
|
103
|
+
"stateCode": "Bundesland",
|
|
104
|
+
"stateCodePlaceholder": "Bezirk wählen",
|
|
105
|
+
"city": "Stadt",
|
|
106
|
+
"postal": "Postleitzahl"
|
|
107
|
+
},
|
|
108
|
+
"NZ": {
|
|
109
|
+
"stateCode": "Ort",
|
|
110
|
+
"stateCodePlaceholder": "Region wählen",
|
|
111
|
+
"city": "Stadt",
|
|
112
|
+
"postal": "Postleitzahl"
|
|
113
|
+
},
|
|
114
|
+
"PL": {
|
|
115
|
+
"stateCode": "Region / Woiwodschaft",
|
|
116
|
+
"stateCodePlaceholder": "Region / Woiwodschaft wählen",
|
|
117
|
+
"city": "Stadt",
|
|
118
|
+
"postal": "Postleitzahl"
|
|
119
|
+
},
|
|
120
|
+
"SE": {
|
|
121
|
+
"stateCode": "Ort",
|
|
122
|
+
"stateCodePlaceholder": "Region wählen",
|
|
123
|
+
"city": "Stadt",
|
|
124
|
+
"postal": "Postleitzahl"
|
|
125
|
+
},
|
|
126
|
+
"US": {
|
|
127
|
+
"stateCode": "Bundesstaat/Provinz",
|
|
128
|
+
"stateCodePlaceholder": "Bundestaat auswählen",
|
|
129
|
+
"city": "Stadt",
|
|
130
|
+
"postal": "Postleitzahl"
|
|
131
|
+
},
|
|
132
|
+
"ZA": {
|
|
133
|
+
"stateCode": "Bundesstaat/Provinz",
|
|
134
|
+
"stateCodePlaceholder": "Bundestaat auswählen",
|
|
135
|
+
"city": "Stadt",
|
|
136
|
+
"postal": "Postleitzahl"
|
|
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;
|