@zenify-omni/chat-js 0.1.0
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 +21 -0
- package/README.md +28 -0
- package/api/campaign.js +19 -0
- package/api/chat.js +518 -0
- package/api/chatroom.js +254 -0
- package/api/contact.js +45 -0
- package/api/crm-organization.js +101 -0
- package/api/customer.js +143 -0
- package/api/facebook-labels.js +11 -0
- package/api/field.js +11 -0
- package/api/file.js +17 -0
- package/api/filter.js +50 -0
- package/api/group.js +11 -0
- package/api/iam.js +23 -0
- package/api/index.js +54 -0
- package/api/orgTree.js +45 -0
- package/api/post.js +111 -0
- package/api/queue.js +15 -0
- package/api/report.js +422 -0
- package/api/send.js +21 -0
- package/api/session-event.js +30 -0
- package/api/session.js +249 -0
- package/api/settings/assign-task.js +10 -0
- package/api/settings/channel.js +136 -0
- package/api/settings/chat-layout.js +37 -0
- package/api/settings/chat-timeout.js +10 -0
- package/api/settings/common.js +32 -0
- package/api/settings/config.js +19 -0
- package/api/settings/index.js +24 -0
- package/api/settings/ivr.js +25 -0
- package/api/settings/queue-v3.js +56 -0
- package/api/settings/queue.js +48 -0
- package/api/settings/routing.js +32 -0
- package/api/settings/service.js +31 -0
- package/api/settings.js +567 -0
- package/api/shipping.js +19 -0
- package/api/shopee.js +21 -0
- package/api/smart-qc/index.js +4 -0
- package/api/smart-qc/keyword.js +10 -0
- package/api/tag.js +11 -0
- package/api/user.js +177 -0
- package/client.js +391 -0
- package/config/env.js +76 -0
- package/constants/advance-filter.js +358 -0
- package/constants/auto-assign-tag.js +13 -0
- package/constants/chat-message.js +423 -0
- package/constants/chat-room-tag.js +7 -0
- package/constants/chat-source.js +68 -0
- package/constants/chatbot.js +58 -0
- package/constants/common.js +4 -0
- package/constants/crm-organization.js +75 -0
- package/constants/distribute.js +8 -0
- package/constants/distribution-log.js +14 -0
- package/constants/events.js +27 -0
- package/constants/file-upload.js +86 -0
- package/constants/lead.js +111 -0
- package/constants/mask-data-config.js +16 -0
- package/constants/month.js +78 -0
- package/constants/quick-filter.js +49 -0
- package/constants/regex.js +34 -0
- package/constants/setting.js +62 -0
- package/constants/shipping.js +12 -0
- package/constants/social.js +21 -0
- package/constants/sortable-fields.js +146 -0
- package/constants/tenant_config.js +154 -0
- package/constants/use-query-key.js +470 -0
- package/constants/user.js +293 -0
- package/exceptions/axios-error.js +24 -0
- package/exceptions/https-error.js +28 -0
- package/exceptions/validator-error.js +20 -0
- package/lib/avatar-color.js +31 -0
- package/lib/i18n/index.js +85 -0
- package/lib/i18n/language-store.js +74 -0
- package/lib/i18n/locales/en/campaign.json +3 -0
- package/lib/i18n/locales/en/chat.json +656 -0
- package/lib/i18n/locales/en/common.json +1846 -0
- package/lib/i18n/locales/en/customer.json +20 -0
- package/lib/i18n/locales/en/lead.json +5 -0
- package/lib/i18n/locales/en/lumi.json +4 -0
- package/lib/i18n/locales/en/notification.json +107 -0
- package/lib/i18n/locales/en/org.json +4 -0
- package/lib/i18n/locales/en/posts.json +8 -0
- package/lib/i18n/locales/en/settings.json +39 -0
- package/lib/i18n/locales/vi/campaign.json +3 -0
- package/lib/i18n/locales/vi/chat.json +660 -0
- package/lib/i18n/locales/vi/common.json +1846 -0
- package/lib/i18n/locales/vi/customer.json +20 -0
- package/lib/i18n/locales/vi/lead.json +5 -0
- package/lib/i18n/locales/vi/lumi.json +4 -0
- package/lib/i18n/locales/vi/notification.json +107 -0
- package/lib/i18n/locales/vi/org.json +4 -0
- package/lib/i18n/locales/vi/posts.json +8 -0
- package/lib/i18n/locales/vi/settings.json +39 -0
- package/lib/i18n/server-label.js +33 -0
- package/lib/phone.js +70 -0
- package/lib/user-avatar.js +21 -0
- package/package.json +45 -0
- package/socket/index.js +30 -0
- package/transport-registry.js +77 -0
- package/utils/access-detail.js +119 -0
- package/utils/auth.js +205 -0
- package/utils/chunk-reload-guard.js +4 -0
- package/utils/concurrency-limiter.js +30 -0
- package/utils/crm-organization.js +0 -0
- package/utils/currency.js +14 -0
- package/utils/customers.js +42 -0
- package/utils/data.js +178 -0
- package/utils/date.js +144 -0
- package/utils/debounced-invalidate.js +15 -0
- package/utils/emoticon.js +134 -0
- package/utils/export.js +7 -0
- package/utils/field-layout.js +33 -0
- package/utils/filter-adapters.js +9 -0
- package/utils/filter.js +18 -0
- package/utils/formatters.js +6 -0
- package/utils/image-compression.js +169 -0
- package/utils/leads.js +13 -0
- package/utils/microlink.js +20 -0
- package/utils/org-tree.js +108 -0
- package/utils/request.js +461 -0
- package/utils/session-end.js +19 -0
- package/utils/string.js +154 -0
- package/utils/table-display-config.js +80 -0
- package/utils/validation.js +49 -0
|
@@ -0,0 +1,656 @@
|
|
|
1
|
+
{
|
|
2
|
+
"action.openAd": "Open ad",
|
|
3
|
+
"action.viewMore": "See more",
|
|
4
|
+
"action.hideDetails": "Hide details",
|
|
5
|
+
"action.viewDetail": "View detailed information",
|
|
6
|
+
"action.aiClassification": "AI classification",
|
|
7
|
+
"label.emotion": "Sentiment",
|
|
8
|
+
"label.sensitive": "Sensitive",
|
|
9
|
+
"label.entity": "Entity",
|
|
10
|
+
"title.conversationSummary": "Conversation summary",
|
|
11
|
+
"empty.noSummary": "No summary yet.",
|
|
12
|
+
"label.predictedSatisfaction": "Satisfaction prediction",
|
|
13
|
+
"status.suggesting": "Suggesting...",
|
|
14
|
+
"label.translation": "Translation",
|
|
15
|
+
"toast.translateMessageFail": "Cannot translate this message, please try again!",
|
|
16
|
+
"action.hideTranslation": "Hide translation",
|
|
17
|
+
"action.translateToVietnamese": "Translate to Vietnamese",
|
|
18
|
+
"status.translating": "Translating…",
|
|
19
|
+
"action.hideTranslate": "Hide translation",
|
|
20
|
+
"action.translate": "Translate",
|
|
21
|
+
"title.messageInsight": "Message insights",
|
|
22
|
+
"label.intentDetected": "Detect intent",
|
|
23
|
+
"toast.enterFeedback": "Please enter a response",
|
|
24
|
+
"toast.sendFeedbackSuccess": "Feedback sent successfully!",
|
|
25
|
+
"action.giveFeedbackOnAnswer": "Suggest an answer",
|
|
26
|
+
"title.feedbackOnBotAnswer": "Feedback on the bot's answer",
|
|
27
|
+
"field.desiredResponse": "Desired response",
|
|
28
|
+
"placeholder.desiredBotResponse": "Enter the desired response you want the bot to give",
|
|
29
|
+
"field.ratingScore": "Rating score (0-5)",
|
|
30
|
+
"field.ratingExample": "Example: 4.5",
|
|
31
|
+
"status.sending": "Sending...",
|
|
32
|
+
"action.createRecord": "Create record",
|
|
33
|
+
"action.createTicket": "Create ticket",
|
|
34
|
+
"action.findAgent": "Search agents",
|
|
35
|
+
"dialog.confirmTransferOwner": "Do you want to change the assignee for this conversation?",
|
|
36
|
+
"dialog.confirmDistributeConversation": "Do you want to allocate this conversation?",
|
|
37
|
+
"message.agentWillHandleConversation": "This agent will receive and handle this conversation!",
|
|
38
|
+
"toast.reopenConversationSuccess": "Conversation reopened successfully",
|
|
39
|
+
"toast.inviteAgentSuccess": "Agent invited successfully",
|
|
40
|
+
"toast.closeConversationSuccess": "Conversation closed successfully",
|
|
41
|
+
"toast.joinConversationSuccess": "Joined the conversation successfully",
|
|
42
|
+
"title.membersInChat": "Members in the chat",
|
|
43
|
+
"action.closeConversation": "Close conversation",
|
|
44
|
+
"message.closeConversationWarning": "Note: closing will end this conversation, and all agents currently in it will no longer be able to continue it!",
|
|
45
|
+
"dialog.confirmCloseWithTicket": "Do you want to close along with the ticket being processed?",
|
|
46
|
+
"action.closeConversationOnly": "Close conversation only",
|
|
47
|
+
"message.endConversationKeepTicketStatus": "End the conversation; the ticket keeps its status",
|
|
48
|
+
"action.closeConversationWithTicket": "Close conversation with ticket",
|
|
49
|
+
"action.closeConversationAndAllTickets": "Close the conversation and all tickets in progress",
|
|
50
|
+
"title.chatList": "Chat list",
|
|
51
|
+
"action.setAlias": "Set nickname",
|
|
52
|
+
"tab.friends": "Friends",
|
|
53
|
+
"label.stranger": "Stranger",
|
|
54
|
+
"status.disconnected": "Disconnected",
|
|
55
|
+
"sort.latestMessageFirst": "Latest message first",
|
|
56
|
+
"sort.newestConversationFirst": "Newest conversations first",
|
|
57
|
+
"sort.oldestConversationFirst": "Oldest conversations first",
|
|
58
|
+
"sort.unansweredFirst": "Unanswered first",
|
|
59
|
+
"title.searchMessages": "Search messages",
|
|
60
|
+
"message.noPersonalZaloLinked": "You haven't linked your personal Zalo",
|
|
61
|
+
"message.imagesSkippedLimit": "{length} images skipped because they are not yet optimized or exceed the limit.",
|
|
62
|
+
"action.sendWithHumanAgentTag": "Send a message with the Human Agent tag",
|
|
63
|
+
"placeholder.typeMessage": "Enter message",
|
|
64
|
+
"label.file": "File",
|
|
65
|
+
"label.image": "Image",
|
|
66
|
+
"field.appointment": "Appointment",
|
|
67
|
+
"field.commonGroup": "Shared group",
|
|
68
|
+
"message.dailyFriendRequestLimitReached": "The account has reached the daily friend request limit",
|
|
69
|
+
"action.addFriend": "Add friend",
|
|
70
|
+
"status.messageRecalled": "Message recalled",
|
|
71
|
+
"message.messageNotReadyRetry": "The message is not ready, please try again in a moment",
|
|
72
|
+
"message.maxPinnedLimit3": "Maximum 3 pinned items; you need to remove an old pin",
|
|
73
|
+
"action.unpin": "Unpin",
|
|
74
|
+
"action.pinMessage": "Pin message",
|
|
75
|
+
"action.resend": "Resend",
|
|
76
|
+
"label.newMessages": "New message",
|
|
77
|
+
"label.unreadMessages": "Unread messages",
|
|
78
|
+
"label.locationMap": "Location map",
|
|
79
|
+
"label.location": "Location",
|
|
80
|
+
"message.unsupportedMessage": "Message type not supported",
|
|
81
|
+
"status.forwardedMessage": "Message forwarded",
|
|
82
|
+
"toast.acceptFriendRequestSuccess": "Friend request accepted successfully",
|
|
83
|
+
"toast.rejectFriendRequestSuccess": "Friend request declined successfully",
|
|
84
|
+
"message.askingAboutOrder": "You are asking about order information...",
|
|
85
|
+
"label.orderTime": "Order time",
|
|
86
|
+
"label.deliverBefore": "Deliver first",
|
|
87
|
+
"label.orderValue": "Order value",
|
|
88
|
+
"label.buyer": "Buyer",
|
|
89
|
+
"action.hideOriginalMessage": "Hide original message",
|
|
90
|
+
"action.viewOriginalMessage": "View original message",
|
|
91
|
+
"label.performedBy": "Performed by: {undoByName}",
|
|
92
|
+
"label.createdTimeValue": "Created at: {createdTime}",
|
|
93
|
+
"label.you": "You",
|
|
94
|
+
"label.reminderPrefix": "Reminder:",
|
|
95
|
+
"message.atTimeSpan": " at <span>{timeValue}</span>",
|
|
96
|
+
"message.contactCardBracket": "[Business card] {title}",
|
|
97
|
+
"message.pollBracket": "[Poll]",
|
|
98
|
+
"message.appointmentBracket": "[Appointment]",
|
|
99
|
+
"message.locationBracket": "[Location]",
|
|
100
|
+
"message.productBracket": "[Product]",
|
|
101
|
+
"message.imagesCountBracket": "[{length} images]",
|
|
102
|
+
"message.imageBracket": "[Image]",
|
|
103
|
+
"label.totalMemberCount": "{totalMember} members",
|
|
104
|
+
"action.sendChatMessage": "Message",
|
|
105
|
+
"toast.noPermissionOpenChat": "You don't have permission to open this chat",
|
|
106
|
+
"message.messageRequired": "Message cannot be empty",
|
|
107
|
+
"toast.sendZaloMessageSuccess": "Zalo message sent successfully",
|
|
108
|
+
"list.commonGroupList": "Shared group list",
|
|
109
|
+
"placeholder.searchGroup": "Search groups",
|
|
110
|
+
"empty.noCommonGroups": "No shared groups",
|
|
111
|
+
"action.joinConversation": "Join conversation",
|
|
112
|
+
"dialog.confirmJoinOccupiedConversation": "An agent is already handling the conversation with this customer. Are you sure you want to join?",
|
|
113
|
+
"label.totalGroupCount": "Total: <0>{{count}} / {{total}} groups</0>",
|
|
114
|
+
"toast.setAliasSuccess": "Nickname set successfully",
|
|
115
|
+
"toast.aliasRemoved": "Nickname removed",
|
|
116
|
+
"message.aliasRequired": "Nickname cannot be empty",
|
|
117
|
+
"title.setCustomerAlias": "Set customer nickname",
|
|
118
|
+
"message.setAliasDescription": "The nickname will be synced to Zalo and displayed instead of the customer's name.",
|
|
119
|
+
"placeholder.alias": "Enter nickname",
|
|
120
|
+
"action.removeAlias": "Remove nickname",
|
|
121
|
+
"dialog.removeAliasTitle": "Remove nickname?",
|
|
122
|
+
"message.removeAliasDescription": "The nickname will be removed on Zalo and the display name will revert to the original. You can set it again later.",
|
|
123
|
+
"toast.sendMessageFail": "Could not send message",
|
|
124
|
+
"message.facebookPageDisconnected": "The connection for page <0>{{page}}</0> has expired or been revoked, so Zenify can't send messages to customers.",
|
|
125
|
+
"message.messageBracket": "[Message]",
|
|
126
|
+
"empty.noPersonalZaloAccountFound": "Personal Zalo account not found",
|
|
127
|
+
"empty.noMessagesToForward": "No messages to forward",
|
|
128
|
+
"toast.forwardMessageSuccess": "Message forwarded",
|
|
129
|
+
"action.forwardMessage": "Forward message",
|
|
130
|
+
"field.fromAccount": "From account",
|
|
131
|
+
"label.personalZaloBullet": "· Personal Zalo",
|
|
132
|
+
"placeholder.searchNamePhoneEmail": "Search by name, phone, email...",
|
|
133
|
+
"label.selectedCountOfTotal": "Selected {length}/{length2}",
|
|
134
|
+
"empty.noConversations": "No conversations",
|
|
135
|
+
"message.noRecipientSelected": "No recipient selected",
|
|
136
|
+
"field.sendOneSecondApart": "Send one by one, 1 second apart (to avoid being marked as spam)",
|
|
137
|
+
"placeholder.noteOptional": "Enter a note (optional)...",
|
|
138
|
+
"message.checkDroppedFile": "Recheck the file you dropped",
|
|
139
|
+
"message.dropFileToUpload": "Drop files here to upload",
|
|
140
|
+
"label.selectedMessageCount": "{length} messages selected",
|
|
141
|
+
"label.viewers": "Viewer",
|
|
142
|
+
"empty.noOneViewed": "No one has viewed yet",
|
|
143
|
+
"toast.updateTemplateSuccess": "Message template updated successfully",
|
|
144
|
+
"toast.createTemplateSuccess": "Message template created successfully",
|
|
145
|
+
"toast.updateTemplateFail": "Failed to update message template",
|
|
146
|
+
"toast.createTemplateFail": "Failed to create message template",
|
|
147
|
+
"action.editTemplate": "Edit message template",
|
|
148
|
+
"action.createMessageTemplate": "Create message template",
|
|
149
|
+
"field.templateName": "Template name",
|
|
150
|
+
"placeholder.templateName": "Enter message template name",
|
|
151
|
+
"field.variableFormat": "Variable format",
|
|
152
|
+
"field.headerLabel": "Title (Header)",
|
|
153
|
+
"field.headerTemplateContent": "Title content template",
|
|
154
|
+
"placeholder.contentForParam": "Enter content for {param_name}",
|
|
155
|
+
"label.mediaFile": "Media file",
|
|
156
|
+
"message.imageFormatLimit5mbAlt": "Images must be in jpg, jpeg, or png format and no larger than 5 MB.",
|
|
157
|
+
"action.addMedia": "Add media",
|
|
158
|
+
"message.maxImageSize5mb": "Maximum image size 5MB",
|
|
159
|
+
"field.bodyContent": "Content (Body)",
|
|
160
|
+
"field.templateExampleBody2": "Hello {{customer_name}}, your order #{{order_id}} has been confirmed.",
|
|
161
|
+
"field.templateExampleBody1": "Hello {{1}}, your order #{{2}} has been confirmed.",
|
|
162
|
+
"field.variablePlaceholderExample": "{{variable}}",
|
|
163
|
+
"field.exampleValueForBodyVariable": "Example value for the Body variable",
|
|
164
|
+
"field.exampleValue": "Example value",
|
|
165
|
+
"field.footer": "Footer",
|
|
166
|
+
"placeholder.footerContentOptional": "Enter footer content (optional)",
|
|
167
|
+
"field.buttonOptional": "Button (Optional)",
|
|
168
|
+
"message.buttonHelpsCustomerReply": "Create a button to help customers reply to your message or take an action.",
|
|
169
|
+
"action.addButton": "Add button",
|
|
170
|
+
"field.buttonNameMax20Chars": "Button name (up to 20 characters)",
|
|
171
|
+
"action.createTemplate": "Create template",
|
|
172
|
+
"toast.deleteTemplateFailed": "Failed to delete message template",
|
|
173
|
+
"toast.deleteTemplateSuccess": "Message template deleted successfully",
|
|
174
|
+
"toast.copyTemplateSuccess": "Message template copied successfully",
|
|
175
|
+
"toast.copyTemplateFail": "Failed to copy message template",
|
|
176
|
+
"toast.sendTemplateSuccess": "Message template sent successfully",
|
|
177
|
+
"title.metaMessageTemplate": "Message template (Meta)",
|
|
178
|
+
"label.recommended": "Suggested",
|
|
179
|
+
"placeholder.searchTemplate": "Search templates",
|
|
180
|
+
"empty.noQuickReplyTemplates": "No quick reply templates for you.",
|
|
181
|
+
"message.noTemplatesContactAdmin": "You don't have any message templates to use yet. Please contact your system Admin to register/configure a new template on Meta Business Suite.",
|
|
182
|
+
"message.templateNoVariables": "This message template has no variables to assign values to.",
|
|
183
|
+
"field.selectPage": "Select page",
|
|
184
|
+
"placeholder.searchSuggestedTemplate": "Search suggested templates",
|
|
185
|
+
"toast.selectPageToViewTemplates": "Please select a page to view suggested templates.",
|
|
186
|
+
"empty.noSuggestedTemplates": "No suggested message templates found.",
|
|
187
|
+
"title.createMessageTemplate": "Create message template",
|
|
188
|
+
"status.copying": "Copying...",
|
|
189
|
+
"action.sendTemplate": "Send template",
|
|
190
|
+
"label.templateNameValue": "Message template name: {name}",
|
|
191
|
+
"label.attachedImage": "Attached image",
|
|
192
|
+
"placeholder.valueForLabel": "Enter value for {label}",
|
|
193
|
+
"message.imageFormatLimit5mb": "Images must be in jpg, jpeg, or png format and no larger than 5 MB.",
|
|
194
|
+
"message.imageExceedsChannelLimit": "The image exceeds the channel's size limit",
|
|
195
|
+
"label.pastedFileCount": "{length} files pasted",
|
|
196
|
+
"action.sendNow": "Send now",
|
|
197
|
+
"action.deleteFile": "Delete file",
|
|
198
|
+
"action.reopenConversation": "Reopen conversation",
|
|
199
|
+
"action.inviteAgent": "Invite agent",
|
|
200
|
+
"action.retrieveAgain": "Retrieve",
|
|
201
|
+
"action.receiveChat": "Receive",
|
|
202
|
+
"toast.loadOldMessagesFail": "Failed to load old messages",
|
|
203
|
+
"title.recentMessageHistory": "Most recent message history with the customer",
|
|
204
|
+
"empty.noChatHistory": "No chat history found",
|
|
205
|
+
"toast.unassignLabelSuccess": "Label removed successfully",
|
|
206
|
+
"toast.assignLabelSuccess": "Label applied successfully",
|
|
207
|
+
"action.createPersonalTag": "Create personal tag",
|
|
208
|
+
"label.suggested": "Suggestion",
|
|
209
|
+
"toast.createPersonalTagSuccess": "Personal label created successfully",
|
|
210
|
+
"toast.deletePersonalTagSuccess": "Personal label deleted successfully",
|
|
211
|
+
"toast.updatePersonalTagSuccess": "Personal label updated successfully",
|
|
212
|
+
"message.useLabelsToDescribeSort": "Use labels to describe and organize people...",
|
|
213
|
+
"placeholder.labelName": "Label name...",
|
|
214
|
+
"empty.noLabelsFound": "No labels found",
|
|
215
|
+
"action.deletePersonalTag": "Delete personal label",
|
|
216
|
+
"dialog.confirmDeleteLabelNamed": "Are you sure you want to delete the label \"{name}\"?",
|
|
217
|
+
"title.adInfo": "Ad information",
|
|
218
|
+
"field.adId": "Ad code",
|
|
219
|
+
"field.adSource": "Ad source",
|
|
220
|
+
"field.postId": "Post code",
|
|
221
|
+
"label.againSuffix": " again",
|
|
222
|
+
"label.errorSuffix": " error",
|
|
223
|
+
"label.performedByPrefix": "Performed by:",
|
|
224
|
+
"title.eventTimeline": "Event timeline",
|
|
225
|
+
"placeholder.search": "Search...",
|
|
226
|
+
"empty.notFound": "Not found",
|
|
227
|
+
"action.deleteSecondaryName": "Delete customer alias",
|
|
228
|
+
"dialog.confirmDeleteSecondaryName": "Are you sure you want to delete this customer alias?",
|
|
229
|
+
"action.deleteSecondaryPhone": "Delete secondary phone number",
|
|
230
|
+
"dialog.confirmDeleteSecondaryPhone": "Are you sure you want to delete this secondary phone number?",
|
|
231
|
+
"action.deleteSecondaryEmail": "Delete secondary email",
|
|
232
|
+
"dialog.confirmDeleteSecondaryEmail": "Are you sure you want to delete this secondary email?",
|
|
233
|
+
"title.customInfo": "Custom information",
|
|
234
|
+
"action.deleteDeal": "Delete deal",
|
|
235
|
+
"dialog.confirmDeleteDeal": "Are you sure you want to delete this deal? This action cannot be undone!",
|
|
236
|
+
"label.agentName": "Agent: {name}",
|
|
237
|
+
"title.ordererInfo": "Orderer information",
|
|
238
|
+
"title.recipientInfo": "Recipient information",
|
|
239
|
+
"field.shippingType": "Shipping type",
|
|
240
|
+
"placeholder.addNote": "Add note...",
|
|
241
|
+
"message.newTicketForLead": "New ticket for lead {name}",
|
|
242
|
+
"message.newTicketForCustomer": "New ticket for customer {name}",
|
|
243
|
+
"toast.createTicketSuccess": "New ticket created successfully",
|
|
244
|
+
"message.titleRequired": "Title cannot be empty",
|
|
245
|
+
"message.requesterRequired": "Requester cannot be empty",
|
|
246
|
+
"placeholder.ticketTitle": "Enter ticket title",
|
|
247
|
+
"label.ccMe": "CC me",
|
|
248
|
+
"action.addMeAsFollower": "Add me",
|
|
249
|
+
"field.applicablePipeline": "Applied pipeline",
|
|
250
|
+
"action.viewTicketDetail": "View ticket details",
|
|
251
|
+
"action.distributeAgent": "Allocate agents",
|
|
252
|
+
"toast.labelAssigned": "Labeled",
|
|
253
|
+
"toast.assignLabelFail": "Cannot apply label",
|
|
254
|
+
"toast.labelUnassigned": "Label removed",
|
|
255
|
+
"toast.unassignLabelFail": "Cannot remove label",
|
|
256
|
+
"message.labelAlreadyAssigned": "This label is already assigned",
|
|
257
|
+
"placeholder.searchLabel": "Search labels",
|
|
258
|
+
"title.suggestedFacebookLabels": "Facebook label suggestion",
|
|
259
|
+
"action.transferConversation": "Transfer conversation",
|
|
260
|
+
"dialog.confirmTransferWithTicket": "Do you want to transfer along with the ticket you are handling?",
|
|
261
|
+
"action.transferConversationOnly": "Transfer conversation only",
|
|
262
|
+
"message.recipientOnlyReceives": "The recipient will only receive the conversation",
|
|
263
|
+
"action.transferConversationWithTicket": "Transfer conversation with ticket",
|
|
264
|
+
"label.transferAllSupportData": "Transfer all related support data",
|
|
265
|
+
"placeholder.searchKeyword": "Enter a keyword to search",
|
|
266
|
+
"toast.loadNoteFail": "Could not load notes",
|
|
267
|
+
"toast.updateInfoSuccess": "Information updated successfully",
|
|
268
|
+
"message.customerNameRequired": "Customer name cannot be empty",
|
|
269
|
+
"label.secondaryPhoneSuffix": " secondary phone number",
|
|
270
|
+
"label.secondaryCustomerNameSuffix": " secondary customer name",
|
|
271
|
+
"label.secondaryEmailSuffix": " secondary email",
|
|
272
|
+
"placeholder.secondaryPhone": "Enter secondary phone number",
|
|
273
|
+
"placeholder.secondaryName": "Enter alias",
|
|
274
|
+
"placeholder.secondaryEmail": "Enter secondary email",
|
|
275
|
+
"action.addSecondaryName": "Add customer alias",
|
|
276
|
+
"action.addSecondaryPhone": "Add secondary phone number",
|
|
277
|
+
"action.addSecondaryEmail": "Add secondary email",
|
|
278
|
+
"field.leadStage": "Lead stage",
|
|
279
|
+
"field.customerStage": "Customer stage",
|
|
280
|
+
"placeholder.addTag": "Add tag...",
|
|
281
|
+
"action.manageFacebookLabels": "Manage Facebook labels",
|
|
282
|
+
"toast.createLabelSuccess": "New label created",
|
|
283
|
+
"toast.createLabelFail": "Cannot create label",
|
|
284
|
+
"toast.deleteLabelSuccess": "Label deleted",
|
|
285
|
+
"toast.deleteLabelFail": "Cannot delete label",
|
|
286
|
+
"message.labelAlreadyExists": "This label already exists",
|
|
287
|
+
"action.manageCustomLabels": "Manage custom labels",
|
|
288
|
+
"title.recentActivity": "Recent activity",
|
|
289
|
+
"title.subInfo": "Secondary information",
|
|
290
|
+
"status.undetermined": "Undetermined",
|
|
291
|
+
"toast.noPermissionAction": "You don't have permission to perform this function!",
|
|
292
|
+
"action.sendMail": "Send mail",
|
|
293
|
+
"empty.noSubInfo": "No secondary information",
|
|
294
|
+
"action.viewMembers": "View members",
|
|
295
|
+
"message.friendRequestGreeting": "Hi, I'm {displayName}. Let's connect!",
|
|
296
|
+
"toast.sendZaloFriendRequestSuccess": "Zalo friend request sent successfully",
|
|
297
|
+
"action.sendZaloFriendRequest": "Send Zalo friend request",
|
|
298
|
+
"toast.selectMemberToAddToGroup": "Please select members to add to the group",
|
|
299
|
+
"placeholder.searchFriendNamePhone": "Search by name or friend's phone number",
|
|
300
|
+
"list.suggestedList": "Suggestion list",
|
|
301
|
+
"label.selectedCountOf99": "Selected {length} / 99",
|
|
302
|
+
"toast.updateGroupAvatarSuccess": "Group avatar updated successfully",
|
|
303
|
+
"toast.updateGroupNameSuccess": "Group name updated successfully",
|
|
304
|
+
"message.groupNameRequiredAlt": "Group name cannot be empty",
|
|
305
|
+
"message.groupNameMaxLength50": "The group name cannot exceed 50 characters",
|
|
306
|
+
"message.missingGroupOrConversationInfo": "Missing group or conversation information; cannot leave the group",
|
|
307
|
+
"toast.leaveGroupSuccess": "Left group successfully",
|
|
308
|
+
"message.invalidImageFormat": "Invalid image format. Supported: png, jpg, jpeg",
|
|
309
|
+
"placeholder.zaloGroupName": "Enter Zalo group name",
|
|
310
|
+
"title.groupMembers": "Group members",
|
|
311
|
+
"label.groupJoinLink": "Group join link",
|
|
312
|
+
"toast.enableGroupLinkSuccess": "Group join link enabled",
|
|
313
|
+
"toast.disableGroupLinkSuccess": "Group join link disabled",
|
|
314
|
+
"action.leaveGroup": "Leave group",
|
|
315
|
+
"dialog.confirmLeaveGroup": "Are you sure you want to leave this group?",
|
|
316
|
+
"action.leaveGroupAndCloseConversation": "Leave group and close conversation",
|
|
317
|
+
"message.lastMemberLeaveClosesConversation": "You are the last member of the group. Leaving the group will also close this conversation. Are you sure you want to continue?",
|
|
318
|
+
"action.removeFromGroup": "Remove from group",
|
|
319
|
+
"action.viewCommonGroups": "View common groups",
|
|
320
|
+
"toast.removeGroupMemberSuccess": "Member removed from the group successfully",
|
|
321
|
+
"empty.noMembersFound": "No members",
|
|
322
|
+
"toast.sendZaloMessageFail": "Cannot send Zalo message, please check the Zalo information",
|
|
323
|
+
"action.sendZaloMessage": "Send Zalo message",
|
|
324
|
+
"toast.transferGroupOwnerSuccess": "Team leader role transferred successfully",
|
|
325
|
+
"toast.selectMemberToTransferOwner": "Please select a member to transfer team lead role",
|
|
326
|
+
"action.transferGroupOwner": "Transfer team leader role",
|
|
327
|
+
"message.groupOwnerMustTransferBeforeLeaving": "You are the group leader. Please select a member to transfer group leadership to before leaving the group.",
|
|
328
|
+
"empty.noMembers": "No members",
|
|
329
|
+
"action.transferOwnershipAndContinue": "Transfer ownership & continue",
|
|
330
|
+
"field.selectZaloLabel": "Select Zalo label",
|
|
331
|
+
"label.productCount": "{length} products",
|
|
332
|
+
"action.createDeal": "Create new deal",
|
|
333
|
+
"toast.getProductInfoFail": "Error fetching product information",
|
|
334
|
+
"toast.createOrderSuccess": "Order created successfully",
|
|
335
|
+
"toast.updateOrderSuccess": "Order updated successfully",
|
|
336
|
+
"title.updateOrder": "Update order",
|
|
337
|
+
"action.createNewOrder": "Create new order",
|
|
338
|
+
"title.productsAndCombos": "Products & Combos",
|
|
339
|
+
"action.saveContact": "Save contact",
|
|
340
|
+
"empty.noContactInfoToSave": "No contact information found to save",
|
|
341
|
+
"message.humanAgentTagNote": "*Message sent with Human Agent tag",
|
|
342
|
+
"message.invalidParameter": "Invalid parameter",
|
|
343
|
+
"message.accountDisconnected": "The account has been disconnected. Please check it and reconnect.",
|
|
344
|
+
"label.callFailed": "Call failed",
|
|
345
|
+
"label.callSucceeded": "Call completed",
|
|
346
|
+
"label.incomingCall": "Incoming call",
|
|
347
|
+
"label.minutesSeconds": "{minutes} min {secs} sec",
|
|
348
|
+
"action.changeColor": "Change color",
|
|
349
|
+
"field.notifyWholeGroup": "Notify the whole team",
|
|
350
|
+
"message.appointmentDeleted": "This appointment has been deleted",
|
|
351
|
+
"message.appointmentContentUnavailable": "The appointment content is no longer available",
|
|
352
|
+
"dialog.confirmDeleteReminder": "Delete this reminder?",
|
|
353
|
+
"message.infoEmptyPleaseCheck": "The information is empty, please check again!",
|
|
354
|
+
"action.createAppointmentReminder": "Create appointment reminder",
|
|
355
|
+
"status.reminded": "Reminded",
|
|
356
|
+
"label.upcoming": "Upcoming",
|
|
357
|
+
"list.appointmentList": "Appointment list",
|
|
358
|
+
"action.createNewAppointment": "Create new appointment",
|
|
359
|
+
"action.updateAppointment": "Update appointment",
|
|
360
|
+
"label.reminder": "Reminder",
|
|
361
|
+
"placeholder.reminderContent": "Enter reminder content, use @ to pull information.",
|
|
362
|
+
"field.repeatMethod": "Repeat method",
|
|
363
|
+
"field.selectRepeatMethod": "Select repeat method",
|
|
364
|
+
"action.createAppointment": "Create appointment",
|
|
365
|
+
"action.createReminder": "Create reminder",
|
|
366
|
+
"empty.noInteraction": "No interaction",
|
|
367
|
+
"action.assignLabel": "Apply label",
|
|
368
|
+
"action.pinConversation": "Pin conversation",
|
|
369
|
+
"action.markAsUnread": "Mark as unread",
|
|
370
|
+
"label.utilityMessage": "Utility message",
|
|
371
|
+
"label.chatForm": "Chat form",
|
|
372
|
+
"message.sharedPost": "Post shared",
|
|
373
|
+
"message.sentAFile": "Sent a file",
|
|
374
|
+
"message.sharedProduct": "Product shared",
|
|
375
|
+
"message.sentALocation": "Sent a location",
|
|
376
|
+
"toast.pinMessageSuccess": "A message was pinned",
|
|
377
|
+
"toast.unpinMessageSuccess": "A message was unpinned",
|
|
378
|
+
"message.sharedVoucher": "Voucher shared",
|
|
379
|
+
"label.orderPrefix": "Order:",
|
|
380
|
+
"label.attachedProduct": "Attached product",
|
|
381
|
+
"label.draftBracket": "[Draft]",
|
|
382
|
+
"message.sentAnImage": "Sent an image",
|
|
383
|
+
"message.sentAVideo": "Sent a video",
|
|
384
|
+
"message.sentAnAudio": "Sent an audio clip",
|
|
385
|
+
"message.sentASticker": "Sent a sticker",
|
|
386
|
+
"label.attachedFile": "Attachment",
|
|
387
|
+
"empty.noConversationHistory": "No conversations in your history yet",
|
|
388
|
+
"message.maxPinnedConversations": "You can pin up to 5 conversations only",
|
|
389
|
+
"toast.unpinFail": "Failed to unpin",
|
|
390
|
+
"toast.pinConversationFail": "Failed to pin conversation",
|
|
391
|
+
"toast.markAsUnreadFail": "Failed to mark as unread",
|
|
392
|
+
"action.exportChatHistory": "Export chat history",
|
|
393
|
+
"dialog.confirmExportChatHistory": "Do you want to export chat history using the current filter? The Excel file will be sent via notification once processing is complete.",
|
|
394
|
+
"action.exportData": "Export data",
|
|
395
|
+
"toast.createGroupSuccess": "Group created successfully",
|
|
396
|
+
"message.groupNameRequired": "Group name cannot be empty",
|
|
397
|
+
"message.groupNameMaxLength50AndRequired": "The group name cannot exceed 50 characters and cannot be empty",
|
|
398
|
+
"toast.selectGroupMembers": "Please select members for the group",
|
|
399
|
+
"toast.selectAllocationMethod": "Please select an allocation type",
|
|
400
|
+
"action.createGroup": "Create group",
|
|
401
|
+
"field.groupName": "Group name",
|
|
402
|
+
"placeholder.groupName": "Enter group name",
|
|
403
|
+
"action.createGroupFromAccount": "Create a group from an account",
|
|
404
|
+
"field.selectZaloAccount": "Select Zalo account",
|
|
405
|
+
"field.distributionMethod": "Allocation method",
|
|
406
|
+
"field.groupCreatorDistribution": "Allocate the group creator",
|
|
407
|
+
"field.autoDistribution": "Automatic allocation",
|
|
408
|
+
"action.editFilter": "Edit filter",
|
|
409
|
+
"field.selectApplicableAgent": "Select agents to apply",
|
|
410
|
+
"field.selectApplicableDepartment": "Select the department to apply",
|
|
411
|
+
"field.filterCriteria": "Filter criteria",
|
|
412
|
+
"toast.selectDateRange": "Please select a time range",
|
|
413
|
+
"message.startTimeBeforeEndTime": "The start time must be earlier than the end time",
|
|
414
|
+
"message.maxDateRangeDays": "The maximum time range is {MAX_DATE_RANGE_DAYS} days",
|
|
415
|
+
"message.selectDateRangeForExport": "Select a time range to export chat history to an Excel file.",
|
|
416
|
+
"field.timeType": "Time type",
|
|
417
|
+
"field.selectStartDate": "Select start date",
|
|
418
|
+
"field.selectEndDate": "Select end date",
|
|
419
|
+
"message.excelSentViaNotification": "The Excel file will be sent via notification once processing is complete.",
|
|
420
|
+
"placeholder.searchConversation": "Search conversations (by content, phone number, etc.)",
|
|
421
|
+
"message.addConditionToFilterConversations": "Add conditions to filter conversations precisely. Save it as a filter to open it quickly next time.",
|
|
422
|
+
"action.saveAsNewFilter": "Save as a new filter",
|
|
423
|
+
"action.unpinAll": "Unpin all",
|
|
424
|
+
"label.conversationStatus": "Conversation status",
|
|
425
|
+
"field.selectConversationStatus": "Select conversation status",
|
|
426
|
+
"filter.filterBySource": "Filter by source",
|
|
427
|
+
"field.messageType": "Message type",
|
|
428
|
+
"placeholder.adsId": "Enter Ads ID",
|
|
429
|
+
"field.selectDetailedSource": "Select detailed source",
|
|
430
|
+
"placeholder.searchAssignee": "Type to find an assignee",
|
|
431
|
+
"status.unanswered": "Not answered",
|
|
432
|
+
"dialog.confirmDeleteFilter": "Are you sure you want to delete the filter \"{name}\"?",
|
|
433
|
+
"empty.noFriends": "No friends",
|
|
434
|
+
"label.showingFriendsCount": "Showing {length} / {length2} friends",
|
|
435
|
+
"list.friendList": "Friend list",
|
|
436
|
+
"field.personalZaloSourceLower": "Personal Zalo source",
|
|
437
|
+
"placeholder.searchNameOrPhone": "Search by name or phone number",
|
|
438
|
+
"action.recallFriendRequest": "Withdraw invitation",
|
|
439
|
+
"empty.noFriendRequests": "No friend requests",
|
|
440
|
+
"toast.recallFriendRequestSuccess": "Friend request withdrawn successfully",
|
|
441
|
+
"title.friendRequests": "Friend request",
|
|
442
|
+
"label.receivedRequestsCount": "Invitations received ({length})",
|
|
443
|
+
"label.sentRequestsCount": "Invitations sent ({length})",
|
|
444
|
+
"message.searchCustomerToFriendDescription": "Search for a customer you want to add as a friend or start a conversation with, to maintain the connection and provide better care.",
|
|
445
|
+
"empty.noMatchingResult": "No matching results found. Please try a different keyword.",
|
|
446
|
+
"status.alreadyLinked": "(You have linked)",
|
|
447
|
+
"label.dailyFriendRequestCount": "Friend requests sent today ",
|
|
448
|
+
"field.selectZaloAccountAlt": "Select Zalo account",
|
|
449
|
+
"title.zaloSearchResult": "Zalo search results",
|
|
450
|
+
"status.searching": "Searching...",
|
|
451
|
+
"empty.noSearchResultForKeyword": "No results found for \"{keyword}\"",
|
|
452
|
+
"empty.noMessagesFound": "No messages found",
|
|
453
|
+
"toast.createQuickFilterSuccess": "Quick filter created successfully",
|
|
454
|
+
"toast.selectAtLeastOneAgent": "Please select at least 1 agent",
|
|
455
|
+
"toast.selectAtLeastOneDepartment": "Please select at least 1 department",
|
|
456
|
+
"placeholder.searchKeywordMin2Chars": "Enter search keyword (at least 2 characters)...",
|
|
457
|
+
"empty.noMessagesFoundForKeyword": "No messages found for \"{trimmedKeyword}\"",
|
|
458
|
+
"toast.selectAtLeastOneContactToSend": "Please select at least one contact to send a message",
|
|
459
|
+
"toast.selectPersonalZaloSource": "Please select a personal Zalo source",
|
|
460
|
+
"message.messageSendingCheckNotification": "Your message is being sent. Check the notifications section in a few minutes.",
|
|
461
|
+
"action.sendBulkMessages": "Send bulk messages",
|
|
462
|
+
"action.selectMultiple": "Select multiple",
|
|
463
|
+
"action.exitSelectMultiple": "Exit multi-select",
|
|
464
|
+
"action.selectConversation": "Select conversation",
|
|
465
|
+
"label.selectedConversationsCount": "{count} conversations selected",
|
|
466
|
+
"label.selectedAllConversationsInTab": "All conversations in the {tab} tab selected",
|
|
467
|
+
"action.selectAllConversations": "Select all conversations",
|
|
468
|
+
"action.assignTags": "Assign tags",
|
|
469
|
+
"error.chatSessionRoomLocked": "This conversation is being handled elsewhere, please try again later",
|
|
470
|
+
"error.chatSessionNotFound": "Chat session not found",
|
|
471
|
+
"error.chatSessionNoValidIds": "No valid conversation to process",
|
|
472
|
+
"action.assignTagCount": "Assign {count} tags",
|
|
473
|
+
"dialog.assignTagTitle": "Assign tag",
|
|
474
|
+
"dialog.quickAssignTagForConversations": "Quickly assign tags to the selected conversations",
|
|
475
|
+
"toast.changeAssigneeSuccess": "Assignee changed successfully",
|
|
476
|
+
"toast.changeAssigneeResult": "Changed assignee for {success}/{total} conversations, {failed} failed",
|
|
477
|
+
"action.unassignTags": "Remove tags",
|
|
478
|
+
"action.unassignTagCount": "Remove {count} tags",
|
|
479
|
+
"dialog.unassignTagTitle": "Remove tag",
|
|
480
|
+
"dialog.quickUnassignTagForConversations": "Quickly remove tags from the selected conversations",
|
|
481
|
+
"action.changeAssignee": "Change assignee",
|
|
482
|
+
"action.getCustomerFacebookId": "Get customer's Facebook ID",
|
|
483
|
+
"toast.facebookExtensionRequired": "No response from the extension. Please check that it is installed and enabled",
|
|
484
|
+
"toast.facebookDataMissing": "This conversation is missing required Facebook data, can't fetch the Facebook ID",
|
|
485
|
+
"toast.fetchingFacebookId": "Fetching customer's Facebook ID...",
|
|
486
|
+
"field.personalZaloSource": "Personal Zalo source",
|
|
487
|
+
"field.zaloLabel": "Zalo label",
|
|
488
|
+
"field.lastUpdatedTimeRange": "Most recent update time (from - to)",
|
|
489
|
+
"label.selectedCount": "Selected {length}",
|
|
490
|
+
"toast.deleteFlagLabelSuccess": "Sticker deleted successfully",
|
|
491
|
+
"toast.createFlagSuccess": "Sticker created successfully",
|
|
492
|
+
"toast.updateFlagSuccess": "Sticker updated successfully",
|
|
493
|
+
"action.addConversationFlag": "Add conversation label",
|
|
494
|
+
"title.updateConversationFlag": "Update conversation label",
|
|
495
|
+
"action.manageConversationFlag": "Manage conversation labels",
|
|
496
|
+
"field.flagName": "Sticker name",
|
|
497
|
+
"placeholder.flagName": "Enter sticker name",
|
|
498
|
+
"list.flagList": "Sticker list",
|
|
499
|
+
"action.deleteFlagLabel": "Delete sticker",
|
|
500
|
+
"dialog.confirmDeleteLabel": "Are you sure you want to delete this label?",
|
|
501
|
+
"action.addFlag": "Add label",
|
|
502
|
+
"action.manageLabels": "Manage labels",
|
|
503
|
+
"dialog.confirmJoinOccupiedConversationAlt": "An agent is already handling the conversation with this customer. Are you sure you want to join?",
|
|
504
|
+
"title.multiChannelChatExperience": "Experience omnichannel conversation connectivity with ZENIFY",
|
|
505
|
+
"label.productsTotalOrderValue": "products, Total order value",
|
|
506
|
+
"label.conversations": "conversations",
|
|
507
|
+
"label.forwardedMessage": "Forwarded message",
|
|
508
|
+
"label.otherMessages": "other messages",
|
|
509
|
+
"label.toAddVariable": "to add a variable",
|
|
510
|
+
"label.button": "Button",
|
|
511
|
+
"label.conversationReopenedByAgent": "The conversation was reopened by agent",
|
|
512
|
+
"label.conversationManuallyAssignedToAgent": "The conversation was manually assigned to agent",
|
|
513
|
+
"label.conversationAssignedToAgent": "The conversation was assigned to agent",
|
|
514
|
+
"label.transferredConversationTo": "transferred the conversation to",
|
|
515
|
+
"label.transferredConversation": "transferred the conversation",
|
|
516
|
+
"label.conversationTransferredToAgent": "The conversation was transferred to agent",
|
|
517
|
+
"label.acceptedThisConversation": "accepted this conversation",
|
|
518
|
+
"label.groupMembers": "group members",
|
|
519
|
+
"message.attachedContactCard": "Attached business card",
|
|
520
|
+
"label.adPrefix": "Ad:",
|
|
521
|
+
"message.sharedReel": "Shared a Reel",
|
|
522
|
+
"message.sharedGroup": "Shared a group",
|
|
523
|
+
"message.sharedPage": "Shared a page",
|
|
524
|
+
"message.sharedEvent": "Shared an event",
|
|
525
|
+
"message.sharedReview": "Shared a review",
|
|
526
|
+
"message.bookedAppointment": "Booked an appointment",
|
|
527
|
+
"message.sentGifImage": "Sent a GIF image",
|
|
528
|
+
"message.createdPoll": "Created a poll",
|
|
529
|
+
"message.sentAGifImage": "Sent a GIF image",
|
|
530
|
+
"message.sentMultipleImages": "Sent multiple images",
|
|
531
|
+
"message.sentAudioClip": "Sent an audio clip",
|
|
532
|
+
"placeholder.selectSource": "Select source",
|
|
533
|
+
"placeholder.selectMessageType": "Select message type",
|
|
534
|
+
"hint.onlyAppliesWhenFacebookAndAds": "Only applies when Source includes Facebook and Message type is Ads",
|
|
535
|
+
"placeholder.selectPhoneNumber": "Select phone number",
|
|
536
|
+
"placeholder.selectSlaStatus": "Select SLA status",
|
|
537
|
+
"placeholder.selectChatbot": "Select chatbot",
|
|
538
|
+
"placeholder.selectReplyStatus": "Select reply status",
|
|
539
|
+
"placeholder.selectGroup": "Select group",
|
|
540
|
+
"placeholder.selectInteractionStatus": "Select interaction status",
|
|
541
|
+
"placeholder.selectTimeType": "Select time type",
|
|
542
|
+
"label.phoneNumberPrefix": "Phone number:",
|
|
543
|
+
"label.results": "results",
|
|
544
|
+
"status.sentOneMessage": "Sent 1 message",
|
|
545
|
+
"label.knowledgeUsed": "Knowledge used",
|
|
546
|
+
"label.guiDanhThiep": "Send contact card",
|
|
547
|
+
"message.khongTheGuiLaiDanh": "This contact card cannot be resent, please send it again from the start",
|
|
548
|
+
"label.recallMessage": "Recall message",
|
|
549
|
+
"label.failedToSendMessage": "Failed to send message",
|
|
550
|
+
"label.awaitingPayment": "Awaiting payment",
|
|
551
|
+
"label.awaitingPickup": "Awaiting pickup",
|
|
552
|
+
"label.delivering": "Delivering",
|
|
553
|
+
"label.returnRefund": "Return & refund",
|
|
554
|
+
"label.canceling": "Canceling",
|
|
555
|
+
"label.failedToSetNickname": "Failed to set nickname",
|
|
556
|
+
"label.failedToRemoveNickname": "Failed to remove nickname",
|
|
557
|
+
"label.tin": "messages",
|
|
558
|
+
"label.viTri12": "Position ({{1}}, {{2}})",
|
|
559
|
+
"label.tenBienCustomerName": "Variable name ({{customer_name}})",
|
|
560
|
+
"label.none": "None",
|
|
561
|
+
"label.textMediaFile": "Text + Media file",
|
|
562
|
+
"label.callAPhoneNumber": "Call a phone number",
|
|
563
|
+
"label.newMessageTemplate": "New message template",
|
|
564
|
+
"label.labelNameCannotBeEmpty": "Label name cannot be empty",
|
|
565
|
+
"label.theConversationHasBeenReopened": "The conversation has been reopened",
|
|
566
|
+
"label.theConversationHasBeenManually": "The conversation has been manually allocated",
|
|
567
|
+
"label.theConversationHasBeenAllocated": "The conversation has been allocated",
|
|
568
|
+
"label.theConversationHasBeenReceived": "The conversation has been received",
|
|
569
|
+
"label.system": "system",
|
|
570
|
+
"label.active": "Active",
|
|
571
|
+
"label.failedToUpdateInformation": "Failed to update information",
|
|
572
|
+
"label.failedToDeleteInformation": "Failed to delete information",
|
|
573
|
+
"label.anErrorOccurredPleaseDouble": "An error occurred, please double-check the Zalo information",
|
|
574
|
+
"label.failedToCloseConversationPlease": "Failed to close conversation, please close manually",
|
|
575
|
+
"label.guiDanhThiepThatBai": "Failed to send contact card",
|
|
576
|
+
"label.bold": "Bold",
|
|
577
|
+
"label.italic": "Italic",
|
|
578
|
+
"label.underline": "Underline",
|
|
579
|
+
"label.strikethrough": "Strikethrough",
|
|
580
|
+
"label.list": "List",
|
|
581
|
+
"label.numberedList": "Numbered list",
|
|
582
|
+
"label.reminderContentCannotBeEmpty": "Reminder content cannot be empty",
|
|
583
|
+
"message.timeCannotBeEmpty": "Time cannot be empty",
|
|
584
|
+
"message.repeatMethodCannotBeEmpty": "Repeat method cannot be empty",
|
|
585
|
+
"label.theTimeMustBeLater": "The time must be later than the current time",
|
|
586
|
+
"label.reminderMessageWithInvalidData": "Reminder message with invalid data",
|
|
587
|
+
"label.dataExportRequestReceivedYou": "Data export request received. You will be notified when the file is ready.",
|
|
588
|
+
"label.manageHiddenTags": "Manage hidden tags",
|
|
589
|
+
"label.hasPhoneNumber": "Has phone number",
|
|
590
|
+
"label.noPhoneNumber": "No phone number",
|
|
591
|
+
"label.aboutToBreachSla": "About to breach SLA",
|
|
592
|
+
"label.interaction": "Interaction",
|
|
593
|
+
"label.errorCheckingChatStatusPlease": "Error checking chat status. Please try again.",
|
|
594
|
+
"label.selectAccount": "Select account",
|
|
595
|
+
"label.thoiGianTinNhanCuoi": "Last message time",
|
|
596
|
+
"label.thoiGianPhatSinhTin": "Message time",
|
|
597
|
+
"label.vuiLongChonKhoangThoi": "Please select a message time range",
|
|
598
|
+
"label.hasPhoneNumber2": "Has phone number",
|
|
599
|
+
"label.noPhoneNumber2": "No phone number",
|
|
600
|
+
"label.interacting": "Interacting",
|
|
601
|
+
"label.bot": "Bot",
|
|
602
|
+
"label.conversationClosedByAgent": "An agent closed this conversation",
|
|
603
|
+
"label.conversationClosedByBot": "The bot closed this conversation",
|
|
604
|
+
"label.conversationClosedBySystem": "The system closed this conversation",
|
|
605
|
+
"label.shareTagWithTeam": "Share tag with team",
|
|
606
|
+
"message.cannotShareUpdatedPersonalTag": "The sharing status of a tag cannot be changed after it is created",
|
|
607
|
+
"message.editDeletePersonalTagRequiresRole": "Only an Administrator or Supervisor can edit or delete a shared tag",
|
|
608
|
+
"message.shareTagRequiresRole": "Only an Administrator or Supervisor can share a tag with the team",
|
|
609
|
+
"action.forwardToTargets": "Forward {count, plural, =1 {} other {# messages }}to {targets}",
|
|
610
|
+
"confirm.removeMemberFromGroup": "Do you want to remove {name} from the group?",
|
|
611
|
+
"label.customerName": "Customer: {name}",
|
|
612
|
+
"label.imageReplyPreview": "[Image] {content}",
|
|
613
|
+
"label.resultCount": "{count} results{more}",
|
|
614
|
+
"message.facebookIdFetched": "Fetched the Facebook ID and updated the contact",
|
|
615
|
+
"message.facebookIdFetchFailed": "Could not fetch the Facebook ID",
|
|
616
|
+
"message.fileFormatInvalid": "Invalid file format. Supported: {formats}",
|
|
617
|
+
"message.imageFormatInvalid": "Invalid image format. Supported: {formats}",
|
|
618
|
+
"message.userDidAction": "{name} {action}.",
|
|
619
|
+
"message.zaloFileSizeLimit": "The Zalo channel only supports files under {size}",
|
|
620
|
+
"status.fetchingCustomerFacebookId": "Fetching the customer's Facebook ID...",
|
|
621
|
+
"status.typing": "{name} is typing",
|
|
622
|
+
"dialog.quickAssignForConversations": "Quickly assign an owner to the selected conversations",
|
|
623
|
+
"message.selectAgentToContinue": "Select an agent to continue",
|
|
624
|
+
"message.zaloPersonalSkippedOnAssign": "Conversations from personal Zalo accounts are skipped. Conversations from official Zalo accounts still support changing the assignee.",
|
|
625
|
+
"empty.createTicketHint": "Create a ticket to start handling it.",
|
|
626
|
+
"empty.createDealHint": "Create a deal to start tracking this opportunity.",
|
|
627
|
+
"empty.createOrderHint": "Create an order to start selling.",
|
|
628
|
+
"empty.createTaskHint": "Create a task to start tracking it.",
|
|
629
|
+
"hint.receiveChatToCreate": "Receive the conversation before creating records",
|
|
630
|
+
"label.tagMatchMode": "Tag condition",
|
|
631
|
+
"option.tagMatchIncludes": "Contains",
|
|
632
|
+
"option.tagMatchEquals": "Equals",
|
|
633
|
+
"action.removeMember": "Remove from chat",
|
|
634
|
+
"title.confirmRemoveMember": "Remove member from chat",
|
|
635
|
+
"message.confirmRemoveMemberDescription": "Are you sure you want to remove {name} from this chat? They will no longer see the conversation.",
|
|
636
|
+
"message.cannotRemoveAssignedAgent": "The assigned agent cannot be removed — transfer or close the conversation instead",
|
|
637
|
+
"message.cannotRemoveTicketLinked": "This member is attached to a ticket of this conversation",
|
|
638
|
+
"message.cannotRemoveQueueMember": "This member sees the conversation through a distribution queue and cannot be removed individually",
|
|
639
|
+
"message.cannotRemoveNotAMember": "This user is not a member of the chat",
|
|
640
|
+
"message.cannotRemoveNoPermission": "Only the assigned agent, a department head, a supervisor or an administrator can remove members",
|
|
641
|
+
"message.youWereRemovedFromChat": "You were removed from the chat by {actor}",
|
|
642
|
+
"toast.removeMemberSuccess": "Member removed from chat successfully",
|
|
643
|
+
"message.youWereRemovedButCanStillView": "You were removed from the chat by {actor} and can no longer send messages",
|
|
644
|
+
"action.leaveConversation": "Leave chat",
|
|
645
|
+
"message.confirmLeaveConversationDescription": "You will no longer be able to send messages in this conversation. Rejoining requires a new invitation.",
|
|
646
|
+
"toast.leaveConversationSuccess": "Left the chat",
|
|
647
|
+
"label.memberSource": "Role",
|
|
648
|
+
"label.membershipAssigned": "Assigned agent",
|
|
649
|
+
"label.membershipInvited": "Invited",
|
|
650
|
+
"label.membershipSubscribed": "Pending join",
|
|
651
|
+
"label.membershipViewOnly": "View only",
|
|
652
|
+
"label.membershipCanTakeOver": "Take over chat",
|
|
653
|
+
"label.membershipQueue": "Distribution group",
|
|
654
|
+
"status.removingMember": "Removing member…",
|
|
655
|
+
"message.cannotRemoveMemberGeneric": "This member cannot be removed"
|
|
656
|
+
}
|