@voyantjs/i18n 0.16.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/admin/app-dmc.d.ts +22 -0
- package/dist/admin/app-dmc.d.ts.map +1 -0
- package/dist/admin/app-dmc.js +29 -0
- package/dist/admin/app-operator.d.ts +23 -0
- package/dist/admin/app-operator.d.ts.map +1 -0
- package/dist/admin/app-operator.js +17 -0
- package/dist/admin/auth.d.ts +247 -0
- package/dist/admin/auth.d.ts.map +1 -0
- package/dist/admin/auth.js +166 -0
- package/dist/admin/availability.d.ts +689 -0
- package/dist/admin/availability.d.ts.map +1 -0
- package/dist/admin/availability.js +686 -0
- package/dist/admin/bookings.d.ts +1067 -0
- package/dist/admin/bookings.d.ts.map +1 -0
- package/dist/admin/bookings.js +1064 -0
- package/dist/admin/chrome.d.ts +36 -0
- package/dist/admin/chrome.d.ts.map +1 -0
- package/dist/admin/chrome.js +24 -0
- package/dist/admin/contacts.d.ts +269 -0
- package/dist/admin/contacts.d.ts.map +1 -0
- package/dist/admin/contacts.js +266 -0
- package/dist/admin/core-dmc.d.ts +21 -0
- package/dist/admin/core-dmc.d.ts.map +1 -0
- package/dist/admin/core-dmc.js +14 -0
- package/dist/admin/core-operator.d.ts +117 -0
- package/dist/admin/core-operator.d.ts.map +1 -0
- package/dist/admin/core-operator.js +78 -0
- package/dist/admin/crm-operator.d.ts +579 -0
- package/dist/admin/crm-operator.d.ts.map +1 -0
- package/dist/admin/crm-operator.js +576 -0
- package/dist/admin/dashboard-operator.d.ts +83 -0
- package/dist/admin/dashboard-operator.d.ts.map +1 -0
- package/dist/admin/dashboard-operator.js +80 -0
- package/dist/admin/distribution-dmc.d.ts +1804 -0
- package/dist/admin/distribution-dmc.d.ts.map +1 -0
- package/dist/admin/distribution-dmc.js +1181 -0
- package/dist/admin/dmc-nav.d.ts +55 -0
- package/dist/admin/dmc-nav.d.ts.map +1 -0
- package/dist/admin/dmc-nav.js +38 -0
- package/dist/admin/finance.d.ts +377 -0
- package/dist/admin/finance.d.ts.map +1 -0
- package/dist/admin/finance.js +374 -0
- package/dist/admin/operator-nav.d.ts +76 -0
- package/dist/admin/operator-nav.d.ts.map +1 -0
- package/dist/admin/operator-nav.js +52 -0
- package/dist/admin/organizations.d.ts +87 -0
- package/dist/admin/organizations.d.ts.map +1 -0
- package/dist/admin/organizations.js +84 -0
- package/dist/admin/pricing-operator.d.ts +233 -0
- package/dist/admin/pricing-operator.d.ts.map +1 -0
- package/dist/admin/pricing-operator.js +230 -0
- package/dist/admin/products-dmc.d.ts +239 -0
- package/dist/admin/products-dmc.d.ts.map +1 -0
- package/dist/admin/products-dmc.js +236 -0
- package/dist/admin/products-operator.d.ts +999 -0
- package/dist/admin/products-operator.d.ts.map +1 -0
- package/dist/admin/products-operator.js +996 -0
- package/dist/admin/resources.d.ts +653 -0
- package/dist/admin/resources.d.ts.map +1 -0
- package/dist/admin/resources.js +650 -0
- package/dist/admin/settings-operator.d.ts +251 -0
- package/dist/admin/settings-operator.d.ts.map +1 -0
- package/dist/admin/settings-operator.js +248 -0
- package/dist/admin/suppliers-operator.d.ts +325 -0
- package/dist/admin/suppliers-operator.d.ts.map +1 -0
- package/dist/admin/suppliers-operator.js +322 -0
- package/dist/admin/suppliers.d.ts +259 -0
- package/dist/admin/suppliers.d.ts.map +1 -0
- package/dist/admin/suppliers.js +256 -0
- package/dist/admin/team.d.ts +102 -0
- package/dist/admin/team.d.ts.map +1 -0
- package/dist/admin/team.js +68 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +27 -0
- package/dist/package-formatters.d.ts +9 -0
- package/dist/package-formatters.d.ts.map +1 -0
- package/dist/package-formatters.js +56 -0
- package/dist/package-runtime.d.ts +39 -0
- package/dist/package-runtime.d.ts.map +1 -0
- package/dist/package-runtime.js +60 -0
- package/dist/runtime.d.ts +33 -0
- package/dist/runtime.d.ts.map +1 -0
- package/dist/runtime.js +120 -0
- package/package.json +48 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export type AdminChromeMessages = {
|
|
2
|
+
loading: string;
|
|
3
|
+
account: string;
|
|
4
|
+
notifications: string;
|
|
5
|
+
logOut: string;
|
|
6
|
+
light: string;
|
|
7
|
+
dark: string;
|
|
8
|
+
language: string;
|
|
9
|
+
english: string;
|
|
10
|
+
romanian: string;
|
|
11
|
+
};
|
|
12
|
+
export declare const adminChromeMessages: {
|
|
13
|
+
en: {
|
|
14
|
+
loading: string;
|
|
15
|
+
account: string;
|
|
16
|
+
notifications: string;
|
|
17
|
+
logOut: string;
|
|
18
|
+
light: string;
|
|
19
|
+
dark: string;
|
|
20
|
+
language: string;
|
|
21
|
+
english: string;
|
|
22
|
+
romanian: string;
|
|
23
|
+
};
|
|
24
|
+
ro: {
|
|
25
|
+
loading: string;
|
|
26
|
+
account: string;
|
|
27
|
+
notifications: string;
|
|
28
|
+
logOut: string;
|
|
29
|
+
light: string;
|
|
30
|
+
dark: string;
|
|
31
|
+
language: string;
|
|
32
|
+
english: string;
|
|
33
|
+
romanian: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
//# sourceMappingURL=chrome.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chrome.d.ts","sourceRoot":"","sources":["../../src/admin/chrome.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,EAAE,MAAM,CAAA;IACrB,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;CAuByB,CAAA"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export const adminChromeMessages = {
|
|
2
|
+
en: {
|
|
3
|
+
loading: "Loading...",
|
|
4
|
+
account: "Account",
|
|
5
|
+
notifications: "Notifications",
|
|
6
|
+
logOut: "Log out",
|
|
7
|
+
light: "Light",
|
|
8
|
+
dark: "Dark",
|
|
9
|
+
language: "Language",
|
|
10
|
+
english: "English",
|
|
11
|
+
romanian: "Romanian",
|
|
12
|
+
},
|
|
13
|
+
ro: {
|
|
14
|
+
loading: "Se incarca...",
|
|
15
|
+
account: "Cont",
|
|
16
|
+
notifications: "Notificari",
|
|
17
|
+
logOut: "Deconectare",
|
|
18
|
+
light: "Luminos",
|
|
19
|
+
dark: "Intunecat",
|
|
20
|
+
language: "Limba",
|
|
21
|
+
english: "Engleza",
|
|
22
|
+
romanian: "Romana",
|
|
23
|
+
},
|
|
24
|
+
};
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
import type { LocaleMessageSchema } from "../runtime.js";
|
|
2
|
+
export declare const adminContactsMessages: {
|
|
3
|
+
en: {
|
|
4
|
+
contacts: {
|
|
5
|
+
pageTitle: string;
|
|
6
|
+
pageDescription: string;
|
|
7
|
+
list: {
|
|
8
|
+
searchPlaceholder: string;
|
|
9
|
+
newAction: string;
|
|
10
|
+
columnName: string;
|
|
11
|
+
columnEmail: string;
|
|
12
|
+
columnPhone: string;
|
|
13
|
+
columnRelation: string;
|
|
14
|
+
loadFailed: string;
|
|
15
|
+
empty: string;
|
|
16
|
+
noValue: string;
|
|
17
|
+
paginationShowing: string;
|
|
18
|
+
paginationPage: string;
|
|
19
|
+
paginationPrevious: string;
|
|
20
|
+
paginationNext: string;
|
|
21
|
+
relationClient: string;
|
|
22
|
+
relationPartner: string;
|
|
23
|
+
relationSupplier: string;
|
|
24
|
+
relationOther: string;
|
|
25
|
+
};
|
|
26
|
+
dialog: {
|
|
27
|
+
editTitle: string;
|
|
28
|
+
newTitle: string;
|
|
29
|
+
editDescription: string;
|
|
30
|
+
newDescription: string;
|
|
31
|
+
};
|
|
32
|
+
form: {
|
|
33
|
+
validationNameRequired: string;
|
|
34
|
+
saveFailed: string;
|
|
35
|
+
typeLabel: string;
|
|
36
|
+
relationLabel: string;
|
|
37
|
+
typeIndividual: string;
|
|
38
|
+
typeCompany: string;
|
|
39
|
+
relationClient: string;
|
|
40
|
+
relationPartner: string;
|
|
41
|
+
relationSupplier: string;
|
|
42
|
+
relationOther: string;
|
|
43
|
+
companyNameLabel: string;
|
|
44
|
+
companyNamePlaceholder: string;
|
|
45
|
+
firstNameLabel: string;
|
|
46
|
+
firstNamePlaceholder: string;
|
|
47
|
+
lastNameLabel: string;
|
|
48
|
+
lastNamePlaceholder: string;
|
|
49
|
+
jobTitleLabel: string;
|
|
50
|
+
emailLabel: string;
|
|
51
|
+
emailPlaceholder: string;
|
|
52
|
+
phoneLabel: string;
|
|
53
|
+
phonePlaceholder: string;
|
|
54
|
+
websiteLabel: string;
|
|
55
|
+
websitePlaceholder: string;
|
|
56
|
+
addressLabel: string;
|
|
57
|
+
addressPlaceholder: string;
|
|
58
|
+
cityLabel: string;
|
|
59
|
+
cityPlaceholder: string;
|
|
60
|
+
countryLabel: string;
|
|
61
|
+
countryPlaceholder: string;
|
|
62
|
+
preferredLanguageLabel: string;
|
|
63
|
+
preferredLanguagePlaceholder: string;
|
|
64
|
+
preferredCurrencyLabel: string;
|
|
65
|
+
preferredCurrencyPlaceholder: string;
|
|
66
|
+
cancel: string;
|
|
67
|
+
saving: string;
|
|
68
|
+
create: string;
|
|
69
|
+
saveChanges: string;
|
|
70
|
+
};
|
|
71
|
+
detail: {
|
|
72
|
+
notFound: string;
|
|
73
|
+
backToContacts: string;
|
|
74
|
+
unnamedCompany: string;
|
|
75
|
+
unnamedContact: string;
|
|
76
|
+
cardLoadFailedPrefix: string;
|
|
77
|
+
unknownError: string;
|
|
78
|
+
typeIndividual: string;
|
|
79
|
+
typeCompany: string;
|
|
80
|
+
relationClient: string;
|
|
81
|
+
relationPartner: string;
|
|
82
|
+
relationSupplier: string;
|
|
83
|
+
relationOther: string;
|
|
84
|
+
edit: string;
|
|
85
|
+
delete: string;
|
|
86
|
+
deleteConfirm: string;
|
|
87
|
+
detailsTitle: string;
|
|
88
|
+
preferencesTitle: string;
|
|
89
|
+
notesTitle: string;
|
|
90
|
+
addNotePlaceholder: string;
|
|
91
|
+
addNoteButton: string;
|
|
92
|
+
noNotes: string;
|
|
93
|
+
emailLabel: string;
|
|
94
|
+
phoneLabel: string;
|
|
95
|
+
websiteLabel: string;
|
|
96
|
+
addressLabel: string;
|
|
97
|
+
cityLabel: string;
|
|
98
|
+
countryLabel: string;
|
|
99
|
+
addressesTitle: string;
|
|
100
|
+
addressesDescription: string;
|
|
101
|
+
addAddressAction: string;
|
|
102
|
+
editAddressAction: string;
|
|
103
|
+
noAddressesYet: string;
|
|
104
|
+
addressDialogNewTitle: string;
|
|
105
|
+
addressDialogEditTitle: string;
|
|
106
|
+
addressDialogNewDescription: string;
|
|
107
|
+
addressDialogEditDescription: string;
|
|
108
|
+
addressTypeLabel: string;
|
|
109
|
+
addressLine1Label: string;
|
|
110
|
+
addressLine2Label: string;
|
|
111
|
+
regionLabel: string;
|
|
112
|
+
postalCodeLabel: string;
|
|
113
|
+
addressPrimaryToggle: string;
|
|
114
|
+
addressNotesLabel: string;
|
|
115
|
+
addressTypePrimary: string;
|
|
116
|
+
addressTypeBilling: string;
|
|
117
|
+
addressTypeShipping: string;
|
|
118
|
+
addressTypeMailing: string;
|
|
119
|
+
addressTypeMeeting: string;
|
|
120
|
+
addressTypeService: string;
|
|
121
|
+
addressTypeLegal: string;
|
|
122
|
+
addressTypeOther: string;
|
|
123
|
+
addressSaveFailed: string;
|
|
124
|
+
addressDeleteTitle: string;
|
|
125
|
+
addressDeleteDescription: string;
|
|
126
|
+
noAddressValue: string;
|
|
127
|
+
languageLabel: string;
|
|
128
|
+
currencyLabel: string;
|
|
129
|
+
tagsLabel: string;
|
|
130
|
+
createdLabel: string;
|
|
131
|
+
updatedLabel: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
ro: {
|
|
136
|
+
contacts: {
|
|
137
|
+
pageTitle: string;
|
|
138
|
+
pageDescription: string;
|
|
139
|
+
list: {
|
|
140
|
+
searchPlaceholder: string;
|
|
141
|
+
newAction: string;
|
|
142
|
+
columnName: string;
|
|
143
|
+
columnEmail: string;
|
|
144
|
+
columnPhone: string;
|
|
145
|
+
columnRelation: string;
|
|
146
|
+
loadFailed: string;
|
|
147
|
+
empty: string;
|
|
148
|
+
noValue: string;
|
|
149
|
+
paginationShowing: string;
|
|
150
|
+
paginationPage: string;
|
|
151
|
+
paginationPrevious: string;
|
|
152
|
+
paginationNext: string;
|
|
153
|
+
relationClient: string;
|
|
154
|
+
relationPartner: string;
|
|
155
|
+
relationSupplier: string;
|
|
156
|
+
relationOther: string;
|
|
157
|
+
};
|
|
158
|
+
dialog: {
|
|
159
|
+
editTitle: string;
|
|
160
|
+
newTitle: string;
|
|
161
|
+
editDescription: string;
|
|
162
|
+
newDescription: string;
|
|
163
|
+
};
|
|
164
|
+
form: {
|
|
165
|
+
validationNameRequired: string;
|
|
166
|
+
saveFailed: string;
|
|
167
|
+
typeLabel: string;
|
|
168
|
+
relationLabel: string;
|
|
169
|
+
typeIndividual: string;
|
|
170
|
+
typeCompany: string;
|
|
171
|
+
relationClient: string;
|
|
172
|
+
relationPartner: string;
|
|
173
|
+
relationSupplier: string;
|
|
174
|
+
relationOther: string;
|
|
175
|
+
companyNameLabel: string;
|
|
176
|
+
companyNamePlaceholder: string;
|
|
177
|
+
firstNameLabel: string;
|
|
178
|
+
firstNamePlaceholder: string;
|
|
179
|
+
lastNameLabel: string;
|
|
180
|
+
lastNamePlaceholder: string;
|
|
181
|
+
jobTitleLabel: string;
|
|
182
|
+
emailLabel: string;
|
|
183
|
+
emailPlaceholder: string;
|
|
184
|
+
phoneLabel: string;
|
|
185
|
+
phonePlaceholder: string;
|
|
186
|
+
websiteLabel: string;
|
|
187
|
+
websitePlaceholder: string;
|
|
188
|
+
addressLabel: string;
|
|
189
|
+
addressPlaceholder: string;
|
|
190
|
+
cityLabel: string;
|
|
191
|
+
cityPlaceholder: string;
|
|
192
|
+
countryLabel: string;
|
|
193
|
+
countryPlaceholder: string;
|
|
194
|
+
preferredLanguageLabel: string;
|
|
195
|
+
preferredLanguagePlaceholder: string;
|
|
196
|
+
preferredCurrencyLabel: string;
|
|
197
|
+
preferredCurrencyPlaceholder: string;
|
|
198
|
+
cancel: string;
|
|
199
|
+
saving: string;
|
|
200
|
+
create: string;
|
|
201
|
+
saveChanges: string;
|
|
202
|
+
};
|
|
203
|
+
detail: {
|
|
204
|
+
notFound: string;
|
|
205
|
+
backToContacts: string;
|
|
206
|
+
unnamedCompany: string;
|
|
207
|
+
unnamedContact: string;
|
|
208
|
+
cardLoadFailedPrefix: string;
|
|
209
|
+
unknownError: string;
|
|
210
|
+
typeIndividual: string;
|
|
211
|
+
typeCompany: string;
|
|
212
|
+
relationClient: string;
|
|
213
|
+
relationPartner: string;
|
|
214
|
+
relationSupplier: string;
|
|
215
|
+
relationOther: string;
|
|
216
|
+
edit: string;
|
|
217
|
+
delete: string;
|
|
218
|
+
deleteConfirm: string;
|
|
219
|
+
detailsTitle: string;
|
|
220
|
+
preferencesTitle: string;
|
|
221
|
+
notesTitle: string;
|
|
222
|
+
addNotePlaceholder: string;
|
|
223
|
+
addNoteButton: string;
|
|
224
|
+
noNotes: string;
|
|
225
|
+
emailLabel: string;
|
|
226
|
+
phoneLabel: string;
|
|
227
|
+
websiteLabel: string;
|
|
228
|
+
addressLabel: string;
|
|
229
|
+
cityLabel: string;
|
|
230
|
+
countryLabel: string;
|
|
231
|
+
addressesTitle: string;
|
|
232
|
+
addressesDescription: string;
|
|
233
|
+
addAddressAction: string;
|
|
234
|
+
editAddressAction: string;
|
|
235
|
+
noAddressesYet: string;
|
|
236
|
+
addressDialogNewTitle: string;
|
|
237
|
+
addressDialogEditTitle: string;
|
|
238
|
+
addressDialogNewDescription: string;
|
|
239
|
+
addressDialogEditDescription: string;
|
|
240
|
+
addressTypeLabel: string;
|
|
241
|
+
addressLine1Label: string;
|
|
242
|
+
addressLine2Label: string;
|
|
243
|
+
regionLabel: string;
|
|
244
|
+
postalCodeLabel: string;
|
|
245
|
+
addressPrimaryToggle: string;
|
|
246
|
+
addressNotesLabel: string;
|
|
247
|
+
addressTypePrimary: string;
|
|
248
|
+
addressTypeBilling: string;
|
|
249
|
+
addressTypeShipping: string;
|
|
250
|
+
addressTypeMailing: string;
|
|
251
|
+
addressTypeMeeting: string;
|
|
252
|
+
addressTypeService: string;
|
|
253
|
+
addressTypeLegal: string;
|
|
254
|
+
addressTypeOther: string;
|
|
255
|
+
addressSaveFailed: string;
|
|
256
|
+
addressDeleteTitle: string;
|
|
257
|
+
addressDeleteDescription: string;
|
|
258
|
+
noAddressValue: string;
|
|
259
|
+
languageLabel: string;
|
|
260
|
+
currencyLabel: string;
|
|
261
|
+
tagsLabel: string;
|
|
262
|
+
createdLabel: string;
|
|
263
|
+
updatedLabel: string;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
export type AdminContactsMessages = LocaleMessageSchema<(typeof adminContactsMessages)["en"]>;
|
|
269
|
+
//# sourceMappingURL=contacts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contacts.d.ts","sourceRoot":"","sources":["../../src/admin/contacts.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2QjC,CAAA;AAED,MAAM,MAAM,qBAAqB,GAAG,mBAAmB,CAAC,CAAC,OAAO,qBAAqB,CAAC,CAAC,IAAI,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
export const adminContactsMessages = {
|
|
2
|
+
en: {
|
|
3
|
+
contacts: {
|
|
4
|
+
pageTitle: "Contacts",
|
|
5
|
+
pageDescription: "Manage your clients, partners, and suppliers.",
|
|
6
|
+
list: {
|
|
7
|
+
searchPlaceholder: "Search people…",
|
|
8
|
+
newAction: "New contact",
|
|
9
|
+
columnName: "Name",
|
|
10
|
+
columnEmail: "Email",
|
|
11
|
+
columnPhone: "Phone",
|
|
12
|
+
columnRelation: "Relation",
|
|
13
|
+
loadFailed: "Failed to load people.",
|
|
14
|
+
empty: "No people found.",
|
|
15
|
+
noValue: "—",
|
|
16
|
+
paginationShowing: "Showing {count} of {total}",
|
|
17
|
+
paginationPage: "Page {page} / {pageCount}",
|
|
18
|
+
paginationPrevious: "Previous",
|
|
19
|
+
paginationNext: "Next",
|
|
20
|
+
relationClient: "Client",
|
|
21
|
+
relationPartner: "Partner",
|
|
22
|
+
relationSupplier: "Supplier",
|
|
23
|
+
relationOther: "Other",
|
|
24
|
+
},
|
|
25
|
+
dialog: {
|
|
26
|
+
editTitle: "Edit contact",
|
|
27
|
+
newTitle: "New contact",
|
|
28
|
+
editDescription: "Update contact details and reference information.",
|
|
29
|
+
newDescription: "Add a new contact to your CRM.",
|
|
30
|
+
},
|
|
31
|
+
form: {
|
|
32
|
+
validationNameRequired: "First and last name are required.",
|
|
33
|
+
saveFailed: "Failed to save contact.",
|
|
34
|
+
typeLabel: "Type",
|
|
35
|
+
relationLabel: "Relation",
|
|
36
|
+
typeIndividual: "Individual",
|
|
37
|
+
typeCompany: "Company",
|
|
38
|
+
relationClient: "Client",
|
|
39
|
+
relationPartner: "Partner",
|
|
40
|
+
relationSupplier: "Supplier",
|
|
41
|
+
relationOther: "Other",
|
|
42
|
+
companyNameLabel: "Company Name",
|
|
43
|
+
companyNamePlaceholder: "Acme Travel Co.",
|
|
44
|
+
firstNameLabel: "First Name",
|
|
45
|
+
firstNamePlaceholder: "John",
|
|
46
|
+
lastNameLabel: "Last Name",
|
|
47
|
+
lastNamePlaceholder: "Doe",
|
|
48
|
+
jobTitleLabel: "Job Title",
|
|
49
|
+
emailLabel: "Email",
|
|
50
|
+
emailPlaceholder: "john@example.com",
|
|
51
|
+
phoneLabel: "Phone",
|
|
52
|
+
phonePlaceholder: "+1 234 567 890",
|
|
53
|
+
websiteLabel: "Website",
|
|
54
|
+
websitePlaceholder: "https://example.com",
|
|
55
|
+
addressLabel: "Address",
|
|
56
|
+
addressPlaceholder: "123 Main St",
|
|
57
|
+
cityLabel: "City",
|
|
58
|
+
cityPlaceholder: "New York",
|
|
59
|
+
countryLabel: "Country",
|
|
60
|
+
countryPlaceholder: "US",
|
|
61
|
+
preferredLanguageLabel: "Preferred Language",
|
|
62
|
+
preferredLanguagePlaceholder: "en",
|
|
63
|
+
preferredCurrencyLabel: "Preferred Currency",
|
|
64
|
+
preferredCurrencyPlaceholder: "USD",
|
|
65
|
+
cancel: "Cancel",
|
|
66
|
+
saving: "Saving…",
|
|
67
|
+
create: "Create contact",
|
|
68
|
+
saveChanges: "Save changes",
|
|
69
|
+
},
|
|
70
|
+
detail: {
|
|
71
|
+
notFound: "Contact not found",
|
|
72
|
+
backToContacts: "Back to Contacts",
|
|
73
|
+
unnamedCompany: "Unnamed Company",
|
|
74
|
+
unnamedContact: "Unnamed Contact",
|
|
75
|
+
cardLoadFailedPrefix: "Failed to load person:",
|
|
76
|
+
unknownError: "Unknown error",
|
|
77
|
+
typeIndividual: "Individual",
|
|
78
|
+
typeCompany: "Company",
|
|
79
|
+
relationClient: "Client",
|
|
80
|
+
relationPartner: "Partner",
|
|
81
|
+
relationSupplier: "Supplier",
|
|
82
|
+
relationOther: "Other",
|
|
83
|
+
edit: "Edit",
|
|
84
|
+
delete: "Delete",
|
|
85
|
+
deleteConfirm: "Are you sure you want to delete this contact?",
|
|
86
|
+
detailsTitle: "Contact Details",
|
|
87
|
+
preferencesTitle: "Preferences",
|
|
88
|
+
notesTitle: "Notes",
|
|
89
|
+
addNotePlaceholder: "Add a note...",
|
|
90
|
+
addNoteButton: "Add",
|
|
91
|
+
noNotes: "No notes yet.",
|
|
92
|
+
emailLabel: "Email",
|
|
93
|
+
phoneLabel: "Phone",
|
|
94
|
+
websiteLabel: "Website",
|
|
95
|
+
addressLabel: "Address",
|
|
96
|
+
cityLabel: "City",
|
|
97
|
+
countryLabel: "Country",
|
|
98
|
+
addressesTitle: "Addresses",
|
|
99
|
+
addressesDescription: "Store billing, shipping, mailing, and other addresses for this contact.",
|
|
100
|
+
addAddressAction: "Add address",
|
|
101
|
+
editAddressAction: "Edit address",
|
|
102
|
+
noAddressesYet: "No addresses yet.",
|
|
103
|
+
addressDialogNewTitle: "Add address",
|
|
104
|
+
addressDialogEditTitle: "Edit address",
|
|
105
|
+
addressDialogNewDescription: "Add another address for this contact.",
|
|
106
|
+
addressDialogEditDescription: "Update this saved address.",
|
|
107
|
+
addressTypeLabel: "Type",
|
|
108
|
+
addressLine1Label: "Line 1",
|
|
109
|
+
addressLine2Label: "Line 2",
|
|
110
|
+
regionLabel: "Region",
|
|
111
|
+
postalCodeLabel: "Postal code",
|
|
112
|
+
addressPrimaryToggle: "Primary address",
|
|
113
|
+
addressNotesLabel: "Notes",
|
|
114
|
+
addressTypePrimary: "Primary",
|
|
115
|
+
addressTypeBilling: "Billing",
|
|
116
|
+
addressTypeShipping: "Shipping",
|
|
117
|
+
addressTypeMailing: "Mailing",
|
|
118
|
+
addressTypeMeeting: "Meeting",
|
|
119
|
+
addressTypeService: "Service",
|
|
120
|
+
addressTypeLegal: "Legal",
|
|
121
|
+
addressTypeOther: "Other",
|
|
122
|
+
addressSaveFailed: "Failed to save address.",
|
|
123
|
+
addressDeleteTitle: "Delete this address?",
|
|
124
|
+
addressDeleteDescription: "This action cannot be undone.",
|
|
125
|
+
noAddressValue: "No address on file",
|
|
126
|
+
languageLabel: "Language",
|
|
127
|
+
currencyLabel: "Currency",
|
|
128
|
+
tagsLabel: "Tags",
|
|
129
|
+
createdLabel: "Created",
|
|
130
|
+
updatedLabel: "Updated",
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
ro: {
|
|
135
|
+
contacts: {
|
|
136
|
+
pageTitle: "Contacts",
|
|
137
|
+
pageDescription: "Manage your clients, partners, and suppliers.",
|
|
138
|
+
list: {
|
|
139
|
+
searchPlaceholder: "Search people…",
|
|
140
|
+
newAction: "New contact",
|
|
141
|
+
columnName: "Name",
|
|
142
|
+
columnEmail: "Email",
|
|
143
|
+
columnPhone: "Phone",
|
|
144
|
+
columnRelation: "Relation",
|
|
145
|
+
loadFailed: "Failed to load people.",
|
|
146
|
+
empty: "No people found.",
|
|
147
|
+
noValue: "—",
|
|
148
|
+
paginationShowing: "Showing {count} of {total}",
|
|
149
|
+
paginationPage: "Page {page} / {pageCount}",
|
|
150
|
+
paginationPrevious: "Previous",
|
|
151
|
+
paginationNext: "Next",
|
|
152
|
+
relationClient: "Client",
|
|
153
|
+
relationPartner: "Partner",
|
|
154
|
+
relationSupplier: "Supplier",
|
|
155
|
+
relationOther: "Other",
|
|
156
|
+
},
|
|
157
|
+
dialog: {
|
|
158
|
+
editTitle: "Edit contact",
|
|
159
|
+
newTitle: "New contact",
|
|
160
|
+
editDescription: "Update contact details and reference information.",
|
|
161
|
+
newDescription: "Add a new contact to your CRM.",
|
|
162
|
+
},
|
|
163
|
+
form: {
|
|
164
|
+
validationNameRequired: "First and last name are required.",
|
|
165
|
+
saveFailed: "Failed to save contact.",
|
|
166
|
+
typeLabel: "Type",
|
|
167
|
+
relationLabel: "Relation",
|
|
168
|
+
typeIndividual: "Individual",
|
|
169
|
+
typeCompany: "Company",
|
|
170
|
+
relationClient: "Client",
|
|
171
|
+
relationPartner: "Partner",
|
|
172
|
+
relationSupplier: "Supplier",
|
|
173
|
+
relationOther: "Other",
|
|
174
|
+
companyNameLabel: "Company Name",
|
|
175
|
+
companyNamePlaceholder: "Acme Travel Co.",
|
|
176
|
+
firstNameLabel: "First Name",
|
|
177
|
+
firstNamePlaceholder: "John",
|
|
178
|
+
lastNameLabel: "Last Name",
|
|
179
|
+
lastNamePlaceholder: "Doe",
|
|
180
|
+
jobTitleLabel: "Job Title",
|
|
181
|
+
emailLabel: "Email",
|
|
182
|
+
emailPlaceholder: "john@example.com",
|
|
183
|
+
phoneLabel: "Phone",
|
|
184
|
+
phonePlaceholder: "+1 234 567 890",
|
|
185
|
+
websiteLabel: "Website",
|
|
186
|
+
websitePlaceholder: "https://example.com",
|
|
187
|
+
addressLabel: "Address",
|
|
188
|
+
addressPlaceholder: "123 Main St",
|
|
189
|
+
cityLabel: "City",
|
|
190
|
+
cityPlaceholder: "New York",
|
|
191
|
+
countryLabel: "Country",
|
|
192
|
+
countryPlaceholder: "US",
|
|
193
|
+
preferredLanguageLabel: "Preferred Language",
|
|
194
|
+
preferredLanguagePlaceholder: "en",
|
|
195
|
+
preferredCurrencyLabel: "Preferred Currency",
|
|
196
|
+
preferredCurrencyPlaceholder: "USD",
|
|
197
|
+
cancel: "Cancel",
|
|
198
|
+
saving: "Saving…",
|
|
199
|
+
create: "Create contact",
|
|
200
|
+
saveChanges: "Save changes",
|
|
201
|
+
},
|
|
202
|
+
detail: {
|
|
203
|
+
notFound: "Contact not found",
|
|
204
|
+
backToContacts: "Back to Contacts",
|
|
205
|
+
unnamedCompany: "Unnamed Company",
|
|
206
|
+
unnamedContact: "Unnamed Contact",
|
|
207
|
+
cardLoadFailedPrefix: "Failed to load person:",
|
|
208
|
+
unknownError: "Unknown error",
|
|
209
|
+
typeIndividual: "Individual",
|
|
210
|
+
typeCompany: "Company",
|
|
211
|
+
relationClient: "Client",
|
|
212
|
+
relationPartner: "Partner",
|
|
213
|
+
relationSupplier: "Supplier",
|
|
214
|
+
relationOther: "Other",
|
|
215
|
+
edit: "Edit",
|
|
216
|
+
delete: "Delete",
|
|
217
|
+
deleteConfirm: "Are you sure you want to delete this contact?",
|
|
218
|
+
detailsTitle: "Contact Details",
|
|
219
|
+
preferencesTitle: "Preferences",
|
|
220
|
+
notesTitle: "Notes",
|
|
221
|
+
addNotePlaceholder: "Add a note...",
|
|
222
|
+
addNoteButton: "Add",
|
|
223
|
+
noNotes: "No notes yet.",
|
|
224
|
+
emailLabel: "Email",
|
|
225
|
+
phoneLabel: "Phone",
|
|
226
|
+
websiteLabel: "Website",
|
|
227
|
+
addressLabel: "Address",
|
|
228
|
+
cityLabel: "City",
|
|
229
|
+
countryLabel: "Country",
|
|
230
|
+
addressesTitle: "Addresses",
|
|
231
|
+
addressesDescription: "Store billing, shipping, mailing, and other addresses for this contact.",
|
|
232
|
+
addAddressAction: "Add address",
|
|
233
|
+
editAddressAction: "Edit address",
|
|
234
|
+
noAddressesYet: "No addresses yet.",
|
|
235
|
+
addressDialogNewTitle: "Add address",
|
|
236
|
+
addressDialogEditTitle: "Edit address",
|
|
237
|
+
addressDialogNewDescription: "Add another address for this contact.",
|
|
238
|
+
addressDialogEditDescription: "Update this saved address.",
|
|
239
|
+
addressTypeLabel: "Type",
|
|
240
|
+
addressLine1Label: "Line 1",
|
|
241
|
+
addressLine2Label: "Line 2",
|
|
242
|
+
regionLabel: "Region",
|
|
243
|
+
postalCodeLabel: "Postal code",
|
|
244
|
+
addressPrimaryToggle: "Primary address",
|
|
245
|
+
addressNotesLabel: "Notes",
|
|
246
|
+
addressTypePrimary: "Primary",
|
|
247
|
+
addressTypeBilling: "Billing",
|
|
248
|
+
addressTypeShipping: "Shipping",
|
|
249
|
+
addressTypeMailing: "Mailing",
|
|
250
|
+
addressTypeMeeting: "Meeting",
|
|
251
|
+
addressTypeService: "Service",
|
|
252
|
+
addressTypeLegal: "Legal",
|
|
253
|
+
addressTypeOther: "Other",
|
|
254
|
+
addressSaveFailed: "Failed to save address.",
|
|
255
|
+
addressDeleteTitle: "Delete this address?",
|
|
256
|
+
addressDeleteDescription: "This action cannot be undone.",
|
|
257
|
+
noAddressValue: "No address on file",
|
|
258
|
+
languageLabel: "Language",
|
|
259
|
+
currencyLabel: "Currency",
|
|
260
|
+
tagsLabel: "Tags",
|
|
261
|
+
createdLabel: "Created",
|
|
262
|
+
updatedLabel: "Updated",
|
|
263
|
+
},
|
|
264
|
+
},
|
|
265
|
+
},
|
|
266
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export type DmcAdminCoreMessages = {
|
|
2
|
+
dashboard: {
|
|
3
|
+
title: string;
|
|
4
|
+
description: string;
|
|
5
|
+
};
|
|
6
|
+
};
|
|
7
|
+
export declare const dmcAdminCoreMessages: {
|
|
8
|
+
en: {
|
|
9
|
+
dashboard: {
|
|
10
|
+
title: string;
|
|
11
|
+
description: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
ro: {
|
|
15
|
+
dashboard: {
|
|
16
|
+
title: string;
|
|
17
|
+
description: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
//# sourceMappingURL=core-dmc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core-dmc.d.ts","sourceRoot":"","sources":["../../src/admin/core-dmc.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,EAAE;QACT,KAAK,EAAE,MAAM,CAAA;QACb,WAAW,EAAE,MAAM,CAAA;KACpB,CAAA;CACF,CAAA;AAED,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;CAahC,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export const dmcAdminCoreMessages = {
|
|
2
|
+
en: {
|
|
3
|
+
dashboard: {
|
|
4
|
+
title: "Voyant Console",
|
|
5
|
+
description: "Operational framework for travel companies.",
|
|
6
|
+
},
|
|
7
|
+
},
|
|
8
|
+
ro: {
|
|
9
|
+
dashboard: {
|
|
10
|
+
title: "Consola Voyant",
|
|
11
|
+
description: "Cadru operational pentru companiile de turism.",
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
};
|