@webitel/ui-sdk 25.8.29 → 25.8.31
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/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +471 -185
- package/dist/ui-sdk.umd.cjs +558 -558
- package/package.json +5 -2
- package/src/api/clients/roles/{roles.js → roles.ts} +35 -52
- package/src/css/main.scss +0 -12
- package/src/locale/es/es.js +560 -127
- package/src/locale/i18n.js +1 -13
- package/src/locale/index.ts +33 -0
- package/src/locale/kz/kz.js +320 -236
- package/src/locale/pl/pl.js +718 -0
- package/src/locale/ro/ro.js +719 -0
- package/src/locale/uz/uz.js +718 -0
- package/src/locale/vi/vi.js +719 -0
- package/src/modules/ObjectPermissions/_internals/components/permissions-tab-role-popup.vue +1 -1
- package/types/api/clients/roles/roles.d.ts +27 -39
- package/types/api/history/index.d.ts +2 -0
- package/types/api/history/transcript/callTranscript.d.ts +15 -0
- package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -2
- package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +15 -15
- package/types/components/wt-button-select/wt-button-select.vue.d.ts +2 -2
- package/types/components/wt-confirm-dialog/wt-confirm-dialog.vue.d.ts +2 -2
- package/types/components/wt-intersection-observer/wt-intersection-observer.vue.d.ts +2 -2
- package/types/components/wt-loader/_internals/wt-loader--md.vue.d.ts +2 -0
- package/types/components/wt-loader/_internals/wt-loader--sm.vue.d.ts +16 -0
- package/types/components/wt-player/wt-player.vue.d.ts +1 -1
- package/types/components/wt-table/wt-table.vue.d.ts +1 -1
- package/types/components/wt-timepicker/wt-timepicker.vue.d.ts +1 -1
- package/types/locale/es/es.d.ts +715 -40
- package/types/locale/i18n.d.ts +4447 -353
- package/types/locale/index.d.ts +7142 -0
- package/types/locale/kz/kz.d.ts +360 -226
- package/types/locale/pl/pl.d.ts +920 -0
- package/types/locale/ro/ro.d.ts +920 -0
- package/types/locale/ua/ua.d.ts +911 -0
- package/types/locale/uz/uz.d.ts +920 -0
- package/types/locale/vi/vi.d.ts +920 -0
- package/types/modules/Userinfo/api/userinfo.d.ts +1 -1
- package/types/modules/Userinfo/v2/api/UserinfoAPI.d.ts +1 -1
- package/types/plugins/primevue/theme/semantic/color-scheme/color-schema.d.ts +1189 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/dark-color.d.ts +162 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/light-color.d.ts +162 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/palette.d.ts +435 -0
- package/types/plugins/primevue/theme/semantic/semantic.d.ts +5 -0
- package/types/scripts/caseConverters.d.ts +1 -1
- package/types/scripts/sortQueryAdapters.d.ts +1 -1
|
@@ -0,0 +1,719 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AgentStatus,
|
|
3
|
+
CallDirection,
|
|
4
|
+
ChannelState,
|
|
5
|
+
ChannelType,
|
|
6
|
+
EngineRoutingSchemaType,
|
|
7
|
+
} from 'webitel-sdk';
|
|
8
|
+
|
|
9
|
+
import {
|
|
10
|
+
AdminSections,
|
|
11
|
+
AuditorSections,
|
|
12
|
+
ChatGatewayProvider,
|
|
13
|
+
CrmSections,
|
|
14
|
+
IconAction,
|
|
15
|
+
QueueType,
|
|
16
|
+
RelativeDatetimeValue,
|
|
17
|
+
SupervisorSections,
|
|
18
|
+
WebitelApplications,
|
|
19
|
+
} from '../../enums';
|
|
20
|
+
import { AccessMode } from '../../modules/ObjectPermissions/_internals/enums/AccessMode.enum.js';
|
|
21
|
+
import { snakeToCamel } from '../../scripts';
|
|
22
|
+
|
|
23
|
+
export default {
|
|
24
|
+
// describes reusable buttons, actions, default titles, and other ui elements
|
|
25
|
+
reusable: {
|
|
26
|
+
comment: 'Comentariu',
|
|
27
|
+
replace: 'Înlocuiește',
|
|
28
|
+
download: 'Descarcă',
|
|
29
|
+
history: 'Istoric',
|
|
30
|
+
filter: ({ plural }) => plural(['Filtru', 'Filtre']),
|
|
31
|
+
total: 'Total',
|
|
32
|
+
ok: 'Ok',
|
|
33
|
+
object: 'Obiect',
|
|
34
|
+
save: 'Salvează',
|
|
35
|
+
saveAs: 'Salvează ca',
|
|
36
|
+
saved: 'Salvat',
|
|
37
|
+
send: 'Trimite',
|
|
38
|
+
start: 'Start',
|
|
39
|
+
close: 'Închide',
|
|
40
|
+
add: 'Adaugă',
|
|
41
|
+
cancel: 'Anulează',
|
|
42
|
+
import: 'Import',
|
|
43
|
+
export: 'Export',
|
|
44
|
+
true: 'Adevărat',
|
|
45
|
+
title: 'Titlu',
|
|
46
|
+
position: 'Poziție',
|
|
47
|
+
delete: 'Șterge',
|
|
48
|
+
search: 'Caută',
|
|
49
|
+
open: 'Deschide',
|
|
50
|
+
name: 'Nume',
|
|
51
|
+
expand: 'Extinde',
|
|
52
|
+
collapse: 'Restrânge',
|
|
53
|
+
generate: 'Generează',
|
|
54
|
+
lang: {
|
|
55
|
+
en: 'English',
|
|
56
|
+
es: 'Español',
|
|
57
|
+
ru: 'Русский',
|
|
58
|
+
uk: 'Українська',
|
|
59
|
+
kz: 'Қазақ',
|
|
60
|
+
},
|
|
61
|
+
from: 'De la',
|
|
62
|
+
to: 'Până la',
|
|
63
|
+
tts: 'Text-to-Speech',
|
|
64
|
+
state: 'Stare',
|
|
65
|
+
refresh: 'Reîmprospătează',
|
|
66
|
+
retry: 'Reîncearcă',
|
|
67
|
+
downloadAll: 'Descarcă tot',
|
|
68
|
+
warning: 'Avertisment',
|
|
69
|
+
doNotSave: 'Nu salva',
|
|
70
|
+
required: 'Obligatoriu',
|
|
71
|
+
copy: 'Copiază',
|
|
72
|
+
new: 'Nou',
|
|
73
|
+
createdAt: 'Creat la',
|
|
74
|
+
createdBy: 'Creat de',
|
|
75
|
+
modifiedAt: 'Modificat la',
|
|
76
|
+
modifiedBy: 'Modificat de',
|
|
77
|
+
general: 'General',
|
|
78
|
+
generalInfo: 'Informații generale',
|
|
79
|
+
all: 'Toate {entity}',
|
|
80
|
+
upload: 'Încarcă',
|
|
81
|
+
edit: 'Editează',
|
|
82
|
+
back: 'Înapoi',
|
|
83
|
+
step: 'Pasul { count }',
|
|
84
|
+
more: 'Mai mult',
|
|
85
|
+
read: 'Citește',
|
|
86
|
+
create: 'Creează',
|
|
87
|
+
update: 'Actualizează',
|
|
88
|
+
draggable: 'Tragabil',
|
|
89
|
+
unassigned: 'Neatribuit',
|
|
90
|
+
showUnassigned: 'Arată neatribuite',
|
|
91
|
+
group: 'Grup',
|
|
92
|
+
updatedBy: (/*{ named }*/) => {
|
|
93
|
+
return 'Editat';
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
// yak zhe ya zaebalsya povtoriaty odni i ti sami slova!!!!
|
|
97
|
+
vocabulary: {
|
|
98
|
+
apply: 'Aplică',
|
|
99
|
+
language: 'Limbă',
|
|
100
|
+
voice: 'Voce',
|
|
101
|
+
format: 'Format',
|
|
102
|
+
text: 'Text',
|
|
103
|
+
yes: 'Da',
|
|
104
|
+
no: 'Nu',
|
|
105
|
+
description: 'Descriere',
|
|
106
|
+
login: 'Autentificare',
|
|
107
|
+
host: 'Gazdă',
|
|
108
|
+
time: 'Timp',
|
|
109
|
+
channel: 'Canal | Canale',
|
|
110
|
+
file: 'Fișier',
|
|
111
|
+
logout: 'Deconectare',
|
|
112
|
+
priority: 'Prioritate | Priorități',
|
|
113
|
+
color: 'Culoare',
|
|
114
|
+
variables: 'Variabilă | Variabile',
|
|
115
|
+
type: 'Tip',
|
|
116
|
+
tag: 'Etichetă | Etichete',
|
|
117
|
+
output: 'Ieșire | Ieșiri',
|
|
118
|
+
values: 'Valoare | Valori',
|
|
119
|
+
keys: 'Cheie | Chei',
|
|
120
|
+
duration: 'Durată',
|
|
121
|
+
reset: 'Resetează',
|
|
122
|
+
errors: 'Eroare | Erori',
|
|
123
|
+
labels: 'Etichetă | Etichete',
|
|
124
|
+
permissions: 'Permisiune | Permisiuni',
|
|
125
|
+
options: 'Opțiune | Opțiuni',
|
|
126
|
+
emails: 'Email | Email-uri',
|
|
127
|
+
phones: 'Telefon | Telefoane',
|
|
128
|
+
messaging: 'Mesagerie',
|
|
129
|
+
emptyResultSearch: 'Căutarea nu a returnat niciun rezultat',
|
|
130
|
+
contact: 'Contact | Contacte',
|
|
131
|
+
column: 'Coloană | Coloane',
|
|
132
|
+
notification: 'Notificare | Notificări',
|
|
133
|
+
},
|
|
134
|
+
// date-related texts
|
|
135
|
+
date: {
|
|
136
|
+
sec: 'Sec',
|
|
137
|
+
timezone: 'Fus orar | Fuse orare',
|
|
138
|
+
},
|
|
139
|
+
// locales, related to user access, permissions, etc.
|
|
140
|
+
access: {
|
|
141
|
+
ObAC: 'Gestionat de operațiuni',
|
|
142
|
+
RbAC: 'Gestionat de înregistrări',
|
|
143
|
+
operations: 'Operațiuni',
|
|
144
|
+
rbacDefault: 'Acces implicit bazat pe înregistrări',
|
|
145
|
+
accessMode: {
|
|
146
|
+
[AccessMode.FORBIDDEN]: 'Interzis',
|
|
147
|
+
[AccessMode.ALLOW]: 'Permite',
|
|
148
|
+
[AccessMode.MANAGE]: 'Permite cu delegare',
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
// describes Webitel system entities
|
|
152
|
+
objects: {
|
|
153
|
+
team: 'Echipă | Echipe',
|
|
154
|
+
supervisor: 'Supervizor | Supervizori',
|
|
155
|
+
auditor: 'Auditor | Auditori',
|
|
156
|
+
region: 'Regiune | Regiuni',
|
|
157
|
+
communicationType: 'Tip comunicare | Tipuri comunicare',
|
|
158
|
+
grantee: 'Beneficiar | Beneficiari',
|
|
159
|
+
grantor: 'Acordant | Acordanți',
|
|
160
|
+
role: 'Rol | Roluri',
|
|
161
|
+
user: 'Utilizator | Utilizatori',
|
|
162
|
+
list: 'Listă | Liste',
|
|
163
|
+
contact: 'Contact | Contacte',
|
|
164
|
+
case: 'Caz | Cazuri',
|
|
165
|
+
calendar: 'Calendar | Calendare',
|
|
166
|
+
direction: 'Direcție',
|
|
167
|
+
gateway: 'Gateway | Gateway-uri',
|
|
168
|
+
hangupCause: 'Cauză închidere',
|
|
169
|
+
hasOption: 'Are opțiune',
|
|
170
|
+
hasRecording: 'Înregistrare',
|
|
171
|
+
amdResult: 'Rezultat AMD',
|
|
172
|
+
ratedBy: 'Evaluat de',
|
|
173
|
+
talkDuration: 'Durată convorbire',
|
|
174
|
+
totalDuration: 'Durată totală',
|
|
175
|
+
transcription: 'Transcriere',
|
|
176
|
+
attachment: 'Atașament | Atașamente',
|
|
177
|
+
owner: 'Proprietar | Proprietari',
|
|
178
|
+
queue: {
|
|
179
|
+
queue: 'Coadă | Cozi',
|
|
180
|
+
type: {
|
|
181
|
+
[QueueType.INBOUND_QUEUE]: 'Coadă intrare',
|
|
182
|
+
[QueueType.OFFLINE_QUEUE]: 'Coadă offline',
|
|
183
|
+
[QueueType.OUTBOUND_IVR_QUEUE]: 'Coadă IVR ieșire',
|
|
184
|
+
[QueueType.PREDICTIVE_DIALER]: 'Dialer predictiv',
|
|
185
|
+
[QueueType.PROGRESSIVE_DIALER]: 'Dialer progresiv',
|
|
186
|
+
[QueueType.PREVIEW_DIALER]: 'Dialer previzualizare',
|
|
187
|
+
[QueueType.CHAT_INBOUND_QUEUE]: 'Coadă chat',
|
|
188
|
+
[QueueType.INBOUND_JOB_QUEUE]: 'Coadă sarcini intrare',
|
|
189
|
+
[QueueType.OUTBOUND_JOB_QUEUE]: 'Coadă sarcini ieșire',
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
agent: {
|
|
193
|
+
agent: 'Agent | Agenți',
|
|
194
|
+
status: {
|
|
195
|
+
[AgentStatus.Online]: 'Online',
|
|
196
|
+
[AgentStatus.Pause]: 'Pauză',
|
|
197
|
+
[AgentStatus.Offline]: 'Offline',
|
|
198
|
+
[snakeToCamel(AgentStatus.BreakOut)]: 'Pauză mare',
|
|
199
|
+
},
|
|
200
|
+
},
|
|
201
|
+
flow: {
|
|
202
|
+
name: 'Schemă flux | Scheme flux',
|
|
203
|
+
type: {
|
|
204
|
+
[EngineRoutingSchemaType.Chat]: 'Chat',
|
|
205
|
+
[EngineRoutingSchemaType.Voice]: 'Voce',
|
|
206
|
+
[EngineRoutingSchemaType.Service]: 'Serviciu',
|
|
207
|
+
[EngineRoutingSchemaType.Processing]: 'Formulare',
|
|
208
|
+
},
|
|
209
|
+
},
|
|
210
|
+
messengers: {
|
|
211
|
+
[ChatGatewayProvider.TELEGRAM_BOT]: 'Telegram Bot',
|
|
212
|
+
[ChatGatewayProvider.TELEGRAM_APP]: 'Aplicație Telegram',
|
|
213
|
+
[ChatGatewayProvider.MESSENGER]: 'Meta',
|
|
214
|
+
[ChatGatewayProvider.VIBER]: 'Viber',
|
|
215
|
+
[ChatGatewayProvider.WEBCHAT]: 'Web chat',
|
|
216
|
+
[ChatGatewayProvider.INFOBIP]: 'Infobip',
|
|
217
|
+
[ChatGatewayProvider.CUSTOM]: 'Gateway Chat Personalizat',
|
|
218
|
+
},
|
|
219
|
+
quickReplies: {
|
|
220
|
+
quickReplies: 'Răspuns rapid | Răspunsuri rapide',
|
|
221
|
+
quickRepliesEmpty: 'Nu există încă răspunsuri rapide',
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
channel: {
|
|
225
|
+
state: {
|
|
226
|
+
[ChannelState.Waiting]: 'În așteptare',
|
|
227
|
+
[ChannelState.Distribute]: 'Distribuie',
|
|
228
|
+
[ChannelState.Offering]: 'Se oferă',
|
|
229
|
+
[ChannelState.Answered]: 'Răspuns',
|
|
230
|
+
[ChannelState.Active]: 'Activ',
|
|
231
|
+
[ChannelState.Bridged]: 'Conectat',
|
|
232
|
+
[ChannelState.Hold]: 'În așteptare',
|
|
233
|
+
[ChannelState.Missed]: 'Pierdut',
|
|
234
|
+
[snakeToCamel(ChannelState.WrapTime)]: 'Timp de încheiere',
|
|
235
|
+
[ChannelState.Processing]: 'Se procesează',
|
|
236
|
+
[ChannelState.Transfer]: 'Transfer',
|
|
237
|
+
},
|
|
238
|
+
type: {
|
|
239
|
+
[ChannelType.Call]: 'Apel',
|
|
240
|
+
[ChannelType.Email]: 'Email',
|
|
241
|
+
[ChannelType.Chat]: 'Chat',
|
|
242
|
+
[ChannelType.Job]: 'Sarcină',
|
|
243
|
+
},
|
|
244
|
+
},
|
|
245
|
+
calls: {
|
|
246
|
+
direction: {
|
|
247
|
+
[CallDirection.Inbound]: 'Intrare',
|
|
248
|
+
[CallDirection.Outbound]: 'Ieșire',
|
|
249
|
+
},
|
|
250
|
+
},
|
|
251
|
+
cases: {
|
|
252
|
+
status: 'Status',
|
|
253
|
+
source: 'Sursă',
|
|
254
|
+
author: 'Autor',
|
|
255
|
+
reporter: 'Raportor',
|
|
256
|
+
impacted: 'Afectat',
|
|
257
|
+
assignee: 'Responsabil',
|
|
258
|
+
groupPerformers: 'Grup',
|
|
259
|
+
reason: 'Motiv | Motive',
|
|
260
|
+
rating: 'Evaluare',
|
|
261
|
+
service: 'Serviciu | Servicii',
|
|
262
|
+
selectAService: 'Selectează un serviciu',
|
|
263
|
+
appliedSLA: 'SLA aplicat',
|
|
264
|
+
appliedCondition: 'Condiție aplicată',
|
|
265
|
+
reactionTime: 'Timp de reacție',
|
|
266
|
+
resolutionTime: 'Timp de rezolvare',
|
|
267
|
+
actualReactionTime: 'Timp real de reacție',
|
|
268
|
+
actualResolutionTime: 'Timp real de rezolvare',
|
|
269
|
+
},
|
|
270
|
+
// describes Webitel FRONTEND applications + their navs
|
|
271
|
+
WebitelApplications: {
|
|
272
|
+
[WebitelApplications.AGENT]: { name: 'Spațiu Agent' },
|
|
273
|
+
[WebitelApplications.AUDIT]: {
|
|
274
|
+
name: 'Audit',
|
|
275
|
+
sections: {
|
|
276
|
+
[AuditorSections.Scorecards]: 'Fișe evaluare',
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
[WebitelApplications.CRM]: {
|
|
280
|
+
name: 'CRM',
|
|
281
|
+
sections: {
|
|
282
|
+
[CrmSections.Contacts]: 'Contacte',
|
|
283
|
+
[CrmSections.Cases]: 'Cazuri',
|
|
284
|
+
[CrmSections.Priorities]: 'Priorități',
|
|
285
|
+
[CrmSections.CloseReasonGroups]: 'Motive închidere',
|
|
286
|
+
[CrmSections.Statuses]: 'Statusuri',
|
|
287
|
+
[CrmSections.Slas]: 'SLA',
|
|
288
|
+
[CrmSections.ServiceCatalogs]: 'Cataloage servicii',
|
|
289
|
+
[CrmSections.Sources]: 'Surse cazuri',
|
|
290
|
+
[CrmSections.ContactGroups]: 'Grupuri contacte',
|
|
291
|
+
},
|
|
292
|
+
},
|
|
293
|
+
[WebitelApplications.HISTORY]: { name: 'Istoric apeluri' },
|
|
294
|
+
[WebitelApplications.ANALYTICS]: { name: 'Instrument vizualizare date' },
|
|
295
|
+
[WebitelApplications.SUPERVISOR]: {
|
|
296
|
+
name: 'Spațiu Supervizor',
|
|
297
|
+
sections: {
|
|
298
|
+
[SupervisorSections.Queues]: 'Cozi',
|
|
299
|
+
[SupervisorSections.Agents]: 'Agenți',
|
|
300
|
+
[SupervisorSections.ActiveCalls]: 'Apeluri active',
|
|
301
|
+
},
|
|
302
|
+
},
|
|
303
|
+
[WebitelApplications.ADMIN]: {
|
|
304
|
+
name: 'Admin',
|
|
305
|
+
sections: {
|
|
306
|
+
[AdminSections.Users]: 'Utilizatori',
|
|
307
|
+
[AdminSections.License]: 'Licențe',
|
|
308
|
+
[AdminSections.Devices]: 'Dispozitive',
|
|
309
|
+
[AdminSections.Flow]: 'Scheme flux',
|
|
310
|
+
[AdminSections.Dialplan]: 'Planuri apelare',
|
|
311
|
+
[AdminSections.Gateways]: 'Gateway-uri',
|
|
312
|
+
[AdminSections.Chatplan]: 'Planuri chat',
|
|
313
|
+
[AdminSections.ChatGateways]: 'Gateway-uri chat',
|
|
314
|
+
[AdminSections.Skills]: 'Abilități agent',
|
|
315
|
+
[AdminSections.Buckets]: 'Bucket-uri',
|
|
316
|
+
[AdminSections.Media]: 'Fișiere media',
|
|
317
|
+
[AdminSections.ShiftTemplates]: 'Șabloane tură',
|
|
318
|
+
[AdminSections.PauseTemplates]: 'Șabloane pauză',
|
|
319
|
+
[AdminSections.WorkingConditions]: 'Condiții lucru',
|
|
320
|
+
[AdminSections.Blacklist]: 'Liste',
|
|
321
|
+
[AdminSections.Calendars]: 'Calendare',
|
|
322
|
+
[AdminSections.Regions]: 'Locații',
|
|
323
|
+
[AdminSections.Communications]: 'Tipuri comunicare',
|
|
324
|
+
[AdminSections.PauseCause]: 'Statusuri agent',
|
|
325
|
+
[AdminSections.Agents]: 'Agenți',
|
|
326
|
+
[AdminSections.Teams]: 'Echipe',
|
|
327
|
+
[AdminSections.Resources]: 'Resurse',
|
|
328
|
+
[AdminSections.ResourceGroups]: 'Grupuri resurse',
|
|
329
|
+
[AdminSections.Queues]: 'Cozi',
|
|
330
|
+
[AdminSections.Storage]: 'Stocare',
|
|
331
|
+
[AdminSections.StoragePolicies]: 'Politici stocare',
|
|
332
|
+
[AdminSections.CognitiveProfiles]: 'Profile cognitive',
|
|
333
|
+
[AdminSections.EmailProfiles]: 'Profile email',
|
|
334
|
+
[AdminSections.SingleSignOn]: 'Autentificare unică',
|
|
335
|
+
[AdminSections.ImportCsv]: 'Import CSV din fișier',
|
|
336
|
+
[AdminSections.Triggers]: 'Declanșatori',
|
|
337
|
+
[AdminSections.Media]: 'Fișiere media',
|
|
338
|
+
[AdminSections.Roles]: 'Roluri',
|
|
339
|
+
[AdminSections.Objects]: 'Obiecte',
|
|
340
|
+
[AdminSections.Changelogs]: 'Jurnal modificări',
|
|
341
|
+
[AdminSections.Configuration]: 'Configurație',
|
|
342
|
+
[AdminSections.GlobalVariables]: 'Variabile globale',
|
|
343
|
+
[AdminSections.QuickReplies]: 'Răspunsuri rapide',
|
|
344
|
+
},
|
|
345
|
+
},
|
|
346
|
+
},
|
|
347
|
+
validation: {
|
|
348
|
+
required: 'Câmpul este obligatoriu',
|
|
349
|
+
numeric: 'Trebuie să fie numeric',
|
|
350
|
+
email: 'Trebuie să arate ca un email',
|
|
351
|
+
gatewayHostValidator: 'Trebuie să arate ca un IPv4 sau FQDN',
|
|
352
|
+
sipAccountValidator: 'Trebuie să arate ca un cont SIP',
|
|
353
|
+
ipValidator: 'Trebuie să arate ca un IPv4',
|
|
354
|
+
macValidator: 'Trebuie să arate ca un MAC',
|
|
355
|
+
minValue: 'Valoarea nu trebuie să fie mai mică decât',
|
|
356
|
+
maxValue: 'Valoarea nu trebuie să fie mai mare decât',
|
|
357
|
+
maxLength: 'Lungimea nu trebuie să fie mai mare de',
|
|
358
|
+
sameAs: 'Parolă incorectă',
|
|
359
|
+
requiredArrayValue: 'Matricea nu trebuie să fie goală',
|
|
360
|
+
minLength: ({ named }) => {
|
|
361
|
+
let text = 'Lungimea nu trebuie să fie mai mică de';
|
|
362
|
+
if (named('min')) {
|
|
363
|
+
text += ` ${named('min')}`;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
return text;
|
|
367
|
+
},
|
|
368
|
+
url: 'Trebuie să arate ca un URL',
|
|
369
|
+
websocketValidator: 'Trebuie să arate ca un URL WebSocket',
|
|
370
|
+
isRegExpMatched: 'Parola trebuie să se potrivească cu expresia regulată:',
|
|
371
|
+
regExpValidator: 'Această expresie regulată nu este validă',
|
|
372
|
+
domainValidator: 'Domeniu incorect',
|
|
373
|
+
decimalValidator:
|
|
374
|
+
'Precizia zecimală nu trebuie să fie mai mare de { count } zecimale',
|
|
375
|
+
latinWithNumber:
|
|
376
|
+
'Codul trebuie să conțină doar litere (A-Z, a-z) și cifre (0-9), și trebuie să înceapă cu o literă',
|
|
377
|
+
integer: 'Câmpul trebuie să conțină doar numere întregi',
|
|
378
|
+
nameAlreadyInUse: 'Acest nume este deja folosit',
|
|
379
|
+
},
|
|
380
|
+
webitelUI: {
|
|
381
|
+
searchBar: {
|
|
382
|
+
placeholder: 'Caută',
|
|
383
|
+
settingsHint: 'Mod căutare',
|
|
384
|
+
variableSearchHint: 'Format interogare: "cheie=valoare"',
|
|
385
|
+
},
|
|
386
|
+
timepicker: {
|
|
387
|
+
day: 'Zi:',
|
|
388
|
+
hour: 'Oră:',
|
|
389
|
+
min: 'Min:',
|
|
390
|
+
sec: 'Sec:',
|
|
391
|
+
},
|
|
392
|
+
datetimepicker: {
|
|
393
|
+
lastHour: 'Ultima oră',
|
|
394
|
+
lastDay: 'Ultima zi',
|
|
395
|
+
},
|
|
396
|
+
pagination: {
|
|
397
|
+
sizeText: 'Rânduri pe pagină:',
|
|
398
|
+
prev: 'Anterior',
|
|
399
|
+
next: 'Următor',
|
|
400
|
+
},
|
|
401
|
+
appNavigator: {
|
|
402
|
+
title: 'Aplicații Webitel',
|
|
403
|
+
admin: 'Admin',
|
|
404
|
+
agent: 'Agent',
|
|
405
|
+
supervisor: 'Supervizor',
|
|
406
|
+
audit: 'Audit',
|
|
407
|
+
history: 'Istoric',
|
|
408
|
+
grafana: 'Grafana',
|
|
409
|
+
crm: 'CRM',
|
|
410
|
+
},
|
|
411
|
+
headerActions: {
|
|
412
|
+
account: 'Cont',
|
|
413
|
+
docs: 'Documentație',
|
|
414
|
+
settings: 'Setări',
|
|
415
|
+
logout: 'Deconectare',
|
|
416
|
+
buildVersion: 'Versiune build',
|
|
417
|
+
},
|
|
418
|
+
tableActions: {
|
|
419
|
+
filterReset: 'Resetează filtrele',
|
|
420
|
+
columnSelect: 'Selectează coloanele',
|
|
421
|
+
refreshTable: 'Reîmprospătează tabelul',
|
|
422
|
+
expandFilters: 'Extinde filtrele',
|
|
423
|
+
},
|
|
424
|
+
tableColumnSelect: {
|
|
425
|
+
title: 'Selectează coloanele vizibile',
|
|
426
|
+
},
|
|
427
|
+
statusSelect: {
|
|
428
|
+
online: 'Online',
|
|
429
|
+
pause: 'Pauză',
|
|
430
|
+
offline: 'Offline',
|
|
431
|
+
breakOut: 'Pauză mare',
|
|
432
|
+
},
|
|
433
|
+
iconAction: {
|
|
434
|
+
hints: {
|
|
435
|
+
[IconAction.DELETE]: ({ linked }) => linked('reusable.delete'),
|
|
436
|
+
[IconAction.EDIT]: ({ linked }) => linked('reusable.edit'),
|
|
437
|
+
[IconAction.ADD]: ({ linked }) => linked('reusable.add'),
|
|
438
|
+
[IconAction.HISTORY]: ({ linked }) => linked('reusable.history'),
|
|
439
|
+
[IconAction.DOWNLOAD]: ({ linked }) => linked('reusable.download'),
|
|
440
|
+
[IconAction.FILTERS]: ({ linked }) => linked('reusable.filter'),
|
|
441
|
+
[IconAction.COLUMNS]: 'Selectează coloanele',
|
|
442
|
+
[IconAction.VARIABLES]: 'Selectează coloanele variabile',
|
|
443
|
+
[IconAction.REFRESH]: ({ linked }) => linked('reusable.refresh'),
|
|
444
|
+
[IconAction.EXPAND]: ({ linked }) => linked('reusable.expand'),
|
|
445
|
+
[IconAction.COLLAPSE]: ({ linked }) => linked('reusable.collapse'),
|
|
446
|
+
[IconAction.CLOSE]: ({ linked }) => linked('reusable.close'),
|
|
447
|
+
[IconAction.CLEAR]: ({ linked }) =>
|
|
448
|
+
linked('webitelUI.tableActions.filterReset'),
|
|
449
|
+
[IconAction.ADD_FILTER]: ({ linked }) => linked('reusable.add'),
|
|
450
|
+
[IconAction.SAVE]: ({ linked }) => linked('reusable.save'),
|
|
451
|
+
[IconAction.CANCEL]: ({ linked }) => linked('reusable.cancel'),
|
|
452
|
+
[IconAction.SAVE_PRESET]: ({ linked }) => {
|
|
453
|
+
return `${linked('reusable.save')} ${linked(
|
|
454
|
+
'webitelUI.filters.presets.preset',
|
|
455
|
+
).toLowerCase()}`;
|
|
456
|
+
},
|
|
457
|
+
[IconAction.APPLY_PRESET]: ({ linked }) => {
|
|
458
|
+
return `${linked('vocabulary.apply')} ${linked(
|
|
459
|
+
'webitelUI.filters.presets.preset',
|
|
460
|
+
).toLowerCase()}`;
|
|
461
|
+
},
|
|
462
|
+
[IconAction.ADD_CONTACT]: ({ linked }) => {
|
|
463
|
+
return `${linked('reusable.add')} contacte`;
|
|
464
|
+
},
|
|
465
|
+
},
|
|
466
|
+
},
|
|
467
|
+
errorPages: {
|
|
468
|
+
goBack: 'Înapoi',
|
|
469
|
+
page403: {
|
|
470
|
+
title: 'Acces interzis',
|
|
471
|
+
text: 'Ne pare rău, nu aveți suficiente privilegii pentru a vedea această pagină.',
|
|
472
|
+
},
|
|
473
|
+
page404: {
|
|
474
|
+
title: 'Se pare că v-ați pierdut',
|
|
475
|
+
text: 'Ne pare rău, nu putem găsi pagina dorită.',
|
|
476
|
+
},
|
|
477
|
+
},
|
|
478
|
+
copyAction: {
|
|
479
|
+
copy: 'Copiază',
|
|
480
|
+
copied: 'Copiat în clipboard!',
|
|
481
|
+
},
|
|
482
|
+
auditForm: {
|
|
483
|
+
question: 'Criteriu',
|
|
484
|
+
option: 'Opțiune | Opțiuni',
|
|
485
|
+
score: 'Scor | Scoruri',
|
|
486
|
+
addQuestion: 'Adaugă criteriu',
|
|
487
|
+
answerType: 'Tip răspuns',
|
|
488
|
+
type: {
|
|
489
|
+
options: 'Opțiuni',
|
|
490
|
+
score: 'Scor',
|
|
491
|
+
},
|
|
492
|
+
clearSelection: 'Șterge selecția',
|
|
493
|
+
},
|
|
494
|
+
deleteConfirmationPopup: {
|
|
495
|
+
title: 'Confirmă ștergerea',
|
|
496
|
+
askingAlert:
|
|
497
|
+
'Sigur doriți să ștergeți {subject}? Această acțiune nu poate fi anulată.',
|
|
498
|
+
tableAskingAlert:
|
|
499
|
+
'Sigur doriți să ștergeți {count} înregistrare? | Sigur doriți să ștergeți {count} înregistrări?',
|
|
500
|
+
deleteAll: 'TOATE',
|
|
501
|
+
},
|
|
502
|
+
dummy: {
|
|
503
|
+
text: 'Nu există încă înregistrări',
|
|
504
|
+
},
|
|
505
|
+
empty: {
|
|
506
|
+
text: {
|
|
507
|
+
empty: 'Nu există încă înregistrări',
|
|
508
|
+
filters:
|
|
509
|
+
'Din păcate, nicio înregistrare nu se potrivește criteriilor dvs.',
|
|
510
|
+
},
|
|
511
|
+
},
|
|
512
|
+
agentStatusSelect: {
|
|
513
|
+
pauseCausePopup: {
|
|
514
|
+
title: 'Selectează un motiv de pauză',
|
|
515
|
+
min: 'Min',
|
|
516
|
+
unlimited: 'Nelimitat',
|
|
517
|
+
},
|
|
518
|
+
statusSelectErrorPopup: {
|
|
519
|
+
title: 'Atenție',
|
|
520
|
+
message:
|
|
521
|
+
'Limita pentru agenții care pot lua pauză a fost depășită. Pauza nu este disponibilă momentan.',
|
|
522
|
+
},
|
|
523
|
+
},
|
|
524
|
+
saveFailedPopup: {
|
|
525
|
+
title: 'Salvarea a eșuat',
|
|
526
|
+
label: 'Ceva nu a mers bine, vă rugăm să încercați din nou',
|
|
527
|
+
exportToJson: 'Exportă în JSON',
|
|
528
|
+
},
|
|
529
|
+
filters: {
|
|
530
|
+
datetime: {
|
|
531
|
+
[RelativeDatetimeValue.Today]: 'Astăzi',
|
|
532
|
+
[RelativeDatetimeValue.ThisWeek]: 'Această săptămână',
|
|
533
|
+
[RelativeDatetimeValue.ThisMonth]: 'Această lună',
|
|
534
|
+
[RelativeDatetimeValue.Custom]: 'Interval personalizat',
|
|
535
|
+
},
|
|
536
|
+
addFilter: ({ linked }) => {
|
|
537
|
+
return `${linked('reusable.add')} un ${linked(
|
|
538
|
+
'reusable.filter',
|
|
539
|
+
).toLowerCase()}`;
|
|
540
|
+
},
|
|
541
|
+
filterName: ({ linked }) => {
|
|
542
|
+
return linked('vocabulary.column');
|
|
543
|
+
},
|
|
544
|
+
filterValue: ({ linked }) => {
|
|
545
|
+
return linked('vocabulary.values');
|
|
546
|
+
},
|
|
547
|
+
filterValueFrom: ({ linked }) => {
|
|
548
|
+
const from = linked('reusable.from').toLowerCase();
|
|
549
|
+
return `${linked('vocabulary.values')} ${from}`;
|
|
550
|
+
},
|
|
551
|
+
filterLabel: ({ linked }) => {
|
|
552
|
+
return linked('vocabulary.labels');
|
|
553
|
+
},
|
|
554
|
+
actualReactionTime: ({ linked }) => {
|
|
555
|
+
return linked('cases.actualReactionTime');
|
|
556
|
+
},
|
|
557
|
+
actualResolutionTime: ({ linked }) => {
|
|
558
|
+
return linked('cases.actualResolutionTime');
|
|
559
|
+
},
|
|
560
|
+
agent: ({ linked }) => {
|
|
561
|
+
return linked('objects.agent.agent');
|
|
562
|
+
},
|
|
563
|
+
amdResult: ({ linked }) => {
|
|
564
|
+
return linked('objects.amdResult');
|
|
565
|
+
},
|
|
566
|
+
assignee: ({ linked }) => {
|
|
567
|
+
return linked('cases.assignee');
|
|
568
|
+
},
|
|
569
|
+
author: ({ linked }) => {
|
|
570
|
+
return linked('cases.author');
|
|
571
|
+
},
|
|
572
|
+
cause: ({ linked }) => {
|
|
573
|
+
return linked('objects.hangupCause');
|
|
574
|
+
},
|
|
575
|
+
closeReasonGroups: ({ linked }) => {
|
|
576
|
+
return linked('cases.reason');
|
|
577
|
+
},
|
|
578
|
+
contact: ({ linked }) => {
|
|
579
|
+
return linked('vocabulary.contact');
|
|
580
|
+
},
|
|
581
|
+
contactGroup: ({ linked }) => {
|
|
582
|
+
return linked('cases.groupPerformers');
|
|
583
|
+
},
|
|
584
|
+
createdAt: ({ linked }) => {
|
|
585
|
+
return linked('reusable.createdAt');
|
|
586
|
+
},
|
|
587
|
+
createdAtFrom: ({ linked }) => {
|
|
588
|
+
return linked('reusable.from');
|
|
589
|
+
},
|
|
590
|
+
createdAtTo: ({ linked }) => {
|
|
591
|
+
return linked('reusable.to');
|
|
592
|
+
},
|
|
593
|
+
direction: ({ linked }) => {
|
|
594
|
+
return linked('objects.direction');
|
|
595
|
+
},
|
|
596
|
+
gateway: ({ linked }) => {
|
|
597
|
+
return linked('objects.gateway');
|
|
598
|
+
},
|
|
599
|
+
grantee: ({ linked }) => {
|
|
600
|
+
return linked('objects.grantee');
|
|
601
|
+
},
|
|
602
|
+
hasAttachment: ({ linked }) => {
|
|
603
|
+
return linked('objects.attachment');
|
|
604
|
+
},
|
|
605
|
+
hasFile: ({ linked }) => {
|
|
606
|
+
return linked('objects.hasRecording');
|
|
607
|
+
},
|
|
608
|
+
hasTranscription: ({ linked }) => {
|
|
609
|
+
return linked('objects.transcription');
|
|
610
|
+
},
|
|
611
|
+
hasUser: ({ linked }) => {
|
|
612
|
+
return linked('objects.user');
|
|
613
|
+
},
|
|
614
|
+
impacted: ({ linked }) => {
|
|
615
|
+
return linked('cases.impacted');
|
|
616
|
+
},
|
|
617
|
+
contactLabel: ({ linked }) => {
|
|
618
|
+
return linked('vocabulary.labels');
|
|
619
|
+
},
|
|
620
|
+
contactOwner: ({ linked }) => {
|
|
621
|
+
return linked('objects.owner');
|
|
622
|
+
},
|
|
623
|
+
priority: ({ linked }) => {
|
|
624
|
+
return linked('vocabulary.priority');
|
|
625
|
+
},
|
|
626
|
+
queue: ({ linked }) => {
|
|
627
|
+
return linked('objects.queue.queue');
|
|
628
|
+
},
|
|
629
|
+
rated: 'Evaluat',
|
|
630
|
+
ratedBy: ({ linked }) => {
|
|
631
|
+
return linked('objects.ratedBy');
|
|
632
|
+
},
|
|
633
|
+
rating: ({ linked }) => {
|
|
634
|
+
return linked('cases.rating');
|
|
635
|
+
},
|
|
636
|
+
reactionTime: ({ linked }) => {
|
|
637
|
+
return linked('cases.reactionTime');
|
|
638
|
+
},
|
|
639
|
+
reporter: ({ linked }) => {
|
|
640
|
+
return linked('cases.reporter');
|
|
641
|
+
},
|
|
642
|
+
resolutionTime: ({ linked }) => {
|
|
643
|
+
return linked('cases.resolutionTime');
|
|
644
|
+
},
|
|
645
|
+
score: ({ linked }) => {
|
|
646
|
+
return linked('webitelUI.auditForm.score');
|
|
647
|
+
},
|
|
648
|
+
service: ({ linked }) => {
|
|
649
|
+
return linked('cases.service');
|
|
650
|
+
},
|
|
651
|
+
sla: ({ linked }) => {
|
|
652
|
+
return linked('cases.appliedSLA');
|
|
653
|
+
},
|
|
654
|
+
slaCondition: ({ linked }) => {
|
|
655
|
+
return linked('cases.appliedCondition');
|
|
656
|
+
},
|
|
657
|
+
source: ({ linked }) => {
|
|
658
|
+
return linked('cases.source');
|
|
659
|
+
},
|
|
660
|
+
status: ({ linked }) => {
|
|
661
|
+
return linked('cases.status');
|
|
662
|
+
},
|
|
663
|
+
tag: ({ linked }) => {
|
|
664
|
+
return linked('vocabulary.tag');
|
|
665
|
+
},
|
|
666
|
+
talkDuration: ({ linked }) => {
|
|
667
|
+
return linked('objects.talkDuration');
|
|
668
|
+
},
|
|
669
|
+
team: ({ linked }) => {
|
|
670
|
+
return linked('objects.team');
|
|
671
|
+
},
|
|
672
|
+
totalDuration: ({ linked }) => {
|
|
673
|
+
return linked('objects.totalDuration');
|
|
674
|
+
},
|
|
675
|
+
user: ({ linked }) => {
|
|
676
|
+
return linked('objects.user');
|
|
677
|
+
},
|
|
678
|
+
variable: ({ linked }) => {
|
|
679
|
+
return linked('vocabulary.variables');
|
|
680
|
+
},
|
|
681
|
+
presets: {
|
|
682
|
+
preset: 'Șablon | Șabloane',
|
|
683
|
+
overwritePresetTitle: 'Un șablon cu acest nume există deja.',
|
|
684
|
+
overwritePresetText: 'Doriți să-l înlocuiți?',
|
|
685
|
+
notifications: {
|
|
686
|
+
success: {
|
|
687
|
+
update: ({ linked }) => {
|
|
688
|
+
return linked('systemNotifications.success.update', {
|
|
689
|
+
entity: linked('filters.presets.preset'),
|
|
690
|
+
});
|
|
691
|
+
},
|
|
692
|
+
create: ({ linked }) => {
|
|
693
|
+
return linked('systemNotifications.success.create', {
|
|
694
|
+
entity: linked('filters.presets.preset'),
|
|
695
|
+
});
|
|
696
|
+
},
|
|
697
|
+
delete: ({ linked }) => {
|
|
698
|
+
return linked('systemNotifications.success.delete', {
|
|
699
|
+
entity: linked('filters.presets.preset'),
|
|
700
|
+
});
|
|
701
|
+
},
|
|
702
|
+
},
|
|
703
|
+
},
|
|
704
|
+
},
|
|
705
|
+
},
|
|
706
|
+
},
|
|
707
|
+
systemNotifications: {
|
|
708
|
+
success: {
|
|
709
|
+
update: ({ named }) =>
|
|
710
|
+
`${named('entity').toLowerCase()} a fost actualizat`,
|
|
711
|
+
create: ({ named }) => `${named('entity').toLowerCase()} a fost salvat`,
|
|
712
|
+
delete: ({ named }) => `${named('entity').toLowerCase()} a fost șters`,
|
|
713
|
+
},
|
|
714
|
+
},
|
|
715
|
+
errorNotifications: {
|
|
716
|
+
chatHistoryApi: 'A apărut o eroare la încărcarea istoricului chat-ului',
|
|
717
|
+
markChatProcessed: 'Nu s-a putut muta chat-ul în "Închis"',
|
|
718
|
+
},
|
|
719
|
+
};
|