@box/box-ai-content-answers 0.104.0 → 0.106.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/esm/index.js +16 -14
- package/esm/lib/hooks/usePromptFocus.js +34 -0
- package/i18n/bn-IN.js +2 -2
- package/i18n/bn-IN.properties +2 -2
- package/i18n/da-DK.js +2 -2
- package/i18n/da-DK.properties +2 -2
- package/i18n/de-DE.js +2 -2
- package/i18n/de-DE.properties +2 -2
- package/i18n/en-AU.js +2 -2
- package/i18n/en-AU.properties +2 -2
- package/i18n/en-GB.js +2 -2
- package/i18n/en-GB.properties +2 -2
- package/i18n/es-419.js +2 -2
- package/i18n/es-419.properties +2 -2
- package/i18n/es-ES.js +2 -2
- package/i18n/es-ES.properties +2 -2
- package/i18n/fi-FI.js +2 -2
- package/i18n/fi-FI.properties +2 -2
- package/i18n/fr-CA.js +2 -2
- package/i18n/fr-CA.properties +2 -2
- package/i18n/fr-FR.js +2 -2
- package/i18n/fr-FR.properties +2 -2
- package/i18n/hi-IN.js +2 -2
- package/i18n/hi-IN.properties +2 -2
- package/i18n/it-IT.js +2 -2
- package/i18n/it-IT.properties +2 -2
- package/i18n/ja-JP.js +2 -2
- package/i18n/ja-JP.properties +2 -2
- package/i18n/ko-KR.js +2 -2
- package/i18n/ko-KR.properties +2 -2
- package/i18n/nb-NO.js +2 -2
- package/i18n/nb-NO.properties +2 -2
- package/i18n/nl-NL.js +2 -2
- package/i18n/nl-NL.properties +2 -2
- package/i18n/pl-PL.js +2 -2
- package/i18n/pl-PL.properties +2 -2
- package/i18n/pt-BR.js +2 -2
- package/i18n/pt-BR.properties +2 -2
- package/i18n/ru-RU.js +2 -2
- package/i18n/ru-RU.properties +2 -2
- package/i18n/sv-SE.js +2 -2
- package/i18n/sv-SE.properties +2 -2
- package/i18n/tr-TR.js +2 -2
- package/i18n/tr-TR.properties +2 -2
- package/i18n/zh-CN.js +2 -2
- package/i18n/zh-CN.properties +2 -2
- package/i18n/zh-TW.js +2 -2
- package/i18n/zh-TW.properties +2 -2
- package/package.json +3 -3
- package/types/index.d.ts +1 -0
- package/types/lib/hooks/usePromptFocus.d.ts +3 -0
- package/types/lib/stories/shared.d.ts +1 -0
package/esm/index.js
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
import { BoxAiContentAnswers as e } from "./lib/box-ai-content-answers.js";
|
|
2
|
-
import { AnswerContent as
|
|
3
|
-
import { withApiWrapper as
|
|
4
|
-
import { C as
|
|
5
|
-
import { IntelligenceModal as
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
2
|
+
import { AnswerContent as p } from "./lib/components/answer/answer-content.js";
|
|
3
|
+
import { withApiWrapper as s } from "./lib/components/api-wrapper/api-wrapper.js";
|
|
4
|
+
import { C as x } from "../chunks/clear-conversation-button.js";
|
|
5
|
+
import { IntelligenceModal as a } from "./lib/components/modal/modal.js";
|
|
6
|
+
import { usePromptFocus as A } from "./lib/hooks/usePromptFocus.js";
|
|
7
|
+
import { A as C, C as i, R as T } from "../chunks/types.js";
|
|
8
|
+
import { APP_MODE as O } from "./lib/constants.js";
|
|
8
9
|
export {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
C as ANSWER_ERROR,
|
|
11
|
+
O as APP_MODE,
|
|
12
|
+
p as AnswerContent,
|
|
12
13
|
e as BoxAiContentAnswers,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
i as CONTENT_ERROR,
|
|
15
|
+
x as ClearConversationButton,
|
|
16
|
+
a as IntelligenceModal,
|
|
17
|
+
T as REQUEST_STATE,
|
|
18
|
+
A as usePromptFocus,
|
|
19
|
+
s as withApiWrapper
|
|
18
20
|
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { useRef as c, useEffect as u } from "react";
|
|
2
|
+
import { INPUT_TARGET_ID as s } from "../components/footer/constants.js";
|
|
3
|
+
const l = (o, e, n) => () => {
|
|
4
|
+
const r = e.querySelector(o);
|
|
5
|
+
r && (r.focus(), n());
|
|
6
|
+
}, i = (o, e, n) => {
|
|
7
|
+
const r = document.querySelector(e);
|
|
8
|
+
if (!r)
|
|
9
|
+
return null;
|
|
10
|
+
const t = new MutationObserver(l(o, r, () => {
|
|
11
|
+
t.disconnect(), n();
|
|
12
|
+
}));
|
|
13
|
+
return t.observe(document, {
|
|
14
|
+
childList: !0,
|
|
15
|
+
subtree: !0
|
|
16
|
+
}), t;
|
|
17
|
+
};
|
|
18
|
+
function a(o) {
|
|
19
|
+
const e = c(null), n = `[data-target-id="${s}"]`, r = () => {
|
|
20
|
+
const t = document.querySelector(n);
|
|
21
|
+
t ? t.focus() : e != null && e.current || (e.current = i(n, o, () => {
|
|
22
|
+
e.current = null;
|
|
23
|
+
}));
|
|
24
|
+
};
|
|
25
|
+
return u(() => () => {
|
|
26
|
+
var t;
|
|
27
|
+
(t = e == null ? void 0 : e.current) == null || t.disconnect();
|
|
28
|
+
}, [e]), {
|
|
29
|
+
focusPrompt: r
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
export {
|
|
33
|
+
a as usePromptFocus
|
|
34
|
+
};
|
package/i18n/bn-IN.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI পাওয়া যাচ্ছে না",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "অনুগ্রহ করে পরে আবার চেষ্টা করুন।",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI পরিষেবা উত্তর দিচ্ছে না।",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI সম্পূর্ণ টেক্সট অ্যাক্সেস করতে পারবে না, যা এটির
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Box AI-এর পক্ষে প্রক্রিয়া করার জন্য {numberOfItems,plural,=1{এই ফাইল} other{এক বা একাধিক ফাইল}} এর টেক্সটের বিষয়বস্তু অনেক বড়।",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI সম্পূর্ণ {numberOfItems,plural,=1{টেক্সট} other{বিষয়বস্তু} one{টেক্সট}} অ্যাক্সেস করতে পারবে না, যা এটির উত্তরে প্রভাব ফেলতে পারে।",
|
|
34
34
|
"boxAI.contentAnswers.loading": "লোড করা হচ্ছে...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "উত্তর লোড হচ্ছে...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "পরামর্শ লোড হচ্ছে",
|
package/i18n/bn-IN.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = অনুগ্রহ ক
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI পরিষেবা উত্তর দিচ্ছে না।
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription =
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Box AI-এর পক্ষে প্রক্রিয়া করার জন্য {numberOfItems,plural,=1{এই ফাইল} other{এক বা একাধিক ফাইল}} এর টেক্সটের বিষয়বস্তু অনেক বড়।
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI সম্পূর্ণ টেক্সট অ্যাক্সেস করতে পারবে না, যা এটির
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI সম্পূর্ণ {numberOfItems,plural,=1{টেক্সট} other{বিষয়বস্তু} one{টেক্সট}} অ্যাক্সেস করতে পারবে না, যা এটির উত্তরে প্রভাব ফেলতে পারে।
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = লোড করা হচ্ছে...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/da-DK.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI er ikke tilgængelig",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Prøv igen senere.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI-tjenesten reagerer ikke.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Tekstindholdet i denne fil er for stort til, at Box AI kan behandle det.",
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI vil ikke kunne
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Tekstindholdet i {numberOfItems,plural,=1{denne fil} other{en eller flere filer}} er for stort til, at Box AI kan behandle det.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI vil ikke kunne få adgang til hele {numberOfItems,plural,=1{texst} other{indhold}}, hvilket kan påvirke dens svar.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Indlæser ...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Indlæser svar ...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Indlæsning af forslag",
|
package/i18n/da-DK.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Prøv igen senere.
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI-tjenesten reagerer ikke.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = Tekstindholdet i denne fil er for stort til, at Box AI kan behandle det.
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Tekstindholdet i {numberOfItems,plural,=1{denne fil} other{en eller flere filer}} er for stort til, at Box AI kan behandle det.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI vil ikke kunne
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI vil ikke kunne få adgang til hele {numberOfItems,plural,=1{texst} other{indhold}}, hvilket kan påvirke dens svar.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Indlæser ...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/de-DE.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box-KI ist nicht verfügbar",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Versuchen Sie es bitte später erneut.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Der Box-KI-Dienst reagiert nicht.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Der Textinhalt dieser Datei ist zu
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Der Textinhalt von {numberOfItems,plural,=1{dieser Datei} other{einer oder mehreren Dateien} one{einer Datei}} ist zu umfangreich für die Verarbeitung durch Box AI.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI kann nicht auf den gesamten {numberOfItems,plural,=1{Text} other{Inhalt} one{Text}} zugreifen, was sich auf die Antworten auswirken kann.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Laden …",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Die Antwort wird geladen ...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Vorschläge werden geladen",
|
package/i18n/de-DE.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Versuchen Sie es bitte sp
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Der Box-KI-Dienst reagiert nicht.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = Der Textinhalt dieser Datei ist zu
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Der Textinhalt von {numberOfItems,plural,=1{dieser Datei} other{einer oder mehreren Dateien} one{einer Datei}} ist zu umfangreich für die Verarbeitung durch Box AI.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI kann nicht auf den gesamten {numberOfItems,plural,=1{Text} other{Inhalt} one{Text}} zugreifen, was sich auf die Antworten auswirken kann.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Laden …
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/en-AU.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI is unavailable",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Please try again later.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "The Box AI service is not responding.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "The text content of this file is too large for Box AI to process.",
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI won
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "The text content of {numberOfItems,plural,=1{this file} one{this file} other{one or more files}} is too large for Box AI to process.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI won't be able to access the entire {numberOfItems,plural,=1{text} one{text} other{content}}, which might affect its answers.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Loading...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Loading Answer...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Loading suggestions",
|
package/i18n/en-AU.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Please try again later.
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = The Box AI service is not responding.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = The text content of this file is too large for Box AI to process.
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = The text content of {numberOfItems,plural,=1{this file} one{this file} other{one or more files}} is too large for Box AI to process.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI won
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI won't be able to access the entire {numberOfItems,plural,=1{text} one{text} other{content}}, which might affect its answers.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Loading...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/en-GB.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI is unavailable",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Please try again later.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "The Box AI service is not responding.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "The text content of this file is too large for Box AI to process.",
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI won
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "The text content of {numberOfItems,plural,=1{this file} one{this file} other{one or more files}} is too large for Box AI to process.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI won't be able to access the entire {numberOfItems,plural,=1{text} one{text} other{content}}, which might affect its answers.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Loading...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Loading Answer...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Loading suggestions",
|
package/i18n/en-GB.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Please try again later.
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = The Box AI service is not responding.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = The text content of this file is too large for Box AI to process.
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = The text content of {numberOfItems,plural,=1{this file} one{this file} other{one or more files}} is too large for Box AI to process.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI won
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI won't be able to access the entire {numberOfItems,plural,=1{text} one{text} other{content}}, which might affect its answers.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Loading...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/es-419.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI no está disponible",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Inténtelo de nuevo más tarde.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "El servicio Box AI no está respondiendo.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "El contenido de texto de este archivo es demasiado grande para que lo procese
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI no podrá acceder
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "El contenido de texto de {numberOfItems,plural,=1{este archivo} other{uno o más archivos} one{este archivo}} es demasiado grande para que Box AI lo procese.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI no podrá acceder al {numberOfItems,plural,=1{texto} other{contenido} one{texto}} completo, lo que podría afectar a sus respuestas.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Cargando…",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Cargando respuesta...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Cargando sugerencias",
|
package/i18n/es-419.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Inténtelo de nuevo más
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = El servicio Box AI no está respondiendo.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = El contenido de texto de este archivo es demasiado grande para que lo procese
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = El contenido de texto de {numberOfItems,plural,=1{este archivo} other{uno o más archivos} one{este archivo}} es demasiado grande para que Box AI lo procese.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI no podrá acceder
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI no podrá acceder al {numberOfItems,plural,=1{texto} other{contenido} one{texto}} completo, lo que podría afectar a sus respuestas.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Cargando…
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/es-ES.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI no está disponible",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Inténtelo de nuevo más tarde.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "El servicio Box AI no está respondiendo.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "El contenido de texto de este archivo es demasiado grande para que lo procese
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI no podrá acceder
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "El contenido de texto de {numberOfItems,plural,=1{este archivo} other{uno o más archivos} one{este archivo}} es demasiado grande para que Box AI lo procese.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI no podrá acceder al {numberOfItems,plural,=1{texto} other{contenido} one{texto}} completo, lo que podría afectar a sus respuestas.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Cargando…",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Cargando respuesta...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Cargando sugerencias",
|
package/i18n/es-ES.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Inténtelo de nuevo más
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = El servicio Box AI no está respondiendo.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = El contenido de texto de este archivo es demasiado grande para que lo procese
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = El contenido de texto de {numberOfItems,plural,=1{este archivo} other{uno o más archivos} one{este archivo}} es demasiado grande para que Box AI lo procese.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI no podrá acceder
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI no podrá acceder al {numberOfItems,plural,=1{texto} other{contenido} one{texto}} completo, lo que podría afectar a sus respuestas.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Cargando…
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/fi-FI.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI ei ole käytettävissä",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Yritä myöhemmin uudelleen.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI -palvelu ei vastaa.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI ei voi käyttää koko
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Tekstisisältö {numberOfItems,plural,=1{tässä tiedostossa} other{vähintään yhdessä tiedostossa} one{tässä tiedostossa}} on liian suuri Box AI:n käsiteltäväksi.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI ei voi käyttää koko {numberOfItems,plural,=1{tekstiä} other{sisältöä} one{tekstiä}}, mikä voi vaikuttaa sen vastauksiin.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Ladataan...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Ladataan vastausta...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Ladataan ehdotuksia",
|
package/i18n/fi-FI.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Yritä myöhemmin uudelle
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI -palvelu ei vastaa.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription =
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Tekstisisältö {numberOfItems,plural,=1{tässä tiedostossa} other{vähintään yhdessä tiedostossa} one{tässä tiedostossa}} on liian suuri Box AI:n käsiteltäväksi.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI ei voi käyttää koko
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI ei voi käyttää koko {numberOfItems,plural,=1{tekstiä} other{sisältöä} one{tekstiä}}, mikä voi vaikuttaa sen vastauksiin.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Ladataan...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/fr-CA.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI n’est pas disponible",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Veuillez réessayer ultérieurement.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Le service Box AI ne répond pas.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Le contenu textuel de ce fichier est trop volumineux pour être traité par Box AI.",
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI ne pourra pas accéder à l'
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Le contenu textuel de {numberOfItems,plural,=1{ce fichier} other{un ou plusieurs fichiers} one{ce fichier}} est trop volumineux pour être traité par Box AI.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI ne pourra pas accéder à l'ensemble du {numberOfItems,plural,=1{texte} other{contenu} one{texte}}, ce qui pourrait affecter ses réponses.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Chargement en cours...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Chargement de la réponse...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Chargement des suggestions",
|
package/i18n/fr-CA.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Veuillez réessayer ulté
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Le service Box AI ne répond pas.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = Le contenu textuel de ce fichier est trop volumineux pour être traité par Box AI.
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Le contenu textuel de {numberOfItems,plural,=1{ce fichier} other{un ou plusieurs fichiers} one{ce fichier}} est trop volumineux pour être traité par Box AI.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI ne pourra pas accéder à l'
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI ne pourra pas accéder à l'ensemble du {numberOfItems,plural,=1{texte} other{contenu} one{texte}}, ce qui pourrait affecter ses réponses.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Chargement en cours...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/fr-FR.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI n’est pas disponible",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Veuillez réessayer ultérieurement.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Le service Box AI ne répond pas.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Le contenu textuel de ce fichier est trop volumineux pour être traité par Box AI.",
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI ne pourra pas accéder à l'
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Le contenu textuel de {numberOfItems,plural,=1{ce fichier} other{un ou plusieurs fichiers} one{ce fichier}} est trop volumineux pour être traité par Box AI.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI ne pourra pas accéder à l'ensemble du {numberOfItems,plural,=1{texte} other{contenu} one{texte}}, ce qui pourrait affecter ses réponses.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Chargement en cours...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Chargement de la réponse...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Chargement des suggestions",
|
package/i18n/fr-FR.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Veuillez réessayer ulté
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Le service Box AI ne répond pas.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = Le contenu textuel de ce fichier est trop volumineux pour être traité par Box AI.
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Le contenu textuel de {numberOfItems,plural,=1{ce fichier} other{un ou plusieurs fichiers} one{ce fichier}} est trop volumineux pour être traité par Box AI.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI ne pourra pas accéder à l'
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI ne pourra pas accéder à l'ensemble du {numberOfItems,plural,=1{texte} other{contenu} one{texte}}, ce qui pourrait affecter ses réponses.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Chargement en cours...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/hi-IN.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI अनुपलब्ध है",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "कृपया बाद में पुनः प्रयास करें।",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI सेवा जवाब नहीं दे रही है।",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "इस फ़ाइल की टेक्स्ट सामग्री इतनी बड़ी है कि Box AI उसे प्रोसेस नहीं कर सकता।",
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI पूरे टेक्स्ट को एक्सेस नहीं कर पाएगा,
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "{numberOfItems,plural,=1{इस फ़ाइल} other{एक या उससे अधिक फ़ाइलों} one{इस फ़ाइल}} की टेक्स्ट सामग्री इतनी बड़ी है कि Box AI उसे प्रोसेस नहीं कर सकता।",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI, पूरे {numberOfItems,plural,=1{टेक्स्ट} other{सामग्री} one{टेक्स्ट}} को एक्सेस नहीं कर पाएगा, जो इसके उत्तरों को प्रभावित कर सकता है।",
|
|
34
34
|
"boxAI.contentAnswers.loading": "लोड हो रहा है...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "उत्तर लोड किया जा रहा है...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "सुझाव लोड हो रहे हैं",
|
package/i18n/hi-IN.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = कृपया बाद
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI सेवा जवाब नहीं दे रही है।
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = इस फ़ाइल की टेक्स्ट सामग्री इतनी बड़ी है कि Box AI उसे प्रोसेस नहीं कर सकता।
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = {numberOfItems,plural,=1{इस फ़ाइल} other{एक या उससे अधिक फ़ाइलों} one{इस फ़ाइल}} की टेक्स्ट सामग्री इतनी बड़ी है कि Box AI उसे प्रोसेस नहीं कर सकता।
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI पूरे टेक्स्ट को एक्सेस नहीं कर पाएगा,
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI, पूरे {numberOfItems,plural,=1{टेक्स्ट} other{सामग्री} one{टेक्स्ट}} को एक्सेस नहीं कर पाएगा, जो इसके उत्तरों को प्रभावित कर सकता है।
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = लोड हो रहा है...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/it-IT.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI non è disponibile.",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Riprova più tardi.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Il servizio Box AI non risponde.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Il contenuto testuale di questo file è troppo grande
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI non sarà in grado di accedere all'intero testo, cosa che potrebbe influire sulle risposte.",
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Il contenuto testuale di {numberOfItems,plural,=1{questo file} other{uno o più file} one{questo file}} è troppo grande per essere elaborato da Box AI.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI non sarà in grado di accedere all'intero {numberOfItems,plural,=1{testo} other{contenuto} one{testo}}, cosa che potrebbe influire sulle risposte.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Caricamento in corso...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Caricamento risposta in corso...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Caricamento dei suggerimenti",
|
package/i18n/it-IT.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Riprova più tardi.
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Il servizio Box AI non risponde.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = Il contenuto testuale di questo file è troppo grande
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Il contenuto testuale di {numberOfItems,plural,=1{questo file} other{uno o più file} one{questo file}} è troppo grande per essere elaborato da Box AI.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI non sarà in grado di accedere all'intero testo, cosa che potrebbe influire sulle risposte.
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI non sarà in grado di accedere all'intero {numberOfItems,plural,=1{testo} other{contenuto} one{testo}}, cosa che potrebbe influire sulle risposte.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Caricamento in corso...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/ja-JP.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AIは使用できません",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "後でもう一度やり直してください。",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AIサービスが応答していません。",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "{numberOfItems,plural,=1{このファイル} other{1つまたは複数のファイル}}のテキストコンテンツは大きすぎてBox AIでは処理できません。",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AIは{numberOfItems,plural,=1{テキスト} other{コンテンツ}}全体にアクセスできないため、回答に影響を及ぼす可能性があります。",
|
|
34
34
|
"boxAI.contentAnswers.loading": "読み込み中...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "回答を読み込んでいます...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "候補を読み込み中",
|
package/i18n/ja-JP.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = 後でもう一度やり
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AIサービスが応答していません。
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription =
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = {numberOfItems,plural,=1{このファイル} other{1つまたは複数のファイル}}のテキストコンテンツは大きすぎてBox AIでは処理できません。
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AIは{numberOfItems,plural,=1{テキスト} other{コンテンツ}}全体にアクセスできないため、回答に影響を及ぼす可能性があります。
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = 読み込み中...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/ko-KR.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI를 사용할 수 없습니다",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "나중에 다시 시도하십시오.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI 서비스가 응답하고 있지 않습니다.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "이
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "{numberOfItems,plural,=1{이 파일} other{하나 이상의 파일}}의 텍스트 콘텐츠는 Box AI가 처리하기에는 너무 큽니다.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI는 전체 {numberOfItems,plural,=1{텍스트} other{콘텐츠}} 항목에 액세스할 수 없으므로 응답에 영향을 줄 수 있습니다.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "로드 중...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "답변 불러오는 중...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "제안 불러오는 중",
|
package/i18n/ko-KR.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = 나중에 다시 시도
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI 서비스가 응답하고 있지 않습니다.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = 이
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = {numberOfItems,plural,=1{이 파일} other{하나 이상의 파일}}의 텍스트 콘텐츠는 Box AI가 처리하기에는 너무 큽니다.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI는 전체 {numberOfItems,plural,=1{텍스트} other{콘텐츠}} 항목에 액세스할 수 없으므로 응답에 영향을 줄 수 있습니다.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = 로드 중...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/nb-NO.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI er utilgjengelig",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Prøv igjen senere.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI-tjenesten responderer ikke.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Tekstinnholdet i denne filen er for
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Tekstinnholdet i {numberOfItems,plural,=1{denne filen} other{en eller flere filer}} er for stor til at Box AI kan behandle den.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI vil ikke ha tilgang til hele {numberOfItems,plural,=1{teksten} other{innhold}}, som kan påvirke svarene den gir.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Laster inn …",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Laster inn svar …",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Laster inn forslag",
|
package/i18n/nb-NO.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Prøv igjen senere.
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI-tjenesten responderer ikke.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = Tekstinnholdet i denne filen er for
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Tekstinnholdet i {numberOfItems,plural,=1{denne filen} other{en eller flere filer}} er for stor til at Box AI kan behandle den.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI vil ikke ha tilgang til hele {numberOfItems,plural,=1{teksten} other{innhold}}, som kan påvirke svarene den gir.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Laster inn …
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/nl-NL.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI is niet beschikbaar",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Probeer het later opnieuw.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "De Box AI-service reageert niet.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "De tekstinhoud van dit bestand is te groot voor Box AI om te verwerken.",
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI heeft geen toegang tot de
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "De tekstinhoud van {numberOfItems,plural,=1{dit bestand} other{een of meerdere bestanden} one{dit bestand}} is te groot voor Box AI om te verwerken.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI heeft geen toegang tot de volledige {numberOfItems,plural,=1{tekst} other{inhoud} one{tekst}} wat van invloed kan zijn op de antwoorden.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Laden...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Antwoord laden...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Suggesties laden",
|
package/i18n/nl-NL.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Probeer het later opnieuw
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = De Box AI-service reageert niet.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = De tekstinhoud van dit bestand is te groot voor Box AI om te verwerken.
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = De tekstinhoud van {numberOfItems,plural,=1{dit bestand} other{een of meerdere bestanden} one{dit bestand}} is te groot voor Box AI om te verwerken.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI heeft geen toegang tot de
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI heeft geen toegang tot de volledige {numberOfItems,plural,=1{tekst} other{inhoud} one{tekst}} wat van invloed kan zijn op de antwoorden.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Laden...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/pl-PL.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Usługa Box AI jest niedostępna",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Spróbuj ponownie później.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Usługa Box AI nie odpowiada.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Zawartość tekstowa tego pliku jest zbyt duża, aby Box AI mógł ją przetworzyć.",
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI nie będzie
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Zawartość tekstowa {numberOfItems,plural,=1{tego pliku} other{tych plików} one{tego pliku} few{tych plików}} jest zbyt duża, aby Box AI mógł ją przetworzyć.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI nie będzie w stanie uzyskać dostępu do całego/całej {numberOfItems,plural,=1{tekstu} other{zawartości} one{tekstu} few{zawartości}} co może mieć wpływ na jego odpowiedzi.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Trwa wczytywanie...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Wczytywanie odpowiedzi...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Wczytywanie sugestii",
|
package/i18n/pl-PL.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Spróbuj ponownie późni
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Usługa Box AI nie odpowiada.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = Zawartość tekstowa tego pliku jest zbyt duża, aby Box AI mógł ją przetworzyć.
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Zawartość tekstowa {numberOfItems,plural,=1{tego pliku} other{tych plików} one{tego pliku} few{tych plików}} jest zbyt duża, aby Box AI mógł ją przetworzyć.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI nie będzie
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI nie będzie w stanie uzyskać dostępu do całego/całej {numberOfItems,plural,=1{tekstu} other{zawartości} one{tekstu} few{zawartości}} co może mieć wpływ na jego odpowiedzi.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Trwa wczytywanie...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/pt-BR.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI está indisponível",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Tente novamente mais tarde.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "O serviço do Box AI não está respondendo.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "O conteúdo de texto
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "O Box AI não poderá acessar o texto inteiro, o que pode afetar as respostas dele.",
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "O conteúdo de texto de {numberOfItems,plural,=1{esse arquivo} other{um ou mais arquivos} one{esse arquivo}} é grande demais para o Box AI processar.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "O Box AI não poderá acessar o {numberOfItems,plural,=1{texto} other{conteúdo} one{texto}} inteiro, o que pode afetar as respostas dele.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Carregando...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Carregando a resposta...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Carregando sugestões",
|
package/i18n/pt-BR.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Tente novamente mais tard
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = O serviço do Box AI não está respondendo.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = O conteúdo de texto
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = O conteúdo de texto de {numberOfItems,plural,=1{esse arquivo} other{um ou mais arquivos} one{esse arquivo}} é grande demais para o Box AI processar.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = O Box AI não poderá acessar o texto inteiro, o que pode afetar as respostas dele.
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = O Box AI não poderá acessar o {numberOfItems,plural,=1{texto} other{conteúdo} one{texto}} inteiro, o que pode afetar as respostas dele.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Carregando...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/ru-RU.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "ИИ Box недоступен",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Повторите попытку позже.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Служба ИИ Box не отвечает.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Контент текста {numberOfItems,plural,=1{этого файла} other{одного или более файлов} one{этого файла} few{одного или более файлов}} слишком большой для обработки Box AI.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI не сможет получить доступ ко всему {numberOfItems,plural,=1{тексту} other{контенту} one{тексту} few{контенту}}, что может повлиять на его ответы.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Загрузка...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Загрузка ответа...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Загрузка предложений",
|
package/i18n/ru-RU.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Повторите поп
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Служба ИИ Box не отвечает.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription =
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Контент текста {numberOfItems,plural,=1{этого файла} other{одного или более файлов} one{этого файла} few{одного или более файлов}} слишком большой для обработки Box AI.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle =
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI не сможет получить доступ ко всему {numberOfItems,plural,=1{тексту} other{контенту} one{тексту} few{контенту}}, что может повлиять на его ответы.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Загрузка...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/sv-SE.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI är inte tillgängligt",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Försök igen senare.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI-tjänsten svarar inte.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Textinnehållet i den här filen är för stort för Box AI att
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "Textinnehållet i {numberOfItems,plural,=1{den här filen} other{en eller flera filer} one{den här filen}} är för stort för Box AI att behandla.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI kommer inte att kunna få åtkomst till hela {numberOfItems,plural,=1{text} other{innehåll} one{text}}, vilket kan påverka dess svar.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Läser in...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Laddar svar …",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Laddar förslag",
|
package/i18n/sv-SE.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Försök igen senare.
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI-tjänsten svarar inte.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription = Textinnehållet i den här filen är för stort för Box AI att
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = Textinnehållet i {numberOfItems,plural,=1{den här filen} other{en eller flera filer} one{den här filen}} är för stort för Box AI att behandla.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI kommer inte att kunna få åtkomst till hela {numberOfItems,plural,=1{text} other{innehåll} one{text}}, vilket kan påverka dess svar.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Läser in...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/tr-TR.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI kullanılamıyor",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "Lütfen daha sonra tekrar deneyin.",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI hizmeti yanıt vermiyor.",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI tüm
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "{numberOfItems,plural,=1{bu dosya} other{bir veya daha fazla dosya} one{bu dosya}} metin içeriği, Box AI'ın işleyemeyeceği kadar büyük.",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI tüm {numberOfItems,plural,=1{metin} other{içerik} one{metin}} öğesine erişemeyecektir ve bu durum yanıtlarını etkileyebilir.",
|
|
34
34
|
"boxAI.contentAnswers.loading": "Yükleniyor...",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "Cevap Yükleniyor...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "Öneriler yükleniyor",
|
package/i18n/tr-TR.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = Lütfen daha sonra tekrar
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI hizmeti yanıt vermiyor.
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription =
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = {numberOfItems,plural,=1{bu dosya} other{bir veya daha fazla dosya} one{bu dosya}} metin içeriği, Box AI'ın işleyemeyeceği kadar büyük.
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI tüm
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI tüm {numberOfItems,plural,=1{metin} other{içerik} one{metin}} öğesine erişemeyecektir ve bu durum yanıtlarını etkileyebilir.
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = Yükleniyor...
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/zh-CN.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "Box AI 无法使用",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "请稍后重试。",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI 服务未响应。",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "{numberOfItems,plural,=1{此文件} other{一个或多个文件}}的文本内容过大,Box AI 无法处理。",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI 将无法访问整个{numberOfItems,plural,=1{文本} other{内容}},这可能会影响其答案。",
|
|
34
34
|
"boxAI.contentAnswers.loading": "正在加载......",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "正在加载答案...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "正在加载建议",
|
package/i18n/zh-CN.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = 请稍后重试。
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI 服务未响应。
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription =
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = {numberOfItems,plural,=1{此文件} other{一个或多个文件}}的文本内容过大,Box AI 无法处理。
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI 将无法访问整个{numberOfItems,plural,=1{文本} other{内容}},这可能会影响其答案。
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = 正在加载......
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/i18n/zh-TW.js
CHANGED
|
@@ -29,8 +29,8 @@ export default {
|
|
|
29
29
|
"boxAI.contentAnswers.intelligenceUnaivalableHeading": "無法使用 Box AI",
|
|
30
30
|
"boxAI.contentAnswers.intelligenceUnaivalableTryAgain": "請稍後再試一次。",
|
|
31
31
|
"boxAI.contentAnswers.intelligenceUnavailableDescription": "Box AI 服務未回應。",
|
|
32
|
-
"boxAI.contentAnswers.largeFileSizeWarningDescription": "
|
|
33
|
-
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI
|
|
32
|
+
"boxAI.contentAnswers.largeFileSizeWarningDescription": "{numberOfItems,plural,other{一或多個檔案}}的文字內容太大,Box AI 無法處理。",
|
|
33
|
+
"boxAI.contentAnswers.largeFileSizeWarningTitle": "Box AI 將無法存取整個{numberOfItems,plural,other{內容}},這可能會影響其答案。",
|
|
34
34
|
"boxAI.contentAnswers.loading": "載入中......",
|
|
35
35
|
"boxAI.contentAnswers.loadingAnswer": "正在載入答案...",
|
|
36
36
|
"boxAI.contentAnswers.loadingSuggestedQuestions": "正在載入建議",
|
package/i18n/zh-TW.properties
CHANGED
|
@@ -59,9 +59,9 @@ boxAI.contentAnswers.intelligenceUnaivalableTryAgain = 請稍後再試一次。
|
|
|
59
59
|
# Box AI Q&A service unavailable error description
|
|
60
60
|
boxAI.contentAnswers.intelligenceUnavailableDescription = Box AI 服務未回應。
|
|
61
61
|
# Box AI Q&A file too large warning description. {numberOfItems} is the number of items used in the context
|
|
62
|
-
boxAI.contentAnswers.largeFileSizeWarningDescription =
|
|
62
|
+
boxAI.contentAnswers.largeFileSizeWarningDescription = {numberOfItems,plural,other{一或多個檔案}}的文字內容太大,Box AI 無法處理。
|
|
63
63
|
# Box AI Q&A file too large warning title. {numberOfItems} is the number of items used in the context
|
|
64
|
-
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI
|
|
64
|
+
boxAI.contentAnswers.largeFileSizeWarningTitle = Box AI 將無法存取整個{numberOfItems,plural,other{內容}},這可能會影響其答案。
|
|
65
65
|
# Aria label to show while waiting for the modal to load
|
|
66
66
|
boxAI.contentAnswers.loading = 載入中......
|
|
67
67
|
# Aria label to show while waiting for an answer
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/box-ai-content-answers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.106.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@box/blueprint-web": "^7.8.0",
|
|
6
6
|
"@box/blueprint-web-assets": "^4.35.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@box/babel-plugin-target-attributes": "1.3.0",
|
|
19
19
|
"@box/blueprint-web": "^9.18.9",
|
|
20
20
|
"@box/blueprint-web-assets": "^4.35.0",
|
|
21
|
-
"@box/box-ai-agent-selector": "^0.
|
|
21
|
+
"@box/box-ai-agent-selector": "^0.32.0",
|
|
22
22
|
"@box/item-icon": "^0.9.91",
|
|
23
23
|
"@box/storybook-utils": "^0.8.3",
|
|
24
24
|
"@testing-library/react": "^15.0.6",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"**/*.css"
|
|
58
58
|
],
|
|
59
59
|
"license": "SEE LICENSE IN LICENSE",
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "530ba3e33c3c8edfa7c55ac99525e6fd67e3da5f"
|
|
61
61
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -3,5 +3,6 @@ export * from './lib/components/answer/answer-content';
|
|
|
3
3
|
export * from './lib/components/api-wrapper/api-wrapper';
|
|
4
4
|
export * from './lib/components/modal/clear-conversation-button';
|
|
5
5
|
export * from './lib/components/modal/modal';
|
|
6
|
+
export * from './lib/hooks/usePromptFocus';
|
|
6
7
|
export * from './lib/types';
|
|
7
8
|
export * from './lib/constants';
|
|
@@ -35,3 +35,4 @@ export declare const defaultBoxAiContentAnswersProps: {
|
|
|
35
35
|
export declare const WithUpdatedRequestInProgress: (props: BoxAiContentAnswersProps) => import("react/jsx-runtime").JSX.Element;
|
|
36
36
|
export declare const DefaultBoxAIContentAnswers: (props: BoxAiContentAnswersProps) => import("react/jsx-runtime").JSX.Element;
|
|
37
37
|
export declare const DefaultBoxAISidebar: (props: BoxAiContentAnswersProps) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
export declare const WithFocusableBoxAISidebarInput: (props: BoxAiContentAnswersProps) => import("react/jsx-runtime").JSX.Element;
|