@webitel/ui-sdk 3.1.0-2 → 3.1.0
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 +1 -106
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.umd.js +4 -109
- 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 +0 -2
- package/src/components/organisms/wt-table/__tests__/WtTableDeleteAction.spec.js +9 -0
- package/src/components/organisms/wt-table/__tests__/WtTableEditAction.spec.js +9 -0
- package/src/components/organisms/{wt-icon-action/_internals/wt-delete-icon-action.vue → wt-table/table-cells/wt-table-delete-action.vue} +2 -2
- package/src/components/organisms/{wt-icon-action/_internals/wt-edit-icon-action.vue → wt-table/table-cells/wt-table-edit-action.vue} +2 -2
- package/src/locale/en/en.js +7 -7
- package/src/locale/es/es.js +265 -265
- package/src/locale/ru/ru.js +8 -9
- package/src/locale/ua/ua.js +8 -9
- package/src/modules/QueryFilters/mixins/_urlControllerMixin/_urlControllerMixin.js +2 -2
- package/src/store/BaseStoreModules/ApiStoreModule.js +6 -6
- package/src/store/BaseStoreModules/ObjectStoreModule.js +4 -0
- package/src/store/BaseStoreModules/TableStoreModule.js +3 -3
- package/src/components/organisms/wt-icon-action/__tests__/WtIconAction.spec.js +0 -9
- package/src/components/organisms/wt-icon-action/_internals/__tests__/WtDeleteIconAction.spec.js +0 -9
- package/src/components/organisms/wt-icon-action/_internals/__tests__/WtEditIconAction.spec.js +0 -9
- package/src/components/organisms/wt-icon-action/wt-icon-action.vue +0 -31
package/package.json
CHANGED
package/src/components/index.js
CHANGED
|
@@ -52,7 +52,6 @@ import WtStatusSelect from './organisms/wt-status-select/wt-status-select.vue';
|
|
|
52
52
|
import WtTable from './organisms/wt-table/wt-table.vue';
|
|
53
53
|
import WtTableActions from './organisms/wt-table-actions/wt-table-actions.vue';
|
|
54
54
|
import WtTableColumnSelect from './organisms/wt-table-column-select/wt-table-column-select.vue';
|
|
55
|
-
import WtIconAction from './organisms/wt-icon-action/wt-icon-action.vue';
|
|
56
55
|
|
|
57
56
|
const Components = {
|
|
58
57
|
WtAvatar,
|
|
@@ -106,7 +105,6 @@ const Components = {
|
|
|
106
105
|
WtContextMenu,
|
|
107
106
|
WtCopyAction,
|
|
108
107
|
WtLoadBar,
|
|
109
|
-
WtIconAction,
|
|
110
108
|
};
|
|
111
109
|
|
|
112
110
|
export default Components;
|
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
});
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
@click="$emit('click')"
|
|
7
7
|
></wt-icon-btn>
|
|
8
8
|
</template>
|
|
9
|
-
{{ $t('webitelUI.
|
|
9
|
+
{{ $t('webitelUI.table.tableCells.deleteActionHint') }}
|
|
10
10
|
</wt-tooltip>
|
|
11
11
|
</template>
|
|
12
12
|
|
|
13
13
|
<script>
|
|
14
14
|
export default {
|
|
15
|
-
name: 'wt-delete-
|
|
15
|
+
name: 'wt-table-delete-action',
|
|
16
16
|
};
|
|
17
17
|
</script>
|
|
18
18
|
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
@click="$emit('click')"
|
|
8
8
|
></wt-icon-btn>
|
|
9
9
|
</template>
|
|
10
|
-
{{ $t('webitelUI.
|
|
10
|
+
{{ $t('webitelUI.table.tableCells.editActionHint') }}
|
|
11
11
|
</wt-tooltip>
|
|
12
12
|
</template>
|
|
13
13
|
|
|
14
14
|
<script>
|
|
15
15
|
export default {
|
|
16
|
-
name: 'wt-edit-
|
|
16
|
+
name: 'wt-table-edit-action',
|
|
17
17
|
};
|
|
18
18
|
</script>
|
|
19
19
|
|
package/src/locale/en/en.js
CHANGED
|
@@ -7,12 +7,10 @@ import {
|
|
|
7
7
|
} from 'webitel-sdk';
|
|
8
8
|
import { QueueType } from 'webitel-sdk/esm2015/enums';
|
|
9
9
|
import AdminSections from '../../enums/WebitelApplications/AdminSections.enum';
|
|
10
|
+
import SupervisorSections from '../../enums/WebitelApplications/SupervisorSections.enum';
|
|
11
|
+
import WebitelApplications from '../../enums/WebitelApplications/WebitelApplications.enum';
|
|
10
12
|
import AuditorSections
|
|
11
13
|
from '../../enums/WebitelApplications/AuditorSections.enum';
|
|
12
|
-
import SupervisorSections
|
|
13
|
-
from '../../enums/WebitelApplications/SupervisorSections.enum';
|
|
14
|
-
import WebitelApplications
|
|
15
|
-
from '../../enums/WebitelApplications/WebitelApplications.enum';
|
|
16
14
|
import { snakeToCamel } from '../../scripts/caseConverters';
|
|
17
15
|
|
|
18
16
|
export default {
|
|
@@ -264,9 +262,11 @@ export default {
|
|
|
264
262
|
offline: 'Offline',
|
|
265
263
|
breakOut: 'Break Out',
|
|
266
264
|
},
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
265
|
+
table: {
|
|
266
|
+
tableCells: {
|
|
267
|
+
deleteActionHint: 'Delete',
|
|
268
|
+
editActionHint: 'Edit',
|
|
269
|
+
},
|
|
270
270
|
},
|
|
271
271
|
errorPages: {
|
|
272
272
|
goBack: 'Go back',
|
package/src/locale/es/es.js
CHANGED
|
@@ -1,282 +1,282 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
} from 'webitel-sdk';
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
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
|
-
es: 'Español',
|
|
40
|
-
ru: 'Русский',
|
|
41
|
-
ua: 'Українська',
|
|
42
|
-
},
|
|
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',
|
|
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: 'Sí',
|
|
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: 'Українська',
|
|
100
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',
|
|
74
|
+
},
|
|
75
|
+
// date-related texts
|
|
76
|
+
date: {
|
|
77
|
+
sec: 'Seg',
|
|
78
|
+
timezone: 'Zona horaria | Zonas horarias',
|
|
101
79
|
},
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
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
|
+
},
|
|
108
114
|
},
|
|
109
115
|
},
|
|
110
|
-
|
|
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',
|
|
129
|
+
},
|
|
111
130
|
type: {
|
|
112
|
-
[
|
|
113
|
-
[
|
|
114
|
-
[
|
|
115
|
-
[EngineRoutingSchemaType.Processing]: 'Procesamiento',
|
|
131
|
+
[ChannelType.Call]: 'Llamada',
|
|
132
|
+
[ChannelType.Email]: 'Correo electrónico',
|
|
133
|
+
[ChannelType.Chat]: 'Chat',
|
|
116
134
|
},
|
|
117
135
|
},
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
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',
|
|
132
|
-
},
|
|
133
|
-
type: {
|
|
134
|
-
[ChannelType.Call]: 'Llamada',
|
|
135
|
-
[ChannelType.Email]: 'Correo electrónico',
|
|
136
|
-
[ChannelType.Chat]: 'Chat',
|
|
137
|
-
},
|
|
138
|
-
},
|
|
139
|
-
calls: {
|
|
140
|
-
direction: {
|
|
141
|
-
[CallDirection.Inbound]: 'Entrante | Entrantes',
|
|
142
|
-
[CallDirection.Outbound]: 'Saliente | Salientes',
|
|
143
|
-
},
|
|
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',
|
|
136
|
+
calls: {
|
|
137
|
+
direction: {
|
|
138
|
+
[CallDirection.Inbound]: 'Entrante | Entrantes',
|
|
139
|
+
[CallDirection.Outbound]: 'Saliente | Salientes',
|
|
152
140
|
},
|
|
153
141
|
},
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
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
|
+
},
|
|
162
150
|
},
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
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
|
+
},
|
|
195
193
|
},
|
|
196
194
|
},
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
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',
|
|
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',
|
|
265
209
|
},
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
title: 'Sin acceso',
|
|
270
|
-
text: 'Lo sentimos, no tiene suficientes derechos de acceso para ver esta página',
|
|
210
|
+
webitelUI: {
|
|
211
|
+
searchBar: {
|
|
212
|
+
placeholder: 'Búsqueda',
|
|
271
213
|
},
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
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',
|
|
243
|
+
},
|
|
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',
|
|
258
|
+
},
|
|
259
|
+
table: {
|
|
260
|
+
tableCells: {
|
|
261
|
+
deleteActionHint: 'Eliminar',
|
|
262
|
+
editActionHint: 'Editar',
|
|
263
|
+
},
|
|
264
|
+
},
|
|
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
|
+
},
|
|
275
|
+
},
|
|
276
|
+
copyAction: {
|
|
277
|
+
copy: 'Copiar',
|
|
278
|
+
copied: '¡Copiado!',
|
|
275
279
|
},
|
|
276
280
|
},
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
copied: '¡Copiado!',
|
|
280
|
-
},
|
|
281
|
-
},
|
|
282
|
-
};
|
|
281
|
+
};
|
|
282
|
+
|