@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,718 @@
|
|
|
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: 'Komentarz',
|
|
27
|
+
replace: 'Zamień',
|
|
28
|
+
download: 'Pobierz',
|
|
29
|
+
history: 'Historia',
|
|
30
|
+
filter: ({ plural }) => plural(['Filtr', 'Filtry']),
|
|
31
|
+
total: 'Suma',
|
|
32
|
+
ok: 'Ok',
|
|
33
|
+
object: 'Obiekt',
|
|
34
|
+
save: 'Zapisz',
|
|
35
|
+
saveAs: 'Zapisz jako',
|
|
36
|
+
saved: 'Zapisano',
|
|
37
|
+
send: 'Wyślij',
|
|
38
|
+
start: 'Start',
|
|
39
|
+
close: 'Zamknij',
|
|
40
|
+
add: 'Dodaj',
|
|
41
|
+
cancel: 'Anuluj',
|
|
42
|
+
import: 'Import',
|
|
43
|
+
export: 'Eksport',
|
|
44
|
+
true: 'Prawda',
|
|
45
|
+
title: 'Tytuł',
|
|
46
|
+
position: 'Pozycja',
|
|
47
|
+
delete: 'Usuń',
|
|
48
|
+
search: 'Szukaj',
|
|
49
|
+
open: 'Otwórz',
|
|
50
|
+
name: 'Nazwa',
|
|
51
|
+
expand: 'Rozwiń',
|
|
52
|
+
collapse: 'Zwiń',
|
|
53
|
+
generate: 'Generuj',
|
|
54
|
+
lang: {
|
|
55
|
+
en: 'English',
|
|
56
|
+
es: 'Español',
|
|
57
|
+
ru: 'Русский',
|
|
58
|
+
uk: 'Українська',
|
|
59
|
+
kz: 'Қазақ',
|
|
60
|
+
},
|
|
61
|
+
from: 'Od',
|
|
62
|
+
to: 'Do',
|
|
63
|
+
tts: 'Tekst na mowę',
|
|
64
|
+
state: 'Stan',
|
|
65
|
+
refresh: 'Odśwież',
|
|
66
|
+
retry: 'Ponów',
|
|
67
|
+
downloadAll: 'Pobierz wszystko',
|
|
68
|
+
warning: 'Ostrzeżenie',
|
|
69
|
+
doNotSave: 'Nie zapisuj',
|
|
70
|
+
required: 'Wymagane',
|
|
71
|
+
copy: 'Kopiuj',
|
|
72
|
+
new: 'Nowy',
|
|
73
|
+
createdAt: 'Utworzono',
|
|
74
|
+
createdBy: 'Utworzone przez',
|
|
75
|
+
modifiedAt: 'Zmodyfikowano',
|
|
76
|
+
modifiedBy: 'Zmodyfikowane przez',
|
|
77
|
+
general: 'Ogólne',
|
|
78
|
+
generalInfo: 'Informacje ogólne',
|
|
79
|
+
all: 'Wszystkie {entity}',
|
|
80
|
+
upload: 'Wgraj',
|
|
81
|
+
edit: 'Edytuj',
|
|
82
|
+
back: 'Wstecz',
|
|
83
|
+
step: 'Krok { count }',
|
|
84
|
+
more: 'Więcej',
|
|
85
|
+
read: 'Czytaj',
|
|
86
|
+
create: 'Utwórz',
|
|
87
|
+
update: 'Aktualizuj',
|
|
88
|
+
draggable: 'Przeciągalne',
|
|
89
|
+
unassigned: 'Nieprzypisane',
|
|
90
|
+
showUnassigned: 'Pokaż nieprzypisane',
|
|
91
|
+
group: 'Grupa',
|
|
92
|
+
updatedBy: (/*{ named }*/) => {
|
|
93
|
+
return 'Edytowane';
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
// yak zhe ya zaebalsya povtoriaty odni i ti sami slova!!!!
|
|
97
|
+
vocabulary: {
|
|
98
|
+
apply: 'Zastosuj',
|
|
99
|
+
language: 'Język',
|
|
100
|
+
voice: 'Głos',
|
|
101
|
+
format: 'Format',
|
|
102
|
+
text: 'Tekst',
|
|
103
|
+
yes: 'Tak',
|
|
104
|
+
no: 'Nie',
|
|
105
|
+
description: 'Opis',
|
|
106
|
+
login: 'Login',
|
|
107
|
+
host: 'Host',
|
|
108
|
+
time: 'Czas',
|
|
109
|
+
channel: 'Kanał | Kanały',
|
|
110
|
+
file: 'Plik',
|
|
111
|
+
logout: 'Wyloguj',
|
|
112
|
+
priority: 'Priorytet | Priorytety',
|
|
113
|
+
color: 'Kolor',
|
|
114
|
+
variables: 'Zmienna | Zmienne',
|
|
115
|
+
type: 'Typ',
|
|
116
|
+
tag: 'Tag | Tagi',
|
|
117
|
+
output: 'Wyjście | Wyjścia',
|
|
118
|
+
values: 'Wartość | Wartości',
|
|
119
|
+
keys: 'Klucz | Klucze',
|
|
120
|
+
duration: 'Czas trwania',
|
|
121
|
+
reset: 'Reset',
|
|
122
|
+
errors: 'Błąd | Błędy',
|
|
123
|
+
labels: 'Etykieta | Etykiety',
|
|
124
|
+
permissions: 'Uprawnienie | Uprawnienia',
|
|
125
|
+
options: 'Opcja | Opcje',
|
|
126
|
+
emails: 'Email | Emaile',
|
|
127
|
+
phones: 'Telefon | Telefony',
|
|
128
|
+
messaging: 'Wiadomości',
|
|
129
|
+
emptyResultSearch: 'Twoje wyszukiwanie nie przyniosło rezultatów',
|
|
130
|
+
contact: 'Kontakt | Kontakty',
|
|
131
|
+
column: 'Kolumna | Kolumny',
|
|
132
|
+
notification: 'Powiadomienie | Powiadomienia',
|
|
133
|
+
},
|
|
134
|
+
// date-related texts
|
|
135
|
+
date: {
|
|
136
|
+
sec: 'Sek',
|
|
137
|
+
timezone: 'Strefa czasowa | Strefy czasowe',
|
|
138
|
+
},
|
|
139
|
+
// locales, related to user access, permissions, etc.
|
|
140
|
+
access: {
|
|
141
|
+
ObAC: 'Zarządzane przez operacje',
|
|
142
|
+
RbAC: 'Zarządzane przez rekordy',
|
|
143
|
+
operations: 'Operacje',
|
|
144
|
+
rbacDefault: 'Domyślny dostęp oparty na rekordach',
|
|
145
|
+
accessMode: {
|
|
146
|
+
[AccessMode.FORBIDDEN]: 'Zabronione',
|
|
147
|
+
[AccessMode.ALLOW]: 'Zezwól',
|
|
148
|
+
[AccessMode.MANAGE]: 'Zezwól z delegowaniem',
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
// describes Webitel system entities
|
|
152
|
+
objects: {
|
|
153
|
+
team: 'Zespół | Zespoły',
|
|
154
|
+
supervisor: 'Supervisor | Supervisorzy',
|
|
155
|
+
auditor: 'Audytor | Audytorzy',
|
|
156
|
+
region: 'Region | Regiony',
|
|
157
|
+
communicationType: 'Typ komunikacji | Typy komunikacji',
|
|
158
|
+
grantee: 'Uprawniony | Uprawnieni',
|
|
159
|
+
grantor: 'Udzielający | Udzielający',
|
|
160
|
+
role: 'Rola | Role',
|
|
161
|
+
user: 'Użytkownik | Użytkownicy',
|
|
162
|
+
list: 'Lista | Listy',
|
|
163
|
+
contact: 'Kontakt | Kontakty',
|
|
164
|
+
case: 'Sprawa | Sprawy',
|
|
165
|
+
calendar: 'Kalendarz | Kalendarze',
|
|
166
|
+
direction: 'Kierunek',
|
|
167
|
+
gateway: 'Bramka | Bramki',
|
|
168
|
+
hangupCause: 'Przyczyna rozłączenia',
|
|
169
|
+
hasOption: 'Ma opcję',
|
|
170
|
+
hasRecording: 'Nagrywanie',
|
|
171
|
+
amdResult: 'Wynik AMD',
|
|
172
|
+
ratedBy: 'Ocenione przez',
|
|
173
|
+
talkDuration: 'Czas rozmowy',
|
|
174
|
+
totalDuration: 'Całkowity czas',
|
|
175
|
+
transcription: 'Transkrypcja',
|
|
176
|
+
attachment: 'Załącznik | Załączniki',
|
|
177
|
+
owner: 'Właściciel | Właściciele',
|
|
178
|
+
queue: {
|
|
179
|
+
queue: 'Kolejka | Kolejki',
|
|
180
|
+
type: {
|
|
181
|
+
[QueueType.INBOUND_QUEUE]: 'Kolejka przychodząca',
|
|
182
|
+
[QueueType.OFFLINE_QUEUE]: 'Kolejka offline',
|
|
183
|
+
[QueueType.OUTBOUND_IVR_QUEUE]: 'Kolejka IVR wychodząca',
|
|
184
|
+
[QueueType.PREDICTIVE_DIALER]: 'Dialer predykcyjny',
|
|
185
|
+
[QueueType.PROGRESSIVE_DIALER]: 'Dialer progresywny',
|
|
186
|
+
[QueueType.PREVIEW_DIALER]: 'Dialer podglądowy',
|
|
187
|
+
[QueueType.CHAT_INBOUND_QUEUE]: 'Kolejka czatu',
|
|
188
|
+
[QueueType.INBOUND_JOB_QUEUE]: 'Kolejka zadań przychodzących',
|
|
189
|
+
[QueueType.OUTBOUND_JOB_QUEUE]: 'Kolejka zadań wychodzących',
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
agent: {
|
|
193
|
+
agent: 'Agent | Agenci',
|
|
194
|
+
status: {
|
|
195
|
+
[AgentStatus.Online]: 'Online',
|
|
196
|
+
[AgentStatus.Pause]: 'Pauza',
|
|
197
|
+
[AgentStatus.Offline]: 'Offline',
|
|
198
|
+
[snakeToCamel(AgentStatus.BreakOut)]: 'Przerwa',
|
|
199
|
+
},
|
|
200
|
+
},
|
|
201
|
+
flow: {
|
|
202
|
+
name: 'Schemat przepływu | Schematy przepływu',
|
|
203
|
+
type: {
|
|
204
|
+
[EngineRoutingSchemaType.Chat]: 'Czat',
|
|
205
|
+
[EngineRoutingSchemaType.Voice]: 'Głos',
|
|
206
|
+
[EngineRoutingSchemaType.Service]: 'Usługa',
|
|
207
|
+
[EngineRoutingSchemaType.Processing]: 'Formularze',
|
|
208
|
+
},
|
|
209
|
+
},
|
|
210
|
+
messengers: {
|
|
211
|
+
[ChatGatewayProvider.TELEGRAM_BOT]: 'Bot Telegram',
|
|
212
|
+
[ChatGatewayProvider.TELEGRAM_APP]: 'Aplikacja Telegram',
|
|
213
|
+
[ChatGatewayProvider.MESSENGER]: 'Meta',
|
|
214
|
+
[ChatGatewayProvider.VIBER]: 'Viber',
|
|
215
|
+
[ChatGatewayProvider.WEBCHAT]: 'Czat webowy',
|
|
216
|
+
[ChatGatewayProvider.INFOBIP]: 'Infobip',
|
|
217
|
+
[ChatGatewayProvider.CUSTOM]: 'Niestandardowa bramka czatu',
|
|
218
|
+
},
|
|
219
|
+
quickReplies: {
|
|
220
|
+
quickReplies: 'Szybka odpowiedź | Szybkie odpowiedzi',
|
|
221
|
+
quickRepliesEmpty: 'Nie ma jeszcze szybkich odpowiedzi',
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
channel: {
|
|
225
|
+
state: {
|
|
226
|
+
[ChannelState.Waiting]: 'Oczekiwanie',
|
|
227
|
+
[ChannelState.Distribute]: 'Dystrybucja',
|
|
228
|
+
[ChannelState.Offering]: 'Oferowanie',
|
|
229
|
+
[ChannelState.Answered]: 'Odebrane',
|
|
230
|
+
[ChannelState.Active]: 'Aktywne',
|
|
231
|
+
[ChannelState.Bridged]: 'Połączone',
|
|
232
|
+
[ChannelState.Hold]: 'Wstrzymane',
|
|
233
|
+
[ChannelState.Missed]: 'Nieodebrane',
|
|
234
|
+
[snakeToCamel(ChannelState.WrapTime)]: 'Podsumowanie',
|
|
235
|
+
[ChannelState.Processing]: 'Przetwarzanie',
|
|
236
|
+
[ChannelState.Transfer]: 'Transfer',
|
|
237
|
+
},
|
|
238
|
+
type: {
|
|
239
|
+
[ChannelType.Call]: 'Połączenie',
|
|
240
|
+
[ChannelType.Email]: 'Email',
|
|
241
|
+
[ChannelType.Chat]: 'Czat',
|
|
242
|
+
[ChannelType.Job]: 'Zadanie',
|
|
243
|
+
},
|
|
244
|
+
},
|
|
245
|
+
calls: {
|
|
246
|
+
direction: {
|
|
247
|
+
[CallDirection.Inbound]: 'Przychodzące',
|
|
248
|
+
[CallDirection.Outbound]: 'Wychodzące',
|
|
249
|
+
},
|
|
250
|
+
},
|
|
251
|
+
cases: {
|
|
252
|
+
status: 'Status',
|
|
253
|
+
source: 'Źródło',
|
|
254
|
+
author: 'Autor',
|
|
255
|
+
reporter: 'Zgłaszający',
|
|
256
|
+
impacted: 'Dotknięty',
|
|
257
|
+
assignee: 'Przypisany',
|
|
258
|
+
groupPerformers: 'Grupa',
|
|
259
|
+
reason: 'Powód | Powody',
|
|
260
|
+
rating: 'Ocena',
|
|
261
|
+
service: 'Usługa | Usługi',
|
|
262
|
+
selectAService: 'Wybierz usługę',
|
|
263
|
+
appliedSLA: 'Zastosowane SLA',
|
|
264
|
+
appliedCondition: 'Zastosowany warunek',
|
|
265
|
+
reactionTime: 'Czas reakcji',
|
|
266
|
+
resolutionTime: 'Czas rozwiązania',
|
|
267
|
+
actualReactionTime: 'Rzeczywisty czas reakcji',
|
|
268
|
+
actualResolutionTime: 'Rzeczywisty czas rozwiązania',
|
|
269
|
+
},
|
|
270
|
+
// describes Webitel FRONTEND applications + their navs
|
|
271
|
+
WebitelApplications: {
|
|
272
|
+
[WebitelApplications.AGENT]: { name: 'Panel Agenta' },
|
|
273
|
+
[WebitelApplications.AUDIT]: {
|
|
274
|
+
name: 'Audyt',
|
|
275
|
+
sections: {
|
|
276
|
+
[AuditorSections.Scorecards]: 'Karty wyników',
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
[WebitelApplications.CRM]: {
|
|
280
|
+
name: 'CRM',
|
|
281
|
+
sections: {
|
|
282
|
+
[CrmSections.Contacts]: 'Kontakty',
|
|
283
|
+
[CrmSections.Cases]: 'Sprawy',
|
|
284
|
+
[CrmSections.Priorities]: 'Priorytety',
|
|
285
|
+
[CrmSections.CloseReasonGroups]: 'Powody zamknięcia',
|
|
286
|
+
[CrmSections.Statuses]: 'Statusy',
|
|
287
|
+
[CrmSections.Slas]: 'SLA',
|
|
288
|
+
[CrmSections.ServiceCatalogs]: 'Katalogi usług',
|
|
289
|
+
[CrmSections.Sources]: 'Źródła spraw',
|
|
290
|
+
[CrmSections.ContactGroups]: 'Grupy kontaktów',
|
|
291
|
+
},
|
|
292
|
+
},
|
|
293
|
+
[WebitelApplications.HISTORY]: { name: 'Historia połączeń' },
|
|
294
|
+
[WebitelApplications.ANALYTICS]: { name: 'Narzędzie wizualizacji danych' },
|
|
295
|
+
[WebitelApplications.SUPERVISOR]: {
|
|
296
|
+
name: 'Panel Supervisora',
|
|
297
|
+
sections: {
|
|
298
|
+
[SupervisorSections.Queues]: 'Kolejki',
|
|
299
|
+
[SupervisorSections.Agents]: 'Agenci',
|
|
300
|
+
[SupervisorSections.ActiveCalls]: 'Aktywne połączenia',
|
|
301
|
+
},
|
|
302
|
+
},
|
|
303
|
+
[WebitelApplications.ADMIN]: {
|
|
304
|
+
name: 'Admin',
|
|
305
|
+
sections: {
|
|
306
|
+
[AdminSections.Users]: 'Użytkownicy',
|
|
307
|
+
[AdminSections.License]: 'Licencje',
|
|
308
|
+
[AdminSections.Devices]: 'Urządzenia',
|
|
309
|
+
[AdminSections.Flow]: 'Schematy przepływu',
|
|
310
|
+
[AdminSections.Dialplan]: 'Plany wybierania',
|
|
311
|
+
[AdminSections.Gateways]: 'Bramki',
|
|
312
|
+
[AdminSections.Chatplan]: 'Plany czatu',
|
|
313
|
+
[AdminSections.ChatGateways]: 'Bramki czatu',
|
|
314
|
+
[AdminSections.Skills]: 'Umiejętności agenta',
|
|
315
|
+
[AdminSections.Buckets]: 'Pojemniki',
|
|
316
|
+
[AdminSections.Media]: 'Pliki mediów',
|
|
317
|
+
[AdminSections.ShiftTemplates]: 'Szablony zmian',
|
|
318
|
+
[AdminSections.PauseTemplates]: 'Szablony przerw',
|
|
319
|
+
[AdminSections.WorkingConditions]: 'Warunki pracy',
|
|
320
|
+
[AdminSections.Blacklist]: 'Listy',
|
|
321
|
+
[AdminSections.Calendars]: 'Kalendarze',
|
|
322
|
+
[AdminSections.Regions]: 'Lokalizacje',
|
|
323
|
+
[AdminSections.Communications]: 'Typy komunikacji',
|
|
324
|
+
[AdminSections.PauseCause]: 'Statusy agenta',
|
|
325
|
+
[AdminSections.Agents]: 'Agenci',
|
|
326
|
+
[AdminSections.Teams]: 'Zespoły',
|
|
327
|
+
[AdminSections.Resources]: 'Zasoby',
|
|
328
|
+
[AdminSections.ResourceGroups]: 'Grupy zasobów',
|
|
329
|
+
[AdminSections.Queues]: 'Kolejki',
|
|
330
|
+
[AdminSections.Storage]: 'Magazyn',
|
|
331
|
+
[AdminSections.StoragePolicies]: 'Polityki magazynowania',
|
|
332
|
+
[AdminSections.CognitiveProfiles]: 'Profile kognitywne',
|
|
333
|
+
[AdminSections.EmailProfiles]: 'Profile email',
|
|
334
|
+
[AdminSections.SingleSignOn]: 'Pojedyncze logowanie',
|
|
335
|
+
[AdminSections.ImportCsv]: 'Import CSV z pliku',
|
|
336
|
+
[AdminSections.Triggers]: 'Triggery',
|
|
337
|
+
[AdminSections.Media]: 'Pliki mediów',
|
|
338
|
+
[AdminSections.Roles]: 'Role',
|
|
339
|
+
[AdminSections.Objects]: 'Obiekty',
|
|
340
|
+
[AdminSections.Changelogs]: 'Dziennik zmian',
|
|
341
|
+
[AdminSections.Configuration]: 'Konfiguracja',
|
|
342
|
+
[AdminSections.GlobalVariables]: 'Zmienne globalne',
|
|
343
|
+
[AdminSections.QuickReplies]: 'Szybkie odpowiedzi',
|
|
344
|
+
},
|
|
345
|
+
},
|
|
346
|
+
},
|
|
347
|
+
validation: {
|
|
348
|
+
required: 'Pole jest wymagane',
|
|
349
|
+
numeric: 'Powinno być numeryczne',
|
|
350
|
+
email: 'Powinno wyglądać jak email',
|
|
351
|
+
gatewayHostValidator: 'Powinno wyglądać jak IPv4 lub FQDN',
|
|
352
|
+
sipAccountValidator: 'Powinno wyglądać jak konto SIP',
|
|
353
|
+
ipValidator: 'Powinno wyglądać jak IPv4',
|
|
354
|
+
macValidator: 'Powinno wyglądać jak MAC',
|
|
355
|
+
minValue: 'Wartość nie powinna być mniejsza niż',
|
|
356
|
+
maxValue: 'Wartość nie powinna być większa niż',
|
|
357
|
+
maxLength: 'Długość nie powinna być większa niż',
|
|
358
|
+
sameAs: 'Nieprawidłowe hasło',
|
|
359
|
+
requiredArrayValue: 'Tablica nie powinna być pusta',
|
|
360
|
+
minLength: ({ named }) => {
|
|
361
|
+
let text = 'Długość nie powinna być mniejsza niż';
|
|
362
|
+
if (named('min')) {
|
|
363
|
+
text += ` ${named('min')}`;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
return text;
|
|
367
|
+
},
|
|
368
|
+
url: 'Powinno wyglądać jak URL',
|
|
369
|
+
websocketValidator: 'Powinno wyglądać jak URL WebSocket',
|
|
370
|
+
isRegExpMatched: 'Hasło musi pasować do wyrażenia regularnego:',
|
|
371
|
+
regExpValidator: 'To wyrażenie regularne jest nieprawidłowe',
|
|
372
|
+
domainValidator: 'Nieprawidłowa domena',
|
|
373
|
+
decimalValidator:
|
|
374
|
+
'Precyzja dziesiętna nie powinna być większa niż { count } miejsc',
|
|
375
|
+
latinWithNumber:
|
|
376
|
+
'Kod musi zawierać tylko litery (A-Z, a-z) i cyfry (0-9) oraz musi zaczynać się od litery',
|
|
377
|
+
integer: 'Pole powinno zawierać tylko liczby całkowite',
|
|
378
|
+
nameAlreadyInUse: 'Ta nazwa jest już używana',
|
|
379
|
+
},
|
|
380
|
+
webitelUI: {
|
|
381
|
+
searchBar: {
|
|
382
|
+
placeholder: 'Szukaj',
|
|
383
|
+
settingsHint: 'Tryb wyszukiwania',
|
|
384
|
+
variableSearchHint: 'Format zapytania: "klucz=wartość"',
|
|
385
|
+
},
|
|
386
|
+
timepicker: {
|
|
387
|
+
day: 'Dzień:',
|
|
388
|
+
hour: 'Godzina:',
|
|
389
|
+
min: 'Min:',
|
|
390
|
+
sec: 'Sek:',
|
|
391
|
+
},
|
|
392
|
+
datetimepicker: {
|
|
393
|
+
lastHour: 'Ostatnia godzina',
|
|
394
|
+
lastDay: 'Ostatni dzień',
|
|
395
|
+
},
|
|
396
|
+
pagination: {
|
|
397
|
+
sizeText: 'Wierszy na stronę:',
|
|
398
|
+
prev: 'Poprzednia',
|
|
399
|
+
next: 'Następna',
|
|
400
|
+
},
|
|
401
|
+
appNavigator: {
|
|
402
|
+
title: 'Aplikacje Webitel',
|
|
403
|
+
admin: 'Admin',
|
|
404
|
+
agent: 'Agent',
|
|
405
|
+
supervisor: 'Supervisor',
|
|
406
|
+
audit: 'Audyt',
|
|
407
|
+
history: 'Historia',
|
|
408
|
+
grafana: 'Grafana',
|
|
409
|
+
crm: 'CRM',
|
|
410
|
+
},
|
|
411
|
+
headerActions: {
|
|
412
|
+
account: 'Konto',
|
|
413
|
+
docs: 'Dokumentacja',
|
|
414
|
+
settings: 'Ustawienia',
|
|
415
|
+
logout: 'Wyloguj',
|
|
416
|
+
buildVersion: 'Wersja kompilacji',
|
|
417
|
+
},
|
|
418
|
+
tableActions: {
|
|
419
|
+
filterReset: 'Zresetuj filtry',
|
|
420
|
+
columnSelect: 'Wybierz kolumny',
|
|
421
|
+
refreshTable: 'Odśwież tabelę',
|
|
422
|
+
expandFilters: 'Rozwiń filtry',
|
|
423
|
+
},
|
|
424
|
+
tableColumnSelect: {
|
|
425
|
+
title: 'Wybierz widoczne kolumny',
|
|
426
|
+
},
|
|
427
|
+
statusSelect: {
|
|
428
|
+
online: 'Online',
|
|
429
|
+
pause: 'Pauza',
|
|
430
|
+
offline: 'Offline',
|
|
431
|
+
breakOut: 'Przerwa',
|
|
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]: 'Wybierz kolumny',
|
|
442
|
+
[IconAction.VARIABLES]: 'Wybierz kolumny zmiennych',
|
|
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')} kontakty`;
|
|
464
|
+
},
|
|
465
|
+
},
|
|
466
|
+
},
|
|
467
|
+
errorPages: {
|
|
468
|
+
goBack: 'Wróć',
|
|
469
|
+
page403: {
|
|
470
|
+
title: 'Brak dostępu',
|
|
471
|
+
text: 'Przepraszamy, nie masz wystarczających uprawnień, aby zobaczyć tę stronę.',
|
|
472
|
+
},
|
|
473
|
+
page404: {
|
|
474
|
+
title: 'Wygląda na to, że się zgubiłeś',
|
|
475
|
+
text: 'Przepraszamy, nie możemy znaleźć strony, której szukasz.',
|
|
476
|
+
},
|
|
477
|
+
},
|
|
478
|
+
copyAction: {
|
|
479
|
+
copy: 'Kopiuj',
|
|
480
|
+
copied: 'Skopiowano do schowka!',
|
|
481
|
+
},
|
|
482
|
+
auditForm: {
|
|
483
|
+
question: 'Kryterium',
|
|
484
|
+
option: 'Opcja | Opcje',
|
|
485
|
+
score: 'Wynik | Wyniki',
|
|
486
|
+
addQuestion: 'Dodaj kryterium',
|
|
487
|
+
answerType: 'Typ odpowiedzi',
|
|
488
|
+
type: {
|
|
489
|
+
options: 'Opcje',
|
|
490
|
+
score: 'Wynik',
|
|
491
|
+
},
|
|
492
|
+
clearSelection: 'Wyczyść wybór',
|
|
493
|
+
},
|
|
494
|
+
deleteConfirmationPopup: {
|
|
495
|
+
title: 'Potwierdź usunięcie',
|
|
496
|
+
askingAlert:
|
|
497
|
+
'Czy na pewno chcesz usunąć {subject}? Tej akcji nie można cofnąć.',
|
|
498
|
+
tableAskingAlert:
|
|
499
|
+
'Czy na pewno chcesz\n usunąć {count} rekord? | Czy na pewno chcesz\n usunąć {count} rekordy?',
|
|
500
|
+
deleteAll: 'WSZYSTKO',
|
|
501
|
+
},
|
|
502
|
+
dummy: {
|
|
503
|
+
text: 'Nie ma jeszcze żadnych rekordów',
|
|
504
|
+
},
|
|
505
|
+
empty: {
|
|
506
|
+
text: {
|
|
507
|
+
empty: 'Nie ma jeszcze żadnych rekordów',
|
|
508
|
+
filters: 'Niestety, żadne rekordy nie pasują do Twoich kryteriów',
|
|
509
|
+
},
|
|
510
|
+
},
|
|
511
|
+
agentStatusSelect: {
|
|
512
|
+
pauseCausePopup: {
|
|
513
|
+
title: 'Wybierz powód pauzy',
|
|
514
|
+
min: 'Min',
|
|
515
|
+
unlimited: 'Bez limitu',
|
|
516
|
+
},
|
|
517
|
+
statusSelectErrorPopup: {
|
|
518
|
+
title: 'Uwaga',
|
|
519
|
+
message:
|
|
520
|
+
'Przekroczono limit agentów mogących wziąć pauzę. Pauza jest w tej chwili niedostępna.',
|
|
521
|
+
},
|
|
522
|
+
},
|
|
523
|
+
saveFailedPopup: {
|
|
524
|
+
title: 'Zapisywanie nie powiodło się',
|
|
525
|
+
label: 'Coś poszło nie tak, spróbuj ponownie',
|
|
526
|
+
exportToJson: 'Eksportuj do JSON',
|
|
527
|
+
},
|
|
528
|
+
filters: {
|
|
529
|
+
datetime: {
|
|
530
|
+
[RelativeDatetimeValue.Today]: 'Dzisiaj',
|
|
531
|
+
[RelativeDatetimeValue.ThisWeek]: 'Ten tydzień',
|
|
532
|
+
[RelativeDatetimeValue.ThisMonth]: 'Ten miesiąc',
|
|
533
|
+
[RelativeDatetimeValue.Custom]: 'Niestandardowy zakres dat',
|
|
534
|
+
},
|
|
535
|
+
addFilter: ({ linked }) => {
|
|
536
|
+
return `${linked('reusable.add')} ${linked(
|
|
537
|
+
'reusable.filter',
|
|
538
|
+
).toLowerCase()}`;
|
|
539
|
+
},
|
|
540
|
+
filterName: ({ linked }) => {
|
|
541
|
+
return linked('vocabulary.column');
|
|
542
|
+
},
|
|
543
|
+
filterValue: ({ linked }) => {
|
|
544
|
+
return linked('vocabulary.values');
|
|
545
|
+
},
|
|
546
|
+
filterValueFrom: ({ linked }) => {
|
|
547
|
+
const from = linked('reusable.from').toLowerCase();
|
|
548
|
+
return `${linked('vocabulary.values')} ${from}`;
|
|
549
|
+
},
|
|
550
|
+
filterLabel: ({ linked }) => {
|
|
551
|
+
return linked('vocabulary.labels');
|
|
552
|
+
},
|
|
553
|
+
actualReactionTime: ({ linked }) => {
|
|
554
|
+
return linked('cases.actualReactionTime');
|
|
555
|
+
},
|
|
556
|
+
actualResolutionTime: ({ linked }) => {
|
|
557
|
+
return linked('cases.actualResolutionTime');
|
|
558
|
+
},
|
|
559
|
+
agent: ({ linked }) => {
|
|
560
|
+
return linked('objects.agent.agent');
|
|
561
|
+
},
|
|
562
|
+
amdResult: ({ linked }) => {
|
|
563
|
+
return linked('objects.amdResult');
|
|
564
|
+
},
|
|
565
|
+
assignee: ({ linked }) => {
|
|
566
|
+
return linked('cases.assignee');
|
|
567
|
+
},
|
|
568
|
+
author: ({ linked }) => {
|
|
569
|
+
return linked('cases.author');
|
|
570
|
+
},
|
|
571
|
+
cause: ({ linked }) => {
|
|
572
|
+
return linked('objects.hangupCause');
|
|
573
|
+
},
|
|
574
|
+
closeReasonGroups: ({ linked }) => {
|
|
575
|
+
return linked('cases.reason');
|
|
576
|
+
},
|
|
577
|
+
contact: ({ linked }) => {
|
|
578
|
+
return linked('vocabulary.contact');
|
|
579
|
+
},
|
|
580
|
+
contactGroup: ({ linked }) => {
|
|
581
|
+
return linked('cases.groupPerformers');
|
|
582
|
+
},
|
|
583
|
+
createdAt: ({ linked }) => {
|
|
584
|
+
return linked('reusable.createdAt');
|
|
585
|
+
},
|
|
586
|
+
createdAtFrom: ({ linked }) => {
|
|
587
|
+
return linked('reusable.from');
|
|
588
|
+
},
|
|
589
|
+
createdAtTo: ({ linked }) => {
|
|
590
|
+
return linked('reusable.to');
|
|
591
|
+
},
|
|
592
|
+
direction: ({ linked }) => {
|
|
593
|
+
return linked('objects.direction');
|
|
594
|
+
},
|
|
595
|
+
gateway: ({ linked }) => {
|
|
596
|
+
return linked('objects.gateway');
|
|
597
|
+
},
|
|
598
|
+
grantee: ({ linked }) => {
|
|
599
|
+
return linked('objects.grantee');
|
|
600
|
+
},
|
|
601
|
+
hasAttachment: ({ linked }) => {
|
|
602
|
+
return linked('objects.attachment');
|
|
603
|
+
},
|
|
604
|
+
hasFile: ({ linked }) => {
|
|
605
|
+
return linked('objects.hasRecording');
|
|
606
|
+
},
|
|
607
|
+
hasTranscription: ({ linked }) => {
|
|
608
|
+
return linked('objects.transcription');
|
|
609
|
+
},
|
|
610
|
+
hasUser: ({ linked }) => {
|
|
611
|
+
return linked('objects.user');
|
|
612
|
+
},
|
|
613
|
+
impacted: ({ linked }) => {
|
|
614
|
+
return linked('cases.impacted');
|
|
615
|
+
},
|
|
616
|
+
contactLabel: ({ linked }) => {
|
|
617
|
+
return linked('vocabulary.labels');
|
|
618
|
+
},
|
|
619
|
+
contactOwner: ({ linked }) => {
|
|
620
|
+
return linked('objects.owner');
|
|
621
|
+
},
|
|
622
|
+
priority: ({ linked }) => {
|
|
623
|
+
return linked('vocabulary.priority');
|
|
624
|
+
},
|
|
625
|
+
queue: ({ linked }) => {
|
|
626
|
+
return linked('objects.queue.queue');
|
|
627
|
+
},
|
|
628
|
+
rated: 'Oceniony',
|
|
629
|
+
ratedBy: ({ linked }) => {
|
|
630
|
+
return linked('objects.ratedBy');
|
|
631
|
+
},
|
|
632
|
+
rating: ({ linked }) => {
|
|
633
|
+
return linked('cases.rating');
|
|
634
|
+
},
|
|
635
|
+
reactionTime: ({ linked }) => {
|
|
636
|
+
return linked('cases.reactionTime');
|
|
637
|
+
},
|
|
638
|
+
reporter: ({ linked }) => {
|
|
639
|
+
return linked('cases.reporter');
|
|
640
|
+
},
|
|
641
|
+
resolutionTime: ({ linked }) => {
|
|
642
|
+
return linked('cases.resolutionTime');
|
|
643
|
+
},
|
|
644
|
+
score: ({ linked }) => {
|
|
645
|
+
return linked('webitelUI.auditForm.score');
|
|
646
|
+
},
|
|
647
|
+
service: ({ linked }) => {
|
|
648
|
+
return linked('cases.service');
|
|
649
|
+
},
|
|
650
|
+
sla: ({ linked }) => {
|
|
651
|
+
return linked('cases.appliedSLA');
|
|
652
|
+
},
|
|
653
|
+
slaCondition: ({ linked }) => {
|
|
654
|
+
return linked('cases.appliedCondition');
|
|
655
|
+
},
|
|
656
|
+
source: ({ linked }) => {
|
|
657
|
+
return linked('cases.source');
|
|
658
|
+
},
|
|
659
|
+
status: ({ linked }) => {
|
|
660
|
+
return linked('cases.status');
|
|
661
|
+
},
|
|
662
|
+
tag: ({ linked }) => {
|
|
663
|
+
return linked('vocabulary.tag');
|
|
664
|
+
},
|
|
665
|
+
talkDuration: ({ linked }) => {
|
|
666
|
+
return linked('objects.talkDuration');
|
|
667
|
+
},
|
|
668
|
+
team: ({ linked }) => {
|
|
669
|
+
return linked('objects.team');
|
|
670
|
+
},
|
|
671
|
+
totalDuration: ({ linked }) => {
|
|
672
|
+
return linked('objects.totalDuration');
|
|
673
|
+
},
|
|
674
|
+
user: ({ linked }) => {
|
|
675
|
+
return linked('objects.user');
|
|
676
|
+
},
|
|
677
|
+
variable: ({ linked }) => {
|
|
678
|
+
return linked('vocabulary.variables');
|
|
679
|
+
},
|
|
680
|
+
presets: {
|
|
681
|
+
preset: 'Preset | Presety',
|
|
682
|
+
overwritePresetTitle: 'Preset o tej nazwie już istnieje.',
|
|
683
|
+
overwritePresetText: 'Czy chcesz go zastąpić?',
|
|
684
|
+
notifications: {
|
|
685
|
+
success: {
|
|
686
|
+
update: ({ linked }) => {
|
|
687
|
+
return linked('systemNotifications.success.update', {
|
|
688
|
+
entity: linked('filters.presets.preset'),
|
|
689
|
+
});
|
|
690
|
+
},
|
|
691
|
+
create: ({ linked }) => {
|
|
692
|
+
return linked('systemNotifications.success.create', {
|
|
693
|
+
entity: linked('filters.presets.preset'),
|
|
694
|
+
});
|
|
695
|
+
},
|
|
696
|
+
delete: ({ linked }) => {
|
|
697
|
+
return linked('systemNotifications.success.delete', {
|
|
698
|
+
entity: linked('filters.presets.preset'),
|
|
699
|
+
});
|
|
700
|
+
},
|
|
701
|
+
},
|
|
702
|
+
},
|
|
703
|
+
},
|
|
704
|
+
},
|
|
705
|
+
},
|
|
706
|
+
systemNotifications: {
|
|
707
|
+
success: {
|
|
708
|
+
update: ({ named }) =>
|
|
709
|
+
`${named('entity').toLowerCase()} został zaktualizowany`,
|
|
710
|
+
create: ({ named }) => `${named('entity').toLowerCase()} został zapisany`,
|
|
711
|
+
delete: ({ named }) => `${named('entity').toLowerCase()} został usunięty`,
|
|
712
|
+
},
|
|
713
|
+
},
|
|
714
|
+
errorNotifications: {
|
|
715
|
+
chatHistoryApi: 'Wystąpił błąd podczas ładowania historii czatu',
|
|
716
|
+
markChatProcessed: 'Nie udało się przenieść czatu do "Zamkniętych"',
|
|
717
|
+
},
|
|
718
|
+
};
|