@box/box-ai-content-answers 0.86.2 → 0.87.2
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/chunks/clear-conversation-button.js +12 -13
- package/chunks/markdown.js +12168 -0
- package/esm/lib/box-ai-content-answers.js +11 -12
- package/esm/lib/components/agents/agent-editor.js +7 -8
- package/esm/lib/components/agents/agent-selector.js +3 -4
- package/esm/lib/components/answer/answer-content.js +5 -6
- package/esm/lib/components/answer/answer.js +604 -107
- package/esm/lib/components/answer/citation.js +4 -5
- package/esm/lib/components/answer/inline-error.js +4 -5
- package/esm/lib/components/answer/loading-element.js +4 -5
- package/esm/lib/components/answer/references.js +19 -20
- package/esm/lib/components/answer/thumb-buttons.js +11 -12
- package/esm/lib/components/chat/chat.js +13 -14
- package/esm/lib/components/common/markdown.js +3 -12212
- package/esm/lib/components/common/media-container.js +10 -11
- package/esm/lib/components/content/content.js +4 -5
- package/esm/lib/components/footer/footer-actions.js +3 -4
- package/esm/lib/components/footer/footer.js +3 -4
- package/esm/lib/components/modal-error/modal-error.js +3 -4
- package/esm/lib/components/question/question.js +12 -13
- package/esm/lib/components/suggested-questions/suggested-questions.js +10 -11
- package/esm/lib/components/suggested-questions/suggestions.js +8 -9
- package/esm/lib/components/welcome-message/contextual-items-message.js +4 -5
- package/esm/lib/components/welcome-message/items-dropdown.js +15 -16
- package/esm/lib/components/welcome-message/unsupported-items-notice.js +9 -10
- package/esm/lib/components/welcome-message/welcome-message.js +11 -12
- package/i18n/bn-IN.js +3 -3
- package/i18n/bn-IN.properties +7 -3
- package/i18n/da-DK.js +3 -3
- package/i18n/da-DK.properties +7 -3
- package/i18n/de-DE.js +3 -3
- package/i18n/de-DE.properties +7 -3
- package/i18n/en-AU.js +3 -3
- package/i18n/en-AU.properties +7 -3
- package/i18n/en-CA.js +1 -1
- package/i18n/en-CA.properties +5 -1
- package/i18n/en-GB.js +3 -3
- package/i18n/en-GB.properties +7 -3
- package/i18n/en-x-pseudo.js +59 -59
- package/i18n/en-x-pseudo.properties +61 -57
- package/i18n/es-419.js +3 -3
- package/i18n/es-419.properties +7 -3
- package/i18n/es-ES.js +3 -3
- package/i18n/es-ES.properties +7 -3
- package/i18n/fi-FI.js +3 -3
- package/i18n/fi-FI.properties +7 -3
- package/i18n/fr-CA.js +3 -3
- package/i18n/fr-CA.properties +7 -3
- package/i18n/fr-FR.js +3 -3
- package/i18n/fr-FR.properties +7 -3
- package/i18n/hi-IN.js +3 -3
- package/i18n/hi-IN.properties +7 -3
- package/i18n/it-IT.js +3 -3
- package/i18n/it-IT.properties +7 -3
- package/i18n/ja-JP.js +4 -4
- package/i18n/ja-JP.properties +8 -4
- package/i18n/ko-KR.js +3 -3
- package/i18n/ko-KR.properties +7 -3
- package/i18n/nb-NO.js +3 -3
- package/i18n/nb-NO.properties +7 -3
- package/i18n/nl-NL.js +3 -3
- package/i18n/nl-NL.properties +7 -3
- package/i18n/pl-PL.js +3 -3
- package/i18n/pl-PL.properties +7 -3
- package/i18n/pt-BR.js +3 -3
- package/i18n/pt-BR.properties +7 -3
- package/i18n/ru-RU.js +3 -3
- package/i18n/ru-RU.properties +7 -3
- package/i18n/sv-SE.js +3 -3
- package/i18n/sv-SE.properties +7 -3
- package/i18n/tr-TR.js +3 -3
- package/i18n/tr-TR.properties +7 -3
- package/i18n/zh-CN.js +3 -3
- package/i18n/zh-CN.properties +7 -3
- package/i18n/zh-TW.js +3 -3
- package/i18n/zh-TW.properties +7 -3
- package/package.json +7 -7
- package/types/lib/box-ai-content-answers.d.ts +1 -1
- package/types/lib/components/agents/agent-editor.d.ts +1 -1
- package/types/lib/components/agents/agent-selector.d.ts +1 -1
- package/types/lib/components/agents/stories/shared.d.ts +3 -3
- package/types/lib/components/answer/answer-content.d.ts +2 -2
- package/types/lib/components/answer/answer.d.ts +1 -1
- package/types/lib/components/answer/citation.d.ts +1 -1
- package/types/lib/components/answer/copy-button.d.ts +1 -1
- package/types/lib/components/answer/inline-error.d.ts +1 -1
- package/types/lib/components/answer/loading-element.d.ts +1 -1
- package/types/lib/components/answer/no-citations.d.ts +1 -1
- package/types/lib/components/answer/references.d.ts +1 -1
- package/types/lib/components/answer/stories/shared.d.ts +1 -1
- package/types/lib/components/answer/thumb-buttons.d.ts +1 -1
- package/types/lib/components/api-wrapper/api-wrapper.d.ts +1 -1
- package/types/lib/components/api-wrapper/constants.d.ts +1 -1
- package/types/lib/components/api-wrapper/content-answers-component.d.ts +1 -1
- package/types/lib/components/api-wrapper/hooks/useContentAnswers.d.ts +4 -4
- package/types/lib/components/api-wrapper/records.d.ts +1 -1
- package/types/lib/components/api-wrapper/stories/shared.d.ts +1 -1
- package/types/lib/components/api-wrapper/test-utils/ReadableStreamSimulator.d.ts +1 -1
- package/types/lib/components/api-wrapper/types.d.ts +3 -3
- package/types/lib/components/api-wrapper/utils/format.d.ts +1 -1
- package/types/lib/components/api-wrapper/utils/request.d.ts +3 -3
- package/types/lib/components/api-wrapper/utils/stream.d.ts +1 -1
- package/types/lib/components/chat/chat.d.ts +1 -1
- package/types/lib/components/common/constants.d.ts +1 -1
- package/types/lib/components/common/media-container.d.ts +2 -2
- package/types/lib/components/common/mock-data.d.ts +4 -4
- package/types/lib/components/content/content.d.ts +1 -1
- package/types/lib/components/footer/footer-actions.d.ts +1 -1
- package/types/lib/components/footer/footer.d.ts +1 -1
- package/types/lib/components/footer/stories/shared.d.ts +7 -7
- package/types/lib/components/modal/modal.d.ts +5 -5
- package/types/lib/components/modal/stories/shared.d.ts +2 -2
- package/types/lib/components/modal-error/stories/shared.d.ts +1 -1
- package/types/lib/components/question/question.d.ts +1 -1
- package/types/lib/components/question/stories/shared.d.ts +1 -1
- package/types/lib/components/suggested-questions/mocks.d.ts +1 -1
- package/types/lib/components/suggested-questions/stories/shared.d.ts +1 -1
- package/types/lib/components/suggested-questions/suggested-questions.d.ts +1 -1
- package/types/lib/components/suggested-questions/suggestions.d.ts +1 -1
- package/types/lib/components/welcome-message/contextual-items-message.d.ts +1 -1
- package/types/lib/components/welcome-message/items-dropdown.d.ts +1 -1
- package/types/lib/components/welcome-message/stories/shared.d.ts +4 -4
- package/types/lib/components/welcome-message/unsupported-items-notice.d.ts +1 -1
- package/types/lib/components/welcome-message/welcome-message.d.ts +1 -1
- package/types/lib/contexts/AgentsContext.d.ts +1 -1
- package/types/lib/stories/shared.d.ts +3 -3
- package/types/lib/types.d.ts +2 -2
|
@@ -1,114 +1,118 @@
|
|
|
1
1
|
# AI agent label
|
|
2
|
-
boxAI.contentAnswers.agent = ⟦萬
|
|
2
|
+
boxAI.contentAnswers.agent = ⟦萬 Ãğėлŧ 國⟧
|
|
3
3
|
# Content Answers submit input button text
|
|
4
|
-
boxAI.contentAnswers.ask = ⟦
|
|
4
|
+
boxAI.contentAnswers.ask = ⟦ Âŝκ ⟧
|
|
5
5
|
# Content Answers submit input button disabled tooltip text when answer is generating
|
|
6
|
-
boxAI.contentAnswers.askDisabledTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
6
|
+
boxAI.contentAnswers.askDisabledTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ỳöũ ĉαη şûьmĭŧ αήôτĥěŗ qűēśτіōń őńćє ßōх ΑΪ ħáś ƒîйĭѕĥєď ŗёѕΡóйďілġ 國國國國國國國國國國國國國國國國國國國國⟧
|
|
7
7
|
# Content Answers modal input placeholder
|
|
8
|
-
boxAI.contentAnswers.askQuestionPlaceholder = ⟦萬萬萬萬萬萬萬萬
|
|
8
|
+
boxAI.contentAnswers.askQuestionPlaceholder = ⟦萬萬萬萬萬萬萬萬 Âѕк άйỳτнíηġ äвõŭŧ ŧħιѕ {type} 國國國國國國國國⟧
|
|
9
9
|
# Label for the references used for generating the answer from the AI service
|
|
10
|
-
boxAI.contentAnswers.basedOn = ⟦萬萬
|
|
10
|
+
boxAI.contentAnswers.basedOn = ⟦萬萬 Бäşëď ôл: 國國⟧
|
|
11
11
|
# Box AI secondary action when file is too large
|
|
12
|
-
boxAI.contentAnswers.cancel = ⟦萬
|
|
12
|
+
boxAI.contentAnswers.cancel = ⟦萬 Ĉäиćëľ 國⟧
|
|
13
13
|
# Text for button to open citation reference in a new tab
|
|
14
|
-
boxAI.contentAnswers.cardTooltipButton = ⟦萬萬萬
|
|
14
|
+
boxAI.contentAnswers.cardTooltipButton = ⟦萬萬萬 ÒΡëπ ďóсцmёʼnť 國國國⟧
|
|
15
15
|
# Title of citation card tooltip in answer references section
|
|
16
|
-
boxAI.contentAnswers.cardTooltipTitle = ⟦萬萬萬萬
|
|
16
|
+
boxAI.contentAnswers.cardTooltipTitle = ⟦萬萬萬萬 ₣яоm ďо¢ümέńť: 國國國國⟧
|
|
17
17
|
# Title of citation card tooltip in answer references section with document title
|
|
18
|
-
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = ⟦萬萬萬
|
|
18
|
+
boxAI.contentAnswers.cardTooltipTitleWithDocumentName = ⟦萬萬萬 ₣гóm "{title}": 國國國⟧
|
|
19
19
|
# Clear conversation button label
|
|
20
|
-
boxAI.contentAnswers.clearConversationLabel = ⟦萬萬萬萬萬
|
|
20
|
+
boxAI.contentAnswers.clearConversationLabel = ⟦萬萬萬萬萬 Ćĺеάг ċöňνëŕśåťισи 國國國國國⟧
|
|
21
21
|
# Content Answers close button aria label
|
|
22
|
-
boxAI.contentAnswers.closeModalAriaLabel = ⟦萬萬萬
|
|
22
|
+
boxAI.contentAnswers.closeModalAriaLabel = ⟦萬萬萬 Ĉļòѕё Мσďáľ 國國國⟧
|
|
23
23
|
# Content Answers collapse button aria label
|
|
24
|
-
boxAI.contentAnswers.collapseModalAriaLabel =
|
|
24
|
+
boxAI.contentAnswers.collapseModalAriaLabel = ⟦萬萬萬萬萬萬 Ѕщïţĉн τό śϊďêьαѓ νĩęω 國國國國國國⟧
|
|
25
25
|
# Content Answers feature name shown on menu item and modal title
|
|
26
|
-
boxAI.contentAnswers.contentAnswersTitle = ⟦萬
|
|
26
|
+
boxAI.contentAnswers.contentAnswersTitle = ⟦萬 βóх ÂΪ 國⟧
|
|
27
27
|
# Box AI primary action when file is too large
|
|
28
|
-
boxAI.contentAnswers.continueAnyway = ⟦萬萬萬萬
|
|
28
|
+
boxAI.contentAnswers.continueAnyway = ⟦萬萬萬萬 Ćòпŧїňûє αŋŷшåÿ 國國國國⟧
|
|
29
29
|
# Copy to clipboard tooltip
|
|
30
|
-
boxAI.contentAnswers.copyToClipboard = ⟦萬萬萬萬萬
|
|
30
|
+
boxAI.contentAnswers.copyToClipboard = ⟦萬萬萬萬萬 ĆøΡỳ ťŏ ĊĺίΡвοāяď 國國國國國⟧
|
|
31
31
|
# Notification displayed to the user when the answer has been successfully copied to the clipboard
|
|
32
|
-
boxAI.contentAnswers.copyToClipboardSucceeded = ⟦萬萬萬萬萬萬萬
|
|
32
|
+
boxAI.contentAnswers.copyToClipboardSucceeded = ⟦萬萬萬萬萬萬萬 ĆöΡїėď ŧø ŷσüř ĉľїΡьôářď 國國國國國國國⟧
|
|
33
33
|
# Default tooltip message for Content Answers entry point button
|
|
34
|
-
boxAI.contentAnswers.defaultTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
34
|
+
boxAI.contentAnswers.defaultTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ġĕť īиŝτάйţ áňśŵëŕŝ άьσŭť ťнïş ďõčűmêпτ ûşìлĝ Βό× ÄÎ 國國國國國國國國國國國國國國國⟧
|
|
35
35
|
# Disabled tooltip message for Content Answers entry point button when the file does not have the correct permissions
|
|
36
|
-
boxAI.contentAnswers.disabledTooltipAINotAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
36
|
+
boxAI.contentAnswers.disabledTooltipAINotAvailable = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Бōх ÃÌ ďŏέŝи'τ ħăνě Ρεґmιŝşϊоη ţŏ áссèѕş ŧĥιş ƒįĺε 國國國國國國國國國國國國國國⟧
|
|
37
37
|
# Disabled tooltip message for Content Answers entry point button when the file type is not supported
|
|
38
|
-
boxAI.contentAnswers.disabledTooltipFileNotCompatible = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
38
|
+
boxAI.contentAnswers.disabledTooltipFileNotCompatible = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 βô× ΆÌ їş йòţ ċūŗґéήτľỳ ŝцΡΡŏŕţėď ƒóя ŧĥιѕ ƒíĺè ţŷΡė 國國國國國國國國國國國國國國國⟧
|
|
39
39
|
# Disabled tooltip message for the Content Answers entry point button when the permissions request fails
|
|
40
|
-
boxAI.contentAnswers.disabledTooltipPermissionsFailed = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
40
|
+
boxAI.contentAnswers.disabledTooltipPermissionsFailed = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ųлãьĺē τò čĥεċķ Ρēŕmїśѕìôńś άτ ŧĥίś ťĩmе. Ґěľőåď τħïŝ Ρãġє τō ŧřУ äĝäīи 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
41
41
|
# Disabled tooltip message for the Content Answers entry point button while the AI file permissions are being loaded
|
|
42
|
-
boxAI.contentAnswers.disabledTooltipPermissionsLoading = ⟦萬萬萬萬萬萬
|
|
42
|
+
boxAI.contentAnswers.disabledTooltipPermissionsLoading = ⟦萬萬萬萬萬萬 Ćħеċкілĝ Ρёřmιŝşĭőńş... 國國國國國國⟧
|
|
43
43
|
# Existing questions tooltip message for Content Answers entry point button
|
|
44
|
-
boxAI.contentAnswers.hasQuestionsTooltip = ⟦萬萬萬萬
|
|
44
|
+
boxAI.contentAnswers.hasQuestionsTooltip = ⟦萬萬萬萬 Ґеţūґй ťö Βσх ǺÎ 國國國國⟧
|
|
45
45
|
# Content Answers error message when the answer fails due to an invalid agent
|
|
46
|
-
boxAI.contentAnswers.inlineAgentNotFoundErrorText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
46
|
+
boxAI.contentAnswers.inlineAgentNotFoundErrorText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťнē şεľęçţĕď äğêηţ ĭş ùήäνǻίļäвĺé. Şŵіŧċĥïиĝ ťо ŧĥέ ďĕƒąμĺţ άĝєņţ. 國國國國國國國國國國國國國國國國國國國⟧
|
|
47
47
|
# Content Answers error message when the service fails
|
|
48
|
-
boxAI.contentAnswers.inlineErrorText = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
48
|
+
boxAI.contentAnswers.inlineErrorText = ⟦萬萬萬萬萬萬萬萬萬萬 Ŧнě Βõх ÂÍ ŝëѓνί¢è ẃáѕ ùʼnāνäіľäвľĕ. 國國國國國國國國國國⟧
|
|
49
49
|
# Content Answers error message when the service returns 204 (no content)
|
|
50
|
-
boxAI.contentAnswers.inlineNoContentErrorText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
50
|
+
boxAI.contentAnswers.inlineNoContentErrorText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ŕεļęνàŋŧ ¢ōήťêпŧ ĉåńńōţ вέ ƒŏŭŋď. Pļèåѕе τґÿ αġăíπ ĺäŧέř òґ ǻśķ ā ďїƒƒęгëйŧ qцęśţϊõň. 國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
51
51
|
# Content Answers error message when the AI service has not yet processed the file
|
|
52
|
-
boxAI.contentAnswers.inlinePreconditionFailedErrorText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
52
|
+
boxAI.contentAnswers.inlinePreconditionFailedErrorText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Äďďιτïøήάļ ŧïmё їś йĕèďêď ţо Ρяø¢ęѕѕ ţĥīŝ {type}, Ρľėáşê ŧřÿ άġãîή ļάŧęѓ. 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
53
53
|
# Content Answers error message when the service fails due to rate limiting
|
|
54
|
-
boxAI.contentAnswers.inlineRateLimitingErrorText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
54
|
+
boxAI.contentAnswers.inlineRateLimitingErrorText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ßох ÄĪ çμяŕēηţļÿ ħãѕ ļїmіťêď ¢άΡäčïτў (ωē'яë щŏŗķіпġ τŏ èхΡäŋď ьăлďщіďťĥ). Pľěāŝĕ τґÿ ąġǻîŋ ìп ā ƒёŵ mįиůτεś. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
55
55
|
# Box AI Q&A service unavailable error title
|
|
56
|
-
boxAI.contentAnswers.intelligenceUnaivalableHeading = ⟦萬萬萬萬萬萬
|
|
56
|
+
boxAI.contentAnswers.intelligenceUnaivalableHeading = ⟦萬萬萬萬萬萬 Βσ× Ąİ īŝ ūʼnăνàїĺāвľė 國國國國國國⟧
|
|
57
57
|
# Box AI Q&A service unavailable error try again later description
|
|
58
|
-
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = ⟦萬萬萬萬萬萬 P
|
|
58
|
+
boxAI.contentAnswers.intelligenceUnaivalableTryAgain = ⟦萬萬萬萬萬萬 Pĺĕăѕé τгγ ǻġáïл ĺâťέѓ. 國國國國國國⟧
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
|
-
boxAI.contentAnswers.intelligenceUnavailableDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬
|
|
60
|
+
boxAI.contentAnswers.intelligenceUnavailableDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬 Ţнĕ βō× ΆÌ ѕëѓνĭćĕ їŝ ʼnόŧ яéŝΡοйďιлĝ. 國國國國國國國國國國國⟧
|
|
61
61
|
# Box AI Q&A file too large error description
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeErrorDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeErrorDescription = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 βò× ÅÍ ẃőň’ť ьē ăьļё ťο ąćčèŝś ŧħė ęήţïґє ťėхţ, щнïċĥ míġħŧ 僃ęсť ίťś äήśώęŕś. 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
63
63
|
# Box AI Q&A file too large error heading
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeErrorHeading = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeErrorHeading = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ťнé ťê×ţ ċøйŧёŋτ οƒ ŧħĩś ƒîĺě ìѕ ŧσо ľάѓġє ƒöг βőх ÃÎ 國國國國國國國國國國國國國國國⟧
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
|
-
boxAI.contentAnswers.loading = ⟦萬萬
|
|
66
|
+
boxAI.contentAnswers.loading = ⟦萬萬 Ļòáďíʼnğ... 國國⟧
|
|
67
67
|
# Aria label to show while waiting for an answer
|
|
68
|
-
boxAI.contentAnswers.loadingAnswer = ⟦萬萬萬萬萬
|
|
68
|
+
boxAI.contentAnswers.loadingAnswer = ⟦萬萬萬萬萬 Ŀóãďìиġ Ãņŝщεя... 國國國國國⟧
|
|
69
69
|
# Label when the suggested questions are loading
|
|
70
|
-
boxAI.contentAnswers.loadingSuggestedQuestions = ⟦萬萬萬萬萬
|
|
70
|
+
boxAI.contentAnswers.loadingSuggestedQuestions = ⟦萬萬萬萬萬 Ŀοàďīиġ ѕμġġèşťιοпѕ 國國國國國⟧
|
|
71
71
|
# Label when the suggested questions failed to load
|
|
72
|
-
boxAI.contentAnswers.loadingSuggestedQuestionsFailed = ⟦萬萬萬萬萬萬萬
|
|
72
|
+
boxAI.contentAnswers.loadingSuggestedQuestionsFailed = ⟦萬萬萬萬萬萬萬 Şűğĝēѕτіσйѕ ƒąіļéď ťó ĺōǻď 國國國國國國國⟧
|
|
73
73
|
# Error tooltip to show inside text area if the user reached the character limit
|
|
74
|
-
boxAI.contentAnswers.maxCharactersReachedError = ⟦萬萬萬萬萬萬萬萬萬萬
|
|
74
|
+
boxAI.contentAnswers.maxCharactersReachedError = ⟦萬萬萬萬萬萬萬萬萬萬 Мå×іmüm öƒ {characterLimit} ćħàřăċτєŕŝ гéäčħėď 國國國國國國國國國國⟧
|
|
75
75
|
# Label that shows within the modal to show how many files are not supported by Box AI due to file not having permissions
|
|
76
|
-
boxAI.contentAnswers.noPermissionsLabel = ⟦萬萬萬萬萬萬
|
|
76
|
+
boxAI.contentAnswers.noPermissionsLabel = ⟦萬萬萬萬萬萬 Ŋő ßöх ÁĨ Ρèřmϊѕŝїóņѕ 國國國國國國⟧
|
|
77
77
|
# Loading message if there are no citations for an answer
|
|
78
|
-
boxAI.contentAnswers.noReferences = ⟦萬萬萬萬萬萬萬萬萬萬萬萬
|
|
78
|
+
boxAI.contentAnswers.noReferences = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 ŔéѕΡôήѕè ьáŝèď öń ğėńеѓãļ ďó¢ųmëπτ ǻиãľỳşїś 國國國國國國國國國國國國⟧
|
|
79
79
|
# ARIA label designed for screen readers to enhance clarity during the reading of citations, minimizing confusion.
|
|
80
|
-
boxAI.contentAnswers.referenceAriaLabel = ⟦萬萬萬萬
|
|
80
|
+
boxAI.contentAnswers.referenceAriaLabel = ⟦萬萬萬萬 Γêƒēŗёņćę {number} 國國國國⟧
|
|
81
81
|
# Error message to be displayed within an answer during streaming mode if there was another error, such as network errors.
|
|
82
|
-
boxAI.contentAnswers.responseFailedError = ⟦萬萬萬萬
|
|
82
|
+
boxAI.contentAnswers.responseFailedError = ⟦萬萬萬萬 ҐеşΡοŋśе ₣ãĭĺêď 國國國國⟧
|
|
83
83
|
# Error message to be displayed within an answer during streaming mode if the answer was interrupted due to a lack of tokens.
|
|
84
|
-
boxAI.contentAnswers.responseInterruptedError = ⟦萬萬萬萬萬
|
|
84
|
+
boxAI.contentAnswers.responseInterruptedError = ⟦萬萬萬萬萬 ҐĕśΡόηŝè ΊлţėŕгųΡτēď 國國國國國⟧
|
|
85
85
|
# Error message to be displayed within an answer during streaming mode if the answer was stopped using the Stop Response button.
|
|
86
|
-
boxAI.contentAnswers.responseStoppedError = ⟦萬萬萬萬
|
|
86
|
+
boxAI.contentAnswers.responseStoppedError = ⟦萬萬萬萬 ŔεśΡõиśε ŚτőΡΡėď 國國國國⟧
|
|
87
87
|
# Retry button label to send again the question to the service
|
|
88
|
-
boxAI.contentAnswers.retryResponse = ⟦萬
|
|
88
|
+
boxAI.contentAnswers.retryResponse = ⟦萬 Řéτѓý 國⟧
|
|
89
89
|
# Label for the AI agent selector when the user has not selected any agent
|
|
90
|
-
boxAI.contentAnswers.selectAgent = ⟦萬萬萬萬
|
|
90
|
+
boxAI.contentAnswers.selectAgent = ⟦萬萬萬萬 Ѕέĺě¢ť άπ Ąğєňτ 國國國國⟧
|
|
91
91
|
# Button label to stop streaming an answer
|
|
92
|
-
boxAI.contentAnswers.stopResponse = ⟦萬萬萬
|
|
92
|
+
boxAI.contentAnswers.stopResponse = ⟦萬萬萬 ЅτοΡ ЃēśΡõлşė 國國國⟧
|
|
93
93
|
# Suggested questions title
|
|
94
|
-
boxAI.contentAnswers.suggestedQuestions = ⟦萬萬萬萬萬
|
|
94
|
+
boxAI.contentAnswers.suggestedQuestions = ⟦萬萬萬萬萬 Śũĝğēŝţèď Qûєśťïŏпѕ: 國國國國國⟧
|
|
95
|
+
# Aria label for thumbs down icon
|
|
96
|
+
boxAI.contentAnswers.thumbsDownAriaLabel = ⟦萬萬萬 Ŋōť нëľΡƒųĺ 國國國⟧
|
|
97
|
+
# Aria label for thumbs up icon
|
|
98
|
+
boxAI.contentAnswers.thumbsUpAriaLabel = ⟦萬萬 ĤеĺΡƒŭĺ 國國⟧
|
|
95
99
|
# Label that shows within the modal to show how many files are not supported by Box AI due to correct format
|
|
96
|
-
boxAI.contentAnswers.unsupportedFormatLabel = ⟦萬萬萬萬萬
|
|
100
|
+
boxAI.contentAnswers.unsupportedFormatLabel = ⟦萬萬萬萬萬 ÜήşùΡΡôгţеď ƒöяmàţ 國國國國國⟧
|
|
97
101
|
# Warning message that shows how many files are not supported by Box AI
|
|
98
|
-
boxAI.contentAnswers.unsupportedItems = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 {numberOfFiles, plural, one {{files}
|
|
102
|
+
boxAI.contentAnswers.unsupportedItems = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 {numberOfFiles, plural, one {{files} ĩѕ ûήåνâíľãвļе ƒôѓ Βох ÅĬ} other {{files} άŕĕ ŭπανąîľαвĺё ƒòѓ Бох Äİ} } 國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
99
103
|
# Alt text for user avatar image
|
|
100
|
-
boxAI.contentAnswers.userAvatar = ⟦萬萬萬
|
|
104
|
+
boxAI.contentAnswers.userAvatar = ⟦萬萬萬 Ūŝěř áνäτâř 國國國⟧
|
|
101
105
|
# Content Answers welcome message for asking questions. {firstItemName} is the name of the content, {files} is a list of items, and {parentItem} is the name of the parent item.
|
|
102
|
-
boxAI.contentAnswers.welcomeAskQuestionText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
106
|
+
boxAI.contentAnswers.welcomeAskQuestionText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Àşĸ qùëѕţϊόπѕ åьοµτ {numberOfItems, plural, one {{firstItemName}} other {ţĥêŝê {files}}}{parentItem, select, undefined {} other { їη {parentItem}}} 國國國國國國國國國國國國國國國國國國國國國⟧
|
|
103
107
|
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
104
|
-
boxAI.contentAnswers.welcomeClearChatText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬
|
|
108
|
+
boxAI.contentAnswers.welcomeClearChatText = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τħίŝ ¢ĥάτ ωіľļ вē ćĺёάяêď ωнêη Уόù ĉľŏŝе τħîş {type} 國國國國國國國國國國國國國國國⟧
|
|
105
109
|
# Link that show the number of files that are going to be displayed within the modal
|
|
106
|
-
boxAI.contentAnswers.welcomeMessageFilesLink = ⟦萬萬萬萬萬萬萬萬 {numberOfItems, plural, one {#
|
|
110
|
+
boxAI.contentAnswers.welcomeMessageFilesLink = ⟦萬萬萬萬萬萬萬萬 {numberOfItems, plural, one {# ƒïļě} other {# ƒïĺêś} } 國國國國國國國國⟧
|
|
107
111
|
# Link that show the number of items that are going to be displayed within the modal
|
|
108
|
-
boxAI.contentAnswers.welcomeMessageItemsLink = ⟦萬萬萬萬萬萬萬萬 {numberOfItems, plural, one {#
|
|
112
|
+
boxAI.contentAnswers.welcomeMessageItemsLink = ⟦萬萬萬萬萬萬萬萬 {numberOfItems, plural, one {# ìτēm} other {# íτěmş} } 國國國國國國國國⟧
|
|
109
113
|
# Content Answers welcome message title
|
|
110
|
-
boxAI.contentAnswers.welcomeMessageTitle = ⟦萬萬萬萬萬
|
|
114
|
+
boxAI.contentAnswers.welcomeMessageTitle = ⟦萬萬萬萬萬 Щęļсømę τő βŏх Åİ 國國國國國⟧
|
|
111
115
|
# Text for close button in popup
|
|
112
|
-
boxAI.popup.closeButtonText = ⟦萬
|
|
116
|
+
boxAI.popup.closeButtonText = ⟦萬 Čļōѕέ 國⟧
|
|
113
117
|
# Text for copy button in input with copy button indicating copy success
|
|
114
|
-
boxAI.textInputWithCopyButton.copyButtonSuccessText = ⟦萬
|
|
118
|
+
boxAI.textInputWithCopyButton.copyButtonSuccessText = ⟦萬 ĆοΡíëď 國⟧
|
package/i18n/es-419.js
CHANGED
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "De \"{title}\":",
|
|
11
11
|
"boxAI.contentAnswers.clearConversationLabel": "Eliminar conversación",
|
|
12
12
|
"boxAI.contentAnswers.closeModalAriaLabel": "Cerrar modal",
|
|
13
|
-
"boxAI.contentAnswers.collapseModalAriaLabel": "
|
|
13
|
+
"boxAI.contentAnswers.collapseModalAriaLabel": "Cambiar a la vista de barra lateral",
|
|
14
14
|
"boxAI.contentAnswers.contentAnswersTitle": "IA de Box",
|
|
15
15
|
"boxAI.contentAnswers.continueAnyway": "Continuar de todos modos",
|
|
16
16
|
"boxAI.contentAnswers.copyToClipboard": "Copiar al portapapeles",
|
|
@@ -51,10 +51,10 @@ export default {
|
|
|
51
51
|
"boxAI.contentAnswers.unsupportedFormatLabel": "Formato no compatible",
|
|
52
52
|
"boxAI.contentAnswers.unsupportedItems": "{numberOfFiles,plural,one{{files} is unavailable for Box AI} other{{files} are unavailable for Box AI}}",
|
|
53
53
|
"boxAI.contentAnswers.userAvatar": "Avatar del usuario",
|
|
54
|
-
"boxAI.contentAnswers.welcomeAskQuestionText": "Preguntar sobre {numberOfItems,plural,one{{firstItemName}}
|
|
54
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Preguntar sobre {numberOfItems,plural,one{{firstItemName}} other{estos{files}}}{parentItem,select,undefined{ } other{en {parentItem}}}",
|
|
55
55
|
"boxAI.contentAnswers.welcomeClearChatText": "Este chat se borrará cuando cierre este {type}",
|
|
56
56
|
"boxAI.contentAnswers.welcomeMessageFilesLink": "{numberOfItems,plural,one{# file} other{# files}}",
|
|
57
|
-
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,
|
|
57
|
+
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,plural,one{# elemento} other{# elementos}}",
|
|
58
58
|
"boxAI.contentAnswers.welcomeMessageTitle": "¡Te damos la bienvenida a Box AI!",
|
|
59
59
|
"boxAI.popup.closeButtonText": "Cerrar",
|
|
60
60
|
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copiado"
|
package/i18n/es-419.properties
CHANGED
|
@@ -21,7 +21,7 @@ boxAI.contentAnswers.clearConversationLabel = Eliminar conversación
|
|
|
21
21
|
# Content Answers close button aria label
|
|
22
22
|
boxAI.contentAnswers.closeModalAriaLabel = Cerrar modal
|
|
23
23
|
# Content Answers collapse button aria label
|
|
24
|
-
boxAI.contentAnswers.collapseModalAriaLabel =
|
|
24
|
+
boxAI.contentAnswers.collapseModalAriaLabel = Cambiar a la vista de barra lateral
|
|
25
25
|
# Content Answers feature name shown on menu item and modal title
|
|
26
26
|
boxAI.contentAnswers.contentAnswersTitle = IA de Box
|
|
27
27
|
# Box AI primary action when file is too large
|
|
@@ -92,6 +92,10 @@ boxAI.contentAnswers.selectAgent = Seleccionar un agente
|
|
|
92
92
|
boxAI.contentAnswers.stopResponse = Detener respuesta
|
|
93
93
|
# Suggested questions title
|
|
94
94
|
boxAI.contentAnswers.suggestedQuestions = Preguntas sugeridas:
|
|
95
|
+
# Aria label for thumbs down icon
|
|
96
|
+
boxAI.contentAnswers.thumbsDownAriaLabel = Not helpful
|
|
97
|
+
# Aria label for thumbs up icon
|
|
98
|
+
boxAI.contentAnswers.thumbsUpAriaLabel = Helpful
|
|
95
99
|
# Label that shows within the modal to show how many files are not supported by Box AI due to correct format
|
|
96
100
|
boxAI.contentAnswers.unsupportedFormatLabel = Formato no compatible
|
|
97
101
|
# Warning message that shows how many files are not supported by Box AI
|
|
@@ -99,13 +103,13 @@ boxAI.contentAnswers.unsupportedItems = {numberOfFiles,plural,one{{files} is una
|
|
|
99
103
|
# Alt text for user avatar image
|
|
100
104
|
boxAI.contentAnswers.userAvatar = Avatar del usuario
|
|
101
105
|
# Content Answers welcome message for asking questions. {firstItemName} is the name of the content, {files} is a list of items, and {parentItem} is the name of the parent item.
|
|
102
|
-
boxAI.contentAnswers.welcomeAskQuestionText = Preguntar sobre {numberOfItems,plural,one{{firstItemName}}
|
|
106
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Preguntar sobre {numberOfItems,plural,one{{firstItemName}} other{estos{files}}}{parentItem,select,undefined{ } other{en {parentItem}}}
|
|
103
107
|
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
104
108
|
boxAI.contentAnswers.welcomeClearChatText = Este chat se borrará cuando cierre este {type}
|
|
105
109
|
# Link that show the number of files that are going to be displayed within the modal
|
|
106
110
|
boxAI.contentAnswers.welcomeMessageFilesLink = {numberOfItems,plural,one{# file} other{# files}}
|
|
107
111
|
# Link that show the number of items that are going to be displayed within the modal
|
|
108
|
-
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,
|
|
112
|
+
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,plural,one{# elemento} other{# elementos}}
|
|
109
113
|
# Content Answers welcome message title
|
|
110
114
|
boxAI.contentAnswers.welcomeMessageTitle = ¡Te damos la bienvenida a Box AI!
|
|
111
115
|
# Text for close button in popup
|
package/i18n/es-ES.js
CHANGED
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "De \"{title}\":",
|
|
11
11
|
"boxAI.contentAnswers.clearConversationLabel": "Eliminar conversación",
|
|
12
12
|
"boxAI.contentAnswers.closeModalAriaLabel": "Cerrar modal",
|
|
13
|
-
"boxAI.contentAnswers.collapseModalAriaLabel": "
|
|
13
|
+
"boxAI.contentAnswers.collapseModalAriaLabel": "Cambiar a la vista de barra lateral",
|
|
14
14
|
"boxAI.contentAnswers.contentAnswersTitle": "IA de Box",
|
|
15
15
|
"boxAI.contentAnswers.continueAnyway": "Continuar de todos modos",
|
|
16
16
|
"boxAI.contentAnswers.copyToClipboard": "Copiar al portapapeles",
|
|
@@ -51,10 +51,10 @@ export default {
|
|
|
51
51
|
"boxAI.contentAnswers.unsupportedFormatLabel": "Formato no compatible",
|
|
52
52
|
"boxAI.contentAnswers.unsupportedItems": "{numberOfFiles,plural,one{{files} is unavailable for Box AI} other{{files} are unavailable for Box AI}}",
|
|
53
53
|
"boxAI.contentAnswers.userAvatar": "Avatar del usuario",
|
|
54
|
-
"boxAI.contentAnswers.welcomeAskQuestionText": "Preguntar sobre {numberOfItems,plural,one{{firstItemName}}
|
|
54
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Preguntar sobre {numberOfItems,plural,one{{firstItemName}} other{estos{files}}}{parentItem,select,undefined{ } other{en {parentItem}}}",
|
|
55
55
|
"boxAI.contentAnswers.welcomeClearChatText": "Este chat se borrará cuando cierre este {type}",
|
|
56
56
|
"boxAI.contentAnswers.welcomeMessageFilesLink": "{numberOfItems,plural,one{# file} other{# files}}",
|
|
57
|
-
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,
|
|
57
|
+
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,plural,one{# elemento} other{# elementos}}",
|
|
58
58
|
"boxAI.contentAnswers.welcomeMessageTitle": "¡Te damos la bienvenida a Box AI!",
|
|
59
59
|
"boxAI.popup.closeButtonText": "Cerrar",
|
|
60
60
|
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copiado"
|
package/i18n/es-ES.properties
CHANGED
|
@@ -21,7 +21,7 @@ boxAI.contentAnswers.clearConversationLabel = Eliminar conversación
|
|
|
21
21
|
# Content Answers close button aria label
|
|
22
22
|
boxAI.contentAnswers.closeModalAriaLabel = Cerrar modal
|
|
23
23
|
# Content Answers collapse button aria label
|
|
24
|
-
boxAI.contentAnswers.collapseModalAriaLabel =
|
|
24
|
+
boxAI.contentAnswers.collapseModalAriaLabel = Cambiar a la vista de barra lateral
|
|
25
25
|
# Content Answers feature name shown on menu item and modal title
|
|
26
26
|
boxAI.contentAnswers.contentAnswersTitle = IA de Box
|
|
27
27
|
# Box AI primary action when file is too large
|
|
@@ -92,6 +92,10 @@ boxAI.contentAnswers.selectAgent = Seleccionar un agente
|
|
|
92
92
|
boxAI.contentAnswers.stopResponse = Detener respuesta
|
|
93
93
|
# Suggested questions title
|
|
94
94
|
boxAI.contentAnswers.suggestedQuestions = Preguntas sugeridas:
|
|
95
|
+
# Aria label for thumbs down icon
|
|
96
|
+
boxAI.contentAnswers.thumbsDownAriaLabel = Not helpful
|
|
97
|
+
# Aria label for thumbs up icon
|
|
98
|
+
boxAI.contentAnswers.thumbsUpAriaLabel = Helpful
|
|
95
99
|
# Label that shows within the modal to show how many files are not supported by Box AI due to correct format
|
|
96
100
|
boxAI.contentAnswers.unsupportedFormatLabel = Formato no compatible
|
|
97
101
|
# Warning message that shows how many files are not supported by Box AI
|
|
@@ -99,13 +103,13 @@ boxAI.contentAnswers.unsupportedItems = {numberOfFiles,plural,one{{files} is una
|
|
|
99
103
|
# Alt text for user avatar image
|
|
100
104
|
boxAI.contentAnswers.userAvatar = Avatar del usuario
|
|
101
105
|
# Content Answers welcome message for asking questions. {firstItemName} is the name of the content, {files} is a list of items, and {parentItem} is the name of the parent item.
|
|
102
|
-
boxAI.contentAnswers.welcomeAskQuestionText = Preguntar sobre {numberOfItems,plural,one{{firstItemName}}
|
|
106
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Preguntar sobre {numberOfItems,plural,one{{firstItemName}} other{estos{files}}}{parentItem,select,undefined{ } other{en {parentItem}}}
|
|
103
107
|
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
104
108
|
boxAI.contentAnswers.welcomeClearChatText = Este chat se borrará cuando cierre este {type}
|
|
105
109
|
# Link that show the number of files that are going to be displayed within the modal
|
|
106
110
|
boxAI.contentAnswers.welcomeMessageFilesLink = {numberOfItems,plural,one{# file} other{# files}}
|
|
107
111
|
# Link that show the number of items that are going to be displayed within the modal
|
|
108
|
-
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,
|
|
112
|
+
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,plural,one{# elemento} other{# elementos}}
|
|
109
113
|
# Content Answers welcome message title
|
|
110
114
|
boxAI.contentAnswers.welcomeMessageTitle = ¡Te damos la bienvenida a Box AI!
|
|
111
115
|
# Text for close button in popup
|
package/i18n/fi-FI.js
CHANGED
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "Asiakirjasta ”{title}”:",
|
|
11
11
|
"boxAI.contentAnswers.clearConversationLabel": "Poista keskustelu",
|
|
12
12
|
"boxAI.contentAnswers.closeModalAriaLabel": "Sulje valintaikkuna",
|
|
13
|
-
"boxAI.contentAnswers.collapseModalAriaLabel": "
|
|
13
|
+
"boxAI.contentAnswers.collapseModalAriaLabel": "Vaihda sivupalkkinäkymään",
|
|
14
14
|
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
15
15
|
"boxAI.contentAnswers.continueAnyway": "Jatka joka tapauksessa",
|
|
16
16
|
"boxAI.contentAnswers.copyToClipboard": "Kopioi leikepöydälle",
|
|
@@ -51,10 +51,10 @@ export default {
|
|
|
51
51
|
"boxAI.contentAnswers.unsupportedFormatLabel": "Muotoa ei tueta",
|
|
52
52
|
"boxAI.contentAnswers.unsupportedItems": "{numberOfFiles,plural,one{{files} ei ole Box AI:n käytettävissä} other{{files} ei ole Box AI:n käytettävissä}}",
|
|
53
53
|
"boxAI.contentAnswers.userAvatar": "Käyttäjän avatar",
|
|
54
|
-
"boxAI.contentAnswers.welcomeAskQuestionText": "Kysy kysymyksiä
|
|
54
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Kysy kysymyksiä sisällöstä {numberOfItems,plural,one{{firstItemName}} other{nämä {files}}}{parentItem,select,undefined{ } other{sisään {parentItem}}}",
|
|
55
55
|
"boxAI.contentAnswers.welcomeClearChatText": "Keskustelu poistetaan, kun suljet kohteen {type}",
|
|
56
56
|
"boxAI.contentAnswers.welcomeMessageFilesLink": "{numberOfItems,plural,one{# tiedosto} other{# tiedostoa}}",
|
|
57
|
-
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,
|
|
57
|
+
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,plural,one{# kohde} other{# kohdetta}}",
|
|
58
58
|
"boxAI.contentAnswers.welcomeMessageTitle": "Tervetuloa Box AI -palveluun",
|
|
59
59
|
"boxAI.popup.closeButtonText": "Sulje",
|
|
60
60
|
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Kopioitu"
|
package/i18n/fi-FI.properties
CHANGED
|
@@ -21,7 +21,7 @@ boxAI.contentAnswers.clearConversationLabel = Poista keskustelu
|
|
|
21
21
|
# Content Answers close button aria label
|
|
22
22
|
boxAI.contentAnswers.closeModalAriaLabel = Sulje valintaikkuna
|
|
23
23
|
# Content Answers collapse button aria label
|
|
24
|
-
boxAI.contentAnswers.collapseModalAriaLabel =
|
|
24
|
+
boxAI.contentAnswers.collapseModalAriaLabel = Vaihda sivupalkkinäkymään
|
|
25
25
|
# Content Answers feature name shown on menu item and modal title
|
|
26
26
|
boxAI.contentAnswers.contentAnswersTitle = Box AI
|
|
27
27
|
# Box AI primary action when file is too large
|
|
@@ -92,6 +92,10 @@ boxAI.contentAnswers.selectAgent = Valitse edustaja
|
|
|
92
92
|
boxAI.contentAnswers.stopResponse = Pysäytä vastaus
|
|
93
93
|
# Suggested questions title
|
|
94
94
|
boxAI.contentAnswers.suggestedQuestions = Ehdotettuja kysymyksiä:
|
|
95
|
+
# Aria label for thumbs down icon
|
|
96
|
+
boxAI.contentAnswers.thumbsDownAriaLabel = Not helpful
|
|
97
|
+
# Aria label for thumbs up icon
|
|
98
|
+
boxAI.contentAnswers.thumbsUpAriaLabel = Helpful
|
|
95
99
|
# Label that shows within the modal to show how many files are not supported by Box AI due to correct format
|
|
96
100
|
boxAI.contentAnswers.unsupportedFormatLabel = Muotoa ei tueta
|
|
97
101
|
# Warning message that shows how many files are not supported by Box AI
|
|
@@ -99,13 +103,13 @@ boxAI.contentAnswers.unsupportedItems = {numberOfFiles,plural,one{{files} ei ole
|
|
|
99
103
|
# Alt text for user avatar image
|
|
100
104
|
boxAI.contentAnswers.userAvatar = Käyttäjän avatar
|
|
101
105
|
# Content Answers welcome message for asking questions. {firstItemName} is the name of the content, {files} is a list of items, and {parentItem} is the name of the parent item.
|
|
102
|
-
boxAI.contentAnswers.welcomeAskQuestionText = Kysy kysymyksiä
|
|
106
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Kysy kysymyksiä sisällöstä {numberOfItems,plural,one{{firstItemName}} other{nämä {files}}}{parentItem,select,undefined{ } other{sisään {parentItem}}}
|
|
103
107
|
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
104
108
|
boxAI.contentAnswers.welcomeClearChatText = Keskustelu poistetaan, kun suljet kohteen {type}
|
|
105
109
|
# Link that show the number of files that are going to be displayed within the modal
|
|
106
110
|
boxAI.contentAnswers.welcomeMessageFilesLink = {numberOfItems,plural,one{# tiedosto} other{# tiedostoa}}
|
|
107
111
|
# Link that show the number of items that are going to be displayed within the modal
|
|
108
|
-
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,
|
|
112
|
+
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,plural,one{# kohde} other{# kohdetta}}
|
|
109
113
|
# Content Answers welcome message title
|
|
110
114
|
boxAI.contentAnswers.welcomeMessageTitle = Tervetuloa Box AI -palveluun
|
|
111
115
|
# Text for close button in popup
|
package/i18n/fr-CA.js
CHANGED
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "De « {title} » :",
|
|
11
11
|
"boxAI.contentAnswers.clearConversationLabel": "Effacer la discussion",
|
|
12
12
|
"boxAI.contentAnswers.closeModalAriaLabel": "Fermer Modal",
|
|
13
|
-
"boxAI.contentAnswers.collapseModalAriaLabel": "
|
|
13
|
+
"boxAI.contentAnswers.collapseModalAriaLabel": "Passer à l'affichage de la barre latérale",
|
|
14
14
|
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
15
15
|
"boxAI.contentAnswers.continueAnyway": "Continuer malgré tout",
|
|
16
16
|
"boxAI.contentAnswers.copyToClipboard": "Copier dans le presse-papiers",
|
|
@@ -51,10 +51,10 @@ export default {
|
|
|
51
51
|
"boxAI.contentAnswers.unsupportedFormatLabel": "Format non pris en charge",
|
|
52
52
|
"boxAI.contentAnswers.unsupportedItems": "{numberOfFiles,plural,one{{files} n'est pas disponible pour Box AI} other{{files} ne sont pas disponibles pour Box AI} many{{files} ne sont pas disponibles pour Box AI}}",
|
|
53
53
|
"boxAI.contentAnswers.userAvatar": "Avatar de l'utilisateur",
|
|
54
|
-
"boxAI.contentAnswers.welcomeAskQuestionText": "Poser des questions à propos de {numberOfItems,plural,one{{firstItemName}}
|
|
54
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Poser des questions à propos de {numberOfItems,plural,one{{firstItemName}} other{ces {files}}}{parentItem,select,undefined{ } other{ dans {parentItem}}}",
|
|
55
55
|
"boxAI.contentAnswers.welcomeClearChatText": "Ce chat sera effacé lorsque vous fermerez ce {type}",
|
|
56
56
|
"boxAI.contentAnswers.welcomeMessageFilesLink": "{numberOfItems,plural,one{# fichier} other{# fichiers} many{# fichiers}}",
|
|
57
|
-
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,
|
|
57
|
+
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,plural,one{# élément} other{# éléments}}",
|
|
58
58
|
"boxAI.contentAnswers.welcomeMessageTitle": "Bienvenue dans Box AI",
|
|
59
59
|
"boxAI.popup.closeButtonText": "Fermer",
|
|
60
60
|
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copié"
|
package/i18n/fr-CA.properties
CHANGED
|
@@ -21,7 +21,7 @@ boxAI.contentAnswers.clearConversationLabel = Effacer la discussion
|
|
|
21
21
|
# Content Answers close button aria label
|
|
22
22
|
boxAI.contentAnswers.closeModalAriaLabel = Fermer Modal
|
|
23
23
|
# Content Answers collapse button aria label
|
|
24
|
-
boxAI.contentAnswers.collapseModalAriaLabel =
|
|
24
|
+
boxAI.contentAnswers.collapseModalAriaLabel = Passer à l'affichage de la barre latérale
|
|
25
25
|
# Content Answers feature name shown on menu item and modal title
|
|
26
26
|
boxAI.contentAnswers.contentAnswersTitle = Box AI
|
|
27
27
|
# Box AI primary action when file is too large
|
|
@@ -92,6 +92,10 @@ boxAI.contentAnswers.selectAgent = Sélectionner un agent
|
|
|
92
92
|
boxAI.contentAnswers.stopResponse = Arrêter la réponse
|
|
93
93
|
# Suggested questions title
|
|
94
94
|
boxAI.contentAnswers.suggestedQuestions = Questions suggérées :
|
|
95
|
+
# Aria label for thumbs down icon
|
|
96
|
+
boxAI.contentAnswers.thumbsDownAriaLabel = Not helpful
|
|
97
|
+
# Aria label for thumbs up icon
|
|
98
|
+
boxAI.contentAnswers.thumbsUpAriaLabel = Helpful
|
|
95
99
|
# Label that shows within the modal to show how many files are not supported by Box AI due to correct format
|
|
96
100
|
boxAI.contentAnswers.unsupportedFormatLabel = Format non pris en charge
|
|
97
101
|
# Warning message that shows how many files are not supported by Box AI
|
|
@@ -99,13 +103,13 @@ boxAI.contentAnswers.unsupportedItems = {numberOfFiles,plural,one{{files} n'est
|
|
|
99
103
|
# Alt text for user avatar image
|
|
100
104
|
boxAI.contentAnswers.userAvatar = Avatar de l'utilisateur
|
|
101
105
|
# Content Answers welcome message for asking questions. {firstItemName} is the name of the content, {files} is a list of items, and {parentItem} is the name of the parent item.
|
|
102
|
-
boxAI.contentAnswers.welcomeAskQuestionText = Poser des questions à propos de {numberOfItems,plural,one{{firstItemName}}
|
|
106
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Poser des questions à propos de {numberOfItems,plural,one{{firstItemName}} other{ces {files}}}{parentItem,select,undefined{ } other{ dans {parentItem}}}
|
|
103
107
|
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
104
108
|
boxAI.contentAnswers.welcomeClearChatText = Ce chat sera effacé lorsque vous fermerez ce {type}
|
|
105
109
|
# Link that show the number of files that are going to be displayed within the modal
|
|
106
110
|
boxAI.contentAnswers.welcomeMessageFilesLink = {numberOfItems,plural,one{# fichier} other{# fichiers} many{# fichiers}}
|
|
107
111
|
# Link that show the number of items that are going to be displayed within the modal
|
|
108
|
-
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,
|
|
112
|
+
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,plural,one{# élément} other{# éléments}}
|
|
109
113
|
# Content Answers welcome message title
|
|
110
114
|
boxAI.contentAnswers.welcomeMessageTitle = Bienvenue dans Box AI
|
|
111
115
|
# Text for close button in popup
|
package/i18n/fr-FR.js
CHANGED
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "De « {title} » :",
|
|
11
11
|
"boxAI.contentAnswers.clearConversationLabel": "Effacer la discussion",
|
|
12
12
|
"boxAI.contentAnswers.closeModalAriaLabel": "Fermer Modal",
|
|
13
|
-
"boxAI.contentAnswers.collapseModalAriaLabel": "
|
|
13
|
+
"boxAI.contentAnswers.collapseModalAriaLabel": "Passer à l'affichage de la barre latérale",
|
|
14
14
|
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
15
15
|
"boxAI.contentAnswers.continueAnyway": "Continuer malgré tout",
|
|
16
16
|
"boxAI.contentAnswers.copyToClipboard": "Copier dans le presse-papiers",
|
|
@@ -51,10 +51,10 @@ export default {
|
|
|
51
51
|
"boxAI.contentAnswers.unsupportedFormatLabel": "Format non pris en charge",
|
|
52
52
|
"boxAI.contentAnswers.unsupportedItems": "{numberOfFiles,plural,one{{files} n'est pas disponible pour Box AI} other{{files} ne sont pas disponibles pour Box AI} many{{files} ne sont pas disponibles pour Box AI}}",
|
|
53
53
|
"boxAI.contentAnswers.userAvatar": "Avatar de l'utilisateur",
|
|
54
|
-
"boxAI.contentAnswers.welcomeAskQuestionText": "Poser des questions à propos de {numberOfItems,plural,one{{firstItemName}}
|
|
54
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Poser des questions à propos de {numberOfItems,plural,one{{firstItemName}} other{ces {files}}}{parentItem,select,undefined{ } other{ dans {parentItem}}}",
|
|
55
55
|
"boxAI.contentAnswers.welcomeClearChatText": "Ce chat sera effacé lorsque vous fermerez ce {type}",
|
|
56
56
|
"boxAI.contentAnswers.welcomeMessageFilesLink": "{numberOfItems,plural,one{# fichier} other{# fichiers} many{# fichiers}}",
|
|
57
|
-
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,
|
|
57
|
+
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,plural,one{# élément} other{# éléments}}",
|
|
58
58
|
"boxAI.contentAnswers.welcomeMessageTitle": "Bienvenue dans Box AI",
|
|
59
59
|
"boxAI.popup.closeButtonText": "Fermer",
|
|
60
60
|
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copié"
|
package/i18n/fr-FR.properties
CHANGED
|
@@ -21,7 +21,7 @@ boxAI.contentAnswers.clearConversationLabel = Effacer la discussion
|
|
|
21
21
|
# Content Answers close button aria label
|
|
22
22
|
boxAI.contentAnswers.closeModalAriaLabel = Fermer Modal
|
|
23
23
|
# Content Answers collapse button aria label
|
|
24
|
-
boxAI.contentAnswers.collapseModalAriaLabel =
|
|
24
|
+
boxAI.contentAnswers.collapseModalAriaLabel = Passer à l'affichage de la barre latérale
|
|
25
25
|
# Content Answers feature name shown on menu item and modal title
|
|
26
26
|
boxAI.contentAnswers.contentAnswersTitle = Box AI
|
|
27
27
|
# Box AI primary action when file is too large
|
|
@@ -92,6 +92,10 @@ boxAI.contentAnswers.selectAgent = Sélectionner un agent
|
|
|
92
92
|
boxAI.contentAnswers.stopResponse = Arrêter la réponse
|
|
93
93
|
# Suggested questions title
|
|
94
94
|
boxAI.contentAnswers.suggestedQuestions = Questions suggérées :
|
|
95
|
+
# Aria label for thumbs down icon
|
|
96
|
+
boxAI.contentAnswers.thumbsDownAriaLabel = Not helpful
|
|
97
|
+
# Aria label for thumbs up icon
|
|
98
|
+
boxAI.contentAnswers.thumbsUpAriaLabel = Helpful
|
|
95
99
|
# Label that shows within the modal to show how many files are not supported by Box AI due to correct format
|
|
96
100
|
boxAI.contentAnswers.unsupportedFormatLabel = Format non pris en charge
|
|
97
101
|
# Warning message that shows how many files are not supported by Box AI
|
|
@@ -99,13 +103,13 @@ boxAI.contentAnswers.unsupportedItems = {numberOfFiles,plural,one{{files} n'est
|
|
|
99
103
|
# Alt text for user avatar image
|
|
100
104
|
boxAI.contentAnswers.userAvatar = Avatar de l'utilisateur
|
|
101
105
|
# Content Answers welcome message for asking questions. {firstItemName} is the name of the content, {files} is a list of items, and {parentItem} is the name of the parent item.
|
|
102
|
-
boxAI.contentAnswers.welcomeAskQuestionText = Poser des questions à propos de {numberOfItems,plural,one{{firstItemName}}
|
|
106
|
+
boxAI.contentAnswers.welcomeAskQuestionText = Poser des questions à propos de {numberOfItems,plural,one{{firstItemName}} other{ces {files}}}{parentItem,select,undefined{ } other{ dans {parentItem}}}
|
|
103
107
|
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
104
108
|
boxAI.contentAnswers.welcomeClearChatText = Ce chat sera effacé lorsque vous fermerez ce {type}
|
|
105
109
|
# Link that show the number of files that are going to be displayed within the modal
|
|
106
110
|
boxAI.contentAnswers.welcomeMessageFilesLink = {numberOfItems,plural,one{# fichier} other{# fichiers} many{# fichiers}}
|
|
107
111
|
# Link that show the number of items that are going to be displayed within the modal
|
|
108
|
-
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,
|
|
112
|
+
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,plural,one{# élément} other{# éléments}}
|
|
109
113
|
# Content Answers welcome message title
|
|
110
114
|
boxAI.contentAnswers.welcomeMessageTitle = Bienvenue dans Box AI
|
|
111
115
|
# Text for close button in popup
|
package/i18n/hi-IN.js
CHANGED
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "\"{title}\" से:",
|
|
11
11
|
"boxAI.contentAnswers.clearConversationLabel": "बातचीत मिटाएँ",
|
|
12
12
|
"boxAI.contentAnswers.closeModalAriaLabel": "मोडल बंद करें",
|
|
13
|
-
"boxAI.contentAnswers.collapseModalAriaLabel": "
|
|
13
|
+
"boxAI.contentAnswers.collapseModalAriaLabel": "साइडबार व्यू में स्विच करें",
|
|
14
14
|
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
15
15
|
"boxAI.contentAnswers.continueAnyway": "किसी भी तरह जारी रखें",
|
|
16
16
|
"boxAI.contentAnswers.copyToClipboard": "क्लिपबोर्ड में कॉपी करें",
|
|
@@ -51,10 +51,10 @@ export default {
|
|
|
51
51
|
"boxAI.contentAnswers.unsupportedFormatLabel": "असमर्थित प्रारूप",
|
|
52
52
|
"boxAI.contentAnswers.unsupportedItems": "{numberOfFiles,plural,one{{files}, Box AI के लिए अनुपलब्ध है} other{{files} , Box AI के लिए अनुपलब्ध हैं}}",
|
|
53
53
|
"boxAI.contentAnswers.userAvatar": "उपयोगकर्ता अवतार",
|
|
54
|
-
"boxAI.contentAnswers.welcomeAskQuestionText": "{parentItem,select,other{ {parentItem}
|
|
54
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "{parentItem,select,one{ } other{ में {parentItem}}}{numberOfItems,plural,one{{firstItemName}} other{इन {files}}} के बारे में सवाल पूछें",
|
|
55
55
|
"boxAI.contentAnswers.welcomeClearChatText": "जब आप यह {type} बंद करेंगे तब यह चैट साफ हो जाएगा",
|
|
56
56
|
"boxAI.contentAnswers.welcomeMessageFilesLink": "{numberOfItems,plural,one{# फ़ाइल} other{# फ़ाइलें}}",
|
|
57
|
-
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,
|
|
57
|
+
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,plural,one{# आइटम} other{# आइटम्स}}",
|
|
58
58
|
"boxAI.contentAnswers.welcomeMessageTitle": "Box AI में आपका स्वागत है",
|
|
59
59
|
"boxAI.popup.closeButtonText": "बंद करें",
|
|
60
60
|
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "कॉपी की गई"
|
package/i18n/hi-IN.properties
CHANGED
|
@@ -21,7 +21,7 @@ boxAI.contentAnswers.clearConversationLabel = बातचीत मिटाए
|
|
|
21
21
|
# Content Answers close button aria label
|
|
22
22
|
boxAI.contentAnswers.closeModalAriaLabel = मोडल बंद करें
|
|
23
23
|
# Content Answers collapse button aria label
|
|
24
|
-
boxAI.contentAnswers.collapseModalAriaLabel =
|
|
24
|
+
boxAI.contentAnswers.collapseModalAriaLabel = साइडबार व्यू में स्विच करें
|
|
25
25
|
# Content Answers feature name shown on menu item and modal title
|
|
26
26
|
boxAI.contentAnswers.contentAnswersTitle = Box AI
|
|
27
27
|
# Box AI primary action when file is too large
|
|
@@ -92,6 +92,10 @@ boxAI.contentAnswers.selectAgent = एक एजेंट चुनें
|
|
|
92
92
|
boxAI.contentAnswers.stopResponse = प्रतिक्रिया बंद करें
|
|
93
93
|
# Suggested questions title
|
|
94
94
|
boxAI.contentAnswers.suggestedQuestions = सुझाए गए सवाल:
|
|
95
|
+
# Aria label for thumbs down icon
|
|
96
|
+
boxAI.contentAnswers.thumbsDownAriaLabel = Not helpful
|
|
97
|
+
# Aria label for thumbs up icon
|
|
98
|
+
boxAI.contentAnswers.thumbsUpAriaLabel = Helpful
|
|
95
99
|
# Label that shows within the modal to show how many files are not supported by Box AI due to correct format
|
|
96
100
|
boxAI.contentAnswers.unsupportedFormatLabel = असमर्थित प्रारूप
|
|
97
101
|
# Warning message that shows how many files are not supported by Box AI
|
|
@@ -99,13 +103,13 @@ boxAI.contentAnswers.unsupportedItems = {numberOfFiles,plural,one{{files}, Box A
|
|
|
99
103
|
# Alt text for user avatar image
|
|
100
104
|
boxAI.contentAnswers.userAvatar = उपयोगकर्ता अवतार
|
|
101
105
|
# Content Answers welcome message for asking questions. {firstItemName} is the name of the content, {files} is a list of items, and {parentItem} is the name of the parent item.
|
|
102
|
-
boxAI.contentAnswers.welcomeAskQuestionText = {parentItem,select,other{ {parentItem}
|
|
106
|
+
boxAI.contentAnswers.welcomeAskQuestionText = {parentItem,select,one{ } other{ में {parentItem}}}{numberOfItems,plural,one{{firstItemName}} other{इन {files}}} के बारे में सवाल पूछें
|
|
103
107
|
# Content Answers welcome message for clearing the chat. {type} is the type of content that we are going to query
|
|
104
108
|
boxAI.contentAnswers.welcomeClearChatText = जब आप यह {type} बंद करेंगे तब यह चैट साफ हो जाएगा
|
|
105
109
|
# Link that show the number of files that are going to be displayed within the modal
|
|
106
110
|
boxAI.contentAnswers.welcomeMessageFilesLink = {numberOfItems,plural,one{# फ़ाइल} other{# फ़ाइलें}}
|
|
107
111
|
# Link that show the number of items that are going to be displayed within the modal
|
|
108
|
-
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,
|
|
112
|
+
boxAI.contentAnswers.welcomeMessageItemsLink = {numberOfItems,plural,one{# आइटम} other{# आइटम्स}}
|
|
109
113
|
# Content Answers welcome message title
|
|
110
114
|
boxAI.contentAnswers.welcomeMessageTitle = Box AI में आपका स्वागत है
|
|
111
115
|
# Text for close button in popup
|
package/i18n/it-IT.js
CHANGED
|
@@ -10,7 +10,7 @@ export default {
|
|
|
10
10
|
"boxAI.contentAnswers.cardTooltipTitleWithDocumentName": "Da \"{title}\":",
|
|
11
11
|
"boxAI.contentAnswers.clearConversationLabel": "Cancella conversazione",
|
|
12
12
|
"boxAI.contentAnswers.closeModalAriaLabel": "Chiudi modale",
|
|
13
|
-
"boxAI.contentAnswers.collapseModalAriaLabel": "
|
|
13
|
+
"boxAI.contentAnswers.collapseModalAriaLabel": "Passa alla visualizzazione “Barra laterale”",
|
|
14
14
|
"boxAI.contentAnswers.contentAnswersTitle": "Box AI",
|
|
15
15
|
"boxAI.contentAnswers.continueAnyway": "Continua comunque",
|
|
16
16
|
"boxAI.contentAnswers.copyToClipboard": "Copia negli appunti",
|
|
@@ -51,10 +51,10 @@ export default {
|
|
|
51
51
|
"boxAI.contentAnswers.unsupportedFormatLabel": "Formato non supportato",
|
|
52
52
|
"boxAI.contentAnswers.unsupportedItems": "{numberOfFiles,plural,one{{files} non è disponibile per Box AI} other{{files} non sono disponibili per Box AI}}",
|
|
53
53
|
"boxAI.contentAnswers.userAvatar": "Avatar utente",
|
|
54
|
-
"boxAI.contentAnswers.welcomeAskQuestionText": "Fai domande su {numberOfItems,plural,one{{firstItemName}}
|
|
54
|
+
"boxAI.contentAnswers.welcomeAskQuestionText": "Fai domande su {numberOfItems,plural,one{{firstItemName}} other{questi {files}}}{parentItem,select,undefined{ } other{ in {parentItem}}}",
|
|
55
55
|
"boxAI.contentAnswers.welcomeClearChatText": "Chiudendo {type}, questa chat verrà eliminata",
|
|
56
56
|
"boxAI.contentAnswers.welcomeMessageFilesLink": "{numberOfItems,plural,one{# file} many{# files} other{# files}}",
|
|
57
|
-
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,
|
|
57
|
+
"boxAI.contentAnswers.welcomeMessageItemsLink": "{numberOfItems,plural,one{# elemento} other{# elementi}}",
|
|
58
58
|
"boxAI.contentAnswers.welcomeMessageTitle": "Ti diamo il benvenuto in Box AI!",
|
|
59
59
|
"boxAI.popup.closeButtonText": "Chiudi",
|
|
60
60
|
"boxAI.textInputWithCopyButton.copyButtonSuccessText": "Copia eseguita"
|