@memori.ai/memori-react 7.4.5 → 7.5.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 +34 -0
- package/README.md +1 -1
- package/dist/I18nWrapper.js +6 -5
- package/dist/I18nWrapper.js.map +1 -1
- package/dist/components/Avatar/Avatar.d.ts +1 -0
- package/dist/components/Avatar/Avatar.js +64 -60
- package/dist/components/Avatar/Avatar.js.map +1 -1
- package/dist/components/Avatar/AvatarView/components/controls.d.ts +23 -0
- package/dist/components/Avatar/AvatarView/components/controls.js +55 -0
- package/dist/components/Avatar/AvatarView/components/controls.js.map +1 -0
- package/dist/components/Avatar/AvatarView/components/fullbodyAvatar.d.ts +18 -0
- package/dist/components/Avatar/AvatarView/components/fullbodyAvatar.js +60 -0
- package/dist/components/Avatar/AvatarView/components/fullbodyAvatar.js.map +1 -0
- package/dist/components/Avatar/AvatarView/components/halfbodyAvatar.d.ts +9 -0
- package/dist/components/Avatar/AvatarView/components/halfbodyAvatar.js +39 -0
- package/dist/components/Avatar/AvatarView/components/halfbodyAvatar.js.map +1 -0
- package/dist/components/Avatar/AvatarView/components/loader.d.ts +5 -0
- package/dist/components/Avatar/AvatarView/components/loader.js +12 -0
- package/dist/components/Avatar/AvatarView/components/loader.js.map +1 -0
- package/dist/components/Avatar/AvatarView/index.d.ts +18 -0
- package/dist/components/Avatar/AvatarView/index.js +109 -0
- package/dist/components/Avatar/AvatarView/index.js.map +1 -0
- package/dist/components/Avatar/AvatarView/utils/useEyeBlink.d.ts +2 -0
- package/dist/components/Avatar/AvatarView/utils/useEyeBlink.js +47 -0
- package/dist/components/Avatar/AvatarView/utils/useEyeBlink.js.map +1 -0
- package/dist/components/Avatar/AvatarView/utils/useHeadMovement.d.ts +2 -0
- package/dist/components/Avatar/AvatarView/utils/useHeadMovement.js +53 -0
- package/dist/components/Avatar/AvatarView/utils/useHeadMovement.js.map +1 -0
- package/dist/components/Avatar/AvatarView/utils/useLoadingMorphAnim.d.ts +2 -0
- package/dist/components/Avatar/AvatarView/utils/useLoadingMorphAnim.js +34 -0
- package/dist/components/Avatar/AvatarView/utils/useLoadingMorphAnim.js.map +1 -0
- package/dist/components/Avatar/AvatarView/utils/useMouthSpeaking.d.ts +2 -0
- package/dist/components/Avatar/AvatarView/utils/useMouthSpeaking.js +68 -0
- package/dist/components/Avatar/AvatarView/utils/useMouthSpeaking.js.map +1 -0
- package/dist/components/Avatar/AvatarView/utils/useSmile.d.ts +2 -0
- package/dist/components/Avatar/AvatarView/utils/useSmile.js +28 -0
- package/dist/components/Avatar/AvatarView/utils/useSmile.js.map +1 -0
- package/dist/components/Avatar/AvatarView/utils/utils.d.ts +13 -0
- package/dist/components/Avatar/AvatarView/utils/utils.js +42 -0
- package/dist/components/Avatar/AvatarView/utils/utils.js.map +1 -0
- package/dist/components/ChatBubble/ChatBubble.js +28 -18
- package/dist/components/ChatBubble/ChatBubble.js.map +1 -1
- package/dist/components/MemoriWidget/MemoriWidget.js +5 -0
- package/dist/components/MemoriWidget/MemoriWidget.js.map +1 -1
- package/dist/components/StartPanel/StartPanel.js +3 -2
- package/dist/components/StartPanel/StartPanel.js.map +1 -1
- package/dist/components/icons/Code.js +1 -1
- package/dist/components/icons/Code.js.map +1 -1
- package/dist/components/icons/Copy.js +1 -1
- package/dist/components/icons/Copy.js.map +1 -1
- package/dist/helpers/constants.d.ts +1 -0
- package/dist/helpers/constants.js +2 -1
- package/dist/helpers/constants.js.map +1 -1
- package/dist/helpers/error.js +5 -0
- package/dist/helpers/error.js.map +1 -1
- package/dist/i18n.js +13 -1
- package/dist/i18n.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/dist/locales/de.json +426 -0
- package/dist/locales/en.json +5 -0
- package/dist/locales/es.json +426 -0
- package/dist/locales/fr.json +426 -0
- package/dist/locales/it.json +5 -0
- package/esm/I18nWrapper.js +6 -5
- package/esm/I18nWrapper.js.map +1 -1
- package/esm/components/Avatar/Avatar.d.ts +1 -0
- package/esm/components/Avatar/Avatar.js +66 -62
- package/esm/components/Avatar/Avatar.js.map +1 -1
- package/esm/components/Avatar/AvatarView/components/controls.d.ts +23 -0
- package/esm/components/Avatar/AvatarView/components/controls.js +52 -0
- package/esm/components/Avatar/AvatarView/components/controls.js.map +1 -0
- package/esm/components/Avatar/AvatarView/components/fullbodyAvatar.d.ts +18 -0
- package/esm/components/Avatar/AvatarView/components/fullbodyAvatar.js +56 -0
- package/esm/components/Avatar/AvatarView/components/fullbodyAvatar.js.map +1 -0
- package/esm/components/Avatar/AvatarView/components/halfbodyAvatar.d.ts +9 -0
- package/esm/components/Avatar/AvatarView/components/halfbodyAvatar.js +35 -0
- package/esm/components/Avatar/AvatarView/components/halfbodyAvatar.js.map +1 -0
- package/esm/components/Avatar/AvatarView/components/loader.d.ts +5 -0
- package/esm/components/Avatar/AvatarView/components/loader.js +9 -0
- package/esm/components/Avatar/AvatarView/components/loader.js.map +1 -0
- package/esm/components/Avatar/AvatarView/index.d.ts +18 -0
- package/esm/components/Avatar/AvatarView/index.js +105 -0
- package/esm/components/Avatar/AvatarView/index.js.map +1 -0
- package/esm/components/Avatar/AvatarView/utils/useEyeBlink.d.ts +2 -0
- package/esm/components/Avatar/AvatarView/utils/useEyeBlink.js +44 -0
- package/esm/components/Avatar/AvatarView/utils/useEyeBlink.js.map +1 -0
- package/esm/components/Avatar/AvatarView/utils/useHeadMovement.d.ts +2 -0
- package/esm/components/Avatar/AvatarView/utils/useHeadMovement.js +50 -0
- package/esm/components/Avatar/AvatarView/utils/useHeadMovement.js.map +1 -0
- package/esm/components/Avatar/AvatarView/utils/useLoadingMorphAnim.d.ts +2 -0
- package/esm/components/Avatar/AvatarView/utils/useLoadingMorphAnim.js +31 -0
- package/esm/components/Avatar/AvatarView/utils/useLoadingMorphAnim.js.map +1 -0
- package/esm/components/Avatar/AvatarView/utils/useMouthSpeaking.d.ts +2 -0
- package/esm/components/Avatar/AvatarView/utils/useMouthSpeaking.js +65 -0
- package/esm/components/Avatar/AvatarView/utils/useMouthSpeaking.js.map +1 -0
- package/esm/components/Avatar/AvatarView/utils/useSmile.d.ts +2 -0
- package/esm/components/Avatar/AvatarView/utils/useSmile.js +25 -0
- package/esm/components/Avatar/AvatarView/utils/useSmile.js.map +1 -0
- package/esm/components/Avatar/AvatarView/utils/utils.d.ts +13 -0
- package/esm/components/Avatar/AvatarView/utils/utils.js +33 -0
- package/esm/components/Avatar/AvatarView/utils/utils.js.map +1 -0
- package/esm/components/ChatBubble/ChatBubble.js +28 -18
- package/esm/components/ChatBubble/ChatBubble.js.map +1 -1
- package/esm/components/MemoriWidget/MemoriWidget.js +6 -1
- package/esm/components/MemoriWidget/MemoriWidget.js.map +1 -1
- package/esm/components/StartPanel/StartPanel.js +3 -2
- package/esm/components/StartPanel/StartPanel.js.map +1 -1
- package/esm/components/icons/Code.js +1 -1
- package/esm/components/icons/Code.js.map +1 -1
- package/esm/components/icons/Copy.js +1 -1
- package/esm/components/icons/Copy.js.map +1 -1
- package/esm/helpers/constants.d.ts +1 -0
- package/esm/helpers/constants.js +1 -0
- package/esm/helpers/constants.js.map +1 -1
- package/esm/helpers/error.js +5 -0
- package/esm/helpers/error.js.map +1 -1
- package/esm/i18n.js +13 -1
- package/esm/i18n.js.map +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.js +15 -3
- package/esm/index.js.map +1 -1
- package/esm/locales/de.json +426 -0
- package/esm/locales/en.json +5 -0
- package/esm/locales/es.json +426 -0
- package/esm/locales/fr.json +426 -0
- package/esm/locales/it.json +5 -0
- package/package.json +2 -1
- package/src/I18nWrapper.tsx +6 -8
- package/src/components/Avatar/Avatar.tsx +149 -144
- package/src/components/{AvatarView → Avatar/AvatarView}/AvatarView.stories.tsx +9 -2
- package/src/components/Avatar/AvatarView/components/controls.tsx +94 -0
- package/src/components/Avatar/AvatarView/components/fullbodyAvatar.tsx +120 -0
- package/src/components/Avatar/AvatarView/components/halfbodyAvatar.tsx +69 -0
- package/src/components/{AvatarView → Avatar/AvatarView}/components/loader.tsx +1 -1
- package/src/components/Avatar/AvatarView/index.tsx +251 -0
- package/src/components/Avatar/AvatarView/utils/useEyeBlink.ts +59 -0
- package/src/components/Avatar/AvatarView/utils/useMouthSpeaking.ts +87 -0
- package/src/components/Avatar/AvatarView/utils/useSmile.ts +39 -0
- package/src/components/Avatar/__snapshots__/Avatar.test.tsx.snap +1 -1
- package/src/components/ChatBubble/ChatBubble.stories.tsx +85 -3
- package/src/components/ChatBubble/ChatBubble.tsx +44 -34
- package/src/components/MemoriWidget/MemoriWidget.tsx +11 -1
- package/src/components/StartPanel/StartPanel.tsx +3 -2
- package/src/components/icons/Code.tsx +3 -3
- package/src/components/icons/Copy.tsx +3 -3
- package/src/components/layouts/Chat.test.tsx +12 -9
- package/src/components/layouts/FullPage.test.tsx +12 -9
- package/src/components/layouts/Totem.test.tsx +12 -9
- package/src/components/layouts/WebsiteAssistant.test.tsx +12 -9
- package/src/components/layouts/__snapshots__/Chat.test.tsx.snap +13 -8
- package/src/components/layouts/__snapshots__/FullPage.test.tsx.snap +14 -9
- package/src/components/layouts/__snapshots__/Totem.test.tsx.snap +14 -9
- package/src/components/layouts/__snapshots__/WebsiteAssistant.test.tsx.snap +6 -1
- package/src/helpers/constants.ts +2 -0
- package/src/helpers/error.ts +5 -0
- package/src/i18n.ts +13 -1
- package/src/index.stories.tsx +29 -0
- package/src/index.tsx +17 -5
- package/src/locales/de.json +454 -0
- package/src/locales/en.json +5 -0
- package/src/locales/es.json +426 -0
- package/src/locales/fr.json +426 -0
- package/src/locales/it.json +5 -0
- package/src/components/AvatarView/components/avatar.tsx +0 -57
- package/src/components/AvatarView/components/fullbodyAvatar.tsx +0 -99
- package/src/components/AvatarView/index.tsx +0 -101
- package/src/components/AvatarView/utils/useEyeBlink.ts +0 -48
- package/src/components/AvatarView/utils/useMouthSpeaking.ts +0 -70
- package/src/components/AvatarView/utils/useSmile.ts +0 -31
- /package/src/components/{AvatarView → Avatar/AvatarView}/utils/useHeadMovement.ts +0 -0
- /package/src/components/{AvatarView → Avatar/AvatarView}/utils/useLoadingMorphAnim.ts +0 -0
- /package/src/components/{AvatarView → Avatar/AvatarView}/utils/utils.ts +0 -0
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
{
|
|
2
|
+
"yes": "Oui",
|
|
3
|
+
"no": "Non",
|
|
4
|
+
"confirm": "Confirmer",
|
|
5
|
+
"apply": "Appliquer",
|
|
6
|
+
"cancel": "Annuler",
|
|
7
|
+
"show": "Montrer",
|
|
8
|
+
"hide": "Cacher",
|
|
9
|
+
"send": "Envoyer",
|
|
10
|
+
"close": "Fermer",
|
|
11
|
+
"edit": "Modifier",
|
|
12
|
+
"delete": "Supprimer",
|
|
13
|
+
"loading": "Chargement",
|
|
14
|
+
"expand": "Développer",
|
|
15
|
+
"collapse": "Effondrement",
|
|
16
|
+
"fullscreenEnter": "Entrez en plein écran",
|
|
17
|
+
"fullscreenExit": "Quitter le plein écran",
|
|
18
|
+
"center": "Centre",
|
|
19
|
+
"bottom": "Bas",
|
|
20
|
+
"hidden": "Caché",
|
|
21
|
+
"day": "Jour",
|
|
22
|
+
"month": "Mois",
|
|
23
|
+
"year": "Année",
|
|
24
|
+
"createdAt": "Date de création",
|
|
25
|
+
"selected": "Choisi",
|
|
26
|
+
"page": "page",
|
|
27
|
+
"actions": "Actes",
|
|
28
|
+
"next": "Suivant",
|
|
29
|
+
"previous": "Précédent",
|
|
30
|
+
"copy": "Copie",
|
|
31
|
+
"copyRawCode": "Copier le code brut",
|
|
32
|
+
"copyToClipboard": "Copier dans le presse-papier",
|
|
33
|
+
"showOriginalText": "Afficher l'original",
|
|
34
|
+
"showTranslatedText": "Afficher la traduction",
|
|
35
|
+
"exactPosition": "Position exacte",
|
|
36
|
+
"uncertain": "Incertain",
|
|
37
|
+
"question": "Question",
|
|
38
|
+
"nothingFound": "Rien trouvé",
|
|
39
|
+
"venue": "Lieu",
|
|
40
|
+
"searchVenue": "Rechercher un lieu...",
|
|
41
|
+
"memoriBlockedTitle": "Bloqué",
|
|
42
|
+
"memoriBlockedUntil": "Memori bloqué jusqu'à {{date}}",
|
|
43
|
+
"memoriBlockedAnon": "Actuellement \"{{name}}\"Je ne peux pas répondre, reviens ici {{date}}",
|
|
44
|
+
"memoriBlockedReasonExceedChats": "car il a dépassé le seuil mensuel de chats autorisés.",
|
|
45
|
+
"memoriBlockedGiverHelper": "Vous pouvez toujours le gérer en tant qu'administrateur, mais les autres utilisateurs ne pourront pas interagir avec lui.",
|
|
46
|
+
"generatedByAI": "Réponse générée par l'IA, peut occasionnellement générer des informations incorrectes",
|
|
47
|
+
"whyThisAnswer": "Pourquoi cette réponse ?",
|
|
48
|
+
"whyThisAnswerHelper": "Cette réponse a été générée automatiquement par une intelligence artificielle basée sur ces contenus vérifiés.",
|
|
49
|
+
"completionsEnabled": "L'IA avancée peut répondre avec des réponses générées automatiquement qui peuvent parfois contenir des informations incorrectes",
|
|
50
|
+
"completionProviderDown": "Ce Twin est intégré à une IA générative de {{provider}}, mais il est actuellement indisponible. ",
|
|
51
|
+
"completionProviderFallbackName": "un prestataire externe",
|
|
52
|
+
"completionProviderCheckStatusPage": "Vérifier la page d'état",
|
|
53
|
+
"boardOfExperts": "Conseil d'experts",
|
|
54
|
+
"birthDate": "Date de naissance",
|
|
55
|
+
"birthDateHelper": "Nous demandons votre date de naissance uniquement pour activer ou désactiver les fonctionnalités qui ont des restrictions d'âge",
|
|
56
|
+
"underage": "Vous devez être au moins {{age}} ans pour s'inscrire.",
|
|
57
|
+
"underageTwinSession": "Vous devez être au moins {{age}} ans pour interagir avec ce Twin.",
|
|
58
|
+
"ageVerification": "Vérification de l'âge",
|
|
59
|
+
"ageVerificationText": "Pour interagir avec ce Twin, vous devez être au minimum {{minAge}} ans.",
|
|
60
|
+
"nsfw": "NSFW : Ce jumeau contient du contenu pour adultes",
|
|
61
|
+
"deepThought": "Pensée profonde",
|
|
62
|
+
"deepThoughtHelper": "Deep Thought est une fonctionnalité avancée de l'IA qui vous permettra d'exploiter pleinement vos conversations en les gardant une trace. ",
|
|
63
|
+
"deepThoughtDisclaimerTitle": "Pensée profonde activée",
|
|
64
|
+
"deepThoughtDisclaimer": "Deep Thought est une fonctionnalité avancée de l'IA qui vous permettra d'exploiter pleinement vos conversations en les gardant une trace. ",
|
|
65
|
+
"deepThoughtPreDisclaimerUnlogged": "Connectez-vous pour activer Deep Thought.",
|
|
66
|
+
"deepThoughtPreDisclaimerNotAllowed": "Deep Thought est désactivé car vous n'avez pas consenti à son utilisation, vous pouvez le modifier à tout moment dans les paramètres de votre compte.",
|
|
67
|
+
"notEnoughCredits": "L'auteur de ce Twin n'a pas suffisamment de crédits pour répondre à votre question.",
|
|
68
|
+
"knownFacts": {
|
|
69
|
+
"title": "Faits connus",
|
|
70
|
+
"description": "Détails des informations partagées entre vous et {{memoriName}}",
|
|
71
|
+
"type": "Taper",
|
|
72
|
+
"typeShortTerm": "Court terme",
|
|
73
|
+
"typeLongTerm": "Long terme",
|
|
74
|
+
"typeHelper": "Types :\n",
|
|
75
|
+
"text": "Texte",
|
|
76
|
+
"deleteSuccess": "Fait connu supprimé",
|
|
77
|
+
"deleteConfirmTitle": "Supprimer un fait connu",
|
|
78
|
+
"deleteConfirmMessage": "Êtes-vous sûr de vouloir supprimer ce fait connu ?",
|
|
79
|
+
"deleteSelectedConfirmTitle": "Supprimer les faits connus sélectionnés",
|
|
80
|
+
"deleteSelectedConfirmMessage": "Etes-vous sûr de vouloir supprimer les faits connus sélectionnés ?"
|
|
81
|
+
},
|
|
82
|
+
"auth": {
|
|
83
|
+
"title": "Authentification",
|
|
84
|
+
"useRecoveryTokens": "Utiliser des jetons de récupération",
|
|
85
|
+
"tokens": "Jetons",
|
|
86
|
+
"addToken": "Ajouter un jeton",
|
|
87
|
+
"usePassword": "Utiliser le mot de passe",
|
|
88
|
+
"atLeast": "Au moins"
|
|
89
|
+
},
|
|
90
|
+
"widget": {
|
|
91
|
+
"instruct": "Instruire",
|
|
92
|
+
"test": "Test",
|
|
93
|
+
"sound": "Son",
|
|
94
|
+
"position": "Préférences de position",
|
|
95
|
+
"settings": "Paramètres",
|
|
96
|
+
"share": "Partager",
|
|
97
|
+
"sendOnKeypress": "Appuyez sur Entrée pour envoyer",
|
|
98
|
+
"sendOnClick": "Cliquez sur Soumettre",
|
|
99
|
+
"boardOfExperts": "Conseil d'experts",
|
|
100
|
+
"showExpertsInTheBoard": "Afficher les experts dans ce forum",
|
|
101
|
+
"expertsInTheBoard": "Experts dans ce forum",
|
|
102
|
+
"goToIntegrationsToCustomizeAvatar": "Pour personnaliser l'avatar, allez dans Partager et personnalisez la page publique"
|
|
103
|
+
},
|
|
104
|
+
"write_and_speak": {
|
|
105
|
+
"micButtonPopover": "Cliquez sur le bouton pour parler",
|
|
106
|
+
"micButtonPopoverListening": "Cliquez sur le bouton pour arrêter de parler",
|
|
107
|
+
"pageInstructExplanation": "Pour m'apprendre de nouvelles choses, cliquez sur le bouton INSTRUCTEZ-MOI pour commencer",
|
|
108
|
+
"pageTryMeExplanation": "Pour me parler, cliquez sur le bouton START pour commencer",
|
|
109
|
+
"instructButton": "INSTRUCTEZ-MOI",
|
|
110
|
+
"tryMeButton": "COMMENCER",
|
|
111
|
+
"chatHistory": "Historique des discussions",
|
|
112
|
+
"exportChatHistory": "Exporter l'historique des discussions",
|
|
113
|
+
"exportChatHistoryMessage": "Voulez-vous exporter l’historique des discussions ?",
|
|
114
|
+
"chatBotButtonText": "CLIQUEZ ICI POUR OUVRIR LE CHATBOT",
|
|
115
|
+
"conversationStartedLabel": "La conversation a commencé le",
|
|
116
|
+
"settingsHeaderLabel": "Configurez ici si vous souhaitez définir la mémoire comme parole continue et modifiez les secondes de silence si vous souhaitez les personnaliser.",
|
|
117
|
+
"continuousSpeechLabel": "Discours continu",
|
|
118
|
+
"holdToSpeak": "Attends pour parler",
|
|
119
|
+
"releaseToEndListening": "Relâcher pour terminer l'écoute",
|
|
120
|
+
"pressAndHoldToSpeak": "Appuyez et maintenez pour parler",
|
|
121
|
+
"microphoneMode": "Mode micro",
|
|
122
|
+
"hideEmissionsLabel": "Masquer le texte émis par le Twin",
|
|
123
|
+
"secondsLabel": "Régler les secondes",
|
|
124
|
+
"controlsPosition": "Position des commandes",
|
|
125
|
+
"tryMeHeaderLabel": "ESSAYER",
|
|
126
|
+
"unknownPosition": "Position inconnue",
|
|
127
|
+
"fieldPlace": "Écrivez le lieu (par exemple « Milano »)",
|
|
128
|
+
"showMapLinkFor": "Afficher la position sur la carte",
|
|
129
|
+
"useMyPosition": "Utiliser ma position",
|
|
130
|
+
"myPosition": "Votre poste",
|
|
131
|
+
"updatingPosition": "Mise à jour du poste...",
|
|
132
|
+
"placeNotFound": "Lieu introuvable !",
|
|
133
|
+
"requirePosition": "Insérez votre position avant de commencer",
|
|
134
|
+
"requirePositionHelp": "Pour parler à {{name}} vous devez décider si vous souhaitez ou non fournir votre poste. ",
|
|
135
|
+
"dontWantToProvidePosition": "Je ne veux pas donner ma position",
|
|
136
|
+
"attachmentsLabel": "Enrichissez votre message",
|
|
137
|
+
"iWantToTalkToIn": "je veux parler à {{name}} dans"
|
|
138
|
+
},
|
|
139
|
+
"media": {
|
|
140
|
+
"title": "Titre",
|
|
141
|
+
"editAttributes": "Modifier les attributs du média",
|
|
142
|
+
"uploadMimeTypeNotAllowed": "Le type de fichier n'est pas autorisé",
|
|
143
|
+
"uploadSizeLimitMessage": "La taille téléchargée est trop grande (max {{size}}Mo)",
|
|
144
|
+
"uploadWrongResolutionMessage": "La résolution doit être {{width}}x{{height}} pixels",
|
|
145
|
+
"memoriNameAlreadyUsed": "Vous avez déjà un jumeau portant ce nom",
|
|
146
|
+
"uploadHelperImages": "Téléchargez un fichier avec l'extension png, jpg, jpeg ou gif, et ayant au maximum une taille de {{size}}Mo",
|
|
147
|
+
"uploadHelper": "Téléchargez un fichier ayant au maximum une taille de {{size}}Mo",
|
|
148
|
+
"uploadError": "Échec du téléchargement",
|
|
149
|
+
"square": "carré",
|
|
150
|
+
"scaleRatio": "Rapport d'échelle",
|
|
151
|
+
"addMediaLabel": "Ajouter un média",
|
|
152
|
+
"insertThisMediaMsg": "Insérez ces médias",
|
|
153
|
+
"mediaUploadMessage": "Cliquez pour charger un nouveau média",
|
|
154
|
+
"addLinkLabel": "Ajouter un lien",
|
|
155
|
+
"linkKey": "URL",
|
|
156
|
+
"linkValue": "Titre du lien",
|
|
157
|
+
"insertThisLink": "Insérer un lien vers {{url}} avec titre {{title}}"
|
|
158
|
+
},
|
|
159
|
+
"gamification": {
|
|
160
|
+
"level": "Niveau",
|
|
161
|
+
"points": "points",
|
|
162
|
+
"memoriReachedLevel": "est devenu plus évolué et a atteint le niveau",
|
|
163
|
+
"levelGoToStatistics": "{{memori}} est au niveau {{level}} avec {{points}} points. ",
|
|
164
|
+
"congratulationsNewLevel": "Félicitations, vous avez atteint un nouveau niveau !",
|
|
165
|
+
"congratulationsNewLevelDescription": "Votre Memori est devenu plus évolué avec {{points}} points, regardez le",
|
|
166
|
+
"statistics": "statistiques"
|
|
167
|
+
},
|
|
168
|
+
"login": {
|
|
169
|
+
"login": "Se connecter",
|
|
170
|
+
"logout": "Déconnexion",
|
|
171
|
+
"user": "Utilisateur",
|
|
172
|
+
"loggedDrawerTitle": "Salut, {{name}}!",
|
|
173
|
+
"loginDrawerTitle": "Se connecter",
|
|
174
|
+
"signupDrawerTitle": "S'inscrire",
|
|
175
|
+
"newUserSignUp": "Nouvel utilisateur ?",
|
|
176
|
+
"signUp": "S'inscrire!",
|
|
177
|
+
"alreadyHaveAnAccount": "Vous avez déjà un compte ?",
|
|
178
|
+
"backToLogin": "Retour à la connexion",
|
|
179
|
+
"registrationDisabled": "L'inscription est désactivée",
|
|
180
|
+
"contactAdmin": "Contacter l'administrateur pour demander l'accès",
|
|
181
|
+
"userNameOrEmail": "Nom d'utilisateur ou email",
|
|
182
|
+
"email": "E-mail",
|
|
183
|
+
"emailFormatError": "Veuillez insérer un email valide",
|
|
184
|
+
"username": "Nom d'utilisateur",
|
|
185
|
+
"usernameContainsReservedWord": "Le nom d'utilisateur contient un mot réservé, veuillez en choisir un autre",
|
|
186
|
+
"usernameFormatError": "Le nom d'utilisateur doit comporter au moins 3 caractères et contenir uniquement des lettres, des chiffres et _",
|
|
187
|
+
"otpCode": "Le code de vérification",
|
|
188
|
+
"resendVerificationCode": "Renvoyer le code",
|
|
189
|
+
"resentVerificationCode": "Code de confirmation envoyé ! ",
|
|
190
|
+
"password": "Mot de passe",
|
|
191
|
+
"newPassword": "Nouveau mot de passe",
|
|
192
|
+
"confirmPassword": "Confirmez le mot de passe",
|
|
193
|
+
"currentPassword": "Mot de passe actuel",
|
|
194
|
+
"passwordMatchingError": "Les mots de passe ne correspondent pas.",
|
|
195
|
+
"passwordFormatError": "Le mot de passe doit comporter au moins 8 caractères et contenir au moins un chiffre, une lettre majuscule, une lettre minuscule et un symbole.",
|
|
196
|
+
"pwdWeak": "Faible",
|
|
197
|
+
"pwdAcceptable": "Acceptable",
|
|
198
|
+
"pwdStrong": "Fort",
|
|
199
|
+
"mustChangePassword": "Vous devez changer votre mot de passe",
|
|
200
|
+
"passwordChange": "Changer le mot de passe",
|
|
201
|
+
"emailChange": "Changer d'e-mail",
|
|
202
|
+
"avatarChange": "Changer d'avatar",
|
|
203
|
+
"underage": "Vous devez être au moins {{age}} ans pour s'inscrire.",
|
|
204
|
+
"optional": "Facultatif",
|
|
205
|
+
"birthDate": "Date de naissance",
|
|
206
|
+
"birthDateHelper": "Nous demandons votre date de naissance uniquement pour activer ou désactiver les fonctionnalités qui ont des restrictions d'âge",
|
|
207
|
+
"missingData": "Informations manquantes",
|
|
208
|
+
"missingDataHelper": "Nous savons que c'est un peu ennuyeux, mais nous avons besoin de plus d'informations pour finaliser votre inscription.",
|
|
209
|
+
"goToAccountToChangeYourPreferences": "Vous pouvez modifier votre choix à tout moment depuis la page de votre compte.",
|
|
210
|
+
"deepThoughtExplaination": "Deep Thought est une fonctionnalité avancée de l'IA qui vous permettra d'exploiter pleinement vos conversations en les gardant une trace. ",
|
|
211
|
+
"tnCAndPPAcceptedHelper": "Depuis votre dernière connexion, les conditions générales et la politique de confidentialité ont changé. ",
|
|
212
|
+
"privacyLabel": "J'ai lu et accepté le",
|
|
213
|
+
"privacyAndCookiePolicy": "Politique de confidentialité et de cookies",
|
|
214
|
+
"and": "et",
|
|
215
|
+
"termsOfService": "Conditions d'utilisation",
|
|
216
|
+
"pAndCUAccepted": "J'accepte les conditions d'utilisation de Deep Thought",
|
|
217
|
+
"editAccount": "Modifier le compte",
|
|
218
|
+
"save": "Sauvegarder"
|
|
219
|
+
},
|
|
220
|
+
"success": "Succès",
|
|
221
|
+
"Error": "Erreur",
|
|
222
|
+
"internal server error": "Oupsie, désolé... Quelque chose s'est mal passé sur le serveur",
|
|
223
|
+
"error": "Erreur",
|
|
224
|
+
"error.loading": "Erreur lors du chargement du contenu.",
|
|
225
|
+
"error.generic": "Oupsie, désolé... quelque chose s'est mal passé.",
|
|
226
|
+
"error.serverNotResponding": "Nous effectuons une maintenance ou publions des mises à jour. ",
|
|
227
|
+
"error.notFound": "Oupsie, nous n'avons pas trouvé la page que vous cherchiez.",
|
|
228
|
+
"error.goBackTo": "Vous pouvez essayer de revenir au",
|
|
229
|
+
"error.reloadPage": "Recharger la page",
|
|
230
|
+
"error.tryAgain": "Essayer à nouveau",
|
|
231
|
+
"error.unauthorized": "Vous n'êtes pas autorisé à consulter ce contenu.",
|
|
232
|
+
"error.unprocessableEntity": "Erreur lors du traitement de la demande. ",
|
|
233
|
+
"errors": {
|
|
234
|
+
"TENANT_NOT_FOUND": "Locataire introuvable",
|
|
235
|
+
"TENANT_REGISTRATION_DISABLED": "L'inscription sur cette plateforme est désactivée",
|
|
236
|
+
"TENANT_MISSING_NAME": "Locataire : nom manquant",
|
|
237
|
+
"TENANT_MAX_USERS_REACHED": "Nombre maximum d'utilisateurs atteint",
|
|
238
|
+
"TENANT_MAX_ADMINS_REACHED": "Nombre maximum d'utilisateurs administrateurs atteint",
|
|
239
|
+
"TENANT_ALREADY_EXISTS": "Le locataire existe déjà",
|
|
240
|
+
"TENANT_MISSING_DESCRIPTION": "Locataire : description manquante",
|
|
241
|
+
"TENANT_CANT_SET_COMPLETION_PROVIDER": "Locataire : impossible de définir le fournisseur de complétion",
|
|
242
|
+
"USER_NOT_CONFIRMED": "L'utilisateur n'est toujours pas confirmé",
|
|
243
|
+
"USER_NOT_FOUND": "Utilisateur introuvable",
|
|
244
|
+
"USER_OR_PASSWORD_INVALID": "Utilisateur ou mot de passe invalide",
|
|
245
|
+
"USER_MUST_CHANGE_PASSWORD": "Vous devez changer votre mot de passe",
|
|
246
|
+
"USER_MUST_ENTER_VERIFICATION_CODE": "Vous devez entrer le code de vérification",
|
|
247
|
+
"USER_MISSING_TENANT": "Utilisateur : locataire manquant",
|
|
248
|
+
"USER_MISSING_NAME": "Utilisateur : le nom est manquant",
|
|
249
|
+
"USER_MISSING_PASSWORD": "Utilisateur : mot de passe manquant",
|
|
250
|
+
"USER_MISSING_EMAIL": "Utilisateur : E-mail manquant",
|
|
251
|
+
"USER_MISSING_VERIFICATION_CODE": "Utilisateur : Code de vérification manquant",
|
|
252
|
+
"USER_NAME_ALREADY_USED": "Nom d'utilisateur déjà utilisé",
|
|
253
|
+
"USER_PASSWORD_NOT_CONFORMING_TO_POLICY": "Le mot de passe ne répond pas aux règles de sécurité",
|
|
254
|
+
"USER_EMAIL_ALREADY_USED": "E-mail déjà utilisé",
|
|
255
|
+
"USER_EMAIL_INVALID": "E-mail invalide",
|
|
256
|
+
"USER_VERIFICATION_CODE_INVALID": "Code de vérification invalide",
|
|
257
|
+
"USER_MISSING_NAME_OR_EMAIL": "Nom d'utilisateur ou e-mail manquant",
|
|
258
|
+
"USER_NAME_INVALID": "Nom d'utilisateur invalide",
|
|
259
|
+
"USER_HAS_ONE_OR_MORE_MEMORI": "L'utilisateur possède une ou plusieurs mémoires",
|
|
260
|
+
"USER_MISSING_NEW_PASSWORD": "Utilisateur : nouveau mot de passe manquant",
|
|
261
|
+
"USER_NOTHING_TO_DO": "Rien à faire",
|
|
262
|
+
"USER_CANT_CREATE_MEMORI": "L'utilisateur n'est pas autorisé à créer des Memori",
|
|
263
|
+
"USER_MAX_MEMORI_REACHED": "Nombre maximum de Memori atteint",
|
|
264
|
+
"USER_TOO_MANY_ATTEMPTS": "Trop de tentatives",
|
|
265
|
+
"USER_MUST_ACCEPT_TNC_AND_PP": "Vous devez accepter les termes et conditions",
|
|
266
|
+
"USER_BIRTH_DATE_CANT_BE_CHANGED": "La date de naissance ne peut pas être modifiée",
|
|
267
|
+
"USER_CANT_SET_COMPLETION_PROVIDER": "Utilisateur : non autorisé à gérer le fournisseur de complétion",
|
|
268
|
+
"USER_CANT_ENABLE_DEEP_THOUGHT": "Utilisateur : non autorisé à gérer Deep Thought",
|
|
269
|
+
"USER_CANT_ENABLE_DCM_INTEGRATION": "Utilisateur : non autorisé à gérer l'intégration DCM",
|
|
270
|
+
"USER_CANT_ENABLE_CHAINING_OR_BOARD_OF_EXPERTS": "Utilisateur : non autorisé à gérer des chaînages ou des groupes d'experts",
|
|
271
|
+
"USER_CREATION_BILLING_DENIED_PERMISSION": "Vous n'avez pas assez de crédits pour créer un Twin",
|
|
272
|
+
"USER_HAS_ONE_OR_MORE_COMPLETION_CONFIGS": "L'utilisateur dispose d'une ou plusieurs configurations de complétion",
|
|
273
|
+
"USER_CANT_BE_DELETED": "L'utilisateur ne peut pas être supprimé",
|
|
274
|
+
"MEMORI_NOT_FOUND": "Mémoire introuvable",
|
|
275
|
+
"MEMORI_NOT_ACCESSIBLE": "Mémoires non accessibles",
|
|
276
|
+
"MEMORI_ONLY_OWNER_CAN_CHANGE_GIVER_TAG_AND_PIN": "Seul le propriétaire peut modifier le tag ou le code PIN",
|
|
277
|
+
"SESSION_NOT_FOUND": "Séance introuvable",
|
|
278
|
+
"SESSION_IS_NOT_ADMINISTRATIVE": "Séance non administrative",
|
|
279
|
+
"SESSION_EXPIRED": "Session expirée",
|
|
280
|
+
"MEMORI_MISSING_CONFIGURATION": "Twin : configuration manquante",
|
|
281
|
+
"MEMORI_CONFIGURATION_NOT_FOUND": "Twin : configuration introuvable",
|
|
282
|
+
"MEMORI_INVALID_PRIVACY_TYPE": "Twin : type de confidentialité non valide",
|
|
283
|
+
"MEMORI_MISSING_PASSWORD": "Twin : mot de passe manquant",
|
|
284
|
+
"MEMORI_INVALID_TOTAL_NUMBER_OF_RECOVERY_TOKENS": "Twin : nombre total de jetons de récupération invalides",
|
|
285
|
+
"MEMORI_INVALID_MINIMUM_NUMBER_OF_RECOVERY_TOKENS": "Twin : nombre minimum de jetons de récupération invalides",
|
|
286
|
+
"MEMORI_INVALID_VOICE_TYPE": "Twin : type de voix invalide",
|
|
287
|
+
"MEMORI_MISSING_NAME": "Jumeau : nom manquant",
|
|
288
|
+
"MEMORI_MISSING_PASSWORD_OR_RECOVERY_TOKENS": "Twin : mot de passe ou jeton de récupération manquant",
|
|
289
|
+
"MEMORI_INVALID_ID": "Jumeau : pièce d'identité invalide",
|
|
290
|
+
"MEMORI_NAME_ALREADY_USED": "Nom jumeau déjà utilisé",
|
|
291
|
+
"MEMORI_INVALID_PIN": "Twin : code PIN invalide",
|
|
292
|
+
"MEMORI_GIVER_TAG_PIN_CHANGE_REQUIRES_SEPARATE_OPERATION": "Twin : le changement de TAG et de PIN nécessite des opérations distinctes",
|
|
293
|
+
"MEMORI_NO_PASSWORD_WHEN_PUBLIC": "Twin : aucun mot de passe requis lorsqu'il est public",
|
|
294
|
+
"MEMORI_DEEP_THOUGHT_REQUIRES_COMPLETIONS": "Deep Thought nécessite que les complétions soient activées",
|
|
295
|
+
"MEMORI_BOARD_OF_EXPERTS_REQUIRES_COMPLETIONS": "Le groupe d'experts exige que les complétions soient activées",
|
|
296
|
+
"MEMORI_INVALID_COMPLETION_CONFIG": "Twin : configuration des complétions non valide",
|
|
297
|
+
"MEMORI_TRANSFER_MISSING_DESTINATION_USER": "Transfert : utilisateur de destination manquant",
|
|
298
|
+
"MEMORI_TRANSFER_INVALID_DESTINATION_USER_ID": "Transfert : ID utilisateur de destination non valide",
|
|
299
|
+
"MEMORI_TRANSFER_DESTINATION_USER_DATA_INCONSISTENT": "Transfert : données utilisateur de destination non valides",
|
|
300
|
+
"MEMORI_TRANSFER_NOTHING_TO_DO": "Transfert : rien à faire",
|
|
301
|
+
"MEMORI_CONFIGURATION_CANT_BE_CHANGED": "Mémoires : la configuration ne peut pas être modifiée",
|
|
302
|
+
"MEMORI_MISSING_NEW_PASSWORD": "Souvenirs : nouveau mot de passe manquant",
|
|
303
|
+
"MEMORI_FEATURE_REQUIRES_SUBSCRIPTION": "La fonctionnalité nécessite un abonnement",
|
|
304
|
+
"INTEGRATION_NOT_FOUND": "Intégration introuvable",
|
|
305
|
+
"MEMORI_SESSIONS_INVALID_DATE_FROM_FORMAT": "Date invalide du format",
|
|
306
|
+
"MEMORI_SESSIONS_INVALID_DATE_TO_FORMAT": "Date à formater invalide",
|
|
307
|
+
"INTEGRATION_INVALID_TYPE": "Type d'intégration invalide",
|
|
308
|
+
"INTEGRATION_ALREADY_EXISTS": "L'intégration existe déjà",
|
|
309
|
+
"INTEGRATION_MEMORI_IS_NOT_PUBLIC": "Les mémoires non publiques ne peuvent pas être intégrées",
|
|
310
|
+
"INTEGRATION_MISSING_INVOCATION_TEXT": "Intégration : texte d'invocation manquant",
|
|
311
|
+
"INTEGRATION_MISSING_DEVICE_EMAILS": "Intégration : e-mail de l'appareil manquant",
|
|
312
|
+
"INTEGRATION_MEMORI_IS_EMPTY": "Les mémoires vides ne peuvent pas être intégrées",
|
|
313
|
+
"INTEGRATION_MISSING_PRIVACY_POLICY": "Intégration : politique de confidentialité manquante",
|
|
314
|
+
"INTEGRATION_MISSING_CATEGORY": "Catégorie d'intégration manquante",
|
|
315
|
+
"INTEGRATION_MISSING_DESCRIPTION": "Description de l'intégration manquante",
|
|
316
|
+
"INTEGRATION_INVALID_INVOCATION_TEXT": "Texte d'appel invalide",
|
|
317
|
+
"INTEGRATION_GOOGLE_NO_MORE_AVAILABLE": "Google Home n'est plus disponible",
|
|
318
|
+
"UPLOAD_REQUIRES_MULTIPART_ENCODING": "Le téléchargement nécessite un codage en plusieurs parties",
|
|
319
|
+
"UPLOAD_MISSING_CONTENT_TYPE_BOUNDARY": "Téléchargement : limite de type de contenu manquante",
|
|
320
|
+
"UPLOAD_MAX_LENGTH_EXCEEDED": "Téléchargement : taille maximale dépassée",
|
|
321
|
+
"UPLOAD_FILE_IS_EMPTY": "Télécharger : fichier vide",
|
|
322
|
+
"UPLOAD_INVALID_FILE_TYPE_OR_SIGNATURE": "Téléchargement : type de fichier ou signature non valide",
|
|
323
|
+
"UPLOAD_MISSING_FILE_NAME": "Télécharger : nom de fichier manquant",
|
|
324
|
+
"UPLOAD_INVALID_MEMORY_ID": "Télécharger : ID de contenu invalide",
|
|
325
|
+
"UPLOAD_MISSING_FILE_CONTENT": "Télécharger : contenu du fichier manquant",
|
|
326
|
+
"ASSET_NOT_FOUND": "Actif introuvable",
|
|
327
|
+
"ASSET_NOT_ACCESSIBLE": "Actif non accessible",
|
|
328
|
+
"ASSET_MISSING_SESSION_ID": "Élément : ID de session manquant",
|
|
329
|
+
"ASSET_INVALID_FILE_NAME": "Élément : nom de fichier non valide",
|
|
330
|
+
"INVITATION_NOT_FOUND": "Invitation introuvable",
|
|
331
|
+
"INVITATION_NOT_ACCESSIBLE": "Invitation non accessible",
|
|
332
|
+
"INVITATION_ALREADY_ACCEPTED": "Invitation déjà acceptée",
|
|
333
|
+
"INVITATION_ALREADY_REJECTED": "Invitation déjà rejetée",
|
|
334
|
+
"INVITATION_MISSING_DESTINATION_EMAIL": "Invitation : e-mail de destination manquant",
|
|
335
|
+
"INVITATION_DESTINATION_EMAIL_INVALID": "Invitation : e-mail de destination invalide",
|
|
336
|
+
"INVITATION_MISSING_TAG": "Invitation : étiquette manquante",
|
|
337
|
+
"INVITATION_MISSING_PIN": "Invitation : code PIN manquant",
|
|
338
|
+
"INVITATION_INVALID_PIN": "Invitation : code PIN invalide",
|
|
339
|
+
"INVITATION_INVALID_TYPE": "Invitation : type non valide",
|
|
340
|
+
"INVITATION_MISSING_DESTINATION_NAME": "Invitation : le nom de la destination est manquant",
|
|
341
|
+
"INVITATION_TAG_PIN_CANT_BE_CHANGED": "Invitation : le tag et le code PIN ne peuvent pas être modifiés",
|
|
342
|
+
"INVITATION_CANT_BE_CHANGED": "Intation : ne peut pas être modifié",
|
|
343
|
+
"ACTIONLOG_INVALID_USER_ID": "ID utilisateur invalide",
|
|
344
|
+
"ACTIONLOG_INVALID_DATE_FROM_FORMAT": "Date de : format non valide",
|
|
345
|
+
"ACTIONLOG_INVALID_DATE_TO_FORMAT": "Date de : format non valide",
|
|
346
|
+
"ACTIONLOG_INVALID_MEMORI_ID": "Identifiant Memori invalide",
|
|
347
|
+
"CONSUMPTIONLOG_INVALID_TYPE": "Type de journal invalide",
|
|
348
|
+
"CONSUMPTIONLOG_INVALID_DATE_FROM_FORMAT": "Date de : format non valide",
|
|
349
|
+
"CONSUMPTIONLOG_INVALID_DATE_TO_FORMAT": "Date de : format non valide",
|
|
350
|
+
"CONSUMPTIONLOG_INVALID_USER_ID": "ID utilisateur invalide",
|
|
351
|
+
"CONSUMPTIONLOG_INVALID_MEMORI_ID": "Identifiant Memori invalide",
|
|
352
|
+
"NOTIFICATIONPREFS_INVALID_CHATLOG_EXTRACTION_PERIOD": "Notifications : période d'extraction du journal de discussion non valide",
|
|
353
|
+
"PROCESS_INVALID_TYPE": "Type de processus invalide",
|
|
354
|
+
"PROCESS_ALREADY_RUNNING": "Processus déjà en cours",
|
|
355
|
+
"PROCESS_NOT_FOUND": "Processus introuvable",
|
|
356
|
+
"IMPORTCSV_MISSING_ROWS": "Import CSV : lignes manquantes",
|
|
357
|
+
"IMPORTCSV_MISSING_CSV": "Importation CSV : CSV manquant",
|
|
358
|
+
"IMPORTCSV_MISSING_SEPARATOR": "Import CSV : séparateur manquant",
|
|
359
|
+
"IMPORTCSV_INVALID_SEPARATOR": "Importation CSV : séparateur non valide",
|
|
360
|
+
"IMPORTCSV_MISSING_HEADERS": "Import CSV : en-têtes manquants",
|
|
361
|
+
"IMPORTCSV_MISSING_TITLE_VARIANT_SEPARATOR": "Import CSV : séparateur de variante de titre manquant",
|
|
362
|
+
"IMPORTCSV_INVALID_RECEIVER_ID": "Importation CSV : ID de destinataire non valide",
|
|
363
|
+
"IMPORTCSV_INVALID_MEDIA_LINK": "Importation CSV : lien média non valide",
|
|
364
|
+
"IMPORTCSV_INVALID_LINK_TITLE_HANDLING": "Importation CSV : titre du lien invalide",
|
|
365
|
+
"IMPORTCSV_UNDETECTABLE_CHAR_ENCODING": "Import CSV : encodage de caractères indétectable",
|
|
366
|
+
"IMPORTCSV_CANT_IMPORT_TO_SECRET_MEMORI": "Importation CSV : impossible d'importer dans les mémoires secrètes",
|
|
367
|
+
"IMPORTTXT_MISSING_ROWS": "Importation de TXT : lignes manquantes",
|
|
368
|
+
"IMPORTTXT_INVALID_GRANULARITY": "Importer TXT : granularité invalide",
|
|
369
|
+
"IMPORTTXT_INVALID_RECEIVER_ID": "Importer TXT : ID de destinataire invalide",
|
|
370
|
+
"IMPORTTXT_INVALID_MEDIA_LINK": "Importer TXT : lien média non valide",
|
|
371
|
+
"IMPORTTXT_INVALID_LINK_TITLE_HANDLING": "Importer TXT : titre du lien invalide",
|
|
372
|
+
"IMPORTTXT_UNDETECTABLE_CHAR_ENCODING": "Import TXT : encodage de caractères indétectable",
|
|
373
|
+
"IMPORTTXT_CANT_IMPORT_TO_SECRET_MEMORI": "Importation TXT : impossible d'importer vers les mémoires secrètes",
|
|
374
|
+
"IMPORTTXT_IMPORT_LIMIT_EXCEEDED": "Importer TXT : limite d'importation dépassée",
|
|
375
|
+
"IMPORTTXT_IMPORT_ON_GPT4_REQUIRES_API_KEY": "Importer TXT : l'importation sur GPT-4 nécessite une clé API",
|
|
376
|
+
"IMPORTTXT_IMPORT_REQUIRES_PAYING": "Importer TXT : l'importation nécessite un forfait payant",
|
|
377
|
+
"IMPORTTXT_BILLING_DENIED_PERMISSION": "Importer TXT : vous n'avez pas assez de crédits pour l'opération",
|
|
378
|
+
"EXPORTCSV_MISSING_CSV_SPECS": "Exportation CSV : spécifications CSV manquantes",
|
|
379
|
+
"EXPORTCSV_MISSING_SEPARATOR": "Export CSV : séparateur manquant",
|
|
380
|
+
"EXPORTCSV_INVALID_SEPARATOR": "Exportation CSV : séparateur non valide",
|
|
381
|
+
"EXPORTCSV_MISSING_TITLE_VARIANT_SEPARATOR": "Exportation CSV : séparateur de variante de titre manquant",
|
|
382
|
+
"EXPORTCSV_MISSING_NEW_LINE_CHAR": "Exportation CSV : caractère de nouvelle ligne manquant",
|
|
383
|
+
"EXPORTCSV_INVALID_NEW_LINE_CHAR": "Exportation CSV : caractère de nouvelle ligne non valide",
|
|
384
|
+
"EXPORTCSV_MISSING_PASSWORD": "Export CSV : mot de passe manquant",
|
|
385
|
+
"EXPORTJSONL_MISSING_JSONL_SPECS": "Export JSONL : spécifications JSONL manquantes",
|
|
386
|
+
"EXPORTJSONL_MISSING_PLATFORM": "Export JSONL : plateforme manquante",
|
|
387
|
+
"EXPORTJSONL_INVALID_PLATFORM": "Export JSONL : plateforme non valide",
|
|
388
|
+
"EXPORTJSONL_MISSING_PASSWORD": "Export JSONL : mot de passe manquant",
|
|
389
|
+
"EXPORTJSONL_EXPORT_REQUIRES_PAYING": "Exportation JSONL : l'exportation nécessite un forfait payant",
|
|
390
|
+
"ANALYSIS_MISSING_QUERY": "Analyse : requête manquante",
|
|
391
|
+
"ANALYSIS_CANT_ANALYZE_SECRET_MEMORI": "Analyse : impossible d'analyser les souvenirs secrets",
|
|
392
|
+
"ANALYSIS_USER_QUERY_MATCH_REQUIRES_DEEP_THOUGHT": "Analyse : la correspondance avec la requête de l'utilisateur nécessite une réflexion approfondie",
|
|
393
|
+
"BADGE_ASSIGNMENT_WRONG_OR_MISSING_CREDENTIALS": "Attribution des badges : identifiants incorrects ou manquants",
|
|
394
|
+
"BADGE_ASSIGNMENT_MISSING_REF_ID": "Affectation du badge : ID de référence manquant",
|
|
395
|
+
"BADGE_ASSIGNMENT_OUTCOME_NOT_FOUND": "Attribution des badges : résultat introuvable",
|
|
396
|
+
"BADGE_ASSIGNMENT_MISSING_ASSERTION_URL": "Attribution du badge : URL d'assertion manquante",
|
|
397
|
+
"BADGE_ASSIGNMENT_MISSING_BADGE_URL": "Attribution du badge : URL du badge manquante",
|
|
398
|
+
"BADGE_ASSIGNMENT_MISSING_ISSUER_URL": "Attribution du badge : URL de l'émetteur manquante",
|
|
399
|
+
"BADGE_ASSIGNMENT_INVALID_URL": "Attribution du badge : URL invalide",
|
|
400
|
+
"BADGE_ASSIGNMENT_MISSING_RECIPIENT": "Affectation du badge : destinataire manquant",
|
|
401
|
+
"BADGE_ASSIGNMENT_UNKNOWN_RECIPIENT_TYPE": "Attribution du badge : type de destinataire inconnu",
|
|
402
|
+
"BADGE_ASSIGNMENT_MISSING_RECIPIENT_IDENTITY": "Attribution du badge : identité du destinataire manquante",
|
|
403
|
+
"BADGE_ASSIGNMENT_MISSING_RECIPIENT_HASH_TYPE": "Attribution du badge : type de hachage du destinataire manquant",
|
|
404
|
+
"BADGE_ASSIGNMENT_UNKNOWN_RECIPIENT_HASH_TYPE": "Attribution du badge : type de hachage du destinataire inconnu",
|
|
405
|
+
"BADGE_ASSIGNMENT_WRONG_RECIPIENT_IDENTITY": "Attribution du badge : identité du destinataire incorrecte",
|
|
406
|
+
"BADGE_NOT_FOUND": "Badge introuvable",
|
|
407
|
+
"OUTCOME_NO_DCM_CONFIGURED": "Résultat : aucun DCM configuré",
|
|
408
|
+
"OUTCOME_USER_BADGES_DISABLED": "Résultat : badges utilisateur désactivés",
|
|
409
|
+
"COMPLETION_CONFIG_MISSING_NAME": "Configuration des complétions : nom manquant",
|
|
410
|
+
"COMPLETION_CONFIG_MISSING_PROVIDER": "Configuration des complétions : fournisseur manquant",
|
|
411
|
+
"COMPLETION_CONFIG_MISSING_ENDPOINT": "Configuration des complétions : point de terminaison manquant",
|
|
412
|
+
"COMPLETION_CONFIG_MISSING_API_KEY": "Configuration des complétions : clé API manquante",
|
|
413
|
+
"COMPLETION_CONFIG_MISSING_MODEL": "Configuration des complétions : modèle manquant",
|
|
414
|
+
"COMPLETION_CONFIG_NO_PURPOSE_SPECIFIED": "Configuration des complétions : au moins un type de complétions doit être spécifié",
|
|
415
|
+
"COMPLETION_CONFIG_INVALID_NAME": "Configuration des complétions: nom non valide",
|
|
416
|
+
"COMPLETION_CONFIG_INVALID_PURPOSE": "Configuration des complétions : type de complétions non valide",
|
|
417
|
+
"COMPLETION_CONFIG_INVALID_ENDPOINT": "Configuration des achèvements : point de terminaison non valide",
|
|
418
|
+
"COMPLETION_CONFIG_INCONSISTENT_ENDPOINT": "Configuration des complétions : point de terminaison incohérent",
|
|
419
|
+
"COMPLETION_CONFIG_INVALID_PROVIDER": "Configuration des complétions : fournisseur non valide",
|
|
420
|
+
"COMPLETION_CONFIG_NOT_FOUND": "Configuration des complétions : introuvable",
|
|
421
|
+
"COMPLETION_CONFIG_NOT_ACCESSIBLE": "Configuration des complétions : non accessible",
|
|
422
|
+
"COMPLETION_CONFIG_NAME_RESERVED": "Configuration des complétions : nom réservé",
|
|
423
|
+
"COMPLETION_CONFIG_NAME_ALREADY_EXISTS": "Configuration des complétions : le nom existe déjà",
|
|
424
|
+
"COMPLETION_CONFIG_VISIBILITY_CHANGE_NOT_ALLOWED": "Configuration des complétions : changement de visibilité non autorisé"
|
|
425
|
+
}
|
|
426
|
+
}
|
package/dist/locales/it.json
CHANGED
|
@@ -268,6 +268,8 @@
|
|
|
268
268
|
"USER_CANT_ENABLE_DCM_INTEGRATION": "Utente: non abilitato a gestire l'integrazione con DCM",
|
|
269
269
|
"USER_CANT_ENABLE_CHAINING_OR_BOARD_OF_EXPERTS": "Utente: non abilitato a gestire la concatenazione o il gruppo di esperti",
|
|
270
270
|
"USER_CREATION_BILLING_DENIED_PERMISSION": "Non hai crediti sufficienti per creare un Twin",
|
|
271
|
+
"USER_HAS_ONE_OR_MORE_COMPLETION_CONFIGS": "L'utente ha una o più configurazioni completions",
|
|
272
|
+
"USER_CANT_BE_DELETED": "Utente non può essere cancellato",
|
|
271
273
|
"MEMORI_NOT_FOUND": "Memori non trovato",
|
|
272
274
|
"MEMORI_NOT_ACCESSIBLE": "Memori non accessibile",
|
|
273
275
|
"MEMORI_ONLY_OWNER_CAN_CHANGE_GIVER_TAG_AND_PIN": "Solo il proprietario può cambiare il tag e il pin",
|
|
@@ -358,12 +360,14 @@
|
|
|
358
360
|
"IMPORTCSV_MISSING_TITLE_VARIANT_SEPARATOR": "Importazione CSV: separatore varianti titolo mancante",
|
|
359
361
|
"IMPORTCSV_INVALID_RECEIVER_ID": "Importazione CSV: ID receiver non valido",
|
|
360
362
|
"IMPORTCSV_INVALID_MEDIA_LINK": "Importazione CSV: link media non valido",
|
|
363
|
+
"IMPORTCSV_INVALID_LINK_TITLE_HANDLING": "Importazione CSV: titolo link non valido",
|
|
361
364
|
"IMPORTCSV_UNDETECTABLE_CHAR_ENCODING": "Importazione CSV: encoding caratteri non rilevabile",
|
|
362
365
|
"IMPORTCSV_CANT_IMPORT_TO_SECRET_MEMORI": "Importazione CSV: impossibile importare in Memori segreti",
|
|
363
366
|
"IMPORTTXT_MISSING_ROWS": "Importazione TXT: righe mancanti",
|
|
364
367
|
"IMPORTTXT_INVALID_GRANULARITY": "Importazione TXT: granularità non valida",
|
|
365
368
|
"IMPORTTXT_INVALID_RECEIVER_ID": "Importazione TXT: ID receiver non valido",
|
|
366
369
|
"IMPORTTXT_INVALID_MEDIA_LINK": "Importazione TXT: link media non valido",
|
|
370
|
+
"IMPORTTXT_INVALID_LINK_TITLE_HANDLING": "Importazione TXT: titolo link non valido",
|
|
367
371
|
"IMPORTTXT_UNDETECTABLE_CHAR_ENCODING": "Importazione TXT: encoding caratteri non rilevabile",
|
|
368
372
|
"IMPORTTXT_CANT_IMPORT_TO_SECRET_MEMORI": "Importazione TXT: impossibile importare in Memori segreti",
|
|
369
373
|
"IMPORTTXT_IMPORT_LIMIT_EXCEEDED": "Importazione TXT: limite importazione superato",
|
|
@@ -407,6 +411,7 @@
|
|
|
407
411
|
"COMPLETION_CONFIG_MISSING_API_KEY": "Configurazione completions: API key mancante",
|
|
408
412
|
"COMPLETION_CONFIG_MISSING_MODEL": "Configurazione completions: modello mancante",
|
|
409
413
|
"COMPLETION_CONFIG_NO_PURPOSE_SPECIFIED": "Configurazione completions: almeno un tipo di completions deve essere specificato",
|
|
414
|
+
"COMPLETION_CONFIG_INVALID_NAME": "Configurazione completions: nome non valido",
|
|
410
415
|
"COMPLETION_CONFIG_INVALID_PURPOSE": "Configurazione completions: tipo di completions non valido",
|
|
411
416
|
"COMPLETION_CONFIG_INVALID_ENDPOINT": "Configurazione completions: endpoint non valido",
|
|
412
417
|
"COMPLETION_CONFIG_INCONSISTENT_ENDPOINT": "Configurazione completions: endpoint incoerente",
|
package/esm/I18nWrapper.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect } from 'react';
|
|
2
3
|
import { I18nextProvider } from 'react-i18next';
|
|
3
4
|
import i18n from './i18n';
|
|
4
5
|
import { mathJaxConfig } from './helpers/utils';
|
|
5
6
|
const I18nWrapper = ({ children }) => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
useEffect(() => {
|
|
8
|
+
if (!window.MathJax)
|
|
9
|
+
window.MathJax = mathJaxConfig;
|
|
10
|
+
}, []);
|
|
11
|
+
return (_jsxs(I18nextProvider, { i18n: i18n, children: [children, _jsx("script", { id: "MathJax-script", async: true, src: "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js" })] }));
|
|
11
12
|
};
|
|
12
13
|
export default I18nWrapper;
|
|
13
14
|
//# sourceMappingURL=I18nWrapper.js.map
|
package/esm/I18nWrapper.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"I18nWrapper.js","sourceRoot":"","sources":["../src/I18nWrapper.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"I18nWrapper.js","sourceRoot":"","sources":["../src/I18nWrapper.tsx"],"names":[],"mappings":";AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,IAAI,MAAM,QAAQ,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAMhD,MAAM,WAAW,GAAG,CAAC,EAAE,QAAQ,EAAS,EAAE,EAAE;IAC1C,SAAS,CAAC,GAAG,EAAE;QAEb,IAAI,CAAC,MAAM,CAAC,OAAO;YAAE,MAAM,CAAC,OAAO,GAAG,aAAa,CAAC;IACtD,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP,OAAO,CACL,MAAC,eAAe,IAAC,IAAI,EAAE,IAAI,aACxB,QAAQ,EAET,iBACE,EAAE,EAAC,gBAAgB,EACnB,KAAK,QACL,GAAG,EAAC,6DAA6D,GACzD,IACM,CACnB,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,WAAW,CAAC"}
|