@pega/cosmos-react-core 5.0.0-dev.9.0 → 5.0.0-dev.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/File/FileItem.d.ts +2 -2
- package/lib/components/File/FileItem.d.ts.map +1 -1
- package/lib/components/File/FileItem.js +41 -33
- package/lib/components/File/FileItem.js.map +1 -1
- package/lib/components/Tooltip/Tooltip.js +1 -1
- package/lib/components/Tooltip/Tooltip.js.map +1 -1
- package/lib/hooks/useI18n.d.ts +2 -0
- package/lib/hooks/useI18n.d.ts.map +1 -1
- package/lib/i18n/default.d.ts +2 -0
- package/lib/i18n/default.d.ts.map +1 -1
- package/lib/i18n/default.js +2 -0
- package/lib/i18n/default.js.map +1 -1
- package/lib/i18n/i18n.d.ts +2 -0
- package/lib/i18n/i18n.d.ts.map +1 -1
- package/lib/utils/cap.d.ts +1 -1
- package/lib/utils/cap.d.ts.map +1 -1
- package/lib/utils/cap.js +1 -1
- package/lib/utils/cap.js.map +1 -1
- package/package.json +2 -3
|
@@ -8,9 +8,9 @@ export interface FileItemProps extends BaseProps {
|
|
|
8
8
|
url: string;
|
|
9
9
|
/** A string to be used as an image src for a attachment thumbnail. Falls back to a provided icon or the default attachment icon. */
|
|
10
10
|
thumbnail?: FileVisualProps['thumbnail'];
|
|
11
|
-
/** When passed, it will make the
|
|
11
|
+
/** When passed, it will make the name region to perform open in new tab action. Passes file url as the parameter. */
|
|
12
12
|
onPreview?: (url: FileItemProps['url']) => void;
|
|
13
|
-
/** When passed, it will make the name region
|
|
13
|
+
/** When passed, it will make the name region to perform download action. Passes file url as the parameter. */
|
|
14
14
|
onDownload?: (url: FileItemProps['url']) => void;
|
|
15
15
|
/** Ref for the wrapping element. */
|
|
16
16
|
ref?: Ref<HTMLButtonElement>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileItem.d.ts","sourceRoot":"","sources":["../../../src/components/File/FileItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAmB,EAAE,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"FileItem.d.ts","sourceRoot":"","sources":["../../../src/components/File/FileItem.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAmB,EAAE,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAMtD,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAS3D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAEpD,MAAM,WAAW,aAAc,SAAQ,SAAS;IAC9C,wBAAwB;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,uBAAuB;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,oIAAoI;IACpI,SAAS,CAAC,EAAE,eAAe,CAAC,WAAW,CAAC,CAAC;IACzC,qHAAqH;IACrH,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,aAAa,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC;IAChD,8GAA8G;IAC9G,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,aAAa,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC;IACjD,oCAAoC;IACpC,GAAG,CAAC,EAAE,GAAG,CAAC,iBAAiB,CAAC,CAAC;CAC9B;AAqCD,QAAA,MAAM,QAAQ,EAAE,EAAE,CAAC,aAAa,GAAG,YAAY,CA0D7C,CAAC;AAEH,eAAe,QAAQ,CAAC"}
|
|
@@ -1,56 +1,64 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef,
|
|
2
|
+
import { forwardRef, useState } from 'react';
|
|
3
3
|
import styled, { css } from 'styled-components';
|
|
4
|
+
import Text, { StyledText } from '../Text';
|
|
5
|
+
import Icon from '../Icon';
|
|
6
|
+
import Tooltip from '../Tooltip';
|
|
4
7
|
import { defaultThemeProp } from '../../theme';
|
|
5
8
|
import Button, { StyledButtonLink } from '../Button';
|
|
6
9
|
import Grid from '../Grid';
|
|
7
|
-
import { useI18n } from '../../hooks';
|
|
10
|
+
import { useI18n, useElement } from '../../hooks';
|
|
8
11
|
import { StyledIconShape } from '../Icon/Icon';
|
|
9
12
|
import { getKindFromMimeType, getMimeTypeFromFile } from './utils';
|
|
10
13
|
import FileVisual, { StyledFileVisual } from './FileVisual';
|
|
11
|
-
const StyledFileItem = styled.div(({ theme: { base, components } }) => {
|
|
14
|
+
const StyledFileItem = styled.div(({ theme: { base: { palette, spacing, 'border-radius': borderRadius }, components } }) => {
|
|
12
15
|
return css `
|
|
13
|
-
|
|
16
|
+
border-radius: calc(0.5 * ${borderRadius});
|
|
17
|
+
border: 0.0625rem solid ${palette['border-line']};
|
|
18
|
+
background-color: ${palette['primary-background']};
|
|
14
19
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
> ${StyledFileVisual}, > ${StyledIconShape} {
|
|
21
|
+
border-start-start-radius: inherit;
|
|
22
|
+
border-end-start-radius: inherit;
|
|
23
|
+
border-start-end-radius: 0;
|
|
24
|
+
border-end-end-radius: 0;
|
|
25
|
+
height: ${components.input.height};
|
|
26
|
+
width: ${components.input.height};
|
|
27
|
+
}
|
|
23
28
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
border-start-end-radius: inherit;
|
|
34
|
-
border-end-end-radius: inherit;
|
|
35
|
-
white-space: nowrap;
|
|
36
|
-
overflow: hidden;
|
|
37
|
-
text-overflow: ellipsis;
|
|
38
|
-
}
|
|
39
|
-
`;
|
|
29
|
+
> :is(${StyledFileVisual}, ${StyledIconShape}) + :is(${StyledButtonLink}, ${StyledText}) {
|
|
30
|
+
margin-inline-start: ${spacing};
|
|
31
|
+
width: auto;
|
|
32
|
+
max-width: calc(100% - calc(2 * ${spacing}));
|
|
33
|
+
white-space: nowrap;
|
|
34
|
+
overflow: hidden;
|
|
35
|
+
text-overflow: ellipsis;
|
|
36
|
+
}
|
|
37
|
+
`;
|
|
40
38
|
});
|
|
41
39
|
StyledFileItem.defaultProps = defaultThemeProp;
|
|
42
40
|
const FileItem = forwardRef(function FileItem(props, ref) {
|
|
43
41
|
const { name, url, thumbnail, onPreview, onDownload, ...restProps } = props;
|
|
44
42
|
const [thumbnailError, setThumbnailError] = useState(false);
|
|
43
|
+
const [target, setTarget] = useElement();
|
|
45
44
|
const t = useI18n();
|
|
46
|
-
const onDownloadClick = useCallback(() => {
|
|
47
|
-
onDownload?.(url);
|
|
48
|
-
}, [url, onDownload]);
|
|
49
45
|
const type = getMimeTypeFromFile(url);
|
|
50
46
|
const text = name || url;
|
|
51
|
-
|
|
47
|
+
let ariaLabel;
|
|
48
|
+
if (onPreview) {
|
|
49
|
+
ariaLabel = t('open_file_in_new_tab', [text]);
|
|
50
|
+
}
|
|
51
|
+
else if (onDownload) {
|
|
52
|
+
ariaLabel = t('download_file', [text]);
|
|
53
|
+
}
|
|
54
|
+
return (_jsxs(Grid, { as: StyledFileItem, container: { cols: 'auto 1fr', alignItems: 'center', justifyItems: 'start' }, ref: ref, children: [_jsx(FileVisual, { type: getKindFromMimeType(type ?? ''), thumbnail: thumbnailError ? undefined : thumbnail, onThumbnailError: () => {
|
|
52
55
|
setThumbnailError(true);
|
|
53
|
-
},
|
|
56
|
+
} }), onPreview || onDownload ? (_jsxs(Button, { ...restProps, variant: 'link', ref: setTarget, onClick: () => {
|
|
57
|
+
if (onPreview)
|
|
58
|
+
onPreview(url);
|
|
59
|
+
else if (onDownload)
|
|
60
|
+
onDownload(url);
|
|
61
|
+
}, "aria-label": ariaLabel, children: [text, onPreview && _jsx(Icon, { name: 'open' })] })) : (_jsx(Text, { ...restProps, ref: setTarget, children: text })), _jsx(Tooltip, { target: target, smart: true, children: text })] }));
|
|
54
62
|
});
|
|
55
63
|
export default FileItem;
|
|
56
64
|
//# sourceMappingURL=FileItem.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileItem.js","sourceRoot":"","sources":["../../../src/components/File/FileItem.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"FileItem.js","sourceRoot":"","sources":["../../../src/components/File/FileItem.tsx"],"names":[],"mappings":"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","sourcesContent":["import { forwardRef, useState } from 'react';\nimport type { PropsWithoutRef, FC, Ref } from 'react';\nimport styled, { css } from 'styled-components';\n\nimport Text, { StyledText } from '../Text';\nimport Icon from '../Icon';\nimport Tooltip from '../Tooltip';\nimport type { ForwardProps, BaseProps } from '../../types';\nimport { defaultThemeProp } from '../../theme';\nimport Button, { StyledButtonLink } from '../Button';\nimport Grid from '../Grid';\nimport { useI18n, useElement } from '../../hooks';\nimport { StyledIconShape } from '../Icon/Icon';\n\nimport { getKindFromMimeType, getMimeTypeFromFile } from './utils';\nimport FileVisual, { StyledFileVisual } from './FileVisual';\nimport type { FileVisualProps } from './FileVisual';\n\nexport interface FileItemProps extends BaseProps {\n /** Name of the file. */\n name: string;\n /** Url of the file. */\n url: string;\n /** A string to be used as an image src for a attachment thumbnail. Falls back to a provided icon or the default attachment icon. */\n thumbnail?: FileVisualProps['thumbnail'];\n /** When passed, it will make the name region to perform open in new tab action. Passes file url as the parameter. */\n onPreview?: (url: FileItemProps['url']) => void;\n /** When passed, it will make the name region to perform download action. Passes file url as the parameter. */\n onDownload?: (url: FileItemProps['url']) => void;\n /** Ref for the wrapping element. */\n ref?: Ref<HTMLButtonElement>;\n}\n\nconst StyledFileItem = styled.div(\n ({\n theme: {\n base: { palette, spacing, 'border-radius': borderRadius },\n components\n }\n }) => {\n return css`\n border-radius: calc(0.5 * ${borderRadius});\n border: 0.0625rem solid ${palette['border-line']};\n background-color: ${palette['primary-background']};\n\n > ${StyledFileVisual}, > ${StyledIconShape} {\n border-start-start-radius: inherit;\n border-end-start-radius: inherit;\n border-start-end-radius: 0;\n border-end-end-radius: 0;\n height: ${components.input.height};\n width: ${components.input.height};\n }\n\n > :is(${StyledFileVisual}, ${StyledIconShape}) + :is(${StyledButtonLink}, ${StyledText}) {\n margin-inline-start: ${spacing};\n width: auto;\n max-width: calc(100% - calc(2 * ${spacing}));\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n `;\n }\n);\n\nStyledFileItem.defaultProps = defaultThemeProp;\n\nconst FileItem: FC<FileItemProps & ForwardProps> = forwardRef(function FileItem(\n props: PropsWithoutRef<FileItemProps>,\n ref: FileItemProps['ref']\n) {\n const { name, url, thumbnail, onPreview, onDownload, ...restProps } = props;\n\n const [thumbnailError, setThumbnailError] = useState(false);\n const [target, setTarget] = useElement<HTMLButtonElement | HTMLSpanElement>();\n const t = useI18n();\n\n const type = getMimeTypeFromFile(url);\n const text = name || url;\n\n let ariaLabel: undefined | string;\n\n if (onPreview) {\n ariaLabel = t('open_file_in_new_tab', [text]);\n } else if (onDownload) {\n ariaLabel = t('download_file', [text]);\n }\n\n return (\n <Grid\n as={StyledFileItem}\n container={{ cols: 'auto 1fr', alignItems: 'center', justifyItems: 'start' }}\n ref={ref}\n >\n <FileVisual\n type={getKindFromMimeType(type ?? '')}\n thumbnail={thumbnailError ? undefined : thumbnail}\n onThumbnailError={() => {\n setThumbnailError(true);\n }}\n />\n {onPreview || onDownload ? (\n <Button\n {...restProps}\n variant='link'\n ref={setTarget}\n onClick={() => {\n if (onPreview) onPreview(url);\n else if (onDownload) onDownload(url);\n }}\n aria-label={ariaLabel}\n >\n {text}\n {onPreview && <Icon name='open' />}\n </Button>\n ) : (\n <Text {...restProps} ref={setTarget}>\n {text}\n </Text>\n )}\n <Tooltip target={target} smart>\n {text}\n </Tooltip>\n </Grid>\n );\n});\n\nexport default FileItem;\n"]}
|
|
@@ -40,7 +40,7 @@ const Tooltip = forwardRef(function Tooltip({ testId, children, target, showDela
|
|
|
40
40
|
setShow(
|
|
41
41
|
// This approach may result in a tooltip NOT appearing 1px before it should due to browser specifics. Enhance as needed.
|
|
42
42
|
// https://stackoverflow.com/a/64747288
|
|
43
|
-
smart ? target.scrollWidth > target.
|
|
43
|
+
smart ? target.scrollWidth > target.clientWidth : true);
|
|
44
44
|
};
|
|
45
45
|
const onFocusIn = () => {
|
|
46
46
|
showTooltip();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tooltip.js","sourceRoot":"","sources":["../../../src/components/Tooltip/Tooltip.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE7E,OAAO,MAAM,EAAE,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAGhD,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,OAAO,MAAM,YAAY,CAAC;AAEjC,OAAO,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrE,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,gBAAgB,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAyCvD,MAAM,CAAC,MAAM,aAAa,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE;IACpD,MAAM,QAAQ,GAAG,iBAAiB,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC;IAEtF,OAAO,GAAG,CAAA;wBACY,KAAK,CAAC,UAAU,CAAC,OAAO,CAAC,kBAAkB,CAAC;aACvD,KAAK,CAAC,UAAU,CAAC,OAAO,CAAC,kBAAkB,CAAC;iBACxC,QAAQ,CAAC,GAAG;;eAEd,KAAK,CAAC,IAAI,CAAC,OAAO;;;;GAI9B,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,aAAa,CAAC,YAAY,GAAG,gBAAgB,CAAC;AAE9C,MAAM,OAAO,GAAmD,UAAU,CAAC,SAAS,OAAO,CACzF,EACE,MAAM,EACN,QAAQ,EACR,MAAM,EACN,SAAS,GAAG,OAAO,EACnB,SAAS,GAAG,MAAM,EAClB,SAAS,GAAG,QAAQ,EACpB,cAAc,GAAG,IAAI,EACrB,KAAK,EACL,GAAG,SAAS,EACkB,EAChC,GAAwB;IAExB,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;IACpB,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IACxC,MAAM,UAAU,GAAG,kBAAkB,CAAC,GAAG,CAAC,CAAC;IAC3C,MAAM,cAAc,GAAyC,MAAM,CAAC,IAAI,CAAC,CAAC;IAC1E,MAAM,OAAO,GAAG,UAAU,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC;IAEtD,MAAM,WAAW,GAAG,WAAW,CAC7B,CAAC,EAAE,MAAM,EAAE,OAAO,EAAc,EAAE,EAAE;QAClC,cAAc,CAAC,OAAO,GAAG,OAAO,CAAC;QACjC,IAAI,OAAO,KAAK,UAAU,CAAC,OAAO,IAAI,OAAO,KAAK,MAAM;YAAE,OAAO;QACjE,OAAO,CAAC,KAAK,CAAC,CAAC;IACjB,CAAC,EACD,CAAC,MAAM,CAAC,CACT,CAAC;IAEF,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,CAAC,MAAM;YAAE,OAAO;QAEpB,MAAM,WAAW,GAAG,GAAG,EAAE;YACvB,OAAO;YACL,wHAAwH;YACxH,uCAAuC;YACvC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,GAAG,MAAM,CAAC,qBAAqB,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CACzE,CAAC;QACJ,CAAC,CAAC;QAEF,MAAM,SAAS,GAAG,GAAG,EAAE;YACrB,WAAW,EAAE,CAAC;QAChB,CAAC,CAAC;QAEF,MAAM,UAAU,GAAG,GAAG,EAAE;YACtB,IAAI,cAAc,CAAC,OAAO,KAAK,UAAU,CAAC,OAAO,EAAE;gBACjD,OAAO,CAAC,KAAK,CAAC,CAAC;aAChB;YACD,cAAc,CAAC,OAAO,GAAG,IAAI,CAAC;QAChC,CAAC,CAAC;QAEF,MAAM,YAAY,GAAG,GAAG,EAAE;YACxB,WAAW,EAAE,CAAC;QAChB,CAAC,CAAC;QAEF,MAAM,YAAY,GAAG,GAAG,EAAE;YACxB,IAAI,gBAAgB,EAAE,KAAK,MAAM,EAAE;gBACjC,OAAO,CAAC,KAAK,CAAC,CAAC;aAChB;QACH,CAAC,CAAC;QAEF,MAAM,SAAS,GAAG,CAAC,EAAE,GAAG,EAAiB,EAAE,EAAE;YAC3C,IAAI,GAAG,KAAK,QAAQ,IAAI,gBAAgB,EAAE,KAAK,MAAM,EAAE;gBACrD,OAAO,CAAC,KAAK,CAAC,CAAC;aAChB;QACH,CAAC,CAAC;QAEF,QAAQ,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;QAChD,QAAQ,CAAC,gBAAgB,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;QAEpD,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;QAC9C,MAAM,CAAC,gBAAgB,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;QAEhD,MAAM,CAAC,gBAAgB,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;QACpD,MAAM,CAAC,gBAAgB,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;QAEpD,OAAO,GAAG,EAAE;YACV,QAAQ,CAAC,mBAAmB,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;YACnD,QAAQ,CAAC,mBAAmB,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;YAEvD,MAAM,CAAC,mBAAmB,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;YACjD,MAAM,CAAC,mBAAmB,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;YAEnD,MAAM,CAAC,mBAAmB,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;YACvD,MAAM,CAAC,mBAAmB,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;QACzD,CAAC,CAAC;IACJ,CAAC,EAAE,CAAC,MAAM,EAAE,WAAW,EAAE,KAAK,CAAC,CAAC,CAAC;IAEjC,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,MAAM,IAAI,cAAc,IAAI,IAAI,EAAE;YACpC,MAAM,WAAW,GAAG,MAAM,CAAC,YAAY,CAAC,kBAAkB,CAAC,CAAC;YAC5D,qDAAqD;YACrD,MAAM,CAAC,YAAY,CAAC,kBAAkB,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,WAAW,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC;SACpF;aAAM,IAAI,MAAM,EAAE;YACjB,wBAAwB;YACxB,MAAM,WAAW,GAAG,MAAM,CAAC,YAAY,CAAC,kBAAkB,CAAC,CAAC;YAC5D,IAAI,WAAW,EAAE;gBACf,8DAA8D;gBAC9D,IAAI,WAAW,KAAK,EAAE,EAAE;oBACtB,MAAM,CAAC,eAAe,CAAC,kBAAkB,CAAC,CAAC;iBAC5C;qBAAM;oBACL,uGAAuG;oBACvG,MAAM,cAAc,GAAG,WAAW,CAAC,OAAO,CAAC,IAAI,MAAM,CAAC,aAAa,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC;oBAC9E,MAAM,CAAC,YAAY,CAAC,kBAAkB,EAAE,cAAc,CAAC,CAAC;iBACzD;aACF;SACF;IACH,CAAC,EAAE,CAAC,cAAc,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC,CAAC;IAEnC,OAAO,CACL,KAAC,OAAO,mBACO,OAAO,CAAC,IAAI,EACzB,EAAE,EAAE,EAAE,KACF,SAAS,EACb,IAAI,EAAE,IAAI,EACV,SAAS,EAAE,SAAS,EACpB,SAAS,EAAE,SAAS,EACpB,OAAO,EAAC,SAAS,EACjB,QAAQ,EAAC,OAAO,EAChB,EAAE,EAAE,aAAa,EACjB,IAAI,EAAC,SAAS,EACd,MAAM,EAAE,MAAM,EACd,KAAK,QACL,SAAS,EAAE,SAAS,EACpB,WAAW,EAAE,WAAW,EACxB,kBAAkB,QAClB,GAAG,EAAE,UAAU,YAEd,QAAQ,GACD,CACX,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,eAAe,WAAW,CAAC,OAAO,EAAE,iBAAiB,CAAC,CAAC","sourcesContent":["import { forwardRef, useCallback, useEffect, useRef, useState } from 'react';\nimport type { FunctionComponent, MutableRefObject, PropsWithoutRef, Ref } from 'react';\nimport styled, { css } from 'styled-components';\n\nimport type { BaseProps, ForwardProps, TestIdProp } from '../../types';\nimport { defaultThemeProp } from '../../theme';\nimport Popover from '../Popover';\nimport type { Delay, PopoverProps } from '../Popover';\nimport { useConsolidatedRef, useTestIds, useUID } from '../../hooks';\nimport { calculateFontSize } from '../../styles';\nimport { getActiveElement, withTestIds } from '../../utils';\n\nimport { getTooltipTestIds } from './Tooltip.test-ids';\n\nexport interface TooltipProps extends BaseProps, TestIdProp {\n /** Text content for the tooltip. */\n children: string | string[];\n /** Element to serve as the tooltip's target. */\n target: Element | null;\n /**\n * Delay showing the tooltip on mouseenter.\n * @default 'short'\n */\n showDelay?: Delay;\n /**\n * Delay hiding the tooltip on mouseleave.\n * @default 'long'\n */\n hideDelay?: Delay;\n /**\n * If true, the Tooltip will render outside of the current DOM hierarchy in a [portal](https://reactjs.org/docs/portals.html).\n * @default true\n */\n portal?: PopoverProps['portal'];\n /**\n * If true, the Tooltip will automatically apply an aria-describedby attribute to its target.\n * @default true\n */\n describeTarget?: boolean;\n /**\n * Sets the placement of the tooltip relative to the target.\n * @default 'bottom'\n */\n placement?: PopoverProps['placement'];\n /**\n * Conditionally renders a tooltip only if the associated element's text content is truncated.\n * To work, the associated element must be be displayed as a CSS \"block box\" i.e. block, inline-block, etc...\n * @default false\n */\n smart?: boolean;\n ref?: Ref<HTMLDivElement>;\n}\n\nexport const StyledTooltip = styled.div(({ theme }) => {\n const fontSize = calculateFontSize(theme.base['font-size'], theme.base['font-scale']);\n\n return css`\n background-color: ${theme.components.tooltip['background-color']};\n color: ${theme.components.tooltip['foreground-color']};\n font-size: ${fontSize.xxs};\n max-width: 40ch;\n padding: ${theme.base.spacing};\n white-space: pre-line;\n word-break: break-word;\n pointer-events: none;\n `;\n});\n\nStyledTooltip.defaultProps = defaultThemeProp;\n\nconst Tooltip: FunctionComponent<TooltipProps & ForwardProps> = forwardRef(function Tooltip(\n {\n testId,\n children,\n target,\n showDelay = 'short',\n hideDelay = 'long',\n placement = 'bottom',\n describeTarget = true,\n smart,\n ...restProps\n }: PropsWithoutRef<TooltipProps>,\n ref: Ref<HTMLDivElement>\n) {\n const id = useUID();\n const [show, setShow] = useState(false);\n const tooltipRef = useConsolidatedRef(ref);\n const lastClickedRef: MutableRefObject<EventTarget | null> = useRef(null);\n const testIds = useTestIds(testId, getTooltipTestIds);\n\n const onMouseDown = useCallback(\n ({ target: eTarget }: MouseEvent) => {\n lastClickedRef.current = eTarget;\n if (eTarget === tooltipRef.current || eTarget === target) return;\n setShow(false);\n },\n [target]\n );\n\n useEffect(() => {\n if (!target) return;\n\n const showTooltip = () => {\n setShow(\n // This approach may result in a tooltip NOT appearing 1px before it should due to browser specifics. Enhance as needed.\n // https://stackoverflow.com/a/64747288\n smart ? target.scrollWidth > target.getBoundingClientRect().width : true\n );\n };\n\n const onFocusIn = () => {\n showTooltip();\n };\n\n const onFocusOut = () => {\n if (lastClickedRef.current !== tooltipRef.current) {\n setShow(false);\n }\n lastClickedRef.current = null;\n };\n\n const onMouseEnter = () => {\n showTooltip();\n };\n\n const onMouseLeave = () => {\n if (getActiveElement() !== target) {\n setShow(false);\n }\n };\n\n const onKeyDown = ({ key }: KeyboardEvent) => {\n if (key === 'Escape' && getActiveElement() === target) {\n setShow(false);\n }\n };\n\n document.addEventListener('keydown', onKeyDown);\n document.addEventListener('mousedown', onMouseDown);\n\n target.addEventListener('focusin', onFocusIn);\n target.addEventListener('focusout', onFocusOut);\n\n target.addEventListener('mouseenter', onMouseEnter);\n target.addEventListener('mouseleave', onMouseLeave);\n\n return () => {\n document.removeEventListener('keydown', onKeyDown);\n document.removeEventListener('mousedown', onMouseDown);\n\n target.removeEventListener('focusin', onFocusIn);\n target.removeEventListener('focusout', onFocusOut);\n\n target.removeEventListener('mouseenter', onMouseEnter);\n target.removeEventListener('mouseleave', onMouseLeave);\n };\n }, [target, onMouseDown, smart]);\n\n useEffect(() => {\n if (target && describeTarget && show) {\n const describedBy = target.getAttribute('aria-describedby');\n // Set the attribute to the old attribute plus the id\n target.setAttribute('aria-describedby', describedBy ? `${describedBy} ${id}` : id);\n } else if (target) {\n // Get the old attribute\n const describedBy = target.getAttribute('aria-describedby');\n if (describedBy) {\n // If the old attribute matches the id just remove it entirely\n if (describedBy === id) {\n target.removeAttribute('aria-describedby');\n } else {\n // Otherwise we want to just remove the id that was added and reset the attribute to what it was before\n const oldDescribedBy = describedBy.replace(new RegExp(`(?:^|\\\\s+)${id}`), '');\n target.setAttribute('aria-describedby', oldDescribedBy);\n }\n }\n }\n }, [describeTarget, target, show]);\n\n return (\n <Popover\n data-testid={testIds.root}\n id={id}\n {...restProps}\n show={show}\n showDelay={showDelay}\n hideDelay={hideDelay}\n groupId='tooltip'\n strategy='fixed'\n as={StyledTooltip}\n role='tooltip'\n target={target}\n arrow\n placement={placement}\n onMouseDown={onMouseDown}\n hideOnTargetHidden\n ref={tooltipRef}\n >\n {children}\n </Popover>\n );\n});\n\nexport default withTestIds(Tooltip, getTooltipTestIds);\n"]}
|
|
1
|
+
{"version":3,"file":"Tooltip.js","sourceRoot":"","sources":["../../../src/components/Tooltip/Tooltip.tsx"],"names":[],"mappings":"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","sourcesContent":["import { forwardRef, useCallback, useEffect, useRef, useState } from 'react';\nimport type { FunctionComponent, MutableRefObject, PropsWithoutRef, Ref } from 'react';\nimport styled, { css } from 'styled-components';\n\nimport type { BaseProps, ForwardProps, TestIdProp } from '../../types';\nimport { defaultThemeProp } from '../../theme';\nimport Popover from '../Popover';\nimport type { Delay, PopoverProps } from '../Popover';\nimport { useConsolidatedRef, useTestIds, useUID } from '../../hooks';\nimport { calculateFontSize } from '../../styles';\nimport { getActiveElement, withTestIds } from '../../utils';\n\nimport { getTooltipTestIds } from './Tooltip.test-ids';\n\nexport interface TooltipProps extends BaseProps, TestIdProp {\n /** Text content for the tooltip. */\n children: string | string[];\n /** Element to serve as the tooltip's target. */\n target: Element | null;\n /**\n * Delay showing the tooltip on mouseenter.\n * @default 'short'\n */\n showDelay?: Delay;\n /**\n * Delay hiding the tooltip on mouseleave.\n * @default 'long'\n */\n hideDelay?: Delay;\n /**\n * If true, the Tooltip will render outside of the current DOM hierarchy in a [portal](https://reactjs.org/docs/portals.html).\n * @default true\n */\n portal?: PopoverProps['portal'];\n /**\n * If true, the Tooltip will automatically apply an aria-describedby attribute to its target.\n * @default true\n */\n describeTarget?: boolean;\n /**\n * Sets the placement of the tooltip relative to the target.\n * @default 'bottom'\n */\n placement?: PopoverProps['placement'];\n /**\n * Conditionally renders a tooltip only if the associated element's text content is truncated.\n * To work, the associated element must be be displayed as a CSS \"block box\" i.e. block, inline-block, etc...\n * @default false\n */\n smart?: boolean;\n ref?: Ref<HTMLDivElement>;\n}\n\nexport const StyledTooltip = styled.div(({ theme }) => {\n const fontSize = calculateFontSize(theme.base['font-size'], theme.base['font-scale']);\n\n return css`\n background-color: ${theme.components.tooltip['background-color']};\n color: ${theme.components.tooltip['foreground-color']};\n font-size: ${fontSize.xxs};\n max-width: 40ch;\n padding: ${theme.base.spacing};\n white-space: pre-line;\n word-break: break-word;\n pointer-events: none;\n `;\n});\n\nStyledTooltip.defaultProps = defaultThemeProp;\n\nconst Tooltip: FunctionComponent<TooltipProps & ForwardProps> = forwardRef(function Tooltip(\n {\n testId,\n children,\n target,\n showDelay = 'short',\n hideDelay = 'long',\n placement = 'bottom',\n describeTarget = true,\n smart,\n ...restProps\n }: PropsWithoutRef<TooltipProps>,\n ref: Ref<HTMLDivElement>\n) {\n const id = useUID();\n const [show, setShow] = useState(false);\n const tooltipRef = useConsolidatedRef(ref);\n const lastClickedRef: MutableRefObject<EventTarget | null> = useRef(null);\n const testIds = useTestIds(testId, getTooltipTestIds);\n\n const onMouseDown = useCallback(\n ({ target: eTarget }: MouseEvent) => {\n lastClickedRef.current = eTarget;\n if (eTarget === tooltipRef.current || eTarget === target) return;\n setShow(false);\n },\n [target]\n );\n\n useEffect(() => {\n if (!target) return;\n\n const showTooltip = () => {\n setShow(\n // This approach may result in a tooltip NOT appearing 1px before it should due to browser specifics. Enhance as needed.\n // https://stackoverflow.com/a/64747288\n smart ? target.scrollWidth > target.clientWidth : true\n );\n };\n\n const onFocusIn = () => {\n showTooltip();\n };\n\n const onFocusOut = () => {\n if (lastClickedRef.current !== tooltipRef.current) {\n setShow(false);\n }\n lastClickedRef.current = null;\n };\n\n const onMouseEnter = () => {\n showTooltip();\n };\n\n const onMouseLeave = () => {\n if (getActiveElement() !== target) {\n setShow(false);\n }\n };\n\n const onKeyDown = ({ key }: KeyboardEvent) => {\n if (key === 'Escape' && getActiveElement() === target) {\n setShow(false);\n }\n };\n\n document.addEventListener('keydown', onKeyDown);\n document.addEventListener('mousedown', onMouseDown);\n\n target.addEventListener('focusin', onFocusIn);\n target.addEventListener('focusout', onFocusOut);\n\n target.addEventListener('mouseenter', onMouseEnter);\n target.addEventListener('mouseleave', onMouseLeave);\n\n return () => {\n document.removeEventListener('keydown', onKeyDown);\n document.removeEventListener('mousedown', onMouseDown);\n\n target.removeEventListener('focusin', onFocusIn);\n target.removeEventListener('focusout', onFocusOut);\n\n target.removeEventListener('mouseenter', onMouseEnter);\n target.removeEventListener('mouseleave', onMouseLeave);\n };\n }, [target, onMouseDown, smart]);\n\n useEffect(() => {\n if (target && describeTarget && show) {\n const describedBy = target.getAttribute('aria-describedby');\n // Set the attribute to the old attribute plus the id\n target.setAttribute('aria-describedby', describedBy ? `${describedBy} ${id}` : id);\n } else if (target) {\n // Get the old attribute\n const describedBy = target.getAttribute('aria-describedby');\n if (describedBy) {\n // If the old attribute matches the id just remove it entirely\n if (describedBy === id) {\n target.removeAttribute('aria-describedby');\n } else {\n // Otherwise we want to just remove the id that was added and reset the attribute to what it was before\n const oldDescribedBy = describedBy.replace(new RegExp(`(?:^|\\\\s+)${id}`), '');\n target.setAttribute('aria-describedby', oldDescribedBy);\n }\n }\n }\n }, [describeTarget, target, show]);\n\n return (\n <Popover\n data-testid={testIds.root}\n id={id}\n {...restProps}\n show={show}\n showDelay={showDelay}\n hideDelay={hideDelay}\n groupId='tooltip'\n strategy='fixed'\n as={StyledTooltip}\n role='tooltip'\n target={target}\n arrow\n placement={placement}\n onMouseDown={onMouseDown}\n hideOnTargetHidden\n ref={tooltipRef}\n >\n {children}\n </Popover>\n );\n});\n\nexport default withTestIds(Tooltip, getTooltipTestIds);\n"]}
|
package/lib/hooks/useI18n.d.ts
CHANGED
|
@@ -231,6 +231,8 @@ declare const useI18n: () => import("../i18n/translate").TranslationFunction<Rea
|
|
|
231
231
|
file_upload_text_main: string;
|
|
232
232
|
file_upload_text_one: string;
|
|
233
233
|
file_upload_text_multiple: string;
|
|
234
|
+
download_file: string;
|
|
235
|
+
open_file_in_new_tab: string;
|
|
234
236
|
my_current_location_button_a11y: string;
|
|
235
237
|
location_input_placeholder: string;
|
|
236
238
|
location_not_found_text: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useI18n.d.ts","sourceRoot":"","sources":["../../src/hooks/useI18n.ts"],"names":[],"mappings":"AAMA;;;GAGG;AACH,QAAA,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"useI18n.d.ts","sourceRoot":"","sources":["../../src/hooks/useI18n.ts"],"names":[],"mappings":"AAMA;;;GAGG;AACH,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAGZ,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
package/lib/i18n/default.d.ts
CHANGED
|
@@ -227,6 +227,8 @@ declare const _default: {
|
|
|
227
227
|
file_upload_text_main: string;
|
|
228
228
|
file_upload_text_one: string;
|
|
229
229
|
file_upload_text_multiple: string;
|
|
230
|
+
download_file: string;
|
|
231
|
+
open_file_in_new_tab: string;
|
|
230
232
|
my_current_location_button_a11y: string;
|
|
231
233
|
location_input_placeholder: string;
|
|
232
234
|
location_not_found_text: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAqoCE"}
|
package/lib/i18n/default.js
CHANGED
|
@@ -256,6 +256,8 @@ export default {
|
|
|
256
256
|
file_upload_text_main: 'Drag and drop or {0}',
|
|
257
257
|
file_upload_text_one: 'choose a file',
|
|
258
258
|
file_upload_text_multiple: 'choose files',
|
|
259
|
+
download_file: 'Download {0}',
|
|
260
|
+
open_file_in_new_tab: 'Open {0} in new tab',
|
|
259
261
|
/* core:Location */
|
|
260
262
|
my_current_location_button_a11y: 'Use my current location',
|
|
261
263
|
location_input_placeholder: 'Enter a location',
|
package/lib/i18n/default.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default.js","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":"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","sourcesContent":["export default {\n // -----------------------------------------------------------------------------\n // Common translation entries\n // -----------------------------------------------------------------------------\n\n /* Nouns, Types, Terms, Phrases, etc... */\n yes: 'Yes',\n no: 'No',\n filters: 'Filters',\n actions: 'Actions',\n status: 'Status',\n additional_info: 'Additional info',\n search_placeholder_default: 'Search…',\n select_placeholder_default: 'Select…',\n description: 'Description',\n all: 'All',\n default: 'default',\n app_default: 'app default',\n sitewide: 'Sitewide',\n opens_in_a_new_tab: 'Opens in a new tab',\n summary: 'Summary',\n utilities: 'Utilities',\n search: 'Search',\n menu: 'menu',\n new: 'New',\n info: 'info',\n shortcuts: 'Shortcuts',\n\n /* Verbs */\n remove: 'Remove',\n follow: 'Follow',\n unfollow: 'Unfollow',\n add: 'Add',\n cancel: 'Cancel',\n try_again: 'Try again',\n update: 'Update',\n submit: 'Submit',\n apply: 'Apply',\n select: 'Select',\n edit: 'Edit',\n preview: 'Preview',\n decline: 'Decline',\n delete: 'Delete',\n close: 'Close',\n activate: 'Activate',\n expand: 'Expand',\n collapse: 'Collapse',\n accept: 'Accept',\n clear: 'Clear',\n use: 'Use',\n undo: 'Undo',\n redo: 'Redo',\n filter: 'Filter',\n sort: 'Sort',\n group: 'Group',\n go: 'Go',\n configure: 'Configure',\n dismiss: 'Dismiss',\n due: 'Due',\n\n /* Static verb noun */\n view_all: 'View all',\n view_less: 'View less',\n show_more: 'Show more',\n show_less: 'Show less',\n show_all: 'Show all',\n clear_all: 'Clear all',\n link_open_in_tab_text: 'Open in tab',\n edit_details: 'Edit details',\n add_emoji: 'Add emoji',\n create_new: 'Create new',\n submit_and_open: 'Submit and open',\n add_condition: 'Add condition',\n\n /* Dynamic verb {noun} */\n open_noun: 'Open {0}',\n close_noun: 'Close {0}',\n view_all_noun: 'View all {0}',\n view_less_noun: 'View less {0}',\n expand_noun: 'Expand {0}',\n add_noun: 'Add {0}',\n collapse_noun: 'Collapse {0}',\n checked_noun: '{0} checked',\n selected_noun: '{0} selected',\n unselected_noun: '{0} unselected',\n use_input_value: 'Use {0}',\n preview_of_noun: 'Preview of {0}',\n go_to_noun: 'Go to {0}',\n insert_noun: 'Insert {0}',\n delete_noun: 'Delete {0}',\n actions_for: 'Actions for {0}',\n\n /* States */\n edited: 'Edited {0}',\n done: 'Done',\n uploading: 'Uploading',\n loading: 'Loading…',\n loaded: 'Loaded',\n submitting: 'Submitting…',\n no_items: 'No items',\n unknown_error: 'Unknown error',\n image_load_error: 'Error loading image',\n selected: 'Selected',\n selected_count: {\n zero: '{0} selected',\n one: '{0} selected',\n two: '{0} selected',\n few: '{0} selected',\n many: '{0} selected',\n other: '{0} selected'\n },\n completed: 'Completed',\n current: 'Current',\n previous: 'Previous',\n not_started: 'Not started',\n empty_value: 'Empty value',\n no_value: 'no value',\n delivered: 'Delivered',\n sent: 'Sent',\n active: 'Active',\n read_only: 'Read only',\n information: 'Information',\n error: 'Error',\n warning: 'Warning',\n success: 'Success',\n pass: 'Pass',\n fail: 'Fail',\n did_not_ask: 'Did not ask',\n\n /* Date and time */\n day_placeholder: 'DD',\n month_placeholder: 'MM',\n year_placeholder: 'YYYY',\n hour_placeholder: 'hh',\n minute_placeholder: 'mm',\n second_placeholder: 'ss',\n meridiem_value_am: 'AM',\n meridiem_value_pm: 'PM',\n week_placeholder: 'WW',\n seconds_text: 'Seconds',\n minutes_text: 'Minutes',\n hours_text: 'Hours',\n days_text: 'Days',\n time_text: 'Time',\n time_format_info: 'hh:mm:ss',\n date_quarter_q1: 'Q1 {0}',\n date_quarter_q2: 'Q2 {0}',\n date_quarter_q3: 'Q3 {0}',\n date_quarter_q4: 'Q4 {0}',\n time_unit: 'Time Unit',\n\n /* Count based types */\n attachments_count: {\n zero: 'No attachments',\n one: '{0} attachment',\n two: '{0} attachments',\n few: '{0} attachments',\n many: '{0} attachments',\n other: '{0} attachments'\n },\n results_count: {\n zero: 'No results',\n one: '{0} result',\n two: '{0} results',\n few: '{0} results',\n many: '{0} results',\n other: '{0} results'\n },\n recent_results_count: {\n zero: 'No recent results',\n one: '{0} recent result',\n two: '{0} recent results',\n few: '{0} recent results',\n many: '{0} recent results',\n other: '{0} recent results'\n },\n new_emails_count: {\n zero: 'No new emails',\n one: '{0} new email',\n two: '{0} new emails',\n few: '{0} new emails',\n many: '{0} new emails',\n other: '{0} new emails'\n },\n\n /* Pagination */\n pagination_page_of: 'Page {0} of {1}',\n pagination_next: 'Next',\n pagination_prev: 'Previous',\n\n /* Range */\n range_from_datetime: 'Since',\n range_to_datetime: 'Until',\n range_from_numeric: 'From',\n range_to_numeric: 'To',\n\n /* Miscellaneous */\n x_of_y: '{0} of {1}',\n\n // -----------------------------------------------------------------------------\n // {pkg}:{ComponentDir} entries\n // -----------------------------------------------------------------------------\n\n /* core:Link */\n preview_link_instruction: 'Press {0} and p to open this link in a preview.',\n\n /* core:LiveLog */\n polite_announcements: 'Polite Announcements',\n assertive_announcements: 'Assertive Announcements',\n\n /* core:SkipLinks */\n go_to_main_content: 'Go to main content',\n main_content: 'Main content',\n\n /* core:AppShell */\n app_shell_create: 'Create',\n app_shell_open_nav: 'Open navigation menu',\n app_shell_main_navigation_label: 'Main',\n shortcut_NextRegion: 'Next region',\n shortcut_PrevRegion: 'Previous region',\n\n /* core:ComboBox */\n combobox_open_close: 'Arrow down to open, press escape to close.',\n combobox_search_instructions: 'Start typing to search',\n combobox_open_list_button_a11y: 'Open combobox list',\n combobox_close_list_button_a11y: 'Close combobox list',\n multiselect_instructions: 'Arrow {0} from start to review selected items',\n selected_items: 'Selected items',\n\n /* core:Menu */\n menu_selection_instructions: 'Press enter to select items.',\n menu_item_expand_arrow: '{0}. Arrow right to expand.',\n menu_item_collapse_arrow: 'Arrow left to collapse.',\n menu_item_collapse_shift_space: 'Press shift space to collapse.',\n menu_item_shift_space_expand_collapse: '{0}. Press shift space to expand and collapse.',\n menu_option_list: 'Options list',\n menu_item_count: 'Contains {0} items.',\n menu_collapsed: '{0} collapsed',\n menu_expanded: '{0} expanded.',\n\n /* core:Modal */\n modal_minimize: 'Minimize modal',\n modal_maximize: 'Maximize modal',\n modal_dock: 'Dock Modal',\n modal_close: 'Close modal',\n\n /* core:Datetime */\n selected_date_a11y: 'Selected date:',\n open_calendar_button_a11y: 'Open calendar',\n close_calendar_button_a11y: 'Close calendar',\n open_time_button_a11y: 'Open time picker',\n close_time_button_a11y: 'Close time picker',\n set_current_date_and_time_a11y: 'Set current date and time',\n set_current_date_a11y: 'Set current date',\n clear_current_date_and_time: 'Clear current date and time',\n clear_current_date: 'Clear current date',\n picker_next_month: 'Next month',\n picker_prev_month: 'Previous month',\n picker_jump_to_month_and_year: 'Jump to month and year selection',\n calendar_assist: 'Use cursor keys to navigate dates',\n calendar: 'Calendar',\n choose_date: 'Choose date',\n choose_date_and_time: 'Choose date and time',\n choose_week: 'Choose week',\n\n /* core:Boolean */\n boolean_display_true_label: 'Yes',\n boolean_display_false_label: 'No',\n\n /* core:MultiStepForm */\n step_changed_to_name: 'Step changed to {0}',\n\n /* core:Number */\n measured_in: 'measured in {0}',\n\n /* core:Banner */\n banner_dismiss_button_label_a11y: 'Dismiss banner',\n\n /* core:File */\n file_upload_text_main: 'Drag and drop or {0}',\n file_upload_text_one: 'choose a file',\n file_upload_text_multiple: 'choose files',\n\n /* core:Location */\n my_current_location_button_a11y: 'Use my current location',\n location_input_placeholder: 'Enter a location',\n location_not_found_text: 'Location not found',\n allow_location_permissions_text:\n 'To get current location, allow location permissions for this app',\n\n /* core:SearchInput */\n advanced_search: 'Advanced search',\n select_search_filter: 'Select search filter',\n recent_searches: 'Recent searches',\n clear_search: 'Clear search',\n search_instructions: 'Use arrow keys to move up and down the suggested results.',\n\n /* core:SummaryList */\n action_from_summarylist_heading: '{0} from {1}',\n selected_search_filter: 'Filter search by: {0}',\n\n /* work:CaseView */\n utilities_label: 'Utilities',\n utilities_summary: 'Utilities summary',\n expand_summary: 'Expand summary',\n collapse_summary: 'Collapse summary',\n expand_utilities_panel: 'Expand utilities',\n collapse_utilities_panel: 'Collapse utilities',\n primary_summary_fields: 'Primary summary fields',\n summary_fields: 'Summary fields',\n\n /* core:FormField */\n accept_suggestion_button_a11y: 'Accept AI suggestion',\n reject_suggestion_button_a11y: 'Reject AI suggestion',\n suggestion_info: 'Accept AI suggestion?',\n suggestion_assist:\n 'Either press Enter to accept the AI suggestion or edit the value to reject it',\n\n /* core:Phone Input */\n select_country_code: 'Select country code',\n enter_a_number: 'Enter a number',\n\n /* core:SkipLinks */\n skip_navigation_menu_label: 'Skip navigation menu',\n\n /* core:Tabs */\n tab_error_tooltip: '{0} has errors',\n\n /* work:Assignments */\n assignments: 'Assignments',\n\n /* work:ArticleList */\n article_list_label_a11y: 'Article list',\n article_list_filter_label_a11y: 'Article lists filter',\n article_list_header_submit_label: 'Submit',\n clear_filters: 'Clear filters',\n suggest_article: 'Suggest article',\n suggested: 'Suggested',\n followed: 'Followed',\n buddy: 'Buddy',\n disclaimer: 'Disclaimer',\n references: 'References',\n result_available: 'Result available',\n\n /* work:Article */\n article_label_a11y: 'Article',\n article_related_links: 'Related links',\n article_more_like_this: 'More like this',\n article_was_this_helpful: 'Was this helpful?',\n article_thank_you_for_your_feedback: 'Thank you for your feedback',\n article_attachments: 'Attachments',\n likes: 'Likes',\n dislikes: 'Dislikes',\n like: 'Like',\n dislike: 'Dislike',\n\n /* work:CasePreview */\n close_preview: 'Close preview',\n\n /* work:Confirmation */\n confirmation_whats_next: \"What's next\",\n confirmation_open_tasks: 'Open tasks',\n\n /* work:Stakeholders */\n add_stakeholders: 'Add stakeholder',\n edit_stakeholder: 'Edit stakeholder',\n view_stakeholders: 'Stakeholders',\n stakeholders_role: 'Role',\n stakeholders: {\n zero: '{0} stakeholders',\n one: '{0} stakeholder',\n two: '{0} stakeholders',\n few: '{0} stakeholders',\n many: '{0} stakeholders',\n other: '{0} stakeholders'\n },\n\n /* work:Tags */\n edit_tags: 'Edit tags',\n tags: 'Tags',\n\n /* work:Glimpse */\n view_profile: 'View profile',\n\n /* work:Timeline */\n timeline_toolbar_sort_descending: 'Newest first',\n timeline_toolbar_sort_ascending: 'Oldest first',\n timeline_toolbar_group_date: 'By day',\n timeline_toolbar_group_monthyear: 'By month',\n timeline_toolbar_group_quarteryear: 'By quarter',\n timeline_toolbar_group_year: 'By year',\n timeline_toolbar_group_none: 'Off',\n\n /* work:AppAnnouncement */\n app_announcement_dismiss_button_label_a11y: 'Hide until next update',\n app_announcement_details_list_header: 'Announcements',\n app_announcement_whats_new_button_label: \"See what's new\",\n\n /* work:Stages */\n stages_label: 'Case stages',\n stages_see_full_lifecycle: 'See full lifecycle',\n stages_case_lifecycle: '{0} lifecycle',\n stages_default_case_lifecycle: 'Case lifecycle',\n stages_stage_label: 'Stage {0}, {1}',\n stages_description: 'Use horizontal arrow keys to navigate.',\n\n /* work:Predictions */\n predictions: 'Predictions',\n all_predictions: 'All predictions',\n learn_more: 'Learn more',\n\n /* work:TaskList */\n tasks_added: {\n zero: 'No tasks added',\n one: '{0} task added',\n two: '{0} tasks added',\n few: '{0} tasks added',\n many: '{0} tasks added',\n other: '{0} tasks added'\n },\n tasks_removed: {\n zero: 'No tasks removed',\n one: '{0} task removed',\n two: '{0} tasks removed',\n few: '{0} tasks removed',\n many: '{0} tasks removed',\n other: '{0} tasks removed'\n },\n\n /* work:InteractionNotification */\n interaction_time_expired: 'The time to accept the interaction has expired.',\n interaction_time_remaining: {\n zero: 'The time to accept the interaction has expired.',\n one: '{0} second remaining to accept the interaction.',\n two: '{0} seconds remaining to accept the interaction.',\n few: '{0} seconds remaining to accept the interaction.',\n many: '{0} seconds remaining to accept the interaction.',\n other: '{0} seconds remaining to accept the interaction.'\n },\n interaction_shortcut_goto_info: 'Press {0} to review.',\n interaction_shortcut_dismiss_info: 'Press {0} to dismiss.',\n shortcut_GoToIncomingInteraction: 'Go to incoming interaction popup.',\n shortcut_DismissIncomingInteraction: 'Dismiss incoming interaction popup.',\n\n /* rte:RichTextEditor */\n rte_heading_style: 'Heading style',\n rte_bold: 'Bold',\n rte_italic: 'Italic',\n rte_strike_through: 'Strike-through',\n rte_cut: 'Cut',\n rte_copy: 'Copy',\n rte_paste: 'Paste',\n rte_bulleted_list: 'Bulleted list',\n rte_numbered_list: 'Numbered list',\n rte_indent: 'Indent',\n rte_unindent: 'Unindent',\n rte_table: 'Table',\n rte_link: 'Link',\n rte_image: 'Image',\n rte_invalid_html: 'Invalid HTML',\n rte_insert_field: 'Insert field',\n rte_invalid_url: 'Invalid URL',\n rte_change_text_format: 'Change text format to',\n rte_toggle_unordered_list: 'Toggle unordered list',\n rte_indent_selection: 'Indent selection',\n rte_unindent_selection: 'Unindent selection',\n rte_toolbar_instructions: 'Hit tab to enter the editor toolbar',\n rte_text_formatting_toolbar: 'Text formatting toolbar',\n rte_image_description_info: 'Provides an alternate (ALT) description for the visually impaired',\n rte_image_custom_size: 'Custom size',\n rte_width_in_pixels: 'Width (in pixels)',\n rte_height_in_pixels: 'Height (in pixels)',\n rte_image_settings: 'Image settings',\n rte_image_key_command: 'Press enter to edit the image',\n\n /* social:Email */\n expand_forwarded_message: 'Expand forwarded message',\n collapse_forwarded_message: 'Collapse forwarded message',\n copy_to: 'Copy to',\n subject_label: 'Subject: {0}',\n search_results: 'Search results',\n\n /* social:Feed */\n feed_new_post: 'Start a conversation',\n feed_new_post_submit: 'Post',\n feed_new_comment: 'New comment',\n feed_new_comment_submit: 'Comment',\n feed_attach_files: 'Attach files',\n feed_post_actions_menu: 'More',\n feed_edit_post: 'Edit post',\n feed_edit_comment: 'Edit comment',\n feed_context: 'in {0}',\n feed_liked_by: 'Liked by {0}',\n feed_likes: 'Likes',\n feed_private_post: 'Private post',\n feed_public_post: 'Public post',\n feed_recipients: 'Recipients',\n feed_like_label: 'Like',\n feed_unlike_label: 'Unlike',\n feed_post_likes: {\n zero: 'No likes',\n one: '{0} like',\n two: '{0} likes',\n few: '{0} likes',\n many: '{0} likes',\n other: '{0} likes'\n },\n feed_comment_label: 'Comment',\n feed_post_comments: {\n zero: 'No comments',\n one: '{0} comment',\n two: '{0} comments',\n few: '{0} comments',\n many: '{0} comments',\n other: '{0} comments'\n },\n feed_attachments_added: {\n zero: 'No attachments added',\n one: '{0} attachment added',\n two: '{0} attachments added',\n few: '{0} attachments added',\n many: '{0} attachments added',\n other: '{0} attachments added'\n },\n feed_attachments_removed: {\n zero: 'No attachments removed',\n one: '{0} attachment removed',\n two: '{0} attachments removed',\n few: '{0} attachments removed',\n many: '{0} attachments removed',\n other: '{0} attachments removed'\n },\n feed_post_liked: 'Post has been liked',\n feed_post_deliked: 'Post has been deliked',\n feed_post_removed: 'Post has been removed',\n feed_comment_removed: 'Comment has been removed',\n showing_num_of_num: 'Showing {0} of {1}',\n feed_new_post_added: {\n zero: 'No posts added',\n one: '{0} post added',\n two: '{0} posts added',\n few: '{0} posts added',\n many: '{0} posts added',\n other: '{0} posts added'\n },\n new_item_added: {\n zero: 'No items added',\n one: '{0} new item added',\n two: '{0} new items added',\n few: '{0} new items added',\n many: '{0} new items added',\n other: '{0} new items added'\n },\n loading_post: 'Loading post',\n mention_type: 'Mention a {0}',\n\n /* cs:Chat */\n scroll_to_latest_message: 'Scroll to latest message',\n scroll_to_unread_messages: 'Scroll to unread messages',\n suggested_replies_current_of_total: 'Suggested reply {0} of {1}',\n suggested_replies: 'Suggested replies',\n confidence_percentage: '{0}% confidence',\n next_suggested_reply: 'Next suggested reply',\n prev_suggested_reply: 'Previous suggested reply',\n dismiss_suggested_replies: 'Dismiss suggested replies',\n message_sent: 'Message sent',\n temporarilyUnavailable: 'Temporarily unavailable',\n available: 'Available',\n unavailable: 'Unavailable',\n authenticated: 'Authenticated',\n not_authenticated: 'Not authenticated',\n context: 'Context',\n chat_context: 'Chat context',\n bot: 'Bot',\n is_typing: '{0} is typing {1}',\n chat_message_at_timestamp: '{0} at {1}.',\n sender_replied_message: '{0} replied {1}',\n chat_attachments: '{0} with {1} attachments',\n chat_links: '{0} with {1} links',\n chat_message_status: 'Message {0}',\n opened: 'Opened',\n undeliverable: 'Undeliverable',\n new_message: 'New message',\n attachments: 'attachments',\n attachments_x_of_y: 'attachment {0} of {1}',\n edit_current_template: 'Edit suggested reply {0} of {1}',\n send_current_template: 'Send suggested reply {0} of {1}',\n expand_suggested_replies: 'Expand suggested replies',\n collapse_suggested_replies: 'Collapse suggested replies',\n replies_count: '{0} of {1}',\n no_suggestion: 'No suggestions',\n suggested_reply_copied_to_input_field: 'Suggested reply copied to input field',\n\n /* cs:Email */\n unique_entities: {\n zero: 'No unique entities',\n one: '{0} unique entity',\n two: '{0} unique entities',\n few: '{0} unique entities',\n many: '{0} unique entities',\n other: '{0} unique entities'\n },\n more_count: '{0} more…',\n other_responses: 'Other responses',\n empty_search: 'Enter a search term',\n new_messages: 'New messages',\n earlier_transcripts: 'Earlier transcripts',\n send: 'Send',\n compose_label: 'Compose',\n save_as_draft: 'Save as draft',\n enter_message: 'Enter message',\n download: 'Download',\n close_chat_utility: 'Close chat utility',\n email_account: 'Email account',\n subject: 'Subject',\n to: 'To',\n from: 'From',\n cc: 'Cc',\n bcc: 'Bcc',\n date: 'Date',\n reply: 'Reply',\n reply_all: 'Reply all',\n response_templates: 'Response templates',\n forward: 'Forward',\n email: 'Email',\n email_message: 'Email message',\n email_filters: 'Email filters',\n unread_email_count: '{0} of {1} unread',\n priority: 'Priority',\n inbox: 'Inbox',\n insert: 'Insert',\n email_add_attachment: 'Add attachment, the maximum number of attachments allowed is {0}.',\n email_disable_attachment:\n 'Adding attachments are disabled, the maximum number of attachments allowed is {0}.',\n email_remove_attachment: 'Remove attachment',\n loading_email: 'Loading email',\n draft: {\n zero: 'No drafts',\n one: '{0} draft',\n two: '{0} drafts',\n few: '{0} drafts',\n many: '{0} drafts',\n other: '{0} drafts'\n },\n undelivered: 'Undelivered',\n drafts: 'drafts',\n unread: 'unread',\n\n /* cs:CallControlPanel */\n call_panel_heading: 'Pega call',\n call_panel_make_new_call: 'Make new call',\n call_panel_agent_status: 'Status',\n call_panel_pause_call_menu_item: 'Pause call',\n call_panel_resume_call_menu_item: 'Resume call',\n call_panel_mute_mic_menu_item: 'Mute microphone',\n call_panel_unmute_mic_menu_item: 'Unmute microphone',\n call_panel_call_on_hold: 'On hold {0}',\n call_panel_consult_call_menu_item: 'Consult',\n call_panel_transfer_call_menu_item: 'Transfer',\n call_panel_menu_item_call_only: 'Call only',\n call_panel_menu_item_call_with_interaction: 'Call and interaction',\n call_panel_send_dtmf_menu_item: 'Send DTMF',\n call_panel_conference_call_menu_item: 'Conference',\n call_panel_hangup_call_menu_item: 'Hang up',\n call_panel_contacts_add_to_favorites: 'Add to favorites',\n call_panel_contacts_remove_from_favorites: 'Remove from favorites',\n call_panel_contacts_call_button_label: 'Call',\n call_panel_contacts_list_heading: 'Contacts',\n call_panel_contacts_favorites_heading: 'Favorites',\n call_panel_contacts_dial_pad_heading: 'Dial pad',\n call_panel_new_call_heading: 'New call',\n call_panel_interaction_transfer_heading: 'Transfer initiated',\n call_panel_interaction_transfer_complete_button_label: 'Complete transfer',\n call_panel_incoming_call: 'Incoming call…',\n call_panel_answer_call: 'Answer',\n\n call_panel_conference_heading: 'Conference call',\n call_panel_conference_call_and_interactions_heading: 'Conference by call and interaction',\n call_panel_consult_heading: 'Consult by call',\n call_panel_consult_call_and_interactions_heading: 'Consult by call and interaction',\n call_panel_transfer_heading: 'Transfer call',\n call_panel_transfer_call_and_interactions_heading: 'Transfer call and interaction',\n\n call_panel_conference_submit: 'Conference',\n call_panel_transfer_submit: 'Transfer',\n call_panel_consult_submit: 'Consult',\n\n call_panel_handover_reason_label: 'Reason',\n call_panel_handover_to_label: 'To',\n call_panel_handover_comments_label: 'Comments',\n call_panel_handover_call_option_label: 'Call option',\n call_panel_handover_call_only_option: 'Call only',\n call_panel_handover_call_and_interaction_option: 'Call and interaction',\n call_panel_handover_interaction_label: 'Interaction',\n call_panel_merge_call_menu_item: 'Merge',\n call_panel_handoff_call_menu_item: 'Hand off',\n call_panel_send_dtmf_heading: 'Send DTMF',\n call_panel_expand: 'Expand call control panel',\n call_panel_collapse: 'Collapse call control panel',\n call_panel_nav_label: 'Phone panel',\n\n /* cs:DialPad */\n dial_pad_keyboard: 'Dial pad keyboard',\n dial_pad_phone_number_input_label: 'Phone number input',\n dial_pad_call_button_label: 'Call {0}',\n\n /* cs:TaskManager */\n select_multiple: 'Select multiple',\n dismiss_case: 'Dismiss case',\n task_manager_add_case: 'Add case',\n task_manager_wrap_up: 'Wrap up',\n task_manager_cases: 'Cases',\n add_cases: 'Add cases',\n open_cases: 'Open cases',\n resolved_cases: 'Resolved cases',\n no_picker_items: 'No {0}',\n selected_picker_items: 'Selected {0}',\n no_selected_picker_items: 'No selected {0}',\n search_picker_items: 'Search {0}',\n case_picker_close: 'Close case picker',\n case_manager_overflow_menu: 'All cases',\n continue_label: 'Continue',\n continue_label_a11y: 'Continue with {0}',\n review_label: 'Review',\n review_label_a11y: 'Review {0}',\n dismiss_label: 'Dismiss',\n dismiss_label_a11y: 'Dismiss {0}',\n task_manager_picker_add_label: {\n zero: 'No items to add',\n one: 'Add {0} new item',\n two: 'Add {0} new items',\n few: 'Add {0} new items',\n many: 'Add {0} new items',\n other: 'Add {0} new items'\n },\n show_detected_entities: 'Show detected entities',\n nothing_detected_yet: 'Nothing detected yet',\n ai_detected_entities: 'AI detected entities',\n close_conversation: 'Close conversation',\n shortcut_AddTask: 'Open task picker',\n shortcut_WrapUp: 'Wrap up interaction',\n live_transcript: 'Live transcript',\n open_live_transcript: 'Open live transcript',\n close_live_transcript: 'Close live transcript',\n download_live_transcript: 'Download live transcript',\n transcripts: 'Transcripts',\n verbatim: 'Verbatim',\n dialog: 'Dialog',\n download_transcript: 'Download transcript',\n follow_up_tasks: 'Follow-up tasks',\n add_follow_up_task: 'Add follow-up task',\n agents_utterance: \"Agent's utterance in context\",\n\n /* cs:Sentiment */\n sentiment_positive: 'Positive',\n sentiment_negative: 'Negative',\n sentiment_neutral: 'Neutral',\n\n /* cs:IntelligentGuidance */\n no_recommendations: 'No recommendations',\n\n /* condition-builder:ConditionBuilder */\n condition_builder_advanced_condition_label: 'Advanced condition',\n condition_builder_advanced_condition_placeholder: 'Advanced condition',\n condition_builder_advanced_mode_button_label: 'Advanced mode',\n condition_builder_basic_mode_button_label: 'Basic mode',\n condition_builder_advanced_mode_button_aria_label: 'Switch to advanced mode',\n condition_builder_basic_mode_button_aria_label: 'Switch to basic mode',\n condition_builder_mode_switch: 'Mode switched',\n condition_builder_advanced_condition_tooltip:\n 'A logical expression representing an advanced condition. Use numbers like 1,2,3,… to represent different condition rows. Use {0} operators and parentheses to construct advanced conditions. Example: {1}',\n condition_builder_condition_select_info_default: 'No selection',\n condition_builder_possible_values_label: 'Values',\n condition_builder_possible_values_error: 'Error retrieving values',\n condition_builder_multi_selection_text_default: 'Select values',\n condition_builder_single_selection_text_default: 'Select value',\n condition_builder_switch_banner_text:\n 'Switching from advanced mode can reset all AND/OR/NOT operators. Do you want to continue?',\n condition_builder_confirm_button_label: 'OK',\n condition_builder_empty_selection_error_text: 'No selection',\n condition_builder_empty_value_text: 'Empty value',\n condition_builder_compare_with: 'Compare with {0}',\n condition_builder_compare_with_another_field: 'Another field',\n condition_builder_compare_with_parameter: 'Parameter',\n condition_builder_compare_with_relative_date: 'Relative date',\n condition_builder_compare_with_text_value: 'Text value',\n condition_builder_compare_with_numeric_value: 'Numeric value',\n condition_builder_compare_with_date_value: 'Date value',\n condition_builder_compare_with_time_value: 'Time value',\n condition_builder_invalid_time_period: 'Invalid time period',\n condition_builder_invalid_relative_date: 'Invalid relative date',\n condition_builder_invalid_value: 'Invalid value',\n condition_builder_invalid_values: 'Invalid values',\n condition_builder_invalid_time: 'Invalid time',\n condition_builder_invalid_date: 'Invalid date',\n condition_builder_invalid_number: 'Invalid number',\n condition_builder_invalid_date_range: 'Invalid date range',\n condition_builder_invalid_time_range: 'Invalid time range',\n condition_builder_invalid_number_range: 'Invalid range',\n condition_builder_select_placeholder: 'Select…',\n condition_builder_hour_number_of_day: '{0} (hour of day)',\n condition_builder_rhs_with_time_only_input: 'Rhs with Time only input',\n condition_builder_rhs_with_date_only_input: 'Rhs with Date only input',\n condition_builder_rhs_with_date_time_input: 'Rhs with Date Time input',\n condition_builder_rhs_with_csv_input: 'Rhs with csv input',\n condition_builder_no_selection: 'No selection',\n condition_builder_enter_csv_placeholder: 'Enter comma separated values',\n condition_builder_day_number_of_month: {\n zero: '{0}th day of the month',\n one: '{0}st day of the month',\n two: '{0}nd day of the month',\n few: '{0}rd day of the month',\n many: '{0}th day of the month',\n other: '{0}th day of the month'\n },\n condition_builder_year: 'Year(s)',\n condition_builder_quarter: 'Quarter(s)',\n condition_builder_month: 'Month(s)',\n condition_builder_week: 'Week(s)',\n condition_builder_day: 'Day(s)',\n condition_builder_hour: 'Hour(s)',\n condition_builder_minute: 'Minute(s)',\n condition_builder_second: 'Second(s)',\n condition_builder_date_function_hour_of_day: 'Hour of day',\n condition_builder_date_function_month_of_year: 'Month of year',\n condition_builder_date_function_day_of_month: 'Day of month',\n condition_builder_date_function_day_of_week: 'Day of week',\n condition_builder_date_part: 'Date part',\n condition_builder_current_second: 'Current second',\n condition_builder_current_minute: 'Current minute',\n condition_builder_current_hour: 'Current hour',\n condition_builder_current_day: 'Current day',\n condition_builder_current_week: 'Current week',\n condition_builder_current_month: 'Current month',\n condition_builder_current_quarter: 'Current quarter',\n condition_builder_current_year: 'Current year',\n condition_builder_last_X_seconds: {\n zero: 'Current second',\n one: 'Last second',\n two: 'Last {0} seconds',\n few: 'Last {0} seconds',\n many: 'Last {0} seconds',\n other: 'Last {0} seconds'\n },\n condition_builder_last_X_minutes: {\n zero: 'Current minute',\n one: 'Last minute',\n two: 'Last {0} minutes',\n few: 'Last {0} minutes',\n many: 'Last {0} minutes',\n other: 'Last {0} minutes'\n },\n condition_builder_last_X_hours: {\n zero: 'Current hour',\n one: 'Last hour',\n two: 'Last {0} hours',\n few: 'Last {0} hours',\n many: 'Last {0} hours',\n other: 'Last {0} hours'\n },\n condition_builder_last_X_days: {\n zero: 'Current day',\n one: 'Last day',\n two: 'Last {0} days',\n few: 'Last {0} days',\n many: 'Last {0} days',\n other: 'Last {0} days'\n },\n condition_builder_last_X_weeks: {\n zero: 'Current week',\n one: 'Last week',\n two: 'Last {0} weeks',\n few: 'Last {0} weeks',\n many: 'Last {0} weeks',\n other: 'Last {0} weeks'\n },\n condition_builder_last_X_months: {\n zero: 'Current month',\n one: 'Last month',\n two: 'Last {0} months',\n few: 'Last {0} months',\n many: 'Last {0} months',\n other: 'Last {0} months'\n },\n condition_builder_last_X_quarters: {\n zero: 'Current quarter',\n one: 'Last quarter',\n two: 'Last {0} quarters',\n few: 'Last {0} quarters',\n many: 'Last {0} quarters',\n other: 'Last {0} quarters'\n },\n condition_builder_last_X_years: {\n zero: 'Current year',\n one: 'Last year',\n two: 'Last {0} years',\n few: 'Last {0} years',\n many: 'Last {0} years',\n other: 'Last {0} years'\n },\n condition_builder_next_X_seconds: {\n zero: 'Current second',\n one: 'Next second',\n two: 'Next {0} seconds',\n few: 'Next {0} seconds',\n many: 'Next {0} seconds',\n other: 'Next {0} seconds'\n },\n condition_builder_next_X_minutes: {\n zero: 'Current minute',\n one: 'Next minute',\n two: 'Next {0} minutes',\n few: 'Next {0} minutes',\n many: 'Next {0} minutes',\n other: 'Next {0} minutes'\n },\n condition_builder_next_X_hours: {\n zero: 'Current hour',\n one: 'Next hour',\n two: 'Next {0} hours',\n few: 'Next {0} hours',\n many: 'Next {0} hours',\n other: 'Next {0} hours'\n },\n condition_builder_next_X_days: {\n zero: 'Current day',\n one: 'Next day',\n two: 'Next {0} days',\n few: 'Next {0} days',\n many: 'Next {0} days',\n other: 'Next {0} days'\n },\n condition_builder_next_X_weeks: {\n zero: 'Current week',\n one: 'Next week',\n two: 'Next {0} weeks',\n few: 'Next {0} weeks',\n many: 'Next {0} weeks',\n other: 'Next {0} weeks'\n },\n condition_builder_next_X_months: {\n zero: 'Current month',\n one: 'Next month',\n two: 'Next {0} months',\n few: 'Next {0} months',\n many: 'Next {0} months',\n other: 'Next {0} months'\n },\n condition_builder_next_X_quarters: {\n zero: 'Current quarter',\n one: 'Next quarter',\n two: 'Next {0} quarters',\n few: 'Next {0} quarters',\n many: 'Next {0} quarters',\n other: 'Next {0} quarters'\n },\n condition_builder_next_X_years: {\n zero: 'Current year',\n one: 'Next year',\n two: 'Next {0} years',\n few: 'Next {0} years',\n many: 'Next {0} years',\n other: 'Next {0} years'\n },\n condition_builder_previous_X_seconds: {\n zero: 'Current second',\n one: 'Previous second',\n two: 'Previous {0} seconds',\n few: 'Previous {0} seconds',\n many: 'Previous {0} seconds',\n other: 'Previous {0} seconds'\n },\n condition_builder_previous_X_minutes: {\n zero: 'Current minute',\n one: 'Previous minute',\n two: 'Previous {0} minutes',\n few: 'Previous {0} minutes',\n many: 'Previous {0} minutes',\n other: 'Previous {0} minutes'\n },\n condition_builder_previous_X_hours: {\n zero: 'Current hour',\n one: 'Previous hour',\n two: 'Previous {0} hours',\n few: 'Previous {0} hours',\n many: 'Previous {0} hours',\n other: 'Previous {0} hours'\n },\n condition_builder_previous_X_days: {\n zero: 'Current day',\n one: 'Previous day',\n two: 'Previous {0} days',\n few: 'Previous {0} days',\n many: 'Previous {0} days',\n other: 'Previous {0} days'\n },\n condition_builder_previous_X_weeks: {\n zero: 'Current week',\n one: 'Previous week',\n two: 'Previous {0} weeks',\n few: 'Previous {0} weeks',\n many: 'Previous {0} weeks',\n other: 'Previous {0} weeks'\n },\n condition_builder_previous_X_months: {\n zero: 'Current month',\n one: 'Previous month',\n two: 'Previous {0} months',\n few: 'Previous {0} months',\n many: 'Previous {0} months',\n other: 'Previous {0} months'\n },\n condition_builder_previous_X_quarters: {\n zero: 'Current quarter',\n one: 'Previous quarter',\n two: 'Previous {0} quarters',\n few: 'Previous {0} quarters',\n many: 'Previous {0} quarters',\n other: 'Previous {0} quarters'\n },\n condition_builder_previous_X_years: {\n zero: 'Current year',\n one: 'Previous year',\n two: 'Previous {0} years',\n few: 'Previous {0} years',\n many: 'Previous {0} years',\n other: 'Previous {0} years'\n },\n condition_builder_time_period_label: 'Time period',\n condition_builder_time_period_last: 'Last',\n condition_builder_time_period_current: 'Current',\n condition_builder_time_period_previous: 'Previous',\n condition_builder_time_period_next: 'Next',\n condition_builder_value_label: 'Value',\n condition_builder_field_label: 'Field',\n condition_builder_comparator_label: 'Conditional operator',\n\n /* condition-builder:PromotedFilters */\n promoted_filters_clear_all_button_label: 'Clear all filters',\n\n /* build:AppShell */\n dev_mode: 'Dev mode',\n expand_navigation: 'Expand navigation',\n collapse_navigation: 'Collapse navigation',\n switch_to: 'Switch to…',\n expand_search: 'Expand search',\n collapse_search: 'Collapse search',\n\n /* build:BranchButton */\n branch_with_no_changes: '{0} with no changes',\n branch_with_no_potential_conflicts: '{0} with no potential conflicts and {1} unmerged changes',\n branch_with_potential_conflicts: '{0} with potential conflicts',\n\n /* build:Lifecycle */\n parallel: 'Parallel',\n stage: 'Stage',\n alternate_stage: 'Alternate stage',\n add_stage: 'Add stage',\n add_process: 'Add process',\n add_alternate_stage: 'Add alternate stage',\n stage_name: '{0} stage',\n process_name: '{0} process',\n step_name: '{0} step',\n item_error: '{0} error',\n step_name_error: '{0} step has configuration error',\n stage_name_error: '{0} stage has configuration error',\n process_name_error: '{0} process has configuration error',\n\n /* build:FlowModeller */\n add_node: 'Add node',\n search_nodes: 'Search nodes',\n delete_step: 'This step has multiple outcomes, are you sure want to delete this step?',\n delete_decision_step:\n 'Select outcome that you want to retain. The remaining highlighted outcomes will be deleted',\n delete_step_title: 'Delete step',\n delete_step_outcome: 'Outcome to keep',\n delete_all_outcomes: 'None (delete all outcomes)',\n delete_step_error: 'This step can\\'t be deleted as the outcome selected has a \"Go to\" step.',\n delete_referenced_step_error:\n 'This step can\\'t be deleted as it is referenced by a \"Go to\" step.',\n delete_connector_error:\n 'Connector cannot be deleted unless Goto step is deleted from all branches',\n\n /* build:Workbench */\n zoom_level: 'Zoom level',\n close_configuration_panel: 'Close configuration panel',\n\n /* build:ObjectSelect */\n clear_object_summary: 'Clear {0} selection',\n create_in_new_tab: 'Create new, opens in new tab',\n\n /* build:ExpressionBuilder */\n expression_editor: 'Expression editor',\n output_parameters: 'Output parameters',\n input_parameters: 'Input parameters',\n\n /* build:MobileBuildSummary */\n no_app_build: 'There is no app build',\n build_app: 'Build app',\n build_in_progress: 'Building…',\n rebuild_app: 'Rebuild app',\n download_app: 'Download app',\n qr_code_not_available: 'No QR code available yet',\n qr_code: 'QR code',\n\n /* wss:AppHeader */\n app_header_notifications_empty: 'No notifications',\n app_header_notifications_loading: 'Loading notifications',\n open_app_header_notifications: 'Open notifications',\n open_app_header_drawer: 'Open navigation menu',\n\n /* tools: PreviewShell */\n preview_frame: 'Preview frame',\n open_in_new_window_text: 'Open in new window',\n more_options: 'More options',\n dev_tools: 'dev tools',\n\n /* tools: DevTools */\n active_session_info: 'Debugging for this session is active in another window',\n continue_debugging: 'Continue debugging',\n\n /* Launchpad: IconTiles */\n action_task: 'Action task',\n task_object: 'Task object',\n view_rule: 'View rule',\n system_rule: 'System rule',\n record_rule: 'Record rule',\n portal_rule: 'Portal rule',\n persona_rule: 'Persona rule',\n permission_rule: 'Permission rule',\n live_data_rule: 'Live data rule',\n integration_system_rule: 'Integration system rule',\n insight_rule: 'Insight rule',\n field_rule: 'Field rule',\n data_page_rule: 'Data page rule',\n connector_rule: 'Connector rule',\n configuration_rule: 'Configuration rule',\n authenticate_rule: 'Authenticate rule',\n when_logic: 'When logic',\n validation_logic: 'Validation logic',\n function_logic: 'Function logic',\n decision_step_logic: 'Decision step logic',\n case_wait: 'Case wait object',\n case_stage: 'Case stage object',\n case_sla: 'Case SLA object',\n case_process: 'Case process object',\n case_go_to: 'Case go-to object',\n case_object: 'Case object',\n set_automation: 'Set automation',\n return_automation: 'Return automation',\n for_each_automation: 'For each automation',\n call_automation: 'Call automation',\n append_automation: 'Append automation',\n automation_object: 'Automation object',\n ai_object: 'AI object'\n};\n"]}
|
|
1
|
+
{"version":3,"file":"default.js","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":"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","sourcesContent":["export default {\n // -----------------------------------------------------------------------------\n // Common translation entries\n // -----------------------------------------------------------------------------\n\n /* Nouns, Types, Terms, Phrases, etc... */\n yes: 'Yes',\n no: 'No',\n filters: 'Filters',\n actions: 'Actions',\n status: 'Status',\n additional_info: 'Additional info',\n search_placeholder_default: 'Search…',\n select_placeholder_default: 'Select…',\n description: 'Description',\n all: 'All',\n default: 'default',\n app_default: 'app default',\n sitewide: 'Sitewide',\n opens_in_a_new_tab: 'Opens in a new tab',\n summary: 'Summary',\n utilities: 'Utilities',\n search: 'Search',\n menu: 'menu',\n new: 'New',\n info: 'info',\n shortcuts: 'Shortcuts',\n\n /* Verbs */\n remove: 'Remove',\n follow: 'Follow',\n unfollow: 'Unfollow',\n add: 'Add',\n cancel: 'Cancel',\n try_again: 'Try again',\n update: 'Update',\n submit: 'Submit',\n apply: 'Apply',\n select: 'Select',\n edit: 'Edit',\n preview: 'Preview',\n decline: 'Decline',\n delete: 'Delete',\n close: 'Close',\n activate: 'Activate',\n expand: 'Expand',\n collapse: 'Collapse',\n accept: 'Accept',\n clear: 'Clear',\n use: 'Use',\n undo: 'Undo',\n redo: 'Redo',\n filter: 'Filter',\n sort: 'Sort',\n group: 'Group',\n go: 'Go',\n configure: 'Configure',\n dismiss: 'Dismiss',\n due: 'Due',\n\n /* Static verb noun */\n view_all: 'View all',\n view_less: 'View less',\n show_more: 'Show more',\n show_less: 'Show less',\n show_all: 'Show all',\n clear_all: 'Clear all',\n link_open_in_tab_text: 'Open in tab',\n edit_details: 'Edit details',\n add_emoji: 'Add emoji',\n create_new: 'Create new',\n submit_and_open: 'Submit and open',\n add_condition: 'Add condition',\n\n /* Dynamic verb {noun} */\n open_noun: 'Open {0}',\n close_noun: 'Close {0}',\n view_all_noun: 'View all {0}',\n view_less_noun: 'View less {0}',\n expand_noun: 'Expand {0}',\n add_noun: 'Add {0}',\n collapse_noun: 'Collapse {0}',\n checked_noun: '{0} checked',\n selected_noun: '{0} selected',\n unselected_noun: '{0} unselected',\n use_input_value: 'Use {0}',\n preview_of_noun: 'Preview of {0}',\n go_to_noun: 'Go to {0}',\n insert_noun: 'Insert {0}',\n delete_noun: 'Delete {0}',\n actions_for: 'Actions for {0}',\n\n /* States */\n edited: 'Edited {0}',\n done: 'Done',\n uploading: 'Uploading',\n loading: 'Loading…',\n loaded: 'Loaded',\n submitting: 'Submitting…',\n no_items: 'No items',\n unknown_error: 'Unknown error',\n image_load_error: 'Error loading image',\n selected: 'Selected',\n selected_count: {\n zero: '{0} selected',\n one: '{0} selected',\n two: '{0} selected',\n few: '{0} selected',\n many: '{0} selected',\n other: '{0} selected'\n },\n completed: 'Completed',\n current: 'Current',\n previous: 'Previous',\n not_started: 'Not started',\n empty_value: 'Empty value',\n no_value: 'no value',\n delivered: 'Delivered',\n sent: 'Sent',\n active: 'Active',\n read_only: 'Read only',\n information: 'Information',\n error: 'Error',\n warning: 'Warning',\n success: 'Success',\n pass: 'Pass',\n fail: 'Fail',\n did_not_ask: 'Did not ask',\n\n /* Date and time */\n day_placeholder: 'DD',\n month_placeholder: 'MM',\n year_placeholder: 'YYYY',\n hour_placeholder: 'hh',\n minute_placeholder: 'mm',\n second_placeholder: 'ss',\n meridiem_value_am: 'AM',\n meridiem_value_pm: 'PM',\n week_placeholder: 'WW',\n seconds_text: 'Seconds',\n minutes_text: 'Minutes',\n hours_text: 'Hours',\n days_text: 'Days',\n time_text: 'Time',\n time_format_info: 'hh:mm:ss',\n date_quarter_q1: 'Q1 {0}',\n date_quarter_q2: 'Q2 {0}',\n date_quarter_q3: 'Q3 {0}',\n date_quarter_q4: 'Q4 {0}',\n time_unit: 'Time Unit',\n\n /* Count based types */\n attachments_count: {\n zero: 'No attachments',\n one: '{0} attachment',\n two: '{0} attachments',\n few: '{0} attachments',\n many: '{0} attachments',\n other: '{0} attachments'\n },\n results_count: {\n zero: 'No results',\n one: '{0} result',\n two: '{0} results',\n few: '{0} results',\n many: '{0} results',\n other: '{0} results'\n },\n recent_results_count: {\n zero: 'No recent results',\n one: '{0} recent result',\n two: '{0} recent results',\n few: '{0} recent results',\n many: '{0} recent results',\n other: '{0} recent results'\n },\n new_emails_count: {\n zero: 'No new emails',\n one: '{0} new email',\n two: '{0} new emails',\n few: '{0} new emails',\n many: '{0} new emails',\n other: '{0} new emails'\n },\n\n /* Pagination */\n pagination_page_of: 'Page {0} of {1}',\n pagination_next: 'Next',\n pagination_prev: 'Previous',\n\n /* Range */\n range_from_datetime: 'Since',\n range_to_datetime: 'Until',\n range_from_numeric: 'From',\n range_to_numeric: 'To',\n\n /* Miscellaneous */\n x_of_y: '{0} of {1}',\n\n // -----------------------------------------------------------------------------\n // {pkg}:{ComponentDir} entries\n // -----------------------------------------------------------------------------\n\n /* core:Link */\n preview_link_instruction: 'Press {0} and p to open this link in a preview.',\n\n /* core:LiveLog */\n polite_announcements: 'Polite Announcements',\n assertive_announcements: 'Assertive Announcements',\n\n /* core:SkipLinks */\n go_to_main_content: 'Go to main content',\n main_content: 'Main content',\n\n /* core:AppShell */\n app_shell_create: 'Create',\n app_shell_open_nav: 'Open navigation menu',\n app_shell_main_navigation_label: 'Main',\n shortcut_NextRegion: 'Next region',\n shortcut_PrevRegion: 'Previous region',\n\n /* core:ComboBox */\n combobox_open_close: 'Arrow down to open, press escape to close.',\n combobox_search_instructions: 'Start typing to search',\n combobox_open_list_button_a11y: 'Open combobox list',\n combobox_close_list_button_a11y: 'Close combobox list',\n multiselect_instructions: 'Arrow {0} from start to review selected items',\n selected_items: 'Selected items',\n\n /* core:Menu */\n menu_selection_instructions: 'Press enter to select items.',\n menu_item_expand_arrow: '{0}. Arrow right to expand.',\n menu_item_collapse_arrow: 'Arrow left to collapse.',\n menu_item_collapse_shift_space: 'Press shift space to collapse.',\n menu_item_shift_space_expand_collapse: '{0}. Press shift space to expand and collapse.',\n menu_option_list: 'Options list',\n menu_item_count: 'Contains {0} items.',\n menu_collapsed: '{0} collapsed',\n menu_expanded: '{0} expanded.',\n\n /* core:Modal */\n modal_minimize: 'Minimize modal',\n modal_maximize: 'Maximize modal',\n modal_dock: 'Dock Modal',\n modal_close: 'Close modal',\n\n /* core:Datetime */\n selected_date_a11y: 'Selected date:',\n open_calendar_button_a11y: 'Open calendar',\n close_calendar_button_a11y: 'Close calendar',\n open_time_button_a11y: 'Open time picker',\n close_time_button_a11y: 'Close time picker',\n set_current_date_and_time_a11y: 'Set current date and time',\n set_current_date_a11y: 'Set current date',\n clear_current_date_and_time: 'Clear current date and time',\n clear_current_date: 'Clear current date',\n picker_next_month: 'Next month',\n picker_prev_month: 'Previous month',\n picker_jump_to_month_and_year: 'Jump to month and year selection',\n calendar_assist: 'Use cursor keys to navigate dates',\n calendar: 'Calendar',\n choose_date: 'Choose date',\n choose_date_and_time: 'Choose date and time',\n choose_week: 'Choose week',\n\n /* core:Boolean */\n boolean_display_true_label: 'Yes',\n boolean_display_false_label: 'No',\n\n /* core:MultiStepForm */\n step_changed_to_name: 'Step changed to {0}',\n\n /* core:Number */\n measured_in: 'measured in {0}',\n\n /* core:Banner */\n banner_dismiss_button_label_a11y: 'Dismiss banner',\n\n /* core:File */\n file_upload_text_main: 'Drag and drop or {0}',\n file_upload_text_one: 'choose a file',\n file_upload_text_multiple: 'choose files',\n download_file: 'Download {0}',\n open_file_in_new_tab: 'Open {0} in new tab',\n\n /* core:Location */\n my_current_location_button_a11y: 'Use my current location',\n location_input_placeholder: 'Enter a location',\n location_not_found_text: 'Location not found',\n allow_location_permissions_text:\n 'To get current location, allow location permissions for this app',\n\n /* core:SearchInput */\n advanced_search: 'Advanced search',\n select_search_filter: 'Select search filter',\n recent_searches: 'Recent searches',\n clear_search: 'Clear search',\n search_instructions: 'Use arrow keys to move up and down the suggested results.',\n\n /* core:SummaryList */\n action_from_summarylist_heading: '{0} from {1}',\n selected_search_filter: 'Filter search by: {0}',\n\n /* work:CaseView */\n utilities_label: 'Utilities',\n utilities_summary: 'Utilities summary',\n expand_summary: 'Expand summary',\n collapse_summary: 'Collapse summary',\n expand_utilities_panel: 'Expand utilities',\n collapse_utilities_panel: 'Collapse utilities',\n primary_summary_fields: 'Primary summary fields',\n summary_fields: 'Summary fields',\n\n /* core:FormField */\n accept_suggestion_button_a11y: 'Accept AI suggestion',\n reject_suggestion_button_a11y: 'Reject AI suggestion',\n suggestion_info: 'Accept AI suggestion?',\n suggestion_assist:\n 'Either press Enter to accept the AI suggestion or edit the value to reject it',\n\n /* core:Phone Input */\n select_country_code: 'Select country code',\n enter_a_number: 'Enter a number',\n\n /* core:SkipLinks */\n skip_navigation_menu_label: 'Skip navigation menu',\n\n /* core:Tabs */\n tab_error_tooltip: '{0} has errors',\n\n /* work:Assignments */\n assignments: 'Assignments',\n\n /* work:ArticleList */\n article_list_label_a11y: 'Article list',\n article_list_filter_label_a11y: 'Article lists filter',\n article_list_header_submit_label: 'Submit',\n clear_filters: 'Clear filters',\n suggest_article: 'Suggest article',\n suggested: 'Suggested',\n followed: 'Followed',\n buddy: 'Buddy',\n disclaimer: 'Disclaimer',\n references: 'References',\n result_available: 'Result available',\n\n /* work:Article */\n article_label_a11y: 'Article',\n article_related_links: 'Related links',\n article_more_like_this: 'More like this',\n article_was_this_helpful: 'Was this helpful?',\n article_thank_you_for_your_feedback: 'Thank you for your feedback',\n article_attachments: 'Attachments',\n likes: 'Likes',\n dislikes: 'Dislikes',\n like: 'Like',\n dislike: 'Dislike',\n\n /* work:CasePreview */\n close_preview: 'Close preview',\n\n /* work:Confirmation */\n confirmation_whats_next: \"What's next\",\n confirmation_open_tasks: 'Open tasks',\n\n /* work:Stakeholders */\n add_stakeholders: 'Add stakeholder',\n edit_stakeholder: 'Edit stakeholder',\n view_stakeholders: 'Stakeholders',\n stakeholders_role: 'Role',\n stakeholders: {\n zero: '{0} stakeholders',\n one: '{0} stakeholder',\n two: '{0} stakeholders',\n few: '{0} stakeholders',\n many: '{0} stakeholders',\n other: '{0} stakeholders'\n },\n\n /* work:Tags */\n edit_tags: 'Edit tags',\n tags: 'Tags',\n\n /* work:Glimpse */\n view_profile: 'View profile',\n\n /* work:Timeline */\n timeline_toolbar_sort_descending: 'Newest first',\n timeline_toolbar_sort_ascending: 'Oldest first',\n timeline_toolbar_group_date: 'By day',\n timeline_toolbar_group_monthyear: 'By month',\n timeline_toolbar_group_quarteryear: 'By quarter',\n timeline_toolbar_group_year: 'By year',\n timeline_toolbar_group_none: 'Off',\n\n /* work:AppAnnouncement */\n app_announcement_dismiss_button_label_a11y: 'Hide until next update',\n app_announcement_details_list_header: 'Announcements',\n app_announcement_whats_new_button_label: \"See what's new\",\n\n /* work:Stages */\n stages_label: 'Case stages',\n stages_see_full_lifecycle: 'See full lifecycle',\n stages_case_lifecycle: '{0} lifecycle',\n stages_default_case_lifecycle: 'Case lifecycle',\n stages_stage_label: 'Stage {0}, {1}',\n stages_description: 'Use horizontal arrow keys to navigate.',\n\n /* work:Predictions */\n predictions: 'Predictions',\n all_predictions: 'All predictions',\n learn_more: 'Learn more',\n\n /* work:TaskList */\n tasks_added: {\n zero: 'No tasks added',\n one: '{0} task added',\n two: '{0} tasks added',\n few: '{0} tasks added',\n many: '{0} tasks added',\n other: '{0} tasks added'\n },\n tasks_removed: {\n zero: 'No tasks removed',\n one: '{0} task removed',\n two: '{0} tasks removed',\n few: '{0} tasks removed',\n many: '{0} tasks removed',\n other: '{0} tasks removed'\n },\n\n /* work:InteractionNotification */\n interaction_time_expired: 'The time to accept the interaction has expired.',\n interaction_time_remaining: {\n zero: 'The time to accept the interaction has expired.',\n one: '{0} second remaining to accept the interaction.',\n two: '{0} seconds remaining to accept the interaction.',\n few: '{0} seconds remaining to accept the interaction.',\n many: '{0} seconds remaining to accept the interaction.',\n other: '{0} seconds remaining to accept the interaction.'\n },\n interaction_shortcut_goto_info: 'Press {0} to review.',\n interaction_shortcut_dismiss_info: 'Press {0} to dismiss.',\n shortcut_GoToIncomingInteraction: 'Go to incoming interaction popup.',\n shortcut_DismissIncomingInteraction: 'Dismiss incoming interaction popup.',\n\n /* rte:RichTextEditor */\n rte_heading_style: 'Heading style',\n rte_bold: 'Bold',\n rte_italic: 'Italic',\n rte_strike_through: 'Strike-through',\n rte_cut: 'Cut',\n rte_copy: 'Copy',\n rte_paste: 'Paste',\n rte_bulleted_list: 'Bulleted list',\n rte_numbered_list: 'Numbered list',\n rte_indent: 'Indent',\n rte_unindent: 'Unindent',\n rte_table: 'Table',\n rte_link: 'Link',\n rte_image: 'Image',\n rte_invalid_html: 'Invalid HTML',\n rte_insert_field: 'Insert field',\n rte_invalid_url: 'Invalid URL',\n rte_change_text_format: 'Change text format to',\n rte_toggle_unordered_list: 'Toggle unordered list',\n rte_indent_selection: 'Indent selection',\n rte_unindent_selection: 'Unindent selection',\n rte_toolbar_instructions: 'Hit tab to enter the editor toolbar',\n rte_text_formatting_toolbar: 'Text formatting toolbar',\n rte_image_description_info: 'Provides an alternate (ALT) description for the visually impaired',\n rte_image_custom_size: 'Custom size',\n rte_width_in_pixels: 'Width (in pixels)',\n rte_height_in_pixels: 'Height (in pixels)',\n rte_image_settings: 'Image settings',\n rte_image_key_command: 'Press enter to edit the image',\n\n /* social:Email */\n expand_forwarded_message: 'Expand forwarded message',\n collapse_forwarded_message: 'Collapse forwarded message',\n copy_to: 'Copy to',\n subject_label: 'Subject: {0}',\n search_results: 'Search results',\n\n /* social:Feed */\n feed_new_post: 'Start a conversation',\n feed_new_post_submit: 'Post',\n feed_new_comment: 'New comment',\n feed_new_comment_submit: 'Comment',\n feed_attach_files: 'Attach files',\n feed_post_actions_menu: 'More',\n feed_edit_post: 'Edit post',\n feed_edit_comment: 'Edit comment',\n feed_context: 'in {0}',\n feed_liked_by: 'Liked by {0}',\n feed_likes: 'Likes',\n feed_private_post: 'Private post',\n feed_public_post: 'Public post',\n feed_recipients: 'Recipients',\n feed_like_label: 'Like',\n feed_unlike_label: 'Unlike',\n feed_post_likes: {\n zero: 'No likes',\n one: '{0} like',\n two: '{0} likes',\n few: '{0} likes',\n many: '{0} likes',\n other: '{0} likes'\n },\n feed_comment_label: 'Comment',\n feed_post_comments: {\n zero: 'No comments',\n one: '{0} comment',\n two: '{0} comments',\n few: '{0} comments',\n many: '{0} comments',\n other: '{0} comments'\n },\n feed_attachments_added: {\n zero: 'No attachments added',\n one: '{0} attachment added',\n two: '{0} attachments added',\n few: '{0} attachments added',\n many: '{0} attachments added',\n other: '{0} attachments added'\n },\n feed_attachments_removed: {\n zero: 'No attachments removed',\n one: '{0} attachment removed',\n two: '{0} attachments removed',\n few: '{0} attachments removed',\n many: '{0} attachments removed',\n other: '{0} attachments removed'\n },\n feed_post_liked: 'Post has been liked',\n feed_post_deliked: 'Post has been deliked',\n feed_post_removed: 'Post has been removed',\n feed_comment_removed: 'Comment has been removed',\n showing_num_of_num: 'Showing {0} of {1}',\n feed_new_post_added: {\n zero: 'No posts added',\n one: '{0} post added',\n two: '{0} posts added',\n few: '{0} posts added',\n many: '{0} posts added',\n other: '{0} posts added'\n },\n new_item_added: {\n zero: 'No items added',\n one: '{0} new item added',\n two: '{0} new items added',\n few: '{0} new items added',\n many: '{0} new items added',\n other: '{0} new items added'\n },\n loading_post: 'Loading post',\n mention_type: 'Mention a {0}',\n\n /* cs:Chat */\n scroll_to_latest_message: 'Scroll to latest message',\n scroll_to_unread_messages: 'Scroll to unread messages',\n suggested_replies_current_of_total: 'Suggested reply {0} of {1}',\n suggested_replies: 'Suggested replies',\n confidence_percentage: '{0}% confidence',\n next_suggested_reply: 'Next suggested reply',\n prev_suggested_reply: 'Previous suggested reply',\n dismiss_suggested_replies: 'Dismiss suggested replies',\n message_sent: 'Message sent',\n temporarilyUnavailable: 'Temporarily unavailable',\n available: 'Available',\n unavailable: 'Unavailable',\n authenticated: 'Authenticated',\n not_authenticated: 'Not authenticated',\n context: 'Context',\n chat_context: 'Chat context',\n bot: 'Bot',\n is_typing: '{0} is typing {1}',\n chat_message_at_timestamp: '{0} at {1}.',\n sender_replied_message: '{0} replied {1}',\n chat_attachments: '{0} with {1} attachments',\n chat_links: '{0} with {1} links',\n chat_message_status: 'Message {0}',\n opened: 'Opened',\n undeliverable: 'Undeliverable',\n new_message: 'New message',\n attachments: 'attachments',\n attachments_x_of_y: 'attachment {0} of {1}',\n edit_current_template: 'Edit suggested reply {0} of {1}',\n send_current_template: 'Send suggested reply {0} of {1}',\n expand_suggested_replies: 'Expand suggested replies',\n collapse_suggested_replies: 'Collapse suggested replies',\n replies_count: '{0} of {1}',\n no_suggestion: 'No suggestions',\n suggested_reply_copied_to_input_field: 'Suggested reply copied to input field',\n\n /* cs:Email */\n unique_entities: {\n zero: 'No unique entities',\n one: '{0} unique entity',\n two: '{0} unique entities',\n few: '{0} unique entities',\n many: '{0} unique entities',\n other: '{0} unique entities'\n },\n more_count: '{0} more…',\n other_responses: 'Other responses',\n empty_search: 'Enter a search term',\n new_messages: 'New messages',\n earlier_transcripts: 'Earlier transcripts',\n send: 'Send',\n compose_label: 'Compose',\n save_as_draft: 'Save as draft',\n enter_message: 'Enter message',\n download: 'Download',\n close_chat_utility: 'Close chat utility',\n email_account: 'Email account',\n subject: 'Subject',\n to: 'To',\n from: 'From',\n cc: 'Cc',\n bcc: 'Bcc',\n date: 'Date',\n reply: 'Reply',\n reply_all: 'Reply all',\n response_templates: 'Response templates',\n forward: 'Forward',\n email: 'Email',\n email_message: 'Email message',\n email_filters: 'Email filters',\n unread_email_count: '{0} of {1} unread',\n priority: 'Priority',\n inbox: 'Inbox',\n insert: 'Insert',\n email_add_attachment: 'Add attachment, the maximum number of attachments allowed is {0}.',\n email_disable_attachment:\n 'Adding attachments are disabled, the maximum number of attachments allowed is {0}.',\n email_remove_attachment: 'Remove attachment',\n loading_email: 'Loading email',\n draft: {\n zero: 'No drafts',\n one: '{0} draft',\n two: '{0} drafts',\n few: '{0} drafts',\n many: '{0} drafts',\n other: '{0} drafts'\n },\n undelivered: 'Undelivered',\n drafts: 'drafts',\n unread: 'unread',\n\n /* cs:CallControlPanel */\n call_panel_heading: 'Pega call',\n call_panel_make_new_call: 'Make new call',\n call_panel_agent_status: 'Status',\n call_panel_pause_call_menu_item: 'Pause call',\n call_panel_resume_call_menu_item: 'Resume call',\n call_panel_mute_mic_menu_item: 'Mute microphone',\n call_panel_unmute_mic_menu_item: 'Unmute microphone',\n call_panel_call_on_hold: 'On hold {0}',\n call_panel_consult_call_menu_item: 'Consult',\n call_panel_transfer_call_menu_item: 'Transfer',\n call_panel_menu_item_call_only: 'Call only',\n call_panel_menu_item_call_with_interaction: 'Call and interaction',\n call_panel_send_dtmf_menu_item: 'Send DTMF',\n call_panel_conference_call_menu_item: 'Conference',\n call_panel_hangup_call_menu_item: 'Hang up',\n call_panel_contacts_add_to_favorites: 'Add to favorites',\n call_panel_contacts_remove_from_favorites: 'Remove from favorites',\n call_panel_contacts_call_button_label: 'Call',\n call_panel_contacts_list_heading: 'Contacts',\n call_panel_contacts_favorites_heading: 'Favorites',\n call_panel_contacts_dial_pad_heading: 'Dial pad',\n call_panel_new_call_heading: 'New call',\n call_panel_interaction_transfer_heading: 'Transfer initiated',\n call_panel_interaction_transfer_complete_button_label: 'Complete transfer',\n call_panel_incoming_call: 'Incoming call…',\n call_panel_answer_call: 'Answer',\n\n call_panel_conference_heading: 'Conference call',\n call_panel_conference_call_and_interactions_heading: 'Conference by call and interaction',\n call_panel_consult_heading: 'Consult by call',\n call_panel_consult_call_and_interactions_heading: 'Consult by call and interaction',\n call_panel_transfer_heading: 'Transfer call',\n call_panel_transfer_call_and_interactions_heading: 'Transfer call and interaction',\n\n call_panel_conference_submit: 'Conference',\n call_panel_transfer_submit: 'Transfer',\n call_panel_consult_submit: 'Consult',\n\n call_panel_handover_reason_label: 'Reason',\n call_panel_handover_to_label: 'To',\n call_panel_handover_comments_label: 'Comments',\n call_panel_handover_call_option_label: 'Call option',\n call_panel_handover_call_only_option: 'Call only',\n call_panel_handover_call_and_interaction_option: 'Call and interaction',\n call_panel_handover_interaction_label: 'Interaction',\n call_panel_merge_call_menu_item: 'Merge',\n call_panel_handoff_call_menu_item: 'Hand off',\n call_panel_send_dtmf_heading: 'Send DTMF',\n call_panel_expand: 'Expand call control panel',\n call_panel_collapse: 'Collapse call control panel',\n call_panel_nav_label: 'Phone panel',\n\n /* cs:DialPad */\n dial_pad_keyboard: 'Dial pad keyboard',\n dial_pad_phone_number_input_label: 'Phone number input',\n dial_pad_call_button_label: 'Call {0}',\n\n /* cs:TaskManager */\n select_multiple: 'Select multiple',\n dismiss_case: 'Dismiss case',\n task_manager_add_case: 'Add case',\n task_manager_wrap_up: 'Wrap up',\n task_manager_cases: 'Cases',\n add_cases: 'Add cases',\n open_cases: 'Open cases',\n resolved_cases: 'Resolved cases',\n no_picker_items: 'No {0}',\n selected_picker_items: 'Selected {0}',\n no_selected_picker_items: 'No selected {0}',\n search_picker_items: 'Search {0}',\n case_picker_close: 'Close case picker',\n case_manager_overflow_menu: 'All cases',\n continue_label: 'Continue',\n continue_label_a11y: 'Continue with {0}',\n review_label: 'Review',\n review_label_a11y: 'Review {0}',\n dismiss_label: 'Dismiss',\n dismiss_label_a11y: 'Dismiss {0}',\n task_manager_picker_add_label: {\n zero: 'No items to add',\n one: 'Add {0} new item',\n two: 'Add {0} new items',\n few: 'Add {0} new items',\n many: 'Add {0} new items',\n other: 'Add {0} new items'\n },\n show_detected_entities: 'Show detected entities',\n nothing_detected_yet: 'Nothing detected yet',\n ai_detected_entities: 'AI detected entities',\n close_conversation: 'Close conversation',\n shortcut_AddTask: 'Open task picker',\n shortcut_WrapUp: 'Wrap up interaction',\n live_transcript: 'Live transcript',\n open_live_transcript: 'Open live transcript',\n close_live_transcript: 'Close live transcript',\n download_live_transcript: 'Download live transcript',\n transcripts: 'Transcripts',\n verbatim: 'Verbatim',\n dialog: 'Dialog',\n download_transcript: 'Download transcript',\n follow_up_tasks: 'Follow-up tasks',\n add_follow_up_task: 'Add follow-up task',\n agents_utterance: \"Agent's utterance in context\",\n\n /* cs:Sentiment */\n sentiment_positive: 'Positive',\n sentiment_negative: 'Negative',\n sentiment_neutral: 'Neutral',\n\n /* cs:IntelligentGuidance */\n no_recommendations: 'No recommendations',\n\n /* condition-builder:ConditionBuilder */\n condition_builder_advanced_condition_label: 'Advanced condition',\n condition_builder_advanced_condition_placeholder: 'Advanced condition',\n condition_builder_advanced_mode_button_label: 'Advanced mode',\n condition_builder_basic_mode_button_label: 'Basic mode',\n condition_builder_advanced_mode_button_aria_label: 'Switch to advanced mode',\n condition_builder_basic_mode_button_aria_label: 'Switch to basic mode',\n condition_builder_mode_switch: 'Mode switched',\n condition_builder_advanced_condition_tooltip:\n 'A logical expression representing an advanced condition. Use numbers like 1,2,3,… to represent different condition rows. Use {0} operators and parentheses to construct advanced conditions. Example: {1}',\n condition_builder_condition_select_info_default: 'No selection',\n condition_builder_possible_values_label: 'Values',\n condition_builder_possible_values_error: 'Error retrieving values',\n condition_builder_multi_selection_text_default: 'Select values',\n condition_builder_single_selection_text_default: 'Select value',\n condition_builder_switch_banner_text:\n 'Switching from advanced mode can reset all AND/OR/NOT operators. Do you want to continue?',\n condition_builder_confirm_button_label: 'OK',\n condition_builder_empty_selection_error_text: 'No selection',\n condition_builder_empty_value_text: 'Empty value',\n condition_builder_compare_with: 'Compare with {0}',\n condition_builder_compare_with_another_field: 'Another field',\n condition_builder_compare_with_parameter: 'Parameter',\n condition_builder_compare_with_relative_date: 'Relative date',\n condition_builder_compare_with_text_value: 'Text value',\n condition_builder_compare_with_numeric_value: 'Numeric value',\n condition_builder_compare_with_date_value: 'Date value',\n condition_builder_compare_with_time_value: 'Time value',\n condition_builder_invalid_time_period: 'Invalid time period',\n condition_builder_invalid_relative_date: 'Invalid relative date',\n condition_builder_invalid_value: 'Invalid value',\n condition_builder_invalid_values: 'Invalid values',\n condition_builder_invalid_time: 'Invalid time',\n condition_builder_invalid_date: 'Invalid date',\n condition_builder_invalid_number: 'Invalid number',\n condition_builder_invalid_date_range: 'Invalid date range',\n condition_builder_invalid_time_range: 'Invalid time range',\n condition_builder_invalid_number_range: 'Invalid range',\n condition_builder_select_placeholder: 'Select…',\n condition_builder_hour_number_of_day: '{0} (hour of day)',\n condition_builder_rhs_with_time_only_input: 'Rhs with Time only input',\n condition_builder_rhs_with_date_only_input: 'Rhs with Date only input',\n condition_builder_rhs_with_date_time_input: 'Rhs with Date Time input',\n condition_builder_rhs_with_csv_input: 'Rhs with csv input',\n condition_builder_no_selection: 'No selection',\n condition_builder_enter_csv_placeholder: 'Enter comma separated values',\n condition_builder_day_number_of_month: {\n zero: '{0}th day of the month',\n one: '{0}st day of the month',\n two: '{0}nd day of the month',\n few: '{0}rd day of the month',\n many: '{0}th day of the month',\n other: '{0}th day of the month'\n },\n condition_builder_year: 'Year(s)',\n condition_builder_quarter: 'Quarter(s)',\n condition_builder_month: 'Month(s)',\n condition_builder_week: 'Week(s)',\n condition_builder_day: 'Day(s)',\n condition_builder_hour: 'Hour(s)',\n condition_builder_minute: 'Minute(s)',\n condition_builder_second: 'Second(s)',\n condition_builder_date_function_hour_of_day: 'Hour of day',\n condition_builder_date_function_month_of_year: 'Month of year',\n condition_builder_date_function_day_of_month: 'Day of month',\n condition_builder_date_function_day_of_week: 'Day of week',\n condition_builder_date_part: 'Date part',\n condition_builder_current_second: 'Current second',\n condition_builder_current_minute: 'Current minute',\n condition_builder_current_hour: 'Current hour',\n condition_builder_current_day: 'Current day',\n condition_builder_current_week: 'Current week',\n condition_builder_current_month: 'Current month',\n condition_builder_current_quarter: 'Current quarter',\n condition_builder_current_year: 'Current year',\n condition_builder_last_X_seconds: {\n zero: 'Current second',\n one: 'Last second',\n two: 'Last {0} seconds',\n few: 'Last {0} seconds',\n many: 'Last {0} seconds',\n other: 'Last {0} seconds'\n },\n condition_builder_last_X_minutes: {\n zero: 'Current minute',\n one: 'Last minute',\n two: 'Last {0} minutes',\n few: 'Last {0} minutes',\n many: 'Last {0} minutes',\n other: 'Last {0} minutes'\n },\n condition_builder_last_X_hours: {\n zero: 'Current hour',\n one: 'Last hour',\n two: 'Last {0} hours',\n few: 'Last {0} hours',\n many: 'Last {0} hours',\n other: 'Last {0} hours'\n },\n condition_builder_last_X_days: {\n zero: 'Current day',\n one: 'Last day',\n two: 'Last {0} days',\n few: 'Last {0} days',\n many: 'Last {0} days',\n other: 'Last {0} days'\n },\n condition_builder_last_X_weeks: {\n zero: 'Current week',\n one: 'Last week',\n two: 'Last {0} weeks',\n few: 'Last {0} weeks',\n many: 'Last {0} weeks',\n other: 'Last {0} weeks'\n },\n condition_builder_last_X_months: {\n zero: 'Current month',\n one: 'Last month',\n two: 'Last {0} months',\n few: 'Last {0} months',\n many: 'Last {0} months',\n other: 'Last {0} months'\n },\n condition_builder_last_X_quarters: {\n zero: 'Current quarter',\n one: 'Last quarter',\n two: 'Last {0} quarters',\n few: 'Last {0} quarters',\n many: 'Last {0} quarters',\n other: 'Last {0} quarters'\n },\n condition_builder_last_X_years: {\n zero: 'Current year',\n one: 'Last year',\n two: 'Last {0} years',\n few: 'Last {0} years',\n many: 'Last {0} years',\n other: 'Last {0} years'\n },\n condition_builder_next_X_seconds: {\n zero: 'Current second',\n one: 'Next second',\n two: 'Next {0} seconds',\n few: 'Next {0} seconds',\n many: 'Next {0} seconds',\n other: 'Next {0} seconds'\n },\n condition_builder_next_X_minutes: {\n zero: 'Current minute',\n one: 'Next minute',\n two: 'Next {0} minutes',\n few: 'Next {0} minutes',\n many: 'Next {0} minutes',\n other: 'Next {0} minutes'\n },\n condition_builder_next_X_hours: {\n zero: 'Current hour',\n one: 'Next hour',\n two: 'Next {0} hours',\n few: 'Next {0} hours',\n many: 'Next {0} hours',\n other: 'Next {0} hours'\n },\n condition_builder_next_X_days: {\n zero: 'Current day',\n one: 'Next day',\n two: 'Next {0} days',\n few: 'Next {0} days',\n many: 'Next {0} days',\n other: 'Next {0} days'\n },\n condition_builder_next_X_weeks: {\n zero: 'Current week',\n one: 'Next week',\n two: 'Next {0} weeks',\n few: 'Next {0} weeks',\n many: 'Next {0} weeks',\n other: 'Next {0} weeks'\n },\n condition_builder_next_X_months: {\n zero: 'Current month',\n one: 'Next month',\n two: 'Next {0} months',\n few: 'Next {0} months',\n many: 'Next {0} months',\n other: 'Next {0} months'\n },\n condition_builder_next_X_quarters: {\n zero: 'Current quarter',\n one: 'Next quarter',\n two: 'Next {0} quarters',\n few: 'Next {0} quarters',\n many: 'Next {0} quarters',\n other: 'Next {0} quarters'\n },\n condition_builder_next_X_years: {\n zero: 'Current year',\n one: 'Next year',\n two: 'Next {0} years',\n few: 'Next {0} years',\n many: 'Next {0} years',\n other: 'Next {0} years'\n },\n condition_builder_previous_X_seconds: {\n zero: 'Current second',\n one: 'Previous second',\n two: 'Previous {0} seconds',\n few: 'Previous {0} seconds',\n many: 'Previous {0} seconds',\n other: 'Previous {0} seconds'\n },\n condition_builder_previous_X_minutes: {\n zero: 'Current minute',\n one: 'Previous minute',\n two: 'Previous {0} minutes',\n few: 'Previous {0} minutes',\n many: 'Previous {0} minutes',\n other: 'Previous {0} minutes'\n },\n condition_builder_previous_X_hours: {\n zero: 'Current hour',\n one: 'Previous hour',\n two: 'Previous {0} hours',\n few: 'Previous {0} hours',\n many: 'Previous {0} hours',\n other: 'Previous {0} hours'\n },\n condition_builder_previous_X_days: {\n zero: 'Current day',\n one: 'Previous day',\n two: 'Previous {0} days',\n few: 'Previous {0} days',\n many: 'Previous {0} days',\n other: 'Previous {0} days'\n },\n condition_builder_previous_X_weeks: {\n zero: 'Current week',\n one: 'Previous week',\n two: 'Previous {0} weeks',\n few: 'Previous {0} weeks',\n many: 'Previous {0} weeks',\n other: 'Previous {0} weeks'\n },\n condition_builder_previous_X_months: {\n zero: 'Current month',\n one: 'Previous month',\n two: 'Previous {0} months',\n few: 'Previous {0} months',\n many: 'Previous {0} months',\n other: 'Previous {0} months'\n },\n condition_builder_previous_X_quarters: {\n zero: 'Current quarter',\n one: 'Previous quarter',\n two: 'Previous {0} quarters',\n few: 'Previous {0} quarters',\n many: 'Previous {0} quarters',\n other: 'Previous {0} quarters'\n },\n condition_builder_previous_X_years: {\n zero: 'Current year',\n one: 'Previous year',\n two: 'Previous {0} years',\n few: 'Previous {0} years',\n many: 'Previous {0} years',\n other: 'Previous {0} years'\n },\n condition_builder_time_period_label: 'Time period',\n condition_builder_time_period_last: 'Last',\n condition_builder_time_period_current: 'Current',\n condition_builder_time_period_previous: 'Previous',\n condition_builder_time_period_next: 'Next',\n condition_builder_value_label: 'Value',\n condition_builder_field_label: 'Field',\n condition_builder_comparator_label: 'Conditional operator',\n\n /* condition-builder:PromotedFilters */\n promoted_filters_clear_all_button_label: 'Clear all filters',\n\n /* build:AppShell */\n dev_mode: 'Dev mode',\n expand_navigation: 'Expand navigation',\n collapse_navigation: 'Collapse navigation',\n switch_to: 'Switch to…',\n expand_search: 'Expand search',\n collapse_search: 'Collapse search',\n\n /* build:BranchButton */\n branch_with_no_changes: '{0} with no changes',\n branch_with_no_potential_conflicts: '{0} with no potential conflicts and {1} unmerged changes',\n branch_with_potential_conflicts: '{0} with potential conflicts',\n\n /* build:Lifecycle */\n parallel: 'Parallel',\n stage: 'Stage',\n alternate_stage: 'Alternate stage',\n add_stage: 'Add stage',\n add_process: 'Add process',\n add_alternate_stage: 'Add alternate stage',\n stage_name: '{0} stage',\n process_name: '{0} process',\n step_name: '{0} step',\n item_error: '{0} error',\n step_name_error: '{0} step has configuration error',\n stage_name_error: '{0} stage has configuration error',\n process_name_error: '{0} process has configuration error',\n\n /* build:FlowModeller */\n add_node: 'Add node',\n search_nodes: 'Search nodes',\n delete_step: 'This step has multiple outcomes, are you sure want to delete this step?',\n delete_decision_step:\n 'Select outcome that you want to retain. The remaining highlighted outcomes will be deleted',\n delete_step_title: 'Delete step',\n delete_step_outcome: 'Outcome to keep',\n delete_all_outcomes: 'None (delete all outcomes)',\n delete_step_error: 'This step can\\'t be deleted as the outcome selected has a \"Go to\" step.',\n delete_referenced_step_error:\n 'This step can\\'t be deleted as it is referenced by a \"Go to\" step.',\n delete_connector_error:\n 'Connector cannot be deleted unless Goto step is deleted from all branches',\n\n /* build:Workbench */\n zoom_level: 'Zoom level',\n close_configuration_panel: 'Close configuration panel',\n\n /* build:ObjectSelect */\n clear_object_summary: 'Clear {0} selection',\n create_in_new_tab: 'Create new, opens in new tab',\n\n /* build:ExpressionBuilder */\n expression_editor: 'Expression editor',\n output_parameters: 'Output parameters',\n input_parameters: 'Input parameters',\n\n /* build:MobileBuildSummary */\n no_app_build: 'There is no app build',\n build_app: 'Build app',\n build_in_progress: 'Building…',\n rebuild_app: 'Rebuild app',\n download_app: 'Download app',\n qr_code_not_available: 'No QR code available yet',\n qr_code: 'QR code',\n\n /* wss:AppHeader */\n app_header_notifications_empty: 'No notifications',\n app_header_notifications_loading: 'Loading notifications',\n open_app_header_notifications: 'Open notifications',\n open_app_header_drawer: 'Open navigation menu',\n\n /* tools: PreviewShell */\n preview_frame: 'Preview frame',\n open_in_new_window_text: 'Open in new window',\n more_options: 'More options',\n dev_tools: 'dev tools',\n\n /* tools: DevTools */\n active_session_info: 'Debugging for this session is active in another window',\n continue_debugging: 'Continue debugging',\n\n /* Launchpad: IconTiles */\n action_task: 'Action task',\n task_object: 'Task object',\n view_rule: 'View rule',\n system_rule: 'System rule',\n record_rule: 'Record rule',\n portal_rule: 'Portal rule',\n persona_rule: 'Persona rule',\n permission_rule: 'Permission rule',\n live_data_rule: 'Live data rule',\n integration_system_rule: 'Integration system rule',\n insight_rule: 'Insight rule',\n field_rule: 'Field rule',\n data_page_rule: 'Data page rule',\n connector_rule: 'Connector rule',\n configuration_rule: 'Configuration rule',\n authenticate_rule: 'Authenticate rule',\n when_logic: 'When logic',\n validation_logic: 'Validation logic',\n function_logic: 'Function logic',\n decision_step_logic: 'Decision step logic',\n case_wait: 'Case wait object',\n case_stage: 'Case stage object',\n case_sla: 'Case SLA object',\n case_process: 'Case process object',\n case_go_to: 'Case go-to object',\n case_object: 'Case object',\n set_automation: 'Set automation',\n return_automation: 'Return automation',\n for_each_automation: 'For each automation',\n call_automation: 'Call automation',\n append_automation: 'Append automation',\n automation_object: 'Automation object',\n ai_object: 'AI object'\n};\n"]}
|
package/lib/i18n/i18n.d.ts
CHANGED
|
@@ -232,6 +232,8 @@ export declare const DefaultTranslation: Readonly<Readonly<{
|
|
|
232
232
|
file_upload_text_main: string;
|
|
233
233
|
file_upload_text_one: string;
|
|
234
234
|
file_upload_text_multiple: string;
|
|
235
|
+
download_file: string;
|
|
236
|
+
open_file_in_new_tab: string;
|
|
235
237
|
my_current_location_button_a11y: string;
|
|
236
238
|
location_input_placeholder: string;
|
|
237
239
|
location_not_found_text: string;
|
package/lib/i18n/i18n.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,WAAW,CAAC;AAE3C,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE7D,QAAA,MAAM,MAAM,kBAAmB,WAAW,KAAG,SAAS,eAAe,CAEpE,CAAC;AACF,eAAe,MAAM,CAAC;AAEtB,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,WAAW,CAAC;AAE3C,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAClE,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE7D,QAAA,MAAM,MAAM,kBAAmB,WAAW,KAAG,SAAS,eAAe,CAEpE,CAAC;AACF,eAAe,MAAM,CAAC;AAEtB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAW,CAAC;AAiB3C,eAAO,MAAM,SAAS,cAAe,MAAM,KAAG,KAAK,GAAG,KAErD,CAAC"}
|
package/lib/utils/cap.d.ts
CHANGED
package/lib/utils/cap.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cap.d.ts","sourceRoot":"","sources":["../../src/utils/cap.ts"],"names":[],"mappings":"AAAA,iBAAiB;AACjB,QAAA,MAAM,GAAG,
|
|
1
|
+
{"version":3,"file":"cap.d.ts","sourceRoot":"","sources":["../../src/utils/cap.ts"],"names":[],"mappings":"AAAA,iBAAiB;AACjB,QAAA,MAAM,GAAG,uEAER,CAAC;AAEF,eAAe,GAAG,CAAC"}
|
package/lib/utils/cap.js
CHANGED
package/lib/utils/cap.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cap.js","sourceRoot":"","sources":["../../src/utils/cap.ts"],"names":[],"mappings":"AAAA,iBAAiB;AACjB,MAAM,GAAG,GAAG,
|
|
1
|
+
{"version":3,"file":"cap.js","sourceRoot":"","sources":["../../src/utils/cap.ts"],"names":[],"mappings":"AAAA,iBAAiB;AACjB,MAAM,GAAG,GAAG,CAAmB,CAAI,EAA6C,EAAE;IAChF,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAkB,CAAC;AACnE,CAAC,CAAC;AAEF,eAAe,GAAG,CAAC","sourcesContent":["/** Capitalize */\nconst cap = <S extends string>(s: S): string extends S ? string : Capitalize<S> => {\n return (s.charAt(0).toUpperCase() + s.slice(1)) as Capitalize<S>;\n};\n\nexport default cap;\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pega/cosmos-react-core",
|
|
3
|
-
"version": "5.0.0-dev.9.
|
|
3
|
+
"version": "5.0.0-dev.9.2",
|
|
4
4
|
"description": "Cosmos is a visual design system and UI component collection. Its goal is to empower application developers in their pursuit to create engaging and rewarding user experiences.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,11 +18,10 @@
|
|
|
18
18
|
"main": "lib/index.js",
|
|
19
19
|
"types": "lib/index.d.ts",
|
|
20
20
|
"files": [
|
|
21
|
-
"LICENSE",
|
|
22
21
|
"lib"
|
|
23
22
|
],
|
|
24
23
|
"scripts": {
|
|
25
|
-
"build": "tsc -b"
|
|
24
|
+
"build": "tsc -b tsconfig.build.json"
|
|
26
25
|
},
|
|
27
26
|
"dependencies": {
|
|
28
27
|
"@popperjs/core": "^2.11.6",
|