@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.
Files changed (191) hide show
  1. package/.angular-mcp-cache/package.json +1 -0
  2. package/.cursor/angular18-accessibility-auditor-skill.md +442 -0
  3. package/.cursor/mcp.json +15 -0
  4. package/.github/workflows/playwright.yml +27 -0
  5. package/CHANGELOG.md +25 -0
  6. package/Dockerfile +4 -5
  7. package/README.md +1 -1
  8. package/angular.json +21 -3
  9. package/docs/ACCESSIBILITY-STATEMENT.md +388 -0
  10. package/docs/TILEDESK_WIDGET_ACCESSIBILITY_ALIGNMENT.md +60 -0
  11. package/docs/TILEDESK_WIDGET_ACCESSIBILITY_STATEMENT_COMPLETE.md +386 -0
  12. package/env.sample +3 -2
  13. package/mocks/voice-websocket-mock/server.cjs +245 -0
  14. package/package.json +10 -3
  15. package/playwright.config.ts +41 -0
  16. package/src/app/app.component.html +2 -2
  17. package/src/app/app.component.scss +25 -14
  18. package/src/app/app.component.spec.ts +21 -6
  19. package/src/app/app.module.ts +13 -0
  20. package/src/app/component/conversation-detail/conversation/conversation.component.html +25 -11
  21. package/src/app/component/conversation-detail/conversation/conversation.component.scss +38 -0
  22. package/src/app/component/conversation-detail/conversation/conversation.component.spec.ts +644 -75
  23. package/src/app/component/conversation-detail/conversation/conversation.component.ts +70 -2
  24. package/src/app/component/conversation-detail/conversation-audio-recorder/conversation-audio-recorder.component.html +25 -13
  25. package/src/app/component/conversation-detail/conversation-audio-recorder/conversation-audio-recorder.component.spec.ts +123 -5
  26. package/src/app/component/conversation-detail/conversation-audio-recorder/conversation-audio-recorder.component.ts +1 -0
  27. package/src/app/component/conversation-detail/conversation-content/conversation-content.component.html +23 -10
  28. package/src/app/component/conversation-detail/conversation-content/conversation-content.component.scss +18 -0
  29. package/src/app/component/conversation-detail/conversation-content/conversation-content.component.spec.ts +241 -149
  30. package/src/app/component/conversation-detail/conversation-content/conversation-content.component.ts +8 -5
  31. package/src/app/component/conversation-detail/conversation-emojii/conversation-emojii.component.spec.ts +53 -3
  32. package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.html +203 -110
  33. package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.scss +212 -1
  34. package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.spec.ts +458 -78
  35. package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.ts +288 -76
  36. package/src/app/component/conversation-detail/conversation-header/conversation-header.component.html +113 -53
  37. package/src/app/component/conversation-detail/conversation-header/conversation-header.component.scss +12 -4
  38. package/src/app/component/conversation-detail/conversation-header/conversation-header.component.spec.ts +274 -29
  39. package/src/app/component/conversation-detail/conversation-internal-frame/conversation-internal-frame.component.html +23 -9
  40. package/src/app/component/conversation-detail/conversation-internal-frame/conversation-internal-frame.component.spec.ts +80 -8
  41. package/src/app/component/conversation-detail/conversation-preview/conversation-preview.component.html +29 -23
  42. package/src/app/component/conversation-detail/conversation-preview/conversation-preview.component.spec.ts +185 -16
  43. package/src/app/component/conversation-detail/conversation-preview/conversation-preview.component.ts +34 -14
  44. package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.html +46 -0
  45. package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.scss +83 -0
  46. package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.ts +192 -0
  47. package/src/app/component/error-alert/error-alert.component.spec.ts +65 -5
  48. package/src/app/component/eyeeye-catcher-card/eyeeye-catcher-card.component.html +16 -7
  49. package/src/app/component/eyeeye-catcher-card/eyeeye-catcher-card.component.scss +21 -0
  50. package/src/app/component/eyeeye-catcher-card/eyeeye-catcher-card.component.spec.ts +89 -7
  51. package/src/app/component/form/form-builder/form-builder.component.html +1 -1
  52. package/src/app/component/form/form-builder/form-builder.component.spec.ts +163 -21
  53. package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.html +8 -4
  54. package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.scss +10 -5
  55. package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.spec.ts +90 -16
  56. package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.ts +26 -0
  57. package/src/app/component/form/inputs/form-label/form-label.component.spec.ts +45 -11
  58. package/src/app/component/form/inputs/form-radio-button/form-radio-button.component.spec.ts +24 -6
  59. package/src/app/component/form/inputs/form-select/form-select.component.spec.ts +14 -5
  60. package/src/app/component/form/inputs/form-text/form-text.component.html +14 -12
  61. package/src/app/component/form/inputs/form-text/form-text.component.scss +11 -1
  62. package/src/app/component/form/inputs/form-text/form-text.component.spec.ts +113 -17
  63. package/src/app/component/form/inputs/form-text/form-text.component.ts +35 -3
  64. package/src/app/component/form/inputs/form-textarea/form-textarea.component.html +13 -11
  65. package/src/app/component/form/inputs/form-textarea/form-textarea.component.scss +6 -5
  66. package/src/app/component/form/inputs/form-textarea/form-textarea.component.spec.ts +149 -13
  67. package/src/app/component/form/inputs/form-textarea/form-textarea.component.ts +26 -0
  68. package/src/app/component/form/prechat-form/prechat-form.component.html +14 -11
  69. package/src/app/component/form/prechat-form/prechat-form.component.spec.ts +102 -10
  70. package/src/app/component/form/prechat-form/prechat-form.component.ts +8 -1
  71. package/src/app/component/form/prechat-form-test-mock.ts +35 -0
  72. package/src/app/component/home/home.component.html +38 -31
  73. package/src/app/component/home/home.component.scss +4 -2
  74. package/src/app/component/home/home.component.spec.ts +226 -11
  75. package/src/app/component/home-conversations/home-conversations.component.html +30 -26
  76. package/src/app/component/home-conversations/home-conversations.component.scss +3 -0
  77. package/src/app/component/home-conversations/home-conversations.component.spec.ts +212 -36
  78. package/src/app/component/last-message/last-message.component.html +15 -9
  79. package/src/app/component/last-message/last-message.component.scss +16 -2
  80. package/src/app/component/last-message/last-message.component.spec.ts +204 -23
  81. package/src/app/component/launcher-button/launcher-button.component.html +8 -13
  82. package/src/app/component/launcher-button/launcher-button.component.spec.ts +104 -8
  83. package/src/app/component/list-all-conversations/list-all-conversations.component.html +12 -17
  84. package/src/app/component/list-all-conversations/list-all-conversations.component.scss +2 -0
  85. package/src/app/component/list-conversations/list-conversations.component.html +22 -22
  86. package/src/app/component/menu-options/menu-options.component.html +30 -20
  87. package/src/app/component/menu-options/menu-options.component.spec.ts +125 -9
  88. package/src/app/component/message/audio/audio.component.html +13 -15
  89. package/src/app/component/message/audio/audio.component.spec.ts +140 -5
  90. package/src/app/component/message/audio/audio.component.ts +1 -5
  91. package/src/app/component/message/audio-sync/audio-sync.component.html +18 -0
  92. package/src/app/component/message/audio-sync/audio-sync.component.scss +65 -0
  93. package/src/app/component/message/audio-sync/audio-sync.component.spec.ts +112 -0
  94. package/src/app/component/message/audio-sync/audio-sync.component.ts +714 -0
  95. package/src/app/component/message/avatar/avatar.component.html +2 -2
  96. package/src/app/component/message/avatar/avatar.component.spec.ts +99 -7
  97. package/src/app/component/message/bubble-message/bubble-message.component.html +41 -51
  98. package/src/app/component/message/bubble-message/bubble-message.component.scss +54 -1
  99. package/src/app/component/message/bubble-message/bubble-message.component.spec.ts +147 -57
  100. package/src/app/component/message/bubble-message/bubble-message.component.ts +95 -13
  101. package/src/app/component/message/buttons/action-button/action-button.component.html +3 -4
  102. package/src/app/component/message/buttons/action-button/action-button.component.spec.ts +49 -5
  103. package/src/app/component/message/buttons/link-button/link-button.component.scss +5 -8
  104. package/src/app/component/message/buttons/link-button/link-button.component.spec.ts +50 -5
  105. package/src/app/component/message/buttons/text-button/text-button.component.spec.ts +44 -5
  106. package/src/app/component/message/carousel/carousel.component.html +29 -16
  107. package/src/app/component/message/carousel/carousel.component.scss +20 -8
  108. package/src/app/component/message/carousel/carousel.component.spec.ts +80 -3
  109. package/src/app/component/message/carousel/carousel.component.ts +16 -0
  110. package/src/app/component/message/frame/frame.component.html +9 -4
  111. package/src/app/component/message/frame/frame.component.spec.ts +34 -15
  112. package/src/app/component/message/frame/frame.component.ts +7 -2
  113. package/src/app/component/message/html/html.component.html +1 -1
  114. package/src/app/component/message/html/html.component.scss +1 -1
  115. package/src/app/component/message/html/html.component.spec.ts +24 -7
  116. package/src/app/component/message/image/image.component.html +12 -10
  117. package/src/app/component/message/image/image.component.scss +16 -0
  118. package/src/app/component/message/image/image.component.spec.ts +101 -15
  119. package/src/app/component/message/image/image.component.ts +90 -51
  120. package/src/app/component/message/info-message/info-message.component.spec.ts +26 -14
  121. package/src/app/component/message/json-sources/json-sources.component.html +6 -5
  122. package/src/app/component/message/json-sources/json-sources.component.scss +26 -18
  123. package/src/app/component/message/json-sources/json-sources.component.ts +41 -0
  124. package/src/app/component/message/like-unlike/like-unlike.component.html +7 -9
  125. package/src/app/component/message/like-unlike/like-unlike.component.spec.ts +31 -3
  126. package/src/app/component/message/return-receipt/return-receipt.component.spec.ts +38 -17
  127. package/src/app/component/message/text/text.component.html +3 -3
  128. package/src/app/component/message/text/text.component.scss +80 -86
  129. package/src/app/component/message/text/text.component.spec.ts +106 -13
  130. package/src/app/component/message-attachment/message-attachment.component.spec.ts +134 -13
  131. package/src/app/component/selection-department/selection-department.component.html +21 -23
  132. package/src/app/component/selection-department/selection-department.component.spec.ts +159 -14
  133. package/src/app/component/selection-department/selection-department.component.ts +8 -1
  134. package/src/app/component/send-button/send-button.component.html +5 -13
  135. package/src/app/component/send-button/send-button.component.spec.ts +2 -2
  136. package/src/app/component/star-rating-widget/star-rating-widget.component.html +51 -81
  137. package/src/app/directives/tooltip.directive.spec.ts +8 -4
  138. package/src/app/modals/confirm-close/confirm-close.component.html +20 -8
  139. package/src/app/modals/confirm-close/confirm-close.component.scss +3 -0
  140. package/src/app/modals/confirm-close/confirm-close.component.spec.ts +13 -4
  141. package/src/app/modals/confirm-close/confirm-close.component.ts +8 -1
  142. package/src/app/pipe/html-entites-encode.pipe.spec.ts +35 -2
  143. package/src/app/pipe/marked.pipe.spec.ts +38 -2
  144. package/src/app/pipe/marked.pipe.ts +51 -41
  145. package/src/app/providers/app-config.service.ts +4 -2
  146. package/src/app/providers/brand.service.spec.ts +23 -2
  147. package/src/app/providers/brand.service.ts +1 -1
  148. package/src/app/providers/global-settings.service.spec.ts +1009 -14
  149. package/src/app/providers/global-settings.service.ts +40 -2
  150. package/src/app/providers/json-sources-parser.service.ts +13 -1
  151. package/src/app/providers/translator.service.ts +24 -7
  152. package/src/app/providers/tts-audio-playback-coordinator.service.spec.ts +116 -0
  153. package/src/app/providers/tts-audio-playback-coordinator.service.ts +122 -0
  154. package/src/app/providers/voice/STT&TTS/openai-voice.config.ts +12 -0
  155. package/src/app/providers/voice/STT&TTS/openai-voice.provider.ts +156 -0
  156. package/src/app/providers/voice/STT&TTS/speech-provider.abstract.ts +39 -0
  157. package/src/app/providers/voice/audio.types.ts +40 -0
  158. package/src/app/providers/voice/vad.service.spec.ts +28 -0
  159. package/src/app/providers/voice/vad.service.ts +70 -0
  160. package/src/app/providers/voice/voice-streaming.service.spec.ts +23 -0
  161. package/src/app/providers/voice/voice-streaming.service.ts +702 -0
  162. package/src/app/providers/voice/voice-streaming.types.ts +112 -0
  163. package/src/app/providers/voice/voice.service.spec.ts +227 -0
  164. package/src/app/providers/voice/voice.service.ts +969 -0
  165. package/src/app/sass/_variables.scss +2 -0
  166. package/src/app/sass/animations.scss +19 -1
  167. package/src/app/shims/onnxruntime-web-wasm.ts +4 -0
  168. package/src/app/utils/globals.ts +14 -0
  169. package/src/app/utils/utils-resources.ts +1 -1
  170. package/src/assets/i18n/en.json +128 -100
  171. package/src/assets/i18n/es.json +128 -100
  172. package/src/assets/i18n/fr.json +128 -100
  173. package/src/assets/i18n/it.json +128 -98
  174. package/src/assets/onnx/ort-wasm-simd-threaded.mjs +59 -0
  175. package/src/assets/onnx/ort-wasm-simd-threaded.wasm +0 -0
  176. package/src/assets/sounds/keyboard.mp3 +0 -0
  177. package/src/assets/vad/silero_vad_legacy.onnx +0 -0
  178. package/src/assets/vad/vad.worklet.bundle.min.js +1 -0
  179. package/src/chat21-core/models/message.ts +2 -1
  180. package/src/chat21-core/providers/chat-manager.spec.ts +72 -0
  181. package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +3 -2
  182. package/src/chat21-core/providers/firebase/firebase-init-service.ts +5 -5
  183. package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +12 -0
  184. package/src/chat21-core/providers/scripts/script.service.spec.ts +12 -2
  185. package/src/chat21-core/utils/utils-message.ts +7 -0
  186. package/src/widget-config-template.json +3 -1
  187. package/src/widget-config.json +28 -27
  188. package/tests/widget-form-rich.spec.ts +67 -0
  189. package/tests/widget-index-dev-settings.spec.ts +52 -0
  190. package/tests/widget-twp-iframe.spec.ts +39 -0
  191. 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
- @import 'variables';
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
  * ----------------------------------------
@@ -0,0 +1,4 @@
1
+ export * from "onnxruntime-web";
2
+ import * as ort from "onnxruntime-web";
3
+
4
+ export default ort;
@@ -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 tabindex='-1' target='_blank' ref='https://www.tiledesk.com/?utm_source=widget'><img src='https://support-pre.tiledesk.com/dashboard/assets/img/logos/tiledesk-solo_logo_new_gray.svg'/><span>Powered by Tiledesk</span></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 }} ={
@@ -1,101 +1,129 @@
1
1
  {
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
-
62
- "INFO_SUPPORT_USER_ADDED_SUBJECT":"you",
63
- "INFO_SUPPORT_USER_ADDED_YOU_VERB":"have been added to ",
64
- "INFO_SUPPORT_USER_ADDED_COMPLEMENT":"joined",
65
- "INFO_SUPPORT_USER_ADDED_VERB":"the chat",
66
- "INFO_SUPPORT_CHAT_REOPENED":"Chat reopened",
67
- "INFO_SUPPORT_CHAT_CLOSED":"Chat closed",
68
- "INFO_SUPPORT_LEAD_UPDATED":"Lead updated",
69
- "INFO_SUPPORT_MEMBER_LEFT_GROUP":"removed from group",
70
- "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"has left the conversation",
71
- "INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "A new support request has been assigned to you",
72
-
73
- "LABEL_PRECHAT_USER_FULLNAME": "Full name",
74
- "LABEL_PRECHAT_USER_EMAIL": "Email",
75
- "LABEL_PRECHAT_USER_EMAIL_ERROR": "Invalid email address",
76
- "LABEL_PRECHAT_USER_PHONE": "Phone",
77
- "LABEL_PRECHAT_USER_PHONE_ERROR": "Phone is required",
78
- "LABEL_PRECHAT_FIRST_MESSAGE": "Your message for the support team",
79
- "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>",
80
- "LABEL_PRECHAT_ACCEPT_TERMS_PRIVACY": "I agree",
81
- "PRECHAT_REQUIRED_ERROR": "This field is required",
82
-
83
- "TICKET_TAKING":"The request has been received and the assistance staff is dealing with it.\nTo add more comments, reply to this email.",
84
-
85
- "LABEL_TODAY": "today",
86
- "LABEL_TOMORROW": "yesterday",
87
- "LABEL_LAST_ACCESS": "last access",
88
- "LABEL_TO": "at",
89
- "ARRAY_DAYS": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
90
-
91
- "SENT_AN_ATTACHMENT": "sent an attachment",
92
- "SENT_AN_IMAGE":"sent an image",
93
-
94
- "LABEL_PREVIEW": "Preview",
95
- "SWITCH_TO": "Or switch to:",
96
- "CONNECTION_NETWORK_ERROR": "Our apologies. There was some trouble connecting to network",
97
- "EMOJI_NOT_ELLOWED":"Emoji not allowed",
98
- "DOMAIN_NOT_ALLOWED":"URL contains a non-allowed domain",
99
- "MAX_ATTACHMENT": "Max allowed size {{FILE_SIZE_LIMIT}}Mb",
100
- "EMOJI": "Emoji"
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
+ }
@@ -1,101 +1,129 @@
1
1
  {
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
-
62
- "INFO_SUPPORT_USER_ADDED_SUBJECT":"",
63
- "INFO_SUPPORT_USER_ADDED_YOU_VERB":"han sido agregados a ",
64
- "INFO_SUPPORT_USER_ADDED_COMPLEMENT":"joined",
65
- "INFO_SUPPORT_USER_ADDED_VERB":"el chat",
66
- "INFO_SUPPORT_CHAT_REOPENED":"Chat reabierto",
67
- "INFO_SUPPORT_CHAT_CLOSED":"Chat cerrada",
68
- "INFO_SUPPORT_LEAD_UPDATED":"Cliente potencial actualizado",
69
- "INFO_SUPPORT_MEMBER_LEFT_GROUP":"eliminado del grupo",
70
- "INFO_SUPPORT_MEMBER_ABANDONED_GROUP":"abandonó la conversación",
71
- "INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU": "Se le ha asignado una nueva solicitud de soporte",
72
-
73
- "LABEL_PRECHAT_USER_FULLNAME": "Nombre completo",
74
- "LABEL_PRECHAT_USER_EMAIL": "Correo electrónico",
75
- "LABEL_PRECHAT_USER_EMAIL_ERROR": "Dirección de correo electrónico no válida",
76
- "LABEL_PRECHAT_USER_PHONE": "Teléfono",
77
- "LABEL_PRECHAT_USER_PHONE_ERROR": "Se requiere teléfono",
78
- "LABEL_PRECHAT_FIRST_MESSAGE": "Tu mensaje para el equipo de soporte",
79
- "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>",
80
- "LABEL_PRECHAT_ACCEPT_TERMS_PRIVACY": "Acepto",
81
- "PRECHAT_REQUIRED_ERROR": "Este campo es obligatorio",
82
-
83
- "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.",
84
-
85
- "LABEL_TODAY": "hoy",
86
- "LABEL_TOMORROW": "ayer",
87
- "LABEL_LAST_ACCESS": "ultimo acceso",
88
- "LABEL_TO": "a",
89
- "ARRAY_DAYS": ["Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"],
90
-
91
- "SENT_AN_ATTACHMENT": "envió un archivo adjunto",
92
- "SENT_AN_IMAGE": "envió una imagen",
93
-
94
- "LABEL_PREVIEW": "Avance",
95
- "SWITCH_TO":"O cambiar a:",
96
- "CONNECTION_NETWORK_ERROR": "Nuestras disculpas. Hubo algunos problemas para conectarse a la red",
97
- "EMOJI_NOT_ELLOWED":"Emoji no permitido",
98
- "DOMAIN_NOT_ALLOWED":"La URL contiene un dominio no permitido",
99
- "MAX_ATTACHMENT": "Tamaño máximo permitido {{FILE_SIZE_LIMIT}}Mb",
100
- "EMOJI": "Emoji"
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
+ }