@box/box-ai-agent-selector 0.12.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/LICENSE +379 -0
- package/chunks/types.js +6 -0
- package/esm/index.js +12 -0
- package/esm/lib/box-ai-agent-selector-with-api-container.js +22 -0
- package/esm/lib/box-ai-agent-selector-with-api.js +59 -0
- package/esm/lib/box-ai-agent-selector.js +116 -0
- package/esm/lib/box-ai-agent.js +61 -0
- package/esm/lib/constants.js +19 -0
- package/esm/lib/contexts/actions.js +6 -0
- package/esm/lib/contexts/constants.js +9 -0
- package/esm/lib/contexts/context.js +38 -0
- package/esm/lib/contexts/index.js +8 -0
- package/esm/lib/contexts/reducer.js +44 -0
- package/esm/lib/messages.js +34 -0
- package/i18n/bn-IN.js +9 -0
- package/i18n/bn-IN.properties +14 -0
- package/i18n/da-DK.js +9 -0
- package/i18n/da-DK.properties +14 -0
- package/i18n/de-DE.js +9 -0
- package/i18n/de-DE.properties +14 -0
- package/i18n/en-AU.js +9 -0
- package/i18n/en-AU.properties +14 -0
- package/i18n/en-CA.js +9 -0
- package/i18n/en-CA.properties +14 -0
- package/i18n/en-GB.js +9 -0
- package/i18n/en-GB.properties +14 -0
- package/i18n/en-US.js +9 -0
- package/i18n/en-US.properties +14 -0
- package/i18n/en-x-pseudo.js +9 -0
- package/i18n/en-x-pseudo.properties +14 -0
- package/i18n/es-419.js +9 -0
- package/i18n/es-419.properties +14 -0
- package/i18n/es-ES.js +9 -0
- package/i18n/es-ES.properties +14 -0
- package/i18n/fi-FI.js +9 -0
- package/i18n/fi-FI.properties +14 -0
- package/i18n/fr-CA.js +9 -0
- package/i18n/fr-CA.properties +14 -0
- package/i18n/fr-FR.js +9 -0
- package/i18n/fr-FR.properties +14 -0
- package/i18n/hi-IN.js +9 -0
- package/i18n/hi-IN.properties +14 -0
- package/i18n/it-IT.js +9 -0
- package/i18n/it-IT.properties +14 -0
- package/i18n/ja-JP.js +9 -0
- package/i18n/ja-JP.properties +14 -0
- package/i18n/json/src/lib/messages.json +1 -0
- package/i18n/ko-KR.js +9 -0
- package/i18n/ko-KR.properties +14 -0
- package/i18n/nb-NO.js +9 -0
- package/i18n/nb-NO.properties +14 -0
- package/i18n/nl-NL.js +9 -0
- package/i18n/nl-NL.properties +14 -0
- package/i18n/pl-PL.js +9 -0
- package/i18n/pl-PL.properties +14 -0
- package/i18n/pt-BR.js +9 -0
- package/i18n/pt-BR.properties +14 -0
- package/i18n/ru-RU.js +9 -0
- package/i18n/ru-RU.properties +14 -0
- package/i18n/sv-SE.js +9 -0
- package/i18n/sv-SE.properties +14 -0
- package/i18n/tr-TR.js +9 -0
- package/i18n/tr-TR.properties +14 -0
- package/i18n/zh-CN.js +9 -0
- package/i18n/zh-CN.properties +14 -0
- package/i18n/zh-TW.js +9 -0
- package/i18n/zh-TW.properties +14 -0
- package/package.json +50 -0
- package/styles/box-ai-agent-selector.css +1 -0
- package/styles/box-ai-agent.css +1 -0
- package/types/index.d.ts +3 -0
- package/types/lib/box-ai-agent-selector-with-api-container.d.ts +25 -0
- package/types/lib/box-ai-agent-selector-with-api.d.ts +25 -0
- package/types/lib/box-ai-agent-selector.d.ts +25 -0
- package/types/lib/box-ai-agent.d.ts +13 -0
- package/types/lib/constants.d.ts +13 -0
- package/types/lib/contexts/actions.d.ts +6 -0
- package/types/lib/contexts/constants.d.ts +2 -0
- package/types/lib/contexts/context.d.ts +10 -0
- package/types/lib/contexts/index.d.ts +2 -0
- package/types/lib/contexts/reducer.d.ts +2 -0
- package/types/lib/contexts/stories/shared.d.ts +4 -0
- package/types/lib/messages.d.ts +38 -0
- package/types/lib/test-utils/mocks.d.ts +3 -0
- package/types/lib/types.d.ts +41 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const G = "click", E = "programmatic", e = "selector", t = "agentSelector", o = {
|
|
2
|
+
LOADED_AGENTS: "loadedAgents",
|
|
3
|
+
ERROR_LOADING_AGENTS: "errorLoadingAgents",
|
|
4
|
+
RETRY_LOADING_AGENTS: "retryLoadingAgents",
|
|
5
|
+
OPEN_SELECTOR: "openSelector",
|
|
6
|
+
SELECT_AGENT: "selectAgent"
|
|
7
|
+
}, A = {
|
|
8
|
+
action: E,
|
|
9
|
+
component: e,
|
|
10
|
+
feature: t
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
G as LOGGER_ACTION_CLICK,
|
|
14
|
+
E as LOGGER_ACTION_PROGRAMMATIC,
|
|
15
|
+
A as LOGGER_BASE_CONFIG,
|
|
16
|
+
e as LOGGER_COMPONENT,
|
|
17
|
+
t as LOGGER_FEATURE,
|
|
18
|
+
o as LOGGER_TARGET
|
|
19
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { useContext as e, useReducer as g, createContext as r } from "react";
|
|
2
|
+
import { defaultState as n } from "./constants.js";
|
|
3
|
+
import { agentsReducer as m } from "./reducer.js";
|
|
4
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
5
|
+
const o = /* @__PURE__ */ r(n), s = /* @__PURE__ */ r(() => {
|
|
6
|
+
});
|
|
7
|
+
function v() {
|
|
8
|
+
return e(o);
|
|
9
|
+
}
|
|
10
|
+
function h() {
|
|
11
|
+
return e(s);
|
|
12
|
+
}
|
|
13
|
+
function C({
|
|
14
|
+
children: u,
|
|
15
|
+
value: c
|
|
16
|
+
}) {
|
|
17
|
+
const [{
|
|
18
|
+
agents: i,
|
|
19
|
+
requestState: a,
|
|
20
|
+
selectedAgent: d
|
|
21
|
+
}, f] = g(m, c || n);
|
|
22
|
+
return /* @__PURE__ */ t(o.Provider, {
|
|
23
|
+
value: {
|
|
24
|
+
agents: i,
|
|
25
|
+
requestState: a,
|
|
26
|
+
selectedAgent: d
|
|
27
|
+
},
|
|
28
|
+
children: /* @__PURE__ */ t(s.Provider, {
|
|
29
|
+
value: f,
|
|
30
|
+
children: u
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
export {
|
|
35
|
+
C as AgentsProvider,
|
|
36
|
+
v as useAgents,
|
|
37
|
+
h as useAgentsDispatch
|
|
38
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { R as E } from "../../../chunks/types.js";
|
|
2
|
+
import { ACTIONS as t } from "./actions.js";
|
|
3
|
+
const l = (r, e) => {
|
|
4
|
+
var u;
|
|
5
|
+
switch (e.type) {
|
|
6
|
+
case t.SET_AGENT_LIST: {
|
|
7
|
+
const s = ((u = e == null ? void 0 : e.agents) == null ? void 0 : u.find((S) => S.isEnterpriseDefault)) || null;
|
|
8
|
+
return {
|
|
9
|
+
agents: (e == null ? void 0 : e.agents) || [],
|
|
10
|
+
requestState: E.SUCCESS,
|
|
11
|
+
selectedAgent: s
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
case t.SET_ASK_CONFIG:
|
|
15
|
+
return {
|
|
16
|
+
agents: r.agents.map((s) => s.id === e.id ? {
|
|
17
|
+
...s,
|
|
18
|
+
ask: e.ask
|
|
19
|
+
} : s),
|
|
20
|
+
requestState: r.requestState,
|
|
21
|
+
selectedAgent: r.selectedAgent ? {
|
|
22
|
+
...r.selectedAgent,
|
|
23
|
+
ask: e.ask
|
|
24
|
+
} : null
|
|
25
|
+
};
|
|
26
|
+
case t.SET_REQUEST_STATE:
|
|
27
|
+
return {
|
|
28
|
+
...r,
|
|
29
|
+
requestState: e.requestState || E.NOT_STARTED
|
|
30
|
+
};
|
|
31
|
+
case t.SET_SELECTED_AGENT: {
|
|
32
|
+
const s = r.agents.find((S) => S.id === e.id) || null;
|
|
33
|
+
return {
|
|
34
|
+
...r,
|
|
35
|
+
selectedAgent: s
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
default:
|
|
39
|
+
return r;
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
export {
|
|
43
|
+
l as agentsReducer
|
|
44
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineMessages as e } from "react-intl";
|
|
2
|
+
const t = e({
|
|
3
|
+
agent: {
|
|
4
|
+
id: "boxAI.agentSelector.agent",
|
|
5
|
+
defaultMessage: "Agent"
|
|
6
|
+
},
|
|
7
|
+
selectAgent: {
|
|
8
|
+
id: "boxAI.agentSelector.selectAgent",
|
|
9
|
+
defaultMessage: "Select an Agent"
|
|
10
|
+
},
|
|
11
|
+
defaultAgent: {
|
|
12
|
+
id: "boxAI.agentSelector.defaultAgent",
|
|
13
|
+
defaultMessage: "Default"
|
|
14
|
+
},
|
|
15
|
+
defaultStatus: {
|
|
16
|
+
id: "boxAI.agentSelector.defaultStatus",
|
|
17
|
+
defaultMessage: "DEFAULT"
|
|
18
|
+
},
|
|
19
|
+
errorMessage: {
|
|
20
|
+
id: "boxAI.agentSelector.errorMessage",
|
|
21
|
+
defaultMessage: "Failed to load available agents. You're currently using your organization's default agent. Click here to retry."
|
|
22
|
+
},
|
|
23
|
+
errorTooltip: {
|
|
24
|
+
id: "boxAI.agentSelector.errorTooltip",
|
|
25
|
+
defaultMessage: "Failed to load available agents"
|
|
26
|
+
},
|
|
27
|
+
loadingMessage: {
|
|
28
|
+
id: "boxAI.agentSelector.loadingMessage",
|
|
29
|
+
defaultMessage: "Loading available agents"
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
export {
|
|
33
|
+
t as default
|
|
34
|
+
};
|
package/i18n/bn-IN.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "এজেন্ট",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "ডিফল্ট",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "ডিফল্ট",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "উপলভ্য এজেন্টগুলো লোড করা যায়নি। আপনি বর্তমানে আপনার সংগঠনের ডিফল্ট এজেন্ট ব্যবহার করছেন। আবার চেষ্টা করার জন্য এখানে ক্লিক করুন।",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "উপলভ্য এজেন্ট লোড করা যায়নি",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "উপলভ্য এজেন্ট লোড করা হচ্ছে",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "এজেন্ট নির্বাচন করুন"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = এজেন্ট
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = ডিফল্ট
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = ডিফল্ট
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = উপলভ্য এজেন্টগুলো লোড করা যায়নি। আপনি বর্তমানে আপনার সংগঠনের ডিফল্ট এজেন্ট ব্যবহার করছেন। আবার চেষ্টা করার জন্য এখানে ক্লিক করুন।
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = উপলভ্য এজেন্ট লোড করা যায়নি
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = উপলভ্য এজেন্ট লোড করা হচ্ছে
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = এজেন্ট নির্বাচন করুন
|
package/i18n/da-DK.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agent",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Standard",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "STANDARD",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Kunne ikke indlæse tilgængelige agenter. Du bruger i øjeblikket din organisations standardagent. Klik her for at prøve igen.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Kunne ikke indlæse tilgængelige agenter",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Indlæsning af tilgængelige agenter",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Vælge en agent"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agent
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Standard
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = STANDARD
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Kunne ikke indlæse tilgængelige agenter. Du bruger i øjeblikket din organisations standardagent. Klik her for at prøve igen.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Kunne ikke indlæse tilgængelige agenter
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Indlæsning af tilgængelige agenter
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Vælge en agent
|
package/i18n/de-DE.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agent",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Standard",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "STANDARD",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Verfügbare Agenten konnten nicht geladen werden. Sie verwenden derzeit den Standardagenten Ihres Unternehmens. Klicken Sie hier, um es zu wiederholen.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Verfügbare Agenten konnten nicht geladen werden",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Verfügbare Agenten werden geladen",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Wählen Sie einen Agenten aus"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agent
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Standard
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = STANDARD
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Verfügbare Agenten konnten nicht geladen werden. Sie verwenden derzeit den Standardagenten Ihres Unternehmens. Klicken Sie hier, um es zu wiederholen.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Verfügbare Agenten konnten nicht geladen werden
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Verfügbare Agenten werden geladen
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Wählen Sie einen Agenten aus
|
package/i18n/en-AU.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agent",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Default",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "DEFAULT",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Failed to load available agents. You're currently using your organization's default agent. Click here to retry.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Failed to load available agents",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Loading available agents",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Select an Agent"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agent
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Default
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = DEFAULT
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Failed to load available agents. You're currently using your organization's default agent. Click here to retry.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Failed to load available agents
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Loading available agents
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Select an Agent
|
package/i18n/en-CA.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agent",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Default",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "DEFAULT",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Failed to load available agents. You're currently using your organization's default agent. Click here to retry.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Failed to load available agents",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Loading available agents",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Select an Agent"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agent
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Default
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = DEFAULT
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Failed to load available agents. You're currently using your organization's default agent. Click here to retry.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Failed to load available agents
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Loading available agents
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Select an Agent
|
package/i18n/en-GB.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agent",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Default",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "DEFAULT",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Failed to load available agents. You're currently using your organization's default agent. Click here to retry.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Failed to load available agents",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Loading available agents",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Select an Agent"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agent
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Default
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = DEFAULT
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Failed to load available agents. You're currently using your organization's default agent. Click here to retry.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Failed to load available agents
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Loading available agents
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Select an Agent
|
package/i18n/en-US.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agent",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Default",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "DEFAULT",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Failed to load available agents. You're currently using your organization's default agent. Click here to retry.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Failed to load available agents",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Loading available agents",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Select an Agent"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agent
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Default
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = DEFAULT
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Failed to load available agents. You're currently using your organization's default agent. Click here to retry.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Failed to load available agents
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Loading available agents
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Select an Agent
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "⟦萬 Àĝéлţ 國⟧",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "⟦萬萬 Ďéƒäũľţ 國國⟧",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "⟦萬萬 ĎΕ₣ΆŨĻΤ 國國⟧",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ₣ąϊĺεď ťő ļσąď ãνąîļάьļē åĝέηŧş. Ýőμ'ŕε ćűггéлťĺγ цѕĩŋğ ўőũѓ σřġäňïżåťĩôη'ŝ ďėƒǻцļτ äğéňţ. Čļĩ¢κ ħёŕê ţό ѓéťřγ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "⟦萬萬萬萬萬萬萬萬萬 ₣ăíĺēď τò ľόáď ąνāìľǻвľë äĝεйťѕ 國國國國國國國國國⟧",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "⟦萬萬萬萬萬萬萬 Ĺöăďĭлĝ άνąĩľαьĺё ąġέлţѕ 國國國國國國國⟧",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "⟦萬萬萬萬 Śèľєčť âη Āġεηŧ 國國國國⟧"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = ⟦萬 Àĝéлţ 國⟧
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = ⟦萬萬 Ďéƒäũľţ 國國⟧
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = ⟦萬萬 ĎΕ₣ΆŨĻΤ 國國⟧
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 ₣ąϊĺεď ťő ļσąď ãνąîļάьļē åĝέηŧş. Ýőμ'ŕε ćűггéлťĺγ цѕĩŋğ ўőũѓ σřġäňïżåťĩôη'ŝ ďėƒǻцļτ äğéňţ. Čļĩ¢κ ħёŕê ţό ѓéťřγ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = ⟦萬萬萬萬萬萬萬萬萬 ₣ăíĺēď τò ľόáď ąνāìľǻвľë äĝεйťѕ 國國國國國國國國國⟧
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = ⟦萬萬萬萬萬萬萬 Ĺöăďĭлĝ άνąĩľαьĺё ąġέлţѕ 國國國國國國國⟧
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = ⟦萬萬萬萬 Śèľєčť âη Āġεηŧ 國國國國⟧
|
package/i18n/es-419.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agente",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Predeterminado",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "PREDETERMINADO",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "No se pudo cargar los agentes disponibles. En este momento está utilizando el agente predeterminado de la organización. Haz clic aquí para volver a intentarlo.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Error al cargar los agentes disponibles",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Cargando los agentes disponibles",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Seleccionar un agente"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agente
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Predeterminado
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = PREDETERMINADO
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = No se pudo cargar los agentes disponibles. En este momento está utilizando el agente predeterminado de la organización. Haz clic aquí para volver a intentarlo.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Error al cargar los agentes disponibles
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Cargando los agentes disponibles
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Seleccionar un agente
|
package/i18n/es-ES.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agente",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Predeterminado",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "PREDETERMINADO",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "No se pudo cargar los agentes disponibles. En este momento está utilizando el agente predeterminado de la organización. Haz clic aquí para volver a intentarlo.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Error al cargar los agentes disponibles",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Cargando los agentes disponibles",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Seleccionar un agente"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agente
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Predeterminado
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = PREDETERMINADO
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = No se pudo cargar los agentes disponibles. En este momento está utilizando el agente predeterminado de la organización. Haz clic aquí para volver a intentarlo.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Error al cargar los agentes disponibles
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Cargando los agentes disponibles
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Seleccionar un agente
|
package/i18n/fi-FI.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Edustaja",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Oletusasetus",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "OLETUS",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Käytettävissä olevien edustajien lataaminen epäonnistui. Käytät parhaillaan organisaatiosi oletusedustajaa. Napsauta tästä yrittääksesi uudelleen.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Käytettävissä olevien edustajien lataaminen epäonnistui",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Ladataan käytettävissä olevia edustajia",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Valitse edustaja"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Edustaja
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Oletusasetus
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = OLETUS
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Käytettävissä olevien edustajien lataaminen epäonnistui. Käytät parhaillaan organisaatiosi oletusedustajaa. Napsauta tästä yrittääksesi uudelleen.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Käytettävissä olevien edustajien lataaminen epäonnistui
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Ladataan käytettävissä olevia edustajia
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Valitse edustaja
|
package/i18n/fr-CA.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agent",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Par défaut",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "PAR DÉFAUT",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Échec du chargement des agents disponibles. Vous utilisez actuellement l'agent par défaut de votre organisation. Cliquez ici pour réessayer.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Échec du chargement des agents disponibles",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Chargement des agents disponibles",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Sélectionner un agent"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agent
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Par défaut
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = PAR DÉFAUT
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Échec du chargement des agents disponibles. Vous utilisez actuellement l'agent par défaut de votre organisation. Cliquez ici pour réessayer.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Échec du chargement des agents disponibles
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Chargement des agents disponibles
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Sélectionner un agent
|
package/i18n/fr-FR.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agent",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Par défaut",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "PAR DÉFAUT",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Échec du chargement des agents disponibles. Vous utilisez actuellement l'agent par défaut de votre organisation. Cliquez ici pour réessayer.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Échec du chargement des agents disponibles",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Chargement des agents disponibles",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Sélectionner un agent"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agent
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Par défaut
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = PAR DÉFAUT
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Échec du chargement des agents disponibles. Vous utilisez actuellement l'agent par défaut de votre organisation. Cliquez ici pour réessayer.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Échec du chargement des agents disponibles
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Chargement des agents disponibles
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Sélectionner un agent
|
package/i18n/hi-IN.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "एजेंट",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "डिफ़ॉल्ट",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "डिफ़ॉल्ट",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "उपलब्ध एजेंट लोड नहीं हो सके. आप फ़िलहाल अपने संगठन का डिफ़ॉल्ट एजेंट उपयोग कर रहे हैं. पुनः प्रयास करने के लिए यहाँ क्लिक करें.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "उपलब्ध एजेंट लोड नहीं हो सके",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "उपलब्ध एजेंट लोड हो रहे हैं",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "एक एजेंट चुनें"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = एजेंट
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = डिफ़ॉल्ट
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = डिफ़ॉल्ट
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = उपलब्ध एजेंट लोड नहीं हो सके. आप फ़िलहाल अपने संगठन का डिफ़ॉल्ट एजेंट उपयोग कर रहे हैं. पुनः प्रयास करने के लिए यहाँ क्लिक करें.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = उपलब्ध एजेंट लोड नहीं हो सके
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = उपलब्ध एजेंट लोड हो रहे हैं
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = एक एजेंट चुनें
|
package/i18n/it-IT.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "Agente",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "Predefinito",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "DEFAULT",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "Impossibile caricare gli agenti disponibili. Al momento stai utilizzando l'agente predefinito della tua organizzazione. Fai clic qui per riprovare.",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "Impossibile caricare gli agenti disponibili",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "Caricamento degli agenti disponibili",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "Seleziona un agente"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = Agente
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = Predefinito
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = DEFAULT
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = Impossibile caricare gli agenti disponibili. Al momento stai utilizzando l'agente predefinito della tua organizzazione. Fai clic qui per riprovare.
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = Impossibile caricare gli agenti disponibili
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = Caricamento degli agenti disponibili
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = Seleziona un agente
|
package/i18n/ja-JP.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "エージェント",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "デフォルト",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "デフォルト",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "利用可能なエージェントを読み込めませんでした。現在、組織のデフォルトエージェントを使用しています。こちらをクリックして再試行してください。",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "利用可能なエージェントを読み込めませんでした",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "利用可能なエージェントを読み込み中",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "エージェントを選択"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AI agent label
|
|
2
|
+
boxAI.agentSelector.agent = エージェント
|
|
3
|
+
# Label for the default agent used when no other agents are available
|
|
4
|
+
boxAI.agentSelector.defaultAgent = デフォルト
|
|
5
|
+
# Status indicator to define whether or not the agent on the list is the default for the enterprise
|
|
6
|
+
boxAI.agentSelector.defaultStatus = デフォルト
|
|
7
|
+
# Error message for retry option when the agents failed to load
|
|
8
|
+
boxAI.agentSelector.errorMessage = 利用可能なエージェントを読み込めませんでした。現在、組織のデフォルトエージェントを使用しています。こちらをクリックして再試行してください。
|
|
9
|
+
# Error tooltip content for agent selector when the agents failed to load
|
|
10
|
+
boxAI.agentSelector.errorTooltip = 利用可能なエージェントを読み込めませんでした
|
|
11
|
+
# Message for loading indicator while loading available agents
|
|
12
|
+
boxAI.agentSelector.loadingMessage = 利用可能なエージェントを読み込み中
|
|
13
|
+
# Label for the AI agent selector when the user has not selected any agent
|
|
14
|
+
boxAI.agentSelector.selectAgent = エージェントを選択
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"boxAI.agentSelector.agent","description":"AI agent label","defaultMessage":"Agent"},{"id":"boxAI.agentSelector.selectAgent","description":"Label for the AI agent selector when the user has not selected any agent","defaultMessage":"Select an Agent"},{"id":"boxAI.agentSelector.defaultAgent","description":"Label for the default agent used when no other agents are available","defaultMessage":"Default"},{"id":"boxAI.agentSelector.defaultStatus","description":"Status indicator to define whether or not the agent on the list is the default for the enterprise","defaultMessage":"DEFAULT"},{"id":"boxAI.agentSelector.errorMessage","description":"Error message for retry option when the agents failed to load","defaultMessage":"Failed to load available agents. You're currently using your organization's default agent. Click here to retry."},{"id":"boxAI.agentSelector.errorTooltip","description":"Error tooltip content for agent selector when the agents failed to load","defaultMessage":"Failed to load available agents"},{"id":"boxAI.agentSelector.loadingMessage","description":"Message for loading indicator while loading available agents","defaultMessage":"Loading available agents"}]
|
package/i18n/ko-KR.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"boxAI.agentSelector.agent": "에이전트",
|
|
3
|
+
"boxAI.agentSelector.defaultAgent": "기본",
|
|
4
|
+
"boxAI.agentSelector.defaultStatus": "기본",
|
|
5
|
+
"boxAI.agentSelector.errorMessage": "사용 가능한 에이전트를 로드하지 못했습니다. 현재 조직의 기본 에이전트를 사용하고 있습니다. 재시도 하려면 여기를 클릭하십시오",
|
|
6
|
+
"boxAI.agentSelector.errorTooltip": "사용 가능한 에이전트를 로드하지 못했습니다",
|
|
7
|
+
"boxAI.agentSelector.loadingMessage": "사용 가능한 에이전트 로드",
|
|
8
|
+
"boxAI.agentSelector.selectAgent": "에이전트 선택"
|
|
9
|
+
}
|