@chat21/chat21-ionic 3.0.61-rc5 → 3.0.61
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 +90 -0
- package/README.md +6 -0
- package/angular.json +2 -0
- package/config.xml +4 -5
- package/deploy_pre.sh +10 -10
- package/deploy_prod.sh +4 -0
- package/env.sample +1 -1
- package/package.json +8 -8
- package/resources/{Android → android}/icon/drawable-hdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-ldpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-mdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-xhdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-xxhdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-xxxhdpi-icon.png +0 -0
- package/resources/{Android → android}/icon.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-hdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-ldpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-mdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-xhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-hdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-ldpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-mdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-xhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash.png +0 -0
- package/src/app/app-routing.module.ts +15 -0
- package/src/app/app.component.html +2 -2
- package/src/app/app.component.scss +2 -1
- package/src/app/app.component.ts +34 -20
- package/src/app/app.module.ts +11 -3
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +36 -25
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +160 -50
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +108 -18
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +21 -36
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +19 -7
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +35 -40
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +1 -1
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +78 -15
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.ts +13 -10
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +11 -4
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +3 -1
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +142 -71
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +59 -22
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +32 -9
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +107 -23
- package/src/app/components/ddp-header/ddp-header.component.html +9 -2
- package/src/app/components/ddp-header/ddp-header.component.ts +93 -18
- package/src/app/components/project-item/project-item.component.html +1 -1
- package/src/app/components/project-item/project-item.component.scss +1 -1
- package/src/app/components/project-item/project-item.component.ts +3 -3
- package/src/app/components/sidebar/sidebar.component.html +151 -86
- package/src/app/components/sidebar/sidebar.component.scss +60 -3
- package/src/app/components/sidebar/sidebar.component.ts +173 -47
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +26 -7
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +44 -19
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +109 -35
- package/src/app/pages/conversation-detail/conversation-detail.module.ts +5 -1
- package/src/app/pages/conversation-detail/conversation-detail.page.html +19 -9
- package/src/app/pages/conversation-detail/conversation-detail.page.scss +28 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +1124 -778
- package/src/app/pages/conversations-list/conversations-list.page.html +3 -1
- package/src/app/pages/conversations-list/conversations-list.page.ts +647 -445
- package/src/app/pages/create-canned-response/create-canned-response-routing.module.ts +17 -0
- package/src/app/pages/create-canned-response/create-canned-response.module.ts +30 -0
- package/src/app/pages/create-canned-response/create-canned-response.page.html +150 -0
- package/src/app/pages/create-canned-response/create-canned-response.page.scss +55 -0
- package/src/app/pages/create-canned-response/create-canned-response.page.spec.ts +24 -0
- package/src/app/pages/create-canned-response/create-canned-response.page.ts +319 -0
- package/src/app/pages/create-requester/create-requester-routing.module.ts +17 -0
- package/src/app/pages/create-requester/create-requester.module.ts +28 -0
- package/src/app/pages/create-requester/create-requester.page.html +67 -0
- package/src/app/pages/create-requester/create-requester.page.scss +30 -0
- package/src/app/pages/create-requester/create-requester.page.spec.ts +24 -0
- package/src/app/pages/create-requester/create-requester.page.ts +138 -0
- package/src/app/pages/create-ticket/create-ticket-routing.module.ts +17 -0
- package/src/app/pages/create-ticket/create-ticket.module.ts +28 -0
- package/src/app/pages/create-ticket/create-ticket.page.html +171 -0
- package/src/app/pages/create-ticket/create-ticket.page.scss +52 -0
- package/src/app/pages/create-ticket/create-ticket.page.spec.ts +24 -0
- package/src/app/pages/create-ticket/create-ticket.page.ts +432 -0
- package/src/app/pages/loader-preview/loader-preview.page.ts +226 -166
- package/src/app/pages/profile-info/profile-info.page.html +2 -2
- package/src/app/pages/profile-info/profile-info.page.scss +13 -2
- package/src/app/services/tiledesk/tiledesk.service.ts +209 -0
- package/src/app/shared/shared.module.ts +1 -1
- package/src/assets/i18n/de.json +45 -7
- package/src/assets/i18n/en.json +41 -3
- package/src/assets/i18n/es.json +41 -3
- package/src/assets/i18n/fr.json +44 -6
- package/src/assets/i18n/it.json +41 -3
- package/src/assets/i18n/pt.json +41 -3
- package/src/assets/i18n/ru.json +42 -4
- package/src/assets/i18n/sr.json +265 -0
- package/src/assets/i18n/tr.json +41 -4
- package/src/assets/images/default-avatar-x-select.png +0 -0
- package/src/assets/images/priority_icons/high.svg +3 -0
- package/src/assets/images/priority_icons/high_v2.svg +14 -0
- package/src/assets/images/priority_icons/low.svg +10 -0
- package/src/assets/images/priority_icons/low_v2.svg +14 -0
- package/src/assets/images/priority_icons/medium.svg +16 -0
- package/src/assets/images/priority_icons/medium_v2.svg +11 -0
- package/src/assets/images/priority_icons/urgent.svg +4 -0
- package/src/assets/images/priority_icons/urgent_v2.svg +16 -0
- package/src/chat-config-mqtt.json +25 -16
- package/src/chat-config-template.json +5 -4
- package/src/chat-config.json +1 -0
- package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +8 -3
- package/src/chat21-core/utils/constants.ts +6 -1
- package/src/chat21-core/utils/utils-message.ts +19 -0
- package/src/global.scss +65 -76
- package/publish_pre.sh +0 -33
- package/publish_prod.sh +0 -33
|
@@ -91,9 +91,218 @@ export class TiledeskService {
|
|
|
91
91
|
}))
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
|
|
95
|
+
public getProjectById( token: string , id: string) {
|
|
96
|
+
const url = this.apiUrl + 'projects/' + id;
|
|
97
|
+
this.logger.log('[TILEDESK-SERVICE] - GET PROJECT BY ID URL', url);
|
|
98
|
+
|
|
99
|
+
const httpOptions = {
|
|
100
|
+
headers: new HttpHeaders({
|
|
101
|
+
'Content-Type': 'application/json',
|
|
102
|
+
Authorization: token
|
|
103
|
+
})
|
|
104
|
+
};
|
|
105
|
+
return this.http
|
|
106
|
+
.get(url, httpOptions)
|
|
107
|
+
.pipe(map((res: any) => {
|
|
108
|
+
this.logger.log('[TILEDESK-SERVICE] GET PROJECT BY ID URL - RES ', res);
|
|
109
|
+
return res
|
|
110
|
+
}))
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
public getProjectUsersByProjectId(project_id: string, token: string) {
|
|
115
|
+
const url = this.apiUrl + project_id + '/project_users/';
|
|
116
|
+
this.logger.log('[TILEDESK-SERVICE] - GET PROJECT-USER URL', url);
|
|
117
|
+
|
|
118
|
+
const httpOptions = {
|
|
119
|
+
headers: new HttpHeaders({
|
|
120
|
+
'Content-Type': 'application/json',
|
|
121
|
+
Authorization: token
|
|
122
|
+
})
|
|
123
|
+
};
|
|
124
|
+
return this.http
|
|
125
|
+
.get(url, httpOptions)
|
|
126
|
+
.pipe(map((res: any) => {
|
|
127
|
+
this.logger.log('[TILEDESK-SERVICE] - GET PROJECT-USER RES ', res);
|
|
128
|
+
return res
|
|
129
|
+
}))
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
public getAllLeadsActiveWithLimit(project_id: string, token: string, limit: number) {
|
|
133
|
+
const url = this.apiUrl + project_id + '/leads?limit=' + limit + '&with_fullname=true';
|
|
134
|
+
this.logger.log('[TILEDESK-SERVICE] - GET ALL ACTIVE LEADS (LIMIT 10000) - URL', url);
|
|
135
|
+
|
|
136
|
+
const httpOptions = {
|
|
137
|
+
headers: new HttpHeaders({
|
|
138
|
+
'Content-Type': 'application/json',
|
|
139
|
+
Authorization: token
|
|
140
|
+
})
|
|
141
|
+
};
|
|
142
|
+
return this.http
|
|
143
|
+
.get(url, httpOptions)
|
|
144
|
+
.pipe(map((res: any) => {
|
|
145
|
+
this.logger.log('[TILEDESK-SERVICE] - GET ALL ACTIVE LEADS (LIMIT 10000) ', res);
|
|
146
|
+
return res
|
|
147
|
+
}))
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
// ---------------------------------------------
|
|
152
|
+
// @ Create new project user to get new lead ID
|
|
153
|
+
// ---------------------------------------------
|
|
154
|
+
public createNewProjectUserToGetNewLeadID(project_id: string, token: string) {
|
|
155
|
+
const url = this.apiUrl + project_id + '/project_users/'
|
|
156
|
+
this.logger.log('[TILEDESK-SERVICE] - CREATE NEW PROJECT USER TO GET NEW LEAD ID url ', url);
|
|
157
|
+
const httpOptions = {
|
|
158
|
+
headers: new HttpHeaders({
|
|
159
|
+
'Content-Type': 'application/json',
|
|
160
|
+
Authorization: token
|
|
161
|
+
})
|
|
162
|
+
};
|
|
163
|
+
const body = {};
|
|
164
|
+
return this.http
|
|
165
|
+
.post(url, body, httpOptions)
|
|
166
|
+
.pipe(map((res: any) => {
|
|
167
|
+
this.logger.log('[TILEDESK-SERVICE] - CREATE NEW PROJECT USER TO GET NEW LEAD ID url ', res);
|
|
168
|
+
return res
|
|
169
|
+
}))
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
// ---------------------------------------------
|
|
173
|
+
// @ Create new lead
|
|
174
|
+
// ---------------------------------------------
|
|
175
|
+
public createNewLead(leadid: string, fullname: string, leademail: string, project_id: string, token: string) {
|
|
176
|
+
const url = this.apiUrl + project_id + '/leads/'
|
|
177
|
+
this.logger.log('[TILEDESK-SERVICE] - CREATE NEW LEAD url ', url);
|
|
178
|
+
|
|
179
|
+
const httpOptions = {
|
|
180
|
+
headers: new HttpHeaders({
|
|
181
|
+
'Content-Type': 'application/json',
|
|
182
|
+
Authorization: token
|
|
183
|
+
})
|
|
184
|
+
};
|
|
185
|
+
|
|
186
|
+
const body = { 'lead_id': leadid, 'fullname': fullname, 'email': leademail };
|
|
187
|
+
this.logger.log('[TILEDESK-SERVICE] - CREATE NEW LEAD ', body);
|
|
188
|
+
|
|
189
|
+
return this.http
|
|
190
|
+
.post(url, body, httpOptions)
|
|
191
|
+
.pipe(map((res: any) => {
|
|
192
|
+
this.logger.log('[TILEDESK-SERVICE] - CREATE NEW LEAD RES ', res);
|
|
193
|
+
return res
|
|
194
|
+
}))
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
// -------------------------------------------------------------------------------------
|
|
198
|
+
// @ Get all bots of the project (with all=true the response return also the identity bot)
|
|
199
|
+
// -------------------------------------------------------------------------------------
|
|
200
|
+
public getAllBotByProjectId(project_id: string, token: string) {
|
|
201
|
+
|
|
202
|
+
const url = this.apiUrl + project_id + '/faq_kb?all=true'
|
|
203
|
+
this.logger.log('[TILEDESK-SERVICE] - GET ALL BOTS BY PROJECT ID - URL', url);
|
|
204
|
+
|
|
205
|
+
const httpOptions = {
|
|
206
|
+
headers: new HttpHeaders({
|
|
207
|
+
'Content-Type': 'application/json',
|
|
208
|
+
Authorization: token
|
|
209
|
+
})
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
return this.http
|
|
213
|
+
.get(url, httpOptions)
|
|
214
|
+
.pipe(map((res: any) => {
|
|
215
|
+
this.logger.log('[TILEDESK-SERVICE] - GET ALL BOTS BY PROJECT ID - RES ', res);
|
|
216
|
+
return res
|
|
217
|
+
}))
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
// -------------------------------------------------------------------------------------
|
|
221
|
+
// @ Get all DEPTS of the project
|
|
222
|
+
// -------------------------------------------------------------------------------------
|
|
223
|
+
public getDeptsByProjectId(project_id: string, token: string) {
|
|
224
|
+
|
|
225
|
+
const url = this.apiUrl + project_id + '/departments/allstatus';
|
|
226
|
+
this.logger.log('[TILEDESK-SERVICE] - GET DEPTS (ALL STATUS) - URL', url);
|
|
227
|
+
|
|
228
|
+
const httpOptions = {
|
|
229
|
+
headers: new HttpHeaders({
|
|
230
|
+
'Content-Type': 'application/json',
|
|
231
|
+
Authorization: token
|
|
232
|
+
})
|
|
233
|
+
};
|
|
234
|
+
|
|
235
|
+
return this.http
|
|
236
|
+
.get(url, httpOptions)
|
|
237
|
+
.pipe(map((res: any) => {
|
|
238
|
+
this.logger.log('[TILEDESK-SERVICE] - GET DEPTS (ALL STATUS) - RES ', res);
|
|
239
|
+
return res
|
|
240
|
+
}))
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
// -----------------------------------------------------------------------------------------
|
|
244
|
+
// @ Create ticket
|
|
245
|
+
// -----------------------------------------------------------------------------------------
|
|
246
|
+
createInternalRequest(requester_id: string, request_id: string, subject: string, message: string, departmentid: string, participantid: string, ticketpriority: string, project_id: string, token: string) {
|
|
247
|
+
|
|
248
|
+
const url = this.apiUrl + project_id + '/requests/' + request_id + '/messages'
|
|
249
|
+
this.logger.log('[WS-REQUESTS-SERV] - CREATE INTERNAL REQUEST URL ', url)
|
|
250
|
+
|
|
251
|
+
const httpOptions = {
|
|
252
|
+
headers: new HttpHeaders({
|
|
253
|
+
'Content-Type': 'application/json',
|
|
254
|
+
Authorization: token
|
|
255
|
+
})
|
|
256
|
+
};
|
|
257
|
+
// this.logger.log('JOIN FUNCT OPTIONS ', options);
|
|
258
|
+
let body = {}
|
|
259
|
+
body = { 'sender': requester_id, 'subject': subject, 'text': message, 'departmentid': departmentid, 'channel': { 'name': 'form' }, 'priority': ticketpriority };
|
|
260
|
+
if (participantid !== undefined) {
|
|
261
|
+
body['participants'] = [participantid]
|
|
262
|
+
} else {
|
|
263
|
+
body['participants'] = participantid
|
|
264
|
+
}
|
|
265
|
+
// , 'participants': [participantid]
|
|
266
|
+
|
|
267
|
+
this.logger.log('[WS-REQUESTS-SERV] - CREATE INTERNAL REQUEST body ', body);
|
|
268
|
+
return this.http
|
|
269
|
+
.post(url, body, httpOptions)
|
|
270
|
+
.pipe(map((res: any) => {
|
|
271
|
+
this.logger.log('[TILEDESK-SERVICE] - CREATE NEW LEAD RES ', res);
|
|
272
|
+
return res
|
|
273
|
+
}))
|
|
274
|
+
}
|
|
94
275
|
|
|
95
276
|
|
|
277
|
+
// -------------------------------------------------------------------------------------
|
|
278
|
+
// @ Create - Save (POST) new canned response
|
|
279
|
+
// -------------------------------------------------------------------------------------
|
|
280
|
+
public createCannedResponse(message: string, title: string, project_id: string, token: string) {
|
|
281
|
+
this.logger.log('[TILEDESK-SERVICE] - CREATE CANNED-RES - token', token);
|
|
282
|
+
const url = this.apiUrl + project_id + '/canned/'
|
|
283
|
+
this.logger.log('[TILEDESK-SERVICE] - CREATE CANNED-RES - URL', url);
|
|
284
|
+
|
|
285
|
+
const httpOptions = {
|
|
286
|
+
headers: new HttpHeaders({
|
|
287
|
+
'Content-Type': 'application/json',
|
|
288
|
+
Authorization: token
|
|
289
|
+
})
|
|
290
|
+
};
|
|
96
291
|
|
|
292
|
+
const body = { 'text': message, 'title': title };
|
|
293
|
+
|
|
294
|
+
this.logger.log('[TILEDESK-SERVICE] CREATE CANNED-RES - BODY ', body);
|
|
295
|
+
|
|
296
|
+
return this.http
|
|
297
|
+
.post(url, JSON.stringify(body), httpOptions)
|
|
298
|
+
.pipe(map((res: any) => {
|
|
299
|
+
this.logger.log('[TILEDESK-SERVICE] - CREATE CANNED-RES - RES ', res);
|
|
300
|
+
return res
|
|
301
|
+
}))
|
|
302
|
+
|
|
303
|
+
}
|
|
97
304
|
|
|
305
|
+
// .post(url, JSON.stringify(body), options)
|
|
306
|
+
// .map((res) => res.json());
|
|
98
307
|
|
|
99
308
|
}
|
|
@@ -47,7 +47,7 @@ import { MatTooltipModule } from '@angular/material/tooltip';
|
|
|
47
47
|
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
|
48
48
|
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
49
49
|
|
|
50
|
-
// import { MessageTextAreaComponent } from '../components/conversation-detail/message-text-area/message-text-area.component';
|
|
50
|
+
// import { MessageTextAreaComponent } from '../components/conversation-detail/message-text-area/message-text-area.component'; // MessageTextAreaComponent is part of the declarations ConversationDetailPageModule
|
|
51
51
|
|
|
52
52
|
@NgModule({
|
|
53
53
|
declarations: [
|
package/src/assets/i18n/de.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"LABEL_VIDEO_CHAT": "Videoanruf",
|
|
45
45
|
"LABEL_LEAVE_GROUP": "Die Gruppe verlassen",
|
|
46
46
|
"LABEL_CLOSE_GROUP": "Nah dran",
|
|
47
|
-
"ALERT_TITLE": "
|
|
47
|
+
"ALERT_TITLE": "Aufmerksamkeit!",
|
|
48
48
|
"CLOSE_ALERT_CONFIRM_LABEL": "OK",
|
|
49
49
|
"CLOSE_ALERT_CANCEL_LABEL": "ABBRECHEN",
|
|
50
50
|
"LEAVE_ALERT_MSG": "Die Gruppe verlassen?",
|
|
@@ -210,18 +210,56 @@
|
|
|
210
210
|
"PaydPlanNamePro": "Pro-Plan",
|
|
211
211
|
"PaydPlanNameEnterprise": "Enterprise-Plan",
|
|
212
212
|
"ProPlanTrial": "Pro-Plan (Testversion)",
|
|
213
|
-
"FreePlan":"Kostenloser Plan",
|
|
213
|
+
"FreePlan": "Kostenloser Plan",
|
|
214
214
|
"SubscriptionPaymentProblem": "Problem mit der Zahlung des Abos",
|
|
215
215
|
"ThePlanHasExpired": "Der Plan ist abgelaufen",
|
|
216
216
|
"owner": "Eigentümer",
|
|
217
|
-
|
|
218
|
-
|
|
217
|
+
"admin": "Administrator",
|
|
218
|
+
"agent": "Agent",
|
|
219
219
|
"Conversations": "Gespräche",
|
|
220
|
-
"Apps":"Anwendungen",
|
|
221
|
-
"Analytics":"Analytik",
|
|
220
|
+
"Apps": "Anwendungen",
|
|
221
|
+
"Analytics": "Analytik",
|
|
222
222
|
"Activities": "Aktivitäten",
|
|
223
223
|
"History": "Verlauf",
|
|
224
224
|
"Settings": "Einstellungen",
|
|
225
225
|
"Resolve": "Lösen",
|
|
226
|
-
"Archive": "Archivieren"
|
|
226
|
+
"Archive": "Archivieren",
|
|
227
|
+
"ActionNotAllowed": "Aktion nicht erlaubt",
|
|
228
|
+
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Sie gehören nicht mehr zu den Teamkollegen, die diese Unterhaltung führen",
|
|
229
|
+
"TicketSuccessfullyCreated": "Ticket erfolgreich erstellt",
|
|
230
|
+
"Continue":"Fortsetzen",
|
|
231
|
+
"ViewArchivedConversations":"Archivierte Gespräche",
|
|
232
|
+
"ViewContactsList":"Kontaktliste",
|
|
233
|
+
"AddAsCannedResponse":"Als Standardantwort hinzufügen",
|
|
234
|
+
"AddNewCannedResponse":"Fügen Sie eine neue Standardantwort hinzu",
|
|
235
|
+
"TitleIsRequired":"Titel ist erforderlich",
|
|
236
|
+
"MessageIsRequired":"Nachricht ist erforderlich",
|
|
237
|
+
"Already_present_in_the_dashboard_json":"........",
|
|
238
|
+
"CreateTicket": "Ticket erstellen",
|
|
239
|
+
"Requester": "Anfragesteller",
|
|
240
|
+
"ViewRequesterDetails": "Anfordererdetails anzeigen",
|
|
241
|
+
"Priority": "Priorität",
|
|
242
|
+
"urgent": "Dringend",
|
|
243
|
+
"high": "Hohe",
|
|
244
|
+
"medium": "Mittlere",
|
|
245
|
+
"low": "Niedrige",
|
|
246
|
+
"SelectRequester": "Anforderer auswählen",
|
|
247
|
+
"AddRequester": "Anforderer hinzufügen",
|
|
248
|
+
"Subject": "Betreff",
|
|
249
|
+
"SelectAssignee": "Wählen Sie den Empfänger aus",
|
|
250
|
+
"Message": "Nachrichte",
|
|
251
|
+
"CreateNewRequester": "Neuen Anforderer erstellen",
|
|
252
|
+
"Name": "Name",
|
|
253
|
+
"NameIsRequired": "Name ist erforderlich",
|
|
254
|
+
"EnterValidEmail": "Geben Sie eine gültige Email Adresse ein",
|
|
255
|
+
"Title": "Titel",
|
|
256
|
+
"Add": "Hinzufügen",
|
|
257
|
+
"AddCustomization": "Personalisierung hinzufügen",
|
|
258
|
+
"SelectACustomizationToAddToYourMessage": "Personalisierungs-Feld auswählen",
|
|
259
|
+
"recipient_name_desc": "Der Vorname eines Besuchers wird zur Nachricht hinzugefügt.",
|
|
260
|
+
"agent_name_desc": "Der Name des Betreuers wird zur Nachricht hinzugefügt.",
|
|
261
|
+
"First_name_of_recipient": "Vorname des Empfängers",
|
|
262
|
+
"First_name_of_agent": "Vorname des Betreuers",
|
|
263
|
+
"EnterCannedResponseTitle": "Titel der Vordefinierten Anfrage eingeben",
|
|
264
|
+
"WriteMsgToSendToYourVisitors": "Verfassen Sie eine vordefinierte Antwort für Ihre Besucher"
|
|
227
265
|
}
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"LABEL_VIDEO_CHAT": "Video call",
|
|
45
45
|
"LABEL_LEAVE_GROUP": "Leave the group",
|
|
46
46
|
"LABEL_CLOSE_GROUP": "Close",
|
|
47
|
-
"ALERT_TITLE": "
|
|
47
|
+
"ALERT_TITLE": "Attention!",
|
|
48
48
|
"CLOSE_ALERT_CONFIRM_LABEL": "OK",
|
|
49
49
|
"CLOSE_ALERT_CANCEL_LABEL": "CANCEL",
|
|
50
50
|
"LEAVE_ALERT_MSG": "Leave the group?",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"LABEL_INFO_USER": "Info user",
|
|
109
109
|
"LABEL_IS_WRITING": "typing",
|
|
110
110
|
"LABEL_VERSION": "version",
|
|
111
|
-
"LABEL_CONTACTS": "
|
|
111
|
+
"LABEL_CONTACTS": "Contacts",
|
|
112
112
|
"LABEL_PLACEHOLDER": "type your message..",
|
|
113
113
|
"LABEL_START_NW_CONV": "New conversation",
|
|
114
114
|
"LABEL_FIRST_MSG": "Describe shortly your problem, you will be contacted by an agent.",
|
|
@@ -223,5 +223,43 @@
|
|
|
223
223
|
"History": "History",
|
|
224
224
|
"Settings": "Settings",
|
|
225
225
|
"Resolve": "Resolve",
|
|
226
|
-
"Archive": "Archive"
|
|
226
|
+
"Archive": "Archive",
|
|
227
|
+
"ActionNotAllowed":"Action not allowed",
|
|
228
|
+
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"You are no longer among the teammates managing this conversation",
|
|
229
|
+
"TicketSuccessfullyCreated":"Ticket successfully created",
|
|
230
|
+
"Continue":"Continue",
|
|
231
|
+
"ViewArchivedConversations":"Archived conversations",
|
|
232
|
+
"ViewContactsList":"Contacts list",
|
|
233
|
+
"AddAsCannedResponse":"Add as canned response",
|
|
234
|
+
"AddNewCannedResponse":"Add a new canned response",
|
|
235
|
+
"TitleIsRequired":"Title is required",
|
|
236
|
+
"MessageIsRequired":"Message is required",
|
|
237
|
+
"Already_present_in_the_dashboard_json":"........",
|
|
238
|
+
"CreateTicket": "Create ticket",
|
|
239
|
+
"Requester": "Requester",
|
|
240
|
+
"ViewRequesterDetails": "View requester details",
|
|
241
|
+
"Priority": "Priority",
|
|
242
|
+
"urgent": "Urgent",
|
|
243
|
+
"high": "High",
|
|
244
|
+
"medium": "Medium",
|
|
245
|
+
"low": "Low",
|
|
246
|
+
"SelectRequester": "Select requester",
|
|
247
|
+
"AddRequester": "Add requester",
|
|
248
|
+
"Subject": "Subject",
|
|
249
|
+
"SelectAssignee": "Select assignee",
|
|
250
|
+
"Message": "Message",
|
|
251
|
+
"CreateNewRequester": "Create new requester",
|
|
252
|
+
"Name": "Name",
|
|
253
|
+
"NameIsRequired": "Name is required",
|
|
254
|
+
"EnterValidEmail": "Enter a valid email address",
|
|
255
|
+
"Title": "Title",
|
|
256
|
+
"Add": "Add",
|
|
257
|
+
"AddCustomization": "Add personalisation",
|
|
258
|
+
"SelectACustomizationToAddToYourMessage": "Select a personalisation value to add to message",
|
|
259
|
+
"recipient_name_desc": "The first name of the person the agent replying to will be added to message.",
|
|
260
|
+
"agent_name_desc": "The name of the agent who is replying will be added to the message.",
|
|
261
|
+
"First_name_of_recipient": "First name of recipient",
|
|
262
|
+
"First_name_of_agent": "First name of agent",
|
|
263
|
+
"EnterCannedResponseTitle": "Enter canned response title",
|
|
264
|
+
"WriteMsgToSendToYourVisitors": "Write a canned response message to send to your visitors"
|
|
227
265
|
}
|
package/src/assets/i18n/es.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"LABEL_VIDEO_CHAT": "Videollamada",
|
|
45
45
|
"LABEL_LEAVE_GROUP": "Dejar el grupo",
|
|
46
46
|
"LABEL_CLOSE_GROUP": "Cerrar",
|
|
47
|
-
"ALERT_TITLE": "
|
|
47
|
+
"ALERT_TITLE": "¡Atención!",
|
|
48
48
|
"CLOSE_ALERT_CONFIRM_LABEL": "Ok",
|
|
49
49
|
"CLOSE_ALERT_CANCEL_LABEL": "CANCAR",
|
|
50
50
|
"LEAVE_ALERT_MSG": "¿Abandonar el grupo?",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"LABEL_ERROR_EMAIL": "Introduzca una dirección de correo electrónico válida.",
|
|
79
79
|
"LABEL_ERROR_PASSWORD": "La contraseña debe tener al menos 6 caracteres.",
|
|
80
80
|
"LABEL_LOGIN": "Ingresar",
|
|
81
|
-
"LABEL_LOGOUT": "
|
|
81
|
+
"LABEL_LOGOUT": "Finalizar la sesión",
|
|
82
82
|
"LABEL_WELCOME_TO": "Bienvenido a",
|
|
83
83
|
"LABEL_SIGNUP": "Regístrate",
|
|
84
84
|
"LABEL_ALREDY_HAVE_AN_ACCOUNT": "¿Ya tienes una cuenta?",
|
|
@@ -223,5 +223,43 @@
|
|
|
223
223
|
"History": "Historial",
|
|
224
224
|
"Settings": "Ajustes",
|
|
225
225
|
"Resolve": "Resolver",
|
|
226
|
-
"Archive": "Archivas"
|
|
226
|
+
"Archive": "Archivas",
|
|
227
|
+
"ActionNotAllowed":"Acción no permitida",
|
|
228
|
+
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Ya no estás entre los compañeros de equipo que gestionan esta conversación",
|
|
229
|
+
"TicketSuccessfullyCreated":"Ticket creado con éxito",
|
|
230
|
+
"Continue":"Continuar",
|
|
231
|
+
"ViewArchivedConversations":"Conversaciones archivadas",
|
|
232
|
+
"ViewContactsList":"Lista de contactos",
|
|
233
|
+
"AddAsCannedResponse":"Agregar como respuesta predeterminada",
|
|
234
|
+
"AddNewCannedResponse":"Agregar una nueva respuesta predeterminada",
|
|
235
|
+
"TitleIsRequired":"El título es obligatorio",
|
|
236
|
+
"MessageIsRequired":"El mensaje es obligatorio",
|
|
237
|
+
"Already_present_in_the_dashboard_json":"........",
|
|
238
|
+
"CreateTicket": "Crear ticket",
|
|
239
|
+
"Requester": "Solicitante",
|
|
240
|
+
"ViewRequesterDetails": "Ver detalles del solicitante",
|
|
241
|
+
"Priority": "Prioridad",
|
|
242
|
+
"urgent": "Urgente",
|
|
243
|
+
"high": "Alta",
|
|
244
|
+
"medium": "Medio",
|
|
245
|
+
"low": "Baja",
|
|
246
|
+
"SelectRequester": "Seleccionar solicitante",
|
|
247
|
+
"AddRequester": "Añadir solicitante",
|
|
248
|
+
"Subject": "Asunto",
|
|
249
|
+
"SelectAssignee": "Seleccionar cesionario",
|
|
250
|
+
"Message": "Mensaje",
|
|
251
|
+
"CreateNewRequester": "Crear nuevo solicitante",
|
|
252
|
+
"Name": "Nombre",
|
|
253
|
+
"NameIsRequired": "Se requiere nombre",
|
|
254
|
+
"EnterValidEmail": "Introduzca una dirección de correo válida",
|
|
255
|
+
"Title": "Título",
|
|
256
|
+
"Add": "Añadir",
|
|
257
|
+
"AddCustomization": "Añadir personalización",
|
|
258
|
+
"SelectACustomizationToAddToYourMessage": "Seleccione un valor de personalización para agregar al mensaje",
|
|
259
|
+
"recipient_name_desc": "El nombre de la persona a la que responda el agente será añadido al mensaje.",
|
|
260
|
+
"agent_name_desc": "El nombre del agente que está respondiendo será añadido al mensaje.",
|
|
261
|
+
"First_name_of_recipient": "Nombre del destinatario",
|
|
262
|
+
"First_name_of_agent": "Nombre del agente",
|
|
263
|
+
"EnterCannedResponseTitle": "Introduzca el título de la respuesta predefinida",
|
|
264
|
+
"WriteMsgToSendToYourVisitors": "Escribe un mensaje de respuesta enlatado para enviar a tus visitantes"
|
|
227
265
|
}
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"LABEL_VIDEO_CHAT": "Appel vidéo",
|
|
45
45
|
"LABEL_LEAVE_GROUP": "Quitter le groupe",
|
|
46
46
|
"LABEL_CLOSE_GROUP": "Fermer",
|
|
47
|
-
"ALERT_TITLE": "
|
|
48
|
-
"CLOSE_ALERT_CONFIRM_LABEL": "
|
|
47
|
+
"ALERT_TITLE": "Attention!",
|
|
48
|
+
"CLOSE_ALERT_CONFIRM_LABEL": "d'accord",
|
|
49
49
|
"CLOSE_ALERT_CANCEL_LABEL": "ANNULER",
|
|
50
|
-
"LEAVE_ALERT_MSG": "Quitter le groupe
|
|
51
|
-
"CLOSE_ALERT_MSG": "Fermer la conversation
|
|
50
|
+
"LEAVE_ALERT_MSG": "Quitter le groupe?",
|
|
51
|
+
"CLOSE_ALERT_MSG": "Fermer la conversation?",
|
|
52
52
|
"VIDEOCHAT_ALERT_MSG": "Service indisponible",
|
|
53
53
|
"CLOSING_CONVERSATION_SPINNER_MSG": "S'il vous plaît, attendez.<br> Nous clôturons la conversation",
|
|
54
54
|
"CONVERSATION_CLOSED_ALERT_MSG": "La conversation a été fermée avec succès.",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"LABEL_ERROR_EMAIL": "Entrez une adresse mail valide.",
|
|
79
79
|
"LABEL_ERROR_PASSWORD": "Le mot de passe doit comporter au moins 6 caractères.",
|
|
80
80
|
"LABEL_LOGIN": "Connexion",
|
|
81
|
-
"LABEL_LOGOUT": "
|
|
81
|
+
"LABEL_LOGOUT": "Déconnexion",
|
|
82
82
|
"LABEL_WELCOME_TO": "Bienvenue à",
|
|
83
83
|
"LABEL_SIGNUP": "S'inscrire",
|
|
84
84
|
"LABEL_ALREDY_HAVE_AN_ACCOUNT": "Vous avez déjà un compte?",
|
|
@@ -223,5 +223,43 @@
|
|
|
223
223
|
"History": "Histoire",
|
|
224
224
|
"Settings": "Réglages",
|
|
225
225
|
"Resolve": "Résoudre",
|
|
226
|
-
"Archive": "Archiver"
|
|
226
|
+
"Archive": "Archiver",
|
|
227
|
+
"ActionNotAllowed":"Action non autorisée",
|
|
228
|
+
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Vous n'êtes plus parmi les coéquipiers qui gèrent cette conversation",
|
|
229
|
+
"TicketSuccessfullyCreated":"Ticket créé avec succès",
|
|
230
|
+
"Continue":"Continuez",
|
|
231
|
+
"ViewArchivedConversations":"Conversations archivées",
|
|
232
|
+
"ViewContactsList":"Liste de contacts",
|
|
233
|
+
"AddAsCannedResponse":"Ajouter comme réponse par défaut",
|
|
234
|
+
"AddNewCannedResponse":"Ajouter une nouvelle réponse par défaut",
|
|
235
|
+
"TitleIsRequired":"Le titre est requis",
|
|
236
|
+
"MessageIsRequired":"Un message est requis",
|
|
237
|
+
"Already_present_in_the_dashboard_json":"........",
|
|
238
|
+
"CreateTicket": "Créer un ticket",
|
|
239
|
+
"Requester": "Demandeur",
|
|
240
|
+
"ViewRequesterDetails": "Afficher les détails du demandeur",
|
|
241
|
+
"Priority": "Priorité",
|
|
242
|
+
"urgent": "Urgent",
|
|
243
|
+
"high": "Haut",
|
|
244
|
+
"medium": "Moyen",
|
|
245
|
+
"low": "Meugler",
|
|
246
|
+
"SelectRequester": "Sélectionnez le demandeur",
|
|
247
|
+
"AddRequester": "Ajouter un demandeur",
|
|
248
|
+
"Subject": "Sujet",
|
|
249
|
+
"SelectAssignee": "Sélectionnez le cessionnaire",
|
|
250
|
+
"Message": "Message",
|
|
251
|
+
"CreateNewRequester": "Créer un nouveau demandeur",
|
|
252
|
+
"Name": "Nom",
|
|
253
|
+
"NameIsRequired": "Le nom est requis",
|
|
254
|
+
"EnterValidEmail": "Entrez une adresse mail valide",
|
|
255
|
+
"Title": "Titre",
|
|
256
|
+
"Add": "Ajouter",
|
|
257
|
+
"AddCustomization": "Ajouter une personnalisation",
|
|
258
|
+
"SelectACustomizationToAddToYourMessage": "Sélectionnez une valeur de personnalisation à ajouter au message",
|
|
259
|
+
"recipient_name_desc": "Le prénom de la personne à qui l'agent répond sera ajouté au message.",
|
|
260
|
+
"agent_name_desc": "Le nom de l'agent qui répond sera ajouté au message.",
|
|
261
|
+
"First_name_of_recipient": "Prénom du destinataire",
|
|
262
|
+
"First_name_of_agent": "Prénom du mandataire",
|
|
263
|
+
"EnterCannedResponseTitle": "Saisissez le titre de la réponse standardisée",
|
|
264
|
+
"WriteMsgToSendToYourVisitors": "Rédigez un message de réponse standardisé à envoyer à vos visiteurs"
|
|
227
265
|
}
|
package/src/assets/i18n/it.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"LABEL_VIDEO_CHAT": "Video chiamata",
|
|
45
45
|
"LABEL_LEAVE_GROUP": "Abbandona il gruppo",
|
|
46
46
|
"LABEL_CLOSE_GROUP": "Chiudi",
|
|
47
|
-
"ALERT_TITLE": "
|
|
47
|
+
"ALERT_TITLE": "Attenzione!",
|
|
48
48
|
"CLOSE_ALERT_CONFIRM_LABEL": "OK",
|
|
49
49
|
"CLOSE_ALERT_CANCEL_LABEL": "ANNULLA",
|
|
50
50
|
"LEAVE_ALERT_MSG": "Abbandonare il gruppo?",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"LABEL_ERROR_EMAIL": "Inserisci un indirizzo email valido.",
|
|
79
79
|
"LABEL_ERROR_PASSWORD": "La password deve essere di almeno 6 caratteri.",
|
|
80
80
|
"LABEL_LOGIN": "Login",
|
|
81
|
-
"LABEL_LOGOUT": "
|
|
81
|
+
"LABEL_LOGOUT": "Disconnettersi",
|
|
82
82
|
"LABEL_WELCOME_TO": "Benvenuto in",
|
|
83
83
|
"LABEL_SIGNUP": "Registrati",
|
|
84
84
|
"LABEL_ALREDY_HAVE_AN_ACCOUNT": "Hai già un account?",
|
|
@@ -223,5 +223,43 @@
|
|
|
223
223
|
"History": "Cronologia",
|
|
224
224
|
"Settings": "Impostazioni",
|
|
225
225
|
"Resolve": "Risolvi",
|
|
226
|
-
"Archive": "Archivia"
|
|
226
|
+
"Archive": "Archivia",
|
|
227
|
+
"ActionNotAllowed":"Azione non permessa",
|
|
228
|
+
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Non sei più tra i compagni di squadra che gestiscono questa conversazione",
|
|
229
|
+
"TicketSuccessfullyCreated":"Ticket creato con successo",
|
|
230
|
+
"Continue":"Continua",
|
|
231
|
+
"ViewArchivedConversations":"Conversazioni archiviate",
|
|
232
|
+
"ViewContactsList":"Elenco contatti",
|
|
233
|
+
"AddAsCannedResponse":"Aggiungi come risposta predefinita",
|
|
234
|
+
"AddNewCannedResponse":"Aggiungi una nuova risposta predefinita",
|
|
235
|
+
"TitleIsRequired":"Il titolo è obbligatorio",
|
|
236
|
+
"MessageIsRequired":"Il messaggio è obbligatorio",
|
|
237
|
+
"Already_present_in_the_dashboard_json":"........",
|
|
238
|
+
"CreateTicket": "Crea Ticket",
|
|
239
|
+
"Requester": "Richiedente",
|
|
240
|
+
"ViewRequesterDetails": "Vedi dettagli richiedente",
|
|
241
|
+
"Priority": "Priorità",
|
|
242
|
+
"urgent": "Urgente",
|
|
243
|
+
"high": "Alta",
|
|
244
|
+
"medium": "Media",
|
|
245
|
+
"low": "Bassa",
|
|
246
|
+
"SelectRequester": "Seleziona richiedente",
|
|
247
|
+
"AddRequester": "Aggiungi richiedente",
|
|
248
|
+
"Subject": "Oggetto",
|
|
249
|
+
"SelectAssignee": "Seleziona assegnatario",
|
|
250
|
+
"Message": "Messaggio",
|
|
251
|
+
"CreateNewRequester": "Crea nuovo richiedente",
|
|
252
|
+
"Name": "Nome",
|
|
253
|
+
"NameIsRequired": "Il nome è obbligatorio",
|
|
254
|
+
"EnterValidEmail": "Inserire un indirizzo email valido",
|
|
255
|
+
"Title": "Titolo",
|
|
256
|
+
"Add": "Aggiungi",
|
|
257
|
+
"AddCustomization": "Aggiungi personalizzazione",
|
|
258
|
+
"SelectACustomizationToAddToYourMessage": "Seleziona una valore personalizzato da aggiungere al messaggio",
|
|
259
|
+
"recipient_name_desc": "Il nome della persona a cui l'agente sta rispondendo verrà aggiunto al messaggio.",
|
|
260
|
+
"agent_name_desc": "Il nome dell'agente che sta rispondendo verrà aggiunto al messaggio.",
|
|
261
|
+
"First_name_of_recipient": "Nome del destinatario",
|
|
262
|
+
"First_name_of_agent": "Nome dell'agente",
|
|
263
|
+
"EnterCannedResponseTitle": "Inserisci il titolo della risposta predefinita",
|
|
264
|
+
"WriteMsgToSendToYourVisitors": "Scrivi un messaggio di risposta predefinito da inviare ai tuoi visitatori"
|
|
227
265
|
}
|
package/src/assets/i18n/pt.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"LABEL_VIDEO_CHAT": "Videochamada",
|
|
45
45
|
"LABEL_LEAVE_GROUP": "Sair do grupo",
|
|
46
46
|
"LABEL_CLOSE_GROUP": "Fechar",
|
|
47
|
-
"ALERT_TITLE": "
|
|
47
|
+
"ALERT_TITLE": "Atenção!",
|
|
48
48
|
"CLOSE_ALERT_CONFIRM_LABEL": "OK",
|
|
49
49
|
"CLOSE_ALERT_CANCEL_LABEL": "CANCELAR",
|
|
50
50
|
"LEAVE_ALERT_MSG": "Sair do grupo?",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"LABEL_ERROR_EMAIL": "Digite um endereço de e-mail válido.",
|
|
79
79
|
"LABEL_ERROR_PASSWORD": "A senha deve ter pelo menos 6 caracteres.",
|
|
80
80
|
"LABEL_LOGIN": "Conecte-se",
|
|
81
|
-
"LABEL_LOGOUT": "
|
|
81
|
+
"LABEL_LOGOUT": "Deslogar",
|
|
82
82
|
"LABEL_WELCOME_TO": "Bem-vindo ao",
|
|
83
83
|
"LABEL_SIGNUP": "Inscrever-se",
|
|
84
84
|
"LABEL_ALREDY_HAVE_AN_ACCOUNT": "Já tem uma conta?",
|
|
@@ -223,5 +223,43 @@
|
|
|
223
223
|
"History": "História",
|
|
224
224
|
"Settings": "Configurações",
|
|
225
225
|
"Resolve": "Resolver",
|
|
226
|
-
"Archive": "Arquivar"
|
|
226
|
+
"Archive": "Arquivar",
|
|
227
|
+
"ActionNotAllowed":"Ação não autorizada",
|
|
228
|
+
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Você não está mais entre os colegas de equipe que estão gerenciando esta conversa",
|
|
229
|
+
"TicketSuccessfullyCreated":"Ticket criado com sucesso",
|
|
230
|
+
"Continue":"Continuar",
|
|
231
|
+
"ViewArchivedConversations":"Conversas arquivadas",
|
|
232
|
+
"ViewContactsList":"Lista de contatos",
|
|
233
|
+
"AddAsCannedResponse":"Adicione como resposta padrão",
|
|
234
|
+
"AddNewCannedResponse":"Adicionar uma nova resposta padrão",
|
|
235
|
+
"TitleIsRequired":"O título é obrigatório",
|
|
236
|
+
"MessageIsRequired":"A mensagem é obrigatória",
|
|
237
|
+
"Already_present_in_the_dashboard_json":"........",
|
|
238
|
+
"CreateTicket": "Criar bilhete",
|
|
239
|
+
"Requester": "Solicitante",
|
|
240
|
+
"ViewRequesterDetails": "Ver detalhes do solicitante",
|
|
241
|
+
"Priority": "Prioridade",
|
|
242
|
+
"urgent": "Urgente",
|
|
243
|
+
"high": "Alto",
|
|
244
|
+
"medium": "Médio",
|
|
245
|
+
"low": "Baixo",
|
|
246
|
+
"SelectRequester": "Selecionar solicitante",
|
|
247
|
+
"AddRequester": "Adicionar solicitante",
|
|
248
|
+
"Subject": "Sujeito",
|
|
249
|
+
"SelectAssignee": "Selecionar cessionário",
|
|
250
|
+
"Message": "Mensagem",
|
|
251
|
+
"CreateNewRequester": "Criar novo solicitante",
|
|
252
|
+
"Name": "Nome",
|
|
253
|
+
"NameIsRequired": "O nome é obrigatório",
|
|
254
|
+
"EnterValidEmail": "Digite um endereço de e-mail válido",
|
|
255
|
+
"Title": "Título",
|
|
256
|
+
"Add": "Adicionar",
|
|
257
|
+
"AddCustomization": "Adicionar personalização",
|
|
258
|
+
"SelectACustomizationToAddToYourMessage": "Selecione um valor de personalização para adicionar à mensagem",
|
|
259
|
+
"recipient_name_desc": "O primeiro nome da pessoa a quem o agente está respondendo será adicionado à mensagem.",
|
|
260
|
+
"agent_name_desc": "O nome do agente que está respondendo será adicionado à mensagem.",
|
|
261
|
+
"First_name_of_recipient": "Nome do destinatário",
|
|
262
|
+
"First_name_of_agent": "Nome do agente",
|
|
263
|
+
"EnterCannedResponseTitle": "Insira o título da resposta predeterminada",
|
|
264
|
+
"WriteMsgToSendToYourVisitors": "Escreva uma mensagem de resposta pronta para enviar aos seus visitantes"
|
|
227
265
|
}
|