From 8331f3c07db826d6506a5e392d4a4913ad1e9414 Mon Sep 17 00:00:00 2001 From: volodymyr Date: Thu, 26 Oct 2023 18:19:15 +0300 Subject: [PATCH] feature: timing tab renamed to parameters tab [WTEL-3992] --- src/app/locale/en/en.js | 8 ++++---- src/app/locale/ru/ru.js | 10 +++++----- src/app/locale/ua/ua.js | 10 +++++----- ...ened-team-timing.vue => opened-team-parameters.vue} | 4 ++-- .../modules/teams/components/opened-team.vue | 8 ++++---- 5 files changed, 20 insertions(+), 20 deletions(-) rename src/modules/contact-center/modules/teams/components/{opened-team-timing.vue => opened-team-parameters.vue} (95%) diff --git a/src/app/locale/en/en.js b/src/app/locale/en/en.js index 1d789fbce..e0e6d23aa 100644 --- a/src/app/locale/en/en.js +++ b/src/app/locale/en/en.js @@ -673,12 +673,12 @@ export default { teams: 'Team | Teams', allTeams: 'All teams', strategy: 'Strategy', - timing: 'Timing', - maxNoAnswer: 'Max no answer', - callTimeout: 'Call timeout', + parameters: 'Parameters', + maxNoAnswer: 'Max count of missed activities', + callTimeout: 'Call accept timeout', inviteChatTimeout: 'Chat accept timeout', wrapUpTime: 'Wrap up time', - noAnswerDelayTime: 'No answer delay time', + noAnswerDelayTime: 'Delay time after missed activity', strategies: { random: 'Random', fewestCalls: 'Agent with fewest calls', diff --git a/src/app/locale/ru/ru.js b/src/app/locale/ru/ru.js index 0e770fbca..2cf1a54f4 100644 --- a/src/app/locale/ru/ru.js +++ b/src/app/locale/ru/ru.js @@ -671,12 +671,12 @@ export default { teams: 'Команда| Команды', allTeams: 'Все команды', strategy: 'Стратегия', - timing: 'Параметры дозвона', - maxNoAnswer: 'Максимальное количество звонков без ответа', - callTimeout: 'Длительность вызова', - inviteChatTimeout: 'Время принятия чата', + parameters: 'Параметры', + maxNoAnswer: 'Максимальное количество пропущенных активностей', + callTimeout: 'Время на принятие звонка', + inviteChatTimeout: 'Время на принятие чата', wrapUpTime: 'Длительность паузы между звонками', - noAnswerDelayTime: 'Время ожидания при отсутствии ответа оператора', + noAnswerDelayTime: 'Время задержки после пропущенной активности', strategies: { random: 'Случайно', fewestCalls: 'Агент с наименьшим количеством звонков', diff --git a/src/app/locale/ua/ua.js b/src/app/locale/ua/ua.js index e76ef8fd2..4a1625c5c 100644 --- a/src/app/locale/ua/ua.js +++ b/src/app/locale/ua/ua.js @@ -673,12 +673,12 @@ export default { teams: 'Команда| Команди', allTeams: 'Всі команди', strategy: 'Стратегія', - timing: 'Параметри додзвону', - maxNoAnswer: 'Максимальна кількість дзвінків без відповіді', - callTimeout: 'Тривалість виклику', - inviteChatTimeout: 'Час прийняття чату', + parameters: 'Параметри', + maxNoAnswer: 'Максимальна кількість пропущених активностей', + callTimeout: 'Час на прийняття дзвінка', + inviteChatTimeout: 'Час на прийняття чату', wrapUpTime: 'Тривалість паузи між дзвінками', - noAnswerDelayTime: 'Час очікування при відсутності відповіді оператора', + noAnswerDelayTime: 'Час затримки після пропущеної активності', strategies: { random: 'Випадково', fewestCalls: 'Оператор з найменшою кількістю дзвінків', diff --git a/src/modules/contact-center/modules/teams/components/opened-team-timing.vue b/src/modules/contact-center/modules/teams/components/opened-team-parameters.vue similarity index 95% rename from src/modules/contact-center/modules/teams/components/opened-team-timing.vue rename to src/modules/contact-center/modules/teams/components/opened-team-parameters.vue index 9008d5b62..34b48191c 100644 --- a/src/modules/contact-center/modules/teams/components/opened-team-timing.vue +++ b/src/modules/contact-center/modules/teams/components/opened-team-parameters.vue @@ -2,7 +2,7 @@

- {{ $t('objects.ccenter.teams.timing') }} + {{ $t('objects.ccenter.teams.parameters') }}

@@ -60,7 +60,7 @@ import openedTabComponentMixin from '../../../../../app/mixins/objectPagesMixins/openedObjectTabMixin/openedTabComponentMixin'; export default { - name: 'OpenedTeamTiming', + name: 'OpenedTeamParameters', mixins: [openedTabComponentMixin], }; diff --git a/src/modules/contact-center/modules/teams/components/opened-team.vue b/src/modules/contact-center/modules/teams/components/opened-team.vue index d31955e0a..e02dbc476 100644 --- a/src/modules/contact-center/modules/teams/components/opened-team.vue +++ b/src/modules/contact-center/modules/teams/components/opened-team.vue @@ -41,7 +41,7 @@ import openedObjectMixin from '../../../../../app/mixins/objectPagesMixins/opene import Agents from '../modules/agents/components/opened-team-agents.vue'; import Supervisors from '../modules/supervisors/components/opened-team-supervisors.vue'; import General from './opened-team-general.vue'; -import Timing from './opened-team-timing.vue'; +import Parameters from './opened-team-parameters.vue'; export default { name: 'OpenedTeam', @@ -49,7 +49,7 @@ export default { General, Supervisors, Agents, - Timing, + Parameters, }, mixins: [openedObjectMixin], @@ -78,8 +78,8 @@ export default { text: this.$t('objects.general'), value: 'general', }, { - text: this.$t('objects.ccenter.teams.timing'), - value: 'timing', + text: this.$t('objects.ccenter.teams.parameters'), + value: 'parameters', }, { text: this.$tc('objects.ccenter.agents.supervisors', 2), value: 'supervisors',