@bcrumbs.net/inbox 0.0.25 → 0.0.32
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/assets/ar/inbox.json +80 -6
- package/assets/en/inbox.json +95 -20
- package/index.cjs.js +25677 -5107
- package/index.esm.js +25684 -5114
- package/package.json +5 -4
- package/src/app/ai/components/TestNumbers/AddTestNumber.d.ts +8 -0
- package/src/app/ai/components/TestNumbers/TestNumberCard.d.ts +19 -0
- package/src/app/ai/components/TestNumbers/TestNumbersLoader.d.ts +2 -0
- package/src/app/ai/components/TestNumbers/TestNumbersNoResultPage.d.ts +11 -0
- package/src/app/ai/components/playground/AssistantActionBar.d.ts +2 -0
- package/src/app/ai/components/playground/AssistantMessage.d.ts +2 -0
- package/src/app/ai/components/playground/BranchPicker.d.ts +4 -0
- package/src/app/ai/components/playground/Button.d.ts +10 -0
- package/src/app/ai/components/playground/Composer.d.ts +2 -0
- package/src/app/ai/components/playground/ComposerAction.d.ts +4 -0
- package/src/app/ai/components/playground/EditComposer.d.ts +2 -0
- package/src/app/ai/components/playground/MarkdownText.d.ts +3 -0
- package/src/app/ai/components/playground/PlaygroundChat.d.ts +5 -0
- package/src/app/ai/components/playground/PlaygroundLoader.d.ts +2 -0
- package/src/app/ai/components/playground/Thread.d.ts +2 -0
- package/src/app/ai/components/playground/ThreadList.d.ts +2 -0
- package/src/app/ai/components/playground/ThreadMessages.d.ts +2 -0
- package/src/app/ai/components/playground/ThreadWelcome.d.ts +2 -0
- package/src/app/ai/components/playground/Tooltip.d.ts +7 -0
- package/src/app/ai/components/playground/TooltipIconButton.d.ts +15 -0
- package/src/app/ai/components/playground/UserActionBar.d.ts +2 -0
- package/src/app/ai/components/playground/UserMessage.d.ts +2 -0
- package/src/app/ai/components/playground/index.d.ts +5 -0
- package/src/app/ai/components/playground/shared.d.ts +6 -0
- package/src/app/ai/components/sources/FileTable.d.ts +14 -0
- package/src/app/ai/components/sources/FileUpload.d.ts +14 -0
- package/src/app/ai/components/sources/FileUploadsContainer.d.ts +12 -0
- package/src/app/ai/components/sources/StorageQuota.d.ts +9 -0
- package/src/app/ai/components/sources/UploadProgress.d.ts +9 -0
- package/src/app/ai/components/sources/index.d.ts +5 -0
- package/src/app/ai/config/index.d.ts +3 -0
- package/src/app/ai/config/source.d.ts +4 -0
- package/src/app/ai/config/types.d.ts +61 -0
- package/src/app/ai/hooks/useCrumbyAi.d.ts +17 -0
- package/src/app/ai/hooks/useFileColumns.d.ts +17 -0
- package/src/app/ai/pages/FilesPage.d.ts +3 -0
- package/src/app/ai/pages/Playground.d.ts +2 -0
- package/src/app/ai/pages/TestNumbers.d.ts +2 -0
- package/src/app/ai/types/index.d.ts +64 -0
- package/src/app/ai/utils/index.d.ts +2 -0
- package/src/app/auth/components/UserAvatar/AccountSettingsDropdown.d.ts +2 -1
- package/src/app/auth/components/UserAvatar/index.d.ts +2 -0
- package/src/app/auth/redux/actions/loginAction.d.ts +8 -0
- package/src/app/auth/redux/actions/registerAction.d.ts +8 -0
- package/src/app/auth/utils/formatNameFromEmail.d.ts +1 -0
- package/src/app/contact/components/AddContactLifeCycle.d.ts +6 -0
- package/src/app/contact/components/ContactFilterOptions.d.ts +10 -0
- package/src/app/contact/components/ContactFormFields.d.ts +6 -0
- package/src/app/contact/components/ContactInfo.d.ts +9 -0
- package/src/app/contact/components/ContactLifeCycleFilterOptions.d.ts +5 -0
- package/src/app/contact/config/contactDefinition.d.ts +4 -0
- package/src/app/contact/config/contactForm.d.ts +40 -0
- package/src/app/contact/config/contactLifeCycleDefinition.d.ts +4 -0
- package/src/app/contact/pages/contact/index.d.ts +2 -0
- package/src/app/contact/pages/contactLifeCycle/index.d.ts +2 -0
- package/src/app/contact/types.d.ts +62 -0
- package/src/app/dashboard/components/ConvsAnalytics/LiveConvsAnalytics.d.ts +2 -2
- package/src/app/generic/components/ComingSoon.d.ts +5 -0
- package/src/app/generic/components/Containers.d.ts +15 -0
- package/src/app/generic/hooks/useGetProviderIcon.d.ts +4 -0
- package/src/app/generic/hooks/usePaginatedQuery.d.ts +20 -0
- package/src/app/generic/hooks/useResourceColumns.d.ts +19 -0
- package/src/app/generic/hooks/useSort.d.ts +7 -0
- package/src/app/inbox/components/Chat/ChatHeader.d.ts +5 -0
- package/src/app/inbox/components/Chat/NoConvSelected.d.ts +6 -1
- package/src/app/inbox/components/Chat/index.d.ts +4 -1
- package/src/app/inbox/components/ClientDetails/ClientProfile.d.ts +0 -2
- package/src/app/inbox/components/NewConvList/BottomSection.d.ts +8 -0
- package/src/app/inbox/components/NewConvList/ChatTypeSwitcher.d.ts +6 -0
- package/src/app/inbox/components/NewConvList/ConvList.d.ts +14 -0
- package/src/app/inbox/components/NewConvList/ConversationItem.d.ts +13 -0
- package/src/app/inbox/components/NewConvList/HeaderSection.d.ts +15 -0
- package/src/app/inbox/components/NewConvList/index.d.ts +17 -0
- package/src/app/inbox/components/NewDetails/ChatDetails.d.ts +15 -0
- package/src/app/inbox/components/NewDetails/ChatDetailsAndTimeline.d.ts +13 -0
- package/src/app/inbox/components/NewDetails/ChatTimeline.d.ts +7 -0
- package/src/app/inbox/components/NewDetails/ClientInfo.d.ts +14 -0
- package/src/app/inbox/components/NewDetails/ComponentLoaders/ClientInfoLoader.d.ts +2 -0
- package/src/app/inbox/components/NewDetails/ConversationOverview.d.ts +10 -0
- package/src/app/inbox/components/NewDetails/EditClientInfo.d.ts +8 -0
- package/src/app/inbox/components/NewDetails/TabSwitcher.d.ts +5 -0
- package/src/app/inbox/components/NewDetails/TagsSelector.d.ts +15 -0
- package/src/app/inbox/components/NewDetails/UserHeader.d.ts +7 -0
- package/src/app/inbox/components/NewDetails/ViewInfo.d.ts +6 -0
- package/src/app/inbox/components/NewDetails/index.d.ts +13 -0
- package/src/app/inbox/components/Popups/NewStartConv.d.ts +6 -0
- package/src/app/inbox/components/Shared/Inbox.d.ts +2 -1
- package/src/app/inbox/components/Shared/SharedStyle.d.ts +30 -0
- package/src/app/inbox/constants/index.d.ts +0 -1
- package/src/app/inbox/hooks/useConvActions.d.ts +16 -0
- package/src/app/inbox/hooks/useConvFilters.d.ts +14 -0
- package/src/app/inbox/hooks/useConversationsPerodicFetch.d.ts +2 -0
- package/src/app/inbox/hooks/useNewSortedEvents.d.ts +24 -0
- package/src/app/inbox/utils/convs.d.ts +28 -2
- package/src/app/inbox/utils/getFlagByCountry.d.ts +1 -0
- package/src/app/layout/components/Header.d.ts +3 -2
- package/src/app/layout/constants/index.d.ts +27 -2
- package/src/app/layout/constants/subMenu.d.ts +26 -0
- package/src/app/layout/hooks/useCrumbyEnabled.d.ts +1 -0
- package/src/app/layout/hooks/useMobileInboxVersion.d.ts +6 -0
- package/src/app/managemnet/config/agentDefinition.d.ts +4 -0
- package/src/app/managemnet/types.d.ts +61 -0
- package/src/app/resources/components/Broadcasts/BroadcastClients.d.ts +2 -1
- package/src/app/resources/components/Broadcasts/CreateBroadcast.d.ts +2 -1
- package/src/app/resources/config/types.d.ts +3 -0
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsers.d.ts +1 -1
- package/src/app/subscriptions/components/SubscriptionSwitcher/Switcher.d.ts +2 -6
- package/src/app/subscriptions/components/SubscriptionsList.d.ts +6 -5
- package/src/app/subscriptions/constants/Plans.d.ts +2 -1
- package/src/assets/locales/translations.d.ts +156 -0
- package/src/config/constants.d.ts +1 -1
- package/src/graphql.autogenerated.d.ts +751 -1
- package/src/lib/inbox.d.ts +1 -0
- package/src/routes/PrivateRoutes.d.ts +6 -1
- package/src/utils/localStorage.d.ts +1 -0
- package/src/utils/sessionStorage.d.ts +10 -0
- package/src/utils/textUtils.d.ts +2 -0
- package/src/utils/uploadFileToAzureBlob.d.ts +2 -0
- package/src/app/layout/components/language/LanguageIcon.d.ts +0 -2
package/assets/ar/inbox.json
CHANGED
|
@@ -11,14 +11,20 @@
|
|
|
11
11
|
"phone": "الهاتف",
|
|
12
12
|
"email": "البريد الالكتروني",
|
|
13
13
|
"noConversations": "لا يوجد محادثة مختارة.",
|
|
14
|
+
"noConversationsSubtext": "انقر على الزر أدناه لبدء محادثة مع عميل.",
|
|
14
15
|
"tags": "علامات",
|
|
15
16
|
"startedAt": "تاريخ البداية",
|
|
16
17
|
"StartOfConversation": "بداية المحادثة",
|
|
18
|
+
"ConversationClosed": "تم إغلاق المحادثة بواسطة *{{endedBy}}*",
|
|
19
|
+
"System": "النظام",
|
|
17
20
|
"endedAt": "تاريخ النهاية",
|
|
18
21
|
"conversationEndedBy": "انتهت المحادثة بواسطة",
|
|
19
22
|
"clientEmail": "البريد الالكتروني",
|
|
20
23
|
"clientPhone": "الهاتف",
|
|
21
24
|
"clientCode": "كود العميل",
|
|
25
|
+
"clientCountry": "بلد العميل",
|
|
26
|
+
"clientCity": "مدينة العميل",
|
|
27
|
+
"clientAddress": "عنوان العميل",
|
|
22
28
|
"addNewTag": "أضف علامة...",
|
|
23
29
|
"addingNewTag": "إضافة علامة جديدة ",
|
|
24
30
|
"failedToSendMessage": "تعذر إرسال الرسالة",
|
|
@@ -26,14 +32,16 @@
|
|
|
26
32
|
"integrationType": "نوع القناة",
|
|
27
33
|
"conversationId": "رقم معرف المحادثة",
|
|
28
34
|
"clientId": "رقم معرف العميل",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
35
|
+
"endConversationModal": "هل انت متأكد من انك تريد انهاء المحادثة ؟",
|
|
36
|
+
"endConversation": "انهاء المحادثة",
|
|
37
|
+
"confirmEndConversation": "بعد الانهاء, لا يمكن اعادة فتح المحادثة.",
|
|
31
38
|
"stage": "المرحلة",
|
|
32
39
|
"noteMessage": "ملاحظة",
|
|
33
40
|
"NewLead": "عميل جديد",
|
|
34
41
|
"HotLead": "عميل مهتم",
|
|
35
42
|
"Payment": "في مرحلة الدفع",
|
|
36
43
|
"Customer": "عميل دائم",
|
|
44
|
+
"notAssigned": "غير محدد",
|
|
37
45
|
"ColdLead": "عميل غير مهتم",
|
|
38
46
|
"conversationAssignedTo": "تم تعيين المحادثة إلى",
|
|
39
47
|
"conversationReassignedTo": "تمت إعادة تعيين المحادثة إلى",
|
|
@@ -43,6 +51,7 @@
|
|
|
43
51
|
"conversationsStaged": "تم ضبط دورة الحياة على {{stage}}",
|
|
44
52
|
"conversationsUnStaged": "إعادة تعيين مرحلة المحادثة",
|
|
45
53
|
"conversationTaggedFailed": "فشل تصنيف المحادثة",
|
|
54
|
+
"conversationUnTaggedFailed": "فشل إلغاء تصنيف المحادثة",
|
|
46
55
|
"clientTaggedFailed": "فشل تصنيف الزبون",
|
|
47
56
|
"clientUnTaggedFailed": "فشل إزالة تصنيف الزبون",
|
|
48
57
|
"clientUpdateFailed": "فشل تعديل معلومات الزبون",
|
|
@@ -64,10 +73,20 @@
|
|
|
64
73
|
"orderNo": "رقم الطلب",
|
|
65
74
|
"MessagedVia": "أرسلت عبر",
|
|
66
75
|
"assignee": "الموكل",
|
|
67
|
-
"assignedMessage": "لقد تم تعيين الموظف
|
|
68
|
-
"autoAssignedMessage": "تم تعيين المحادثة تلقائيًا إلى
|
|
76
|
+
"assignedMessage": "لقد تم تعيين الموظف *{{agentName}}* على هذه المحادثة",
|
|
77
|
+
"autoAssignedMessage": "تم تعيين المحادثة تلقائيًا إلى *{{agentName}}* عند الرد لأول مرة.",
|
|
69
78
|
"noBroadcasts": "لم تقم بإنشاء أي برودكاست",
|
|
70
79
|
"createBroadcast": "إنشاء برودكاست",
|
|
80
|
+
"enterRefNumber": "أدخل رقم المرجع",
|
|
81
|
+
"searchChatMessages": "البحث في الرسائل",
|
|
82
|
+
"noChats": {
|
|
83
|
+
"startConversation": "إبدأ محادثة",
|
|
84
|
+
"noChannels": "لم يتم العثور على قنوات، يرجى إنشاء قناة أولاً.",
|
|
85
|
+
"noConversations": "لا يوجد محادثات مختارة.",
|
|
86
|
+
"noConversationsSubtext": "انقر على الزر أدناه لبدء محادثة مع عميل.",
|
|
87
|
+
"createChannel": "إنشاء قناة",
|
|
88
|
+
"selectToStart": "اختر محادثة للبدء"
|
|
89
|
+
},
|
|
71
90
|
"broadcastState": {
|
|
72
91
|
"all": "الكل",
|
|
73
92
|
"completed": "مكتمل",
|
|
@@ -90,7 +109,7 @@
|
|
|
90
109
|
"broadcastDetails": "تفاصيل البرودكاست",
|
|
91
110
|
"clientsDetails": "تفاصيل العملاء المستهدفين",
|
|
92
111
|
"searchConvs": "البحث في المحادثات",
|
|
93
|
-
"searchConvsByNamePhone": "ابحث بالاسم أو الهاتف",
|
|
112
|
+
"searchConvsByNamePhone": "ابحث بالاسم أو رقم الهاتف",
|
|
94
113
|
"createNewAgent": "إنشاء موظف جديد",
|
|
95
114
|
"createNewLifeCycle": "إضافة مرحلة جديدة",
|
|
96
115
|
"noAgentNote": "ليس لديك موظف لحسابك بعد، هل تريد إنشاء واحد؟",
|
|
@@ -113,7 +132,62 @@
|
|
|
113
132
|
"filterByState": "فلترة حسب الحالة",
|
|
114
133
|
"filterByAssignee": "فلترة حسب الموكل",
|
|
115
134
|
"filterByLifeCycle": "فلترة حسب المرحلة",
|
|
116
|
-
"moreThan100Conversations": "تم العثور على أكثر من 100 محادثة، لتجنب الأداء المنخفض، يتم عرض أول 100 محادثة مفتوحة. يرجى فلترة المحادثات أو إغلاق بعض المحادثات."
|
|
135
|
+
"moreThan100Conversations": "تم العثور على أكثر من 100 محادثة، لتجنب الأداء المنخفض، يتم عرض أول 100 محادثة مفتوحة. يرجى فلترة المحادثات أو إغلاق بعض المحادثات.",
|
|
136
|
+
"liveChat": "المحادثات المباشرة",
|
|
137
|
+
"closedChat": "المحادثات المغلقة",
|
|
138
|
+
"searchConvPlaceholder": "ابحث بالاسم أو رقم الهاتف",
|
|
139
|
+
"assigned": "مسندة ل",
|
|
140
|
+
"lifeCycle": "حالة المحادثة",
|
|
141
|
+
"addNewLifeCycle": "إضافة مرحلة جديدة",
|
|
142
|
+
"addNewAgent": "إضافة موظف جديد",
|
|
143
|
+
"assignedtoMe2": "لي",
|
|
144
|
+
"active": "نشطة",
|
|
145
|
+
"closed": "مغلقة",
|
|
146
|
+
"all": "الكل",
|
|
147
|
+
"clientName": "اسم العميل",
|
|
148
|
+
"pickClientPlaceholder": "اسم العميل",
|
|
149
|
+
"start": "ابدأ",
|
|
150
|
+
"cancel": "الغاء",
|
|
151
|
+
"phoneNumber": "رقم الهاتف",
|
|
152
|
+
"pickLanguageCode": "اختر لغة",
|
|
153
|
+
"inbox": "الوارد",
|
|
154
|
+
"assignTo": "تعيين ل",
|
|
155
|
+
"chatDetails": "تفاصيل المحادثة",
|
|
156
|
+
"chatTimeline": "سجل المحادثة",
|
|
157
|
+
"channelType": "نوع القناة",
|
|
158
|
+
"assignedTo": "موكل ل",
|
|
159
|
+
"refNumber": "رقم المرجع",
|
|
160
|
+
"conversationOverview": "معلومات المحادثة",
|
|
161
|
+
"clientInfo": {
|
|
162
|
+
"name": "الاسم الكامل",
|
|
163
|
+
"namePlaceholder": "الاسم الكامل",
|
|
164
|
+
"country": "الدولة",
|
|
165
|
+
"countryPlaceholder": "الدولة",
|
|
166
|
+
"city": "المدينة",
|
|
167
|
+
"cityPlaceholder": "المدينة",
|
|
168
|
+
"code": "الكود",
|
|
169
|
+
"codePlaceholder": "الكود",
|
|
170
|
+
"email": "البريد الالكتروني",
|
|
171
|
+
"emailPlaceholder": "البريد الالكتروني",
|
|
172
|
+
"phone": "رقم الهاتف",
|
|
173
|
+
"phonePlaceholder": "رقم الهاتف",
|
|
174
|
+
"address": "العنوان",
|
|
175
|
+
"addressPlaceholder": "العنوان",
|
|
176
|
+
"tags": "العلامات",
|
|
177
|
+
"addNewTagPlaceholder": "اختر العلامات",
|
|
178
|
+
"unavailable": "غير متوفر",
|
|
179
|
+
"createNewTagPlaceholder": "إنشاء علامة جديدة",
|
|
180
|
+
"saving": "جاري الحفظ...",
|
|
181
|
+
"save": "حفظ",
|
|
182
|
+
"cancel": "إلغاء"
|
|
183
|
+
},
|
|
184
|
+
"addNotes": "إضافة ملاحظات",
|
|
185
|
+
"autoComplete": "تعبئة تلقائية",
|
|
186
|
+
"aiSummary": "ملخص AI",
|
|
187
|
+
"addNoteHere": "اضف ملاحظة",
|
|
188
|
+
"failedToSendNote": "تعذر اضافة الملاحظة",
|
|
189
|
+
"replyToMessage": "الرد على {{name}}",
|
|
190
|
+
"crumby": "Crumby"
|
|
117
191
|
},
|
|
118
192
|
"id": "المعرف",
|
|
119
193
|
"save": "حفظ",
|
package/assets/en/inbox.json
CHANGED
|
@@ -1,33 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"inbox": {
|
|
3
3
|
"none": "None",
|
|
4
|
-
"client": "
|
|
4
|
+
"client": "Contact",
|
|
5
5
|
"agent": "Agent",
|
|
6
|
-
"clientDefaultName": "
|
|
6
|
+
"clientDefaultName": "Contact Name",
|
|
7
7
|
"conversation": "Conversation",
|
|
8
8
|
"details": "Details",
|
|
9
9
|
"pastConversations": "Past conversations",
|
|
10
10
|
"activity": "Activity",
|
|
11
11
|
"phone": "Phone",
|
|
12
12
|
"email": "Email",
|
|
13
|
-
"noConversations": "No
|
|
13
|
+
"noConversations": "No conversations yet.",
|
|
14
|
+
"noConversationsSubtext": "Click the button below to start a conversation with a contact.",
|
|
14
15
|
"tags": "Tags",
|
|
15
16
|
"startedAt": "Started at",
|
|
16
17
|
"StartOfConversation": "Start of conversation",
|
|
18
|
+
"ConversationClosed": "Conversation closed by *{{endedBy}}*",
|
|
19
|
+
"System": "SYSTEM",
|
|
17
20
|
"endedAt": "Ended at",
|
|
18
21
|
"conversationEndedBy": "Conversation ended by",
|
|
19
22
|
"clientEmail": "Email",
|
|
20
23
|
"clientPhone": "Phone",
|
|
21
24
|
"clientCode": "Code",
|
|
25
|
+
"clientCountry": "Country",
|
|
26
|
+
"clientCity": "City",
|
|
27
|
+
"clientAddress": "Address",
|
|
22
28
|
"addNewTag": "Add a new tag ...",
|
|
23
29
|
"addingNewTag": "Adding new tag ",
|
|
24
30
|
"failedToSendMessage": "Failed to send message.",
|
|
25
31
|
"integrationId": "Channel ID",
|
|
32
|
+
"integrationId2": "Integration ID",
|
|
26
33
|
"integrationType": "Channel Type",
|
|
27
34
|
"conversationId": "Conversation ID",
|
|
28
|
-
"clientId": "
|
|
29
|
-
"
|
|
30
|
-
"
|
|
35
|
+
"clientId": "Contact ID",
|
|
36
|
+
"endConversationModal": "Are you sure you want to End this Conversation ?",
|
|
37
|
+
"endConversation": "End Chat",
|
|
38
|
+
"confirmEndConversation": "After closing, this cannot be reopened.",
|
|
31
39
|
"stage": "Lifecycle",
|
|
32
40
|
"noteMessage": "Note",
|
|
33
41
|
"NewLead": "New Lead",
|
|
@@ -43,9 +51,10 @@
|
|
|
43
51
|
"conversationsStaged": "Life cycle is set to {{stage}}",
|
|
44
52
|
"conversationsUnStaged": "Reset the life cycle of the conversation.",
|
|
45
53
|
"conversationTaggedFailed": "Tagging the conversation failed",
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
54
|
+
"conversationUnTaggedFailed": "Untagging the conversation failed",
|
|
55
|
+
"clientTaggedFailed": "Tagging the contact failed",
|
|
56
|
+
"clientUnTaggedFailed": "Untagging the contact failed",
|
|
57
|
+
"clientUpdateFailed": "Failed to modify contact information",
|
|
49
58
|
"saveChanges": "Save Changes",
|
|
50
59
|
"noMessagesForEndedConv": "You cannot add message to already ended conversation.",
|
|
51
60
|
"noChannelsBtn": "Create Channel",
|
|
@@ -64,10 +73,21 @@
|
|
|
64
73
|
"orderNo": "Order no",
|
|
65
74
|
"MessagedVia": "Messaged via",
|
|
66
75
|
"assignee": "Assigned Agent",
|
|
67
|
-
"assignedMessage": "The agent
|
|
68
|
-
"autoAssignedMessage": "Conversation auto-assigned to
|
|
76
|
+
"assignedMessage": "The agent *{{agentName}}* is assigned to the conversation.",
|
|
77
|
+
"autoAssignedMessage": "Conversation auto-assigned to *{{agentName}}* upon first reply.",
|
|
69
78
|
"noBroadcasts": "You have not created any Broadcast",
|
|
70
79
|
"createBroadcast": "Create Broadcast",
|
|
80
|
+
"notAssigned": "Not Assigned",
|
|
81
|
+
"enterRefNumber": "Enter ref number",
|
|
82
|
+
"searchChatMessages": "Search chat messages",
|
|
83
|
+
"noChats": {
|
|
84
|
+
"startConversation": "Start a conversation",
|
|
85
|
+
"noChannels": "No channels found, please create a channel first.",
|
|
86
|
+
"noConversations": "No conversations yet.",
|
|
87
|
+
"noConversationsSubtext": "Click the button below to start a conversation with a contact.",
|
|
88
|
+
"createChannel": "Create Channel",
|
|
89
|
+
"selectToStart": "Select a conversation to get started"
|
|
90
|
+
},
|
|
71
91
|
"broadcastState": {
|
|
72
92
|
"all": "All",
|
|
73
93
|
"completed": "Completed",
|
|
@@ -76,19 +96,19 @@
|
|
|
76
96
|
"inProgress": "In Progress",
|
|
77
97
|
"scheduled": "Scheduled"
|
|
78
98
|
},
|
|
79
|
-
"startConversation": "Start a conversation with a
|
|
99
|
+
"startConversation": "Start a conversation with a contact",
|
|
80
100
|
"startCovBtn": "Start",
|
|
81
101
|
"messageTemplate": "Message Template",
|
|
82
102
|
"pickIntegration": "Integration / Channel",
|
|
83
|
-
"pickClient": "
|
|
103
|
+
"pickClient": "Contact",
|
|
84
104
|
"pickMessageTemplate": "Message template",
|
|
85
105
|
"pickAssignee": "Assignee",
|
|
86
|
-
"searchClients": "Search
|
|
106
|
+
"searchClients": "Search contacts",
|
|
87
107
|
"languageCode": "Language code",
|
|
88
|
-
"clientsForBroadcast": "Sample
|
|
108
|
+
"clientsForBroadcast": "Sample Contacts",
|
|
89
109
|
"costForBroadcast": "Estimated Cost for Broadcast",
|
|
90
110
|
"broadcastDetails": "Broadcast details",
|
|
91
|
-
"clientsDetails": "Target
|
|
111
|
+
"clientsDetails": "Target Contact Details",
|
|
92
112
|
"searchConvs": "Search inside conversations",
|
|
93
113
|
"searchConvsByNamePhone": "Search by name or phone",
|
|
94
114
|
"createNewAgent": "Create New Agent",
|
|
@@ -109,11 +129,66 @@
|
|
|
109
129
|
"showOlderMessages": "Show older messages",
|
|
110
130
|
"selectCountry": "Select country",
|
|
111
131
|
"integration": "Integration / Channel",
|
|
112
|
-
"newClient": "New
|
|
132
|
+
"newClient": "New contact",
|
|
113
133
|
"filterByState": "Filter by state",
|
|
114
134
|
"filterByAssignee": "Filter by assignee",
|
|
115
135
|
"filterByLifeCycle": "Filter by life-cycle",
|
|
116
|
-
"moreThan100Conversations": "More than 100 conversations found, we only show the first 100 to avoid performance issues. Please refine your search or try to close some conversations."
|
|
136
|
+
"moreThan100Conversations": "More than 100 conversations found, we only show the first 100 to avoid performance issues. Please refine your search or try to close some conversations.",
|
|
137
|
+
"liveChat": "Live Chat",
|
|
138
|
+
"closedChat": "Closed Chat",
|
|
139
|
+
"searchConvPlaceholder": "Search by name or phone",
|
|
140
|
+
"assigned": "Assigned to",
|
|
141
|
+
"lifeCycle": "Life Cycle",
|
|
142
|
+
"addNewLifeCycle": "Add new life cycle",
|
|
143
|
+
"addNewAgent": "Add new agent",
|
|
144
|
+
"assignedtoMe2": "Me",
|
|
145
|
+
"active": "Active",
|
|
146
|
+
"closed": "Closed",
|
|
147
|
+
"all": "All",
|
|
148
|
+
"clientName": "Contact Name",
|
|
149
|
+
"pickClientPlaceholder": "Contact name",
|
|
150
|
+
"start": "Start",
|
|
151
|
+
"cancel": "Cancel",
|
|
152
|
+
"phoneNumber": "Phone Number",
|
|
153
|
+
"pickLanguageCode": "Choose Language",
|
|
154
|
+
"inbox": "Inbox",
|
|
155
|
+
"assignTo": "Assign To",
|
|
156
|
+
"chatDetails": "Chat details",
|
|
157
|
+
"chatTimeline": "Chat timeline",
|
|
158
|
+
"channelType": "Channel Type",
|
|
159
|
+
"assignedTo": "Assigned To",
|
|
160
|
+
"refNumber": "Ref Number",
|
|
161
|
+
"conversationOverview": "Conversation Overview",
|
|
162
|
+
"clientInfo": {
|
|
163
|
+
"name": "Full Name",
|
|
164
|
+
"namePlaceholder": "Full Name",
|
|
165
|
+
"country": "Country",
|
|
166
|
+
"countryPlaceholder": "Country",
|
|
167
|
+
"city": "City",
|
|
168
|
+
"cityPlaceholder": "City",
|
|
169
|
+
"code": "Code",
|
|
170
|
+
"codePlaceholder": "Code",
|
|
171
|
+
"email": "Email",
|
|
172
|
+
"emailPlaceholder": "Email",
|
|
173
|
+
"phone": "Phone Number",
|
|
174
|
+
"phonePlaceholder": "Phone Number",
|
|
175
|
+
"address": "Address",
|
|
176
|
+
"addressPlaceholder": "Address",
|
|
177
|
+
"tags": "Tags",
|
|
178
|
+
"addNewTagPlaceholder": "Choose Tags",
|
|
179
|
+
"unavailable": "N/A",
|
|
180
|
+
"createNewTagPlaceholder": "Create new tag",
|
|
181
|
+
"saving": "Saving...",
|
|
182
|
+
"save": "Save",
|
|
183
|
+
"cancel": "Cancel"
|
|
184
|
+
},
|
|
185
|
+
"addNotes": "Add Notes",
|
|
186
|
+
"autoComplete": "Auto Complete",
|
|
187
|
+
"aiSummary": "AI Summary",
|
|
188
|
+
"addNoteHere": "Add your note",
|
|
189
|
+
"failedToSendNote": "failed to add the note",
|
|
190
|
+
"replyToMessage": "Reply to {{name}}",
|
|
191
|
+
"crumby": "Crumby"
|
|
117
192
|
},
|
|
118
193
|
"id": "ID",
|
|
119
194
|
"save": "Save",
|
|
@@ -144,8 +219,8 @@
|
|
|
144
219
|
"customerSupport": "Customer support",
|
|
145
220
|
"searchPattern": "Search pattern",
|
|
146
221
|
"outside24HourWindow": "Outside 24 hour window",
|
|
147
|
-
"outside24HourWindowDetails": "You can only send a message to
|
|
148
|
-
"outside24HourWindowSendTemplate": "You can initiate a conversation with the
|
|
222
|
+
"outside24HourWindowDetails": "You can only send a message to contacts who have messaged you in the last 24 hours.",
|
|
223
|
+
"outside24HourWindowSendTemplate": "You can initiate a conversation with the contact again by sending a message template.",
|
|
149
224
|
"send": "Send",
|
|
150
225
|
"liveConversations": "Live conversations",
|
|
151
226
|
"menu_search": "Search"
|