@bcrumbs.net/inbox 0.0.51 → 0.0.55
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 +20 -3
- package/assets/en/inbox.json +22 -5
- package/index.cjs.js +3955 -1472
- package/index.esm.js +3958 -1477
- package/package.json +4 -4
- package/src/app/ai/components/Crumby/index.d.ts +2 -0
- package/src/app/ai/components/CrumbySettings/AutoTagRulesSection.d.ts +14 -0
- package/src/app/ai/components/CrumbySettings/tagRuleUtils.d.ts +28 -0
- package/src/app/ai/components/playground/Thread.d.ts +5 -1
- package/src/app/ai/components/playground/ThreadWelcome.d.ts +4 -1
- package/src/app/ai/components/playground/TooltipIconButton.d.ts +1 -1
- package/src/app/ai/pages/AiPreferencesPrompts.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 -1
- package/src/app/auth/pages/CheckAuth.d.ts +10 -0
- package/src/app/auth/pages/Forget.d.ts +1 -3
- package/src/app/auth/pages/Login.d.ts +2 -12
- package/src/app/auth/pages/Password.d.ts +0 -1
- package/src/app/auth/pages/Profile.d.ts +0 -1
- package/src/app/auth/pages/Register.d.ts +2 -13
- package/src/app/auth/redux/actions/forgetPasswordAction.d.ts +1 -1
- package/src/app/auth/redux/actions/logoutAction.d.ts +2 -2
- package/src/app/auth/redux/actions/registerAction.d.ts +1 -1
- package/src/app/auth/redux/actions/resetPasswordAction.d.ts +2 -2
- package/src/app/auth/redux/auth.types.d.ts +6 -2
- package/src/app/billing/components/NotAccessible.d.ts +10 -0
- package/src/app/billing/components/Timeline.d.ts +20 -0
- package/src/app/billing/components/checkout/AddNewPaymentCard.d.ts +6 -0
- package/src/app/billing/components/checkout/CheckoutSummary.d.ts +20 -0
- package/src/app/billing/components/checkout/ExceedPaymentUpdateTriesModal.d.ts +8 -0
- package/src/app/billing/components/checkout/ExistingCardPayment.d.ts +10 -0
- package/src/app/billing/components/checkout/PaymentForm.d.ts +11 -0
- package/src/app/billing/components/checkout/PaymentFormExp.d.ts +9 -0
- package/src/app/billing/components/checkout/PaymentMethod.d.ts +8 -0
- package/src/app/billing/components/checkout/PaymentMethodCard.d.ts +9 -0
- package/src/app/billing/components/checkout/PaywithCredits.d.ts +9 -0
- package/src/app/billing/components/invoices/BCLogo.d.ts +5 -0
- package/src/app/billing/components/invoices/Invoice.d.ts +5 -0
- package/src/app/billing/components/planStyles.d.ts +9 -0
- package/src/app/billing/components/styles.d.ts +21 -0
- package/src/app/billing/components/subscription/PlanDetail.d.ts +11 -0
- package/src/app/billing/components/subscription/SubscriptionPausedWarning.d.ts +3 -0
- package/src/app/billing/components/transactions/TransactionHistoryTable.d.ts +15 -0
- package/src/app/billing/context/SubscriptionContext.d.ts +8 -1
- package/src/app/billing/hooks/useGetPaidToday.d.ts +9 -0
- package/src/app/billing/hooks/usePendingPayments.d.ts +51 -0
- package/src/app/billing/hooks/useSetupPayment.d.ts +15 -0
- package/src/app/billing/hooks/useSetupPaymentMethod.d.ts +12 -0
- package/src/app/billing/pages/checkout.d.ts +2 -0
- package/src/app/billing/pages/done.d.ts +1 -0
- package/src/app/billing/pages/invoice.d.ts +1 -0
- package/src/app/billing/pages/invoices.d.ts +2 -0
- package/src/app/billing/pages/payment.d.ts +1 -0
- package/src/app/billing/utils/getStripe.d.ts +3 -0
- package/src/app/billing/utils/openArticleModal.d.ts +1 -0
- package/src/app/billing/utils/paymentProvider.d.ts +3 -0
- package/src/app/billing/utils/pendingPlanPurchaseStorage.d.ts +10 -0
- package/src/app/billing/utils/stripeUtils.d.ts +2 -0
- package/src/app/broadcast/components/BroadcastAnalysisReciepientsHeader.d.ts +6 -1
- package/src/app/broadcast/components/BroadcastAnalysisReciepientsTable.d.ts +5 -1
- package/src/app/broadcast/components/BroadcastInfoHeader.d.ts +2 -1
- package/src/app/broadcast/components/BroadcastTargetingComplianceNotice.d.ts +2 -0
- package/src/app/broadcast/components/WorkspaceBroadcastAnalysisRecipients.d.ts +7 -0
- package/src/app/broadcast/hooks/useExportWorkspaceBroadcastDelivery.d.ts +6 -0
- package/src/app/broadcast/pages/WorkspaceBroadcastDeliveryReportPage.d.ts +2 -0
- package/src/app/broadcast/utils/helper.d.ts +4 -0
- package/src/app/contact/components/ContactFormFields.d.ts +2 -1
- package/src/app/contact/config/contactForm.d.ts +4 -0
- package/src/app/dashboard/components/AgentCard.d.ts +11 -0
- package/src/app/dashboard/components/AgentPerformanceCard.d.ts +9 -0
- package/src/app/dashboard/components/AgentsCard.d.ts +9 -0
- package/src/app/dashboard/components/AgentsCardSkeleton.d.ts +2 -0
- package/src/app/dashboard/components/BroadcastAnalyticsCard.d.ts +11 -0
- package/src/app/dashboard/components/BroadcastCampaignProgressCard.d.ts +10 -0
- package/src/app/dashboard/components/BroadcastDashboard.d.ts +6 -0
- package/src/app/dashboard/components/BroadcastDashboardStatsCards.d.ts +14 -0
- package/src/app/dashboard/components/BroadcastRecipientsCard.d.ts +8 -0
- package/src/app/dashboard/components/BroadcastStatusDistributionCard.d.ts +6 -0
- package/src/app/dashboard/components/ConversationAnalyticsCard.d.ts +11 -0
- package/src/app/dashboard/components/DashboardSections.d.ts +24 -0
- package/src/app/dashboard/components/DashboardStatsCards.d.ts +10 -0
- package/src/app/dashboard/components/InboxDashboard.d.ts +10 -0
- package/src/app/dashboard/components/OpenedChatsCard.d.ts +8 -0
- package/src/app/dashboard/pages/DashboardNewPage.d.ts +2 -0
- package/src/app/dashboard/utils/buildBroadcastReportOverviewAnalytics.d.ts +19 -0
- package/src/app/dashboard/utils/buildRecipientsAnalytics.d.ts +12 -0
- package/src/app/dashboard/utils/dateHelpers.d.ts +24 -0
- package/src/app/generic/components/HeaderImageInput.d.ts +9 -0
- package/src/app/generic/components/MessagePreview.d.ts +3 -1
- package/src/app/generic/components/PhoneNumberInput.d.ts +13 -0
- package/src/app/generic/components/PreviewHeaderImage.d.ts +2 -1
- package/src/app/generic/components/TemplateParameterInputs.d.ts +2 -1
- package/src/app/generic/components/ToggleSetting.d.ts +3 -2
- package/src/app/generic/hooks/useGetProviderIcon.d.ts +2 -1
- package/src/app/generic/utils/logout.d.ts +1 -1
- package/src/app/inbox/components/Chat/ChatContent.d.ts +2 -3
- package/src/app/inbox/components/Chat/ChatHeader.d.ts +5 -1
- package/src/app/inbox/components/Chat/NoResultsFound.d.ts +3 -0
- package/src/app/inbox/components/Chat/index.d.ts +4 -1
- package/src/app/inbox/components/NewConvList/FilterDrawer.d.ts +17 -0
- package/src/app/inbox/components/NewConvList/HeaderSection.d.ts +6 -2
- package/src/app/inbox/components/NewConvList/index.d.ts +6 -2
- package/src/app/inbox/components/NewDetails/ChatDetails.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/ChatDetailsAndTimeline.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/ClientInfo.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/ConversationOverview.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/EditClientInfo.d.ts +3 -2
- package/src/app/inbox/components/NewDetails/index.d.ts +3 -2
- package/src/app/inbox/components/Shared/Inbox.d.ts +9 -7
- package/src/app/inbox/components/Shared/MobileActionSheet.d.ts +9 -0
- package/src/app/inbox/components/Shared/MobileMenu.d.ts +8 -0
- package/src/app/inbox/components/Shared/SharedStyle.d.ts +7 -0
- package/src/app/inbox/components/Shared/mobileMenuStyles.d.ts +20 -0
- package/src/app/inbox/constants/index.d.ts +1 -1
- package/src/app/inbox/hooks/useConversationById.d.ts +8 -0
- package/src/app/inbox/hooks/useConversationsPerodicFetch.d.ts +10 -0
- package/src/app/inbox/hooks/useInboxAssignableAis.d.ts +3 -0
- package/src/app/inbox/hooks/useMyAgent.d.ts +8 -0
- package/src/app/inbox/hooks/useNewSortedEvents.d.ts +1 -1
- package/src/app/inbox/utils/convs.d.ts +14 -5
- package/src/app/inbox/utils/inboxAssignableAis.d.ts +10 -0
- package/src/app/inbox/utils/mobileInboxStyles.d.ts +6 -0
- package/src/app/layout/components/CommandPalette.d.ts +16 -0
- package/src/app/layout/components/Header.d.ts +3 -5
- package/src/app/layout/constants/index.d.ts +24 -2
- package/src/app/layout/constants/subMenu.d.ts +34 -4
- package/src/app/layout/context/EmbeddedInboxContext.d.ts +3 -0
- package/src/app/layout/context/MobileInboxNavContext.d.ts +9 -0
- package/src/app/layout/hooks/useImportContactsEnabled.d.ts +1 -0
- package/src/app/layout/hooks/useMobileInboxVersion.d.ts +1 -3
- package/src/app/managemnet/components/CreateCrmWebhook.d.ts +6 -0
- package/src/app/managemnet/components/CreateQuickReply.d.ts +8 -0
- package/src/app/managemnet/components/channels/AddChannelDialog.d.ts +10 -0
- package/src/app/managemnet/components/channels/ChannelItem.d.ts +11 -0
- package/src/app/managemnet/components/channels/ChannelTypeCard.d.ts +15 -0
- package/src/app/managemnet/components/channels/EditChannelDialog.d.ts +11 -0
- package/src/app/managemnet/config/quickReplyDefinition.d.ts +4 -0
- package/src/app/managemnet/pages/crmIntegrations/index.d.ts +2 -0
- package/src/app/managemnet/pages/quickReplies/index.d.ts +2 -0
- package/src/app/onboarding/components/OnboardingChecklistGuideContent.d.ts +8 -0
- package/src/app/onboarding/components/OnboardingChecklistWidget.d.ts +2 -0
- package/src/app/onboarding/utils/onboardingChecklistStorage.d.ts +43 -0
- package/src/app/resources/components/Integrations/ChannelDialogLayout.d.ts +24 -0
- package/src/app/resources/components/Integrations/Custom/index.d.ts +7 -0
- package/src/app/resources/components/Integrations/Facebook/NoPagesFoundPopup.d.ts +2 -1
- package/src/app/resources/components/Integrations/Facebook/PagePickerPopup.d.ts +2 -1
- package/src/app/resources/components/Integrations/Facebook/index.d.ts +4 -1
- package/src/app/resources/components/Integrations/Instagram/index.d.ts +4 -1
- package/src/app/resources/components/Integrations/RenderCorrectIntegrationFlow.d.ts +11 -2
- package/src/app/resources/components/Integrations/Telegram/index.d.ts +4 -1
- package/src/app/resources/components/Integrations/WaGupshup/index.d.ts +7 -0
- package/src/app/resources/components/Integrations/WhatsApp/index.d.ts +4 -1
- package/src/app/subscriptions/components/Plans/PlanCard.d.ts +10 -23
- package/src/app/subscriptions/components/Plans/ShowcasePlans.d.ts +8 -4
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionHeader.d.ts +1 -9
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionPlanLabel.d.ts +8 -0
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionProfile.d.ts +1 -0
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionProfileCard.d.ts +14 -0
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsageCard.d.ts +7 -0
- package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsers.d.ts +3 -3
- package/src/app/subscriptions/components/SubscriptionSwitcher/Switcher.d.ts +4 -1
- package/src/app/subscriptions/components/SubscriptionSwitcher/index.d.ts +3 -1
- package/src/app/subscriptions/components/SubscriptionsList.d.ts +1 -0
- package/src/app/subscriptions/constants/Plans.d.ts +9 -6
- package/src/app/subscriptions/pages/Upgrade.d.ts +6 -9
- package/src/assets/locales/translations.d.ts +354 -5
- package/src/config/azure.d.ts +2 -0
- package/src/environments/types.d.ts +3 -0
- package/src/graphql.autogenerated.d.ts +2179 -1225
- package/src/graphql.billing.autogenerated.d.ts +683 -7
- package/src/lib/EmbeddedMobileMenu.d.ts +9 -0
- package/src/lib/conversation-chat.d.ts +11 -0
- package/src/lib/index.d.ts +4 -0
- package/src/main.d.ts +2 -0
- package/src/utils/formatFailureReason.d.ts +5 -0
- package/src/utils/globalHelper.d.ts +3 -0
- package/src/utils/integration.d.ts +6 -0
- package/src/utils/localStorage.d.ts +2 -0
- package/src/utils/textUtils.d.ts +3 -1
- package/src/app/resources/components/Integrations/Facebook/LoginPopup.d.ts +0 -4
- package/src/app/resources/components/Integrations/Instagram/LoginPopup.d.ts +0 -4
- package/src/app/resources/components/Integrations/WhatsApp/LoginPopup.d.ts +0 -4
package/assets/ar/inbox.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"startedAt": "تاريخ البداية",
|
|
17
17
|
"StartOfConversation": "بداية المحادثة",
|
|
18
18
|
"ConversationClosed": "تم إغلاق المحادثة بواسطة *{{endedBy}}*",
|
|
19
|
+
"ConversationChannelSwitched": "تم تحويل قناة المحادثة من *{{fromChannel}}* إلى *{{toChannel}}*",
|
|
19
20
|
"System": "النظام",
|
|
20
21
|
"endedAt": "تاريخ النهاية",
|
|
21
22
|
"conversationEndedBy": "انتهت المحادثة بواسطة",
|
|
@@ -33,8 +34,10 @@
|
|
|
33
34
|
"conversationId": "رقم معرف المحادثة",
|
|
34
35
|
"clientId": "رقم معرف العميل",
|
|
35
36
|
"endConversationModal": "هل انت متأكد من انك تريد انهاء المحادثة ؟",
|
|
37
|
+
"endConversationModalRating": "إنهاء المحادثة أثناء جمع التقييم؟",
|
|
36
38
|
"endConversation": "انهاء المحادثة",
|
|
37
39
|
"confirmEndConversation": "بعد الانهاء, لا يمكن اعادة فتح المحادثة.",
|
|
40
|
+
"confirmEndConversationRating": "المحادثة في مرحلة التقييم أو الملاحظات. الإنهاء الآن سيتخطى جمع التقييم. هل أنت متأكد؟",
|
|
38
41
|
"stage": "المرحلة",
|
|
39
42
|
"noteMessage": "ملاحظة",
|
|
40
43
|
"NewLead": "عميل جديد",
|
|
@@ -99,7 +102,7 @@
|
|
|
99
102
|
"startConversation": "إبدأ محادثة مع عميل",
|
|
100
103
|
"startCovBtn": "إبدأ المحادثة",
|
|
101
104
|
"messageTemplate": "قالب الرسالة",
|
|
102
|
-
"pickIntegration": "
|
|
105
|
+
"pickIntegration": "قناة",
|
|
103
106
|
"pickClient": "اختر عميل",
|
|
104
107
|
"pickMessageTemplate": "اختر قالب الرسالة",
|
|
105
108
|
"pickAssignee": "اختر موظف",
|
|
@@ -153,6 +156,7 @@
|
|
|
153
156
|
"pickLanguageCode": "اختر لغة",
|
|
154
157
|
"inbox": "الوارد",
|
|
155
158
|
"assignTo": "تعيين ل",
|
|
159
|
+
"actions": "الإجراءات",
|
|
156
160
|
"chatDetails": "تفاصيل المحادثة",
|
|
157
161
|
"chatTimeline": "سجل المحادثة",
|
|
158
162
|
"channelType": "نوع القناة",
|
|
@@ -198,6 +202,7 @@
|
|
|
198
202
|
"replyToMessage": "الرد على {{name}}",
|
|
199
203
|
"crumby": "Crumby",
|
|
200
204
|
"templateMessageWarning": "الرسالة العادية معطلة حتى يرد العميل",
|
|
205
|
+
"chatDisabledAtUsageLimit": "تم تعطيل المراسلة لأن استهلاك الخطة وصل إلى 120٪ من حصتك. يرجى ترقية الخطة للمتابعة في إرسال الرسائل.",
|
|
201
206
|
"inboxAccess": "تسجيل الدخول إلى الوارد",
|
|
202
207
|
"ownerAdminInboxAccessDescription": "لم تُعين حتى الآن كموظف، لذا لا يمكنك عرض المحادثات في الوارد.",
|
|
203
208
|
"noAgentInboxAccessDescription": "يرجى الاتصال بالمسؤول لتعيينك كموظف والحصول على إذن الوصول إلى الوارد.",
|
|
@@ -207,7 +212,15 @@
|
|
|
207
212
|
"emptyMessagePreviewTitle": "لا يوجد معاينة للرسالة",
|
|
208
213
|
"emptyMessagePreviewSubtitle": "يرجى اختيار قالب لعرض معاينة الرسالة",
|
|
209
214
|
"messagePreviewContactSubtitle": "اضغط هنا لمعلومات الاتصال",
|
|
210
|
-
"messagePreviewDateLabel": "اليوم"
|
|
215
|
+
"messagePreviewDateLabel": "اليوم",
|
|
216
|
+
"filters": "الفلاتر",
|
|
217
|
+
"applyFilters": "تطبيق",
|
|
218
|
+
"clearFilters": "مسح",
|
|
219
|
+
"assigneeFilter": "مُسند إلى",
|
|
220
|
+
"lifeCycleFilter": "دورة الحياة",
|
|
221
|
+
"channelsFilter": "القنوات",
|
|
222
|
+
"noResultsFound": "لا توجد نتائج",
|
|
223
|
+
"noResultsFoundSubtitle": "لم نتمكن من العثور على أي محادثات تطابق بحثك. جرّب تغيير الكلمات أو مسح الفلاتر."
|
|
211
224
|
},
|
|
212
225
|
"id": "المعرف",
|
|
213
226
|
"save": "حفظ",
|
|
@@ -217,7 +230,7 @@
|
|
|
217
230
|
"requestFailed": "فشل الطلب",
|
|
218
231
|
"requestSuccess": "نجاح الطلب",
|
|
219
232
|
"notFound": "لم يتم العثور على الصفحة المطلوبة.",
|
|
220
|
-
"logoutConfirmation": "هل أنت متأكد أنك تريد تسجيل الخروج من بوابة
|
|
233
|
+
"logoutConfirmation": "هل أنت متأكد أنك تريد تسجيل الخروج من بوابة Bread Crumbs؟",
|
|
221
234
|
"logoutTitle": "تسجيل الخروج!",
|
|
222
235
|
"logout": "تسجيل الخروج",
|
|
223
236
|
"cancel": "إلغاء",
|
|
@@ -239,6 +252,10 @@
|
|
|
239
252
|
"outside24HourWindow": "خارج نافذة الـ 24 ساعة",
|
|
240
253
|
"outside24HourWindowDetails": "يمكنك فقط إرسال رسالة إلى العملاء الذين قاموا بمراسلتك خلال الـ 24 ساعة الماضية.",
|
|
241
254
|
"outside24HourWindowSendTemplate": "يمكنك إعادة بدء محادثة مع العميل مرة أخرى بإرسال رسالة قالب.",
|
|
255
|
+
"outside24HourReconnectTitle": "جاهز لإعادة التواصل",
|
|
256
|
+
"outside24HourReconnectDescription": "مرّ أكثر من 24 ساعة منذ آخر رسالة. لإعادة بدء المحادثة، ما عليك سوى اختيار قالب لإرساله.",
|
|
257
|
+
"outside24HourChooseTemplate": "اختر القالب",
|
|
258
|
+
"outside24HourChooseLanguage": "اختر اللغة",
|
|
242
259
|
"send": "إرسال",
|
|
243
260
|
"liveConversations": "المحادثات النشطة",
|
|
244
261
|
"menu_search": "بحث",
|
package/assets/en/inbox.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"startedAt": "Started at",
|
|
17
17
|
"StartOfConversation": "Start of conversation",
|
|
18
18
|
"ConversationClosed": "Conversation closed by *{{endedBy}}*",
|
|
19
|
+
"ConversationChannelSwitched": "Conversation channel switched from *{{fromChannel}}* to *{{toChannel}}*",
|
|
19
20
|
"System": "SYSTEM",
|
|
20
21
|
"endedAt": "Ended at",
|
|
21
22
|
"conversationEndedBy": "Conversation ended by",
|
|
@@ -34,8 +35,10 @@
|
|
|
34
35
|
"conversationId": "Conversation ID",
|
|
35
36
|
"clientId": "Contact ID",
|
|
36
37
|
"endConversationModal": "Are you sure you want to End this Conversation ?",
|
|
38
|
+
"endConversationModalRating": "End conversation during feedback?",
|
|
37
39
|
"endConversation": "End Chat",
|
|
38
40
|
"confirmEndConversation": "After closing, this cannot be reopened.",
|
|
41
|
+
"confirmEndConversationRating": "This chat is in the rating or feedback step. Closing now will skip collecting feedback. Are you sure?",
|
|
39
42
|
"stage": "Lifecycle",
|
|
40
43
|
"noteMessage": "Note",
|
|
41
44
|
"NewLead": "New Lead",
|
|
@@ -79,7 +82,7 @@
|
|
|
79
82
|
"createBroadcast": "Create Broadcast",
|
|
80
83
|
"notAssigned": "Not Assigned",
|
|
81
84
|
"enterRefNumber": "Enter ref number",
|
|
82
|
-
"searchChatMessages": "Search
|
|
85
|
+
"searchChatMessages": "Search messages",
|
|
83
86
|
"archived": "Archived",
|
|
84
87
|
"noChats": {
|
|
85
88
|
"startConversation": "Start a conversation",
|
|
@@ -100,7 +103,7 @@
|
|
|
100
103
|
"startConversation": "Start a conversation with a contact",
|
|
101
104
|
"startCovBtn": "Start",
|
|
102
105
|
"messageTemplate": "Message Template",
|
|
103
|
-
"pickIntegration": "
|
|
106
|
+
"pickIntegration": "Channel",
|
|
104
107
|
"pickClient": "Contact",
|
|
105
108
|
"pickMessageTemplate": "Message template",
|
|
106
109
|
"pickAssignee": "Assignee",
|
|
@@ -151,9 +154,10 @@
|
|
|
151
154
|
"start": "Start",
|
|
152
155
|
"cancel": "Cancel",
|
|
153
156
|
"phoneNumber": "Phone Number",
|
|
154
|
-
"pickLanguageCode": "
|
|
157
|
+
"pickLanguageCode": "Language",
|
|
155
158
|
"inbox": "Inbox",
|
|
156
159
|
"assignTo": "Assign To",
|
|
160
|
+
"actions": "Actions",
|
|
157
161
|
"chatDetails": "Chat details",
|
|
158
162
|
"chatTimeline": "Chat timeline",
|
|
159
163
|
"channelType": "Channel Type",
|
|
@@ -199,6 +203,7 @@
|
|
|
199
203
|
"replyToMessage": "Reply to {{name}}",
|
|
200
204
|
"crumby": "Crumby",
|
|
201
205
|
"templateMessageWarning": "Regular messaging is disabled until the client responds",
|
|
206
|
+
"chatDisabledAtUsageLimit": "Messaging is disabled because your plan usage has reached 120% of your quota. Please upgrade your plan to continue sending messages.",
|
|
202
207
|
"inboxAccess": "Inbox Access",
|
|
203
208
|
"ownerAdminInboxAccessDescription": "You’re not assigned as an Agent yet, so you can’t view conversations in the Inbox.",
|
|
204
209
|
"noAgentInboxAccessDescription": "Please contact an Admin to assign you as an Agent and gain access to the Inbox.",
|
|
@@ -208,7 +213,15 @@
|
|
|
208
213
|
"emptyMessagePreviewTitle": "No message preview",
|
|
209
214
|
"emptyMessagePreviewSubtitle": "Please select a template to preview",
|
|
210
215
|
"messagePreviewContactSubtitle": "tap here for contact info",
|
|
211
|
-
"messagePreviewDateLabel": "Today"
|
|
216
|
+
"messagePreviewDateLabel": "Today",
|
|
217
|
+
"filters": "Filters",
|
|
218
|
+
"applyFilters": "Apply",
|
|
219
|
+
"clearFilters": "Clear",
|
|
220
|
+
"assigneeFilter": "Assigned to",
|
|
221
|
+
"lifeCycleFilter": "Life Cycles",
|
|
222
|
+
"channelsFilter": "Channels",
|
|
223
|
+
"noResultsFound": "No Results Found",
|
|
224
|
+
"noResultsFoundSubtitle": "We couldn't find any chats matching your search. Try changing the keywords or clearing filters."
|
|
212
225
|
},
|
|
213
226
|
"id": "ID",
|
|
214
227
|
"save": "Save",
|
|
@@ -218,7 +231,7 @@
|
|
|
218
231
|
"requestFailed": "Request failed",
|
|
219
232
|
"requestSuccess": "Request success",
|
|
220
233
|
"notFound": "The requested page could not be found.",
|
|
221
|
-
"logoutConfirmation": "Are you sure you want to logout from
|
|
234
|
+
"logoutConfirmation": "Are you sure you want to logout from Bread Crumbs portal?",
|
|
222
235
|
"logoutTitle": "Logging out!",
|
|
223
236
|
"logout": "Logout",
|
|
224
237
|
"cancel": "Cancel",
|
|
@@ -241,6 +254,10 @@
|
|
|
241
254
|
"outside24HourWindow": "Outside 24 hour window",
|
|
242
255
|
"outside24HourWindowDetails": "You can only send a message to contacts who have messaged you in the last 24 hours.",
|
|
243
256
|
"outside24HourWindowSendTemplate": "You can initiate a conversation with the contact again by sending a message template.",
|
|
257
|
+
"outside24HourReconnectTitle": "Ready to reconnect",
|
|
258
|
+
"outside24HourReconnectDescription": "It's been more than 24 hours since the last message. To restart the conversation, simply choose a template to send.",
|
|
259
|
+
"outside24HourChooseTemplate": "Choose Template",
|
|
260
|
+
"outside24HourChooseLanguage": "Choose Language",
|
|
244
261
|
"send": "Send",
|
|
245
262
|
"liveConversations": "Live conversations",
|
|
246
263
|
"menu_search": "Search",
|