@seamly/web-ui 18.3.0 → 19.0.0-beta.3
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/build/dist/lib/index.debug.js +349 -74
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.debug.min.js.LICENSE.txt +108 -8
- package/build/dist/lib/index.js +6103 -5988
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/index.min.js.LICENSE.txt +1 -1
- package/build/dist/lib/standalone.js +2414 -2226
- package/build/dist/lib/standalone.min.js +1 -1
- package/build/dist/lib/standalone.min.js.LICENSE.txt +1 -1
- package/build/dist/lib/storage.js +8 -1
- package/build/dist/lib/storage.min.js +1 -1
- package/build/dist/lib/style-guide.js +1517 -785
- package/build/dist/lib/style-guide.min.js +1 -1
- package/build/dist/lib/styles.css +1 -1
- package/package.json +27 -28
- package/src/javascripts/api/index.js +25 -40
- package/src/javascripts/api/producer.js +3 -6
- package/src/javascripts/config.js +3 -3
- package/src/javascripts/domains/app/actions.js +28 -11
- package/src/javascripts/domains/app/hooks.js +6 -0
- package/src/javascripts/domains/app/index.js +3 -0
- package/src/javascripts/domains/app/reducer.js +16 -0
- package/src/javascripts/domains/app/selectors.js +8 -0
- package/src/javascripts/domains/app/utils.js +4 -0
- package/src/javascripts/domains/config/actions.js +1 -3
- package/src/javascripts/domains/config/middleware.js +0 -4
- package/src/javascripts/domains/config/reducer.js +2 -13
- package/src/javascripts/domains/config/selectors.js +3 -3
- package/src/javascripts/domains/config/utils.js +4 -0
- package/src/javascripts/domains/forms/actions.js +1 -3
- package/src/javascripts/domains/forms/reducer.js +1 -2
- package/src/javascripts/domains/forms/selectors.js +2 -2
- package/src/javascripts/domains/forms/utils.js +5 -0
- package/src/javascripts/domains/i18n/actions.js +20 -0
- package/src/javascripts/domains/i18n/hooks.js +38 -0
- package/src/javascripts/domains/i18n/index.js +5 -84
- package/src/javascripts/domains/i18n/reducer.js +64 -0
- package/src/javascripts/domains/i18n/selectors.js +15 -0
- package/src/javascripts/domains/i18n/utils.js +4 -0
- package/src/javascripts/domains/interrupt/actions.js +1 -3
- package/src/javascripts/domains/interrupt/reducer.js +1 -2
- package/src/javascripts/domains/interrupt/selectors.js +3 -2
- package/src/javascripts/domains/interrupt/utils.js +4 -0
- package/src/javascripts/domains/redux/hooks.js +1 -0
- package/src/javascripts/domains/store/index.js +7 -1
- package/src/javascripts/domains/translations/actions.js +1 -3
- package/src/javascripts/domains/translations/components/chat-status.js +1 -1
- package/src/javascripts/domains/translations/components/options-dialog/form.js +11 -6
- package/src/javascripts/domains/translations/index.js +1 -0
- package/src/javascripts/domains/translations/middleware.js +43 -0
- package/src/javascripts/domains/translations/reducer.js +2 -9
- package/src/javascripts/domains/translations/selectors.js +2 -2
- package/src/javascripts/domains/translations/utils.js +4 -0
- package/src/javascripts/index.js +3 -0
- package/src/javascripts/lib/engine/index.js +1 -0
- package/src/javascripts/lib/mutex.js +30 -0
- package/src/javascripts/lib/redux-helpers/index.js +55 -16
- package/src/javascripts/lib/store/providers/session-storage.js +6 -1
- package/src/javascripts/style-guide/components/app.js +7 -2
- package/src/javascripts/style-guide/components/static-core.js +9 -3
- package/src/javascripts/style-guide/states.js +8 -8
- package/src/javascripts/style-guide/style-guide-engine.js +14 -11
- package/src/javascripts/ui/components/conversation/event/divider/variants/new-translation.js +1 -1
- package/src/javascripts/ui/components/conversation/event/upload.js +2 -2
- package/src/javascripts/ui/components/core/seamly-activity-monitor.js +2 -0
- package/src/javascripts/ui/components/core/seamly-event-subscriber.js +2 -0
- package/src/javascripts/ui/components/core/seamly-instance-functions-loader.js +1 -7
- package/src/javascripts/ui/components/core/seamly-new-notifications.js +5 -6
- package/src/javascripts/ui/components/core/seamly-read-state.js +6 -4
- package/src/javascripts/ui/components/entry/text-entry/hooks.js +6 -4
- package/src/javascripts/ui/components/entry/text-entry/text-entry-form.js +10 -3
- package/src/javascripts/ui/components/entry/upload/file-upload-form.js +6 -3
- package/src/javascripts/ui/components/entry/upload/index.js +8 -3
- package/src/javascripts/ui/components/faq/faq.js +2 -2
- package/src/javascripts/ui/components/layout/app-frame.js +11 -8
- package/src/javascripts/ui/components/layout/interrupt.js +6 -2
- package/src/javascripts/ui/components/warnings/resume-conversation-prompt.js +1 -1
- package/src/javascripts/ui/components/widgets/upload-progress.js +1 -1
- package/src/javascripts/ui/hooks/seamly-api-hooks.js +0 -6
- package/src/javascripts/ui/hooks/seamly-entry-hooks.js +17 -21
- package/src/javascripts/ui/hooks/seamly-hooks.js +0 -1
- package/src/javascripts/ui/hooks/use-seamly-commands.js +5 -6
- package/src/javascripts/ui/hooks/use-seamly-visibility.js +3 -5
- package/src/javascripts/ui/hooks/use-single-file-upload.js +4 -1
- package/src/javascripts/ui/utils/general-utils.js +6 -13
- package/src/stylesheets/1-settings/_config.scss +2 -1
- package/src/stylesheets/3-app/_app.scss +3 -4
- package/src/stylesheets/5-components/_faq.scss +3 -8
- package/src/stylesheets/5-components/_modal.scss +3 -3
- package/webpack/config.package.js +0 -18
- package/webpack/config.site.js +6 -0
- package/webpack/defaults.js +0 -3
- package/CHANGELOG.md +0 -573
- package/build/dist/translations/de-informal.js +0 -274
- package/build/dist/translations/de-informal.min.js +0 -1
- package/build/dist/translations/en.js +0 -274
- package/build/dist/translations/en.min.js +0 -1
- package/build/dist/translations/es-informal.js +0 -280
- package/build/dist/translations/es-informal.min.js +0 -1
- package/build/dist/translations/nl-formal.js +0 -274
- package/build/dist/translations/nl-formal.min.js +0 -1
- package/build/dist/translations/nl-informal.js +0 -274
- package/build/dist/translations/nl-informal.min.js +0 -1
- package/src/javascripts/lib/i18n.js +0 -46
- package/translations/de-informal.js +0 -235
- package/translations/en.js +0 -232
- package/translations/es-informal.js +0 -241
- package/translations/nl-formal.js +0 -228
- package/translations/nl-informal.js +0 -228
|
@@ -1,274 +0,0 @@
|
|
|
1
|
-
/******/ (() => { // webpackBootstrap
|
|
2
|
-
/******/ "use strict";
|
|
3
|
-
/******/ // The require scope
|
|
4
|
-
/******/ var __webpack_require__ = {};
|
|
5
|
-
/******/
|
|
6
|
-
/************************************************************************/
|
|
7
|
-
/******/ /* webpack/runtime/define property getters */
|
|
8
|
-
/******/ (() => {
|
|
9
|
-
/******/ // define getter functions for harmony exports
|
|
10
|
-
/******/ __webpack_require__.d = (exports, definition) => {
|
|
11
|
-
/******/ for(var key in definition) {
|
|
12
|
-
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
13
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
14
|
-
/******/ }
|
|
15
|
-
/******/ }
|
|
16
|
-
/******/ };
|
|
17
|
-
/******/ })();
|
|
18
|
-
/******/
|
|
19
|
-
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
20
|
-
/******/ (() => {
|
|
21
|
-
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
22
|
-
/******/ })();
|
|
23
|
-
/******/
|
|
24
|
-
/******/ /* webpack/runtime/make namespace object */
|
|
25
|
-
/******/ (() => {
|
|
26
|
-
/******/ // define __esModule on exports
|
|
27
|
-
/******/ __webpack_require__.r = (exports) => {
|
|
28
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
29
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
30
|
-
/******/ }
|
|
31
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
32
|
-
/******/ };
|
|
33
|
-
/******/ })();
|
|
34
|
-
/******/
|
|
35
|
-
/************************************************************************/
|
|
36
|
-
var __webpack_exports__ = {};
|
|
37
|
-
__webpack_require__.r(__webpack_exports__);
|
|
38
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
39
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
40
|
-
/* harmony export */ });
|
|
41
|
-
// Please note: All texts containing the string 'srText' are short for
|
|
42
|
-
// Screen Reader Text. These texts are invisible on screen but broadcast
|
|
43
|
-
// to screen readers. Avoid undue verbosity, but ensure that a user who cannot
|
|
44
|
-
// see the screen will get both the message content as well as the context
|
|
45
|
-
// in which the message occurred if not already clear from the current
|
|
46
|
-
// position of the keyboard focus.
|
|
47
|
-
// Example: An error occurs in the chat window and this error has an 'srText'
|
|
48
|
-
// entry. Because the error could occur while the user is NOT chatting in the window,
|
|
49
|
-
// add context such as "Something went wrong with the chat session" as just saying
|
|
50
|
-
// "Something went wrong" would not be clear enough for users who cannot see the
|
|
51
|
-
// source of the error on screen.
|
|
52
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
53
|
-
'carousel.controls.next': 'Weiter',
|
|
54
|
-
'carousel.controls.previous': 'Zurück',
|
|
55
|
-
'carousel.slide.label': ({
|
|
56
|
-
index,
|
|
57
|
-
total
|
|
58
|
-
}) => `${index} von ${total}`,
|
|
59
|
-
'dateTime.srText': ({
|
|
60
|
-
date,
|
|
61
|
-
time
|
|
62
|
-
}) => `Nachrichten ab ${date} um ${time}`,
|
|
63
|
-
'dateTime.today': 'Heute',
|
|
64
|
-
'dateTime.yesterday': 'Gestern',
|
|
65
|
-
'disclaimer.content': 'Diese Chat Session wird von uns aufgezeichnet, um unseren Service stetig zu verbessern.',
|
|
66
|
-
'disclaimer.title': 'Datenschutzbestimmungen',
|
|
67
|
-
'dividerKeys.newTopic': 'Neues Thema gestartet',
|
|
68
|
-
'errors.configError.message': 'Leider ist momentan kein Aufbau möglich, bitte versuche es später noch einmal.',
|
|
69
|
-
'errors.configError.srText': 'Es gab einen Fehler beim Chat Aufbau. Bitte versuche es später noch einmal.',
|
|
70
|
-
'errors.configError.title': 'Fehler im Chat Aufbau.',
|
|
71
|
-
'errors.general.buttonText': 'Chat neu starten',
|
|
72
|
-
'errors.general.message': 'Möchtest du eine neue Chat Session starten?',
|
|
73
|
-
'errors.general.srText': 'Es ist etwas schief gegangen. Du kannst den Chat neu starten.',
|
|
74
|
-
'errors.general.title': 'Da ist etwas schief gegangen',
|
|
75
|
-
'errors.seamlyOffline.message': 'Es scheint ein Problem mit deiner oder unserer Verbindung zu geben. Die Chat Session kann weiter gehen, sobald wieder eine Verbindung besteht.',
|
|
76
|
-
'errors.seamlyOffline.srText': 'Der Chat hat Verbindungsprobleme. Es scheint ein Problem mit deiner oder unserer Verbindung zu geben. Die Chat Session kann weiter gehen, sobald wieder eine Verbindung besteht.',
|
|
77
|
-
'errors.seamlyOffline.title': 'Verbindungsprobleme',
|
|
78
|
-
'faq.headingText': 'Themenvorschläge',
|
|
79
|
-
'faq.srAvailableText': 'Themenvorschläge sind im Chat verfügbar.',
|
|
80
|
-
'faq.srUnavailableText': 'Themenvorschläge sind im Chat nicht mehr verfügbar',
|
|
81
|
-
'faq.srUpdatedText': 'Es gibt neue Themenvorschläge im Chat.',
|
|
82
|
-
'fileUpload.cancelButtonText': 'Upload abbrechen',
|
|
83
|
-
'fileUpload.contentHint': size => `Wähle eine Datei von maximal ${size}`,
|
|
84
|
-
'fileUpload.errors.general': 'Beim Hochladen ist ein Fehler aufgetreten. Brich den Upload ab und versuche es erneut.',
|
|
85
|
-
'fileUpload.errors.noFile': 'Wähle eine Datei zum Hochladen',
|
|
86
|
-
'fileUpload.errors.tooLarge': 'Die gewählte Datei ist zu groß, wähle eine kleinere Datei',
|
|
87
|
-
'fileUpload.errors.unavailable': 'Das Hochladen von Dateien ist derzeit nicht möglich. Brich den Upload ab und versuche es später erneut.',
|
|
88
|
-
'fileUpload.errors.virusFound': 'The selected file is unsafe, please upload a different file.',
|
|
89
|
-
'fileUpload.errors.wrongType': 'Der ausgewählte Dateityp wird nicht unterstützt. Brich den Upload ab und wähle eine andere Datei.',
|
|
90
|
-
'fileUpload.fileUnavailableText': 'Dieser Download-Link ist nicht mehr gültig',
|
|
91
|
-
'fileUpload.labelText': 'Wähle eine Datei',
|
|
92
|
-
'fileUpload.selectedText': fileName => {
|
|
93
|
-
if (fileName) {
|
|
94
|
-
return fileName;
|
|
95
|
-
} else {
|
|
96
|
-
return 'Keine Datei ausgewählt';
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
'fileUpload.srAvailableText': 'Das Uploaden von Dateien im Chat ist jetzt möglich',
|
|
100
|
-
'fileUpload.srCompleteText': 'Upload abgeschlossen.',
|
|
101
|
-
'fileUpload.srFileUploadedText': fileName => `Hochgeladene Datei ${fileName}.`,
|
|
102
|
-
'fileUpload.srFileDownloadText': fileName => `Datei ${fileName} herunterladen.`,
|
|
103
|
-
'fileUpload.srProgressLabel': fileName => `Upload-Fortschritt von ${fileName}`,
|
|
104
|
-
'fileUpload.srStartedText': 'Upload gestartet.',
|
|
105
|
-
'fileUpload.srUnavailableText': 'Das Uploaden von Dateien im Chat ist jetzt nicht mehr möglich',
|
|
106
|
-
'fileUpload.toggleButtonText': 'Dateien hochladen',
|
|
107
|
-
'fileUpload.uploadButtonText': 'Datei hochladen',
|
|
108
|
-
'header.collapseApp': 'Chat schliessen',
|
|
109
|
-
'header.title': 'Du sprichst mit',
|
|
110
|
-
'idleDetachWarning.continueButton': 'Gespräch fortsetzen',
|
|
111
|
-
'idleDetachWarning.countdownText': 'Das Gespräch wird beendet in:',
|
|
112
|
-
'idleDetachWarning.countdownTimer': ({
|
|
113
|
-
minutes,
|
|
114
|
-
seconds
|
|
115
|
-
}) => {
|
|
116
|
-
switch (minutes) {
|
|
117
|
-
case 1:
|
|
118
|
-
switch (seconds) {
|
|
119
|
-
case 1:
|
|
120
|
-
return '1 Minute, 1 Sekunde';
|
|
121
|
-
|
|
122
|
-
case 0:
|
|
123
|
-
return '1 Minute';
|
|
124
|
-
|
|
125
|
-
default:
|
|
126
|
-
return `1 Minute, ${seconds} Sekunden`;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
case 0:
|
|
130
|
-
switch (seconds) {
|
|
131
|
-
case 1:
|
|
132
|
-
return '1 Sekunde';
|
|
133
|
-
|
|
134
|
-
case 0:
|
|
135
|
-
default:
|
|
136
|
-
return `${seconds} Sekunden`;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
default:
|
|
140
|
-
switch (seconds) {
|
|
141
|
-
case 1:
|
|
142
|
-
return `${minutes} Minuten, 1 seconde`;
|
|
143
|
-
|
|
144
|
-
case 0:
|
|
145
|
-
return `${minutes} Minuten`;
|
|
146
|
-
|
|
147
|
-
default:
|
|
148
|
-
return `${minutes} Minuten, ${seconds} Sekunden`;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
}
|
|
152
|
-
},
|
|
153
|
-
'idleDetachWarning.countdownTitle': 'Bist du noch da?',
|
|
154
|
-
'idleDetachWarning.detachButton': 'Gespräch beenden',
|
|
155
|
-
'idleDetachWarning.notifyTransferText': 'Das Gespräch wird beendet.',
|
|
156
|
-
'idleDetachWarning.srCountDownStoppedText': 'Automatische Beendung des Gesprächs abgebrochen. Willkommmen zurück!',
|
|
157
|
-
'info.cobrowsing.cobrowsingEnded': 'Die Bildschirmfreigabe ist beendet',
|
|
158
|
-
'info.cobrowsing.cobrowsingStarted': 'Die Bildschirmfreigabe ist jetzt aktiviert. Der Mitarbeiter kann die Seite sehen, auf der du dich gerade befindest',
|
|
159
|
-
'info.sendTranscript.accepted': ({
|
|
160
|
-
emailAddress
|
|
161
|
-
}) => `Das Chatgespräch wird per E-Mail an ${emailAddress} gesendet`,
|
|
162
|
-
'input.inputLabel': limit => {
|
|
163
|
-
if (limit) {
|
|
164
|
-
return `Deine Nachricht (max. ${limit} Zeichen)`;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
return 'Deine Nachricht';
|
|
168
|
-
},
|
|
169
|
-
'input.inputPlaceholder': limit => {
|
|
170
|
-
if (limit) {
|
|
171
|
-
return `Deine Nachricht (max. ${limit} Zeichen)`;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
return 'Deine Nachricht';
|
|
175
|
-
},
|
|
176
|
-
'input.sendMessage': 'Versenden',
|
|
177
|
-
'input.srCharacterLimitText': limit => {
|
|
178
|
-
switch (limit) {
|
|
179
|
-
case 1:
|
|
180
|
-
return '1 Zeichen übrig.';
|
|
181
|
-
|
|
182
|
-
case 0:
|
|
183
|
-
default:
|
|
184
|
-
return `${limit} Zeichen übrig.`;
|
|
185
|
-
}
|
|
186
|
-
},
|
|
187
|
-
'lightbox.closeLabel': 'Schliessen.',
|
|
188
|
-
'lightbox.heading': 'Bild vergrössern',
|
|
189
|
-
'message.choicePrompts.cancelChooseAgain': 'Auswahl ändern abbrechen',
|
|
190
|
-
'message.choicePrompts.chooseAgain': 'Auswahl ändern',
|
|
191
|
-
'message.image.srTextEnlargeButtonLabel': ({
|
|
192
|
-
description
|
|
193
|
-
}) => `Enlarge ${description}`,
|
|
194
|
-
'message.srNewEventCount': ({
|
|
195
|
-
newCount
|
|
196
|
-
}) => {
|
|
197
|
-
switch (newCount) {
|
|
198
|
-
case 1:
|
|
199
|
-
return `Es gibt eine ungelesene Nachricht.`;
|
|
200
|
-
|
|
201
|
-
case 0:
|
|
202
|
-
default:
|
|
203
|
-
return `Es gibt ${newCount} ungelesene Nachrichten.`;
|
|
204
|
-
}
|
|
205
|
-
},
|
|
206
|
-
'message.srTextUnreadCount': ({
|
|
207
|
-
unreadCount
|
|
208
|
-
}) => {
|
|
209
|
-
switch (unreadCount) {
|
|
210
|
-
case 1:
|
|
211
|
-
return `Es gibt eine ungelesene Nachricht.`;
|
|
212
|
-
|
|
213
|
-
case 0:
|
|
214
|
-
default:
|
|
215
|
-
return `Es gibt ${unreadCount} ungelesene Nachrichten.`;
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
'options.cancelButtonText': 'Abbrechen',
|
|
219
|
-
'options.cobrowsing.cobrowsingActiveText': 'Bildschirmfreigabe aktiv',
|
|
220
|
-
'options.cobrowsing.cobrowsingUnavailable': 'Die Freigabe des Bildschirms ist jetzt nicht möglich.',
|
|
221
|
-
'options.cobrowsing.description': 'Dadurch kann der Mitarbeiter deine aktuelle Seite sehen. Nichts anderes wird geteilt.',
|
|
222
|
-
'options.cobrowsing.labelTurnOff': 'Bildschirmfreigabe ausschalten',
|
|
223
|
-
'options.cobrowsing.labelTurnOn': 'Bildschirmfreigabe einschalten',
|
|
224
|
-
'options.cobrowsing.menuTitle': 'Bildschirmfreigabe',
|
|
225
|
-
'options.cobrowsing.srCobrowsingAvailable': 'Du kannst jetzt deinen Bildschirm freigeben.',
|
|
226
|
-
'options.cobrowsing.srStartedCobrowsingText': 'Die Bildschirmfreigabe ist eingeschaltet',
|
|
227
|
-
'options.cobrowsing.srStopCobrowsingText': 'Stoppen der Bildschirmfreigabe',
|
|
228
|
-
'options.cobrowsing.srStoppedCobrowsingText': 'Die Bildschirmfreigabe wurde gestoppt',
|
|
229
|
-
'options.cobrowsing.stopCobrowsingText': 'Stoppen',
|
|
230
|
-
'options.cobrowsing.title': 'Bildschirmfreigabe',
|
|
231
|
-
'options.openButtonText': 'Optionen',
|
|
232
|
-
'options.saveButtonText': 'Speichern',
|
|
233
|
-
'options.sendTranscript.description': 'Geben Sie die E-Mail-Adresse ein, an die Sie die Chatgespräch erhalten möchten',
|
|
234
|
-
'options.sendTranscript.invalidEmailText': 'Bitte eine gültige E-Mail-Adresse eingeben',
|
|
235
|
-
'options.sendTranscript.label': 'E-Mail-Adresse',
|
|
236
|
-
'options.sendTranscript.menuTitle': 'Chat senden',
|
|
237
|
-
'options.sendTranscript.noEmailText': 'Bitte eine E-Mail-Adresse eingeben',
|
|
238
|
-
'options.sendTranscript.sendButtonText': 'Senden',
|
|
239
|
-
'options.sendTranscript.title': 'Chatgespräch senden',
|
|
240
|
-
'options.unavailableText': 'nicht verfügbar',
|
|
241
|
-
'resumeConversationPrompt.continueButton': 'Gespräch fortsetzen',
|
|
242
|
-
'resumeConversationPrompt.detachButton': 'Stelle eine neue Frage',
|
|
243
|
-
'resumeConversationPrompt.title': name => `Möchtest du das Gespräch mit ${name} fortsetzen?`,
|
|
244
|
-
skiplinkText: 'Zum Eingabefeld',
|
|
245
|
-
'toggleButton.resumeTitle': 'Gespräch fortsetzen mit',
|
|
246
|
-
'toggleButton.subtitle': 'Starte einen Chat mit uns',
|
|
247
|
-
'toggleButton.title': 'Wie können wir dir weiterhelfen?',
|
|
248
|
-
'translations.divider.restartButtonText': 'Neu starten',
|
|
249
|
-
'translations.divider.startText': language => `Übersetzung auf ${language}`,
|
|
250
|
-
'translations.divider.stopText': language => `Übersetzung auf ${language} beendet`,
|
|
251
|
-
'translations.settings.cancelButtonText': 'Abbrechen',
|
|
252
|
-
'translations.settings.currentTranslationLabel': 'Es wird derzeit übersetzt in',
|
|
253
|
-
'translations.settings.defaultOptionLabel': 'Sprache wählen',
|
|
254
|
-
'translations.settings.description': 'Automatische Übersetzungen können Fehler enthalten.',
|
|
255
|
-
'translations.settings.endButtonText': 'Übersetzen beenden',
|
|
256
|
-
'translations.settings.inputLabel': 'Übersetze Chat auf',
|
|
257
|
-
'translations.settings.noLocaleText': 'Wähle eine Sprache, in die übersetzt werden soll',
|
|
258
|
-
'translations.settings.openButtonText': 'Übersetzung',
|
|
259
|
-
'translations.settings.startButtonText': 'Übersetzen beginnen',
|
|
260
|
-
'translations.settings.title': 'Übersetzung',
|
|
261
|
-
'translations.status.label': language => `Übersetzung auf ${language}`,
|
|
262
|
-
'translations.status.srStopText': 'Übersetzen beenden',
|
|
263
|
-
'translations.status.stopText': 'Stop',
|
|
264
|
-
'translations.toggle.hideButtonText': 'Original anzeigen',
|
|
265
|
-
'translations.toggle.showButtonText': 'Übersetzung anzeigen',
|
|
266
|
-
'window.srModalLayoutLabel': 'Chatfenster',
|
|
267
|
-
'window.srTexts.onClose': 'Der Chat wurde geschlossen.',
|
|
268
|
-
'window.srTexts.onHistoryLoad': 'Die Chat Historie wurde geladen.',
|
|
269
|
-
'window.srTexts.onLoad': 'Chat ist verfügbar.',
|
|
270
|
-
'window.srTexts.onOpen': 'Der Chat wurde gestartet.'
|
|
271
|
-
});
|
|
272
|
-
module.exports = __webpack_exports__;
|
|
273
|
-
/******/ })()
|
|
274
|
-
;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(()=>{"use strict";var e={d:(t,n)=>{for(var i in n)e.o(n,i)&&!e.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:n[i]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{default:()=>n});const n={"carousel.controls.next":"Weiter","carousel.controls.previous":"Zurück","carousel.slide.label":({index:e,total:t})=>`${e} von ${t}`,"dateTime.srText":({date:e,time:t})=>`Nachrichten ab ${e} um ${t}`,"dateTime.today":"Heute","dateTime.yesterday":"Gestern","disclaimer.content":"Diese Chat Session wird von uns aufgezeichnet, um unseren Service stetig zu verbessern.","disclaimer.title":"Datenschutzbestimmungen","dividerKeys.newTopic":"Neues Thema gestartet","errors.configError.message":"Leider ist momentan kein Aufbau möglich, bitte versuche es später noch einmal.","errors.configError.srText":"Es gab einen Fehler beim Chat Aufbau. Bitte versuche es später noch einmal.","errors.configError.title":"Fehler im Chat Aufbau.","errors.general.buttonText":"Chat neu starten","errors.general.message":"Möchtest du eine neue Chat Session starten?","errors.general.srText":"Es ist etwas schief gegangen. Du kannst den Chat neu starten.","errors.general.title":"Da ist etwas schief gegangen","errors.seamlyOffline.message":"Es scheint ein Problem mit deiner oder unserer Verbindung zu geben. Die Chat Session kann weiter gehen, sobald wieder eine Verbindung besteht.","errors.seamlyOffline.srText":"Der Chat hat Verbindungsprobleme. Es scheint ein Problem mit deiner oder unserer Verbindung zu geben. Die Chat Session kann weiter gehen, sobald wieder eine Verbindung besteht.","errors.seamlyOffline.title":"Verbindungsprobleme","faq.headingText":"Themenvorschläge","faq.srAvailableText":"Themenvorschläge sind im Chat verfügbar.","faq.srUnavailableText":"Themenvorschläge sind im Chat nicht mehr verfügbar","faq.srUpdatedText":"Es gibt neue Themenvorschläge im Chat.","fileUpload.cancelButtonText":"Upload abbrechen","fileUpload.contentHint":e=>`Wähle eine Datei von maximal ${e}`,"fileUpload.errors.general":"Beim Hochladen ist ein Fehler aufgetreten. Brich den Upload ab und versuche es erneut.","fileUpload.errors.noFile":"Wähle eine Datei zum Hochladen","fileUpload.errors.tooLarge":"Die gewählte Datei ist zu groß, wähle eine kleinere Datei","fileUpload.errors.unavailable":"Das Hochladen von Dateien ist derzeit nicht möglich. Brich den Upload ab und versuche es später erneut.","fileUpload.errors.virusFound":"The selected file is unsafe, please upload a different file.","fileUpload.errors.wrongType":"Der ausgewählte Dateityp wird nicht unterstützt. Brich den Upload ab und wähle eine andere Datei.","fileUpload.fileUnavailableText":"Dieser Download-Link ist nicht mehr gültig","fileUpload.labelText":"Wähle eine Datei","fileUpload.selectedText":e=>e||"Keine Datei ausgewählt","fileUpload.srAvailableText":"Das Uploaden von Dateien im Chat ist jetzt möglich","fileUpload.srCompleteText":"Upload abgeschlossen.","fileUpload.srFileUploadedText":e=>`Hochgeladene Datei ${e}.`,"fileUpload.srFileDownloadText":e=>`Datei ${e} herunterladen.`,"fileUpload.srProgressLabel":e=>`Upload-Fortschritt von ${e}`,"fileUpload.srStartedText":"Upload gestartet.","fileUpload.srUnavailableText":"Das Uploaden von Dateien im Chat ist jetzt nicht mehr möglich","fileUpload.toggleButtonText":"Dateien hochladen","fileUpload.uploadButtonText":"Datei hochladen","header.collapseApp":"Chat schliessen","header.title":"Du sprichst mit","idleDetachWarning.continueButton":"Gespräch fortsetzen","idleDetachWarning.countdownText":"Das Gespräch wird beendet in:","idleDetachWarning.countdownTimer":({minutes:e,seconds:t})=>{switch(e){case 1:switch(t){case 1:return"1 Minute, 1 Sekunde";case 0:return"1 Minute";default:return`1 Minute, ${t} Sekunden`}case 0:switch(t){case 1:return"1 Sekunde";case 0:default:return`${t} Sekunden`}default:switch(t){case 1:return`${e} Minuten, 1 seconde`;case 0:return`${e} Minuten`;default:return`${e} Minuten, ${t} Sekunden`}}},"idleDetachWarning.countdownTitle":"Bist du noch da?","idleDetachWarning.detachButton":"Gespräch beenden","idleDetachWarning.notifyTransferText":"Das Gespräch wird beendet.","idleDetachWarning.srCountDownStoppedText":"Automatische Beendung des Gesprächs abgebrochen. Willkommmen zurück!","info.cobrowsing.cobrowsingEnded":"Die Bildschirmfreigabe ist beendet","info.cobrowsing.cobrowsingStarted":"Die Bildschirmfreigabe ist jetzt aktiviert. Der Mitarbeiter kann die Seite sehen, auf der du dich gerade befindest","info.sendTranscript.accepted":({emailAddress:e})=>`Das Chatgespräch wird per E-Mail an ${e} gesendet`,"input.inputLabel":e=>e?`Deine Nachricht (max. ${e} Zeichen)`:"Deine Nachricht","input.inputPlaceholder":e=>e?`Deine Nachricht (max. ${e} Zeichen)`:"Deine Nachricht","input.sendMessage":"Versenden","input.srCharacterLimitText":e=>{switch(e){case 1:return"1 Zeichen übrig.";case 0:default:return`${e} Zeichen übrig.`}},"lightbox.closeLabel":"Schliessen.","lightbox.heading":"Bild vergrössern","message.choicePrompts.cancelChooseAgain":"Auswahl ändern abbrechen","message.choicePrompts.chooseAgain":"Auswahl ändern","message.image.srTextEnlargeButtonLabel":({description:e})=>`Enlarge ${e}`,"message.srNewEventCount":({newCount:e})=>{switch(e){case 1:return"Es gibt eine ungelesene Nachricht.";case 0:default:return`Es gibt ${e} ungelesene Nachrichten.`}},"message.srTextUnreadCount":({unreadCount:e})=>{switch(e){case 1:return"Es gibt eine ungelesene Nachricht.";case 0:default:return`Es gibt ${e} ungelesene Nachrichten.`}},"options.cancelButtonText":"Abbrechen","options.cobrowsing.cobrowsingActiveText":"Bildschirmfreigabe aktiv","options.cobrowsing.cobrowsingUnavailable":"Die Freigabe des Bildschirms ist jetzt nicht möglich.","options.cobrowsing.description":"Dadurch kann der Mitarbeiter deine aktuelle Seite sehen. Nichts anderes wird geteilt.","options.cobrowsing.labelTurnOff":"Bildschirmfreigabe ausschalten","options.cobrowsing.labelTurnOn":"Bildschirmfreigabe einschalten","options.cobrowsing.menuTitle":"Bildschirmfreigabe","options.cobrowsing.srCobrowsingAvailable":"Du kannst jetzt deinen Bildschirm freigeben.","options.cobrowsing.srStartedCobrowsingText":"Die Bildschirmfreigabe ist eingeschaltet","options.cobrowsing.srStopCobrowsingText":"Stoppen der Bildschirmfreigabe","options.cobrowsing.srStoppedCobrowsingText":"Die Bildschirmfreigabe wurde gestoppt","options.cobrowsing.stopCobrowsingText":"Stoppen","options.cobrowsing.title":"Bildschirmfreigabe","options.openButtonText":"Optionen","options.saveButtonText":"Speichern","options.sendTranscript.description":"Geben Sie die E-Mail-Adresse ein, an die Sie die Chatgespräch erhalten möchten","options.sendTranscript.invalidEmailText":"Bitte eine gültige E-Mail-Adresse eingeben","options.sendTranscript.label":"E-Mail-Adresse","options.sendTranscript.menuTitle":"Chat senden","options.sendTranscript.noEmailText":"Bitte eine E-Mail-Adresse eingeben","options.sendTranscript.sendButtonText":"Senden","options.sendTranscript.title":"Chatgespräch senden","options.unavailableText":"nicht verfügbar","resumeConversationPrompt.continueButton":"Gespräch fortsetzen","resumeConversationPrompt.detachButton":"Stelle eine neue Frage","resumeConversationPrompt.title":e=>`Möchtest du das Gespräch mit ${e} fortsetzen?`,skiplinkText:"Zum Eingabefeld","toggleButton.resumeTitle":"Gespräch fortsetzen mit","toggleButton.subtitle":"Starte einen Chat mit uns","toggleButton.title":"Wie können wir dir weiterhelfen?","translations.divider.restartButtonText":"Neu starten","translations.divider.startText":e=>`Übersetzung auf ${e}`,"translations.divider.stopText":e=>`Übersetzung auf ${e} beendet`,"translations.settings.cancelButtonText":"Abbrechen","translations.settings.currentTranslationLabel":"Es wird derzeit übersetzt in","translations.settings.defaultOptionLabel":"Sprache wählen","translations.settings.description":"Automatische Übersetzungen können Fehler enthalten.","translations.settings.endButtonText":"Übersetzen beenden","translations.settings.inputLabel":"Übersetze Chat auf","translations.settings.noLocaleText":"Wähle eine Sprache, in die übersetzt werden soll","translations.settings.openButtonText":"Übersetzung","translations.settings.startButtonText":"Übersetzen beginnen","translations.settings.title":"Übersetzung","translations.status.label":e=>`Übersetzung auf ${e}`,"translations.status.srStopText":"Übersetzen beenden","translations.status.stopText":"Stop","translations.toggle.hideButtonText":"Original anzeigen","translations.toggle.showButtonText":"Übersetzung anzeigen","window.srModalLayoutLabel":"Chatfenster","window.srTexts.onClose":"Der Chat wurde geschlossen.","window.srTexts.onHistoryLoad":"Die Chat Historie wurde geladen.","window.srTexts.onLoad":"Chat ist verfügbar.","window.srTexts.onOpen":"Der Chat wurde gestartet."};module.exports=t})();
|
|
@@ -1,274 +0,0 @@
|
|
|
1
|
-
/******/ (() => { // webpackBootstrap
|
|
2
|
-
/******/ "use strict";
|
|
3
|
-
/******/ // The require scope
|
|
4
|
-
/******/ var __webpack_require__ = {};
|
|
5
|
-
/******/
|
|
6
|
-
/************************************************************************/
|
|
7
|
-
/******/ /* webpack/runtime/define property getters */
|
|
8
|
-
/******/ (() => {
|
|
9
|
-
/******/ // define getter functions for harmony exports
|
|
10
|
-
/******/ __webpack_require__.d = (exports, definition) => {
|
|
11
|
-
/******/ for(var key in definition) {
|
|
12
|
-
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
13
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
14
|
-
/******/ }
|
|
15
|
-
/******/ }
|
|
16
|
-
/******/ };
|
|
17
|
-
/******/ })();
|
|
18
|
-
/******/
|
|
19
|
-
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
20
|
-
/******/ (() => {
|
|
21
|
-
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
22
|
-
/******/ })();
|
|
23
|
-
/******/
|
|
24
|
-
/******/ /* webpack/runtime/make namespace object */
|
|
25
|
-
/******/ (() => {
|
|
26
|
-
/******/ // define __esModule on exports
|
|
27
|
-
/******/ __webpack_require__.r = (exports) => {
|
|
28
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
29
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
30
|
-
/******/ }
|
|
31
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
32
|
-
/******/ };
|
|
33
|
-
/******/ })();
|
|
34
|
-
/******/
|
|
35
|
-
/************************************************************************/
|
|
36
|
-
var __webpack_exports__ = {};
|
|
37
|
-
__webpack_require__.r(__webpack_exports__);
|
|
38
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
39
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
40
|
-
/* harmony export */ });
|
|
41
|
-
// Please note: All texts containing the string 'srText' are short for
|
|
42
|
-
// Screen Reader Text. These texts are invisible on screen but broadcast
|
|
43
|
-
// to screen readers. Avoid undue verbosity, but ensure that a user who cannot
|
|
44
|
-
// see the screen will get both the message content as well as the context
|
|
45
|
-
// in which the message occurred if not already clear from the current
|
|
46
|
-
// position of the keyboard focus.
|
|
47
|
-
// Example: An error occurs in the chat window and this error has an 'srText'
|
|
48
|
-
// entry. Because the error could occur while the user is NOT chatting in the window,
|
|
49
|
-
// add context such as "Something went wrong with the chat session" as just saying
|
|
50
|
-
// "Something went wrong" would not be clear enough for users who cannot see the
|
|
51
|
-
// source of the error on screen.
|
|
52
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
53
|
-
'carousel.controls.next': 'Next',
|
|
54
|
-
'carousel.controls.previous': 'Previous',
|
|
55
|
-
'carousel.slide.label': ({
|
|
56
|
-
index,
|
|
57
|
-
total
|
|
58
|
-
}) => `${index} of ${total}`,
|
|
59
|
-
'dateTime.srText': ({
|
|
60
|
-
date,
|
|
61
|
-
time
|
|
62
|
-
}) => `Messages starting ${date} at ${time}:`,
|
|
63
|
-
'dateTime.today': 'Today',
|
|
64
|
-
'dateTime.yesterday': 'Yesterday',
|
|
65
|
-
'disclaimer.content': 'This chat session will be saved to help us improve our service delivery.',
|
|
66
|
-
'disclaimer.title': 'Privacy disclaimer',
|
|
67
|
-
'dividerKeys.newTopic': 'New topic started.',
|
|
68
|
-
'errors.configError.message': 'We are sorry this happened, please retry at a later time.',
|
|
69
|
-
'errors.configError.srText': 'A chat configuration error occurred. Our apologies, please retry at a later time.',
|
|
70
|
-
'errors.configError.title': 'Chat configuration error.',
|
|
71
|
-
'errors.general.buttonText': 'Restart chat',
|
|
72
|
-
'errors.general.message': 'Do you want to start a new chat session?',
|
|
73
|
-
'errors.general.srText': 'Something went wrong with the chat session. You can restart the chat.',
|
|
74
|
-
'errors.general.title': 'Something went wrong',
|
|
75
|
-
'errors.seamlyOffline.message': 'There might be a problem with your or our network connection. The chat session should resume as soon the connection is available again.',
|
|
76
|
-
'errors.seamlyOffline.srText': 'The chat has connection issues. There might be a problem with your or our network connection. The chat session should resume as soon as the connection is available again.',
|
|
77
|
-
'errors.seamlyOffline.title': 'Connection issues',
|
|
78
|
-
'faq.headingText': 'Suggested topics',
|
|
79
|
-
'faq.srAvailableText': 'Suggested topics are available in the chat.',
|
|
80
|
-
'faq.srUnavailableText': 'Suggested topics are no longer available in the chat.',
|
|
81
|
-
'faq.srUpdatedText': 'There are new suggested topics in the chat.',
|
|
82
|
-
'fileUpload.cancelButtonText': 'Cancel upload',
|
|
83
|
-
'fileUpload.contentHint': size => `Select a file of maximum ${size}`,
|
|
84
|
-
'fileUpload.errors.general': 'Something went wrong with the upload. Please cancel the upload and try again.',
|
|
85
|
-
'fileUpload.errors.noFile': 'Please select a file to upload',
|
|
86
|
-
'fileUpload.errors.tooLarge': 'The selected file is too large, please upload a smaller file',
|
|
87
|
-
'fileUpload.errors.unavailable': 'Uploading files is no longer possible. Please cancel the upload and try again later.',
|
|
88
|
-
'fileUpload.errors.virusFound': 'The selected file is unsafe, please upload a different file.',
|
|
89
|
-
'fileUpload.errors.wrongType': 'The selected file type is not supported. Please cancel the upload and upload a different file.',
|
|
90
|
-
'fileUpload.fileUnavailableText': 'This download link has expired',
|
|
91
|
-
'fileUpload.labelText': 'Select file',
|
|
92
|
-
'fileUpload.selectedText': fileName => {
|
|
93
|
-
if (fileName) {
|
|
94
|
-
return fileName;
|
|
95
|
-
} else {
|
|
96
|
-
return 'No file selected';
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
'fileUpload.srAvailableText': 'File uploads are now available in the chat.',
|
|
100
|
-
'fileUpload.srCompleteText': 'Upload complete.',
|
|
101
|
-
'fileUpload.srFileDownloadText': fileName => `Download file ${fileName}.`,
|
|
102
|
-
'fileUpload.srFileUploadedText': fileName => `Uploaded file ${fileName}.`,
|
|
103
|
-
'fileUpload.srProgressLabel': fileName => `${fileName} upload progress status`,
|
|
104
|
-
'fileUpload.srStartedText': 'Upload started.',
|
|
105
|
-
'fileUpload.srUnavailableText': 'File uploads in the chat are no longer available.',
|
|
106
|
-
'fileUpload.toggleButtonText': 'Upload files',
|
|
107
|
-
'fileUpload.uploadButtonText': 'Upload file',
|
|
108
|
-
'header.collapseApp': 'collapse chat',
|
|
109
|
-
'header.title': 'You\'re talking to',
|
|
110
|
-
'idleDetachWarning.continueButton': 'Continue conversation',
|
|
111
|
-
'idleDetachWarning.countdownText': 'Your conversation will automatically end in:',
|
|
112
|
-
'idleDetachWarning.countdownTimer': ({
|
|
113
|
-
minutes,
|
|
114
|
-
seconds
|
|
115
|
-
}) => {
|
|
116
|
-
switch (minutes) {
|
|
117
|
-
case 1:
|
|
118
|
-
switch (seconds) {
|
|
119
|
-
case 1:
|
|
120
|
-
return '1 minute, 1 second';
|
|
121
|
-
|
|
122
|
-
case 0:
|
|
123
|
-
return '1 minute';
|
|
124
|
-
|
|
125
|
-
default:
|
|
126
|
-
return `1 minute, ${seconds} seconds`;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
case 0:
|
|
130
|
-
switch (seconds) {
|
|
131
|
-
case 1:
|
|
132
|
-
return '1 second';
|
|
133
|
-
|
|
134
|
-
case 0:
|
|
135
|
-
default:
|
|
136
|
-
return `${seconds} seconds`;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
default:
|
|
140
|
-
switch (seconds) {
|
|
141
|
-
case 1:
|
|
142
|
-
return `${minutes} minutes, 1 second`;
|
|
143
|
-
|
|
144
|
-
case 0:
|
|
145
|
-
return `${minutes} minutes`;
|
|
146
|
-
|
|
147
|
-
default:
|
|
148
|
-
return `${minutes} minutes, ${seconds} seconds`;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
}
|
|
152
|
-
},
|
|
153
|
-
'idleDetachWarning.countdownTitle': 'Are you still there?',
|
|
154
|
-
'idleDetachWarning.detachButton': 'End conversation',
|
|
155
|
-
'idleDetachWarning.notifyTransferText': 'Your conversation is being ended.',
|
|
156
|
-
'idleDetachWarning.srCountDownStoppedText': 'Automatic conversation ending prevented. Welcome back.',
|
|
157
|
-
'info.cobrowsing.cobrowsingEnded': 'Screen sharing has ended',
|
|
158
|
-
'info.cobrowsing.cobrowsingStarted': 'Screen sharing is now enabled. The agent can see the page you\'re currently on',
|
|
159
|
-
'info.sendTranscript.accepted': ({
|
|
160
|
-
emailAddress
|
|
161
|
-
}) => `A transcript will be sent to ${emailAddress}`,
|
|
162
|
-
'input.inputLabel': limit => {
|
|
163
|
-
if (limit) {
|
|
164
|
-
return `Your message (max. ${limit} characters)`;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
return 'Your message';
|
|
168
|
-
},
|
|
169
|
-
'input.inputPlaceholder': limit => {
|
|
170
|
-
if (limit) {
|
|
171
|
-
return `Your message (max. ${limit} characters)`;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
return 'Your message';
|
|
175
|
-
},
|
|
176
|
-
'input.sendMessage': 'Send',
|
|
177
|
-
'input.srCharacterLimitText': limit => {
|
|
178
|
-
switch (limit) {
|
|
179
|
-
case 1:
|
|
180
|
-
return '1 character remaining.';
|
|
181
|
-
|
|
182
|
-
case 0:
|
|
183
|
-
default:
|
|
184
|
-
return `${limit} characters remaining.`;
|
|
185
|
-
}
|
|
186
|
-
},
|
|
187
|
-
'lightbox.closeLabel': 'Close',
|
|
188
|
-
'lightbox.heading': 'Enlarged chat image',
|
|
189
|
-
'message.choicePrompts.cancelChooseAgain': 'Cancel choice change',
|
|
190
|
-
'message.choicePrompts.chooseAgain': 'Change your choice',
|
|
191
|
-
'message.image.srTextEnlargeButtonLabel': ({
|
|
192
|
-
description
|
|
193
|
-
}) => `Enlarge ${description}`,
|
|
194
|
-
'message.srNewEventCount': ({
|
|
195
|
-
newCount
|
|
196
|
-
}) => {
|
|
197
|
-
switch (newCount) {
|
|
198
|
-
case 1:
|
|
199
|
-
return `There is 1 new chat message.`;
|
|
200
|
-
|
|
201
|
-
case 0:
|
|
202
|
-
default:
|
|
203
|
-
return `There are ${newCount} new chat messages.`;
|
|
204
|
-
}
|
|
205
|
-
},
|
|
206
|
-
'message.srTextUnreadCount': ({
|
|
207
|
-
unreadCount
|
|
208
|
-
}) => {
|
|
209
|
-
switch (unreadCount) {
|
|
210
|
-
case 1:
|
|
211
|
-
return `There is 1 new unread chat message.`;
|
|
212
|
-
|
|
213
|
-
case 0:
|
|
214
|
-
default:
|
|
215
|
-
return `There are ${unreadCount} new unread chat messages.`;
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
'options.cancelButtonText': 'Cancel',
|
|
219
|
-
'options.cobrowsing.cobrowsingActiveText': 'Sharing screen',
|
|
220
|
-
'options.cobrowsing.cobrowsingUnavailable': 'Screen sharing is currently unavailable.',
|
|
221
|
-
'options.cobrowsing.description': 'This allows the agent to see the page you\'re currently on. Nothing else is shared.',
|
|
222
|
-
'options.cobrowsing.labelTurnOff': 'Turn screen sharing off',
|
|
223
|
-
'options.cobrowsing.labelTurnOn': 'Turn screen sharing on',
|
|
224
|
-
'options.cobrowsing.menuTitle': 'Screen sharing',
|
|
225
|
-
'options.cobrowsing.srCobrowsingAvailable': 'Screen sharing is now available.',
|
|
226
|
-
'options.cobrowsing.srStartedCobrowsingText': 'Screen sharing has been started.',
|
|
227
|
-
'options.cobrowsing.srStopCobrowsingText': 'Stop screen sharing',
|
|
228
|
-
'options.cobrowsing.srStoppedCobrowsingText': 'Screen sharing has been stopped.',
|
|
229
|
-
'options.cobrowsing.stopCobrowsingText': 'Stop',
|
|
230
|
-
'options.cobrowsing.title': 'Share my screen',
|
|
231
|
-
'options.openButtonText': 'Options',
|
|
232
|
-
'options.saveButtonText': 'Save',
|
|
233
|
-
'options.sendTranscript.description': 'Enter the email address you would like to send the chat transcript to.',
|
|
234
|
-
'options.sendTranscript.invalidEmailText': 'Please enter a valid email address',
|
|
235
|
-
'options.sendTranscript.label': 'Email address',
|
|
236
|
-
'options.sendTranscript.menuTitle': 'Send transcript',
|
|
237
|
-
'options.sendTranscript.noEmailText': 'Please enter an email address',
|
|
238
|
-
'options.sendTranscript.sendButtonText': 'Send',
|
|
239
|
-
'options.sendTranscript.title': 'Send chat transcript',
|
|
240
|
-
'options.unavailableText': 'unavailable',
|
|
241
|
-
'resumeConversationPrompt.continueButton': 'Resume conversation',
|
|
242
|
-
'resumeConversationPrompt.detachButton': 'Ask new question',
|
|
243
|
-
'resumeConversationPrompt.title': name => `Would you like to continue the conversation with ${name}?`,
|
|
244
|
-
skiplinkText: 'Skip to chat input',
|
|
245
|
-
'toggleButton.resumeTitle': 'Resume chat with',
|
|
246
|
-
'toggleButton.subtitle': 'Start a chat with us',
|
|
247
|
-
'toggleButton.title': 'Have a question?',
|
|
248
|
-
'translations.divider.restartButtonText': 'Start again',
|
|
249
|
-
'translations.divider.startText': language => `Translating to ${language}`,
|
|
250
|
-
'translations.divider.stopText': language => `Translating to ${language} ended`,
|
|
251
|
-
'translations.settings.cancelButtonText': 'Cancel',
|
|
252
|
-
'translations.settings.currentTranslationLabel': 'Currently translating to',
|
|
253
|
-
'translations.settings.defaultOptionLabel': 'Choose language',
|
|
254
|
-
'translations.settings.description': 'Automatic translations might contain errors.',
|
|
255
|
-
'translations.settings.endButtonText': 'Stop translating',
|
|
256
|
-
'translations.settings.inputLabel': 'Translate chat to',
|
|
257
|
-
'translations.settings.noLocaleText': 'Choose a language to translate to',
|
|
258
|
-
'translations.settings.openButtonText': 'Translation',
|
|
259
|
-
'translations.settings.startButtonText': 'Start translating',
|
|
260
|
-
'translations.settings.title': 'Translation',
|
|
261
|
-
'translations.status.label': language => `Translating to ${language}`,
|
|
262
|
-
'translations.status.srStopText': 'Stop translating',
|
|
263
|
-
'translations.status.stopText': 'Stop',
|
|
264
|
-
'translations.toggle.hideButtonText': 'Show original',
|
|
265
|
-
'translations.toggle.showButtonText': 'Show translation',
|
|
266
|
-
'window.srModalLayoutLabel': 'Chat window',
|
|
267
|
-
'window.srTexts.onClose': 'The chat is closed.',
|
|
268
|
-
'window.srTexts.onHistoryLoad': 'Chat history has been loaded.',
|
|
269
|
-
'window.srTexts.onLoad': 'Chat is available on this page.',
|
|
270
|
-
'window.srTexts.onOpen': 'The chat is opened.'
|
|
271
|
-
});
|
|
272
|
-
module.exports = __webpack_exports__;
|
|
273
|
-
/******/ })()
|
|
274
|
-
;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(()=>{"use strict";var e={d:(t,a)=>{for(var n in a)e.o(a,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:a[n]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{default:()=>a});const a={"carousel.controls.next":"Next","carousel.controls.previous":"Previous","carousel.slide.label":({index:e,total:t})=>`${e} of ${t}`,"dateTime.srText":({date:e,time:t})=>`Messages starting ${e} at ${t}:`,"dateTime.today":"Today","dateTime.yesterday":"Yesterday","disclaimer.content":"This chat session will be saved to help us improve our service delivery.","disclaimer.title":"Privacy disclaimer","dividerKeys.newTopic":"New topic started.","errors.configError.message":"We are sorry this happened, please retry at a later time.","errors.configError.srText":"A chat configuration error occurred. Our apologies, please retry at a later time.","errors.configError.title":"Chat configuration error.","errors.general.buttonText":"Restart chat","errors.general.message":"Do you want to start a new chat session?","errors.general.srText":"Something went wrong with the chat session. You can restart the chat.","errors.general.title":"Something went wrong","errors.seamlyOffline.message":"There might be a problem with your or our network connection. The chat session should resume as soon the connection is available again.","errors.seamlyOffline.srText":"The chat has connection issues. There might be a problem with your or our network connection. The chat session should resume as soon as the connection is available again.","errors.seamlyOffline.title":"Connection issues","faq.headingText":"Suggested topics","faq.srAvailableText":"Suggested topics are available in the chat.","faq.srUnavailableText":"Suggested topics are no longer available in the chat.","faq.srUpdatedText":"There are new suggested topics in the chat.","fileUpload.cancelButtonText":"Cancel upload","fileUpload.contentHint":e=>`Select a file of maximum ${e}`,"fileUpload.errors.general":"Something went wrong with the upload. Please cancel the upload and try again.","fileUpload.errors.noFile":"Please select a file to upload","fileUpload.errors.tooLarge":"The selected file is too large, please upload a smaller file","fileUpload.errors.unavailable":"Uploading files is no longer possible. Please cancel the upload and try again later.","fileUpload.errors.virusFound":"The selected file is unsafe, please upload a different file.","fileUpload.errors.wrongType":"The selected file type is not supported. Please cancel the upload and upload a different file.","fileUpload.fileUnavailableText":"This download link has expired","fileUpload.labelText":"Select file","fileUpload.selectedText":e=>e||"No file selected","fileUpload.srAvailableText":"File uploads are now available in the chat.","fileUpload.srCompleteText":"Upload complete.","fileUpload.srFileDownloadText":e=>`Download file ${e}.`,"fileUpload.srFileUploadedText":e=>`Uploaded file ${e}.`,"fileUpload.srProgressLabel":e=>`${e} upload progress status`,"fileUpload.srStartedText":"Upload started.","fileUpload.srUnavailableText":"File uploads in the chat are no longer available.","fileUpload.toggleButtonText":"Upload files","fileUpload.uploadButtonText":"Upload file","header.collapseApp":"collapse chat","header.title":"You're talking to","idleDetachWarning.continueButton":"Continue conversation","idleDetachWarning.countdownText":"Your conversation will automatically end in:","idleDetachWarning.countdownTimer":({minutes:e,seconds:t})=>{switch(e){case 1:switch(t){case 1:return"1 minute, 1 second";case 0:return"1 minute";default:return`1 minute, ${t} seconds`}case 0:switch(t){case 1:return"1 second";case 0:default:return`${t} seconds`}default:switch(t){case 1:return`${e} minutes, 1 second`;case 0:return`${e} minutes`;default:return`${e} minutes, ${t} seconds`}}},"idleDetachWarning.countdownTitle":"Are you still there?","idleDetachWarning.detachButton":"End conversation","idleDetachWarning.notifyTransferText":"Your conversation is being ended.","idleDetachWarning.srCountDownStoppedText":"Automatic conversation ending prevented. Welcome back.","info.cobrowsing.cobrowsingEnded":"Screen sharing has ended","info.cobrowsing.cobrowsingStarted":"Screen sharing is now enabled. The agent can see the page you're currently on","info.sendTranscript.accepted":({emailAddress:e})=>`A transcript will be sent to ${e}`,"input.inputLabel":e=>e?`Your message (max. ${e} characters)`:"Your message","input.inputPlaceholder":e=>e?`Your message (max. ${e} characters)`:"Your message","input.sendMessage":"Send","input.srCharacterLimitText":e=>{switch(e){case 1:return"1 character remaining.";case 0:default:return`${e} characters remaining.`}},"lightbox.closeLabel":"Close","lightbox.heading":"Enlarged chat image","message.choicePrompts.cancelChooseAgain":"Cancel choice change","message.choicePrompts.chooseAgain":"Change your choice","message.image.srTextEnlargeButtonLabel":({description:e})=>`Enlarge ${e}`,"message.srNewEventCount":({newCount:e})=>{switch(e){case 1:return"There is 1 new chat message.";case 0:default:return`There are ${e} new chat messages.`}},"message.srTextUnreadCount":({unreadCount:e})=>{switch(e){case 1:return"There is 1 new unread chat message.";case 0:default:return`There are ${e} new unread chat messages.`}},"options.cancelButtonText":"Cancel","options.cobrowsing.cobrowsingActiveText":"Sharing screen","options.cobrowsing.cobrowsingUnavailable":"Screen sharing is currently unavailable.","options.cobrowsing.description":"This allows the agent to see the page you're currently on. Nothing else is shared.","options.cobrowsing.labelTurnOff":"Turn screen sharing off","options.cobrowsing.labelTurnOn":"Turn screen sharing on","options.cobrowsing.menuTitle":"Screen sharing","options.cobrowsing.srCobrowsingAvailable":"Screen sharing is now available.","options.cobrowsing.srStartedCobrowsingText":"Screen sharing has been started.","options.cobrowsing.srStopCobrowsingText":"Stop screen sharing","options.cobrowsing.srStoppedCobrowsingText":"Screen sharing has been stopped.","options.cobrowsing.stopCobrowsingText":"Stop","options.cobrowsing.title":"Share my screen","options.openButtonText":"Options","options.saveButtonText":"Save","options.sendTranscript.description":"Enter the email address you would like to send the chat transcript to.","options.sendTranscript.invalidEmailText":"Please enter a valid email address","options.sendTranscript.label":"Email address","options.sendTranscript.menuTitle":"Send transcript","options.sendTranscript.noEmailText":"Please enter an email address","options.sendTranscript.sendButtonText":"Send","options.sendTranscript.title":"Send chat transcript","options.unavailableText":"unavailable","resumeConversationPrompt.continueButton":"Resume conversation","resumeConversationPrompt.detachButton":"Ask new question","resumeConversationPrompt.title":e=>`Would you like to continue the conversation with ${e}?`,skiplinkText:"Skip to chat input","toggleButton.resumeTitle":"Resume chat with","toggleButton.subtitle":"Start a chat with us","toggleButton.title":"Have a question?","translations.divider.restartButtonText":"Start again","translations.divider.startText":e=>`Translating to ${e}`,"translations.divider.stopText":e=>`Translating to ${e} ended`,"translations.settings.cancelButtonText":"Cancel","translations.settings.currentTranslationLabel":"Currently translating to","translations.settings.defaultOptionLabel":"Choose language","translations.settings.description":"Automatic translations might contain errors.","translations.settings.endButtonText":"Stop translating","translations.settings.inputLabel":"Translate chat to","translations.settings.noLocaleText":"Choose a language to translate to","translations.settings.openButtonText":"Translation","translations.settings.startButtonText":"Start translating","translations.settings.title":"Translation","translations.status.label":e=>`Translating to ${e}`,"translations.status.srStopText":"Stop translating","translations.status.stopText":"Stop","translations.toggle.hideButtonText":"Show original","translations.toggle.showButtonText":"Show translation","window.srModalLayoutLabel":"Chat window","window.srTexts.onClose":"The chat is closed.","window.srTexts.onHistoryLoad":"Chat history has been loaded.","window.srTexts.onLoad":"Chat is available on this page.","window.srTexts.onOpen":"The chat is opened."};module.exports=t})();
|