@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,189 @@
|
|
|
1
|
+
export declare const crmUiEnBaseMessages: {
|
|
2
|
+
readonly common: {
|
|
3
|
+
readonly cancel: "Cancel";
|
|
4
|
+
readonly done: "Done";
|
|
5
|
+
readonly saveChanges: "Save changes";
|
|
6
|
+
readonly create: "Create";
|
|
7
|
+
readonly saving: "Saving...";
|
|
8
|
+
readonly none: "—";
|
|
9
|
+
readonly unknownError: "Unknown error";
|
|
10
|
+
readonly today: "today";
|
|
11
|
+
readonly previous: "Previous";
|
|
12
|
+
readonly next: "Next";
|
|
13
|
+
readonly page: "Page";
|
|
14
|
+
readonly pageSummary: "Showing {shown} of {total}";
|
|
15
|
+
readonly loading: "Loading...";
|
|
16
|
+
readonly activityTypeLabels: {
|
|
17
|
+
readonly note: "Note";
|
|
18
|
+
readonly call: "Call";
|
|
19
|
+
readonly email: "Email";
|
|
20
|
+
readonly meeting: "Meeting";
|
|
21
|
+
readonly task: "Task";
|
|
22
|
+
readonly follow_up: "Follow-up";
|
|
23
|
+
};
|
|
24
|
+
readonly activityStatusLabels: {
|
|
25
|
+
readonly planned: "Planned";
|
|
26
|
+
readonly done: "Done";
|
|
27
|
+
readonly cancelled: "Cancelled";
|
|
28
|
+
};
|
|
29
|
+
readonly relationTypeLabels: {
|
|
30
|
+
readonly client: "Client";
|
|
31
|
+
readonly partner: "Partner";
|
|
32
|
+
readonly supplier: "Supplier";
|
|
33
|
+
readonly other: "Other";
|
|
34
|
+
};
|
|
35
|
+
readonly recordStatusLabels: {
|
|
36
|
+
readonly active: "Active";
|
|
37
|
+
readonly inactive: "Inactive";
|
|
38
|
+
readonly archived: "Archived";
|
|
39
|
+
};
|
|
40
|
+
readonly entityTypeLabels: {
|
|
41
|
+
readonly none: "None";
|
|
42
|
+
readonly person: "Person";
|
|
43
|
+
readonly organization: "Organization";
|
|
44
|
+
readonly quote: "Quote";
|
|
45
|
+
readonly activity: "Activity";
|
|
46
|
+
};
|
|
47
|
+
readonly quoteStatusLabels: {
|
|
48
|
+
readonly open: "Open";
|
|
49
|
+
readonly won: "Won";
|
|
50
|
+
readonly lost: "Lost";
|
|
51
|
+
readonly archived: "Archived";
|
|
52
|
+
};
|
|
53
|
+
readonly quoteVersionStatusLabels: {
|
|
54
|
+
readonly draft: "Draft";
|
|
55
|
+
readonly sent: "Sent";
|
|
56
|
+
readonly accepted: "Accepted";
|
|
57
|
+
readonly declined: "Declined";
|
|
58
|
+
readonly superseded: "Superseded";
|
|
59
|
+
readonly expired: "Expired";
|
|
60
|
+
};
|
|
61
|
+
readonly relativeTime: {
|
|
62
|
+
readonly daysAgo: "{count}d ago";
|
|
63
|
+
readonly weeksAgo: "{count}w ago";
|
|
64
|
+
readonly monthsAgo: "{count}mo ago";
|
|
65
|
+
readonly yearsAgo: "{count}y ago";
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
readonly organizationForm: {
|
|
69
|
+
readonly fields: {
|
|
70
|
+
readonly name: "Name";
|
|
71
|
+
readonly legalName: "Legal name";
|
|
72
|
+
readonly taxId: "Tax ID";
|
|
73
|
+
readonly website: "Website";
|
|
74
|
+
readonly industry: "Industry";
|
|
75
|
+
readonly billingEmail: "Billing email";
|
|
76
|
+
readonly billingAddressLine1: "Billing address line 1";
|
|
77
|
+
readonly billingAddressLine2: "Billing address line 2";
|
|
78
|
+
readonly billingCity: "Billing city";
|
|
79
|
+
readonly billingRegion: "Billing region";
|
|
80
|
+
readonly billingPostalCode: "Billing postal code";
|
|
81
|
+
readonly billingCountry: "Billing country";
|
|
82
|
+
};
|
|
83
|
+
readonly actions: {
|
|
84
|
+
readonly create: "Create organization";
|
|
85
|
+
};
|
|
86
|
+
readonly validation: {
|
|
87
|
+
readonly nameRequired: "Organization name is required.";
|
|
88
|
+
readonly saveFailed: "Failed to save organization.";
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
readonly personForm: {
|
|
92
|
+
readonly fields: {
|
|
93
|
+
readonly firstName: "First name";
|
|
94
|
+
readonly lastName: "Last name";
|
|
95
|
+
readonly jobTitle: "Job title";
|
|
96
|
+
readonly email: "Email";
|
|
97
|
+
readonly phone: "Phone";
|
|
98
|
+
readonly dateOfBirth: "Date of birth";
|
|
99
|
+
readonly addressLine1: "Address line 1";
|
|
100
|
+
readonly addressLine2: "Address line 2";
|
|
101
|
+
readonly addressCity: "City";
|
|
102
|
+
readonly addressRegion: "Region";
|
|
103
|
+
readonly addressPostalCode: "Postal code";
|
|
104
|
+
readonly addressCountry: "Country";
|
|
105
|
+
};
|
|
106
|
+
readonly sections: {
|
|
107
|
+
readonly identity: "Identity";
|
|
108
|
+
readonly contact: "Contact";
|
|
109
|
+
readonly address: "Address";
|
|
110
|
+
readonly addresses: "Addresses";
|
|
111
|
+
readonly relationships: "Relationships";
|
|
112
|
+
readonly documents: "Documents";
|
|
113
|
+
};
|
|
114
|
+
readonly relationships: {
|
|
115
|
+
readonly empty: "No relationships on file.";
|
|
116
|
+
readonly add: "Add relationship";
|
|
117
|
+
readonly personLabel: "Person";
|
|
118
|
+
readonly personPlaceholder: "Search people…";
|
|
119
|
+
readonly personEmpty: "No people found.";
|
|
120
|
+
readonly kindLabel: "Relationship";
|
|
121
|
+
readonly primaryToggle: "Primary";
|
|
122
|
+
readonly notesLabel: "Notes";
|
|
123
|
+
readonly remove: "Remove";
|
|
124
|
+
readonly saveFailed: "Failed to save relationship.";
|
|
125
|
+
};
|
|
126
|
+
readonly addresses: {
|
|
127
|
+
readonly empty: "No addresses on file.";
|
|
128
|
+
readonly add: "Add address";
|
|
129
|
+
readonly edit: "Edit";
|
|
130
|
+
readonly remove: "Remove";
|
|
131
|
+
readonly saving: "Saving…";
|
|
132
|
+
readonly saveFailed: "Failed to save address.";
|
|
133
|
+
readonly noValue: "—";
|
|
134
|
+
readonly primaryToggle: "Primary address";
|
|
135
|
+
readonly typeLabel: "Type";
|
|
136
|
+
readonly typePrimary: "primary";
|
|
137
|
+
readonly typeBilling: "billing";
|
|
138
|
+
readonly typeShipping: "shipping";
|
|
139
|
+
readonly typeMailing: "mailing";
|
|
140
|
+
readonly typeMeeting: "meeting";
|
|
141
|
+
readonly typeService: "service";
|
|
142
|
+
readonly typeLegal: "legal";
|
|
143
|
+
readonly typeOther: "other";
|
|
144
|
+
readonly notesLabel: "Notes";
|
|
145
|
+
readonly dialogAddTitle: "Add address";
|
|
146
|
+
readonly dialogAddDescription: "Add another address for this person.";
|
|
147
|
+
readonly dialogEditTitle: "Edit address";
|
|
148
|
+
readonly dialogEditDescription: "Update the address details.";
|
|
149
|
+
};
|
|
150
|
+
readonly documents: {
|
|
151
|
+
readonly empty: "No documents on file.";
|
|
152
|
+
readonly add: "Add document";
|
|
153
|
+
readonly type: "Type";
|
|
154
|
+
readonly number: "Number";
|
|
155
|
+
readonly issuingCountry: "Issuing country";
|
|
156
|
+
readonly expiryDate: "Expiry date";
|
|
157
|
+
readonly save: "Save document";
|
|
158
|
+
readonly remove: "Remove";
|
|
159
|
+
};
|
|
160
|
+
readonly actions: {
|
|
161
|
+
readonly create: "Create person";
|
|
162
|
+
};
|
|
163
|
+
readonly validation: {
|
|
164
|
+
readonly nameRequired: "First and last name are required.";
|
|
165
|
+
readonly saveFailed: "Failed to save person.";
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
readonly organizationDialog: {
|
|
169
|
+
readonly titles: {
|
|
170
|
+
readonly create: "New organization";
|
|
171
|
+
readonly edit: "Edit organization";
|
|
172
|
+
};
|
|
173
|
+
readonly descriptions: {
|
|
174
|
+
readonly create: "Add a new company to your CRM.";
|
|
175
|
+
readonly edit: "Update company details and account metadata.";
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
readonly personDialog: {
|
|
179
|
+
readonly titles: {
|
|
180
|
+
readonly create: "New person";
|
|
181
|
+
readonly edit: "Edit person";
|
|
182
|
+
};
|
|
183
|
+
readonly descriptions: {
|
|
184
|
+
readonly create: "Add a new person to your CRM.";
|
|
185
|
+
readonly edit: "Update contact details and reference information.";
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
//# sourceMappingURL=base.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/i18n/en/base.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2LtB,CAAA"}
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
export const crmUiEnBaseMessages = {
|
|
2
|
+
common: {
|
|
3
|
+
cancel: "Cancel",
|
|
4
|
+
done: "Done",
|
|
5
|
+
saveChanges: "Save changes",
|
|
6
|
+
create: "Create",
|
|
7
|
+
saving: "Saving...",
|
|
8
|
+
none: "—",
|
|
9
|
+
unknownError: "Unknown error",
|
|
10
|
+
today: "today",
|
|
11
|
+
previous: "Previous",
|
|
12
|
+
next: "Next",
|
|
13
|
+
page: "Page",
|
|
14
|
+
pageSummary: "Showing {shown} of {total}",
|
|
15
|
+
loading: "Loading...",
|
|
16
|
+
activityTypeLabels: {
|
|
17
|
+
note: "Note",
|
|
18
|
+
call: "Call",
|
|
19
|
+
email: "Email",
|
|
20
|
+
meeting: "Meeting",
|
|
21
|
+
task: "Task",
|
|
22
|
+
follow_up: "Follow-up",
|
|
23
|
+
},
|
|
24
|
+
activityStatusLabels: {
|
|
25
|
+
planned: "Planned",
|
|
26
|
+
done: "Done",
|
|
27
|
+
cancelled: "Cancelled",
|
|
28
|
+
},
|
|
29
|
+
relationTypeLabels: {
|
|
30
|
+
client: "Client",
|
|
31
|
+
partner: "Partner",
|
|
32
|
+
supplier: "Supplier",
|
|
33
|
+
other: "Other",
|
|
34
|
+
},
|
|
35
|
+
recordStatusLabels: {
|
|
36
|
+
active: "Active",
|
|
37
|
+
inactive: "Inactive",
|
|
38
|
+
archived: "Archived",
|
|
39
|
+
},
|
|
40
|
+
entityTypeLabels: {
|
|
41
|
+
none: "None",
|
|
42
|
+
person: "Person",
|
|
43
|
+
organization: "Organization",
|
|
44
|
+
quote: "Quote",
|
|
45
|
+
activity: "Activity",
|
|
46
|
+
},
|
|
47
|
+
quoteStatusLabels: {
|
|
48
|
+
open: "Open",
|
|
49
|
+
won: "Won",
|
|
50
|
+
lost: "Lost",
|
|
51
|
+
archived: "Archived",
|
|
52
|
+
},
|
|
53
|
+
quoteVersionStatusLabels: {
|
|
54
|
+
draft: "Draft",
|
|
55
|
+
sent: "Sent",
|
|
56
|
+
accepted: "Accepted",
|
|
57
|
+
declined: "Declined",
|
|
58
|
+
superseded: "Superseded",
|
|
59
|
+
expired: "Expired",
|
|
60
|
+
},
|
|
61
|
+
relativeTime: {
|
|
62
|
+
daysAgo: "{count}d ago",
|
|
63
|
+
weeksAgo: "{count}w ago",
|
|
64
|
+
monthsAgo: "{count}mo ago",
|
|
65
|
+
yearsAgo: "{count}y ago",
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
organizationForm: {
|
|
69
|
+
fields: {
|
|
70
|
+
name: "Name",
|
|
71
|
+
legalName: "Legal name",
|
|
72
|
+
taxId: "Tax ID",
|
|
73
|
+
website: "Website",
|
|
74
|
+
industry: "Industry",
|
|
75
|
+
billingEmail: "Billing email",
|
|
76
|
+
billingAddressLine1: "Billing address line 1",
|
|
77
|
+
billingAddressLine2: "Billing address line 2",
|
|
78
|
+
billingCity: "Billing city",
|
|
79
|
+
billingRegion: "Billing region",
|
|
80
|
+
billingPostalCode: "Billing postal code",
|
|
81
|
+
billingCountry: "Billing country",
|
|
82
|
+
},
|
|
83
|
+
actions: {
|
|
84
|
+
create: "Create organization",
|
|
85
|
+
},
|
|
86
|
+
validation: {
|
|
87
|
+
nameRequired: "Organization name is required.",
|
|
88
|
+
saveFailed: "Failed to save organization.",
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
personForm: {
|
|
92
|
+
fields: {
|
|
93
|
+
firstName: "First name",
|
|
94
|
+
lastName: "Last name",
|
|
95
|
+
jobTitle: "Job title",
|
|
96
|
+
email: "Email",
|
|
97
|
+
phone: "Phone",
|
|
98
|
+
dateOfBirth: "Date of birth",
|
|
99
|
+
addressLine1: "Address line 1",
|
|
100
|
+
addressLine2: "Address line 2",
|
|
101
|
+
addressCity: "City",
|
|
102
|
+
addressRegion: "Region",
|
|
103
|
+
addressPostalCode: "Postal code",
|
|
104
|
+
addressCountry: "Country",
|
|
105
|
+
},
|
|
106
|
+
sections: {
|
|
107
|
+
identity: "Identity",
|
|
108
|
+
contact: "Contact",
|
|
109
|
+
address: "Address",
|
|
110
|
+
addresses: "Addresses",
|
|
111
|
+
relationships: "Relationships",
|
|
112
|
+
documents: "Documents",
|
|
113
|
+
},
|
|
114
|
+
relationships: {
|
|
115
|
+
empty: "No relationships on file.",
|
|
116
|
+
add: "Add relationship",
|
|
117
|
+
personLabel: "Person",
|
|
118
|
+
personPlaceholder: "Search people…",
|
|
119
|
+
personEmpty: "No people found.",
|
|
120
|
+
kindLabel: "Relationship",
|
|
121
|
+
primaryToggle: "Primary",
|
|
122
|
+
notesLabel: "Notes",
|
|
123
|
+
remove: "Remove",
|
|
124
|
+
saveFailed: "Failed to save relationship.",
|
|
125
|
+
},
|
|
126
|
+
addresses: {
|
|
127
|
+
empty: "No addresses on file.",
|
|
128
|
+
add: "Add address",
|
|
129
|
+
edit: "Edit",
|
|
130
|
+
remove: "Remove",
|
|
131
|
+
saving: "Saving…",
|
|
132
|
+
saveFailed: "Failed to save address.",
|
|
133
|
+
noValue: "—",
|
|
134
|
+
primaryToggle: "Primary address",
|
|
135
|
+
typeLabel: "Type",
|
|
136
|
+
typePrimary: "primary",
|
|
137
|
+
typeBilling: "billing",
|
|
138
|
+
typeShipping: "shipping",
|
|
139
|
+
typeMailing: "mailing",
|
|
140
|
+
typeMeeting: "meeting",
|
|
141
|
+
typeService: "service",
|
|
142
|
+
typeLegal: "legal",
|
|
143
|
+
typeOther: "other",
|
|
144
|
+
notesLabel: "Notes",
|
|
145
|
+
dialogAddTitle: "Add address",
|
|
146
|
+
dialogAddDescription: "Add another address for this person.",
|
|
147
|
+
dialogEditTitle: "Edit address",
|
|
148
|
+
dialogEditDescription: "Update the address details.",
|
|
149
|
+
},
|
|
150
|
+
documents: {
|
|
151
|
+
empty: "No documents on file.",
|
|
152
|
+
add: "Add document",
|
|
153
|
+
type: "Type",
|
|
154
|
+
number: "Number",
|
|
155
|
+
issuingCountry: "Issuing country",
|
|
156
|
+
expiryDate: "Expiry date",
|
|
157
|
+
save: "Save document",
|
|
158
|
+
remove: "Remove",
|
|
159
|
+
},
|
|
160
|
+
actions: {
|
|
161
|
+
create: "Create person",
|
|
162
|
+
},
|
|
163
|
+
validation: {
|
|
164
|
+
nameRequired: "First and last name are required.",
|
|
165
|
+
saveFailed: "Failed to save person.",
|
|
166
|
+
},
|
|
167
|
+
},
|
|
168
|
+
organizationDialog: {
|
|
169
|
+
titles: {
|
|
170
|
+
create: "New organization",
|
|
171
|
+
edit: "Edit organization",
|
|
172
|
+
},
|
|
173
|
+
descriptions: {
|
|
174
|
+
create: "Add a new company to your CRM.",
|
|
175
|
+
edit: "Update company details and account metadata.",
|
|
176
|
+
},
|
|
177
|
+
},
|
|
178
|
+
personDialog: {
|
|
179
|
+
titles: {
|
|
180
|
+
create: "New person",
|
|
181
|
+
edit: "Edit person",
|
|
182
|
+
},
|
|
183
|
+
descriptions: {
|
|
184
|
+
create: "Add a new person to your CRM.",
|
|
185
|
+
edit: "Update contact details and reference information.",
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
};
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
export declare const crmUiEnCommerceMessages: {
|
|
2
|
+
readonly 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
|
+
readonly 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
|
+
readonly quotesBoard: {
|
|
39
|
+
readonly fallbackName: "Unnamed stage";
|
|
40
|
+
};
|
|
41
|
+
readonly quoteSummaryCard: {
|
|
42
|
+
readonly unknown: "Unknown";
|
|
43
|
+
readonly expectedClose: "Expected close";
|
|
44
|
+
};
|
|
45
|
+
readonly 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
|
+
readonly 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
|
+
readonly 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
|
+
readonly 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
|
+
readonly 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
|
+
};
|
|
133
|
+
//# sourceMappingURL=commerce.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commerce.d.ts","sourceRoot":"","sources":["../../../src/i18n/en/commerce.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmI1B,CAAA"}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
export const crmUiEnCommerceMessages = {
|
|
2
|
+
createActivityDialog: {
|
|
3
|
+
title: "New activity",
|
|
4
|
+
description: "Log a call, email, meeting, or task.",
|
|
5
|
+
fields: {
|
|
6
|
+
subject: "Subject",
|
|
7
|
+
type: "Type",
|
|
8
|
+
status: "Status",
|
|
9
|
+
description: "Description",
|
|
10
|
+
linkTo: "Link to",
|
|
11
|
+
entityId: "Entity",
|
|
12
|
+
},
|
|
13
|
+
placeholders: {
|
|
14
|
+
subject: "Discovery call with Acme",
|
|
15
|
+
entityId: "Search or paste a reference",
|
|
16
|
+
},
|
|
17
|
+
validation: {
|
|
18
|
+
subjectRequired: "Subject is required",
|
|
19
|
+
createFailed: "Failed to create activity",
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
createQuoteDialog: {
|
|
23
|
+
title: "New quote",
|
|
24
|
+
fields: {
|
|
25
|
+
title: "Title",
|
|
26
|
+
stage: "Stage",
|
|
27
|
+
},
|
|
28
|
+
placeholders: {
|
|
29
|
+
title: "New quote",
|
|
30
|
+
stage: "Select stage...",
|
|
31
|
+
},
|
|
32
|
+
validation: {
|
|
33
|
+
titleRequired: "Title is required",
|
|
34
|
+
stageRequired: "Stage is required",
|
|
35
|
+
createFailed: "Failed to create quote",
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
quotesBoard: {
|
|
39
|
+
fallbackName: "Unnamed stage",
|
|
40
|
+
},
|
|
41
|
+
quoteSummaryCard: {
|
|
42
|
+
unknown: "Unknown",
|
|
43
|
+
expectedClose: "Expected close",
|
|
44
|
+
},
|
|
45
|
+
inlineEditor: {
|
|
46
|
+
failedToSave: "Failed to save.",
|
|
47
|
+
notSet: "Not set",
|
|
48
|
+
selectPlaceholder: "Select...",
|
|
49
|
+
noneOption: "None",
|
|
50
|
+
invalidNumber: "Enter a valid number.",
|
|
51
|
+
minNumber: "Must be at least {min}.",
|
|
52
|
+
maxNumber: "Must be at most {max}.",
|
|
53
|
+
searchCurrencyPlaceholder: "Search currency...",
|
|
54
|
+
noCurrenciesFound: "No currencies found.",
|
|
55
|
+
searchLanguagePlaceholder: "Search language...",
|
|
56
|
+
noLanguagesFound: "No languages found.",
|
|
57
|
+
addTemplate: "Add {label}",
|
|
58
|
+
addTagPlaceholder: "Add tag...",
|
|
59
|
+
tagAlreadyAdded: "Tag already added.",
|
|
60
|
+
addTagFailed: "Failed to add tag.",
|
|
61
|
+
removeTagFailed: "Failed to remove tag.",
|
|
62
|
+
},
|
|
63
|
+
createQuoteVersionDialog: {
|
|
64
|
+
title: "New quote version",
|
|
65
|
+
fields: {
|
|
66
|
+
quote: "Quote",
|
|
67
|
+
currency: "Currency",
|
|
68
|
+
validUntil: "Valid until",
|
|
69
|
+
},
|
|
70
|
+
placeholders: {
|
|
71
|
+
searchQuotes: "Search quotes...",
|
|
72
|
+
selectCurrency: "Select currency...",
|
|
73
|
+
pickDate: "Pick a date",
|
|
74
|
+
},
|
|
75
|
+
empty: {
|
|
76
|
+
loading: "Loading...",
|
|
77
|
+
noQuotes: "No quotes found.",
|
|
78
|
+
},
|
|
79
|
+
validation: {
|
|
80
|
+
selectQuote: "Please select a quote",
|
|
81
|
+
selectCurrency: "Please select a currency",
|
|
82
|
+
createFailed: "Failed to create quote version",
|
|
83
|
+
},
|
|
84
|
+
actions: {
|
|
85
|
+
create: "Create",
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
quoteVersionLinesCard: {
|
|
89
|
+
title: "Version line items",
|
|
90
|
+
empty: "No line items yet.",
|
|
91
|
+
fields: {
|
|
92
|
+
description: "Description",
|
|
93
|
+
quantity: "Qty",
|
|
94
|
+
priceCents: "Price",
|
|
95
|
+
},
|
|
96
|
+
validation: {
|
|
97
|
+
descriptionRequired: "Description is required",
|
|
98
|
+
addFailed: "Failed to add line",
|
|
99
|
+
},
|
|
100
|
+
subtotal: "Subtotal",
|
|
101
|
+
},
|
|
102
|
+
activitiesPage: {
|
|
103
|
+
title: "Activities",
|
|
104
|
+
description: "Calls, emails, meetings, tasks, and follow-ups across your CRM.",
|
|
105
|
+
create: "New activity",
|
|
106
|
+
filters: {
|
|
107
|
+
type: "Type",
|
|
108
|
+
status: "Status",
|
|
109
|
+
allTypes: "All types",
|
|
110
|
+
allStatuses: "All statuses",
|
|
111
|
+
},
|
|
112
|
+
empty: "No activities match your filters.",
|
|
113
|
+
},
|
|
114
|
+
quoteVersionsPage: {
|
|
115
|
+
title: "Quote versions",
|
|
116
|
+
description: "Quote versions issued for quotes in your pipeline.",
|
|
117
|
+
create: "New quote version",
|
|
118
|
+
filters: {
|
|
119
|
+
status: "Status",
|
|
120
|
+
allStatuses: "All statuses",
|
|
121
|
+
},
|
|
122
|
+
columns: {
|
|
123
|
+
quoteVersion: "Version",
|
|
124
|
+
status: "Status",
|
|
125
|
+
total: "Total",
|
|
126
|
+
validUntil: "Valid until",
|
|
127
|
+
updated: "Updated",
|
|
128
|
+
},
|
|
129
|
+
loadFailed: "Failed to load quotes.",
|
|
130
|
+
empty: "No quotes found.",
|
|
131
|
+
},
|
|
132
|
+
};
|