@datarobot/design-system 30.3.0 → 30.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/cjs/expandable-content/expandable-content.d.ts +16 -0
  2. package/cjs/expandable-content/expandable-content.js +61 -0
  3. package/cjs/expandable-content/index.d.ts +3 -0
  4. package/cjs/expandable-content/index.js +12 -0
  5. package/cjs/font-awesome-icon/font-awesome-icon.d.ts +1 -2
  6. package/cjs/index.d.ts +1 -0
  7. package/cjs/index.js +11 -0
  8. package/cjs/markdown/markdown.d.ts +6 -0
  9. package/cjs/markdown/markdown.js +15 -2
  10. package/cjs/table-react/components/table-settings/table-settings.js +1 -1
  11. package/esm/expandable-content/expandable-content.d.ts +16 -0
  12. package/esm/expandable-content/expandable-content.js +53 -0
  13. package/esm/expandable-content/index.d.ts +3 -0
  14. package/esm/expandable-content/index.js +2 -0
  15. package/esm/font-awesome-icon/font-awesome-icon.d.ts +1 -2
  16. package/esm/index.d.ts +1 -0
  17. package/esm/index.js +1 -0
  18. package/esm/markdown/markdown.d.ts +6 -0
  19. package/esm/markdown/markdown.js +15 -2
  20. package/esm/table-react/components/table-settings/table-settings.js +1 -1
  21. package/expandable-content/package.json +7 -0
  22. package/js/139/139.min.js +1 -1
  23. package/js/238/238.min.js +1 -1
  24. package/js/633/633.min.js +1 -1
  25. package/js/784/784.min.js +1 -1
  26. package/js/804/804.min.js +1 -1
  27. package/js/bundle/bundle.js +498 -367
  28. package/js/bundle/bundle.min.js +1 -1
  29. package/js/bundle/index.d.ts +28 -5
  30. package/js/src_locales_es-419_translation_json/src_locales_es-419_translation_json.js +1 -1
  31. package/js/src_locales_fr_translation_json/src_locales_fr_translation_json.js +1 -1
  32. package/js/src_locales_ja_translation_json/src_locales_ja_translation_json.js +1 -1
  33. package/js/src_locales_ko_translation_json/src_locales_ko_translation_json.js +1 -1
  34. package/js/src_locales_pt-BR_translation_json/src_locales_pt-BR_translation_json.js +1 -1
  35. package/locales/es-419/translation.json +31 -36
  36. package/locales/fr/translation.json +31 -36
  37. package/locales/ja/translation.json +34 -33
  38. package/locales/ko/translation.json +31 -30
  39. package/locales/pt-BR/translation.json +32 -37
  40. package/package.json +7 -8
  41. package/styles/index.css +7 -0
  42. package/styles/index.min.css +1 -1
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import './expandable-content.less';
3
+ export type ExpandableContentProps = {
4
+ /** Content to render */
5
+ children: React.ReactNode;
6
+ /** Maximum height in pixels. When content exceeds this height it is clipped and a Show more/Show less button appears */
7
+ maxHeight: number;
8
+ /** Additional CSS class applied to the wrapper */
9
+ className?: string;
10
+ };
11
+ /** Clips content to a maximum height and shows a Show more/Show less ghost button when the content overflows.
12
+ * @midnight-gray-supported
13
+ * @alpine-light-supported
14
+ */
15
+ declare const ExpandableContent: React.FC<ExpandableContentProps>;
16
+ export { ExpandableContent };
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ExpandableContent = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _classnames = _interopRequireDefault(require("classnames"));
9
+ var _faChevronDown = require("@fortawesome/free-solid-svg-icons/faChevronDown");
10
+ var _faChevronUp = require("@fortawesome/free-solid-svg-icons/faChevronUp");
11
+ var _button = require("../button");
12
+ var _useTranslation = require("../hooks/use-translation");
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
16
+ /** Clips content to a maximum height and shows a Show more/Show less ghost button when the content overflows.
17
+ * @midnight-gray-supported
18
+ * @alpine-light-supported
19
+ */
20
+ const ExpandableContent = ({
21
+ children,
22
+ maxHeight,
23
+ className
24
+ }) => {
25
+ const [isExpanded, setIsExpanded] = (0, _react.useState)(false);
26
+ const [isOverflowing, setIsOverflowing] = (0, _react.useState)(false);
27
+ const contentRef = (0, _react.useRef)(null);
28
+ const {
29
+ t
30
+ } = (0, _useTranslation.useTranslation)();
31
+ (0, _react.useLayoutEffect)(() => {
32
+ if (contentRef.current) {
33
+ setIsOverflowing(contentRef.current.scrollHeight > maxHeight);
34
+ }
35
+ }, [children, maxHeight]);
36
+ const isClipped = isOverflowing && !isExpanded;
37
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
38
+ className: (0, _classnames.default)('expandable-content', className),
39
+ "test-id": "expandable-content",
40
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
41
+ ref: contentRef,
42
+ className: "expandable-content-body"
43
+ // eslint-disable-next-line react/forbid-dom-props
44
+ ,
45
+ style: isClipped ? {
46
+ maxHeight,
47
+ overflow: 'hidden'
48
+ } : undefined,
49
+ "test-id": "expandable-content-body",
50
+ children: children
51
+ }), isOverflowing && /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.Button, {
52
+ accentType: _button.ACCENT_TYPES.GHOST,
53
+ onClick: () => setIsExpanded(prev => !prev),
54
+ className: "expandable-content-toggle",
55
+ rightIcon: isExpanded ? _faChevronUp.faChevronUp : _faChevronDown.faChevronDown,
56
+ testId: "expandable-content-toggle",
57
+ children: isExpanded ? t('Show less') : t('Show more')
58
+ })]
59
+ });
60
+ };
61
+ exports.ExpandableContent = ExpandableContent;
@@ -0,0 +1,3 @@
1
+ import { ExpandableContent, ExpandableContentProps } from './expandable-content';
2
+ export type { ExpandableContentProps };
3
+ export { ExpandableContent };
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "ExpandableContent", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _expandableContent.ExpandableContent;
10
+ }
11
+ });
12
+ var _expandableContent = require("./expandable-content");
@@ -1,3 +1,2 @@
1
1
  /// <reference types="react" />
2
- import { FontAwesomeIcon as FontAwesomeIconOriginal } from '@fortawesome/react-fontawesome';
3
- export declare const FontAwesomeIcon: import("react").MemoExoticComponent<typeof FontAwesomeIconOriginal>;
2
+ export declare const FontAwesomeIcon: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>>;
package/cjs/index.d.ts CHANGED
@@ -33,6 +33,7 @@ export * from './editable-text';
33
33
  export * from './embedded-steps';
34
34
  export * from './empty-state';
35
35
  export * from './error-boundary';
36
+ export * from './expandable-content';
36
37
  export * from './export-button';
37
38
  export * from './file-tree';
38
39
  export * from './file-upload';
package/cjs/index.js CHANGED
@@ -388,6 +388,17 @@ Object.keys(_errorBoundary).forEach(function (key) {
388
388
  }
389
389
  });
390
390
  });
391
+ var _expandableContent = require("./expandable-content");
392
+ Object.keys(_expandableContent).forEach(function (key) {
393
+ if (key === "default" || key === "__esModule") return;
394
+ if (key in exports && exports[key] === _expandableContent[key]) return;
395
+ Object.defineProperty(exports, key, {
396
+ enumerable: true,
397
+ get: function () {
398
+ return _expandableContent[key];
399
+ }
400
+ });
401
+ });
391
402
  var _exportButton = require("./export-button");
392
403
  Object.keys(_exportButton).forEach(function (key) {
393
404
  if (key === "default" || key === "__esModule") return;
@@ -3,6 +3,12 @@ import './markdown.less';
3
3
  type Props = {
4
4
  className?: string;
5
5
  children?: React.ReactNode;
6
+ /** If set, content will be clipped to this height and a Show more/Show less button will appear */
7
+ maxHeight?: number;
6
8
  };
9
+ /** Renders markdown content as HTML with support for GFM, math, and syntax highlighting.
10
+ * @midnight-gray-supported
11
+ * @alpine-light-supported
12
+ */
7
13
  declare const Markdown: React.FC<Props>;
8
14
  export { Markdown };
@@ -7,14 +7,20 @@ exports.Markdown = void 0;
7
7
  var _react = _interopRequireWildcard(require("react"));
8
8
  var _classnames = _interopRequireDefault(require("classnames"));
9
9
  var _message = require("../message");
10
+ var _expandableContent = require("../expandable-content");
10
11
  var _markdownUtils = require("./markdown-utils");
11
12
  var _useTranslation = require("../hooks/use-translation");
12
13
  var _jsxRuntime = require("react/jsx-runtime");
13
14
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
14
15
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
16
+ /** Renders markdown content as HTML with support for GFM, math, and syntax highlighting.
17
+ * @midnight-gray-supported
18
+ * @alpine-light-supported
19
+ */
15
20
  const Markdown = ({
16
21
  children,
17
- className
22
+ className,
23
+ maxHeight
18
24
  }) => {
19
25
  const [html, setHtml] = (0, _react.useState)('');
20
26
  const [error, setError] = (0, _react.useState)('');
@@ -74,11 +80,18 @@ const Markdown = ({
74
80
  if (!html) {
75
81
  return null;
76
82
  }
77
- return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
83
+ const content = /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
78
84
  className: (0, _classnames.default)('markdown', className),
79
85
  dangerouslySetInnerHTML: {
80
86
  __html: String(html)
81
87
  }
82
88
  });
89
+ if (maxHeight !== undefined) {
90
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_expandableContent.ExpandableContent, {
91
+ maxHeight: maxHeight,
92
+ children: content
93
+ });
94
+ }
95
+ return content;
83
96
  };
84
97
  exports.Markdown = Markdown;
@@ -36,7 +36,7 @@ function TableSettings({
36
36
  applyText: t('Apply'),
37
37
  restToDefaultText: t('Reset to default'),
38
38
  searchText: t('Search'),
39
- titleText: t('Columns management'),
39
+ titleText: t('Column management'),
40
40
  settingsText: t('Settings'),
41
41
  noResultText: t('No search results found.'),
42
42
  disabledPinText: t('Pinned columns will take too much space with current column pinned'),
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import './expandable-content.less';
3
+ export type ExpandableContentProps = {
4
+ /** Content to render */
5
+ children: React.ReactNode;
6
+ /** Maximum height in pixels. When content exceeds this height it is clipped and a Show more/Show less button appears */
7
+ maxHeight: number;
8
+ /** Additional CSS class applied to the wrapper */
9
+ className?: string;
10
+ };
11
+ /** Clips content to a maximum height and shows a Show more/Show less ghost button when the content overflows.
12
+ * @midnight-gray-supported
13
+ * @alpine-light-supported
14
+ */
15
+ declare const ExpandableContent: React.FC<ExpandableContentProps>;
16
+ export { ExpandableContent };
@@ -0,0 +1,53 @@
1
+ import React, { useLayoutEffect, useRef, useState } from 'react';
2
+ import classNames from 'classnames';
3
+ import { faChevronDown } from '@fortawesome/free-solid-svg-icons/faChevronDown';
4
+ import { faChevronUp } from '@fortawesome/free-solid-svg-icons/faChevronUp';
5
+ import { Button, ACCENT_TYPES } from '../button';
6
+ import { useTranslation } from '../hooks/use-translation';
7
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
8
+ /** Clips content to a maximum height and shows a Show more/Show less ghost button when the content overflows.
9
+ * @midnight-gray-supported
10
+ * @alpine-light-supported
11
+ */
12
+ const ExpandableContent = ({
13
+ children,
14
+ maxHeight,
15
+ className
16
+ }) => {
17
+ const [isExpanded, setIsExpanded] = useState(false);
18
+ const [isOverflowing, setIsOverflowing] = useState(false);
19
+ const contentRef = useRef(null);
20
+ const {
21
+ t
22
+ } = useTranslation();
23
+ useLayoutEffect(() => {
24
+ if (contentRef.current) {
25
+ setIsOverflowing(contentRef.current.scrollHeight > maxHeight);
26
+ }
27
+ }, [children, maxHeight]);
28
+ const isClipped = isOverflowing && !isExpanded;
29
+ return /*#__PURE__*/_jsxs("div", {
30
+ className: classNames('expandable-content', className),
31
+ "test-id": "expandable-content",
32
+ children: [/*#__PURE__*/_jsx("div", {
33
+ ref: contentRef,
34
+ className: "expandable-content-body"
35
+ // eslint-disable-next-line react/forbid-dom-props
36
+ ,
37
+ style: isClipped ? {
38
+ maxHeight,
39
+ overflow: 'hidden'
40
+ } : undefined,
41
+ "test-id": "expandable-content-body",
42
+ children: children
43
+ }), isOverflowing && /*#__PURE__*/_jsx(Button, {
44
+ accentType: ACCENT_TYPES.GHOST,
45
+ onClick: () => setIsExpanded(prev => !prev),
46
+ className: "expandable-content-toggle",
47
+ rightIcon: isExpanded ? faChevronUp : faChevronDown,
48
+ testId: "expandable-content-toggle",
49
+ children: isExpanded ? t('Show less') : t('Show more')
50
+ })]
51
+ });
52
+ };
53
+ export { ExpandableContent };
@@ -0,0 +1,3 @@
1
+ import { ExpandableContent, ExpandableContentProps } from './expandable-content';
2
+ export type { ExpandableContentProps };
3
+ export { ExpandableContent };
@@ -0,0 +1,2 @@
1
+ import { ExpandableContent } from './expandable-content';
2
+ export { ExpandableContent };
@@ -1,3 +1,2 @@
1
1
  /// <reference types="react" />
2
- import { FontAwesomeIcon as FontAwesomeIconOriginal } from '@fortawesome/react-fontawesome';
3
- export declare const FontAwesomeIcon: import("react").MemoExoticComponent<typeof FontAwesomeIconOriginal>;
2
+ export declare const FontAwesomeIcon: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("@fortawesome/react-fontawesome").FontAwesomeIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>>;
package/esm/index.d.ts CHANGED
@@ -33,6 +33,7 @@ export * from './editable-text';
33
33
  export * from './embedded-steps';
34
34
  export * from './empty-state';
35
35
  export * from './error-boundary';
36
+ export * from './expandable-content';
36
37
  export * from './export-button';
37
38
  export * from './file-tree';
38
39
  export * from './file-upload';
package/esm/index.js CHANGED
@@ -33,6 +33,7 @@ export * from './editable-text';
33
33
  export * from './embedded-steps';
34
34
  export * from './empty-state';
35
35
  export * from './error-boundary';
36
+ export * from './expandable-content';
36
37
  export * from './export-button';
37
38
  export * from './file-tree';
38
39
  export * from './file-upload';
@@ -3,6 +3,12 @@ import './markdown.less';
3
3
  type Props = {
4
4
  className?: string;
5
5
  children?: React.ReactNode;
6
+ /** If set, content will be clipped to this height and a Show more/Show less button will appear */
7
+ maxHeight?: number;
6
8
  };
9
+ /** Renders markdown content as HTML with support for GFM, math, and syntax highlighting.
10
+ * @midnight-gray-supported
11
+ * @alpine-light-supported
12
+ */
7
13
  declare const Markdown: React.FC<Props>;
8
14
  export { Markdown };
@@ -1,12 +1,18 @@
1
1
  import React, { useEffect, useState } from 'react';
2
2
  import classNames from 'classnames';
3
3
  import { Message, MESSAGE_TYPES } from '../message';
4
+ import { ExpandableContent } from '../expandable-content';
4
5
  import { datarobotCSSClasses } from './markdown-utils';
5
6
  import { useTranslation } from '../hooks/use-translation';
6
7
  import { jsx as _jsx } from "react/jsx-runtime";
8
+ /** Renders markdown content as HTML with support for GFM, math, and syntax highlighting.
9
+ * @midnight-gray-supported
10
+ * @alpine-light-supported
11
+ */
7
12
  const Markdown = ({
8
13
  children,
9
- className
14
+ className,
15
+ maxHeight
10
16
  }) => {
11
17
  const [html, setHtml] = useState('');
12
18
  const [error, setError] = useState('');
@@ -66,11 +72,18 @@ const Markdown = ({
66
72
  if (!html) {
67
73
  return null;
68
74
  }
69
- return /*#__PURE__*/_jsx("div", {
75
+ const content = /*#__PURE__*/_jsx("div", {
70
76
  className: classNames('markdown', className),
71
77
  dangerouslySetInnerHTML: {
72
78
  __html: String(html)
73
79
  }
74
80
  });
81
+ if (maxHeight !== undefined) {
82
+ return /*#__PURE__*/_jsx(ExpandableContent, {
83
+ maxHeight: maxHeight,
84
+ children: content
85
+ });
86
+ }
87
+ return content;
75
88
  };
76
89
  export { Markdown };
@@ -28,7 +28,7 @@ export function TableSettings({
28
28
  applyText: t('Apply'),
29
29
  restToDefaultText: t('Reset to default'),
30
30
  searchText: t('Search'),
31
- titleText: t('Columns management'),
31
+ titleText: t('Column management'),
32
32
  settingsText: t('Settings'),
33
33
  noResultText: t('No search results found.'),
34
34
  disabledPinText: t('Pinned columns will take too much space with current column pinned'),
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "@datarobot/design-system/expandable-content",
3
+ "private": true,
4
+ "main": "../cjs/expandable-content",
5
+ "module": "../esm/expandable-content",
6
+ "types": "../esm/index.d.ts"
7
+ }
package/js/139/139.min.js CHANGED
@@ -1 +1 @@
1
- "use strict";(this.webpackChunkDataRobot=this.webpackChunkDataRobot||[]).push([[139],{9139:e=>{e.exports=JSON.parse('{"(UTC)":"","{{count}} characters remaining_other":"{{count}}자 남음","{{count}} item found_other":"{{count}}개 항목 찾음","{{count}}+ item found_other":"{{count}}개 이상의 항목 찾음","{{fieldName}} cannot be after {{date}}.":"","{{fieldName}} cannot be before {{date}}.":"","{{itemsLength}} item selected":"","{{itemsLength}} items selected":"","{{pages}} per page":"페이지당 {{pages}}개","{{start}}-{{end}} of {{total}} items":"{{total}}개 항목 중 {{start}}–{{end}}","{{start}}-{{endLimited}} of {{totalLimit}}+ items":"{{totalLimit}}개+ 항목 중 {{start}}–{{endLimited}}","{{startField}} and {{endField}} cannot be the same":"","{{startOfPage}} of {{total}}":"{{total}}개 중 {{startOfPage}}","{{startOfPage}} of {{totalLimit}}":"{{totalLimit}}개 중 {{startOfPage}}","{{startOfPage}}-{{endOfPage}} of {{total}}":"{{total}}개 중 {{startOfPage}}–{{endOfPage}}","{{startOfPage}}-{{endOfPage}} of {{totalLimit}}+":"{{totalLimit}}개+ 중 {{startOfPage}}–{{endOfPage}}","0-0 of 0":"0 중에 0-0","Above field(s) should not be empty":"위 필드를 입력해야 합니다","Accepted formats: {{formats}}":"수락되는 형식: {{formats}}","Accepted formats: {{supportedFileTypes}}":"지원 가능 파일 종류 {{supportedFileTypes}}","Accepts values between 0 (Sunday) and 6 (Saturday).":"0(일요일)과 6(토요일) 사이의 값을 허용합니다.","Accepts values between 1 (January) and 12 (December).":"1(1월)과 12(12월) 사이의 값을 허용합니다.","Accepts values from 1 to 31. Invalid values for a given month will be ignored.":"1부터 31까지의 값을 허용합니다. 지정된 월에 대해 잘못된 값은 무시됩니다.","Add item":"항목 추가","Addition actions":"추가 작업","Advanced schedule":"고급 스케줄","Advanced tour anchor button":"고급 투어 앵커 버튼","and {{items}} more...":"기타 {{items}}개 등등…","Apply":"적용","Apply filters":"필터 적용","April":"4월","August":"8월","avatar image":"아바타 이미지","Bold":"굵은 글씨","Browse":"찾아보기","Bulleted list":"불릿 기호가 붙은 목록","Cancel":"취소","Chat message":"채팅 메시지","Choose file":"파일 선택","Circle":"원","Clear":"지우기","Clear all":"모두 지우기","Clear filters":"필터 지우기","Clear formatting":"형식 지우기","Clear Input":"입력 삭제","Clear selection":"선택 지우기","click to close":"클릭하여 닫기","Click to edit text":"텍스트를 편집하려면 클릭하십시오","Click to expand the row":"행을 확장하려면 클릭하십시오","click to open":"클릭하여 열기","Click to open row actions dropdown":"행 작업 드롭다운을 열려면 클릭하십시오","Click to select all rows in the table":"테이블의 모든 행을 선택하려면 클릭하십시오","Click to select the row":"행을 선택하려면 클릭하십시오","Close":"닫기","close tab":"탭 닫기","Code":"코드","Code editor":"코드 편집기","Collapse":"숨기기","Column header actions dropdown":"열 헤더 작업 드롭다운","Column Header: {{headerLabel}}. To focus on the header column actions press Tab key":"열 헤더: {{headerLabel}}. 헤더 열 작업에 초점을 맞추려면 탭 키를 누르십시오","Columns management":"열 관리","Comparison of two text view":"두 텍스트 보기 비교","Complex schedule":"","Consider adjusting your filters or search":"필터 또는 검색 조정 고려","Continue setup":"설정 계속","Copied to clipboard":"클립보드에 복사됨","Copy text":"텍스트 복사","Copy to clipboard":"클립보드에 복사","create tab":"탭 생성","Cross":"십자","Daily at {{hour}}:{{minutes}}":"","Day of month":"월의 일","Day of week":"주의 일","Days":"일","December":"12월","Delete":"삭제","Delete Editor Content":"편집기 콘텐츠 삭제","Delete filter item":"필터 항목 삭제","Disabled row":"비활성화된 행","Disc":"디스크","Dismiss":"해제","Dock to sidebar":"사이드바에 도킹","Double-check this value":"이 값을 다시 확인하십시오.","Download information related to this visualization":"이 시각화와 관련된 정보 다운로드","Drag and drop a file here or browse":"파일을 여기로 끌어다 놓거나 탐색합니다.","Drag and drop a new dataset or select an option from the right":"새 데이터셋을 끌어다 놓거나 오른쪽에서 옵션을 선택합니다.","drag to resize":"드래그하여 크기 조정","Draggable handle: use arrows to change position of the panel":"드래그 가능한 핸들: 화살표를 사용하여 패널 위치 변경","Drop file(s) here to upload or":"업로드하려면 여기에 파일을 끌어 놓거나,","Dropdown content":"드롭다운 콘텐츠","Duplicated keys ({{name}}) are not allowed.":"중복 키({{name}})는 허용되지 않습니다.","Edit":"편집","Empty state":"빈 상태","End date":"종료 날짜","Enter a valid URL":"유효한 URL 입력","Enter item value":"항목 값 입력","Every day":"매일","Every hour":"매시간","Every month":"매달","Every quarter":"매사분기","Every week":"매주","Every year":"매년","Exit without saving":"저장하지 않고 종료","Expand":"확장하다","Expand Row":"행 확장","Expected a datetime":"","Export":"내보내기","Extra information in a tooltip":"툴팁에 표시되는 추가 정보","failed":"실패함","Failed to upload the file":"파일 업로드에 실패했습니다","February":"2월","File is required.":"파일이 필요합니다.","Filter By":"필터링 기준","Filters":"필터","Filters applied:":"적용된 필터:","Floating panel":"플로팅 패널","Frequency":"빈도","Friday":"금요일","Full-screen drawer":"전체 화면 서랍","Heading large":"라지로 이동","Heading medium":"미디엄으로 이동","Heading small":"스몰로 이동","Hide message":"메시지 숨기기","Hide password":"암호 숨기기","Horizontal line":"수평선","Hour":"시간","Hourly at {{minutes}} minute past the hour":"","Hourly at {{minutes}} minutes past the hour":"","Import from":"다음에서 가져오기","info":"정보","Info-icon with extra information in a tooltip":"추가 정보를 포함한 정보 아이콘 (툴팁 제공)","Initializing Data":"데이터 초기화 중","Invalid field":"잘못된 필드","Invalid file type, ":"잘못된 파일 유형, ","Invalid file, ":"유효하지 않은 파일, ","Italic":"기울임꼴","January":"1월","July":"7월","June":"6월","Key input":"키 입력","Link":"링크","loading":"로딩 중","Loading":"로드 중","Loading...":"로드 중…","Local File":"로컬 파일","March":"3월","Max number of key-value pairs reached":"쌍으로 도달하는 키값의 최대 수","May":"5월","Menu":"메뉴","Minimize":"사이드바를","Minute":"분","Minutes past the hour":"해당 시간 후 분","Modal":"모달","Monday":"월요일","Month":"월","Monthly on day {{day}} at {{hour}}:{{minutes}}":"","Monthly on days {{days}} at {{hour}}:{{minutes}}":"","Months":"개월","More":"더 많이","Must follow {{dateTimeFormat}} format":"","N/A":"해당 없음","New chat message":"새 채팅 메시지","next":"다음","Next":"다음","Next page":"다음 페이지","Next tour page":"다음 투어 페이지","No available page sizes":"사용 가능한 페이지 크기 없음","No items found":"항목 없음","No items to list":"나열할 항목 없음","No Records":"기록 없음","No records found":"기록을 찾을 수 없음","No search results found.":"검색 결과가 없음.","November":"11월","Numbered list":"번호가 매겨진 목록","October":"10월","OK":"확인","Optional":"선택 사항","Options":"옵션","Page {{number}}":"페이지 {{number}}","Pagination":"페이지 매김","Pin column":"열 고정","Pinned columns":"고정된 열","Pinned columns will take too much space with current column pinned":"고정된 열이 현재 열이 고정된 상태에서 너무 많은 공간을 차지합니다.","previous":"이전","Previous":"이전","Previous page":"이전 페이지","Previous tour page":"이전 투어 페이지","Quarterly on day {{day}} at {{hour}}:{{minutes}}":"","Quarterly on days {{days}} at {{hour}}:{{minutes}}":"","recommended":"추천된","Refresh":"새로고침","Regular text":"일반 텍스트","Remove":"제거","Remove badge button":"배지 버튼 제거","Remove link":"링크 제거","Reset to default":"기본설정으로 복귀","Reset to initial value":"초기 값으로 재설정","Reset zoom":"줌 재설정","Retry":"재시도","Saturday":"토요일","Save":"저장","Search":"검색","Search input":"검색 입력","Section has errors":"섹션에 오류가 있습니다","Select":"선택","Select {{val}}":"{{val}} 선택","Select all rows":"모든 행 선택","Select row {{index}}":"{{index}}행 선택","September":"9월","Settings":"설정","Settings search":"설정 검색","Show message":"메시지 표시","Show password":"비밀번호 표시","Sidebar":"사이드바","Sidebar modal":"사이드바 모달","Simple schedule":"간단한 일정","Skip tour":"가이드 건너뛰기","Slider handle":"슬라이더 핸들","Something went wrong processing response from the model. Try reloading the page.":"모델의 응답을 처리하는 데 문제가 발생했습니다. 페이지를 새로 고쳐보십시오.","Something went wrong, try again":"문제가 발생했습니다. 다시 시도하십시오.","Sort ascending":"오름차순 정렬","Sort column":"열 정렬","Sort descending":"내림차순 정렬","Sortable.":"","Square":"정사각형","Start date":"시작일","Start typing to see a list of users":"사용자 목록을 보려면 입력을 시작하십시오.","Stay with advanced scheduler":"고급 스케줄러 계속 유지","Submit":"제출","suggested":"제안됨","Sunday":"일요일","Superscript":"위 첨자","Switch to simple scheduler":"단순 스케줄러로 전환","Switching to the simple scheduler form will clear any schedule you set so far.":"간단한 스케줄러 형태로 전환하면 지금까지 설정된 모든 일정이 삭제됩니다.","Switching to the simple scheduler will clear any schedule you\'ve set so far":"간단한 스케줄러 형태로 전환하면 지금까지 설정한 모든 일정이 삭제됩니다","Table row actions dropdown":"표 행 작업 드롭다운","Text merge view - read only":"텍스트 병합 보기 - 읽기 전용","Text URL":"텍스트 URL","The file type is not allowed":"허용되지 않는 파일 유형입니다","Thursday":"목요일","Time":"시간","Toggle":"토글","Trigger another item":"다른 항목 트리거","Tuesday":"화요일","Underline":"밑줄","Unlock from sidebar":"사이드바에서 잠금 해제","Unpin column":"열 고정 해제","Unpinned columns":"고정되지 않은 열","Update window":"창 업데이트","Updating list results...":"목록 결과 업데이트 중…","Updating text":"텍스트 업데이트 중","Upload failed":"업로드에 실패했습니다","Uploading file...":"파일 업로딩 중…","Uploading...":"업로드 중…","URL is required":"URL이 필요합니다.","Use advanced scheduler":"고급 스케줄러 사용","Use arrow keys to reorder columns. Use Tab key to navigate to inner controls":"화살표 키를 사용하여 열을 재정렬합니다. 탭 키를 사용하여 내부 컨트롤로 이동","Use simple scheduler":"단순 스케줄러 사용","Use simple scheduler?":"단순 스케줄러를 사용하시겠습니까?","UTC":"UTC","Validated":"검정 완료","Value input":"값 입력","Value must be a comma-separated list of numbers between {{min}} and {{max}}":"값은 쉼표로 구분된 {{min}}에서 {{max}} 사이의 숫자 목록이어야 합니다","Value must be a comma-separated list of numbers between {{min}} and {{max}} or * for all":"값은 쉼표로 구분된 {{min}}에서 {{max}} 사이의 숫자 목록이거나 모두 *여야 합니다","Value must be a number between 0 and 59":"값은 0에서 59 사이의 숫자여야 합니다","Value must have both hours and minutes specified":"값에는 시간과 분이 모두 지정되어야 합니다","Vertical line":"수직선","We encountered an unexpected error and cannot proceed. Try again or contact Support for assistance.":"DataRobot에 예상치 못한 오류가 발생하여 계속 계속 진행할 수 없습니다. 다시 시도하거나 지원팀에 도움을 요청하십시오.","Wednesday":"수요일","Weekly on {{day}} at {{hour}}:{{minutes}}":"","Weekly on multiple days at {{hour}}:{{minutes}}":"","Yearly on {{month}} {{day}} at {{hour}}:{{minutes}}":"","Yearly on multiple dates at {{hour}}:{{minutes}}":"","You can only drop one file.":"하나의 파일만 삭제할 수 있습니다.","You need to set {{fieldName}}":"","Zoom in":"확대","Zoom out":"축소"}')}}]);
1
+ "use strict";(this.webpackChunkDataRobot=this.webpackChunkDataRobot||[]).push([[139],{9139:e=>{e.exports=JSON.parse('{"At least one column must stay selected":"하나 이상의 열은 선택된 상태로 유지되어야 합니다.","Hour":"시간","Minute":"분","Month":"월","Sortable.":"정렬 가능.","(UTC)":"(UTC)","{{count}} characters remaining_other":"{{count}}자 남음","{{count}} item found_other":"{{count}}개 항목 찾음","{{count}}+ item found_other":"{{count}}개 이상의 항목 찾음","{{fieldName}} cannot be after {{date}}.":"{{fieldName}}은(는) {{date}} 뒤에 올 수 없습니다.","{{fieldName}} cannot be before {{date}}.":"{{fieldName}}은(는) {{date}} 앞에 올 수 없습니다.","{{itemsLength}} item selected":"{{itemsLength}}개 항목 선택함","{{itemsLength}} items selected":"{{itemsLength}}개 항목 선택함","{{pages}} per page":"페이지당 {{pages}}개","{{start}}-{{end}} of {{total}} items":"{{total}}개 항목 중 {{start}}–{{end}}","{{start}}-{{endLimited}} of {{totalLimit}}+ items":"{{totalLimit}}개+ 항목 중 {{start}}–{{endLimited}}","{{startField}} and {{endField}} cannot be the same":"{{startField}}과(와) {{endField}}은(는) 같을 수 없습니다","{{startOfPage}} of {{total}}":"{{total}}개 중 {{startOfPage}}","{{startOfPage}} of {{totalLimit}}":"{{totalLimit}}개 중 {{startOfPage}}","{{startOfPage}}-{{endOfPage}} of {{total}}":"{{total}}개 중 {{startOfPage}}–{{endOfPage}}","{{startOfPage}}-{{endOfPage}} of {{totalLimit}}+":"{{totalLimit}}개+ 중 {{startOfPage}}–{{endOfPage}}","0-0 of 0":"0 중에 0-0","Above field(s) should not be empty":"위 필드를 입력해야 합니다","Accepted formats: {{formats}}":"수락되는 형식: {{formats}}","Accepted formats: {{supportedFileTypes}}":"지원 가능 파일 종류 {{supportedFileTypes}}","Accepts values between 0 (Sunday) and 6 (Saturday).":"0(일요일)과 6(토요일) 사이의 값을 허용합니다.","Accepts values between 1 (January) and 12 (December).":"1(1월)과 12(12월) 사이의 값을 허용합니다.","Accepts values from 1 to 31. Invalid values for a given month will be ignored.":"1부터 31까지의 값을 허용합니다. 지정된 월에 대해 잘못된 값은 무시됩니다.","Add item":"항목 추가","Addition actions":"추가 작업","Advanced schedule":"고급 스케줄","Advanced tour anchor button":"고급 투어 앵커 버튼","and {{items}} more...":"기타 {{items}}개 등등...","Apply":"적용","Apply filters":"필터 적용","April":"4월","August":"8월","avatar image":"아바타 이미지","Bold":"굵은 글씨","Browse":"찾아보기","Bulleted list":"불릿 기호가 붙은 목록","Cancel":"취소","Chat message":"채팅 메시지","Choose file":"파일 선택","Circle":"원","Clear":"지우기","Clear all":"모두 지우기","Clear filters":"필터 지우기","Clear formatting":"형식 지우기","Clear Input":"입력 삭제","Clear selection":"선택 지우기","click to close":"클릭하여 닫기","Click to edit text":"텍스트를 편집하려면 클릭하십시오","Click to expand the row":"행을 확장하려면 클릭하십시오","click to open":"클릭하여 열기","Click to open row actions dropdown":"행 작업 드롭다운을 열려면 클릭하십시오","Click to select all rows in the table":"테이블의 모든 행을 선택하려면 클릭하십시오","Click to select the row":"행을 선택하려면 클릭하십시오","Close":"닫기","close tab":"탭 닫기","Code":"코드","Code editor":"코드 편집기","Collapse":"숨기기","Column header actions dropdown":"열 헤더 작업 드롭다운","Column Header: {{headerLabel}}. To focus on the header column actions press Tab key":"열 헤더: {{headerLabel}}. 헤더 열 작업에 초점을 맞추려면 탭 키를 누르십시오","Columns management":"열 관리","Comparison of two text view":"두 텍스트 보기 비교","Complex schedule":"복잡한 스케쥴","Consider adjusting your filters or search":"필터 또는 검색 조정 고려","Continue setup":"설정 계속","Copied to clipboard":"클립보드에 복사됨","Copy text":"텍스트 복사","Copy to clipboard":"클립보드에 복사","create tab":"탭 생성","Cross":"십자","Daily at {{hour}}:{{minutes}}":"매일 {{hour}}:{{minutes}}","Day of month":"월의 일","Day of week":"주의 일","Days":"일","December":"12월","Delete":"삭제","Delete Editor Content":"편집기 콘텐츠 삭제","Delete filter item":"필터 항목 삭제","Disabled row":"비활성화된 행","Disc":"디스크","Dismiss":"해제","Dock to sidebar":"사이드바에 도킹","Double-check this value":"이 값을 다시 확인하십시오.","Download information related to this visualization":"이 시각화와 관련된 정보 다운로드","Drag and drop a file here or browse":"파일을 여기로 끌어다 놓거나 탐색합니다.","Drag and drop a new dataset or select an option from the right":"새 데이터셋을 끌어다 놓거나 오른쪽에서 옵션을 선택합니다.","drag to resize":"드래그하여 크기 조정","Draggable handle: use arrows to change position of the panel":"드래그 가능한 핸들: 화살표를 사용하여 패널 위치 변경","Drop file(s) here to upload or":"업로드하려면 여기에 파일을 끌어 놓거나,","Dropdown content":"드롭다운 콘텐츠","Duplicated keys ({{name}}) are not allowed.":"중복 키({{name}})는 허용되지 않습니다.","Edit":"편집","Empty state":"빈 상태","End date":"종료 날짜","Enter a valid URL":"유효한 URL 입력","Enter item value":"항목 값 입력","Every day":"매일","Every hour":"매시간","Every month":"매달","Every quarter":"매사분기","Every week":"매주","Every year":"매년","Exit without saving":"저장하지 않고 종료","Expand":"확장하다","Expand Row":"행 확장","Expected a datetime":"예상 일자 시간","Export":"내보내기","Extra information in a tooltip":"툴팁에 표시되는 추가 정보","failed":"실패함","Failed to upload the file":"파일 업로드에 실패했습니다","February":"2월","File is required.":"파일이 필요합니다.","Filter By":"필터링 기준","Filters":"필터","Filters applied:":"적용된 필터:","Floating panel":"플로팅 패널","Frequency":"빈도","Friday":"금요일","Full-screen drawer":"전체 화면 서랍","Heading large":"라지로 이동","Heading medium":"미디엄으로 이동","Heading small":"스몰로 이동","Hide message":"메시지 숨기기","Hide password":"암호 숨기기","Horizontal line":"수평선","Hourly at {{minutes}} minute past the hour":"매시간 정각에서 {{minutes}}분 경과 후","Hourly at {{minutes}} minutes past the hour":"매시간 정각에서 {{minutes}}분 경과 후","Import from":"다음에서 가져오기","info":"정보","Info-icon with extra information in a tooltip":"추가 정보를 포함한 정보 아이콘 (툴팁 제공)","Initializing Data":"데이터 초기화 중","Invalid field":"잘못된 필드","Invalid file type, ":"잘못된 파일 유형, ","Invalid file, ":"유효하지 않은 파일, ","Italic":"기울임꼴","January":"1월","July":"7월","June":"6월","Key input":"키 입력","Link":"링크","loading":"로딩 중","Loading":"로드 중","Loading...":"로드 중...","Local File":"로컬 파일","March":"3월","Max number of key-value pairs reached":"쌍으로 도달하는 키값의 최대 수","May":"5월","Menu":"메뉴","Minimize":"사이드바를","Minutes past the hour":"해당 시간 후 분","Modal":"모달","Monday":"월요일","Monthly on day {{day}} at {{hour}}:{{minutes}}":"매월 {{day}}일 {{hour}}:{{minutes}}","Monthly on days {{days}} at {{hour}}:{{minutes}}":"매월 {{days}}일 {{hour}}:{{minutes}}","Months":"개월","More":"더 많이","Must follow {{dateTimeFormat}} format":"{{dateTimeFormat}} 형식을 따라야 합니다","N/A":"해당 없음","New chat message":"새 채팅 메시지","next":"다음","Next":"다음","Next page":"다음 페이지","Next tour page":"다음 투어 페이지","No available page sizes":"사용 가능한 페이지 크기 없음","No items found":"항목 없음","No items to list":"나열할 항목 없음","No Records":"기록 없음","No records found":"기록을 찾을 수 없음","No search results found.":"검색 결과가 없음.","November":"11월","Numbered list":"번호가 매겨진 목록","October":"10월","OK":"확인","Optional":"선택 사항","Options":"옵션","Page {{number}}":"페이지 {{number}}","Pagination":"페이지 매김","Pin column":"열 고정","Pinned columns":"고정된 열","Pinned columns will take too much space with current column pinned":"고정된 열이 현재 열이 고정된 상태에서 너무 많은 공간을 차지합니다.","previous":"이전","Previous":"이전","Previous page":"이전 페이지","Previous tour page":"이전 투어 페이지","Quarterly on day {{day}} at {{hour}}:{{minutes}}":"매분기 {{day}}일 {{hour}}:{{minutes}}","Quarterly on days {{days}} at {{hour}}:{{minutes}}":"매분기 {{days}}일 {{hour}}:{{minutes}}","recommended":"추천된","Refresh":"새로고침","Regular text":"일반 텍스트","Remove":"제거","Remove badge button":"배지 버튼 제거","Remove link":"링크 제거","Reset to default":"기본설정으로 복귀","Reset to initial value":"초기 값으로 재설정","Reset zoom":"줌 재설정","Retry":"재시도","Saturday":"토요일","Save":"저장","Search":"검색","Search input":"검색 입력","Section has errors":"섹션에 오류가 있습니다","Select":"선택","Select {{val}}":"{{val}} 선택","Select all rows":"모든 행 선택","Select row {{index}}":"{{index}}행 선택","September":"9월","Settings":"설정","Settings search":"설정 검색","Show message":"메시지 표시","Show password":"비밀번호 표시","Sidebar":"사이드바","Sidebar modal":"사이드바 모달","Simple schedule":"간단한 일정","Skip tour":"가이드 건너뛰기","Slider handle":"슬라이더 핸들","Something went wrong processing response from the model. Try reloading the page.":"모델의 응답을 처리하는 데 문제가 발생했습니다. 페이지를 새로 고쳐보십시오.","Something went wrong, try again":"문제가 발생했습니다. 다시 시도하십시오.","Sort ascending":"오름차순 정렬","Sort column":"열 정렬","Sort descending":"내림차순 정렬","Square":"정사각형","Start date":"시작일","Start typing to see a list of users":"사용자 목록을 보려면 입력을 시작하십시오.","Stay with advanced scheduler":"고급 스케줄러 계속 유지","Submit":"제출","suggested":"제안됨","Sunday":"일요일","Superscript":"위 첨자","Switch to simple scheduler":"단순 스케줄러로 전환","Switching to the simple scheduler form will clear any schedule you set so far.":"간단한 스케줄러 형태로 전환하면 지금까지 설정된 모든 일정이 삭제됩니다.","Switching to the simple scheduler will clear any schedule you\'ve set so far":"간단한 스케줄러 형태로 전환하면 지금까지 설정한 모든 일정이 삭제됩니다","Table row actions dropdown":"표 행 작업 드롭다운","Text merge view - read only":"텍스트 병합 보기 - 읽기 전용","Text URL":"텍스트 URL","The file type is not allowed":"허용되지 않는 파일 유형입니다","Thursday":"목요일","Time":"시간","Toggle":"토글","Trigger another item":"다른 항목 트리거","Tuesday":"화요일","Underline":"밑줄","Unlock from sidebar":"사이드바에서 잠금 해제","Unpin column":"열 고정 해제","Unpinned columns":"고정되지 않은 열","Update window":"창 업데이트","Updating list results...":"목록 결과 업데이트 중...","Updating text":"텍스트 업데이트 중","Upload failed":"업로드에 실패했습니다","Uploading file...":"파일 업로딩 중...","Uploading...":"업로드 중...","URL is required":"URL이 필요합니다.","Use advanced scheduler":"고급 스케줄러 사용","Use arrow keys to reorder columns. Use Tab key to navigate to inner controls":"화살표 키를 사용하여 열을 재정렬합니다. 탭 키를 사용하여 내부 컨트롤로 이동","Use simple scheduler":"단순 스케줄러 사용","Use simple scheduler?":"단순 스케줄러를 사용하시겠습니까?","UTC":"UTC","Validated":"검정 완료","Value input":"값 입력","Value must be a comma-separated list of numbers between {{min}} and {{max}}":"값은 쉼표로 구분된 {{min}}에서 {{max}} 사이의 숫자 목록이어야 합니다","Value must be a comma-separated list of numbers between {{min}} and {{max}} or * for all":"값은 쉼표로 구분된 {{min}}에서 {{max}} 사이의 숫자 목록이거나 모두 *여야 합니다","Value must be a number between 0 and 59":"값은 0에서 59 사이의 숫자여야 합니다","Value must have both hours and minutes specified":"값에는 시간과 분이 모두 지정되어야 합니다","Vertical line":"수직선","We encountered an unexpected error and cannot proceed. Try again or contact Support for assistance.":"DataRobot에 예상치 못한 오류가 발생하여 계속 계속 진행할 수 없습니다. 다시 시도하거나 지원팀에 도움을 요청하십시오.","Wednesday":"수요일","Weekly on {{day}} at {{hour}}:{{minutes}}":"매주 {{day}}, {{hour}}:{{minutes}}","Weekly on multiple days at {{hour}}:{{minutes}}":"매주 여러 요일 {{hour}}:{{minutes}}","Yearly on {{month}} {{day}} at {{hour}}:{{minutes}}":"매년 {{month}} {{day}}일, {{hour}}:{{minutes}}","Yearly on multiple dates at {{hour}}:{{minutes}}":"매년 여러 날짜, {{hour}}:{{minutes}}","You can only drop one file.":"하나의 파일만 삭제할 수 있습니다.","You need to set {{fieldName}}":"{{fieldName}}을(를) 설정해야 합니다","Zoom in":"확대","Zoom out":"축소"}')}}]);
package/js/238/238.min.js CHANGED
@@ -1 +1 @@
1
- "use strict";(this.webpackChunkDataRobot=this.webpackChunkDataRobot||[]).push([[238],{4238:e=>{e.exports=JSON.parse('{"(UTC)":"","{{count}} characters remaining_one":"","{{count}} characters remaining_many":"","{{count}} characters remaining_other":"{{count}} caracteres restantes","{{count}} item found_one":"","{{count}} item found_many":"","{{count}} item found_other":"{{count}} elementos encontrados","{{count}}+ item found_one":"","{{count}}+ item found_many":"","{{count}}+ item found_other":"{{count}}+ elementos encontrados","{{fieldName}} cannot be after {{date}}.":"","{{fieldName}} cannot be before {{date}}.":"","{{itemsLength}} item selected":"","{{itemsLength}} items selected":"","{{pages}} per page":"{{pages}} por página","{{start}}-{{end}} of {{total}} items":"{{start}}-{{end}} de {{total}} elementos","{{start}}-{{endLimited}} of {{totalLimit}}+ items":"{{start}}-{{endLimited}} de {{totalLimit}}+ elementos","{{startField}} and {{endField}} cannot be the same":"","{{startOfPage}} of {{total}}":"{{startOfPage}} de {{total}}","{{startOfPage}} of {{totalLimit}}":"{{startOfPage}} de {{totalLimit}}","{{startOfPage}}-{{endOfPage}} of {{total}}":"{{startOfPage}}-{{endOfPage}} de {{total}}","{{startOfPage}}-{{endOfPage}} of {{totalLimit}}+":"{{startOfPage}}-{{endOfPage}} de {{totalLimit}}+","0-0 of 0":"0-0 de 0","Above field(s) should not be empty":"Los campos anteriores no deben estar vacíos","Accepted formats: {{formats}}":"Formatos aceptados: {{formats}}","Accepted formats: {{supportedFileTypes}}":"Formatos aceptados: {{supportedFileTypes}}","Accepts values between 0 (Sunday) and 6 (Saturday).":"Acepta valores entre 0 (domingo) y 6 (sábado).","Accepts values between 1 (January) and 12 (December).":"Acepta valores entre 1 (enero) y 12 (diciembre).","Accepts values from 1 to 31. Invalid values for a given month will be ignored.":"Acepta valores del 1 al 31. Se ignorarán valores no válidos para meses determinados.","Add item":"Agregar elemento","Addition actions":"Acciones adicionales","Advanced schedule":"Programación avanzada","Advanced tour anchor button":"Botón de anclaje de recorrido avanzado","and {{items}} more...":"y {{items}} más…","Apply":"Aplicar","Apply filters":"Aplicar filtros","April":"Abril","August":"Agosto","avatar image":"imagen de avatar","Bold":"Bold","Browse":"Buscar","Bulleted list":"Lista con viñetas","Cancel":"Cancelar","Chat message":"Mensaje de chat","Choose file":"Elegir archivo","Circle":"Círculo","Clear":"Limpiar","Clear all":"Limpiar todo","Clear filters":"Limpiar filtros","Clear formatting":"Limpiar formato","Clear Input":"Limpiar entrada","Clear selection":"Limpiar selección","click to close":"haga clic para cerrar","Click to edit text":"Haga clic para editar el texto","Click to expand the row":"Haga clic para expandir la fila","click to open":"haga clic para abrir","Click to open row actions dropdown":"Haga clic para abrir el menú desplegable de acciones de fila","Click to select all rows in the table":"Haga clic para seleccionar todas las filas de la tabla","Click to select the row":"Haga clic para seleccionar la fila","Close":"Cerrar","close tab":"cerrar pestaña","Code":"Código","Code editor":"Editor de código","Collapse":"Colapsar","Column header actions dropdown":"Menú desplegable de acciones de encabezado de columna","Column Header: {{headerLabel}}. To focus on the header column actions press Tab key":"Encabezado de columna: {{headerLabel}}. Para enfocarse en las acciones del encabezado, presione la tecla Tab","Columns management":"Gestión de columnas","Comparison of two text view":"Comparación de dos vistas de texto","Complex schedule":"","Consider adjusting your filters or search":"Considere ajustar sus filtros o buscar","Continue setup":"Continuar la configuración","Copied to clipboard":"Copiado al portapapeles","Copy text":"Copiar texto","Copy to clipboard":"Copiar al portapapeles","create tab":"crear pestaña","Cross":"Cruz","Daily at {{hour}}:{{minutes}}":"","Day of month":"Día del mes","Day of week":"Día de la semana","Days":"Días","December":"Diciembre","Delete":"Eliminar","Delete Editor Content":"Eliminar contenido del editor","Delete filter item":"Eliminar elemento de filtro","Disabled row":"Fila deshabilitada","Disc":"Disco","Dismiss":"Ignorar","Dock to sidebar":"Acoplar a la barra lateral","Double-check this value":"Vuelva a verificar este valor","Download information related to this visualization":"Descargar información relacionada con esta visualización","Drag and drop a file here or browse":"Arrastrar y soltar un archivo aquí o buscar","Drag and drop a new dataset or select an option from the right":"Arrastrar y soltar un nuevo conjunto de datos o seleccionar una opción de la derecha","drag to resize":"arrastrar para cambiar el tamaño","Draggable handle: use arrows to change position of the panel":"Mango arrastrable: use las flechas para cambiar la posición del panel","Drop file(s) here to upload or":"Suelte los archivos aquí para cargar o","Dropdown content":"Contenido del menú desplegable","Duplicated keys ({{name}}) are not allowed.":"No se permiten claves duplicadas ({{name}}).","Edit":"Editar","Empty state":"Estado vacío","End date":"Fecha de finalización","Enter a valid URL":"Ingresar una URL válida","Enter item value":"Ingrese el valor del artículo","Every day":"Cada día","Every hour":"Cada hora","Every month":"Cada mes","Every quarter":"Cada trimestre","Every week":"Cada semana","Every year":"Cada año","Exit without saving":"Salir sin guardar","Expand":"Expandir","Expand Row":"Expandir fila","Expected a datetime":"","Export":"Exportar","Extra information in a tooltip":"Información adicional en una descripción emergente","failed":"falló","Failed to upload the file":"Se produjo un error al cargar el archivo","February":"Febrero","File is required.":"El archivo es obligatorio.","Filter By":"Filtrar por","Filters":"Filtros","Filters applied:":"Filtros aplicados:","Floating panel":"Panel flotante","Frequency":"Frecuencia","Friday":"Viernes","Full-screen drawer":"Panel en pantalla completa","Heading large":"Encabezado grande","Heading medium":"Medio de encabezado","Heading small":"Encabezado pequeño","Hide message":"Ocultar mensaje","Hide password":"Oculta contraseña","Horizontal line":"Línea horizontal","Hour":"Hora","Hourly at {{minutes}} minute past the hour":"","Hourly at {{minutes}} minutes past the hour":"","Import from":"Importar desde ","info":"info","Info-icon with extra information in a tooltip":"Ícono de información con información adicional en una descripción emergente","Initializing Data":"Inicializando datos","Invalid field":"Archivo inválido","Invalid file type, ":"Tipo de archivo no válido, ","Invalid file, ":"Archivo inválido, ","Italic":"Itálica","January":"Enero","July":"Julio","June":"Junio","Key input":"Entrada clave","Link":"Enlace","loading":"Cargando","Loading":"Cargando","Loading...":"Cargando…","Local File":"Archivo local","March":"Marzo","Max number of key-value pairs reached":"Se alcanzó el número máximo de pares valor clave","May":"Mayo","Menu":"Menú","Minimize":"Minimizar","Minute":"Minuto","Minutes past the hour":"Minutos después de la última hora","Modal":"Modal","Monday":"Lunes","Month":"Mes","Monthly on day {{day}} at {{hour}}:{{minutes}}":"","Monthly on days {{days}} at {{hour}}:{{minutes}}":"","Months":"Meses","More":"Más","Must follow {{dateTimeFormat}} format":"","N/A":"N/C","New chat message":"Nuevo mensaje de chat","next":"siguiente","Next":"Siguiente","Next page":"Página siguiente","Next tour page":"Página del próximo recorrido","No available page sizes":"No hay tamaños de página disponibles","No items found":"No se encontraron elementos","No items to list":"Sin elementos para enumerar","No Records":"Sin registros","No records found":"No se encontraron registros","No search results found.":"No se encontraron resultados de búsqueda.","November":"Noviembre","Numbered list":"Lista numerada","October":"Octubre","OK":"OK","Optional":"Opcional","Options":"Opciones","Page {{number}}":"Página {{number}}","Pagination":"Paginación","Pin column":"Anclar columna","Pinned columns":"Columnas fijas","Pinned columns will take too much space with current column pinned":"Las columnas ancladas ocuparán demasiado espacio con la columna actual anclada","previous":"anterior","Previous":"Anterior","Previous page":"Página anterior","Previous tour page":"Página de recorrido anterior","Quarterly on day {{day}} at {{hour}}:{{minutes}}":"","Quarterly on days {{days}} at {{hour}}:{{minutes}}":"","recommended":"recomendado","Refresh":"Actualizar","Regular text":"Texto regular","Remove":"Eliminar","Remove badge button":"Eliminar botón de insignia","Remove link":"Eliminar enlace","Reset to default":"Restablecer a predeterminados","Reset to initial value":"Restablecer al valor inicial","Reset zoom":"Restablecer zoom","Retry":"Procesar de nuevo","Saturday":"Sábado","Save":"Guardar","Search":"Buscar","Search input":"Entrada de búsqueda","Section has errors":"La sección contiene errores.","Select":"Seleccionar","Select {{val}}":"Seleccionar {{val}}","Select all rows":"Seleccionar todas las filas","Select row {{index}}":"Seleccionar fila {{index}}","September":"Septiembre","Settings":"Configuración","Settings search":"Búsqueda de configuración","Show message":"Mostrar mensaje","Show password":"Mostrar contraseña","Sidebar":"Barra lateral","Sidebar modal":"Modal de barra lateral","Simple schedule":"Horario simple","Skip tour":"Omitir recorrido","Slider handle":"Mango de control deslizante","Something went wrong processing response from the model. Try reloading the page.":"Algo salió mal al procesar la respuesta del modelo. Intente volver a cargar la página.","Something went wrong, try again":"Algo salió mal, intente nuevamente después","Sort ascending":"Clasificación ascendente","Sort column":"Ordenar columna","Sort descending":"Clasificación descendente","Sortable.":"","Square":"Cuadrado","Start date":"Fecha de inicio","Start typing to see a list of users":"Comience a escribir para ver una lista de usuarios","Stay with advanced scheduler":"Permanecer con un programador avanzado","Submit":"Enviar","suggested":"sugerido","Sunday":"Domingo","Superscript":"Superíndice","Switch to simple scheduler":"Cambiar a un programador simple","Switching to the simple scheduler form will clear any schedule you set so far.":"Cambiar al formulario del programador simple borrará cualquier horario que haya establecido hasta el momento.","Switching to the simple scheduler will clear any schedule you\'ve set so far":"Cambiar al programador simple borrará cualquier horario que haya establecido hasta el momento.","Table row actions dropdown":"Menú desplegable de acciones de fila de tabla","Text merge view - read only":"Vista de combinación de texto - solo lectura","Text URL":"URL de texto","The file type is not allowed":"El tipo de archivo no está permitido","Thursday":"Jueves","Time":"Tiempo","Toggle":"Alternar","Trigger another item":"Activar otro elemento","Tuesday":"Martes","Underline":"Subrayar","Unlock from sidebar":"Desbloquear de la barra lateral","Unpin column":"Desanclar columna","Unpinned columns":"Columnas no fijadas","Update window":"Actualizar ventana","Updating list results...":"Actualizando los resultados de la lista…","Updating text":"Actualizando texto","Upload failed":"Falló la carga","Uploading file...":"Cargando archivo…","Uploading...":"Cargando…","URL is required":"La URL es obligatoria","Use advanced scheduler":"Usar programador avanzado","Use arrow keys to reorder columns. Use Tab key to navigate to inner controls":"Use las teclas de flecha para reordenar columnas. Use la tecla Tab para navegar a los controles internos","Use simple scheduler":"Usar un programador simple","Use simple scheduler?":"¿Usar un programador simple?","UTC":"UTC","Validated":"Validado","Value input":"Entrada de valor","Value must be a comma-separated list of numbers between {{min}} and {{max}}":"El valor debe ser una lista de números separados por comas entre {{min}} y {{max}}","Value must be a comma-separated list of numbers between {{min}} and {{max}} or * for all":"El valor debe ser una lista de números separados por comas entre {{min}} y {{max}} o * para todos","Value must be a number between 0 and 59":"El valor debe ser un número entre 0 y 59","Value must have both hours and minutes specified":"El valor debe tener especificadas tanto las horas como los minutos","Vertical line":"Línea vertical","We encountered an unexpected error and cannot proceed. Try again or contact Support for assistance.":"DataRobot encontró un error inesperado y no puede continuar. Intente nuevamente o contacte a Soporte para obtener asistencia.","Wednesday":"Miércoles","Weekly on {{day}} at {{hour}}:{{minutes}}":"","Weekly on multiple days at {{hour}}:{{minutes}}":"","Yearly on {{month}} {{day}} at {{hour}}:{{minutes}}":"","Yearly on multiple dates at {{hour}}:{{minutes}}":"","You can only drop one file.":"Solo puede soltar un archivo.","You need to set {{fieldName}}":"","Zoom in":"Aumentar zoom","Zoom out":"Disminuir zoom"}')}}]);
1
+ "use strict";(this.webpackChunkDataRobot=this.webpackChunkDataRobot||[]).push([[238],{4238:e=>{e.exports=JSON.parse('{"At least one column must stay selected":"Al menos una columna debe permanecer seleccionada","Hour":"Hora","Minute":"Minuto","Month":"Mes","Sortable.":"Ordenable.","(UTC)":"(UTC)","{{count}} characters remaining_other":"{{count}} caracteres restantes","{{count}} item found_other":"{{count}} elementos encontrados","{{count}}+ item found_other":"{{count}}+ elementos encontrados","{{fieldName}} cannot be after {{date}}.":"{{fieldName}} no puede ser posterior a {{date}}.","{{fieldName}} cannot be before {{date}}.":"{{fieldName}} no puede ser anterior a {{date}}.","{{itemsLength}} item selected":"{{itemsLength}} elemento seleccionado","{{itemsLength}} items selected":"{{itemsLength}} elementos seleccionados","{{pages}} per page":"{{pages}} por página","{{start}}-{{end}} of {{total}} items":"{{start}}-{{end}} de {{total}} elementos","{{start}}-{{endLimited}} of {{totalLimit}}+ items":"{{start}}-{{endLimited}} de {{totalLimit}}+ elementos","{{startField}} and {{endField}} cannot be the same":"{{startField}} y {{endField}} no pueden ser iguales","{{startOfPage}} of {{total}}":"{{startOfPage}} de {{total}}","{{startOfPage}} of {{totalLimit}}":"{{startOfPage}} de {{totalLimit}}","{{startOfPage}}-{{endOfPage}} of {{total}}":"{{startOfPage}}-{{endOfPage}} de {{total}}","{{startOfPage}}-{{endOfPage}} of {{totalLimit}}+":"{{startOfPage}}-{{endOfPage}} de {{totalLimit}}+","0-0 of 0":"0-0 de 0","Above field(s) should not be empty":"Los campos anteriores no deben estar vacíos","Accepted formats: {{formats}}":"Formatos aceptados: {{formats}}","Accepted formats: {{supportedFileTypes}}":"Formatos aceptados: {{supportedFileTypes}}","Accepts values between 0 (Sunday) and 6 (Saturday).":"Acepta valores entre 0 (domingo) y 6 (sábado).","Accepts values between 1 (January) and 12 (December).":"Acepta valores entre 1 (enero) y 12 (diciembre).","Accepts values from 1 to 31. Invalid values for a given month will be ignored.":"Acepta valores del 1 al 31. Se ignorarán valores no válidos para meses determinados.","Add item":"Agregar elemento","Addition actions":"Acciones adicionales","Advanced schedule":"Programación avanzada","Advanced tour anchor button":"Botón de anclaje de recorrido avanzado","and {{items}} more...":"y {{items}} más...","Apply":"Aplicar","Apply filters":"Aplicar filtros","April":"Abril","August":"Agosto","avatar image":"imagen de avatar","Bold":"Bold","Browse":"Buscar","Bulleted list":"Lista con viñetas","Cancel":"Cancelar","Chat message":"Mensaje de chat","Choose file":"Elegir archivo","Circle":"Círculo","Clear":"Limpiar","Clear all":"Limpiar todo","Clear filters":"Limpiar filtros","Clear formatting":"Limpiar formato","Clear Input":"Limpiar entrada","Clear selection":"Limpiar selección","click to close":"haga clic para cerrar","Click to edit text":"Haga clic para editar el texto","Click to expand the row":"Haga clic para expandir la fila","click to open":"haga clic para abrir","Click to open row actions dropdown":"Haga clic para abrir el menú desplegable de acciones de fila","Click to select all rows in the table":"Haga clic para seleccionar todas las filas de la tabla","Click to select the row":"Haga clic para seleccionar la fila","Close":"Cerrar","close tab":"cerrar pestaña","Code":"Código","Code editor":"Editor de código","Collapse":"Colapsar","Column header actions dropdown":"Menú desplegable de acciones de encabezado de columna","Column Header: {{headerLabel}}. To focus on the header column actions press Tab key":"Encabezado de columna: {{headerLabel}}. Para enfocarse en las acciones del encabezado, presione la tecla Tab","Columns management":"Gestión de columnas","Comparison of two text view":"Comparación de dos vistas de texto","Complex schedule":"Horario complejo","Consider adjusting your filters or search":"Considere ajustar sus filtros o buscar","Continue setup":"Continuar la configuración","Copied to clipboard":"Copiado al portapapeles","Copy text":"Copiar texto","Copy to clipboard":"Copiar al portapapeles","create tab":"crear pestaña","Cross":"Cruz","Daily at {{hour}}:{{minutes}}":"Diariamente a las {{hour}}:{{minutes}}","Day of month":"Día del mes","Day of week":"Día de la semana","Days":"Días","December":"Diciembre","Delete":"Eliminar","Delete Editor Content":"Eliminar contenido del editor","Delete filter item":"Eliminar elemento de filtro","Disabled row":"Fila deshabilitada","Disc":"Disco","Dismiss":"Ignorar","Dock to sidebar":"Acoplar a la barra lateral","Double-check this value":"Vuelva a verificar este valor","Download information related to this visualization":"Descargar información relacionada con esta visualización","Drag and drop a file here or browse":"Arrastrar y soltar un archivo aquí o buscar","Drag and drop a new dataset or select an option from the right":"Arrastrar y soltar un nuevo conjunto de datos o seleccionar una opción de la derecha","drag to resize":"arrastrar para cambiar el tamaño","Draggable handle: use arrows to change position of the panel":"Mango arrastrable: use las flechas para cambiar la posición del panel","Drop file(s) here to upload or":"Suelte los archivos aquí para cargar o","Dropdown content":"Contenido del menú desplegable","Duplicated keys ({{name}}) are not allowed.":"No se permiten claves duplicadas ({{name}}).","Edit":"Editar","Empty state":"Estado vacío","End date":"Fecha de finalización","Enter a valid URL":"Ingresar una URL válida","Enter item value":"Ingrese el valor del artículo","Every day":"Cada día","Every hour":"Cada hora","Every month":"Cada mes","Every quarter":"Cada trimestre","Every week":"Cada semana","Every year":"Cada año","Exit without saving":"Salir sin guardar","Expand":"Expandir","Expand Row":"Expandir fila","Expected a datetime":"Se esperaba una fecha y hora","Export":"Exportar","Extra information in a tooltip":"Información adicional en una descripción emergente","failed":"falló","Failed to upload the file":"Se produjo un error al cargar el archivo","February":"Febrero","File is required.":"El archivo es obligatorio.","Filter By":"Filtrar por","Filters":"Filtros","Filters applied:":"Filtros aplicados:","Floating panel":"Panel flotante","Frequency":"Frecuencia","Friday":"Viernes","Full-screen drawer":"Panel en pantalla completa","Heading large":"Encabezado grande","Heading medium":"Medio de encabezado","Heading small":"Encabezado pequeño","Hide message":"Ocultar mensaje","Hide password":"Oculta contraseña","Horizontal line":"Línea horizontal","Hourly at {{minutes}} minute past the hour":"Cada hora a {{minutes}} minuto después de la hora","Hourly at {{minutes}} minutes past the hour":"Cada hora a {{minutes}} minutos después de la hora","Import from":"Importar desde ","info":"info","Info-icon with extra information in a tooltip":"Ícono de información con información adicional en una descripción emergente","Initializing Data":"Inicializando datos","Invalid field":"Archivo inválido","Invalid file type, ":"Tipo de archivo no válido, ","Invalid file, ":"Archivo inválido, ","Italic":"Itálica","January":"Enero","July":"Julio","June":"Junio","Key input":"Entrada clave","Link":"Enlace","loading":"Cargando","Loading":"Cargando","Loading...":"Cargando...","Local File":"Archivo local","March":"Marzo","Max number of key-value pairs reached":"Se alcanzó el número máximo de pares valor clave","May":"Mayo","Menu":"Menú","Minimize":"Minimizar","Minutes past the hour":"Minutos después de la última hora","Modal":"Modal","Monday":"Lunes","Monthly on day {{day}} at {{hour}}:{{minutes}}":"Mensualmente el día {{day}} a las {{hour}}:{{minutes}}","Monthly on days {{days}} at {{hour}}:{{minutes}}":"Mensualmente los días {{days}} a las {{hour}}:{{minutes}}","Months":"Meses","More":"Más","Must follow {{dateTimeFormat}} format":"Debe seguir el formato {{dateTimeFormat}}","N/A":"N/C","New chat message":"Nuevo mensaje de chat","next":"siguiente","Next":"Siguiente","Next page":"Página siguiente","Next tour page":"Página del próximo recorrido","No available page sizes":"No hay tamaños de página disponibles","No items found":"No se encontraron elementos","No items to list":"Sin elementos para enumerar","No Records":"Sin registros","No records found":"No se encontraron registros","No search results found.":"No se encontraron resultados de búsqueda.","November":"Noviembre","Numbered list":"Lista numerada","October":"Octubre","OK":"OK","Optional":"Opcional","Options":"Opciones","Page {{number}}":"Página {{number}}","Pagination":"Paginación","Pin column":"Anclar columna","Pinned columns":"Columnas fijas","Pinned columns will take too much space with current column pinned":"Las columnas ancladas ocuparán demasiado espacio con la columna actual anclada","previous":"anterior","Previous":"Anterior","Previous page":"Página anterior","Previous tour page":"Página de recorrido anterior","Quarterly on day {{day}} at {{hour}}:{{minutes}}":"Trimestralmente el día {{day}} a las {{hour}}:{{minutes}}","Quarterly on days {{days}} at {{hour}}:{{minutes}}":"Trimestralmente los días {{days}} a las {{hour}}:{{minutes}}","recommended":"recomendado","Refresh":"Actualizar","Regular text":"Texto regular","Remove":"Eliminar","Remove badge button":"Eliminar botón de insignia","Remove link":"Eliminar enlace","Reset to default":"Restablecer a predeterminados","Reset to initial value":"Restablecer al valor inicial","Reset zoom":"Restablecer zoom","Retry":"Procesar de nuevo","Saturday":"Sábado","Save":"Guardar","Search":"Buscar","Search input":"Entrada de búsqueda","Section has errors":"La sección contiene errores.","Select":"Seleccionar","Select {{val}}":"Seleccionar {{val}}","Select all rows":"Seleccionar todas las filas","Select row {{index}}":"Seleccionar fila {{index}}","September":"Septiembre","Settings":"Configuración","Settings search":"Búsqueda de configuración","Show message":"Mostrar mensaje","Show password":"Mostrar contraseña","Sidebar":"Barra lateral","Sidebar modal":"Modal de barra lateral","Simple schedule":"Horario simple","Skip tour":"Omitir recorrido","Slider handle":"Mango de control deslizante","Something went wrong processing response from the model. Try reloading the page.":"Algo salió mal al procesar la respuesta del modelo. Intente volver a cargar la página.","Something went wrong, try again":"Algo salió mal, intente nuevamente después","Sort ascending":"Clasificación ascendente","Sort column":"Ordenar columna","Sort descending":"Clasificación descendente","Square":"Cuadrado","Start date":"Fecha de inicio","Start typing to see a list of users":"Comience a escribir para ver una lista de usuarios","Stay with advanced scheduler":"Permanecer con un programador avanzado","Submit":"Enviar","suggested":"sugerido","Sunday":"Domingo","Superscript":"Superíndice","Switch to simple scheduler":"Cambiar a un programador simple","Switching to the simple scheduler form will clear any schedule you set so far.":"Cambiar al formulario del programador simple borrará cualquier horario que haya establecido hasta el momento.","Switching to the simple scheduler will clear any schedule you\'ve set so far":"Cambiar al programador simple borrará cualquier horario que haya establecido hasta el momento.","Table row actions dropdown":"Menú desplegable de acciones de fila de tabla","Text merge view - read only":"Vista de combinación de texto - solo lectura","Text URL":"URL de texto","The file type is not allowed":"El tipo de archivo no está permitido","Thursday":"Jueves","Time":"Tiempo","Toggle":"Alternar","Trigger another item":"Activar otro elemento","Tuesday":"Martes","Underline":"Subrayar","Unlock from sidebar":"Desbloquear de la barra lateral","Unpin column":"Desanclar columna","Unpinned columns":"Columnas no fijadas","Update window":"Actualizar ventana","Updating list results...":"Actualizando los resultados de la lista...","Updating text":"Actualizando texto","Upload failed":"Falló la carga","Uploading file...":"Cargando archivo...","Uploading...":"Cargando...","URL is required":"La URL es obligatoria","Use advanced scheduler":"Usar programador avanzado","Use arrow keys to reorder columns. Use Tab key to navigate to inner controls":"Use las teclas de flecha para reordenar columnas. Use la tecla Tab para navegar a los controles internos","Use simple scheduler":"Usar un programador simple","Use simple scheduler?":"¿Usar un programador simple?","UTC":"UTC","Validated":"Validado","Value input":"Entrada de valor","Value must be a comma-separated list of numbers between {{min}} and {{max}}":"El valor debe ser una lista de números separados por comas entre {{min}} y {{max}}","Value must be a comma-separated list of numbers between {{min}} and {{max}} or * for all":"El valor debe ser una lista de números separados por comas entre {{min}} y {{max}} o * para todos","Value must be a number between 0 and 59":"El valor debe ser un número entre 0 y 59","Value must have both hours and minutes specified":"El valor debe tener especificadas tanto las horas como los minutos","Vertical line":"Línea vertical","We encountered an unexpected error and cannot proceed. Try again or contact Support for assistance.":"DataRobot encontró un error inesperado y no puede continuar. Intente nuevamente o contacte a Soporte para obtener asistencia.","Wednesday":"Miércoles","Weekly on {{day}} at {{hour}}:{{minutes}}":"Semanalmente el {{day}} a las {{hour}}:{{minutes}}","Weekly on multiple days at {{hour}}:{{minutes}}":"Semanalmente en varios días a las {{hour}}:{{minutes}}","Yearly on {{month}} {{day}} at {{hour}}:{{minutes}}":"Anualmente el {{month}} {{day}} a las {{hour}}:{{minutes}}","Yearly on multiple dates at {{hour}}:{{minutes}}":"Anualmente en varias fechas a las {{hour}}:{{minutes}}","You can only drop one file.":"Solo puede soltar un archivo.","You need to set {{fieldName}}":"Debe establecer {{fieldName}}","Zoom in":"Aumentar zoom","Zoom out":"Disminuir zoom"}')}}]);