@chat21/chat21-ionic 3.0.82-rc.7 → 3.0.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/CHANGELOG.md +5 -99
  2. package/README.md +2 -2
  3. package/package.json +3 -4
  4. package/src/app/app.component.html +1 -7
  5. package/src/app/app.component.scss +2 -20
  6. package/src/app/app.component.ts +18 -129
  7. package/src/app/app.module.ts +1 -3
  8. package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.ts +1 -8
  9. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +23 -77
  10. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +88 -171
  11. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +2 -40
  12. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +24 -11
  13. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +10 -6
  14. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.spec.ts +2 -2
  15. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +25 -16
  16. package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.html +1 -5
  17. package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.scss +15 -22
  18. package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.ts +5 -25
  19. package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.html +1 -2
  20. package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.scss +15 -14
  21. package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.ts +5 -24
  22. package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.html +1 -6
  23. package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.scss +13 -12
  24. package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.ts +5 -26
  25. package/src/app/chatlib/conversation-detail/message/frame/frame.component.html +2 -8
  26. package/src/app/chatlib/conversation-detail/message/frame/frame.component.scss +0 -36
  27. package/src/app/chatlib/conversation-detail/message/frame/frame.component.ts +2 -2
  28. package/src/app/chatlib/conversation-detail/message/html/html.component.ts +1 -0
  29. package/src/app/chatlib/conversation-detail/message/image/image.component.html +2 -3
  30. package/src/app/chatlib/conversation-detail/message/image/image.component.scss +5 -17
  31. package/src/app/chatlib/conversation-detail/message/image/image.component.ts +1 -1
  32. package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.scss +2 -3
  33. package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.html +6 -16
  34. package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +3 -1
  35. package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.ts +0 -2
  36. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +52 -78
  37. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss +20 -63
  38. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +10 -14
  39. package/src/app/components/canned-response/canned-response.component.html +9 -9
  40. package/src/app/components/canned-response/canned-response.component.scss +7 -14
  41. package/src/app/components/canned-response/canned-response.component.ts +1 -1
  42. package/src/app/components/contacts-directory/contacts-directory.component.html +26 -22
  43. package/src/app/components/contacts-directory/contacts-directory.component.scss +6 -8
  44. package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.html +3 -0
  45. package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.scss +21 -0
  46. package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.spec.ts +24 -0
  47. package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.ts +14 -0
  48. package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.html +54 -0
  49. package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.scss +98 -0
  50. package/src/app/components/{conversations-list/header-conversations-list/header-conversations-list.component.spec.ts → conversation-detail/bubble-my-message/bubble-my-message.component.spec.ts} +6 -6
  51. package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts +84 -0
  52. package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.html +30 -0
  53. package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.scss +83 -0
  54. package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.spec.ts +24 -0
  55. package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts +68 -0
  56. package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.html +3 -0
  57. package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.scss +10 -0
  58. package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.spec.ts +24 -0
  59. package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.ts +14 -0
  60. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +42 -61
  61. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +61 -98
  62. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +25 -9
  63. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +8 -17
  64. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +4 -4
  65. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +84 -24
  66. package/src/app/components/conversation-detail/option-header/option-header.component.html +13 -0
  67. package/src/app/components/conversation-detail/option-header/option-header.component.scss +0 -0
  68. package/src/app/components/{conversations-list/header-conversations-list-archived/header-conversations-list-archived.component.spec.ts → conversation-detail/option-header/option-header.component.spec.ts} +5 -5
  69. package/src/app/components/{conversations-list/header-conversations-list-archived/header-conversations-list-archived.component.ts → conversation-detail/option-header/option-header.component.ts} +4 -5
  70. package/src/app/components/conversation-info/info-content/info-content.component.html +4 -8
  71. package/src/app/components/conversation-info/info-content/info-content.component.ts +6 -3
  72. package/src/app/components/conversation-info/info-direct/info-direct.component.html +13 -7
  73. package/src/app/components/conversation-info/info-direct/info-direct.component.scss +0 -23
  74. package/src/app/components/conversation-info/info-direct/info-direct.component.ts +6 -1
  75. package/src/app/components/conversation-info/info-group/info-group.component.html +108 -44
  76. package/src/app/components/conversation-info/info-group/info-group.component.scss +61 -101
  77. package/src/app/components/conversation-info/info-group/info-group.component.ts +0 -1
  78. package/src/app/components/conversation-info/info-support-group/info-support-group.component.html +1 -2
  79. package/src/app/components/conversation-info/info-support-group/info-support-group.component.ts +1 -0
  80. package/src/app/components/{conversations-list/header-conversations-list/header-conversations-list.component.html → ddp-header/ddp-header.component.html} +3 -3
  81. package/src/app/components/{conversations-list/header-conversations-list/header-conversations-list.component.scss → ddp-header/ddp-header.component.scss} +4 -16
  82. package/src/app/components/{navbar/navbar.component.spec.ts → ddp-header/ddp-header.component.spec.ts} +6 -6
  83. package/src/app/components/{conversations-list/header-conversations-list/header-conversations-list.component.ts → ddp-header/ddp-header.component.ts} +16 -7
  84. package/src/app/components/project-item/project-item.component.html +149 -98
  85. package/src/app/components/project-item/project-item.component.scss +35 -43
  86. package/src/app/components/project-item/project-item.component.ts +4 -16
  87. package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +5 -5
  88. package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +10 -23
  89. package/src/app/components/utils/user-presence/user-presence.component.html +2 -7
  90. package/src/app/components/utils/user-presence/user-presence.component.scss +18 -35
  91. package/src/app/components/utils/user-presence/user-presence.component.ts +10 -6
  92. package/src/app/pages/contacts-directory/contacts-directory.page.html +1 -1
  93. package/src/app/pages/contacts-directory/contacts-directory.page.scss +0 -47
  94. package/src/app/pages/contacts-directory/contacts-directory.page.ts +0 -2
  95. package/src/app/pages/conversation-detail/conversation-detail.module.ts +8 -0
  96. package/src/app/pages/conversation-detail/conversation-detail.page.html +23 -41
  97. package/src/app/pages/conversation-detail/conversation-detail.page.scss +250 -40
  98. package/src/app/pages/conversation-detail/conversation-detail.page.ts +112 -186
  99. package/src/app/pages/conversations-list/conversations-list.page.html +8 -11
  100. package/src/app/pages/conversations-list/conversations-list.page.scss +2 -18
  101. package/src/app/pages/conversations-list/conversations-list.page.ts +22 -25
  102. package/src/app/pages/create-canned-response/create-canned-response.page.ts +13 -13
  103. package/src/app/pages/loader-preview/loader-preview.page.html +1 -1
  104. package/src/app/pages/loader-preview/loader-preview.page.scss +0 -4
  105. package/src/app/pages/loader-preview/loader-preview.page.ts +2 -1
  106. package/src/app/pages/profile-info/profile-info.page.html +4 -2
  107. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +1 -1
  108. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +0 -42
  109. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +0 -1
  110. package/src/app/services/canned-responses/canned-responses.service.ts +0 -26
  111. package/src/app/services/tiledesk/tiledesk.service.ts +25 -1
  112. package/src/app/services/websocket/websocket.service.ts +1 -1
  113. package/src/app/shared/shared.module.ts +33 -24
  114. package/src/assets/i18n/ar.json +265 -278
  115. package/src/assets/i18n/az.json +1 -14
  116. package/src/assets/i18n/de.json +2 -15
  117. package/src/assets/i18n/en.json +2 -15
  118. package/src/assets/i18n/es.json +2 -15
  119. package/src/assets/i18n/fr.json +1 -14
  120. package/src/assets/i18n/it.json +1 -14
  121. package/src/assets/i18n/kk.json +2 -15
  122. package/src/assets/i18n/pt.json +2 -15
  123. package/src/assets/i18n/ru.json +1 -14
  124. package/src/assets/i18n/sr.json +264 -277
  125. package/src/assets/i18n/sv.json +2 -15
  126. package/src/assets/i18n/tr.json +2 -15
  127. package/src/assets/i18n/uk.json +2 -15
  128. package/src/assets/i18n/uz.json +1 -14
  129. package/src/assets/js/chat21client.js +148 -175
  130. package/src/chat-config-mqtt-localhost.json +2 -2
  131. package/src/chat-config-native-mqtt.json +0 -3
  132. package/src/chat21-core/models/conversation.ts +1 -0
  133. package/src/chat21-core/providers/firebase/firebase-typing.service.ts +9 -7
  134. package/src/chat21-core/providers/mqtt/mqtt-auth-service.ts +8 -7
  135. package/src/chat21-core/utils/constants.ts +1 -6
  136. package/src/chat21-core/utils/user-typing/user-typing.component.html +5 -8
  137. package/src/chat21-core/utils/user-typing/user-typing.component.scss +17 -87
  138. package/src/chat21-core/utils/user-typing/user-typing.component.ts +94 -12
  139. package/src/chat21-core/utils/utils.ts +10 -38
  140. package/src/global.scss +255 -52
  141. package/src/index.html +9 -0
  142. package/src/variables.scss +10 -30
  143. package/deploy_amazon_beta.sh +0 -29
  144. package/deploy_amazon_prod.sh +0 -30
  145. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component_2.html +0 -116
  146. package/src/app/components/conversations-list/header-conversations-list-archived/header-conversations-list-archived.component.html +0 -12
  147. package/src/app/components/conversations-list/header-conversations-list-archived/header-conversations-list-archived.component.scss +0 -14
  148. package/src/app/components/navbar/navbar.component.html +0 -103
  149. package/src/app/components/navbar/navbar.component.scss +0 -249
  150. package/src/app/components/navbar/navbar.component.ts +0 -190
  151. package/src/app/services/projects/projects.service.spec.ts +0 -12
  152. package/src/app/services/projects/projects.service.ts +0 -43
  153. package/src/assets/sounds/interface-start.mp3 +0 -0
  154. package/src/assets/sounds/wheep-wheep.mp3 +0 -0
  155. package/src/chat21-core/models/projects.ts +0 -27
  156. package/src/chat21-core/utils/convertRequestToConversation.ts +0 -41
@@ -5,8 +5,6 @@
5
5
  "LABEL_AVAILABLE": "mövcuddur",
6
6
  "LABEL_NOT_AVAILABLE": "Mövcud deyil",
7
7
  "LABEL_INACTIVE":"qeyri-aktiv",
8
- "LABEL_ONLINE":"onlayn",
9
- "LABEL_OFFLINE":"oflayn",
10
8
  "LABEL_NO_MSG_HERE": "Burada hələ mesaj yoxdur...",
11
9
  "LABEL_TODAY": "bu gün",
12
10
  "LABEL_TOMORROW": "dünən",
@@ -46,7 +44,6 @@
46
44
  "LABEL_VIDEO_CHAT": "Video zəng",
47
45
  "LABEL_LEAVE_GROUP": "Qrupu tərk edin",
48
46
  "LABEL_CLOSE_GROUP": "Yaxın",
49
- "LABEL_OPEN_INFO_CONVERSATION":"Söhbət təfərrüatlarını açın",
50
47
  "ALERT_TITLE": "Diqqət!",
51
48
  "CLOSE_ALERT_CONFIRM_LABEL": "tamam",
52
49
  "CLOSE_ALERT_CANCEL_LABEL": "LƏĞV EDİN",
@@ -166,8 +163,6 @@
166
163
  "WAITING_TIME_FOUND": "Komanda adətən $reply_timeilə cavab verir",
167
164
  "WAITING_TIME_NOT_FOUND": "Komanda mümkün qədər tez cavab verəcəkdir",
168
165
  "CLOSED": "BAĞLI",
169
- "DIRECT_CHAT":"Birbaşa söhbət",
170
- "GROUP_CHAT":"Qrup söhbəti",
171
166
  "PleaseSelectChatToStartMessaging": "Mesajlaşmaya başlamaq üçün söhbət seçin",
172
167
  "FromThisAreNew": "------------------",
173
168
  "Preview": "Önizləmə",
@@ -268,13 +263,5 @@
268
263
  "First_name_of_agent": "Agentin adı",
269
264
  "EnterCannedResponseTitle": "Hazır cavab başlığını daxil edin",
270
265
  "WriteMsgToSendToYourVisitors": "Ziyarətçilərinizə göndərmək üçün konservləşdirilmiş cavab mesajı yazın",
271
- "EditProfile": "Profilə düzəliş et",
272
- "NAVBAR":{
273
- "SIMULATE_VISITOR":"Ziyarətçini simulyasiya edin",
274
- "PROJECT_SETTINGS":"Layihə parametrləri",
275
- "VIEW_ALL_PROJECTS":"Bütün layihələrə baxın",
276
- "ADD_PROJECT":"Layihə əlavə edin",
277
- "RECENT_PROJECTS":"Son layihələr",
278
- "OTHER_PROJECTS":"Digər layihələr"
279
- }
266
+ "EditProfile": "Profilə düzəliş et"
280
267
  }
@@ -5,8 +5,6 @@
5
5
  "LABEL_AVAILABLE": "erhältlich",
6
6
  "LABEL_NOT_AVAILABLE": "Nicht verfügbar",
7
7
  "LABEL_INACTIVE":"inaktiv",
8
- "LABEL_ONLINE":"online",
9
- "LABEL_OFFLINE":"offline",
10
8
  "LABEL_NO_MSG_HERE": "Hier noch keine Nachricht...",
11
9
  "LABEL_TODAY": "heute",
12
10
  "LABEL_TOMORROW": "gestern",
@@ -46,7 +44,6 @@
46
44
  "LABEL_VIDEO_CHAT": "Videoanruf",
47
45
  "LABEL_LEAVE_GROUP": "Die Gruppe verlassen",
48
46
  "LABEL_CLOSE_GROUP": "Nah dran",
49
- "LABEL_OPEN_INFO_CONVERSATION":"Konversationsdetails öffnen",
50
47
  "ALERT_TITLE": "Aufmerksamkeit!",
51
48
  "CLOSE_ALERT_CONFIRM_LABEL": "OK",
52
49
  "CLOSE_ALERT_CANCEL_LABEL": "ABBRECHEN",
@@ -70,7 +67,7 @@
70
67
  "INFO_SUPPORT_CHAT_CLOSED": "Chat geschlossen",
71
68
  "INFO_SUPPORT_LEAD_UPDATED":"Leitung aktualisiert",
72
69
  "INFO_SUPPORT_MEMBER_LEFT_GROUP":"aus der Gruppe entfernt",
73
- "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"hat die Unterhaltung verlassen",
70
+ "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"verließ das Gespräch",
74
71
  "INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "Ihnen wurde eine neue Support-Anfrage zugewiesen",
75
72
  "LABEL_PROFILE": "Profil",
76
73
  "LABEL_CLOSE": "Abgeschlossen",
@@ -166,8 +163,6 @@
166
163
  "WAITING_TIME_FOUND": "Das Team antwortet normalerweise in $reply_time",
167
164
  "WAITING_TIME_NOT_FOUND": "Das Team wird so schnell wie möglich antworten",
168
165
  "CLOSED": "ABGESCHLOSSEN",
169
- "DIRECT_CHAT":"Direkter Chat",
170
- "GROUP_CHAT":"Gruppenchat",
171
166
  "PleaseSelectChatToStartMessaging": "Bitte wählen Sie einen Chat aus, um die Nachrichtenübermittlung zu starten",
172
167
  "FromThisAreNew": "------------------",
173
168
  "Preview": "Vorschau",
@@ -268,13 +263,5 @@
268
263
  "First_name_of_agent": "Vorname des Betreuers",
269
264
  "EnterCannedResponseTitle": "Titel der Vordefinierten Anfrage eingeben",
270
265
  "WriteMsgToSendToYourVisitors": "Verfassen Sie eine vordefinierte Antwort für Ihre Besucher",
271
- "EditProfile": "Profil bearbeiten",
272
- "NAVBAR":{
273
- "SIMULATE_VISITOR":"Besucher simulieren",
274
- "PROJECT_SETTINGS":"Projekt Einstellungen",
275
- "VIEW_ALL_PROJECTS":"Alle Projekte anzeigen",
276
- "ADD_PROJECT":"Projekt hinzufügen",
277
- "RECENT_PROJECTS":"Letzte Projekte",
278
- "OTHER_PROJECTS":"Weitere Projekte"
279
- }
266
+ "EditProfile": "Profil bearbeiten"
280
267
  }
@@ -5,8 +5,6 @@
5
5
  "LABEL_AVAILABLE": "available",
6
6
  "LABEL_NOT_AVAILABLE": "not available",
7
7
  "LABEL_INACTIVE":"inactive",
8
- "LABEL_ONLINE":"online",
9
- "LABEL_OFFLINE":"offline",
10
8
  "LABEL_NO_MSG_HERE": "Still no message here...",
11
9
  "LABEL_TODAY": "today",
12
10
  "LABEL_TOMORROW": "yesterday",
@@ -46,7 +44,6 @@
46
44
  "LABEL_VIDEO_CHAT": "Video call",
47
45
  "LABEL_LEAVE_GROUP": "Leave the group",
48
46
  "LABEL_CLOSE_GROUP": "Close",
49
- "LABEL_OPEN_INFO_CONVERSATION":"Open conversation details",
50
47
  "ALERT_TITLE": "Attention!",
51
48
  "CLOSE_ALERT_CONFIRM_LABEL": "OK",
52
49
  "CLOSE_ALERT_CANCEL_LABEL": "CANCEL",
@@ -70,7 +67,7 @@
70
67
  "INFO_SUPPORT_CHAT_CLOSED": "Chat closed",
71
68
  "INFO_SUPPORT_LEAD_UPDATED":"Lead updated",
72
69
  "INFO_SUPPORT_MEMBER_LEFT_GROUP":"removed from group",
73
- "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"has left the conversation",
70
+ "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"has left the conversations",
74
71
  "INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "A new support request has been assigned to you",
75
72
  "LABEL_PROFILE": "Profile",
76
73
  "LABEL_CLOSE": "Closed",
@@ -166,8 +163,6 @@
166
163
  "WAITING_TIME_FOUND": "The team typically replies in $reply_time",
167
164
  "WAITING_TIME_NOT_FOUND": "The team will reply as soon as possible",
168
165
  "CLOSED": "CLOSED",
169
- "DIRECT_CHAT":"Direct chat",
170
- "GROUP_CHAT":"Group chat",
171
166
  "PleaseSelectChatToStartMessaging": "Please select a chat to start messaging",
172
167
  "FromThisAreNew": "------------------",
173
168
  "Preview": "Preview",
@@ -268,13 +263,5 @@
268
263
  "First_name_of_agent": "First name of agent",
269
264
  "EnterCannedResponseTitle": "Enter canned response title",
270
265
  "WriteMsgToSendToYourVisitors": "Write a canned response message to send to your visitors",
271
- "EditProfile": "Edit profile",
272
- "NAVBAR":{
273
- "SIMULATE_VISITOR":"Simulate visitor",
274
- "PROJECT_SETTINGS":"Project settings",
275
- "VIEW_ALL_PROJECTS":"View all projects",
276
- "ADD_PROJECT":"Add project",
277
- "RECENT_PROJECTS":"Recent projects",
278
- "OTHER_PROJECTS":"Other projects"
279
- }
266
+ "EditProfile": "Edit profile"
280
267
  }
@@ -5,8 +5,6 @@
5
5
  "LABEL_AVAILABLE": "disponible",
6
6
  "LABEL_NOT_AVAILABLE": "no disponible",
7
7
  "LABEL_INACTIVE":"inactiva",
8
- "LABEL_ONLINE":"en línea",
9
- "LABEL_OFFLINE":"desconectado",
10
8
  "LABEL_NO_MSG_HERE": "Todavía no hay mensajes...",
11
9
  "LABEL_TODAY": "hoy",
12
10
  "LABEL_TOMORROW": "ayer",
@@ -46,7 +44,6 @@
46
44
  "LABEL_VIDEO_CHAT": "Videollamada",
47
45
  "LABEL_LEAVE_GROUP": "Dejar el grupo",
48
46
  "LABEL_CLOSE_GROUP": "Cerrar",
49
- "LABEL_OPEN_INFO_CONVERSATION":"Abrir detalles de la conversación",
50
47
  "ALERT_TITLE": "¡Atención!",
51
48
  "CLOSE_ALERT_CONFIRM_LABEL": "Ok",
52
49
  "CLOSE_ALERT_CANCEL_LABEL": "CANCAR",
@@ -70,7 +67,7 @@
70
67
  "INFO_SUPPORT_CHAT_CLOSED": "Chat cerrado",
71
68
  "INFO_SUPPORT_LEAD_UPDATED":"Cliente potencial actualizado",
72
69
  "INFO_SUPPORT_MEMBER_LEFT_GROUP":"eliminado del grupo",
73
- "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"ha abandonado la conversación",
70
+ "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"abandonó la conversación",
74
71
  "INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU":"Se le ha asignado una nueva solicitud de soporte",
75
72
  "LABEL_PROFILE": "Perfil",
76
73
  "LABEL_CLOSE": "Cerrado",
@@ -166,8 +163,6 @@
166
163
  "WAITING_TIME_FOUND": "El equipo normalmente responde en $reply_time",
167
164
  "WAITING_TIME_NOT_FOUND": "El equipo responderá lo antes posible",
168
165
  "CLOSED": "CERRADO",
169
- "DIRECT_CHAT":"Chat directo",
170
- "GROUP_CHAT":"Grupo de chat",
171
166
  "PleaseSelectChatToStartMessaging": "Por favor, selecciona un chat para empezar a enviar mensajes",
172
167
  "FromThisAreNew": "------------------",
173
168
  "Preview": "Vista previa",
@@ -268,13 +263,5 @@
268
263
  "First_name_of_agent": "Nombre del agente",
269
264
  "EnterCannedResponseTitle": "Introduzca el título de la respuesta predefinida",
270
265
  "WriteMsgToSendToYourVisitors": "Escribe un mensaje de respuesta enlatado para enviar a tus visitantes",
271
- "EditProfile": "Editar perfil",
272
- "NAVBAR":{
273
- "SIMULATE_VISITOR":"Simular visitante",
274
- "PROJECT_SETTINGS":"Configuración del proyecto",
275
- "VIEW_ALL_PROJECTS":"Ver todos los proyectos",
276
- "ADD_PROJECT":"Agregar proyecto",
277
- "RECENT_PROJECTS":"Proyectos recientes",
278
- "OTHER_PROJECTS":"Otros proyectos"
279
- }
266
+ "EditProfile": "Editar perfil"
280
267
  }
@@ -5,8 +5,6 @@
5
5
  "LABEL_AVAILABLE": "disponible",
6
6
  "LABEL_NOT_AVAILABLE": "indisponible",
7
7
  "LABEL_INACTIVE":"inactif",
8
- "LABEL_ONLINE":"en línea",
9
- "LABEL_OFFLINE":"hors ligne",
10
8
  "LABEL_NO_MSG_HERE": "Toujours pas de message ici...",
11
9
  "LABEL_TODAY": "aujourd'hui",
12
10
  "LABEL_TOMORROW": "hier",
@@ -46,7 +44,6 @@
46
44
  "LABEL_VIDEO_CHAT": "Appel vidéo",
47
45
  "LABEL_LEAVE_GROUP": "Quitter le groupe",
48
46
  "LABEL_CLOSE_GROUP": "Fermer",
49
- "LABEL_OPEN_INFO_CONVERSATION":"Ouvrir les détails de la conversation",
50
47
  "ALERT_TITLE": "Attention!",
51
48
  "CLOSE_ALERT_CONFIRM_LABEL": "d'accord",
52
49
  "CLOSE_ALERT_CANCEL_LABEL": "ANNULER",
@@ -166,8 +163,6 @@
166
163
  "WAITING_TIME_FOUND": "L'équipe répond généralement en $reply_time",
167
164
  "WAITING_TIME_NOT_FOUND": "L'équipe vous répondra dans les plus brefs délais",
168
165
  "CLOSED": "FERMÉ",
169
- "DIRECT_CHAT":"Chat direct",
170
- "GROUP_CHAT":"Chat de groupe",
171
166
  "PleaseSelectChatToStartMessaging": "Veuillez sélectionner un chat pour commencer à envoyer des messages",
172
167
  "FromThisAreNew": "------------------",
173
168
  "Preview": "Aperçu",
@@ -268,13 +263,5 @@
268
263
  "First_name_of_agent": "Prénom du mandataire",
269
264
  "EnterCannedResponseTitle": "Saisissez le titre de la réponse standardisée",
270
265
  "WriteMsgToSendToYourVisitors": "Rédigez un message de réponse standardisé à envoyer à vos visiteurs",
271
- "EditProfile": "Editer le profil",
272
- "NAVBAR":{
273
- "SIMULATE_VISITOR":"Simuler un visiteur",
274
- "PROJECT_SETTINGS":"Paramètres du projet",
275
- "VIEW_ALL_PROJECTS":"Voir tous les projets",
276
- "ADD_PROJECT":"Ajouter un projet",
277
- "RECENT_PROJECTS":"Les projets récents",
278
- "OTHER_PROJECTS":"Autres projets"
279
- }
266
+ "EditProfile": "Editer le profil"
280
267
  }
@@ -5,8 +5,6 @@
5
5
  "LABEL_AVAILABLE": "disponibile",
6
6
  "LABEL_NOT_AVAILABLE": "non disponibile",
7
7
  "LABEL_INACTIVE":"inattivo",
8
- "LABEL_ONLINE":"in linea",
9
- "LABEL_OFFLINE":"disconnesso",
10
8
  "LABEL_NO_MSG_HERE": "Ancora nessun messaggio qui...",
11
9
  "LABEL_TODAY": "oggi",
12
10
  "LABEL_TOMORROW": "ieri",
@@ -46,7 +44,6 @@
46
44
  "LABEL_VIDEO_CHAT": "Video chiamata",
47
45
  "LABEL_LEAVE_GROUP": "Abbandona il gruppo",
48
46
  "LABEL_CLOSE_GROUP": "Chiudi",
49
- "LABEL_OPEN_INFO_CONVERSATION":"Apri i dettagli della conversazione",
50
47
  "ALERT_TITLE": "Attenzione!",
51
48
  "CLOSE_ALERT_CONFIRM_LABEL": "OK",
52
49
  "CLOSE_ALERT_CANCEL_LABEL": "ANNULLA",
@@ -166,8 +163,6 @@
166
163
  "WAITING_TIME_FOUND": "Il team tipicamente risponde in $reply_time",
167
164
  "WAITING_TIME_NOT_FOUND": "Vi risponderemo appena possibile",
168
165
  "CLOSED": "CHIUSA",
169
- "DIRECT_CHAT":"Chat diretta",
170
- "GROUP_CHAT":"Chat di gruppo",
171
166
  "PleaseSelectChatToStartMessaging": "Seleziona una chat per iniziare a messaggiare",
172
167
  "FromThisAreNew": "------------------",
173
168
  "Preview": "Anteprima",
@@ -268,13 +263,5 @@
268
263
  "First_name_of_agent": "Nome dell'agente",
269
264
  "EnterCannedResponseTitle": "Inserisci il titolo della risposta predefinita",
270
265
  "WriteMsgToSendToYourVisitors": "Scrivi un messaggio di risposta predefinito da inviare ai tuoi visitatori",
271
- "EditProfile": "Cambia profilo",
272
- "NAVBAR":{
273
- "SIMULATE_VISITOR":"Simula visitatore",
274
- "PROJECT_SETTINGS":"Impostazioni progetto",
275
- "VIEW_ALL_PROJECTS":"Visualizza tutti i progetti",
276
- "ADD_PROJECT":"Aggiungi progetto",
277
- "RECENT_PROJECTS":"Progetti recenti",
278
- "OTHER_PROJECTS":"Altri progetti"
279
- }
266
+ "EditProfile": "Cambia profilo"
280
267
  }
@@ -5,8 +5,6 @@
5
5
  "LABEL_AVAILABLE": "қолжетімді",
6
6
  "LABEL_NOT_AVAILABLE": "жоқ",
7
7
  "LABEL_INACTIVE":"белсенді емес",
8
- "LABEL_ONLINE":"желіде",
9
- "LABEL_OFFLINE":"желіден тыс",
10
8
  "LABEL_NO_MSG_HERE": "Бұл жерде әлі хабар жоқ...",
11
9
  "LABEL_TODAY": "бүгін",
12
10
  "LABEL_TOMORROW": "кеше",
@@ -46,7 +44,6 @@
46
44
  "LABEL_VIDEO_CHAT": "Бейне қоңырау",
47
45
  "LABEL_LEAVE_GROUP": "Топтан шығыңыз",
48
46
  "LABEL_CLOSE_GROUP": "Жабық",
49
- "LABEL_OPEN_INFO_CONVERSATION":"Әңгімелесу мәліметтерін ашыңыз",
50
47
  "ALERT_TITLE": "Назар аударыңыз!",
51
48
  "CLOSE_ALERT_CONFIRM_LABEL": "ЖАРАЙДЫ МА",
52
49
  "CLOSE_ALERT_CANCEL_LABEL": "БАС ТАРТУ",
@@ -70,7 +67,7 @@
70
67
  "INFO_SUPPORT_CHAT_CLOSED": "Чат жабылды",
71
68
  "INFO_SUPPORT_LEAD_UPDATED":"Жетекші жаңартылды",
72
69
  "INFO_SUPPORT_MEMBER_LEFT_GROUP":"топтан шығарылды",
73
- "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"әңгімеден шығып кетті",
70
+ "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"әңгімені тастап кетті",
74
71
  "INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "Сізге жаңа қолдау сұрауы тағайындалды",
75
72
  "LABEL_PROFILE": "Профиль",
76
73
  "LABEL_CLOSE": "Жабық",
@@ -166,8 +163,6 @@
166
163
  "WAITING_TIME_FOUND": "Топ әдетте $reply_time-мен жауап береді",
167
164
  "WAITING_TIME_NOT_FOUND": "Команда мүмкіндігінше тезірек жауап береді",
168
165
  "CLOSED": "ЖАБЫҚ",
169
- "DIRECT_CHAT":"Тікелей чат",
170
- "GROUP_CHAT":"Топтық чат",
171
166
  "PleaseSelectChatToStartMessaging": "Хабар алмасуды бастау үшін чатты таңдаңыз",
172
167
  "FromThisAreNew": "------------------",
173
168
  "Preview": "Алдын ала қарау",
@@ -268,13 +263,5 @@
268
263
  "First_name_of_agent": "Агенттің аты-жөні",
269
264
  "EnterCannedResponseTitle": "Сақталған жауап тақырыбын енгізіңіз",
270
265
  "WriteMsgToSendToYourVisitors": "Келушілеріңізге жіберу үшін консервіленген жауап хабарын жазыңыз",
271
- "EditProfile": "Профильді өңдеу",
272
- "NAVBAR":{
273
- "SIMULATE_VISITOR":"Келушіге ұқсаңыз",
274
- "PROJECT_SETTINGS":"Жоба параметрлері",
275
- "VIEW_ALL_PROJECTS":"Барлық жобаларды көру",
276
- "ADD_PROJECT":"Жоба қосу",
277
- "RECENT_PROJECTS":"Соңғы жобалар",
278
- "OTHER_PROJECTS":"Басқа жобалар"
279
- }
266
+ "EditProfile": "Профильді өңдеу"
280
267
  }
@@ -5,8 +5,6 @@
5
5
  "LABEL_AVAILABLE": "disponível",
6
6
  "LABEL_NOT_AVAILABLE": "não disponível",
7
7
  "LABEL_INACTIVE":"inativo",
8
- "LABEL_ONLINE":"conectados",
9
- "LABEL_OFFLINE":"desligada",
10
8
  "LABEL_NO_MSG_HERE": "Ainda sem mensagem aqui...",
11
9
  "LABEL_TODAY": "hoje",
12
10
  "LABEL_TOMORROW": "ontem",
@@ -46,7 +44,6 @@
46
44
  "LABEL_VIDEO_CHAT": "Videochamada",
47
45
  "LABEL_LEAVE_GROUP": "Sair do grupo",
48
46
  "LABEL_CLOSE_GROUP": "Fechar",
49
- "LABEL_OPEN_INFO_CONVERSATION":"Abrir detalhes da conversa",
50
47
  "ALERT_TITLE": "Atenção!",
51
48
  "CLOSE_ALERT_CONFIRM_LABEL": "OK",
52
49
  "CLOSE_ALERT_CANCEL_LABEL": "CANCELAR",
@@ -70,7 +67,7 @@
70
67
  "INFO_SUPPORT_CHAT_CLOSED": "Bate-papo fechado",
71
68
  "INFO_SUPPORT_LEAD_UPDATED":"Lead atualizado",
72
69
  "INFO_SUPPORT_MEMBER_LEFT_GROUP":"removido do grupo",
73
- "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"deixou a conversa",
70
+ "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"saiu da conversa",
74
71
  "INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "Uma nova solicitação de suporte foi atribuída a você",
75
72
  "LABEL_PROFILE": "Perfil",
76
73
  "LABEL_CLOSE": "Fechadas",
@@ -166,8 +163,6 @@
166
163
  "WAITING_TIME_FOUND": "A equipe normalmente responde em $reply_time",
167
164
  "WAITING_TIME_NOT_FOUND": "A equipe responderá o mais rápido possível",
168
165
  "CLOSED": "FECHADO",
169
- "DIRECT_CHAT":"Bate-papo direto",
170
- "GROUP_CHAT":"Conversa em grupo",
171
166
  "PleaseSelectChatToStartMessaging": "Selecione um bate-papo para começar a enviar mensagens",
172
167
  "FromThisAreNew": "------------------",
173
168
  "Preview": "Visualizar",
@@ -268,13 +263,5 @@
268
263
  "First_name_of_agent": "Nome do agente",
269
264
  "EnterCannedResponseTitle": "Insira o título da resposta predeterminada",
270
265
  "WriteMsgToSendToYourVisitors": "Escreva uma mensagem de resposta pronta para enviar aos seus visitantes",
271
- "EditProfile": "Editar Perfil",
272
- "NAVBAR":{
273
- "SIMULATE_VISITOR":"Simular visitante",
274
- "PROJECT_SETTINGS":"Configurações do projeto",
275
- "VIEW_ALL_PROJECTS":"Ver todos os projetos",
276
- "ADD_PROJECT":"Adicionar projeto",
277
- "RECENT_PROJECTS":"Projetos Recentes",
278
- "OTHER_PROJECTS":"Outros projetos"
279
- }
266
+ "EditProfile": "Editar Perfil"
280
267
  }
@@ -5,8 +5,6 @@
5
5
  "LABEL_AVAILABLE": "имеется в наличии",
6
6
  "LABEL_NOT_AVAILABLE": "недоступно",
7
7
  "LABEL_INACTIVE":"неактивный",
8
- "LABEL_ONLINE":"онлайн",
9
- "LABEL_OFFLINE":"не в сети",
10
8
  "LABEL_NO_MSG_HERE": "До сих пор нет сообщения здесь...",
11
9
  "LABEL_TODAY": "сегодня",
12
10
  "LABEL_TOMORROW": "вчерашний день",
@@ -46,7 +44,6 @@
46
44
  "LABEL_VIDEO_CHAT": "Видеозвонок",
47
45
  "LABEL_LEAVE_GROUP": "Выйти из группы",
48
46
  "LABEL_CLOSE_GROUP": "Закрывать",
49
- "LABEL_OPEN_INFO_CONVERSATION":"Открыть детали беседы",
50
47
  "ALERT_TITLE": "Внимание!",
51
48
  "CLOSE_ALERT_CONFIRM_LABEL": "Ok",
52
49
  "CLOSE_ALERT_CANCEL_LABEL": "ОТМЕНИТЬ",
@@ -166,8 +163,6 @@
166
163
  "WAITING_TIME_FOUND": "Команда обычно отвечает $reply_time",
167
164
  "WAITING_TIME_NOT_FOUND": "Команда ответит как можно скорее",
168
165
  "CLOSED": "ЗАКРЫТО",
169
- "DIRECT_CHAT":"Прямой чат",
170
- "GROUP_CHAT":"Групповой чат",
171
166
  "PleaseSelectChatToStartMessaging": "Пожалуйста, выберите чат, чтобы начать обмен сообщениями",
172
167
  "FromThisAreNew": "------------------",
173
168
  "Preview": "Предварительный просмотр",
@@ -268,13 +263,5 @@
268
263
  "First_name_of_agent": "Имя агента",
269
264
  "EnterCannedResponseTitle": "Введите готовый заголовок ответа",
270
265
  "WriteMsgToSendToYourVisitors": "Напишите готовое ответное сообщение для отправки своим посетителям",
271
- "EditProfile": "Редактировать профиль",
272
- "NAVBAR":{
273
- "SIMULATE_VISITOR":"Имитация посетителя",
274
- "PROJECT_SETTINGS":"Настройки проекта",
275
- "VIEW_ALL_PROJECTS":"Посмотреть все проекты",
276
- "ADD_PROJECT":"Добавить проект",
277
- "RECENT_PROJECTS":"Недавние Проекты",
278
- "OTHER_PROJECTS":"Другие проекты"
279
- }
266
+ "EditProfile": "Редактировать профиль"
280
267
  }