@memori.ai/memori-react 8.8.5 → 8.9.0
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/CHANGELOG.md +38 -0
- package/README.md +28 -0
- package/dist/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js +0 -1
- package/dist/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js.map +1 -1
- package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js +0 -10
- package/dist/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js.map +1 -1
- package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js +0 -9
- package/dist/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js.map +1 -1
- package/dist/components/Chat/Chat.css +31 -0
- package/dist/components/Chat/Chat.js +18 -4
- package/dist/components/Chat/Chat.js.map +1 -1
- package/dist/components/ChatBubble/ChatBubble.js +1 -2
- package/dist/components/ChatBubble/ChatBubble.js.map +1 -1
- package/dist/components/ChatInputs/ChatInputs.css +23 -0
- package/dist/components/ChatInputs/ChatInputs.d.ts +1 -0
- package/dist/components/ChatInputs/ChatInputs.js +37 -21
- package/dist/components/ChatInputs/ChatInputs.js.map +1 -1
- package/dist/components/ChatTextArea/ChatTextArea.css +31 -0
- package/dist/components/ChatTextArea/ChatTextArea.d.ts +1 -0
- package/dist/components/ChatTextArea/ChatTextArea.js +9 -2
- package/dist/components/ChatTextArea/ChatTextArea.js.map +1 -1
- package/dist/components/FilePreview/FilePreview.css +39 -0
- package/dist/components/Header/Header.js +3 -16
- package/dist/components/Header/Header.js.map +1 -1
- package/dist/components/MediaWidget/LinkItemWidget.js +1 -1
- package/dist/components/MediaWidget/LinkItemWidget.js.map +1 -1
- package/dist/components/MediaWidget/MediaItemWidget.js +5 -9
- package/dist/components/MediaWidget/MediaItemWidget.js.map +1 -1
- package/dist/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js +65 -51
- package/dist/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js.map +1 -1
- package/dist/components/MemoriArtifactSystem/utils/ArtifactAPI.d.ts +5 -0
- package/dist/components/MemoriArtifactSystem/utils/ArtifactAPI.js +287 -0
- package/dist/components/MemoriArtifactSystem/utils/ArtifactAPI.js.map +1 -0
- package/dist/components/MemoriWidget/MemoriWidget.d.ts +12 -0
- package/dist/components/MemoriWidget/MemoriWidget.js +12 -3
- package/dist/components/MemoriWidget/MemoriWidget.js.map +1 -1
- package/dist/components/Snippet/Snippet.js +4 -3
- package/dist/components/Snippet/Snippet.js.map +1 -1
- package/dist/components/StartPanel/StartPanel.css +14 -0
- package/dist/components/StartPanel/StartPanel.js +2 -2
- package/dist/components/StartPanel/StartPanel.js.map +1 -1
- package/dist/components/UploadButton/UploadDocuments/UploadDocuments.js +0 -21
- package/dist/components/UploadButton/UploadDocuments/UploadDocuments.js.map +1 -1
- package/dist/components/VenueWidget/VenueWidget.js +0 -1
- package/dist/components/VenueWidget/VenueWidget.js.map +1 -1
- package/dist/components/layouts/HiddenChat.js +0 -15
- package/dist/components/layouts/HiddenChat.js.map +1 -1
- package/dist/components/layouts/chat.css +2 -2
- package/dist/context/visemeContext.js +0 -6
- package/dist/context/visemeContext.js.map +1 -1
- package/dist/helpers/constants.d.ts +11 -0
- package/dist/helpers/constants.js +24 -2
- package/dist/helpers/constants.js.map +1 -1
- package/dist/helpers/tts/useTTS.js +0 -3
- package/dist/helpers/tts/useTTS.js.map +1 -1
- package/dist/helpers/utils.d.ts +1 -0
- package/dist/helpers/utils.js +6 -1
- package/dist/helpers/utils.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/locales/de.json +2 -0
- package/dist/locales/en.json +2 -0
- package/dist/locales/es.json +2 -0
- package/dist/locales/fr.json +2 -0
- package/dist/locales/it.json +2 -0
- package/esm/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js +0 -1
- package/esm/components/Avatar/AvatarView/AvatarComponent/avatarComponent.js.map +1 -1
- package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js +0 -10
- package/esm/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.js.map +1 -1
- package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js +0 -9
- package/esm/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.js.map +1 -1
- package/esm/components/Chat/Chat.css +31 -0
- package/esm/components/Chat/Chat.js +19 -5
- package/esm/components/Chat/Chat.js.map +1 -1
- package/esm/components/ChatBubble/ChatBubble.js +1 -2
- package/esm/components/ChatBubble/ChatBubble.js.map +1 -1
- package/esm/components/ChatInputs/ChatInputs.css +23 -0
- package/esm/components/ChatInputs/ChatInputs.d.ts +1 -0
- package/esm/components/ChatInputs/ChatInputs.js +37 -21
- package/esm/components/ChatInputs/ChatInputs.js.map +1 -1
- package/esm/components/ChatTextArea/ChatTextArea.css +31 -0
- package/esm/components/ChatTextArea/ChatTextArea.d.ts +1 -0
- package/esm/components/ChatTextArea/ChatTextArea.js +9 -2
- package/esm/components/ChatTextArea/ChatTextArea.js.map +1 -1
- package/esm/components/FilePreview/FilePreview.css +39 -0
- package/esm/components/Header/Header.js +3 -16
- package/esm/components/Header/Header.js.map +1 -1
- package/esm/components/MediaWidget/LinkItemWidget.js +1 -1
- package/esm/components/MediaWidget/LinkItemWidget.js.map +1 -1
- package/esm/components/MediaWidget/MediaItemWidget.js +5 -9
- package/esm/components/MediaWidget/MediaItemWidget.js.map +1 -1
- package/esm/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js +65 -51
- package/esm/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.js.map +1 -1
- package/esm/components/MemoriArtifactSystem/utils/ArtifactAPI.d.ts +5 -0
- package/esm/components/MemoriArtifactSystem/utils/ArtifactAPI.js +282 -0
- package/esm/components/MemoriArtifactSystem/utils/ArtifactAPI.js.map +1 -0
- package/esm/components/MemoriWidget/MemoriWidget.d.ts +12 -0
- package/esm/components/MemoriWidget/MemoriWidget.js +12 -3
- package/esm/components/MemoriWidget/MemoriWidget.js.map +1 -1
- package/esm/components/Snippet/Snippet.js +4 -3
- package/esm/components/Snippet/Snippet.js.map +1 -1
- package/esm/components/StartPanel/StartPanel.css +14 -0
- package/esm/components/StartPanel/StartPanel.js +3 -3
- package/esm/components/StartPanel/StartPanel.js.map +1 -1
- package/esm/components/UploadButton/UploadDocuments/UploadDocuments.js +0 -21
- package/esm/components/UploadButton/UploadDocuments/UploadDocuments.js.map +1 -1
- package/esm/components/VenueWidget/VenueWidget.js +0 -1
- package/esm/components/VenueWidget/VenueWidget.js.map +1 -1
- package/esm/components/layouts/HiddenChat.js +0 -15
- package/esm/components/layouts/HiddenChat.js.map +1 -1
- package/esm/components/layouts/chat.css +2 -2
- package/esm/context/visemeContext.js +0 -6
- package/esm/context/visemeContext.js.map +1 -1
- package/esm/helpers/constants.d.ts +11 -0
- package/esm/helpers/constants.js +22 -1
- package/esm/helpers/constants.js.map +1 -1
- package/esm/helpers/tts/useTTS.js +0 -3
- package/esm/helpers/tts/useTTS.js.map +1 -1
- package/esm/helpers/utils.d.ts +1 -0
- package/esm/helpers/utils.js +4 -0
- package/esm/helpers/utils.js.map +1 -1
- package/esm/index.js.map +1 -1
- package/esm/locales/de.json +2 -0
- package/esm/locales/en.json +2 -0
- package/esm/locales/es.json +2 -0
- package/esm/locales/fr.json +2 -0
- package/esm/locales/it.json +2 -0
- package/package.json +1 -1
- package/src/components/Avatar/AvatarView/AvatarComponent/avatarComponent.tsx +0 -1
- package/src/components/Avatar/AvatarView/AvatarComponent/components/FullbodyAvatar/fullbodyAvatar.tsx +0 -17
- package/src/components/Avatar/AvatarView/AvatarComponent/components/controllers/AvatarAnimator.ts +0 -20
- package/src/components/Chat/Chat.css +31 -0
- package/src/components/Chat/Chat.stories.tsx +503 -9
- package/src/components/Chat/Chat.tsx +23 -3
- package/src/components/Chat/__snapshots__/Chat.test.tsx.snap +73 -73
- package/src/components/ChatBubble/ChatBubble.tsx +1 -2
- package/src/components/ChatBubble/__snapshots__/ChatBubble.test.tsx.snap +25 -25
- package/src/components/ChatInputs/ChatInputs.css +23 -0
- package/src/components/ChatInputs/ChatInputs.tsx +36 -14
- package/src/components/ChatTextArea/ChatTextArea.css +31 -0
- package/src/components/ChatTextArea/ChatTextArea.tsx +11 -1
- package/src/components/FilePreview/FilePreview.css +39 -0
- package/src/components/Header/Header.tsx +0 -13
- package/src/components/MediaWidget/LinkItemWidget.tsx +1 -1
- package/src/components/MediaWidget/MediaItemWidget.stories.tsx +33 -0
- package/src/components/MediaWidget/MediaItemWidget.tsx +7 -10
- package/src/components/MediaWidget/__snapshots__/LinkItemWidget.test.tsx.snap +4 -4
- package/src/components/MediaWidget/__snapshots__/MediaItemWidget.test.tsx.snap +6 -6
- package/src/components/MediaWidget/__snapshots__/MediaWidget.test.tsx.snap +2 -2
- package/src/components/MemoriArtifactSystem/ArtifactDrawer.stories.tsx +766 -2
- package/src/components/MemoriArtifactSystem/components/ArtifactHandler/ArtifactHandler.tsx +103 -89
- package/src/components/MemoriArtifactSystem/utils/ArtifactAPI.test.tsx +307 -0
- package/src/components/MemoriArtifactSystem/utils/ArtifactAPI.tsx +373 -0
- package/src/components/MemoriWidget/MemoriWidget.tsx +26 -4
- package/src/components/Snippet/Snippet.tsx +3 -2
- package/src/components/StartPanel/StartPanel.css +14 -0
- package/src/components/StartPanel/StartPanel.tsx +23 -10
- package/src/components/StartPanel/__snapshots__/StartPanel.test.tsx.snap +206 -84
- package/src/components/UploadButton/UploadDocuments/UploadDocuments.tsx +0 -23
- package/src/components/VenueWidget/VenueWidget.tsx +0 -1
- package/src/components/layouts/HiddenChat.tsx +0 -16
- package/src/components/layouts/__snapshots__/Chat.test.tsx.snap +204 -82
- package/src/components/layouts/__snapshots__/FullPage.test.tsx.snap +408 -164
- package/src/components/layouts/__snapshots__/HiddenChat.test.tsx.snap +204 -82
- package/src/components/layouts/__snapshots__/Totem.test.tsx.snap +204 -82
- package/src/components/layouts/__snapshots__/ZoomedFullBody.test.tsx.snap +204 -82
- package/src/components/layouts/chat.css +2 -2
- package/src/context/visemeContext.tsx +0 -7
- package/src/helpers/constants.ts +28 -3
- package/src/helpers/tts/useTTS.ts +0 -2
- package/src/helpers/utils.ts +5 -0
- package/src/index.tsx +0 -1
- package/src/locales/de.json +2 -0
- package/src/locales/en.json +2 -0
- package/src/locales/es.json +2 -0
- package/src/locales/fr.json +2 -0
- package/src/locales/it.json +2 -0
|
@@ -273,90 +273,212 @@ exports[`renders FullPage layout unchanged 1`] = `
|
|
|
273
273
|
class="memori-select--button"
|
|
274
274
|
id="user-lang-pref"
|
|
275
275
|
>
|
|
276
|
-
<
|
|
277
|
-
|
|
278
|
-
value="IT"
|
|
276
|
+
<optgroup
|
|
277
|
+
label="Popolari"
|
|
279
278
|
>
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
aria-label="Русский"
|
|
320
|
-
value="RU"
|
|
321
|
-
>
|
|
322
|
-
Русский
|
|
323
|
-
</option>
|
|
324
|
-
<option
|
|
325
|
-
aria-label="Polski"
|
|
326
|
-
value="PL"
|
|
327
|
-
>
|
|
328
|
-
Polski
|
|
329
|
-
</option>
|
|
330
|
-
<option
|
|
331
|
-
aria-label="Suomi"
|
|
332
|
-
value="FI"
|
|
333
|
-
>
|
|
334
|
-
Suomi
|
|
335
|
-
</option>
|
|
336
|
-
<option
|
|
337
|
-
aria-label="Ελληνικά"
|
|
338
|
-
value="EL"
|
|
339
|
-
>
|
|
340
|
-
Ελληνικά
|
|
341
|
-
</option>
|
|
342
|
-
<option
|
|
343
|
-
aria-label="العربية"
|
|
344
|
-
value="AR"
|
|
345
|
-
>
|
|
346
|
-
العربية
|
|
347
|
-
</option>
|
|
348
|
-
<option
|
|
349
|
-
aria-label="中文"
|
|
350
|
-
value="ZH"
|
|
351
|
-
>
|
|
352
|
-
中文
|
|
353
|
-
</option>
|
|
354
|
-
<option
|
|
355
|
-
aria-label="日本語"
|
|
356
|
-
value="JA"
|
|
279
|
+
<option
|
|
280
|
+
aria-label="Italiano"
|
|
281
|
+
value="IT"
|
|
282
|
+
>
|
|
283
|
+
Italiano
|
|
284
|
+
</option>
|
|
285
|
+
<option
|
|
286
|
+
aria-label="English"
|
|
287
|
+
value="EN"
|
|
288
|
+
>
|
|
289
|
+
English
|
|
290
|
+
</option>
|
|
291
|
+
<option
|
|
292
|
+
aria-label="Deutsch"
|
|
293
|
+
value="DE"
|
|
294
|
+
>
|
|
295
|
+
Deutsch
|
|
296
|
+
</option>
|
|
297
|
+
<option
|
|
298
|
+
aria-label="Español"
|
|
299
|
+
value="ES"
|
|
300
|
+
>
|
|
301
|
+
Español
|
|
302
|
+
</option>
|
|
303
|
+
<option
|
|
304
|
+
aria-label="Français"
|
|
305
|
+
value="FR"
|
|
306
|
+
>
|
|
307
|
+
Français
|
|
308
|
+
</option>
|
|
309
|
+
<option
|
|
310
|
+
aria-label="Português"
|
|
311
|
+
value="PT"
|
|
312
|
+
>
|
|
313
|
+
Português
|
|
314
|
+
</option>
|
|
315
|
+
</optgroup>
|
|
316
|
+
<optgroup
|
|
317
|
+
label="Tutte le lingue"
|
|
357
318
|
>
|
|
358
|
-
|
|
359
|
-
|
|
319
|
+
<option
|
|
320
|
+
aria-label="Italiano"
|
|
321
|
+
value="IT"
|
|
322
|
+
>
|
|
323
|
+
Italiano
|
|
324
|
+
</option>
|
|
325
|
+
<option
|
|
326
|
+
aria-label="English"
|
|
327
|
+
value="EN"
|
|
328
|
+
>
|
|
329
|
+
English
|
|
330
|
+
</option>
|
|
331
|
+
<option
|
|
332
|
+
aria-label="Deutsch"
|
|
333
|
+
value="DE"
|
|
334
|
+
>
|
|
335
|
+
Deutsch
|
|
336
|
+
</option>
|
|
337
|
+
<option
|
|
338
|
+
aria-label="Español"
|
|
339
|
+
value="ES"
|
|
340
|
+
>
|
|
341
|
+
Español
|
|
342
|
+
</option>
|
|
343
|
+
<option
|
|
344
|
+
aria-label="Français"
|
|
345
|
+
value="FR"
|
|
346
|
+
>
|
|
347
|
+
Français
|
|
348
|
+
</option>
|
|
349
|
+
<option
|
|
350
|
+
aria-label="Português"
|
|
351
|
+
value="PT"
|
|
352
|
+
>
|
|
353
|
+
Português
|
|
354
|
+
</option>
|
|
355
|
+
<option
|
|
356
|
+
aria-label="Nederlands"
|
|
357
|
+
value="NL"
|
|
358
|
+
>
|
|
359
|
+
Nederlands
|
|
360
|
+
</option>
|
|
361
|
+
<option
|
|
362
|
+
aria-label="Svenska"
|
|
363
|
+
value="SV"
|
|
364
|
+
>
|
|
365
|
+
Svenska
|
|
366
|
+
</option>
|
|
367
|
+
<option
|
|
368
|
+
aria-label="Dansk"
|
|
369
|
+
value="DA"
|
|
370
|
+
>
|
|
371
|
+
Dansk
|
|
372
|
+
</option>
|
|
373
|
+
<option
|
|
374
|
+
aria-label="Suomi"
|
|
375
|
+
value="FI"
|
|
376
|
+
>
|
|
377
|
+
Suomi
|
|
378
|
+
</option>
|
|
379
|
+
<option
|
|
380
|
+
aria-label="Eesti keel"
|
|
381
|
+
value="ET"
|
|
382
|
+
>
|
|
383
|
+
Eesti keel
|
|
384
|
+
</option>
|
|
385
|
+
<option
|
|
386
|
+
aria-label="Lietuvių kalba"
|
|
387
|
+
value="LT"
|
|
388
|
+
>
|
|
389
|
+
Lietuvių kalba
|
|
390
|
+
</option>
|
|
391
|
+
<option
|
|
392
|
+
aria-label="Magyar"
|
|
393
|
+
value="HU"
|
|
394
|
+
>
|
|
395
|
+
Magyar
|
|
396
|
+
</option>
|
|
397
|
+
<option
|
|
398
|
+
aria-label="Română"
|
|
399
|
+
value="RO"
|
|
400
|
+
>
|
|
401
|
+
Română
|
|
402
|
+
</option>
|
|
403
|
+
<option
|
|
404
|
+
aria-label="български"
|
|
405
|
+
value="BG"
|
|
406
|
+
>
|
|
407
|
+
български
|
|
408
|
+
</option>
|
|
409
|
+
<option
|
|
410
|
+
aria-label="Hrvatski"
|
|
411
|
+
value="HR"
|
|
412
|
+
>
|
|
413
|
+
Hrvatski
|
|
414
|
+
</option>
|
|
415
|
+
<option
|
|
416
|
+
aria-label="Čeština / český jazyk"
|
|
417
|
+
value="CS"
|
|
418
|
+
>
|
|
419
|
+
Čeština / český jazyk
|
|
420
|
+
</option>
|
|
421
|
+
<option
|
|
422
|
+
aria-label="Slovenčina"
|
|
423
|
+
value="SK"
|
|
424
|
+
>
|
|
425
|
+
Slovenčina
|
|
426
|
+
</option>
|
|
427
|
+
<option
|
|
428
|
+
aria-label="Slovenščina"
|
|
429
|
+
value="SL"
|
|
430
|
+
>
|
|
431
|
+
Slovenščina
|
|
432
|
+
</option>
|
|
433
|
+
<option
|
|
434
|
+
aria-label="Latvian"
|
|
435
|
+
value="LV"
|
|
436
|
+
>
|
|
437
|
+
Latvian
|
|
438
|
+
</option>
|
|
439
|
+
<option
|
|
440
|
+
aria-label="Українська"
|
|
441
|
+
value="UK"
|
|
442
|
+
>
|
|
443
|
+
Українська
|
|
444
|
+
</option>
|
|
445
|
+
<option
|
|
446
|
+
aria-label="Русский"
|
|
447
|
+
value="RU"
|
|
448
|
+
>
|
|
449
|
+
Русский
|
|
450
|
+
</option>
|
|
451
|
+
<option
|
|
452
|
+
aria-label="Polski"
|
|
453
|
+
value="PL"
|
|
454
|
+
>
|
|
455
|
+
Polski
|
|
456
|
+
</option>
|
|
457
|
+
<option
|
|
458
|
+
aria-label="Ελληνικά"
|
|
459
|
+
value="EL"
|
|
460
|
+
>
|
|
461
|
+
Ελληνικά
|
|
462
|
+
</option>
|
|
463
|
+
<option
|
|
464
|
+
aria-label="العربية"
|
|
465
|
+
value="AR"
|
|
466
|
+
>
|
|
467
|
+
العربية
|
|
468
|
+
</option>
|
|
469
|
+
<option
|
|
470
|
+
aria-label="中文"
|
|
471
|
+
value="ZH"
|
|
472
|
+
>
|
|
473
|
+
中文
|
|
474
|
+
</option>
|
|
475
|
+
<option
|
|
476
|
+
aria-label="日本語"
|
|
477
|
+
value="JA"
|
|
478
|
+
>
|
|
479
|
+
日本語
|
|
480
|
+
</option>
|
|
481
|
+
</optgroup>
|
|
360
482
|
</select>
|
|
361
483
|
</div>
|
|
362
484
|
<div
|
|
@@ -790,90 +912,212 @@ exports[`renders FullPage layout with root css properties unchanged 1`] = `
|
|
|
790
912
|
class="memori-select--button"
|
|
791
913
|
id="user-lang-pref"
|
|
792
914
|
>
|
|
793
|
-
<
|
|
794
|
-
|
|
795
|
-
value="IT"
|
|
915
|
+
<optgroup
|
|
916
|
+
label="Popolari"
|
|
796
917
|
>
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
aria-label="Русский"
|
|
837
|
-
value="RU"
|
|
838
|
-
>
|
|
839
|
-
Русский
|
|
840
|
-
</option>
|
|
841
|
-
<option
|
|
842
|
-
aria-label="Polski"
|
|
843
|
-
value="PL"
|
|
844
|
-
>
|
|
845
|
-
Polski
|
|
846
|
-
</option>
|
|
847
|
-
<option
|
|
848
|
-
aria-label="Suomi"
|
|
849
|
-
value="FI"
|
|
850
|
-
>
|
|
851
|
-
Suomi
|
|
852
|
-
</option>
|
|
853
|
-
<option
|
|
854
|
-
aria-label="Ελληνικά"
|
|
855
|
-
value="EL"
|
|
856
|
-
>
|
|
857
|
-
Ελληνικά
|
|
858
|
-
</option>
|
|
859
|
-
<option
|
|
860
|
-
aria-label="العربية"
|
|
861
|
-
value="AR"
|
|
862
|
-
>
|
|
863
|
-
العربية
|
|
864
|
-
</option>
|
|
865
|
-
<option
|
|
866
|
-
aria-label="中文"
|
|
867
|
-
value="ZH"
|
|
868
|
-
>
|
|
869
|
-
中文
|
|
870
|
-
</option>
|
|
871
|
-
<option
|
|
872
|
-
aria-label="日本語"
|
|
873
|
-
value="JA"
|
|
918
|
+
<option
|
|
919
|
+
aria-label="Italiano"
|
|
920
|
+
value="IT"
|
|
921
|
+
>
|
|
922
|
+
Italiano
|
|
923
|
+
</option>
|
|
924
|
+
<option
|
|
925
|
+
aria-label="English"
|
|
926
|
+
value="EN"
|
|
927
|
+
>
|
|
928
|
+
English
|
|
929
|
+
</option>
|
|
930
|
+
<option
|
|
931
|
+
aria-label="Deutsch"
|
|
932
|
+
value="DE"
|
|
933
|
+
>
|
|
934
|
+
Deutsch
|
|
935
|
+
</option>
|
|
936
|
+
<option
|
|
937
|
+
aria-label="Español"
|
|
938
|
+
value="ES"
|
|
939
|
+
>
|
|
940
|
+
Español
|
|
941
|
+
</option>
|
|
942
|
+
<option
|
|
943
|
+
aria-label="Français"
|
|
944
|
+
value="FR"
|
|
945
|
+
>
|
|
946
|
+
Français
|
|
947
|
+
</option>
|
|
948
|
+
<option
|
|
949
|
+
aria-label="Português"
|
|
950
|
+
value="PT"
|
|
951
|
+
>
|
|
952
|
+
Português
|
|
953
|
+
</option>
|
|
954
|
+
</optgroup>
|
|
955
|
+
<optgroup
|
|
956
|
+
label="Tutte le lingue"
|
|
874
957
|
>
|
|
875
|
-
|
|
876
|
-
|
|
958
|
+
<option
|
|
959
|
+
aria-label="Italiano"
|
|
960
|
+
value="IT"
|
|
961
|
+
>
|
|
962
|
+
Italiano
|
|
963
|
+
</option>
|
|
964
|
+
<option
|
|
965
|
+
aria-label="English"
|
|
966
|
+
value="EN"
|
|
967
|
+
>
|
|
968
|
+
English
|
|
969
|
+
</option>
|
|
970
|
+
<option
|
|
971
|
+
aria-label="Deutsch"
|
|
972
|
+
value="DE"
|
|
973
|
+
>
|
|
974
|
+
Deutsch
|
|
975
|
+
</option>
|
|
976
|
+
<option
|
|
977
|
+
aria-label="Español"
|
|
978
|
+
value="ES"
|
|
979
|
+
>
|
|
980
|
+
Español
|
|
981
|
+
</option>
|
|
982
|
+
<option
|
|
983
|
+
aria-label="Français"
|
|
984
|
+
value="FR"
|
|
985
|
+
>
|
|
986
|
+
Français
|
|
987
|
+
</option>
|
|
988
|
+
<option
|
|
989
|
+
aria-label="Português"
|
|
990
|
+
value="PT"
|
|
991
|
+
>
|
|
992
|
+
Português
|
|
993
|
+
</option>
|
|
994
|
+
<option
|
|
995
|
+
aria-label="Nederlands"
|
|
996
|
+
value="NL"
|
|
997
|
+
>
|
|
998
|
+
Nederlands
|
|
999
|
+
</option>
|
|
1000
|
+
<option
|
|
1001
|
+
aria-label="Svenska"
|
|
1002
|
+
value="SV"
|
|
1003
|
+
>
|
|
1004
|
+
Svenska
|
|
1005
|
+
</option>
|
|
1006
|
+
<option
|
|
1007
|
+
aria-label="Dansk"
|
|
1008
|
+
value="DA"
|
|
1009
|
+
>
|
|
1010
|
+
Dansk
|
|
1011
|
+
</option>
|
|
1012
|
+
<option
|
|
1013
|
+
aria-label="Suomi"
|
|
1014
|
+
value="FI"
|
|
1015
|
+
>
|
|
1016
|
+
Suomi
|
|
1017
|
+
</option>
|
|
1018
|
+
<option
|
|
1019
|
+
aria-label="Eesti keel"
|
|
1020
|
+
value="ET"
|
|
1021
|
+
>
|
|
1022
|
+
Eesti keel
|
|
1023
|
+
</option>
|
|
1024
|
+
<option
|
|
1025
|
+
aria-label="Lietuvių kalba"
|
|
1026
|
+
value="LT"
|
|
1027
|
+
>
|
|
1028
|
+
Lietuvių kalba
|
|
1029
|
+
</option>
|
|
1030
|
+
<option
|
|
1031
|
+
aria-label="Magyar"
|
|
1032
|
+
value="HU"
|
|
1033
|
+
>
|
|
1034
|
+
Magyar
|
|
1035
|
+
</option>
|
|
1036
|
+
<option
|
|
1037
|
+
aria-label="Română"
|
|
1038
|
+
value="RO"
|
|
1039
|
+
>
|
|
1040
|
+
Română
|
|
1041
|
+
</option>
|
|
1042
|
+
<option
|
|
1043
|
+
aria-label="български"
|
|
1044
|
+
value="BG"
|
|
1045
|
+
>
|
|
1046
|
+
български
|
|
1047
|
+
</option>
|
|
1048
|
+
<option
|
|
1049
|
+
aria-label="Hrvatski"
|
|
1050
|
+
value="HR"
|
|
1051
|
+
>
|
|
1052
|
+
Hrvatski
|
|
1053
|
+
</option>
|
|
1054
|
+
<option
|
|
1055
|
+
aria-label="Čeština / český jazyk"
|
|
1056
|
+
value="CS"
|
|
1057
|
+
>
|
|
1058
|
+
Čeština / český jazyk
|
|
1059
|
+
</option>
|
|
1060
|
+
<option
|
|
1061
|
+
aria-label="Slovenčina"
|
|
1062
|
+
value="SK"
|
|
1063
|
+
>
|
|
1064
|
+
Slovenčina
|
|
1065
|
+
</option>
|
|
1066
|
+
<option
|
|
1067
|
+
aria-label="Slovenščina"
|
|
1068
|
+
value="SL"
|
|
1069
|
+
>
|
|
1070
|
+
Slovenščina
|
|
1071
|
+
</option>
|
|
1072
|
+
<option
|
|
1073
|
+
aria-label="Latvian"
|
|
1074
|
+
value="LV"
|
|
1075
|
+
>
|
|
1076
|
+
Latvian
|
|
1077
|
+
</option>
|
|
1078
|
+
<option
|
|
1079
|
+
aria-label="Українська"
|
|
1080
|
+
value="UK"
|
|
1081
|
+
>
|
|
1082
|
+
Українська
|
|
1083
|
+
</option>
|
|
1084
|
+
<option
|
|
1085
|
+
aria-label="Русский"
|
|
1086
|
+
value="RU"
|
|
1087
|
+
>
|
|
1088
|
+
Русский
|
|
1089
|
+
</option>
|
|
1090
|
+
<option
|
|
1091
|
+
aria-label="Polski"
|
|
1092
|
+
value="PL"
|
|
1093
|
+
>
|
|
1094
|
+
Polski
|
|
1095
|
+
</option>
|
|
1096
|
+
<option
|
|
1097
|
+
aria-label="Ελληνικά"
|
|
1098
|
+
value="EL"
|
|
1099
|
+
>
|
|
1100
|
+
Ελληνικά
|
|
1101
|
+
</option>
|
|
1102
|
+
<option
|
|
1103
|
+
aria-label="العربية"
|
|
1104
|
+
value="AR"
|
|
1105
|
+
>
|
|
1106
|
+
العربية
|
|
1107
|
+
</option>
|
|
1108
|
+
<option
|
|
1109
|
+
aria-label="中文"
|
|
1110
|
+
value="ZH"
|
|
1111
|
+
>
|
|
1112
|
+
中文
|
|
1113
|
+
</option>
|
|
1114
|
+
<option
|
|
1115
|
+
aria-label="日本語"
|
|
1116
|
+
value="JA"
|
|
1117
|
+
>
|
|
1118
|
+
日本語
|
|
1119
|
+
</option>
|
|
1120
|
+
</optgroup>
|
|
877
1121
|
</select>
|
|
878
1122
|
</div>
|
|
879
1123
|
<div
|