@capillarytech/blaze-ui 5.23.3-beta.8 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CapHeading/styles.module.css +1 -0
- package/CapHeading/styles.scss +1 -0
- package/CapLanguageProvider/antdLocales.d.ts +15 -0
- package/CapLanguageProvider/antdLocales.d.ts.map +1 -0
- package/CapLanguageProvider/antdLocales.js +53 -0
- package/CapLanguageProvider/index.d.ts.map +1 -1
- package/CapLanguageProvider/index.js +9 -47
- package/CapSupportVideosWrapper/index.js +1 -1
- package/CapSupportVideosWrapper/styles.module.scss.js +1 -1
- package/CapTooltip/styles.module.css +1 -1
- package/CapTooltip/styles.scss +1 -1
- package/en.json +296 -1
- package/package.json +1 -1
- /package/CapSupportVideosWrapper/{styles.css → styles.module.css} +0 -0
package/CapHeading/styles.scss
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Static map of antd locales to avoid dynamic imports
|
|
3
|
+
* This prevents webpack from creating a context module that includes .d.ts files
|
|
4
|
+
*/
|
|
5
|
+
import type { Locale } from 'antd-v5/lib/locale';
|
|
6
|
+
import enUS from 'antd-v5/locale/en_US';
|
|
7
|
+
declare const antdLocaleMap: Record<string, Locale>;
|
|
8
|
+
/**
|
|
9
|
+
* Get antd locale by locale code
|
|
10
|
+
* Falls back to en_US if locale not found
|
|
11
|
+
*/
|
|
12
|
+
export declare function getAntdLocale(localeCode: string): Locale;
|
|
13
|
+
export { enUS as defaultLocale };
|
|
14
|
+
export default antdLocaleMap;
|
|
15
|
+
//# sourceMappingURL=antdLocales.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"antdLocales.d.ts","sourceRoot":"","sources":["../../components/CapLanguageProvider/antdLocales.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAGjD,OAAO,IAAI,MAAM,sBAAsB,CAAC;AAqBxC,QAAA,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAsBzC,CAAC;AAEF;;;GAGG;AACH,wBAAgB,aAAa,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAExD;AAED,OAAO,EAAE,IAAI,IAAI,aAAa,EAAE,CAAC;AACjC,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import arEG from "antd-v5/locale/ar_EG";
|
|
2
|
+
import deDE from "antd-v5/locale/de_DE";
|
|
3
|
+
import enUS from "antd-v5/locale/en_US";
|
|
4
|
+
import { default as default2 } from "antd-v5/locale/en_US";
|
|
5
|
+
import esES from "antd-v5/locale/es_ES";
|
|
6
|
+
import frFR from "antd-v5/locale/fr_FR";
|
|
7
|
+
import heIL from "antd-v5/locale/he_IL";
|
|
8
|
+
import idID from "antd-v5/locale/id_ID";
|
|
9
|
+
import itIT from "antd-v5/locale/it_IT";
|
|
10
|
+
import jaJP from "antd-v5/locale/ja_JP";
|
|
11
|
+
import koKR from "antd-v5/locale/ko_KR";
|
|
12
|
+
import msMS from "antd-v5/locale/ms_MY";
|
|
13
|
+
import nlNL from "antd-v5/locale/nl_NL";
|
|
14
|
+
import plPL from "antd-v5/locale/pl_PL";
|
|
15
|
+
import ptBR from "antd-v5/locale/pt_BR";
|
|
16
|
+
import ptPT from "antd-v5/locale/pt_PT";
|
|
17
|
+
import ruRU from "antd-v5/locale/ru_RU";
|
|
18
|
+
import thTH from "antd-v5/locale/th_TH";
|
|
19
|
+
import trTR from "antd-v5/locale/tr_TR";
|
|
20
|
+
import viVN from "antd-v5/locale/vi_VN";
|
|
21
|
+
import zhCN from "antd-v5/locale/zh_CN";
|
|
22
|
+
import zhTW from "antd-v5/locale/zh_TW";
|
|
23
|
+
const antdLocaleMap = {
|
|
24
|
+
en_US: enUS,
|
|
25
|
+
zh_CN: zhCN,
|
|
26
|
+
zh_TW: zhTW,
|
|
27
|
+
ja_JP: jaJP,
|
|
28
|
+
ko_KR: koKR,
|
|
29
|
+
vi_VN: viVN,
|
|
30
|
+
th_TH: thTH,
|
|
31
|
+
id_ID: idID,
|
|
32
|
+
ms_MY: msMS,
|
|
33
|
+
fr_FR: frFR,
|
|
34
|
+
de_DE: deDE,
|
|
35
|
+
es_ES: esES,
|
|
36
|
+
pt_BR: ptBR,
|
|
37
|
+
pt_PT: ptPT,
|
|
38
|
+
it_IT: itIT,
|
|
39
|
+
ru_RU: ruRU,
|
|
40
|
+
ar_EG: arEG,
|
|
41
|
+
he_IL: heIL,
|
|
42
|
+
tr_TR: trTR,
|
|
43
|
+
nl_NL: nlNL,
|
|
44
|
+
pl_PL: plPL
|
|
45
|
+
};
|
|
46
|
+
function getAntdLocale(localeCode) {
|
|
47
|
+
return antdLocaleMap[localeCode] || enUS;
|
|
48
|
+
}
|
|
49
|
+
export {
|
|
50
|
+
antdLocaleMap as default,
|
|
51
|
+
default2 as defaultLocale,
|
|
52
|
+
getAntdLocale
|
|
53
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../components/CapLanguageProvider/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../components/CapLanguageProvider/index.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAc1B,OAAO,KAAK,EACV,OAAO,EACP,wBAAwB,EACxB,wBAAwB,EAGxB,aAAa,EACb,eAAe,EACf,uBAAuB,EACvB,QAAQ,EACT,MAAM,SAAS,CAAC;AA0BjB,qBAAa,mBAAoB,SAAQ,KAAK,CAAC,aAAa,CAC1D,wBAAwB,EACxB,wBAAwB,CACzB;gBACa,KAAK,EAAE,wBAAwB;IAU3C,kBAAkB;IAWlB,cAAc,IAAI,OAAO;IAIzB,iBAAiB,IAAI,IAAI;IAIzB,iBAAiB,IAAI,IAAI;IAOzB,YAAY,IAAI,IAAI;IAsEpB,MAAM,IAAI,KAAK,CAAC,YAAY;CAgC7B;wBAe2D,KAAK,CAAC,aAAa,CAC7E,OAAO,CAAC,wBAAwB,CAAC,CAClC;AAFD,wBAEE;AAEF,YAAY,EACV,wBAAwB,EACxB,eAAe,EACf,QAAQ,EACR,aAAa,EACb,OAAO,EACP,uBAAuB,GACxB,CAAC"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { ConfigProvider } from "antd-v5";
|
|
3
|
-
import enUS from "antd-v5/locale/en_US";
|
|
4
3
|
import isEmpty from "lodash/isEmpty";
|
|
5
4
|
import moment from "moment";
|
|
6
5
|
import React from "react";
|
|
@@ -11,8 +10,10 @@ import { createStructuredSelector } from "reselect";
|
|
|
11
10
|
import "../utils/dayjs.js";
|
|
12
11
|
import CapSpin from "../CapSpin/index.js";
|
|
13
12
|
import * as CapLanguageProvider_actions from "./actions.js";
|
|
13
|
+
import { getAntdLocale } from "./antdLocales.js";
|
|
14
14
|
import { REQUEST } from "./constants.js";
|
|
15
15
|
import * as CapLanguageProvider_selector from "./selector.js";
|
|
16
|
+
import enUS from "antd-v5/locale/en_US";
|
|
16
17
|
import dayjs from "dayjs";
|
|
17
18
|
const { makeSelectLanguage, makeSelectSupportedLocalesDetails } = CapLanguageProvider_selector;
|
|
18
19
|
function getAllLocales({ lang, supportedLocales }) {
|
|
@@ -46,22 +47,7 @@ class CapLanguageProvider extends React.PureComponent {
|
|
|
46
47
|
return window.location.pathname.indexOf("/login") !== -1;
|
|
47
48
|
}
|
|
48
49
|
loadDefaultLocale() {
|
|
49
|
-
|
|
50
|
-
/* webpackIgnore: true */
|
|
51
|
-
"antd-v5/locale/en_US"
|
|
52
|
-
).then((module) => {
|
|
53
|
-
if (module == null ? void 0 : module.default) {
|
|
54
|
-
this.setState({ locale: module.default });
|
|
55
|
-
} else {
|
|
56
|
-
console.error(
|
|
57
|
-
"Failed to load default antd locale (en_US). Using static import fallback."
|
|
58
|
-
);
|
|
59
|
-
this.setState({ locale: enUS });
|
|
60
|
-
}
|
|
61
|
-
}).catch((error) => {
|
|
62
|
-
console.error("Failed to load default antd locale (en_US):", error);
|
|
63
|
-
this.setState({ locale: enUS });
|
|
64
|
-
});
|
|
50
|
+
this.setState({ locale: enUS });
|
|
65
51
|
}
|
|
66
52
|
componentDidMount() {
|
|
67
53
|
var _a;
|
|
@@ -107,41 +93,17 @@ class CapLanguageProvider extends React.PureComponent {
|
|
|
107
93
|
});
|
|
108
94
|
moment.locale(locale);
|
|
109
95
|
dayjs.locale(locale);
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
).then((module) => {
|
|
114
|
-
this.setState({ locale: module.default });
|
|
115
|
-
}).catch(() => {
|
|
116
|
-
console.warn(
|
|
117
|
-
`antd es locale-provider module does not exist for ${antdLocale}. Using en_US instead`
|
|
118
|
-
);
|
|
119
|
-
import(
|
|
120
|
-
/* webpackIgnore: true */
|
|
121
|
-
"antd-v5/locale/en_US"
|
|
122
|
-
).then(
|
|
123
|
-
(module) => {
|
|
124
|
-
this.setState({ locale: module.default });
|
|
125
|
-
}
|
|
126
|
-
);
|
|
127
|
-
});
|
|
128
|
-
import(
|
|
129
|
-
/* webpackIgnore: true */
|
|
130
|
-
`react-intl/locale-data/${_reactIntlLocale}.js`
|
|
131
|
-
).then((module) => {
|
|
96
|
+
const antdLocaleObj = getAntdLocale(antdLocale);
|
|
97
|
+
this.setState({ locale: antdLocaleObj });
|
|
98
|
+
import(`react-intl/locale-data/${_reactIntlLocale}.js`).then((module) => {
|
|
132
99
|
addLocaleData(module.default);
|
|
133
100
|
}).catch(() => {
|
|
134
101
|
console.warn(
|
|
135
102
|
`react-intl locale-data does not exist for ${_reactIntlLocale}. Using en instead`
|
|
136
103
|
);
|
|
137
|
-
import(
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
).then(
|
|
141
|
-
(module) => {
|
|
142
|
-
addLocaleData(module.default);
|
|
143
|
-
}
|
|
144
|
-
);
|
|
104
|
+
import("react-intl/locale-data/en.js").then((module) => {
|
|
105
|
+
addLocaleData(module.default);
|
|
106
|
+
});
|
|
145
107
|
});
|
|
146
108
|
}
|
|
147
109
|
render() {
|
|
@@ -2,7 +2,7 @@ import { jsxs, jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { useState } from "react";
|
|
3
3
|
import { CAP_SPACE_02, FONT_SIZE_M, CAP_BLUE01, CAP_SPACE_16 } from "../styles/_variables.js";
|
|
4
4
|
import ResizablePIP from "./ResizablePIP.js";
|
|
5
|
-
import './styles.css';/* empty css */
|
|
5
|
+
import './styles.module.css';/* empty css */
|
|
6
6
|
import { getElementByXpath } from "./utils.js";
|
|
7
7
|
const CapSupportVideosWrapper = (props) => {
|
|
8
8
|
var _a;
|
package/CapTooltip/styles.scss
CHANGED
package/en.json
CHANGED
|
@@ -1 +1,296 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"app.commonUtils.capUiLibrary.CapMultiSelect.noResultsFoundText": "No results found",
|
|
3
|
+
"app.commonUtils.capUiLibrary.CapMultiSelect.selectText": "Select",
|
|
4
|
+
"app.commonUtils.capUiLibrary.CapMultiSelect.closeText": "Close",
|
|
5
|
+
"app.commonUtils.capUiLibrary.CapMultiSelect.searchPlaceholder": "Search",
|
|
6
|
+
"app.commonUtils.capUiLibrary.CapMultiSelect.selectedText": "selected",
|
|
7
|
+
"app.commonUtils.capUiLibrary.CapMultiSelect.selectAllText": "Select all",
|
|
8
|
+
"app.commonUtils.capUiLibrary.CapMultiSelect.selectAllSearchResultsText": "Select all searched results",
|
|
9
|
+
"app.commonUtils.capUiLibrary.CapMultiSelect.moreText": "more",
|
|
10
|
+
"app.commonUtils.capUiLibrary.CapModal.okText": "Yes",
|
|
11
|
+
"app.commonUtils.capUiLibrary.CapModal.closeText": "No",
|
|
12
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectWithTree.noResultsFoundText": "No results found",
|
|
13
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectWithTree.selectText": "Select",
|
|
14
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectWithTree.closeText": "Close",
|
|
15
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectWithTree.searchPlaceholder": "Search",
|
|
16
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectWithTree.selectedText": "selected",
|
|
17
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectWithTree.selectAllText": "Select all",
|
|
18
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectWithTree.selectAllSearchResultsText": "Select all searched results",
|
|
19
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectWithTree.moreText": "more",
|
|
20
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectWithTree.storeUploadsText": "Store IDs are uploaded already",
|
|
21
|
+
"app.commonUtils.capUiLibrary.CapCustomSelect.searchPlaceholder": "Search",
|
|
22
|
+
"app.commonUtils.capUiLibrary.CapCustomSelect.selectPlaceholder": "Select Option",
|
|
23
|
+
"app.commonUtils.capUiLibrary.CapMultiSelectDatePicker.lastDayText": "Last day of month",
|
|
24
|
+
"app.commonUtils.capUiLibrary.CapTable.loadMoreData": "Loading more data...",
|
|
25
|
+
"app.commonUtils.capUiLibrary.CapIllustration.accessForbiddenMsg": "Action cannot be performed due to insufficient permission",
|
|
26
|
+
"app.commonUtils.capUiLibrary.CapNavigation.businessProcesses": "Workbench",
|
|
27
|
+
"app.commonUtils.capUiLibrary.CapNavigation.wecrm": "Wecrm",
|
|
28
|
+
"app.commonUtils.capUiLibrary.CapNavigation.loyaltyProgram": "Loyalty+",
|
|
29
|
+
"app.commonUtils.capUiLibrary.CapNavigation.storePerformance": "Store Performance",
|
|
30
|
+
"app.commonUtils.capUiLibrary.CapNavigation.memberCare": "Member Care",
|
|
31
|
+
"app.commonUtils.capUiLibrary.CapNavigation.storeCare": "Store Care",
|
|
32
|
+
"app.commonUtils.capUiLibrary.CapNavigation.insights": "Insights+",
|
|
33
|
+
"app.commonUtils.capUiLibrary.CapNavigation.connectPlus": "Connect+",
|
|
34
|
+
"app.commonUtils.capUiLibrary.CapNavigation.settingsLabel": "Settings",
|
|
35
|
+
"app.commonUtils.capUiLibrary.CapNavigation.campaign": "Engage+",
|
|
36
|
+
"app.commonUtils.capUiLibrary.CapNavigation.selectOrganization": "Select Organization",
|
|
37
|
+
"app.commonUtils.capUiLibrary.CapNavigation.organization": "Organization",
|
|
38
|
+
"app.commonUtils.capUiLibrary.CapNavigation.noResultText": "No results found",
|
|
39
|
+
"app.commonUtils.capUiLibrary.CapNavigation.selectProduct": "Select Product",
|
|
40
|
+
"app.commonUtils.capUiLibrary.InfoNote.noteText": "Note",
|
|
41
|
+
"app.commonUtils.capUiLibrary.SomethingWentWrong.title": "Sorry, something went wrong.",
|
|
42
|
+
"app.commonUtils.capUiLibrary.SomethingWentWrong.description": "Please try again. If this issue occurs again, please reach out to Capillary support team.",
|
|
43
|
+
"app.commonUtils.capUiLibrary.SomethingWentWrong.reloadText": "Try refreshing again",
|
|
44
|
+
"app.commonUtils.capUiLibrary.CapBlock.deleteBlockMsg": "Delete",
|
|
45
|
+
"app.commonUtils.capUiLibrary.CapBlock.expandBlockMsg": "Expand",
|
|
46
|
+
"app.commonUtils.capUiLibrary.CapBlock.collapseBlockMsg": "Collapse",
|
|
47
|
+
"app.commonUtils.capUiLibrary.CapMultiplePath.notUniqueMsg": "Not Unique",
|
|
48
|
+
"app.commonUtils.capUiLibrary.CapMultiplePath.deleteConfirmationTitleMsg": "Confirm delete path",
|
|
49
|
+
"app.commonUtils.capUiLibrary.CapMultiplePath.deleteConfirmationTextMsg": "Are you sure you wish to delete path",
|
|
50
|
+
"app.commonUtils.capUiLibrary.CapMultiplePath.deleteConfirmationWarningMsg": "This action cannot be undone.",
|
|
51
|
+
"app.commonUtils.capUiLibrary.CapMultiplePath.deleteButtonTextMsg": "Yes, Delete",
|
|
52
|
+
"app.commonUtils.capUiLibrary.CapMultiplePath.yesMsg": "Yes",
|
|
53
|
+
"app.commonUtils.capUiLibrary.CapMultiplePath.noMsg": "No",
|
|
54
|
+
"app.commonUtils.capUiLibrary.CapMultiplePath.pathMsg": "Path",
|
|
55
|
+
"app.commonUtils.capUiLibrary.CapMultiplePath.addPathMessage": "Add Path",
|
|
56
|
+
"app.commonUtils.capUiLibrary.CapCondition.includeMsg": "include",
|
|
57
|
+
"app.commonUtils.capUiLibrary.CapCondition.excludeMsg": "exclude",
|
|
58
|
+
"app.commonUtils.capUiLibrary.CapCondition.equalMsg": "equal to",
|
|
59
|
+
"app.commonUtils.capUiLibrary.CapCondition.greaterThanMsg": "greater than",
|
|
60
|
+
"app.commonUtils.capUiLibrary.CapCondition.lessThanMsg": "less than",
|
|
61
|
+
"app.commonUtils.capUiLibrary.CapCondition.greaterThanOrEqualMsg": "greater than or equal to",
|
|
62
|
+
"app.commonUtils.capUiLibrary.CapCondition.lessThanorEqualMsg": "less than or equal",
|
|
63
|
+
"app.commonUtils.capUiLibrary.CapCondition.inRangeMsg": "in range",
|
|
64
|
+
"app.commonUtils.capUiLibrary.CapCondition.notEqualMsg": "not equal to",
|
|
65
|
+
"app.commonUtils.capUiLibrary.CapCondition.whoseMsg": "Whose",
|
|
66
|
+
"app.commonUtils.capUiLibrary.CapCondition.isMsg": "is",
|
|
67
|
+
"app.commonUtils.capUiLibrary.CapCondition.andMsg": "and",
|
|
68
|
+
"app.commonUtils.capUiLibrary.CapCondition.ANDMsg": "AND",
|
|
69
|
+
"app.commonUtils.capUiLibrary.CapCondition.containsMsg": "contains",
|
|
70
|
+
"app.commonUtils.capUiLibrary.CapCondition.startsWithMsg": "starts with",
|
|
71
|
+
"app.commonUtils.capUiLibrary.CapCondition.endsWithMsg": "ends with",
|
|
72
|
+
"app.commonUtils.capUiLibrary.CapCondition.exactMsg": "exact",
|
|
73
|
+
"app.commonUtils.capUiLibrary.CapCondition.conditionStringInputPlaceholderMsg": "Enter min. 3 characters",
|
|
74
|
+
"app.commonUtils.capUiLibrary.CapCondition.lineItemMsg": "only for lineitems with",
|
|
75
|
+
"app.commonUtils.capUiLibrary.CapCondition.withMsg": "with",
|
|
76
|
+
"app.commonUtils.capUiLibrary.CapCondition.additionalFieldsMsg": "Additional condition",
|
|
77
|
+
"app.commonUtils.capUiLibrary.CapCondition.plusMinus": "+/-",
|
|
78
|
+
"app.commonUtils.capUiLibrary.CapCondition.inMsg": "in",
|
|
79
|
+
"app.commonUtils.capUiLibrary.CapCondition.notInMsg": "not in",
|
|
80
|
+
"app.commonUtils.capUiLibrary.CapCondition.uploadFailedError": "Upload failed",
|
|
81
|
+
"app.commonUtils.capUiLibrary.CapCondition.uploadLimitExceeded": "Please do not upload more than 1000 store codes",
|
|
82
|
+
"app.commonUtils.capUiLibrary.CapCondition.uploadReqLoader": "Uploading stores",
|
|
83
|
+
"app.commonUtils.capUiLibrary.CapCondition.or": "OR",
|
|
84
|
+
"app.commonUtils.capUiLibrary.CapCondition.search": "Search",
|
|
85
|
+
"app.commonUtils.capUiLibrary.CapCondition.searchWithExact": "Search with exact keyword",
|
|
86
|
+
"app.commonUtils.capUiLibrary.CapCondition.customFieldsTag": "custom fields",
|
|
87
|
+
"app.commonUtils.capUiLibrary.CapCondition.storeSearchMsg": "Enter min. 3 characters to search",
|
|
88
|
+
"app.commonUtils.capUiLibrary.CapCondition.uploadInProgressMsg": "Upload in progress",
|
|
89
|
+
"app.commonUtils.capUiLibrary.CapCondition.unsupportedCsvHeaderMsg": "The CSV header must be 'Store code' or 'Store id'",
|
|
90
|
+
"app.commonUtils.capUiLibrary.CapCondition.csvFileNoEntryTxt": "Please upload a file with atleast one entry",
|
|
91
|
+
"app.commonUtils.capUiLibrary.CapCondition.downloadedMsg": "downloaded",
|
|
92
|
+
"app.commonUtils.capUiLibrary.CapCondition.reuploadFileMsg": "Reupload file",
|
|
93
|
+
"app.commonUtils.capUiLibrary.CapCondition.storeIdsMsg": "Store IDs",
|
|
94
|
+
"app.commonUtils.capUiLibrary.CapCondition.downloadStoreIdMsg": "Download Store ID",
|
|
95
|
+
"app.commonUtils.capUiLibrary.CapCondition.downloadStoreIdCodeNameMsg": "Download Store ID, code & name",
|
|
96
|
+
"app.commonUtils.capUiLibrary.CapCondition.downloadInProgressMsg": "Download in progress, might take a while",
|
|
97
|
+
"app.commonUtils.capUiLibrary.CapCondition.onMsg": "on",
|
|
98
|
+
"app.commonUtils.capUiLibrary.CapCondition.beforeMsg": "before",
|
|
99
|
+
"app.commonUtils.capUiLibrary.CapCondition.afterMsg": "after",
|
|
100
|
+
"app.commonUtils.capUiLibrary.CapCondition.xDaysBeforeMsg": "x days before",
|
|
101
|
+
"app.commonUtils.capUiLibrary.CapCondition.xDaysAfterMsg": "x days after",
|
|
102
|
+
"app.commonUtils.capUiLibrary.CapCondition.betweenMsg": "between",
|
|
103
|
+
"app.commonUtils.capUiLibrary.CapCondition.specificDateLabel": "specific date",
|
|
104
|
+
"app.commonUtils.capUiLibrary.CapCondition.eventDateAttributeLabel": "Event date attribute",
|
|
105
|
+
"app.commonUtils.capUiLibrary.CapCondition.entryTriggerLabel": "Entry trigger",
|
|
106
|
+
"app.commonUtils.capUiLibrary.CapCondition.waitTillEventLabel": "Wait till event",
|
|
107
|
+
"app.commonUtils.capUiLibrary.CapCondition.andLabel": "and",
|
|
108
|
+
"app.commonUtils.capUiLibrary.CapCondition.beforeLabel": "before",
|
|
109
|
+
"app.commonUtils.capUiLibrary.CapCondition.afterLabel": "after",
|
|
110
|
+
"app.commonUtils.capUiLibrary.CapCondition.daysSuffix": "days",
|
|
111
|
+
"app.commonUtils.capUiLibrary.CapCondition.loadingTip": "Loading...",
|
|
112
|
+
"app.commonUtils.capUiLibrary.CapCondition.specificDateToolTip": "Specific date cannot be selected for 'x days before/after'",
|
|
113
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.includeMsg": "Include",
|
|
114
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.excludeMsg": "Exclude",
|
|
115
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.equalMsg": "equal to",
|
|
116
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.greaterThanMsg": "greater than",
|
|
117
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.lessThanMsg": "less than",
|
|
118
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.greaterThanOrEqualMsg": "greater than or equal to",
|
|
119
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.lessThanorEqualMsg": "less than or equal",
|
|
120
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.inRangeMsg": "in range",
|
|
121
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.notEqualMsg": "not equal to",
|
|
122
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.whoseMsg": "whose",
|
|
123
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.isMsg": "is",
|
|
124
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.andMsg": "and",
|
|
125
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.ANDMsg": "AND",
|
|
126
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.lineItemMsg": "only for lineitems with",
|
|
127
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.withMsg": "with",
|
|
128
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.addedSKUsMsg": "Added SKUs",
|
|
129
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.skuFileName": "SKU.csv",
|
|
130
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.uploadedMsg": "uploaded",
|
|
131
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.inMsg": "in",
|
|
132
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.notInMsg": "not in",
|
|
133
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.storesMsg": "Stores",
|
|
134
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.viewMoreMsg": "View more",
|
|
135
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.uploadInProgressMsg": "Upload in progress",
|
|
136
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.uploadFailedErrorMsg": "Upload failed",
|
|
137
|
+
"app.commonUtils.capUiLibrary.CapConditionPreview.uploadInvalidErrorMsg": "Invalid file uploaded",
|
|
138
|
+
"app.commonUtils.capUiLibrary.CapPopoverTree.emptyDataMessage": "No data found",
|
|
139
|
+
"app.commonUtils.capUiLibrary.CapPopoverTree.searchPlaceholder": "Search",
|
|
140
|
+
"app.commonUtils.capUiLibrary.CapGraphBlockNode.configureText": "Configure",
|
|
141
|
+
"app.commonUtils.capUiLibrary.CapGraphBlockNode.replaceEngagementBlockMsg": "Replace engagement block",
|
|
142
|
+
"app.commonUtils.capUiLibrary.CapStaticTemplates.strategyTitleMsg": "Select the strategy",
|
|
143
|
+
"app.commonUtils.capUiLibrary.CapStaticTemplates.strategyDescriptionMsg": "Use strategy driven pre-defined marketing use-cases or build your own strategy",
|
|
144
|
+
"app.commonUtils.capUiLibrary.CapStaticTemplates.comingSoonMsg": "Coming soon",
|
|
145
|
+
"app.commonUtils.capUiLibrary.CapStaticTemplates.blankCategoryLabel": "Custom",
|
|
146
|
+
"app.commonUtils.capUiLibrary.CapStaticTemplates.blankTemplateLabel": "Build from scratch",
|
|
147
|
+
"app.commonUtils.capUiLibrary.CapStaticTemplates.blankTemplateDescription": "Create your own journey from scratch",
|
|
148
|
+
"app.commonUtils.capUiLibrary.CapStaticTemplates.searchPlaceholderMsg": "Search strategy",
|
|
149
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.lineItem": "Line items",
|
|
150
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.selectAttribute": "Select Attribute",
|
|
151
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.brand": "Brand",
|
|
152
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.brandInfo": "Brand",
|
|
153
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.category": "Category",
|
|
154
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.categoryInfo": "Category",
|
|
155
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.product": "Product",
|
|
156
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.productInfo": "Product",
|
|
157
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.SKU": "SKU",
|
|
158
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.uploadSKU": "Upload SKU",
|
|
159
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.uploadSKUInfo": "Upload SKU",
|
|
160
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.changeSelection": "Change the selection",
|
|
161
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.description": "Changing the attribute of additional condition will result in lose of previously defined additional condition",
|
|
162
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.okText": "Yes, change",
|
|
163
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.cancelText": "Cancel",
|
|
164
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.comingSoon": "Coming soon",
|
|
165
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.selectValues": "Select value(s)",
|
|
166
|
+
"app.commonUtils.capUiLibrary.CapProductSelection.atleast1Attribute": "At least 1 attribute is required",
|
|
167
|
+
"app.commonUtils.capUiLibrary.CapTruncateList.more": "more",
|
|
168
|
+
"app.commonUtils.capUiLibrary.CapSKUUploader.validatingSKUs": "Validating SKUs",
|
|
169
|
+
"app.commonUtils.capUiLibrary.CapSKUUploader.invalid": "invalid",
|
|
170
|
+
"app.commonUtils.capUiLibrary.CapSKUUploader.invalidSKUs": "Invalid SKUs",
|
|
171
|
+
"app.commonUtils.capUiLibrary.CapSKUUploader.valid": "valid",
|
|
172
|
+
"app.commonUtils.capUiLibrary.CapSKUUploader.addedSKUsMsg": "Added SKUs",
|
|
173
|
+
"app.commonUtils.capUiLibrary.CapSKUUploader.skuFileName": "SKU.csv",
|
|
174
|
+
"app.commonUtils.capUiLibrary.CapSKUUploader.invalidSKUFilename": "invalidSKU.csv",
|
|
175
|
+
"app.commonUtils.capUiLibrary.CapSKUUploader.uploadedMsg": "uploaded",
|
|
176
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.deleteBlockModalHeaderText": "Delete block",
|
|
177
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.deleteBlockModalDescriptionText": "Are you sure you want to delete this block?",
|
|
178
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.yesDeleteButtonText": "Yes, delete",
|
|
179
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.noButtonText": "No",
|
|
180
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.joinDropErrorText": "Join block can only be added at the end of the path",
|
|
181
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.jumpDropErrorText": "Jump block can only be added at the end of the path",
|
|
182
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.theText": "The",
|
|
183
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.endText": "End",
|
|
184
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.blockIsLinkedText": "block is linked to the",
|
|
185
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.blockText": "block.",
|
|
186
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.disconnectText": "Deleting this block will disconnect the join.",
|
|
187
|
+
"app.commonUtils.capUiLibrary.CapDndGraph.areYouSureText": "Are you sure?",
|
|
188
|
+
"app.commonUtils.capUiLibrary.CapDragAndDrop.dropboxtext": "Drop here!",
|
|
189
|
+
"app.commonUtils.capUiLibrary.CapDragAndDrop.selectFilesText": "Select files from your computer",
|
|
190
|
+
"app.commonUtils.capUiLibrary.CapDragAndDrop.invalidFileSelectionText": "Invalid file selection!",
|
|
191
|
+
"app.commonUtils.capUiLibrary.CapDragAndDrop.or": "OR",
|
|
192
|
+
"app.commonUtils.capUiLibrary.CapDragAndDrop.droptext": "Drag and drop files",
|
|
193
|
+
"app.commonUtils.capUiLibrary.CapRoadMap.defaultRoadMapDisabledMessage": "Not configured yet",
|
|
194
|
+
"app.commonUtils.capUiLibrary.CapTimelineCard.defaultConfiguringMessage": "Configuring...",
|
|
195
|
+
"app.commonUtils.capUiLibrary.CapTimelineCard.defaultNotConfiguredMessage": "Not configured yet...",
|
|
196
|
+
"app.commonUtils.capUiLibrary.CapTimelineCard.toConfigure": "To configure ",
|
|
197
|
+
"app.commonUtils.capUiLibrary.CapTimelineCard.completePrevSteps": " complete the previous steps.",
|
|
198
|
+
"app.commonUtils.capUiLibrary.CapTimelineNestedCard.defaultConfiguringMessage": "Configuring...",
|
|
199
|
+
"app.commonUtils.capUiLibrary.CapTimelineNestedCard.defaultNotConfiguredMessage": "Not configured yet...",
|
|
200
|
+
"app.commonUtils.capUiLibrary.CapTimelineNestedCard.toConfigure": "To configure ",
|
|
201
|
+
"app.commonUtils.capUiLibrary.CapTimelineNestedCard.completePrevSteps": " complete the previous steps.",
|
|
202
|
+
"app.commonUtils.capUiLibrary.NestedCardParent.defaultNestedTitle": "Triggers",
|
|
203
|
+
"app.commonUtils.capUiLibrary.NestedCardParent.toConfigure": "To configure ",
|
|
204
|
+
"app.commonUtils.capUiLibrary.NestedCardParent.completePrevSteps": " complete the previous steps.",
|
|
205
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textAskYourQuestion": "Ask your question here",
|
|
206
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textVisitDocs": "Visit Capillary Documentation",
|
|
207
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textNeedHelp": "Need more help?",
|
|
208
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textHowMayIHelp": "How may AI help you?",
|
|
209
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textAira": "aiRA Documentation Bot",
|
|
210
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textLinks": "Links",
|
|
211
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textWasHelpful": "Was this response helpful?",
|
|
212
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textConfidence": "confidence",
|
|
213
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textTooltip": "Need help? Ask aiRA",
|
|
214
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationBot.textCantConnect": "Can't connect to the server.",
|
|
215
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textTypeAMessage": "Type a message above and ask aiRA to recommend the best content",
|
|
216
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textError": "An error occurred while generating rule. Try again.",
|
|
217
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textAiraTitle": "aiRA Rule Generation",
|
|
218
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textAiraTooltip": "aiRA, our proprietary AI tool, generates rule expressions based on text query.",
|
|
219
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textCopy": "Copy",
|
|
220
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textCopied": "Copied",
|
|
221
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textRulePlaceholder": "Enter query...",
|
|
222
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textRuleLoading": "Rule is loading... Hang tight!",
|
|
223
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textThank": "Thank you for your response!",
|
|
224
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textWarn": "aiRA responses may be inaccurate or misleading. Help us to improve!",
|
|
225
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleGenerationBot.textAddCommentPlaceholder": "Add comment",
|
|
226
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textTypeAMessage": "Type a message above and ask aiRA to recommend the best content",
|
|
227
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textRecommendationsLoading": "Recommendations loading... Hang tight!",
|
|
228
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textError": "An error occurred while loading recommendations. Try again.",
|
|
229
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textAiraTitle": "aiRA Content Recommendations",
|
|
230
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textAiraTooltip": "aiRA, our proprietary AI tool, recommends tailored language to effectively engage customers and prompt desired actions.",
|
|
231
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textLoading": "loading...",
|
|
232
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textCharacters": "characters",
|
|
233
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textReplaceWithThis": "Replace with this",
|
|
234
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textReplaced": "Replaced",
|
|
235
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textResetToDefault": "Reset to default",
|
|
236
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textMoreLikeThis": "More like this",
|
|
237
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ContentGenerationBot.textGenerateMore": "Generate more",
|
|
238
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textAiraTitle": "aiRA Configuration Bot",
|
|
239
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textAiraTooltip": "aiRA, our proprietary AI tool, helps you configure promotions, campaigns, and more.",
|
|
240
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textTypeAMessage": "Type a message above and ask aiRA to recommend the best content",
|
|
241
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textUser": "Hello!",
|
|
242
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textPilot": "I'm your Copilot. I can create all type of promotions (milestones, streaks, etc.) on your behalf. Meanwhile, you can sit back, relax, and enjoy a cup of chai.",
|
|
243
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textCouponTile": "Milestone on GS",
|
|
244
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textCouponDescription": "Customer has to do 1000/- gross sales in a month, and can get 100 points.",
|
|
245
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textPromotionTitle": "Milestone on count",
|
|
246
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textPromotionDescription": "Eligible customers get points on every 5 transactions.",
|
|
247
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textStreakTitle": "Reward on referral",
|
|
248
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textStreakDescription": "Award customer 150 points if they refer 3 users in a month. Promotion starts on July 1 and runs for 5 months.",
|
|
249
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textPromptHere": "Enter a prompt here...",
|
|
250
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textCouponPrompt": "If customer does 1000 gross sales in a month, award them 100 points that expire in 20 days. Promotion runs from 1 July to 1 December.",
|
|
251
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textPromotionPrompt": "After every 5 transactions I want to award customer with 200 points. Only customers with more than 2000 lifetime points are eligible. Promotion runs from 1 July to 1 December",
|
|
252
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textStreakPrompt": "Award customer 150 points if they refer 3 users in a month. Promotion starts on July 1 and runs for 5 months. ",
|
|
253
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textCantConnect": "Can't connect to the server.",
|
|
254
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textCreate": "Create",
|
|
255
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textCancel": "Cancel",
|
|
256
|
+
"app.commonUtils.capUiLibrary.CapAskAira.ConfigurationBot.textGeneratingResponse": "Generating response",
|
|
257
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationChatBot.textBotPlaceholder": "Ask aiRA about anything on our CRM platform",
|
|
258
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationChatBot.textChatBotLoader": "Hang tight, analyzing your query...",
|
|
259
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationChatBot.textChatBotDesc": "Ask any doubts about our CRM platform and aiRA will do its best to find answers",
|
|
260
|
+
"app.commonUtils.capUiLibrary.CapAskAira.DocumentationChatBot.textChatBot": "Documentation Chat Bot",
|
|
261
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textImageBotPlaceholder": "Ask aiRA to generate an image",
|
|
262
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textChatBotLoader": "Hang tight, analyzing your query...",
|
|
263
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textImageBotDesc": "Enter a prompt that describes your image.",
|
|
264
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textImageBot": "aiRA Media Generator",
|
|
265
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textImageFooter": "Dragging and dropping generated images is only supported in the basic email builder.",
|
|
266
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textTipsGenerate": "Tips to generate better images:",
|
|
267
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textCopy": "Copy image",
|
|
268
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textCopied": "Copied",
|
|
269
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textDownload": "Download",
|
|
270
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textImageDownload": "Image downloaded successfully!",
|
|
271
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textComingSoon": "Coming soon",
|
|
272
|
+
"app.commonUtils.capUiLibrary.CapAskAira.CapAiMediaGeneration.textGenerateMore": "Generate more",
|
|
273
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleSummarizationBot.textRuleBotPlaceholder": "Ask aiRA to write an expression",
|
|
274
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleSummarizationBot.textSummarizeBotPlaceholder": "Ask aiRA to explain an expression",
|
|
275
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleSummarizationBot.textRuleChatBotLoader": "Hang tight, analyzing your query...",
|
|
276
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleSummarizationBot.textRuleChatBotDesc": "Write your detailed rule in simple english and aiRA will write the expression for you",
|
|
277
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleSummarizationBot.textSummarizeChatBotDesc": "Enter the expression and aiRA will generate a summary in plain english",
|
|
278
|
+
"app.commonUtils.capUiLibrary.CapAskAira.RuleSummarizationBot.textRuleChatBot": "aiRA Expression Translator",
|
|
279
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textNeedHelp": "Need help choosing the right filters?",
|
|
280
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textAskAiraLink": "Ask aiRA to apply filters",
|
|
281
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textDescribeAudience": "Describe your audience",
|
|
282
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textPlaceholder": "e.g.: Filter customers who have made a purchase in the last 7 days",
|
|
283
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textError": "Something went wrong, please try again",
|
|
284
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textThoughtProcess": "Thought Process",
|
|
285
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textFiltersAdded": "Filters added below",
|
|
286
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textAnalyzing": "Analyzing your query...",
|
|
287
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textPartialFiltersAdded": "Rest of the filters added below",
|
|
288
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textFeedbackTitle": "Give feedback",
|
|
289
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textFeedbackOptional": "(Optional)",
|
|
290
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textFeedbackMessage": "Let us know what was wrong with the results",
|
|
291
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textFeedbackPlaceholder": "Share your feedback",
|
|
292
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textFeedbackSubmit": "Submit",
|
|
293
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textFeedbackCancel": "Cancel",
|
|
294
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textThankYouFeedback": "Thank you for your feedback!",
|
|
295
|
+
"app.commonUtils.capUiLibrary.CapAskAira.AudienceFilterBot.textThankYouDetailedFeedback": "Thank you for your detailed feedback!"
|
|
296
|
+
}
|
package/package.json
CHANGED
|
File without changes
|