@chat21/chat21-ionic 3.0.79-rc.2 → 3.0.79-rc.3
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/CHANGELOG.md +10 -0
- package/README.md +1 -0
- package/env.sample +1 -0
- package/package.json +1 -1
- package/src/app/app.component.html +7 -1
- package/src/app/app.component.scss +16 -1
- package/src/app/app.component.ts +131 -5
- package/src/app/app.module.ts +3 -1
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +37 -12
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +55 -50
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +24 -0
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +0 -18
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +1 -10
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +1 -22
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +1 -3
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +6 -5
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +3 -82
- package/src/app/components/conversations-list/header-conversations-list/header-conversations-list.component.html +1 -1
- package/src/app/components/navbar/navbar.component.html +103 -0
- package/src/app/components/navbar/navbar.component.scss +249 -0
- package/src/app/components/{conversation-detail/bubble-my-message/bubble-my-message.component.spec.ts → navbar/navbar.component.spec.ts} +6 -6
- package/src/app/components/navbar/navbar.component.ts +189 -0
- package/src/app/components/project-item/project-item.component.ts +11 -1
- package/src/app/pages/conversation-detail/conversation-detail.module.ts +0 -8
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +71 -2
- package/src/app/pages/conversations-list/conversations-list.page.scss +1 -0
- package/src/app/pages/conversations-list/conversations-list.page.ts +51 -22
- package/src/app/pages/create-canned-response/create-canned-response.page.ts +13 -13
- package/src/app/services/canned-responses/canned-responses.service.ts +26 -0
- package/src/app/services/projects/projects.service.spec.ts +12 -0
- package/src/app/services/projects/projects.service.ts +43 -0
- package/src/app/services/tiledesk/tiledesk.service.ts +1 -25
- package/src/app/shared/shared.module.ts +3 -12
- package/src/assets/i18n/ar.json +10 -2
- package/src/assets/i18n/az.json +9 -1
- package/src/assets/i18n/de.json +10 -2
- package/src/assets/i18n/en.json +10 -2
- package/src/assets/i18n/es.json +10 -2
- package/src/assets/i18n/fr.json +9 -1
- package/src/assets/i18n/it.json +9 -1
- package/src/assets/i18n/kk.json +10 -2
- package/src/assets/i18n/pt.json +10 -2
- package/src/assets/i18n/ru.json +9 -1
- package/src/assets/i18n/sr.json +277 -269
- package/src/assets/i18n/sv.json +10 -2
- package/src/assets/i18n/tr.json +10 -2
- package/src/assets/i18n/uk.json +10 -2
- package/src/assets/i18n/uz.json +9 -1
- package/src/chat-config-mqtt-localhost.json +1 -0
- package/src/chat-config-native-mqtt.json +1 -0
- package/src/chat-config-pre.json +2 -1
- package/src/chat-config-template.json +1 -0
- package/src/chat-config.json +1 -0
- package/src/chat21-core/models/conversation.ts +0 -1
- package/src/chat21-core/models/projects.ts +27 -0
- package/src/chat21-core/utils/convertRequestToConversation.ts +41 -0
- package/src/global.scss +1 -13
- package/src/index.html +6 -47
- package/src/variables.scss +5 -2
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.html +0 -3
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.scss +0 -21
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.spec.ts +0 -24
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.ts +0 -14
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.html +0 -54
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.scss +0 -98
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts +0 -84
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.html +0 -30
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.scss +0 -83
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.spec.ts +0 -24
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts +0 -68
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.html +0 -3
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.scss +0 -10
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.spec.ts +0 -24
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.ts +0 -14
|
@@ -252,31 +252,7 @@ export class TiledeskService {
|
|
|
252
252
|
}
|
|
253
253
|
|
|
254
254
|
|
|
255
|
-
|
|
256
|
-
// @ Create - Save (POST) new canned response
|
|
257
|
-
// -------------------------------------------------------------------------------------
|
|
258
|
-
public createCannedResponse(message: string, title: string, project_id: string, token: string) {
|
|
259
|
-
this.logger.log('[TILEDESK-SERVICE] - CREATE CANNED-RES - token', token);
|
|
260
|
-
const url = this.apiUrl + project_id + '/canned/'
|
|
261
|
-
this.logger.log('[TILEDESK-SERVICE] - CREATE CANNED-RES - URL', url);
|
|
262
|
-
|
|
263
|
-
const httpOptions = {
|
|
264
|
-
headers: new HttpHeaders({
|
|
265
|
-
'Content-Type': 'application/json',
|
|
266
|
-
Authorization: token
|
|
267
|
-
})
|
|
268
|
-
};
|
|
269
|
-
|
|
270
|
-
const body = { 'text': message, 'title': title };
|
|
271
|
-
|
|
272
|
-
this.logger.log('[TILEDESK-SERVICE] CREATE CANNED-RES - BODY ', body);
|
|
273
|
-
|
|
274
|
-
return this.http.post(url, JSON.stringify(body), httpOptions).pipe(map((res: any) => {
|
|
275
|
-
this.logger.log('[TILEDESK-SERVICE] - CREATE CANNED-RES - RES ', res);
|
|
276
|
-
return res
|
|
277
|
-
}))
|
|
278
|
-
|
|
279
|
-
}
|
|
255
|
+
|
|
280
256
|
|
|
281
257
|
// .post(url, JSON.stringify(body), options)
|
|
282
258
|
// .map((res) => res.json());
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import { NavbarComponent } from './../components/navbar/navbar.component';
|
|
1
2
|
import { FormsModule } from '@angular/forms';
|
|
2
3
|
import { NgSelectModule } from '@ng-select/ng-select';
|
|
3
4
|
import { NetworkOfflineComponent } from './../components/network-offline/network-offline.component';
|
|
4
5
|
import { ContactsDirectoryComponent } from './../components/contacts-directory/contacts-directory.component';
|
|
5
6
|
import { HtmlComponent } from './../chatlib/conversation-detail/message/html/html.component';
|
|
6
|
-
import { BubbleOthersMessageComponent } from './../components/conversation-detail/bubble-others-message/bubble-others-message.component';
|
|
7
7
|
|
|
8
8
|
import { TextComponent } from '../chatlib/conversation-detail/message/text/text.component';
|
|
9
9
|
import { ReturnReceiptComponent } from '../chatlib/conversation-detail/message/return-receipt/return-receipt.component';
|
|
@@ -33,9 +33,6 @@ import { MarkedPipe } from 'src/app/directives/marked.pipe';
|
|
|
33
33
|
import { AutofocusDirective } from 'src/app/directives/autofocus.directive';
|
|
34
34
|
import { HtmlEntitiesEncodePipe } from 'src/app/directives/html-entities-encode.pipe';
|
|
35
35
|
import { IonConversationDetailComponent } from 'src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component';
|
|
36
|
-
import { BubbleMyMessageComponent } from 'src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component';
|
|
37
|
-
import { BubbleDayMessageComponent } from 'src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component';
|
|
38
|
-
import { BubbleSystemMessageComponent } from 'src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component';
|
|
39
36
|
import { InfoContentComponent } from 'src/app/components/conversation-info/info-content/info-content.component';
|
|
40
37
|
import { InfoSupportGroupComponent } from 'src/app/components/conversation-info/info-support-group/info-support-group.component';
|
|
41
38
|
import { InfoDirectComponent } from 'src/app/components/conversation-info/info-direct/info-direct.component';
|
|
@@ -65,6 +62,7 @@ import { SafeHtmlPipe } from '../directives/safe-html.pipe';
|
|
|
65
62
|
ListConversationsComponent,
|
|
66
63
|
IonListConversationsComponent,
|
|
67
64
|
ImageViewerComponent,
|
|
65
|
+
NavbarComponent,
|
|
68
66
|
SidebarComponent,
|
|
69
67
|
SidebarUserDetailsComponent,
|
|
70
68
|
ProjectItemComponent,
|
|
@@ -82,10 +80,6 @@ import { SafeHtmlPipe } from '../directives/safe-html.pipe';
|
|
|
82
80
|
ReturnReceiptComponent,
|
|
83
81
|
TextComponent,
|
|
84
82
|
HtmlComponent,
|
|
85
|
-
BubbleDayMessageComponent,
|
|
86
|
-
BubbleSystemMessageComponent,
|
|
87
|
-
BubbleMyMessageComponent,
|
|
88
|
-
BubbleOthersMessageComponent,
|
|
89
83
|
InfoContentComponent,
|
|
90
84
|
InfoSupportGroupComponent,
|
|
91
85
|
InfoDirectComponent,
|
|
@@ -104,6 +98,7 @@ import { SafeHtmlPipe } from '../directives/safe-html.pipe';
|
|
|
104
98
|
AvatarProfileComponent,
|
|
105
99
|
HeaderConversationsList,
|
|
106
100
|
ImageViewerComponent,
|
|
101
|
+
NavbarComponent,
|
|
107
102
|
SidebarComponent,
|
|
108
103
|
SidebarUserDetailsComponent,
|
|
109
104
|
ProjectItemComponent,
|
|
@@ -123,10 +118,6 @@ import { SafeHtmlPipe } from '../directives/safe-html.pipe';
|
|
|
123
118
|
InfoMessageComponent,
|
|
124
119
|
ReturnReceiptComponent,
|
|
125
120
|
TextComponent,
|
|
126
|
-
BubbleDayMessageComponent,
|
|
127
|
-
BubbleSystemMessageComponent,
|
|
128
|
-
BubbleMyMessageComponent,
|
|
129
|
-
BubbleOthersMessageComponent,
|
|
130
121
|
InfoContentComponent,
|
|
131
122
|
InfoSupportGroupComponent,
|
|
132
123
|
InfoDirectComponent,
|
package/src/assets/i18n/ar.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"INFO_SUPPORT_CHAT_CLOSED": "الدردشة مغلقة",
|
|
71
71
|
"INFO_SUPPORT_LEAD_UPDATED":"تحديث الرصاص",
|
|
72
72
|
"INFO_SUPPORT_MEMBER_LEFT_GROUP":"تمت إزالته من المجموعة",
|
|
73
|
-
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"
|
|
73
|
+
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"وقد غادر المحادثة",
|
|
74
74
|
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "تم تعيين طلب دعم جديد لك",
|
|
75
75
|
"LABEL_PROFILE": "الملف الشخصي",
|
|
76
76
|
"LABEL_CLOSE": "مغلق",
|
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "الاسم الأول للوكيل",
|
|
269
269
|
"EnterCannedResponseTitle": "أدخل عنوان الرد الجاهز",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "اكتب رسالة رد جاهزة لإرسالها إلى الزائرين",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|
package/src/assets/i18n/az.json
CHANGED
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "Agentin adı",
|
|
269
269
|
"EnterCannedResponseTitle": "Hazır cavab başlığını daxil edin",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "Ziyarətçilərinizə göndərmək üçün konservləşdirilmiş cavab mesajı yazın",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|
package/src/assets/i18n/de.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"INFO_SUPPORT_CHAT_CLOSED": "Chat geschlossen",
|
|
71
71
|
"INFO_SUPPORT_LEAD_UPDATED":"Leitung aktualisiert",
|
|
72
72
|
"INFO_SUPPORT_MEMBER_LEFT_GROUP":"aus der Gruppe entfernt",
|
|
73
|
-
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"
|
|
73
|
+
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"hat die Unterhaltung verlassen",
|
|
74
74
|
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "Ihnen wurde eine neue Support-Anfrage zugewiesen",
|
|
75
75
|
"LABEL_PROFILE": "Profil",
|
|
76
76
|
"LABEL_CLOSE": "Abgeschlossen",
|
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "Vorname des Betreuers",
|
|
269
269
|
"EnterCannedResponseTitle": "Titel der Vordefinierten Anfrage eingeben",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "Verfassen Sie eine vordefinierte Antwort für Ihre Besucher",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"INFO_SUPPORT_CHAT_CLOSED": "Chat closed",
|
|
71
71
|
"INFO_SUPPORT_LEAD_UPDATED":"Lead updated",
|
|
72
72
|
"INFO_SUPPORT_MEMBER_LEFT_GROUP":"removed from group",
|
|
73
|
-
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"has left the
|
|
73
|
+
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"has left the conversation",
|
|
74
74
|
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "A new support request has been assigned to you",
|
|
75
75
|
"LABEL_PROFILE": "Profile",
|
|
76
76
|
"LABEL_CLOSE": "Closed",
|
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "First name of agent",
|
|
269
269
|
"EnterCannedResponseTitle": "Enter canned response title",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "Write a canned response message to send to your visitors",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|
package/src/assets/i18n/es.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"INFO_SUPPORT_CHAT_CLOSED": "Chat cerrado",
|
|
71
71
|
"INFO_SUPPORT_LEAD_UPDATED":"Cliente potencial actualizado",
|
|
72
72
|
"INFO_SUPPORT_MEMBER_LEFT_GROUP":"eliminado del grupo",
|
|
73
|
-
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"
|
|
73
|
+
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"ha abandonado la conversación",
|
|
74
74
|
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU":"Se le ha asignado una nueva solicitud de soporte",
|
|
75
75
|
"LABEL_PROFILE": "Perfil",
|
|
76
76
|
"LABEL_CLOSE": "Cerrado",
|
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "Nombre del agente",
|
|
269
269
|
"EnterCannedResponseTitle": "Introduzca el título de la respuesta predefinida",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "Escribe un mensaje de respuesta enlatado para enviar a tus visitantes",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "Prénom du mandataire",
|
|
269
269
|
"EnterCannedResponseTitle": "Saisissez le titre de la réponse standardisée",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "Rédigez un message de réponse standardisé à envoyer à vos visiteurs",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|
package/src/assets/i18n/it.json
CHANGED
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "Nome dell'agente",
|
|
269
269
|
"EnterCannedResponseTitle": "Inserisci il titolo della risposta predefinita",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "Scrivi un messaggio di risposta predefinito da inviare ai tuoi visitatori",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|
package/src/assets/i18n/kk.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"INFO_SUPPORT_CHAT_CLOSED": "Чат жабылды",
|
|
71
71
|
"INFO_SUPPORT_LEAD_UPDATED":"Жетекші жаңартылды",
|
|
72
72
|
"INFO_SUPPORT_MEMBER_LEFT_GROUP":"топтан шығарылды",
|
|
73
|
-
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"
|
|
73
|
+
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"әңгімеден шығып кетті",
|
|
74
74
|
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "Сізге жаңа қолдау сұрауы тағайындалды",
|
|
75
75
|
"LABEL_PROFILE": "Профиль",
|
|
76
76
|
"LABEL_CLOSE": "Жабық",
|
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "Агенттің аты-жөні",
|
|
269
269
|
"EnterCannedResponseTitle": "Сақталған жауап тақырыбын енгізіңіз",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "Келушілеріңізге жіберу үшін консервіленген жауап хабарын жазыңыз",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|
package/src/assets/i18n/pt.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"INFO_SUPPORT_CHAT_CLOSED": "Bate-papo fechado",
|
|
71
71
|
"INFO_SUPPORT_LEAD_UPDATED":"Lead atualizado",
|
|
72
72
|
"INFO_SUPPORT_MEMBER_LEFT_GROUP":"removido do grupo",
|
|
73
|
-
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"
|
|
73
|
+
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"deixou a conversa",
|
|
74
74
|
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "Uma nova solicitação de suporte foi atribuída a você",
|
|
75
75
|
"LABEL_PROFILE": "Perfil",
|
|
76
76
|
"LABEL_CLOSE": "Fechadas",
|
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "Nome do agente",
|
|
269
269
|
"EnterCannedResponseTitle": "Insira o título da resposta predeterminada",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "Escreva uma mensagem de resposta pronta para enviar aos seus visitantes",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|
package/src/assets/i18n/ru.json
CHANGED
|
@@ -268,5 +268,13 @@
|
|
|
268
268
|
"First_name_of_agent": "Имя агента",
|
|
269
269
|
"EnterCannedResponseTitle": "Введите готовый заголовок ответа",
|
|
270
270
|
"WriteMsgToSendToYourVisitors": "Напишите готовое ответное сообщение для отправки своим посетителям",
|
|
271
|
-
"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
|
+
}
|
|
272
280
|
}
|