@chat21/chat21-ionic 3.0.61-rc8 → 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 +71 -0
- package/README.md +6 -0
- package/angular.json +2 -0
- package/config.xml +0 -1
- package/deploy_pre.sh +1 -1
- package/deploy_prod.sh +1 -1
- package/env.sample +1 -1
- package/package.json +4 -4
- package/src/app/app-routing.module.ts +15 -0
- package/src/app/app.component.ts +12 -9
- 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/list-conversations/list-conversations.component.ts +13 -10
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +3 -2
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +2 -0
- 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 +57 -20
- 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 +98 -24
- 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 +65 -52
- package/src/app/components/sidebar/sidebar.component.scss +23 -0
- package/src/app/components/sidebar/sidebar.component.ts +74 -26
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +20 -9
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +20 -3
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +24 -8
- package/src/app/pages/conversation-detail/conversation-detail.module.ts +5 -1
- package/src/app/pages/conversation-detail/conversation-detail.page.html +19 -10
- package/src/app/pages/conversation-detail/conversation-detail.page.scss +28 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +229 -389
- package/src/app/pages/conversations-list/conversations-list.page.ts +646 -454
- 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 +2 -11
- package/src/app/pages/profile-info/profile-info.page.html +2 -2
- package/src/app/pages/profile-info/profile-info.page.scss +12 -1
- package/src/app/services/tiledesk/tiledesk.service.ts +190 -0
- package/src/app/shared/shared.module.ts +1 -1
- package/src/assets/i18n/de.json +37 -1
- package/src/assets/i18n/en.json +37 -1
- package/src/assets/i18n/es.json +38 -2
- package/src/assets/i18n/fr.json +38 -2
- package/src/assets/i18n/it.json +38 -2
- package/src/assets/i18n/pt.json +38 -2
- package/src/assets/i18n/ru.json +38 -2
- package/src/assets/i18n/sr.json +38 -2
- package/src/assets/i18n/tr.json +37 -1
- 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 +2 -0
- package/src/chat21-core/utils/utils-message.ts +19 -0
- package/src/global.scss +33 -9
|
@@ -110,9 +110,199 @@ export class TiledeskService {
|
|
|
110
110
|
}))
|
|
111
111
|
}
|
|
112
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
|
+
}
|
|
113
275
|
|
|
114
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
|
+
};
|
|
291
|
+
|
|
292
|
+
const body = { 'text': message, 'title': title };
|
|
115
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
|
+
}
|
|
116
304
|
|
|
305
|
+
// .post(url, JSON.stringify(body), options)
|
|
306
|
+
// .map((res) => res.json());
|
|
117
307
|
|
|
118
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
|
@@ -225,5 +225,41 @@
|
|
|
225
225
|
"Resolve": "Lösen",
|
|
226
226
|
"Archive": "Archivieren",
|
|
227
227
|
"ActionNotAllowed": "Aktion nicht erlaubt",
|
|
228
|
-
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Sie gehören nicht mehr zu den Teamkollegen, die diese Unterhaltung führen"
|
|
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"
|
|
229
265
|
}
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -225,5 +225,41 @@
|
|
|
225
225
|
"Resolve": "Resolve",
|
|
226
226
|
"Archive": "Archive",
|
|
227
227
|
"ActionNotAllowed":"Action not allowed",
|
|
228
|
-
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"You are no longer among the teammates managing this conversation"
|
|
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"
|
|
229
265
|
}
|
package/src/assets/i18n/es.json
CHANGED
|
@@ -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?",
|
|
@@ -225,5 +225,41 @@
|
|
|
225
225
|
"Resolve": "Resolver",
|
|
226
226
|
"Archive": "Archivas",
|
|
227
227
|
"ActionNotAllowed":"Acción no permitida",
|
|
228
|
-
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Ya no estás entre los compañeros de equipo que gestionan esta conversación"
|
|
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"
|
|
229
265
|
}
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -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?",
|
|
@@ -225,5 +225,41 @@
|
|
|
225
225
|
"Resolve": "Résoudre",
|
|
226
226
|
"Archive": "Archiver",
|
|
227
227
|
"ActionNotAllowed":"Action non autorisée",
|
|
228
|
-
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Vous n'êtes plus parmi les coéquipiers qui gèrent cette conversation"
|
|
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"
|
|
229
265
|
}
|
package/src/assets/i18n/it.json
CHANGED
|
@@ -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?",
|
|
@@ -225,5 +225,41 @@
|
|
|
225
225
|
"Resolve": "Risolvi",
|
|
226
226
|
"Archive": "Archivia",
|
|
227
227
|
"ActionNotAllowed":"Azione non permessa",
|
|
228
|
-
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Non sei più tra i compagni di squadra che gestiscono questa conversazione"
|
|
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"
|
|
229
265
|
}
|
package/src/assets/i18n/pt.json
CHANGED
|
@@ -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?",
|
|
@@ -225,5 +225,41 @@
|
|
|
225
225
|
"Resolve": "Resolver",
|
|
226
226
|
"Archive": "Arquivar",
|
|
227
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"
|
|
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"
|
|
229
265
|
}
|
package/src/assets/i18n/ru.json
CHANGED
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"LABEL_ERROR_EMAIL": "Введите действительный адрес электронной почты.",
|
|
79
79
|
"LABEL_ERROR_PASSWORD": "Пароль должен быть не менее 6 символов.",
|
|
80
80
|
"LABEL_LOGIN": "Авторизоваться",
|
|
81
|
-
"LABEL_LOGOUT": "Выйти",
|
|
81
|
+
"LABEL_LOGOUT": "Выйти из системы",
|
|
82
82
|
"LABEL_WELCOME_TO": "Добро пожаловать в",
|
|
83
83
|
"LABEL_SIGNUP": "Зарегистрироваться",
|
|
84
84
|
"LABEL_ALREDY_HAVE_AN_ACCOUNT": "У вас уже есть аккаунт?",
|
|
@@ -225,5 +225,41 @@
|
|
|
225
225
|
"Resolve": "Pазрешить",
|
|
226
226
|
"Archive": "Архивировать",
|
|
227
227
|
"ActionNotAllowed":"Действие не разрешено",
|
|
228
|
-
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Вы больше не входите в число товарищей по команде, ведущих этот разговор"
|
|
228
|
+
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Вы больше не входите в число товарищей по команде, ведущих этот разговор",
|
|
229
|
+
"TicketSuccessfullyCreated":"Тикет успешно создан",
|
|
230
|
+
"Continue":"Продолжать",
|
|
231
|
+
"ViewArchivedConversations":"Заархивированные беседы",
|
|
232
|
+
"ViewContactsList":"Список контактов",
|
|
233
|
+
"AddAsCannedResponse":"Добавить как ответ по умолчанию",
|
|
234
|
+
"AddNewCannedResponse":"Добавить новый ответ по умолчанию",
|
|
235
|
+
"TitleIsRequired":"Требуется заголовок",
|
|
236
|
+
"MessageIsRequired":"Требуется сообщение",
|
|
237
|
+
"Already_present_in_the_dashboard_json":"........",
|
|
238
|
+
"CreateTicket": "Создать тикет",
|
|
239
|
+
"Requester": "Заявитель",
|
|
240
|
+
"ViewRequesterDetails": "Просмотр сведений о запросителе",
|
|
241
|
+
"Priority": "Приоритет",
|
|
242
|
+
"urgent": "Срочный",
|
|
243
|
+
"high": "Высокий",
|
|
244
|
+
"medium": "Середина",
|
|
245
|
+
"low": "Низкий",
|
|
246
|
+
"SelectRequester": "Выберите запрашивающего",
|
|
247
|
+
"AddRequester": "Добавить запросчика",
|
|
248
|
+
"Subject": "Предмет",
|
|
249
|
+
"SelectAssignee": "Выберите правопреемника",
|
|
250
|
+
"Message": "Сообщение",
|
|
251
|
+
"CreateNewRequester": "Создать нового запросчика",
|
|
252
|
+
"Name": "Имя",
|
|
253
|
+
"NameIsRequired": "Укажите имя",
|
|
254
|
+
"EnterValidEmail": "Введите действительный адрес электронной почты",
|
|
255
|
+
"Title": "Заголовок",
|
|
256
|
+
"Add": "Добавлять",
|
|
257
|
+
"AddCustomization": "Добавить персонализацию",
|
|
258
|
+
"SelectACustomizationToAddToYourMessage": "Выберите значение персонализации для добавления к сообщению",
|
|
259
|
+
"recipient_name_desc": "Имя человека, которому отвечает агент, будет добавлено к сообщению.",
|
|
260
|
+
"agent_name_desc": "К сообщению будет добавлено имя отвечающего агента.",
|
|
261
|
+
"First_name_of_recipient": "Имя получателя",
|
|
262
|
+
"First_name_of_agent": "Имя агента",
|
|
263
|
+
"EnterCannedResponseTitle": "Введите готовый заголовок ответа",
|
|
264
|
+
"WriteMsgToSendToYourVisitors": "Напишите готовое ответное сообщение для отправки своим посетителям"
|
|
229
265
|
}
|
package/src/assets/i18n/sr.json
CHANGED
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"LABEL_ERROR_EMAIL": "Унесите исправну е-маил адресу.",
|
|
79
79
|
"LABEL_ERROR_PASSWORD": "Лозинка мора имати најмање 6 знакова.",
|
|
80
80
|
"LABEL_LOGIN": "Пријавите се",
|
|
81
|
-
"LABEL_LOGOUT": "
|
|
81
|
+
"LABEL_LOGOUT": "Одјава",
|
|
82
82
|
"LABEL_WELCOME_TO": "Добродошли у",
|
|
83
83
|
"LABEL_SIGNUP": "Пријави се",
|
|
84
84
|
"LABEL_ALREDY_HAVE_AN_ACCOUNT": "Већ имате налог?",
|
|
@@ -225,5 +225,41 @@
|
|
|
225
225
|
"Resolve": "Ресолве",
|
|
226
226
|
"Archive": "Архива",
|
|
227
227
|
"ActionNotAllowed":"Радња није дозвољена",
|
|
228
|
-
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Више нисте међу саиграчима који управљају овим разговором"
|
|
228
|
+
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Више нисте међу саиграчима који управљају овим разговором",
|
|
229
|
+
"TicketSuccessfullyCreated":"Улазница је успешно направљена",
|
|
230
|
+
"Continue":"Наставити",
|
|
231
|
+
"ViewArchivedConversations":"Архивирани разговори",
|
|
232
|
+
"ViewContactsList":"Листа контаката",
|
|
233
|
+
"AddAsCannedResponse":"Додај као задани одговор",
|
|
234
|
+
"AddNewCannedResponse":"Додајте нови подразумевани одговор",
|
|
235
|
+
"TitleIsRequired":"Наслов је обавезан",
|
|
236
|
+
"MessageIsRequired":"Порука је обавезна",
|
|
237
|
+
"Already_present_in_the_dashboard_json":"........",
|
|
238
|
+
"CreateTicket": "Креирајте карту",
|
|
239
|
+
"Requester": "Подносилац захтева",
|
|
240
|
+
"ViewRequesterDetails": "Погледајте детаље подносиоца захтева",
|
|
241
|
+
"Priority": "Приоритет",
|
|
242
|
+
"urgent": "Хитно",
|
|
243
|
+
"high": "Високо",
|
|
244
|
+
"medium": "Средње",
|
|
245
|
+
"low": "Ниско",
|
|
246
|
+
"SelectRequester": "Изаберите подносиоца захтева",
|
|
247
|
+
"AddRequester": "Додај подносиоца захтева",
|
|
248
|
+
"Subject": "Предмет",
|
|
249
|
+
"SelectAssignee": "Изаберите примаоца",
|
|
250
|
+
"Message": "Порука",
|
|
251
|
+
"CreateNewRequester": "Креирајте нови захтев",
|
|
252
|
+
"Name": "Име",
|
|
253
|
+
"NameIsRequired": "Име је обавезно",
|
|
254
|
+
"EnterValidEmail": "Унесите исправну е-маил адресу",
|
|
255
|
+
"Title": "Наслов",
|
|
256
|
+
"Add": "Додати",
|
|
257
|
+
"AddCustomization": "Додајте персонализацију",
|
|
258
|
+
"SelectACustomizationToAddToYourMessage": "Изаберите вредност персонализације коју желите да додате у поруку",
|
|
259
|
+
"recipient_name_desc": "Име особе којој агент одговара биће додато у поруку.",
|
|
260
|
+
"agent_name_desc": "Име агента који одговара биће додато у поруку.",
|
|
261
|
+
"First_name_of_recipient": "Име примаоца",
|
|
262
|
+
"First_name_of_agent": "Име агента",
|
|
263
|
+
"EnterCannedResponseTitle": "Унесите назив унапред припремљеног одговора",
|
|
264
|
+
"WriteMsgToSendToYourVisitors": "Напишите унапред припремљену одговор поруку коју ћете послати посетиоцима"
|
|
229
265
|
}
|