@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 = Agent
|
|
3
|
+
# Content Answers submit input button text
|
|
4
|
+
boxAI.contentAnswers.ask = Spørg
|
|
5
|
+
# Content Answers submit input button disabled tooltip text when answer is generating
|
|
6
|
+
boxAI.contentAnswers.askDisabledTooltip = Du kan indsende et andet spørgsmål, når Box AI er færdig med at svare
|
|
7
|
+
# Content Answers modal input placeholder
|
|
8
|
+
boxAI.contentAnswers.askQuestionPlaceholder = Spørg om alt om denne {type}
|
|
9
|
+
# Label for the references used for generating the answer from the AI service
|
|
10
|
+
boxAI.contentAnswers.basedOn = Baseret på:
|
|
11
|
+
# Box AI secondary action when file is too large
|
|
12
|
+
boxAI.contentAnswers.cancel = Annuller
|
|
13
|
+
# Title of citation card tooltip in answer references section
|
|
14
|
+
boxAI.contentAnswers.cardTooltipTitle = Fra dokument:
|
|
15
|
+
# Title of citation card tooltip in answer references section with document title
|
|
16
|
+
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = Fra "{title}":
|
|
17
|
+
# Content Answers close button aria label
|
|
18
|
+
boxAI.contentAnswers.closeModalAriaLabel = Luk 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 = Fortsæt alligevel
|
|
23
|
+
# Copy to clipboard tooltip
|
|
24
|
+
boxAI.contentAnswers.copyToClipboard = Kopier til udklipsholder
|
|
25
|
+
# Notification displayed to the user when the answer has been successfully copied to the clipboard
|
|
26
|
+
boxAI.contentAnswers.copyToClipboardSucceeded = Kopieret til din udklipsholder
|
|
27
|
+
# Default tooltip message for Content Answers entry point button
|
|
28
|
+
boxAI.contentAnswers.defaultTooltip = Få øjeblikkelige svar om dette dokument, ved hjælp af 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 har ikke tilladelse til at tilgå denne fil
|
|
31
|
+
# Disabled tooltip message for Content Answers entry point button when the file type is not supported
|
|
32
|
+
boxAI.contentAnswers.disabledTooltipFileNotCompatible = Box AI er i øjeblikket ikke understøttet for denne filtype
|
|
33
|
+
# Disabled tooltip message for the Content Answers entry point button when the permissions request fails
|
|
34
|
+
boxAI.contentAnswers.disabledTooltipPermissionsFailed = Det er ikke muligt at kontrollere tilladelserne på nuværende tidspunkt. Genindlæs denne side for at prøve igen
|
|
35
|
+
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
36
|
+
boxAI.contentAnswers.disabledTooltipPermissionsLoading = Kontrollerer tilladelser ...
|
|
37
|
+
# Existing questions tooltip message for Content Answers entry point button
|
|
38
|
+
boxAI.contentAnswers.hasQuestionsTooltip = Gå tilbage til Box AI
|
|
39
|
+
# Content Answers error message when the service fails
|
|
40
|
+
boxAI.contentAnswers.inlineErrorText = Box AI-tjenesten var ikke tilgængelig.
|
|
41
|
+
# Content Answers error message when the service fails due to rate limiting
|
|
42
|
+
boxAI.contentAnswers.inlineRateLimitingErrorText = Box AI har på nuværende tidspunkt begrænset kapacitet (vi arbejder på at udvide båndbredden). Prøv igen om et par minutter.
|
|
43
|
+
# Box AI Q&A service unavailable error title
|
|
44
|
+
boxAI.contentAnswers.intelligenceUnaivalableHeading = Box AI er ikke tilgængelig
|
|
45
|
+
# Box AI Q&A service unavailable error try again later description
|
|
46
|
+
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Prøv igen senere.
|
|
47
|
+
# Box AI Q&A service unavailable error description
|
|
48
|
+
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI-tjenesten reagerer ikke.
|
|
49
|
+
# Box AI Q&A file too large error description
|
|
50
|
+
boxAI.contentAnswers.largeFileSizeErrorDescription = Box AI vil ikke kunne tilgå hele teksten, hvilket kan påvirke svarene.
|
|
51
|
+
# Box AI Q&A file too large error heading
|
|
52
|
+
boxAI.contentAnswers.largeFileSizeErrorHeading = Tekstindholdet i denne fil er for stort til Box AI
|
|
53
|
+
# Aria label to show while waiting for the modal to load
|
|
54
|
+
boxAI.contentAnswers.loading = Indlæser ...
|
|
55
|
+
# Aria label to show while waiting for an answer
|
|
56
|
+
boxAI.contentAnswers.loadingAnswer = Indlæser svar ...
|
|
57
|
+
# Error tooltip to show inside text area if the user reached the character limit
|
|
58
|
+
boxAI.contentAnswers.maxCharactersReachedError = Det maksimale antal på {characterLimit} tegn nået
|
|
59
|
+
# Loading message if there are no citations for an answer
|
|
60
|
+
boxAI.contentAnswers.noReferences = Svar baseret på en generel analyse af dokumentet
|
|
61
|
+
# ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.
|
|
62
|
+
boxAI.contentAnswers.referenceAriaLabel = Reference {number}
|
|
63
|
+
# Reset conversation button label
|
|
64
|
+
boxAI.contentAnswers.resetConversationLabel = Nulstil samtale
|
|
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 = Svar mislykkedes
|
|
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 = Svar afbrudt
|
|
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 = Svar stoppet
|
|
71
|
+
# Retry button label to send again the question to the service
|
|
72
|
+
boxAI.contentAnswers.retryResponse = Prøv igen
|
|
73
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
74
|
+
boxAI.contentAnswers.selectAgent = Vælge en agent
|
|
75
|
+
# Button label to stop streaming an answer
|
|
76
|
+
boxAI.contentAnswers.stopResponse = Stop svar
|
|
77
|
+
# Suggested questions title
|
|
78
|
+
boxAI.contentAnswers.suggestedQuestions = Foreslåede spørgsmål:
|
|
79
|
+
# Alt text for user avatar image
|
|
80
|
+
boxAI.contentAnswers.userAvatar = Brugeravatar
|
|
81
|
+
# Content Answers welcome message for asking questions {Name} is the name of the content
|
|
82
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Stil spørgsmål om {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 = Denne chat vil blive ryddet, når du lukker dette {type}
|
|
85
|
+
# Content Answers welcome message title
|
|
86
|
+
boxAI.contentAnswers.welcomeMessageTitle = Velkommen til Box AI
|
|
87
|
+
# Text for close button in popup
|
|
88
|
+
boxAI.popup.closeButtonText = Luk
|
|
89
|
+
# Text for copy button in input with copy button indicating copy success
|
|
90
|
+
boxAI.textInputWithCopyButton.copyButtonSuccessText = Kopieret
|
package/i18n/de-DE.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.contentAnswers.agent": "Agent",
|
|
3
|
+
"boxAI.contentAnswers.ask": "Fragen",
|
|
4
|
+
"boxAI.contentAnswers.askDisabledTooltip": "Sie können eine weitere Frage senden, sobald Box-KI reagiert hat",
|
|
5
|
+
"boxAI.contentAnswers.askQuestionPlaceholder": "Stellen Sie eine Frage zu diesem {type}",
|
|
6
|
+
"boxAI.contentAnswers.basedOn": "Basierend auf:",
|
|
7
|
+
"boxAI.contentAnswers.cancel": "Abbrechen",
|
|
8
|
+
"boxAI.contentAnswers.cardTooltipButton": "Open document",
|
|
9
|
+
"boxAI.contentAnswers.cardTooltipTitle": "Von Dokument:",
|
|
10
|
+
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "Von „{title}“:",
|
|
11
|
+
"boxAI.contentAnswers.closeModalAriaLabel": "Modal schließen",
|
|
12
|
+
"boxAI.contentAnswers.contentAnswersTitle": "Box KI",
|
|
13
|
+
"boxAI.contentAnswers.continueAnyway": "Trotzdem fortfahren",
|
|
14
|
+
"boxAI.contentAnswers.copyToClipboard": "In die Zwischenablage kopieren",
|
|
15
|
+
"boxAI.contentAnswers.copyToClipboardSucceeded": "In Ihre Zwischenablage kopiert",
|
|
16
|
+
"boxAI.contentAnswers.defaultTooltip": "Erhalten Sie mit Box KI sofortige Antworten zu diesem Dokument",
|
|
17
|
+
"boxAI.contentAnswers.disabledTooltipAINotAvailable": "Box-KI hat keine Berechtigung zum Dateizugriff",
|
|
18
|
+
"boxAI.contentAnswers.disabledTooltipFileNotCompatible": "Box-KI wird derzeit für diesen Dateityp nicht unterstützt",
|
|
19
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsFailed": "Berechtigungen können derzeit nicht überprüft werden. Diese Seite neu laden, um es erneut zu versuchen",
|
|
20
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsLoading": "Berechtigungen werden überprüft ...",
|
|
21
|
+
"boxAI.contentAnswers.hasQuestionsTooltip": "Zurück zu Box-KI",
|
|
22
|
+
"boxAI.contentAnswers.inlineErrorText": "Der Box-KI-Service war nicht verfügbar.",
|
|
23
|
+
"boxAI.contentAnswers.inlineRateLimitingErrorText": "Box-KI hat derzeit eine begrenzte Kapazität (wir bemühen uns um eine Bandbreitenerweiterung). Bitte versuchen Sie es in einigen Minuten erneut.",
|
|
24
|
+
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box-KI ist nicht verfügbar",
|
|
25
|
+
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Versuchen Sie es bitte später erneut.",
|
|
26
|
+
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Der Box-KI-Dienst reagiert nicht.",
|
|
27
|
+
"boxAI.contentAnswers.largeFileSizeErrorDescription": "Box KI kann nicht auf den gesamten Text zugreifen, was sich möglicherweise auf die Antworten auswirkt.",
|
|
28
|
+
"boxAI.contentAnswers.largeFileSizeErrorHeading": "Der Textinhalt dieser Datei ist zu groß für Box KI",
|
|
29
|
+
"boxAI.contentAnswers.loading": "Laden …",
|
|
30
|
+
"boxAI.contentAnswers.loadingAnswer": "Die Antwort wird geladen ...",
|
|
31
|
+
"boxAI.contentAnswers.maxCharactersReachedError": "Das Maximum an {characterLimit} Zeichen ist erreicht",
|
|
32
|
+
"boxAI.contentAnswers.noReferences": "Antwort basierend auf allgemeiner Dokumentanalyse",
|
|
33
|
+
"boxAI.contentAnswers.referenceAriaLabel": "Referenz {number}",
|
|
34
|
+
"boxAI.contentAnswers.resetConversationLabel": "Unterhaltung zurücksetzen",
|
|
35
|
+
"boxAI.contentAnswers.responseFailedError": "Antwort fehlgeschlagen",
|
|
36
|
+
"boxAI.contentAnswers.responseInterruptedError": "Antwort unterbrochen",
|
|
37
|
+
"boxAI.contentAnswers.responseStoppedError": "Antwort gestoppt",
|
|
38
|
+
"boxAI.contentAnswers.retryResponse": "Erneut versuchen",
|
|
39
|
+
"boxAI.contentAnswers.selectAgent": "Wählen Sie einen Agenten aus",
|
|
40
|
+
"boxAI.contentAnswers.stopResponse": "Antwort stoppen",
|
|
41
|
+
"boxAI.contentAnswers.suggestedQuestions": "Vorgeschlagene Fragen:",
|
|
42
|
+
"boxAI.contentAnswers.userAvatar": "Benutzeravatar",
|
|
43
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Fragen zu {name} stellen",
|
|
44
|
+
"boxAI.contentAnswers.welcomeClearChatText": "Dieser Chat wird gelöscht, wenn Sie diese(s) {type} schließen",
|
|
45
|
+
"boxAI.contentAnswers.welcomeMessageTitle": "Willkommen bei Box KI!",
|
|
46
|
+
"boxAI.popup.closeButtonText": "Schließen",
|
|
47
|
+
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Kopiert"
|
|
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 = Fragen
|
|
5
|
+
# Content Answers submit input button disabled tooltip text when answer is generating
|
|
6
|
+
boxAI.contentAnswers.askDisabledTooltip = Sie können eine weitere Frage senden, sobald Box-KI reagiert hat
|
|
7
|
+
# Content Answers modal input placeholder
|
|
8
|
+
boxAI.contentAnswers.askQuestionPlaceholder = Stellen Sie eine Frage zu diesem {type}
|
|
9
|
+
# Label for the references used for generating the answer from the AI service
|
|
10
|
+
boxAI.contentAnswers.basedOn = Basierend auf:
|
|
11
|
+
# Box AI secondary action when file is too large
|
|
12
|
+
boxAI.contentAnswers.cancel = Abbrechen
|
|
13
|
+
# Title of citation card tooltip in answer references section
|
|
14
|
+
boxAI.contentAnswers.cardTooltipTitle = Von Dokument:
|
|
15
|
+
# Title of citation card tooltip in answer references section with document title
|
|
16
|
+
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = Von „{title}“:
|
|
17
|
+
# Content Answers close button aria label
|
|
18
|
+
boxAI.contentAnswers.closeModalAriaLabel = Modal schließen
|
|
19
|
+
# Content Answers feature name shown on menu item and modal title
|
|
20
|
+
boxAI.contentAnswers.contentAnswersTitle = Box KI
|
|
21
|
+
# Box AI primary action when file is too large
|
|
22
|
+
boxAI.contentAnswers.continueAnyway = Trotzdem fortfahren
|
|
23
|
+
# Copy to clipboard tooltip
|
|
24
|
+
boxAI.contentAnswers.copyToClipboard = In die Zwischenablage kopieren
|
|
25
|
+
# Notification displayed to the user when the answer has been successfully copied to the clipboard
|
|
26
|
+
boxAI.contentAnswers.copyToClipboardSucceeded = In Ihre Zwischenablage kopiert
|
|
27
|
+
# Default tooltip message for Content Answers entry point button
|
|
28
|
+
boxAI.contentAnswers.defaultTooltip = Erhalten Sie mit Box KI sofortige Antworten zu diesem Dokument
|
|
29
|
+
# Disabled tooltip message for Content Answers entry point button when the file does not have the correct permissions
|
|
30
|
+
boxAI.contentAnswers.disabledTooltipAINotAvailable = Box-KI hat keine Berechtigung zum Dateizugriff
|
|
31
|
+
# Disabled tooltip message for Content Answers entry point button when the file type is not supported
|
|
32
|
+
boxAI.contentAnswers.disabledTooltipFileNotCompatible = Box-KI wird derzeit für diesen Dateityp nicht unterstützt
|
|
33
|
+
# Disabled tooltip message for the Content Answers entry point button when the permissions request fails
|
|
34
|
+
boxAI.contentAnswers.disabledTooltipPermissionsFailed = Berechtigungen können derzeit nicht überprüft werden. Diese Seite neu laden, um es erneut zu versuchen
|
|
35
|
+
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
36
|
+
boxAI.contentAnswers.disabledTooltipPermissionsLoading = Berechtigungen werden überprüft ...
|
|
37
|
+
# Existing questions tooltip message for Content Answers entry point button
|
|
38
|
+
boxAI.contentAnswers.hasQuestionsTooltip = Zurück zu Box-KI
|
|
39
|
+
# Content Answers error message when the service fails
|
|
40
|
+
boxAI.contentAnswers.inlineErrorText = Der Box-KI-Service war nicht verfügbar.
|
|
41
|
+
# Content Answers error message when the service fails due to rate limiting
|
|
42
|
+
boxAI.contentAnswers.inlineRateLimitingErrorText = Box-KI hat derzeit eine begrenzte Kapazität (wir bemühen uns um eine Bandbreitenerweiterung). Bitte versuchen Sie es in einigen Minuten erneut.
|
|
43
|
+
# Box AI Q&A service unavailable error title
|
|
44
|
+
boxAI.contentAnswers.intelligenceUnaivalableHeading = Box-KI ist nicht verfügbar
|
|
45
|
+
# Box AI Q&A service unavailable error try again later description
|
|
46
|
+
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Versuchen Sie es bitte später erneut.
|
|
47
|
+
# Box AI Q&A service unavailable error description
|
|
48
|
+
boxAI.contentAnswers.intelligenceUnavailableDescription = Der Box-KI-Dienst reagiert nicht.
|
|
49
|
+
# Box AI Q&A file too large error description
|
|
50
|
+
boxAI.contentAnswers.largeFileSizeErrorDescription = Box KI kann nicht auf den gesamten Text zugreifen, was sich möglicherweise auf die Antworten auswirkt.
|
|
51
|
+
# Box AI Q&A file too large error heading
|
|
52
|
+
boxAI.contentAnswers.largeFileSizeErrorHeading = Der Textinhalt dieser Datei ist zu groß für Box KI
|
|
53
|
+
# Aria label to show while waiting for the modal to load
|
|
54
|
+
boxAI.contentAnswers.loading = Laden …
|
|
55
|
+
# Aria label to show while waiting for an answer
|
|
56
|
+
boxAI.contentAnswers.loadingAnswer = Die Antwort wird geladen ...
|
|
57
|
+
# Error tooltip to show inside text area if the user reached the character limit
|
|
58
|
+
boxAI.contentAnswers.maxCharactersReachedError = Das Maximum an {characterLimit} Zeichen ist erreicht
|
|
59
|
+
# Loading message if there are no citations for an answer
|
|
60
|
+
boxAI.contentAnswers.noReferences = Antwort basierend auf allgemeiner Dokumentanalyse
|
|
61
|
+
# ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.
|
|
62
|
+
boxAI.contentAnswers.referenceAriaLabel = Referenz {number}
|
|
63
|
+
# Reset conversation button label
|
|
64
|
+
boxAI.contentAnswers.resetConversationLabel = Unterhaltung zurücksetzen
|
|
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 = Antwort fehlgeschlagen
|
|
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 = Antwort unterbrochen
|
|
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 = Antwort gestoppt
|
|
71
|
+
# Retry button label to send again the question to the service
|
|
72
|
+
boxAI.contentAnswers.retryResponse = Erneut versuchen
|
|
73
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
74
|
+
boxAI.contentAnswers.selectAgent = Wählen Sie einen Agenten aus
|
|
75
|
+
# Button label to stop streaming an answer
|
|
76
|
+
boxAI.contentAnswers.stopResponse = Antwort stoppen
|
|
77
|
+
# Suggested questions title
|
|
78
|
+
boxAI.contentAnswers.suggestedQuestions = Vorgeschlagene Fragen:
|
|
79
|
+
# Alt text for user avatar image
|
|
80
|
+
boxAI.contentAnswers.userAvatar = Benutzeravatar
|
|
81
|
+
# Content Answers welcome message for asking questions {Name} is the name of the content
|
|
82
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Fragen zu {name} stellen
|
|
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 = Dieser Chat wird gelöscht, wenn Sie diese(s) {type} schließen
|
|
85
|
+
# Content Answers welcome message title
|
|
86
|
+
boxAI.contentAnswers.welcomeMessageTitle = Willkommen bei Box KI!
|
|
87
|
+
# Text for close button in popup
|
|
88
|
+
boxAI.popup.closeButtonText = Schließen
|
|
89
|
+
# Text for copy button in input with copy button indicating copy success
|
|
90
|
+
boxAI.textInputWithCopyButton.copyButtonSuccessText = Kopiert
|
package/i18n/en-AU.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.contentAnswers.agent": "Agent",
|
|
3
|
+
"boxAI.contentAnswers.ask": "Ask",
|
|
4
|
+
"boxAI.contentAnswers.askDisabledTooltip": "You can submit another question once Box AI has finished responding",
|
|
5
|
+
"boxAI.contentAnswers.askQuestionPlaceholder": "Ask anything about this {type}",
|
|
6
|
+
"boxAI.contentAnswers.basedOn": "Based on:",
|
|
7
|
+
"boxAI.contentAnswers.cancel": "Cancel",
|
|
8
|
+
"boxAI.contentAnswers.cardTooltipButton": "Open document",
|
|
9
|
+
"boxAI.contentAnswers.cardTooltipTitle": "From document:",
|
|
10
|
+
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "From \"{title}\":",
|
|
11
|
+
"boxAI.contentAnswers.closeModalAriaLabel": "Close Modal",
|
|
12
|
+
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
13
|
+
"boxAI.contentAnswers.continueAnyway": "Continue anyway",
|
|
14
|
+
"boxAI.contentAnswers.copyToClipboard": "Copy to Clipboard",
|
|
15
|
+
"boxAI.contentAnswers.copyToClipboardSucceeded": "Copied to your clipboard",
|
|
16
|
+
"boxAI.contentAnswers.defaultTooltip": "Get instant answers about this document using Box AI",
|
|
17
|
+
"boxAI.contentAnswers.disabledTooltipAINotAvailable": "Box AI doesn't have permission to access this file",
|
|
18
|
+
"boxAI.contentAnswers.disabledTooltipFileNotCompatible": "Box AI is not currently supported for this file type",
|
|
19
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsFailed": "Unable to check permissions at this time. Reload this page to try again",
|
|
20
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsLoading": "Checking permissions...",
|
|
21
|
+
"boxAI.contentAnswers.hasQuestionsTooltip": "Return to Box AI",
|
|
22
|
+
"boxAI.contentAnswers.inlineErrorText": "The Box AI service was unavailable.",
|
|
23
|
+
"boxAI.contentAnswers.inlineRateLimitingErrorText": "Box AI currently has limited capacity (we're working to expand bandwidth). Please try again in a few minutes.",
|
|
24
|
+
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI is unavailable",
|
|
25
|
+
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Please try again later.",
|
|
26
|
+
"boxAI.contentAnswers.intelligenceUnavailableDescription": "The Box AI service is not responding.",
|
|
27
|
+
"boxAI.contentAnswers.largeFileSizeErrorDescription": "Box AI won’t be able to access the entire text, which might affect its answers.",
|
|
28
|
+
"boxAI.contentAnswers.largeFileSizeErrorHeading": "The text content of this file is too large for Box AI",
|
|
29
|
+
"boxAI.contentAnswers.loading": "Loading...",
|
|
30
|
+
"boxAI.contentAnswers.loadingAnswer": "Loading Answer...",
|
|
31
|
+
"boxAI.contentAnswers.maxCharactersReachedError": "Maximum of {characterLimit} characters reached",
|
|
32
|
+
"boxAI.contentAnswers.noReferences": "Response based on general document analysis",
|
|
33
|
+
"boxAI.contentAnswers.referenceAriaLabel": "Reference {number}",
|
|
34
|
+
"boxAI.contentAnswers.resetConversationLabel": "Reset conversation",
|
|
35
|
+
"boxAI.contentAnswers.responseFailedError": "Response Failed",
|
|
36
|
+
"boxAI.contentAnswers.responseInterruptedError": "Response Interrupted",
|
|
37
|
+
"boxAI.contentAnswers.responseStoppedError": "Response Stopped",
|
|
38
|
+
"boxAI.contentAnswers.retryResponse": "Retry",
|
|
39
|
+
"boxAI.contentAnswers.selectAgent": "Select an Agent",
|
|
40
|
+
"boxAI.contentAnswers.stopResponse": "Stop Response",
|
|
41
|
+
"boxAI.contentAnswers.suggestedQuestions": "Suggested Questions:",
|
|
42
|
+
"boxAI.contentAnswers.userAvatar": "User avatar",
|
|
43
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Ask questions about {name}",
|
|
44
|
+
"boxAI.contentAnswers.welcomeClearChatText": "This chat will be cleared when you close this {type}",
|
|
45
|
+
"boxAI.contentAnswers.welcomeMessageTitle": "Welcome to Box AI",
|
|
46
|
+
"boxAI.popup.closeButtonText": "Close",
|
|
47
|
+
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copied"
|
|
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 = Ask
|
|
5
|
+
# Content Answers submit input button disabled tooltip text when answer is generating
|
|
6
|
+
boxAI.contentAnswers.askDisabledTooltip = You can submit another question once Box AI has finished responding
|
|
7
|
+
# Content Answers modal input placeholder
|
|
8
|
+
boxAI.contentAnswers.askQuestionPlaceholder = Ask anything about this {type}
|
|
9
|
+
# Label for the references used for generating the answer from the AI service
|
|
10
|
+
boxAI.contentAnswers.basedOn = Based on:
|
|
11
|
+
# Box AI secondary action when file is too large
|
|
12
|
+
boxAI.contentAnswers.cancel = Cancel
|
|
13
|
+
# Title of citation card tooltip in answer references section
|
|
14
|
+
boxAI.contentAnswers.cardTooltipTitle = From document:
|
|
15
|
+
# Title of citation card tooltip in answer references section with document title
|
|
16
|
+
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = From "{title}":
|
|
17
|
+
# Content Answers close button aria label
|
|
18
|
+
boxAI.contentAnswers.closeModalAriaLabel = Close 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 = Continue anyway
|
|
23
|
+
# Copy to clipboard tooltip
|
|
24
|
+
boxAI.contentAnswers.copyToClipboard = Copy to Clipboard
|
|
25
|
+
# Notification displayed to the user when the answer has been successfully copied to the clipboard
|
|
26
|
+
boxAI.contentAnswers.copyToClipboardSucceeded = Copied to your clipboard
|
|
27
|
+
# Default tooltip message for Content Answers entry point button
|
|
28
|
+
boxAI.contentAnswers.defaultTooltip = Get instant answers about this document using 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 doesn't have permission to access this file
|
|
31
|
+
# Disabled tooltip message for Content Answers entry point button when the file type is not supported
|
|
32
|
+
boxAI.contentAnswers.disabledTooltipFileNotCompatible = Box AI is not currently supported for this file type
|
|
33
|
+
# Disabled tooltip message for the Content Answers entry point button when the permissions request fails
|
|
34
|
+
boxAI.contentAnswers.disabledTooltipPermissionsFailed = Unable to check permissions at this time. Reload this page to try again
|
|
35
|
+
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
36
|
+
boxAI.contentAnswers.disabledTooltipPermissionsLoading = Checking permissions...
|
|
37
|
+
# Existing questions tooltip message for Content Answers entry point button
|
|
38
|
+
boxAI.contentAnswers.hasQuestionsTooltip = Return to Box AI
|
|
39
|
+
# Content Answers error message when the service fails
|
|
40
|
+
boxAI.contentAnswers.inlineErrorText = The Box AI service was unavailable.
|
|
41
|
+
# Content Answers error message when the service fails due to rate limiting
|
|
42
|
+
boxAI.contentAnswers.inlineRateLimitingErrorText = Box AI currently has limited capacity (we're working to expand bandwidth). Please try again in a few minutes.
|
|
43
|
+
# Box AI Q&A service unavailable error title
|
|
44
|
+
boxAI.contentAnswers.intelligenceUnaivalableHeading = Box AI is unavailable
|
|
45
|
+
# Box AI Q&A service unavailable error try again later description
|
|
46
|
+
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Please try again later.
|
|
47
|
+
# Box AI Q&A service unavailable error description
|
|
48
|
+
boxAI.contentAnswers.intelligenceUnavailableDescription = The Box AI service is not responding.
|
|
49
|
+
# Box AI Q&A file too large error description
|
|
50
|
+
boxAI.contentAnswers.largeFileSizeErrorDescription = Box AI won’t be able to access the entire text, which might affect its answers.
|
|
51
|
+
# Box AI Q&A file too large error heading
|
|
52
|
+
boxAI.contentAnswers.largeFileSizeErrorHeading = The text content of this file is too large for Box AI
|
|
53
|
+
# Aria label to show while waiting for the modal to load
|
|
54
|
+
boxAI.contentAnswers.loading = Loading...
|
|
55
|
+
# Aria label to show while waiting for an answer
|
|
56
|
+
boxAI.contentAnswers.loadingAnswer = Loading Answer...
|
|
57
|
+
# Error tooltip to show inside text area if the user reached the character limit
|
|
58
|
+
boxAI.contentAnswers.maxCharactersReachedError = Maximum of {characterLimit} characters reached
|
|
59
|
+
# Loading message if there are no citations for an answer
|
|
60
|
+
boxAI.contentAnswers.noReferences = Response based on general document analysis
|
|
61
|
+
# ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.
|
|
62
|
+
boxAI.contentAnswers.referenceAriaLabel = Reference {number}
|
|
63
|
+
# Reset conversation button label
|
|
64
|
+
boxAI.contentAnswers.resetConversationLabel = Reset 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 = Response Failed
|
|
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 = Response Interrupted
|
|
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 = Response Stopped
|
|
71
|
+
# Retry button label to send again the question to the service
|
|
72
|
+
boxAI.contentAnswers.retryResponse = Retry
|
|
73
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
74
|
+
boxAI.contentAnswers.selectAgent = Select an Agent
|
|
75
|
+
# Button label to stop streaming an answer
|
|
76
|
+
boxAI.contentAnswers.stopResponse = Stop Response
|
|
77
|
+
# Suggested questions title
|
|
78
|
+
boxAI.contentAnswers.suggestedQuestions = Suggested Questions:
|
|
79
|
+
# Alt text for user avatar image
|
|
80
|
+
boxAI.contentAnswers.userAvatar = User avatar
|
|
81
|
+
# Content Answers welcome message for asking questions {Name} is the name of the content
|
|
82
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Ask questions about {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 = This chat will be cleared when you close this {type}
|
|
85
|
+
# Content Answers welcome message title
|
|
86
|
+
boxAI.contentAnswers.welcomeMessageTitle = Welcome to Box AI
|
|
87
|
+
# Text for close button in popup
|
|
88
|
+
boxAI.popup.closeButtonText = Close
|
|
89
|
+
# Text for copy button in input with copy button indicating copy success
|
|
90
|
+
boxAI.textInputWithCopyButton.copyButtonSuccessText = Copied
|
package/i18n/en-CA.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.contentAnswers.agent": "Agent",
|
|
3
|
+
"boxAI.contentAnswers.ask": "Ask",
|
|
4
|
+
"boxAI.contentAnswers.askDisabledTooltip": "You can submit another question once Box AI has finished responding",
|
|
5
|
+
"boxAI.contentAnswers.askQuestionPlaceholder": "Ask anything about this {type}",
|
|
6
|
+
"boxAI.contentAnswers.basedOn": "Based on:",
|
|
7
|
+
"boxAI.contentAnswers.cancel": "Cancel",
|
|
8
|
+
"boxAI.contentAnswers.cardTooltipButton": "Open document",
|
|
9
|
+
"boxAI.contentAnswers.cardTooltipTitle": "From document:",
|
|
10
|
+
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "From \"{title}\":",
|
|
11
|
+
"boxAI.contentAnswers.closeModalAriaLabel": "Close Modal",
|
|
12
|
+
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
13
|
+
"boxAI.contentAnswers.continueAnyway": "Continue anyway",
|
|
14
|
+
"boxAI.contentAnswers.copyToClipboard": "Copy to Clipboard",
|
|
15
|
+
"boxAI.contentAnswers.copyToClipboardSucceeded": "Copied to your clipboard",
|
|
16
|
+
"boxAI.contentAnswers.defaultTooltip": "Get instant answers about this document using Box AI",
|
|
17
|
+
"boxAI.contentAnswers.disabledTooltipAINotAvailable": "Box AI doesn't have permission to access this file",
|
|
18
|
+
"boxAI.contentAnswers.disabledTooltipFileNotCompatible": "Box AI is not currently supported for this file type",
|
|
19
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsFailed": "Unable to check permissions at this time. Reload this page to try again",
|
|
20
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsLoading": "Checking permissions...",
|
|
21
|
+
"boxAI.contentAnswers.hasQuestionsTooltip": "Return to Box AI",
|
|
22
|
+
"boxAI.contentAnswers.inlineErrorText": "The Box AI service was unavailable.",
|
|
23
|
+
"boxAI.contentAnswers.inlineRateLimitingErrorText": "Box AI currently has limited capacity (we're working to expand bandwidth). Please try again in a few minutes.",
|
|
24
|
+
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI is unavailable",
|
|
25
|
+
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Please try again later.",
|
|
26
|
+
"boxAI.contentAnswers.intelligenceUnavailableDescription": "The Box AI service is not responding.",
|
|
27
|
+
"boxAI.contentAnswers.largeFileSizeErrorDescription": "Box AI won’t be able to access the entire text, which might affect its answers.",
|
|
28
|
+
"boxAI.contentAnswers.largeFileSizeErrorHeading": "The text content of this file is too large for Box AI",
|
|
29
|
+
"boxAI.contentAnswers.loading": "Loading...",
|
|
30
|
+
"boxAI.contentAnswers.loadingAnswer": "Loading Answer...",
|
|
31
|
+
"boxAI.contentAnswers.maxCharactersReachedError": "Maximum of {characterLimit} characters reached",
|
|
32
|
+
"boxAI.contentAnswers.noReferences": "Response based on general document analysis",
|
|
33
|
+
"boxAI.contentAnswers.referenceAriaLabel": "Reference {number}",
|
|
34
|
+
"boxAI.contentAnswers.resetConversationLabel": "Reset conversation",
|
|
35
|
+
"boxAI.contentAnswers.responseFailedError": "Response Failed",
|
|
36
|
+
"boxAI.contentAnswers.responseInterruptedError": "Response Interrupted",
|
|
37
|
+
"boxAI.contentAnswers.responseStoppedError": "Response Stopped",
|
|
38
|
+
"boxAI.contentAnswers.retryResponse": "Retry",
|
|
39
|
+
"boxAI.contentAnswers.selectAgent": "Select an Agent",
|
|
40
|
+
"boxAI.contentAnswers.stopResponse": "Stop Response",
|
|
41
|
+
"boxAI.contentAnswers.suggestedQuestions": "Suggested Questions:",
|
|
42
|
+
"boxAI.contentAnswers.userAvatar": "User avatar",
|
|
43
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Ask questions about {name}",
|
|
44
|
+
"boxAI.contentAnswers.welcomeClearChatText": "This chat will be cleared when you close this {type}",
|
|
45
|
+
"boxAI.contentAnswers.welcomeMessageTitle": "Welcome to Box AI",
|
|
46
|
+
"boxAI.popup.closeButtonText": "Close",
|
|
47
|
+
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copied"
|
|
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 = Ask
|
|
5
|
+
# Content Answers submit input button disabled tooltip text when answer is generating
|
|
6
|
+
boxAI.contentAnswers.askDisabledTooltip = You can submit another question once Box AI has finished responding
|
|
7
|
+
# Content Answers modal input placeholder
|
|
8
|
+
boxAI.contentAnswers.askQuestionPlaceholder = Ask anything about this {type}
|
|
9
|
+
# Label for the references used for generating the answer from the AI service
|
|
10
|
+
boxAI.contentAnswers.basedOn = Based on:
|
|
11
|
+
# Box AI secondary action when file is too large
|
|
12
|
+
boxAI.contentAnswers.cancel = Cancel
|
|
13
|
+
# Title of citation card tooltip in answer references section
|
|
14
|
+
boxAI.contentAnswers.cardTooltipTitle = From document:
|
|
15
|
+
# Title of citation card tooltip in answer references section with document title
|
|
16
|
+
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = From "{title}":
|
|
17
|
+
# Content Answers close button aria label
|
|
18
|
+
boxAI.contentAnswers.closeModalAriaLabel = Close 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 = Continue anyway
|
|
23
|
+
# Copy to clipboard tooltip
|
|
24
|
+
boxAI.contentAnswers.copyToClipboard = Copy to Clipboard
|
|
25
|
+
# Notification displayed to the user when the answer has been successfully copied to the clipboard
|
|
26
|
+
boxAI.contentAnswers.copyToClipboardSucceeded = Copied to your clipboard
|
|
27
|
+
# Default tooltip message for Content Answers entry point button
|
|
28
|
+
boxAI.contentAnswers.defaultTooltip = Get instant answers about this document using 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 doesn't have permission to access this file
|
|
31
|
+
# Disabled tooltip message for Content Answers entry point button when the file type is not supported
|
|
32
|
+
boxAI.contentAnswers.disabledTooltipFileNotCompatible = Box AI is not currently supported for this file type
|
|
33
|
+
# Disabled tooltip message for the Content Answers entry point button when the permissions request fails
|
|
34
|
+
boxAI.contentAnswers.disabledTooltipPermissionsFailed = Unable to check permissions at this time. Reload this page to try again
|
|
35
|
+
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
36
|
+
boxAI.contentAnswers.disabledTooltipPermissionsLoading = Checking permissions...
|
|
37
|
+
# Existing questions tooltip message for Content Answers entry point button
|
|
38
|
+
boxAI.contentAnswers.hasQuestionsTooltip = Return to Box AI
|
|
39
|
+
# Content Answers error message when the service fails
|
|
40
|
+
boxAI.contentAnswers.inlineErrorText = The Box AI service was unavailable.
|
|
41
|
+
# Content Answers error message when the service fails due to rate limiting
|
|
42
|
+
boxAI.contentAnswers.inlineRateLimitingErrorText = Box AI currently has limited capacity (we're working to expand bandwidth). Please try again in a few minutes.
|
|
43
|
+
# Box AI Q&A service unavailable error title
|
|
44
|
+
boxAI.contentAnswers.intelligenceUnaivalableHeading = Box AI is unavailable
|
|
45
|
+
# Box AI Q&A service unavailable error try again later description
|
|
46
|
+
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Please try again later.
|
|
47
|
+
# Box AI Q&A service unavailable error description
|
|
48
|
+
boxAI.contentAnswers.intelligenceUnavailableDescription = The Box AI service is not responding.
|
|
49
|
+
# Box AI Q&A file too large error description
|
|
50
|
+
boxAI.contentAnswers.largeFileSizeErrorDescription = Box AI won’t be able to access the entire text, which might affect its answers.
|
|
51
|
+
# Box AI Q&A file too large error heading
|
|
52
|
+
boxAI.contentAnswers.largeFileSizeErrorHeading = The text content of this file is too large for Box AI
|
|
53
|
+
# Aria label to show while waiting for the modal to load
|
|
54
|
+
boxAI.contentAnswers.loading = Loading...
|
|
55
|
+
# Aria label to show while waiting for an answer
|
|
56
|
+
boxAI.contentAnswers.loadingAnswer = Loading Answer...
|
|
57
|
+
# Error tooltip to show inside text area if the user reached the character limit
|
|
58
|
+
boxAI.contentAnswers.maxCharactersReachedError = Maximum of {characterLimit} characters reached
|
|
59
|
+
# Loading message if there are no citations for an answer
|
|
60
|
+
boxAI.contentAnswers.noReferences = Response based on general document analysis
|
|
61
|
+
# ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.
|
|
62
|
+
boxAI.contentAnswers.referenceAriaLabel = Reference {number}
|
|
63
|
+
# Reset conversation button label
|
|
64
|
+
boxAI.contentAnswers.resetConversationLabel = Reset 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 = Response Failed
|
|
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 = Response Interrupted
|
|
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 = Response Stopped
|
|
71
|
+
# Retry button label to send again the question to the service
|
|
72
|
+
boxAI.contentAnswers.retryResponse = Retry
|
|
73
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
74
|
+
boxAI.contentAnswers.selectAgent = Select an Agent
|
|
75
|
+
# Button label to stop streaming an answer
|
|
76
|
+
boxAI.contentAnswers.stopResponse = Stop Response
|
|
77
|
+
# Suggested questions title
|
|
78
|
+
boxAI.contentAnswers.suggestedQuestions = Suggested Questions:
|
|
79
|
+
# Alt text for user avatar image
|
|
80
|
+
boxAI.contentAnswers.userAvatar = User avatar
|
|
81
|
+
# Content Answers welcome message for asking questions {Name} is the name of the content
|
|
82
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Ask questions about {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 = This chat will be cleared when you close this {type}
|
|
85
|
+
# Content Answers welcome message title
|
|
86
|
+
boxAI.contentAnswers.welcomeMessageTitle = Welcome to Box AI
|
|
87
|
+
# Text for close button in popup
|
|
88
|
+
boxAI.popup.closeButtonText = Close
|
|
89
|
+
# Text for copy button in input with copy button indicating copy success
|
|
90
|
+
boxAI.textInputWithCopyButton.copyButtonSuccessText = Copied
|
package/i18n/en-GB.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.contentAnswers.agent": "Agent",
|
|
3
|
+
"boxAI.contentAnswers.ask": "Ask",
|
|
4
|
+
"boxAI.contentAnswers.askDisabledTooltip": "You can submit another question once Box AI has finished responding",
|
|
5
|
+
"boxAI.contentAnswers.askQuestionPlaceholder": "Ask anything about this {type}",
|
|
6
|
+
"boxAI.contentAnswers.basedOn": "Based on:",
|
|
7
|
+
"boxAI.contentAnswers.cancel": "Cancel",
|
|
8
|
+
"boxAI.contentAnswers.cardTooltipButton": "Open document",
|
|
9
|
+
"boxAI.contentAnswers.cardTooltipTitle": "From document:",
|
|
10
|
+
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "From \"{title}\":",
|
|
11
|
+
"boxAI.contentAnswers.closeModalAriaLabel": "Close Modal",
|
|
12
|
+
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
13
|
+
"boxAI.contentAnswers.continueAnyway": "Continue anyway",
|
|
14
|
+
"boxAI.contentAnswers.copyToClipboard": "Copy to Clipboard",
|
|
15
|
+
"boxAI.contentAnswers.copyToClipboardSucceeded": "Copied to your clipboard",
|
|
16
|
+
"boxAI.contentAnswers.defaultTooltip": "Get instant answers about this document using Box AI",
|
|
17
|
+
"boxAI.contentAnswers.disabledTooltipAINotAvailable": "Box AI doesn't have permission to access this file",
|
|
18
|
+
"boxAI.contentAnswers.disabledTooltipFileNotCompatible": "Box AI is not currently supported for this file type",
|
|
19
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsFailed": "Unable to check permissions at this time. Reload this page to try again",
|
|
20
|
+
"boxAI.contentAnswers.disabledTooltipPermissionsLoading": "Checking permissions...",
|
|
21
|
+
"boxAI.contentAnswers.hasQuestionsTooltip": "Return to Box AI",
|
|
22
|
+
"boxAI.contentAnswers.inlineErrorText": "The Box AI service was unavailable.",
|
|
23
|
+
"boxAI.contentAnswers.inlineRateLimitingErrorText": "Box AI currently has limited capacity (we're working to expand bandwidth). Please try again in a few minutes.",
|
|
24
|
+
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI is unavailable",
|
|
25
|
+
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Please try again later.",
|
|
26
|
+
"boxAI.contentAnswers.intelligenceUnavailableDescription": "The Box AI service is not responding.",
|
|
27
|
+
"boxAI.contentAnswers.largeFileSizeErrorDescription": "Box AI won’t be able to access the entire text, which might affect its answers.",
|
|
28
|
+
"boxAI.contentAnswers.largeFileSizeErrorHeading": "The text content of this file is too large for Box AI",
|
|
29
|
+
"boxAI.contentAnswers.loading": "Loading...",
|
|
30
|
+
"boxAI.contentAnswers.loadingAnswer": "Loading Answer...",
|
|
31
|
+
"boxAI.contentAnswers.maxCharactersReachedError": "Maximum of {characterLimit} characters reached",
|
|
32
|
+
"boxAI.contentAnswers.noReferences": "Response based on general document analysis",
|
|
33
|
+
"boxAI.contentAnswers.referenceAriaLabel": "Reference {number}",
|
|
34
|
+
"boxAI.contentAnswers.resetConversationLabel": "Reset conversation",
|
|
35
|
+
"boxAI.contentAnswers.responseFailedError": "Response Failed",
|
|
36
|
+
"boxAI.contentAnswers.responseInterruptedError": "Response Interrupted",
|
|
37
|
+
"boxAI.contentAnswers.responseStoppedError": "Response Stopped",
|
|
38
|
+
"boxAI.contentAnswers.retryResponse": "Retry",
|
|
39
|
+
"boxAI.contentAnswers.selectAgent": "Select an Agent",
|
|
40
|
+
"boxAI.contentAnswers.stopResponse": "Stop Response",
|
|
41
|
+
"boxAI.contentAnswers.suggestedQuestions": "Suggested Questions:",
|
|
42
|
+
"boxAI.contentAnswers.userAvatar": "User avatar",
|
|
43
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Ask questions about {name}",
|
|
44
|
+
"boxAI.contentAnswers.welcomeClearChatText": "This chat will be cleared when you close this {type}",
|
|
45
|
+
"boxAI.contentAnswers.welcomeMessageTitle": "Welcome to Box AI",
|
|
46
|
+
"boxAI.popup.closeButtonText": "Close",
|
|
47
|
+
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copied"
|
|
48
|
+
}
|