@box/box-ai-content-answers 0.49.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/LICENSE +379 -0
- package/chunks/answer-content.module.js +8 -0
- package/chunks/answer.module.js +13 -0
- package/chunks/citation.module.js +14 -0
- package/chunks/copy-button.module.js +7 -0
- package/chunks/inline-error.module.js +10 -0
- package/chunks/loading.module.js +9 -0
- package/chunks/references.module.js +7 -0
- package/chunks/types.js +9 -0
- package/esm/index.js +13 -0
- package/esm/lib/box-ai-content-answers.js +82 -0
- package/esm/lib/components/agents/agent-editor.js +55 -0
- package/esm/lib/components/agents/agent-selector.js +76 -0
- package/esm/lib/components/agents/messages.js +14 -0
- package/esm/lib/components/answer/answer-content.js +29 -0
- package/esm/lib/components/answer/answer.js +100 -0
- package/esm/lib/components/answer/citation.js +130 -0
- package/esm/lib/components/answer/constants.js +4 -0
- package/esm/lib/components/answer/copy-button.js +49 -0
- package/esm/lib/components/answer/inline-error.js +64 -0
- package/esm/lib/components/answer/loading-element.js +41 -0
- package/esm/lib/components/answer/messages.js +66 -0
- package/esm/lib/components/answer/no-citations.js +34 -0
- package/esm/lib/components/answer/references.js +67 -0
- package/esm/lib/components/api-wrapper/api-wrapper.js +13 -0
- package/esm/lib/components/api-wrapper/constants.js +49 -0
- package/esm/lib/components/api-wrapper/content-answers-component.js +55 -0
- package/esm/lib/components/api-wrapper/hooks/useContentAnswers.js +197 -0
- package/esm/lib/components/api-wrapper/records.js +33 -0
- package/esm/lib/components/api-wrapper/test-utils/ReadableStreamSimulator.js +38 -0
- package/esm/lib/components/api-wrapper/utils/format.js +9 -0
- package/esm/lib/components/api-wrapper/utils/request.js +7 -0
- package/esm/lib/components/api-wrapper/utils/stream.js +105 -0
- package/esm/lib/components/chat/chat.js +73 -0
- package/esm/lib/components/chat/index.js +4 -0
- package/esm/lib/components/common/constants.js +13 -0
- package/esm/lib/components/common/keyInputUtils.js +6 -0
- package/esm/lib/components/common/markdown.js +13370 -0
- package/esm/lib/components/common/media-container.js +48 -0
- package/esm/lib/components/common/mock-data.js +98 -0
- package/esm/lib/components/content/content.js +94 -0
- package/esm/lib/components/content/index.js +4 -0
- package/esm/lib/components/footer/constants.js +15 -0
- package/esm/lib/components/footer/footer-actions.js +65 -0
- package/esm/lib/components/footer/footer.js +124 -0
- package/esm/lib/components/footer/index.js +4 -0
- package/esm/lib/components/footer/messages.js +30 -0
- package/esm/lib/components/modal/hooks/useEventListeners.js +15 -0
- package/esm/lib/components/modal/hooks/useStopPropagationOnEsc.js +21 -0
- package/esm/lib/components/modal/messages.js +18 -0
- package/esm/lib/components/modal/modal.js +126 -0
- package/esm/lib/components/modal-error/index.js +4 -0
- package/esm/lib/components/modal-error/messages.js +26 -0
- package/esm/lib/components/modal-error/modal-error.js +78 -0
- package/esm/lib/components/question/question.js +50 -0
- package/esm/lib/components/suggested-questions/messages.js +10 -0
- package/esm/lib/components/suggested-questions/mocks.js +16 -0
- package/esm/lib/components/suggested-questions/suggested-questions.js +61 -0
- package/esm/lib/components/welcome-message/messages.js +18 -0
- package/esm/lib/components/welcome-message/welcome-message.js +78 -0
- package/esm/lib/contexts/AgentsContext.js +59 -0
- package/esm/lib/messages.js +54 -0
- package/i18n/bn-IN.js +48 -0
- package/i18n/bn-IN.properties +90 -0
- package/i18n/da-DK.js +48 -0
- package/i18n/da-DK.properties +90 -0
- package/i18n/de-DE.js +48 -0
- package/i18n/de-DE.properties +90 -0
- package/i18n/en-AU.js +48 -0
- package/i18n/en-AU.properties +90 -0
- package/i18n/en-CA.js +48 -0
- package/i18n/en-CA.properties +90 -0
- package/i18n/en-GB.js +48 -0
- package/i18n/en-GB.properties +90 -0
- package/i18n/en-US.js +48 -0
- package/i18n/en-US.properties +92 -0
- package/i18n/en-x-pseudo.js +48 -0
- package/i18n/en-x-pseudo.properties +90 -0
- package/i18n/es-419.js +48 -0
- package/i18n/es-419.properties +90 -0
- package/i18n/es-ES.js +48 -0
- package/i18n/es-ES.properties +90 -0
- package/i18n/fi-FI.js +48 -0
- package/i18n/fi-FI.properties +90 -0
- package/i18n/fr-CA.js +48 -0
- package/i18n/fr-CA.properties +90 -0
- package/i18n/fr-FR.js +48 -0
- package/i18n/fr-FR.properties +90 -0
- package/i18n/hi-IN.js +48 -0
- package/i18n/hi-IN.properties +90 -0
- package/i18n/it-IT.js +48 -0
- package/i18n/it-IT.properties +90 -0
- package/i18n/ja-JP.js +48 -0
- package/i18n/ja-JP.properties +90 -0
- package/i18n/json/src/lib/components/agents/messages.json +1 -0
- package/i18n/json/src/lib/components/answer/messages.json +1 -0
- package/i18n/json/src/lib/components/footer/messages.json +1 -0
- package/i18n/json/src/lib/components/modal/messages.json +1 -0
- package/i18n/json/src/lib/components/modal-error/messages.json +1 -0
- package/i18n/json/src/lib/components/suggested-questions/messages.json +1 -0
- package/i18n/json/src/lib/components/welcome-message/messages.json +1 -0
- package/i18n/json/src/lib/messages.json +1 -0
- package/i18n/ko-KR.js +48 -0
- package/i18n/ko-KR.properties +90 -0
- package/i18n/nb-NO.js +48 -0
- package/i18n/nb-NO.properties +90 -0
- package/i18n/nl-NL.js +48 -0
- package/i18n/nl-NL.properties +90 -0
- package/i18n/pl-PL.js +48 -0
- package/i18n/pl-PL.properties +90 -0
- package/i18n/pt-BR.js +48 -0
- package/i18n/pt-BR.properties +90 -0
- package/i18n/ru-RU.js +48 -0
- package/i18n/ru-RU.properties +90 -0
- package/i18n/sv-SE.js +48 -0
- package/i18n/sv-SE.properties +90 -0
- package/i18n/tr-TR.js +48 -0
- package/i18n/tr-TR.properties +90 -0
- package/i18n/zh-CN.js +48 -0
- package/i18n/zh-CN.properties +90 -0
- package/i18n/zh-TW.js +48 -0
- package/i18n/zh-TW.properties +90 -0
- package/package.json +56 -0
- package/styles/agent-editor.css +1 -0
- package/styles/agent-selector.css +1 -0
- package/styles/answer-content.css +1 -0
- package/styles/answer.css +1 -0
- package/styles/box-ai-content-answers.css +1 -0
- package/styles/chat.css +1 -0
- package/styles/citation.css +1 -0
- package/styles/content.css +1 -0
- package/styles/copy-button.css +1 -0
- package/styles/footer-actions.css +1 -0
- package/styles/footer.css +1 -0
- package/styles/inline-error.css +1 -0
- package/styles/loading.css +1 -0
- package/styles/markdown.css +7 -0
- package/styles/media-container.css +1 -0
- package/styles/modal-error.css +1 -0
- package/styles/modal.css +1 -0
- package/styles/question.css +1 -0
- package/styles/references.css +1 -0
- package/styles/suggested-questions.css +1 -0
- package/styles/welcome-message.css +1 -0
- package/types/index.d.ts +5 -0
- package/types/lib/box-ai-content-answers.d.ts +17 -0
- package/types/lib/components/agents/agent-editor.d.ts +8 -0
- package/types/lib/components/agents/agent-selector.d.ts +6 -0
- package/types/lib/components/agents/messages.d.ts +13 -0
- package/types/lib/components/agents/stories/shared.d.ts +12 -0
- package/types/lib/components/answer/answer-content.d.ts +8 -0
- package/types/lib/components/answer/answer.d.ts +29 -0
- package/types/lib/components/answer/citation.d.ts +19 -0
- package/types/lib/components/answer/constants.d.ts +1 -0
- package/types/lib/components/answer/copy-button.d.ts +7 -0
- package/types/lib/components/answer/inline-error.d.ts +8 -0
- package/types/lib/components/answer/loading-element.d.ts +5 -0
- package/types/lib/components/answer/messages.d.ts +78 -0
- package/types/lib/components/answer/no-citations.d.ts +7 -0
- package/types/lib/components/answer/references.d.ts +13 -0
- package/types/lib/components/answer/stories/shared.d.ts +25 -0
- package/types/lib/components/api-wrapper/api-wrapper.d.ts +3 -0
- package/types/lib/components/api-wrapper/constants.d.ts +6 -0
- package/types/lib/components/api-wrapper/content-answers-component.d.ts +6 -0
- package/types/lib/components/api-wrapper/hooks/useContentAnswers.d.ts +16 -0
- package/types/lib/components/api-wrapper/records.d.ts +28 -0
- package/types/lib/components/api-wrapper/stories/shared.d.ts +2 -0
- package/types/lib/components/api-wrapper/test-utils/ReadableStreamSimulator.d.ts +25 -0
- package/types/lib/components/api-wrapper/types.d.ts +86 -0
- package/types/lib/components/api-wrapper/utils/format.d.ts +3 -0
- package/types/lib/components/api-wrapper/utils/request.d.ts +4 -0
- package/types/lib/components/api-wrapper/utils/stream.d.ts +29 -0
- package/types/lib/components/chat/chat.d.ts +3 -0
- package/types/lib/components/chat/index.d.ts +1 -0
- package/types/lib/components/common/constants.d.ts +10 -0
- package/types/lib/components/common/keyInputUtils.d.ts +2 -0
- package/types/lib/components/common/markdown.d.ts +2 -0
- package/types/lib/components/common/media-container.d.ts +21 -0
- package/types/lib/components/common/mock-data.d.ts +27 -0
- package/types/lib/components/content/content.d.ts +4 -0
- package/types/lib/components/content/index.d.ts +1 -0
- package/types/lib/components/footer/constants.d.ts +12 -0
- package/types/lib/components/footer/footer-actions.d.ts +9 -0
- package/types/lib/components/footer/footer.d.ts +34 -0
- package/types/lib/components/footer/index.d.ts +1 -0
- package/types/lib/components/footer/messages.d.ts +33 -0
- package/types/lib/components/footer/stories/shared.d.ts +130 -0
- package/types/lib/components/footer/stories/tests/mocks.d.ts +2 -0
- package/types/lib/components/modal/hooks/useEventListeners.d.ts +5 -0
- package/types/lib/components/modal/hooks/useStopPropagationOnEsc.d.ts +4 -0
- package/types/lib/components/modal/messages.d.ts +18 -0
- package/types/lib/components/modal/modal.d.ts +32 -0
- package/types/lib/components/modal/stories/shared.d.ts +31 -0
- package/types/lib/components/modal-error/index.d.ts +1 -0
- package/types/lib/components/modal-error/messages.d.ts +28 -0
- package/types/lib/components/modal-error/modal-error.d.ts +13 -0
- package/types/lib/components/modal-error/stories/shared.d.ts +2 -0
- package/types/lib/components/question/question.d.ts +11 -0
- package/types/lib/components/question/stories/shared.d.ts +2 -0
- package/types/lib/components/suggested-questions/messages.d.ts +8 -0
- package/types/lib/components/suggested-questions/mocks.d.ts +2 -0
- package/types/lib/components/suggested-questions/stories/shared.d.ts +3 -0
- package/types/lib/components/suggested-questions/suggested-questions.d.ts +15 -0
- package/types/lib/components/welcome-message/messages.d.ts +18 -0
- package/types/lib/components/welcome-message/stories/shared.d.ts +2 -0
- package/types/lib/components/welcome-message/welcome-message.d.ts +3 -0
- package/types/lib/contexts/AgentsContext.d.ts +15 -0
- package/types/lib/messages.d.ts +63 -0
- package/types/lib/stories/shared.d.ts +36 -0
- package/types/lib/types.d.ts +115 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.contentAnswers.agent = Agente
|
|
3
|
+
# Content Answers submit input button text
|
|
4
|
+
boxAI.contentAnswers.ask = Preguntar
|
|
5
|
+
# Content Answers submit input button disabled tooltip text when answer is generating
|
|
6
|
+
boxAI.contentAnswers.askDisabledTooltip = Puedes enviar otra pregunta una vez que Box AI haya terminado de responder
|
|
7
|
+
# Content Answers modal input placeholder
|
|
8
|
+
boxAI.contentAnswers.askQuestionPlaceholder = Pregunte cualquier cosa sobre este {type}
|
|
9
|
+
# Label for the references used for generating the answer from the AI service
|
|
10
|
+
boxAI.contentAnswers.basedOn = Basado en:
|
|
11
|
+
# Box AI secondary action when file is too large
|
|
12
|
+
boxAI.contentAnswers.cancel = Anular
|
|
13
|
+
# Title of citation card tooltip in answer references section
|
|
14
|
+
boxAI.contentAnswers.cardTooltipTitle = Del documento:
|
|
15
|
+
# Title of citation card tooltip in answer references section with document title
|
|
16
|
+
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = De "{title}":
|
|
17
|
+
# Content Answers close button aria label
|
|
18
|
+
boxAI.contentAnswers.closeModalAriaLabel = Cerrar modal
|
|
19
|
+
# Content Answers feature name shown on menu item and modal title
|
|
20
|
+
boxAI.contentAnswers.contentAnswersTitle = IA de Box
|
|
21
|
+
# Box AI primary action when file is too large
|
|
22
|
+
boxAI.contentAnswers.continueAnyway = Continuar de todos modos
|
|
23
|
+
# Copy to clipboard tooltip
|
|
24
|
+
boxAI.contentAnswers.copyToClipboard = Copiar al portapapeles
|
|
25
|
+
# Notification displayed to the user when the answer has been successfully copied to the clipboard
|
|
26
|
+
boxAI.contentAnswers.copyToClipboardSucceeded = Copiado al portapapeles
|
|
27
|
+
# Default tooltip message for Content Answers entry point button
|
|
28
|
+
boxAI.contentAnswers.defaultTooltip = Obtén respuestas instantáneas sobre este documento usando Box AI
|
|
29
|
+
# Disabled tooltip message for Content Answers entry point button when the file does not have the correct permissions
|
|
30
|
+
boxAI.contentAnswers.disabledTooltipAINotAvailable = Box AI no tiene permiso para acceder a este archivo
|
|
31
|
+
# Disabled tooltip message for Content Answers entry point button when the file type is not supported
|
|
32
|
+
boxAI.contentAnswers.disabledTooltipFileNotCompatible = Box AI no es compatible actualmente con este tipo de archivo
|
|
33
|
+
# Disabled tooltip message for the Content Answers entry point button when the permissions request fails
|
|
34
|
+
boxAI.contentAnswers.disabledTooltipPermissionsFailed = No se pueden verificar los permisos en este momento. Vuelve a cargar esta página para intentarlo de nuevo
|
|
35
|
+
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
36
|
+
boxAI.contentAnswers.disabledTooltipPermissionsLoading = Comprobando los permisos...
|
|
37
|
+
# Existing questions tooltip message for Content Answers entry point button
|
|
38
|
+
boxAI.contentAnswers.hasQuestionsTooltip = Volver a Box AI
|
|
39
|
+
# Content Answers error message when the service fails
|
|
40
|
+
boxAI.contentAnswers.inlineErrorText = El servicio Box AI no estaba disponible.
|
|
41
|
+
# Content Answers error message when the service fails due to rate limiting
|
|
42
|
+
boxAI.contentAnswers.inlineRateLimitingErrorText = Box AI actualmente tiene capacidad limitada (estamos trabajando para expandir el ancho de banda). Inténtalo de nuevo en unos minutos.
|
|
43
|
+
# Box AI Q&A service unavailable error title
|
|
44
|
+
boxAI.contentAnswers.intelligenceUnaivalableHeading = Box AI no está disponible
|
|
45
|
+
# Box AI Q&A service unavailable error try again later description
|
|
46
|
+
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Inténtelo de nuevo más tarde.
|
|
47
|
+
# Box AI Q&A service unavailable error description
|
|
48
|
+
boxAI.contentAnswers.intelligenceUnavailableDescription = El servicio Box AI no está respondiendo.
|
|
49
|
+
# Box AI Q&A file too large error description
|
|
50
|
+
boxAI.contentAnswers.largeFileSizeErrorDescription = Box AI no podrá acceder a todo el texto, lo que podría afectar sus respuestas.
|
|
51
|
+
# Box AI Q&A file too large error heading
|
|
52
|
+
boxAI.contentAnswers.largeFileSizeErrorHeading = El contenido de texto de este archivo es demasiado grande para Box AI
|
|
53
|
+
# Aria label to show while waiting for the modal to load
|
|
54
|
+
boxAI.contentAnswers.loading = Cargando…
|
|
55
|
+
# Aria label to show while waiting for an answer
|
|
56
|
+
boxAI.contentAnswers.loadingAnswer = Cargando respuesta...
|
|
57
|
+
# Error tooltip to show inside text area if the user reached the character limit
|
|
58
|
+
boxAI.contentAnswers.maxCharactersReachedError = Se ha alcanzado el máximo de {characterLimit} caracteres
|
|
59
|
+
# Loading message if there are no citations for an answer
|
|
60
|
+
boxAI.contentAnswers.noReferences = Respuesta basada en análisis general del documento
|
|
61
|
+
# ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.
|
|
62
|
+
boxAI.contentAnswers.referenceAriaLabel = Referencia {number}
|
|
63
|
+
# Reset conversation button label
|
|
64
|
+
boxAI.contentAnswers.resetConversationLabel = Restablecer conversación
|
|
65
|
+
# Error message to be displayed within an answer during streaming mode if there was another error, such as network errors.
|
|
66
|
+
boxAI.contentAnswers.responseFailedError = Respuesta fallida
|
|
67
|
+
# Error message to be displayed within an answer during streaming mode if the answer was interrupted due to a lack of tokens.
|
|
68
|
+
boxAI.contentAnswers.responseInterruptedError = Respuesta interrumpida
|
|
69
|
+
# Error message to be displayed within an answer during streaming mode if the answer was stopped using the Stop Response button.
|
|
70
|
+
boxAI.contentAnswers.responseStoppedError = Respuesta detenida
|
|
71
|
+
# Retry button label to send again the question to the service
|
|
72
|
+
boxAI.contentAnswers.retryResponse = Vuelve a intentarlo
|
|
73
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
74
|
+
boxAI.contentAnswers.selectAgent = Seleccionar un agente
|
|
75
|
+
# Button label to stop streaming an answer
|
|
76
|
+
boxAI.contentAnswers.stopResponse = Detener respuesta
|
|
77
|
+
# Suggested questions title
|
|
78
|
+
boxAI.contentAnswers.suggestedQuestions = Preguntas sugeridas:
|
|
79
|
+
# Alt text for user avatar image
|
|
80
|
+
boxAI.contentAnswers.userAvatar = Avatar del usuario
|
|
81
|
+
# Content Answers welcome message for asking questions {Name} is the name of the content
|
|
82
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Haz preguntas sobre {name}
|
|
83
|
+
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
84
|
+
boxAI.contentAnswers.welcomeClearChatText = Este chat se borrará cuando cierre este {type}
|
|
85
|
+
# Content Answers welcome message title
|
|
86
|
+
boxAI.contentAnswers.welcomeMessageTitle = ¡Te damos la bienvenida a Box AI!
|
|
87
|
+
# Text for close button in popup
|
|
88
|
+
boxAI.popup.closeButtonText = Cerrar
|
|
89
|
+
# Text for copy button in input with copy button indicating copy success
|
|
90
|
+
boxAI.textInputWithCopyButton.copyButtonSuccessText = Copiado
|
package/i18n/fi-FI.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.contentAnswers.agent": "Edustaja",
|
|
3
|
+
"boxAI.contentAnswers.ask": "Kysy",
|
|
4
|
+
"boxAI.contentAnswers.askDisabledTooltip": "Voit lähettää toisen kysymyksen, kun Box AI on vastannut",
|
|
5
|
+
"boxAI.contentAnswers.askQuestionPlaceholder": "Kysy mitä tahansa tästä {type}",
|
|
6
|
+
"boxAI.contentAnswers.basedOn": "Perustuu:",
|
|
7
|
+
"boxAI.contentAnswers.cancel": "Peruuta",
|
|
8
|
+
"boxAI.contentAnswers.cardTooltipButton": "Open document",
|
|
9
|
+
"boxAI.contentAnswers.cardTooltipTitle": "Asiakirjasta:",
|
|
10
|
+
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "Asiakirjasta ”{title}”:",
|
|
11
|
+
"boxAI.contentAnswers.closeModalAriaLabel": "Sulje valintaikkuna",
|
|
12
|
+
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
13
|
+
"boxAI.contentAnswers.continueAnyway": "Jatka joka tapauksessa",
|
|
14
|
+
"boxAI.contentAnswers.copyToClipboard": "Kopioi leikepöydälle",
|
|
15
|
+
"boxAI.contentAnswers.copyToClipboardSucceeded": "Kopioitu leikepöydälle",
|
|
16
|
+
"boxAI.contentAnswers.defaultTooltip": "Hanki välittömiä vastauksia tästä asiakirjasta Box AI:n avulla",
|
|
17
|
+
"boxAI.contentAnswers.disabledTooltipAINotAvailable": "Box AI:lla ei ole tämän tiedoston käyttöoikeutta",
|
|
18
|
+
"boxAI.contentAnswers.disabledTooltipFileNotCompatible": "Box AI:ta ei tällä hetkellä tueta tälle tiedostotyypille",
|
|
19
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsFailed": "Käyttöoikeustasoa ei voitu juuri nyt tarkistaa. Yritä uudelleen lataamalla sivu",
|
|
20
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsLoading": "Tarkistetaan käyttöoikeustasoa...",
|
|
21
|
+
"boxAI.contentAnswers.hasQuestionsTooltip": "Palaa Box AI:n kysymyksiin ja vastauksiin",
|
|
22
|
+
"boxAI.contentAnswers.inlineErrorText": "Box AI -palvelu ei ollut käytettävissä.",
|
|
23
|
+
"boxAI.contentAnswers.inlineRateLimitingErrorText": "Box AI:n kapasiteetti on tällä hetkellä rajallinen (pyrimme laajentamaan kaistanleveyttä). Yritä uudelleen muutaman minuutin kuluttua.",
|
|
24
|
+
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI ei ole käytettävissä",
|
|
25
|
+
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Yritä myöhemmin uudelleen.",
|
|
26
|
+
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI -palvelu ei vastaa.",
|
|
27
|
+
"boxAI.contentAnswers.largeFileSizeErrorDescription": "Box AI ei voi käyttää koko tekstiä, mikä saattaa vaikuttaa sen vastauksiin.",
|
|
28
|
+
"boxAI.contentAnswers.largeFileSizeErrorHeading": "Tämän tiedoston tekstisisältö on liian suuri Box AI:lle",
|
|
29
|
+
"boxAI.contentAnswers.loading": "Ladataan...",
|
|
30
|
+
"boxAI.contentAnswers.loadingAnswer": "Ladataan vastausta...",
|
|
31
|
+
"boxAI.contentAnswers.maxCharactersReachedError": "Merkkien enimmäismäärä {characterLimit} saavutettu",
|
|
32
|
+
"boxAI.contentAnswers.noReferences": "Yleiseen asiakirja-analyysiin perustuva vastaus",
|
|
33
|
+
"boxAI.contentAnswers.referenceAriaLabel": "Viittaus {number}",
|
|
34
|
+
"boxAI.contentAnswers.resetConversationLabel": "Nollaa keskustelu",
|
|
35
|
+
"boxAI.contentAnswers.responseFailedError": "Vastaus epäonnistui",
|
|
36
|
+
"boxAI.contentAnswers.responseInterruptedError": "Vastaus keskeytyi",
|
|
37
|
+
"boxAI.contentAnswers.responseStoppedError": "Vastaus pysäytettiin",
|
|
38
|
+
"boxAI.contentAnswers.retryResponse": "Yritä uudelleen",
|
|
39
|
+
"boxAI.contentAnswers.selectAgent": "Valitse edustaja",
|
|
40
|
+
"boxAI.contentAnswers.stopResponse": "Pysäytä vastaus",
|
|
41
|
+
"boxAI.contentAnswers.suggestedQuestions": "Ehdotettuja kysymyksiä:",
|
|
42
|
+
"boxAI.contentAnswers.userAvatar": "Käyttäjän avatar",
|
|
43
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Kysy aiheesta {name}",
|
|
44
|
+
"boxAI.contentAnswers.welcomeClearChatText": "Keskustelu poistetaan, kun suljet kohteen {type}",
|
|
45
|
+
"boxAI.contentAnswers.welcomeMessageTitle": "Tervetuloa Box AI -palveluun",
|
|
46
|
+
"boxAI.popup.closeButtonText": "Sulje",
|
|
47
|
+
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Kopioitu"
|
|
48
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.contentAnswers.agent = Edustaja
|
|
3
|
+
# Content Answers submit input button text
|
|
4
|
+
boxAI.contentAnswers.ask = Kysy
|
|
5
|
+
# Content Answers submit input button disabled tooltip text when answer is generating
|
|
6
|
+
boxAI.contentAnswers.askDisabledTooltip = Voit lähettää toisen kysymyksen, kun Box AI on vastannut
|
|
7
|
+
# Content Answers modal input placeholder
|
|
8
|
+
boxAI.contentAnswers.askQuestionPlaceholder = Kysy mitä tahansa tästä {type}
|
|
9
|
+
# Label for the references used for generating the answer from the AI service
|
|
10
|
+
boxAI.contentAnswers.basedOn = Perustuu:
|
|
11
|
+
# Box AI secondary action when file is too large
|
|
12
|
+
boxAI.contentAnswers.cancel = Peruuta
|
|
13
|
+
# Title of citation card tooltip in answer references section
|
|
14
|
+
boxAI.contentAnswers.cardTooltipTitle = Asiakirjasta:
|
|
15
|
+
# Title of citation card tooltip in answer references section with document title
|
|
16
|
+
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = Asiakirjasta ”{title}”:
|
|
17
|
+
# Content Answers close button aria label
|
|
18
|
+
boxAI.contentAnswers.closeModalAriaLabel = Sulje valintaikkuna
|
|
19
|
+
# Content Answers feature name shown on menu item and modal title
|
|
20
|
+
boxAI.contentAnswers.contentAnswersTitle = Box AI
|
|
21
|
+
# Box AI primary action when file is too large
|
|
22
|
+
boxAI.contentAnswers.continueAnyway = Jatka joka tapauksessa
|
|
23
|
+
# Copy to clipboard tooltip
|
|
24
|
+
boxAI.contentAnswers.copyToClipboard = Kopioi leikepöydälle
|
|
25
|
+
# Notification displayed to the user when the answer has been successfully copied to the clipboard
|
|
26
|
+
boxAI.contentAnswers.copyToClipboardSucceeded = Kopioitu leikepöydälle
|
|
27
|
+
# Default tooltip message for Content Answers entry point button
|
|
28
|
+
boxAI.contentAnswers.defaultTooltip = Hanki välittömiä vastauksia tästä asiakirjasta Box AI:n avulla
|
|
29
|
+
# Disabled tooltip message for Content Answers entry point button when the file does not have the correct permissions
|
|
30
|
+
boxAI.contentAnswers.disabledTooltipAINotAvailable = Box AI:lla ei ole tämän tiedoston käyttöoikeutta
|
|
31
|
+
# Disabled tooltip message for Content Answers entry point button when the file type is not supported
|
|
32
|
+
boxAI.contentAnswers.disabledTooltipFileNotCompatible = Box AI:ta ei tällä hetkellä tueta tälle tiedostotyypille
|
|
33
|
+
# Disabled tooltip message for the Content Answers entry point button when the permissions request fails
|
|
34
|
+
boxAI.contentAnswers.disabledTooltipPermissionsFailed = Käyttöoikeustasoa ei voitu juuri nyt tarkistaa. Yritä uudelleen lataamalla sivu
|
|
35
|
+
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
36
|
+
boxAI.contentAnswers.disabledTooltipPermissionsLoading = Tarkistetaan käyttöoikeustasoa...
|
|
37
|
+
# Existing questions tooltip message for Content Answers entry point button
|
|
38
|
+
boxAI.contentAnswers.hasQuestionsTooltip = Palaa Box AI:n kysymyksiin ja vastauksiin
|
|
39
|
+
# Content Answers error message when the service fails
|
|
40
|
+
boxAI.contentAnswers.inlineErrorText = Box AI -palvelu ei ollut käytettävissä.
|
|
41
|
+
# Content Answers error message when the service fails due to rate limiting
|
|
42
|
+
boxAI.contentAnswers.inlineRateLimitingErrorText = Box AI:n kapasiteetti on tällä hetkellä rajallinen (pyrimme laajentamaan kaistanleveyttä). Yritä uudelleen muutaman minuutin kuluttua.
|
|
43
|
+
# Box AI Q&A service unavailable error title
|
|
44
|
+
boxAI.contentAnswers.intelligenceUnaivalableHeading = Box AI ei ole käytettävissä
|
|
45
|
+
# Box AI Q&A service unavailable error try again later description
|
|
46
|
+
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Yritä myöhemmin uudelleen.
|
|
47
|
+
# Box AI Q&A service unavailable error description
|
|
48
|
+
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI -palvelu ei vastaa.
|
|
49
|
+
# Box AI Q&A file too large error description
|
|
50
|
+
boxAI.contentAnswers.largeFileSizeErrorDescription = Box AI ei voi käyttää koko tekstiä, mikä saattaa vaikuttaa sen vastauksiin.
|
|
51
|
+
# Box AI Q&A file too large error heading
|
|
52
|
+
boxAI.contentAnswers.largeFileSizeErrorHeading = Tämän tiedoston tekstisisältö on liian suuri Box AI:lle
|
|
53
|
+
# Aria label to show while waiting for the modal to load
|
|
54
|
+
boxAI.contentAnswers.loading = Ladataan...
|
|
55
|
+
# Aria label to show while waiting for an answer
|
|
56
|
+
boxAI.contentAnswers.loadingAnswer = Ladataan vastausta...
|
|
57
|
+
# Error tooltip to show inside text area if the user reached the character limit
|
|
58
|
+
boxAI.contentAnswers.maxCharactersReachedError = Merkkien enimmäismäärä {characterLimit} saavutettu
|
|
59
|
+
# Loading message if there are no citations for an answer
|
|
60
|
+
boxAI.contentAnswers.noReferences = Yleiseen asiakirja-analyysiin perustuva vastaus
|
|
61
|
+
# ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.
|
|
62
|
+
boxAI.contentAnswers.referenceAriaLabel = Viittaus {number}
|
|
63
|
+
# Reset conversation button label
|
|
64
|
+
boxAI.contentAnswers.resetConversationLabel = Nollaa keskustelu
|
|
65
|
+
# Error message to be displayed within an answer during streaming mode if there was another error, such as network errors.
|
|
66
|
+
boxAI.contentAnswers.responseFailedError = Vastaus epäonnistui
|
|
67
|
+
# Error message to be displayed within an answer during streaming mode if the answer was interrupted due to a lack of tokens.
|
|
68
|
+
boxAI.contentAnswers.responseInterruptedError = Vastaus keskeytyi
|
|
69
|
+
# Error message to be displayed within an answer during streaming mode if the answer was stopped using the Stop Response button.
|
|
70
|
+
boxAI.contentAnswers.responseStoppedError = Vastaus pysäytettiin
|
|
71
|
+
# Retry button label to send again the question to the service
|
|
72
|
+
boxAI.contentAnswers.retryResponse = Yritä uudelleen
|
|
73
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
74
|
+
boxAI.contentAnswers.selectAgent = Valitse edustaja
|
|
75
|
+
# Button label to stop streaming an answer
|
|
76
|
+
boxAI.contentAnswers.stopResponse = Pysäytä vastaus
|
|
77
|
+
# Suggested questions title
|
|
78
|
+
boxAI.contentAnswers.suggestedQuestions = Ehdotettuja kysymyksiä:
|
|
79
|
+
# Alt text for user avatar image
|
|
80
|
+
boxAI.contentAnswers.userAvatar = Käyttäjän avatar
|
|
81
|
+
# Content Answers welcome message for asking questions {Name} is the name of the content
|
|
82
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Kysy aiheesta {name}
|
|
83
|
+
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
84
|
+
boxAI.contentAnswers.welcomeClearChatText = Keskustelu poistetaan, kun suljet kohteen {type}
|
|
85
|
+
# Content Answers welcome message title
|
|
86
|
+
boxAI.contentAnswers.welcomeMessageTitle = Tervetuloa Box AI -palveluun
|
|
87
|
+
# Text for close button in popup
|
|
88
|
+
boxAI.popup.closeButtonText = Sulje
|
|
89
|
+
# Text for copy button in input with copy button indicating copy success
|
|
90
|
+
boxAI.textInputWithCopyButton.copyButtonSuccessText = Kopioitu
|
package/i18n/fr-CA.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.contentAnswers.agent": "Agent",
|
|
3
|
+
"boxAI.contentAnswers.ask": "Demander",
|
|
4
|
+
"boxAI.contentAnswers.askDisabledTooltip": "Vous pouvez soumettre une autre question une fois que Box AI a fini de répondre.",
|
|
5
|
+
"boxAI.contentAnswers.askQuestionPlaceholder": "Poser des questions sur ce {type}",
|
|
6
|
+
"boxAI.contentAnswers.basedOn": "Basé sur :",
|
|
7
|
+
"boxAI.contentAnswers.cancel": "Annuler",
|
|
8
|
+
"boxAI.contentAnswers.cardTooltipButton": "Open document",
|
|
9
|
+
"boxAI.contentAnswers.cardTooltipTitle": "À partir du document :",
|
|
10
|
+
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "De « {title} » :",
|
|
11
|
+
"boxAI.contentAnswers.closeModalAriaLabel": "Fermer Modal",
|
|
12
|
+
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
13
|
+
"boxAI.contentAnswers.continueAnyway": "Continuer malgré tout",
|
|
14
|
+
"boxAI.contentAnswers.copyToClipboard": "Copier dans le presse-papiers",
|
|
15
|
+
"boxAI.contentAnswers.copyToClipboardSucceeded": "Copié dans votre presse-papiers",
|
|
16
|
+
"boxAI.contentAnswers.defaultTooltip": "Obtenez des réponses instantanées à propos de ce document en utilisant Box AI",
|
|
17
|
+
"boxAI.contentAnswers.disabledTooltipAINotAvailable": "Box AI ne dispose pas de l'autorisation d'accéder à ce fichier",
|
|
18
|
+
"boxAI.contentAnswers.disabledTooltipFileNotCompatible": "Box AI n'est actuellement pas pris en charge pour ce type de fichier",
|
|
19
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsFailed": "Impossible de vérifier les autorisations pour le moment. Veuillez recharger cette page pour réessayer",
|
|
20
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsLoading": "Vérification des autorisations...",
|
|
21
|
+
"boxAI.contentAnswers.hasQuestionsTooltip": "Revenir dans Box AI",
|
|
22
|
+
"boxAI.contentAnswers.inlineErrorText": "Le service Box AI n'était pas disponible.",
|
|
23
|
+
"boxAI.contentAnswers.inlineRateLimitingErrorText": "La capacité de la Box AI est actuellement limitée (nous travaillons à l'élargissement de la bande passante). Veuillez réessayer dans quelques minutes.",
|
|
24
|
+
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI n’est pas disponible",
|
|
25
|
+
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Veuillez réessayer ultérieurement.",
|
|
26
|
+
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Le service Box AI ne répond pas.",
|
|
27
|
+
"boxAI.contentAnswers.largeFileSizeErrorDescription": "Box AI ne pourra pas accéder à l'intégralité du texte, ce qui pourrait affecter ses réponses.",
|
|
28
|
+
"boxAI.contentAnswers.largeFileSizeErrorHeading": "Le contenu textuel de ce fichier est trop volumineux pour Box AI",
|
|
29
|
+
"boxAI.contentAnswers.loading": "Chargement en cours...",
|
|
30
|
+
"boxAI.contentAnswers.loadingAnswer": "Chargement de la réponse...",
|
|
31
|
+
"boxAI.contentAnswers.maxCharactersReachedError": "Limite maximale de {characterLimit} caractères atteinte",
|
|
32
|
+
"boxAI.contentAnswers.noReferences": "Réponse basée sur l’analyse générale des documents",
|
|
33
|
+
"boxAI.contentAnswers.referenceAriaLabel": "Référence {number}",
|
|
34
|
+
"boxAI.contentAnswers.resetConversationLabel": "Réinitialiser la conversation",
|
|
35
|
+
"boxAI.contentAnswers.responseFailedError": "La réponse a échoué",
|
|
36
|
+
"boxAI.contentAnswers.responseInterruptedError": "Réponse interrompue",
|
|
37
|
+
"boxAI.contentAnswers.responseStoppedError": "Réponse arrêtée",
|
|
38
|
+
"boxAI.contentAnswers.retryResponse": "Réessayer",
|
|
39
|
+
"boxAI.contentAnswers.selectAgent": "Sélectionner un agent",
|
|
40
|
+
"boxAI.contentAnswers.stopResponse": "Arrêter la réponse",
|
|
41
|
+
"boxAI.contentAnswers.suggestedQuestions": "Questions suggérées :",
|
|
42
|
+
"boxAI.contentAnswers.userAvatar": "Avatar de l'utilisateur",
|
|
43
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Poser des questions sur {name}",
|
|
44
|
+
"boxAI.contentAnswers.welcomeClearChatText": "Ce chat sera effacé lorsque vous fermerez ce {type}",
|
|
45
|
+
"boxAI.contentAnswers.welcomeMessageTitle": "Bienvenue dans Box AI",
|
|
46
|
+
"boxAI.popup.closeButtonText": "Fermer",
|
|
47
|
+
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copié"
|
|
48
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.contentAnswers.agent = Agent
|
|
3
|
+
# Content Answers submit input button text
|
|
4
|
+
boxAI.contentAnswers.ask = Demander
|
|
5
|
+
# Content Answers submit input button disabled tooltip text when answer is generating
|
|
6
|
+
boxAI.contentAnswers.askDisabledTooltip = Vous pouvez soumettre une autre question une fois que Box AI a fini de répondre.
|
|
7
|
+
# Content Answers modal input placeholder
|
|
8
|
+
boxAI.contentAnswers.askQuestionPlaceholder = Poser des questions sur ce {type}
|
|
9
|
+
# Label for the references used for generating the answer from the AI service
|
|
10
|
+
boxAI.contentAnswers.basedOn = Basé sur :
|
|
11
|
+
# Box AI secondary action when file is too large
|
|
12
|
+
boxAI.contentAnswers.cancel = Annuler
|
|
13
|
+
# Title of citation card tooltip in answer references section
|
|
14
|
+
boxAI.contentAnswers.cardTooltipTitle = À partir du document :
|
|
15
|
+
# Title of citation card tooltip in answer references section with document title
|
|
16
|
+
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = De « {title} » :
|
|
17
|
+
# Content Answers close button aria label
|
|
18
|
+
boxAI.contentAnswers.closeModalAriaLabel = Fermer Modal
|
|
19
|
+
# Content Answers feature name shown on menu item and modal title
|
|
20
|
+
boxAI.contentAnswers.contentAnswersTitle = Box AI
|
|
21
|
+
# Box AI primary action when file is too large
|
|
22
|
+
boxAI.contentAnswers.continueAnyway = Continuer malgré tout
|
|
23
|
+
# Copy to clipboard tooltip
|
|
24
|
+
boxAI.contentAnswers.copyToClipboard = Copier dans le presse-papiers
|
|
25
|
+
# Notification displayed to the user when the answer has been successfully copied to the clipboard
|
|
26
|
+
boxAI.contentAnswers.copyToClipboardSucceeded = Copié dans votre presse-papiers
|
|
27
|
+
# Default tooltip message for Content Answers entry point button
|
|
28
|
+
boxAI.contentAnswers.defaultTooltip = Obtenez des réponses instantanées à propos de ce document en utilisant Box AI
|
|
29
|
+
# Disabled tooltip message for Content Answers entry point button when the file does not have the correct permissions
|
|
30
|
+
boxAI.contentAnswers.disabledTooltipAINotAvailable = Box AI ne dispose pas de l'autorisation d'accéder à ce fichier
|
|
31
|
+
# Disabled tooltip message for Content Answers entry point button when the file type is not supported
|
|
32
|
+
boxAI.contentAnswers.disabledTooltipFileNotCompatible = Box AI n'est actuellement pas pris en charge pour ce type de fichier
|
|
33
|
+
# Disabled tooltip message for the Content Answers entry point button when the permissions request fails
|
|
34
|
+
boxAI.contentAnswers.disabledTooltipPermissionsFailed = Impossible de vérifier les autorisations pour le moment. Veuillez recharger cette page pour réessayer
|
|
35
|
+
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
36
|
+
boxAI.contentAnswers.disabledTooltipPermissionsLoading = Vérification des autorisations...
|
|
37
|
+
# Existing questions tooltip message for Content Answers entry point button
|
|
38
|
+
boxAI.contentAnswers.hasQuestionsTooltip = Revenir dans Box AI
|
|
39
|
+
# Content Answers error message when the service fails
|
|
40
|
+
boxAI.contentAnswers.inlineErrorText = Le service Box AI n'était pas disponible.
|
|
41
|
+
# Content Answers error message when the service fails due to rate limiting
|
|
42
|
+
boxAI.contentAnswers.inlineRateLimitingErrorText = La capacité de la Box AI est actuellement limitée (nous travaillons à l'élargissement de la bande passante). Veuillez réessayer dans quelques minutes.
|
|
43
|
+
# Box AI Q&A service unavailable error title
|
|
44
|
+
boxAI.contentAnswers.intelligenceUnaivalableHeading = Box AI n’est pas disponible
|
|
45
|
+
# Box AI Q&A service unavailable error try again later description
|
|
46
|
+
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Veuillez réessayer ultérieurement.
|
|
47
|
+
# Box AI Q&A service unavailable error description
|
|
48
|
+
boxAI.contentAnswers.intelligenceUnavailableDescription = Le service Box AI ne répond pas.
|
|
49
|
+
# Box AI Q&A file too large error description
|
|
50
|
+
boxAI.contentAnswers.largeFileSizeErrorDescription = Box AI ne pourra pas accéder à l'intégralité du texte, ce qui pourrait affecter ses réponses.
|
|
51
|
+
# Box AI Q&A file too large error heading
|
|
52
|
+
boxAI.contentAnswers.largeFileSizeErrorHeading = Le contenu textuel de ce fichier est trop volumineux pour Box AI
|
|
53
|
+
# Aria label to show while waiting for the modal to load
|
|
54
|
+
boxAI.contentAnswers.loading = Chargement en cours...
|
|
55
|
+
# Aria label to show while waiting for an answer
|
|
56
|
+
boxAI.contentAnswers.loadingAnswer = Chargement de la réponse...
|
|
57
|
+
# Error tooltip to show inside text area if the user reached the character limit
|
|
58
|
+
boxAI.contentAnswers.maxCharactersReachedError = Limite maximale de {characterLimit} caractères atteinte
|
|
59
|
+
# Loading message if there are no citations for an answer
|
|
60
|
+
boxAI.contentAnswers.noReferences = Réponse basée sur l’analyse générale des documents
|
|
61
|
+
# ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.
|
|
62
|
+
boxAI.contentAnswers.referenceAriaLabel = Référence {number}
|
|
63
|
+
# Reset conversation button label
|
|
64
|
+
boxAI.contentAnswers.resetConversationLabel = Réinitialiser la conversation
|
|
65
|
+
# Error message to be displayed within an answer during streaming mode if there was another error, such as network errors.
|
|
66
|
+
boxAI.contentAnswers.responseFailedError = La réponse a échoué
|
|
67
|
+
# Error message to be displayed within an answer during streaming mode if the answer was interrupted due to a lack of tokens.
|
|
68
|
+
boxAI.contentAnswers.responseInterruptedError = Réponse interrompue
|
|
69
|
+
# Error message to be displayed within an answer during streaming mode if the answer was stopped using the Stop Response button.
|
|
70
|
+
boxAI.contentAnswers.responseStoppedError = Réponse arrêtée
|
|
71
|
+
# Retry button label to send again the question to the service
|
|
72
|
+
boxAI.contentAnswers.retryResponse = Réessayer
|
|
73
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
74
|
+
boxAI.contentAnswers.selectAgent = Sélectionner un agent
|
|
75
|
+
# Button label to stop streaming an answer
|
|
76
|
+
boxAI.contentAnswers.stopResponse = Arrêter la réponse
|
|
77
|
+
# Suggested questions title
|
|
78
|
+
boxAI.contentAnswers.suggestedQuestions = Questions suggérées :
|
|
79
|
+
# Alt text for user avatar image
|
|
80
|
+
boxAI.contentAnswers.userAvatar = Avatar de l'utilisateur
|
|
81
|
+
# Content Answers welcome message for asking questions {Name} is the name of the content
|
|
82
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Poser des questions sur {name}
|
|
83
|
+
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
84
|
+
boxAI.contentAnswers.welcomeClearChatText = Ce chat sera effacé lorsque vous fermerez ce {type}
|
|
85
|
+
# Content Answers welcome message title
|
|
86
|
+
boxAI.contentAnswers.welcomeMessageTitle = Bienvenue dans Box AI
|
|
87
|
+
# Text for close button in popup
|
|
88
|
+
boxAI.popup.closeButtonText = Fermer
|
|
89
|
+
# Text for copy button in input with copy button indicating copy success
|
|
90
|
+
boxAI.textInputWithCopyButton.copyButtonSuccessText = Copié
|
package/i18n/fr-FR.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.contentAnswers.agent": "Agent",
|
|
3
|
+
"boxAI.contentAnswers.ask": "Demander",
|
|
4
|
+
"boxAI.contentAnswers.askDisabledTooltip": "Vous pouvez soumettre une autre question une fois que Box AI a fini de répondre.",
|
|
5
|
+
"boxAI.contentAnswers.askQuestionPlaceholder": "Poser des questions sur ce {type}",
|
|
6
|
+
"boxAI.contentAnswers.basedOn": "Basé sur :",
|
|
7
|
+
"boxAI.contentAnswers.cancel": "Annuler",
|
|
8
|
+
"boxAI.contentAnswers.cardTooltipButton": "Open document",
|
|
9
|
+
"boxAI.contentAnswers.cardTooltipTitle": "À partir du document :",
|
|
10
|
+
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "De « {title} » :",
|
|
11
|
+
"boxAI.contentAnswers.closeModalAriaLabel": "Fermer Modal",
|
|
12
|
+
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
13
|
+
"boxAI.contentAnswers.continueAnyway": "Continuer malgré tout",
|
|
14
|
+
"boxAI.contentAnswers.copyToClipboard": "Copier dans le presse-papiers",
|
|
15
|
+
"boxAI.contentAnswers.copyToClipboardSucceeded": "Copié dans votre presse-papiers",
|
|
16
|
+
"boxAI.contentAnswers.defaultTooltip": "Obtenez des réponses instantanées à propos de ce document en utilisant Box AI",
|
|
17
|
+
"boxAI.contentAnswers.disabledTooltipAINotAvailable": "Box AI ne dispose pas de l'autorisation d'accéder à ce fichier",
|
|
18
|
+
"boxAI.contentAnswers.disabledTooltipFileNotCompatible": "Box AI n'est actuellement pas pris en charge pour ce type de fichier",
|
|
19
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsFailed": "Impossible de vérifier les autorisations pour le moment. Veuillez recharger cette page pour réessayer",
|
|
20
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsLoading": "Vérification des autorisations...",
|
|
21
|
+
"boxAI.contentAnswers.hasQuestionsTooltip": "Revenir dans Box AI",
|
|
22
|
+
"boxAI.contentAnswers.inlineErrorText": "Le service Box AI n'était pas disponible.",
|
|
23
|
+
"boxAI.contentAnswers.inlineRateLimitingErrorText": "La capacité de la Box AI est actuellement limitée (nous travaillons à l'élargissement de la bande passante). Veuillez réessayer dans quelques minutes.",
|
|
24
|
+
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI n’est pas disponible",
|
|
25
|
+
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Veuillez réessayer ultérieurement.",
|
|
26
|
+
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Le service Box AI ne répond pas.",
|
|
27
|
+
"boxAI.contentAnswers.largeFileSizeErrorDescription": "Box AI ne pourra pas accéder à l'intégralité du texte, ce qui pourrait affecter ses réponses.",
|
|
28
|
+
"boxAI.contentAnswers.largeFileSizeErrorHeading": "Le contenu textuel de ce fichier est trop volumineux pour Box AI",
|
|
29
|
+
"boxAI.contentAnswers.loading": "Chargement en cours...",
|
|
30
|
+
"boxAI.contentAnswers.loadingAnswer": "Chargement de la réponse...",
|
|
31
|
+
"boxAI.contentAnswers.maxCharactersReachedError": "Limite maximale de {characterLimit} caractères atteinte",
|
|
32
|
+
"boxAI.contentAnswers.noReferences": "Réponse basée sur l’analyse générale des documents",
|
|
33
|
+
"boxAI.contentAnswers.referenceAriaLabel": "Référence {number}",
|
|
34
|
+
"boxAI.contentAnswers.resetConversationLabel": "Réinitialiser la conversation",
|
|
35
|
+
"boxAI.contentAnswers.responseFailedError": "La réponse a échoué",
|
|
36
|
+
"boxAI.contentAnswers.responseInterruptedError": "Réponse interrompue",
|
|
37
|
+
"boxAI.contentAnswers.responseStoppedError": "Réponse arrêtée",
|
|
38
|
+
"boxAI.contentAnswers.retryResponse": "Réessayer",
|
|
39
|
+
"boxAI.contentAnswers.selectAgent": "Sélectionner un agent",
|
|
40
|
+
"boxAI.contentAnswers.stopResponse": "Arrêter la réponse",
|
|
41
|
+
"boxAI.contentAnswers.suggestedQuestions": "Questions suggérées :",
|
|
42
|
+
"boxAI.contentAnswers.userAvatar": "Avatar de l'utilisateur",
|
|
43
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Poser des questions sur {name}",
|
|
44
|
+
"boxAI.contentAnswers.welcomeClearChatText": "Ce chat sera effacé lorsque vous fermerez ce {type}",
|
|
45
|
+
"boxAI.contentAnswers.welcomeMessageTitle": "Bienvenue dans Box AI",
|
|
46
|
+
"boxAI.popup.closeButtonText": "Fermer",
|
|
47
|
+
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copié"
|
|
48
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.contentAnswers.agent = Agent
|
|
3
|
+
# Content Answers submit input button text
|
|
4
|
+
boxAI.contentAnswers.ask = Demander
|
|
5
|
+
# Content Answers submit input button disabled tooltip text when answer is generating
|
|
6
|
+
boxAI.contentAnswers.askDisabledTooltip = Vous pouvez soumettre une autre question une fois que Box AI a fini de répondre.
|
|
7
|
+
# Content Answers modal input placeholder
|
|
8
|
+
boxAI.contentAnswers.askQuestionPlaceholder = Poser des questions sur ce {type}
|
|
9
|
+
# Label for the references used for generating the answer from the AI service
|
|
10
|
+
boxAI.contentAnswers.basedOn = Basé sur :
|
|
11
|
+
# Box AI secondary action when file is too large
|
|
12
|
+
boxAI.contentAnswers.cancel = Annuler
|
|
13
|
+
# Title of citation card tooltip in answer references section
|
|
14
|
+
boxAI.contentAnswers.cardTooltipTitle = À partir du document :
|
|
15
|
+
# Title of citation card tooltip in answer references section with document title
|
|
16
|
+
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = De « {title} » :
|
|
17
|
+
# Content Answers close button aria label
|
|
18
|
+
boxAI.contentAnswers.closeModalAriaLabel = Fermer Modal
|
|
19
|
+
# Content Answers feature name shown on menu item and modal title
|
|
20
|
+
boxAI.contentAnswers.contentAnswersTitle = Box AI
|
|
21
|
+
# Box AI primary action when file is too large
|
|
22
|
+
boxAI.contentAnswers.continueAnyway = Continuer malgré tout
|
|
23
|
+
# Copy to clipboard tooltip
|
|
24
|
+
boxAI.contentAnswers.copyToClipboard = Copier dans le presse-papiers
|
|
25
|
+
# Notification displayed to the user when the answer has been successfully copied to the clipboard
|
|
26
|
+
boxAI.contentAnswers.copyToClipboardSucceeded = Copié dans votre presse-papiers
|
|
27
|
+
# Default tooltip message for Content Answers entry point button
|
|
28
|
+
boxAI.contentAnswers.defaultTooltip = Obtenez des réponses instantanées à propos de ce document en utilisant Box AI
|
|
29
|
+
# Disabled tooltip message for Content Answers entry point button when the file does not have the correct permissions
|
|
30
|
+
boxAI.contentAnswers.disabledTooltipAINotAvailable = Box AI ne dispose pas de l'autorisation d'accéder à ce fichier
|
|
31
|
+
# Disabled tooltip message for Content Answers entry point button when the file type is not supported
|
|
32
|
+
boxAI.contentAnswers.disabledTooltipFileNotCompatible = Box AI n'est actuellement pas pris en charge pour ce type de fichier
|
|
33
|
+
# Disabled tooltip message for the Content Answers entry point button when the permissions request fails
|
|
34
|
+
boxAI.contentAnswers.disabledTooltipPermissionsFailed = Impossible de vérifier les autorisations pour le moment. Veuillez recharger cette page pour réessayer
|
|
35
|
+
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
36
|
+
boxAI.contentAnswers.disabledTooltipPermissionsLoading = Vérification des autorisations...
|
|
37
|
+
# Existing questions tooltip message for Content Answers entry point button
|
|
38
|
+
boxAI.contentAnswers.hasQuestionsTooltip = Revenir dans Box AI
|
|
39
|
+
# Content Answers error message when the service fails
|
|
40
|
+
boxAI.contentAnswers.inlineErrorText = Le service Box AI n'était pas disponible.
|
|
41
|
+
# Content Answers error message when the service fails due to rate limiting
|
|
42
|
+
boxAI.contentAnswers.inlineRateLimitingErrorText = La capacité de la Box AI est actuellement limitée (nous travaillons à l'élargissement de la bande passante). Veuillez réessayer dans quelques minutes.
|
|
43
|
+
# Box AI Q&A service unavailable error title
|
|
44
|
+
boxAI.contentAnswers.intelligenceUnaivalableHeading = Box AI n’est pas disponible
|
|
45
|
+
# Box AI Q&A service unavailable error try again later description
|
|
46
|
+
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Veuillez réessayer ultérieurement.
|
|
47
|
+
# Box AI Q&A service unavailable error description
|
|
48
|
+
boxAI.contentAnswers.intelligenceUnavailableDescription = Le service Box AI ne répond pas.
|
|
49
|
+
# Box AI Q&A file too large error description
|
|
50
|
+
boxAI.contentAnswers.largeFileSizeErrorDescription = Box AI ne pourra pas accéder à l'intégralité du texte, ce qui pourrait affecter ses réponses.
|
|
51
|
+
# Box AI Q&A file too large error heading
|
|
52
|
+
boxAI.contentAnswers.largeFileSizeErrorHeading = Le contenu textuel de ce fichier est trop volumineux pour Box AI
|
|
53
|
+
# Aria label to show while waiting for the modal to load
|
|
54
|
+
boxAI.contentAnswers.loading = Chargement en cours...
|
|
55
|
+
# Aria label to show while waiting for an answer
|
|
56
|
+
boxAI.contentAnswers.loadingAnswer = Chargement de la réponse...
|
|
57
|
+
# Error tooltip to show inside text area if the user reached the character limit
|
|
58
|
+
boxAI.contentAnswers.maxCharactersReachedError = Limite maximale de {characterLimit} caractères atteinte
|
|
59
|
+
# Loading message if there are no citations for an answer
|
|
60
|
+
boxAI.contentAnswers.noReferences = Réponse basée sur l’analyse générale des documents
|
|
61
|
+
# ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.
|
|
62
|
+
boxAI.contentAnswers.referenceAriaLabel = Référence {number}
|
|
63
|
+
# Reset conversation button label
|
|
64
|
+
boxAI.contentAnswers.resetConversationLabel = Réinitialiser la conversation
|
|
65
|
+
# Error message to be displayed within an answer during streaming mode if there was another error, such as network errors.
|
|
66
|
+
boxAI.contentAnswers.responseFailedError = La réponse a échoué
|
|
67
|
+
# Error message to be displayed within an answer during streaming mode if the answer was interrupted due to a lack of tokens.
|
|
68
|
+
boxAI.contentAnswers.responseInterruptedError = Réponse interrompue
|
|
69
|
+
# Error message to be displayed within an answer during streaming mode if the answer was stopped using the Stop Response button.
|
|
70
|
+
boxAI.contentAnswers.responseStoppedError = Réponse arrêtée
|
|
71
|
+
# Retry button label to send again the question to the service
|
|
72
|
+
boxAI.contentAnswers.retryResponse = Réessayer
|
|
73
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
74
|
+
boxAI.contentAnswers.selectAgent = Sélectionner un agent
|
|
75
|
+
# Button label to stop streaming an answer
|
|
76
|
+
boxAI.contentAnswers.stopResponse = Arrêter la réponse
|
|
77
|
+
# Suggested questions title
|
|
78
|
+
boxAI.contentAnswers.suggestedQuestions = Questions suggérées :
|
|
79
|
+
# Alt text for user avatar image
|
|
80
|
+
boxAI.contentAnswers.userAvatar = Avatar de l'utilisateur
|
|
81
|
+
# Content Answers welcome message for asking questions {Name} is the name of the content
|
|
82
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Poser des questions sur {name}
|
|
83
|
+
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
84
|
+
boxAI.contentAnswers.welcomeClearChatText = Ce chat sera effacé lorsque vous fermerez ce {type}
|
|
85
|
+
# Content Answers welcome message title
|
|
86
|
+
boxAI.contentAnswers.welcomeMessageTitle = Bienvenue dans Box AI
|
|
87
|
+
# Text for close button in popup
|
|
88
|
+
boxAI.popup.closeButtonText = Fermer
|
|
89
|
+
# Text for copy button in input with copy button indicating copy success
|
|
90
|
+
boxAI.textInputWithCopyButton.copyButtonSuccessText = Copié
|
package/i18n/hi-IN.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.contentAnswers.agent": "एजेंट",
|
|
3
|
+
"boxAI.contentAnswers.ask": "पूछें",
|
|
4
|
+
"boxAI.contentAnswers.askDisabledTooltip": "जब Box AI जवाब दे ले, तब आप दूसरा सवाल सबमिट कर सकते हैं",
|
|
5
|
+
"boxAI.contentAnswers.askQuestionPlaceholder": "इस {type} बारे में कुछ पूछें",
|
|
6
|
+
"boxAI.contentAnswers.basedOn": "पर आधारित:",
|
|
7
|
+
"boxAI.contentAnswers.cancel": "रद्द करें",
|
|
8
|
+
"boxAI.contentAnswers.cardTooltipButton": "Open document",
|
|
9
|
+
"boxAI.contentAnswers.cardTooltipTitle": "दस्तावेज़ से:",
|
|
10
|
+
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "\"{title}\" से:",
|
|
11
|
+
"boxAI.contentAnswers.closeModalAriaLabel": "मोडल बंद करें",
|
|
12
|
+
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
13
|
+
"boxAI.contentAnswers.continueAnyway": "किसी भी तरह जारी रखें",
|
|
14
|
+
"boxAI.contentAnswers.copyToClipboard": "क्लिपबोर्ड में कॉपी करें",
|
|
15
|
+
"boxAI.contentAnswers.copyToClipboardSucceeded": "आपके क्लिपबोर्ड में कॉपी किया",
|
|
16
|
+
"boxAI.contentAnswers.defaultTooltip": "Box AI का उपयोग करके इस दस्तावेज़ के बारे में तत्काल उत्तर प्राप्त करें",
|
|
17
|
+
"boxAI.contentAnswers.disabledTooltipAINotAvailable": "Box AI के पास इस फ़ाइल को एक्सेस करने की अनुमति नहीं है",
|
|
18
|
+
"boxAI.contentAnswers.disabledTooltipFileNotCompatible": "फ़िलहाल इस तरह की फ़ाइल के लिए Box AI का उपयोग नहीं किया जा सकता है",
|
|
19
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsFailed": "इस समय अनुमतियाँ जांचने में असमर्थ। पुनः प्रयास करने के लिए इस पेज को पुनः लोड करें",
|
|
20
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsLoading": "अनुमतियाँ जाँची जा रही हैं...",
|
|
21
|
+
"boxAI.contentAnswers.hasQuestionsTooltip": "Box AI में वापस जाएं",
|
|
22
|
+
"boxAI.contentAnswers.inlineErrorText": "Box AI सेवा अनुपलब्ध थी।",
|
|
23
|
+
"boxAI.contentAnswers.inlineRateLimitingErrorText": "Box AI के पास फ़िलहाल सीमित क्षमता है (हम बैंडविड्थ बढ़ाने की कोशिश कर रहे हैं)। कृपया कुछ मिनटों में पुनः प्रयास करें।",
|
|
24
|
+
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI अनुपलब्ध है",
|
|
25
|
+
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "कृपया बाद में पुनः प्रयास करें।",
|
|
26
|
+
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI सेवा जवाब नहीं दे रही है।",
|
|
27
|
+
"boxAI.contentAnswers.largeFileSizeErrorDescription": "Box AI पूरे टेक्स्ट को एक्सेस नहीं कर पाएगा, जिससे इसके उत्तर प्रभावित हो सकते हैं।",
|
|
28
|
+
"boxAI.contentAnswers.largeFileSizeErrorHeading": "इस फ़ाइल की टेक्स्ट सामग्री, Box AI के लिए बहुत बड़ी है",
|
|
29
|
+
"boxAI.contentAnswers.loading": "लोड हो रहा है...",
|
|
30
|
+
"boxAI.contentAnswers.loadingAnswer": "उत्तर लोड किया जा रहा है...",
|
|
31
|
+
"boxAI.contentAnswers.maxCharactersReachedError": "{characterLimit} अक्षरों की अधिकतम सीमा तक पहुँच गया",
|
|
32
|
+
"boxAI.contentAnswers.noReferences": "साधारण दस्तावेज़ विश्लेषण पर आधारित प्रतिक्रिया",
|
|
33
|
+
"boxAI.contentAnswers.referenceAriaLabel": "संदर्भ {number}",
|
|
34
|
+
"boxAI.contentAnswers.resetConversationLabel": "बातचीत को रीसेट करें",
|
|
35
|
+
"boxAI.contentAnswers.responseFailedError": "प्रतिक्रिया विफल हो गई",
|
|
36
|
+
"boxAI.contentAnswers.responseInterruptedError": "प्रतिक्रिया बाधित हो गई",
|
|
37
|
+
"boxAI.contentAnswers.responseStoppedError": "प्रतिक्रिया बंद हो गई",
|
|
38
|
+
"boxAI.contentAnswers.retryResponse": "पुनः प्रयास करें",
|
|
39
|
+
"boxAI.contentAnswers.selectAgent": "एक एजेंट चुनें",
|
|
40
|
+
"boxAI.contentAnswers.stopResponse": "प्रतिक्रिया बंद करें",
|
|
41
|
+
"boxAI.contentAnswers.suggestedQuestions": "सुझाए गए सवाल:",
|
|
42
|
+
"boxAI.contentAnswers.userAvatar": "उपयोगकर्ता अवतार",
|
|
43
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "{name} से जुड़े सवाल पूछें",
|
|
44
|
+
"boxAI.contentAnswers.welcomeClearChatText": "जब आप यह {type} बंद करेंगे तब यह चैट साफ हो जाएगा",
|
|
45
|
+
"boxAI.contentAnswers.welcomeMessageTitle": "Box AI में आपका स्वागत है",
|
|
46
|
+
"boxAI.popup.closeButtonText": "बंद करें",
|
|
47
|
+
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "कॉपी की गई"
|
|
48
|
+
}
|