@bcrumbs.net/inbox 0.0.28 → 0.0.33

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.
Files changed (115) hide show
  1. package/assets/ar/inbox.json +71 -8
  2. package/assets/en/inbox.json +85 -21
  3. package/index.cjs.js +26016 -5463
  4. package/index.esm.js +26023 -5470
  5. package/package.json +5 -4
  6. package/src/app/ai/components/TestNumbers/AddTestNumber.d.ts +8 -0
  7. package/src/app/ai/components/TestNumbers/TestNumberCard.d.ts +19 -0
  8. package/src/app/ai/components/TestNumbers/TestNumbersLoader.d.ts +2 -0
  9. package/src/app/ai/components/TestNumbers/TestNumbersNoResultPage.d.ts +11 -0
  10. package/src/app/ai/components/playground/AssistantActionBar.d.ts +2 -0
  11. package/src/app/ai/components/playground/AssistantMessage.d.ts +2 -0
  12. package/src/app/ai/components/playground/BranchPicker.d.ts +4 -0
  13. package/src/app/ai/components/playground/Button.d.ts +10 -0
  14. package/src/app/ai/components/playground/Composer.d.ts +2 -0
  15. package/src/app/ai/components/playground/ComposerAction.d.ts +4 -0
  16. package/src/app/ai/components/playground/EditComposer.d.ts +2 -0
  17. package/src/app/ai/components/playground/MarkdownText.d.ts +3 -0
  18. package/src/app/ai/components/playground/PlaygroundChat.d.ts +5 -0
  19. package/src/app/ai/components/playground/PlaygroundLoader.d.ts +2 -0
  20. package/src/app/ai/components/playground/Thread.d.ts +2 -0
  21. package/src/app/ai/components/playground/ThreadList.d.ts +2 -0
  22. package/src/app/ai/components/playground/ThreadMessages.d.ts +2 -0
  23. package/src/app/ai/components/playground/ThreadWelcome.d.ts +2 -0
  24. package/src/app/ai/components/playground/Tooltip.d.ts +7 -0
  25. package/src/app/ai/components/playground/TooltipIconButton.d.ts +15 -0
  26. package/src/app/ai/components/playground/UserActionBar.d.ts +2 -0
  27. package/src/app/ai/components/playground/UserMessage.d.ts +2 -0
  28. package/src/app/ai/components/playground/index.d.ts +5 -0
  29. package/src/app/ai/components/playground/shared.d.ts +6 -0
  30. package/src/app/ai/components/sources/FileTable.d.ts +14 -0
  31. package/src/app/ai/components/sources/FileUpload.d.ts +14 -0
  32. package/src/app/ai/components/sources/FileUploadsContainer.d.ts +12 -0
  33. package/src/app/ai/components/sources/StorageQuota.d.ts +9 -0
  34. package/src/app/ai/components/sources/UploadProgress.d.ts +9 -0
  35. package/src/app/ai/components/sources/index.d.ts +5 -0
  36. package/src/app/ai/config/index.d.ts +3 -0
  37. package/src/app/ai/config/source.d.ts +4 -0
  38. package/src/app/ai/config/types.d.ts +61 -0
  39. package/src/app/ai/hooks/useCrumbyAi.d.ts +17 -0
  40. package/src/app/ai/hooks/useFileColumns.d.ts +17 -0
  41. package/src/app/ai/pages/FilesPage.d.ts +3 -0
  42. package/src/app/ai/pages/Playground.d.ts +2 -0
  43. package/src/app/ai/pages/TestNumbers.d.ts +2 -0
  44. package/src/app/ai/types/index.d.ts +64 -0
  45. package/src/app/ai/utils/index.d.ts +2 -0
  46. package/src/app/broadcast/components/BroadcastList.d.ts +3 -0
  47. package/src/app/broadcast/components/BroadcastListTable.d.ts +14 -0
  48. package/src/app/broadcast/components/BroadcastOverview.d.ts +3 -0
  49. package/src/app/broadcast/components/EmptyBroadcastList.d.ts +6 -0
  50. package/src/app/broadcast/components/StatisticsCard.d.ts +9 -0
  51. package/src/app/broadcast/pages/BroadcastHistory.d.ts +8 -0
  52. package/src/app/broadcast/utils/helper.d.ts +1 -0
  53. package/src/app/contact/components/AddContactLifeCycle.d.ts +6 -0
  54. package/src/app/contact/components/ContactFormFields.d.ts +7 -0
  55. package/src/app/contact/components/ContactInfo.d.ts +9 -0
  56. package/src/app/contact/config/contactForm.d.ts +54 -0
  57. package/src/app/dashboard/components/ConvsAnalytics/LiveConvsAnalytics.d.ts +2 -2
  58. package/src/app/generic/components/ComingSoon.d.ts +5 -0
  59. package/src/app/generic/components/Containers.d.ts +3 -0
  60. package/src/app/generic/hooks/usePaginatedQuery.d.ts +25 -7
  61. package/src/app/inbox/components/Chat/ChatHeader.d.ts +5 -0
  62. package/src/app/inbox/components/Chat/NoConvSelected.d.ts +6 -1
  63. package/src/app/inbox/components/Chat/index.d.ts +4 -1
  64. package/src/app/inbox/components/ClientDetails/ClientProfile.d.ts +0 -2
  65. package/src/app/inbox/components/NewConvList/BottomSection.d.ts +8 -0
  66. package/src/app/inbox/components/NewConvList/ConvList.d.ts +8 -11
  67. package/src/app/inbox/components/NewConvList/ConversationItem.d.ts +7 -11
  68. package/src/app/inbox/components/NewConvList/HeaderSection.d.ts +9 -3
  69. package/src/app/inbox/components/NewConvList/index.d.ts +10 -5
  70. package/src/app/inbox/components/NewDetails/ChatDetails.d.ts +15 -0
  71. package/src/app/inbox/components/NewDetails/ChatDetailsAndTimeline.d.ts +13 -0
  72. package/src/app/inbox/components/NewDetails/ChatTimeline.d.ts +7 -0
  73. package/src/app/inbox/components/NewDetails/ClientInfo.d.ts +14 -0
  74. package/src/app/inbox/components/NewDetails/ComponentLoaders/ClientInfoLoader.d.ts +2 -0
  75. package/src/app/inbox/components/NewDetails/ConversationOverview.d.ts +10 -0
  76. package/src/app/inbox/components/NewDetails/EditClientInfo.d.ts +8 -0
  77. package/src/app/inbox/components/NewDetails/TabSwitcher.d.ts +5 -0
  78. package/src/app/inbox/components/NewDetails/TagsSelector.d.ts +15 -0
  79. package/src/app/inbox/components/NewDetails/UserHeader.d.ts +7 -0
  80. package/src/app/inbox/components/NewDetails/ViewInfo.d.ts +6 -0
  81. package/src/app/inbox/components/NewDetails/index.d.ts +13 -0
  82. package/src/app/inbox/components/Popups/NewStartConv.d.ts +6 -0
  83. package/src/app/inbox/components/Shared/Inbox.d.ts +2 -1
  84. package/src/app/inbox/components/Shared/SharedStyle.d.ts +30 -0
  85. package/src/app/inbox/hooks/useConvActions.d.ts +16 -0
  86. package/src/app/inbox/hooks/useConvFilters.d.ts +14 -0
  87. package/src/app/inbox/hooks/useConversationsPerodicFetch.d.ts +2 -0
  88. package/src/app/inbox/hooks/useNewSortedEvents.d.ts +24 -0
  89. package/src/app/inbox/utils/convs.d.ts +27 -3
  90. package/src/app/inbox/utils/getFlagByCountry.d.ts +1 -0
  91. package/src/app/layout/components/Header.d.ts +3 -1
  92. package/src/app/layout/constants/index.d.ts +16 -0
  93. package/src/app/layout/constants/subMenu.d.ts +26 -0
  94. package/src/app/layout/hooks/useCrumbyEnabled.d.ts +1 -0
  95. package/src/app/managemnet/config/agentDefinition.d.ts +4 -0
  96. package/src/app/managemnet/types.d.ts +61 -0
  97. package/src/app/resources/components/Broadcasts/BroadcastClients.d.ts +2 -1
  98. package/src/app/resources/components/Broadcasts/CreateBroadcast.d.ts +2 -1
  99. package/src/app/resources/components/ListResources/Utils.d.ts +0 -1
  100. package/src/app/resources/config/broadcast.d.ts +1 -0
  101. package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionHeader.d.ts +10 -0
  102. package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionProfile.d.ts +7 -1
  103. package/src/app/subscriptions/components/SubscriptionSettings/SubscriptionUsers.d.ts +1 -1
  104. package/src/app/subscriptions/components/SubscriptionsList.d.ts +6 -5
  105. package/src/app/subscriptions/pages/Subscriptions.d.ts +1 -1
  106. package/src/assets/locales/translations.d.ts +142 -0
  107. package/src/context/SidebarContext.d.ts +12 -0
  108. package/src/graphql.autogenerated.d.ts +851 -1
  109. package/src/lib/inbox.d.ts +1 -0
  110. package/src/routes/PrivateRoutes.d.ts +6 -1
  111. package/src/utils/sessionStorage.d.ts +10 -0
  112. package/src/utils/textUtils.d.ts +1 -0
  113. package/src/utils/uploadFileToAzureBlob.d.ts +2 -0
  114. package/src/app/contact/components/AddContact.d.ts +0 -7
  115. package/src/app/inbox/hooks/useConvFilter.d.ts +0 -15
@@ -11,9 +11,12 @@
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": "البريد الالكتروني",
@@ -29,14 +32,16 @@
29
32
  "integrationType": "نوع القناة",
30
33
  "conversationId": "رقم معرف المحادثة",
31
34
  "clientId": "رقم معرف العميل",
32
- "endConversation": "إنهاء المحادثة",
33
- "confirmEndConversation": "هل أنت متأكد من أنك تريد إنهاء المحادثة?",
35
+ "endConversationModal": "هل انت متأكد من انك تريد انهاء المحادثة ؟",
36
+ "endConversation": "انهاء المحادثة",
37
+ "confirmEndConversation": "بعد الانهاء, لا يمكن اعادة فتح المحادثة.",
34
38
  "stage": "المرحلة",
35
39
  "noteMessage": "ملاحظة",
36
40
  "NewLead": "عميل جديد",
37
41
  "HotLead": "عميل مهتم",
38
42
  "Payment": "في مرحلة الدفع",
39
43
  "Customer": "عميل دائم",
44
+ "notAssigned": "غير محدد",
40
45
  "ColdLead": "عميل غير مهتم",
41
46
  "conversationAssignedTo": "تم تعيين المحادثة إلى",
42
47
  "conversationReassignedTo": "تمت إعادة تعيين المحادثة إلى",
@@ -46,6 +51,7 @@
46
51
  "conversationsStaged": "تم ضبط دورة الحياة على {{stage}}",
47
52
  "conversationsUnStaged": "إعادة تعيين مرحلة المحادثة",
48
53
  "conversationTaggedFailed": "فشل تصنيف المحادثة",
54
+ "conversationUnTaggedFailed": "فشل إلغاء تصنيف المحادثة",
49
55
  "clientTaggedFailed": "فشل تصنيف الزبون",
50
56
  "clientUnTaggedFailed": "فشل إزالة تصنيف الزبون",
51
57
  "clientUpdateFailed": "فشل تعديل معلومات الزبون",
@@ -67,10 +73,20 @@
67
73
  "orderNo": "رقم الطلب",
68
74
  "MessagedVia": "أرسلت عبر",
69
75
  "assignee": "الموكل",
70
- "assignedMessage": "لقد تم تعيين الموظف **{{agentName}}** على هذه المحادثة",
71
- "autoAssignedMessage": "تم تعيين المحادثة تلقائيًا إلى **{{agentName}}** عند الرد لأول مرة.",
76
+ "assignedMessage": "لقد تم تعيين الموظف *{{agentName}}* على هذه المحادثة",
77
+ "autoAssignedMessage": "تم تعيين المحادثة تلقائيًا إلى *{{agentName}}* عند الرد لأول مرة.",
72
78
  "noBroadcasts": "لم تقم بإنشاء أي برودكاست",
73
79
  "createBroadcast": "إنشاء برودكاست",
80
+ "enterRefNumber": "أدخل رقم المرجع",
81
+ "searchChatMessages": "البحث في الرسائل",
82
+ "noChats": {
83
+ "startConversation": "إبدأ محادثة",
84
+ "noChannels": "لم يتم العثور على قنوات، يرجى إنشاء قناة أولاً.",
85
+ "noConversations": "لا يوجد محادثات مختارة.",
86
+ "noConversationsSubtext": "انقر على الزر أدناه لبدء محادثة مع عميل.",
87
+ "createChannel": "إنشاء قناة",
88
+ "selectToStart": "اختر محادثة للبدء"
89
+ },
74
90
  "broadcastState": {
75
91
  "all": "الكل",
76
92
  "completed": "مكتمل",
@@ -93,7 +109,7 @@
93
109
  "broadcastDetails": "تفاصيل البرودكاست",
94
110
  "clientsDetails": "تفاصيل العملاء المستهدفين",
95
111
  "searchConvs": "البحث في المحادثات",
96
- "searchConvsByNamePhone": "ابحث بالاسم أو الهاتف",
112
+ "searchConvsByNamePhone": "ابحث بالاسم أو رقم الهاتف",
97
113
  "createNewAgent": "إنشاء موظف جديد",
98
114
  "createNewLifeCycle": "إضافة مرحلة جديدة",
99
115
  "noAgentNote": "ليس لديك موظف لحسابك بعد، هل تريد إنشاء واحد؟",
@@ -120,11 +136,58 @@
120
136
  "liveChat": "المحادثات المباشرة",
121
137
  "closedChat": "المحادثات المغلقة",
122
138
  "searchConvPlaceholder": "ابحث بالاسم أو رقم الهاتف",
123
- "assigned": "موكل ل",
124
- "lifeCycle": "مرحلة العميل",
139
+ "assigned": "مسندة ل",
140
+ "lifeCycle": "حالة المحادثة",
125
141
  "addNewLifeCycle": "إضافة مرحلة جديدة",
126
142
  "addNewAgent": "إضافة موظف جديد",
127
- "assignedtoMe2": "لي"
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"
128
191
  },
129
192
  "id": "المعرف",
130
193
  "save": "حفظ",
@@ -1,19 +1,22 @@
1
1
  {
2
2
  "inbox": {
3
3
  "none": "None",
4
- "client": "Client",
4
+ "client": "Contact",
5
5
  "agent": "Agent",
6
- "clientDefaultName": "Client Name",
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 conversation is selected.",
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",
@@ -26,11 +29,13 @@
26
29
  "addingNewTag": "Adding new tag ",
27
30
  "failedToSendMessage": "Failed to send message.",
28
31
  "integrationId": "Channel ID",
32
+ "integrationId2": "Integration ID",
29
33
  "integrationType": "Channel Type",
30
34
  "conversationId": "Conversation ID",
31
- "clientId": "Client ID",
32
- "endConversation": "End",
33
- "confirmEndConversation": "Are you sure you want to end this conversation?",
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.",
34
39
  "stage": "Lifecycle",
35
40
  "noteMessage": "Note",
36
41
  "NewLead": "New Lead",
@@ -46,9 +51,10 @@
46
51
  "conversationsStaged": "Life cycle is set to {{stage}}",
47
52
  "conversationsUnStaged": "Reset the life cycle of the conversation.",
48
53
  "conversationTaggedFailed": "Tagging the conversation failed",
49
- "clientTaggedFailed": "Tagging the client failed",
50
- "clientUnTaggedFailed": "Untagging the client failed",
51
- "clientUpdateFailed": "Failed to modify client information",
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",
52
58
  "saveChanges": "Save Changes",
53
59
  "noMessagesForEndedConv": "You cannot add message to already ended conversation.",
54
60
  "noChannelsBtn": "Create Channel",
@@ -67,10 +73,21 @@
67
73
  "orderNo": "Order no",
68
74
  "MessagedVia": "Messaged via",
69
75
  "assignee": "Assigned Agent",
70
- "assignedMessage": "The agent **{{agentName}}** is assigned to the conversation.",
71
- "autoAssignedMessage": "Conversation auto-assigned to **{{agentName}}** upon first reply.",
76
+ "assignedMessage": "The agent *{{agentName}}* is assigned to the conversation.",
77
+ "autoAssignedMessage": "Conversation auto-assigned to *{{agentName}}* upon first reply.",
72
78
  "noBroadcasts": "You have not created any Broadcast",
73
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
+ },
74
91
  "broadcastState": {
75
92
  "all": "All",
76
93
  "completed": "Completed",
@@ -79,19 +96,19 @@
79
96
  "inProgress": "In Progress",
80
97
  "scheduled": "Scheduled"
81
98
  },
82
- "startConversation": "Start a conversation with a client",
99
+ "startConversation": "Start a conversation with a contact",
83
100
  "startCovBtn": "Start",
84
101
  "messageTemplate": "Message Template",
85
102
  "pickIntegration": "Integration / Channel",
86
- "pickClient": "Client",
103
+ "pickClient": "Contact",
87
104
  "pickMessageTemplate": "Message template",
88
105
  "pickAssignee": "Assignee",
89
- "searchClients": "Search clients",
106
+ "searchClients": "Search contacts",
90
107
  "languageCode": "Language code",
91
- "clientsForBroadcast": "Sample Clients",
108
+ "clientsForBroadcast": "Sample Contacts",
92
109
  "costForBroadcast": "Estimated Cost for Broadcast",
93
110
  "broadcastDetails": "Broadcast details",
94
- "clientsDetails": "Target Client Details",
111
+ "clientsDetails": "Target Contact Details",
95
112
  "searchConvs": "Search inside conversations",
96
113
  "searchConvsByNamePhone": "Search by name or phone",
97
114
  "createNewAgent": "Create New Agent",
@@ -112,19 +129,66 @@
112
129
  "showOlderMessages": "Show older messages",
113
130
  "selectCountry": "Select country",
114
131
  "integration": "Integration / Channel",
115
- "newClient": "New client",
132
+ "newClient": "New contact",
116
133
  "filterByState": "Filter by state",
117
134
  "filterByAssignee": "Filter by assignee",
118
135
  "filterByLifeCycle": "Filter by life-cycle",
119
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.",
120
- "liveChat": "Live Chat",
137
+ "liveChat": "Live Chat",
121
138
  "closedChat": "Closed Chat",
122
139
  "searchConvPlaceholder": "Search by name or phone",
123
140
  "assigned": "Assigned to",
124
141
  "lifeCycle": "Life Cycle",
125
142
  "addNewLifeCycle": "Add new life cycle",
126
143
  "addNewAgent": "Add new agent",
127
- "assignedtoMe2": "Me"
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"
128
192
  },
129
193
  "id": "ID",
130
194
  "save": "Save",
@@ -155,8 +219,8 @@
155
219
  "customerSupport": "Customer support",
156
220
  "searchPattern": "Search pattern",
157
221
  "outside24HourWindow": "Outside 24 hour window",
158
- "outside24HourWindowDetails": "You can only send a message to clients who have messaged you in the last 24 hours.",
159
- "outside24HourWindowSendTemplate": "You can initiate a conversation with the client again by sending a message template.",
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.",
160
224
  "send": "Send",
161
225
  "liveConversations": "Live conversations",
162
226
  "menu_search": "Search"