@voyant-travel/quotes-react 0.119.2
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/LICENSE +201 -0
- package/README.md +39 -0
- package/dist/client.d.ts +31 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +71 -0
- package/dist/components/create-quote-dialog.d.ts +10 -0
- package/dist/components/create-quote-dialog.d.ts.map +1 -0
- package/dist/components/create-quote-dialog.js +45 -0
- package/dist/components/create-quote-version-dialog.d.ts +9 -0
- package/dist/components/create-quote-version-dialog.d.ts.map +1 -0
- package/dist/components/create-quote-version-dialog.js +108 -0
- package/dist/components/crm-format.d.ts +7 -0
- package/dist/components/crm-format.d.ts.map +1 -0
- package/dist/components/crm-format.js +40 -0
- package/dist/components/inline-currency-field.d.ts +12 -0
- package/dist/components/inline-currency-field.d.ts.map +1 -0
- package/dist/components/inline-currency-field.js +46 -0
- package/dist/components/inline-field.d.ts +16 -0
- package/dist/components/inline-field.d.ts.map +1 -0
- package/dist/components/inline-field.js +45 -0
- package/dist/components/inline-language-field.d.ts +12 -0
- package/dist/components/inline-language-field.d.ts.map +1 -0
- package/dist/components/inline-language-field.js +46 -0
- package/dist/components/inline-number-field.d.ts +15 -0
- package/dist/components/inline-number-field.d.ts.map +1 -0
- package/dist/components/inline-number-field.js +58 -0
- package/dist/components/inline-select-field.d.ts +19 -0
- package/dist/components/inline-select-field.d.ts.map +1 -0
- package/dist/components/inline-select-field.js +34 -0
- package/dist/components/quote-summary-card.d.ts +11 -0
- package/dist/components/quote-summary-card.d.ts.map +1 -0
- package/dist/components/quote-summary-card.js +11 -0
- package/dist/components/quote-version-detail-sections.d.ts +22 -0
- package/dist/components/quote-version-detail-sections.d.ts.map +1 -0
- package/dist/components/quote-version-detail-sections.js +87 -0
- package/dist/components/quote-versions-page.d.ts +8 -0
- package/dist/components/quote-versions-page.d.ts.map +1 -0
- package/dist/components/quote-versions-page.js +30 -0
- package/dist/components/quotes-board.d.ts +8 -0
- package/dist/components/quotes-board.d.ts.map +1 -0
- package/dist/components/quotes-board.js +24 -0
- package/dist/hooks/index.d.ts +10 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +9 -0
- package/dist/hooks/use-pipeline-mutation.d.ts +76 -0
- package/dist/hooks/use-pipeline-mutation.d.ts.map +1 -0
- package/dist/hooks/use-pipeline-mutation.js +76 -0
- package/dist/hooks/use-pipelines.d.ts +31 -0
- package/dist/hooks/use-pipelines.d.ts.map +1 -0
- package/dist/hooks/use-pipelines.js +42 -0
- package/dist/hooks/use-quote-mutation.d.ts +72 -0
- package/dist/hooks/use-quote-mutation.d.ts.map +1 -0
- package/dist/hooks/use-quote-mutation.js +50 -0
- package/dist/hooks/use-quote-version-mutation.d.ts +272 -0
- package/dist/hooks/use-quote-version-mutation.d.ts.map +1 -0
- package/dist/hooks/use-quote-version-mutation.js +164 -0
- package/dist/hooks/use-quote-version.d.ts +37 -0
- package/dist/hooks/use-quote-version.d.ts.map +1 -0
- package/dist/hooks/use-quote-version.js +34 -0
- package/dist/hooks/use-quote-versions.d.ts +30 -0
- package/dist/hooks/use-quote-versions.d.ts.map +1 -0
- package/dist/hooks/use-quote-versions.js +27 -0
- package/dist/hooks/use-quote.d.ts +26 -0
- package/dist/hooks/use-quote.d.ts.map +1 -0
- package/dist/hooks/use-quote.js +23 -0
- package/dist/hooks/use-quotes.d.ts +36 -0
- package/dist/hooks/use-quotes.d.ts.map +1 -0
- package/dist/hooks/use-quotes.js +44 -0
- package/dist/hooks/use-stages.d.ts +37 -0
- package/dist/hooks/use-stages.d.ts.map +1 -0
- package/dist/hooks/use-stages.js +45 -0
- package/dist/i18n/en/base.d.ts +189 -0
- package/dist/i18n/en/base.d.ts.map +1 -0
- package/dist/i18n/en/base.js +188 -0
- package/dist/i18n/en/commerce.d.ts +133 -0
- package/dist/i18n/en/commerce.d.ts.map +1 -0
- package/dist/i18n/en/commerce.js +132 -0
- package/dist/i18n/en/detail.d.ts +211 -0
- package/dist/i18n/en/detail.d.ts.map +1 -0
- package/dist/i18n/en/detail.js +210 -0
- package/dist/i18n/en/lists.d.ts +75 -0
- package/dist/i18n/en/lists.d.ts.map +1 -0
- package/dist/i18n/en/lists.js +74 -0
- package/dist/i18n/en.d.ts +599 -0
- package/dist/i18n/en.d.ts.map +1 -0
- package/dist/i18n/en.js +10 -0
- package/dist/i18n/index.d.ts +5 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +3 -0
- package/dist/i18n/messages.d.ts +577 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/i18n/messages.js +15 -0
- package/dist/i18n/provider.d.ts +1220 -0
- package/dist/i18n/provider.d.ts.map +1 -0
- package/dist/i18n/provider.js +44 -0
- package/dist/i18n/ro/base.d.ts +189 -0
- package/dist/i18n/ro/base.d.ts.map +1 -0
- package/dist/i18n/ro/base.js +188 -0
- package/dist/i18n/ro/commerce.d.ts +133 -0
- package/dist/i18n/ro/commerce.d.ts.map +1 -0
- package/dist/i18n/ro/commerce.js +132 -0
- package/dist/i18n/ro/detail.d.ts +211 -0
- package/dist/i18n/ro/detail.d.ts.map +1 -0
- package/dist/i18n/ro/detail.js +210 -0
- package/dist/i18n/ro/lists.d.ts +75 -0
- package/dist/i18n/ro/lists.d.ts.map +1 -0
- package/dist/i18n/ro/lists.js +74 -0
- package/dist/i18n/ro.d.ts +599 -0
- package/dist/i18n/ro.d.ts.map +1 -0
- package/dist/i18n/ro.js +10 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +21 -0
- package/dist/provider.d.ts +2 -0
- package/dist/provider.d.ts.map +1 -0
- package/dist/provider.js +1 -0
- package/dist/query-keys.d.ts +44 -0
- package/dist/query-keys.d.ts.map +1 -0
- package/dist/query-keys.js +16 -0
- package/dist/query-options.d.ts +678 -0
- package/dist/query-options.d.ts.map +1 -0
- package/dist/query-options.js +160 -0
- package/dist/schemas.d.ts +348 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +101 -0
- package/dist/ui.d.ts +8 -0
- package/dist/ui.d.ts.map +1 -0
- package/dist/ui.js +7 -0
- package/package.json +117 -0
- package/src/styles.css +11 -0
|
@@ -0,0 +1,599 @@
|
|
|
1
|
+
export declare const crmUiEn: {
|
|
2
|
+
createActivityDialog: {
|
|
3
|
+
readonly title: "New activity";
|
|
4
|
+
readonly description: "Log a call, email, meeting, or task.";
|
|
5
|
+
readonly fields: {
|
|
6
|
+
readonly subject: "Subject";
|
|
7
|
+
readonly type: "Type";
|
|
8
|
+
readonly status: "Status";
|
|
9
|
+
readonly description: "Description";
|
|
10
|
+
readonly linkTo: "Link to";
|
|
11
|
+
readonly entityId: "Entity";
|
|
12
|
+
};
|
|
13
|
+
readonly placeholders: {
|
|
14
|
+
readonly subject: "Discovery call with Acme";
|
|
15
|
+
readonly entityId: "Search or paste a reference";
|
|
16
|
+
};
|
|
17
|
+
readonly validation: {
|
|
18
|
+
readonly subjectRequired: "Subject is required";
|
|
19
|
+
readonly createFailed: "Failed to create activity";
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
createQuoteDialog: {
|
|
23
|
+
readonly title: "New quote";
|
|
24
|
+
readonly fields: {
|
|
25
|
+
readonly title: "Title";
|
|
26
|
+
readonly stage: "Stage";
|
|
27
|
+
};
|
|
28
|
+
readonly placeholders: {
|
|
29
|
+
readonly title: "New quote";
|
|
30
|
+
readonly stage: "Select stage...";
|
|
31
|
+
};
|
|
32
|
+
readonly validation: {
|
|
33
|
+
readonly titleRequired: "Title is required";
|
|
34
|
+
readonly stageRequired: "Stage is required";
|
|
35
|
+
readonly createFailed: "Failed to create quote";
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
quotesBoard: {
|
|
39
|
+
readonly fallbackName: "Unnamed stage";
|
|
40
|
+
};
|
|
41
|
+
quoteSummaryCard: {
|
|
42
|
+
readonly unknown: "Unknown";
|
|
43
|
+
readonly expectedClose: "Expected close";
|
|
44
|
+
};
|
|
45
|
+
inlineEditor: {
|
|
46
|
+
readonly failedToSave: "Failed to save.";
|
|
47
|
+
readonly notSet: "Not set";
|
|
48
|
+
readonly selectPlaceholder: "Select...";
|
|
49
|
+
readonly noneOption: "None";
|
|
50
|
+
readonly invalidNumber: "Enter a valid number.";
|
|
51
|
+
readonly minNumber: "Must be at least {min}.";
|
|
52
|
+
readonly maxNumber: "Must be at most {max}.";
|
|
53
|
+
readonly searchCurrencyPlaceholder: "Search currency...";
|
|
54
|
+
readonly noCurrenciesFound: "No currencies found.";
|
|
55
|
+
readonly searchLanguagePlaceholder: "Search language...";
|
|
56
|
+
readonly noLanguagesFound: "No languages found.";
|
|
57
|
+
readonly addTemplate: "Add {label}";
|
|
58
|
+
readonly addTagPlaceholder: "Add tag...";
|
|
59
|
+
readonly tagAlreadyAdded: "Tag already added.";
|
|
60
|
+
readonly addTagFailed: "Failed to add tag.";
|
|
61
|
+
readonly removeTagFailed: "Failed to remove tag.";
|
|
62
|
+
};
|
|
63
|
+
createQuoteVersionDialog: {
|
|
64
|
+
readonly title: "New quote version";
|
|
65
|
+
readonly fields: {
|
|
66
|
+
readonly quote: "Quote";
|
|
67
|
+
readonly currency: "Currency";
|
|
68
|
+
readonly validUntil: "Valid until";
|
|
69
|
+
};
|
|
70
|
+
readonly placeholders: {
|
|
71
|
+
readonly searchQuotes: "Search quotes...";
|
|
72
|
+
readonly selectCurrency: "Select currency...";
|
|
73
|
+
readonly pickDate: "Pick a date";
|
|
74
|
+
};
|
|
75
|
+
readonly empty: {
|
|
76
|
+
readonly loading: "Loading...";
|
|
77
|
+
readonly noQuotes: "No quotes found.";
|
|
78
|
+
};
|
|
79
|
+
readonly validation: {
|
|
80
|
+
readonly selectQuote: "Please select a quote";
|
|
81
|
+
readonly selectCurrency: "Please select a currency";
|
|
82
|
+
readonly createFailed: "Failed to create quote version";
|
|
83
|
+
};
|
|
84
|
+
readonly actions: {
|
|
85
|
+
readonly create: "Create";
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
quoteVersionLinesCard: {
|
|
89
|
+
readonly title: "Version line items";
|
|
90
|
+
readonly empty: "No line items yet.";
|
|
91
|
+
readonly fields: {
|
|
92
|
+
readonly description: "Description";
|
|
93
|
+
readonly quantity: "Qty";
|
|
94
|
+
readonly priceCents: "Price";
|
|
95
|
+
};
|
|
96
|
+
readonly validation: {
|
|
97
|
+
readonly descriptionRequired: "Description is required";
|
|
98
|
+
readonly addFailed: "Failed to add line";
|
|
99
|
+
};
|
|
100
|
+
readonly subtotal: "Subtotal";
|
|
101
|
+
};
|
|
102
|
+
activitiesPage: {
|
|
103
|
+
readonly title: "Activities";
|
|
104
|
+
readonly description: "Calls, emails, meetings, tasks, and follow-ups across your CRM.";
|
|
105
|
+
readonly create: "New activity";
|
|
106
|
+
readonly filters: {
|
|
107
|
+
readonly type: "Type";
|
|
108
|
+
readonly status: "Status";
|
|
109
|
+
readonly allTypes: "All types";
|
|
110
|
+
readonly allStatuses: "All statuses";
|
|
111
|
+
};
|
|
112
|
+
readonly empty: "No activities match your filters.";
|
|
113
|
+
};
|
|
114
|
+
quoteVersionsPage: {
|
|
115
|
+
readonly title: "Quote versions";
|
|
116
|
+
readonly description: "Quote versions issued for quotes in your pipeline.";
|
|
117
|
+
readonly create: "New quote version";
|
|
118
|
+
readonly filters: {
|
|
119
|
+
readonly status: "Status";
|
|
120
|
+
readonly allStatuses: "All statuses";
|
|
121
|
+
};
|
|
122
|
+
readonly columns: {
|
|
123
|
+
readonly quoteVersion: "Version";
|
|
124
|
+
readonly status: "Status";
|
|
125
|
+
readonly total: "Total";
|
|
126
|
+
readonly validUntil: "Valid until";
|
|
127
|
+
readonly updated: "Updated";
|
|
128
|
+
};
|
|
129
|
+
readonly loadFailed: "Failed to load quotes.";
|
|
130
|
+
readonly empty: "No quotes found.";
|
|
131
|
+
};
|
|
132
|
+
organizationDetailPage: {
|
|
133
|
+
readonly notFound: "Organization not found";
|
|
134
|
+
readonly backToOrganizations: "Back to Organizations";
|
|
135
|
+
};
|
|
136
|
+
organizationDetail: {
|
|
137
|
+
readonly topBar: {
|
|
138
|
+
readonly organizations: "Organizations";
|
|
139
|
+
readonly merge: "Merge";
|
|
140
|
+
readonly delete: "Delete";
|
|
141
|
+
readonly deleteTitle: "Delete this organization?";
|
|
142
|
+
readonly deleteDescription: "This will permanently remove the organization. People linked to it will remain.";
|
|
143
|
+
};
|
|
144
|
+
readonly mergeDialog: {
|
|
145
|
+
readonly title: "Merge organization";
|
|
146
|
+
readonly description: "Move CRM history and references from a duplicate organization into this organization.";
|
|
147
|
+
readonly keepLabel: "Keep";
|
|
148
|
+
readonly mergeLabel: "Duplicate to merge";
|
|
149
|
+
readonly placeholder: "Search organizations...";
|
|
150
|
+
readonly empty: "No organizations found.";
|
|
151
|
+
readonly selfError: "Choose a different organization to merge.";
|
|
152
|
+
readonly action: "Merge organization";
|
|
153
|
+
};
|
|
154
|
+
readonly sidebar: {
|
|
155
|
+
readonly about: "About";
|
|
156
|
+
readonly tags: "Tags";
|
|
157
|
+
readonly fields: {
|
|
158
|
+
readonly name: "Name";
|
|
159
|
+
readonly legalName: "Legal name";
|
|
160
|
+
readonly website: "Website";
|
|
161
|
+
readonly industry: "Industry";
|
|
162
|
+
readonly relation: "Relation";
|
|
163
|
+
readonly status: "Status";
|
|
164
|
+
readonly defaultCurrency: "Default currency";
|
|
165
|
+
readonly preferredLanguage: "Preferred language";
|
|
166
|
+
readonly paymentTerms: "Payment terms (days)";
|
|
167
|
+
readonly source: "Source";
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
readonly metrics: {
|
|
171
|
+
readonly people: "People";
|
|
172
|
+
readonly openQuotes: "Open quotes";
|
|
173
|
+
readonly pipelineValue: "Pipeline value";
|
|
174
|
+
readonly won: "Won";
|
|
175
|
+
};
|
|
176
|
+
readonly tabs: {
|
|
177
|
+
readonly overview: "Overview";
|
|
178
|
+
readonly people: "People";
|
|
179
|
+
readonly quotes: "Quotes";
|
|
180
|
+
readonly activities: "Activities";
|
|
181
|
+
readonly bookings: "Bookings";
|
|
182
|
+
readonly invoices: "Invoices";
|
|
183
|
+
readonly payments: "Payments";
|
|
184
|
+
readonly contracts: "Contracts";
|
|
185
|
+
};
|
|
186
|
+
readonly sections: {
|
|
187
|
+
readonly created: "Created";
|
|
188
|
+
readonly updated: "Updated";
|
|
189
|
+
readonly notes: "Notes";
|
|
190
|
+
};
|
|
191
|
+
readonly empty: {
|
|
192
|
+
readonly noPeople: "No people linked to this organization.";
|
|
193
|
+
readonly unnamed: "Unnamed";
|
|
194
|
+
readonly noQuotes: "No quotes.";
|
|
195
|
+
readonly noActivities: "No activities yet.";
|
|
196
|
+
};
|
|
197
|
+
readonly hint: "Fields update on the left panel. Hover to reveal the edit icon.";
|
|
198
|
+
};
|
|
199
|
+
personDetailPage: {
|
|
200
|
+
readonly notFound: "Person not found";
|
|
201
|
+
readonly backToPeople: "Back to People";
|
|
202
|
+
};
|
|
203
|
+
personDetail: {
|
|
204
|
+
readonly topBar: {
|
|
205
|
+
readonly people: "People";
|
|
206
|
+
readonly edit: "Edit";
|
|
207
|
+
readonly merge: "Merge";
|
|
208
|
+
readonly delete: "Delete";
|
|
209
|
+
readonly deleteTitle: "Delete this person?";
|
|
210
|
+
readonly deleteDescription: "This will permanently remove the person and their CRM links from this workspace.";
|
|
211
|
+
};
|
|
212
|
+
readonly mergeDialog: {
|
|
213
|
+
readonly title: "Merge person";
|
|
214
|
+
readonly description: "Move bookings, invoices, notes, and CRM history from a duplicate into this person.";
|
|
215
|
+
readonly keepLabel: "Keep";
|
|
216
|
+
readonly mergeLabel: "Duplicate to merge";
|
|
217
|
+
readonly placeholder: "Search people...";
|
|
218
|
+
readonly empty: "No people found.";
|
|
219
|
+
readonly selfError: "Choose a different person to merge.";
|
|
220
|
+
readonly action: "Merge person";
|
|
221
|
+
};
|
|
222
|
+
readonly sidebar: {
|
|
223
|
+
readonly about: "About";
|
|
224
|
+
readonly tags: "Tags";
|
|
225
|
+
readonly openWebsite: "Open website";
|
|
226
|
+
readonly fields: {
|
|
227
|
+
readonly firstName: "First name";
|
|
228
|
+
readonly lastName: "Last name";
|
|
229
|
+
readonly jobTitle: "Job title";
|
|
230
|
+
readonly email: "Email";
|
|
231
|
+
readonly phone: "Phone";
|
|
232
|
+
readonly website: "Website";
|
|
233
|
+
readonly relation: "Relation";
|
|
234
|
+
readonly status: "Status";
|
|
235
|
+
readonly preferredCurrency: "Preferred currency";
|
|
236
|
+
readonly preferredLanguage: "Preferred language";
|
|
237
|
+
readonly dateOfBirth: "Date of birth";
|
|
238
|
+
readonly source: "Source";
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
readonly metrics: {
|
|
242
|
+
readonly openQuotes: "Open quotes";
|
|
243
|
+
readonly pipelineValue: "Pipeline value";
|
|
244
|
+
readonly documents: "Documents";
|
|
245
|
+
readonly activities: "Activities";
|
|
246
|
+
};
|
|
247
|
+
readonly tabs: {
|
|
248
|
+
readonly overview: "Overview";
|
|
249
|
+
readonly quotes: "Quotes";
|
|
250
|
+
readonly activities: "Activities";
|
|
251
|
+
readonly relationships: "Relationships";
|
|
252
|
+
readonly documents: "Documents";
|
|
253
|
+
readonly addresses: "Addresses";
|
|
254
|
+
readonly bookings: "Bookings";
|
|
255
|
+
readonly invoices: "Invoices";
|
|
256
|
+
readonly payments: "Payments";
|
|
257
|
+
readonly contracts: "Contracts";
|
|
258
|
+
};
|
|
259
|
+
readonly sections: {
|
|
260
|
+
readonly created: "Created";
|
|
261
|
+
readonly updated: "Updated";
|
|
262
|
+
readonly organization: "Organization";
|
|
263
|
+
readonly notes: "Notes";
|
|
264
|
+
readonly travelProfile: "Travel profile";
|
|
265
|
+
readonly dateOfBirth: "Date of birth";
|
|
266
|
+
readonly dietaryRequirements: "Dietary requirements";
|
|
267
|
+
readonly accessibilityNeeds: "Accessibility needs";
|
|
268
|
+
readonly passportExpiry: "Passport expiry";
|
|
269
|
+
readonly passportIssuingCountry: "Passport country";
|
|
270
|
+
readonly passportIssuingAuthority: "Passport authority";
|
|
271
|
+
readonly primary: "Primary";
|
|
272
|
+
};
|
|
273
|
+
readonly relationshipKindLabels: {
|
|
274
|
+
readonly spouse: "Spouse";
|
|
275
|
+
readonly partner: "Partner";
|
|
276
|
+
readonly parent: "Parent";
|
|
277
|
+
readonly child: "Child";
|
|
278
|
+
readonly sibling: "Sibling";
|
|
279
|
+
readonly guardian: "Guardian";
|
|
280
|
+
readonly ward: "Ward";
|
|
281
|
+
readonly emergency_contact: "Emergency contact";
|
|
282
|
+
readonly friend: "Friend";
|
|
283
|
+
readonly travel_companion: "Travel companion";
|
|
284
|
+
readonly other: "Other";
|
|
285
|
+
};
|
|
286
|
+
readonly documentTypeLabels: {
|
|
287
|
+
readonly passport: "Passport";
|
|
288
|
+
readonly id_card: "ID card";
|
|
289
|
+
readonly driver_license: "Driver license";
|
|
290
|
+
readonly visa: "Visa";
|
|
291
|
+
readonly other: "Other";
|
|
292
|
+
};
|
|
293
|
+
readonly empty: {
|
|
294
|
+
readonly noQuotes: "No quotes.";
|
|
295
|
+
readonly noActivities: "No activities yet.";
|
|
296
|
+
readonly noRelationships: "No relationships linked to this person.";
|
|
297
|
+
readonly noDocuments: "No documents.";
|
|
298
|
+
readonly noTravelProfile: "No travel profile data.";
|
|
299
|
+
};
|
|
300
|
+
readonly hint: "Fields update on the left panel. Hover to reveal the edit icon.";
|
|
301
|
+
};
|
|
302
|
+
personDocument: {
|
|
303
|
+
readonly row: {
|
|
304
|
+
readonly decrypting: "Decrypting…";
|
|
305
|
+
readonly noNumberOnFile: "(no number on file)";
|
|
306
|
+
readonly revealFailed: "Failed to reveal.";
|
|
307
|
+
readonly revealAria: "Reveal number";
|
|
308
|
+
readonly hideAria: "Hide number";
|
|
309
|
+
readonly editAria: "Edit document";
|
|
310
|
+
readonly deleteButton: "Delete";
|
|
311
|
+
readonly deleteTitle: "Delete document";
|
|
312
|
+
readonly deleteDescription: "This will permanently remove this document.";
|
|
313
|
+
readonly deleteConfirm: "Delete";
|
|
314
|
+
};
|
|
315
|
+
readonly dialog: {
|
|
316
|
+
readonly title: "Edit document";
|
|
317
|
+
readonly description: "Update document details. Numbers are encrypted at rest and audit-logged on reveal.";
|
|
318
|
+
readonly revealFailed: "Failed to reveal document.";
|
|
319
|
+
readonly fields: {
|
|
320
|
+
readonly type: "Type";
|
|
321
|
+
readonly number: "Number";
|
|
322
|
+
readonly issuingCountry: "Issuing country";
|
|
323
|
+
readonly issuingAuthority: "Issuing authority";
|
|
324
|
+
readonly issueDate: "Issue date";
|
|
325
|
+
readonly expiryDate: "Expiry date";
|
|
326
|
+
readonly primary: "Set as primary for this type";
|
|
327
|
+
readonly notes: "Notes";
|
|
328
|
+
};
|
|
329
|
+
readonly placeholders: {
|
|
330
|
+
readonly number: "Document number";
|
|
331
|
+
readonly issuingCountry: "ISO code (e.g. RO)";
|
|
332
|
+
};
|
|
333
|
+
readonly loading: "Loading document…";
|
|
334
|
+
readonly saveFailed: "Failed to save document.";
|
|
335
|
+
readonly cancel: "Cancel";
|
|
336
|
+
readonly save: "Save";
|
|
337
|
+
readonly saving: "Saving…";
|
|
338
|
+
};
|
|
339
|
+
};
|
|
340
|
+
personCard: {
|
|
341
|
+
readonly unnamed: "Unnamed";
|
|
342
|
+
};
|
|
343
|
+
personCardConnected: {
|
|
344
|
+
readonly loadFailed: "Failed to load person:";
|
|
345
|
+
};
|
|
346
|
+
personList: {
|
|
347
|
+
readonly searchPlaceholder: "Search people...";
|
|
348
|
+
readonly create: "New person";
|
|
349
|
+
readonly columns: {
|
|
350
|
+
readonly name: "Name";
|
|
351
|
+
readonly email: "Email";
|
|
352
|
+
readonly phone: "Phone";
|
|
353
|
+
readonly relation: "Relation";
|
|
354
|
+
readonly status: "Status";
|
|
355
|
+
};
|
|
356
|
+
readonly filters: {
|
|
357
|
+
readonly button: "Filters";
|
|
358
|
+
readonly relationLabel: "Relation";
|
|
359
|
+
readonly relationAll: "All relations";
|
|
360
|
+
readonly statusLabel: "Status";
|
|
361
|
+
readonly statusAll: "All statuses";
|
|
362
|
+
readonly organizationLabel: "Organization";
|
|
363
|
+
readonly organizationAny: "Any organization";
|
|
364
|
+
readonly organizationEmpty: "No organizations found.";
|
|
365
|
+
readonly clear: "Clear";
|
|
366
|
+
};
|
|
367
|
+
readonly loadFailed: "Failed to load people.";
|
|
368
|
+
readonly empty: "No people found.";
|
|
369
|
+
};
|
|
370
|
+
peoplePage: {
|
|
371
|
+
readonly title: "People";
|
|
372
|
+
readonly description: "Contacts, travelers, agents, and partners across your CRM.";
|
|
373
|
+
};
|
|
374
|
+
organizationList: {
|
|
375
|
+
readonly searchPlaceholder: "Search organizations...";
|
|
376
|
+
readonly create: "New organization";
|
|
377
|
+
readonly columns: {
|
|
378
|
+
readonly name: "Name";
|
|
379
|
+
readonly industry: "Industry";
|
|
380
|
+
readonly relation: "Relation";
|
|
381
|
+
readonly website: "Website";
|
|
382
|
+
readonly status: "Status";
|
|
383
|
+
readonly updated: "Updated";
|
|
384
|
+
};
|
|
385
|
+
readonly filters: {
|
|
386
|
+
readonly button: "Filters";
|
|
387
|
+
readonly relationLabel: "Relation";
|
|
388
|
+
readonly relationAll: "All relations";
|
|
389
|
+
readonly statusLabel: "Status";
|
|
390
|
+
readonly statusAll: "All statuses";
|
|
391
|
+
readonly clear: "Clear";
|
|
392
|
+
};
|
|
393
|
+
readonly loadFailed: "Failed to load organizations.";
|
|
394
|
+
readonly empty: "No organizations found.";
|
|
395
|
+
};
|
|
396
|
+
organizationsPage: {
|
|
397
|
+
readonly title: "Organizations";
|
|
398
|
+
readonly description: "Companies, agencies, suppliers, and account relationships.";
|
|
399
|
+
};
|
|
400
|
+
entityComboboxes: {
|
|
401
|
+
readonly person: {
|
|
402
|
+
readonly placeholder: "Search people...";
|
|
403
|
+
readonly empty: "No people found.";
|
|
404
|
+
readonly loading: "Loading people...";
|
|
405
|
+
};
|
|
406
|
+
readonly organization: {
|
|
407
|
+
readonly placeholder: "Search organizations...";
|
|
408
|
+
readonly empty: "No organizations found.";
|
|
409
|
+
readonly loading: "Loading organizations...";
|
|
410
|
+
};
|
|
411
|
+
};
|
|
412
|
+
common: {
|
|
413
|
+
readonly cancel: "Cancel";
|
|
414
|
+
readonly done: "Done";
|
|
415
|
+
readonly saveChanges: "Save changes";
|
|
416
|
+
readonly create: "Create";
|
|
417
|
+
readonly saving: "Saving...";
|
|
418
|
+
readonly none: "—";
|
|
419
|
+
readonly unknownError: "Unknown error";
|
|
420
|
+
readonly today: "today";
|
|
421
|
+
readonly previous: "Previous";
|
|
422
|
+
readonly next: "Next";
|
|
423
|
+
readonly page: "Page";
|
|
424
|
+
readonly pageSummary: "Showing {shown} of {total}";
|
|
425
|
+
readonly loading: "Loading...";
|
|
426
|
+
readonly activityTypeLabels: {
|
|
427
|
+
readonly note: "Note";
|
|
428
|
+
readonly call: "Call";
|
|
429
|
+
readonly email: "Email";
|
|
430
|
+
readonly meeting: "Meeting";
|
|
431
|
+
readonly task: "Task";
|
|
432
|
+
readonly follow_up: "Follow-up";
|
|
433
|
+
};
|
|
434
|
+
readonly activityStatusLabels: {
|
|
435
|
+
readonly planned: "Planned";
|
|
436
|
+
readonly done: "Done";
|
|
437
|
+
readonly cancelled: "Cancelled";
|
|
438
|
+
};
|
|
439
|
+
readonly relationTypeLabels: {
|
|
440
|
+
readonly client: "Client";
|
|
441
|
+
readonly partner: "Partner";
|
|
442
|
+
readonly supplier: "Supplier";
|
|
443
|
+
readonly other: "Other";
|
|
444
|
+
};
|
|
445
|
+
readonly recordStatusLabels: {
|
|
446
|
+
readonly active: "Active";
|
|
447
|
+
readonly inactive: "Inactive";
|
|
448
|
+
readonly archived: "Archived";
|
|
449
|
+
};
|
|
450
|
+
readonly entityTypeLabels: {
|
|
451
|
+
readonly none: "None";
|
|
452
|
+
readonly person: "Person";
|
|
453
|
+
readonly organization: "Organization";
|
|
454
|
+
readonly quote: "Quote";
|
|
455
|
+
readonly activity: "Activity";
|
|
456
|
+
};
|
|
457
|
+
readonly quoteStatusLabels: {
|
|
458
|
+
readonly open: "Open";
|
|
459
|
+
readonly won: "Won";
|
|
460
|
+
readonly lost: "Lost";
|
|
461
|
+
readonly archived: "Archived";
|
|
462
|
+
};
|
|
463
|
+
readonly quoteVersionStatusLabels: {
|
|
464
|
+
readonly draft: "Draft";
|
|
465
|
+
readonly sent: "Sent";
|
|
466
|
+
readonly accepted: "Accepted";
|
|
467
|
+
readonly declined: "Declined";
|
|
468
|
+
readonly superseded: "Superseded";
|
|
469
|
+
readonly expired: "Expired";
|
|
470
|
+
};
|
|
471
|
+
readonly relativeTime: {
|
|
472
|
+
readonly daysAgo: "{count}d ago";
|
|
473
|
+
readonly weeksAgo: "{count}w ago";
|
|
474
|
+
readonly monthsAgo: "{count}mo ago";
|
|
475
|
+
readonly yearsAgo: "{count}y ago";
|
|
476
|
+
};
|
|
477
|
+
};
|
|
478
|
+
organizationForm: {
|
|
479
|
+
readonly fields: {
|
|
480
|
+
readonly name: "Name";
|
|
481
|
+
readonly legalName: "Legal name";
|
|
482
|
+
readonly taxId: "Tax ID";
|
|
483
|
+
readonly website: "Website";
|
|
484
|
+
readonly industry: "Industry";
|
|
485
|
+
readonly billingEmail: "Billing email";
|
|
486
|
+
readonly billingAddressLine1: "Billing address line 1";
|
|
487
|
+
readonly billingAddressLine2: "Billing address line 2";
|
|
488
|
+
readonly billingCity: "Billing city";
|
|
489
|
+
readonly billingRegion: "Billing region";
|
|
490
|
+
readonly billingPostalCode: "Billing postal code";
|
|
491
|
+
readonly billingCountry: "Billing country";
|
|
492
|
+
};
|
|
493
|
+
readonly actions: {
|
|
494
|
+
readonly create: "Create organization";
|
|
495
|
+
};
|
|
496
|
+
readonly validation: {
|
|
497
|
+
readonly nameRequired: "Organization name is required.";
|
|
498
|
+
readonly saveFailed: "Failed to save organization.";
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
personForm: {
|
|
502
|
+
readonly fields: {
|
|
503
|
+
readonly firstName: "First name";
|
|
504
|
+
readonly lastName: "Last name";
|
|
505
|
+
readonly jobTitle: "Job title";
|
|
506
|
+
readonly email: "Email";
|
|
507
|
+
readonly phone: "Phone";
|
|
508
|
+
readonly dateOfBirth: "Date of birth";
|
|
509
|
+
readonly addressLine1: "Address line 1";
|
|
510
|
+
readonly addressLine2: "Address line 2";
|
|
511
|
+
readonly addressCity: "City";
|
|
512
|
+
readonly addressRegion: "Region";
|
|
513
|
+
readonly addressPostalCode: "Postal code";
|
|
514
|
+
readonly addressCountry: "Country";
|
|
515
|
+
};
|
|
516
|
+
readonly sections: {
|
|
517
|
+
readonly identity: "Identity";
|
|
518
|
+
readonly contact: "Contact";
|
|
519
|
+
readonly address: "Address";
|
|
520
|
+
readonly addresses: "Addresses";
|
|
521
|
+
readonly relationships: "Relationships";
|
|
522
|
+
readonly documents: "Documents";
|
|
523
|
+
};
|
|
524
|
+
readonly relationships: {
|
|
525
|
+
readonly empty: "No relationships on file.";
|
|
526
|
+
readonly add: "Add relationship";
|
|
527
|
+
readonly personLabel: "Person";
|
|
528
|
+
readonly personPlaceholder: "Search people…";
|
|
529
|
+
readonly personEmpty: "No people found.";
|
|
530
|
+
readonly kindLabel: "Relationship";
|
|
531
|
+
readonly primaryToggle: "Primary";
|
|
532
|
+
readonly notesLabel: "Notes";
|
|
533
|
+
readonly remove: "Remove";
|
|
534
|
+
readonly saveFailed: "Failed to save relationship.";
|
|
535
|
+
};
|
|
536
|
+
readonly addresses: {
|
|
537
|
+
readonly empty: "No addresses on file.";
|
|
538
|
+
readonly add: "Add address";
|
|
539
|
+
readonly edit: "Edit";
|
|
540
|
+
readonly remove: "Remove";
|
|
541
|
+
readonly saving: "Saving…";
|
|
542
|
+
readonly saveFailed: "Failed to save address.";
|
|
543
|
+
readonly noValue: "—";
|
|
544
|
+
readonly primaryToggle: "Primary address";
|
|
545
|
+
readonly typeLabel: "Type";
|
|
546
|
+
readonly typePrimary: "primary";
|
|
547
|
+
readonly typeBilling: "billing";
|
|
548
|
+
readonly typeShipping: "shipping";
|
|
549
|
+
readonly typeMailing: "mailing";
|
|
550
|
+
readonly typeMeeting: "meeting";
|
|
551
|
+
readonly typeService: "service";
|
|
552
|
+
readonly typeLegal: "legal";
|
|
553
|
+
readonly typeOther: "other";
|
|
554
|
+
readonly notesLabel: "Notes";
|
|
555
|
+
readonly dialogAddTitle: "Add address";
|
|
556
|
+
readonly dialogAddDescription: "Add another address for this person.";
|
|
557
|
+
readonly dialogEditTitle: "Edit address";
|
|
558
|
+
readonly dialogEditDescription: "Update the address details.";
|
|
559
|
+
};
|
|
560
|
+
readonly documents: {
|
|
561
|
+
readonly empty: "No documents on file.";
|
|
562
|
+
readonly add: "Add document";
|
|
563
|
+
readonly type: "Type";
|
|
564
|
+
readonly number: "Number";
|
|
565
|
+
readonly issuingCountry: "Issuing country";
|
|
566
|
+
readonly expiryDate: "Expiry date";
|
|
567
|
+
readonly save: "Save document";
|
|
568
|
+
readonly remove: "Remove";
|
|
569
|
+
};
|
|
570
|
+
readonly actions: {
|
|
571
|
+
readonly create: "Create person";
|
|
572
|
+
};
|
|
573
|
+
readonly validation: {
|
|
574
|
+
readonly nameRequired: "First and last name are required.";
|
|
575
|
+
readonly saveFailed: "Failed to save person.";
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
organizationDialog: {
|
|
579
|
+
readonly titles: {
|
|
580
|
+
readonly create: "New organization";
|
|
581
|
+
readonly edit: "Edit organization";
|
|
582
|
+
};
|
|
583
|
+
readonly descriptions: {
|
|
584
|
+
readonly create: "Add a new company to your CRM.";
|
|
585
|
+
readonly edit: "Update company details and account metadata.";
|
|
586
|
+
};
|
|
587
|
+
};
|
|
588
|
+
personDialog: {
|
|
589
|
+
readonly titles: {
|
|
590
|
+
readonly create: "New person";
|
|
591
|
+
readonly edit: "Edit person";
|
|
592
|
+
};
|
|
593
|
+
readonly descriptions: {
|
|
594
|
+
readonly create: "Add a new person to your CRM.";
|
|
595
|
+
readonly edit: "Update contact details and reference information.";
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
};
|
|
599
|
+
//# sourceMappingURL=en.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKK,CAAA"}
|
package/dist/i18n/en.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { crmUiEnBaseMessages } from "./en/base.js";
|
|
2
|
+
import { crmUiEnCommerceMessages } from "./en/commerce.js";
|
|
3
|
+
import { crmUiEnDetailMessages } from "./en/detail.js";
|
|
4
|
+
import { crmUiEnListsMessages } from "./en/lists.js";
|
|
5
|
+
export const crmUiEn = {
|
|
6
|
+
...crmUiEnBaseMessages,
|
|
7
|
+
...crmUiEnListsMessages,
|
|
8
|
+
...crmUiEnDetailMessages,
|
|
9
|
+
...crmUiEnCommerceMessages,
|
|
10
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { crmUiEn } from "./en.js";
|
|
2
|
+
export type { CrmActivityStatus, CrmActivityType, CrmEntityType, CrmRecordStatus, CrmRelationType, CrmUiMessages, } from "./messages.js";
|
|
3
|
+
export { type CrmUiMessageOverrides, CrmUiMessagesProvider, crmUiMessageDefinitions, getCrmUiI18n, resolveCrmUiMessages, useCrmUiI18n, useCrmUiI18nOrDefault, useCrmUiMessages, useCrmUiMessagesOrDefault, } from "./provider.js";
|
|
4
|
+
export { crmUiRo } from "./ro.js";
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;AACjC,YAAY,EACV,iBAAiB,EACjB,eAAe,EACf,aAAa,EACb,eAAe,EACf,eAAe,EACf,aAAa,GACd,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,KAAK,qBAAqB,EAC1B,qBAAqB,EACrB,uBAAuB,EACvB,YAAY,EACZ,oBAAoB,EACpB,YAAY,EACZ,qBAAqB,EACrB,gBAAgB,EAChB,yBAAyB,GAC1B,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA"}
|