@chat21/chat21-ionic 3.0.60 → 3.0.61-rc2
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 +23 -0
- package/README.md +2 -0
- package/angular.json +2 -0
- package/env.sample +3 -1
- package/package.json +5 -1
- package/src/app/app.component.html +11 -2
- package/src/app/app.component.scss +13 -1
- package/src/app/app.component.ts +26 -3
- package/src/app/app.module.ts +2 -1
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +2 -2
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +24 -1
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +2 -3
- package/src/app/components/conversation-info/info-content/info-content.component.html +2 -2
- package/src/app/components/ddp-header/ddp-header.component.html +14 -7
- package/src/app/components/ddp-header/ddp-header.component.scss +4 -0
- package/src/app/components/ddp-header/ddp-header.component.ts +21 -2
- package/src/app/components/project-item/project-item.component.html +7 -6
- package/src/app/components/project-item/project-item.component.scss +6 -1
- package/src/app/components/project-item/project-item.component.ts +15 -2
- package/src/app/components/sidebar/sidebar.component.html +210 -0
- package/src/app/components/sidebar/sidebar.component.scss +11 -0
- package/src/app/components/sidebar/sidebar.component.spec.ts +24 -0
- package/src/app/components/sidebar/sidebar.component.ts +400 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +102 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +310 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.spec.ts +24 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +423 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +21 -20
- package/src/app/pages/conversations-list/conversations-list.page.html +11 -5
- package/src/app/pages/conversations-list/conversations-list.page.ts +33 -8
- package/src/app/pages/profile-info/profile-info.page.html +2 -2
- package/src/app/pages/profile-info/profile-info.page.ts +23 -21
- package/src/app/shared/shared.module.ts +13 -0
- package/src/assets/i18n/de.json +29 -12
- package/src/assets/i18n/en.json +21 -4
- package/src/assets/i18n/es.json +21 -4
- package/src/assets/i18n/fr.json +21 -4
- package/src/assets/i18n/it.json +21 -4
- package/src/assets/i18n/pt.json +21 -4
- package/src/assets/i18n/ru.json +21 -4
- package/src/assets/i18n/tr.json +23 -5
- package/src/assets/images/language_flag/ar.png +0 -0
- package/src/assets/images/language_flag/bg.png +0 -0
- package/src/assets/images/language_flag/ca.png +0 -0
- package/src/assets/images/language_flag/cs.png +0 -0
- package/src/assets/images/language_flag/da.png +0 -0
- package/src/assets/images/language_flag/de.png +0 -0
- package/src/assets/images/language_flag/el.png +0 -0
- package/src/assets/images/language_flag/en.png +0 -0
- package/src/assets/images/language_flag/es.png +0 -0
- package/src/assets/images/language_flag/fa.png +0 -0
- package/src/assets/images/language_flag/fi.png +0 -0
- package/src/assets/images/language_flag/fr.png +0 -0
- package/src/assets/images/language_flag/he.png +0 -0
- package/src/assets/images/language_flag/hi.png +0 -0
- package/src/assets/images/language_flag/hu.png +0 -0
- package/src/assets/images/language_flag/id.png +0 -0
- package/src/assets/images/language_flag/it.png +0 -0
- package/src/assets/images/language_flag/ja.png +0 -0
- package/src/assets/images/language_flag/ko.png +0 -0
- package/src/assets/images/language_flag/ml-IN.png +0 -0
- package/src/assets/images/language_flag/ne-NP.png +0 -0
- package/src/assets/images/language_flag/nl.png +0 -0
- package/src/assets/images/language_flag/no.png +0 -0
- package/src/assets/images/language_flag/pl.png +0 -0
- package/src/assets/images/language_flag/pt-BR.png +0 -0
- package/src/assets/images/language_flag/pt.png +0 -0
- package/src/assets/images/language_flag/ro.png +0 -0
- package/src/assets/images/language_flag/ru.png +0 -0
- package/src/assets/images/language_flag/sk.png +0 -0
- package/src/assets/images/language_flag/sl.png +0 -0
- package/src/assets/images/language_flag/sv-SE.png +0 -0
- package/src/assets/images/language_flag/ta.png +0 -0
- package/src/assets/images/language_flag/th.png +0 -0
- package/src/assets/images/language_flag/tr.png +0 -0
- package/src/assets/images/language_flag/uk.png +0 -0
- package/src/assets/images/language_flag/vi.png +0 -0
- package/src/assets/images/language_flag/zh-CN.png +0 -0
- package/src/assets/images/language_flag/zh-TW.png +0 -0
- package/src/assets/images/no_image_user.png +0 -0
- package/src/assets/tiledesk-solo-logo.png +0 -0
- package/src/chat-config-pre-test.json +3 -1
- package/src/chat-config-template.json +3 -1
- package/src/chat-config.json +4 -2
- package/src/global.scss +451 -3
- package/src/index.html +7 -0
|
@@ -86,16 +86,18 @@ export class ProfileInfoPage implements OnInit {
|
|
|
86
86
|
private setUser() {
|
|
87
87
|
// width and height NON sono obbligatori
|
|
88
88
|
this.loggedUser = this.chatManager.getCurrentUser();
|
|
89
|
-
this.
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
89
|
+
if (this.loggedUser) {
|
|
90
|
+
this.itemAvatar = {
|
|
91
|
+
imageurl: this.imageRepo.getImagePhotoUrl(this.loggedUser.uid),
|
|
92
|
+
avatar: this.loggedUser.avatar,
|
|
93
|
+
color: this.loggedUser.color,
|
|
94
|
+
online: this.loggedUser.online,
|
|
95
|
+
lastConnection: this.loggedUser.lastConnection,
|
|
96
|
+
status: '',
|
|
97
|
+
width: '100px',
|
|
98
|
+
height: '100px'
|
|
99
|
+
};
|
|
100
|
+
}
|
|
99
101
|
}
|
|
100
102
|
|
|
101
103
|
|
|
@@ -121,10 +123,10 @@ export class ProfileInfoPage implements OnInit {
|
|
|
121
123
|
private setSubscriptions() {
|
|
122
124
|
this.presenceService.userIsOnline(this.loggedUser.uid);
|
|
123
125
|
this.presenceService.lastOnlineForUser(this.loggedUser.uid);
|
|
124
|
-
|
|
125
|
-
|
|
126
|
+
|
|
127
|
+
|
|
126
128
|
const subscribeBSIsOnline = this.presenceService.BSIsOnline.subscribe((data: any) => {
|
|
127
|
-
|
|
129
|
+
this.logger.log('[PROFILE-INFO-PAGE] setSubscriptions $ubscribe to BSIsOnline - data', data);
|
|
128
130
|
if (data) {
|
|
129
131
|
const userId = data.uid;
|
|
130
132
|
const isOnline = data.isOnline;
|
|
@@ -135,7 +137,7 @@ export class ProfileInfoPage implements OnInit {
|
|
|
135
137
|
});
|
|
136
138
|
|
|
137
139
|
const subscribeBSLastOnline = this.presenceService.BSLastOnline.subscribe((data: any) => {
|
|
138
|
-
|
|
140
|
+
this.logger.log('[PROFILE-INFO-PAGE] setSubscriptions $ubscribe to BSLastOnline - data', data);
|
|
139
141
|
if (data) {
|
|
140
142
|
const userId = data.uid;
|
|
141
143
|
const timestamp = data.lastOnline;
|
|
@@ -150,7 +152,7 @@ export class ProfileInfoPage implements OnInit {
|
|
|
150
152
|
|
|
151
153
|
|
|
152
154
|
userIsOnLine = (userId: string, isOnline: boolean) => {
|
|
153
|
-
|
|
155
|
+
this.logger.log('[PROFILE-INFO-PAGE] userIsOnLine - userId ', userId, ' - isOnline ', isOnline);
|
|
154
156
|
this.itemAvatar.online = isOnline;
|
|
155
157
|
if (isOnline) {
|
|
156
158
|
this.itemAvatar.status = this.translationMap.get('LABEL_AVAILABLE');
|
|
@@ -180,9 +182,9 @@ export class ProfileInfoPage implements OnInit {
|
|
|
180
182
|
|
|
181
183
|
/** */
|
|
182
184
|
private unsubescribeAll() {
|
|
183
|
-
|
|
185
|
+
this.logger.log('unsubescribeAll: ', this.subscriptions);
|
|
184
186
|
this.subscriptions.forEach((subscription: any) => {
|
|
185
|
-
|
|
187
|
+
this.logger.log('unsubescribe: ', subscription);
|
|
186
188
|
// this.events.unsubscribe(subscription, null);
|
|
187
189
|
});
|
|
188
190
|
this.subscriptions = [];
|
|
@@ -207,15 +209,15 @@ export class ProfileInfoPage implements OnInit {
|
|
|
207
209
|
}
|
|
208
210
|
|
|
209
211
|
copyLoggedUserUID() {
|
|
210
|
-
var copyText = document.createElement("input");
|
|
212
|
+
var copyText = document.createElement("input");
|
|
211
213
|
copyText.setAttribute("type", "text");
|
|
212
214
|
copyText.setAttribute("value", this.loggedUser.uid);
|
|
213
|
-
|
|
214
|
-
document.body.appendChild(copyText);
|
|
215
|
+
|
|
216
|
+
document.body.appendChild(copyText);
|
|
215
217
|
copyText.select();
|
|
216
218
|
copyText.setSelectionRange(0, 99999); /*For mobile devices*/
|
|
217
219
|
document.execCommand("copy");
|
|
218
|
-
|
|
220
|
+
this.logger.log("Copied the text: " + copyText.value);
|
|
219
221
|
const tootipElem = <HTMLElement>document.querySelector('.chat-tooltip');
|
|
220
222
|
this.renderer.appendChild(tootipElem, this.renderer.createText('Copied!'))
|
|
221
223
|
|
|
@@ -39,8 +39,14 @@ import { TooltipModule, TooltipOptions } from 'ng2-tooltip-directive';
|
|
|
39
39
|
import { OptionHeaderComponent } from '../components/conversation-detail/option-header/option-header.component';
|
|
40
40
|
import { MessageAttachmentComponent } from '../chatlib/conversation-detail/message/message-attachment/message-attachment.component';
|
|
41
41
|
import { ImageViewerComponent } from '../components/image-viewer/image-viewer.component';
|
|
42
|
+
import { SidebarComponent } from '../components/sidebar/sidebar.component';
|
|
43
|
+
import { SidebarUserDetailsComponent } from '../components/sidebar-user-details/sidebar-user-details.component';
|
|
42
44
|
import { ProjectItemComponent } from '../components/project-item/project-item.component';
|
|
43
45
|
import { DefaultTooltipOptions } from 'src/chat21-core/utils/utils';
|
|
46
|
+
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
47
|
+
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
|
48
|
+
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
49
|
+
|
|
44
50
|
// import { MessageTextAreaComponent } from '../components/conversation-detail/message-text-area/message-text-area.component';
|
|
45
51
|
|
|
46
52
|
@NgModule({
|
|
@@ -53,6 +59,8 @@ import { DefaultTooltipOptions } from 'src/chat21-core/utils/utils';
|
|
|
53
59
|
ListConversationsComponent,
|
|
54
60
|
IonListConversationsComponent,
|
|
55
61
|
ImageViewerComponent,
|
|
62
|
+
SidebarComponent,
|
|
63
|
+
SidebarUserDetailsComponent,
|
|
56
64
|
ProjectItemComponent,
|
|
57
65
|
IonConversationDetailComponent,
|
|
58
66
|
ConversationContentComponent,
|
|
@@ -87,6 +95,8 @@ import { DefaultTooltipOptions } from 'src/chat21-core/utils/utils';
|
|
|
87
95
|
AvatarProfileComponent,
|
|
88
96
|
DdpHeaderComponent,
|
|
89
97
|
ImageViewerComponent,
|
|
98
|
+
SidebarComponent,
|
|
99
|
+
SidebarUserDetailsComponent,
|
|
90
100
|
ProjectItemComponent,
|
|
91
101
|
UserPresenceComponent,
|
|
92
102
|
UserTypingComponent,
|
|
@@ -117,6 +127,9 @@ import { DefaultTooltipOptions } from 'src/chat21-core/utils/utils';
|
|
|
117
127
|
|
|
118
128
|
],
|
|
119
129
|
imports: [
|
|
130
|
+
MatTooltipModule,
|
|
131
|
+
MatSlideToggleModule,
|
|
132
|
+
MatSnackBarModule,
|
|
120
133
|
CommonModule,
|
|
121
134
|
IonicModule,
|
|
122
135
|
MomentModule,
|
package/src/assets/i18n/de.json
CHANGED
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"LABEL_LAST_ACCESS": "letzter Zugriff",
|
|
12
12
|
"LABEL_TO": "beim",
|
|
13
13
|
"ARRAY_DAYS": [
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
14
|
+
"Montag",
|
|
15
|
+
"Dienstag",
|
|
16
|
+
"Mittwoch",
|
|
17
|
+
"Donnerstag",
|
|
18
|
+
"Freitag",
|
|
19
|
+
"Samstag",
|
|
20
|
+
"Sonntag"
|
|
21
21
|
],
|
|
22
22
|
"LABEL_SEND": "Senden",
|
|
23
23
|
"ID_CONVERSATION": "ID-Gespräch",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"INFO_SUPPORT_USER_ADDED_MESSAGE": "{{ subject }} {{ verb }} {{ complement }}",
|
|
66
66
|
"INFO_SUPPORT_CHAT_REOPENED": "Chat wieder geöffnet",
|
|
67
67
|
"INFO_SUPPORT_CHAT_CLOSED": "Chat geschlossen",
|
|
68
|
-
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU":"Ihnen wurde eine neue Support-Anfrage zugewiesen",
|
|
68
|
+
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "Ihnen wurde eine neue Support-Anfrage zugewiesen",
|
|
69
69
|
"LABEL_PROFILE": "Profil",
|
|
70
70
|
"LABEL_CLOSE": "Abgeschlossen",
|
|
71
71
|
"LABEL_DISCONNECT": "Trennen",
|
|
@@ -203,7 +203,24 @@
|
|
|
203
203
|
"PINNED_PROJECT": "Gepinntes Projekt",
|
|
204
204
|
"CHANGE_PINNED_PROJECT": "Gepinntes Projekt ändern",
|
|
205
205
|
"CHANGE_TO_AVAILABLE_UNAVAILABLE": "auf verfügbar/nicht verfügbar ändern",
|
|
206
|
-
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "
|
|
207
|
-
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "
|
|
208
|
-
"ALL_CONVS_SERVED":"Wurden alle Gespräche bedient? Gut gemacht!"
|
|
209
|
-
}
|
|
206
|
+
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "Ändern Sie Ihren Status auf verfügbar",
|
|
207
|
+
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "Ändern Sie Ihren Status auf nicht verfügbar",
|
|
208
|
+
"ALL_CONVS_SERVED": "Wurden alle Gespräche bedient? Gut gemacht!",
|
|
209
|
+
"PaydPlanName": "{{projectprofile}}-Plan",
|
|
210
|
+
"PaydPlanNamePro": "Pro-Plan",
|
|
211
|
+
"PaydPlanNameEnterprise": "Enterprise-Plan",
|
|
212
|
+
"ProPlanTrial": "Pro-Plan (Testversion)",
|
|
213
|
+
"FreePlan":"Kostenloser Plan",
|
|
214
|
+
"SubscriptionPaymentProblem": "Problem mit der Zahlung des Abos",
|
|
215
|
+
"ThePlanHasExpired": "Der Plan ist abgelaufen",
|
|
216
|
+
"owner": "Eigentümer",
|
|
217
|
+
"admin": "Administrator",
|
|
218
|
+
"agent": "Agent",
|
|
219
|
+
"Conversations": "Gespräche",
|
|
220
|
+
"Apps":"Anwendungen",
|
|
221
|
+
"Analytics":"Analytik",
|
|
222
|
+
"Activities": "Aktivitäten",
|
|
223
|
+
"History": "Verlauf",
|
|
224
|
+
"Settings": "Einstellungen",
|
|
225
|
+
"Resolve": "Lösen"
|
|
226
|
+
}
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"INFO_SUPPORT_USER_ADDED_MESSAGE": "{{ subject }} {{ verb }} {{ complement }}",
|
|
66
66
|
"INFO_SUPPORT_CHAT_REOPENED": "Chat reopened",
|
|
67
67
|
"INFO_SUPPORT_CHAT_CLOSED": "Chat closed",
|
|
68
|
-
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU":"A new support request has been assigned to you",
|
|
68
|
+
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "A new support request has been assigned to you",
|
|
69
69
|
"LABEL_PROFILE": "Profile",
|
|
70
70
|
"LABEL_CLOSE": "Closed",
|
|
71
71
|
"LABEL_DISCONNECT": "Disconnect",
|
|
@@ -203,7 +203,24 @@
|
|
|
203
203
|
"PINNED_PROJECT": "Pinned project",
|
|
204
204
|
"CHANGE_PINNED_PROJECT": "Change pinned project",
|
|
205
205
|
"CHANGE_TO_AVAILABLE_UNAVAILABLE": "change to available/unavailable",
|
|
206
|
-
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "
|
|
207
|
-
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "
|
|
208
|
-
"ALL_CONVS_SERVED": "Were all conversations served? Good job!"
|
|
206
|
+
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "Change your status to available",
|
|
207
|
+
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "Change your status to unavailable",
|
|
208
|
+
"ALL_CONVS_SERVED": "Were all conversations served? Good job!",
|
|
209
|
+
"PaydPlanName": "{{projectprofile}} Plan",
|
|
210
|
+
"PaydPlanNamePro": "Pro Plan",
|
|
211
|
+
"PaydPlanNameEnterprise": "Enterprise plan",
|
|
212
|
+
"ProPlanTrial": "Pro Plan (trial)",
|
|
213
|
+
"FreePlan":"Free Plan",
|
|
214
|
+
"SubscriptionPaymentProblem": "Subscription payment problem",
|
|
215
|
+
"ThePlanHasExpired": "The plan has expired",
|
|
216
|
+
"owner": "Owner",
|
|
217
|
+
"admin": "Administrator",
|
|
218
|
+
"agent": "Agent",
|
|
219
|
+
"Conversations": "Conversations",
|
|
220
|
+
"Apps":"Apps",
|
|
221
|
+
"Analytics":"Analytics",
|
|
222
|
+
"Activities": "Activities",
|
|
223
|
+
"History": "History",
|
|
224
|
+
"Settings": "Settings",
|
|
225
|
+
"Resolve": "Resolve"
|
|
209
226
|
}
|
package/src/assets/i18n/es.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"LABEL_INFO_USER": "Info usuario",
|
|
109
109
|
"LABEL_IS_WRITING": "escribir",
|
|
110
110
|
"LABEL_VERSION": "versión",
|
|
111
|
-
"LABEL_CONTACTS": "
|
|
111
|
+
"LABEL_CONTACTS": "Contactos",
|
|
112
112
|
"LABEL_PLACEHOLDER": "escribe tu mensaje..",
|
|
113
113
|
"LABEL_START_NW_CONV": "Nueva conversación",
|
|
114
114
|
"LABEL_FIRST_MSG": "Describa en breve su problema, será contactado por un agente.",
|
|
@@ -203,7 +203,24 @@
|
|
|
203
203
|
"PINNED_PROJECT": "Proyecto anclado",
|
|
204
204
|
"CHANGE_PINNED_PROJECT": "Cambiar proyecto anclado",
|
|
205
205
|
"CHANGE_TO_AVAILABLE_UNAVAILABLE": "cambiar a disponible/no disponible",
|
|
206
|
-
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "
|
|
207
|
-
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "
|
|
208
|
-
"ALL_CONVS_SERVED": "Were all conversations served? Good job!"
|
|
206
|
+
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "Cambia tu estado a disponible",
|
|
207
|
+
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "Cambia tu estado a no disponible",
|
|
208
|
+
"ALL_CONVS_SERVED": "Were all conversations served? Good job!",
|
|
209
|
+
"PaydPlanName": "Plan {{projectprofile}}",
|
|
210
|
+
"PaydPlanNamePro": "Plan Pro",
|
|
211
|
+
"PaydPlanNameEnterprise": "Plan Enteprise",
|
|
212
|
+
"ProPlanTrial": "Plan Pro (prueba)",
|
|
213
|
+
"FreePlan":"Plan Gratuito",
|
|
214
|
+
"SubscriptionPaymentProblem": "Problema de pago de suscripción",
|
|
215
|
+
"ThePlanHasExpired": "El plan ha caducado",
|
|
216
|
+
"owner": "Propietario",
|
|
217
|
+
"admin": "Administrador",
|
|
218
|
+
"agent": "Agente",
|
|
219
|
+
"Conversations": "Conversaciones",
|
|
220
|
+
"Apps":"Aplicaciones",
|
|
221
|
+
"Analytics":"Analíticas",
|
|
222
|
+
"Activities": "Actividades",
|
|
223
|
+
"History": "Historial",
|
|
224
|
+
"Settings": "Ajustes",
|
|
225
|
+
"Resolve": "Resolver"
|
|
209
226
|
}
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"LABEL_INFO_USER": "Infos utilisateur",
|
|
109
109
|
"LABEL_IS_WRITING": "dactylographie",
|
|
110
110
|
"LABEL_VERSION": "version",
|
|
111
|
-
"LABEL_CONTACTS": "
|
|
111
|
+
"LABEL_CONTACTS": "Contacts",
|
|
112
112
|
"LABEL_PLACEHOLDER": "tapez votre message..",
|
|
113
113
|
"LABEL_START_NW_CONV": "Nouvelle conversation",
|
|
114
114
|
"LABEL_FIRST_MSG": "Décrivez brièvement votre problème, vous serez contacté par un agent.",
|
|
@@ -203,7 +203,24 @@
|
|
|
203
203
|
"PINNED_PROJECT": "Projet épinglé",
|
|
204
204
|
"CHANGE_PINNED_PROJECT": "Modifier le projet épinglé",
|
|
205
205
|
"CHANGE_TO_AVAILABLE_UNAVAILABLE": "passer à disponible/indisponible",
|
|
206
|
-
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "
|
|
207
|
-
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "
|
|
208
|
-
"ALL_CONVS_SERVED": "Toutes les conversations ont-elles été servies? Bon travail!"
|
|
206
|
+
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "Changez votre statut en disponible",
|
|
207
|
+
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "Changez votre statut en indisponible",
|
|
208
|
+
"ALL_CONVS_SERVED": "Toutes les conversations ont-elles été servies? Bon travail!",
|
|
209
|
+
"PaydPlanName": "{{projectprofile}} Forfait",
|
|
210
|
+
"PaydPlanNamePro": "Plan Pro",
|
|
211
|
+
"PaydPlanNameEnterprise": "Plan Enteprise",
|
|
212
|
+
"ProPlanTrial": "Plan Pro (essai)",
|
|
213
|
+
"FreePlan":"Plan Gratuit",
|
|
214
|
+
"SubscriptionPaymentProblem": "Problème de paiement d'abonnement",
|
|
215
|
+
"ThePlanHasExpired": "Le plan a expiré",
|
|
216
|
+
"owner": "Propriétaire",
|
|
217
|
+
"admin": "Administrateur",
|
|
218
|
+
"agent": "Agent",
|
|
219
|
+
"Conversations": "Conversations",
|
|
220
|
+
"Apps":"Applications",
|
|
221
|
+
"Analytics":"Analytique",
|
|
222
|
+
"Activities": "Activités",
|
|
223
|
+
"History": "Histoire",
|
|
224
|
+
"Settings": "Réglages",
|
|
225
|
+
"Resolve": "Résoudre"
|
|
209
226
|
}
|
package/src/assets/i18n/it.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"LABEL_INFO_USER": "Info utente",
|
|
109
109
|
"LABEL_IS_WRITING": "sta scrivendo...",
|
|
110
110
|
"LABEL_VERSION": "versione",
|
|
111
|
-
"LABEL_CONTACTS": "
|
|
111
|
+
"LABEL_CONTACTS": "Contatti",
|
|
112
112
|
"LABEL_PLACEHOLDER": "Scrivi la tua domanda...",
|
|
113
113
|
"LABEL_START_NW_CONV": "Nuova conversazione",
|
|
114
114
|
"LABEL_FIRST_MSG": "Descrivi sinteticamente il tuo problema, ti metteremo in contatto con un operatore specializzato.",
|
|
@@ -203,7 +203,24 @@
|
|
|
203
203
|
"PINNED_PROJECT": "Progetto fissato",
|
|
204
204
|
"CHANGE_PINNED_PROJECT": "Cambia progetto fissato",
|
|
205
205
|
"CHANGE_TO_AVAILABLE_UNAVAILABLE": "cambia to disponibile/non disponibile",
|
|
206
|
-
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "
|
|
207
|
-
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "
|
|
208
|
-
"ALL_CONVS_SERVED": "Tutte le conversazioni sono servite? Ottimo lavoro!"
|
|
206
|
+
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "Cambia il tuo stato in disponibile",
|
|
207
|
+
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "Cambia il tuo stato in non disponibile",
|
|
208
|
+
"ALL_CONVS_SERVED": "Tutte le conversazioni sono servite? Ottimo lavoro!",
|
|
209
|
+
"PaydPlanName":"Piano {{projectprofile}}",
|
|
210
|
+
"PaydPlanNamePro": "Piano Pro",
|
|
211
|
+
"PaydPlanNameEnterprise": "Piano Enteprise",
|
|
212
|
+
"ProPlanTrial":"Piano Pro (trial)",
|
|
213
|
+
"FreePlan":"Piano Free",
|
|
214
|
+
"SubscriptionPaymentProblem": "Problema rinnovo abbonamento",
|
|
215
|
+
"ThePlanHasExpired":"Il piano è scaduto",
|
|
216
|
+
"owner": "Proprietario",
|
|
217
|
+
"admin": "Amministratore",
|
|
218
|
+
"agent": "Agente",
|
|
219
|
+
"Conversations": "Conversazioni",
|
|
220
|
+
"Apps":"App",
|
|
221
|
+
"Analytics":"Analitica",
|
|
222
|
+
"Activities": "Attività",
|
|
223
|
+
"History": "Cronologia",
|
|
224
|
+
"Settings": "Impostazioni",
|
|
225
|
+
"Resolve": "Risolvi"
|
|
209
226
|
}
|
package/src/assets/i18n/pt.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"LABEL_INFO_USER": "Informações do usuário",
|
|
109
109
|
"LABEL_IS_WRITING": "digitando",
|
|
110
110
|
"LABEL_VERSION": "versão",
|
|
111
|
-
"LABEL_CONTACTS": "
|
|
111
|
+
"LABEL_CONTACTS": "Contatos",
|
|
112
112
|
"LABEL_PLACEHOLDER": "digite sua mensagem..",
|
|
113
113
|
"LABEL_START_NW_CONV": "Nova conversa",
|
|
114
114
|
"LABEL_FIRST_MSG": "Descreva brevemente seu problema, você será contatado por um agente.",
|
|
@@ -203,7 +203,24 @@
|
|
|
203
203
|
"PINNED_PROJECT": "Projeto fixado",
|
|
204
204
|
"CHANGE_PINNED_PROJECT": "Alterar projeto fixado",
|
|
205
205
|
"CHANGE_TO_AVAILABLE_UNAVAILABLE": "alterar para disponível/indisponível",
|
|
206
|
-
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "
|
|
207
|
-
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "
|
|
208
|
-
"ALL_CONVS_SERVED": "Todas as conversas foram atendidas? Bom trabalho!"
|
|
206
|
+
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "Altere seu status para disponível",
|
|
207
|
+
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "Alterar seu status para indisponível",
|
|
208
|
+
"ALL_CONVS_SERVED": "Todas as conversas foram atendidas? Bom trabalho!",
|
|
209
|
+
"PaydPlanName": "{{projectprofile}} Plano",
|
|
210
|
+
"PaydPlanNamePro": "Plano Pro",
|
|
211
|
+
"PaydPlanNameEnterprise": "Plano Enteprise",
|
|
212
|
+
"ProPlanTrial": "Plano Pro (teste)",
|
|
213
|
+
"FreePlan":"Plano Gratuito",
|
|
214
|
+
"SubscriptionPaymentProblem": "Problema no pagamento da assinatura",
|
|
215
|
+
"ThePlanHasExpired": "O plano expirou",
|
|
216
|
+
"owner": "Proprietário",
|
|
217
|
+
"admin": "Administrador",
|
|
218
|
+
"agent": "Agente",
|
|
219
|
+
"Conversations": "Conversas",
|
|
220
|
+
"Apps":"Aplicativos",
|
|
221
|
+
"Analytics":"Análise",
|
|
222
|
+
"Activities": "Atividades",
|
|
223
|
+
"History": "História",
|
|
224
|
+
"Settings": "Configurações",
|
|
225
|
+
"Resolve": "Resolver"
|
|
209
226
|
}
|
package/src/assets/i18n/ru.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"LABEL_INFO_USER": "Информация о пользователе",
|
|
109
109
|
"LABEL_IS_WRITING": "печатание",
|
|
110
110
|
"LABEL_VERSION": "версия",
|
|
111
|
-
"LABEL_CONTACTS": "
|
|
111
|
+
"LABEL_CONTACTS": "Контакты",
|
|
112
112
|
"LABEL_PLACEHOLDER": "введите ваше сообщение..",
|
|
113
113
|
"LABEL_START_NW_CONV": "Новый разговор",
|
|
114
114
|
"LABEL_FIRST_MSG": "Кратко опишите вашу проблему, с вами свяжется агент.",
|
|
@@ -203,7 +203,24 @@
|
|
|
203
203
|
"PINNED_PROJECT": "Закрепленный проект",
|
|
204
204
|
"CHANGE_PINNED_PROJECT": "Изменить закрепленный проект",
|
|
205
205
|
"CHANGE_TO_AVAILABLE_UNAVAILABLE": "изменить на доступный/недоступный",
|
|
206
|
-
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "
|
|
207
|
-
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "
|
|
208
|
-
"ALL_CONVS_SERVED": "Все разговоры были обслужены? Отличная работа!"
|
|
206
|
+
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "Измените свой статус на доступный",
|
|
207
|
+
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "Измените свой статус на недоступный",
|
|
208
|
+
"ALL_CONVS_SERVED": "Все разговоры были обслужены? Отличная работа!",
|
|
209
|
+
"PaydPlanName": "{{projectprofile}} План",
|
|
210
|
+
"ProPlanTrial": "Профессиональный план (пробная версия)",
|
|
211
|
+
"PaydPlanNamePro": "Про План",
|
|
212
|
+
"PaydPlanNameEnterprise": "План Предприятия",
|
|
213
|
+
"FreePlan":"Бесплатный план",
|
|
214
|
+
"SubscriptionPaymentProblem": "Проблема с оплатой подписки",
|
|
215
|
+
"ThePlanHasExpired": "Срок действия плана истек",
|
|
216
|
+
"owner": "Владелец",
|
|
217
|
+
"admin": "Администратор",
|
|
218
|
+
"agent": "Агент",
|
|
219
|
+
"Conversations": "Разговоры",
|
|
220
|
+
"Apps":"Приложения",
|
|
221
|
+
"Analytics":"Аналитика",
|
|
222
|
+
"Activities": "Виды деятельности",
|
|
223
|
+
"History": "История",
|
|
224
|
+
"Settings": "Настройки",
|
|
225
|
+
"Resolve": "Pазрешить"
|
|
209
226
|
}
|
package/src/assets/i18n/tr.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"LABEL_INFO_USER": "Kullanıcısı bilgi",
|
|
109
109
|
"LABEL_IS_WRITING": "yazıyor",
|
|
110
110
|
"LABEL_VERSION": "versiyon",
|
|
111
|
-
"LABEL_CONTACTS": "
|
|
111
|
+
"LABEL_CONTACTS": "Kişiler",
|
|
112
112
|
"LABEL_PLACEHOLDER": "mesajını yaz..",
|
|
113
113
|
"LABEL_START_NW_CONV": "Yeni görüşme",
|
|
114
114
|
"LABEL_FIRST_MSG": "Sorununuzu kısaca açıklayın, bir temsilci sizinle iletişime geçecektir.",
|
|
@@ -203,7 +203,25 @@
|
|
|
203
203
|
"PINNED_PROJECT": "Sabitlenmiş proje",
|
|
204
204
|
"CHANGE_PINNED_PROJECT": "Sabitlenmiş projeyi değiştir",
|
|
205
205
|
"CHANGE_TO_AVAILABLE_UNAVAILABLE": "mevcut/kullanılamaz olarak değiştirin",
|
|
206
|
-
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "
|
|
207
|
-
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "
|
|
208
|
-
"ALL_CONVS_SERVED": "Tüm konuşmalar servis edildi mi? İyi iş!"
|
|
209
|
-
}
|
|
206
|
+
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "Durumunuzu müsait olarak değiştirin",
|
|
207
|
+
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "Durumunuzu kullanılamaz olarak değiştirin",
|
|
208
|
+
"ALL_CONVS_SERVED": "Tüm konuşmalar servis edildi mi? İyi iş!",
|
|
209
|
+
"PaydPlanName": "{{projectprofile}} Planı",
|
|
210
|
+
"PaydPlanNamePro": "Pro Planı",
|
|
211
|
+
"PaydPlanNameEnterprise": "Enteprise Planı",
|
|
212
|
+
"ProPlanTrial": "Pro Plan (deneme)",
|
|
213
|
+
"FreePlan":"Ücretsiz Plan",
|
|
214
|
+
"SubscriptionPaymentProblem": "Abonelik ödeme sorunu",
|
|
215
|
+
"ThePlanHasExpired": "Planın süresi doldu",
|
|
216
|
+
"owner": "Sahip",
|
|
217
|
+
"admin": "Yönetici",
|
|
218
|
+
"agent": "Ajan",
|
|
219
|
+
"Conversations": "Konuşmalar",
|
|
220
|
+
"Apps":"Uygulamalar",
|
|
221
|
+
"Analytics":"Analitik",
|
|
222
|
+
"Activities": "Faaliyetler",
|
|
223
|
+
"History": "Tarih",
|
|
224
|
+
"Settings": "Ayarlar",
|
|
225
|
+
"Resolve": "Çözmek"
|
|
226
|
+
}
|
|
227
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"t2y12PruGU9wUtEGzBJfolMIgK": "CAR:T",
|
|
2
|
+
"t2y12PruGU9wUtEGzBJfolMIgK": "CAR:T-PAY:T-ANA:T-ACT:T-APP:T",
|
|
3
3
|
"chatEngine": "firebase",
|
|
4
4
|
"uploadEngine": "firebase",
|
|
5
5
|
"pushEngine": "firebase",
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
"fileUploadAccept":"*/*",
|
|
8
8
|
"authPersistence": "LOCAL",
|
|
9
9
|
"supportMode": true,
|
|
10
|
+
"teammatesButton": true,
|
|
11
|
+
"archivedButton": true,
|
|
10
12
|
"firebaseConfig": {
|
|
11
13
|
"tenant": "tilechat",
|
|
12
14
|
"apiKey": "AIzaSyCoWXHNvP1-qOllCpTshhC6VjPXeRTK0T4",
|
|
@@ -27,5 +27,7 @@
|
|
|
27
27
|
"dashboardUrl": "${DASHBOARD_URL}",
|
|
28
28
|
"wsUrl": "${WS_URL}",
|
|
29
29
|
"wsUrlRel": "${WS_URL_RELATIVE}",
|
|
30
|
-
"supportMode": "${SUPPORT_MODE}"
|
|
30
|
+
"supportMode": "${SUPPORT_MODE}",
|
|
31
|
+
"teammatesButton": "${TEAMMATES_BUTTON}",
|
|
32
|
+
"archivedButton": "${ARCHIVED_BUTTON}"
|
|
31
33
|
}
|
package/src/chat-config.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"t2y12PruGU9wUtEGzBJfolMIgK":
|
|
2
|
+
"t2y12PruGU9wUtEGzBJfolMIgK":"${FEATURES_TOKEN}",
|
|
3
3
|
"chatEngine": "mqtt",
|
|
4
4
|
"updloaEngine": "native",
|
|
5
5
|
"pushEngine":"none",
|
|
@@ -27,5 +27,7 @@
|
|
|
27
27
|
"dashboardUrl": "https://support-pre.tiledesk.com/dashboard/",
|
|
28
28
|
"wsUrl": "ws://localhost:3000/",
|
|
29
29
|
"wsUrlRel": "${WS_URL_RELATIVE}",
|
|
30
|
-
"supportMode": false
|
|
30
|
+
"supportMode": false,
|
|
31
|
+
"teammatesButton": false,
|
|
32
|
+
"archivedButton": false
|
|
31
33
|
}
|