@uipath/apollo-react 3.34.2 → 3.35.0-pr230.2c2df1d
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/dist/canvas/components/CanvasPositionControls.cjs +9 -7
- package/dist/canvas/components/CanvasPositionControls.d.ts +5 -1
- package/dist/canvas/components/CanvasPositionControls.d.ts.map +1 -1
- package/dist/canvas/components/CanvasPositionControls.js +8 -6
- package/dist/canvas/utils/manifest-resolver.cjs +9 -8
- package/dist/canvas/utils/manifest-resolver.d.ts.map +1 -1
- package/dist/canvas/utils/manifest-resolver.js +9 -8
- package/dist/material/components/ap-chat/locales/de.cjs +1 -1
- package/dist/material/components/ap-chat/locales/de.js +1 -1
- package/dist/material/components/ap-chat/locales/de.json +13 -1
- package/dist/material/components/ap-chat/locales/es-MX.cjs +1 -1
- package/dist/material/components/ap-chat/locales/es-MX.js +1 -1
- package/dist/material/components/ap-chat/locales/es-MX.json +13 -1
- package/dist/material/components/ap-chat/locales/es.cjs +1 -1
- package/dist/material/components/ap-chat/locales/es.js +1 -1
- package/dist/material/components/ap-chat/locales/es.json +13 -1
- package/dist/material/components/ap-chat/locales/fr.cjs +1 -1
- package/dist/material/components/ap-chat/locales/fr.js +1 -1
- package/dist/material/components/ap-chat/locales/fr.json +13 -1
- package/dist/material/components/ap-chat/locales/ja.cjs +1 -1
- package/dist/material/components/ap-chat/locales/ja.js +1 -1
- package/dist/material/components/ap-chat/locales/ja.json +13 -1
- package/dist/material/components/ap-chat/locales/ko.cjs +1 -1
- package/dist/material/components/ap-chat/locales/ko.js +1 -1
- package/dist/material/components/ap-chat/locales/ko.json +13 -1
- package/dist/material/components/ap-chat/locales/pt-BR.cjs +1 -1
- package/dist/material/components/ap-chat/locales/pt-BR.js +1 -1
- package/dist/material/components/ap-chat/locales/pt-BR.json +13 -1
- package/dist/material/components/ap-chat/locales/pt.cjs +1 -1
- package/dist/material/components/ap-chat/locales/pt.js +1 -1
- package/dist/material/components/ap-chat/locales/pt.json +13 -1
- package/dist/material/components/ap-chat/locales/ro.json +13 -1
- package/dist/material/components/ap-chat/locales/tr.cjs +1 -1
- package/dist/material/components/ap-chat/locales/tr.js +1 -1
- package/dist/material/components/ap-chat/locales/tr.json +13 -1
- package/dist/material/components/ap-chat/locales/zh-CN.cjs +1 -1
- package/dist/material/components/ap-chat/locales/zh-CN.js +1 -1
- package/dist/material/components/ap-chat/locales/zh-CN.json +13 -1
- package/dist/material/components/ap-chat/locales/zh-TW.cjs +1 -1
- package/dist/material/components/ap-chat/locales/zh-TW.js +1 -1
- package/dist/material/components/ap-chat/locales/zh-TW.json +13 -1
- package/dist/material/components/ap-tool-call/locales/ro.json +1 -1
- package/package.json +1 -1
|
@@ -36,21 +36,23 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
36
36
|
CanvasPositionControls: ()=>CanvasPositionControls
|
|
37
37
|
});
|
|
38
38
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
39
|
+
const apollo_core_namespaceObject = require("@uipath/apollo-core");
|
|
40
|
+
var apollo_core_default = /*#__PURE__*/ __webpack_require__.n(apollo_core_namespaceObject);
|
|
39
41
|
const index_cjs_namespaceObject = require("../icons/index.cjs");
|
|
40
42
|
const external_layouts_index_cjs_namespaceObject = require("../layouts/index.cjs");
|
|
41
43
|
const react_cjs_namespaceObject = require("../xyflow/react.cjs");
|
|
42
44
|
const external_material_index_cjs_namespaceObject = require("../../material/index.cjs");
|
|
43
45
|
const external_react_namespaceObject = require("react");
|
|
44
46
|
const BaseCanvas_constants_cjs_namespaceObject = require("./BaseCanvas/BaseCanvas.constants.cjs");
|
|
45
|
-
const
|
|
46
|
-
var apollo_core_default = /*#__PURE__*/ __webpack_require__.n(apollo_core_namespaceObject);
|
|
47
|
-
const CanvasPositionControls = /*#__PURE__*/ (0, external_react_namespaceObject.memo)(({ orientation = 'horizontal', fitViewOptions, translations, onOrganize })=>{
|
|
47
|
+
const CanvasPositionControls = /*#__PURE__*/ (0, external_react_namespaceObject.memo)(({ orientation = 'horizontal', fitViewOptions, zoomInOptions, zoomOutOptions, translations, onOrganize })=>{
|
|
48
48
|
const { zoomIn, zoomOut, fitView } = (0, react_cjs_namespaceObject.useReactFlow)();
|
|
49
|
-
const handleZoomIn = (0, external_react_namespaceObject.useCallback)(()=>zoomIn(), [
|
|
50
|
-
zoomIn
|
|
49
|
+
const handleZoomIn = (0, external_react_namespaceObject.useCallback)(()=>zoomIn(zoomInOptions), [
|
|
50
|
+
zoomIn,
|
|
51
|
+
zoomInOptions
|
|
51
52
|
]);
|
|
52
|
-
const handleZoomOut = (0, external_react_namespaceObject.useCallback)(()=>zoomOut(), [
|
|
53
|
-
zoomOut
|
|
53
|
+
const handleZoomOut = (0, external_react_namespaceObject.useCallback)(()=>zoomOut(zoomOutOptions), [
|
|
54
|
+
zoomOut,
|
|
55
|
+
zoomOutOptions
|
|
54
56
|
]);
|
|
55
57
|
const handleFitToView = (0, external_react_namespaceObject.useCallback)(()=>fitView(fitViewOptions ?? BaseCanvas_constants_cjs_namespaceObject.BASE_CANVAS_DEFAULTS.fitViewOptions), [
|
|
56
58
|
fitView,
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
+
import { type ViewportHelperFunctionOptions as BaseCanvasZoomOptions } from '../xyflow/react.ts';
|
|
1
2
|
import type { CanvasTranslations } from '../types';
|
|
2
3
|
import type { BaseCanvasFitViewOptions } from './BaseCanvas/BaseCanvas.types';
|
|
4
|
+
export type { BaseCanvasZoomOptions };
|
|
3
5
|
export interface CanvasPositionControlsProps {
|
|
4
6
|
orientation?: 'horizontal' | 'vertical';
|
|
5
7
|
fitViewOptions?: BaseCanvasFitViewOptions;
|
|
8
|
+
zoomInOptions?: BaseCanvasZoomOptions;
|
|
9
|
+
zoomOutOptions?: BaseCanvasZoomOptions;
|
|
6
10
|
translations: CanvasTranslations;
|
|
7
11
|
onOrganize?: () => void;
|
|
8
12
|
}
|
|
9
|
-
export declare const CanvasPositionControls: import("react").MemoExoticComponent<({ orientation, fitViewOptions, translations, onOrganize, }: CanvasPositionControlsProps) => import("react/jsx-runtime").JSX.Element>;
|
|
13
|
+
export declare const CanvasPositionControls: import("react").MemoExoticComponent<({ orientation, fitViewOptions, zoomInOptions, zoomOutOptions, translations, onOrganize, }: CanvasPositionControlsProps) => import("react/jsx-runtime").JSX.Element>;
|
|
10
14
|
//# sourceMappingURL=CanvasPositionControls.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CanvasPositionControls.d.ts","sourceRoot":"","sources":["../../../src/canvas/components/CanvasPositionControls.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CanvasPositionControls.d.ts","sourceRoot":"","sources":["../../../src/canvas/components/CanvasPositionControls.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,KAAK,6BAA6B,IAAI,qBAAqB,EAE5D,MAAM,0CAA0C,CAAC;AAGlD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAEnD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAC9E,YAAY,EAAE,qBAAqB,EAAE,CAAC;AAEtC,MAAM,WAAW,2BAA2B;IAC1C,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAC;IACxC,cAAc,CAAC,EAAE,wBAAwB,CAAC;IAC1C,aAAa,CAAC,EAAE,qBAAqB,CAAC;IACtC,cAAc,CAAC,EAAE,qBAAqB,CAAC;IACvC,YAAY,EAAE,kBAAkB,CAAC;IACjC,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;CACzB;AAED,eAAO,MAAM,sBAAsB,kIAQ9B,2BAA2B,6CA2D/B,CAAC"}
|
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import apollo_core from "@uipath/apollo-core";
|
|
2
3
|
import { OrganizeIcon, ZoomToFitIcon } from "../icons/index.js";
|
|
3
4
|
import { Column, Row } from "../layouts/index.js";
|
|
4
5
|
import { useReactFlow } from "../xyflow/react.js";
|
|
5
6
|
import { ApIcon, ApIconButton, ApTooltip } from "../../material/index.js";
|
|
6
7
|
import { memo, useCallback } from "react";
|
|
7
8
|
import { BASE_CANVAS_DEFAULTS } from "./BaseCanvas/BaseCanvas.constants.js";
|
|
8
|
-
|
|
9
|
-
const CanvasPositionControls = /*#__PURE__*/ memo(({ orientation = 'horizontal', fitViewOptions, translations, onOrganize })=>{
|
|
9
|
+
const CanvasPositionControls = /*#__PURE__*/ memo(({ orientation = 'horizontal', fitViewOptions, zoomInOptions, zoomOutOptions, translations, onOrganize })=>{
|
|
10
10
|
const { zoomIn, zoomOut, fitView } = useReactFlow();
|
|
11
|
-
const handleZoomIn = useCallback(()=>zoomIn(), [
|
|
12
|
-
zoomIn
|
|
11
|
+
const handleZoomIn = useCallback(()=>zoomIn(zoomInOptions), [
|
|
12
|
+
zoomIn,
|
|
13
|
+
zoomInOptions
|
|
13
14
|
]);
|
|
14
|
-
const handleZoomOut = useCallback(()=>zoomOut(), [
|
|
15
|
-
zoomOut
|
|
15
|
+
const handleZoomOut = useCallback(()=>zoomOut(zoomOutOptions), [
|
|
16
|
+
zoomOut,
|
|
17
|
+
zoomOutOptions
|
|
16
18
|
]);
|
|
17
19
|
const handleFitToView = useCallback(()=>fitView(fitViewOptions ?? BASE_CANVAS_DEFAULTS.fitViewOptions), [
|
|
18
20
|
fitView,
|
|
@@ -65,6 +65,9 @@ function resolveHandles(handleGroups, context) {
|
|
|
65
65
|
const isCollapsed = context?.isCollapsed ?? false;
|
|
66
66
|
return handleGroups.map((group)=>{
|
|
67
67
|
const handles = group.handles.flatMap((handle)=>{
|
|
68
|
+
const isArtifactHandle = 'artifact' === handle.handleType;
|
|
69
|
+
const handleBaseVisible = resolveVisibility(handle.visible, context);
|
|
70
|
+
const handleVisible = isCollapsed && isArtifactHandle ? false : handleBaseVisible;
|
|
68
71
|
if (handle.repeat) {
|
|
69
72
|
const array = getPropertyByPath(context.inputs || {}, handle.repeat);
|
|
70
73
|
if (!Array.isArray(array)) {
|
|
@@ -79,32 +82,30 @@ function resolveHandles(handleGroups, context) {
|
|
|
79
82
|
[itemVar]: item,
|
|
80
83
|
[indexVar]: index
|
|
81
84
|
};
|
|
82
|
-
const baseVisible = resolveVisibility(handle.visible, context);
|
|
83
|
-
const isArtifactHandle = 'artifact' === handle.handleType;
|
|
84
|
-
const visible = context.isCollapsed && isArtifactHandle ? false : baseVisible;
|
|
85
85
|
return {
|
|
86
86
|
...handle,
|
|
87
87
|
id: replaceTemplateVars(handle.id, vars),
|
|
88
88
|
label: handle.label ? replaceTemplateVars(handle.label, vars) : void 0,
|
|
89
|
-
visible,
|
|
89
|
+
visible: handleVisible,
|
|
90
90
|
repeat: void 0,
|
|
91
91
|
itemVar: void 0,
|
|
92
92
|
indexVar: void 0
|
|
93
93
|
};
|
|
94
94
|
});
|
|
95
95
|
}
|
|
96
|
-
const baseVisible = resolveVisibility(handle.visible, context);
|
|
97
|
-
const isArtifactHandle = 'artifact' === handle.handleType;
|
|
98
|
-
const visible = isCollapsed && isArtifactHandle ? false : baseVisible;
|
|
99
96
|
return {
|
|
100
97
|
...handle,
|
|
101
98
|
id: replaceTemplateVars(handle.id, context),
|
|
102
99
|
label: handle.label ? replaceTemplateVars(handle.label, context) : void 0,
|
|
103
|
-
visible
|
|
100
|
+
visible: handleVisible
|
|
104
101
|
};
|
|
105
102
|
});
|
|
103
|
+
const hasVisibleHandles = handles.some((h)=>h.visible);
|
|
104
|
+
const groupBaseVisible = group.visible;
|
|
105
|
+
const groupVisible = isCollapsed && !hasVisibleHandles ? false : groupBaseVisible;
|
|
106
106
|
return {
|
|
107
107
|
...group,
|
|
108
|
+
visible: groupVisible,
|
|
108
109
|
handles
|
|
109
110
|
};
|
|
110
111
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest-resolver.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/manifest-resolver.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yCAAyC,CAAC;AACjF,OAAO,KAAK,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAC5F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yCAAyC,CAAC;AACnF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAMrE,MAAM,WAAW,iBAAkB,SAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAEhE,OAAO,CAAC,EAAE,qBAAqB,CAAC;IAEhC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAEjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAMD,MAAM,MAAM,eAAe,GAAG,qBAAqB,GAAG;IACpD,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,wBAAwB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5C,CAAC;AAKF,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,cAAc,EAAE,QAAQ,GAAG,SAAS,GAAG,UAAU,CAAC;IAE7F,EAAE,EAAE,MAAM,CAAC;IAEX,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,OAAO,EAAE,OAAO,CAAC;IAEjB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,CAAC;CAC/C;AAKD,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,mBAAmB,EAAE,SAAS,CAAC;IAE/E,OAAO,EAAE,cAAc,EAAE,CAAC;CAC3B;AAKD,UAAU,YAAY;IACpB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAkBD,wBAAgB,cAAc,CAC5B,eAAe,CAAC,EAAE,mBAAmB,EACrC,OAAO,CAAC,EAAE,iBAAiB,GAC1B,eAAe,CAoBjB;AA6BD,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,EACrC,OAAO,EAAE,iBAAiB,GACzB,OAAO,CAmBT;AAiCD,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,GAAG,MAAM,CAKhF;AAuCD,wBAAgB,cAAc,CAC5B,YAAY,EAAE,mBAAmB,EAAE,EACnC,OAAO,EAAE,iBAAiB,GACzB,mBAAmB,EAAE,
|
|
1
|
+
{"version":3,"file":"manifest-resolver.d.ts","sourceRoot":"","sources":["../../../src/canvas/utils/manifest-resolver.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yCAAyC,CAAC;AACjF,OAAO,KAAK,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAC5F,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yCAAyC,CAAC;AACnF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAMrE,MAAM,WAAW,iBAAkB,SAAQ,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAEhE,OAAO,CAAC,EAAE,qBAAqB,CAAC;IAEhC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAEjC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAMD,MAAM,MAAM,eAAe,GAAG,qBAAqB,GAAG;IACpD,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,wBAAwB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5C,CAAC;AAKF,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,cAAc,EAAE,QAAQ,GAAG,SAAS,GAAG,UAAU,CAAC;IAE7F,EAAE,EAAE,MAAM,CAAC;IAEX,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,OAAO,EAAE,OAAO,CAAC;IAEjB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,iBAAiB,KAAK,IAAI,CAAC;CAC/C;AAKD,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,mBAAmB,EAAE,SAAS,CAAC;IAE/E,OAAO,EAAE,cAAc,EAAE,CAAC;CAC3B;AAKD,UAAU,YAAY;IACpB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IACvB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAkBD,wBAAgB,cAAc,CAC5B,eAAe,CAAC,EAAE,mBAAmB,EACrC,OAAO,CAAC,EAAE,iBAAiB,GAC1B,eAAe,CAoBjB;AA6BD,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,EACrC,OAAO,EAAE,iBAAiB,GACzB,OAAO,CAmBT;AAiCD,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,GAAG,MAAM,CAKhF;AAuCD,wBAAgB,cAAc,CAC5B,YAAY,EAAE,mBAAmB,EAAE,EACnC,OAAO,EAAE,iBAAiB,GACzB,mBAAmB,EAAE,CAmEvB"}
|
|
@@ -34,6 +34,9 @@ function resolveHandles(handleGroups, context) {
|
|
|
34
34
|
const isCollapsed = context?.isCollapsed ?? false;
|
|
35
35
|
return handleGroups.map((group)=>{
|
|
36
36
|
const handles = group.handles.flatMap((handle)=>{
|
|
37
|
+
const isArtifactHandle = 'artifact' === handle.handleType;
|
|
38
|
+
const handleBaseVisible = resolveVisibility(handle.visible, context);
|
|
39
|
+
const handleVisible = isCollapsed && isArtifactHandle ? false : handleBaseVisible;
|
|
37
40
|
if (handle.repeat) {
|
|
38
41
|
const array = getPropertyByPath(context.inputs || {}, handle.repeat);
|
|
39
42
|
if (!Array.isArray(array)) {
|
|
@@ -48,32 +51,30 @@ function resolveHandles(handleGroups, context) {
|
|
|
48
51
|
[itemVar]: item,
|
|
49
52
|
[indexVar]: index
|
|
50
53
|
};
|
|
51
|
-
const baseVisible = resolveVisibility(handle.visible, context);
|
|
52
|
-
const isArtifactHandle = 'artifact' === handle.handleType;
|
|
53
|
-
const visible = context.isCollapsed && isArtifactHandle ? false : baseVisible;
|
|
54
54
|
return {
|
|
55
55
|
...handle,
|
|
56
56
|
id: replaceTemplateVars(handle.id, vars),
|
|
57
57
|
label: handle.label ? replaceTemplateVars(handle.label, vars) : void 0,
|
|
58
|
-
visible,
|
|
58
|
+
visible: handleVisible,
|
|
59
59
|
repeat: void 0,
|
|
60
60
|
itemVar: void 0,
|
|
61
61
|
indexVar: void 0
|
|
62
62
|
};
|
|
63
63
|
});
|
|
64
64
|
}
|
|
65
|
-
const baseVisible = resolveVisibility(handle.visible, context);
|
|
66
|
-
const isArtifactHandle = 'artifact' === handle.handleType;
|
|
67
|
-
const visible = isCollapsed && isArtifactHandle ? false : baseVisible;
|
|
68
65
|
return {
|
|
69
66
|
...handle,
|
|
70
67
|
id: replaceTemplateVars(handle.id, context),
|
|
71
68
|
label: handle.label ? replaceTemplateVars(handle.label, context) : void 0,
|
|
72
|
-
visible
|
|
69
|
+
visible: handleVisible
|
|
73
70
|
};
|
|
74
71
|
});
|
|
72
|
+
const hasVisibleHandles = handles.some((h)=>h.visible);
|
|
73
|
+
const groupBaseVisible = group.visible;
|
|
74
|
+
const groupVisible = isCollapsed && !hasVisibleHandles ? false : groupBaseVisible;
|
|
75
75
|
return {
|
|
76
76
|
...group,
|
|
77
|
+
visible: groupVisible,
|
|
77
78
|
handles
|
|
78
79
|
};
|
|
79
80
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Entfernen\"],\"autopilot-chat.common.attachments.remove-file-name\":[[\"name\"],\" entfernen\"],\"autopilot-chat.common.mode-selector\":[\"Modusselektor\"],\"autopilot-chat.common.model-selector\":[\"Modellselektor\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Zulässige Dateitypen: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Maximal zulässige Dateien: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Maximale Dateigröße: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Legen Sie Ihre Dateien hier ab, um sie Ihrer Aufforderung hinzuzufügen.\"],\"autopilot-chat.error.file-invalid-type\":[\"Nicht unterstützte Datei: \",[\"fileName\"],\".\"],\"autopilot-chat.error.file-too-large\":[\"Datei zu groß: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.error.multiple-files\":[\"Pro Nachricht kann nur eine Datei angehängt werden.\"],\"autopilot-chat.error.too-many-files\":[\"Zu viele Dateien. Pro Nachricht sind \",[\"maxCount\"],\" Dateien zulässig.\"],\"autopilot-chat.header.actions.close\":[\"Chat schließen\"],\"autopilot-chat.header.actions.collapse\":[\"Reduzieren\"],\"autopilot-chat.header.actions.custom-actions\":[\"Weitere Aktionen\"],\"autopilot-chat.header.actions.expand\":[\"Erweitern\"],\"autopilot-chat.header.actions.history\":[\"Chatverlauf\"],\"autopilot-chat.header.actions.new-chat\":[\"Neuer Chat\"],\"autopilot-chat.header.actions.settings\":[\"Einstellungen\"],\"autopilot-chat.header.preview\":[\"Vorschau\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Löschen\"],\"autopilot-chat.history.empty\":[\"Es gibt noch keine Konversationen.\"],\"autopilot-chat.history.group.last-30-days\":[\"Vorherige 30 Tage\"],\"autopilot-chat.history.group.last-week\":[\"Letzte Woche\"],\"autopilot-chat.history.group.months-ago\":[\"vor\xA0\",[\"count\"],\"\xA0Monaten\"],\"autopilot-chat.history.group.today\":[\"Heute\"],\"autopilot-chat.history.group.yesterday\":[\"Gestern\"],\"autopilot-chat.history.no-results\":[\"Keine Ergebnisse gefunden.\"],\"autopilot-chat.history.search-placeholder\":[\"Suchen\"],\"autopilot-chat.input.actions.attach-file\":[\"Datei(en) anhängen\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Zulässige Dateitypen: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Maximal zulässige Dateien: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Maximale Dateigröße: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Datei zu groß: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.send\":[\"Senden\"],\"autopilot-chat.input.actions.stop\":[\"Anhalten\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Auswahl des Agent-Modus\"],\"autopilot-chat.input.footer\":[\"Autopilot kann Fehler machen. Überprüfen Sie die Antworten sorgfältig.\"],\"autopilot-chat.input.model-selection-label\":[\"Modellauswahl\"],\"autopilot-chat.input.placeholder\":[\"Was soll ich tun?\"],\"autopilot-chat.message.actions.bad\":[\"Verbesserungswürdig\"],\"autopilot-chat.message.actions.copy\":[\"Kopieren\"],\"autopilot-chat.message.actions.good\":[\"Gefällt mir\"],\"autopilot-chat.message.actions.label\":[\"Nachrichtenaktionen\"],\"autopilot-chat.message.actions.more\":[\"Weitere Aktionen\"],\"autopilot-chat.message.citation-aria-label\":[\"Zitat \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Chat schließen\"],\"autopilot-chat.message.code-block-code\":[\"Code\"],\"autopilot-chat.message.code-block-copy\":[\"Kopieren\"],\"autopilot-chat.message.code-block-language\":[\"Text\"],\"autopilot-chat.message.code-block-preview\":[\"Vorschau\"],\"autopilot-chat.message.expand\":[\"Erweitern\"],\"autopilot-chat.message.footnote-label\":[\"Quellen\"],\"autopilot-chat.message.generating-response\":[\"Generieren…\"],\"autopilot-chat.message.page-number\":[\"Seite \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Bildlauf nach unten\"],\"autopilot-chat.message.show-less\":[\"Weniger anzeigen\"],\"autopilot-chat.message.show-more\":[\"Mehr anzeigen\"],\"autopilot-chat.message.sources\":[\"Quellen\"],\"autopilot-chat.message.suggestions-title\":[\"Vorschläge\"],\"autopilot-chat.settings.heading-description\":[\"Überschriftsebene 2\"],\"autopilot-chat.settings.hide\":[\"Einstellungen ausblenden\"],\"autopilot-chat.settings.title\":[\"Chateinstellungen\"],\"autopilot-chat.tree.no-description\":[\"Keine Beschreibung\"],\"autopilot-chat.tree.no-items\":[\"Keine Elemente\"],\"autopilot-chat.tree.unknown\":[\"Unbekannt\"]}")};
|
|
1
|
+
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Entfernen\"],\"autopilot-chat.common.attachments.remove-file-name\":[[\"name\"],\" entfernen\"],\"autopilot-chat.common.mode-selector\":[\"Modusselektor\"],\"autopilot-chat.common.model-selector\":[\"Modellselektor\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Zulässige Dateitypen: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Maximal zulässige Dateien: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Maximale Dateigröße: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Legen Sie Ihre Dateien hier ab, um sie Ihrer Aufforderung hinzuzufügen.\"],\"autopilot-chat.error.file-invalid-type\":[\"Nicht unterstützte Datei: \",[\"fileName\"],\".\"],\"autopilot-chat.error.file-too-large\":[\"Datei zu groß: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.error.multiple-files\":[\"Pro Nachricht kann nur eine Datei angehängt werden.\"],\"autopilot-chat.error.too-many-files\":[\"Zu viele Dateien. Pro Nachricht sind \",[\"maxCount\"],\" Dateien zulässig.\"],\"autopilot-chat.header.actions.close\":[\"Chat schließen\"],\"autopilot-chat.header.actions.collapse\":[\"Reduzieren\"],\"autopilot-chat.header.actions.custom-actions\":[\"Weitere Aktionen\"],\"autopilot-chat.header.actions.expand\":[\"Erweitern\"],\"autopilot-chat.header.actions.history\":[\"Chatverlauf\"],\"autopilot-chat.header.actions.new-chat\":[\"Neuer Chat\"],\"autopilot-chat.header.actions.settings\":[\"Einstellungen\"],\"autopilot-chat.header.preview\":[\"Vorschau\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Löschen\"],\"autopilot-chat.history.empty\":[\"Es gibt noch keine Konversationen.\"],\"autopilot-chat.history.group.last-30-days\":[\"Vorherige 30 Tage\"],\"autopilot-chat.history.group.last-week\":[\"Letzte Woche\"],\"autopilot-chat.history.group.months-ago\":[\"vor\xA0\",[\"count\"],\"\xA0Monaten\"],\"autopilot-chat.history.group.today\":[\"Heute\"],\"autopilot-chat.history.group.yesterday\":[\"Gestern\"],\"autopilot-chat.history.no-results\":[\"Keine Ergebnisse gefunden.\"],\"autopilot-chat.history.search-placeholder\":[\"Suchen\"],\"autopilot-chat.input.actions.attach-file\":[\"Datei(en) anhängen\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Zulässige Dateitypen: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Maximal zulässige Dateien: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Maximale Dateigröße: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Datei zu groß: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.send\":[\"Senden\"],\"autopilot-chat.input.actions.stop\":[\"Anhalten\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Auswahl des Agent-Modus\"],\"autopilot-chat.input.footer\":[\"Autopilot kann Fehler machen. Überprüfen Sie die Antworten sorgfältig.\"],\"autopilot-chat.input.model-selection-label\":[\"Modellauswahl\"],\"autopilot-chat.input.placeholder\":[\"Was soll ich tun?\"],\"autopilot-chat.input.resource-chip.remove\":[\"Entfernen\"],\"autopilot-chat.input.resource-chip.remove-name\":[[\"label\"],\" entfernen\"],\"autopilot-chat.message.actions.bad\":[\"Verbesserungswürdig\"],\"autopilot-chat.message.actions.copy\":[\"Kopieren\"],\"autopilot-chat.message.actions.good\":[\"Gefällt mir\"],\"autopilot-chat.message.actions.label\":[\"Nachrichtenaktionen\"],\"autopilot-chat.message.actions.more\":[\"Weitere Aktionen\"],\"autopilot-chat.message.citation-aria-label\":[\"Zitat \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Chat schließen\"],\"autopilot-chat.message.code-block-code\":[\"Code\"],\"autopilot-chat.message.code-block-copy\":[\"Kopieren\"],\"autopilot-chat.message.code-block-language\":[\"Text\"],\"autopilot-chat.message.code-block-preview\":[\"Vorschau\"],\"autopilot-chat.message.expand\":[\"Erweitern\"],\"autopilot-chat.message.footnote-label\":[\"Quellen\"],\"autopilot-chat.message.generating-response\":[\"Generieren…\"],\"autopilot-chat.message.page-number\":[\"Seite \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Bildlauf nach unten\"],\"autopilot-chat.message.show-less\":[\"Weniger anzeigen\"],\"autopilot-chat.message.show-more\":[\"Mehr anzeigen\"],\"autopilot-chat.message.sources\":[\"Quellen\"],\"autopilot-chat.message.suggestions-title\":[\"Vorschläge\"],\"autopilot-chat.resource-picker.back\":[\"Zurück\"],\"autopilot-chat.resource-picker.empty\":[\"Keine Ressourcen verfügbar\"],\"autopilot-chat.resource-picker.error\":[\"Ressourcen konnten nicht geladen werden\"],\"autopilot-chat.resource-picker.label\":[\"Ressourcenauswahl\"],\"autopilot-chat.resource-picker.load-more-error\":[\"Es konnten keine weiteren geladen werden\"],\"autopilot-chat.resource-picker.no-results\":[\"Keine übereinstimmenden Ressourcen\"],\"autopilot-chat.resource-picker.retry\":[\"Wiederholen\"],\"autopilot-chat.resource-picker.search-error\":[\"Suche fehlgeschlagen\"],\"autopilot-chat.resource-trigger.label\":[\"Ressourcenreferenz hinzufügen\"],\"autopilot-chat.resource-trigger.tooltip\":[\"Ressource hinzufügen\"],\"autopilot-chat.settings.heading-description\":[\"Überschriftsebene 2\"],\"autopilot-chat.settings.hide\":[\"Einstellungen ausblenden\"],\"autopilot-chat.settings.title\":[\"Chateinstellungen\"],\"autopilot-chat.tree.no-description\":[\"Keine Beschreibung\"],\"autopilot-chat.tree.no-items\":[\"Keine Elemente\"],\"autopilot-chat.tree.unknown\":[\"Unbekannt\"]}")};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*eslint-disable*/export default {messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Entfernen\"],\"autopilot-chat.common.attachments.remove-file-name\":[[\"name\"],\" entfernen\"],\"autopilot-chat.common.mode-selector\":[\"Modusselektor\"],\"autopilot-chat.common.model-selector\":[\"Modellselektor\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Zulässige Dateitypen: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Maximal zulässige Dateien: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Maximale Dateigröße: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Legen Sie Ihre Dateien hier ab, um sie Ihrer Aufforderung hinzuzufügen.\"],\"autopilot-chat.error.file-invalid-type\":[\"Nicht unterstützte Datei: \",[\"fileName\"],\".\"],\"autopilot-chat.error.file-too-large\":[\"Datei zu groß: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.error.multiple-files\":[\"Pro Nachricht kann nur eine Datei angehängt werden.\"],\"autopilot-chat.error.too-many-files\":[\"Zu viele Dateien. Pro Nachricht sind \",[\"maxCount\"],\" Dateien zulässig.\"],\"autopilot-chat.header.actions.close\":[\"Chat schließen\"],\"autopilot-chat.header.actions.collapse\":[\"Reduzieren\"],\"autopilot-chat.header.actions.custom-actions\":[\"Weitere Aktionen\"],\"autopilot-chat.header.actions.expand\":[\"Erweitern\"],\"autopilot-chat.header.actions.history\":[\"Chatverlauf\"],\"autopilot-chat.header.actions.new-chat\":[\"Neuer Chat\"],\"autopilot-chat.header.actions.settings\":[\"Einstellungen\"],\"autopilot-chat.header.preview\":[\"Vorschau\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Löschen\"],\"autopilot-chat.history.empty\":[\"Es gibt noch keine Konversationen.\"],\"autopilot-chat.history.group.last-30-days\":[\"Vorherige 30 Tage\"],\"autopilot-chat.history.group.last-week\":[\"Letzte Woche\"],\"autopilot-chat.history.group.months-ago\":[\"vor\xA0\",[\"count\"],\"\xA0Monaten\"],\"autopilot-chat.history.group.today\":[\"Heute\"],\"autopilot-chat.history.group.yesterday\":[\"Gestern\"],\"autopilot-chat.history.no-results\":[\"Keine Ergebnisse gefunden.\"],\"autopilot-chat.history.search-placeholder\":[\"Suchen\"],\"autopilot-chat.input.actions.attach-file\":[\"Datei(en) anhängen\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Zulässige Dateitypen: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Maximal zulässige Dateien: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Maximale Dateigröße: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Datei zu groß: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.send\":[\"Senden\"],\"autopilot-chat.input.actions.stop\":[\"Anhalten\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Auswahl des Agent-Modus\"],\"autopilot-chat.input.footer\":[\"Autopilot kann Fehler machen. Überprüfen Sie die Antworten sorgfältig.\"],\"autopilot-chat.input.model-selection-label\":[\"Modellauswahl\"],\"autopilot-chat.input.placeholder\":[\"Was soll ich tun?\"],\"autopilot-chat.message.actions.bad\":[\"Verbesserungswürdig\"],\"autopilot-chat.message.actions.copy\":[\"Kopieren\"],\"autopilot-chat.message.actions.good\":[\"Gefällt mir\"],\"autopilot-chat.message.actions.label\":[\"Nachrichtenaktionen\"],\"autopilot-chat.message.actions.more\":[\"Weitere Aktionen\"],\"autopilot-chat.message.citation-aria-label\":[\"Zitat \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Chat schließen\"],\"autopilot-chat.message.code-block-code\":[\"Code\"],\"autopilot-chat.message.code-block-copy\":[\"Kopieren\"],\"autopilot-chat.message.code-block-language\":[\"Text\"],\"autopilot-chat.message.code-block-preview\":[\"Vorschau\"],\"autopilot-chat.message.expand\":[\"Erweitern\"],\"autopilot-chat.message.footnote-label\":[\"Quellen\"],\"autopilot-chat.message.generating-response\":[\"Generieren…\"],\"autopilot-chat.message.page-number\":[\"Seite \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Bildlauf nach unten\"],\"autopilot-chat.message.show-less\":[\"Weniger anzeigen\"],\"autopilot-chat.message.show-more\":[\"Mehr anzeigen\"],\"autopilot-chat.message.sources\":[\"Quellen\"],\"autopilot-chat.message.suggestions-title\":[\"Vorschläge\"],\"autopilot-chat.settings.heading-description\":[\"Überschriftsebene 2\"],\"autopilot-chat.settings.hide\":[\"Einstellungen ausblenden\"],\"autopilot-chat.settings.title\":[\"Chateinstellungen\"],\"autopilot-chat.tree.no-description\":[\"Keine Beschreibung\"],\"autopilot-chat.tree.no-items\":[\"Keine Elemente\"],\"autopilot-chat.tree.unknown\":[\"Unbekannt\"]}")};
|
|
1
|
+
/*eslint-disable*/export default {messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Entfernen\"],\"autopilot-chat.common.attachments.remove-file-name\":[[\"name\"],\" entfernen\"],\"autopilot-chat.common.mode-selector\":[\"Modusselektor\"],\"autopilot-chat.common.model-selector\":[\"Modellselektor\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Zulässige Dateitypen: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Maximal zulässige Dateien: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Maximale Dateigröße: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Legen Sie Ihre Dateien hier ab, um sie Ihrer Aufforderung hinzuzufügen.\"],\"autopilot-chat.error.file-invalid-type\":[\"Nicht unterstützte Datei: \",[\"fileName\"],\".\"],\"autopilot-chat.error.file-too-large\":[\"Datei zu groß: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.error.multiple-files\":[\"Pro Nachricht kann nur eine Datei angehängt werden.\"],\"autopilot-chat.error.too-many-files\":[\"Zu viele Dateien. Pro Nachricht sind \",[\"maxCount\"],\" Dateien zulässig.\"],\"autopilot-chat.header.actions.close\":[\"Chat schließen\"],\"autopilot-chat.header.actions.collapse\":[\"Reduzieren\"],\"autopilot-chat.header.actions.custom-actions\":[\"Weitere Aktionen\"],\"autopilot-chat.header.actions.expand\":[\"Erweitern\"],\"autopilot-chat.header.actions.history\":[\"Chatverlauf\"],\"autopilot-chat.header.actions.new-chat\":[\"Neuer Chat\"],\"autopilot-chat.header.actions.settings\":[\"Einstellungen\"],\"autopilot-chat.header.preview\":[\"Vorschau\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Löschen\"],\"autopilot-chat.history.empty\":[\"Es gibt noch keine Konversationen.\"],\"autopilot-chat.history.group.last-30-days\":[\"Vorherige 30 Tage\"],\"autopilot-chat.history.group.last-week\":[\"Letzte Woche\"],\"autopilot-chat.history.group.months-ago\":[\"vor\xA0\",[\"count\"],\"\xA0Monaten\"],\"autopilot-chat.history.group.today\":[\"Heute\"],\"autopilot-chat.history.group.yesterday\":[\"Gestern\"],\"autopilot-chat.history.no-results\":[\"Keine Ergebnisse gefunden.\"],\"autopilot-chat.history.search-placeholder\":[\"Suchen\"],\"autopilot-chat.input.actions.attach-file\":[\"Datei(en) anhängen\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Zulässige Dateitypen: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Maximal zulässige Dateien: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Maximale Dateigröße: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Datei zu groß: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.send\":[\"Senden\"],\"autopilot-chat.input.actions.stop\":[\"Anhalten\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Auswahl des Agent-Modus\"],\"autopilot-chat.input.footer\":[\"Autopilot kann Fehler machen. Überprüfen Sie die Antworten sorgfältig.\"],\"autopilot-chat.input.model-selection-label\":[\"Modellauswahl\"],\"autopilot-chat.input.placeholder\":[\"Was soll ich tun?\"],\"autopilot-chat.input.resource-chip.remove\":[\"Entfernen\"],\"autopilot-chat.input.resource-chip.remove-name\":[[\"label\"],\" entfernen\"],\"autopilot-chat.message.actions.bad\":[\"Verbesserungswürdig\"],\"autopilot-chat.message.actions.copy\":[\"Kopieren\"],\"autopilot-chat.message.actions.good\":[\"Gefällt mir\"],\"autopilot-chat.message.actions.label\":[\"Nachrichtenaktionen\"],\"autopilot-chat.message.actions.more\":[\"Weitere Aktionen\"],\"autopilot-chat.message.citation-aria-label\":[\"Zitat \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Chat schließen\"],\"autopilot-chat.message.code-block-code\":[\"Code\"],\"autopilot-chat.message.code-block-copy\":[\"Kopieren\"],\"autopilot-chat.message.code-block-language\":[\"Text\"],\"autopilot-chat.message.code-block-preview\":[\"Vorschau\"],\"autopilot-chat.message.expand\":[\"Erweitern\"],\"autopilot-chat.message.footnote-label\":[\"Quellen\"],\"autopilot-chat.message.generating-response\":[\"Generieren…\"],\"autopilot-chat.message.page-number\":[\"Seite \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Bildlauf nach unten\"],\"autopilot-chat.message.show-less\":[\"Weniger anzeigen\"],\"autopilot-chat.message.show-more\":[\"Mehr anzeigen\"],\"autopilot-chat.message.sources\":[\"Quellen\"],\"autopilot-chat.message.suggestions-title\":[\"Vorschläge\"],\"autopilot-chat.resource-picker.back\":[\"Zurück\"],\"autopilot-chat.resource-picker.empty\":[\"Keine Ressourcen verfügbar\"],\"autopilot-chat.resource-picker.error\":[\"Ressourcen konnten nicht geladen werden\"],\"autopilot-chat.resource-picker.label\":[\"Ressourcenauswahl\"],\"autopilot-chat.resource-picker.load-more-error\":[\"Es konnten keine weiteren geladen werden\"],\"autopilot-chat.resource-picker.no-results\":[\"Keine übereinstimmenden Ressourcen\"],\"autopilot-chat.resource-picker.retry\":[\"Wiederholen\"],\"autopilot-chat.resource-picker.search-error\":[\"Suche fehlgeschlagen\"],\"autopilot-chat.resource-trigger.label\":[\"Ressourcenreferenz hinzufügen\"],\"autopilot-chat.resource-trigger.tooltip\":[\"Ressource hinzufügen\"],\"autopilot-chat.settings.heading-description\":[\"Überschriftsebene 2\"],\"autopilot-chat.settings.hide\":[\"Einstellungen ausblenden\"],\"autopilot-chat.settings.title\":[\"Chateinstellungen\"],\"autopilot-chat.tree.no-description\":[\"Keine Beschreibung\"],\"autopilot-chat.tree.no-items\":[\"Keine Elemente\"],\"autopilot-chat.tree.unknown\":[\"Unbekannt\"]}")};
|
|
@@ -65,5 +65,17 @@
|
|
|
65
65
|
"autopilot-chat.history.group.today": "Heute",
|
|
66
66
|
"autopilot-chat.input.placeholder": "Was soll ich tun?",
|
|
67
67
|
"autopilot-chat.tree.unknown": "Unbekannt",
|
|
68
|
-
"autopilot-chat.history.group.yesterday": "Gestern"
|
|
68
|
+
"autopilot-chat.history.group.yesterday": "Gestern",
|
|
69
|
+
"autopilot-chat.resource-trigger.tooltip": "Ressource hinzufügen",
|
|
70
|
+
"autopilot-chat.resource-trigger.label": "Ressourcenreferenz hinzufügen",
|
|
71
|
+
"autopilot-chat.resource-picker.error": "Ressourcen konnten nicht geladen werden",
|
|
72
|
+
"autopilot-chat.resource-picker.retry": "Wiederholen",
|
|
73
|
+
"autopilot-chat.resource-picker.no-results": "Keine übereinstimmenden Ressourcen",
|
|
74
|
+
"autopilot-chat.resource-picker.empty": "Keine Ressourcen verfügbar",
|
|
75
|
+
"autopilot-chat.resource-picker.label": "Ressourcenauswahl",
|
|
76
|
+
"autopilot-chat.resource-picker.load-more-error": "Es konnten keine weiteren geladen werden",
|
|
77
|
+
"autopilot-chat.resource-picker.search-error": "Suche fehlgeschlagen",
|
|
78
|
+
"autopilot-chat.resource-picker.back": "Zurück",
|
|
79
|
+
"autopilot-chat.input.resource-chip.remove": "Entfernen",
|
|
80
|
+
"autopilot-chat.input.resource-chip.remove-name": "{label} entfernen"
|
|
69
81
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Eliminar\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Eliminar \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Selector de modo\"],\"autopilot-chat.common.model-selector\":[\"Selector de modelo\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Tamaño máximo del archivo: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Suelte los archivos aquí para agregarlos a la solicitud\"],\"autopilot-chat.error.file-invalid-type\":[\"Archivo incompatible: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.error.multiple-files\":[\"Solo se puede adjuntar un archivo por mensaje\"],\"autopilot-chat.error.too-many-files\":[\"Demasiados archivos. Se permiten \",[\"maxCount\"],\" archivos por mensaje\"],\"autopilot-chat.header.actions.close\":[\"Cerrar chat\"],\"autopilot-chat.header.actions.collapse\":[\"Contraer\"],\"autopilot-chat.header.actions.custom-actions\":[\"Más acciones\"],\"autopilot-chat.header.actions.expand\":[\"Expandir\"],\"autopilot-chat.header.actions.history\":[\"Historial del chat\"],\"autopilot-chat.header.actions.new-chat\":[\"Nuevo chat\"],\"autopilot-chat.header.actions.settings\":[\"Configuración\"],\"autopilot-chat.header.preview\":[\"Vista previa\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Eliminar\"],\"autopilot-chat.history.empty\":[\"Aún no hay conversaciones.\"],\"autopilot-chat.history.group.last-30-days\":[\"30\xA0días anteriores\"],\"autopilot-chat.history.group.last-week\":[\"Última semana\"],\"autopilot-chat.history.group.months-ago\":[\"hace \",[\"count\"],\" meses\"],\"autopilot-chat.history.group.today\":[\"Hoy\"],\"autopilot-chat.history.group.yesterday\":[\"Ayer\"],\"autopilot-chat.history.no-results\":[\"No se encontraron resultados.\"],\"autopilot-chat.history.search-placeholder\":[\"Buscar\"],\"autopilot-chat.input.actions.attach-file\":[\"Adjuntar archivo(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Tamaño máximo del archivo: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.send\":[\"Enviar\"],\"autopilot-chat.input.actions.stop\":[\"Detener\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Selección del modo de agente\"],\"autopilot-chat.input.footer\":[\"Autopilot puede cometer errores. Compruebe las respuestas.\"],\"autopilot-chat.input.model-selection-label\":[\"Selección de modelo\"],\"autopilot-chat.input.placeholder\":[\"¿Qué le gustaría que hiciera?\"],\"autopilot-chat.message.actions.bad\":[\"Necesita mejorar\"],\"autopilot-chat.message.actions.copy\":[\"Copiar\"],\"autopilot-chat.message.actions.good\":[\"Me encanta\"],\"autopilot-chat.message.actions.label\":[\"Acciones de mensajes\"],\"autopilot-chat.message.actions.more\":[\"Más acciones\"],\"autopilot-chat.message.citation-aria-label\":[\"Cita \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Cerrar chat\"],\"autopilot-chat.message.code-block-code\":[\"Código\"],\"autopilot-chat.message.code-block-copy\":[\"Copiar\"],\"autopilot-chat.message.code-block-language\":[\"Texto\"],\"autopilot-chat.message.code-block-preview\":[\"Vista previa\"],\"autopilot-chat.message.expand\":[\"Expandir\"],\"autopilot-chat.message.footnote-label\":[\"Fuentes\"],\"autopilot-chat.message.generating-response\":[\"Generando…\"],\"autopilot-chat.message.page-number\":[\"Página \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Desplazar hacia abajo\"],\"autopilot-chat.message.show-less\":[\"Mostrar menos\"],\"autopilot-chat.message.show-more\":[\"Mostrar más\"],\"autopilot-chat.message.sources\":[\"Fuentes\"],\"autopilot-chat.message.suggestions-title\":[\"Sugerencias\"],\"autopilot-chat.settings.heading-description\":[\"nivel del encabezado\xA02\"],\"autopilot-chat.settings.hide\":[\"Ocultar configuración\"],\"autopilot-chat.settings.title\":[\"Configuración de chat\"],\"autopilot-chat.tree.no-description\":[\"Sin descripción\"],\"autopilot-chat.tree.no-items\":[\"Sin elementos\"],\"autopilot-chat.tree.unknown\":[\"Desconocido\"]}")};
|
|
1
|
+
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Eliminar\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Eliminar \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Selector de modo\"],\"autopilot-chat.common.model-selector\":[\"Selector de modelo\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Tamaño máximo del archivo: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Suelte los archivos aquí para agregarlos a la solicitud\"],\"autopilot-chat.error.file-invalid-type\":[\"Archivo incompatible: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.error.multiple-files\":[\"Solo se puede adjuntar un archivo por mensaje\"],\"autopilot-chat.error.too-many-files\":[\"Demasiados archivos. Se permiten \",[\"maxCount\"],\" archivos por mensaje\"],\"autopilot-chat.header.actions.close\":[\"Cerrar chat\"],\"autopilot-chat.header.actions.collapse\":[\"Contraer\"],\"autopilot-chat.header.actions.custom-actions\":[\"Más acciones\"],\"autopilot-chat.header.actions.expand\":[\"Expandir\"],\"autopilot-chat.header.actions.history\":[\"Historial del chat\"],\"autopilot-chat.header.actions.new-chat\":[\"Nuevo chat\"],\"autopilot-chat.header.actions.settings\":[\"Configuración\"],\"autopilot-chat.header.preview\":[\"Vista previa\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Eliminar\"],\"autopilot-chat.history.empty\":[\"Aún no hay conversaciones.\"],\"autopilot-chat.history.group.last-30-days\":[\"30\xA0días anteriores\"],\"autopilot-chat.history.group.last-week\":[\"Última semana\"],\"autopilot-chat.history.group.months-ago\":[\"hace \",[\"count\"],\" meses\"],\"autopilot-chat.history.group.today\":[\"Hoy\"],\"autopilot-chat.history.group.yesterday\":[\"Ayer\"],\"autopilot-chat.history.no-results\":[\"No se encontraron resultados.\"],\"autopilot-chat.history.search-placeholder\":[\"Buscar\"],\"autopilot-chat.input.actions.attach-file\":[\"Adjuntar archivo(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Tamaño máximo del archivo: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.send\":[\"Enviar\"],\"autopilot-chat.input.actions.stop\":[\"Detener\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Selección del modo de agente\"],\"autopilot-chat.input.footer\":[\"Autopilot puede cometer errores. Compruebe las respuestas.\"],\"autopilot-chat.input.model-selection-label\":[\"Selección de modelo\"],\"autopilot-chat.input.placeholder\":[\"¿Qué le gustaría que hiciera?\"],\"autopilot-chat.input.resource-chip.remove\":[\"Eliminar\"],\"autopilot-chat.input.resource-chip.remove-name\":[\"Eliminar \",[\"label\"]],\"autopilot-chat.message.actions.bad\":[\"Necesita mejorar\"],\"autopilot-chat.message.actions.copy\":[\"Copiar\"],\"autopilot-chat.message.actions.good\":[\"Me encanta\"],\"autopilot-chat.message.actions.label\":[\"Acciones de mensajes\"],\"autopilot-chat.message.actions.more\":[\"Más acciones\"],\"autopilot-chat.message.citation-aria-label\":[\"Cita \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Cerrar chat\"],\"autopilot-chat.message.code-block-code\":[\"Código\"],\"autopilot-chat.message.code-block-copy\":[\"Copiar\"],\"autopilot-chat.message.code-block-language\":[\"Texto\"],\"autopilot-chat.message.code-block-preview\":[\"Vista previa\"],\"autopilot-chat.message.expand\":[\"Expandir\"],\"autopilot-chat.message.footnote-label\":[\"Fuentes\"],\"autopilot-chat.message.generating-response\":[\"Generando…\"],\"autopilot-chat.message.page-number\":[\"Página \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Desplazar hacia abajo\"],\"autopilot-chat.message.show-less\":[\"Mostrar menos\"],\"autopilot-chat.message.show-more\":[\"Mostrar más\"],\"autopilot-chat.message.sources\":[\"Fuentes\"],\"autopilot-chat.message.suggestions-title\":[\"Sugerencias\"],\"autopilot-chat.resource-picker.back\":[\"Volver\"],\"autopilot-chat.resource-picker.empty\":[\"No hay recursos disponibles\"],\"autopilot-chat.resource-picker.error\":[\"Error al cargar los recursos\"],\"autopilot-chat.resource-picker.label\":[\"Selector de recursos\"],\"autopilot-chat.resource-picker.load-more-error\":[\"Error al cargar más\"],\"autopilot-chat.resource-picker.no-results\":[\"No hay recursos coincidentes\"],\"autopilot-chat.resource-picker.retry\":[\"Reintentar\"],\"autopilot-chat.resource-picker.search-error\":[\"Error en la búsqueda\"],\"autopilot-chat.resource-trigger.label\":[\"Agregar referencia de recursos\"],\"autopilot-chat.resource-trigger.tooltip\":[\"Agregar recurso\"],\"autopilot-chat.settings.heading-description\":[\"nivel del encabezado\xA02\"],\"autopilot-chat.settings.hide\":[\"Ocultar configuración\"],\"autopilot-chat.settings.title\":[\"Configuración de chat\"],\"autopilot-chat.tree.no-description\":[\"Sin descripción\"],\"autopilot-chat.tree.no-items\":[\"Sin elementos\"],\"autopilot-chat.tree.unknown\":[\"Desconocido\"]}")};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*eslint-disable*/export default {messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Eliminar\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Eliminar \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Selector de modo\"],\"autopilot-chat.common.model-selector\":[\"Selector de modelo\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Tamaño máximo del archivo: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Suelte los archivos aquí para agregarlos a la solicitud\"],\"autopilot-chat.error.file-invalid-type\":[\"Archivo incompatible: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.error.multiple-files\":[\"Solo se puede adjuntar un archivo por mensaje\"],\"autopilot-chat.error.too-many-files\":[\"Demasiados archivos. Se permiten \",[\"maxCount\"],\" archivos por mensaje\"],\"autopilot-chat.header.actions.close\":[\"Cerrar chat\"],\"autopilot-chat.header.actions.collapse\":[\"Contraer\"],\"autopilot-chat.header.actions.custom-actions\":[\"Más acciones\"],\"autopilot-chat.header.actions.expand\":[\"Expandir\"],\"autopilot-chat.header.actions.history\":[\"Historial del chat\"],\"autopilot-chat.header.actions.new-chat\":[\"Nuevo chat\"],\"autopilot-chat.header.actions.settings\":[\"Configuración\"],\"autopilot-chat.header.preview\":[\"Vista previa\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Eliminar\"],\"autopilot-chat.history.empty\":[\"Aún no hay conversaciones.\"],\"autopilot-chat.history.group.last-30-days\":[\"30\xA0días anteriores\"],\"autopilot-chat.history.group.last-week\":[\"Última semana\"],\"autopilot-chat.history.group.months-ago\":[\"hace \",[\"count\"],\" meses\"],\"autopilot-chat.history.group.today\":[\"Hoy\"],\"autopilot-chat.history.group.yesterday\":[\"Ayer\"],\"autopilot-chat.history.no-results\":[\"No se encontraron resultados.\"],\"autopilot-chat.history.search-placeholder\":[\"Buscar\"],\"autopilot-chat.input.actions.attach-file\":[\"Adjuntar archivo(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Tamaño máximo del archivo: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.send\":[\"Enviar\"],\"autopilot-chat.input.actions.stop\":[\"Detener\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Selección del modo de agente\"],\"autopilot-chat.input.footer\":[\"Autopilot puede cometer errores. Compruebe las respuestas.\"],\"autopilot-chat.input.model-selection-label\":[\"Selección de modelo\"],\"autopilot-chat.input.placeholder\":[\"¿Qué le gustaría que hiciera?\"],\"autopilot-chat.message.actions.bad\":[\"Necesita mejorar\"],\"autopilot-chat.message.actions.copy\":[\"Copiar\"],\"autopilot-chat.message.actions.good\":[\"Me encanta\"],\"autopilot-chat.message.actions.label\":[\"Acciones de mensajes\"],\"autopilot-chat.message.actions.more\":[\"Más acciones\"],\"autopilot-chat.message.citation-aria-label\":[\"Cita \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Cerrar chat\"],\"autopilot-chat.message.code-block-code\":[\"Código\"],\"autopilot-chat.message.code-block-copy\":[\"Copiar\"],\"autopilot-chat.message.code-block-language\":[\"Texto\"],\"autopilot-chat.message.code-block-preview\":[\"Vista previa\"],\"autopilot-chat.message.expand\":[\"Expandir\"],\"autopilot-chat.message.footnote-label\":[\"Fuentes\"],\"autopilot-chat.message.generating-response\":[\"Generando…\"],\"autopilot-chat.message.page-number\":[\"Página \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Desplazar hacia abajo\"],\"autopilot-chat.message.show-less\":[\"Mostrar menos\"],\"autopilot-chat.message.show-more\":[\"Mostrar más\"],\"autopilot-chat.message.sources\":[\"Fuentes\"],\"autopilot-chat.message.suggestions-title\":[\"Sugerencias\"],\"autopilot-chat.settings.heading-description\":[\"nivel del encabezado\xA02\"],\"autopilot-chat.settings.hide\":[\"Ocultar configuración\"],\"autopilot-chat.settings.title\":[\"Configuración de chat\"],\"autopilot-chat.tree.no-description\":[\"Sin descripción\"],\"autopilot-chat.tree.no-items\":[\"Sin elementos\"],\"autopilot-chat.tree.unknown\":[\"Desconocido\"]}")};
|
|
1
|
+
/*eslint-disable*/export default {messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Eliminar\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Eliminar \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Selector de modo\"],\"autopilot-chat.common.model-selector\":[\"Selector de modelo\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Tamaño máximo del archivo: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Suelte los archivos aquí para agregarlos a la solicitud\"],\"autopilot-chat.error.file-invalid-type\":[\"Archivo incompatible: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.error.multiple-files\":[\"Solo se puede adjuntar un archivo por mensaje\"],\"autopilot-chat.error.too-many-files\":[\"Demasiados archivos. Se permiten \",[\"maxCount\"],\" archivos por mensaje\"],\"autopilot-chat.header.actions.close\":[\"Cerrar chat\"],\"autopilot-chat.header.actions.collapse\":[\"Contraer\"],\"autopilot-chat.header.actions.custom-actions\":[\"Más acciones\"],\"autopilot-chat.header.actions.expand\":[\"Expandir\"],\"autopilot-chat.header.actions.history\":[\"Historial del chat\"],\"autopilot-chat.header.actions.new-chat\":[\"Nuevo chat\"],\"autopilot-chat.header.actions.settings\":[\"Configuración\"],\"autopilot-chat.header.preview\":[\"Vista previa\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Eliminar\"],\"autopilot-chat.history.empty\":[\"Aún no hay conversaciones.\"],\"autopilot-chat.history.group.last-30-days\":[\"30\xA0días anteriores\"],\"autopilot-chat.history.group.last-week\":[\"Última semana\"],\"autopilot-chat.history.group.months-ago\":[\"hace \",[\"count\"],\" meses\"],\"autopilot-chat.history.group.today\":[\"Hoy\"],\"autopilot-chat.history.group.yesterday\":[\"Ayer\"],\"autopilot-chat.history.no-results\":[\"No se encontraron resultados.\"],\"autopilot-chat.history.search-placeholder\":[\"Buscar\"],\"autopilot-chat.input.actions.attach-file\":[\"Adjuntar archivo(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Tamaño máximo del archivo: \",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"\xA0MB/\",[\"maxSize\"],\"\xA0MB\"],\"autopilot-chat.input.actions.send\":[\"Enviar\"],\"autopilot-chat.input.actions.stop\":[\"Detener\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Selección del modo de agente\"],\"autopilot-chat.input.footer\":[\"Autopilot puede cometer errores. Compruebe las respuestas.\"],\"autopilot-chat.input.model-selection-label\":[\"Selección de modelo\"],\"autopilot-chat.input.placeholder\":[\"¿Qué le gustaría que hiciera?\"],\"autopilot-chat.input.resource-chip.remove\":[\"Eliminar\"],\"autopilot-chat.input.resource-chip.remove-name\":[\"Eliminar \",[\"label\"]],\"autopilot-chat.message.actions.bad\":[\"Necesita mejorar\"],\"autopilot-chat.message.actions.copy\":[\"Copiar\"],\"autopilot-chat.message.actions.good\":[\"Me encanta\"],\"autopilot-chat.message.actions.label\":[\"Acciones de mensajes\"],\"autopilot-chat.message.actions.more\":[\"Más acciones\"],\"autopilot-chat.message.citation-aria-label\":[\"Cita \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Cerrar chat\"],\"autopilot-chat.message.code-block-code\":[\"Código\"],\"autopilot-chat.message.code-block-copy\":[\"Copiar\"],\"autopilot-chat.message.code-block-language\":[\"Texto\"],\"autopilot-chat.message.code-block-preview\":[\"Vista previa\"],\"autopilot-chat.message.expand\":[\"Expandir\"],\"autopilot-chat.message.footnote-label\":[\"Fuentes\"],\"autopilot-chat.message.generating-response\":[\"Generando…\"],\"autopilot-chat.message.page-number\":[\"Página \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Desplazar hacia abajo\"],\"autopilot-chat.message.show-less\":[\"Mostrar menos\"],\"autopilot-chat.message.show-more\":[\"Mostrar más\"],\"autopilot-chat.message.sources\":[\"Fuentes\"],\"autopilot-chat.message.suggestions-title\":[\"Sugerencias\"],\"autopilot-chat.resource-picker.back\":[\"Volver\"],\"autopilot-chat.resource-picker.empty\":[\"No hay recursos disponibles\"],\"autopilot-chat.resource-picker.error\":[\"Error al cargar los recursos\"],\"autopilot-chat.resource-picker.label\":[\"Selector de recursos\"],\"autopilot-chat.resource-picker.load-more-error\":[\"Error al cargar más\"],\"autopilot-chat.resource-picker.no-results\":[\"No hay recursos coincidentes\"],\"autopilot-chat.resource-picker.retry\":[\"Reintentar\"],\"autopilot-chat.resource-picker.search-error\":[\"Error en la búsqueda\"],\"autopilot-chat.resource-trigger.label\":[\"Agregar referencia de recursos\"],\"autopilot-chat.resource-trigger.tooltip\":[\"Agregar recurso\"],\"autopilot-chat.settings.heading-description\":[\"nivel del encabezado\xA02\"],\"autopilot-chat.settings.hide\":[\"Ocultar configuración\"],\"autopilot-chat.settings.title\":[\"Configuración de chat\"],\"autopilot-chat.tree.no-description\":[\"Sin descripción\"],\"autopilot-chat.tree.no-items\":[\"Sin elementos\"],\"autopilot-chat.tree.unknown\":[\"Desconocido\"]}")};
|
|
@@ -65,5 +65,17 @@
|
|
|
65
65
|
"autopilot-chat.history.group.today": "Hoy",
|
|
66
66
|
"autopilot-chat.input.placeholder": "¿Qué le gustaría que hiciera?",
|
|
67
67
|
"autopilot-chat.tree.unknown": "Desconocido",
|
|
68
|
-
"autopilot-chat.history.group.yesterday": "Ayer"
|
|
68
|
+
"autopilot-chat.history.group.yesterday": "Ayer",
|
|
69
|
+
"autopilot-chat.resource-trigger.tooltip": "Agregar recurso",
|
|
70
|
+
"autopilot-chat.resource-trigger.label": "Agregar referencia de recursos",
|
|
71
|
+
"autopilot-chat.resource-picker.error": "Error al cargar los recursos",
|
|
72
|
+
"autopilot-chat.resource-picker.retry": "Reintentar",
|
|
73
|
+
"autopilot-chat.resource-picker.no-results": "No hay recursos coincidentes",
|
|
74
|
+
"autopilot-chat.resource-picker.empty": "No hay recursos disponibles",
|
|
75
|
+
"autopilot-chat.resource-picker.label": "Selector de recursos",
|
|
76
|
+
"autopilot-chat.resource-picker.load-more-error": "Error al cargar más",
|
|
77
|
+
"autopilot-chat.resource-picker.search-error": "Error en la búsqueda",
|
|
78
|
+
"autopilot-chat.resource-picker.back": "Volver",
|
|
79
|
+
"autopilot-chat.input.resource-chip.remove": "Eliminar",
|
|
80
|
+
"autopilot-chat.input.resource-chip.remove-name": "Eliminar {label}"
|
|
69
81
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Quitar\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Eliminar \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Selector de modo\"],\"autopilot-chat.common.model-selector\":[\"Selector de modelo\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Tamaño máximo de archivo: \",[\"maxSize\"],\"MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Suelte sus archivos aquí para añadirlos a su solicitud\"],\"autopilot-chat.error.file-invalid-type\":[\"Archivo no compatible: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"MB/\",[\"maxSize\"],\"MB\"],\"autopilot-chat.error.multiple-files\":[\"Solo se puede adjuntar un archivo por mensaje\"],\"autopilot-chat.error.too-many-files\":[\"Demasiados archivos. Se permiten \",[\"maxCount\"],\" archivos por mensaje\"],\"autopilot-chat.header.actions.close\":[\"Cerrar chat\"],\"autopilot-chat.header.actions.collapse\":[\"Contraer\"],\"autopilot-chat.header.actions.custom-actions\":[\"Más acciones\"],\"autopilot-chat.header.actions.expand\":[\"Expandir\"],\"autopilot-chat.header.actions.history\":[\"Historial de chat\"],\"autopilot-chat.header.actions.new-chat\":[\"Nuevo chat\"],\"autopilot-chat.header.actions.settings\":[\"Configuración\"],\"autopilot-chat.header.preview\":[\"Vista previa\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Eliminar\"],\"autopilot-chat.history.empty\":[\"Aún no hay conversaciones.\"],\"autopilot-chat.history.group.last-30-days\":[\"Últimos 30 días\"],\"autopilot-chat.history.group.last-week\":[\"Última semana\"],\"autopilot-chat.history.group.months-ago\":[\"hace \",[\"count\"],\" meses\"],\"autopilot-chat.history.group.today\":[\"Hoy\"],\"autopilot-chat.history.group.yesterday\":[\"Ayer\"],\"autopilot-chat.history.no-results\":[\"No se encontraron resultados.\"],\"autopilot-chat.history.search-placeholder\":[\"Buscar\"],\"autopilot-chat.input.actions.attach-file\":[\"Adjuntar archivo(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Tamaño máximo de archivo: \",[\"maxSize\"],\"MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"MB/\",[\"maxSize\"],\"MB\"],\"autopilot-chat.input.actions.send\":[\"Enviar\"],\"autopilot-chat.input.actions.stop\":[\"Detener\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Selección del modo de agente\"],\"autopilot-chat.input.footer\":[\"Autopilot puede cometer errores. Vuelva a comprobar las respuestas.\"],\"autopilot-chat.input.model-selection-label\":[\"Selección de modelo\"],\"autopilot-chat.input.placeholder\":[\"¿Que le gustaría que hiciera?\"],\"autopilot-chat.message.actions.bad\":[\"Necesita mejorar\"],\"autopilot-chat.message.actions.copy\":[\"Copiar\"],\"autopilot-chat.message.actions.good\":[\"Me encanta\"],\"autopilot-chat.message.actions.label\":[\"Acciones de mensaje\"],\"autopilot-chat.message.actions.more\":[\"Más acciones\"],\"autopilot-chat.message.citation-aria-label\":[\"Cita \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Cerrar chat\"],\"autopilot-chat.message.code-block-code\":[\"Código\"],\"autopilot-chat.message.code-block-copy\":[\"Copiar\"],\"autopilot-chat.message.code-block-language\":[\"Texto\"],\"autopilot-chat.message.code-block-preview\":[\"Vista previa\"],\"autopilot-chat.message.expand\":[\"Expandir\"],\"autopilot-chat.message.footnote-label\":[\"Fuentes\"],\"autopilot-chat.message.generating-response\":[\"Generando...\"],\"autopilot-chat.message.page-number\":[\"Página \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Desplazarse hacia abajo\"],\"autopilot-chat.message.show-less\":[\"Mostrar menos\"],\"autopilot-chat.message.show-more\":[\"Mostrar más\"],\"autopilot-chat.message.sources\":[\"Fuentes\"],\"autopilot-chat.message.suggestions-title\":[\"Sugerencias\"],\"autopilot-chat.settings.heading-description\":[\"nivel de encabezado 2\"],\"autopilot-chat.settings.hide\":[\"Ocultar configuración\"],\"autopilot-chat.settings.title\":[\"Configuración de chat\"],\"autopilot-chat.tree.no-description\":[\"Sin descripción\"],\"autopilot-chat.tree.no-items\":[\"Sin elementos\"],\"autopilot-chat.tree.unknown\":[\"Desconocido\"]}")};
|
|
1
|
+
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Quitar\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Eliminar \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Selector de modo\"],\"autopilot-chat.common.model-selector\":[\"Selector de modelo\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Tamaño máximo de archivo: \",[\"maxSize\"],\"MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Suelte sus archivos aquí para añadirlos a su solicitud\"],\"autopilot-chat.error.file-invalid-type\":[\"Archivo no compatible: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"MB/\",[\"maxSize\"],\"MB\"],\"autopilot-chat.error.multiple-files\":[\"Solo se puede adjuntar un archivo por mensaje\"],\"autopilot-chat.error.too-many-files\":[\"Demasiados archivos. Se permiten \",[\"maxCount\"],\" archivos por mensaje\"],\"autopilot-chat.header.actions.close\":[\"Cerrar chat\"],\"autopilot-chat.header.actions.collapse\":[\"Contraer\"],\"autopilot-chat.header.actions.custom-actions\":[\"Más acciones\"],\"autopilot-chat.header.actions.expand\":[\"Expandir\"],\"autopilot-chat.header.actions.history\":[\"Historial de chat\"],\"autopilot-chat.header.actions.new-chat\":[\"Nuevo chat\"],\"autopilot-chat.header.actions.settings\":[\"Configuración\"],\"autopilot-chat.header.preview\":[\"Vista previa\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Eliminar\"],\"autopilot-chat.history.empty\":[\"Aún no hay conversaciones.\"],\"autopilot-chat.history.group.last-30-days\":[\"Últimos 30 días\"],\"autopilot-chat.history.group.last-week\":[\"Última semana\"],\"autopilot-chat.history.group.months-ago\":[\"hace \",[\"count\"],\" meses\"],\"autopilot-chat.history.group.today\":[\"Hoy\"],\"autopilot-chat.history.group.yesterday\":[\"Ayer\"],\"autopilot-chat.history.no-results\":[\"No se encontraron resultados.\"],\"autopilot-chat.history.search-placeholder\":[\"Buscar\"],\"autopilot-chat.input.actions.attach-file\":[\"Adjuntar archivo(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Tamaño máximo de archivo: \",[\"maxSize\"],\"MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"MB/\",[\"maxSize\"],\"MB\"],\"autopilot-chat.input.actions.send\":[\"Enviar\"],\"autopilot-chat.input.actions.stop\":[\"Detener\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Selección del modo de agente\"],\"autopilot-chat.input.footer\":[\"Autopilot puede cometer errores. Vuelva a comprobar las respuestas.\"],\"autopilot-chat.input.model-selection-label\":[\"Selección de modelo\"],\"autopilot-chat.input.placeholder\":[\"¿Que le gustaría que hiciera?\"],\"autopilot-chat.input.resource-chip.remove\":[\"Quitar\"],\"autopilot-chat.input.resource-chip.remove-name\":[\"Eliminar \",[\"label\"]],\"autopilot-chat.message.actions.bad\":[\"Necesita mejorar\"],\"autopilot-chat.message.actions.copy\":[\"Copiar\"],\"autopilot-chat.message.actions.good\":[\"Me encanta\"],\"autopilot-chat.message.actions.label\":[\"Acciones de mensaje\"],\"autopilot-chat.message.actions.more\":[\"Más acciones\"],\"autopilot-chat.message.citation-aria-label\":[\"Cita \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Cerrar chat\"],\"autopilot-chat.message.code-block-code\":[\"Código\"],\"autopilot-chat.message.code-block-copy\":[\"Copiar\"],\"autopilot-chat.message.code-block-language\":[\"Texto\"],\"autopilot-chat.message.code-block-preview\":[\"Vista previa\"],\"autopilot-chat.message.expand\":[\"Expandir\"],\"autopilot-chat.message.footnote-label\":[\"Fuentes\"],\"autopilot-chat.message.generating-response\":[\"Generando...\"],\"autopilot-chat.message.page-number\":[\"Página \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Desplazarse hacia abajo\"],\"autopilot-chat.message.show-less\":[\"Mostrar menos\"],\"autopilot-chat.message.show-more\":[\"Mostrar más\"],\"autopilot-chat.message.sources\":[\"Fuentes\"],\"autopilot-chat.message.suggestions-title\":[\"Sugerencias\"],\"autopilot-chat.resource-picker.back\":[\"Volver\"],\"autopilot-chat.resource-picker.empty\":[\"No hay recursos disponibles\"],\"autopilot-chat.resource-picker.error\":[\"Error al cargar los recursos\"],\"autopilot-chat.resource-picker.label\":[\"Selector de recursos\"],\"autopilot-chat.resource-picker.load-more-error\":[\"Error al cargar más\"],\"autopilot-chat.resource-picker.no-results\":[\"No hay recursos coincidentes\"],\"autopilot-chat.resource-picker.retry\":[\"Reintentar\"],\"autopilot-chat.resource-picker.search-error\":[\"Error en la búsqueda\"],\"autopilot-chat.resource-trigger.label\":[\"Añadir referencia de recurso\"],\"autopilot-chat.resource-trigger.tooltip\":[\"Agregar recurso\"],\"autopilot-chat.settings.heading-description\":[\"nivel de encabezado 2\"],\"autopilot-chat.settings.hide\":[\"Ocultar configuración\"],\"autopilot-chat.settings.title\":[\"Configuración de chat\"],\"autopilot-chat.tree.no-description\":[\"Sin descripción\"],\"autopilot-chat.tree.no-items\":[\"Sin elementos\"],\"autopilot-chat.tree.unknown\":[\"Desconocido\"]}")};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*eslint-disable*/export default {messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Quitar\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Eliminar \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Selector de modo\"],\"autopilot-chat.common.model-selector\":[\"Selector de modelo\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Tamaño máximo de archivo: \",[\"maxSize\"],\"MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Suelte sus archivos aquí para añadirlos a su solicitud\"],\"autopilot-chat.error.file-invalid-type\":[\"Archivo no compatible: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"MB/\",[\"maxSize\"],\"MB\"],\"autopilot-chat.error.multiple-files\":[\"Solo se puede adjuntar un archivo por mensaje\"],\"autopilot-chat.error.too-many-files\":[\"Demasiados archivos. Se permiten \",[\"maxCount\"],\" archivos por mensaje\"],\"autopilot-chat.header.actions.close\":[\"Cerrar chat\"],\"autopilot-chat.header.actions.collapse\":[\"Contraer\"],\"autopilot-chat.header.actions.custom-actions\":[\"Más acciones\"],\"autopilot-chat.header.actions.expand\":[\"Expandir\"],\"autopilot-chat.header.actions.history\":[\"Historial de chat\"],\"autopilot-chat.header.actions.new-chat\":[\"Nuevo chat\"],\"autopilot-chat.header.actions.settings\":[\"Configuración\"],\"autopilot-chat.header.preview\":[\"Vista previa\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Eliminar\"],\"autopilot-chat.history.empty\":[\"Aún no hay conversaciones.\"],\"autopilot-chat.history.group.last-30-days\":[\"Últimos 30 días\"],\"autopilot-chat.history.group.last-week\":[\"Última semana\"],\"autopilot-chat.history.group.months-ago\":[\"hace \",[\"count\"],\" meses\"],\"autopilot-chat.history.group.today\":[\"Hoy\"],\"autopilot-chat.history.group.yesterday\":[\"Ayer\"],\"autopilot-chat.history.no-results\":[\"No se encontraron resultados.\"],\"autopilot-chat.history.search-placeholder\":[\"Buscar\"],\"autopilot-chat.input.actions.attach-file\":[\"Adjuntar archivo(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Tamaño máximo de archivo: \",[\"maxSize\"],\"MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"MB/\",[\"maxSize\"],\"MB\"],\"autopilot-chat.input.actions.send\":[\"Enviar\"],\"autopilot-chat.input.actions.stop\":[\"Detener\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Selección del modo de agente\"],\"autopilot-chat.input.footer\":[\"Autopilot puede cometer errores. Vuelva a comprobar las respuestas.\"],\"autopilot-chat.input.model-selection-label\":[\"Selección de modelo\"],\"autopilot-chat.input.placeholder\":[\"¿Que le gustaría que hiciera?\"],\"autopilot-chat.message.actions.bad\":[\"Necesita mejorar\"],\"autopilot-chat.message.actions.copy\":[\"Copiar\"],\"autopilot-chat.message.actions.good\":[\"Me encanta\"],\"autopilot-chat.message.actions.label\":[\"Acciones de mensaje\"],\"autopilot-chat.message.actions.more\":[\"Más acciones\"],\"autopilot-chat.message.citation-aria-label\":[\"Cita \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Cerrar chat\"],\"autopilot-chat.message.code-block-code\":[\"Código\"],\"autopilot-chat.message.code-block-copy\":[\"Copiar\"],\"autopilot-chat.message.code-block-language\":[\"Texto\"],\"autopilot-chat.message.code-block-preview\":[\"Vista previa\"],\"autopilot-chat.message.expand\":[\"Expandir\"],\"autopilot-chat.message.footnote-label\":[\"Fuentes\"],\"autopilot-chat.message.generating-response\":[\"Generando...\"],\"autopilot-chat.message.page-number\":[\"Página \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Desplazarse hacia abajo\"],\"autopilot-chat.message.show-less\":[\"Mostrar menos\"],\"autopilot-chat.message.show-more\":[\"Mostrar más\"],\"autopilot-chat.message.sources\":[\"Fuentes\"],\"autopilot-chat.message.suggestions-title\":[\"Sugerencias\"],\"autopilot-chat.settings.heading-description\":[\"nivel de encabezado 2\"],\"autopilot-chat.settings.hide\":[\"Ocultar configuración\"],\"autopilot-chat.settings.title\":[\"Configuración de chat\"],\"autopilot-chat.tree.no-description\":[\"Sin descripción\"],\"autopilot-chat.tree.no-items\":[\"Sin elementos\"],\"autopilot-chat.tree.unknown\":[\"Desconocido\"]}")};
|
|
1
|
+
/*eslint-disable*/export default {messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Quitar\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Eliminar \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Selector de modo\"],\"autopilot-chat.common.model-selector\":[\"Selector de modelo\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Tamaño máximo de archivo: \",[\"maxSize\"],\"MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"Suelte sus archivos aquí para añadirlos a su solicitud\"],\"autopilot-chat.error.file-invalid-type\":[\"Archivo no compatible: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"MB/\",[\"maxSize\"],\"MB\"],\"autopilot-chat.error.multiple-files\":[\"Solo se puede adjuntar un archivo por mensaje\"],\"autopilot-chat.error.too-many-files\":[\"Demasiados archivos. Se permiten \",[\"maxCount\"],\" archivos por mensaje\"],\"autopilot-chat.header.actions.close\":[\"Cerrar chat\"],\"autopilot-chat.header.actions.collapse\":[\"Contraer\"],\"autopilot-chat.header.actions.custom-actions\":[\"Más acciones\"],\"autopilot-chat.header.actions.expand\":[\"Expandir\"],\"autopilot-chat.header.actions.history\":[\"Historial de chat\"],\"autopilot-chat.header.actions.new-chat\":[\"Nuevo chat\"],\"autopilot-chat.header.actions.settings\":[\"Configuración\"],\"autopilot-chat.header.preview\":[\"Vista previa\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Eliminar\"],\"autopilot-chat.history.empty\":[\"Aún no hay conversaciones.\"],\"autopilot-chat.history.group.last-30-days\":[\"Últimos 30 días\"],\"autopilot-chat.history.group.last-week\":[\"Última semana\"],\"autopilot-chat.history.group.months-ago\":[\"hace \",[\"count\"],\" meses\"],\"autopilot-chat.history.group.today\":[\"Hoy\"],\"autopilot-chat.history.group.yesterday\":[\"Ayer\"],\"autopilot-chat.history.no-results\":[\"No se encontraron resultados.\"],\"autopilot-chat.history.search-placeholder\":[\"Buscar\"],\"autopilot-chat.input.actions.attach-file\":[\"Adjuntar archivo(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Tipos de archivo permitidos: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Máximo de archivos permitidos: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Tamaño máximo de archivo: \",[\"maxSize\"],\"MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Archivo demasiado grande: \",[\"fileName\"],\" \",[\"fileSize\"],\"MB/\",[\"maxSize\"],\"MB\"],\"autopilot-chat.input.actions.send\":[\"Enviar\"],\"autopilot-chat.input.actions.stop\":[\"Detener\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Selección del modo de agente\"],\"autopilot-chat.input.footer\":[\"Autopilot puede cometer errores. Vuelva a comprobar las respuestas.\"],\"autopilot-chat.input.model-selection-label\":[\"Selección de modelo\"],\"autopilot-chat.input.placeholder\":[\"¿Que le gustaría que hiciera?\"],\"autopilot-chat.input.resource-chip.remove\":[\"Quitar\"],\"autopilot-chat.input.resource-chip.remove-name\":[\"Eliminar \",[\"label\"]],\"autopilot-chat.message.actions.bad\":[\"Necesita mejorar\"],\"autopilot-chat.message.actions.copy\":[\"Copiar\"],\"autopilot-chat.message.actions.good\":[\"Me encanta\"],\"autopilot-chat.message.actions.label\":[\"Acciones de mensaje\"],\"autopilot-chat.message.actions.more\":[\"Más acciones\"],\"autopilot-chat.message.citation-aria-label\":[\"Cita \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"Cerrar chat\"],\"autopilot-chat.message.code-block-code\":[\"Código\"],\"autopilot-chat.message.code-block-copy\":[\"Copiar\"],\"autopilot-chat.message.code-block-language\":[\"Texto\"],\"autopilot-chat.message.code-block-preview\":[\"Vista previa\"],\"autopilot-chat.message.expand\":[\"Expandir\"],\"autopilot-chat.message.footnote-label\":[\"Fuentes\"],\"autopilot-chat.message.generating-response\":[\"Generando...\"],\"autopilot-chat.message.page-number\":[\"Página \",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Desplazarse hacia abajo\"],\"autopilot-chat.message.show-less\":[\"Mostrar menos\"],\"autopilot-chat.message.show-more\":[\"Mostrar más\"],\"autopilot-chat.message.sources\":[\"Fuentes\"],\"autopilot-chat.message.suggestions-title\":[\"Sugerencias\"],\"autopilot-chat.resource-picker.back\":[\"Volver\"],\"autopilot-chat.resource-picker.empty\":[\"No hay recursos disponibles\"],\"autopilot-chat.resource-picker.error\":[\"Error al cargar los recursos\"],\"autopilot-chat.resource-picker.label\":[\"Selector de recursos\"],\"autopilot-chat.resource-picker.load-more-error\":[\"Error al cargar más\"],\"autopilot-chat.resource-picker.no-results\":[\"No hay recursos coincidentes\"],\"autopilot-chat.resource-picker.retry\":[\"Reintentar\"],\"autopilot-chat.resource-picker.search-error\":[\"Error en la búsqueda\"],\"autopilot-chat.resource-trigger.label\":[\"Añadir referencia de recurso\"],\"autopilot-chat.resource-trigger.tooltip\":[\"Agregar recurso\"],\"autopilot-chat.settings.heading-description\":[\"nivel de encabezado 2\"],\"autopilot-chat.settings.hide\":[\"Ocultar configuración\"],\"autopilot-chat.settings.title\":[\"Configuración de chat\"],\"autopilot-chat.tree.no-description\":[\"Sin descripción\"],\"autopilot-chat.tree.no-items\":[\"Sin elementos\"],\"autopilot-chat.tree.unknown\":[\"Desconocido\"]}")};
|
|
@@ -65,5 +65,17 @@
|
|
|
65
65
|
"autopilot-chat.history.group.today": "Hoy",
|
|
66
66
|
"autopilot-chat.input.placeholder": "¿Que le gustaría que hiciera?",
|
|
67
67
|
"autopilot-chat.tree.unknown": "Desconocido",
|
|
68
|
-
"autopilot-chat.history.group.yesterday": "Ayer"
|
|
68
|
+
"autopilot-chat.history.group.yesterday": "Ayer",
|
|
69
|
+
"autopilot-chat.resource-trigger.tooltip": "Agregar recurso",
|
|
70
|
+
"autopilot-chat.resource-trigger.label": "Añadir referencia de recurso",
|
|
71
|
+
"autopilot-chat.resource-picker.error": "Error al cargar los recursos",
|
|
72
|
+
"autopilot-chat.resource-picker.retry": "Reintentar",
|
|
73
|
+
"autopilot-chat.resource-picker.no-results": "No hay recursos coincidentes",
|
|
74
|
+
"autopilot-chat.resource-picker.empty": "No hay recursos disponibles",
|
|
75
|
+
"autopilot-chat.resource-picker.label": "Selector de recursos",
|
|
76
|
+
"autopilot-chat.resource-picker.load-more-error": "Error al cargar más",
|
|
77
|
+
"autopilot-chat.resource-picker.search-error": "Error en la búsqueda",
|
|
78
|
+
"autopilot-chat.resource-picker.back": "Volver",
|
|
79
|
+
"autopilot-chat.input.resource-chip.remove": "Quitar",
|
|
80
|
+
"autopilot-chat.input.resource-chip.remove-name": "Eliminar {label}"
|
|
69
81
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Supprimer\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Supprimer \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Sélecteur de mode\"],\"autopilot-chat.common.model-selector\":[\"Sélecteur de modèle\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Types de fichiers autorisés\xA0: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Nombre maximal de fichiers autorisés\xA0: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Taille maximale du fichier\xA0: \",[\"maxSize\"],\"\xA0Mo\"],\"autopilot-chat.dropzone.overlay-title\":[\"Déposez vos fichiers ici pour les ajouter à votre invite\"],\"autopilot-chat.error.file-invalid-type\":[\"Fichier non pris en charge\xA0: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Fichier trop volumineux\xA0: \",[\"fileName\"],\" \",[\"fileSize\"],\"Mo/\",[\"maxSize\"],\"Mo\"],\"autopilot-chat.error.multiple-files\":[\"Un seul fichier par message peut être ajouté en pièce jointe.\"],\"autopilot-chat.error.too-many-files\":[\"Trop de fichiers. \",[\"maxCount\"],\"\xA0fichiers sont autorisés par message\"],\"autopilot-chat.header.actions.close\":[\"Fermer le chat\"],\"autopilot-chat.header.actions.collapse\":[\"Réduire\"],\"autopilot-chat.header.actions.custom-actions\":[\"Autres actions\"],\"autopilot-chat.header.actions.expand\":[\"Développer\"],\"autopilot-chat.header.actions.history\":[\"Historique de discussion\"],\"autopilot-chat.header.actions.new-chat\":[\"Nouveau chat\"],\"autopilot-chat.header.actions.settings\":[\"Paramètres\"],\"autopilot-chat.header.preview\":[\"Aperçu\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Supprimer\"],\"autopilot-chat.history.empty\":[\"Il n’y a aucune conversation pour le moment.\"],\"autopilot-chat.history.group.last-30-days\":[\"30\xA0jours précédents\"],\"autopilot-chat.history.group.last-week\":[\"Dernière semaine\"],\"autopilot-chat.history.group.months-ago\":[\"il y a \",[\"count\"],\" mois\"],\"autopilot-chat.history.group.today\":[\"Aujourd'hui\"],\"autopilot-chat.history.group.yesterday\":[\"Hier\"],\"autopilot-chat.history.no-results\":[\"Aucun résultat trouvé.\"],\"autopilot-chat.history.search-placeholder\":[\"Rechercher\"],\"autopilot-chat.input.actions.attach-file\":[\"Joindre le(s) fichier(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Types de fichiers autorisés\xA0: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Nombre maximal de fichiers autorisés\xA0: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Taille maximale du fichier\xA0: \",[\"maxSize\"],\"\xA0Mo\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Fichier trop volumineux\xA0: \",[\"fileName\"],\" \",[\"fileSize\"],\"Mo/\",[\"maxSize\"],\"Mo\"],\"autopilot-chat.input.actions.send\":[\"Envoyer\"],\"autopilot-chat.input.actions.stop\":[\"Arrêter\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Sélection du mode d’agent\"],\"autopilot-chat.input.footer\":[\"Autopilot peut commettre des erreurs. Veuillez vérifier soigneusement les réponses.\"],\"autopilot-chat.input.model-selection-label\":[\"Sélection du modèle\"],\"autopilot-chat.input.placeholder\":[\"Que souhaitez-vous que je fasse\xA0?\"],\"autopilot-chat.message.actions.bad\":[\"Amélioration requise\"],\"autopilot-chat.message.actions.copy\":[\"Copier\"],\"autopilot-chat.message.actions.good\":[\"J’aime\"],\"autopilot-chat.message.actions.label\":[\"Actions de message\"],\"autopilot-chat.message.actions.more\":[\"Autres actions\"],\"autopilot-chat.message.citation-aria-label\":[\"Citation\xA0\",[\"id\"],\"\xA0: \",[\"title\"]],\"autopilot-chat.message.close\":[\"Fermer le chat\"],\"autopilot-chat.message.code-block-code\":[\"Code\"],\"autopilot-chat.message.code-block-copy\":[\"Copier\"],\"autopilot-chat.message.code-block-language\":[\"Texte\"],\"autopilot-chat.message.code-block-preview\":[\"Aperçu\"],\"autopilot-chat.message.expand\":[\"Développer\"],\"autopilot-chat.message.footnote-label\":[\"Sources\"],\"autopilot-chat.message.generating-response\":[\"Génération en cours...\"],\"autopilot-chat.message.page-number\":[\"Page\xA0\",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Faire défiler vers le bas\"],\"autopilot-chat.message.show-less\":[\"Afficher moins\"],\"autopilot-chat.message.show-more\":[\"Afficher plus\"],\"autopilot-chat.message.sources\":[\"Sources\"],\"autopilot-chat.message.suggestions-title\":[\"Suggestions\"],\"autopilot-chat.settings.heading-description\":[\"Niveau d’en-tête\xA02\"],\"autopilot-chat.settings.hide\":[\"Masquer les paramètres\"],\"autopilot-chat.settings.title\":[\"Paramètres de chat\"],\"autopilot-chat.tree.no-description\":[\"Aucune description\"],\"autopilot-chat.tree.no-items\":[\"Aucun élément\"],\"autopilot-chat.tree.unknown\":[\"Inconnu\"]}")};
|
|
1
|
+
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Supprimer\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Supprimer \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Sélecteur de mode\"],\"autopilot-chat.common.model-selector\":[\"Sélecteur de modèle\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Types de fichiers autorisés\xA0: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Nombre maximal de fichiers autorisés\xA0: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Taille maximale du fichier\xA0: \",[\"maxSize\"],\"\xA0Mo\"],\"autopilot-chat.dropzone.overlay-title\":[\"Déposez vos fichiers ici pour les ajouter à votre invite\"],\"autopilot-chat.error.file-invalid-type\":[\"Fichier non pris en charge\xA0: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Fichier trop volumineux\xA0: \",[\"fileName\"],\" \",[\"fileSize\"],\"Mo/\",[\"maxSize\"],\"Mo\"],\"autopilot-chat.error.multiple-files\":[\"Un seul fichier par message peut être ajouté en pièce jointe.\"],\"autopilot-chat.error.too-many-files\":[\"Trop de fichiers. \",[\"maxCount\"],\"\xA0fichiers sont autorisés par message\"],\"autopilot-chat.header.actions.close\":[\"Fermer le chat\"],\"autopilot-chat.header.actions.collapse\":[\"Réduire\"],\"autopilot-chat.header.actions.custom-actions\":[\"Autres actions\"],\"autopilot-chat.header.actions.expand\":[\"Développer\"],\"autopilot-chat.header.actions.history\":[\"Historique de discussion\"],\"autopilot-chat.header.actions.new-chat\":[\"Nouveau chat\"],\"autopilot-chat.header.actions.settings\":[\"Paramètres\"],\"autopilot-chat.header.preview\":[\"Aperçu\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Supprimer\"],\"autopilot-chat.history.empty\":[\"Il n’y a aucune conversation pour le moment.\"],\"autopilot-chat.history.group.last-30-days\":[\"30\xA0jours précédents\"],\"autopilot-chat.history.group.last-week\":[\"Dernière semaine\"],\"autopilot-chat.history.group.months-ago\":[\"il y a \",[\"count\"],\" mois\"],\"autopilot-chat.history.group.today\":[\"Aujourd'hui\"],\"autopilot-chat.history.group.yesterday\":[\"Hier\"],\"autopilot-chat.history.no-results\":[\"Aucun résultat trouvé.\"],\"autopilot-chat.history.search-placeholder\":[\"Rechercher\"],\"autopilot-chat.input.actions.attach-file\":[\"Joindre le(s) fichier(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Types de fichiers autorisés\xA0: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Nombre maximal de fichiers autorisés\xA0: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Taille maximale du fichier\xA0: \",[\"maxSize\"],\"\xA0Mo\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Fichier trop volumineux\xA0: \",[\"fileName\"],\" \",[\"fileSize\"],\"Mo/\",[\"maxSize\"],\"Mo\"],\"autopilot-chat.input.actions.send\":[\"Envoyer\"],\"autopilot-chat.input.actions.stop\":[\"Arrêter\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Sélection du mode d’agent\"],\"autopilot-chat.input.footer\":[\"Autopilot peut commettre des erreurs. Veuillez vérifier soigneusement les réponses.\"],\"autopilot-chat.input.model-selection-label\":[\"Sélection du modèle\"],\"autopilot-chat.input.placeholder\":[\"Que souhaitez-vous que je fasse\xA0?\"],\"autopilot-chat.input.resource-chip.remove\":[\"Supprimer\"],\"autopilot-chat.input.resource-chip.remove-name\":[\"Supprimer \",[\"label\"]],\"autopilot-chat.message.actions.bad\":[\"Amélioration requise\"],\"autopilot-chat.message.actions.copy\":[\"Copier\"],\"autopilot-chat.message.actions.good\":[\"J’aime\"],\"autopilot-chat.message.actions.label\":[\"Actions de message\"],\"autopilot-chat.message.actions.more\":[\"Autres actions\"],\"autopilot-chat.message.citation-aria-label\":[\"Citation\xA0\",[\"id\"],\"\xA0: \",[\"title\"]],\"autopilot-chat.message.close\":[\"Fermer le chat\"],\"autopilot-chat.message.code-block-code\":[\"Code\"],\"autopilot-chat.message.code-block-copy\":[\"Copier\"],\"autopilot-chat.message.code-block-language\":[\"Texte\"],\"autopilot-chat.message.code-block-preview\":[\"Aperçu\"],\"autopilot-chat.message.expand\":[\"Développer\"],\"autopilot-chat.message.footnote-label\":[\"Sources\"],\"autopilot-chat.message.generating-response\":[\"Génération en cours...\"],\"autopilot-chat.message.page-number\":[\"Page\xA0\",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Faire défiler vers le bas\"],\"autopilot-chat.message.show-less\":[\"Afficher moins\"],\"autopilot-chat.message.show-more\":[\"Afficher plus\"],\"autopilot-chat.message.sources\":[\"Sources\"],\"autopilot-chat.message.suggestions-title\":[\"Suggestions\"],\"autopilot-chat.resource-picker.back\":[\"Revenir en arrière\"],\"autopilot-chat.resource-picker.empty\":[\"Aucune ressource disponible\"],\"autopilot-chat.resource-picker.error\":[\"Échec du chargement des ressources\"],\"autopilot-chat.resource-picker.label\":[\"Sélecteur de ressources\"],\"autopilot-chat.resource-picker.load-more-error\":[\"Impossible de charger plus\"],\"autopilot-chat.resource-picker.no-results\":[\"Aucune ressource correspondante\"],\"autopilot-chat.resource-picker.retry\":[\"Réessayer\"],\"autopilot-chat.resource-picker.search-error\":[\"Recherche échouée\"],\"autopilot-chat.resource-trigger.label\":[\"Ajouter une référence de ressource\"],\"autopilot-chat.resource-trigger.tooltip\":[\"Ajouter une ressource\"],\"autopilot-chat.settings.heading-description\":[\"Niveau d’en-tête\xA02\"],\"autopilot-chat.settings.hide\":[\"Masquer les paramètres\"],\"autopilot-chat.settings.title\":[\"Paramètres de chat\"],\"autopilot-chat.tree.no-description\":[\"Aucune description\"],\"autopilot-chat.tree.no-items\":[\"Aucun élément\"],\"autopilot-chat.tree.unknown\":[\"Inconnu\"]}")};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*eslint-disable*/export default {messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Supprimer\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Supprimer \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Sélecteur de mode\"],\"autopilot-chat.common.model-selector\":[\"Sélecteur de modèle\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Types de fichiers autorisés\xA0: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Nombre maximal de fichiers autorisés\xA0: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Taille maximale du fichier\xA0: \",[\"maxSize\"],\"\xA0Mo\"],\"autopilot-chat.dropzone.overlay-title\":[\"Déposez vos fichiers ici pour les ajouter à votre invite\"],\"autopilot-chat.error.file-invalid-type\":[\"Fichier non pris en charge\xA0: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Fichier trop volumineux\xA0: \",[\"fileName\"],\" \",[\"fileSize\"],\"Mo/\",[\"maxSize\"],\"Mo\"],\"autopilot-chat.error.multiple-files\":[\"Un seul fichier par message peut être ajouté en pièce jointe.\"],\"autopilot-chat.error.too-many-files\":[\"Trop de fichiers. \",[\"maxCount\"],\"\xA0fichiers sont autorisés par message\"],\"autopilot-chat.header.actions.close\":[\"Fermer le chat\"],\"autopilot-chat.header.actions.collapse\":[\"Réduire\"],\"autopilot-chat.header.actions.custom-actions\":[\"Autres actions\"],\"autopilot-chat.header.actions.expand\":[\"Développer\"],\"autopilot-chat.header.actions.history\":[\"Historique de discussion\"],\"autopilot-chat.header.actions.new-chat\":[\"Nouveau chat\"],\"autopilot-chat.header.actions.settings\":[\"Paramètres\"],\"autopilot-chat.header.preview\":[\"Aperçu\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Supprimer\"],\"autopilot-chat.history.empty\":[\"Il n’y a aucune conversation pour le moment.\"],\"autopilot-chat.history.group.last-30-days\":[\"30\xA0jours précédents\"],\"autopilot-chat.history.group.last-week\":[\"Dernière semaine\"],\"autopilot-chat.history.group.months-ago\":[\"il y a \",[\"count\"],\" mois\"],\"autopilot-chat.history.group.today\":[\"Aujourd'hui\"],\"autopilot-chat.history.group.yesterday\":[\"Hier\"],\"autopilot-chat.history.no-results\":[\"Aucun résultat trouvé.\"],\"autopilot-chat.history.search-placeholder\":[\"Rechercher\"],\"autopilot-chat.input.actions.attach-file\":[\"Joindre le(s) fichier(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Types de fichiers autorisés\xA0: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Nombre maximal de fichiers autorisés\xA0: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Taille maximale du fichier\xA0: \",[\"maxSize\"],\"\xA0Mo\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Fichier trop volumineux\xA0: \",[\"fileName\"],\" \",[\"fileSize\"],\"Mo/\",[\"maxSize\"],\"Mo\"],\"autopilot-chat.input.actions.send\":[\"Envoyer\"],\"autopilot-chat.input.actions.stop\":[\"Arrêter\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Sélection du mode d’agent\"],\"autopilot-chat.input.footer\":[\"Autopilot peut commettre des erreurs. Veuillez vérifier soigneusement les réponses.\"],\"autopilot-chat.input.model-selection-label\":[\"Sélection du modèle\"],\"autopilot-chat.input.placeholder\":[\"Que souhaitez-vous que je fasse\xA0?\"],\"autopilot-chat.message.actions.bad\":[\"Amélioration requise\"],\"autopilot-chat.message.actions.copy\":[\"Copier\"],\"autopilot-chat.message.actions.good\":[\"J’aime\"],\"autopilot-chat.message.actions.label\":[\"Actions de message\"],\"autopilot-chat.message.actions.more\":[\"Autres actions\"],\"autopilot-chat.message.citation-aria-label\":[\"Citation\xA0\",[\"id\"],\"\xA0: \",[\"title\"]],\"autopilot-chat.message.close\":[\"Fermer le chat\"],\"autopilot-chat.message.code-block-code\":[\"Code\"],\"autopilot-chat.message.code-block-copy\":[\"Copier\"],\"autopilot-chat.message.code-block-language\":[\"Texte\"],\"autopilot-chat.message.code-block-preview\":[\"Aperçu\"],\"autopilot-chat.message.expand\":[\"Développer\"],\"autopilot-chat.message.footnote-label\":[\"Sources\"],\"autopilot-chat.message.generating-response\":[\"Génération en cours...\"],\"autopilot-chat.message.page-number\":[\"Page\xA0\",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Faire défiler vers le bas\"],\"autopilot-chat.message.show-less\":[\"Afficher moins\"],\"autopilot-chat.message.show-more\":[\"Afficher plus\"],\"autopilot-chat.message.sources\":[\"Sources\"],\"autopilot-chat.message.suggestions-title\":[\"Suggestions\"],\"autopilot-chat.settings.heading-description\":[\"Niveau d’en-tête\xA02\"],\"autopilot-chat.settings.hide\":[\"Masquer les paramètres\"],\"autopilot-chat.settings.title\":[\"Paramètres de chat\"],\"autopilot-chat.tree.no-description\":[\"Aucune description\"],\"autopilot-chat.tree.no-items\":[\"Aucun élément\"],\"autopilot-chat.tree.unknown\":[\"Inconnu\"]}")};
|
|
1
|
+
/*eslint-disable*/export default {messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"Supprimer\"],\"autopilot-chat.common.attachments.remove-file-name\":[\"Supprimer \",[\"name\"]],\"autopilot-chat.common.mode-selector\":[\"Sélecteur de mode\"],\"autopilot-chat.common.model-selector\":[\"Sélecteur de modèle\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"Types de fichiers autorisés\xA0: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"Nombre maximal de fichiers autorisés\xA0: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"Taille maximale du fichier\xA0: \",[\"maxSize\"],\"\xA0Mo\"],\"autopilot-chat.dropzone.overlay-title\":[\"Déposez vos fichiers ici pour les ajouter à votre invite\"],\"autopilot-chat.error.file-invalid-type\":[\"Fichier non pris en charge\xA0: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"Fichier trop volumineux\xA0: \",[\"fileName\"],\" \",[\"fileSize\"],\"Mo/\",[\"maxSize\"],\"Mo\"],\"autopilot-chat.error.multiple-files\":[\"Un seul fichier par message peut être ajouté en pièce jointe.\"],\"autopilot-chat.error.too-many-files\":[\"Trop de fichiers. \",[\"maxCount\"],\"\xA0fichiers sont autorisés par message\"],\"autopilot-chat.header.actions.close\":[\"Fermer le chat\"],\"autopilot-chat.header.actions.collapse\":[\"Réduire\"],\"autopilot-chat.header.actions.custom-actions\":[\"Autres actions\"],\"autopilot-chat.header.actions.expand\":[\"Développer\"],\"autopilot-chat.header.actions.history\":[\"Historique de discussion\"],\"autopilot-chat.header.actions.new-chat\":[\"Nouveau chat\"],\"autopilot-chat.header.actions.settings\":[\"Paramètres\"],\"autopilot-chat.header.preview\":[\"Aperçu\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"Supprimer\"],\"autopilot-chat.history.empty\":[\"Il n’y a aucune conversation pour le moment.\"],\"autopilot-chat.history.group.last-30-days\":[\"30\xA0jours précédents\"],\"autopilot-chat.history.group.last-week\":[\"Dernière semaine\"],\"autopilot-chat.history.group.months-ago\":[\"il y a \",[\"count\"],\" mois\"],\"autopilot-chat.history.group.today\":[\"Aujourd'hui\"],\"autopilot-chat.history.group.yesterday\":[\"Hier\"],\"autopilot-chat.history.no-results\":[\"Aucun résultat trouvé.\"],\"autopilot-chat.history.search-placeholder\":[\"Rechercher\"],\"autopilot-chat.input.actions.attach-file\":[\"Joindre le(s) fichier(s)\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"Types de fichiers autorisés\xA0: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"Nombre maximal de fichiers autorisés\xA0: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"Taille maximale du fichier\xA0: \",[\"maxSize\"],\"\xA0Mo\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"Fichier trop volumineux\xA0: \",[\"fileName\"],\" \",[\"fileSize\"],\"Mo/\",[\"maxSize\"],\"Mo\"],\"autopilot-chat.input.actions.send\":[\"Envoyer\"],\"autopilot-chat.input.actions.stop\":[\"Arrêter\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"Sélection du mode d’agent\"],\"autopilot-chat.input.footer\":[\"Autopilot peut commettre des erreurs. Veuillez vérifier soigneusement les réponses.\"],\"autopilot-chat.input.model-selection-label\":[\"Sélection du modèle\"],\"autopilot-chat.input.placeholder\":[\"Que souhaitez-vous que je fasse\xA0?\"],\"autopilot-chat.input.resource-chip.remove\":[\"Supprimer\"],\"autopilot-chat.input.resource-chip.remove-name\":[\"Supprimer \",[\"label\"]],\"autopilot-chat.message.actions.bad\":[\"Amélioration requise\"],\"autopilot-chat.message.actions.copy\":[\"Copier\"],\"autopilot-chat.message.actions.good\":[\"J’aime\"],\"autopilot-chat.message.actions.label\":[\"Actions de message\"],\"autopilot-chat.message.actions.more\":[\"Autres actions\"],\"autopilot-chat.message.citation-aria-label\":[\"Citation\xA0\",[\"id\"],\"\xA0: \",[\"title\"]],\"autopilot-chat.message.close\":[\"Fermer le chat\"],\"autopilot-chat.message.code-block-code\":[\"Code\"],\"autopilot-chat.message.code-block-copy\":[\"Copier\"],\"autopilot-chat.message.code-block-language\":[\"Texte\"],\"autopilot-chat.message.code-block-preview\":[\"Aperçu\"],\"autopilot-chat.message.expand\":[\"Développer\"],\"autopilot-chat.message.footnote-label\":[\"Sources\"],\"autopilot-chat.message.generating-response\":[\"Génération en cours...\"],\"autopilot-chat.message.page-number\":[\"Page\xA0\",[\"page_number\"]],\"autopilot-chat.message.scroll-to-bottom\":[\"Faire défiler vers le bas\"],\"autopilot-chat.message.show-less\":[\"Afficher moins\"],\"autopilot-chat.message.show-more\":[\"Afficher plus\"],\"autopilot-chat.message.sources\":[\"Sources\"],\"autopilot-chat.message.suggestions-title\":[\"Suggestions\"],\"autopilot-chat.resource-picker.back\":[\"Revenir en arrière\"],\"autopilot-chat.resource-picker.empty\":[\"Aucune ressource disponible\"],\"autopilot-chat.resource-picker.error\":[\"Échec du chargement des ressources\"],\"autopilot-chat.resource-picker.label\":[\"Sélecteur de ressources\"],\"autopilot-chat.resource-picker.load-more-error\":[\"Impossible de charger plus\"],\"autopilot-chat.resource-picker.no-results\":[\"Aucune ressource correspondante\"],\"autopilot-chat.resource-picker.retry\":[\"Réessayer\"],\"autopilot-chat.resource-picker.search-error\":[\"Recherche échouée\"],\"autopilot-chat.resource-trigger.label\":[\"Ajouter une référence de ressource\"],\"autopilot-chat.resource-trigger.tooltip\":[\"Ajouter une ressource\"],\"autopilot-chat.settings.heading-description\":[\"Niveau d’en-tête\xA02\"],\"autopilot-chat.settings.hide\":[\"Masquer les paramètres\"],\"autopilot-chat.settings.title\":[\"Paramètres de chat\"],\"autopilot-chat.tree.no-description\":[\"Aucune description\"],\"autopilot-chat.tree.no-items\":[\"Aucun élément\"],\"autopilot-chat.tree.unknown\":[\"Inconnu\"]}")};
|
|
@@ -65,5 +65,17 @@
|
|
|
65
65
|
"autopilot-chat.history.group.today": "Aujourd'hui",
|
|
66
66
|
"autopilot-chat.input.placeholder": "Que souhaitez-vous que je fasse ?",
|
|
67
67
|
"autopilot-chat.tree.unknown": "Inconnu",
|
|
68
|
-
"autopilot-chat.history.group.yesterday": "Hier"
|
|
68
|
+
"autopilot-chat.history.group.yesterday": "Hier",
|
|
69
|
+
"autopilot-chat.resource-trigger.tooltip": "Ajouter une ressource",
|
|
70
|
+
"autopilot-chat.resource-trigger.label": "Ajouter une référence de ressource",
|
|
71
|
+
"autopilot-chat.resource-picker.error": "Échec du chargement des ressources",
|
|
72
|
+
"autopilot-chat.resource-picker.retry": "Réessayer",
|
|
73
|
+
"autopilot-chat.resource-picker.no-results": "Aucune ressource correspondante",
|
|
74
|
+
"autopilot-chat.resource-picker.empty": "Aucune ressource disponible",
|
|
75
|
+
"autopilot-chat.resource-picker.label": "Sélecteur de ressources",
|
|
76
|
+
"autopilot-chat.resource-picker.load-more-error": "Impossible de charger plus",
|
|
77
|
+
"autopilot-chat.resource-picker.search-error": "Recherche échouée",
|
|
78
|
+
"autopilot-chat.resource-picker.back": "Revenir en arrière",
|
|
79
|
+
"autopilot-chat.input.resource-chip.remove": "Supprimer",
|
|
80
|
+
"autopilot-chat.input.resource-chip.remove-name": "Supprimer {label}"
|
|
69
81
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"削除\"],\"autopilot-chat.common.attachments.remove-file-name\":[[\"name\"],\" を削除\"],\"autopilot-chat.common.mode-selector\":[\"モード セレクター\"],\"autopilot-chat.common.model-selector\":[\"モデル セレクター\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"使用できるファイルの種類: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"許可される最大ファイル数: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"最大ファイル サイズ: \",[\"maxSize\"],\" MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"ここにファイルをドロップして、プロンプトに追加します。\"],\"autopilot-chat.error.file-invalid-type\":[\"サポートされていないファイル: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"ファイルが大きすぎます: \",[\"fileName\"],\" \",[\"fileSize\"],\" MB/\",[\"maxSize\"],\" MB\"],\"autopilot-chat.error.multiple-files\":[\"1 件のメッセージに添付できるファイルは 1 つのみです。\"],\"autopilot-chat.error.too-many-files\":[\"ファイルが多すぎます。1 件のメッセージにつき \",[\"maxCount\"],\" 個のファイルを使用できます。\"],\"autopilot-chat.header.actions.close\":[\"チャットを閉じる\"],\"autopilot-chat.header.actions.collapse\":[\"折りたたみ\"],\"autopilot-chat.header.actions.custom-actions\":[\"その他のアクション\"],\"autopilot-chat.header.actions.expand\":[\"展開\"],\"autopilot-chat.header.actions.history\":[\"チャット履歴\"],\"autopilot-chat.header.actions.new-chat\":[\"新しいチャット\"],\"autopilot-chat.header.actions.settings\":[\"設定\"],\"autopilot-chat.header.preview\":[\"プレビュー\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"削除\"],\"autopilot-chat.history.empty\":[\"まだ会話はありません。\"],\"autopilot-chat.history.group.last-30-days\":[\"過去 30 日間\"],\"autopilot-chat.history.group.last-week\":[\"過去 1 週間\"],\"autopilot-chat.history.group.months-ago\":[[\"count\"],\" か月前\"],\"autopilot-chat.history.group.today\":[\"今日\"],\"autopilot-chat.history.group.yesterday\":[\"昨日\"],\"autopilot-chat.history.no-results\":[\"結果が見つかりません。\"],\"autopilot-chat.history.search-placeholder\":[\"検索\"],\"autopilot-chat.input.actions.attach-file\":[\"ファイルを添付\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"使用できるファイルの種類: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"許可される最大ファイル数: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"最大ファイル サイズ: \",[\"maxSize\"],\" MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"ファイルが大きすぎます: \",[\"fileName\"],\" \",[\"fileSize\"],\" MB/\",[\"maxSize\"],\" MB\"],\"autopilot-chat.input.actions.send\":[\"送信\"],\"autopilot-chat.input.actions.stop\":[\"停止\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"エージェント モードの選択\"],\"autopilot-chat.input.footer\":[\"Autopilot は間違うことがあります。必ず回答を再確認してください。\"],\"autopilot-chat.input.model-selection-label\":[\"モデルの選択\"],\"autopilot-chat.input.placeholder\":[\"どのようなサポートが必要ですか?\"],\"autopilot-chat.message.actions.bad\":[\"不満\"],\"autopilot-chat.message.actions.copy\":[\"コピー\"],\"autopilot-chat.message.actions.good\":[\"満足\"],\"autopilot-chat.message.actions.label\":[\"メッセージのアクション\"],\"autopilot-chat.message.actions.more\":[\"その他のアクション\"],\"autopilot-chat.message.citation-aria-label\":[\"引用 \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"チャットを閉じる\"],\"autopilot-chat.message.code-block-code\":[\"コード\"],\"autopilot-chat.message.code-block-copy\":[\"コピー\"],\"autopilot-chat.message.code-block-language\":[\"テキスト\"],\"autopilot-chat.message.code-block-preview\":[\"プレビュー\"],\"autopilot-chat.message.expand\":[\"展開\"],\"autopilot-chat.message.footnote-label\":[\"ソース\"],\"autopilot-chat.message.generating-response\":[\"生成しています...\"],\"autopilot-chat.message.page-number\":[[\"page_number\"],\" ページ\"],\"autopilot-chat.message.scroll-to-bottom\":[\"最下部までスクロール\"],\"autopilot-chat.message.show-less\":[\"一部を表示\"],\"autopilot-chat.message.show-more\":[\"さらに表示\"],\"autopilot-chat.message.sources\":[\"ソース\"],\"autopilot-chat.message.suggestions-title\":[\"提案\"],\"autopilot-chat.settings.heading-description\":[\"見出しレベル 2\"],\"autopilot-chat.settings.hide\":[\"設定を非表示\"],\"autopilot-chat.settings.title\":[\"チャットの設定\"],\"autopilot-chat.tree.no-description\":[\"説明がありません。\"],\"autopilot-chat.tree.no-items\":[\"項目がありません。\"],\"autopilot-chat.tree.unknown\":[\"不明\"]}")};
|
|
1
|
+
/*eslint-disable*/module.exports={messages:JSON.parse("{\"autopilot-chat.common.attachments.remove-file\":[\"削除\"],\"autopilot-chat.common.attachments.remove-file-name\":[[\"name\"],\" を削除\"],\"autopilot-chat.common.mode-selector\":[\"モード セレクター\"],\"autopilot-chat.common.model-selector\":[\"モデル セレクター\"],\"autopilot-chat.dropzone.allowed-file-types\":[\"使用できるファイルの種類: \",[\"fileTypes\"]],\"autopilot-chat.dropzone.overlay-max-count\":[\"許可される最大ファイル数: \",[\"maxCount\"]],\"autopilot-chat.dropzone.overlay-max-size\":[\"最大ファイル サイズ: \",[\"maxSize\"],\" MB\"],\"autopilot-chat.dropzone.overlay-title\":[\"ここにファイルをドロップして、プロンプトに追加します。\"],\"autopilot-chat.error.file-invalid-type\":[\"サポートされていないファイル: \",[\"fileName\"]],\"autopilot-chat.error.file-too-large\":[\"ファイルが大きすぎます: \",[\"fileName\"],\" \",[\"fileSize\"],\" MB/\",[\"maxSize\"],\" MB\"],\"autopilot-chat.error.multiple-files\":[\"1 件のメッセージに添付できるファイルは 1 つのみです。\"],\"autopilot-chat.error.too-many-files\":[\"ファイルが多すぎます。1 件のメッセージにつき \",[\"maxCount\"],\" 個のファイルを使用できます。\"],\"autopilot-chat.header.actions.close\":[\"チャットを閉じる\"],\"autopilot-chat.header.actions.collapse\":[\"折りたたみ\"],\"autopilot-chat.header.actions.custom-actions\":[\"その他のアクション\"],\"autopilot-chat.header.actions.expand\":[\"展開\"],\"autopilot-chat.header.actions.history\":[\"チャット履歴\"],\"autopilot-chat.header.actions.new-chat\":[\"新しいチャット\"],\"autopilot-chat.header.actions.settings\":[\"設定\"],\"autopilot-chat.header.preview\":[\"プレビュー\"],\"autopilot-chat.header.title\":[\"Autopilot\"],\"autopilot-chat.history.delete\":[\"削除\"],\"autopilot-chat.history.empty\":[\"まだ会話はありません。\"],\"autopilot-chat.history.group.last-30-days\":[\"過去 30 日間\"],\"autopilot-chat.history.group.last-week\":[\"過去 1 週間\"],\"autopilot-chat.history.group.months-ago\":[[\"count\"],\" か月前\"],\"autopilot-chat.history.group.today\":[\"今日\"],\"autopilot-chat.history.group.yesterday\":[\"昨日\"],\"autopilot-chat.history.no-results\":[\"結果が見つかりません。\"],\"autopilot-chat.history.search-placeholder\":[\"検索\"],\"autopilot-chat.input.actions.attach-file\":[\"ファイルを添付\"],\"autopilot-chat.input.actions.attachments.allowed-types\":[\"使用できるファイルの種類: \",[\"fileTypes\"]],\"autopilot-chat.input.actions.attachments.max-count\":[\"許可される最大ファイル数: \",[\"maxCount\"]],\"autopilot-chat.input.actions.attachments.max-size\":[\"最大ファイル サイズ: \",[\"maxSize\"],\" MB\"],\"autopilot-chat.input.actions.error.file-too-large\":[\"ファイルが大きすぎます: \",[\"fileName\"],\" \",[\"fileSize\"],\" MB/\",[\"maxSize\"],\" MB\"],\"autopilot-chat.input.actions.send\":[\"送信\"],\"autopilot-chat.input.actions.stop\":[\"停止\"],\"autopilot-chat.input.agent-mode-selection-label\":[\"エージェント モードの選択\"],\"autopilot-chat.input.footer\":[\"Autopilot は間違うことがあります。必ず回答を再確認してください。\"],\"autopilot-chat.input.model-selection-label\":[\"モデルの選択\"],\"autopilot-chat.input.placeholder\":[\"どのようなサポートが必要ですか?\"],\"autopilot-chat.input.resource-chip.remove\":[\"削除\"],\"autopilot-chat.input.resource-chip.remove-name\":[[\"label\"],\" を削除\"],\"autopilot-chat.message.actions.bad\":[\"不満\"],\"autopilot-chat.message.actions.copy\":[\"コピー\"],\"autopilot-chat.message.actions.good\":[\"満足\"],\"autopilot-chat.message.actions.label\":[\"メッセージのアクション\"],\"autopilot-chat.message.actions.more\":[\"その他のアクション\"],\"autopilot-chat.message.citation-aria-label\":[\"引用 \",[\"id\"],\": \",[\"title\"]],\"autopilot-chat.message.close\":[\"チャットを閉じる\"],\"autopilot-chat.message.code-block-code\":[\"コード\"],\"autopilot-chat.message.code-block-copy\":[\"コピー\"],\"autopilot-chat.message.code-block-language\":[\"テキスト\"],\"autopilot-chat.message.code-block-preview\":[\"プレビュー\"],\"autopilot-chat.message.expand\":[\"展開\"],\"autopilot-chat.message.footnote-label\":[\"ソース\"],\"autopilot-chat.message.generating-response\":[\"生成しています...\"],\"autopilot-chat.message.page-number\":[[\"page_number\"],\" ページ\"],\"autopilot-chat.message.scroll-to-bottom\":[\"最下部までスクロール\"],\"autopilot-chat.message.show-less\":[\"一部を表示\"],\"autopilot-chat.message.show-more\":[\"さらに表示\"],\"autopilot-chat.message.sources\":[\"ソース\"],\"autopilot-chat.message.suggestions-title\":[\"提案\"],\"autopilot-chat.resource-picker.back\":[\"戻る\"],\"autopilot-chat.resource-picker.empty\":[\"利用可能なリソースがありません。\"],\"autopilot-chat.resource-picker.error\":[\"リソースの読み込みに失敗しました。\"],\"autopilot-chat.resource-picker.label\":[\"リソース ピッカー\"],\"autopilot-chat.resource-picker.load-more-error\":[\"読み込みに失敗しました。\"],\"autopilot-chat.resource-picker.no-results\":[\"一致するリソースがありません。\"],\"autopilot-chat.resource-picker.retry\":[\"リトライ\"],\"autopilot-chat.resource-picker.search-error\":[\"検索に失敗しました。\"],\"autopilot-chat.resource-trigger.label\":[\"リソースの参照を追加\"],\"autopilot-chat.resource-trigger.tooltip\":[\"リソースを追加\"],\"autopilot-chat.settings.heading-description\":[\"見出しレベル 2\"],\"autopilot-chat.settings.hide\":[\"設定を非表示\"],\"autopilot-chat.settings.title\":[\"チャットの設定\"],\"autopilot-chat.tree.no-description\":[\"説明がありません。\"],\"autopilot-chat.tree.no-items\":[\"項目がありません。\"],\"autopilot-chat.tree.unknown\":[\"不明\"]}")};
|