@chat21/chat21-ionic 3.0.80 → 3.0.81-rc.2

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