@webitel/ui-sdk 3.0.11 → 3.0.12

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.
@@ -1,282 +1,282 @@
1
1
  import {
2
- AgentStatus,
3
- CallDirection,
4
- ChannelState,
5
- ChannelType, EngineRoutingSchemaType,
6
- } from 'webitel-sdk';
7
- import { QueueType } from 'webitel-sdk/esm2015/enums';
8
- import AdminSections from '../../enums/WebitelApplications/AdminSections.enum';
9
- import SupervisorSections from '../../enums/WebitelApplications/SupervisorSections.enum';
10
- import WebitelApplications from '../../enums/WebitelApplications/WebitelApplications.enum';
11
- import AuditorSections
12
- from '../../enums/WebitelApplications/AuditorSections.enum';
13
- import { snakeToCamel } from '../../scripts/caseConverters';
14
-
15
- export default {
16
- // describes reusable buttons, actions, default titles, and other ui elements
17
- reusable: {
18
- total: 'Total',
19
- ok: 'Ok',
20
- save: 'Guardar',
21
- close: 'Cerrar',
22
- add: 'Agregar',
23
- cancel: 'Cancelar',
24
- import: 'Importación',
25
- export: 'Exportación',
26
- true: '',
27
- delete: 'Eliminar',
28
- search: 'Búsqueda',
29
- open: 'Abrir',
30
- name: 'Nombre',
31
- expand: 'Expandir',
32
- collapse: 'Reducir',
33
- generate: 'Generar',
34
- lang: {
35
- en: 'English',
36
- es: 'Español',
37
- ru: 'Русский',
38
- ua: 'Українська',
39
- },
40
- from: 'De',
41
- to: 'Hasta',
42
- tts: 'Text-to-Speech',
43
- state: 'Estado',
44
- refresh: 'Actualizar',
45
- retry: 'Repetir',
46
- reset: 'Reiniciar',
47
- downloadAll: 'Descargar todo',
48
- warning: 'Aviso',
49
- doNotSave: 'No guardar',
50
- },
51
- vocabulary: {
52
- language: 'Idioma',
53
- voice: 'Voz',
54
- format: 'Formáto',
55
- text: 'Texto',
56
- yes: 'Sí',
57
- no: 'No',
58
- description: 'Descripción',
59
- login: 'Acceso',
60
- host: 'Host',
61
- time: 'Tiempo',
62
- channel: 'Canal',
63
- file: 'Archivo',
64
- logout: 'Salir',
65
- priority: 'Prioridad',
66
- variables: 'Intercambiable | Intercambiables',
67
- type: 'Tipo',
68
- tag: 'Etiqueta | Etiquetas',
69
- output: 'Salida | Salidas',
70
- values: 'Valor | Valores',
71
- keys: 'Clave | Claves',
72
- duration: 'Duración',
73
- errors: 'Error | Errores',
2
+ AgentStatus,
3
+ CallDirection,
4
+ ChannelState,
5
+ ChannelType,
6
+ EngineRoutingSchemaType,
7
+ } from 'webitel-sdk';
8
+ import { QueueType } from 'webitel-sdk/esm2015/enums';
9
+ import AdminSections from '../../enums/WebitelApplications/AdminSections.enum';
10
+ import AuditorSections
11
+ from '../../enums/WebitelApplications/AuditorSections.enum';
12
+ import SupervisorSections
13
+ from '../../enums/WebitelApplications/SupervisorSections.enum';
14
+ import WebitelApplications
15
+ from '../../enums/WebitelApplications/WebitelApplications.enum';
16
+ import { snakeToCamel } from '../../scripts/caseConverters';
17
+
18
+ export default {
19
+ // describes reusable buttons, actions, default titles, and other ui elements
20
+ reusable: {
21
+ total: 'Total',
22
+ ok: 'Ok',
23
+ save: 'Guardar',
24
+ close: 'Cerrar',
25
+ add: 'Agregar',
26
+ cancel: 'Cancelar',
27
+ import: 'Importación',
28
+ export: 'Exportación',
29
+ true: '',
30
+ delete: 'Eliminar',
31
+ search: 'Búsqueda',
32
+ open: 'Abrir',
33
+ name: 'Nombre',
34
+ expand: 'Expandir',
35
+ collapse: 'Reducir',
36
+ generate: 'Generar',
37
+ lang: {
38
+ en: 'English',
39
+ es: 'Español',
40
+ ru: 'Русский',
41
+ ua: 'Українська',
74
42
  },
75
- // date-related texts
76
- date: {
77
- sec: 'Seg',
78
- timezone: 'Zona horaria | Zonas horarias',
79
- },
80
- // describes Webitel system entities
81
- objects: {
82
- team: 'Equipo | Equipos',
83
- supervisor: 'Supervisor | Supervisores',
84
- auditor: 'Auditor | Auditores',
85
- region: 'Región | Regiones',
86
- queue: {
87
- type: {
88
- [QueueType.INBOUND_QUEUE]: 'Cola entrante',
89
- [QueueType.OFFLINE_QUEUE]: 'Cola fuera de línea',
90
- [QueueType.OUTBOUND_IVR_QUEUE]: 'IVR saliente',
91
- [QueueType.PREDICTIVE_DIALER]: 'Marcador predictivo',
92
- [QueueType.PROGRESSIVE_DIALER]: 'Marcador progresivo',
93
- [QueueType.PREVIEW_DIALER]: 'Vista previa de llamadas',
94
- [QueueType.CHAT_INBOUND_QUEUE]: 'Cola de chats',
95
- [QueueType.INBOUND_JOB_QUEUE]: 'Cola de tareas entrante',
96
- [QueueType.OUTBOUND_JOB_QUEUE]: 'Cola de tareas saliente',
97
- },
98
- },
99
- agent: {
100
- status: {
101
- [AgentStatus.Online]: 'En línea',
102
- [AgentStatus.Pause]: 'Pausa',
103
- [AgentStatus.Offline]: 'Desconectado',
104
- [snakeToCamel(AgentStatus.BreakOut)]: 'Pausa forzada',
105
- },
106
- },
107
- flow: {
108
- type: {
109
- [EngineRoutingSchemaType.Chat]: 'Chat',
110
- [EngineRoutingSchemaType.Voice]: 'Voz',
111
- [EngineRoutingSchemaType.Service]: 'Servicio',
112
- [EngineRoutingSchemaType.Processing]: 'Procesamiento',
113
- },
43
+ from: 'De',
44
+ to: 'Hasta',
45
+ tts: 'Text-to-Speech',
46
+ state: 'Estado',
47
+ refresh: 'Actualizar',
48
+ retry: 'Repetir',
49
+ reset: 'Reiniciar',
50
+ downloadAll: 'Descargar todo',
51
+ warning: 'Aviso',
52
+ doNotSave: 'No guardar',
53
+ },
54
+ vocabulary: {
55
+ language: 'Idioma',
56
+ voice: 'Voz',
57
+ format: 'Formáto',
58
+ text: 'Texto',
59
+ yes: '',
60
+ no: 'No',
61
+ description: 'Descripción',
62
+ login: 'Acceso',
63
+ host: 'Host',
64
+ time: 'Tiempo',
65
+ channel: 'Canal',
66
+ file: 'Archivo',
67
+ logout: 'Salir',
68
+ priority: 'Prioridad',
69
+ variables: 'Intercambiable | Intercambiables',
70
+ type: 'Tipo',
71
+ tag: 'Etiqueta | Etiquetas',
72
+ output: 'Salida | Salidas',
73
+ values: 'Valor | Valores',
74
+ keys: 'Clave | Claves',
75
+ duration: 'Duración',
76
+ errors: 'Error | Errores',
77
+ },
78
+ // date-related texts
79
+ date: {
80
+ sec: 'Seg',
81
+ timezone: 'Zona horaria | Zonas horarias',
82
+ },
83
+ // describes Webitel system entities
84
+ objects: {
85
+ team: 'Equipo | Equipos',
86
+ supervisor: 'Supervisor | Supervisores',
87
+ auditor: 'Auditor | Auditores',
88
+ region: 'Región | Regiones',
89
+ queue: {
90
+ type: {
91
+ [QueueType.INBOUND_QUEUE]: 'Cola entrante',
92
+ [QueueType.OFFLINE_QUEUE]: 'Cola fuera de línea',
93
+ [QueueType.OUTBOUND_IVR_QUEUE]: 'IVR saliente',
94
+ [QueueType.PREDICTIVE_DIALER]: 'Marcador predictivo',
95
+ [QueueType.PROGRESSIVE_DIALER]: 'Marcador progresivo',
96
+ [QueueType.PREVIEW_DIALER]: 'Vista previa de llamadas',
97
+ [QueueType.CHAT_INBOUND_QUEUE]: 'Cola de chats',
98
+ [QueueType.INBOUND_JOB_QUEUE]: 'Cola de tareas entrante',
99
+ [QueueType.OUTBOUND_JOB_QUEUE]: 'Cola de tareas saliente',
114
100
  },
115
101
  },
116
- channel: {
117
- state: {
118
- [ChannelState.Waiting]: 'Espera',
119
- [ChannelState.Distribute]: 'Reservado',
120
- [ChannelState.Offering]: 'Distribución',
121
- [ChannelState.Answered]: 'Respondida',
122
- [ChannelState.Active]: 'Activo',
123
- [ChannelState.Bridged]: 'Conectado',
124
- [ChannelState.Hold]: 'Espera',
125
- [ChannelState.Missed]: 'Perdida',
126
- [snakeToCamel(ChannelState.WrapTime)]: 'Post-procesamiento',
127
- [ChannelState.Processing]: 'Procesamiento',
128
- [ChannelState.Transfer]: 'Transferencia',
102
+ agent: {
103
+ status: {
104
+ [AgentStatus.Online]: 'En línea',
105
+ [AgentStatus.Pause]: 'Pausa',
106
+ [AgentStatus.Offline]: 'Desconectado',
107
+ [snakeToCamel(AgentStatus.BreakOut)]: 'Pausa forzada',
129
108
  },
109
+ },
110
+ flow: {
130
111
  type: {
131
- [ChannelType.Call]: 'Llamada',
132
- [ChannelType.Email]: 'Correo electrónico',
133
- [ChannelType.Chat]: 'Chat',
112
+ [EngineRoutingSchemaType.Chat]: 'Chat',
113
+ [EngineRoutingSchemaType.Voice]: 'Voz',
114
+ [EngineRoutingSchemaType.Service]: 'Servicio',
115
+ [EngineRoutingSchemaType.Processing]: 'Procesamiento',
134
116
  },
135
117
  },
136
- calls: {
137
- direction: {
138
- [CallDirection.Inbound]: 'Entrante | Entrantes',
139
- [CallDirection.Outbound]: 'Saliente | Salientes',
140
- },
118
+ },
119
+ channel: {
120
+ state: {
121
+ [ChannelState.Waiting]: 'Espera',
122
+ [ChannelState.Distribute]: 'Reservado',
123
+ [ChannelState.Offering]: 'Distribución',
124
+ [ChannelState.Answered]: 'Respondida',
125
+ [ChannelState.Active]: 'Activo',
126
+ [ChannelState.Bridged]: 'Conectado',
127
+ [ChannelState.Hold]: 'Espera',
128
+ [ChannelState.Missed]: 'Perdida',
129
+ [snakeToCamel(ChannelState.WrapTime)]: 'Post-procesamiento',
130
+ [ChannelState.Processing]: 'Procesamiento',
131
+ [ChannelState.Transfer]: 'Transferencia',
141
132
  },
142
- // describes Webitel FRONTEND applications + their navs
143
- WebitelApplications: {
144
- [WebitelApplications.AGENT]: { name: 'Agent Workspace' },
145
- [WebitelApplications.AUDIT]: {
146
- name: 'Audit',
147
- section: {
148
- [AuditorSections.SCORECARDS]: 'Formularios',
149
- },
150
- },
151
- [WebitelApplications.HISTORY]: { name: 'Call History' },
152
- [WebitelApplications.ANALYTICS]: { name: 'Data Visualisation Tool' },
153
- [WebitelApplications.SUPERVISOR]: {
154
- name: 'Supervisor Workspace',
155
- sections: {
156
- [SupervisorSections.QUEUES]: 'Colas',
157
- [SupervisorSections.AGENTS]: 'Operadores',
158
- [SupervisorSections.ACTIVE_CALLS]: 'Llamadas activas',
159
- },
160
- },
161
- [WebitelApplications.ADMIN]: {
162
- name: 'Admin',
163
- sections: {
164
- [AdminSections.USERS]: 'Usuarios',
165
- [AdminSections.LICENSE]: 'Licencias',
166
- [AdminSections.DEVICES]: 'Dispositivos',
167
- [AdminSections.FLOW]: 'Esquemas',
168
- [AdminSections.DIALPLAN]: 'Reglas de la marcación saliente',
169
- [AdminSections.GATEWAYS]: 'Puertas de enlace',
170
- [AdminSections.CHATPLAN]: 'Reglas de enrutamiento de mensajes de texto',
171
- [AdminSections.CHAT_GATEWAYS]: 'Puertas de enlace de texto',
172
- [AdminSections.SKILLS]: 'Habilidades del operador',
173
- [AdminSections.BUCKETS]: 'Cestas',
174
- [AdminSections.MEDIA]: 'Archivos multimedia',
175
- [AdminSections.BLACKLIST]: 'Listas de llamadas',
176
- [AdminSections.CALENDARS]: 'Calendarios',
177
- [AdminSections.REGIONS]: 'Ubicación',
178
- [AdminSections.COMMUNICATIONS]: 'Tipos de comunicación',
179
- [AdminSections.PAUSE_CAUSE]: 'Estados del operador',
180
- [AdminSections.AGENTS]: 'Operadores',
181
- [AdminSections.TEAMS]: 'Equipos',
182
- [AdminSections.RESOURCES]: 'Recursos',
183
- [AdminSections.RESOURCE_GROUPS]: 'Grupos de recursos',
184
- [AdminSections.QUEUES]: 'Colas',
185
- [AdminSections.STORAGE]: 'Almacenamiento',
186
- [AdminSections.COGNITIVE_PROFILES]: 'Perfiles de voz',
187
- [AdminSections.EMAIL_PROFILES]: 'Perfiles de correo electrónico',
188
- [AdminSections.IMPORT_CSV]: 'Importación de datos de archivos CSV',
189
- [AdminSections.TRIGGERS]: 'Activadores',
190
- [AdminSections.ROLES]: 'Funciones',
191
- [AdminSections.OBJECTS]: 'Secciones',
192
- },
193
- },
133
+ type: {
134
+ [ChannelType.Call]: 'Llamada',
135
+ [ChannelType.Email]: 'Correo electrónico',
136
+ [ChannelType.Chat]: 'Chat',
194
137
  },
195
- validation: {
196
- required: 'Campo requerido',
197
- numeric: 'Valores numéricos requeridos',
198
- email: 'Correo electrónico requerido',
199
- gatewayHostValidator: 'IPv4 o FQDN requerido',
200
- sipAccountValidator: 'Cuenta SIP requerida',
201
- ipValidator: 'IPv4 requerido',
202
- macValidator: 'dirección MAC requerida',
203
- minValue: 'El valor no debe ser menor que',
204
- maxValue: 'El valor no debe ser mayor que',
205
- sameAs: 'Contraseña no válida',
206
- requiredArrayValue: 'El campo no debe estar vacío',
207
- minLength: 'El número de caracteres no debe ser menor que',
208
- url: 'Se debe ingresar una URL válida',
138
+ },
139
+ calls: {
140
+ direction: {
141
+ [CallDirection.Inbound]: 'Entrante | Entrantes',
142
+ [CallDirection.Outbound]: 'Saliente | Salientes',
209
143
  },
210
- webitelUI: {
211
- searchBar: {
212
- placeholder: 'Búsqueda',
213
- },
214
- timepicker: {
215
- hour: 'Hora:',
216
- min: 'Min:',
217
- sec: 'Seg:',
218
- },
219
- datetimepicker: {
220
- lastHour: 'Última hora',
221
- lastDay: 'Último día',
222
- },
223
- pagination: {
224
- sizeText: 'Registros en la página:',
225
- prev: 'Atrás',
226
- next: 'Adelante',
227
- },
228
- appNavigator: {
229
- title: 'Aplicaciones de Webitel',
230
- admin: 'Admin',
231
- agent: 'Agent Workspace',
232
- supervisor: 'Supervisor Workspace',
233
- audit: 'Audit',
234
- history: 'Call History',
235
- grafana: 'Grafana',
236
- },
237
- headerActions: {
238
- account: 'Cuenta',
239
- docs: 'Documentación',
240
- settings: 'Ajustes',
241
- logout: 'Salir',
242
- buildVersion: 'Versión de compilación',
144
+ },
145
+ // describes Webitel FRONTEND applications + their navs
146
+ WebitelApplications: {
147
+ [WebitelApplications.AGENT]: { name: 'Agent Workspace' },
148
+ [WebitelApplications.AUDIT]: {
149
+ name: 'Audit',
150
+ section: {
151
+ [AuditorSections.SCORECARDS]: 'Formularios',
243
152
  },
244
- tableActions: {
245
- filterReset: 'Reiniciar filtros',
246
- columnSelect: 'Agregar columnas',
247
- refreshTable: 'Actualizar',
248
- expandFilters: 'Expandir filtros',
249
- },
250
- tableColumnSelect: {
251
- title: 'Seleccione columnas mostradas',
252
- },
253
- statusSelect: {
254
- online: 'En línea',
255
- pause: 'Pausa',
256
- offline: 'Desconectado',
257
- breakOut: 'Pausa forzada',
153
+ },
154
+ [WebitelApplications.HISTORY]: { name: 'Call History' },
155
+ [WebitelApplications.ANALYTICS]: { name: 'Data Visualisation Tool' },
156
+ [WebitelApplications.SUPERVISOR]: {
157
+ name: 'Supervisor Workspace',
158
+ sections: {
159
+ [SupervisorSections.QUEUES]: 'Colas',
160
+ [SupervisorSections.AGENTS]: 'Operadores',
161
+ [SupervisorSections.ACTIVE_CALLS]: 'Llamadas activas',
258
162
  },
259
- table: {
260
- tableCells: {
261
- deleteActionHint: 'Eliminar',
262
- editActionHint: 'Editar',
263
- },
163
+ },
164
+ [WebitelApplications.ADMIN]: {
165
+ name: 'Admin',
166
+ sections: {
167
+ [AdminSections.USERS]: 'Usuarios',
168
+ [AdminSections.LICENSE]: 'Licencias',
169
+ [AdminSections.DEVICES]: 'Dispositivos',
170
+ [AdminSections.FLOW]: 'Esquemas',
171
+ [AdminSections.DIALPLAN]: 'Reglas de la marcación saliente',
172
+ [AdminSections.GATEWAYS]: 'Puertas de enlace',
173
+ [AdminSections.CHATPLAN]: 'Reglas de enrutamiento de mensajes de texto',
174
+ [AdminSections.CHAT_GATEWAYS]: 'Puertas de enlace de texto',
175
+ [AdminSections.SKILLS]: 'Habilidades del operador',
176
+ [AdminSections.BUCKETS]: 'Cestas',
177
+ [AdminSections.MEDIA]: 'Archivos multimedia',
178
+ [AdminSections.BLACKLIST]: 'Listas de llamadas',
179
+ [AdminSections.CALENDARS]: 'Calendarios',
180
+ [AdminSections.REGIONS]: 'Ubicación',
181
+ [AdminSections.COMMUNICATIONS]: 'Tipos de comunicación',
182
+ [AdminSections.PAUSE_CAUSE]: 'Estados del operador',
183
+ [AdminSections.AGENTS]: 'Operadores',
184
+ [AdminSections.TEAMS]: 'Equipos',
185
+ [AdminSections.RESOURCES]: 'Recursos',
186
+ [AdminSections.RESOURCE_GROUPS]: 'Grupos de recursos',
187
+ [AdminSections.QUEUES]: 'Colas',
188
+ [AdminSections.STORAGE]: 'Almacenamiento',
189
+ [AdminSections.COGNITIVE_PROFILES]: 'Perfiles de voz',
190
+ [AdminSections.EMAIL_PROFILES]: 'Perfiles de correo electrónico',
191
+ [AdminSections.IMPORT_CSV]: 'Importación de datos de archivos CSV',
192
+ [AdminSections.TRIGGERS]: 'Activadores',
193
+ [AdminSections.ROLES]: 'Funciones',
194
+ [AdminSections.OBJECTS]: 'Secciones',
264
195
  },
265
- errorPages: {
266
- goBack: 'Regresar',
267
- page403: {
268
- title: 'Sin acceso',
269
- text: 'Lo sentimos, no tiene suficientes derechos de acceso para ver esta página',
270
- },
271
- page404: {
272
- title: 'Parece que se ha perdido',
273
- text: 'Lo sentimos, no podemos encontrar lo que está buscando',
274
- },
196
+ },
197
+ },
198
+ validation: {
199
+ required: 'Campo requerido',
200
+ numeric: 'Valores numéricos requeridos',
201
+ email: 'Correo electrónico requerido',
202
+ gatewayHostValidator: 'IPv4 o FQDN requerido',
203
+ sipAccountValidator: 'Cuenta SIP requerida',
204
+ ipValidator: 'IPv4 requerido',
205
+ macValidator: 'dirección MAC requerida',
206
+ minValue: 'El valor no debe ser menor que',
207
+ maxValue: 'El valor no debe ser mayor que',
208
+ sameAs: 'Contraseña no válida',
209
+ requiredArrayValue: 'El campo no debe estar vacío',
210
+ minLength: 'El número de caracteres no debe ser menor que',
211
+ url: 'Se debe ingresar una URL válida',
212
+ },
213
+ webitelUI: {
214
+ searchBar: {
215
+ placeholder: 'Búsqueda',
216
+ },
217
+ timepicker: {
218
+ hour: 'Hora:',
219
+ min: 'Min:',
220
+ sec: 'Seg:',
221
+ },
222
+ datetimepicker: {
223
+ lastHour: 'Última hora',
224
+ lastDay: 'Último día',
225
+ },
226
+ pagination: {
227
+ sizeText: 'Registros en la página:',
228
+ prev: 'Atrás',
229
+ next: 'Adelante',
230
+ },
231
+ appNavigator: {
232
+ title: 'Aplicaciones de Webitel',
233
+ admin: 'Admin',
234
+ agent: 'Agent Workspace',
235
+ supervisor: 'Supervisor Workspace',
236
+ audit: 'Audit',
237
+ history: 'Call History',
238
+ grafana: 'Grafana',
239
+ },
240
+ headerActions: {
241
+ account: 'Cuenta',
242
+ docs: 'Documentación',
243
+ settings: 'Ajustes',
244
+ logout: 'Salir',
245
+ buildVersion: 'Versión de compilación',
246
+ },
247
+ tableActions: {
248
+ filterReset: 'Reiniciar filtros',
249
+ columnSelect: 'Agregar columnas',
250
+ refreshTable: 'Actualizar',
251
+ expandFilters: 'Expandir filtros',
252
+ },
253
+ tableColumnSelect: {
254
+ title: 'Seleccione columnas mostradas',
255
+ },
256
+ statusSelect: {
257
+ online: 'En línea',
258
+ pause: 'Pausa',
259
+ offline: 'Desconectado',
260
+ breakOut: 'Pausa forzada',
261
+ },
262
+ iconAction: {
263
+ deleteActionHint: 'Eliminar',
264
+ editActionHint: 'Editar',
265
+ },
266
+ errorPages: {
267
+ goBack: 'Regresar',
268
+ page403: {
269
+ title: 'Sin acceso',
270
+ text: 'Lo sentimos, no tiene suficientes derechos de acceso para ver esta página',
275
271
  },
276
- copyAction: {
277
- copy: 'Copiar',
278
- copied: '¡Copiado!',
272
+ page404: {
273
+ title: 'Parece que se ha perdido',
274
+ text: 'Lo sentimos, no podemos encontrar lo que está buscando',
279
275
  },
280
276
  },
281
- };
282
-
277
+ copyAction: {
278
+ copy: 'Copiar',
279
+ copied: '¡Copiado!',
280
+ },
281
+ },
282
+ };
@@ -2,14 +2,17 @@ import {
2
2
  AgentStatus,
3
3
  CallDirection,
4
4
  ChannelState,
5
- ChannelType, EngineRoutingSchemaType,
5
+ ChannelType,
6
+ EngineRoutingSchemaType,
6
7
  } from 'webitel-sdk';
7
8
  import { QueueType } from 'webitel-sdk/esm2015/enums';
8
9
  import AdminSections from '../../enums/WebitelApplications/AdminSections.enum';
9
- import SupervisorSections from '../../enums/WebitelApplications/SupervisorSections.enum';
10
- import WebitelApplications from '../../enums/WebitelApplications/WebitelApplications.enum';
11
10
  import AuditorSections
12
11
  from '../../enums/WebitelApplications/AuditorSections.enum';
12
+ import SupervisorSections
13
+ from '../../enums/WebitelApplications/SupervisorSections.enum';
14
+ import WebitelApplications
15
+ from '../../enums/WebitelApplications/WebitelApplications.enum';
13
16
  import { snakeToCamel } from '../../scripts/caseConverters';
14
17
 
15
18
  export default {
@@ -258,11 +261,9 @@ export default {
258
261
  offline: 'Оффлайн',
259
262
  breakOut: 'Принудительный перерыв',
260
263
  },
261
- table: {
262
- tableCells: {
263
- deleteActionHint: 'Удалить',
264
- editActionHint: 'Редактировать',
265
- },
264
+ iconAction: {
265
+ deleteActionHint: 'Удалить',
266
+ editActionHint: 'Редактировать',
266
267
  },
267
268
  errorPages: {
268
269
  goBack: 'Вернуться назад',
@@ -2,14 +2,17 @@ import {
2
2
  AgentStatus,
3
3
  CallDirection,
4
4
  ChannelState,
5
- ChannelType, EngineRoutingSchemaType,
5
+ ChannelType,
6
+ EngineRoutingSchemaType,
6
7
  } from 'webitel-sdk';
7
8
  import { QueueType } from 'webitel-sdk/esm2015/enums';
8
9
  import AdminSections from '../../enums/WebitelApplications/AdminSections.enum';
9
- import SupervisorSections from '../../enums/WebitelApplications/SupervisorSections.enum';
10
- import WebitelApplications from '../../enums/WebitelApplications/WebitelApplications.enum';
11
10
  import AuditorSections
12
11
  from '../../enums/WebitelApplications/AuditorSections.enum';
12
+ import SupervisorSections
13
+ from '../../enums/WebitelApplications/SupervisorSections.enum';
14
+ import WebitelApplications
15
+ from '../../enums/WebitelApplications/WebitelApplications.enum';
13
16
  import { snakeToCamel } from '../../scripts/caseConverters';
14
17
 
15
18
  export default {
@@ -258,11 +261,9 @@ export default {
258
261
  offline: 'Оффлайн',
259
262
  breakOut: 'Примусова перерва',
260
263
  },
261
- table: {
262
- tableCells: {
263
- deleteActionHint: 'Видалити',
264
- editActionHint: 'Редагувати',
265
- },
264
+ iconAction: {
265
+ deleteActionHint: 'Видалити',
266
+ editActionHint: 'Редагувати',
266
267
  },
267
268
  errorPages: {
268
269
  goBack: 'Повернутись назад',
@@ -1,9 +0,0 @@
1
- import { shallowMount } from '@vue/test-utils';
2
- import WtTableDeleteAction from '../table-cells/wt-table-delete-action.vue';
3
-
4
- describe('WtTableDeleteAction', () => {
5
- it('renders a component', () => {
6
- const wrapper = shallowMount(WtTableDeleteAction);
7
- expect(wrapper.exists()).toBe(true);
8
- });
9
- });
@@ -1,9 +0,0 @@
1
- import { shallowMount } from '@vue/test-utils';
2
- import WtTableEditAction from '../table-cells/wt-table-edit-action.vue';
3
-
4
- describe('WtTableEditAction', () => {
5
- it('renders a component', () => {
6
- const wrapper = shallowMount(WtTableEditAction);
7
- expect(wrapper.exists()).toBe(true);
8
- });
9
- });