@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.
- package/dist/ui-sdk.common.js +106 -1
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.umd.js +109 -4
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +3 -3
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/index.js +2 -0
- package/src/components/organisms/wt-icon-action/__tests__/WtIconAction.spec.js +9 -0
- package/src/components/organisms/wt-icon-action/_internals/__tests__/WtDeleteIconAction.spec.js +9 -0
- package/src/components/organisms/wt-icon-action/_internals/__tests__/WtEditIconAction.spec.js +9 -0
- package/src/components/organisms/{wt-table/table-cells/wt-table-delete-action.vue → wt-icon-action/_internals/wt-delete-icon-action.vue} +2 -2
- package/src/components/organisms/{wt-table/table-cells/wt-table-edit-action.vue → wt-icon-action/_internals/wt-edit-icon-action.vue} +2 -2
- package/src/components/organisms/wt-icon-action/wt-icon-action.vue +31 -0
- package/src/locale/en/en.js +7 -7
- package/src/locale/es/es.js +265 -265
- package/src/locale/ru/ru.js +9 -8
- package/src/locale/ua/ua.js +9 -8
- package/src/components/organisms/wt-table/__tests__/WtTableDeleteAction.spec.js +0 -9
- package/src/components/organisms/wt-table/__tests__/WtTableEditAction.spec.js +0 -9
package/src/locale/es/es.js
CHANGED
|
@@ -1,282 +1,282 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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: 'Sí',
|
|
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
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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: 'Sí',
|
|
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
|
-
|
|
117
|
-
|
|
118
|
-
[
|
|
119
|
-
[
|
|
120
|
-
[
|
|
121
|
-
[
|
|
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
|
-
[
|
|
132
|
-
[
|
|
133
|
-
[
|
|
112
|
+
[EngineRoutingSchemaType.Chat]: 'Chat',
|
|
113
|
+
[EngineRoutingSchemaType.Voice]: 'Voz',
|
|
114
|
+
[EngineRoutingSchemaType.Service]: 'Servicio',
|
|
115
|
+
[EngineRoutingSchemaType.Processing]: 'Procesamiento',
|
|
134
116
|
},
|
|
135
117
|
},
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
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
|
-
|
|
143
|
-
|
|
144
|
-
[
|
|
145
|
-
[
|
|
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
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
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
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
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
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
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
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
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
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
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
|
-
|
|
277
|
-
|
|
278
|
-
|
|
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
|
+
};
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -2,14 +2,17 @@ import {
|
|
|
2
2
|
AgentStatus,
|
|
3
3
|
CallDirection,
|
|
4
4
|
ChannelState,
|
|
5
|
-
ChannelType,
|
|
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
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
editActionHint: 'Редактировать',
|
|
265
|
-
},
|
|
264
|
+
iconAction: {
|
|
265
|
+
deleteActionHint: 'Удалить',
|
|
266
|
+
editActionHint: 'Редактировать',
|
|
266
267
|
},
|
|
267
268
|
errorPages: {
|
|
268
269
|
goBack: 'Вернуться назад',
|
package/src/locale/ua/ua.js
CHANGED
|
@@ -2,14 +2,17 @@ import {
|
|
|
2
2
|
AgentStatus,
|
|
3
3
|
CallDirection,
|
|
4
4
|
ChannelState,
|
|
5
|
-
ChannelType,
|
|
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
|
-
|
|
262
|
-
|
|
263
|
-
|
|
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
|
-
});
|