@chat21/chat21-web-widget 5.1.34 → 5.2.1
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/.angular-mcp-cache/package.json +1 -0
- package/.cursor/angular18-accessibility-auditor-skill.md +442 -0
- package/.cursor/mcp.json +15 -0
- package/.github/workflows/playwright.yml +27 -0
- package/CHANGELOG.md +25 -0
- package/Dockerfile +4 -5
- package/README.md +1 -1
- package/angular.json +21 -3
- package/docs/ACCESSIBILITY-STATEMENT.md +388 -0
- package/docs/TILEDESK_WIDGET_ACCESSIBILITY_ALIGNMENT.md +60 -0
- package/docs/TILEDESK_WIDGET_ACCESSIBILITY_STATEMENT_COMPLETE.md +386 -0
- package/env.sample +3 -2
- package/mocks/voice-websocket-mock/server.cjs +245 -0
- package/package.json +10 -3
- package/playwright.config.ts +41 -0
- package/src/app/app.component.html +2 -2
- package/src/app/app.component.scss +25 -14
- package/src/app/app.component.spec.ts +21 -6
- package/src/app/app.module.ts +13 -0
- package/src/app/component/conversation-detail/conversation/conversation.component.html +25 -11
- package/src/app/component/conversation-detail/conversation/conversation.component.scss +38 -0
- package/src/app/component/conversation-detail/conversation/conversation.component.spec.ts +644 -75
- package/src/app/component/conversation-detail/conversation/conversation.component.ts +70 -2
- package/src/app/component/conversation-detail/conversation-audio-recorder/conversation-audio-recorder.component.html +25 -13
- package/src/app/component/conversation-detail/conversation-audio-recorder/conversation-audio-recorder.component.spec.ts +123 -5
- package/src/app/component/conversation-detail/conversation-audio-recorder/conversation-audio-recorder.component.ts +1 -0
- package/src/app/component/conversation-detail/conversation-content/conversation-content.component.html +23 -10
- package/src/app/component/conversation-detail/conversation-content/conversation-content.component.scss +18 -0
- package/src/app/component/conversation-detail/conversation-content/conversation-content.component.spec.ts +241 -149
- package/src/app/component/conversation-detail/conversation-content/conversation-content.component.ts +8 -5
- package/src/app/component/conversation-detail/conversation-emojii/conversation-emojii.component.spec.ts +53 -3
- package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.html +203 -110
- package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.scss +212 -1
- package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.spec.ts +458 -78
- package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.ts +288 -76
- package/src/app/component/conversation-detail/conversation-header/conversation-header.component.html +113 -53
- package/src/app/component/conversation-detail/conversation-header/conversation-header.component.scss +12 -4
- package/src/app/component/conversation-detail/conversation-header/conversation-header.component.spec.ts +274 -29
- package/src/app/component/conversation-detail/conversation-internal-frame/conversation-internal-frame.component.html +23 -9
- package/src/app/component/conversation-detail/conversation-internal-frame/conversation-internal-frame.component.spec.ts +80 -8
- package/src/app/component/conversation-detail/conversation-preview/conversation-preview.component.html +29 -23
- package/src/app/component/conversation-detail/conversation-preview/conversation-preview.component.spec.ts +185 -16
- package/src/app/component/conversation-detail/conversation-preview/conversation-preview.component.ts +34 -14
- package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.html +46 -0
- package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.scss +83 -0
- package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.ts +192 -0
- package/src/app/component/error-alert/error-alert.component.spec.ts +65 -5
- package/src/app/component/eyeeye-catcher-card/eyeeye-catcher-card.component.html +16 -7
- package/src/app/component/eyeeye-catcher-card/eyeeye-catcher-card.component.scss +21 -0
- package/src/app/component/eyeeye-catcher-card/eyeeye-catcher-card.component.spec.ts +89 -7
- package/src/app/component/form/form-builder/form-builder.component.html +1 -1
- package/src/app/component/form/form-builder/form-builder.component.spec.ts +163 -21
- package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.html +8 -4
- package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.scss +10 -5
- package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.spec.ts +90 -16
- package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.ts +26 -0
- package/src/app/component/form/inputs/form-label/form-label.component.spec.ts +45 -11
- package/src/app/component/form/inputs/form-radio-button/form-radio-button.component.spec.ts +24 -6
- package/src/app/component/form/inputs/form-select/form-select.component.spec.ts +14 -5
- package/src/app/component/form/inputs/form-text/form-text.component.html +14 -12
- package/src/app/component/form/inputs/form-text/form-text.component.scss +11 -1
- package/src/app/component/form/inputs/form-text/form-text.component.spec.ts +113 -17
- package/src/app/component/form/inputs/form-text/form-text.component.ts +35 -3
- package/src/app/component/form/inputs/form-textarea/form-textarea.component.html +13 -11
- package/src/app/component/form/inputs/form-textarea/form-textarea.component.scss +6 -5
- package/src/app/component/form/inputs/form-textarea/form-textarea.component.spec.ts +149 -13
- package/src/app/component/form/inputs/form-textarea/form-textarea.component.ts +26 -0
- package/src/app/component/form/prechat-form/prechat-form.component.html +14 -11
- package/src/app/component/form/prechat-form/prechat-form.component.spec.ts +102 -10
- package/src/app/component/form/prechat-form/prechat-form.component.ts +8 -1
- package/src/app/component/form/prechat-form-test-mock.ts +35 -0
- package/src/app/component/home/home.component.html +38 -31
- package/src/app/component/home/home.component.scss +4 -2
- package/src/app/component/home/home.component.spec.ts +226 -11
- package/src/app/component/home-conversations/home-conversations.component.html +30 -26
- package/src/app/component/home-conversations/home-conversations.component.scss +3 -0
- package/src/app/component/home-conversations/home-conversations.component.spec.ts +212 -36
- package/src/app/component/last-message/last-message.component.html +15 -9
- package/src/app/component/last-message/last-message.component.scss +16 -2
- package/src/app/component/last-message/last-message.component.spec.ts +204 -23
- package/src/app/component/launcher-button/launcher-button.component.html +8 -13
- package/src/app/component/launcher-button/launcher-button.component.spec.ts +104 -8
- package/src/app/component/list-all-conversations/list-all-conversations.component.html +12 -17
- package/src/app/component/list-all-conversations/list-all-conversations.component.scss +2 -0
- package/src/app/component/list-conversations/list-conversations.component.html +22 -22
- package/src/app/component/menu-options/menu-options.component.html +30 -20
- package/src/app/component/menu-options/menu-options.component.spec.ts +125 -9
- package/src/app/component/message/audio/audio.component.html +13 -15
- package/src/app/component/message/audio/audio.component.spec.ts +140 -5
- package/src/app/component/message/audio/audio.component.ts +1 -5
- package/src/app/component/message/audio-sync/audio-sync.component.html +18 -0
- package/src/app/component/message/audio-sync/audio-sync.component.scss +65 -0
- package/src/app/component/message/audio-sync/audio-sync.component.spec.ts +112 -0
- package/src/app/component/message/audio-sync/audio-sync.component.ts +714 -0
- package/src/app/component/message/avatar/avatar.component.html +2 -2
- package/src/app/component/message/avatar/avatar.component.spec.ts +99 -7
- package/src/app/component/message/bubble-message/bubble-message.component.html +41 -51
- package/src/app/component/message/bubble-message/bubble-message.component.scss +54 -1
- package/src/app/component/message/bubble-message/bubble-message.component.spec.ts +147 -57
- package/src/app/component/message/bubble-message/bubble-message.component.ts +95 -13
- package/src/app/component/message/buttons/action-button/action-button.component.html +3 -4
- package/src/app/component/message/buttons/action-button/action-button.component.spec.ts +49 -5
- package/src/app/component/message/buttons/link-button/link-button.component.scss +5 -8
- package/src/app/component/message/buttons/link-button/link-button.component.spec.ts +50 -5
- package/src/app/component/message/buttons/text-button/text-button.component.spec.ts +44 -5
- package/src/app/component/message/carousel/carousel.component.html +29 -16
- package/src/app/component/message/carousel/carousel.component.scss +20 -8
- package/src/app/component/message/carousel/carousel.component.spec.ts +80 -3
- package/src/app/component/message/carousel/carousel.component.ts +16 -0
- package/src/app/component/message/frame/frame.component.html +9 -4
- package/src/app/component/message/frame/frame.component.spec.ts +34 -15
- package/src/app/component/message/frame/frame.component.ts +7 -2
- package/src/app/component/message/html/html.component.html +1 -1
- package/src/app/component/message/html/html.component.scss +1 -1
- package/src/app/component/message/html/html.component.spec.ts +24 -7
- package/src/app/component/message/image/image.component.html +12 -10
- package/src/app/component/message/image/image.component.scss +16 -0
- package/src/app/component/message/image/image.component.spec.ts +101 -15
- package/src/app/component/message/image/image.component.ts +90 -51
- package/src/app/component/message/info-message/info-message.component.spec.ts +26 -14
- package/src/app/component/message/json-sources/json-sources.component.html +6 -5
- package/src/app/component/message/json-sources/json-sources.component.scss +26 -18
- package/src/app/component/message/json-sources/json-sources.component.ts +41 -0
- package/src/app/component/message/like-unlike/like-unlike.component.html +7 -9
- package/src/app/component/message/like-unlike/like-unlike.component.spec.ts +31 -3
- package/src/app/component/message/return-receipt/return-receipt.component.spec.ts +38 -17
- package/src/app/component/message/text/text.component.html +3 -3
- package/src/app/component/message/text/text.component.scss +80 -86
- package/src/app/component/message/text/text.component.spec.ts +106 -13
- package/src/app/component/message-attachment/message-attachment.component.spec.ts +134 -13
- package/src/app/component/selection-department/selection-department.component.html +21 -23
- package/src/app/component/selection-department/selection-department.component.spec.ts +159 -14
- package/src/app/component/selection-department/selection-department.component.ts +8 -1
- package/src/app/component/send-button/send-button.component.html +5 -13
- package/src/app/component/send-button/send-button.component.spec.ts +2 -2
- package/src/app/component/star-rating-widget/star-rating-widget.component.html +51 -81
- package/src/app/directives/tooltip.directive.spec.ts +8 -4
- package/src/app/modals/confirm-close/confirm-close.component.html +20 -8
- package/src/app/modals/confirm-close/confirm-close.component.scss +3 -0
- package/src/app/modals/confirm-close/confirm-close.component.spec.ts +13 -4
- package/src/app/modals/confirm-close/confirm-close.component.ts +8 -1
- package/src/app/pipe/html-entites-encode.pipe.spec.ts +35 -2
- package/src/app/pipe/marked.pipe.spec.ts +38 -2
- package/src/app/pipe/marked.pipe.ts +51 -41
- package/src/app/providers/app-config.service.ts +4 -2
- package/src/app/providers/brand.service.spec.ts +23 -2
- package/src/app/providers/brand.service.ts +1 -1
- package/src/app/providers/global-settings.service.spec.ts +1009 -14
- package/src/app/providers/global-settings.service.ts +40 -2
- package/src/app/providers/json-sources-parser.service.ts +13 -1
- package/src/app/providers/translator.service.ts +24 -7
- package/src/app/providers/tts-audio-playback-coordinator.service.spec.ts +116 -0
- package/src/app/providers/tts-audio-playback-coordinator.service.ts +122 -0
- package/src/app/providers/voice/STT&TTS/openai-voice.config.ts +12 -0
- package/src/app/providers/voice/STT&TTS/openai-voice.provider.ts +156 -0
- package/src/app/providers/voice/STT&TTS/speech-provider.abstract.ts +39 -0
- package/src/app/providers/voice/audio.types.ts +40 -0
- package/src/app/providers/voice/vad.service.spec.ts +28 -0
- package/src/app/providers/voice/vad.service.ts +70 -0
- package/src/app/providers/voice/voice-streaming.service.spec.ts +23 -0
- package/src/app/providers/voice/voice-streaming.service.ts +702 -0
- package/src/app/providers/voice/voice-streaming.types.ts +112 -0
- package/src/app/providers/voice/voice.service.spec.ts +227 -0
- package/src/app/providers/voice/voice.service.ts +969 -0
- package/src/app/sass/_variables.scss +2 -0
- package/src/app/sass/animations.scss +19 -1
- package/src/app/shims/onnxruntime-web-wasm.ts +4 -0
- package/src/app/utils/globals.ts +14 -0
- package/src/app/utils/utils-resources.ts +1 -1
- package/src/assets/i18n/en.json +128 -100
- package/src/assets/i18n/es.json +128 -100
- package/src/assets/i18n/fr.json +128 -100
- package/src/assets/i18n/it.json +128 -98
- package/src/assets/onnx/ort-wasm-simd-threaded.mjs +59 -0
- package/src/assets/onnx/ort-wasm-simd-threaded.wasm +0 -0
- package/src/assets/sounds/keyboard.mp3 +0 -0
- package/src/assets/vad/silero_vad_legacy.onnx +0 -0
- package/src/assets/vad/vad.worklet.bundle.min.js +1 -0
- package/src/chat21-core/models/message.ts +2 -1
- package/src/chat21-core/providers/chat-manager.spec.ts +72 -0
- package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +3 -2
- package/src/chat21-core/providers/firebase/firebase-init-service.ts +5 -5
- package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +12 -0
- package/src/chat21-core/providers/scripts/script.service.spec.ts +12 -2
- package/src/chat21-core/utils/utils-message.ts +7 -0
- package/src/widget-config-template.json +3 -1
- package/src/widget-config.json +28 -27
- package/tests/widget-form-rich.spec.ts +67 -0
- package/tests/widget-index-dev-settings.spec.ts +52 -0
- package/tests/widget-twp-iframe.spec.ts +39 -0
- package/tsconfig.json +5 -0
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
--chat-footer-height: 64px;
|
|
38
38
|
--chat-footer-logo-height: 30px;
|
|
39
39
|
--chat-footer-border-radius: 16px;
|
|
40
|
+
--chat-footer-stream-button-height: 72px;
|
|
41
|
+
--chat-footer-stream-button-padding: 10px 0;
|
|
40
42
|
--chat-footer-background-color: #f6f7fb;
|
|
41
43
|
--chat-footer-color: #1a1a1a;
|
|
42
44
|
--chat-footer-border-color-error: #aa0404;
|
|
@@ -1,4 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
$trasp-black: rgba(0, 0, 0, 0.8);
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Respect the user's reduced-motion preference (WCAG 2.3.3 Animation from Interactions).
|
|
5
|
+
* When `prefers-reduced-motion: reduce` is active, neutralize all CSS animations and transitions
|
|
6
|
+
* inside the widget so users do not experience non-essential motion.
|
|
7
|
+
*/
|
|
8
|
+
@media (prefers-reduced-motion: reduce) {
|
|
9
|
+
chat-root *,
|
|
10
|
+
chat-root *::before,
|
|
11
|
+
chat-root *::after {
|
|
12
|
+
animation-duration: 0.001ms !important;
|
|
13
|
+
animation-iteration-count: 1 !important;
|
|
14
|
+
animation-delay: 0ms !important;
|
|
15
|
+
transition-duration: 0.001ms !important;
|
|
16
|
+
transition-delay: 0ms !important;
|
|
17
|
+
scroll-behavior: auto !important;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
2
20
|
|
|
3
21
|
/**
|
|
4
22
|
* ----------------------------------------
|
package/src/app/utils/globals.ts
CHANGED
|
@@ -36,6 +36,14 @@ export class Globals {
|
|
|
36
36
|
isMobile: boolean;
|
|
37
37
|
isLogged: boolean;
|
|
38
38
|
soundEnabled: boolean;
|
|
39
|
+
/** Volume for the keyboard typing-indicator sound during voice sessions. Range 0.0–1.0. */
|
|
40
|
+
keyboardSoundVolume: number;
|
|
41
|
+
/**
|
|
42
|
+
* Filename (local) or absolute URL (remote) for the keyboard typing-indicator sound.
|
|
43
|
+
* Local: bare filename resolved against `baseLocation + '/assets/sounds/'` (e.g. `'keyboard.mp3'`).
|
|
44
|
+
* Remote: full URL starting with `http://` or `https://`.
|
|
45
|
+
*/
|
|
46
|
+
keyboardSoundFile: string;
|
|
39
47
|
BUILD_VERSION: String;
|
|
40
48
|
baseLocation: string;
|
|
41
49
|
availableAgents: Array<UserAgent> = [];
|
|
@@ -117,6 +125,7 @@ export class Globals {
|
|
|
117
125
|
WAITING_TIME_NOT_FOUND: string;
|
|
118
126
|
CLOSED: string;
|
|
119
127
|
LABEL_PREVIEW: string;
|
|
128
|
+
BUTTON_OPEN_CHAT: string;
|
|
120
129
|
|
|
121
130
|
// ============ BEGIN: EXTERNAL PARAMETERS ==============//
|
|
122
131
|
autoStart: boolean;
|
|
@@ -219,6 +228,7 @@ export class Globals {
|
|
|
219
228
|
showEmojiFooterButton: boolean // ******* new ********
|
|
220
229
|
showAttachmentFooterButton: boolean // ******* new ********
|
|
221
230
|
showAudioRecorderFooterButton: boolean // ******* new ********
|
|
231
|
+
showAudioStreamFooterButton: boolean // ******* new ********
|
|
222
232
|
|
|
223
233
|
allowedOnSpecificUrl: boolean // ******* new ********
|
|
224
234
|
allowedOnSpecificUrlList: Array<string> // ******* new ********
|
|
@@ -435,6 +445,8 @@ export class Globals {
|
|
|
435
445
|
this.showAttachmentFooterButton = true;
|
|
436
446
|
/** show/hide rec audio option in footer chat-detail page */
|
|
437
447
|
this.showAudioRecorderFooterButton = true;
|
|
448
|
+
/** show/hide stream audio option in footer chat-detail page */
|
|
449
|
+
this.showAudioStreamFooterButton = false;
|
|
438
450
|
/** enabled to set a list of pattern url able to load the widget **/
|
|
439
451
|
this.allowedOnSpecificUrl = false
|
|
440
452
|
/** set a list of pattern url able to load the widget */
|
|
@@ -462,6 +474,8 @@ export class Globals {
|
|
|
462
474
|
this.BUILD_VERSION = 'v.' + environment.version;
|
|
463
475
|
|
|
464
476
|
this.soundEnabled = true;
|
|
477
|
+
this.keyboardSoundVolume = 0.3;
|
|
478
|
+
this.keyboardSoundFile = 'keyboard.mp3';
|
|
465
479
|
|
|
466
480
|
this.conversationsBadge = 0;
|
|
467
481
|
|
|
@@ -7,7 +7,7 @@ export const BRAND_BASE_INFO: { [key: string] : string} ={
|
|
|
7
7
|
FAVICON: "https://tiledesk.com/wp-content/uploads/2022/07/tiledesk_v13-300x300.png",
|
|
8
8
|
META_TITLE:"Design Studio",
|
|
9
9
|
LOGO_CHAT:"https://widget.tiledesk.com/v2/assets/images/tiledesk_logo_white_small.svg",
|
|
10
|
-
POWERED_BY:"<a
|
|
10
|
+
POWERED_BY:"<a target='_blank' rel='noopener noreferrer' href='https://www.tiledesk.com/?utm_source=widget'><img src='https://support-pre.tiledesk.com/dashboard/assets/img/logos/tiledesk-solo_logo_new_gray.svg' alt=''/><span>Powered by Tiledesk</span></a>",
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
export const LOGOS_ITEMS: { [key: string] : { label: string, icon: string }} ={
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -1,101 +1,129 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
2
|
+
"LABEL_PLACEHOLDER": "Type your message..",
|
|
3
|
+
"LABEL_START_NW_CONV": "New conversation",
|
|
4
|
+
"LABEL_WHATSAPP": "Message us",
|
|
5
|
+
"LABEL_SELECT_TOPIC": "Select a topic",
|
|
6
|
+
"LABEL_COMPLETE_FORM": "Complete the form to start a conversation with the next available agent.",
|
|
7
|
+
"LABEL_FIELD_NAME": "Name",
|
|
8
|
+
"LABEL_ERROR_FIELD_NAME": "Required field (minimum 5 characters).",
|
|
9
|
+
"LABEL_FIELD_EMAIL": "Email",
|
|
10
|
+
"LABEL_ERROR_FIELD_EMAIL": "Enter a valid email address.",
|
|
11
|
+
"LABEL_ERROR_FIELD_REQUIRED": "Required field",
|
|
12
|
+
"LABEL_WRITING": "is writing...",
|
|
13
|
+
"LABEL_SEND_NEW_MESSAGE": "Send a new message",
|
|
14
|
+
"AGENT_NOT_AVAILABLE": " Offline",
|
|
15
|
+
"AGENT_AVAILABLE": " Online",
|
|
16
|
+
"GUEST_LABEL": "Guest",
|
|
17
|
+
"ALL_AGENTS_OFFLINE_LABEL": "All operators are offline at the moment",
|
|
18
|
+
"LABEL_LOADING": "Loading...",
|
|
19
|
+
"LABEL_THINKING": "thinking",
|
|
20
|
+
"CALLOUT_TITLE_PLACEHOLDER": "🖐 Need Help?",
|
|
21
|
+
"CALLOUT_MSG_PLACEHOLDER": "Click here and start chatting with us!",
|
|
22
|
+
"CUSTOMER_SATISFACTION": "Customer satisfaction",
|
|
23
|
+
"YOUR_OPINION_ON_OUR_CUSTOMER_SERVICE": "your opinion on our customer service",
|
|
24
|
+
"DOWNLOAD_TRANSCRIPT": "Download transcript",
|
|
25
|
+
"BACK": "Back",
|
|
26
|
+
"CONTINUE": "Continue",
|
|
27
|
+
"YOUR_RATING": "your rating",
|
|
28
|
+
"WRITE_YOUR_OPINION": "Write your opinion ... (optional)",
|
|
29
|
+
"SUBMIT": "Submit",
|
|
30
|
+
"THANK_YOU_FOR_YOUR_EVALUATION": "Thank you for your evaluation",
|
|
31
|
+
"YOUR_RATING_HAS_BEEN_RECEIVED": "your rating has been received",
|
|
32
|
+
"ALERT_LEAVE_CHAT": "Do you want to leave the chat?",
|
|
33
|
+
"YES": "Yes",
|
|
34
|
+
"NO": "No",
|
|
35
|
+
"BUTTON_CLOSE_TO_ICON": "Minimize chat",
|
|
36
|
+
"BUTTON_EDIT_PROFILE": "Update profile",
|
|
37
|
+
"RATE_CHAT": "Rate chat",
|
|
38
|
+
"WELCOME_TITLE": "Hi, welcome to Tiledesk 👋",
|
|
39
|
+
"WELCOME_MSG": "How can we help?",
|
|
40
|
+
"WELCOME": "Welcome",
|
|
41
|
+
"OPTIONS": "options",
|
|
42
|
+
"SOUND_OFF": "Sound off",
|
|
43
|
+
"SOUND_ON": "Sound on",
|
|
44
|
+
"LOGOUT": "Logout",
|
|
45
|
+
"CLOSE": "Close",
|
|
46
|
+
"RESTART": "Restart",
|
|
47
|
+
"PREV_CONVERSATIONS": "Your conversations",
|
|
48
|
+
"YOU": "You",
|
|
49
|
+
"SHOW_ALL_CONV": "show all",
|
|
50
|
+
"START_A_CONVERSATION": "Start a conversation",
|
|
51
|
+
"NO_CONVERSATION": "No conversation",
|
|
52
|
+
"SEE_PREVIOUS": "see previous",
|
|
53
|
+
"WAITING_TIME_FOUND": "The team typically replies in $reply_time",
|
|
54
|
+
"WAITING_TIME_NOT_FOUND": "The team will reply as soon as possible",
|
|
55
|
+
"CLOSED": "CLOSED",
|
|
56
|
+
"CLOSE_CHAT": "Close chat",
|
|
57
|
+
"MINIMIZE": "Minimize window",
|
|
58
|
+
"MAXIMIZE": "Expand window",
|
|
59
|
+
"CENTER": "Center",
|
|
60
|
+
"CONFIRM_CLOSE_CHAT": "Are you sure you want to close this chat?",
|
|
61
|
+
"INFO_SUPPORT_USER_ADDED_SUBJECT": "you",
|
|
62
|
+
"INFO_SUPPORT_USER_ADDED_YOU_VERB": "have been added to ",
|
|
63
|
+
"INFO_SUPPORT_USER_ADDED_COMPLEMENT": "joined",
|
|
64
|
+
"INFO_SUPPORT_USER_ADDED_VERB": "the chat",
|
|
65
|
+
"INFO_SUPPORT_CHAT_REOPENED": "Chat reopened",
|
|
66
|
+
"INFO_SUPPORT_CHAT_CLOSED": "Chat closed",
|
|
67
|
+
"INFO_SUPPORT_LEAD_UPDATED": "Lead updated",
|
|
68
|
+
"INFO_SUPPORT_MEMBER_LEFT_GROUP": "removed from group",
|
|
69
|
+
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP": "has left the conversation",
|
|
70
|
+
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "A new support request has been assigned to you",
|
|
71
|
+
"LABEL_PRECHAT_USER_FULLNAME": "Full name",
|
|
72
|
+
"LABEL_PRECHAT_USER_EMAIL": "Email",
|
|
73
|
+
"LABEL_PRECHAT_USER_EMAIL_ERROR": "Invalid email address",
|
|
74
|
+
"LABEL_PRECHAT_USER_PHONE": "Phone",
|
|
75
|
+
"LABEL_PRECHAT_USER_PHONE_ERROR": "Phone is required",
|
|
76
|
+
"LABEL_PRECHAT_FIRST_MESSAGE": "Your message for the support team",
|
|
77
|
+
"LABEL_PRECHAT_STATIC_TERMS_PRIVACY": "Before proceeding in the conversation please agree to our <a href='https://tiledesk.com/termsofservice/' target='_blank'>Terms</a> and <a href='https://tiledesk.com/privacy.html' target='_blank'>Privacy Policy</a>",
|
|
78
|
+
"LABEL_PRECHAT_ACCEPT_TERMS_PRIVACY": "I agree",
|
|
79
|
+
"PRECHAT_REQUIRED_ERROR": "This field is required",
|
|
80
|
+
"TICKET_TAKING": "The request has been received and the assistance staff is dealing with it.\nTo add more comments, reply to this email.",
|
|
81
|
+
"LABEL_TODAY": "today",
|
|
82
|
+
"LABEL_TOMORROW": "yesterday",
|
|
83
|
+
"LABEL_LAST_ACCESS": "last access",
|
|
84
|
+
"LABEL_TO": "at",
|
|
85
|
+
"ARRAY_DAYS": [
|
|
86
|
+
"Monday",
|
|
87
|
+
"Tuesday",
|
|
88
|
+
"Wednesday",
|
|
89
|
+
"Thursday",
|
|
90
|
+
"Friday",
|
|
91
|
+
"Saturday",
|
|
92
|
+
"Sunday"
|
|
93
|
+
],
|
|
94
|
+
"SENT_AN_ATTACHMENT": "sent an attachment",
|
|
95
|
+
"SENT_AN_IMAGE": "sent an image",
|
|
96
|
+
"LABEL_PREVIEW": "Preview",
|
|
97
|
+
"SWITCH_TO": "Or switch to:",
|
|
98
|
+
"CONNECTION_NETWORK_ERROR": "Our apologies. There was some trouble connecting to network",
|
|
99
|
+
"EMOJI_NOT_ELLOWED": "Emoji not allowed",
|
|
100
|
+
"DOMAIN_NOT_ALLOWED": "URL contains a non-allowed domain",
|
|
101
|
+
"MAX_ATTACHMENT": "Max allowed size {{FILE_SIZE_LIMIT}}Mb",
|
|
102
|
+
"MAX_ATTACHMENT_ERROR": "The file exceeds the maximum allowed size",
|
|
103
|
+
"EMOJI": "Emoji",
|
|
104
|
+
"BUTTON_ATTACH_FILE": "Attach file",
|
|
105
|
+
"BUTTON_SEND_MESSAGE": "Send message",
|
|
106
|
+
"BUTTON_RECORD_AUDIO": "Hold to record an audio message",
|
|
107
|
+
"BUTTON_DELETE_AUDIO": "Delete recording",
|
|
108
|
+
"BUTTON_SEND_AUDIO": "Send audio message",
|
|
109
|
+
"BUTTON_PLAY_AUDIO": "Play audio",
|
|
110
|
+
"BUTTON_PAUSE_AUDIO": "Pause audio",
|
|
111
|
+
"BUTTON_LIKE_MESSAGE": "Like message",
|
|
112
|
+
"BUTTON_UNLIKE_MESSAGE": "Dislike message",
|
|
113
|
+
"BUTTON_OPEN_CHAT": "Open chat",
|
|
114
|
+
"BUTTON_CLOSE_PANEL": "Close panel",
|
|
115
|
+
"CONVERSATION_LOG_LABEL": "Conversation messages",
|
|
116
|
+
"BUTTON_OPEN_DETAIL": "Open conversation detail",
|
|
117
|
+
"BUTTON_ALL_CONVERSATIONS": "All conversations",
|
|
118
|
+
"BUTTON_SCROLL_TO_BOTTOM": "Scroll to last message",
|
|
119
|
+
"BUTTON_CLOSE_PREVIEW": "Close preview",
|
|
120
|
+
"CAROUSEL_PREVIOUS": "Previous slide",
|
|
121
|
+
"CAROUSEL_NEXT": "Next slide",
|
|
122
|
+
"CAROUSEL_LABEL": "Cards carousel",
|
|
123
|
+
"CAROUSEL_SLIDE_LABEL": "Slide {current} of {total}",
|
|
124
|
+
"SKIP_TO_COMPOSER": "Skip to message composer",
|
|
125
|
+
"STREAM_AUDIO": "Use voice mode",
|
|
126
|
+
"VOICE_CONNECTING": "Connecting...",
|
|
127
|
+
"VOICE_LISTENING": "Listening...",
|
|
128
|
+
"VOICE_PROCESSING": "Processing..."
|
|
129
|
+
}
|
package/src/assets/i18n/es.json
CHANGED
|
@@ -1,101 +1,129 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
2
|
+
"LABEL_PLACEHOLDER": "escribe tu mensaje..",
|
|
3
|
+
"LABEL_START_NW_CONV": "Nueva conversación",
|
|
4
|
+
"LABEL_WHATSAPP": "Envíanos un mensaje",
|
|
5
|
+
"LABEL_SELECT_TOPIC": "Elige un tema",
|
|
6
|
+
"LABEL_COMPLETE_FORM": "Complete el formulario para iniciar una conversación con el próximo agente disponible.",
|
|
7
|
+
"LABEL_FIELD_NAME": "Nombre",
|
|
8
|
+
"LABEL_ERROR_FIELD_NAME": "Campo obligatorio (mínimo 5 caracteres).",
|
|
9
|
+
"LABEL_FIELD_EMAIL": "Email",
|
|
10
|
+
"LABEL_ERROR_FIELD_EMAIL": "Introduzca una dirección de correo electrónico válida.",
|
|
11
|
+
"LABEL_ERROR_FIELD_REQUIRED": "Campo obligatorio",
|
|
12
|
+
"LABEL_WRITING": "esta escribiendo...",
|
|
13
|
+
"LABEL_SEND_NEW_MESSAGE": "Enviar un mensaje nuevo",
|
|
14
|
+
"AGENT_NOT_AVAILABLE": " Fuera de línea",
|
|
15
|
+
"AGENT_AVAILABLE": " En línea",
|
|
16
|
+
"GUEST_LABEL": "Huésped",
|
|
17
|
+
"ALL_AGENTS_OFFLINE_LABEL": "Todos los operadores están desconectados en este momento.",
|
|
18
|
+
"LABEL_LOADING": "Cargando...",
|
|
19
|
+
"LABEL_THINKING": "pensando",
|
|
20
|
+
"CALLOUT_TITLE_PLACEHOLDER": "🖐 ¿Necesitas ayuda?",
|
|
21
|
+
"CALLOUT_MSG_PLACEHOLDER": "¡Haz clic aquí y comienza a chatear con nosotros!",
|
|
22
|
+
"CUSTOMER_SATISFACTION": "La satisfacción del cliente",
|
|
23
|
+
"YOUR_OPINION_ON_OUR_CUSTOMER_SERVICE": "su opinión sobre nuestro servicio al cliente",
|
|
24
|
+
"DOWNLOAD_TRANSCRIPT": "Descargar transcripción",
|
|
25
|
+
"BACK": "Atrás",
|
|
26
|
+
"CONTINUE": "Continuar",
|
|
27
|
+
"YOUR_RATING": "tu clasificación",
|
|
28
|
+
"WRITE_YOUR_OPINION": "Escribe tu opinión ... (opcional)",
|
|
29
|
+
"SUBMIT": "Enviar",
|
|
30
|
+
"THANK_YOU_FOR_YOUR_EVALUATION": "Gracias por tu evaluación",
|
|
31
|
+
"YOUR_RATING_HAS_BEEN_RECEIVED": "su voto ha sido recibido",
|
|
32
|
+
"ALERT_LEAVE_CHAT": "quieres salir del chat?",
|
|
33
|
+
"YES": "Si",
|
|
34
|
+
"NO": "No",
|
|
35
|
+
"BUTTON_CLOSE_TO_ICON": "Minimiza el chat",
|
|
36
|
+
"BUTTON_EDIT_PROFILE": "Actualización del perfil",
|
|
37
|
+
"RATE_CHAT": "Califica el chat",
|
|
38
|
+
"WELCOME_TITLE": "Hola, bienvenido a Tiledesk 👋",
|
|
39
|
+
"WELCOME_MSG": "¿Cómo podemos ayudar?",
|
|
40
|
+
"WELCOME": "Podemos",
|
|
41
|
+
"OPTIONS": "opciones",
|
|
42
|
+
"SOUND_OFF": "Sonido apagado",
|
|
43
|
+
"SOUND_ON": "Sonido encendido",
|
|
44
|
+
"LOGOUT": "Cerrar sesión",
|
|
45
|
+
"CLOSE": "cerca",
|
|
46
|
+
"RESTART": "Reiniciar",
|
|
47
|
+
"PREV_CONVERSATIONS": "Tus conversaciones",
|
|
48
|
+
"YOU": "Tú",
|
|
49
|
+
"SHOW_ALL_CONV": "mostrar todo",
|
|
50
|
+
"START_A_CONVERSATION": "Iniciar una conversación",
|
|
51
|
+
"NO_CONVERSATION": "Sin conversación",
|
|
52
|
+
"SEE_PREVIOUS": "ver anterior",
|
|
53
|
+
"WAITING_TIME_FOUND": "El equipo típicamente responde en $reply_time",
|
|
54
|
+
"WAITING_TIME_NOT_FOUND": "El equipo responderá lo antes posible",
|
|
55
|
+
"CLOSED": "CERRADA",
|
|
56
|
+
"CLOSE_CHAT": "Cerrar chat",
|
|
57
|
+
"MINIMIZE": " Minimizar ventana",
|
|
58
|
+
"MAXIMIZE": "Expandir ventana",
|
|
59
|
+
"CENTER": "Centrar",
|
|
60
|
+
"CONFIRM_CLOSE_CHAT": "¿Estás seguro de que quieres cerrar este chat?",
|
|
61
|
+
"INFO_SUPPORT_USER_ADDED_SUBJECT": "tú",
|
|
62
|
+
"INFO_SUPPORT_USER_ADDED_YOU_VERB": "han sido agregados a ",
|
|
63
|
+
"INFO_SUPPORT_USER_ADDED_COMPLEMENT": "joined",
|
|
64
|
+
"INFO_SUPPORT_USER_ADDED_VERB": "el chat",
|
|
65
|
+
"INFO_SUPPORT_CHAT_REOPENED": "Chat reabierto",
|
|
66
|
+
"INFO_SUPPORT_CHAT_CLOSED": "Chat cerrada",
|
|
67
|
+
"INFO_SUPPORT_LEAD_UPDATED": "Cliente potencial actualizado",
|
|
68
|
+
"INFO_SUPPORT_MEMBER_LEFT_GROUP": "eliminado del grupo",
|
|
69
|
+
"INFO_SUPPORT_MEMBER_ABANDONED_GROUP": "abandonó la conversación",
|
|
70
|
+
"INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "Se le ha asignado una nueva solicitud de soporte",
|
|
71
|
+
"LABEL_PRECHAT_USER_FULLNAME": "Nombre completo",
|
|
72
|
+
"LABEL_PRECHAT_USER_EMAIL": "Correo electrónico",
|
|
73
|
+
"LABEL_PRECHAT_USER_EMAIL_ERROR": "Dirección de correo electrónico no válida",
|
|
74
|
+
"LABEL_PRECHAT_USER_PHONE": "Teléfono",
|
|
75
|
+
"LABEL_PRECHAT_USER_PHONE_ERROR": "Se requiere teléfono",
|
|
76
|
+
"LABEL_PRECHAT_FIRST_MESSAGE": "Tu mensaje para el equipo de soporte",
|
|
77
|
+
"LABEL_PRECHAT_STATIC_TERMS_PRIVACY": "Antes de continuar con la conversación, acepte nuestros <a href='https://tiledesk.com/termsofservice/' target='_blank'>Términos</a> y <a href='https:/ /tiledesk.com/privacy.html' target='_blank'>Política de privacidad</a>",
|
|
78
|
+
"LABEL_PRECHAT_ACCEPT_TERMS_PRIVACY": "Acepto",
|
|
79
|
+
"PRECHAT_REQUIRED_ERROR": "Este campo es obligatorio",
|
|
80
|
+
"TICKET_TAKING": "La solicitud ha sido recibida y el personal de asistencia está tratando con ella. \nPara agregar más comentarios, responda a este correo electrónico.",
|
|
81
|
+
"LABEL_TODAY": "hoy",
|
|
82
|
+
"LABEL_TOMORROW": "ayer",
|
|
83
|
+
"LABEL_LAST_ACCESS": "ultimo acceso",
|
|
84
|
+
"LABEL_TO": "a",
|
|
85
|
+
"ARRAY_DAYS": [
|
|
86
|
+
"Lunes",
|
|
87
|
+
"Martes",
|
|
88
|
+
"Miércoles",
|
|
89
|
+
"Jueves",
|
|
90
|
+
"Viernes",
|
|
91
|
+
"Sábado",
|
|
92
|
+
"Domingo"
|
|
93
|
+
],
|
|
94
|
+
"SENT_AN_ATTACHMENT": "envió un archivo adjunto",
|
|
95
|
+
"SENT_AN_IMAGE": "envió una imagen",
|
|
96
|
+
"LABEL_PREVIEW": "Avance",
|
|
97
|
+
"SWITCH_TO": "O cambiar a:",
|
|
98
|
+
"CONNECTION_NETWORK_ERROR": "Nuestras disculpas. Hubo algunos problemas para conectarse a la red",
|
|
99
|
+
"EMOJI_NOT_ELLOWED": "Emoji no permitido",
|
|
100
|
+
"DOMAIN_NOT_ALLOWED": "La URL contiene un dominio no permitido",
|
|
101
|
+
"MAX_ATTACHMENT": "Tamaño máximo permitido {{FILE_SIZE_LIMIT}}Mb",
|
|
102
|
+
"MAX_ATTACHMENT_ERROR": "El archivo supera el tamaño máximo permitido",
|
|
103
|
+
"EMOJI": "Emoji",
|
|
104
|
+
"BUTTON_ATTACH_FILE": "Adjuntar archivo",
|
|
105
|
+
"BUTTON_SEND_MESSAGE": "Enviar mensaje",
|
|
106
|
+
"BUTTON_RECORD_AUDIO": "Mantén pulsado para grabar un audio",
|
|
107
|
+
"BUTTON_DELETE_AUDIO": "Eliminar grabación",
|
|
108
|
+
"BUTTON_SEND_AUDIO": "Enviar mensaje de audio",
|
|
109
|
+
"BUTTON_PLAY_AUDIO": "Reproducir audio",
|
|
110
|
+
"BUTTON_PAUSE_AUDIO": "Pausar audio",
|
|
111
|
+
"BUTTON_LIKE_MESSAGE": "Me gusta",
|
|
112
|
+
"BUTTON_UNLIKE_MESSAGE": "No me gusta",
|
|
113
|
+
"BUTTON_OPEN_CHAT": "Abrir chat",
|
|
114
|
+
"BUTTON_CLOSE_PANEL": "Cerrar panel",
|
|
115
|
+
"CONVERSATION_LOG_LABEL": "Mensajes de la conversación",
|
|
116
|
+
"BUTTON_OPEN_DETAIL": "Abrir detalle de la conversación",
|
|
117
|
+
"BUTTON_ALL_CONVERSATIONS": "Todas las conversaciones",
|
|
118
|
+
"BUTTON_SCROLL_TO_BOTTOM": "Ir al último mensaje",
|
|
119
|
+
"BUTTON_CLOSE_PREVIEW": "Cerrar vista previa",
|
|
120
|
+
"CAROUSEL_PREVIOUS": "Diapositiva anterior",
|
|
121
|
+
"CAROUSEL_NEXT": "Diapositiva siguiente",
|
|
122
|
+
"CAROUSEL_LABEL": "Carrusel de tarjetas",
|
|
123
|
+
"CAROUSEL_SLIDE_LABEL": "Diapositiva {current} de {total}",
|
|
124
|
+
"SKIP_TO_COMPOSER": "Saltar al cuadro de mensaje",
|
|
125
|
+
"STREAM_AUDIO": "Usar modo de voz",
|
|
126
|
+
"VOICE_CONNECTING": "Conectando...",
|
|
127
|
+
"VOICE_LISTENING": "Escuchando...",
|
|
128
|
+
"VOICE_PROCESSING": "Procesando..."
|
|
129
|
+
}
|