@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,1846 @@
|
|
|
1
|
+
{
|
|
2
|
+
"action.activate": "Activate",
|
|
3
|
+
"action.add": "Add",
|
|
4
|
+
"action.addBlock": "Add block",
|
|
5
|
+
"action.addCondition": "Add condition",
|
|
6
|
+
"action.addField": "Add field",
|
|
7
|
+
"action.addFieldAlt": "Add field",
|
|
8
|
+
"action.addFilterCriteria": "Add filter criteria",
|
|
9
|
+
"action.addForm": "Add form",
|
|
10
|
+
"action.addMember": "Add member",
|
|
11
|
+
"action.addNew": "Add new",
|
|
12
|
+
"action.addNewTicket": "Add new ticket",
|
|
13
|
+
"action.addNote": "Add note",
|
|
14
|
+
"action.addOption": "Add option",
|
|
15
|
+
"action.addReplyTemplate": "Add reply template",
|
|
16
|
+
"action.addRootUnit": "Add root unit",
|
|
17
|
+
"action.addSalesSequence": "Add sales sequence",
|
|
18
|
+
"action.addSubUnit": "Add child unit",
|
|
19
|
+
"action.addTask": "Add task",
|
|
20
|
+
"action.addZaloAccount": "Add Zalo account",
|
|
21
|
+
"action.addZaloFriend": "Add Zalo friend",
|
|
22
|
+
"action.agree": "Agree",
|
|
23
|
+
"action.allowAlways": "Allow on every access",
|
|
24
|
+
"action.apply": "Apply",
|
|
25
|
+
"action.assignVariableValue": "Assign a value to a variable",
|
|
26
|
+
"action.back": "Back",
|
|
27
|
+
"action.backToHome": "Back to home",
|
|
28
|
+
"action.bookAppointment": "Schedule appointment",
|
|
29
|
+
"action.call": "Make a call",
|
|
30
|
+
"action.callApiWebhook": "Call API/Webhook",
|
|
31
|
+
"action.cancel": "Cancel",
|
|
32
|
+
"action.cancelAlt": "Cancel",
|
|
33
|
+
"action.next": "Next",
|
|
34
|
+
"action.cancelCloseChatConfirmRequest": "Cancel the request to confirm closing the chat session",
|
|
35
|
+
"action.cancelEdit": "Cancel editing",
|
|
36
|
+
"action.change": "Change",
|
|
37
|
+
"action.changeFilterField": "Change filter field",
|
|
38
|
+
"action.checkNotification": "Check notifications",
|
|
39
|
+
"action.chooseFile": "select file",
|
|
40
|
+
"action.classify": "Classification",
|
|
41
|
+
"action.clearAll": "Clear all",
|
|
42
|
+
"action.clearAllCriteria": "Clear all criteria",
|
|
43
|
+
"action.clearFilter": "Delete filter",
|
|
44
|
+
"action.clearFilterAlt": "Clear filter",
|
|
45
|
+
"action.close": "Close",
|
|
46
|
+
"action.closeChatSession": "Close chat session",
|
|
47
|
+
"action.collapse": "Collapse",
|
|
48
|
+
"action.collapseAll": "Collapse all",
|
|
49
|
+
"action.complete": "Complete",
|
|
50
|
+
"action.confirm": "Confirm",
|
|
51
|
+
"action.connectBlock": "Connect block",
|
|
52
|
+
"action.continue": "Continue",
|
|
53
|
+
"action.convertToCustomer": "Convert to customer",
|
|
54
|
+
"action.copy": "Copy",
|
|
55
|
+
"action.copyLink": "Copy link",
|
|
56
|
+
"action.create": "Create",
|
|
57
|
+
"action.createDeal": "Create deal",
|
|
58
|
+
"action.createDealAlt": "Create deal",
|
|
59
|
+
"action.createFaq": "Create FAQ",
|
|
60
|
+
"action.createFilter": "Create filter",
|
|
61
|
+
"action.createFirstUnit": "Create the first unit",
|
|
62
|
+
"action.createGoal": "Create Goal",
|
|
63
|
+
"action.createIntent": "Create Intent",
|
|
64
|
+
"action.createLead": "Create lead",
|
|
65
|
+
"action.createNewFilter": "Create filter",
|
|
66
|
+
"action.createOrder": "Create order",
|
|
67
|
+
"action.createResponseTone": "Create response tone",
|
|
68
|
+
"action.createSmartview": "Create Smartview",
|
|
69
|
+
"action.createSurvey": "Create survey",
|
|
70
|
+
"action.createTask": "Create task",
|
|
71
|
+
"action.createTicket": "Create ticket",
|
|
72
|
+
"action.createTicketAlt": "Create new ticket",
|
|
73
|
+
"action.delete": "Delete",
|
|
74
|
+
"action.deleteAll": "Delete all",
|
|
75
|
+
"action.deleteAlt": "Delete",
|
|
76
|
+
"action.deleteBlock": "Delete block",
|
|
77
|
+
"action.deleteItem": "Delete {label}",
|
|
78
|
+
"action.deleteNamed": "Delete {name}",
|
|
79
|
+
"action.deleteProduct": "Delete product",
|
|
80
|
+
"action.deleteSmartview": "Delete SmartView",
|
|
81
|
+
"action.deleteTemplate": "Delete form",
|
|
82
|
+
"action.deleteUnit": "Delete unit",
|
|
83
|
+
"action.deselect": "Deselect",
|
|
84
|
+
"action.deselectAll": "Deselect all",
|
|
85
|
+
"action.deselectStartDate": "Deselect start date",
|
|
86
|
+
"action.dial": "Call",
|
|
87
|
+
"action.disable": "Disable",
|
|
88
|
+
"action.distribute": "Allocate",
|
|
89
|
+
"action.distributeAssignee": "Allocate assignee",
|
|
90
|
+
"action.download": "Download",
|
|
91
|
+
"action.downloadList": "Download list",
|
|
92
|
+
"action.downloadNamed": "Download {name}",
|
|
93
|
+
"action.downloadTemplate": "Download template file",
|
|
94
|
+
"action.dragToReorder": "Drag to reorder",
|
|
95
|
+
"action.edit": "Edit",
|
|
96
|
+
"action.editAssignee": "Edit assignee",
|
|
97
|
+
"action.editField": "Edit {key}",
|
|
98
|
+
"action.editFilter": "Edit filter",
|
|
99
|
+
"action.enableSound": "Turn on sound",
|
|
100
|
+
"action.end": "End",
|
|
101
|
+
"action.endConversation": "End chat",
|
|
102
|
+
"action.execute": "Perform",
|
|
103
|
+
"action.exit": "Exit",
|
|
104
|
+
"action.expand": "Expand",
|
|
105
|
+
"action.expandAll": "Expand all",
|
|
106
|
+
"action.exportCsv": "Export CSV",
|
|
107
|
+
"action.exportFile": "Export file",
|
|
108
|
+
"action.exportList": "Export list",
|
|
109
|
+
"action.filter": "Filter",
|
|
110
|
+
"action.fitToFrame": "Fit to frame",
|
|
111
|
+
"action.follow": "Follow",
|
|
112
|
+
"action.forward": "Forward",
|
|
113
|
+
"action.forward10s": "Forward 10 seconds",
|
|
114
|
+
"action.forwardCall": "Forward call",
|
|
115
|
+
"action.forwardToAcd": "Forward to ACD",
|
|
116
|
+
"action.forwardToAcdAlt": "Forward to ACD",
|
|
117
|
+
"action.forwardToAgent": "Forward to agent",
|
|
118
|
+
"action.forwardToIvr": "Forward to IVR",
|
|
119
|
+
"action.forwardToIvrAlt": "Forward to IVR",
|
|
120
|
+
"action.fullscreen": "Fullscreen",
|
|
121
|
+
"action.getZaloLoginQr": "Get the Zalo login QR code",
|
|
122
|
+
"action.goBack": "Back",
|
|
123
|
+
"action.grabChat": "Take over chat",
|
|
124
|
+
"action.hangupCall": "End call",
|
|
125
|
+
"action.hideField": "Hide field",
|
|
126
|
+
"action.hide": "Hide",
|
|
127
|
+
"action.show": "Show",
|
|
128
|
+
"action.hold": "Hold",
|
|
129
|
+
"action.importCustomer": "Import customers",
|
|
130
|
+
"action.inviteAgentToJoin": "Invite an agent to join",
|
|
131
|
+
"action.inviteWholeDepartment": "Invite the entire department",
|
|
132
|
+
"action.inviteWholeQueue": "Invite the entire queue",
|
|
133
|
+
"action.loadMore": "Load more",
|
|
134
|
+
"action.logout": "Logout",
|
|
135
|
+
"action.makeOutboundCall": "Make an outgoing call",
|
|
136
|
+
"action.managePinnedTabs": "Manage pinned tabs",
|
|
137
|
+
"action.mergeTicket": "Merge ticket",
|
|
138
|
+
"action.minimize": "Zoom out",
|
|
139
|
+
"action.modify": "Edit",
|
|
140
|
+
"action.more": "More",
|
|
141
|
+
"action.mute": "Mute",
|
|
142
|
+
"action.muteMic": "Mute microphone",
|
|
143
|
+
"action.nextPage": "Next page",
|
|
144
|
+
"action.no": "No",
|
|
145
|
+
"action.openConversation": "Open conversation",
|
|
146
|
+
"action.openWithGoogleDocs": "Open with Google Docs",
|
|
147
|
+
"action.openWithGoogleSlides": "Open with Google Slides",
|
|
148
|
+
"action.pasteBlock": "Paste block",
|
|
149
|
+
"action.pause": "Pause",
|
|
150
|
+
"action.pausePersonalZaloLink": "Pause personal Zalo link",
|
|
151
|
+
"action.pinColumn": "Pin column",
|
|
152
|
+
"action.pinTabToRight": "Pin tab to right column",
|
|
153
|
+
"action.play": "Play",
|
|
154
|
+
"action.previous": "Previous",
|
|
155
|
+
"action.previousAlt": "< Previous",
|
|
156
|
+
"action.previousFile": "Previous file",
|
|
157
|
+
"action.previousPage": "Previous page",
|
|
158
|
+
"action.quickTransferToAgent": "Quick transfer to agent",
|
|
159
|
+
"action.reconnect": "Reconnect",
|
|
160
|
+
"action.recordAgain": "Record",
|
|
161
|
+
"action.reenter": "Re-enter",
|
|
162
|
+
"action.reject": "Decline",
|
|
163
|
+
"action.reload": "Reload",
|
|
164
|
+
"action.rename": "Rename",
|
|
165
|
+
"action.renameUnit": "Rename unit",
|
|
166
|
+
"action.reopen": "Reopen",
|
|
167
|
+
"action.repeat": "Repeat",
|
|
168
|
+
"action.replay": "Listen again",
|
|
169
|
+
"action.reply": "Reply",
|
|
170
|
+
"action.resendRequest": "Resend request",
|
|
171
|
+
"action.reset": "Reset",
|
|
172
|
+
"action.resetToDefault": "Reset to default",
|
|
173
|
+
"action.retry": "Retry",
|
|
174
|
+
"action.rewind10s": "Back 10 seconds",
|
|
175
|
+
"action.save": "Save",
|
|
176
|
+
"action.saveChanges": "Save changes",
|
|
177
|
+
"action.saveConfig": "Save configuration",
|
|
178
|
+
"action.saveDraft": "Save draft",
|
|
179
|
+
"action.saveFilter": "Save filter",
|
|
180
|
+
"action.saveNote": "Save note",
|
|
181
|
+
"action.schedule": "Schedule",
|
|
182
|
+
"action.search": "Search",
|
|
183
|
+
"action.select": "Select",
|
|
184
|
+
"action.selectAll": "Select all",
|
|
185
|
+
"action.selectColor": "Select color",
|
|
186
|
+
"action.send": "Send",
|
|
187
|
+
"action.sendEmail": "Send email",
|
|
188
|
+
"action.sendFacebook": "Send Facebook",
|
|
189
|
+
"action.sendFacebookChat": "Send Facebook chat",
|
|
190
|
+
"action.sendForwardRequest": "Send transfer request ",
|
|
191
|
+
"action.sendFriendRequest": "Send friend request",
|
|
192
|
+
"action.sendInvite": "Send invitation",
|
|
193
|
+
"action.sendInviteRequest": "Send participation invitation",
|
|
194
|
+
"action.sendLiveChat": "Send LiveChat",
|
|
195
|
+
"action.sendMail": "Send mail",
|
|
196
|
+
"action.sendMessage": "Send message",
|
|
197
|
+
"action.sendNotification": "Send notification",
|
|
198
|
+
"action.sendSms": "Send SMS",
|
|
199
|
+
"action.sendWebAppNotification": "Send notification (Web/App)",
|
|
200
|
+
"action.sendZaloChat": "Send Zalo chat",
|
|
201
|
+
"action.sendZns": "Send ZNS",
|
|
202
|
+
"action.share": "Share",
|
|
203
|
+
"action.skip": "Skip",
|
|
204
|
+
"action.skipAlt": "Skip",
|
|
205
|
+
"action.speechToText": "Convert speech to text",
|
|
206
|
+
"action.start": "Start",
|
|
207
|
+
"action.startMetric": "Start metric",
|
|
208
|
+
"action.stopMetric": "Stop metric",
|
|
209
|
+
"action.stopRecording": "Stop recording",
|
|
210
|
+
"action.switchToManualQa": "Switch to manual QA",
|
|
211
|
+
"action.tagConversation": "Tag conversation",
|
|
212
|
+
"action.testMicrophone": "Test microphone",
|
|
213
|
+
"action.testRecording": "Test recording",
|
|
214
|
+
"action.transfer": "Transfer",
|
|
215
|
+
"action.transferAssignee": "Change assignee",
|
|
216
|
+
"action.transferToAgent": "Transfer to agent",
|
|
217
|
+
"action.unmuteMic": "Unmute microphone",
|
|
218
|
+
"action.unpinColumn": "Unpin column",
|
|
219
|
+
"action.update": "Update",
|
|
220
|
+
"action.updateCustomer": "Update customer",
|
|
221
|
+
"action.updateDeal": "Update deal",
|
|
222
|
+
"action.updateLead": "Update lead",
|
|
223
|
+
"action.updateLeadOrCustomer": "Update lead/customer",
|
|
224
|
+
"action.updateOverwrite": "Update - Overwrite",
|
|
225
|
+
"action.updateTask": "Update task",
|
|
226
|
+
"action.updateTicket": "Update ticket",
|
|
227
|
+
"action.updateTicketAlt": "Update ticket",
|
|
228
|
+
"action.uploadDataFile": "Upload data file",
|
|
229
|
+
"action.uploadFile": "Download file",
|
|
230
|
+
"action.use": "Use",
|
|
231
|
+
"action.viewAll": "View all",
|
|
232
|
+
"action.viewAllCount": "View all ({total})",
|
|
233
|
+
"action.viewCall": "View call",
|
|
234
|
+
"action.viewConversationDetail": "View conversation details",
|
|
235
|
+
"action.viewDetail": "View details",
|
|
236
|
+
"action.viewEvent": "View event",
|
|
237
|
+
"action.viewGroup": "View group",
|
|
238
|
+
"action.wrapLongLines": "Wrap long lines",
|
|
239
|
+
"action.yes": "Yes",
|
|
240
|
+
"action.zoomIn": "Zoom in",
|
|
241
|
+
"action.selectRow": "Select row",
|
|
242
|
+
"confirm.closeChatSessionAutoClose": "Confirm closing the chat session (auto-close)",
|
|
243
|
+
"confirm.delete": "Confirm deletion",
|
|
244
|
+
"confirm.deleteFilter": "Are you sure you want to delete the filter {name}?",
|
|
245
|
+
"confirm.deleteNamedItemIrreversible": "Are you sure you want to delete \"{name}\"? This action cannot be undone.",
|
|
246
|
+
"confirm.deleteSmartview": "Are you sure you want to delete the SmartView {name}?",
|
|
247
|
+
"confirm.deleteTemplate": "Are you sure you want to delete this form?",
|
|
248
|
+
"confirm.export": "Confirm export",
|
|
249
|
+
"confirm.import": "Confirm import",
|
|
250
|
+
"confirm.quickTransferAgent": "Are you sure you want to quickly transfer to this agent?",
|
|
251
|
+
"confirm.switchDeviceDuringMobileCall": "You are on a call via the mobile app. Switching to another device may affect connection stability. Are you sure you want to continue?",
|
|
252
|
+
"confirm.switchPhoneType": "Confirm phone type change",
|
|
253
|
+
"confirm.unlinkPersonalZalo": "Are you sure you want to unlink your personal Zalo?",
|
|
254
|
+
"dialog.audioSettings": "Sound settings",
|
|
255
|
+
"dialog.changePassword": "Change password",
|
|
256
|
+
"dialog.completed": "Completed!",
|
|
257
|
+
"dialog.excelFieldHeader": "FIELD IN THE EXCEL FILE",
|
|
258
|
+
"dialog.mappingFieldsHeader": "MAP TO DATA FIELD",
|
|
259
|
+
"dialog.previewTitle": "Preview: {displayName}",
|
|
260
|
+
"dialog.productList": "Product list",
|
|
261
|
+
"dialog.zaloPersonalChannelConfig": "Personal Zalo channel configuration",
|
|
262
|
+
"empty.noAgentFound": "Agent not found",
|
|
263
|
+
"empty.noAgentFoundAlt": "No agents found",
|
|
264
|
+
"empty.noAgentsInDepartment": "No agents in this department",
|
|
265
|
+
"empty.noAgentsInQueue": "No agents in this queue",
|
|
266
|
+
"empty.noAssignee": "No assignee yet",
|
|
267
|
+
"empty.noData": "No data",
|
|
268
|
+
"empty.noDataAlt": "No data.",
|
|
269
|
+
"empty.noDataAlt2": "No data found",
|
|
270
|
+
"empty.noDataInformal": "No data yet",
|
|
271
|
+
"empty.noDataToExport": "No data to export",
|
|
272
|
+
"empty.noDataYet": "No data yet",
|
|
273
|
+
"empty.noDepartments": "No departments",
|
|
274
|
+
"empty.noFilterApplied": "No filter applied",
|
|
275
|
+
"empty.noHistory": "No history",
|
|
276
|
+
"empty.noLinkedOrganization": "No organization is linked to this customer yet.",
|
|
277
|
+
"empty.noMatchingPipeline": "No matching pipelines",
|
|
278
|
+
"empty.noMoreConditions": "No more conditions",
|
|
279
|
+
"empty.noNotifications": "You currently have no notifications.",
|
|
280
|
+
"empty.noQueue": "No queues",
|
|
281
|
+
"empty.noResults": "No results found",
|
|
282
|
+
"empty.noUnit": "No unit yet",
|
|
283
|
+
"empty.noUnitFound": "Unit not found",
|
|
284
|
+
"empty.noUnits": "No units yet.",
|
|
285
|
+
"empty.noUnreadNotifications": "You currently have no unread notifications.",
|
|
286
|
+
"empty.noZaloLabels": "This Zalo account has no labels yet.",
|
|
287
|
+
"error.generic": "An error occurred",
|
|
288
|
+
"error.unexpectedReload": "An error occurred. Please reload the page.",
|
|
289
|
+
"filter.after12Months": "After 12 months",
|
|
290
|
+
"filter.after14Days": "After 14 days",
|
|
291
|
+
"filter.after1Day": "After 1 day",
|
|
292
|
+
"filter.after1Month": "After 1 month",
|
|
293
|
+
"filter.after21Days": "After 21 days",
|
|
294
|
+
"filter.after3Days": "After 3 days",
|
|
295
|
+
"filter.after3Months": "After 3 months",
|
|
296
|
+
"filter.after6Months": "After 6 months",
|
|
297
|
+
"filter.after7Days": "After 7 days",
|
|
298
|
+
"filter.after9Months": "After 9 months",
|
|
299
|
+
"filter.afterDate": "After date",
|
|
300
|
+
"filter.all": "All",
|
|
301
|
+
"filter.allAgents": "All agents",
|
|
302
|
+
"filter.allAgentsInDepartment": "All agents in the department",
|
|
303
|
+
"filter.allDaysThisWeek": "All days this week",
|
|
304
|
+
"filter.allMonthsThisQuarter": "All months in the quarter",
|
|
305
|
+
"filter.allMonthsThisYear": "All months in the year",
|
|
306
|
+
"filter.allQuartersThisYear": "All quarters in the year",
|
|
307
|
+
"filter.allResults": "All results",
|
|
308
|
+
"filter.allSources": "All sources",
|
|
309
|
+
"filter.allStatuses": "All statuses",
|
|
310
|
+
"filter.allValuesMatch": "All values are satisfied",
|
|
311
|
+
"filter.any": "Any",
|
|
312
|
+
"filter.ascending": "Ascending",
|
|
313
|
+
"filter.beforeDate": "Before date",
|
|
314
|
+
"filter.between": "In range",
|
|
315
|
+
"filter.contains": "Contains",
|
|
316
|
+
"filter.containsAllOf": "Contains all values in",
|
|
317
|
+
"filter.containsAlt": "Contains",
|
|
318
|
+
"filter.containsAnyOf": "Contains any value in",
|
|
319
|
+
"filter.daily": "Daily",
|
|
320
|
+
"filter.dateRange": "In range (From date - To date)",
|
|
321
|
+
"filter.descending": "Descending",
|
|
322
|
+
"filter.endsWith": "Ends with",
|
|
323
|
+
"filter.equal": "Equals",
|
|
324
|
+
"filter.everyone": "Everyone",
|
|
325
|
+
"filter.exactMatch": "Exact match",
|
|
326
|
+
"filter.excludes": "Does not include",
|
|
327
|
+
"filter.exists": "Exists",
|
|
328
|
+
"filter.greaterThan": "Greater than",
|
|
329
|
+
"filter.greaterThanOrEqual": "Greater than or equal to",
|
|
330
|
+
"filter.hasValue": "Has value",
|
|
331
|
+
"filter.in": "Belongs to",
|
|
332
|
+
"filter.inConditions": "in the conditions",
|
|
333
|
+
"filter.includes": "Includes",
|
|
334
|
+
"filter.isNotAllOf": "Not all",
|
|
335
|
+
"filter.isNotAnyOf": "Not any",
|
|
336
|
+
"filter.lastMonth": "Last month",
|
|
337
|
+
"filter.lastWeek": "Last week",
|
|
338
|
+
"filter.lessThan": "Less than",
|
|
339
|
+
"filter.lessThanOrEqual": "Less than or equal to",
|
|
340
|
+
"filter.matchAllConditions": "Meets all conditions",
|
|
341
|
+
"filter.matchAnyCondition": "Meets one of the conditions",
|
|
342
|
+
"filter.mine": "Mine",
|
|
343
|
+
"filter.monthly": "Monthly",
|
|
344
|
+
"filter.myDepartment": "My department",
|
|
345
|
+
"filter.noValue": "No value",
|
|
346
|
+
"filter.notAllValuesSatisfy": "Not all values are satisfied",
|
|
347
|
+
"filter.notContains": "Does not contain",
|
|
348
|
+
"filter.notContainsAllOf": "Does not contain all values in",
|
|
349
|
+
"filter.notContainsAnyOf": "Does not contain any value in",
|
|
350
|
+
"filter.notEqual": "Not equal",
|
|
351
|
+
"filter.notIn": "Does not belong to",
|
|
352
|
+
"filter.onlyAgents": "Agents only",
|
|
353
|
+
"filter.onlyMe": "Only me",
|
|
354
|
+
"filter.quickFilter": "Quick filter",
|
|
355
|
+
"filter.startsWith": "Starts with",
|
|
356
|
+
"filter.thisMonth": "This month",
|
|
357
|
+
"filter.thisQuarter": "This quarter",
|
|
358
|
+
"filter.thisWeek": "This week",
|
|
359
|
+
"filter.thisYear": "This year",
|
|
360
|
+
"filter.today": "Within the day",
|
|
361
|
+
"filter.yearly": "Yearly",
|
|
362
|
+
"label.actionName": "Action name",
|
|
363
|
+
"label.addNoteToDeal": "Add a note to the deal",
|
|
364
|
+
"label.addObjectToSalesSequence": "Add the object to a sales sequence",
|
|
365
|
+
"label.address": "Address",
|
|
366
|
+
"label.addressDetail": "Detailed address",
|
|
367
|
+
"label.advancedFilter": "Advanced filter",
|
|
368
|
+
"label.advancedSearch": "Advanced search",
|
|
369
|
+
"label.afterTimePeriod": "After a time period",
|
|
370
|
+
"label.agent": "Agent",
|
|
371
|
+
"label.agentAlt": "agent",
|
|
372
|
+
"label.agentCannotBeEmpty": "Agent cannot be empty",
|
|
373
|
+
"label.agentColon": "Agent:",
|
|
374
|
+
"label.agentCount": "Number of agents",
|
|
375
|
+
"label.agentDepartment": "Agent department",
|
|
376
|
+
"label.agentDepartmentAlt": "Agent belongs to department",
|
|
377
|
+
"label.agentEmail": "Agent email",
|
|
378
|
+
"label.agentFullName": "Agent's full name",
|
|
379
|
+
"label.agentInfo": "Agent information",
|
|
380
|
+
"label.agentName": "Agent name",
|
|
381
|
+
"label.agentOrganization": "Agent organization",
|
|
382
|
+
"label.agentPhone": "Agent phone number",
|
|
383
|
+
"label.agentWorkingTimeOnTicket": "Agent time spent on the ticket",
|
|
384
|
+
"label.agentsInQueueColon": "Number of agents in the queue:",
|
|
385
|
+
"label.all": "all",
|
|
386
|
+
"label.allMembers": "All members",
|
|
387
|
+
"label.allStatus": "All statuses",
|
|
388
|
+
"label.allocateByQueue": "Allocate by queue",
|
|
389
|
+
"label.allocateToMe": "Allocate to me",
|
|
390
|
+
"label.amount": "Total",
|
|
391
|
+
"label.anErrorOccurredDuringProcessing": "An error occurred during processing",
|
|
392
|
+
"label.anErrorOccurredPleaseTry": "An error occurred, please try again later!",
|
|
393
|
+
"label.anErrorOccurredWhileLogging": "An error occurred while logging in the agent",
|
|
394
|
+
"label.anUnknownErrorOccurred": "An unknown error occurred",
|
|
395
|
+
"label.answerStatus": "Answer status",
|
|
396
|
+
"label.any": "any",
|
|
397
|
+
"label.applicablePipeline": "Applied pipeline:",
|
|
398
|
+
"label.applicableRole": "Applied role",
|
|
399
|
+
"label.applicableTarget": "Applied target",
|
|
400
|
+
"label.appliedPipeline": "Applied pipeline",
|
|
401
|
+
"label.applyOnTestPlayback": "Apply when replaying the test recording",
|
|
402
|
+
"label.applyToChannel": "Apply to channel",
|
|
403
|
+
"label.areYouSureYouAccessed": "Are you sure you accessed the correct link? Please try again!",
|
|
404
|
+
"label.assignToAgent": "Allocate to agent",
|
|
405
|
+
"label.assignToQueue": "Allocate to queue",
|
|
406
|
+
"label.assignedAgent": "Assigned agent",
|
|
407
|
+
"label.assignedAgentEn": "Assigned agent",
|
|
408
|
+
"label.assignedGroup": "Assigned group",
|
|
409
|
+
"label.assignee": "Assignee",
|
|
410
|
+
"label.assigneeAlt": "Handler",
|
|
411
|
+
"label.attachmentMessage": "Attachment message",
|
|
412
|
+
"label.attribute": "Attribute",
|
|
413
|
+
"label.attributeName": "Attribute name",
|
|
414
|
+
"label.attributeNameCannotBeEmpty": "Attribute name cannot be empty",
|
|
415
|
+
"label.authorization": "Permissions",
|
|
416
|
+
"label.autoAcceptChat": "Automatically accept chats",
|
|
417
|
+
"label.autoCall": "Auto Call",
|
|
418
|
+
"label.autoConvert": "Automatic conversion",
|
|
419
|
+
"label.autoJoinWhenInvited": "Automatically join when invited",
|
|
420
|
+
"label.autoQa": "Auto QA",
|
|
421
|
+
"label.autoReply": "Auto-reply",
|
|
422
|
+
"label.average": "Average",
|
|
423
|
+
"label.awaitingDelivery": "Awaiting delivery",
|
|
424
|
+
"label.basedOnProductPrice": "Based on product price",
|
|
425
|
+
"label.basedOnProductWeight": "Based on product weight",
|
|
426
|
+
"label.basic": "Basic",
|
|
427
|
+
"label.basicInfo": "Basic information",
|
|
428
|
+
"label.behaviorControl": "Behavior control",
|
|
429
|
+
"label.birthMonth": "Birth month",
|
|
430
|
+
"label.bookerDetailedAddress": "Orderer's detailed address",
|
|
431
|
+
"label.bookingCode": "Booking code",
|
|
432
|
+
"label.branch": "Branch",
|
|
433
|
+
"label.branchAlt": "Branch",
|
|
434
|
+
"label.brand": "Brand",
|
|
435
|
+
"label.browser": "Browser",
|
|
436
|
+
"label.call": "Call",
|
|
437
|
+
"label.callButtonTicketDetail": "Call button - Ticket details",
|
|
438
|
+
"label.callCount": "Number of calls",
|
|
439
|
+
"label.callDirection": "Call direction",
|
|
440
|
+
"label.callFrom": "Call from",
|
|
441
|
+
"label.callIn": "Incoming call",
|
|
442
|
+
"label.callOut": "Outgoing call",
|
|
443
|
+
"label.callQueue": "Call queue",
|
|
444
|
+
"label.callReceivingAgent": "Agent receiving the call",
|
|
445
|
+
"label.callShift": "On call duty",
|
|
446
|
+
"label.callStatus": "Call status",
|
|
447
|
+
"label.ticketForm": "Ticket form",
|
|
448
|
+
"label.callbackAfterMissedCallTime": "Callback time after a missed call",
|
|
449
|
+
"label.campaign": "Campaign",
|
|
450
|
+
"label.campaignName": "Campaign name",
|
|
451
|
+
"label.campaignSchedule": "Campaign schedule",
|
|
452
|
+
"label.campaignShift": "On campaign duty",
|
|
453
|
+
"label.campaignSmsResult": "Campaign SMS send results",
|
|
454
|
+
"label.campaignZnsResult": "Campaign ZNS send results",
|
|
455
|
+
"label.cannotCreateUnit": "Cannot create unit",
|
|
456
|
+
"label.cannotDeleteUnit": "Cannot delete unit",
|
|
457
|
+
"label.cannotLoadEditHistory": "Cannot load edit history",
|
|
458
|
+
"label.cannotMoveUnit": "Cannot move unit",
|
|
459
|
+
"label.cannotUpdateUnit": "Cannot update unit",
|
|
460
|
+
"label.category": "Category",
|
|
461
|
+
"label.categoryColon": "Classification:",
|
|
462
|
+
"label.ccPerson": "CC recipient",
|
|
463
|
+
"label.channel": "Channel",
|
|
464
|
+
"label.characters": "characters",
|
|
465
|
+
"label.chatQueue": "Chat queue",
|
|
466
|
+
"label.chatSession": "Chat session",
|
|
467
|
+
"label.chatTemplate": "Chat form",
|
|
468
|
+
"label.checkData": "Check data",
|
|
469
|
+
"label.checkInventory": "Check inventory",
|
|
470
|
+
"label.city": "City",
|
|
471
|
+
"label.closeThisConversationFragment": "close this conversation",
|
|
472
|
+
"label.codCollection": "Cash on delivery",
|
|
473
|
+
"label.combinedConditionBetweenFilterCriteria": "Combination condition between filter criteria",
|
|
474
|
+
"label.comment": "Comment",
|
|
475
|
+
"label.commentTags": "Comment tags",
|
|
476
|
+
"label.company": "Company",
|
|
477
|
+
"label.companyAddress": "6th Floor, Sannam Building, 78 Duy Tan, Cau Giay Ward, Hanoi City, Vietnam",
|
|
478
|
+
"label.companyLegalName": "Zenify Vietnam Technology Co., Ltd",
|
|
479
|
+
"label.completedDate": "Completion date",
|
|
480
|
+
"label.condition": "Condition",
|
|
481
|
+
"label.conditionBetweenAttributes": "Condition between attributes",
|
|
482
|
+
"label.conditionBetweenCriteria": "Condition applied between criteria",
|
|
483
|
+
"label.conditionWithinAttribute": "Condition within one attribute",
|
|
484
|
+
"label.confirmNewPassword": "Confirm new password",
|
|
485
|
+
"label.confirmPasswordCannotBeEmpty": "Confirm password cannot be empty",
|
|
486
|
+
"label.connectionStatus": "Connection status",
|
|
487
|
+
"label.contact": "Contact",
|
|
488
|
+
"label.contactInfo": "Contact information",
|
|
489
|
+
"label.content": "Content",
|
|
490
|
+
"label.contentColon": "Content:",
|
|
491
|
+
"label.contentSummary": "📝 Content summary:",
|
|
492
|
+
"label.conversation": "Conversation",
|
|
493
|
+
"label.conversationOpening": "Start conversation",
|
|
494
|
+
"label.conversationTag": "Conversation tag",
|
|
495
|
+
"label.conversionTime": "Conversion time",
|
|
496
|
+
"label.convertedFromLead": "Convert from lead",
|
|
497
|
+
"label.converter": "Converted by",
|
|
498
|
+
"label.correctSolution": "Accurate solution",
|
|
499
|
+
"label.countCounter": "Quantity counter",
|
|
500
|
+
"label.countdown": "Countdown timer",
|
|
501
|
+
"label.createNewDealAction": "Create a new deal in the system",
|
|
502
|
+
"label.createNewLeadAction": "Create a new lead in the system",
|
|
503
|
+
"label.createNewSurveyAction": "Create a new survey in the system",
|
|
504
|
+
"label.createNewTicketAction": "Create a new ticket in the system",
|
|
505
|
+
"label.createdAt": "Created at {createdAt}",
|
|
506
|
+
"label.createdDate": "Created date",
|
|
507
|
+
"label.createdDateAlt": "Creation date",
|
|
508
|
+
"label.createdTime": "Creation time",
|
|
509
|
+
"label.createdTimeRange": "Creation time (from - to)",
|
|
510
|
+
"label.creator": "Created by",
|
|
511
|
+
"label.criteria": "Criteria",
|
|
512
|
+
"label.crm": "CRM",
|
|
513
|
+
"label.currency": "Currency",
|
|
514
|
+
"label.custom": "Customize",
|
|
515
|
+
"label.customAlt": "Customize",
|
|
516
|
+
"label.customer": "Customer",
|
|
517
|
+
"label.customerAliasName": "Customer alias",
|
|
518
|
+
"label.customerCode": "Customer code",
|
|
519
|
+
"label.customerCalling": "Customer calls",
|
|
520
|
+
"label.customerCallsIn": "Customer calls in",
|
|
521
|
+
"label.customerCount": "Number of customers",
|
|
522
|
+
"label.customerEmail": "Customer email",
|
|
523
|
+
"label.customerFullName": "Customer's full name",
|
|
524
|
+
"label.customerGroup": "Customer group",
|
|
525
|
+
"label.customerInfo": "Customer information",
|
|
526
|
+
"label.customerName": "Customer name",
|
|
527
|
+
"label.customerNote": "Customer note",
|
|
528
|
+
"label.customerPhone": "Customer phone number",
|
|
529
|
+
"label.customerResultsCount": "Customers ({count} results)",
|
|
530
|
+
"label.customerResultsTotalCount": "Customers ({totalCount} results)",
|
|
531
|
+
"label.customerSource": "Customer source",
|
|
532
|
+
"label.customerStatus": "Customer status",
|
|
533
|
+
"label.customerTags": "Customer tags",
|
|
534
|
+
"label.customerTier": "Customer tier",
|
|
535
|
+
"label.cycle": "Cycle",
|
|
536
|
+
"label.dailyActivity": "Activity within the day",
|
|
537
|
+
"label.dailyCallKpi": "Daily call target",
|
|
538
|
+
"label.dapUngBatKyDieu": "Match any condition",
|
|
539
|
+
"label.dapUngTatCaDieu": "Match all conditions",
|
|
540
|
+
"label.dataLink": "Link data",
|
|
541
|
+
"label.dataType": "Data type",
|
|
542
|
+
"label.dataTypeCannotBeEmpty": "Data type cannot be empty",
|
|
543
|
+
"label.date": "Date",
|
|
544
|
+
"label.dateRangeFromTo": "Date range: {{from}} → {{to}}",
|
|
545
|
+
"label.dealCount": "Number of deals",
|
|
546
|
+
"label.dealList": "Deal list",
|
|
547
|
+
"label.dealMember": "Deal members",
|
|
548
|
+
"label.dealMembers": "Members in the deal",
|
|
549
|
+
"label.dealName": "Deal name",
|
|
550
|
+
"label.dealNameAlt": "Deal name",
|
|
551
|
+
"label.dealResultsCount": "Deals ({count} results)",
|
|
552
|
+
"label.dealResultsTotalCount": "Deals ({totalCount} results)",
|
|
553
|
+
"label.dealValue": "Deal value",
|
|
554
|
+
"label.default": "(default)",
|
|
555
|
+
"label.delivered": "Delivered",
|
|
556
|
+
"label.deliveryPointName": "Delivery point name",
|
|
557
|
+
"label.deliveryStatus": "Delivery status",
|
|
558
|
+
"label.department": "Department",
|
|
559
|
+
"label.departmentCannotBeEmpty": "Department cannot be empty",
|
|
560
|
+
"label.departmentHead": "Department head",
|
|
561
|
+
"label.departmentName": "Department name",
|
|
562
|
+
"label.departmentOrganization": "Department organizations",
|
|
563
|
+
"label.departmentSurvey": "Department surveys",
|
|
564
|
+
"label.deploymentChannel": "Deployment channel",
|
|
565
|
+
"label.description": "Description",
|
|
566
|
+
"label.descriptionColon": "Description:",
|
|
567
|
+
"label.detail": "Details",
|
|
568
|
+
"label.detailedSource": "Detailed source",
|
|
569
|
+
"label.directChildUnit": "Direct child unit",
|
|
570
|
+
"label.directChildUnitCount": "Direct sub-units ({length})",
|
|
571
|
+
"label.discount": "Discount",
|
|
572
|
+
"label.discountAlt": "Discount",
|
|
573
|
+
"label.discountPercentage": "{percentage}% off",
|
|
574
|
+
"label.distributionRule": "Allocation rule",
|
|
575
|
+
"label.distributor": "Distributor",
|
|
576
|
+
"label.district": "District",
|
|
577
|
+
"label.districtAlt": "District",
|
|
578
|
+
"label.dob": "Date of birth",
|
|
579
|
+
"label.dueDate": "End date",
|
|
580
|
+
"label.dueDateAlt": "Processing deadline",
|
|
581
|
+
"label.duplicateValuesExist": "Duplicate values exist",
|
|
582
|
+
"label.dynamicAttributeField": "Attribute dynamic field",
|
|
583
|
+
"label.email": "Email",
|
|
584
|
+
"label.emailButtonTicketDetail": "Email button - Ticket details",
|
|
585
|
+
"label.emailChannel": "Email channel",
|
|
586
|
+
"label.emailTemplate": "Email form",
|
|
587
|
+
"label.employeeCode": "Employee code",
|
|
588
|
+
"label.endingEntity": "Ending entity",
|
|
589
|
+
"label.english": "English",
|
|
590
|
+
"label.enterValuesForTheOptions": "Enter values for the options",
|
|
591
|
+
"label.enthusiastic": "Enthusiasm",
|
|
592
|
+
"label.errorTime": "Error time:",
|
|
593
|
+
"label.evaluationCriteria": "Evaluation criteria",
|
|
594
|
+
"label.expectedCloseDate": "Expected close date",
|
|
595
|
+
"label.extendedAttributes": "Extended attribute",
|
|
596
|
+
"label.extendedInfo": "Extended information",
|
|
597
|
+
"label.extensionList": "Internal number list",
|
|
598
|
+
"label.externalSource": "External source",
|
|
599
|
+
"label.facebook": "Facebook",
|
|
600
|
+
"label.facebookChannel": "Facebook channel",
|
|
601
|
+
"label.feeByPage": "Fee by Page",
|
|
602
|
+
"label.feeByRegion": "Fee by region",
|
|
603
|
+
"label.feedback": "Response",
|
|
604
|
+
"label.female": "Female",
|
|
605
|
+
"label.field": "Field",
|
|
606
|
+
"label.fieldTypeCheckbox": "Checkbox type",
|
|
607
|
+
"label.fieldTypeDate": "Date type",
|
|
608
|
+
"label.fieldTypeFilePicker": "File selection type",
|
|
609
|
+
"label.fieldTypeFont": "Text style",
|
|
610
|
+
"label.fieldTypeFormula": "Formula type",
|
|
611
|
+
"label.fieldTypeImagePicker": "Image selection type",
|
|
612
|
+
"label.fieldTypeMultiSelect": "Multi-value selection type",
|
|
613
|
+
"label.fieldTypeNumber": "Number type",
|
|
614
|
+
"label.fieldTypePhone": "Phone number type",
|
|
615
|
+
"label.fieldTypeRadio": "Radio type",
|
|
616
|
+
"label.fieldTypeSingleSelect": "Single-value selection type",
|
|
617
|
+
"label.fieldTypeText": "Text type",
|
|
618
|
+
"label.fileNameColon": "File name:",
|
|
619
|
+
"label.filter": "Filter",
|
|
620
|
+
"label.filterName": "Filter name",
|
|
621
|
+
"label.filterOptions": "Filter options",
|
|
622
|
+
"label.findNearestBranch": "Find the nearest branch",
|
|
623
|
+
"label.firstOutboundCallTime": "First outgoing call time",
|
|
624
|
+
"label.firstResponseTime": "First response time",
|
|
625
|
+
"label.firstUpdateTime": "First update time",
|
|
626
|
+
"label.followers": "Follower",
|
|
627
|
+
"label.followersColon": "Follower:",
|
|
628
|
+
"label.formConfig": "Form configuration",
|
|
629
|
+
"label.friendlyTone": "Friendly",
|
|
630
|
+
"label.fromCrm": "From CRM",
|
|
631
|
+
"label.fromDate": "From date",
|
|
632
|
+
"label.fromSender": "From {sender}",
|
|
633
|
+
"label.fullProductTable": "The entire product table",
|
|
634
|
+
"label.gatewayNumber": "Number prefix",
|
|
635
|
+
"label.gender": "Gender",
|
|
636
|
+
"label.generalInfo": "General information",
|
|
637
|
+
"label.generalNotification": "General notification",
|
|
638
|
+
"label.goal": "Target",
|
|
639
|
+
"label.goods": "Goods",
|
|
640
|
+
"label.grandTotal": "Total",
|
|
641
|
+
"label.greetEveryNewChat": "Send a greeting to every new chat",
|
|
642
|
+
"label.group": "Group",
|
|
643
|
+
"label.handleRejectionComplaint": "Handle objections/complaints",
|
|
644
|
+
"label.handlingAgent": "Handling agent:",
|
|
645
|
+
"label.identifyCustomerNeeds": "Identify customer needs",
|
|
646
|
+
"label.ifTaskCompleted": "If the task is completed",
|
|
647
|
+
"label.ifTaskNotCompleted": "If the task is not completed",
|
|
648
|
+
"label.ifTaskResult": "If the task result",
|
|
649
|
+
"label.image": "Image",
|
|
650
|
+
"label.imageMessage": "Image message",
|
|
651
|
+
"label.imageUrl": "Image URL",
|
|
652
|
+
"label.importTargetInCampaign": "Import {target} in the campaign",
|
|
653
|
+
"label.inTransit": "In transit",
|
|
654
|
+
"label.inboundCall": "Incoming call",
|
|
655
|
+
"label.initTime": "Creation time",
|
|
656
|
+
"label.insights": "Insights",
|
|
657
|
+
"label.intent": "Intent",
|
|
658
|
+
"label.interactionPhone": "Interaction phone",
|
|
659
|
+
"label.interfaceAndExperience": "Interface & Experience",
|
|
660
|
+
"label.internal": "Internal",
|
|
661
|
+
"label.internalCall": "Internal call",
|
|
662
|
+
"label.invalidFile": "Invalid file",
|
|
663
|
+
"label.inviteAParticipantByPhone": "Invite a participant by phone number",
|
|
664
|
+
"label.items": "items ·",
|
|
665
|
+
"label.keyword": "Keyword",
|
|
666
|
+
"label.language": "Language",
|
|
667
|
+
"label.lastSuccessfulSync": "Last successful sync:",
|
|
668
|
+
"label.lastTime": "Last:",
|
|
669
|
+
"label.lastUpdated": "Last updated",
|
|
670
|
+
"label.leadInfo": "Lead information",
|
|
671
|
+
"label.leadSource": "Lead source",
|
|
672
|
+
"label.leadSourceAlt": "Lead source",
|
|
673
|
+
"label.leadStage": "Lead stage",
|
|
674
|
+
"label.leadTags": "Lead tags",
|
|
675
|
+
"label.lengthMedium": "Medium (≤65 words)",
|
|
676
|
+
"label.lengthShort": "Short (50-60 words)",
|
|
677
|
+
"label.linkDeal": "Link deal",
|
|
678
|
+
"label.linkDetail": "Link details",
|
|
679
|
+
"label.linkedWith": "Link with",
|
|
680
|
+
"label.locationMessage": "Location message",
|
|
681
|
+
"label.longUpTo80Words": "Long (≤80 words)",
|
|
682
|
+
"label.lookupKeyword": "Lookup keyword",
|
|
683
|
+
"label.lookupOrder": "Look up order",
|
|
684
|
+
"label.lookupProduct": "Look up product",
|
|
685
|
+
"label.lookupService": "Look up service",
|
|
686
|
+
"label.lookupPromotion": "Look up promotion",
|
|
687
|
+
"label.lookupType": "Lookup type",
|
|
688
|
+
"label.lostConnectionToTheChat": "Lost connection to the chat server; cannot change status!",
|
|
689
|
+
"label.mainInfo": "Main information",
|
|
690
|
+
"label.manual": "Manual",
|
|
691
|
+
"label.manualCall": "Manual Call",
|
|
692
|
+
"label.manualQa": "Manual QA",
|
|
693
|
+
"label.max10Seconds": "Max 0:10",
|
|
694
|
+
"label.member": "Member",
|
|
695
|
+
"label.memberName": "Member name",
|
|
696
|
+
"label.message": "Message",
|
|
697
|
+
"label.messageContent": "Message content",
|
|
698
|
+
"label.messageShift": "On message duty",
|
|
699
|
+
"label.messageTemplate": "Message template",
|
|
700
|
+
"label.minConversationDuration": "Minimum conversation duration",
|
|
701
|
+
"label.missed": "Missed",
|
|
702
|
+
"label.missedCall": "Missed call",
|
|
703
|
+
"label.mobile": "Mobile",
|
|
704
|
+
"label.monitoring": "Monitor",
|
|
705
|
+
"label.month": "Month",
|
|
706
|
+
"label.monthlyCallKpi": "Monthly call target",
|
|
707
|
+
"label.multiChannel": "Omnichannel",
|
|
708
|
+
"label.multiChannelConversation": "Omnichannel conversation",
|
|
709
|
+
"label.myOrganization": "My organizations",
|
|
710
|
+
"label.mySurvey": "My surveys",
|
|
711
|
+
"label.myTemplates": "My templates",
|
|
712
|
+
"label.name": "Name",
|
|
713
|
+
"label.nameRequired": "Name (cannot be empty)",
|
|
714
|
+
"label.newCall": "New call",
|
|
715
|
+
"label.newPassword": "New password",
|
|
716
|
+
"label.nextResponseTime": "Next response time",
|
|
717
|
+
"label.nextUpdateTime": "Next update time",
|
|
718
|
+
"label.noGreeting": "Don't send greeting",
|
|
719
|
+
"label.noValueNeeded": "No value needed",
|
|
720
|
+
"label.noViolation": "No violation",
|
|
721
|
+
"label.normalPriority": "Normal",
|
|
722
|
+
"label.note": "Note",
|
|
723
|
+
"label.noteColon": "Note:",
|
|
724
|
+
"label.noteTemplate": "Note form",
|
|
725
|
+
"label.notPurchased": "Not purchased",
|
|
726
|
+
"label.operatingScopeMultiDept": "Operation scope (multiple departments)",
|
|
727
|
+
"label.optionValue": "Option value",
|
|
728
|
+
"label.optionalParen": "(optional)",
|
|
729
|
+
"label.order": "Order",
|
|
730
|
+
"label.orderCode": "Order code",
|
|
731
|
+
"label.orderCodeAlt": "Order code",
|
|
732
|
+
"label.orderCreatedDate": "Order creation date",
|
|
733
|
+
"label.orderDate": "Order date",
|
|
734
|
+
"label.orderId": "Order ID",
|
|
735
|
+
"label.orderInfo": "Order information",
|
|
736
|
+
"label.orderSource": "Order source",
|
|
737
|
+
"label.orderStatus": "Order status",
|
|
738
|
+
"label.orderStatusAlt": "Order status",
|
|
739
|
+
"label.orderTag": "Order tag",
|
|
740
|
+
"label.orderTags": "Order tags",
|
|
741
|
+
"label.orderer": "Orderer",
|
|
742
|
+
"label.ordererAddress": "Orderer address",
|
|
743
|
+
"label.ordererName": "Orderer name",
|
|
744
|
+
"label.ordererPhone": "Orderer phone number",
|
|
745
|
+
"label.ordererPhoneFull": "Orderer phone number",
|
|
746
|
+
"label.organization": "Organization",
|
|
747
|
+
"label.organizationAlt": "organizations",
|
|
748
|
+
"label.organizationAltName": "Organization alias",
|
|
749
|
+
"label.organizationName": "Organization name",
|
|
750
|
+
"label.organizationTags": "Organization tags",
|
|
751
|
+
"label.organizationType": "Organization type",
|
|
752
|
+
"label.originSource": "Creation source",
|
|
753
|
+
"label.other": "Other",
|
|
754
|
+
"label.otherInfo": "Other information",
|
|
755
|
+
"label.otherUsers": "other users",
|
|
756
|
+
"label.outboundCall": "Outgoing call",
|
|
757
|
+
"label.outboundNumber": "Outgoing number prefix",
|
|
758
|
+
"label.owner": "Owner",
|
|
759
|
+
"label.page": "Page",
|
|
760
|
+
"label.pageNumber": "Number of pages",
|
|
761
|
+
"label.paperA4Portrait": "A4-PORTRAIT (210x297 mm)",
|
|
762
|
+
"label.paperA5Portrait": "A5-PORTRAIT (148x210 mm)",
|
|
763
|
+
"label.paperA6Portrait": "A6-PORTRAIT (105x148 mm)",
|
|
764
|
+
"label.partialDelivery": "Partial delivery",
|
|
765
|
+
"label.passwordCannotBeEmpty": "Password cannot be empty",
|
|
766
|
+
"label.payment": "Payment",
|
|
767
|
+
"label.paymentMethod": "Payment method",
|
|
768
|
+
"label.paymentStatus": "Payment status",
|
|
769
|
+
"label.perPage": "/ page",
|
|
770
|
+
"label.performer": "Performed by",
|
|
771
|
+
"label.periodicUpdateTime": "Periodic update time",
|
|
772
|
+
"label.personalInfo": "Personal information",
|
|
773
|
+
"label.phone": "Phone number",
|
|
774
|
+
"label.phoneAlt": "Phone",
|
|
775
|
+
"label.phoneApp": "Mobile app",
|
|
776
|
+
"label.pinned": "Pinned",
|
|
777
|
+
"label.planAndBilling": "Plan & billing",
|
|
778
|
+
"label.playbackSpeed": "Playback speed",
|
|
779
|
+
"label.playbackVolume": "Playback volume",
|
|
780
|
+
"label.pleaseEnterAValue": "Please enter a value",
|
|
781
|
+
"label.position": "Position",
|
|
782
|
+
"label.post": "Post",
|
|
783
|
+
"label.potential": "Lead",
|
|
784
|
+
"label.potentialAlt": "lead",
|
|
785
|
+
"label.potentialCustomer": "Lead",
|
|
786
|
+
"label.price": "Price",
|
|
787
|
+
"label.priority": "Priority",
|
|
788
|
+
"label.priorityColon": "Priority:",
|
|
789
|
+
"label.priorityNumber": "Priority number",
|
|
790
|
+
"label.processingDeadline": "Processing deadline",
|
|
791
|
+
"label.processingDeadlineColon": "Processing deadline:",
|
|
792
|
+
"label.product": "Product",
|
|
793
|
+
"label.productCode": "Product code",
|
|
794
|
+
"label.productCodeColon": "Product code:",
|
|
795
|
+
"label.productInfo": "Product information",
|
|
796
|
+
"label.productModel": "Model code",
|
|
797
|
+
"label.productName": "Product name",
|
|
798
|
+
"label.productTags": "Product tags",
|
|
799
|
+
"label.productType": "Product type",
|
|
800
|
+
"label.professional": "Professional",
|
|
801
|
+
"label.professionalClosing": "Professional closing",
|
|
802
|
+
"label.professionalGreeting": "Professional greeting",
|
|
803
|
+
"label.professionalTone": "Professional language",
|
|
804
|
+
"label.profileNote": "Profile note",
|
|
805
|
+
"label.progress": "Progress",
|
|
806
|
+
"label.progressBar": "Progress bar",
|
|
807
|
+
"label.promotion": "Promotion",
|
|
808
|
+
"label.provideCorrectSolution": "Provide the right solution",
|
|
809
|
+
"label.province": "Province/city",
|
|
810
|
+
"label.provinceShort": "Province/city",
|
|
811
|
+
"label.public": "Public",
|
|
812
|
+
"label.publicColon": "Public:",
|
|
813
|
+
"label.publicToDepartment": "Public within department",
|
|
814
|
+
"label.publicToTenant": "Public across tenant",
|
|
815
|
+
"label.purchased": "Purchased",
|
|
816
|
+
"label.purchaseStatus": "Purchase status",
|
|
817
|
+
"label.qcAdviseClearSolution": "Did the agent advise on an accurate, easy-to-understand solution?",
|
|
818
|
+
"label.qcAdviseCorrectNeeds": "Did the agent advise according to the actual needs?",
|
|
819
|
+
"label.qcAskAndConfirmNeeds": "Did the agent carefully ask about needs and confirm them?",
|
|
820
|
+
"label.qcAskNeedsBeforeAnswer": "Did the agent carefully ask about needs before answering?",
|
|
821
|
+
"label.qcGreetProcess": "Did the agent greet the customer per the process?",
|
|
822
|
+
"label.qcHandleComplaint": "How did the agent react when the customer refused or complained?",
|
|
823
|
+
"label.qcNoTyposPolite": "Did the agent avoid spelling mistakes and use polite language?",
|
|
824
|
+
"label.qcPoliteGreeting": "Did the agent send a polite greeting?",
|
|
825
|
+
"label.qcRespondQuickly": "Did the agent respond quickly without long delays?",
|
|
826
|
+
"label.qualityEvaluation": "Quality evaluation",
|
|
827
|
+
"label.quantity": "Quantity",
|
|
828
|
+
"label.quarter": "Quarter",
|
|
829
|
+
"label.queue": "Queue",
|
|
830
|
+
"label.queueName": "Queue name",
|
|
831
|
+
"label.quickFilter": "Quick filter",
|
|
832
|
+
"label.quickSearch": "Quick search",
|
|
833
|
+
"label.quota": "Target",
|
|
834
|
+
"label.rankDiamond": "Diamond",
|
|
835
|
+
"label.rankGold": "Gold",
|
|
836
|
+
"label.rankRegular": "Normal",
|
|
837
|
+
"label.reasonWithError": "Reason: {lastError}",
|
|
838
|
+
"label.receiver": "Receiver",
|
|
839
|
+
"label.receptionCapacity": "Intake capacity",
|
|
840
|
+
"label.receptionInfo": "Intake information",
|
|
841
|
+
"label.recipient": "Recipient",
|
|
842
|
+
"label.recipientAddress": "Recipient address",
|
|
843
|
+
"label.recipientCity": "Receiver city",
|
|
844
|
+
"label.recipientDistrict": "Receiver district",
|
|
845
|
+
"label.recipientName": "Recipient name",
|
|
846
|
+
"label.recipientPhone": "Recipient phone",
|
|
847
|
+
"label.recipientPhoneFull": "Recipient phone number",
|
|
848
|
+
"label.recipientWard": "Receiver ward",
|
|
849
|
+
"label.reenterPassword": "Re-enter password",
|
|
850
|
+
"label.reference": "Reference",
|
|
851
|
+
"label.requestHelp": "Request help",
|
|
852
|
+
"label.requester": "Requester",
|
|
853
|
+
"label.required": "Required",
|
|
854
|
+
"label.responseSpeed": "Response speed",
|
|
855
|
+
"label.responseTime": "Response time",
|
|
856
|
+
"label.result": "Result",
|
|
857
|
+
"label.returnExchange": "Return goods",
|
|
858
|
+
"label.revenueRecordingStatus": "Sales recognition status",
|
|
859
|
+
"label.role": "Role",
|
|
860
|
+
"label.roleCannotBeEmpty": "Role cannot be empty",
|
|
861
|
+
"label.roleGroup": "Role group",
|
|
862
|
+
"label.rootBranch": "root branch",
|
|
863
|
+
"label.rows": "rows",
|
|
864
|
+
"label.salesDepartmentHead": "Sales department head",
|
|
865
|
+
"label.savedFilter": "Saved filters",
|
|
866
|
+
"label.scenario": "Script",
|
|
867
|
+
"label.scenarioName": "Script name",
|
|
868
|
+
"label.secondaryEmail": "Secondary email",
|
|
869
|
+
"label.secondaryPhone": "Secondary phone number",
|
|
870
|
+
"label.selectSpecificTime": "Select a specific time",
|
|
871
|
+
"label.selectThisUnit": "Select this unit",
|
|
872
|
+
"label.selectedFilesCount": "Selected files ({length})",
|
|
873
|
+
"label.selectedImagesCount": "Selected images ({length})",
|
|
874
|
+
"label.sellingPrice": "Selling price",
|
|
875
|
+
"label.sendTo": "Send to",
|
|
876
|
+
"label.sentTime": "Send time",
|
|
877
|
+
"label.service": "Service",
|
|
878
|
+
"label.serviceTags": "Service tags",
|
|
879
|
+
"label.sheets": "sheets ·",
|
|
880
|
+
"label.shipping": "Shipping",
|
|
881
|
+
"label.shippingAddress": "Delivery address",
|
|
882
|
+
"label.shippingFee": "Shipping fee",
|
|
883
|
+
"label.shippingInfo": "Shipping information",
|
|
884
|
+
"label.shippingStatus": "Shipping status",
|
|
885
|
+
"label.shippingUnit": "Shipping carrier",
|
|
886
|
+
"label.show": "Display",
|
|
887
|
+
"label.silver": "Silver",
|
|
888
|
+
"label.sipPhoneNoLogin": "SIP Phone (No login)",
|
|
889
|
+
"label.skill": "Skill",
|
|
890
|
+
"label.skipIfCustomerExists": "Skip if the customer already exists",
|
|
891
|
+
"label.slaCompleted": "SLA met",
|
|
892
|
+
"label.smartviewOptions": "SmartView options",
|
|
893
|
+
"label.sms": "SMS",
|
|
894
|
+
"label.smsButtonTicketDetail": "SMS button - Ticket details",
|
|
895
|
+
"label.smsTemplate": "SMS form",
|
|
896
|
+
"label.sold": "Sold",
|
|
897
|
+
"label.sortByColon": "Sort:",
|
|
898
|
+
"label.source": "Source",
|
|
899
|
+
"label.sourceColon": "Source:",
|
|
900
|
+
"label.specificDate": "Specific date",
|
|
901
|
+
"label.staff": "personnel",
|
|
902
|
+
"label.staffIncludingSubordinates": "Personnel (including subordinates)",
|
|
903
|
+
"label.stage": "Stage",
|
|
904
|
+
"label.startConversationFragment": "start the conversation",
|
|
905
|
+
"label.status": "Status",
|
|
906
|
+
"label.statusColon": "Status:",
|
|
907
|
+
"label.subordinateStaff": "Direct personnel",
|
|
908
|
+
"label.successColon": "Success:",
|
|
909
|
+
"label.suggestSkill": "Suggest skill",
|
|
910
|
+
"label.suggestedRecordAction": "Record request",
|
|
911
|
+
"label.suggestion": "Suggestion",
|
|
912
|
+
"label.supplement": "Supplement",
|
|
913
|
+
"label.supportAgent": "Supporting agent",
|
|
914
|
+
"label.survey": "Survey",
|
|
915
|
+
"label.surveyHistory": "Survey history",
|
|
916
|
+
"label.surveyResult": "Survey result",
|
|
917
|
+
"label.surveyTitle": "Survey title",
|
|
918
|
+
"label.system": "System",
|
|
919
|
+
"label.systemAndTasks": "System & tasks",
|
|
920
|
+
"label.systemChatbot": "System (Chatbot)",
|
|
921
|
+
"label.target": "Target",
|
|
922
|
+
"label.task": "Task",
|
|
923
|
+
"label.taskName": "Task name",
|
|
924
|
+
"label.taskNameCannotBeEmpty": "Task name cannot be empty",
|
|
925
|
+
"label.taskType": "Task type",
|
|
926
|
+
"label.teamLeader": "Team leader",
|
|
927
|
+
"label.templateNameColon": "Form name:",
|
|
928
|
+
"label.tenant": "Tenant",
|
|
929
|
+
"label.text": "Text",
|
|
930
|
+
"label.textMessage": "Text message",
|
|
931
|
+
"label.theConfirmationPasswordMustMatch": "The confirmation password must match",
|
|
932
|
+
"label.theSequenceNumberMustBe": "The sequence number must be greater than 0",
|
|
933
|
+
"label.theSipPasswordMustBe": "The SIP password must be at least 6 characters long",
|
|
934
|
+
"label.ticketCode": "Ticket code",
|
|
935
|
+
"label.ticketDetail": "Ticket details",
|
|
936
|
+
"label.ticketInfo": "Ticket information",
|
|
937
|
+
"label.ticketList": "Ticket list",
|
|
938
|
+
"label.ticketSource": "Ticket source",
|
|
939
|
+
"label.ticketStatus": "Ticket status",
|
|
940
|
+
"label.ticketTitle": "Ticket title",
|
|
941
|
+
"label.ticketTitleColon": "Ticket title:",
|
|
942
|
+
"label.ticketType": "Category",
|
|
943
|
+
"label.tiktokShopAddedSuccessfully": "TikTok Shop added successfully!",
|
|
944
|
+
"label.time": "Time",
|
|
945
|
+
"label.timeColon": "Time:",
|
|
946
|
+
"label.timeCounter": "Timer",
|
|
947
|
+
"label.timeFromTo": "Time (from - to)",
|
|
948
|
+
"label.timeRange": "Time range",
|
|
949
|
+
"label.title": "Title",
|
|
950
|
+
"label.toDate": "To date",
|
|
951
|
+
"label.topic": "Topic",
|
|
952
|
+
"label.total": "Total",
|
|
953
|
+
"label.totalAmount": "Total amount",
|
|
954
|
+
"label.totalCount": "Total",
|
|
955
|
+
"label.totalCustomerWaitTime": "Total customer wait time",
|
|
956
|
+
"label.totalOrderValue": "Total order value",
|
|
957
|
+
"label.totalProductAmount": "Total product amount",
|
|
958
|
+
"label.totalResolutionTime": "Total problem resolution time",
|
|
959
|
+
"label.totalSubordinateUnits": "Total subordinate units",
|
|
960
|
+
"label.totalWaitingForReceptionTime": "Total intake wait time",
|
|
961
|
+
"label.trackingAiCost": "Tracking AI Cost",
|
|
962
|
+
"label.trackingCode": "Tracking number",
|
|
963
|
+
"label.trang": "page",
|
|
964
|
+
"label.treatmentPlan": "Treatment course",
|
|
965
|
+
"label.triggerCallEnded": "When the call ends",
|
|
966
|
+
"label.triggerCallEndedAlt": "Trigger when a call ends",
|
|
967
|
+
"label.triggerCampaignReconciliationReceived": "When receiving campaign reconciliation report",
|
|
968
|
+
"label.triggerCustomerCreated": "When a customer is created",
|
|
969
|
+
"label.triggerCustomerCreatedAlt": "Trigger when a customer is created",
|
|
970
|
+
"label.triggerCustomerUpdated": "When a customer is updated",
|
|
971
|
+
"label.triggerCustomerUpdatedAlt": "Trigger when a customer is updated",
|
|
972
|
+
"label.triggerDealCreated": "Trigger when a deal is created",
|
|
973
|
+
"label.triggerDealUpdated": "Trigger when a deal is updated",
|
|
974
|
+
"label.triggerLeadCreated": "When a lead is created",
|
|
975
|
+
"label.triggerLeadCreatedAlt": "Trigger when a lead is created",
|
|
976
|
+
"label.triggerLeadUpdated": "When a lead is updated",
|
|
977
|
+
"label.triggerLeadUpdatedAlt": "Trigger when a lead is updated",
|
|
978
|
+
"label.triggerOrderCreated": "When an order is created",
|
|
979
|
+
"label.triggerOrderCreatedAlt": "Triggered when an order is created",
|
|
980
|
+
"label.triggerOrderUpdated": "When an order is updated",
|
|
981
|
+
"label.triggerOrderUpdatedAlt": "Triggered when an order is updated",
|
|
982
|
+
"label.triggerReconciliationReportReceived": "Triggered when receiving ZNS/SMS/purchase reconciliation reports from external systems",
|
|
983
|
+
"label.triggerScheduledTime": "Trigger when the scheduled time is reached",
|
|
984
|
+
"label.triggerSmsCampaignResultReceived": "Triggered when receiving SMS send results of a campaign message",
|
|
985
|
+
"label.triggerSpecifiedTime": "Trigger when the specified time is reached",
|
|
986
|
+
"label.triggerTicketCreated": "When a ticket is created",
|
|
987
|
+
"label.triggerTicketCreatedAlt": "Trigger when a ticket is created",
|
|
988
|
+
"label.triggerTicketUpdated": "When a ticket is updated",
|
|
989
|
+
"label.triggerTicketUpdatedAlt": "Trigger when a ticket is updated",
|
|
990
|
+
"label.triggerZnsCampaignResultReceived": "Triggered when receiving ZNS send results of a campaign message",
|
|
991
|
+
"label.type": "Type",
|
|
992
|
+
"label.typeToFindAnAgent": "Type to find an agent, queue, or department",
|
|
993
|
+
"label.understandCorrectNeeds": "Correctly understand the needs",
|
|
994
|
+
"label.unit": "units",
|
|
995
|
+
"label.unitName": "Unit name",
|
|
996
|
+
"label.unitNameCannotBeEmpty": "Unit name cannot be empty",
|
|
997
|
+
"label.unitPrice": "Unit price",
|
|
998
|
+
"label.unlimited": "Unlimited",
|
|
999
|
+
"label.unread": "Unread",
|
|
1000
|
+
"label.updateAdditionalInfoIfExists": "Add new information to an existing customer",
|
|
1001
|
+
"label.updateInfoColon": "Updated information:",
|
|
1002
|
+
"label.updateInfoIfExists": "Update new information for an existing customer",
|
|
1003
|
+
"label.updatedAt": "Updated at {updatedAt}",
|
|
1004
|
+
"label.updatedDate": "Updated date",
|
|
1005
|
+
"label.updatedTime": "Update time",
|
|
1006
|
+
"label.updatedTimeRange": "Update time (from - to)",
|
|
1007
|
+
"label.urgent": "Urgent",
|
|
1008
|
+
"label.usageTarget": "Users",
|
|
1009
|
+
"label.user": "User",
|
|
1010
|
+
"label.userData": "User data",
|
|
1011
|
+
"label.validFromTo": "Valid from {start} to {end}",
|
|
1012
|
+
"label.validUntil": "Valid until {end}",
|
|
1013
|
+
"label.validityPeriodFromReceipt": "Valid for {relative_time} days from receipt",
|
|
1014
|
+
"label.value": "Value",
|
|
1015
|
+
"label.valueAlt": "Value",
|
|
1016
|
+
"label.vietnamese": "Vietnamese",
|
|
1017
|
+
"label.viewingAsPrefix": "Viewing under the permissions of ",
|
|
1018
|
+
"label.violated": "Violated",
|
|
1019
|
+
"label.violationThreshold": "Violation threshold",
|
|
1020
|
+
"label.volume": "Volume",
|
|
1021
|
+
"label.waitTime": "Wait time",
|
|
1022
|
+
"label.waitUntilSpecificDate": "Wait until a specific date",
|
|
1023
|
+
"label.ward": "Ward",
|
|
1024
|
+
"label.wardAlt": "Ward",
|
|
1025
|
+
"label.warehouse": "Warehouse",
|
|
1026
|
+
"label.web": "Web",
|
|
1027
|
+
"label.webMessage": "Web message",
|
|
1028
|
+
"label.webrtcNoLogin": "WebRTC (No login)",
|
|
1029
|
+
"label.week": "Week",
|
|
1030
|
+
"label.weight": "Weight",
|
|
1031
|
+
"label.whatsappTemplate": "WhatsApp form",
|
|
1032
|
+
"label.whenADealCreated": "When a deal is created",
|
|
1033
|
+
"label.whenADealUpdated": "When a deal is updated",
|
|
1034
|
+
"label.whenCampaignSmsResultReceived": "When receiving campaign SMS send results",
|
|
1035
|
+
"label.whenCampaignZnsResultReceived": "When receiving campaign ZNS send results",
|
|
1036
|
+
"label.whenDealCreated": "When a deal is created",
|
|
1037
|
+
"label.whenDealUpdated": "When a deal is updated",
|
|
1038
|
+
"label.workAssignment": "Work assignment",
|
|
1039
|
+
"label.workSchedule": "Work schedule",
|
|
1040
|
+
"label.workspace": "Workspace",
|
|
1041
|
+
"label.writeScriptForDataTransform": "Write a script to process and transform data",
|
|
1042
|
+
"label.year": "Year",
|
|
1043
|
+
"label.yearAlt": "Year ",
|
|
1044
|
+
"label.yearValue": "Year {value}",
|
|
1045
|
+
"label.youHaveAnIncomingCall": "You have an incoming call",
|
|
1046
|
+
"label.zaloCallButtonTicketDetail": "Zalo call button - Ticket details",
|
|
1047
|
+
"label.zaloChatButtonTicketDetail": "Zalo chat button - Ticket details",
|
|
1048
|
+
"label.zaloOaAddedSuccessfully": "Zalo OA added successfully!",
|
|
1049
|
+
"label.zaloPersonal": "Personal Zalo",
|
|
1050
|
+
"label.zaloPhone": "Zalo phone number",
|
|
1051
|
+
"label.zns": "ZNS",
|
|
1052
|
+
"label.znsButtonTicketDetail": "ZNS button - Ticket details",
|
|
1053
|
+
"label.znsFallback": "ZNS fallback",
|
|
1054
|
+
"label.znsSmsCampaign": "ZNS/SMS campaign",
|
|
1055
|
+
"label.znsTemplate": "ZNS form",
|
|
1056
|
+
"message.acceptConversation": "received the conversation",
|
|
1057
|
+
"message.activateVoiceBeforeOutboundCall": "Please activate voice to make outgoing calls",
|
|
1058
|
+
"message.adjustPermissionTicketListDesc": "Adjust permissions and display in the Ticket list",
|
|
1059
|
+
"message.agentNotFound": "Agent not found!",
|
|
1060
|
+
"message.aiAutoGreetingDesc": "AI will automatically send an opening message when a customer starts a new chat session.",
|
|
1061
|
+
"message.allowAdvancedFilterTicket": "Allow using advanced filters to find tickets",
|
|
1062
|
+
"message.allowCallButtonTicketDetail": "Allow displaying and using the call button in ticket details",
|
|
1063
|
+
"message.allowEmailButtonTicketDetail": "Allow displaying and using the send email button in ticket details",
|
|
1064
|
+
"message.allowExportTicketList": "Allow exporting the ticket list to a file",
|
|
1065
|
+
"message.allowSmsButtonTicketDetail": "Allow displaying and using the SMS button in ticket details",
|
|
1066
|
+
"message.allowZaloCallButtonTicketDetail": "Allow displaying and using the Zalo call button in ticket details",
|
|
1067
|
+
"message.allowZaloChatButtonTicketDetail": "Allow displaying and using the Zalo chat button in ticket details",
|
|
1068
|
+
"message.allowZnsButtonTicketDetail": "Allow displaying and using the Zalo Notification Service button in ticket details",
|
|
1069
|
+
"message.alreadyInAnotherCall": "You are in another call!",
|
|
1070
|
+
"message.auditTrailDescription": "Track the action history of users and the system for traceability and auditing.",
|
|
1071
|
+
"message.autoAnalyzeCommentDescription": "Automatically analyze comment content and assist with classification",
|
|
1072
|
+
"message.autoCloseTimeoutDescription": "Set up the time to auto-close conversations and remind customers when there is no interaction.",
|
|
1073
|
+
"message.autoDistributionRuleDescription": "Rules that automatically route interactions to the right group or agent.",
|
|
1074
|
+
"message.autoRedirectCountdown": "Redirecting automatically in {timeLeft} seconds ...",
|
|
1075
|
+
"message.autoSetUnavailableAfterMissedCalls": "You have declined calls multiple times! Automatically switching status to Not ready to work.",
|
|
1076
|
+
"message.blockedNumberListDesc": "Blocked number list.",
|
|
1077
|
+
"message.botReplyOnlyDesc": "The bot only responds when the customer messages first; it does not greet proactively.",
|
|
1078
|
+
"message.branchListDesc": "Branch list.",
|
|
1079
|
+
"message.brandServiceListDesc": "Brand's service list",
|
|
1080
|
+
"message.browserNoSpeakerMicSupport": "Browser does not support selecting speaker/headphones",
|
|
1081
|
+
"message.browserNotSupportCallMethod": "Your browser does not support the call listening method!",
|
|
1082
|
+
"message.browserNotSupportMicrophoneAccess": "Browser does not support microphone access",
|
|
1083
|
+
"message.browserNotSupportTestRecording": "Browser does not support test recording",
|
|
1084
|
+
"message.callEndedCommentTemplate": "\n <p>\n <strong>{reason}</strong>\n </p>\n <p>\n <strong>Call ID:</strong> {callId}\n </p>\n ",
|
|
1085
|
+
"message.callEndedCommentTemplateAlt": "\n <strong>Call ended</strong>\n <strong>Call ID:</strong> {callId}\n <strong>Reason:</strong> {reason}\n ",
|
|
1086
|
+
"message.callError401": "Error 401: cannot place outgoing call because the customer's number prefix/PBX IP is not registered with the Hub!",
|
|
1087
|
+
"message.callError402": "Error 402: call credit limit exceeded!",
|
|
1088
|
+
"message.callError403": "Error 403: the hub rejected the call because the IP is not declared or for another reason!",
|
|
1089
|
+
"message.callError404": "Error 404: no routing rule on the Hub, or no number left to call out!",
|
|
1090
|
+
"message.callError408": "Error 408: no response!",
|
|
1091
|
+
"message.callError420": "Error 420: the number is not in the 09xx (10 digits) or 02xxx (11 or 12 digits) format!",
|
|
1092
|
+
"message.callError430": "Error 430: the call was redirected to voicemail!",
|
|
1093
|
+
"message.callError480": "Error 480: the subscriber is unreachable!",
|
|
1094
|
+
"message.callError485": "Error 485: the subscriber does not exist!",
|
|
1095
|
+
"message.callError486": "Error 486: the recipient declined the call!",
|
|
1096
|
+
"message.callError487": "Error 487: the call was disconnected!",
|
|
1097
|
+
"message.callError488": "Error 488: the subscriber is busy!",
|
|
1098
|
+
"message.callError500": "Error 500: the Telco system is experiencing an issue, please make the call again!",
|
|
1099
|
+
"message.callError503": "Error 503: the connection to the PBX Hub failed, please try again later!",
|
|
1100
|
+
"message.callError603": "Error 603: the number prefix is blocked by the recipient's network!",
|
|
1101
|
+
"message.callError607": "Error 607: the customer is registered to not receive this call!",
|
|
1102
|
+
"message.callError608": "Error 608: the system is overloaded, please try again later!",
|
|
1103
|
+
"message.callFrom": "Call from ",
|
|
1104
|
+
"message.callNotFound": "Call not found!",
|
|
1105
|
+
"message.callPartnerApiWebhookDesc": "Call a partner's or customer's API or Webhook",
|
|
1106
|
+
"message.callPopupConfigDesc": "Configure data display in the call popup.",
|
|
1107
|
+
"message.callSessionEndedOtherDevice": "The call session ended because your account is active on another device.",
|
|
1108
|
+
"message.callbotToPhoneListDesc": "Call via Callbot to a list of phone numbers from an event/condition or predefined phone numbers",
|
|
1109
|
+
"message.chatbotConfigDesc": "Configure the chatbot.",
|
|
1110
|
+
"message.checkSlaInfo": "Please check the SLA information in the system.",
|
|
1111
|
+
"message.clickForDetails": "{msg}. Click to view details.",
|
|
1112
|
+
"message.clickToDownloadTemplate": "Click to download the template file",
|
|
1113
|
+
"message.configDistributionParamsDesc": "Allow configuring allocation parameters and the list of agents handling the queue.",
|
|
1114
|
+
"message.contentRequired": "Content cannot be empty",
|
|
1115
|
+
"message.conversationAcceptedBy": "{name} has taken the conversation.",
|
|
1116
|
+
"message.conversationStartedBy": "{name} started the conversation.",
|
|
1117
|
+
"message.conversationLeftBy": "{name} left the conversation.",
|
|
1118
|
+
"message.conversationReopenedBy": "{name} reopened the conversation.",
|
|
1119
|
+
"message.conversationClosedByAt": "{name} closed this conversation at <span>{timeValue}</span>.",
|
|
1120
|
+
"message.conversationClosedBy": "{name} has closed this conversation.",
|
|
1121
|
+
"message.tiktokEndSessionSuccess": "A satisfaction survey has been sent to the customer.",
|
|
1122
|
+
"message.conversationJoinedBy": "{name} has joined the conversation.",
|
|
1123
|
+
"message.customRolePermissionForDepartment": "Customize role permissions specifically for this department",
|
|
1124
|
+
"message.dataNotFoundCheckFile": "No data found, please check the file",
|
|
1125
|
+
"message.distributionInProgress": "The allocation is in progress. Please check the notifications section in a few minutes.",
|
|
1126
|
+
"message.distributionRuleDescription": "Set up allocation and queuing rules for interactions from multiple channels. Ensures requests are routed to the right agent, the right group, and handled by priority.",
|
|
1127
|
+
"message.dragDropFileHereOr": "Drag and drop a file here or",
|
|
1128
|
+
"message.dragToSort": "Drag to reorder",
|
|
1129
|
+
"message.dropToSplitAsRootUnit": "Drop here to split into a root unit",
|
|
1130
|
+
"message.duplicateKpiTarget": "{names} already have a KPI of the same type in this time period",
|
|
1131
|
+
"message.eavesdroppingCall": "You are eavesdropping on this call!",
|
|
1132
|
+
"message.enterNumberBeforeCall": "Please enter a number before calling",
|
|
1133
|
+
"message.excelOnly": "Only Excel files are supported (.xlsx, .xls)",
|
|
1134
|
+
"message.extensionNotFound": "Extension does not exist",
|
|
1135
|
+
"message.fieldMaxDigits15": "{field} must not exceed 15 digits",
|
|
1136
|
+
"message.fieldRequired": "{field} is required",
|
|
1137
|
+
"message.fieldRulesDescription": "Set up rules for the fields in each entity.",
|
|
1138
|
+
"message.fileContainsMacroOrExternalLinks": "The file contains VBA macros and/or external links",
|
|
1139
|
+
"message.fileFormatUnsupportedPreview": "The file <0>{{name}}</0> in <1>{{ext}}</1> format cannot be displayed directly in Zenify. You can download it or open it with an external app.",
|
|
1140
|
+
"message.fileProcessing": "The file is being processed. Check the notifications section in a few minutes",
|
|
1141
|
+
"message.fileSizeExceeded": "File size exceeds the {MAX_FILE_SIZE_MB}MB limit",
|
|
1142
|
+
"message.fileTypeUnsupported": "The file type \"{type}\" is not supported.",
|
|
1143
|
+
"message.fileUploadHint": "PDF, DOC, DOCX, XLS, XLSX, TXT up to {maxSize}MB",
|
|
1144
|
+
"message.filterNameRequired": "Filter name cannot be empty",
|
|
1145
|
+
"message.goalDescription": "The goal the agent needs to achieve.",
|
|
1146
|
+
"message.groupNotFound": "The group does not exist",
|
|
1147
|
+
"message.imageProcessFailed": "Could not process the image \"{name}\". The format may not be supported.",
|
|
1148
|
+
"message.invalidEmail": "Invalid email",
|
|
1149
|
+
"message.invalidFilterData": "Invalid filter data",
|
|
1150
|
+
"message.invalidToken": "Invalid token",
|
|
1151
|
+
"message.invoiceTemplateConfigDesc": "Configure the invoice form.",
|
|
1152
|
+
"message.ivrScriptDescription": "Set up auto-reply scripts and route calls to the right queue or agent.",
|
|
1153
|
+
"message.joinConversation": "joined the conversation",
|
|
1154
|
+
"message.largeFileSlowFilterSort": "Large file — filtering/sorting may be slow",
|
|
1155
|
+
"message.leadSettingsDesc": "Settings related to leads.",
|
|
1156
|
+
"message.leaveConversation": "leave the conversation",
|
|
1157
|
+
"message.macroDisabledInPreview": "Macros are disabled in preview",
|
|
1158
|
+
"message.macroDisabledInPreviewDetailed": "Macros are disabled in the preview. The displayed content keeps the original typography.",
|
|
1159
|
+
"message.mainPhoneMax15": "The primary phone number cannot exceed 15 digits",
|
|
1160
|
+
"message.mainRoomAlwaysIncluded": "The main department is always included. Selecting a parent department = includes its child departments.",
|
|
1161
|
+
"message.manageAgentShifts": "Manage agents' work shifts.",
|
|
1162
|
+
"message.manageBrandKnowledge": "Manage brands and knowledge.",
|
|
1163
|
+
"message.manageCampaignSchedule": "Manage agents' campaign run time",
|
|
1164
|
+
"message.manageCommentFlow": "Manage comment flows and set up a smart automatic response system",
|
|
1165
|
+
"message.manageOmnichannelInteraction": "Manage and handle customer interactions from multiple channels in one unified system.",
|
|
1166
|
+
"message.managePeopleData": "Manage and classify all people-related data in the system, including internal personnel and leads.",
|
|
1167
|
+
"message.managePromotionPrograms": "Manage promotions by product or flat price.",
|
|
1168
|
+
"message.manageSalesProcess": "Manage the sales process from leads to closing deals and revenue.",
|
|
1169
|
+
"message.manageStaffList": "Manage the list of personnel handling and caring for customers.",
|
|
1170
|
+
"message.manageSubscriptionBilling": "Manage the tenant's subscription and invoice history.",
|
|
1171
|
+
"message.manageTicketProperties": "Manage ticket attributes.",
|
|
1172
|
+
"message.manageWarehouse": "Manage warehouses and product storage locations.",
|
|
1173
|
+
"message.mapEventsToConversionMilestonesDesc": "Map events to specific customer conversion milestones.",
|
|
1174
|
+
"message.max15Digits": "{title} must not exceed 15 digits",
|
|
1175
|
+
"message.maxFilesUpload": "You can only upload up to {maxFiles} files.",
|
|
1176
|
+
"message.micPermissionRequiredForCall": "You need to grant Microphone access to use the voice feature!",
|
|
1177
|
+
"message.micPermissionRequiredForDevice": "You need to grant microphone permission to apply the selected device",
|
|
1178
|
+
"message.micPermissionRequiredForTest": "You need to grant microphone permission to test the mic",
|
|
1179
|
+
"message.microphoneBlockedInBrowser": "Microphone is blocked in the browser",
|
|
1180
|
+
"message.microphoneUnavailableFallbackDefault": "The selected microphone is no longer available; using the default",
|
|
1181
|
+
"message.minCallDurationConfigDesc": "Configure the minimum call duration when enabling automatic conversion (in seconds)",
|
|
1182
|
+
"message.miscConfigDescription": "Set up auxiliary configurations related to operating hours and control of restricted entities in the system...",
|
|
1183
|
+
"message.missingEmailOrTenantIdInUrl": "Missing email or tenantId information in the URL",
|
|
1184
|
+
"message.mobileCallDetectedLogoutDesc": "The system detects that you are using the mobile app to make calls. Please log out on your mobile device before making a call in the web browser.",
|
|
1185
|
+
"message.multiChannelConfigDesc": "Configure omnichannel conversation features",
|
|
1186
|
+
"message.noAgentAvailable": "No available agents found",
|
|
1187
|
+
"message.noAgentAvailableForCall": "No agents available to take the call",
|
|
1188
|
+
"message.noDataFileYet": "No data file yet?",
|
|
1189
|
+
"message.noMatchingDeal": "No matching deal found",
|
|
1190
|
+
"message.noMicrophoneAvailable": "No available microphone found",
|
|
1191
|
+
"message.noPermissionFeature": "You don't have permission to use this feature!",
|
|
1192
|
+
"message.noSpeakerAvailable": "No available speaker/headphones found",
|
|
1193
|
+
"message.optInMessage": "opted in to receive messages",
|
|
1194
|
+
"message.orDragDropFileHere": "or drag and drop a file here",
|
|
1195
|
+
"message.orDragDropImage": "or drag and drop an image here",
|
|
1196
|
+
"message.orderSent": "Sent an order",
|
|
1197
|
+
"message.orgStructureConfigDesc": "Configure the company's internal structure — departments, branches, regions, areas. Any number of levels.",
|
|
1198
|
+
"message.outboundCallToCustomer": "Outbound call to customer ",
|
|
1199
|
+
"message.passwordMustBeAtLeast": "Password must be at least 6 characters",
|
|
1200
|
+
"message.paymentMethodConfigDesc": "Configure payment methods.",
|
|
1201
|
+
"message.permissionsBlockedByParent": "— {count} permissions are blocked at a higher level and cannot be re-enabled here.",
|
|
1202
|
+
"message.phoneMaxLength": "The phone number cannot exceed 15 digits",
|
|
1203
|
+
"message.pipelineSetupDescription": "Set up a pipeline to manage stages and track processing progress",
|
|
1204
|
+
"message.playingRecordingThroughSelectedSpeaker": "Playing back the recording through the selected speaker",
|
|
1205
|
+
"message.pleaseWaitAMoment": "Please wait a moment",
|
|
1206
|
+
"message.pleaseWaitMoment": "Please wait a moment",
|
|
1207
|
+
"message.pleaseWaitMomentEllipsis": "Please wait a moment...",
|
|
1208
|
+
"message.pollCreated": "Poll created",
|
|
1209
|
+
"message.pptxNotSupportedDesc": "The .pptx format needs to be rendered by a PowerPoint engine — we are building this integration.",
|
|
1210
|
+
"message.previewNotSupported": "Preview is not yet supported for this format",
|
|
1211
|
+
"message.productListDesc": "List of products and product attributes.",
|
|
1212
|
+
"message.productSent": "Product sent",
|
|
1213
|
+
"message.qaSummaryCriteria": "Did the agent summarize, wrap up, and thank the customer?",
|
|
1214
|
+
"message.recordingMicSignalDetected": "Recording, mic has signal",
|
|
1215
|
+
"message.recordingSpeakSample": "Recording, try saying a few sentences",
|
|
1216
|
+
"message.reopenConversation": "reopen the conversation",
|
|
1217
|
+
"message.reportUrlNotFound": "Report path not found",
|
|
1218
|
+
"message.requiredField": "{title} cannot be left blank",
|
|
1219
|
+
"message.scanQrConnectZalo": "Scan the QR code to connect Zalo with Zenify",
|
|
1220
|
+
"message.scriptNameCannotBeEmpty": "Script name cannot be empty",
|
|
1221
|
+
"message.secondaryPhoneMax15": "The secondary phone number cannot exceed 15 digits",
|
|
1222
|
+
"message.selectDepartmentFirst": "Select a department first",
|
|
1223
|
+
"message.selectRoleToAdjustPermissionDesc": "Select a role to view and adjust permissions for this department. Check to allow, uncheck to block.",
|
|
1224
|
+
"message.selectUserBeforeCall": "Please select a user before calling",
|
|
1225
|
+
"message.sendEmailToListWithTemplateDesc": "Send email to the recipient list with a specific email template",
|
|
1226
|
+
"message.sendOnlyToNewCustomer": "Only send to new customers who have never messaged",
|
|
1227
|
+
"message.sendPushToAgentOrCustomerDesc": "Send Push to a list of Agent accounts or customers from an event/condition or predefined contacts",
|
|
1228
|
+
"message.sendSmsBrandnameDesc": "Send SMS Brandname to a list of phone numbers from an event/condition or predefined phone numbers",
|
|
1229
|
+
"message.sendZnsBrandnameDesc": "Send ZNS Brandname to a list of phone numbers from an event/condition or predefined phone numbers",
|
|
1230
|
+
"message.serverDisconnectedActionBlocked": "Lost connection to the server; cannot perform the action!",
|
|
1231
|
+
"message.serverDisconnectedReloadPage": "Lost connection to the server, please reload the page!",
|
|
1232
|
+
"message.sessionExpiredRelogin": "Your login session has expired, please log in again!",
|
|
1233
|
+
"message.sessionRevokedRelogin": "Your session has ended, please log in again!",
|
|
1234
|
+
"message.setupOperationStructureDesc": "Set up the operating structure and business rules for the entire data and interaction lifecycle in the system.",
|
|
1235
|
+
"message.setupTaskAssignmentRuleDesc": "Set up incoming work allocation rules for agents.",
|
|
1236
|
+
"message.shippingAddressDesc": "Delivery address.",
|
|
1237
|
+
"message.shippingUnitConnectionDesc": "Connect shipping carrier.",
|
|
1238
|
+
"message.showEmailButtonTicketDesc": "Show the send email button on the ticket",
|
|
1239
|
+
"message.showFirstRowsLimit": "Showing only the first {ROW_LIMIT} rows",
|
|
1240
|
+
"message.showFirstRowsLimitAlt": "Showing only the first {rowLimit} rows",
|
|
1241
|
+
"message.showQuickCallButtonTicketDesc": "Show the quick call button on the ticket",
|
|
1242
|
+
"message.showQuickFiltersDesc": "Show quick filters for faster operations",
|
|
1243
|
+
"message.showSmsButtonTicketDesc": "Show the send SMS button on the ticket",
|
|
1244
|
+
"message.showZaloContactButtonTicketDesc": "Show the Zalo contact button on the ticket",
|
|
1245
|
+
"message.showZnsButtonTicketDesc": "Show the send ZNS button on the ticket",
|
|
1246
|
+
"message.sipSessionNotFoundForDtmf": "No SIP session found to send DTMF",
|
|
1247
|
+
"message.slaSetupDescription": "Set up SLA times to control the processing and response deadlines for each step in the process.",
|
|
1248
|
+
"message.speakerUnavailableFallbackDefault": "The selected speaker/headphones is no longer available, using default",
|
|
1249
|
+
"message.speechToTextNote": "Note: The system only supports transcribing recordings within 7 days of the call time.",
|
|
1250
|
+
"message.suitableForReturningCustomerGreeting": "Good when you don't want to repeat the greeting for returning customers.",
|
|
1251
|
+
"message.supportedFileTypesXlsx": "Supported: .xlsx, .xls (up to {MAX_FILE_SIZE_MB}MB)",
|
|
1252
|
+
"message.supportedImageTypesJpgPng": "JPG, JPEG, PNG up to {maxSize}MB",
|
|
1253
|
+
"message.tagConfigDesc": "Configure tags for tickets, conversations...",
|
|
1254
|
+
"message.tenantIdUnresolvedReportLoadFailed": "Could not determine the user's tenant_id. Cannot load the report.",
|
|
1255
|
+
"message.thePhoneNumberCannotExceed": "The phone number cannot exceed 15 characters",
|
|
1256
|
+
"message.thePhoneNumberMustBe": "The phone number must be at least 6 characters",
|
|
1257
|
+
"message.ticketDetailDisplayConfigDesc": "Configure display in the ticket detail screen",
|
|
1258
|
+
"message.ticketDisplayRulesDescription": "Set up ticket display rules.",
|
|
1259
|
+
"message.ticketModuleConfigDesc": "Configure display and action permissions for the Ticket module",
|
|
1260
|
+
"message.titleRequired": "{title} cannot be empty",
|
|
1261
|
+
"message.toggleAutoAcceptDistributedConversation": "Toggle automatically accepting a conversation when invited to join via the distribution feature",
|
|
1262
|
+
"message.toggleAutoReceiveChat": "Toggle auto-accept chat when a new conversation arrives",
|
|
1263
|
+
"message.toggleAutoSpeechToText": "Toggle automatic speech-to-text conversion after the call ends",
|
|
1264
|
+
"message.toggleSmartQaChat": "Toggle Smart QA for the chat channel",
|
|
1265
|
+
"message.toggleSmartQaInboundCall": "Toggle Smart QA for incoming calls",
|
|
1266
|
+
"message.toggleSmartQaOutboundCall": "Toggle Smart QA for outgoing calls",
|
|
1267
|
+
"message.toggleSmartQaTelesales": "Toggle Smart QA for telesales",
|
|
1268
|
+
"message.toggleSmartViewTicketList": "Toggle smart view in the ticket list",
|
|
1269
|
+
"message.totalFileSizeExceeded": "The total file size exceeds {maxTotalSizeMB}MB.",
|
|
1270
|
+
"message.unexpectedError": "Oops! An error occurred during processing",
|
|
1271
|
+
"message.unitAlreadyChild": "The unit already belongs to this level.",
|
|
1272
|
+
"message.unitNameExistsAtTargetLevel": "The unit name already exists at the same destination level.",
|
|
1273
|
+
"message.unitNotExist": "The unit does not exist.",
|
|
1274
|
+
"message.updateCustomerConditionDesc": "Update customers matching conditions from an event/condition or a specified contact",
|
|
1275
|
+
"message.updateLeadConditionDesc": "Update leads matching conditions from an event/condition or a specified contact",
|
|
1276
|
+
"message.updateTicketConditionDesc": "Update tickets matching conditions from an event/condition or a specified ticket",
|
|
1277
|
+
"message.useFullProductsDesc": "Use FULL_PRODUCTS for the whole table instead of adding each field individually",
|
|
1278
|
+
"message.userInfoNotFoundRelogin": "User information not found. Please log in again.",
|
|
1279
|
+
"message.userNotFound": "User not found",
|
|
1280
|
+
"message.variableAssignmentNote": "Note: Please fill in all required information. The variable content will be automatically assigned the preset values.",
|
|
1281
|
+
"message.waitThenContinueScript": "Wait x (days, hours, minutes, seconds) then continue the script",
|
|
1282
|
+
"message.weakConnectionWarning": "Weak connection signal, please check your network to avoid interruptions!",
|
|
1283
|
+
"message.workflowSequenceDescription": "Set up automated task chains applied to deals, customers, and leads.",
|
|
1284
|
+
"message.zaloBusinessAssistantDescription": "Assistant for internal business Q&A via Zalo.",
|
|
1285
|
+
"message.zaloLoginStep1": "1. Open the Zalo app on your mobile device",
|
|
1286
|
+
"message.zaloLoginStep2": "2. In Settings, tap the QR scan button",
|
|
1287
|
+
"message.zaloLoginStep3": "3. Scan the QR code to log in",
|
|
1288
|
+
"message.zaloPersonalLabelHideDescription": "Messages from personal Zalo contacts carrying one of the labels selected below will <0>not be shown</0> in Zenify Conversations.",
|
|
1289
|
+
"misc.codeFileSummary": "{name} · {lineCount} lines",
|
|
1290
|
+
"misc.markdownFileSummary": "{lineCount} lines · GFM · ~{readMinutes} min read",
|
|
1291
|
+
"nav.adsConversionReport": "Ads conversion report",
|
|
1292
|
+
"nav.agentReport": "Agent report",
|
|
1293
|
+
"nav.aiReport": "AI report",
|
|
1294
|
+
"nav.automation": "Automation",
|
|
1295
|
+
"nav.callHistory": "Call history",
|
|
1296
|
+
"nav.callMonitoring": "Monitor call",
|
|
1297
|
+
"nav.configuration": "Configuration",
|
|
1298
|
+
"nav.conversationAnalysis": "Conversation analysis",
|
|
1299
|
+
"nav.conversationTesting": "Test conversation",
|
|
1300
|
+
"nav.customReport": "Custom report",
|
|
1301
|
+
"nav.reportV1": "Report v1",
|
|
1302
|
+
"nav.customerFeedbackSurveyReport": "Customer feedback survey report",
|
|
1303
|
+
"nav.dailyReport": "Daily report",
|
|
1304
|
+
"nav.dashboard": "Dashboard",
|
|
1305
|
+
"nav.deals": "Deals",
|
|
1306
|
+
"nav.departmentReport": "Department report",
|
|
1307
|
+
"nav.deployment": "Deploy",
|
|
1308
|
+
"nav.editHistory": "Edit history",
|
|
1309
|
+
"nav.eliteReport": "Elite report",
|
|
1310
|
+
"nav.escalationRules": "Escalation rules",
|
|
1311
|
+
"nav.helpdeskReport": "Helpdesk report",
|
|
1312
|
+
"nav.interactionHistory": "Interaction history",
|
|
1313
|
+
"nav.interactionLog": "Interaction log",
|
|
1314
|
+
"nav.knowledge": "Knowledge",
|
|
1315
|
+
"nav.kpiReport": "Target report",
|
|
1316
|
+
"nav.leadResultsCount": "Leads ({count} results)",
|
|
1317
|
+
"nav.leadResultsTotalCount": "Leads ({totalCount} results)",
|
|
1318
|
+
"nav.livestreamList": "Livestream list",
|
|
1319
|
+
"nav.notification": "Notification",
|
|
1320
|
+
"nav.organizationResultsCount": "Organizations ({count} results)",
|
|
1321
|
+
"nav.overview": "Overview",
|
|
1322
|
+
"nav.policies": "Policy",
|
|
1323
|
+
"nav.postList": "Post list",
|
|
1324
|
+
"nav.qaOptimization": "QA & Optimization",
|
|
1325
|
+
"nav.reminderReport": "Reminder report",
|
|
1326
|
+
"nav.report": "Report",
|
|
1327
|
+
"nav.reportMathtechLeads": "Mathtech lead report",
|
|
1328
|
+
"nav.reportMathtechMessages": "Mathtech message report",
|
|
1329
|
+
"nav.reportOb": "OB report",
|
|
1330
|
+
"nav.reportRenew": "Renewal report",
|
|
1331
|
+
"nav.reportZaloPersonal": "Personal Zalo Report",
|
|
1332
|
+
"nav.roleBasedPermission": "Role-based permissions",
|
|
1333
|
+
"nav.saleReport": "Sales report",
|
|
1334
|
+
"nav.sales": "Sales",
|
|
1335
|
+
"nav.scenarioTesting": "Scenario Testing",
|
|
1336
|
+
"nav.smsReport": "SMS report",
|
|
1337
|
+
"nav.switchboard": "PBX",
|
|
1338
|
+
"nav.systemLog": "System log",
|
|
1339
|
+
"nav.tableView": "Table",
|
|
1340
|
+
"nav.testHistory": "Test history",
|
|
1341
|
+
"nav.testing": "Test",
|
|
1342
|
+
"nav.ticket": "Ticket",
|
|
1343
|
+
"nav.ticketList": "Ticket list",
|
|
1344
|
+
"nav.ticketManagement": "Manage tickets",
|
|
1345
|
+
"nav.ticketResultsCount": "Tickets ({count} results)",
|
|
1346
|
+
"nav.ticketResultsTotalCount": "Tickets ({totalCount} results)",
|
|
1347
|
+
"nav.training": "Training",
|
|
1348
|
+
"nav.workspace": "Workspace",
|
|
1349
|
+
"nav.zenifyQa": "Zenify QA",
|
|
1350
|
+
"nav.znsReport": "ZNS report",
|
|
1351
|
+
"pagination.pageOf": "Page {page}/{total}",
|
|
1352
|
+
"placeholder.addCustomerNote": "Add a note about the customer...",
|
|
1353
|
+
"placeholder.clickToUpload": "Click to upload",
|
|
1354
|
+
"placeholder.enterActionName": "Enter action name",
|
|
1355
|
+
"placeholder.enterAddress": "Enter address",
|
|
1356
|
+
"placeholder.enterAgentEmail": "Enter agent email",
|
|
1357
|
+
"placeholder.enterAgentName": "Enter agent name",
|
|
1358
|
+
"placeholder.enterContent": "Enter content",
|
|
1359
|
+
"placeholder.enterContentAlt": "Enter content...",
|
|
1360
|
+
"placeholder.enterCustomerName": "Enter customer name",
|
|
1361
|
+
"placeholder.enterDescription": "Enter description",
|
|
1362
|
+
"placeholder.enterEmail": "Enter email",
|
|
1363
|
+
"placeholder.enterFilterName": "Enter filter name",
|
|
1364
|
+
"placeholder.enterFilterNameEllipsis": "Enter filter name…",
|
|
1365
|
+
"placeholder.enterKey": "Enter key...",
|
|
1366
|
+
"placeholder.enterMaxQuantity": "Enter maximum quantity",
|
|
1367
|
+
"placeholder.enterNote": "Enter note",
|
|
1368
|
+
"placeholder.enterFieldWithMention": "Enter {field}, use @ for suggestions",
|
|
1369
|
+
"placeholder.enterPageToJump": "Enter a page number to jump quickly",
|
|
1370
|
+
"placeholder.enterPassword": "Enter password",
|
|
1371
|
+
"placeholder.enterPhone": "Enter phone number",
|
|
1372
|
+
"placeholder.enterProductName": "Enter product name",
|
|
1373
|
+
"placeholder.enterSearchInfo": "Enter search information",
|
|
1374
|
+
"placeholder.enterSearchKeyword": "Enter search keyword",
|
|
1375
|
+
"placeholder.enterTags": "Enter tags",
|
|
1376
|
+
"placeholder.enterTaskName": "Enter task name...",
|
|
1377
|
+
"placeholder.enterTitle": "Enter title",
|
|
1378
|
+
"placeholder.enterValue": "Enter value",
|
|
1379
|
+
"placeholder.exampleRegionName": "E.g., Northern region, Hanoi area...",
|
|
1380
|
+
"placeholder.none": "None selected",
|
|
1381
|
+
"placeholder.notSelected": "Not selected",
|
|
1382
|
+
"placeholder.phone": "Phone...",
|
|
1383
|
+
"placeholder.search": "Search…",
|
|
1384
|
+
"placeholder.searchAgent": "Type to find an agent",
|
|
1385
|
+
"placeholder.searchByKeywordCustomerTicket": "Search by keyword, customer, ticket, ...",
|
|
1386
|
+
"placeholder.searchByName": "Search by name...",
|
|
1387
|
+
"placeholder.searchByNameOrAgentCode": "Search by agent name or code...",
|
|
1388
|
+
"placeholder.searchCampaign": "Type to find a campaign",
|
|
1389
|
+
"placeholder.searchCustomer": "Search customers",
|
|
1390
|
+
"placeholder.searchInCsv": "Search in the CSV...",
|
|
1391
|
+
"placeholder.searchInSpreadsheet": "Search in the sheet...",
|
|
1392
|
+
"placeholder.searchPipeline": "Find pipeline",
|
|
1393
|
+
"placeholder.searchUnitName": "Search unit name...",
|
|
1394
|
+
"placeholder.selectAgent": "Select agent",
|
|
1395
|
+
"placeholder.selectAgentDashed": "— Select agent —",
|
|
1396
|
+
"placeholder.selectAssignee": "Select assignee",
|
|
1397
|
+
"placeholder.selectCustomer": "Select customer",
|
|
1398
|
+
"placeholder.selectCustomerStatus": "Select customer status",
|
|
1399
|
+
"placeholder.selectDate": "Select date",
|
|
1400
|
+
"placeholder.selectDefault": "--Select--",
|
|
1401
|
+
"placeholder.selectDefaultAlt": "-Select-",
|
|
1402
|
+
"placeholder.selectDepartment": "Select department",
|
|
1403
|
+
"placeholder.selectDepartmentAlt": "Select department",
|
|
1404
|
+
"placeholder.selectDepartmentDashed": "— Select department —",
|
|
1405
|
+
"placeholder.selectDistributionRule": "Select allocation rule",
|
|
1406
|
+
"placeholder.selectDistributionRuleDashed": "-- Select allocation rule --",
|
|
1407
|
+
"placeholder.selectField": "Select field",
|
|
1408
|
+
"placeholder.selectFilterField": "Select filter field",
|
|
1409
|
+
"placeholder.selectGatewayNumber": "Select number prefix",
|
|
1410
|
+
"placeholder.selectHiddenLabels": "Select labels not shown in Zenify",
|
|
1411
|
+
"placeholder.selectLanguage": "Select language",
|
|
1412
|
+
"placeholder.selectMicrophone": "Select microphone",
|
|
1413
|
+
"placeholder.selectOperatingDepartment": "Select departments to operate on",
|
|
1414
|
+
"placeholder.selectPipeline": "Select pipeline",
|
|
1415
|
+
"placeholder.selectQueue": "Select queue",
|
|
1416
|
+
"placeholder.selectReceivingRule": "Select intake rule",
|
|
1417
|
+
"placeholder.selectResult": "Select result",
|
|
1418
|
+
"placeholder.selectRole": "Select role",
|
|
1419
|
+
"placeholder.selectRoleToCustomize": "Select a role to customize",
|
|
1420
|
+
"placeholder.selectSearchField": "Select search field",
|
|
1421
|
+
"placeholder.selectSkill": "Select skill",
|
|
1422
|
+
"placeholder.selectSpeaker": "Select speaker/headphones",
|
|
1423
|
+
"placeholder.selectStage": "Select stage",
|
|
1424
|
+
"placeholder.selectStatus": "Select status",
|
|
1425
|
+
"placeholder.selectTag": "Select tag",
|
|
1426
|
+
"placeholder.selectTags": "Select tags",
|
|
1427
|
+
"placeholder.selectTicketForm": "Select ticket form",
|
|
1428
|
+
"placeholder.selectUsageTarget": "Select the users",
|
|
1429
|
+
"placeholder.selectUser": "Select user",
|
|
1430
|
+
"placeholder.selectUsingDepartment": "Select the department to use",
|
|
1431
|
+
"placeholder.selectValue": "Select value",
|
|
1432
|
+
"placeholder.selectZaloOa": "Select Zalo OA",
|
|
1433
|
+
"placeholder.typeToSearch": "Type to search",
|
|
1434
|
+
"status.accountConnected": "Connected account",
|
|
1435
|
+
"status.activatingMonitorMode": "Activating monitoring mode...",
|
|
1436
|
+
"status.activatingMonitorModeFor": "Activating monitor mode for {name}...",
|
|
1437
|
+
"status.active": "Active",
|
|
1438
|
+
"status.activeNow": "Active",
|
|
1439
|
+
"status.analysisFailed": "Analysis failed",
|
|
1440
|
+
"status.answering": "Answering",
|
|
1441
|
+
"status.canceledByAgent": "Canceled by agent",
|
|
1442
|
+
"status.cancelled": "Canceled",
|
|
1443
|
+
"status.chatbotNotSynced": "Chatbot not synced",
|
|
1444
|
+
"status.chatbotSynced": "Chatbot synced",
|
|
1445
|
+
"status.chatbotSyncing": "Syncing chatbot...",
|
|
1446
|
+
"status.closed": "Closed",
|
|
1447
|
+
"status.completed": "Completed",
|
|
1448
|
+
"status.completedLate": "Completed late",
|
|
1449
|
+
"status.confirmed": "Confirmed",
|
|
1450
|
+
"status.confirming": "Confirming",
|
|
1451
|
+
"status.connecting": "Connecting",
|
|
1452
|
+
"status.creating": "Creating...",
|
|
1453
|
+
"status.customerInterested": "Interested customer",
|
|
1454
|
+
"status.default": "Default",
|
|
1455
|
+
"status.downloadingTemplate": "Loading template file",
|
|
1456
|
+
"status.draft": "Draft",
|
|
1457
|
+
"status.draftAlt": "Draft",
|
|
1458
|
+
"status.edited": "Edited",
|
|
1459
|
+
"status.editing": "Editing",
|
|
1460
|
+
"status.expired": "Expired",
|
|
1461
|
+
"status.expiredAlt": "Expired",
|
|
1462
|
+
"status.expiringSoon": "Will expire",
|
|
1463
|
+
"status.failed": "Failed",
|
|
1464
|
+
"status.finished": "Completed",
|
|
1465
|
+
"status.good": "Good",
|
|
1466
|
+
"status.grading": "Scoring",
|
|
1467
|
+
"status.inMeeting": "In a meeting",
|
|
1468
|
+
"status.inProgress": "In progress",
|
|
1469
|
+
"status.inactive": "Inactive",
|
|
1470
|
+
"status.leftMessage": "Left a message",
|
|
1471
|
+
"status.loading": "Loading...",
|
|
1472
|
+
"status.loadingAudioDevices": "Loading audio devices...",
|
|
1473
|
+
"status.loadingInfo": "Loading information...",
|
|
1474
|
+
"status.loadingMicrophoneList": "Loading microphone list...",
|
|
1475
|
+
"status.loadingMore": "Loading more...",
|
|
1476
|
+
"status.loadingMoreShort": "Loading more",
|
|
1477
|
+
"status.loadingOrganizations": "Loading organizations...",
|
|
1478
|
+
"status.loadingPermissions": "Loading permissions...",
|
|
1479
|
+
"status.loadingSpeakerList": "Loading speaker/headphone list...",
|
|
1480
|
+
"status.loadingUserList": "Loading user list...",
|
|
1481
|
+
"status.lockedByParentDepartment": "Locked by parent department",
|
|
1482
|
+
"status.low": "Low",
|
|
1483
|
+
"status.lunchBreak": "Lunch",
|
|
1484
|
+
"status.met": "Fulfilled",
|
|
1485
|
+
"status.mutingMic": "Muting microphone",
|
|
1486
|
+
"status.negative": "Negative",
|
|
1487
|
+
"status.new": "New",
|
|
1488
|
+
"status.noResponse": "No response",
|
|
1489
|
+
"status.normal": "Normal",
|
|
1490
|
+
"status.notAvailable": "Not ready to work",
|
|
1491
|
+
"status.notGood": "Not good",
|
|
1492
|
+
"status.notInterested": "Not interested",
|
|
1493
|
+
"status.notPinned": "Not pinned",
|
|
1494
|
+
"status.notScored": "Not scored",
|
|
1495
|
+
"status.notShared": "Do not share",
|
|
1496
|
+
"status.notStarted": "Not started",
|
|
1497
|
+
"status.official": "Official",
|
|
1498
|
+
"status.onCampaign": "Run campaign",
|
|
1499
|
+
"status.onHold": "On hold",
|
|
1500
|
+
"status.onTime": "On the exact day",
|
|
1501
|
+
"status.orderCanceled": "Cancelled order",
|
|
1502
|
+
"status.orderDraft": "Draft orders",
|
|
1503
|
+
"status.orderNew": "New order",
|
|
1504
|
+
"status.orderSuccess": "Completed order",
|
|
1505
|
+
"status.outOfOffice": "Out of office",
|
|
1506
|
+
"status.paid": "Paid",
|
|
1507
|
+
"status.passed": "Passed",
|
|
1508
|
+
"status.unpaid": "Unpaid",
|
|
1509
|
+
"status.pending": "Pending",
|
|
1510
|
+
"status.pendingApproval": "Pending approval",
|
|
1511
|
+
"status.pendingSubmitApproval": "Pending submission for approval",
|
|
1512
|
+
"status.playing": "Playing...",
|
|
1513
|
+
"status.poor": "Poor",
|
|
1514
|
+
"status.private": "Not public",
|
|
1515
|
+
"status.processed": "Processed",
|
|
1516
|
+
"status.processing": "Processing...",
|
|
1517
|
+
"status.processingAlt": "Processing",
|
|
1518
|
+
"status.processingFile": "Processing file...",
|
|
1519
|
+
"status.processingSpeechToText": "Processing speech-to-text conversion, please wait!",
|
|
1520
|
+
"status.reactivatingAudio": "Reactivating voice",
|
|
1521
|
+
"status.readyNoAcd": "Ready NoACD",
|
|
1522
|
+
"status.readyToWork": "Ready to work",
|
|
1523
|
+
"status.refunded": "Refunded",
|
|
1524
|
+
"status.rendered": "Rendered",
|
|
1525
|
+
"status.replied": "Answered",
|
|
1526
|
+
"status.retryingPayment": "Retrying payment",
|
|
1527
|
+
"status.ringing": "Ringing",
|
|
1528
|
+
"status.running": "Running",
|
|
1529
|
+
"status.saving": "Saving",
|
|
1530
|
+
"status.savingDots": "Saving...",
|
|
1531
|
+
"status.scored": "Scored",
|
|
1532
|
+
"status.searching": "Searching...",
|
|
1533
|
+
"status.seen": "Viewed",
|
|
1534
|
+
"status.selected": "Selected",
|
|
1535
|
+
"status.sendFailed": "Send failed",
|
|
1536
|
+
"status.sending": "Sending",
|
|
1537
|
+
"status.sent": "Sent",
|
|
1538
|
+
"status.shared": "Shared",
|
|
1539
|
+
"status.skipped": "Skipped",
|
|
1540
|
+
"status.stopped": "Inactive",
|
|
1541
|
+
"status.success": "Success",
|
|
1542
|
+
"status.suspended": "Suspended",
|
|
1543
|
+
"status.testing": "Testing",
|
|
1544
|
+
"status.unprocessed": "Unprocessed",
|
|
1545
|
+
"status.unreachable": "Could not reach",
|
|
1546
|
+
"status.unsavedChanges": "Unsaved changes",
|
|
1547
|
+
"status.unseen": "Unread",
|
|
1548
|
+
"status.updating": "Updating...",
|
|
1549
|
+
"status.used": "Used",
|
|
1550
|
+
"status.veryHigh": "Very high",
|
|
1551
|
+
"status.violated": "Violation",
|
|
1552
|
+
"status.voiceActivating": "Activating voice",
|
|
1553
|
+
"status.waiting": "Waiting",
|
|
1554
|
+
"status.waitingPaypalConfirm": "Awaiting PayPal confirmation",
|
|
1555
|
+
"status.warning": "Warning",
|
|
1556
|
+
"status.zaloPersonalConnected": "Personal Zalo · Connected",
|
|
1557
|
+
"table.action": "Actions",
|
|
1558
|
+
"table.ofTotalRecords": "of {totalRecords} records",
|
|
1559
|
+
"table.operation": "Actions",
|
|
1560
|
+
"table.pageNumberOnly": "Page {page}",
|
|
1561
|
+
"table.pageOfCount": "Page {page}/{pageCount}",
|
|
1562
|
+
"time.april": "April",
|
|
1563
|
+
"time.august": "August",
|
|
1564
|
+
"time.current": "Current",
|
|
1565
|
+
"time.december": "December",
|
|
1566
|
+
"time.february": "February",
|
|
1567
|
+
"time.friday": "Friday",
|
|
1568
|
+
"time.hour": "Hours",
|
|
1569
|
+
"time.january": "January",
|
|
1570
|
+
"time.july": "July",
|
|
1571
|
+
"time.june": "June",
|
|
1572
|
+
"time.justNow": "Just now",
|
|
1573
|
+
"time.march": "March",
|
|
1574
|
+
"time.may": "May",
|
|
1575
|
+
"time.minutesAgo": "{count, plural, one {# minute ago} other {# minutes ago}}",
|
|
1576
|
+
"time.minutesRemaining": "{count, plural, one {# minute left} other {# minutes left}}",
|
|
1577
|
+
"time.monday": "Monday",
|
|
1578
|
+
"time.monthPeriod": "Month {month}",
|
|
1579
|
+
"time.november": "November",
|
|
1580
|
+
"time.october": "October",
|
|
1581
|
+
"time.oneHourAgo": "1 hour ago",
|
|
1582
|
+
"time.oneHourRemaining": "1 hour left",
|
|
1583
|
+
"time.quarterly": "Quarterly",
|
|
1584
|
+
"time.saturday": "Saturday",
|
|
1585
|
+
"time.september": "September",
|
|
1586
|
+
"time.sunday": "Sunday",
|
|
1587
|
+
"time.thirtyMinutes": "30 Minutes",
|
|
1588
|
+
"time.threeDaysAgo": "3 days ago",
|
|
1589
|
+
"time.thursday": "Thursday",
|
|
1590
|
+
"time.today": "Today",
|
|
1591
|
+
"time.tomorrow": "Tomorrow",
|
|
1592
|
+
"time.tuesday": "Tuesday",
|
|
1593
|
+
"time.twoDaysAgo": "2 days ago",
|
|
1594
|
+
"time.twoHoursAgo": "2 hours ago",
|
|
1595
|
+
"time.twoHoursRemaining": "2 hours left",
|
|
1596
|
+
"time.wednesday": "Wednesday",
|
|
1597
|
+
"time.weekly": "Weekly",
|
|
1598
|
+
"time.yesterday": "Yesterday",
|
|
1599
|
+
"toast.actionBlockedDuringCall": "Cannot do this while in a call!",
|
|
1600
|
+
"toast.activateVoiceSuccess": "Voice activated successfully!",
|
|
1601
|
+
"toast.addNoteSuccess": "Note added successfully",
|
|
1602
|
+
"toast.addToOrderNoSkuFailed": "Cannot add to the order: the product has no identifier",
|
|
1603
|
+
"toast.agentAcceptedConversation": "{description} agreed to take the conversation!",
|
|
1604
|
+
"toast.agentBusy": "Agent is busy!",
|
|
1605
|
+
"toast.agentRejectedCallRepeatedly": "Agent {username} has declined the call multiple times!",
|
|
1606
|
+
"toast.agentRejectedConversation": "{description} declined to take the conversation!",
|
|
1607
|
+
"toast.agentServerConnectFailed": "Failed to connect to agent server!",
|
|
1608
|
+
"toast.applyMicrophoneCallFailed": "Could not apply the selected microphone to the current call",
|
|
1609
|
+
"toast.applyMicrophoneFailed": "Could not apply the selected microphone",
|
|
1610
|
+
"toast.assignKpiInvalidAgentFailed": "Cannot assign a target to an inactive or invalid agent.",
|
|
1611
|
+
"toast.assignedNewConversation": "You have been assigned to a new conversation",
|
|
1612
|
+
"toast.audioConfigSaved": "Audio configuration saved",
|
|
1613
|
+
"toast.callConnectError": "An error occurred while connecting the call",
|
|
1614
|
+
"toast.callEndedNoMicPermission": "The call ended because Microphone access was not granted!",
|
|
1615
|
+
"toast.callHistoryReportReady": "Your call history report is ready to download",
|
|
1616
|
+
"toast.callModeConfigFailed": "Failed to configure call mode!",
|
|
1617
|
+
"toast.callStuck": "The call is frozen, please try again in a few seconds!",
|
|
1618
|
+
"toast.changeStatusFailed": "Failed to change status!",
|
|
1619
|
+
"toast.chatbotSyncFailed": "Failed to sync chatbot",
|
|
1620
|
+
"toast.checkExtensionFailed": "Could not check internal number, please try again",
|
|
1621
|
+
"toast.checkMicrophoneFailed": "Could not test the selected microphone",
|
|
1622
|
+
"toast.connectionInterrupted": "The connection was interrupted, please try again in a few seconds!",
|
|
1623
|
+
"toast.conversationForwardRequest": "{description} just requested to transfer the conversation to you!",
|
|
1624
|
+
"toast.copySuccess": "Copied successfully",
|
|
1625
|
+
"toast.createDealSuccess": "Deal created successfully",
|
|
1626
|
+
"toast.createKpiFailed": "Cannot create the target. Please try again.",
|
|
1627
|
+
"toast.createKpiSuccess": "Target created successfully",
|
|
1628
|
+
"toast.createOrganizationSuccess": "Organization created successfully",
|
|
1629
|
+
"toast.createReturnSuccess": "Return slip created successfully",
|
|
1630
|
+
"toast.createUnitSuccess": "Unit created successfully",
|
|
1631
|
+
"toast.customerBlacklisted": "Customer is on the blacklist!",
|
|
1632
|
+
"toast.customerFileProcessed": "Your customer file has finished processing. Total {success}/{total} records successful",
|
|
1633
|
+
"toast.deleteDealSuccess": "Deal deleted successfully",
|
|
1634
|
+
"toast.deleteFilterSuccess": "Filter deleted successfully",
|
|
1635
|
+
"toast.deleteKpiFailed": "Cannot delete the target.",
|
|
1636
|
+
"toast.deleteReplyTemplateSuccess": "Reply template deleted successfully",
|
|
1637
|
+
"toast.deleteReturnSuccess": "Return slip deleted successfully",
|
|
1638
|
+
"toast.deleteSmartviewSuccess": "SmartView deleted successfully",
|
|
1639
|
+
"toast.deleteSuccess": "Deleted successfully",
|
|
1640
|
+
"toast.deleteTemplateSuccess": "Form deleted successfully",
|
|
1641
|
+
"toast.deleteUnitSuccess": "Unit deleted successfully",
|
|
1642
|
+
"toast.departmentPermissionSaved": "Department permissions saved",
|
|
1643
|
+
"toast.distributeError": "An error occurred while allocating your {target}. Please try again later.",
|
|
1644
|
+
"toast.distributeFailed": "Distribution failed",
|
|
1645
|
+
"toast.distributedItemsNotice": "You have been allocated {assigned} {target}. Please check your {target2} list.",
|
|
1646
|
+
"toast.distributionCompleted": "The {target} allocation is complete. Total {success}/{total} {target2} allocated",
|
|
1647
|
+
"toast.downloadInvoiceFailed": "Failed to download invoice (HTTP {status})",
|
|
1648
|
+
"toast.duplicateKpiInPeriod": "A duplicate target already exists in this time range",
|
|
1649
|
+
"toast.errorOccurred": "An error occurred",
|
|
1650
|
+
"toast.exportCallHistoryError": "An error occurred while exporting your call history report",
|
|
1651
|
+
"toast.exportFailed": "Cannot export the data",
|
|
1652
|
+
"toast.exportSuccess": "Data exported successfully",
|
|
1653
|
+
"toast.fetchIvrListFailed": "Cannot get the IVR list",
|
|
1654
|
+
"toast.fileFormatNotSupported": "The file format \".{ext}\" is not supported.",
|
|
1655
|
+
"toast.fileProcessError": "An error occurred while processing the file",
|
|
1656
|
+
"toast.fileSizeExceeded": "File size exceeds {maxFileSizeMB}MB.",
|
|
1657
|
+
"toast.fileWrongFormat": "The file format is incorrect",
|
|
1658
|
+
"toast.forwardFailed": "Forwarding failed!",
|
|
1659
|
+
"toast.forwardSuccess": "Forwarded successfully",
|
|
1660
|
+
"toast.genericErrorWithMessage": "An error occurred: {message}",
|
|
1661
|
+
"toast.guestTokenFetchFailed": "Could not get a guest token to load the report.",
|
|
1662
|
+
"toast.kpiDeleted": "Target deleted",
|
|
1663
|
+
"toast.linkCopied": "Link copied",
|
|
1664
|
+
"toast.loadCsvFailed": "Cannot load the CSV",
|
|
1665
|
+
"toast.loadDocxFailed": "Cannot load the DOCX file",
|
|
1666
|
+
"toast.loadExcelFailed": "Cannot load the Excel file",
|
|
1667
|
+
"toast.loadFileFailed": "Cannot load the file",
|
|
1668
|
+
"toast.loadImageFailed": "Cannot load the image",
|
|
1669
|
+
"toast.loadJsSipFailed": "Cannot load JsSIP, please reload the page!",
|
|
1670
|
+
"toast.loadPdfFailed": "Cannot load the PDF",
|
|
1671
|
+
"toast.loadPermissionConfigFailed": "Could not load permission configuration",
|
|
1672
|
+
"toast.memberAdded": "Member added",
|
|
1673
|
+
"toast.mergeTicketSuccess": "Ticket merged successfully",
|
|
1674
|
+
"toast.messageSentToCustomers": "Sent the message to {total} customers.",
|
|
1675
|
+
"toast.moveUnitIntoItselfFailed": "Cannot move a unit into itself.",
|
|
1676
|
+
"toast.moveUnitIntoOwnSubtreeFailed": "Cannot move a unit into its own subtree.",
|
|
1677
|
+
"toast.moveUnitSuccess": "Unit moved successfully. Permission changes will take effect in a few seconds.",
|
|
1678
|
+
"toast.openNotificationError": "An error occurred while opening this notification.",
|
|
1679
|
+
"toast.organizationDeleted": "Organization deleted",
|
|
1680
|
+
"toast.outboundCallNotAllowed": "Outgoing calls are not allowed!",
|
|
1681
|
+
"toast.outboundNumberNotAllowed": "Outgoing number prefix not allowed!",
|
|
1682
|
+
"toast.pauseSuccess": "Paused successfully",
|
|
1683
|
+
"toast.phoneNumberCopied": "Phone number copied",
|
|
1684
|
+
"toast.playRecordingFailed": "Could not play back the recording",
|
|
1685
|
+
"toast.playVideoFailed": "Cannot play this video",
|
|
1686
|
+
"toast.processFileError": "An error occurred while processing your {target} file. Please try again later",
|
|
1687
|
+
"toast.recordingReady": "The recording is ready to replay",
|
|
1688
|
+
"toast.removedMember": "Member removed",
|
|
1689
|
+
"toast.removedMembersPlural": "Members removed",
|
|
1690
|
+
"toast.resetChatbotSuccess": "Chatbot reset successfully",
|
|
1691
|
+
"toast.saveColumnConfigFailed": "Cannot save column configuration",
|
|
1692
|
+
"toast.saveConfigError": "An error occurred while saving the configuration, please try again!",
|
|
1693
|
+
"toast.saveDraftSuccess": "Draft saved successfully",
|
|
1694
|
+
"toast.saveEvaluationSuccess": "Evaluation saved successfully",
|
|
1695
|
+
"toast.saveFailed": "Save failed",
|
|
1696
|
+
"toast.saveFilterSuccess": "Filter saved successfully",
|
|
1697
|
+
"toast.sendDtmfFailed": "Failed to send DTMF",
|
|
1698
|
+
"toast.sendRequestFailed": "Failed to send request!",
|
|
1699
|
+
"toast.sendRequestSuccess": "Request sent successfully!",
|
|
1700
|
+
"toast.serverConnectFailed": "Failed to connect to the server!",
|
|
1701
|
+
"toast.serverConnectFailedRetryLater": "Failed to connect to the server, please try again in a few minutes!",
|
|
1702
|
+
"toast.sipTrunkConnectFailed": "Cannot connect to SipTrunk!",
|
|
1703
|
+
"toast.speechToTextEmptyResult": "Conversion succeeded but no speech was captured.",
|
|
1704
|
+
"toast.speechToTextFailed": "Failed to convert speech to text.",
|
|
1705
|
+
"toast.speechToTextRequestSuccess": "The speech-to-text request was sent successfully.",
|
|
1706
|
+
"toast.switchWebrtcFailed": "Cannot switch to WebRTC mode. Please reselect the call mode.",
|
|
1707
|
+
"toast.transferAssigneeSuccess": "Assignee changed successfully",
|
|
1708
|
+
"toast.unstableNetwork": "Your network connection is currently unstable!",
|
|
1709
|
+
"toast.updateCustomerFailed": "Failed to update customer",
|
|
1710
|
+
"toast.updateCustomerSuccess": "Customer updated successfully",
|
|
1711
|
+
"toast.updateDealSuccess": "Deal updated successfully",
|
|
1712
|
+
"toast.updateFilterSuccess": "Filter updated successfully",
|
|
1713
|
+
"toast.updateKpiFailed": "Cannot update the target. Please try again.",
|
|
1714
|
+
"toast.updateKpiSuccess": "Target updated successfully",
|
|
1715
|
+
"toast.updatePasswordSuccess": "Password updated successfully",
|
|
1716
|
+
"toast.updateSalesReturnSuccess": "Return slip updated successfully",
|
|
1717
|
+
"toast.updateStageSuccess": "Stage updated successfully",
|
|
1718
|
+
"toast.updateStatusSuccess": "Status updated successfully",
|
|
1719
|
+
"toast.updateSuccess": "Updated successfully",
|
|
1720
|
+
"toast.updateSuccessAlt": "Updated successfully!",
|
|
1721
|
+
"toast.updateUnitSuccess": "Unit updated successfully",
|
|
1722
|
+
"toast.uploadFailed": "Cannot upload file",
|
|
1723
|
+
"toast.uploadFileFailed": "File upload failed. Please try again.",
|
|
1724
|
+
"toast.webPhoneConnectFailed": "Cannot connect to WebPhone!",
|
|
1725
|
+
"toast.zaloLoginError": "An error occurred during Zalo login, please try again!",
|
|
1726
|
+
"toast.zaloLoginFailed": "Zalo login failed, please try again!",
|
|
1727
|
+
"toast.zaloPersonalChannelConfigSaved": "Personal Zalo channel configuration saved",
|
|
1728
|
+
"toast.zaloQrFetchError": "An error occurred while getting the Zalo login QR code, please try again!",
|
|
1729
|
+
"toast.zaloTransferredToSharedPersonal": "Zalo {page_name} has been switched to a shared personal Zalo!",
|
|
1730
|
+
"toast.zaloTransferredToUser": "Personal Zalo {page_name} has been transferred to: {name}, email: {email}!",
|
|
1731
|
+
"toast.znsRequestSent": "ZNS request sent, the system is processing",
|
|
1732
|
+
"unit.calls": "call",
|
|
1733
|
+
"unit.columns": "{length} columns",
|
|
1734
|
+
"unit.customer": "customer",
|
|
1735
|
+
"unit.filter": "filter",
|
|
1736
|
+
"unit.images": "image",
|
|
1737
|
+
"unit.items": "{itemCount} products",
|
|
1738
|
+
"unit.members": "{length} members",
|
|
1739
|
+
"unit.minute": "Minutes",
|
|
1740
|
+
"unit.results": "{total} results",
|
|
1741
|
+
"validation.addAtLeastOneConditionRequired": "Please add at least one condition",
|
|
1742
|
+
"validation.endDateAfterOrEqualStart": "The end date must be on or after the start date",
|
|
1743
|
+
"validation.enterMaxCountRequired": "Please enter the maximum quantity",
|
|
1744
|
+
"validation.selectAgentRequired": "Please select an agent",
|
|
1745
|
+
"validation.selectAgentToDistributeRequired": "Please select an agent to distribute to",
|
|
1746
|
+
"validation.selectDepartmentRequired": "Please select a department",
|
|
1747
|
+
"validation.selectDistributionRuleRequired": "Please select a distribution rule",
|
|
1748
|
+
"validation.selectEndDateRequired": "Please select an end date",
|
|
1749
|
+
"validation.selectQueueToDistributeRequired": "Please select a queue to distribute to",
|
|
1750
|
+
"validation.selectStartDateRequired": "Please select a start date",
|
|
1751
|
+
"message.dataMaskingDescription": "Mask customer phone numbers and emails on display and exports by role or user group.",
|
|
1752
|
+
"placeholder.selectGroup": "Select group",
|
|
1753
|
+
"placeholder.selectOrganization": "Select organization",
|
|
1754
|
+
"action.go_to_conversation": "Go to conversation",
|
|
1755
|
+
"sessionReason.logout": "Signed out",
|
|
1756
|
+
"sessionReason.logout_all": "Signed out of all devices",
|
|
1757
|
+
"sessionReason.self_revoke": "Revoked another device",
|
|
1758
|
+
"sessionReason.max_parallel_sessions": "Parallel-session limit exceeded",
|
|
1759
|
+
"sessionReason.admin_force_logout": "Force-logged out by admin",
|
|
1760
|
+
"sessionReason.admin_revoke_session": "Session revoked by admin",
|
|
1761
|
+
"sessionReason.reuse_detected": "Refresh-token reuse detected",
|
|
1762
|
+
"sessionReason.user_inactive": "Account deactivated",
|
|
1763
|
+
"sessionReason.expired": "Expired naturally",
|
|
1764
|
+
"sessionReason.jwt_expired": "Token expired, auto-refreshed",
|
|
1765
|
+
"sessionReason.unknown": "Unknown",
|
|
1766
|
+
"sessionReason.local_test_cleanup": "Test data cleanup",
|
|
1767
|
+
"notificationBtn.open": "Open",
|
|
1768
|
+
"notificationBtn.download": "Download",
|
|
1769
|
+
"notificationBtn.retry": "Retry",
|
|
1770
|
+
"notificationBtn.delete": "Delete",
|
|
1771
|
+
"notificationBtn.view": "View",
|
|
1772
|
+
"notificationBtn.objectTicket": "ticket",
|
|
1773
|
+
"notificationBtn.objectComment": "comment",
|
|
1774
|
+
"notificationBtn.objectChat": "conversation",
|
|
1775
|
+
"action.clearSelection": "Clear selection",
|
|
1776
|
+
"message.sessionPolicyDesc": "Limit devices and sign-in duration",
|
|
1777
|
+
"message.updateFailed": "Update failed, please try again",
|
|
1778
|
+
"action.attach": "Attach",
|
|
1779
|
+
"action.loginAgain": "Log in again",
|
|
1780
|
+
"action.otherActions": "Other actions",
|
|
1781
|
+
"action.viewFullNote": "View full note",
|
|
1782
|
+
"confirm.deleteName": "Are you sure you want to delete {name}?",
|
|
1783
|
+
"confirm.deleteNameConfirm": "Are you sure you want to delete {name}?",
|
|
1784
|
+
"label.amountVnd": "{amount}đ",
|
|
1785
|
+
"label.amountVndPerUnit": "{price}đ/{unit}",
|
|
1786
|
+
"label.dateFull": "{day}/{month}/{year}",
|
|
1787
|
+
"label.discountAmount": "Save {amount}",
|
|
1788
|
+
"label.errorCode": "Error code",
|
|
1789
|
+
"label.example": "Example",
|
|
1790
|
+
"label.fileIndexCounter": "File {current}/{total}",
|
|
1791
|
+
"label.format": "Format",
|
|
1792
|
+
"label.minSpendAmount": "Min. spend {amount}",
|
|
1793
|
+
"label.prefix": "Prefix",
|
|
1794
|
+
"label.recordedTime": "Recorded 0:{seconds}",
|
|
1795
|
+
"label.shippingBestExpressEconomy": "Economy delivery (12491)",
|
|
1796
|
+
"label.shippingBestExpressFast": "Fast delivery (12490)",
|
|
1797
|
+
"message.channelFileSizeLimit": "Channel {channel} only supports files under {size} MB",
|
|
1798
|
+
"message.conversationActionBy": "{name} {action}",
|
|
1799
|
+
"message.dataLoadFailed": "Failed to load data",
|
|
1800
|
+
"message.formatNotSupportedPreview": "The .{ext} format is not supported for direct preview.",
|
|
1801
|
+
"message.imageTooLarge": "Image size exceeds the allowed limit (Max {size})",
|
|
1802
|
+
"message.invalidFileFormat": "Invalid file format. Supported: {types}",
|
|
1803
|
+
"message.invalidImageFormat": "Invalid image format. Supported: {types}",
|
|
1804
|
+
"message.selectedFileTooLarge": "The file you selected exceeds the allowed size limit (Max {size})",
|
|
1805
|
+
"message.serverConnectionFailed": "Cannot connect to the server. Please try again.",
|
|
1806
|
+
"message.customerCodeAutoGenerated": "Customer code is auto-generated, no input needed",
|
|
1807
|
+
"placeholder.enterCustomerCode": "Enter customer code",
|
|
1808
|
+
"placeholder.enterField": "Enter {field}",
|
|
1809
|
+
"placeholder.searchBy": "Search by {fields}",
|
|
1810
|
+
"sort.newest": "Newest",
|
|
1811
|
+
"sort.oldest": "Oldest",
|
|
1812
|
+
"time.monthSlashYear": "{month}/{year}",
|
|
1813
|
+
"toast.fileSizeExceedsLimit": "{type} size exceeds the {size}MB limit",
|
|
1814
|
+
"toast.imageOptimizeFailed": "Could not optimize image \"{name}\" to send via {channel}. Please try another image.",
|
|
1815
|
+
"toast.inactiveAgentsDeselect": "The following agents are inactive, please deselect: {names}",
|
|
1816
|
+
"toast.maxUploadPerField": "You can upload at most {count} {type} per field",
|
|
1817
|
+
"toast.receivedEmailFrom": "You received an email from {sender}",
|
|
1818
|
+
"unit.day": "days",
|
|
1819
|
+
"unit.hour": "hours",
|
|
1820
|
+
"unit.second": "seconds",
|
|
1821
|
+
"label.linkTicket": "Link Ticket",
|
|
1822
|
+
"message.customizeWorkspaceLayoutDesc": "Customize the agent workspace layout to fit your needs.",
|
|
1823
|
+
"label.information": "Information",
|
|
1824
|
+
"label.activity": "Activity",
|
|
1825
|
+
"label.action": "Action",
|
|
1826
|
+
"appVersion": "Version {version}",
|
|
1827
|
+
"updateBanner.title": "A new version is available",
|
|
1828
|
+
"updateBanner.version": "Version {version}",
|
|
1829
|
+
"updateBanner.action": "Update now",
|
|
1830
|
+
"updateBanner.tooltip": "A new version is available — click to update",
|
|
1831
|
+
"updateBanner.tooltipWithVersion": "A new version is available — {version} — click to update",
|
|
1832
|
+
"label.memberCount": "{count} members",
|
|
1833
|
+
"message.noData": "No data",
|
|
1834
|
+
"placeholder.select": "Select",
|
|
1835
|
+
"action.sendChatMessage": "Send message",
|
|
1836
|
+
"message.sendChatMessageDesc": "Send a message to the customer conversation, with reference variables and file/image attachments",
|
|
1837
|
+
"label.sendToCustomer": "Send to customer",
|
|
1838
|
+
"message.sendToOrderPhoneDesc": "Send to the phone number on the order",
|
|
1839
|
+
"label.sendToExactConversation": "Send to specific conversations",
|
|
1840
|
+
"message.filterAndPickConversationDesc": "Filter and pick the conversations to send to",
|
|
1841
|
+
"label.sendToAnyConversation": "Send to any conversation",
|
|
1842
|
+
"message.sendToMatchedConversationDesc": "Send to every conversation matching the conditions",
|
|
1843
|
+
"message.conversationMemberRemovedBy": "{actor} removed {name} from the chat.",
|
|
1844
|
+
"label.facebookAds": "Ads",
|
|
1845
|
+
"action.view": "View"
|
|
1846
|
+
}
|