@pega/cosmos-react-core 9.0.0-build.9.10 → 9.0.0-build.9.11
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/AppShell/AppHeader.d.ts.map +1 -1
- package/lib/components/AppShell/AppHeader.js +4 -1
- package/lib/components/AppShell/AppHeader.js.map +1 -1
- package/lib/components/AppShell/ThemeSwitcher.d.ts +9 -0
- package/lib/components/AppShell/ThemeSwitcher.d.ts.map +1 -0
- package/lib/components/AppShell/ThemeSwitcher.js +58 -0
- package/lib/components/AppShell/ThemeSwitcher.js.map +1 -0
- package/lib/components/AppShell/ThemeSwitcher.test-ids.d.ts +2 -0
- package/lib/components/AppShell/ThemeSwitcher.test-ids.d.ts.map +1 -0
- package/lib/components/AppShell/ThemeSwitcher.test-ids.js +3 -0
- package/lib/components/AppShell/ThemeSwitcher.test-ids.js.map +1 -0
- package/lib/components/Configuration/Configuration.d.ts +6 -0
- package/lib/components/Configuration/Configuration.d.ts.map +1 -1
- package/lib/components/Configuration/Configuration.js +5 -1
- package/lib/components/Configuration/Configuration.js.map +1 -1
- package/lib/hooks/useI18n.d.ts +7 -0
- package/lib/hooks/useI18n.d.ts.map +1 -1
- package/lib/hooks/useThemeMode.d.ts +10 -0
- package/lib/hooks/useThemeMode.d.ts.map +1 -0
- package/lib/hooks/useThemeMode.js +11 -0
- package/lib/hooks/useThemeMode.js.map +1 -0
- package/lib/i18n/default.d.ts +8 -0
- package/lib/i18n/default.d.ts.map +1 -1
- package/lib/i18n/default.js +8 -0
- package/lib/i18n/default.js.map +1 -1
- package/lib/i18n/i18n.d.ts +7 -0
- package/lib/i18n/i18n.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppHeader.d.ts","sourceRoot":"","sources":["../../../src/components/AppShell/AppHeader.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAoB,MAAM,OAAO,CAAC;AAMjE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"AppHeader.d.ts","sourceRoot":"","sources":["../../../src/components/AppShell/AppHeader.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAoB,MAAM,OAAO,CAAC;AAMjE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAKhD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAgBvD,QAAA,MAAM,SAAS,EAAE,iBAAiB,CAAC,cAAc,GAAG,YAAY,CAiH9D,CAAC;AAEH,eAAe,SAAS,CAAC"}
|
|
@@ -6,11 +6,13 @@ import SearchInput from '../SearchInput';
|
|
|
6
6
|
import { useBreakpoint, useElement, useI18n, useTheme } from '../../hooks';
|
|
7
7
|
import VisuallyHiddenText from '../VisuallyHiddenText';
|
|
8
8
|
import { ThemeOverride } from '../Configuration';
|
|
9
|
+
import useThemeMode from '../../hooks/useThemeMode';
|
|
9
10
|
import AppShellOperator from './Operator';
|
|
10
11
|
import ContextSwitcher from './ContextSwitcher';
|
|
11
12
|
import { StyledAppHeader, StyledAppHeaderInfo, StyledAppHeaderSearchForm, StyledAppHeaderSpacer, StyledAppHeaderText, StyledAppHeaderOperator, StyledAppHeaderLogo } from './AppHeader.styles';
|
|
12
13
|
import AppShellContext from './AppShellContext';
|
|
13
14
|
import { getHeaderTheme } from './style-utils';
|
|
15
|
+
import ThemeSwitcher from './ThemeSwitcher';
|
|
14
16
|
const AppHeader = forwardRef(function AppHeader({ appName, contextSwitcher: { contexts, onContextClick, label: contextSwitcherLabel } = {}, fullImageSrc, imageSrc, imageAltText, href, onClick, portalName, target, appNameHidden, operator, searchInput, searchLabel, searchPage }, ref) {
|
|
15
17
|
const t = useI18n();
|
|
16
18
|
const isMediumOrAbove = useBreakpoint('md');
|
|
@@ -26,10 +28,11 @@ const AppHeader = forwardRef(function AppHeader({ appName, contextSwitcher: { co
|
|
|
26
28
|
setSearchContainerEl(null);
|
|
27
29
|
}
|
|
28
30
|
}, [searchPage, searchContainer, setSearchContainerEl]);
|
|
31
|
+
const { themeMode, onThemeModeChange } = useThemeMode();
|
|
29
32
|
let appInfoAs = 'div';
|
|
30
33
|
if (href)
|
|
31
34
|
appInfoAs = 'a';
|
|
32
|
-
return (_jsx(ThemeOverride, { theme: headerTheme, children: _jsxs(Flex, { as: StyledAppHeader, container: { alignItems: 'center', pad: 1 }, hideTitle: !isMediumOrAbove, drawerOpen: drawerOpen, ref: ref, children: [contexts && contexts.length > 1 && onContextClick && (_jsx(ContextSwitcher, { contexts: contexts, onContextClick: onContextClick, label: contextSwitcherLabel })), _jsx(StyledAppHeaderInfo, { centerLogo: !fullImageSrc, children: _jsxs(Flex, { container: { inline: true, alignItems: 'center', gap: 1 }, as: appInfoAs, href: href, onClick: href ? onClick : undefined, target: target, children: [(fullImageSrc || imageSrc) && (_jsx(Flex, { container: { alignItems: 'center' }, as: StyledAppHeaderLogo, children: _jsx(Image, { src: fullImageSrc || imageSrc, alt: imageAltText ?? t('application_logo') }) })), _jsx(StyledAppHeaderText, { as: appNameHidden || !isMediumOrAbove ? VisuallyHiddenText : 'span', variant: 'primary', children: appName }), portalName && (_jsx(StyledAppHeaderText, { as: appNameHidden || !isMediumOrAbove ? VisuallyHiddenText : 'span', variant: 'secondary', children: portalName }))] }) }), _jsx(Flex, { item: { grow: 1 }, container: { justify: 'end' }, children: searchInput ? (_jsx(StyledAppHeaderSearchForm, { ref: setSearchContainer, role: 'search', "aria-label": searchLabel, onSubmit: e => e.preventDefault(), isMediumOrAbove: isMediumOrAbove, children: !searchPage && _jsx(SearchInput, { ...searchInput }) })) : (_jsx(StyledAppHeaderSpacer, {})) }), _jsx(AppShellOperator, { as: StyledAppHeaderOperator, actions: operator.actions, popover: { placement: 'bottom-start' }, name: operator.name, children: operator.avatar })] }) }));
|
|
35
|
+
return (_jsx(ThemeOverride, { theme: headerTheme, children: _jsxs(Flex, { as: StyledAppHeader, container: { alignItems: 'center', pad: 1 }, hideTitle: !isMediumOrAbove, drawerOpen: drawerOpen, ref: ref, children: [contexts && contexts.length > 1 && onContextClick && (_jsx(ContextSwitcher, { contexts: contexts, onContextClick: onContextClick, label: contextSwitcherLabel })), _jsx(StyledAppHeaderInfo, { centerLogo: !fullImageSrc, children: _jsxs(Flex, { container: { inline: true, alignItems: 'center', gap: 1 }, as: appInfoAs, href: href, onClick: href ? onClick : undefined, target: target, children: [(fullImageSrc || imageSrc) && (_jsx(Flex, { container: { alignItems: 'center' }, as: StyledAppHeaderLogo, children: _jsx(Image, { src: fullImageSrc || imageSrc, alt: imageAltText ?? t('application_logo') }) })), _jsx(StyledAppHeaderText, { as: appNameHidden || !isMediumOrAbove ? VisuallyHiddenText : 'span', variant: 'primary', children: appName }), portalName && (_jsx(StyledAppHeaderText, { as: appNameHidden || !isMediumOrAbove ? VisuallyHiddenText : 'span', variant: 'secondary', children: portalName }))] }) }), _jsx(Flex, { item: { grow: 1 }, container: { justify: 'end' }, children: searchInput ? (_jsx(StyledAppHeaderSearchForm, { ref: setSearchContainer, role: 'search', "aria-label": searchLabel, onSubmit: e => e.preventDefault(), isMediumOrAbove: isMediumOrAbove, children: !searchPage && _jsx(SearchInput, { ...searchInput }) })) : (_jsx(StyledAppHeaderSpacer, {})) }), onThemeModeChange && (_jsx(ThemeSwitcher, { themeMode: themeMode, onThemeModeChange: onThemeModeChange })), _jsx(AppShellOperator, { as: StyledAppHeaderOperator, actions: operator.actions, popover: { placement: 'bottom-start' }, name: operator.name, children: operator.avatar })] }) }));
|
|
33
36
|
});
|
|
34
37
|
export default AppHeader;
|
|
35
38
|
//# sourceMappingURL=AppHeader.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppHeader.js","sourceRoot":"","sources":["../../../src/components/AppShell/AppHeader.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAGnE,OAAO,IAAI,MAAM,SAAS,CAAC;AAC3B,OAAO,KAAK,MAAM,UAAU,CAAC;AAC7B,OAAO,WAAW,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAE3E,OAAO,kBAAkB,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"AppHeader.js","sourceRoot":"","sources":["../../../src/components/AppShell/AppHeader.tsx"],"names":[],"mappings":"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","sourcesContent":["import { forwardRef, useContext, useEffect, useMemo } from 'react';\nimport type { FunctionComponent, Ref, ElementType } from 'react';\n\nimport Flex from '../Flex';\nimport Image from '../Image';\nimport SearchInput from '../SearchInput';\nimport { useBreakpoint, useElement, useI18n, useTheme } from '../../hooks';\nimport type { ForwardProps } from '../../types';\nimport VisuallyHiddenText from '../VisuallyHiddenText';\nimport { ThemeOverride } from '../Configuration';\nimport useThemeMode from '../../hooks/useThemeMode';\n\nimport type { AppHeaderProps } from './AppShell.types';\nimport AppShellOperator from './Operator';\nimport ContextSwitcher from './ContextSwitcher';\nimport {\n StyledAppHeader,\n StyledAppHeaderInfo,\n StyledAppHeaderSearchForm,\n StyledAppHeaderSpacer,\n StyledAppHeaderText,\n StyledAppHeaderOperator,\n StyledAppHeaderLogo\n} from './AppHeader.styles';\nimport AppShellContext from './AppShellContext';\nimport { getHeaderTheme } from './style-utils';\nimport ThemeSwitcher from './ThemeSwitcher';\n\nconst AppHeader: FunctionComponent<AppHeaderProps & ForwardProps> = forwardRef(function AppHeader(\n {\n appName,\n contextSwitcher: { contexts, onContextClick, label: contextSwitcherLabel } = {},\n fullImageSrc,\n imageSrc,\n imageAltText,\n href,\n onClick,\n portalName,\n target,\n appNameHidden,\n operator,\n searchInput,\n searchLabel,\n searchPage\n }: AppHeaderProps,\n ref: Ref<Element>\n) {\n const t = useI18n();\n const isMediumOrAbove = useBreakpoint('md');\n const [searchContainer, setSearchContainer] = useElement<HTMLElement>();\n const { drawerOpen, setSearchContainerEl } = useContext(AppShellContext);\n const theme = useTheme();\n const headerTheme = useMemo(() => getHeaderTheme(theme), [theme]);\n useEffect(() => {\n if (searchPage && searchContainer) {\n setSearchContainerEl(searchContainer);\n } else {\n setSearchContainerEl(null);\n }\n }, [searchPage, searchContainer, setSearchContainerEl]);\n\n const { themeMode, onThemeModeChange } = useThemeMode();\n\n let appInfoAs: ElementType = 'div';\n if (href) appInfoAs = 'a';\n return (\n <ThemeOverride theme={headerTheme}>\n <Flex\n as={StyledAppHeader}\n container={{ alignItems: 'center', pad: 1 }}\n hideTitle={!isMediumOrAbove}\n drawerOpen={drawerOpen}\n ref={ref}\n >\n {contexts && contexts.length > 1 && onContextClick && (\n <ContextSwitcher\n contexts={contexts}\n onContextClick={onContextClick}\n label={contextSwitcherLabel}\n />\n )}\n\n <StyledAppHeaderInfo centerLogo={!fullImageSrc}>\n <Flex\n container={{ inline: true, alignItems: 'center', gap: 1 }}\n as={appInfoAs}\n href={href}\n onClick={href ? onClick : undefined}\n target={target}\n >\n {(fullImageSrc || imageSrc) && (\n <Flex container={{ alignItems: 'center' }} as={StyledAppHeaderLogo}>\n <Image src={fullImageSrc || imageSrc} alt={imageAltText ?? t('application_logo')} />\n </Flex>\n )}\n <StyledAppHeaderText\n as={appNameHidden || !isMediumOrAbove ? VisuallyHiddenText : 'span'}\n variant='primary'\n >\n {appName}\n </StyledAppHeaderText>\n {portalName && (\n <StyledAppHeaderText\n as={appNameHidden || !isMediumOrAbove ? VisuallyHiddenText : 'span'}\n variant='secondary'\n >\n {portalName}\n </StyledAppHeaderText>\n )}\n </Flex>\n </StyledAppHeaderInfo>\n <Flex item={{ grow: 1 }} container={{ justify: 'end' }}>\n {searchInput ? (\n <StyledAppHeaderSearchForm\n ref={setSearchContainer}\n role='search'\n aria-label={searchLabel}\n onSubmit={e => e.preventDefault()}\n isMediumOrAbove={isMediumOrAbove}\n >\n {!searchPage && <SearchInput {...searchInput} />}\n </StyledAppHeaderSearchForm>\n ) : (\n <StyledAppHeaderSpacer />\n )}\n </Flex>\n {onThemeModeChange && (\n <ThemeSwitcher themeMode={themeMode} onThemeModeChange={onThemeModeChange} />\n )}\n\n <AppShellOperator\n as={StyledAppHeaderOperator}\n actions={operator.actions}\n popover={{ placement: 'bottom-start' }}\n name={operator.name}\n >\n {operator.avatar}\n </AppShellOperator>\n </Flex>\n </ThemeOverride>\n );\n});\n\nexport default AppHeader;\n"]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { BaseProps, ForwardRefForwardPropsComponent, NoChildrenProp, TestIdProp } from '../../types';
|
|
2
|
+
import { type ConfigurationProps } from '../Configuration';
|
|
3
|
+
export interface ThemeSwitcherProps extends BaseProps, NoChildrenProp, TestIdProp {
|
|
4
|
+
themeMode: NonNullable<ConfigurationProps['themeMode']>;
|
|
5
|
+
onThemeModeChange: (mode: ThemeSwitcherProps['themeMode']) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const ThemeSwitcher: ForwardRefForwardPropsComponent<ThemeSwitcherProps>;
|
|
8
|
+
export default ThemeSwitcher;
|
|
9
|
+
//# sourceMappingURL=ThemeSwitcher.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeSwitcher.d.ts","sourceRoot":"","sources":["../../../src/components/AppShell/ThemeSwitcher.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,SAAS,EACT,+BAA+B,EAC/B,cAAc,EAEd,UAAU,EACX,MAAM,aAAa,CAAC;AAErB,OAAO,EAAiB,KAAK,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAa1E,MAAM,WAAW,kBAAmB,SAAQ,SAAS,EAAE,cAAc,EAAE,UAAU;IAC/E,SAAS,EAAE,WAAW,CAAC,kBAAkB,CAAC,WAAW,CAAC,CAAC,CAAC;IACxD,iBAAiB,EAAE,CAAC,IAAI,EAAE,kBAAkB,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;CACpE;AAED,QAAA,MAAM,aAAa,EAAE,+BAA+B,CAAC,kBAAkB,CAgEtE,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef, useState, useMemo } from 'react';
|
|
3
|
+
import { menuHelpers } from '../Menu';
|
|
4
|
+
import { useI18n, useTestIds } from '../../hooks';
|
|
5
|
+
import Flex from '../Flex';
|
|
6
|
+
import { ThemeOverride } from '../Configuration';
|
|
7
|
+
import MenuButton from '../MenuButton';
|
|
8
|
+
import { withTestIds } from '../../utils';
|
|
9
|
+
import Icon from '../Icon';
|
|
10
|
+
import { getThemeSwitcherTestIds } from './ThemeSwitcher.test-ids';
|
|
11
|
+
const ThemeModeIconMap = {
|
|
12
|
+
light: 'sun',
|
|
13
|
+
dark: 'moon',
|
|
14
|
+
system: 'circle-mixed-left'
|
|
15
|
+
};
|
|
16
|
+
const ThemeSwitcher = withTestIds(forwardRef(function ThemeSwitcher({ testId, themeMode, onThemeModeChange }) {
|
|
17
|
+
const t = useI18n();
|
|
18
|
+
const testIds = useTestIds(testId, getThemeSwitcherTestIds);
|
|
19
|
+
const [items, setItems] = useState(() => [
|
|
20
|
+
{
|
|
21
|
+
id: 'light',
|
|
22
|
+
primary: 'Light',
|
|
23
|
+
visual: _jsx(Icon, { name: ThemeModeIconMap.light, set: 'budicon' }),
|
|
24
|
+
selected: themeMode === 'light'
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
id: 'dark',
|
|
28
|
+
primary: 'Dark',
|
|
29
|
+
visual: _jsx(Icon, { name: ThemeModeIconMap.dark, set: 'budicon' }),
|
|
30
|
+
selected: themeMode === 'dark'
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
id: 'system',
|
|
34
|
+
primary: 'System',
|
|
35
|
+
visual: _jsx(Icon, { name: ThemeModeIconMap.system, set: 'budicon' }),
|
|
36
|
+
selected: !themeMode || themeMode === 'system'
|
|
37
|
+
}
|
|
38
|
+
]);
|
|
39
|
+
const handleMenuItemClick = (id) => {
|
|
40
|
+
setItems(cur => menuHelpers.selectItem(cur, id, 'single-select'));
|
|
41
|
+
onThemeModeChange?.(id);
|
|
42
|
+
};
|
|
43
|
+
const selectedThemeIcon = useMemo(() => {
|
|
44
|
+
const selected = menuHelpers.getSelected(items)[0];
|
|
45
|
+
return selected
|
|
46
|
+
? ThemeModeIconMap[selected.id]
|
|
47
|
+
: ThemeModeIconMap.system;
|
|
48
|
+
}, [items]);
|
|
49
|
+
return (_jsx(Flex, { container: {
|
|
50
|
+
alignItems: 'center'
|
|
51
|
+
}, children: _jsx(ThemeOverride, { theme: { base: { 'icon-set': 'budicon' } }, children: _jsx(MenuButton, { text: t('theme_mode'), "data-testid": testIds.root, icon: selectedThemeIcon, iconOnly: true, variant: 'simple', menu: {
|
|
52
|
+
mode: 'single-select',
|
|
53
|
+
items,
|
|
54
|
+
onItemClick: handleMenuItemClick
|
|
55
|
+
} }) }) }));
|
|
56
|
+
}), getThemeSwitcherTestIds);
|
|
57
|
+
export default ThemeSwitcher;
|
|
58
|
+
//# sourceMappingURL=ThemeSwitcher.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeSwitcher.js","sourceRoot":"","sources":["../../../src/components/AppShell/ThemeSwitcher.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAGtD,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAGtC,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAQlD,OAAO,IAAI,MAAM,SAAS,CAAC;AAC3B,OAAO,EAAE,aAAa,EAA2B,MAAM,kBAAkB,CAAC;AAC1E,OAAO,UAAU,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,IAAI,MAAM,SAAS,CAAC;AAE3B,OAAO,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AAEnE,MAAM,gBAAgB,GAAG;IACvB,KAAK,EAAE,KAAK;IACZ,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,mBAAmB;CACnB,CAAC;AAOX,MAAM,aAAa,GAAwD,WAAW,CACpF,UAAU,CACR,SAAS,aAAa,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,iBAAiB,EAAE;IAC7D,MAAM,CAAC,GAAG,OAAO,EAAE,CAAC;IACpB,MAAM,OAAO,GAAG,UAAU,CAAC,MAAM,EAAE,uBAAuB,CAAC,CAAC;IAE5D,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG,QAAQ,CAAqB,GAAG,EAAE,CAAC;QAC3D;YACE,EAAE,EAAE,OAAO;YACX,OAAO,EAAE,OAAO;YAChB,MAAM,EAAE,KAAC,IAAI,IAAC,IAAI,EAAE,gBAAgB,CAAC,KAAK,EAAE,GAAG,EAAC,SAAS,GAAG;YAC5D,QAAQ,EAAE,SAAS,KAAK,OAAO;SAChC;QACD;YACE,EAAE,EAAE,MAAM;YACV,OAAO,EAAE,MAAM;YACf,MAAM,EAAE,KAAC,IAAI,IAAC,IAAI,EAAE,gBAAgB,CAAC,IAAI,EAAE,GAAG,EAAC,SAAS,GAAG;YAC3D,QAAQ,EAAE,SAAS,KAAK,MAAM;SAC/B;QACD;YACE,EAAE,EAAE,QAAQ;YACZ,OAAO,EAAE,QAAQ;YACjB,MAAM,EAAE,KAAC,IAAI,IAAC,IAAI,EAAE,gBAAgB,CAAC,MAAM,EAAE,GAAG,EAAC,SAAS,GAAG;YAC7D,QAAQ,EAAE,CAAC,SAAS,IAAI,SAAS,KAAK,QAAQ;SAC/C;KACF,CAAC,CAAC;IAEH,MAAM,mBAAmB,GAAG,CAAC,EAAuB,EAAE,EAAE;QACtD,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,EAAE,EAAE,EAAE,eAAe,CAAC,CAAC,CAAC;QAClE,iBAAiB,EAAE,CAAC,EAAqC,CAAC,CAAC;IAC7D,CAAC,CAAC;IAEF,MAAM,iBAAiB,GAAG,OAAO,CAAC,GAAG,EAAE;QACrC,MAAM,QAAQ,GAAG,WAAW,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;QACnD,OAAO,QAAQ;YACb,CAAC,CAAC,gBAAgB,CAAC,QAAQ,CAAC,EAAmC,CAAC;YAChE,CAAC,CAAC,gBAAgB,CAAC,MAAM,CAAC;IAC9B,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;IAEZ,OAAO,CACL,KAAC,IAAI,IACH,SAAS,EAAE;YACT,UAAU,EAAE,QAAQ;SACrB,YAED,KAAC,aAAa,IAAC,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,UAAU,EAAE,SAAS,EAAE,EAAE,YACvD,KAAC,UAAU,IACT,IAAI,EAAE,CAAC,CAAC,YAAY,CAAC,iBACR,OAAO,CAAC,IAAI,EACzB,IAAI,EAAE,iBAAiB,EACvB,QAAQ,QACR,OAAO,EAAC,QAAQ,EAChB,IAAI,EAAE;oBACJ,IAAI,EAAE,eAAe;oBACrB,KAAK;oBACL,WAAW,EAAE,mBAAmB;iBACjC,GACD,GACY,GACX,CACR,CAAC;AACJ,CAAC,CACF,EACD,uBAAuB,CACxB,CAAC;AAEF,eAAe,aAAa,CAAC","sourcesContent":["import { forwardRef, useState, useMemo } from 'react';\nimport type { PropsWithoutRef } from 'react';\n\nimport { menuHelpers } from '../Menu';\nimport type { MenuItemProps } from '../Menu';\nimport type { MenuProps } from '../Menu/Menu.types';\nimport { useI18n, useTestIds } from '../../hooks';\nimport type {\n BaseProps,\n ForwardRefForwardPropsComponent,\n NoChildrenProp,\n RefElement,\n TestIdProp\n} from '../../types';\nimport Flex from '../Flex';\nimport { ThemeOverride, type ConfigurationProps } from '../Configuration';\nimport MenuButton from '../MenuButton';\nimport { withTestIds } from '../../utils';\nimport Icon from '../Icon';\n\nimport { getThemeSwitcherTestIds } from './ThemeSwitcher.test-ids';\n\nconst ThemeModeIconMap = {\n light: 'sun',\n dark: 'moon',\n system: 'circle-mixed-left'\n} as const;\n\nexport interface ThemeSwitcherProps extends BaseProps, NoChildrenProp, TestIdProp {\n themeMode: NonNullable<ConfigurationProps['themeMode']>;\n onThemeModeChange: (mode: ThemeSwitcherProps['themeMode']) => void;\n}\n\nconst ThemeSwitcher: ForwardRefForwardPropsComponent<ThemeSwitcherProps> = withTestIds(\n forwardRef<RefElement<ThemeSwitcherProps>, PropsWithoutRef<ThemeSwitcherProps>>(\n function ThemeSwitcher({ testId, themeMode, onThemeModeChange }) {\n const t = useI18n();\n const testIds = useTestIds(testId, getThemeSwitcherTestIds);\n\n const [items, setItems] = useState<MenuProps['items']>(() => [\n {\n id: 'light',\n primary: 'Light',\n visual: <Icon name={ThemeModeIconMap.light} set='budicon' />,\n selected: themeMode === 'light'\n },\n {\n id: 'dark',\n primary: 'Dark',\n visual: <Icon name={ThemeModeIconMap.dark} set='budicon' />,\n selected: themeMode === 'dark'\n },\n {\n id: 'system',\n primary: 'System',\n visual: <Icon name={ThemeModeIconMap.system} set='budicon' />,\n selected: !themeMode || themeMode === 'system'\n }\n ]);\n\n const handleMenuItemClick = (id: MenuItemProps['id']) => {\n setItems(cur => menuHelpers.selectItem(cur, id, 'single-select'));\n onThemeModeChange?.(id as ThemeSwitcherProps['themeMode']);\n };\n\n const selectedThemeIcon = useMemo(() => {\n const selected = menuHelpers.getSelected(items)[0];\n return selected\n ? ThemeModeIconMap[selected.id as keyof typeof ThemeModeIconMap]\n : ThemeModeIconMap.system;\n }, [items]);\n\n return (\n <Flex\n container={{\n alignItems: 'center'\n }}\n >\n <ThemeOverride theme={{ base: { 'icon-set': 'budicon' } }}>\n <MenuButton\n text={t('theme_mode')}\n data-testid={testIds.root}\n icon={selectedThemeIcon}\n iconOnly\n variant='simple'\n menu={{\n mode: 'single-select',\n items,\n onItemClick: handleMenuItemClick\n }}\n />\n </ThemeOverride>\n </Flex>\n );\n }\n ),\n getThemeSwitcherTestIds\n);\n\nexport default ThemeSwitcher;\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeSwitcher.test-ids.d.ts","sourceRoot":"","sources":["../../../src/components/AppShell/ThemeSwitcher.test-ids.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,uBAAuB,mGAA+C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeSwitcher.test-ids.js","sourceRoot":"","sources":["../../../src/components/AppShell/ThemeSwitcher.test-ids.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAE5C,MAAM,CAAC,MAAM,uBAAuB,GAAG,aAAa,CAAC,gBAAgB,EAAE,EAAW,CAAC,CAAC","sourcesContent":["import { createTestIds } from '../../utils';\n\nexport const getThemeSwitcherTestIds = createTestIds('theme-switcher', [] as const);\n"]}
|
|
@@ -17,6 +17,10 @@ export interface ConfigurationProps {
|
|
|
17
17
|
translations?: Translation;
|
|
18
18
|
/** Theme object used to override any or all Cosmos theme properties. */
|
|
19
19
|
theme?: DefaultSettableTheme;
|
|
20
|
+
/** Theme mode for the application. Can be 'light', 'dark', or 'system'. */
|
|
21
|
+
themeMode?: 'light' | 'dark' | 'system';
|
|
22
|
+
/** Callback function triggered when the theme mode changes. */
|
|
23
|
+
onThemeModeChange?: (mode: NonNullable<ConfigurationProps['themeMode']>) => void;
|
|
20
24
|
/** Disables loading Open Sans or Inter from Google Fonts. Only takes effect on the root configuration. */
|
|
21
25
|
disableDefaultFontLoading?: boolean;
|
|
22
26
|
/** List of style sheets to inject in style sheet target. */
|
|
@@ -53,6 +57,8 @@ export interface ConfigurationContextValue {
|
|
|
53
57
|
direction: NonNullable<ConfigurationProps['direction']>;
|
|
54
58
|
translations: TranslationPack;
|
|
55
59
|
themeMachine: ThemeMachineLike<DefaultThemeDefinition>;
|
|
60
|
+
themeMode: NonNullable<ConfigurationProps['themeMode']>;
|
|
61
|
+
onThemeModeChange: ConfigurationProps['onThemeModeChange'];
|
|
56
62
|
styleSheetTarget: ConfigurationProps['styleSheetTarget'];
|
|
57
63
|
portalTarget: ConfigurationProps['portalTarget'];
|
|
58
64
|
loadedRef: MutableRefObject<boolean>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Configuration.d.ts","sourceRoot":"","sources":["../../../src/components/Configuration/Configuration.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,OAAO,EAAE,gBAAgB,EAAE,GAAG,EAAmB,MAAM,OAAO,CAAC;AACxF,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAiB,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AAEhE,OAAO,YAAY,CAAC;AAGpB,OAAO,KAAK,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAMlG,OAAO,KAAK,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAQ/D,OAAO,qBAAqB,CAAC;AAE7B,MAAM,WAAW,kBAAkB;IACjC,+GAA+G;IAC/G,QAAQ,EAAE,SAAS,CAAC;IACpB,6FAA6F;IAC7F,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,2GAA2G;IAC3G,SAAS,CAAC,EAAE,KAAK,GAAG,KAAK,CAAC;IAC1B,0CAA0C;IAC1C,YAAY,CAAC,EAAE,WAAW,CAAC;IAC3B,wEAAwE;IACxE,KAAK,CAAC,EAAE,oBAAoB,CAAC;IAC7B,0GAA0G;IAC1G,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC,4DAA4D;IAC5D,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,sBAAsB,CAAC,QAAQ,CAAC,CAAC;IACpD;;;OAGG;IACH,YAAY,CAAC,EAAE,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC;IAClD;;;OAGG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,sDAAsD;IACtD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,GAAG,CAAC,EAAE,GAAG,CAAC,cAAc,CAAC,CAAC;CAC3B;AAED,MAAM,WAAW,yBAAyB;IACxC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,WAAW,CAAC,kBAAkB,CAAC,WAAW,CAAC,CAAC,CAAC;IACxD,YAAY,EAAE,eAAe,CAAC;IAC9B,YAAY,EAAE,gBAAgB,CAAC,sBAAsB,CAAC,CAAC;IACvD,gBAAgB,EAAE,kBAAkB,CAAC,kBAAkB,CAAC,CAAC;IACzD,YAAY,EAAE,kBAAkB,CAAC,cAAc,CAAC,CAAC;IACjD,SAAS,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAC;IACrC,oBAAoB,EAAE,OAAO,CAAC;IAC9B,OAAO,EAAE,WAAW,CAAC,kBAAkB,CAAC,SAAS,CAAC,CAAC,CAAC;IACpD,gBAAgB;IAChB,yBAAyB,CAAC,EAAE,CAAC,OAAO,iBAAiB,CAAC,EAAE,CAAC;IACzD,gBAAgB;IAChB,WAAW,EAAE,OAAO,CAAC;CACtB;AAID,eAAO,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"Configuration.d.ts","sourceRoot":"","sources":["../../../src/components/Configuration/Configuration.tsx"],"names":[],"mappings":"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"}
|
|
@@ -17,6 +17,8 @@ export const ConfigurationContext = createContext({
|
|
|
17
17
|
direction: directionOfLocale(defaultLocale),
|
|
18
18
|
translations: DefaultTranslation,
|
|
19
19
|
themeMachine: BaseThemeMachine,
|
|
20
|
+
themeMode: 'system',
|
|
21
|
+
onThemeModeChange: undefined,
|
|
20
22
|
styleSheetTarget: documentIsAvailable ? document.head : undefined,
|
|
21
23
|
portalTarget: documentIsAvailable ? document.body : undefined,
|
|
22
24
|
loadedRef: { current: false },
|
|
@@ -64,7 +66,7 @@ if (windowIsAvailable) {
|
|
|
64
66
|
};
|
|
65
67
|
}
|
|
66
68
|
}
|
|
67
|
-
const Configuration = forwardRef(function Configuration({ children, locale, direction, translations: customTranslations, theme, disableDefaultFontLoading, styleSheets: styleSheetURLs, styleSheetTarget, portalTarget, renderNativeControls, testIds, id }, ref) {
|
|
69
|
+
const Configuration = forwardRef(function Configuration({ children, locale, direction, translations: customTranslations, theme, themeMode, onThemeModeChange, disableDefaultFontLoading, styleSheets: styleSheetURLs, styleSheetTarget, portalTarget, renderNativeControls, testIds, id }, ref) {
|
|
68
70
|
const context = windowIsAvailable
|
|
69
71
|
? window.cosmos.configurationContext ?? ConfigurationContext
|
|
70
72
|
: ConfigurationContext;
|
|
@@ -154,6 +156,8 @@ const Configuration = forwardRef(function Configuration({ children, locale, dire
|
|
|
154
156
|
direction: direction ?? (locale !== undefined ? directionOfLocale(locale) : ctx.direction),
|
|
155
157
|
translations,
|
|
156
158
|
themeMachine,
|
|
159
|
+
themeMode: themeMode ?? ctx.themeMode,
|
|
160
|
+
onThemeModeChange: onThemeModeChange ?? ctx.onThemeModeChange,
|
|
157
161
|
styleSheetTarget: resolvedStyleSheetTarget,
|
|
158
162
|
portalTarget: resolvedPortalTarget,
|
|
159
163
|
loadedRef: ctx.loadedRef,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Configuration.js","sourceRoot":"","sources":["../../../src/components/Configuration/Configuration.tsx"],"names":[],"mappings":"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","sourcesContent":["import { createContext, useContext, useMemo, useEffect, useState, forwardRef } from 'react';\nimport type { ReactNode, Context, MutableRefObject, Ref, PropsWithoutRef } from 'react';\nimport { createPortal } from 'react-dom';\nimport { ThemeProvider, StyleSheetManager } from 'styled-components';\nimport type { StyleSheetManagerProps } from 'styled-components';\n\nimport '../../init';\nimport { GlobalStyle } from '../../styles';\nimport { ThemeMachine, BaseThemeMachine } from '../../theme';\nimport type { ThemeMachineLike, DefaultSettableTheme, DefaultThemeDefinition } from '../../theme';\nimport {\n createTranslationPack,\n DefaultTranslation,\n direction as directionOfLocale\n} from '../../i18n';\nimport type { Translation, TranslationPack } from '../../i18n';\nimport { documentIsAvailable, navigatorIsAvailable, windowIsAvailable } from '../../utils';\nimport pkg from '../../../package.json';\nimport useElement from '../../hooks/useElement';\nimport { useConsolidatedRef } from '../../hooks';\n\nimport type PegaConnectedWatcher from './connected-watcher';\n\nimport './connected-watcher';\n\nexport interface ConfigurationProps {\n /** Any components or nodes that should be impacted by the settings applied by this Configuration component. */\n children: ReactNode;\n /** User locale as defined in [BCP-47](https://www.techonthenet.com/js/language_tags.php). */\n locale?: string;\n /** Override rendering direction of the document. Direction will be based on the locale if now provided. */\n direction?: 'ltr' | 'rtl';\n /** Object with (partial) translations. */\n translations?: Translation;\n /** Theme object used to override any or all Cosmos theme properties. */\n theme?: DefaultSettableTheme;\n /** Disables loading Open Sans or Inter from Google Fonts. Only takes effect on the root configuration. */\n disableDefaultFontLoading?: boolean;\n /** List of style sheets to inject in style sheet target. */\n styleSheets?: string[];\n /**\n * Target element for loading styles related to `styled-components`.\n * @deprecated\n */\n styleSheetTarget?: StyleSheetManagerProps['target'];\n /**\n * Target element for rendering a `ReactDOM` portal.\n * @deprecated\n */\n portalTarget?: Parameters<typeof createPortal>[1];\n /**\n * Use native HTML5 controls for inputs instead of rich ones.\n * @default false\n */\n renderNativeControls?: boolean;\n /** String to identify this configuration instance. */\n id?: string;\n /**\n * Enable/disable testId attribute rendering for all components.\n * @default true\n */\n testIds?: boolean;\n /**\n * Ref for the configuration root.\n */\n ref?: Ref<HTMLDivElement>;\n}\n\nexport interface ConfigurationContextValue {\n locale: string;\n direction: NonNullable<ConfigurationProps['direction']>;\n translations: TranslationPack;\n themeMachine: ThemeMachineLike<DefaultThemeDefinition>;\n styleSheetTarget: ConfigurationProps['styleSheetTarget'];\n portalTarget: ConfigurationProps['portalTarget'];\n loadedRef: MutableRefObject<boolean>;\n renderNativeControls: boolean;\n testIds: NonNullable<ConfigurationProps['testIds']>;\n /** @internal */\n mountedStyleSheetManagers?: (typeof StyleSheetManager)[];\n /** @internal */\n initialized: boolean;\n}\n\nconst defaultLocale = navigatorIsAvailable ? navigator.language : 'en';\n\nexport const ConfigurationContext = createContext<ConfigurationContextValue>({\n locale: defaultLocale,\n direction: directionOfLocale(defaultLocale),\n translations: DefaultTranslation,\n themeMachine: BaseThemeMachine,\n styleSheetTarget: documentIsAvailable ? document.head : undefined,\n portalTarget: documentIsAvailable ? document.body : undefined,\n loadedRef: { current: false },\n renderNativeControls: false,\n testIds: true,\n mountedStyleSheetManagers: [],\n initialized: false\n});\n\nconst legacyMetaKey = Symbol.for('@pega/cosmos-react-core.metadata');\n\ninterface LegacyCosmosInstace {\n version: string;\n}\n\ndeclare global {\n interface Window {\n [legacyMetaKey]?: {\n push: (instance: LegacyCosmosInstace) => void;\n };\n }\n}\n\nconst mountedConfigs = new Set<symbol>();\n\ninterface CosmosInstance extends LegacyCosmosInstace {\n mountedConfigs: string[];\n mountOrder: string[];\n mountCount: Record<string, number>;\n}\n\nconst instance: CosmosInstance = {\n version: pkg.version,\n mountedConfigs: [],\n mountOrder: [],\n mountCount: {}\n};\n\nconst mountConfig = (sym: symbol) => {\n mountedConfigs.add(sym);\n instance.mountedConfigs = [...mountedConfigs].map(i => i.description ?? 'Unknown');\n\n const description = sym.description ?? 'Unknown';\n\n instance.mountOrder.push(description);\n\n if (!(description in instance.mountCount)) {\n instance.mountCount[description] = 0;\n }\n instance.mountCount[description] += 1;\n};\n\nconst unmountConfig = (sym: symbol) => {\n mountedConfigs.delete(sym);\n instance.mountedConfigs = [...mountedConfigs].map(i => i.description ?? 'Unknown');\n};\n\ndeclare module '../../init' {\n export interface CosmosGlobals {\n instances?: (CosmosInstance | LegacyCosmosInstace)[];\n configurationContext?: Context<ConfigurationContextValue>;\n }\n}\n\nif (windowIsAvailable) {\n if (!window.cosmos.instances) {\n window.cosmos.instances = [];\n }\n\n window.cosmos.instances.push(instance);\n\n if (Array.isArray(window[legacyMetaKey])) {\n window.cosmos.instances.push(...window[legacyMetaKey]);\n delete window[legacyMetaKey];\n }\n\n if (!window[legacyMetaKey]) {\n window[legacyMetaKey] = {\n push: inst => {\n window.cosmos.instances?.push(inst);\n }\n };\n }\n}\n\nconst Configuration = forwardRef(function Configuration(\n {\n children,\n locale,\n direction,\n translations: customTranslations,\n theme,\n disableDefaultFontLoading,\n styleSheets: styleSheetURLs,\n styleSheetTarget,\n portalTarget,\n renderNativeControls,\n testIds,\n id\n }: PropsWithoutRef<ConfigurationProps>,\n ref: ConfigurationProps['ref']\n) {\n const context = windowIsAvailable\n ? window.cosmos.configurationContext ?? ConfigurationContext\n : ConfigurationContext;\n const ctx = useContext(context);\n const themeMachine = theme\n ? new ThemeMachine<DefaultThemeDefinition>({ theme, parent: ctx.themeMachine })\n : ctx.themeMachine;\n const translations = useMemo(\n () => createTranslationPack({ ...ctx.translations, ...customTranslations }),\n [ctx.translations, customTranslations]\n );\n\n const [wrapperEl, setWrapperEl] = useElement<HTMLDivElement>();\n const [connectedWatcherEl, setConnectedWatcherEl] = useElement<PegaConnectedWatcher>();\n // State tracking if the DOM nodes are connected. Only used to trigger rerenders when connected state changes.\n const [, setConnected] = useState<boolean | null>(null);\n const configRootRef = useConsolidatedRef<HTMLDivElement>(setWrapperEl, ref);\n\n useEffect(() => {\n if (!connectedWatcherEl) return;\n\n const connectDisconnectListener = () => {\n setConnected(connectedWatcherEl.isConnected);\n };\n\n connectedWatcherEl.addEventListener('connect-disconnect', connectDisconnectListener);\n\n return () => {\n connectedWatcherEl.removeEventListener('connect-disconnect', connectDisconnectListener);\n };\n }, [connectedWatcherEl]);\n\n // Determine valid style sheet and portal target with ShadowDOM handling.\n const [resolvedStyleSheetTarget, resolvedPortalTarget] = useMemo(() => {\n // When rendering on the server, or before the wrapper is in the DOM, just bail.\n if (!documentIsAvailable || !wrapperEl?.isConnected) return [undefined, undefined];\n\n const rootNode = wrapperEl.getRootNode();\n\n // When within the ShadowDOM, the default target is the ShadowRoot, otherwise default to head/body element.\n const defaultStyleSheetTarget = rootNode instanceof ShadowRoot ? rootNode : document.head;\n const defaultPortalTarget = rootNode instanceof ShadowRoot ? rootNode : document.body;\n\n // Currently passed prop or previous context value\n const requestedStyleSheetTarget = styleSheetTarget ?? ctx.styleSheetTarget;\n const requestedPortalTarget = portalTarget ?? ctx.portalTarget;\n\n // If the \"requested\" target is within the root node, it is valid, so use that, otherwise fallback to the default.\n return [\n rootNode.contains(requestedStyleSheetTarget ?? null)\n ? requestedStyleSheetTarget\n : defaultStyleSheetTarget,\n rootNode.contains(requestedPortalTarget ?? null) ? requestedPortalTarget : defaultPortalTarget\n ];\n }, [\n wrapperEl,\n wrapperEl?.isConnected,\n styleSheetTarget,\n portalTarget,\n ctx.styleSheetTarget,\n ctx.portalTarget\n ]);\n\n // Load global fonts and styles if this configuration instance is...\n const shouldInitialize = useMemo(\n () =>\n // the first configuration instance or...\n !ctx.initialized ||\n // is not within the same root node as the previous configuration instance.\n !!(wrapperEl && wrapperEl.getRootNode() !== ctx.styleSheetTarget?.getRootNode()),\n [ctx.initialized, wrapperEl]\n );\n\n // If we need to reinitialize, clear the mounted StyleSheetManagers.\n const mountedStyleSheetManagers = shouldInitialize ? [] : ctx.mountedStyleSheetManagers;\n\n // Check if this StyleSheetManager is mounted above this Configuration.\n const stylesheetManagerMounted = useMemo(\n () => !!mountedStyleSheetManagers?.includes(StyleSheetManager),\n [mountedStyleSheetManagers]\n );\n\n useEffect(() => {\n const sym = Symbol(id);\n mountConfig(sym);\n\n return () => {\n unmountConfig(sym);\n };\n }, [id]);\n\n const wrappedChildren = shouldInitialize ? (\n <>\n {!disableDefaultFontLoading &&\n resolvedStyleSheetTarget &&\n createPortal(\n <link\n rel='stylesheet'\n href='https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400..700;1,400..700&family=Inter:wght@400..700&family=Roboto+Flex:opsz,wdth,wght@8..144,25..151,400..700&display=swap'\n data-cosmos-global-style\n />,\n resolvedStyleSheetTarget\n )}\n <GlobalStyle />\n {children}\n </>\n ) : (\n <>{children}</>\n );\n\n const styledWrappedChildren = stylesheetManagerMounted ? (\n wrappedChildren\n ) : (\n <StyleSheetManager\n disableVendorPrefixes\n target={\n // Target must be undefined in a JSDOM environment due to Styled Components server mode handling.\n navigatorIsAvailable &&\n resolvedStyleSheetTarget?.isConnected &&\n !navigator.userAgent.includes('jsdom')\n ? resolvedStyleSheetTarget\n : undefined\n }\n >\n {wrappedChildren}\n </StyleSheetManager>\n );\n\n return (\n <div\n data-config-root\n // Need to use inline styles because the StyleSheetManager is configured within this div.\n style={{ display: 'contents' }}\n ref={configRootRef}\n >\n <context.Provider\n // eslint-disable-next-line react/jsx-no-constructed-context-values\n value={{\n locale: locale ?? ctx.locale,\n direction:\n direction ?? (locale !== undefined ? directionOfLocale(locale) : ctx.direction),\n translations,\n themeMachine,\n styleSheetTarget: resolvedStyleSheetTarget,\n portalTarget: resolvedPortalTarget,\n loadedRef: ctx.loadedRef,\n renderNativeControls: renderNativeControls ?? ctx.renderNativeControls,\n testIds: testIds ?? ctx.testIds,\n mountedStyleSheetManagers: stylesheetManagerMounted\n ? mountedStyleSheetManagers\n : [...(mountedStyleSheetManagers ?? []), StyleSheetManager],\n initialized: true\n }}\n >\n <ThemeProvider theme={themeMachine.theme}>\n {styleSheetURLs &&\n resolvedStyleSheetTarget &&\n createPortal(\n styleSheetURLs.map(url => (\n <link rel='stylesheet' href={url} key={url} data-cosmos-global-style />\n )),\n resolvedStyleSheetTarget\n )}\n {styledWrappedChildren}\n </ThemeProvider>\n </context.Provider>\n <pega-connected-watcher ref={setConnectedWatcherEl} style={{ display: 'none' }} />\n </div>\n );\n});\n\nexport default Configuration;\n"]}
|
|
1
|
+
{"version":3,"file":"Configuration.js","sourceRoot":"","sources":["../../../src/components/Configuration/Configuration.tsx"],"names":[],"mappings":"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","sourcesContent":["import { createContext, useContext, useMemo, useEffect, useState, forwardRef } from 'react';\nimport type { ReactNode, Context, MutableRefObject, Ref, PropsWithoutRef } from 'react';\nimport { createPortal } from 'react-dom';\nimport { ThemeProvider, StyleSheetManager } from 'styled-components';\nimport type { StyleSheetManagerProps } from 'styled-components';\n\nimport '../../init';\nimport { GlobalStyle } from '../../styles';\nimport { ThemeMachine, BaseThemeMachine } from '../../theme';\nimport type { ThemeMachineLike, DefaultSettableTheme, DefaultThemeDefinition } from '../../theme';\nimport {\n createTranslationPack,\n DefaultTranslation,\n direction as directionOfLocale\n} from '../../i18n';\nimport type { Translation, TranslationPack } from '../../i18n';\nimport { documentIsAvailable, navigatorIsAvailable, windowIsAvailable } from '../../utils';\nimport pkg from '../../../package.json';\nimport useElement from '../../hooks/useElement';\nimport { useConsolidatedRef } from '../../hooks';\n\nimport type PegaConnectedWatcher from './connected-watcher';\n\nimport './connected-watcher';\n\nexport interface ConfigurationProps {\n /** Any components or nodes that should be impacted by the settings applied by this Configuration component. */\n children: ReactNode;\n /** User locale as defined in [BCP-47](https://www.techonthenet.com/js/language_tags.php). */\n locale?: string;\n /** Override rendering direction of the document. Direction will be based on the locale if now provided. */\n direction?: 'ltr' | 'rtl';\n /** Object with (partial) translations. */\n translations?: Translation;\n /** Theme object used to override any or all Cosmos theme properties. */\n theme?: DefaultSettableTheme;\n /** Theme mode for the application. Can be 'light', 'dark', or 'system'. */\n themeMode?: 'light' | 'dark' | 'system';\n /** Callback function triggered when the theme mode changes. */\n onThemeModeChange?: (mode: NonNullable<ConfigurationProps['themeMode']>) => void;\n /** Disables loading Open Sans or Inter from Google Fonts. Only takes effect on the root configuration. */\n disableDefaultFontLoading?: boolean;\n /** List of style sheets to inject in style sheet target. */\n styleSheets?: string[];\n /**\n * Target element for loading styles related to `styled-components`.\n * @deprecated\n */\n styleSheetTarget?: StyleSheetManagerProps['target'];\n /**\n * Target element for rendering a `ReactDOM` portal.\n * @deprecated\n */\n portalTarget?: Parameters<typeof createPortal>[1];\n /**\n * Use native HTML5 controls for inputs instead of rich ones.\n * @default false\n */\n renderNativeControls?: boolean;\n /** String to identify this configuration instance. */\n id?: string;\n /**\n * Enable/disable testId attribute rendering for all components.\n * @default true\n */\n testIds?: boolean;\n /**\n * Ref for the configuration root.\n */\n ref?: Ref<HTMLDivElement>;\n}\n\nexport interface ConfigurationContextValue {\n locale: string;\n direction: NonNullable<ConfigurationProps['direction']>;\n translations: TranslationPack;\n themeMachine: ThemeMachineLike<DefaultThemeDefinition>;\n themeMode: NonNullable<ConfigurationProps['themeMode']>;\n onThemeModeChange: ConfigurationProps['onThemeModeChange'];\n styleSheetTarget: ConfigurationProps['styleSheetTarget'];\n portalTarget: ConfigurationProps['portalTarget'];\n loadedRef: MutableRefObject<boolean>;\n renderNativeControls: boolean;\n testIds: NonNullable<ConfigurationProps['testIds']>;\n /** @internal */\n mountedStyleSheetManagers?: (typeof StyleSheetManager)[];\n /** @internal */\n initialized: boolean;\n}\n\nconst defaultLocale = navigatorIsAvailable ? navigator.language : 'en';\n\nexport const ConfigurationContext = createContext<ConfigurationContextValue>({\n locale: defaultLocale,\n direction: directionOfLocale(defaultLocale),\n translations: DefaultTranslation,\n themeMachine: BaseThemeMachine,\n themeMode: 'system',\n onThemeModeChange: undefined,\n styleSheetTarget: documentIsAvailable ? document.head : undefined,\n portalTarget: documentIsAvailable ? document.body : undefined,\n loadedRef: { current: false },\n renderNativeControls: false,\n testIds: true,\n mountedStyleSheetManagers: [],\n initialized: false\n});\n\nconst legacyMetaKey = Symbol.for('@pega/cosmos-react-core.metadata');\n\ninterface LegacyCosmosInstace {\n version: string;\n}\n\ndeclare global {\n interface Window {\n [legacyMetaKey]?: {\n push: (instance: LegacyCosmosInstace) => void;\n };\n }\n}\n\nconst mountedConfigs = new Set<symbol>();\n\ninterface CosmosInstance extends LegacyCosmosInstace {\n mountedConfigs: string[];\n mountOrder: string[];\n mountCount: Record<string, number>;\n}\n\nconst instance: CosmosInstance = {\n version: pkg.version,\n mountedConfigs: [],\n mountOrder: [],\n mountCount: {}\n};\n\nconst mountConfig = (sym: symbol) => {\n mountedConfigs.add(sym);\n instance.mountedConfigs = [...mountedConfigs].map(i => i.description ?? 'Unknown');\n\n const description = sym.description ?? 'Unknown';\n\n instance.mountOrder.push(description);\n\n if (!(description in instance.mountCount)) {\n instance.mountCount[description] = 0;\n }\n instance.mountCount[description] += 1;\n};\n\nconst unmountConfig = (sym: symbol) => {\n mountedConfigs.delete(sym);\n instance.mountedConfigs = [...mountedConfigs].map(i => i.description ?? 'Unknown');\n};\n\ndeclare module '../../init' {\n export interface CosmosGlobals {\n instances?: (CosmosInstance | LegacyCosmosInstace)[];\n configurationContext?: Context<ConfigurationContextValue>;\n }\n}\n\nif (windowIsAvailable) {\n if (!window.cosmos.instances) {\n window.cosmos.instances = [];\n }\n\n window.cosmos.instances.push(instance);\n\n if (Array.isArray(window[legacyMetaKey])) {\n window.cosmos.instances.push(...window[legacyMetaKey]);\n delete window[legacyMetaKey];\n }\n\n if (!window[legacyMetaKey]) {\n window[legacyMetaKey] = {\n push: inst => {\n window.cosmos.instances?.push(inst);\n }\n };\n }\n}\n\nconst Configuration = forwardRef(function Configuration(\n {\n children,\n locale,\n direction,\n translations: customTranslations,\n theme,\n themeMode,\n onThemeModeChange,\n disableDefaultFontLoading,\n styleSheets: styleSheetURLs,\n styleSheetTarget,\n portalTarget,\n renderNativeControls,\n testIds,\n id\n }: PropsWithoutRef<ConfigurationProps>,\n ref: ConfigurationProps['ref']\n) {\n const context = windowIsAvailable\n ? window.cosmos.configurationContext ?? ConfigurationContext\n : ConfigurationContext;\n const ctx = useContext(context);\n const themeMachine = theme\n ? new ThemeMachine<DefaultThemeDefinition>({ theme, parent: ctx.themeMachine })\n : ctx.themeMachine;\n const translations = useMemo(\n () => createTranslationPack({ ...ctx.translations, ...customTranslations }),\n [ctx.translations, customTranslations]\n );\n\n const [wrapperEl, setWrapperEl] = useElement<HTMLDivElement>();\n const [connectedWatcherEl, setConnectedWatcherEl] = useElement<PegaConnectedWatcher>();\n // State tracking if the DOM nodes are connected. Only used to trigger rerenders when connected state changes.\n const [, setConnected] = useState<boolean | null>(null);\n const configRootRef = useConsolidatedRef<HTMLDivElement>(setWrapperEl, ref);\n\n useEffect(() => {\n if (!connectedWatcherEl) return;\n\n const connectDisconnectListener = () => {\n setConnected(connectedWatcherEl.isConnected);\n };\n\n connectedWatcherEl.addEventListener('connect-disconnect', connectDisconnectListener);\n\n return () => {\n connectedWatcherEl.removeEventListener('connect-disconnect', connectDisconnectListener);\n };\n }, [connectedWatcherEl]);\n\n // Determine valid style sheet and portal target with ShadowDOM handling.\n const [resolvedStyleSheetTarget, resolvedPortalTarget] = useMemo(() => {\n // When rendering on the server, or before the wrapper is in the DOM, just bail.\n if (!documentIsAvailable || !wrapperEl?.isConnected) return [undefined, undefined];\n\n const rootNode = wrapperEl.getRootNode();\n\n // When within the ShadowDOM, the default target is the ShadowRoot, otherwise default to head/body element.\n const defaultStyleSheetTarget = rootNode instanceof ShadowRoot ? rootNode : document.head;\n const defaultPortalTarget = rootNode instanceof ShadowRoot ? rootNode : document.body;\n\n // Currently passed prop or previous context value\n const requestedStyleSheetTarget = styleSheetTarget ?? ctx.styleSheetTarget;\n const requestedPortalTarget = portalTarget ?? ctx.portalTarget;\n\n // If the \"requested\" target is within the root node, it is valid, so use that, otherwise fallback to the default.\n return [\n rootNode.contains(requestedStyleSheetTarget ?? null)\n ? requestedStyleSheetTarget\n : defaultStyleSheetTarget,\n rootNode.contains(requestedPortalTarget ?? null) ? requestedPortalTarget : defaultPortalTarget\n ];\n }, [\n wrapperEl,\n wrapperEl?.isConnected,\n styleSheetTarget,\n portalTarget,\n ctx.styleSheetTarget,\n ctx.portalTarget\n ]);\n\n // Load global fonts and styles if this configuration instance is...\n const shouldInitialize = useMemo(\n () =>\n // the first configuration instance or...\n !ctx.initialized ||\n // is not within the same root node as the previous configuration instance.\n !!(wrapperEl && wrapperEl.getRootNode() !== ctx.styleSheetTarget?.getRootNode()),\n [ctx.initialized, wrapperEl]\n );\n\n // If we need to reinitialize, clear the mounted StyleSheetManagers.\n const mountedStyleSheetManagers = shouldInitialize ? [] : ctx.mountedStyleSheetManagers;\n\n // Check if this StyleSheetManager is mounted above this Configuration.\n const stylesheetManagerMounted = useMemo(\n () => !!mountedStyleSheetManagers?.includes(StyleSheetManager),\n [mountedStyleSheetManagers]\n );\n\n useEffect(() => {\n const sym = Symbol(id);\n mountConfig(sym);\n\n return () => {\n unmountConfig(sym);\n };\n }, [id]);\n\n const wrappedChildren = shouldInitialize ? (\n <>\n {!disableDefaultFontLoading &&\n resolvedStyleSheetTarget &&\n createPortal(\n <link\n rel='stylesheet'\n href='https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400..700;1,400..700&family=Inter:wght@400..700&family=Roboto+Flex:opsz,wdth,wght@8..144,25..151,400..700&display=swap'\n data-cosmos-global-style\n />,\n resolvedStyleSheetTarget\n )}\n <GlobalStyle />\n {children}\n </>\n ) : (\n <>{children}</>\n );\n\n const styledWrappedChildren = stylesheetManagerMounted ? (\n wrappedChildren\n ) : (\n <StyleSheetManager\n disableVendorPrefixes\n target={\n // Target must be undefined in a JSDOM environment due to Styled Components server mode handling.\n navigatorIsAvailable &&\n resolvedStyleSheetTarget?.isConnected &&\n !navigator.userAgent.includes('jsdom')\n ? resolvedStyleSheetTarget\n : undefined\n }\n >\n {wrappedChildren}\n </StyleSheetManager>\n );\n\n return (\n <div\n data-config-root\n // Need to use inline styles because the StyleSheetManager is configured within this div.\n style={{ display: 'contents' }}\n ref={configRootRef}\n >\n <context.Provider\n // eslint-disable-next-line react/jsx-no-constructed-context-values\n value={{\n locale: locale ?? ctx.locale,\n direction:\n direction ?? (locale !== undefined ? directionOfLocale(locale) : ctx.direction),\n translations,\n themeMachine,\n themeMode: themeMode ?? ctx.themeMode,\n onThemeModeChange: onThemeModeChange ?? ctx.onThemeModeChange,\n styleSheetTarget: resolvedStyleSheetTarget,\n portalTarget: resolvedPortalTarget,\n loadedRef: ctx.loadedRef,\n renderNativeControls: renderNativeControls ?? ctx.renderNativeControls,\n testIds: testIds ?? ctx.testIds,\n mountedStyleSheetManagers: stylesheetManagerMounted\n ? mountedStyleSheetManagers\n : [...(mountedStyleSheetManagers ?? []), StyleSheetManager],\n initialized: true\n }}\n >\n <ThemeProvider theme={themeMachine.theme}>\n {styleSheetURLs &&\n resolvedStyleSheetTarget &&\n createPortal(\n styleSheetURLs.map(url => (\n <link rel='stylesheet' href={url} key={url} data-cosmos-global-style />\n )),\n resolvedStyleSheetTarget\n )}\n {styledWrappedChildren}\n </ThemeProvider>\n </context.Provider>\n <pega-connected-watcher ref={setConnectedWatcherEl} style={{ display: 'none' }} />\n </div>\n );\n});\n\nexport default Configuration;\n"]}
|
package/lib/hooks/useI18n.d.ts
CHANGED
|
@@ -271,6 +271,7 @@ declare const useI18n: () => import("../i18n/translate").TranslationFunction<Rea
|
|
|
271
271
|
app_shell_pin: string;
|
|
272
272
|
app_shell_unpin: string;
|
|
273
273
|
application_logo: string;
|
|
274
|
+
theme_mode: string;
|
|
274
275
|
combobox_open_close: string;
|
|
275
276
|
combobox_search_instructions: string;
|
|
276
277
|
combobox_open_list_button_a11y: string;
|
|
@@ -1563,6 +1564,12 @@ declare const useI18n: () => import("../i18n/translate").TranslationFunction<Rea
|
|
|
1563
1564
|
expression_datapage_general_error: string;
|
|
1564
1565
|
expression_allowed_rules_error: string;
|
|
1565
1566
|
expression_empty_error: string;
|
|
1567
|
+
cb_invalid_leaf_condition: string;
|
|
1568
|
+
cb_invalid_operand: string;
|
|
1569
|
+
cb_expression_node_null: string;
|
|
1570
|
+
cb_expression_node_missing: string;
|
|
1571
|
+
cb_invalid_unary_expression: string;
|
|
1572
|
+
cb_invalid_group_expression: string;
|
|
1566
1573
|
ui_inspector: string;
|
|
1567
1574
|
ui_inspector_iframe_title: string;
|
|
1568
1575
|
ui_inspector_metadata: 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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @example const { themeMode, onThemeModeChange } = useThemeMode();
|
|
3
|
+
* @returns Object containing themeMode and onThemeModeChange function.
|
|
4
|
+
*/
|
|
5
|
+
declare const useThemeMode: () => {
|
|
6
|
+
themeMode: NonNullable<"dark" | "light" | "system" | undefined>;
|
|
7
|
+
onThemeModeChange: ((mode: NonNullable<import("..").ConfigurationProps["themeMode"]>) => void) | undefined;
|
|
8
|
+
};
|
|
9
|
+
export default useThemeMode;
|
|
10
|
+
//# sourceMappingURL=useThemeMode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useThemeMode.d.ts","sourceRoot":"","sources":["../../src/hooks/useThemeMode.ts"],"names":[],"mappings":"AAEA;;;GAGG;AACH,QAAA,MAAM,YAAY;;;CAGjB,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import useConfiguration from './useConfiguration';
|
|
2
|
+
/**
|
|
3
|
+
* @example const { themeMode, onThemeModeChange } = useThemeMode();
|
|
4
|
+
* @returns Object containing themeMode and onThemeModeChange function.
|
|
5
|
+
*/
|
|
6
|
+
const useThemeMode = () => {
|
|
7
|
+
const { themeMode, onThemeModeChange } = useConfiguration();
|
|
8
|
+
return { themeMode, onThemeModeChange };
|
|
9
|
+
};
|
|
10
|
+
export default useThemeMode;
|
|
11
|
+
//# sourceMappingURL=useThemeMode.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useThemeMode.js","sourceRoot":"","sources":["../../src/hooks/useThemeMode.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAElD;;;GAGG;AACH,MAAM,YAAY,GAAG,GAAG,EAAE;IACxB,MAAM,EAAE,SAAS,EAAE,iBAAiB,EAAE,GAAG,gBAAgB,EAAE,CAAC;IAC5D,OAAO,EAAE,SAAS,EAAE,iBAAiB,EAAE,CAAC;AAC1C,CAAC,CAAC;AAEF,eAAe,YAAY,CAAC","sourcesContent":["import useConfiguration from './useConfiguration';\n\n/**\n * @example const { themeMode, onThemeModeChange } = useThemeMode();\n * @returns Object containing themeMode and onThemeModeChange function.\n */\nconst useThemeMode = () => {\n const { themeMode, onThemeModeChange } = useConfiguration();\n return { themeMode, onThemeModeChange };\n};\n\nexport default useThemeMode;\n"]}
|
package/lib/i18n/default.d.ts
CHANGED
|
@@ -267,6 +267,7 @@ declare const _default: {
|
|
|
267
267
|
app_shell_pin: string;
|
|
268
268
|
app_shell_unpin: string;
|
|
269
269
|
application_logo: string;
|
|
270
|
+
theme_mode: string;
|
|
270
271
|
combobox_open_close: string;
|
|
271
272
|
combobox_search_instructions: string;
|
|
272
273
|
combobox_open_list_button_a11y: string;
|
|
@@ -1563,6 +1564,13 @@ declare const _default: {
|
|
|
1563
1564
|
expression_datapage_general_error: string;
|
|
1564
1565
|
expression_allowed_rules_error: string;
|
|
1565
1566
|
expression_empty_error: string;
|
|
1567
|
+
/** studio-dx-components: ConditionBuilder */
|
|
1568
|
+
cb_invalid_leaf_condition: string;
|
|
1569
|
+
cb_invalid_operand: string;
|
|
1570
|
+
cb_expression_node_null: string;
|
|
1571
|
+
cb_expression_node_missing: string;
|
|
1572
|
+
cb_invalid_unary_expression: string;
|
|
1573
|
+
cb_invalid_group_expression: string;
|
|
1566
1574
|
ui_inspector: string;
|
|
1567
1575
|
ui_inspector_iframe_title: string;
|
|
1568
1576
|
ui_inspector_metadata: 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAkgDE,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqMxB,6CAA6C;;;;IAK7C,4CAA4C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0F5C,uCAAuC;;;;;;;;;;;IAavC,6CAA6C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAnzD/C,wBAi2DE"}
|
package/lib/i18n/default.js
CHANGED
|
@@ -289,6 +289,7 @@ export default {
|
|
|
289
289
|
app_shell_pin: 'Pin',
|
|
290
290
|
app_shell_unpin: 'Unpin',
|
|
291
291
|
application_logo: 'Application logo',
|
|
292
|
+
theme_mode: 'Theme mode',
|
|
292
293
|
/* core:ComboBox */
|
|
293
294
|
combobox_open_close: 'Arrow down to open, press escape to close.',
|
|
294
295
|
combobox_search_instructions: 'Start typing to search',
|
|
@@ -1688,6 +1689,13 @@ export default {
|
|
|
1688
1689
|
expression_datapage_general_error: 'Error occurred on fetching {0}',
|
|
1689
1690
|
expression_allowed_rules_error: 'Only {0} are allowed',
|
|
1690
1691
|
expression_empty_error: 'Cannot be blank',
|
|
1692
|
+
/** studio-dx-components: ConditionBuilder */
|
|
1693
|
+
cb_invalid_leaf_condition: 'Invalid leaf condition',
|
|
1694
|
+
cb_invalid_operand: 'Invalid operand',
|
|
1695
|
+
cb_expression_node_null: 'Expression node cannot be null or undefined',
|
|
1696
|
+
cb_expression_node_missing: 'Expression node must have expressions',
|
|
1697
|
+
cb_invalid_unary_expression: 'Invalid unary expression',
|
|
1698
|
+
cb_invalid_group_expression: 'Invalid group expression',
|
|
1691
1699
|
/* ui-inspector */
|
|
1692
1700
|
ui_inspector: 'UI Inspector',
|
|
1693
1701
|
ui_inspector_iframe_title: '{0} - UI Inspector enabled',
|
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 always: 'Always',\n never: 'Never',\n true: 'True',\n false: 'False',\n none: 'None',\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 any: 'Any',\n default: 'default',\n app_default: 'app default',\n sitewide: 'Sitewide',\n opens_in_a_new_tab: 'Opens in a new tab',\n details: 'Details',\n content: 'Content',\n tabs: 'Tabs',\n pulse: 'Pulse',\n history: 'History',\n summary: 'Summary',\n summary_panel: 'Summary Panel',\n heading: 'Heading',\n fields: 'Fields',\n subheading: 'Subheading',\n records: 'records',\n utilities: 'Utilities',\n search: 'Search',\n menu: 'menu',\n new: 'New',\n info: 'info',\n shortcuts: 'Shortcuts',\n label: 'Label',\n caption: 'Caption',\n id: 'ID',\n name: 'Name',\n type: 'Type',\n icon: 'Icon',\n page: 'Page',\n default_input: 'Default input',\n default_input_value: 'Default input value',\n default_input_property: 'Default input property',\n value: 'Value',\n field: 'Field',\n field_group: 'Field Group',\n insight: 'Insight',\n action: 'Action',\n view: 'View',\n range_input: 'range input',\n system: 'System',\n response: 'Response',\n rationale: 'Rationale',\n duration: 'Duration',\n tokens: 'Tokens',\n keyboard_instructions: 'Keyboard instructions',\n today: 'Today',\n verify_ai_generated_expression: 'Verify AI-generated content for accuracy.',\n custom: 'Custom',\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 drag: 'Drag',\n resize: 'Resize',\n reset: 'Reset',\n refresh: 'Refresh',\n copy: 'Copy',\n explain: 'Explain',\n generate: 'Generate',\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 clear_selection: 'Clear selection',\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 enter_fullscreen: 'Enter fullscreen',\n exit_fullscreen: 'Exit fullscreen',\n disable_word_wrap: 'Disable word wrap',\n enable_word_wrap: 'Enable word wrap',\n expand_search: 'Expand search',\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 remove_noun: 'Remove {0}',\n loading_noun: 'Loading {0}…',\n create_noun: 'Create {0}',\n choose_noun: 'Choose {0}',\n select_noun: 'Select {0}',\n\n /* Contextual actions label */\n actions_for: 'Actions - {0}',\n\n /* States */\n edited: 'Edited {0}',\n deleted: '{0} deleted',\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 errors: {\n zero: 'Errors',\n one: 'Error',\n two: 'Errors',\n few: 'Errors',\n many: 'Errors',\n other: 'Errors'\n },\n warning: 'Warning',\n success: 'Success',\n pass: 'Pass',\n fail: 'Fail',\n did_not_ask: 'Did not ask',\n created: 'Created',\n results_for: 'Results for {0}',\n opening_noun: 'Opening {0}',\n characters_typed: 'characters typed',\n processing: 'Processing',\n copied_to_clipboard: 'Copied to clipboard',\n failed_to_copy: 'Failed to copy',\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 /* Error messages */\n error_field_unavailable: 'Field {0} is unavailable',\n error_field_list_unavailable: 'Fields {0} are unavailable',\n\n /* Miscellaneous */\n x_of_y: '{0} of {1}',\n n_more: '{0} more',\n keypress_instruction: 'Press {0} to {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 app_shell_user_account: 'Account',\n app_shell_pin: 'Pin',\n app_shell_unpin: 'Unpin',\n application_logo: 'Application logo',\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:CompositeInput */\n composite_input_open_button_a11y: 'Open configuration dialog',\n composite_input_close_button_a11y: 'Close configuration dialog',\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 minimize: 'Minimize',\n maximize: 'Maximize',\n dock: 'Dock',\n\n /* core:MultiStepForm */\n step_num: 'Step {0} of {1}',\n\n /* core:Tree */\n load_more: 'Load more',\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 to now',\n set_current_date_a11y: 'Set to today',\n clear_current_date_and_time: 'Clear current date and time',\n clear_current_date: 'Clear current date',\n clear_current_time: 'Clear current time',\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 set_current_week_ally: 'Set to current week',\n auto_focus_next_input_description:\n 'Automatically moves focus to next input when current input is completed.',\n year_input_description: 'You may also enter a four-digit year manually.',\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 go_to_previous_step: 'Go to previous step - {0}',\n\n /* core:Number */\n measured_in: 'measured in {0}',\n increase_value_by: 'Increase value by {0}',\n decrease_value_by: 'Decrease value by {0}',\n stepper_instructions: 'To set the value use the up and down arrow keys or type the value',\n\n /* core:Banner */\n banner_dismiss_button_label_a11y: 'Dismiss banner',\n\n /* core:File */\n file_upload_text_main: 'Drop or {0}',\n file_upload_text_one: 'choose a file',\n file_upload_text_multiple: 'choose files',\n download_file: 'Download {0}',\n preview_file: 'Preview {0}',\n open_file_in_new_tab: 'Open {0} in new tab',\n upload_failed: '{0} upload failed with {1}',\n uploading_file: 'uploading {0}',\n number_of_items: {\n zero: 'No items',\n one: '{0} item',\n two: '{0} items',\n few: '{0} items',\n many: '{0} items',\n other: '{0} items'\n },\n attach_files: 'Attach files',\n attach_review: 'Attach or review',\n files_uploaded: {\n zero: 'No files uploaded',\n one: '{0} file uploaded successfully',\n two: '{0} files uploaded successfully',\n few: '{0} files uploaded successfully',\n many: '{0} files uploaded successfully',\n other: '{0} files uploaded successfully'\n },\n files_upload_failed: {\n zero: 'No files failed to upload',\n one: '{0} file failed to upload',\n two: '{0} files failed to upload',\n few: '{0} files failed to upload',\n many: '{0} files failed to upload',\n other: '{0} files failed to upload'\n },\n download_all: 'Download all',\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 exact_location: 'Exact location',\n allow_location_permissions_text:\n 'To get current location, allow location permissions for this app',\n location_info: 'Location info',\n\n /* core:SearchInput */\n advanced_search: 'Advanced search',\n recent_searches: 'Recent searches',\n search_instructions: 'Use arrow keys to move up and down the suggested results.',\n search_in: 'Search in',\n search_in_noun: 'Search in {0}',\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 current_case: 'Current case',\n case_type_icon: '{0} - icon',\n case_type: 'Case type',\n case_tabs: 'Tabs for current case',\n update_available: 'Update available',\n\n /* work:CasePreview */\n close_preview: 'Close preview',\n preview_error: 'Unable to load preview',\n previewed_case: 'Previewed case',\n case_preview_tabs: 'Tabs for previewed case',\n\n /* work:GenAICoach */\n agent_switcher: '{0}, agent switcher',\n message_pega_gen_ai_coach: 'Message {0}',\n ai_disclaimer: 'Verify AI-generated content for accuracy.',\n suggestions: 'Suggestions',\n you: 'You',\n agent: 'Agent',\n chat_with_ai: 'Chat with AI',\n agent_noun: '{0} agent',\n welcome_text: 'How can I help you?',\n start_chat: 'Start chat',\n starter_message: 'Starter message',\n ask_coach: 'Ask {0}',\n thinking: 'Thinking',\n analyzing_data_sources: 'Analyzing data sources',\n generating_response: 'Generating response',\n double_checking_results: 'Double checking results',\n finalizing_response: 'Finalizing response',\n response_generated: 'Response generated',\n good_response: 'Good response',\n bad_response: 'Bad response',\n share_feedback: 'Share feedback',\n interaction_message:\n 'Use the left and right arrow keys to navigate between interactive elements in the message',\n pega_genAI: 'Pega GenAI',\n suggestions_in_message: 'with {0} suggestions',\n you_asked: 'You asked {0}',\n no_conversations_found: 'No conversations found',\n conversation: 'Conversation',\n back: 'Back',\n add_attachment: 'Add attachment',\n attachment_upload_in_progress: 'Attachment upload in progress',\n attachment_added: 'Attachment added',\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 country_code: 'Country code',\n phone_number: 'Phone number',\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_description: 'Has errors',\n tab_error_tooltip: '{0} has errors',\n all_tabs: 'All tabs',\n return_to_tab_list: 'Return to tab list',\n\n /* core:LightBox */\n non_previewable: \"{0} file can't be previewed\",\n content_load_error: 'Error loading content',\n description_unavailable: 'Description unavailable',\n\n /* core:Toaster */\n shortcut_JumpToToast: 'Jump to toast',\n shortcut_DismissToast: 'Dismiss toast',\n\n /* core: PageTemplates */\n configurable_layout_instructions:\n 'Configurable layout. Use tab key to select an item. Use arrow keys to move it to a new position. Use arrow keys with shift to resize the item in the given direction.',\n page_number: 'Page {0}',\n\n /* dnd:DragHandle */\n drag_handle_activate_description: 'Press Space to activate dragging.',\n drag_handle_drop_description: 'Press Space again to drop.',\n drag_handle_cancel_description: 'Press Escape to cancel dragging.',\n drag_handle_vertical_description: 'Use arrow keys to drag up or down.',\n drag_handle_horizontal_description: 'Use arrow keys to drag left or right.',\n drag_handle_tab_description: 'Use Tab and Shift Tab to drag to adjacent lists.',\n\n /* dnd:StandardDragDropList */\n add_button_description: 'Click to add a new item to the list',\n configure_button_description: 'Click to configure the list item',\n remove_button_description: 'Click to remove the list item',\n list_item_control_instructions: 'Has interactive controls',\n list_item_nav_instructions:\n 'Use the up and down arrow keys to navigate between items. Press Enter to enter tabbing mode and access elements within the list',\n\n /* work:Assignments */\n assignments: 'Assignments',\n\n /* work:Hierarchial Assignment */\n case: 'Case',\n assignment: 'Assignment',\n assignment_item_assignee: 'Assignee:',\n assignment_item_urgency: 'Urgency:',\n assignment_announcement_label: 'Assignment:',\n case_announcement_label: 'Case: {0}',\n assignments_go_announcement_label: 'Go - {0}',\n assignments_sla: 'Due {0}',\n key_navigation_instruction:\n 'Use Enter key to navigate by Tab. Escape to navigate using arrow keys. Recommend using focus mode in screen reader for optimal experience.',\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 ask: 'Ask',\n error_message: 'Unable to retrieve data at the moment. Please try again.',\n add_a_comment: 'Add a comment',\n score: 'Score {0}',\n relevance_score: 'Relevance score {0}',\n ai_suggestions: 'AI suggestions',\n auto_answered: 'Auto answered',\n questions_detected: 'Questions detected',\n past_answered_questions: 'Past answered questions',\n not_relevant_questions: 'Not relevant questions',\n back_to_ai_suggestions: 'Back to AI suggestions',\n confidence: 'Confidence',\n ask_buddy: 'Ask buddy',\n ai_generated: 'AI generated',\n no_articles_found: 'No articles found',\n semantic_initial_message: 'Search results will appear here',\n confirmation_options: 'Confirmation options',\n search_filter: 'Filters - search articles',\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_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:Confirmation */\n confirmation_whats_next: \"What's next\",\n confirmation_open_tasks: 'Open tasks',\n\n /* work:SearchResults */\n search_results_clear_all_filters: 'Clear all filters',\n search_results_clear_filter: 'Clear {0} filter',\n search_results_active_filters: 'Active filters',\n search_filter_update_message: 'Modifying filters will update search results',\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: 'Tasks',\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_heading_style_normal: 'Normal',\n rte_heading_style_heading_1: 'Heading 1',\n rte_heading_style_heading_2: 'Heading 2',\n rte_heading_style_heading_3: 'Heading 3',\n rte_heading_style_heading_4: 'Heading 4',\n rte_heading_style_unknown: 'Unknown',\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_link_text: 'Text',\n rte_link_url: 'URL',\n rte_image: 'Insert 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_edit_image: 'Edit image {0}',\n rte_delete_image: 'Delete image {0}',\n rte_image_key_command: 'Press enter to edit the image',\n\n /* social:Email */\n important: 'Important',\n expand_trail: 'Expand trail',\n collapse_trail: 'Collapse trail',\n copy_to: 'Copy to',\n subject_label: 'Subject: {0}',\n search_results: 'Search results',\n get_next_email: 'Get next email',\n mark_email_as_important: 'Mark email as important',\n email_attachment: '{0} with {1}',\n\n /* social:Feed */\n feed_post_type: 'Post type',\n feed_new_post: 'Message',\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_edit_posted: 'Post edited',\n feed_edit_commented: 'Comment edited',\n feed_context: 'in {0}',\n feed_liked_by: 'Liked by {0}',\n feed_likes: 'Likes',\n feed_visibility: 'Visibility',\n feed_private: 'Private',\n feed_public: 'Public',\n feed_visible_to: 'Visible to',\n feed_users: 'Users',\n feed_mode: 'Mode',\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_added: 'Comment added',\n feed_comment_removed: 'Comment 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 markdown_syntax: 'Markdown syntax',\n markdown_instructions: 'Add special characters around your text to apply formatting.',\n markdown_styles: 'Style',\n markdown_images: 'Images',\n markdown_links: 'Links',\n markdown_lists: 'Lists',\n markdown_headings: 'Headings',\n markdown_code: 'Code',\n markdown_code_block: 'Code block',\n markdown_bold: 'Bold',\n markdown_italic: 'Italic',\n markdown_blockquote: 'Blockquote',\n markdown_heading_level: 'Heading {0}',\n markdown_ordered_list: 'Ordered list',\n markdown_ordered_sublist: 'Ordered sublist',\n markdown_unordered_list: 'Unordered list',\n markdown_unordered_sublist: 'Unordered sublist',\n markdown_link_text: 'Link text',\n markdown_link_url: 'Link url',\n markdown_alt_text: 'Alt text',\n markdown_image_url: 'Image url',\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 context_data: 'Context data',\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 suggestion: 'Suggestion',\n suggested_reply_copied_to_input_field: 'Suggested reply copied to input field',\n dialogue: 'Dialogue',\n suggest_reply: 'Suggest reply',\n join_conversation: 'Join conversation',\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',\n email_add_attachment_count: '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 mailing_details: 'mailing details',\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_disconnect_participant: 'Disconnect participant',\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:VerbatimParagraph */\n attestation_statement: 'I attest that I have spoken this as written',\n script_adherence_error: 'Dialog should be adhered to before submission',\n\n /* cs:TaskManager */\n accept_all: 'Accept all',\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 close_interaction: 'Close 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 commitment in context\",\n detected_entities: 'Detected entities',\n task_deleted: 'Deleted',\n\n /* cs:FeedbackMetrics */\n no_analytics_collected: 'No analytics were collected during this interaction',\n feedback_not_available: 'Feedback not available',\n\n /* cs:FollowUpTask */\n due_on: 'Due on {0}',\n\n /* cs:InteractionSummary */\n interaction_summary: 'Interaction summary',\n edit_interaction_summary: 'Edit interaction summary',\n cancel_editing_interaction_summary: 'Cancel editing interaction summary',\n save: 'Save',\n save_interaction_summary: 'Save interaction summary',\n reason_for_transfer: 'Reason for transfer',\n reason_cannot_be_blank: 'Reason for transfer cannot be blank',\n ai_suggested_summary: 'AI suggested summary',\n summary_cannot_be_blank: 'Summary cannot be blank',\n interaction_Summary_not_available: 'Interaction summary not available',\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 items_added_to_previous_list: 'Items added to previous list',\n items_added_to_current_list: 'Items added to current list',\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_placeholder: 'Select values',\n condition_builder_single_selection_placeholder: '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_row: 'Row {0}',\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 condition_builder_comparator_is_true: 'is true',\n condition_builder_comparator_is_false: 'is false',\n condition_builder_comparator_is_equal_to: 'is equal to',\n condition_builder_comparator_is_not_equal_to: 'is not equal to',\n condition_builder_comparator_is_null: 'is null',\n condition_builder_comparator_is_not_null: 'is not null',\n condition_builder_comparator_is_in_list: 'is in list',\n condition_builder_comparator_is_not_in_list: 'is not in list',\n condition_builder_comparator_starts_with: 'starts with',\n condition_builder_comparator_not_starts_with: 'not starts with',\n condition_builder_comparator_ends_with: 'ends with',\n condition_builder_comparator_not_ends_with: 'not ends with',\n condition_builder_comparator_contains: 'contains',\n condition_builder_comparator_not_contains: 'not contains',\n condition_builder_comparator_between: 'between',\n condition_builder_comparator_not_between: 'not between',\n condition_builder_comparator_greater_than: 'greater than',\n condition_builder_comparator_greater_than_or_equals: 'greater than or equals',\n condition_builder_comparator_lower_than: 'lower than',\n condition_builder_comparator_lower_than_or_equals: 'lower than or equals',\n condition_builder_comparator_after: 'after',\n condition_builder_comparator_on_or_after: 'on or after',\n condition_builder_comparator_before: 'before',\n condition_builder_comparator_on_or_before: 'on or before',\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 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:BackgroundPicker */\n style: 'Style',\n color: 'Color',\n opacity: 'Opacity',\n file_url: 'File URL',\n size: 'Size',\n position: 'Position',\n repeat: 'Repeat',\n image_preview: 'Image preview',\n direction: 'Direction',\n color_stops: 'Color stops',\n add_stops: 'Add stops',\n gradient_preview: 'Gradient preview',\n location: 'Location',\n delete_stop: 'Delete stop',\n edit_background_picker_label: 'Edit {0}',\n automatic: 'Automatic',\n transparent: 'Transparent',\n solid_color: 'Solid color',\n image: 'Image',\n linear_gradient: 'Linear gradient',\n radial_gradient: 'Radial gradient',\n conic_gradient: 'Conic gradient',\n auto: 'Auto',\n cover: 'Cover',\n contain: 'Contain',\n center: 'Center',\n top: 'Top',\n right: 'Right',\n left: 'Left',\n bottom: 'Bottom',\n top_left: 'Top left',\n top_right: 'Top right',\n bottom_right: 'Bottom right',\n bottom_left: 'Bottom left',\n no_repeat: 'No repeat',\n repeat_image: 'Repeat',\n repeat_x: 'Repeat x',\n repeat_y: 'Repeat y',\n space: 'Space',\n round: 'Round',\n file_url_error: 'Enter a valid URL',\n color_preview: 'Color preview',\n\n /* build:Lifecycle */\n parallel: 'Parallel',\n stage: 'Stage',\n process: 'Process',\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 wait_for_user_action: '{0} - wait for a user action',\n resolve_case: '{0} - resolve case',\n\n /* build:ItemLibrary */\n collect_info: 'Collect info',\n decision: 'Approve/Reject',\n send_email: 'Send email',\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:FieldReference */\n applies_to: 'Applies to',\n path: 'Path',\n current_context: 'Current context: {0}',\n fieldref_open_close: 'Arrow down to open, press escape to close.',\n fieldref_search_instructions: 'Start typing to search',\n fieldref_open_list_button_a11y: 'Open field reference list',\n fieldref_close_list_button_a11y: 'Close field reference list',\n\n /* build:DynamicInput */\n constant_description: 'The value that is entered here will not change.',\n expression_description: 'Set this value using advanced custom logic.',\n rule_description: 'Set this value using a Rule.',\n constant_label: 'Static ({0})',\n expression_label: 'Expression',\n rule_label: 'Source from Library',\n field_reference_label: 'Source from a field',\n field_reference_description: 'Set this value by referencing a field.',\n value_type: 'Value type',\n dynamicInput_format_Text: 'Text',\n 'dynamicInput_format_Text (paragraph)': 'Text (paragraph)',\n dynamicInput_format_Boolean: 'Boolean',\n dynamicInput_format_Currency: 'Currency',\n dynamicInput_format_Percentage: 'Percentage',\n dynamicInput_format_Integer: 'Integer',\n dynamicInput_format_Decimal: 'Decimal',\n dynamicInput_format_Phone: 'Phone',\n dynamicInput_format_DateTime: 'DateTime',\n dynamicInput_format_Date: 'Date',\n dynamicInput_format_Time: 'Time',\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 input_tree_contextual_label: 'of',\n input_tree_error: 'has error',\n parameters: 'Parameters',\n\n /* build:ExpressionBuilder */\n expression_editor: 'Expression editor',\n output_parameters: 'Output parameters',\n input_parameters: 'Input parameters',\n\n /** build: Expression */\n expression_input: 'Expression input',\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 /* build: Automation */\n expand_all: 'Expand all',\n collapse_all: 'Collapse all',\n expand_steps: 'Expand all steps',\n collapse_steps: 'Collapse all steps',\n expand_step: 'Expand step {0}',\n collapse_step: 'Collapse step {0}',\n expanded_step: 'Expanded step {0}',\n collapsed_step: 'Collapsed step {0}',\n add_step: 'Add step',\n generate_comments: 'Generate comments',\n action_set: 'Set',\n action_when: 'When',\n action_append: 'Append',\n action_call: 'Call',\n action_create: 'Create',\n action_for_each: 'For each',\n action_exit: 'Exit',\n action_return: 'Return',\n action_remove: 'Remove',\n action_error_handler: 'Error handler',\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 /* lists-repeating-structures: Toolbar */\n delete_group: 'Delete group',\n add_group: 'Add group',\n add_sort: 'Add sort',\n\n /* lists-repeating-structures: Map */\n view_in_google_maps: 'View in Google Maps',\n location_marker: 'Location marker {0}',\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 /* authoring-ui-views: AdditionalInformation */\n additional_information: 'Additional Information',\n field_picker_label: 'Field',\n field_picker_placeholder: 'Select Field...',\n editor_loading_message: 'Loading editor...',\n\n /* authoring-ui-views: FieldLabelInput */\n custom_label: 'Custom label',\n custom_caption: 'Custom caption',\n\n /* authoring-ui-views: TargetClassLabelInput */\n add_label: 'Add label',\n custom_add_label: 'Custom add label',\n\n /* authoring-ui-views: Instructions */\n instruction_text_label: 'Instruction text',\n\n /* authoring-ui-views: AddParagraphModal */\n paragraph_already_exists_error: 'Paragraph rule with name {0} already exists',\n paragraph_create_modal_heading: 'New Dynamic Text',\n paragraph_update_modal_heading: 'Edit {0}',\n paragraph_name_label: 'Name',\n paragraph_text_content_label: 'Text',\n shared_rule: 'This is a shared Rule.',\n creating_new_rule: 'Creating new Rule...',\n updating_rule: 'Updating Rule...',\n unsupported_rule_type_label: 'Unsupported ruleType',\n unsupported_rule_type_description: \"Unsupported rule type: '{0}'\",\n create_new_record_failed: 'Create new record failed',\n\n /* authoring-ui-views: ContentPicker */\n component_not_found_error:\n \"The '{0}' component is missing. Check that it is added to the application.\",\n component_not_found_error_with_type: \"No components of type '{0}' were found.\",\n component_not_found_error_with_subtype: \"No components of subtype '{0}' were found.\",\n component_not_found_error_with_type_and_subtype:\n \"No components of type '{0}' and subtype '{1}' were found.\",\n component_missing_error_status:\n \"The '{0}' component is missing. Add it to the application or use the default component in the property panel.\",\n field_type_updated_error_status:\n 'The type of \"{0}\" was updated. Delete it or update it in the property panel.',\n field_type_updated_error: 'The type of \"{0}\" was updated.',\n\n /* authoring-ui-views: useDrillIn */\n field_does_not_exist_error:\n 'Field \"{0}\" was not found. Check if it still exists and is marked as relevant.',\n\n /* authoring-ui-views: DynamicContentPicker */\n configure_item: 'Configure {0}: {1}',\n data_page_call_error: 'Error occurred calling the data page. Data for {0} cannot be retrieved.',\n item_not_in_data_page: '{0} no longer exists in the data page.',\n\n /* authoring-ui-views: SyncTabsFromDetails */\n sync_tabs_additional_info_enabling: 'Enabling reveals the same tabs from the Full Page View.',\n sync_tabs_additional_info_tabs: 'Otherwise, the following tabs will be shown:',\n\n /* authoring-ui-views: LocationDetails */\n location_field_label: 'Location field',\n\n /* authoring-ui-views: AddMenu */\n create_new_item: 'Create new {0}',\n\n /* authoring-ui-views: ThemeDesigner */\n warning_color: 'Warning - {0}',\n color_contrast_warning: 'Fails WCAG 2.1 AA contrast when paired with these colors:',\n color_contrast_warning_non_solid:\n 'WCAG 2.1 AA contrast must be manually verified when paired with non-solid colors:',\n has_compliance_warning: '{0} - has compliance warning',\n compliance_warning: 'Compliance warning',\n gradient_warning: 'WCAG 2.1 AA contrast must be manually verified for a non-solid color.',\n advanced_settings_toggle_btn: '{0} advanced settings',\n color_swatch_btn_label: 'Set {0} to {1}',\n theme_preview_title: 'Theme Preview',\n default_font_info: 'Selection will override app header and heading fonts',\n custom_font_family: '{0} font family name',\n custom_font_family_error: \"Font family can't be empty\",\n\n /* authoring-ui-views: EditFullObject */\n fields_to_highlight: 'Summary fields to highlight',\n first_field: 'First field',\n first_n_fields: 'First {0} fields',\n learn_about_primary_fields: 'Learn more about Primary Fields',\n show_lifecycle: 'Show Lifecycle',\n use_only_primary_fields: 'Use only Primary Fields in Summary Panel',\n use_only_primary_fields_info:\n '\"Use only Primary Fields\" pre-populates and links the Full Object Display Rule with the Primary Fields configured in the Data Model tab.',\n new_tab_heading: 'New Tab',\n creating_tab: 'Creating Tab...',\n create_tab_failure_message: 'Failed to create a Tab',\n\n /* authoring-ui-views: EditFields */\n loading_configure_dialog: 'Loading configure dialog',\n\n /* authoring-ui-views: InsightContextFilters */\n delete_parameter_filter: 'Delete parameter filter',\n insight_field_applied_on: 'Insight field applied on',\n please_fill_the_required_fields: 'Please fill the required fields',\n system_pages: 'System pages',\n value_cannot_be_blank: 'Value cannot be blank',\n valid_number_within_range: 'Enter a valid number between {0} - {1}',\n expected_value: 'Expected value {0}',\n invalid_value: 'Invalid value',\n\n /** authoring-ui-views: LandingPageFilters */\n field_does_not_exist_on_the_selected_source: \"Field doesn't exist on the selected source\",\n failed_to_validate_source: 'Failed to validate source',\n source_used_for_picklist_values: 'Source used for picklist values',\n\n /** authoring-ui-view: Runtime Dashboards */\n private_only: 'Private - Only you',\n shared_users_with_access: 'Shared - Users with access',\n public_all_users: 'Public - All users',\n access_group: 'Access group',\n dashboard_visibility: 'Visibility',\n dashboard_shared_with: 'Shared with',\n dashboard_private: 'private',\n\n /* business-intelligence: InsightPanel */\n hide_icons_additional_info_first_sentence:\n 'To ensure accessibility standards are met, color cannot be the only way of distinguishing information.',\n hide_icons_additional_info_second_sentence:\n 'Visit {0} to learn more about the related accessibility guidelines.',\n wcag: 'WCAG',\n\n /* business-intelligence: Trend indicators - current time period */\n this_year: 'This year',\n this_quarter: 'This quarter',\n this_month: 'This month',\n this_week: 'This week',\n this_day: 'This day',\n this_hour: 'This hour',\n this_minute: 'This minute',\n this_second: 'This second',\n\n over_time_period: 'over {0}',\n since_time_period: 'since {0}',\n in_current_time_period: 'in {0}',\n\n /* business-intelligence: Trend indicators - Increase cases */\n increased_by_value_over_time_period: 'Increased by {0} over {1}',\n increased_by_value_since_time_period: 'Increased by {0} since {1}',\n increased_by_value_in_current_time_period: 'Increased by {0} in {1}',\n increased_by_value_today: 'Increased by {0} today',\n\n /* business-intelligence: Trend indicators - Decrease cases */\n decreased_by_value_over_time_period: 'Decreased by {0} over {1}',\n decreased_by_value_since_time_period: 'Decreased by {0} since {1}',\n decreased_by_value_in_current_time_period: 'Decreased by {0} in {1}',\n decreased_by_value_today: 'Decreased by {0} today',\n\n /* business-intelligence: Trend indicators - No change cases */\n no_change_over_time_period: 'No change over {0}',\n no_change_since_time_period: 'No change since {0}',\n no_change_in_current_time_period: 'No change in {0}',\n no_change_today: 'No change today',\n /* business-intelligence: Date functions */\n date_function_year: 'Year',\n date_function_quarter: 'Quarter',\n date_function_month: 'Month',\n date_function_week: 'Week',\n date_function_day: 'Day',\n date_function_hour: 'Hour',\n date_function_minute: 'Minute',\n date_function_month_of_year: 'Month of year',\n date_function_day_of_month: 'Day of month',\n date_function_day_of_week: 'Day of week',\n date_function_hour_of_day: 'Hour of day',\n\n /* business-intelligence: Aggregations */\n aggregation_count: 'Count',\n aggregation_distinct_count: 'Distinct count',\n aggregation_total: 'Total',\n aggregation_average: 'Average',\n aggregation_minimum: 'Minimum',\n aggregation_maximum: 'Maximum',\n\n /* business-intelligence: Legend */\n select_chart_data_view: 'Select chart data view',\n toggle_chart_element_visibility: 'Toggle chart element visibility',\n chart_legend_items: 'Chart legend items',\n\n /* authoring-ui-views: AddButton */\n add_to: 'Add to {0}',\n\n /* authoring-ui-views: ViewPicker */\n namespace: 'Namespace',\n\n /* authoring-ui-views: WhenPicker */\n decision_rule: 'Decision',\n when_rule: 'When',\n invalid_rule: 'This Rule is no longer valid. Ensure it exists in the system.',\n invalid_rule_non_relevant_record:\n 'This Rule is no longer valid. Ensure it exists in the system and is marked as a relevant record.',\n\n /* authoring-ui-views: Preview */\n infinity_stack_overflow_error:\n 'This View is currently configured to include itself. Please change configuration to prevent error.',\n\n /** studio-dx-components: Expression */\n expression_error_incorrect_data_type: 'Incorrect datatype',\n expression_error_with_data_and_object_type: 'Incorrect type, {0} of type {1} is required',\n expression_error_with_data_type: 'Incorrect type, {0} is required',\n prompt_scope: 'Scope',\n prompt_type: 'Type',\n expression_wait_message:\n 'Expression is being validated. Please wait a little and then click Save/Submit again.',\n expression_general_error: 'Error Occurred in Expression Component',\n expression_datapage_general_error: 'Error occurred on fetching {0}',\n expression_allowed_rules_error: 'Only {0} are allowed',\n expression_empty_error: 'Cannot be blank',\n\n /* ui-inspector */\n ui_inspector: 'UI Inspector',\n ui_inspector_iframe_title: '{0} - UI Inspector enabled',\n ui_inspector_metadata: 'Metadata',\n ui_inspector_quick_info: 'Quick info',\n ui_inspector_field_metadata: 'Field metadata',\n\n /* AgentTracer */\n ai_tracer: 'AI tracer',\n agent_tracer_select_an_event: 'Select an event',\n agent_tracer_total_processing_time: 'Total processing time',\n agent_tracer_total_tokens: 'Total tokens',\n agent_tracer_total_tool_calls: 'Total tool calls',\n agent_tracer_total_llm_calls: 'Total LLM calls',\n agent_tracer_agent_configuration: 'Agent configuration',\n agent_tracer_agent_instruction: 'Agent instruction',\n agent_tracer_user_query: 'User query',\n agent_tracer_tools_to_be_invoked: 'Tools to be invoked',\n agent_tracer_inputs: 'Inputs',\n agent_tracer_output: 'Output',\n agent_tracer_prerequisites: 'Prerequisites',\n agent_tracer_pega_context: 'Pega context',\n agent_tracer_data_from_all_sources: 'Data sources',\n agent_tracer_complete_data_source: 'Complete data source',\n agent_tracer_conversation_trace: 'Conversation trace',\n\n /* Expression Builder */\n generating_explanation: 'Generating explanation',\n explanation_generated: 'Expression explanation generated',\n clear_explanation: 'Clear explanation',\n describe_expression: 'Describe Expression requirements',\n generating_expression: 'Generating expression',\n generated_explanation: 'Generated explanation',\n generated_expression: 'Generated Expression',\n expression_generated: 'Expression generated',\n expression_builder: 'Expression Builder',\n open_expression_builder: 'Open Expression Builder',\n library: 'Library'\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 always: 'Always',\n never: 'Never',\n true: 'True',\n false: 'False',\n none: 'None',\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 any: 'Any',\n default: 'default',\n app_default: 'app default',\n sitewide: 'Sitewide',\n opens_in_a_new_tab: 'Opens in a new tab',\n details: 'Details',\n content: 'Content',\n tabs: 'Tabs',\n pulse: 'Pulse',\n history: 'History',\n summary: 'Summary',\n summary_panel: 'Summary Panel',\n heading: 'Heading',\n fields: 'Fields',\n subheading: 'Subheading',\n records: 'records',\n utilities: 'Utilities',\n search: 'Search',\n menu: 'menu',\n new: 'New',\n info: 'info',\n shortcuts: 'Shortcuts',\n label: 'Label',\n caption: 'Caption',\n id: 'ID',\n name: 'Name',\n type: 'Type',\n icon: 'Icon',\n page: 'Page',\n default_input: 'Default input',\n default_input_value: 'Default input value',\n default_input_property: 'Default input property',\n value: 'Value',\n field: 'Field',\n field_group: 'Field Group',\n insight: 'Insight',\n action: 'Action',\n view: 'View',\n range_input: 'range input',\n system: 'System',\n response: 'Response',\n rationale: 'Rationale',\n duration: 'Duration',\n tokens: 'Tokens',\n keyboard_instructions: 'Keyboard instructions',\n today: 'Today',\n verify_ai_generated_expression: 'Verify AI-generated content for accuracy.',\n custom: 'Custom',\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 drag: 'Drag',\n resize: 'Resize',\n reset: 'Reset',\n refresh: 'Refresh',\n copy: 'Copy',\n explain: 'Explain',\n generate: 'Generate',\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 clear_selection: 'Clear selection',\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 enter_fullscreen: 'Enter fullscreen',\n exit_fullscreen: 'Exit fullscreen',\n disable_word_wrap: 'Disable word wrap',\n enable_word_wrap: 'Enable word wrap',\n expand_search: 'Expand search',\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 remove_noun: 'Remove {0}',\n loading_noun: 'Loading {0}…',\n create_noun: 'Create {0}',\n choose_noun: 'Choose {0}',\n select_noun: 'Select {0}',\n\n /* Contextual actions label */\n actions_for: 'Actions - {0}',\n\n /* States */\n edited: 'Edited {0}',\n deleted: '{0} deleted',\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 errors: {\n zero: 'Errors',\n one: 'Error',\n two: 'Errors',\n few: 'Errors',\n many: 'Errors',\n other: 'Errors'\n },\n warning: 'Warning',\n success: 'Success',\n pass: 'Pass',\n fail: 'Fail',\n did_not_ask: 'Did not ask',\n created: 'Created',\n results_for: 'Results for {0}',\n opening_noun: 'Opening {0}',\n characters_typed: 'characters typed',\n processing: 'Processing',\n copied_to_clipboard: 'Copied to clipboard',\n failed_to_copy: 'Failed to copy',\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 /* Error messages */\n error_field_unavailable: 'Field {0} is unavailable',\n error_field_list_unavailable: 'Fields {0} are unavailable',\n\n /* Miscellaneous */\n x_of_y: '{0} of {1}',\n n_more: '{0} more',\n keypress_instruction: 'Press {0} to {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 app_shell_user_account: 'Account',\n app_shell_pin: 'Pin',\n app_shell_unpin: 'Unpin',\n application_logo: 'Application logo',\n theme_mode: 'Theme mode',\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:CompositeInput */\n composite_input_open_button_a11y: 'Open configuration dialog',\n composite_input_close_button_a11y: 'Close configuration dialog',\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 minimize: 'Minimize',\n maximize: 'Maximize',\n dock: 'Dock',\n\n /* core:MultiStepForm */\n step_num: 'Step {0} of {1}',\n\n /* core:Tree */\n load_more: 'Load more',\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 to now',\n set_current_date_a11y: 'Set to today',\n clear_current_date_and_time: 'Clear current date and time',\n clear_current_date: 'Clear current date',\n clear_current_time: 'Clear current time',\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 set_current_week_ally: 'Set to current week',\n auto_focus_next_input_description:\n 'Automatically moves focus to next input when current input is completed.',\n year_input_description: 'You may also enter a four-digit year manually.',\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 go_to_previous_step: 'Go to previous step - {0}',\n\n /* core:Number */\n measured_in: 'measured in {0}',\n increase_value_by: 'Increase value by {0}',\n decrease_value_by: 'Decrease value by {0}',\n stepper_instructions: 'To set the value use the up and down arrow keys or type the value',\n\n /* core:Banner */\n banner_dismiss_button_label_a11y: 'Dismiss banner',\n\n /* core:File */\n file_upload_text_main: 'Drop or {0}',\n file_upload_text_one: 'choose a file',\n file_upload_text_multiple: 'choose files',\n download_file: 'Download {0}',\n preview_file: 'Preview {0}',\n open_file_in_new_tab: 'Open {0} in new tab',\n upload_failed: '{0} upload failed with {1}',\n uploading_file: 'uploading {0}',\n number_of_items: {\n zero: 'No items',\n one: '{0} item',\n two: '{0} items',\n few: '{0} items',\n many: '{0} items',\n other: '{0} items'\n },\n attach_files: 'Attach files',\n attach_review: 'Attach or review',\n files_uploaded: {\n zero: 'No files uploaded',\n one: '{0} file uploaded successfully',\n two: '{0} files uploaded successfully',\n few: '{0} files uploaded successfully',\n many: '{0} files uploaded successfully',\n other: '{0} files uploaded successfully'\n },\n files_upload_failed: {\n zero: 'No files failed to upload',\n one: '{0} file failed to upload',\n two: '{0} files failed to upload',\n few: '{0} files failed to upload',\n many: '{0} files failed to upload',\n other: '{0} files failed to upload'\n },\n download_all: 'Download all',\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 exact_location: 'Exact location',\n allow_location_permissions_text:\n 'To get current location, allow location permissions for this app',\n location_info: 'Location info',\n\n /* core:SearchInput */\n advanced_search: 'Advanced search',\n recent_searches: 'Recent searches',\n search_instructions: 'Use arrow keys to move up and down the suggested results.',\n search_in: 'Search in',\n search_in_noun: 'Search in {0}',\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 current_case: 'Current case',\n case_type_icon: '{0} - icon',\n case_type: 'Case type',\n case_tabs: 'Tabs for current case',\n update_available: 'Update available',\n\n /* work:CasePreview */\n close_preview: 'Close preview',\n preview_error: 'Unable to load preview',\n previewed_case: 'Previewed case',\n case_preview_tabs: 'Tabs for previewed case',\n\n /* work:GenAICoach */\n agent_switcher: '{0}, agent switcher',\n message_pega_gen_ai_coach: 'Message {0}',\n ai_disclaimer: 'Verify AI-generated content for accuracy.',\n suggestions: 'Suggestions',\n you: 'You',\n agent: 'Agent',\n chat_with_ai: 'Chat with AI',\n agent_noun: '{0} agent',\n welcome_text: 'How can I help you?',\n start_chat: 'Start chat',\n starter_message: 'Starter message',\n ask_coach: 'Ask {0}',\n thinking: 'Thinking',\n analyzing_data_sources: 'Analyzing data sources',\n generating_response: 'Generating response',\n double_checking_results: 'Double checking results',\n finalizing_response: 'Finalizing response',\n response_generated: 'Response generated',\n good_response: 'Good response',\n bad_response: 'Bad response',\n share_feedback: 'Share feedback',\n interaction_message:\n 'Use the left and right arrow keys to navigate between interactive elements in the message',\n pega_genAI: 'Pega GenAI',\n suggestions_in_message: 'with {0} suggestions',\n you_asked: 'You asked {0}',\n no_conversations_found: 'No conversations found',\n conversation: 'Conversation',\n back: 'Back',\n add_attachment: 'Add attachment',\n attachment_upload_in_progress: 'Attachment upload in progress',\n attachment_added: 'Attachment added',\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 country_code: 'Country code',\n phone_number: 'Phone number',\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_description: 'Has errors',\n tab_error_tooltip: '{0} has errors',\n all_tabs: 'All tabs',\n return_to_tab_list: 'Return to tab list',\n\n /* core:LightBox */\n non_previewable: \"{0} file can't be previewed\",\n content_load_error: 'Error loading content',\n description_unavailable: 'Description unavailable',\n\n /* core:Toaster */\n shortcut_JumpToToast: 'Jump to toast',\n shortcut_DismissToast: 'Dismiss toast',\n\n /* core: PageTemplates */\n configurable_layout_instructions:\n 'Configurable layout. Use tab key to select an item. Use arrow keys to move it to a new position. Use arrow keys with shift to resize the item in the given direction.',\n page_number: 'Page {0}',\n\n /* dnd:DragHandle */\n drag_handle_activate_description: 'Press Space to activate dragging.',\n drag_handle_drop_description: 'Press Space again to drop.',\n drag_handle_cancel_description: 'Press Escape to cancel dragging.',\n drag_handle_vertical_description: 'Use arrow keys to drag up or down.',\n drag_handle_horizontal_description: 'Use arrow keys to drag left or right.',\n drag_handle_tab_description: 'Use Tab and Shift Tab to drag to adjacent lists.',\n\n /* dnd:StandardDragDropList */\n add_button_description: 'Click to add a new item to the list',\n configure_button_description: 'Click to configure the list item',\n remove_button_description: 'Click to remove the list item',\n list_item_control_instructions: 'Has interactive controls',\n list_item_nav_instructions:\n 'Use the up and down arrow keys to navigate between items. Press Enter to enter tabbing mode and access elements within the list',\n\n /* work:Assignments */\n assignments: 'Assignments',\n\n /* work:Hierarchial Assignment */\n case: 'Case',\n assignment: 'Assignment',\n assignment_item_assignee: 'Assignee:',\n assignment_item_urgency: 'Urgency:',\n assignment_announcement_label: 'Assignment:',\n case_announcement_label: 'Case: {0}',\n assignments_go_announcement_label: 'Go - {0}',\n assignments_sla: 'Due {0}',\n key_navigation_instruction:\n 'Use Enter key to navigate by Tab. Escape to navigate using arrow keys. Recommend using focus mode in screen reader for optimal experience.',\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 ask: 'Ask',\n error_message: 'Unable to retrieve data at the moment. Please try again.',\n add_a_comment: 'Add a comment',\n score: 'Score {0}',\n relevance_score: 'Relevance score {0}',\n ai_suggestions: 'AI suggestions',\n auto_answered: 'Auto answered',\n questions_detected: 'Questions detected',\n past_answered_questions: 'Past answered questions',\n not_relevant_questions: 'Not relevant questions',\n back_to_ai_suggestions: 'Back to AI suggestions',\n confidence: 'Confidence',\n ask_buddy: 'Ask buddy',\n ai_generated: 'AI generated',\n no_articles_found: 'No articles found',\n semantic_initial_message: 'Search results will appear here',\n confirmation_options: 'Confirmation options',\n search_filter: 'Filters - search articles',\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_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:Confirmation */\n confirmation_whats_next: \"What's next\",\n confirmation_open_tasks: 'Open tasks',\n\n /* work:SearchResults */\n search_results_clear_all_filters: 'Clear all filters',\n search_results_clear_filter: 'Clear {0} filter',\n search_results_active_filters: 'Active filters',\n search_filter_update_message: 'Modifying filters will update search results',\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: 'Tasks',\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_heading_style_normal: 'Normal',\n rte_heading_style_heading_1: 'Heading 1',\n rte_heading_style_heading_2: 'Heading 2',\n rte_heading_style_heading_3: 'Heading 3',\n rte_heading_style_heading_4: 'Heading 4',\n rte_heading_style_unknown: 'Unknown',\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_link_text: 'Text',\n rte_link_url: 'URL',\n rte_image: 'Insert 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_edit_image: 'Edit image {0}',\n rte_delete_image: 'Delete image {0}',\n rte_image_key_command: 'Press enter to edit the image',\n\n /* social:Email */\n important: 'Important',\n expand_trail: 'Expand trail',\n collapse_trail: 'Collapse trail',\n copy_to: 'Copy to',\n subject_label: 'Subject: {0}',\n search_results: 'Search results',\n get_next_email: 'Get next email',\n mark_email_as_important: 'Mark email as important',\n email_attachment: '{0} with {1}',\n\n /* social:Feed */\n feed_post_type: 'Post type',\n feed_new_post: 'Message',\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_edit_posted: 'Post edited',\n feed_edit_commented: 'Comment edited',\n feed_context: 'in {0}',\n feed_liked_by: 'Liked by {0}',\n feed_likes: 'Likes',\n feed_visibility: 'Visibility',\n feed_private: 'Private',\n feed_public: 'Public',\n feed_visible_to: 'Visible to',\n feed_users: 'Users',\n feed_mode: 'Mode',\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_added: 'Comment added',\n feed_comment_removed: 'Comment 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 markdown_syntax: 'Markdown syntax',\n markdown_instructions: 'Add special characters around your text to apply formatting.',\n markdown_styles: 'Style',\n markdown_images: 'Images',\n markdown_links: 'Links',\n markdown_lists: 'Lists',\n markdown_headings: 'Headings',\n markdown_code: 'Code',\n markdown_code_block: 'Code block',\n markdown_bold: 'Bold',\n markdown_italic: 'Italic',\n markdown_blockquote: 'Blockquote',\n markdown_heading_level: 'Heading {0}',\n markdown_ordered_list: 'Ordered list',\n markdown_ordered_sublist: 'Ordered sublist',\n markdown_unordered_list: 'Unordered list',\n markdown_unordered_sublist: 'Unordered sublist',\n markdown_link_text: 'Link text',\n markdown_link_url: 'Link url',\n markdown_alt_text: 'Alt text',\n markdown_image_url: 'Image url',\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 context_data: 'Context data',\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 suggestion: 'Suggestion',\n suggested_reply_copied_to_input_field: 'Suggested reply copied to input field',\n dialogue: 'Dialogue',\n suggest_reply: 'Suggest reply',\n join_conversation: 'Join conversation',\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',\n email_add_attachment_count: '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 mailing_details: 'mailing details',\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_disconnect_participant: 'Disconnect participant',\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:VerbatimParagraph */\n attestation_statement: 'I attest that I have spoken this as written',\n script_adherence_error: 'Dialog should be adhered to before submission',\n\n /* cs:TaskManager */\n accept_all: 'Accept all',\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 close_interaction: 'Close 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 commitment in context\",\n detected_entities: 'Detected entities',\n task_deleted: 'Deleted',\n\n /* cs:FeedbackMetrics */\n no_analytics_collected: 'No analytics were collected during this interaction',\n feedback_not_available: 'Feedback not available',\n\n /* cs:FollowUpTask */\n due_on: 'Due on {0}',\n\n /* cs:InteractionSummary */\n interaction_summary: 'Interaction summary',\n edit_interaction_summary: 'Edit interaction summary',\n cancel_editing_interaction_summary: 'Cancel editing interaction summary',\n save: 'Save',\n save_interaction_summary: 'Save interaction summary',\n reason_for_transfer: 'Reason for transfer',\n reason_cannot_be_blank: 'Reason for transfer cannot be blank',\n ai_suggested_summary: 'AI suggested summary',\n summary_cannot_be_blank: 'Summary cannot be blank',\n interaction_Summary_not_available: 'Interaction summary not available',\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 items_added_to_previous_list: 'Items added to previous list',\n items_added_to_current_list: 'Items added to current list',\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_placeholder: 'Select values',\n condition_builder_single_selection_placeholder: '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_row: 'Row {0}',\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 condition_builder_comparator_is_true: 'is true',\n condition_builder_comparator_is_false: 'is false',\n condition_builder_comparator_is_equal_to: 'is equal to',\n condition_builder_comparator_is_not_equal_to: 'is not equal to',\n condition_builder_comparator_is_null: 'is null',\n condition_builder_comparator_is_not_null: 'is not null',\n condition_builder_comparator_is_in_list: 'is in list',\n condition_builder_comparator_is_not_in_list: 'is not in list',\n condition_builder_comparator_starts_with: 'starts with',\n condition_builder_comparator_not_starts_with: 'not starts with',\n condition_builder_comparator_ends_with: 'ends with',\n condition_builder_comparator_not_ends_with: 'not ends with',\n condition_builder_comparator_contains: 'contains',\n condition_builder_comparator_not_contains: 'not contains',\n condition_builder_comparator_between: 'between',\n condition_builder_comparator_not_between: 'not between',\n condition_builder_comparator_greater_than: 'greater than',\n condition_builder_comparator_greater_than_or_equals: 'greater than or equals',\n condition_builder_comparator_lower_than: 'lower than',\n condition_builder_comparator_lower_than_or_equals: 'lower than or equals',\n condition_builder_comparator_after: 'after',\n condition_builder_comparator_on_or_after: 'on or after',\n condition_builder_comparator_before: 'before',\n condition_builder_comparator_on_or_before: 'on or before',\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 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:BackgroundPicker */\n style: 'Style',\n color: 'Color',\n opacity: 'Opacity',\n file_url: 'File URL',\n size: 'Size',\n position: 'Position',\n repeat: 'Repeat',\n image_preview: 'Image preview',\n direction: 'Direction',\n color_stops: 'Color stops',\n add_stops: 'Add stops',\n gradient_preview: 'Gradient preview',\n location: 'Location',\n delete_stop: 'Delete stop',\n edit_background_picker_label: 'Edit {0}',\n automatic: 'Automatic',\n transparent: 'Transparent',\n solid_color: 'Solid color',\n image: 'Image',\n linear_gradient: 'Linear gradient',\n radial_gradient: 'Radial gradient',\n conic_gradient: 'Conic gradient',\n auto: 'Auto',\n cover: 'Cover',\n contain: 'Contain',\n center: 'Center',\n top: 'Top',\n right: 'Right',\n left: 'Left',\n bottom: 'Bottom',\n top_left: 'Top left',\n top_right: 'Top right',\n bottom_right: 'Bottom right',\n bottom_left: 'Bottom left',\n no_repeat: 'No repeat',\n repeat_image: 'Repeat',\n repeat_x: 'Repeat x',\n repeat_y: 'Repeat y',\n space: 'Space',\n round: 'Round',\n file_url_error: 'Enter a valid URL',\n color_preview: 'Color preview',\n\n /* build:Lifecycle */\n parallel: 'Parallel',\n stage: 'Stage',\n process: 'Process',\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 wait_for_user_action: '{0} - wait for a user action',\n resolve_case: '{0} - resolve case',\n\n /* build:ItemLibrary */\n collect_info: 'Collect info',\n decision: 'Approve/Reject',\n send_email: 'Send email',\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:FieldReference */\n applies_to: 'Applies to',\n path: 'Path',\n current_context: 'Current context: {0}',\n fieldref_open_close: 'Arrow down to open, press escape to close.',\n fieldref_search_instructions: 'Start typing to search',\n fieldref_open_list_button_a11y: 'Open field reference list',\n fieldref_close_list_button_a11y: 'Close field reference list',\n\n /* build:DynamicInput */\n constant_description: 'The value that is entered here will not change.',\n expression_description: 'Set this value using advanced custom logic.',\n rule_description: 'Set this value using a Rule.',\n constant_label: 'Static ({0})',\n expression_label: 'Expression',\n rule_label: 'Source from Library',\n field_reference_label: 'Source from a field',\n field_reference_description: 'Set this value by referencing a field.',\n value_type: 'Value type',\n dynamicInput_format_Text: 'Text',\n 'dynamicInput_format_Text (paragraph)': 'Text (paragraph)',\n dynamicInput_format_Boolean: 'Boolean',\n dynamicInput_format_Currency: 'Currency',\n dynamicInput_format_Percentage: 'Percentage',\n dynamicInput_format_Integer: 'Integer',\n dynamicInput_format_Decimal: 'Decimal',\n dynamicInput_format_Phone: 'Phone',\n dynamicInput_format_DateTime: 'DateTime',\n dynamicInput_format_Date: 'Date',\n dynamicInput_format_Time: 'Time',\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 input_tree_contextual_label: 'of',\n input_tree_error: 'has error',\n parameters: 'Parameters',\n\n /* build:ExpressionBuilder */\n expression_editor: 'Expression editor',\n output_parameters: 'Output parameters',\n input_parameters: 'Input parameters',\n\n /** build: Expression */\n expression_input: 'Expression input',\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 /* build: Automation */\n expand_all: 'Expand all',\n collapse_all: 'Collapse all',\n expand_steps: 'Expand all steps',\n collapse_steps: 'Collapse all steps',\n expand_step: 'Expand step {0}',\n collapse_step: 'Collapse step {0}',\n expanded_step: 'Expanded step {0}',\n collapsed_step: 'Collapsed step {0}',\n add_step: 'Add step',\n generate_comments: 'Generate comments',\n action_set: 'Set',\n action_when: 'When',\n action_append: 'Append',\n action_call: 'Call',\n action_create: 'Create',\n action_for_each: 'For each',\n action_exit: 'Exit',\n action_return: 'Return',\n action_remove: 'Remove',\n action_error_handler: 'Error handler',\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 /* lists-repeating-structures: Toolbar */\n delete_group: 'Delete group',\n add_group: 'Add group',\n add_sort: 'Add sort',\n\n /* lists-repeating-structures: Map */\n view_in_google_maps: 'View in Google Maps',\n location_marker: 'Location marker {0}',\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 /* authoring-ui-views: AdditionalInformation */\n additional_information: 'Additional Information',\n field_picker_label: 'Field',\n field_picker_placeholder: 'Select Field...',\n editor_loading_message: 'Loading editor...',\n\n /* authoring-ui-views: FieldLabelInput */\n custom_label: 'Custom label',\n custom_caption: 'Custom caption',\n\n /* authoring-ui-views: TargetClassLabelInput */\n add_label: 'Add label',\n custom_add_label: 'Custom add label',\n\n /* authoring-ui-views: Instructions */\n instruction_text_label: 'Instruction text',\n\n /* authoring-ui-views: AddParagraphModal */\n paragraph_already_exists_error: 'Paragraph rule with name {0} already exists',\n paragraph_create_modal_heading: 'New Dynamic Text',\n paragraph_update_modal_heading: 'Edit {0}',\n paragraph_name_label: 'Name',\n paragraph_text_content_label: 'Text',\n shared_rule: 'This is a shared Rule.',\n creating_new_rule: 'Creating new Rule...',\n updating_rule: 'Updating Rule...',\n unsupported_rule_type_label: 'Unsupported ruleType',\n unsupported_rule_type_description: \"Unsupported rule type: '{0}'\",\n create_new_record_failed: 'Create new record failed',\n\n /* authoring-ui-views: ContentPicker */\n component_not_found_error:\n \"The '{0}' component is missing. Check that it is added to the application.\",\n component_not_found_error_with_type: \"No components of type '{0}' were found.\",\n component_not_found_error_with_subtype: \"No components of subtype '{0}' were found.\",\n component_not_found_error_with_type_and_subtype:\n \"No components of type '{0}' and subtype '{1}' were found.\",\n component_missing_error_status:\n \"The '{0}' component is missing. Add it to the application or use the default component in the property panel.\",\n field_type_updated_error_status:\n 'The type of \"{0}\" was updated. Delete it or update it in the property panel.',\n field_type_updated_error: 'The type of \"{0}\" was updated.',\n\n /* authoring-ui-views: useDrillIn */\n field_does_not_exist_error:\n 'Field \"{0}\" was not found. Check if it still exists and is marked as relevant.',\n\n /* authoring-ui-views: DynamicContentPicker */\n configure_item: 'Configure {0}: {1}',\n data_page_call_error: 'Error occurred calling the data page. Data for {0} cannot be retrieved.',\n item_not_in_data_page: '{0} no longer exists in the data page.',\n\n /* authoring-ui-views: SyncTabsFromDetails */\n sync_tabs_additional_info_enabling: 'Enabling reveals the same tabs from the Full Page View.',\n sync_tabs_additional_info_tabs: 'Otherwise, the following tabs will be shown:',\n\n /* authoring-ui-views: LocationDetails */\n location_field_label: 'Location field',\n\n /* authoring-ui-views: AddMenu */\n create_new_item: 'Create new {0}',\n\n /* authoring-ui-views: ThemeDesigner */\n warning_color: 'Warning - {0}',\n color_contrast_warning: 'Fails WCAG 2.1 AA contrast when paired with these colors:',\n color_contrast_warning_non_solid:\n 'WCAG 2.1 AA contrast must be manually verified when paired with non-solid colors:',\n has_compliance_warning: '{0} - has compliance warning',\n compliance_warning: 'Compliance warning',\n gradient_warning: 'WCAG 2.1 AA contrast must be manually verified for a non-solid color.',\n advanced_settings_toggle_btn: '{0} advanced settings',\n color_swatch_btn_label: 'Set {0} to {1}',\n theme_preview_title: 'Theme Preview',\n default_font_info: 'Selection will override app header and heading fonts',\n custom_font_family: '{0} font family name',\n custom_font_family_error: \"Font family can't be empty\",\n\n /* authoring-ui-views: EditFullObject */\n fields_to_highlight: 'Summary fields to highlight',\n first_field: 'First field',\n first_n_fields: 'First {0} fields',\n learn_about_primary_fields: 'Learn more about Primary Fields',\n show_lifecycle: 'Show Lifecycle',\n use_only_primary_fields: 'Use only Primary Fields in Summary Panel',\n use_only_primary_fields_info:\n '\"Use only Primary Fields\" pre-populates and links the Full Object Display Rule with the Primary Fields configured in the Data Model tab.',\n new_tab_heading: 'New Tab',\n creating_tab: 'Creating Tab...',\n create_tab_failure_message: 'Failed to create a Tab',\n\n /* authoring-ui-views: EditFields */\n loading_configure_dialog: 'Loading configure dialog',\n\n /* authoring-ui-views: InsightContextFilters */\n delete_parameter_filter: 'Delete parameter filter',\n insight_field_applied_on: 'Insight field applied on',\n please_fill_the_required_fields: 'Please fill the required fields',\n system_pages: 'System pages',\n value_cannot_be_blank: 'Value cannot be blank',\n valid_number_within_range: 'Enter a valid number between {0} - {1}',\n expected_value: 'Expected value {0}',\n invalid_value: 'Invalid value',\n\n /** authoring-ui-views: LandingPageFilters */\n field_does_not_exist_on_the_selected_source: \"Field doesn't exist on the selected source\",\n failed_to_validate_source: 'Failed to validate source',\n source_used_for_picklist_values: 'Source used for picklist values',\n\n /** authoring-ui-view: Runtime Dashboards */\n private_only: 'Private - Only you',\n shared_users_with_access: 'Shared - Users with access',\n public_all_users: 'Public - All users',\n access_group: 'Access group',\n dashboard_visibility: 'Visibility',\n dashboard_shared_with: 'Shared with',\n dashboard_private: 'private',\n\n /* business-intelligence: InsightPanel */\n hide_icons_additional_info_first_sentence:\n 'To ensure accessibility standards are met, color cannot be the only way of distinguishing information.',\n hide_icons_additional_info_second_sentence:\n 'Visit {0} to learn more about the related accessibility guidelines.',\n wcag: 'WCAG',\n\n /* business-intelligence: Trend indicators - current time period */\n this_year: 'This year',\n this_quarter: 'This quarter',\n this_month: 'This month',\n this_week: 'This week',\n this_day: 'This day',\n this_hour: 'This hour',\n this_minute: 'This minute',\n this_second: 'This second',\n\n over_time_period: 'over {0}',\n since_time_period: 'since {0}',\n in_current_time_period: 'in {0}',\n\n /* business-intelligence: Trend indicators - Increase cases */\n increased_by_value_over_time_period: 'Increased by {0} over {1}',\n increased_by_value_since_time_period: 'Increased by {0} since {1}',\n increased_by_value_in_current_time_period: 'Increased by {0} in {1}',\n increased_by_value_today: 'Increased by {0} today',\n\n /* business-intelligence: Trend indicators - Decrease cases */\n decreased_by_value_over_time_period: 'Decreased by {0} over {1}',\n decreased_by_value_since_time_period: 'Decreased by {0} since {1}',\n decreased_by_value_in_current_time_period: 'Decreased by {0} in {1}',\n decreased_by_value_today: 'Decreased by {0} today',\n\n /* business-intelligence: Trend indicators - No change cases */\n no_change_over_time_period: 'No change over {0}',\n no_change_since_time_period: 'No change since {0}',\n no_change_in_current_time_period: 'No change in {0}',\n no_change_today: 'No change today',\n /* business-intelligence: Date functions */\n date_function_year: 'Year',\n date_function_quarter: 'Quarter',\n date_function_month: 'Month',\n date_function_week: 'Week',\n date_function_day: 'Day',\n date_function_hour: 'Hour',\n date_function_minute: 'Minute',\n date_function_month_of_year: 'Month of year',\n date_function_day_of_month: 'Day of month',\n date_function_day_of_week: 'Day of week',\n date_function_hour_of_day: 'Hour of day',\n\n /* business-intelligence: Aggregations */\n aggregation_count: 'Count',\n aggregation_distinct_count: 'Distinct count',\n aggregation_total: 'Total',\n aggregation_average: 'Average',\n aggregation_minimum: 'Minimum',\n aggregation_maximum: 'Maximum',\n\n /* business-intelligence: Legend */\n select_chart_data_view: 'Select chart data view',\n toggle_chart_element_visibility: 'Toggle chart element visibility',\n chart_legend_items: 'Chart legend items',\n\n /* authoring-ui-views: AddButton */\n add_to: 'Add to {0}',\n\n /* authoring-ui-views: ViewPicker */\n namespace: 'Namespace',\n\n /* authoring-ui-views: WhenPicker */\n decision_rule: 'Decision',\n when_rule: 'When',\n invalid_rule: 'This Rule is no longer valid. Ensure it exists in the system.',\n invalid_rule_non_relevant_record:\n 'This Rule is no longer valid. Ensure it exists in the system and is marked as a relevant record.',\n\n /* authoring-ui-views: Preview */\n infinity_stack_overflow_error:\n 'This View is currently configured to include itself. Please change configuration to prevent error.',\n\n /** studio-dx-components: Expression */\n expression_error_incorrect_data_type: 'Incorrect datatype',\n expression_error_with_data_and_object_type: 'Incorrect type, {0} of type {1} is required',\n expression_error_with_data_type: 'Incorrect type, {0} is required',\n prompt_scope: 'Scope',\n prompt_type: 'Type',\n expression_wait_message:\n 'Expression is being validated. Please wait a little and then click Save/Submit again.',\n expression_general_error: 'Error Occurred in Expression Component',\n expression_datapage_general_error: 'Error occurred on fetching {0}',\n expression_allowed_rules_error: 'Only {0} are allowed',\n expression_empty_error: 'Cannot be blank',\n\n /** studio-dx-components: ConditionBuilder */\n cb_invalid_leaf_condition: 'Invalid leaf condition',\n cb_invalid_operand: 'Invalid operand',\n cb_expression_node_null: 'Expression node cannot be null or undefined',\n cb_expression_node_missing: 'Expression node must have expressions',\n cb_invalid_unary_expression: 'Invalid unary expression',\n cb_invalid_group_expression: 'Invalid group expression',\n\n /* ui-inspector */\n ui_inspector: 'UI Inspector',\n ui_inspector_iframe_title: '{0} - UI Inspector enabled',\n ui_inspector_metadata: 'Metadata',\n ui_inspector_quick_info: 'Quick info',\n ui_inspector_field_metadata: 'Field metadata',\n\n /* AgentTracer */\n ai_tracer: 'AI tracer',\n agent_tracer_select_an_event: 'Select an event',\n agent_tracer_total_processing_time: 'Total processing time',\n agent_tracer_total_tokens: 'Total tokens',\n agent_tracer_total_tool_calls: 'Total tool calls',\n agent_tracer_total_llm_calls: 'Total LLM calls',\n agent_tracer_agent_configuration: 'Agent configuration',\n agent_tracer_agent_instruction: 'Agent instruction',\n agent_tracer_user_query: 'User query',\n agent_tracer_tools_to_be_invoked: 'Tools to be invoked',\n agent_tracer_inputs: 'Inputs',\n agent_tracer_output: 'Output',\n agent_tracer_prerequisites: 'Prerequisites',\n agent_tracer_pega_context: 'Pega context',\n agent_tracer_data_from_all_sources: 'Data sources',\n agent_tracer_complete_data_source: 'Complete data source',\n agent_tracer_conversation_trace: 'Conversation trace',\n\n /* Expression Builder */\n generating_explanation: 'Generating explanation',\n explanation_generated: 'Expression explanation generated',\n clear_explanation: 'Clear explanation',\n describe_expression: 'Describe Expression requirements',\n generating_expression: 'Generating expression',\n generated_explanation: 'Generated explanation',\n generated_expression: 'Generated Expression',\n expression_generated: 'Expression generated',\n expression_builder: 'Expression Builder',\n open_expression_builder: 'Open Expression Builder',\n library: 'Library'\n};\n"]}
|
package/lib/i18n/i18n.d.ts
CHANGED
|
@@ -272,6 +272,7 @@ export declare const DefaultTranslation: Readonly<Readonly<{
|
|
|
272
272
|
app_shell_pin: string;
|
|
273
273
|
app_shell_unpin: string;
|
|
274
274
|
application_logo: string;
|
|
275
|
+
theme_mode: string;
|
|
275
276
|
combobox_open_close: string;
|
|
276
277
|
combobox_search_instructions: string;
|
|
277
278
|
combobox_open_list_button_a11y: string;
|
|
@@ -1564,6 +1565,12 @@ export declare const DefaultTranslation: Readonly<Readonly<{
|
|
|
1564
1565
|
expression_datapage_general_error: string;
|
|
1565
1566
|
expression_allowed_rules_error: string;
|
|
1566
1567
|
expression_empty_error: string;
|
|
1568
|
+
cb_invalid_leaf_condition: string;
|
|
1569
|
+
cb_invalid_operand: string;
|
|
1570
|
+
cb_expression_node_null: string;
|
|
1571
|
+
cb_expression_node_missing: string;
|
|
1572
|
+
cb_invalid_unary_expression: string;
|
|
1573
|
+
cb_invalid_group_expression: string;
|
|
1567
1574
|
ui_inspector: string;
|
|
1568
1575
|
ui_inspector_iframe_title: string;
|
|
1569
1576
|
ui_inspector_metadata: 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,GAAI,eAAe,WAAW,KAAG,QAAQ,CAAC,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,GAAI,eAAe,WAAW,KAAG,QAAQ,CAAC,eAAe,CAEpE,CAAC;AACF,eAAe,MAAM,CAAC;AAEtB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAW,CAAC;AAiB3C,eAAO,MAAM,SAAS,GAAI,WAAW,MAAM,KAAG,KAAK,GAAG,KAErD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pega/cosmos-react-core",
|
|
3
|
-
"version": "9.0.0-build.9.
|
|
3
|
+
"version": "9.0.0-build.9.11",
|
|
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
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "Pegasystems",
|