@capillarytech/creatives-library 8.0.136-alpha.4 → 8.0.136-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (292) hide show
  1. package/components/BreadCrumbs/index.js +65 -0
  2. package/components/BreadCrumbs/messages.js +13 -0
  3. package/components/CapTagList/index.js +235 -0
  4. package/components/CapTagList/messages.js +45 -0
  5. package/components/Card/_customCard.scss +40 -0
  6. package/components/Card/index.js +78 -0
  7. package/components/Card/tests/__snapshots__/index.test.js.snap +22 -0
  8. package/components/Card/tests/index.test.js +20 -0
  9. package/components/CardGrid/index.js +71 -0
  10. package/components/Ckeditor/index.js +238 -0
  11. package/components/Ckeditor/messages.js +13 -0
  12. package/components/Ckeditor/style.scss +3 -0
  13. package/components/Component/index.js +29 -0
  14. package/components/CustomPopOver/index.js +81 -0
  15. package/components/CustomPopOver/messages.js +17 -0
  16. package/components/DateFilter/index.js +349 -0
  17. package/components/DateFilter/messages.js +57 -0
  18. package/components/DateRange/index.js +114 -0
  19. package/components/DateRange/messages.js +25 -0
  20. package/components/Edmeditor/index.js +65 -0
  21. package/components/Edmeditor/messages.js +13 -0
  22. package/components/EmailPreview/_emailPreview.scss +119 -0
  23. package/components/EmailPreview/assets/images/iPad.svg +10 -0
  24. package/components/EmailPreview/assets/images/mobile.png +0 -0
  25. package/components/EmailPreview/index.js +107 -0
  26. package/components/EmailPreview/messages.js +33 -0
  27. package/components/Footer/index.js +27 -0
  28. package/components/Footer/messages.js +13 -0
  29. package/components/FormBuilder/_formBuilder.scss +83 -0
  30. package/components/FormBuilder/index.js +3279 -0
  31. package/components/FormBuilder/messages.js +61 -0
  32. package/components/Header/index.js +44 -0
  33. package/components/Header/messages.js +29 -0
  34. package/components/ImagePreview/_imagePreview.scss +63 -0
  35. package/components/ImagePreview/index.js +52 -0
  36. package/components/ImagePreview/messages.js +17 -0
  37. package/components/PageHeader/_pageHeader.scss +22 -0
  38. package/components/PageHeader/index.js +37 -0
  39. package/components/PageHeader/messages.js +13 -0
  40. package/components/Pagination/_pagination.scss +5 -0
  41. package/components/Pagination/index.js +49 -0
  42. package/components/PreviewSideBar/_previewsidebar.scss +28 -0
  43. package/components/PreviewSideBar/index.js +152 -0
  44. package/components/PreviewSideBar/messages.js +41 -0
  45. package/components/Sidebar/_sidebar.scss +115 -0
  46. package/components/Sidebar/index.js +214 -0
  47. package/components/Sidebar/messages.js +21 -0
  48. package/components/SlideBox/_slideBox.scss +63 -0
  49. package/components/SlideBox/index.js +47 -0
  50. package/components/SlideBox/tests/index.test.js +103 -0
  51. package/components/SmsEditor/index.js +55 -0
  52. package/components/SmsTest/index.js +117 -0
  53. package/components/SmsTest/messages.js +21 -0
  54. package/components/TemplatePreview/WechatRichmediaTemplatePreview/_wechatRichmediaTemplatePrev.scss +42 -0
  55. package/components/TemplatePreview/WechatRichmediaTemplatePreview/index.js +141 -0
  56. package/components/TemplatePreview/WechatRichmediaTemplatePreview/messages.js +21 -0
  57. package/components/TemplatePreview/_templatePreview.scss +642 -0
  58. package/components/TemplatePreview/assets/images/WECHAT_5x.png +0 -0
  59. package/components/TemplatePreview/assets/images/androidPushMessage.svg +45 -0
  60. package/components/TemplatePreview/assets/images/home-screen-android.svg +21 -0
  61. package/components/TemplatePreview/assets/images/home-screen-ios.svg +16 -0
  62. package/components/TemplatePreview/assets/images/iPhonePushMessage.svg +135 -0
  63. package/components/TemplatePreview/assets/images/mobile.svg +24 -0
  64. package/components/TemplatePreview/assets/images/sms-body.png +0 -0
  65. package/components/TemplatePreview/assets/images/sms-icon.png +0 -0
  66. package/components/TemplatePreview/assets/images/sms_mobile.png +0 -0
  67. package/components/TemplatePreview/assets/images/sms_mobile_android.svg +22 -0
  68. package/components/TemplatePreview/assets/images/sms_mobile_ios.svg +16 -0
  69. package/components/TemplatePreview/assets/images/user-icon.svg +19 -0
  70. package/components/TemplatePreview/assets/images/wechat-mobile.svg +78 -0
  71. package/components/TemplatePreview/assets/images/wechat_mobile_android.svg +20 -0
  72. package/components/TemplatePreview/index.js +617 -0
  73. package/components/TemplatePreview/messages.js +78 -0
  74. package/components/Toastr/index.js +60 -0
  75. package/components/Toastr/messages.js +13 -0
  76. package/components/ToastrMessage/index.js +113 -0
  77. package/components/ToastrMessage/messages.js +17 -0
  78. package/components/TopBar/_topbar.scss +46 -0
  79. package/components/TopBar/assets/images/capillary_logo.png +0 -0
  80. package/components/TopBar/assets/images/old_capillary_logo.png +0 -0
  81. package/components/TopBar/index.js +113 -0
  82. package/components/TopBar/messages.js +29 -0
  83. package/containers/App/actions.js +7 -0
  84. package/containers/App/constants.js +114 -0
  85. package/containers/App/index.js +52 -0
  86. package/containers/App/reducer.js +19 -0
  87. package/containers/App/sagas.js +31 -0
  88. package/containers/App/selectors.js +25 -0
  89. package/containers/App/test/saga.test.js +11 -0
  90. package/containers/Assets/Gallery/_gallery.scss +126 -0
  91. package/containers/Assets/Gallery/actions.js +37 -0
  92. package/containers/Assets/Gallery/constants.js +23 -0
  93. package/containers/Assets/Gallery/index.js +473 -0
  94. package/containers/Assets/Gallery/messages.js +93 -0
  95. package/containers/Assets/Gallery/reducer.js +81 -0
  96. package/containers/Assets/Gallery/sagas.js +80 -0
  97. package/containers/Assets/Gallery/selectors.js +25 -0
  98. package/containers/Assets/Gallery/tests/__snapshots__/reducer.test.js.snap +9 -0
  99. package/containers/Assets/Gallery/tests/actions.test.js +25 -0
  100. package/containers/Assets/Gallery/tests/reducer.test.js +96 -0
  101. package/containers/Assets/Gallery/tests/saga.test.js +157 -0
  102. package/containers/Cap/actions.js +66 -0
  103. package/containers/Cap/constants.js +25 -0
  104. package/containers/Cap/index.js +402 -0
  105. package/containers/Cap/messages.js +75 -0
  106. package/containers/Cap/reducer.js +113 -0
  107. package/containers/Cap/sagas.js +159 -0
  108. package/containers/Cap/selectors.js +75 -0
  109. package/containers/Cap/tests/__snapshots__/index.test.js.snap +2269 -0
  110. package/containers/Cap/tests/index.test.js +22 -0
  111. package/containers/Cap/tests/saga.test.js +284 -0
  112. package/containers/Dashboard/actions.js +15 -0
  113. package/containers/Dashboard/constants.js +7 -0
  114. package/containers/Dashboard/index.js +76 -0
  115. package/containers/Dashboard/messages.js +13 -0
  116. package/containers/Dashboard/reducer.js +21 -0
  117. package/containers/Dashboard/sagas.js +17 -0
  118. package/containers/Dashboard/selectors.js +25 -0
  119. package/containers/Dashboard/test/saga.test.js +9 -0
  120. package/containers/Ebill/_ebill.scss +5 -0
  121. package/containers/Ebill/actions.js +43 -0
  122. package/containers/Ebill/constants.js +20 -0
  123. package/containers/Ebill/index.js +1278 -0
  124. package/containers/Ebill/messages.js +77 -0
  125. package/containers/Ebill/reducer.js +72 -0
  126. package/containers/Ebill/sagas.js +74 -0
  127. package/containers/Ebill/selectors.js +25 -0
  128. package/containers/Ebill/test/saga.test.js +11 -0
  129. package/containers/Email/_email.scss +141 -0
  130. package/containers/Email/actions.js +81 -0
  131. package/containers/Email/constants.js +36 -0
  132. package/containers/Email/index.js +3325 -0
  133. package/containers/Email/messages.js +289 -0
  134. package/containers/Email/reducer.js +142 -0
  135. package/containers/Email/sagas.js +135 -0
  136. package/containers/Email/selectors.js +31 -0
  137. package/containers/Email/test/saga.test.js +671 -0
  138. package/containers/LanguageProvider/actions.js +17 -0
  139. package/containers/LanguageProvider/constants.js +8 -0
  140. package/containers/LanguageProvider/index.js +80 -0
  141. package/containers/LanguageProvider/reducer.js +30 -0
  142. package/containers/LanguageProvider/selectors.js +20 -0
  143. package/containers/LanguageProvider/tests/actions.test.js +19 -0
  144. package/containers/LanguageProvider/tests/index.test.js +78 -0
  145. package/containers/LanguageProvider/tests/reducer.test.js +20 -0
  146. package/containers/LanguageProvider/tests/selectors.test.js +15 -0
  147. package/containers/Line/Create/_lineCreate.scss +54 -0
  148. package/containers/Line/Create/actions.js +90 -0
  149. package/containers/Line/Create/constants.js +39 -0
  150. package/containers/Line/Create/index.js +836 -0
  151. package/containers/Line/Create/messages.js +189 -0
  152. package/containers/Line/Create/reducer.js +99 -0
  153. package/containers/Line/Create/sagas.js +121 -0
  154. package/containers/Line/Create/selectors.js +36 -0
  155. package/containers/Line/Create/tests/saga.test.js +202 -0
  156. package/containers/Line/Edit/_lineEdit.scss +35 -0
  157. package/containers/Line/Edit/actions.js +79 -0
  158. package/containers/Line/Edit/constants.js +27 -0
  159. package/containers/Line/Edit/index.js +1050 -0
  160. package/containers/Line/Edit/messages.js +177 -0
  161. package/containers/Line/Edit/reducer.js +83 -0
  162. package/containers/Line/Edit/sagas.js +80 -0
  163. package/containers/Line/Edit/selectors.js +29 -0
  164. package/containers/Line/Edit/test/saga.test.js +160 -0
  165. package/containers/Login/assets/images/capillary_logo.png +0 -0
  166. package/containers/Login/components/LoginForm/index.js +62 -0
  167. package/containers/Login/components/LoginForm/messages.js +33 -0
  168. package/containers/Login/index.js +130 -0
  169. package/containers/Login/messages.js +25 -0
  170. package/containers/Login/selectors.js +25 -0
  171. package/containers/MobilePush/Create/_mobilePushCreate.scss +39 -0
  172. package/containers/MobilePush/Create/actions.js +46 -0
  173. package/containers/MobilePush/Create/constants.js +23 -0
  174. package/containers/MobilePush/Create/index.js +2303 -0
  175. package/containers/MobilePush/Create/messages.js +269 -0
  176. package/containers/MobilePush/Create/reducer.js +70 -0
  177. package/containers/MobilePush/Create/sagas.js +74 -0
  178. package/containers/MobilePush/Create/selectors.js +28 -0
  179. package/containers/MobilePush/Create/test/saga.test.js +19 -0
  180. package/containers/MobilePush/Edit/_mobilePushCreate.scss +39 -0
  181. package/containers/MobilePush/Edit/actions.js +91 -0
  182. package/containers/MobilePush/Edit/constants.js +35 -0
  183. package/containers/MobilePush/Edit/index.js +2601 -0
  184. package/containers/MobilePush/Edit/messages.js +266 -0
  185. package/containers/MobilePush/Edit/reducer.js +112 -0
  186. package/containers/MobilePush/Edit/sagas.js +126 -0
  187. package/containers/MobilePush/Edit/selectors.js +29 -0
  188. package/containers/MobilePush/Edit/tests/saga.test.js +255 -0
  189. package/containers/NotFoundPage/index.js +25 -0
  190. package/containers/NotFoundPage/messages.js +13 -0
  191. package/containers/NotFoundPage/tests/index.test.js +17 -0
  192. package/containers/Sms/Create/_smsCreate.scss +42 -0
  193. package/containers/Sms/Create/actions.js +27 -0
  194. package/containers/Sms/Create/constants.js +16 -0
  195. package/containers/Sms/Create/index.js +1488 -0
  196. package/containers/Sms/Create/messages.js +109 -0
  197. package/containers/Sms/Create/reducer.js +41 -0
  198. package/containers/Sms/Create/sagas.js +40 -0
  199. package/containers/Sms/Create/selectors.js +28 -0
  200. package/containers/Sms/Create/test/saga.test.js +11 -0
  201. package/containers/Sms/Edit/actions.js +40 -0
  202. package/containers/Sms/Edit/constants.js +17 -0
  203. package/containers/Sms/Edit/index.js +1472 -0
  204. package/containers/Sms/Edit/messages.js +105 -0
  205. package/containers/Sms/Edit/reducer.js +50 -0
  206. package/containers/Sms/Edit/sagas.js +60 -0
  207. package/containers/Sms/Edit/selectors.js +32 -0
  208. package/containers/Sms/Edit/test/saga.test.js +13 -0
  209. package/containers/TagList/_tagList.scss +8 -0
  210. package/containers/TagList/actions.js +15 -0
  211. package/containers/TagList/constants.js +32 -0
  212. package/containers/TagList/index.js +236 -0
  213. package/containers/TagList/messages.js +13 -0
  214. package/containers/TagList/reducer.js +23 -0
  215. package/containers/TagList/sagas.js +11 -0
  216. package/containers/TagList/selectors.js +25 -0
  217. package/containers/Templates/_templates.scss +333 -0
  218. package/containers/Templates/actions.js +103 -0
  219. package/containers/Templates/constants.js +60 -0
  220. package/containers/Templates/index.js +1756 -0
  221. package/containers/Templates/messages.js +337 -0
  222. package/containers/Templates/reducer.js +142 -0
  223. package/containers/Templates/sagas.js +163 -0
  224. package/containers/Templates/selectors.js +28 -0
  225. package/containers/Templates/test/saga.test.js +241 -0
  226. package/containers/WeChat/MapTemplates/_mapTemplates.scss +8 -0
  227. package/containers/WeChat/MapTemplates/actions.js +52 -0
  228. package/containers/WeChat/MapTemplates/constants.js +28 -0
  229. package/containers/WeChat/MapTemplates/index.js +1610 -0
  230. package/containers/WeChat/MapTemplates/messages.js +157 -0
  231. package/containers/WeChat/MapTemplates/reducer.js +74 -0
  232. package/containers/WeChat/MapTemplates/sagas.js +84 -0
  233. package/containers/WeChat/MapTemplates/selectors.js +25 -0
  234. package/containers/WeChat/MapTemplates/test/saga.test.js +155 -0
  235. package/containers/WeChat/RichmediaTemplates/Create/_createRichmedia.scss +57 -0
  236. package/containers/WeChat/RichmediaTemplates/Create/actions.js +36 -0
  237. package/containers/WeChat/RichmediaTemplates/Create/constants.js +15 -0
  238. package/containers/WeChat/RichmediaTemplates/Create/index.js +1071 -0
  239. package/containers/WeChat/RichmediaTemplates/Create/messages.js +165 -0
  240. package/containers/WeChat/RichmediaTemplates/Create/reducer.js +60 -0
  241. package/containers/WeChat/RichmediaTemplates/Create/richmediaschema.js +497 -0
  242. package/containers/WeChat/RichmediaTemplates/Create/sagas.js +51 -0
  243. package/containers/WeChat/RichmediaTemplates/Create/selectors.js +37 -0
  244. package/containers/WeChat/RichmediaTemplates/Create/test/saga.test.js +13 -0
  245. package/containers/WeChat/RichmediaTemplates/Edit/actions.js +20 -0
  246. package/containers/WeChat/RichmediaTemplates/Edit/constants.js +10 -0
  247. package/containers/WeChat/RichmediaTemplates/Edit/index.js +136 -0
  248. package/containers/WeChat/RichmediaTemplates/Edit/messages.js +13 -0
  249. package/containers/WeChat/RichmediaTemplates/Edit/reducer.js +28 -0
  250. package/containers/WeChat/RichmediaTemplates/Edit/sagas.js +36 -0
  251. package/containers/WeChat/RichmediaTemplates/Edit/selectors.js +30 -0
  252. package/containers/WeChat/RichmediaTemplates/Edit/test/saga.test.js +12 -0
  253. package/containers/WeChat/RichmediaTemplates/View/actions.js +15 -0
  254. package/containers/WeChat/RichmediaTemplates/View/constants.js +7 -0
  255. package/containers/WeChat/RichmediaTemplates/View/index.js +47 -0
  256. package/containers/WeChat/RichmediaTemplates/View/messages.js +21 -0
  257. package/containers/WeChat/RichmediaTemplates/View/reducer.js +23 -0
  258. package/containers/WeChat/RichmediaTemplates/View/sagas.js +11 -0
  259. package/containers/WeChat/RichmediaTemplates/View/selectors.js +25 -0
  260. package/index.js +2 -4
  261. package/package.json +1 -1
  262. package/routes.js +202 -136
  263. package/services/getSchema.js +1 -1
  264. package/services/localStorageApi.js +0 -1
  265. package/tests/i18n.test.js +1 -1
  266. package/utils/asyncInjectors.js +78 -0
  267. package/utils/authWrapper.js +1 -1
  268. package/utils/callNativeEvent.js +16 -0
  269. package/utils/checkStore.js +21 -0
  270. package/utils/common.js +2 -2
  271. package/utils/customAuthWrapper.js +62 -0
  272. package/utils/customConnectedAuthWrapper.js +26 -0
  273. package/utils/tagValidations.js +1 -1
  274. package/utils/tests/checkStore.test.js +1 -1
  275. package/utils/tests/customAuth.test.js +1 -1
  276. package/utils/transformerUtils.js +195 -1
  277. package/v2Components/CapTagList/index.js +14 -9
  278. package/v2Components/Carousel/style.scss +1 -1
  279. package/v2Components/EmailMobilePreview/index.js +2 -2
  280. package/v2Components/FormBuilder/index.js +2 -2
  281. package/v2Components/TemplatePreview/index.js +1 -2
  282. package/v2Containers/Cap/tests/saga.test.js +1 -1
  283. package/v2Containers/Email/index.js +1 -1
  284. package/v2Containers/FTP/index.js +1 -1
  285. package/v2Containers/Line/Container/Text/index.js +6 -6
  286. package/v2Containers/Sms/Create/index.js +2 -2
  287. package/v2Containers/Sms/Edit/index.js +1 -1
  288. package/v2Containers/TagList/index.js +1 -1
  289. package/v2Containers/TagList/utils.js +1 -1
  290. package/v2Containers/Templates/index.js +1 -1
  291. package/v2Containers/Templates/sagas.js +1 -1
  292. package/constants/unified.js +0 -189
@@ -0,0 +1,2269 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`<Cap /> should render its children 1`] = `
4
+ <Cap
5
+ actions={
6
+ Object {
7
+ "addMessageToQueue": [Function],
8
+ "authenticate": [Function],
9
+ "changeOrg": [Function],
10
+ "fetchSchemaForEntity": [Function],
11
+ "getUserData": [Function],
12
+ "logout": [Function],
13
+ "removeEntitySchema": [Function],
14
+ "removeMessageFromQueue": [Function],
15
+ "setInjectedTags": [Function],
16
+ }
17
+ }
18
+ history={
19
+ Object {
20
+ "push": [MockFunction],
21
+ }
22
+ }
23
+ intl={
24
+ Object {
25
+ "defaultFormats": Object {},
26
+ "defaultLocale": "en",
27
+ "formatDate": [Function],
28
+ "formatHTMLMessage": [Function],
29
+ "formatMessage": [Function],
30
+ "formatNumber": [Function],
31
+ "formatPlural": [Function],
32
+ "formatRelative": [Function],
33
+ "formatTime": [Function],
34
+ "formats": Object {},
35
+ "formatters": Object {
36
+ "getDateTimeFormat": [Function],
37
+ "getMessageFormat": [Function],
38
+ "getNumberFormat": [Function],
39
+ "getPluralFormat": [Function],
40
+ "getRelativeFormat": [Function],
41
+ },
42
+ "locale": "en",
43
+ "messages": Object {
44
+ "app.components.CapVideoUpload.dragAndDrop": "Drag and drop video here",
45
+ "app.components.CapVideoUpload.fileFormat": "Format: MP4",
46
+ "app.components.CapVideoUpload.imageReUpload": "Re upload",
47
+ "app.components.CapVideoUpload.or": "OR",
48
+ "app.components.CapVideoUpload.selectFromComputer": "Select from computer",
49
+ "app.components.CapVideoUpload.textMessageAddLabel": "How do you want to upload the image?",
50
+ "app.components.CapVideoUpload.textMessageCreateNew": "Create new",
51
+ "app.components.CapVideoUpload.textMessageORLabel": "OR",
52
+ "app.components.CapVideoUpload.textMessageSelectTemplate": "Select template",
53
+ "app.components.CapVideoUpload.videoIncorrectSize": "This file format/size is not supported.",
54
+ "app.components.CapVideoUpload.videoRatioDescription": "Video ratio: 9:16 to 16:9",
55
+ "app.components.CapVideoUpload.videoSizeDescription": "File size: Up to {size}",
56
+ "app.components.CapVideoUpload.whatsappErrorMessage": "Please upload the video with allowed file extension, size, dimension and aspect ratio",
57
+ "app.components.CapVideoUpload.whatsappFileFormat": "Format: MP4",
58
+ "app.components.TemplatePreview.includesOptoutTag": "Includes optout tag",
59
+ "app.components.TemplatePreview.optoutCharactersTotal": "Includes optout tag ({optoutUrlLength} characters)",
60
+ "app.components.TemplatePreview.whatsappMessageLength": "1 Message ({length} characters)",
61
+ "app.v2containers.SmsTrai.Create.deferEdit": "It is highly recommended to use a file directly downloaded from the DLT portal. Editing the file may cause data to truncate unexpectedly.",
62
+ "app.v2containers.SmsTrai.Create.doneButtonLabel": "Done",
63
+ "app.v2containers.SmsTrai.Create.downloadIssues": "Download issues",
64
+ "app.v2containers.SmsTrai.Create.dropCsvFile": "Drag and drop a CSV file here",
65
+ "app.v2containers.SmsTrai.Create.duplicateTemplateIdInstruction": "Existing templates with the same template ids will be overwritten.",
66
+ "app.v2containers.SmsTrai.Create.duplicateTemplateNameInstruction": "The template name needs to be unique. Any new template with a name matching the existing template name will not be created.",
67
+ "app.v2containers.SmsTrai.Create.failedToUpload": "Failed to upload",
68
+ "app.v2containers.SmsTrai.Create.failedVal": "{number} failed",
69
+ "app.v2containers.SmsTrai.Create.fileMaxlengthError": "More then 500 records are not allowed for the selected file.",
70
+ "app.v2containers.SmsTrai.Create.fileMinlengthError": "Please select a CSV file with minimum 1 row of data and 1 row of headers.",
71
+ "app.v2containers.SmsTrai.Create.headerAliasErrorDescription": "Please include mandatory field header. It can be {headerAliases}.",
72
+ "app.v2containers.SmsTrai.Create.mandatoryColErrorDescription": "Please include mandatory field Template name.",
73
+ "app.v2containers.SmsTrai.Create.mandatoryColInstruction": "Please ensure that each template has the following mandatory fields: Template name, Template ID, Type, Sender ID, Approval status/Status, Template message.",
74
+ "app.v2containers.SmsTrai.Create.nonCsvErrorDescription": "Please select a csv file.",
75
+ "app.v2containers.SmsTrai.Create.numberOfRecords": "{value, number} Record{value, plural, one {} other {s}}",
76
+ "app.v2containers.SmsTrai.Create.or": "OR",
77
+ "app.v2containers.SmsTrai.Create.passedVal": "{number} passed",
78
+ "app.v2containers.SmsTrai.Create.repetitiveColsErrorDescription": "Please remove repetitive fields ({repetitiveCols}) from the file.",
79
+ "app.v2containers.SmsTrai.Create.rowLimitInstruction": "Maximum 500 rows are allowed in a single file.",
80
+ "app.v2containers.SmsTrai.Create.sampleCsv": "Sample CSV",
81
+ "app.v2containers.SmsTrai.Create.sampleFileInstruction": "Users can also download {link} file and populate data. Please ensure that datatype is not changed.",
82
+ "app.v2containers.SmsTrai.Create.selectFileFromComputer": "Select a file from computer",
83
+ "app.v2containers.SmsTrai.Create.smsCreateNotification": "Sms templates created successfully",
84
+ "app.v2containers.SmsTrai.Create.statusAliasErrorDescription": "Please include mandatory field status. It can be {statusAliases}.",
85
+ "app.v2containers.SmsTrai.Create.statusesInstruction": "Only templates in the Approved/ Registered/ Active state will be uploaded.",
86
+ "app.v2containers.SmsTrai.Create.tempInstruction": "In case the uploaded file with multiple templates is showing errors, but any campaign needs to be sent urgently, try uploading a single template (as required in the campaign) in Sample CSV.",
87
+ "app.v2containers.SmsTrai.Create.templateIdAliasErrorDescription": "Please include mandatory field template id. It can be {templateIdAliases}.",
88
+ "app.v2containers.SmsTrai.Create.templateMessageAliasErrorDescription": "Please include mandatory field template message. It can be {templateMessageAliases}.",
89
+ "app.v2containers.SmsTrai.Create.trimInstruction": "Whitespaces will be trimmed from both ends for all template cells.",
90
+ "app.v2containers.SmsTrai.Create.typeAliasErrorDescription": "Please include mandatory field type. It can be {typeAliases}.",
91
+ "app.v2containers.SmsTrai.Create.uploadFile": "Upload file",
92
+ "app.v2containers.SmsTrai.Create.uploadInstructions": "Upload Instructions",
93
+ "app.v2containers.SmsTrai.Edit.addLabels": "Add labels",
94
+ "app.v2containers.SmsTrai.Edit.cancelButtonLabel": "Cancel",
95
+ "app.v2containers.SmsTrai.Edit.inputplaceHolderText": "Add labels or text or combination of both",
96
+ "app.v2containers.SmsTrai.Edit.msgLengthNote": "Only 30 characters are allowed per variable {var} field. In case the field resolves to more than 30 characters the message is bound to fail. Hence will not be sent by the Capillary system.",
97
+ "app.v2containers.SmsTrai.Edit.saveButtonLabel": "Save",
98
+ "app.v2containers.SmsTrai.Edit.senderIdlabel": "Sender ID",
99
+ "app.v2containers.SmsTrai.Edit.smsEditNotification": "Sms template updated successfully",
100
+ "app.v2containers.SmsTrai.Edit.templateLabel": "Template",
101
+ "app.v2containers.SmsTrai.Edit.textAreaCounts": "{varCounts} variable{varCounts, plural, one {} other {s}} {var}: max. {charCounts} characters",
102
+ "app.v2containers.SmsTrai.Edit.textAreaError": "Template cannot be empty",
103
+ "app.v2containers.SmsTrai.Edit.totalCharacters": "{smsCount} SMS ({number} characters)",
104
+ "app.v2containers.SmsTrai.Edit.traiEditSeperator": "|",
105
+ "app.v2containers.SmsTrai.Edit.traiEditTitle": "Message",
106
+ "app.v2containers.SmsTrai.Edit.unicodeLabel": "Allow unicode characters",
107
+ "app.v2containers.SmsTrai.Edit.unsupportedTagsValidationError": "Unsupported tags: {unsupportedTags}. Please remove them from this message.",
108
+ "creatives.components.AccessForbidden.forbiddenDesc": "This page access has not been provided to you.",
109
+ "creatives.components.AccessForbidden.forbiddenHeader": "Access Forbidden",
110
+ "creatives.components.BreadCrumbs.header": "This is the BreadCrumbs component !",
111
+ "creatives.components.CapTagList.Cancel": "Cancel",
112
+ "creatives.components.CapTagList.Ok": "Ok",
113
+ "creatives.components.CapTagList.all": "All",
114
+ "creatives.components.CapTagList.dynamic_days_before_expiry": "Dynamic days before expiry",
115
+ "creatives.components.CapTagList.loyalty": "Loyalty",
116
+ "creatives.components.CapTagList.numberOfDaysBeforeExpiry": "Number of days before expiry",
117
+ "creatives.components.CapTagList.outbound": "Outbound",
118
+ "creatives.components.Ckeditor.header": "This is the Ckeditor component !",
119
+ "creatives.components.CustomPopOver.header": "This is the CustomPopOver component !",
120
+ "creatives.components.CustomPopOver.languages": "+ Languages",
121
+ "creatives.components.DateRange.from": "From",
122
+ "creatives.components.DateRange.header": "This is the DateRange component !",
123
+ "creatives.components.DateRange.to": "To",
124
+ "creatives.components.DateRange.today": "Today",
125
+ "creatives.components.Edmeditor.header": "This is the Edmeditor component !",
126
+ "creatives.components.EmailPreview.browserNotSupportIframe": "Your browser does not support iframes.",
127
+ "creatives.components.EmailPreview.desktop": "Desktop",
128
+ "creatives.components.EmailPreview.lastModified": "Last modified on",
129
+ "creatives.components.EmailPreview.mobile": "Mobile",
130
+ "creatives.components.EmailPreview.tablet": "Tablet",
131
+ "creatives.components.EmailPreview.uploadedBy": "Last modified by",
132
+ "creatives.components.Footer.header": "This is the Footer component !",
133
+ "creatives.components.FormBuilder.cancel": "Cancel",
134
+ "creatives.components.FormBuilder.contentNotValidLanguage": "Content is not valid for language:",
135
+ "creatives.components.FormBuilder.genericTagsValidationError": "Please check the message content for unsupported/missing tags",
136
+ "creatives.components.FormBuilder.header": "This is the FormBuilder component !",
137
+ "creatives.components.FormBuilder.layoutSelection": "Layout Selection",
138
+ "creatives.components.FormBuilder.loadingEDMTemplates": "Loading EDM Templates",
139
+ "creatives.components.FormBuilder.missingTags": "Missing tags are:",
140
+ "creatives.components.FormBuilder.missingTagsValidationError": "Missing tags: {missingTags}. Please add them to this message.",
141
+ "creatives.components.FormBuilder.ok": "Ok",
142
+ "creatives.components.FormBuilder.unsupportedTags": "Unsupported tags are:",
143
+ "creatives.components.FormBuilder.unsupportedTagsValidationError": "Unsupported tags: {unsupportedTags}. Please remove them from this message.",
144
+ "creatives.components.FormBuilder.yes": "Yes",
145
+ "creatives.components.Header.cancel": "Cancel",
146
+ "creatives.components.Header.enterTemplateName": "Enter template name*",
147
+ "creatives.components.Header.header": "This is the Header component !",
148
+ "creatives.components.Header.preview": "Preview",
149
+ "creatives.components.Header.save": "Save",
150
+ "creatives.components.ImagePreview.close": "close",
151
+ "creatives.components.ImagePreview.loadingImage": "Loading images !!!!",
152
+ "creatives.components.NotFoundPage.header": "Looks like you are lost!",
153
+ "creatives.components.PageHeader.header": "This is the PageHeader component !",
154
+ "creatives.components.PreviewSideBar.android": "Android",
155
+ "creatives.components.PreviewSideBar.duplicate": "Duplicate",
156
+ "creatives.components.PreviewSideBar.edit": "Edit",
157
+ "creatives.components.PreviewSideBar.header": "This is the PreviewSideBar component !",
158
+ "creatives.components.PreviewSideBar.ios": "IOS",
159
+ "creatives.components.PreviewSideBar.lastModified": "Last modified on",
160
+ "creatives.components.PreviewSideBar.select": "Select",
161
+ "creatives.components.PreviewSideBar.uploadedBy": "Last modified by",
162
+ "creatives.components.Sidebar.creatives": "Creatives",
163
+ "creatives.components.Sidebar.input.placeholder": "Search...",
164
+ "creatives.components.Sidebar.menuTitle": "Menu",
165
+ "creatives.components.SmsTest.header": "This is the SmsTest component !",
166
+ "creatives.components.SmsTest.inputSmsTemplate": "Please input sms template content.",
167
+ "creatives.components.SmsTest.inputTemplateName": "Please input template name.",
168
+ "creatives.components.TemplatePreview.cancel": "Cancel",
169
+ "creatives.components.TemplatePreview.characters": "characters",
170
+ "creatives.components.TemplatePreview.charactersPerSms": "SMS chars",
171
+ "creatives.components.TemplatePreview.charactersTotal": "SMS char total",
172
+ "creatives.components.TemplatePreview.close": "close",
173
+ "creatives.components.TemplatePreview.markAsRead": "Mark as read",
174
+ "creatives.components.TemplatePreview.previewGenerated": "Preview is being generated",
175
+ "creatives.components.TemplatePreview.previewGenerationMessage": "Preview is being generated",
176
+ "creatives.components.TemplatePreview.reply": "Reply",
177
+ "creatives.components.TemplatePreview.senderId": "Sender ID",
178
+ "creatives.components.TemplatePreview.sms": "SMS",
179
+ "creatives.components.TemplatePreview.smsFormatType": "Message has unicode characters",
180
+ "creatives.components.TemplatePreview.smsIcon": "Sms Icon",
181
+ "creatives.components.TemplatePreview.unicodeIconTooltip": "This message has unicode characters. This may affect the cost per message.",
182
+ "creatives.components.Toastr.header": "This is the Toastr component !",
183
+ "creatives.components.ToastrMessage.close": "close",
184
+ "creatives.components.ToastrMessage.header": "This is the ToastrMessage component !",
185
+ "creatives.components.TopBar.brand.dropdown": "Hi",
186
+ "creatives.components.TopBar.brand.noResultText": "No results found",
187
+ "creatives.components.TopBar.brand.organization": "Organization",
188
+ "creatives.components.WechatRichmediaTemplatePreview.MarkAsRead": "Mark as read",
189
+ "creatives.components.WechatRichmediaTemplatePreview.cancel": "Cancel",
190
+ "creatives.components.WechatRichmediaTemplatePreview.edit": "Edit",
191
+ "creatives.components.WechatRichmediaTemplatePreview.header": "This is the WechatRichmediaTemplatePreview component !",
192
+ "creatives.components.WechatRichmediaTemplatePreview.reply": "Reply",
193
+ "creatives.components.WechatRichmediaTemplatePreview.select": "Select",
194
+ "creatives.componentsV2.BreadCrumbs.header": "This is the BreadCrumbs component !",
195
+ "creatives.componentsV2.CallTaskPreview.header": "This is the CallTaskPreview component !",
196
+ "creatives.componentsV2.CapActionButton.addButton": "Add button",
197
+ "creatives.componentsV2.CapActionButton.comingSoonTooltip": "Right now only one Call to action button is enabled, in future you would be able to add upto 3 buttons.",
198
+ "creatives.componentsV2.CapActionButton.inValidUrlErrorMessage": "Button URL is not valid",
199
+ "creatives.componentsV2.CapActionButton.templateButtonLink": "Button link",
200
+ "creatives.componentsV2.CapActionButton.templateButtonLinkPlaceholder": "Enter button link",
201
+ "creatives.componentsV2.CapActionButton.templateButtonText": "Button text",
202
+ "creatives.componentsV2.CapActionButton.templateButtonTextPlaceholder": "Enter button text",
203
+ "creatives.componentsV2.CapDocumentUpload.docErrorDesc": "Please upload the document with allowed file extension and size",
204
+ "creatives.componentsV2.CapDocumentUpload.docReUpload": "Reupload",
205
+ "creatives.componentsV2.CapDocumentUpload.dragAndDrop": "Drag and drop document here",
206
+ "creatives.componentsV2.CapDocumentUpload.format": "Format: {format}",
207
+ "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
208
+ "creatives.componentsV2.CapDocumentUpload.or": "OR",
209
+ "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
210
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
211
+ "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
212
+ "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
213
+ "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
214
+ "creatives.componentsV2.CapImageUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
215
+ "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
216
+ "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
217
+ "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
218
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
219
+ "creatives.componentsV2.CapImageUpload.or": "OR",
220
+ "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
221
+ "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
222
+ "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
223
+ "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
224
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
225
+ "creatives.componentsV2.CapTagList.Cancel": "Cancel",
226
+ "creatives.componentsV2.CapTagList.Ok": "Ok",
227
+ "creatives.componentsV2.CapTagList.all": "All",
228
+ "creatives.componentsV2.CapTagList.dynamic_days_before_expiry": "Dynamic days before expiry",
229
+ "creatives.componentsV2.CapTagList.gettingTags": "Getting tags...",
230
+ "creatives.componentsV2.CapTagList.loyalty": "Loyalty",
231
+ "creatives.componentsV2.CapTagList.loyaltyAttributeDisable": "You won’t be able to add loyalty related attributes since the loyalty program/ card series is None.",
232
+ "creatives.componentsV2.CapTagList.numberOfDaysBeforeExpiry": "Number of days before expiry",
233
+ "creatives.componentsV2.CapTagList.outbound": "Outbound",
234
+ "creatives.componentsV2.CapTagList.search": "Search",
235
+ "creatives.componentsV2.CapWhatsappCTA.addButton": "Add button",
236
+ "creatives.componentsV2.CapWhatsappCTA.ctaAddDisabled": "Please save the first button before proceeding to create second button",
237
+ "creatives.componentsV2.CapWhatsappCTA.ctaButtonErrorMessage": "Newlines, Emojis, or Special characters are not allowed",
238
+ "creatives.componentsV2.CapWhatsappCTA.ctaButtonText": "Button text",
239
+ "creatives.componentsV2.CapWhatsappCTA.ctaButtonTextPlaceholder": "Enter button text",
240
+ "creatives.componentsV2.CapWhatsappCTA.ctaButtonTextTooltip": "Use this to name the button. We would recommend not to use special characters for the button text.",
241
+ "creatives.componentsV2.CapWhatsappCTA.ctaDynamicPlaceholder": "Enter URL, variable is added by default",
242
+ "creatives.componentsV2.CapWhatsappCTA.ctaOptionDisabledTooltip": "This type of button can only be added once",
243
+ "creatives.componentsV2.CapWhatsappCTA.ctaPhoneNo": "Phone number",
244
+ "creatives.componentsV2.CapWhatsappCTA.ctaPhoneNoPlaceholder": "Enter phone number",
245
+ "creatives.componentsV2.CapWhatsappCTA.ctaSaveDisabled": "Please complete the above fields to enable button",
246
+ "creatives.componentsV2.CapWhatsappCTA.ctaStaticPlaceholder": "Enter website URL",
247
+ "creatives.componentsV2.CapWhatsappCTA.ctaType": "Type of action",
248
+ "creatives.componentsV2.CapWhatsappCTA.ctaWebsite": "Website",
249
+ "creatives.componentsV2.CapWhatsappCTA.ctaWebsiteType": "URL Type",
250
+ "creatives.componentsV2.CapWhatsappCTA.ctaWebsiteTypeDynamic": "Dynamic",
251
+ "creatives.componentsV2.CapWhatsappCTA.ctaWebsiteTypeStatic": "Static",
252
+ "creatives.componentsV2.CapWhatsappCTA.ctaWebsiteUrl": "Website URL",
253
+ "creatives.componentsV2.CapWhatsappCTA.ctaWebsiteUrlErrorMessage": "URL is not valid",
254
+ "creatives.componentsV2.CapWhatsappCTA.dynamicUrlTooltip": "Only one variable can be added to a URL. No need to add {one} to the end of the URL",
255
+ "creatives.componentsV2.CapWhatsappCTA.dynamicUrlWithMoreVarErrorMessage": "Button with url type as dynamic can have only 1 variable",
256
+ "creatives.componentsV2.CapWhatsappCTA.staticUrlWithVarErrorMessage": "Button with url type as static cannot contain variables",
257
+ "creatives.componentsV2.CapWhatsappCTA.useTwoBracketsOnly": "Use two brackets on each side to declare a variable",
258
+ "creatives.componentsV2.CapWhatsappCTA.whatsappCtaTagListLabel": "Add URL label",
259
+ "creatives.componentsV2.CapWhatsappCTA.whatsappCtaTagListRevert": "Reset website URL label to default value",
260
+ "creatives.componentsV2.Ckeditor.header": "This is the Ckeditor component !",
261
+ "creatives.componentsV2.CmsTemplatesComponent.header": "This is the CmsTemplatesComponent component !",
262
+ "creatives.componentsV2.CmsTemplatesComponent.select": "Select",
263
+ "creatives.componentsV2.CustomPopOver.header": "This is the CustomPopOver component !",
264
+ "creatives.componentsV2.CustomPopOver.languages": "+ Languages",
265
+ "creatives.componentsV2.Edmeditor.header": "This is the Edmeditor component !",
266
+ "creatives.componentsV2.EmailPreview.browserDoesntSupportIframe": "Your browser does not support iframes.",
267
+ "creatives.componentsV2.EmailPreview.close": "close",
268
+ "creatives.componentsV2.EmailPreview.lastModified": "Last modified on",
269
+ "creatives.componentsV2.EmailPreview.subject": "Subject:",
270
+ "creatives.componentsV2.EmailPreview.uploadedBy": "Last modified by",
271
+ "creatives.componentsV2.EmailPreviewV2.browserDoesntSupportIframe": "Your browser does not support iframes.",
272
+ "creatives.componentsV2.EmailPreviewV2.desktop": "Desktop",
273
+ "creatives.componentsV2.EmailPreviewV2.header": "This is the EmailPreviewV2 component !",
274
+ "creatives.componentsV2.EmailPreviewV2.lastModified": "Last modified on",
275
+ "creatives.componentsV2.EmailPreviewV2.mobile": "Mobile",
276
+ "creatives.componentsV2.EmailPreviewV2.noIframeSupport": "Your browser does not support iframes.",
277
+ "creatives.componentsV2.EmailPreviewV2.showAllDevices": "Show all devices",
278
+ "creatives.componentsV2.EmailPreviewV2.subject": "Subject:",
279
+ "creatives.componentsV2.EmailPreviewV2.tablet": "Tablet",
280
+ "creatives.componentsV2.EmailPreviewV2.uploadedBy": "Last modified by",
281
+ "creatives.componentsV2.FTP.message": "Message",
282
+ "creatives.componentsV2.FTP.search": "Search",
283
+ "creatives.componentsV2.Footer.header": "This is the Footer component !",
284
+ "creatives.componentsV2.FormBuilder.cancel": "Cancel",
285
+ "creatives.componentsV2.FormBuilder.contentNotValidLanguage": "Content is not valid for language:",
286
+ "creatives.componentsV2.FormBuilder.dragAndDrop": "Drag and drop image here",
287
+ "creatives.componentsV2.FormBuilder.header": "This is the FormBuilder component !",
288
+ "creatives.componentsV2.FormBuilder.imageDimenstionDescription": "Dimensions: 300px x 400px Size: 30mb",
289
+ "creatives.componentsV2.FormBuilder.imageReUpload": "Re upload",
290
+ "creatives.componentsV2.FormBuilder.layoutSelection": "Layout Selection",
291
+ "creatives.componentsV2.FormBuilder.loadingEDMTemplates": "Loading EDM Templates",
292
+ "creatives.componentsV2.FormBuilder.missingTags": "Missing tags are:",
293
+ "creatives.componentsV2.FormBuilder.ok": "Ok",
294
+ "creatives.componentsV2.FormBuilder.or": "OR",
295
+ "creatives.componentsV2.FormBuilder.selectAFile": "Select a file from your computer",
296
+ "creatives.componentsV2.FormBuilder.unsupportedTags": "Unsupported tags are:",
297
+ "creatives.componentsV2.FormBuilder.upload": "Upload",
298
+ "creatives.componentsV2.FormBuilder.uploadComputer": "Your computer",
299
+ "creatives.componentsV2.FormBuilder.uploadGallery": "Gallery",
300
+ "creatives.componentsV2.FormBuilder.yes": "Yes",
301
+ "creatives.componentsV2.Header.cancel": "Cancel",
302
+ "creatives.componentsV2.Header.header": "This is the Header component !",
303
+ "creatives.componentsV2.Header.preview": "Preview",
304
+ "creatives.componentsV2.Header.save": "Save",
305
+ "creatives.componentsV2.ImagePreview.close": "close",
306
+ "creatives.componentsV2.ImagePreview.loadingImage": "Loading images !!!!",
307
+ "creatives.componentsV2.NavigationBar.businessProcesses": "Workbench",
308
+ "creatives.componentsV2.NavigationBar.campaigns/ui/list": "Engage+",
309
+ "creatives.componentsV2.NavigationBar.header": "This is the NavigationBar component!",
310
+ "creatives.componentsV2.NavigationBar.insights": "Insights+",
311
+ "creatives.componentsV2.NavigationBar.logout": "Logout",
312
+ "creatives.componentsV2.NavigationBar.loyaltyProgram": "Loyalty+",
313
+ "creatives.componentsV2.NavigationBar.memberCare": "Member Care",
314
+ "creatives.componentsV2.NavigationBar.noProductSetting": "There are no product settings. Organisation settings are available under profile on the right.",
315
+ "creatives.componentsV2.NavigationBar.orgSettings": "Organisation settings",
316
+ "creatives.componentsV2.NavigationBar.selectedProductDefault": "Engage+",
317
+ "creatives.componentsV2.NavigationBar.storeCare": "Store Care",
318
+ "creatives.componentsV2.NavigationBar.storePerformance": "Store Performance",
319
+ "creatives.componentsV2.NavigationBar.wecrm": "Wecrm",
320
+ "creatives.componentsV2.NewCallTask.callTaskTitle": "Call Task title",
321
+ "creatives.componentsV2.NewCallTask.description": "Description",
322
+ "creatives.componentsV2.NewCallTask.done": "Done",
323
+ "creatives.componentsV2.NewCallTask.messageHeader": "Message",
324
+ "creatives.componentsV2.NewCallTask.personalisationTags": "Add Labels",
325
+ "creatives.componentsV2.NewCallTask.useInS2D": "Use in Store2Door",
326
+ "creatives.componentsV2.PreviewSideBar.duplicate": "Duplicate",
327
+ "creatives.componentsV2.PreviewSideBar.edit": "Edit",
328
+ "creatives.componentsV2.PreviewSideBar.header": "This is the PreviewSideBar component !",
329
+ "creatives.componentsV2.PreviewSideBar.lastModified": "Last modified on",
330
+ "creatives.componentsV2.PreviewSideBar.select": "Select",
331
+ "creatives.componentsV2.PreviewSideBar.uploadedBy": "Last modified by",
332
+ "creatives.componentsV2.SmsTest.header": "This is the SmsTest component !",
333
+ "creatives.componentsV2.SmsTest.inputSmsTemplate": "Please input sms template content.",
334
+ "creatives.componentsV2.SmsTest.inputTemplateName": "Please input template name.",
335
+ "creatives.componentsV2.TemplatePreview.charactersPerSms": "SMS chars",
336
+ "creatives.componentsV2.TemplatePreview.charactersTotal": "{smsCount} SMS ({charCount} characters)",
337
+ "creatives.componentsV2.TemplatePreview.close": "close",
338
+ "creatives.componentsV2.TemplatePreview.playVideo": "Play",
339
+ "creatives.componentsV2.TemplatePreview.preview": "Preview",
340
+ "creatives.componentsV2.TemplatePreview.previewGenerated": "Preview is being generated",
341
+ "creatives.componentsV2.TemplatePreview.previewGenerationMessage": "Preview is being generated",
342
+ "creatives.componentsV2.TemplatePreview.showDetails": "Show details",
343
+ "creatives.componentsV2.TemplatePreview.sms": "SMS",
344
+ "creatives.componentsV2.TemplatePreview.smsFormatType": "Message has unicode characters",
345
+ "creatives.componentsV2.TemplatePreview.smsIcon": "Sms Icon",
346
+ "creatives.componentsV2.TemplatePreview.testMessage": "Test Message",
347
+ "creatives.componentsV2.TemplatePreview.textMessageCharacter": "characters",
348
+ "creatives.componentsV2.TemplatePreview.textMessageLabel": "text msg-",
349
+ "creatives.componentsV2.TemplatePreview.videoPreviewTooltip": "This is just for preview purposes, video cannot be played here",
350
+ "creatives.componentsV2.Toastr.header": "This is the Toastr component !",
351
+ "creatives.componentsV2.ToastrMessage.close": "This is the ToastrMessage component !",
352
+ "creatives.componentsV2.ToastrMessage.header": "This is the ToastrMessage component !",
353
+ "creatives.componentsV2.TopBar.brand.dropdown": "Select brand",
354
+ "creatives.componentsV2.TopBar.brand.hi": "Hi",
355
+ "creatives.componentsV2.TopBar.brand.selectOrganization": "Select organization",
356
+ "creatives.componentsV2.TopBar.brand.selectProduct": "Select product",
357
+ "creatives.componentsV2.TopBar.logout": "Logout",
358
+ "creatives.componentsV2.TopBar.profile": "Profile",
359
+ "creatives.componentsV2.TopBar.settings": "Settings",
360
+ "creatives.componentsV2.unbalanacedCurlyBraces": "Invalid label, please close all curly braces",
361
+ "creatives.componentsv2.MobilePushPreviewV2.header": "This is the MobilePushPreviewV2 component !",
362
+ "creatives.containers.Assets.Gallery.alphabetically": "Alphabetically",
363
+ "creatives.containers.Assets.Gallery.assetDeleteFailed": "Image deletion failed.",
364
+ "creatives.containers.Assets.Gallery.assetDeleteSuccess": "Image deleted successfully.",
365
+ "creatives.containers.Assets.Gallery.assetUploadFailed": "Image uploaded failed",
366
+ "creatives.containers.Assets.Gallery.assetUploadSuccess": "Image uploaded successfully",
367
+ "creatives.containers.Assets.Gallery.backToGallery": "Back to image gallery",
368
+ "creatives.containers.Assets.Gallery.delete": "Delete",
369
+ "creatives.containers.Assets.Gallery.dimensions": "Dimensions",
370
+ "creatives.containers.Assets.Gallery.gallery": "Gallery",
371
+ "creatives.containers.Assets.Gallery.imagePreview": "Image preview",
372
+ "creatives.containers.Assets.Gallery.mostRecent": "Most recent",
373
+ "creatives.containers.Assets.Gallery.preview": "Preview",
374
+ "creatives.containers.Assets.Gallery.search": "Search",
375
+ "creatives.containers.Assets.Gallery.select": "Select",
376
+ "creatives.containers.Assets.Gallery.size": "Size",
377
+ "creatives.containers.Assets.Gallery.sortby": "Sort by",
378
+ "creatives.containers.Assets.Gallery.upload": "Upload image",
379
+ "creatives.containers.Assets.Gallery.uploadedAt": "Uploaded at",
380
+ "creatives.containers.Assets.Gallery.uploadedBy": "Uploaded by",
381
+ "creatives.containers.Assets.Gallery.uploadedOn": "Uploaded on",
382
+ "creatives.containers.Create.Anyone": "Anyone",
383
+ "creatives.containers.Create.Author": "Author",
384
+ "creatives.containers.Create.Content*": "Content*",
385
+ "creatives.containers.Create.Cover_abstract": "Cover abstract",
386
+ "creatives.containers.Create.Cover_image*": "Cover image*",
387
+ "creatives.containers.Create.Insert_Image": "Insert Image",
388
+ "creatives.containers.Create.No_one": "No one",
389
+ "creatives.containers.Create.Only_followers": "Only followers",
390
+ "creatives.containers.Create.Please_input_author": "Please input author",
391
+ "creatives.containers.Create.Please_input_content": "Please input content",
392
+ "creatives.containers.Create.Please_input_cover_abstract": "Please input cover abstract",
393
+ "creatives.containers.Create.Please_input_title": "Please input title",
394
+ "creatives.containers.Create.Show_cover_picture": "Show cover picture",
395
+ "creatives.containers.Create.Source_link": "Source link*",
396
+ "creatives.containers.Create.Title*": "Title*",
397
+ "creatives.containers.Create.Upload_Image": "Upload Image",
398
+ "creatives.containers.Create.Who_can_post_comments_on_this_content": "Who can post comments on this content",
399
+ "creatives.containers.Create.addNewRichmedia": "Add richmedia content",
400
+ "creatives.containers.Create.alertMessage": "Alert",
401
+ "creatives.containers.Create.authorCharacterCount": "Author exceeds character count limit by",
402
+ "creatives.containers.Create.cancelButton": "Cancel",
403
+ "creatives.containers.Create.contentEmpty": "Cannot leave content field empty",
404
+ "creatives.containers.Create.coverAbstractCharacterCount": "Cover abstract exceeds character count limit by",
405
+ "creatives.containers.Create.deleteContent": "Do you really want to delete? All your temporary changes will be lost!",
406
+ "creatives.containers.Create.deleteLabel": "Delete",
407
+ "creatives.containers.Create.deleteVersion": "Do you really want to delete this version?",
408
+ "creatives.containers.Create.discardChangesButton": "Discard changes",
409
+ "creatives.containers.Create.duplicateLabel": "Duplicate",
410
+ "creatives.containers.Create.emptyTemplateErrorMessage": "Please provide a template name",
411
+ "creatives.containers.Create.emptyTemplateName": "Cannot leave template name empty",
412
+ "creatives.containers.Create.formEmpty": "Cannot leave form empty",
413
+ "creatives.containers.Create.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
414
+ "creatives.containers.Create.graphic_details_page": "Whether to display the graphic cover on the graphic details page",
415
+ "creatives.containers.Create.header": "This is Create container !",
416
+ "creatives.containers.Create.http_example": "Example: http://example.com",
417
+ "creatives.containers.Create.markFinalVersionLabel": "Mark as final",
418
+ "creatives.containers.Create.maxContentCount": "You have reached the maximum template size",
419
+ "creatives.containers.Create.messageLabel": "Message",
420
+ "creatives.containers.Create.modalBody": "Do you really want to go back? All your temporary changes will be lost!",
421
+ "creatives.containers.Create.modalTitle": "Alert",
422
+ "creatives.containers.Create.newVersionLabel": "New version",
423
+ "creatives.containers.Create.noImage": "Please upload an image",
424
+ "creatives.containers.Create.renameLabel": "Rename",
425
+ "creatives.containers.Create.saveButton": "Save",
426
+ "creatives.containers.Create.saveSuccess": "Template saved successfully",
427
+ "creatives.containers.Create.saveTemplateLoader": "Saving template...",
428
+ "creatives.containers.Create.smsCreateSuccess": "SMS Template Created Successfully",
429
+ "creatives.containers.Create.smsEditorPlaceholder": "Please enter the message content",
430
+ "creatives.containers.Create.somethingWentWrong": "Something went wrong!!",
431
+ "creatives.containers.Create.sourceLinkEmpty": "Cannot leave source link field empty",
432
+ "creatives.containers.Create.tagsErrorMessage": "Please check the message content for unsupported/missing tags",
433
+ "creatives.containers.Create.tagsLabel": "Tags",
434
+ "creatives.containers.Create.templateDataNotValid": "Template data is not valid",
435
+ "creatives.containers.Create.templateMarkedFinal": "Template Marked as Final Successfully",
436
+ "creatives.containers.Create.templateNamePlaceHolder": "Enter template name",
437
+ "creatives.containers.Create.titleCharacterCount": "Title exceeds character count limit by",
438
+ "creatives.containers.Create.titleEmpty": "Cannot leave title field empty",
439
+ "creatives.containers.Create.titleNameRepeated": "Title name cannot be repeated",
440
+ "creatives.containers.Create.to_be_displayed_on_the_graphic_details_page": "to be displayed on the graphic details page",
441
+ "creatives.containers.Create.unicodeErrorMessage": "Please check this if you want to use unicode characters",
442
+ "creatives.containers.Create.unicodeLabel": "Allow unicode characters",
443
+ "creatives.containers.Create.versionLabel": "Version",
444
+ "creatives.containers.Create.wrongFormatFile": "Wrong file upoaded. Please upload image file",
445
+ "creatives.containers.Create.wrongUrl": "Enter correct URL",
446
+ "creatives.containers.Dashboard.header": "Dashboard",
447
+ "creatives.containers.Ebill.Cancel": "Cancel",
448
+ "creatives.containers.Ebill.Preview": "Preview",
449
+ "creatives.containers.Ebill.Save": "Save",
450
+ "creatives.containers.Ebill.campaigns": "Campaigns",
451
+ "creatives.containers.Ebill.creatives": "Creatives",
452
+ "creatives.containers.Ebill.ebill": "Ebill",
453
+ "creatives.containers.Ebill.ebillCreateSuccess": "Ebill template created successfully",
454
+ "creatives.containers.Ebill.ebillEditSuccess": "Ebill template edited successfully",
455
+ "creatives.containers.Ebill.ebillPreview": "Ebill Preview",
456
+ "creatives.containers.Ebill.emptyTemplateErrorMessage": "Please provide a template name",
457
+ "creatives.containers.Ebill.enterTemplateName": "Enter template name",
458
+ "creatives.containers.Ebill.loading": "Loading..",
459
+ "creatives.containers.Ebill.newVersionLabel": "New version",
460
+ "creatives.containers.Ebill.somethingWentWrong": "Something went wrong!!",
461
+ "creatives.containers.Ebill.tagsErrorMessage": "Please check the message content for unsupported/missing tags",
462
+ "creatives.containers.Ebill.tagsLabel": "Tags",
463
+ "creatives.containers.Ebill.templateNotValid": "Template data is not valid",
464
+ "creatives.containers.Edit.alertMessage": "Alert",
465
+ "creatives.containers.Edit.cancelButton": "Cancel",
466
+ "creatives.containers.Edit.deleteLabel": "Delete",
467
+ "creatives.containers.Edit.deleteVersion": "Do you really want to delete this version?",
468
+ "creatives.containers.Edit.discardChangesButton": "Discard changes",
469
+ "creatives.containers.Edit.duplicateLabel": "Duplicate",
470
+ "creatives.containers.Edit.emptyTemplateErrorMessage": "Please provide a template name",
471
+ "creatives.containers.Edit.getTemplateDetailsLoader": "Getting template details...",
472
+ "creatives.containers.Edit.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
473
+ "creatives.containers.Edit.header": "This is Edit container !",
474
+ "creatives.containers.Edit.markFinalVersionLabel": "Mark as final",
475
+ "creatives.containers.Edit.messageLabel": "Message",
476
+ "creatives.containers.Edit.newVersionLabel": "New version",
477
+ "creatives.containers.Edit.renameLabel": "Rename",
478
+ "creatives.containers.Edit.saveButton": "Save",
479
+ "creatives.containers.Edit.saveTemplateLoader": "Saving template...",
480
+ "creatives.containers.Edit.smsEditorPlaceholder": "Please enter the message content",
481
+ "creatives.containers.Edit.somethingWentWrong": "Something went wrong!!",
482
+ "creatives.containers.Edit.tagsErrorMessage": "Please check the message content for unsupported/missing tags",
483
+ "creatives.containers.Edit.tagsLabel": "Tags",
484
+ "creatives.containers.Edit.templateMarkedFinal": "Template Marked as Final Successfully",
485
+ "creatives.containers.Edit.templateNamePlaceHolder": "Enter template name",
486
+ "creatives.containers.Edit.unicodeErrorMessage": "Please check this if you want to use Unicode characters",
487
+ "creatives.containers.Edit.unicodeLabel": "Allow unicode characters",
488
+ "creatives.containers.Edit.versionLabel": "Version",
489
+ "creatives.containers.Email.Campaigns": "Campaigns",
490
+ "creatives.containers.Email.Cancel": "Cancel",
491
+ "creatives.containers.Email.Create.alertMessage": "Alert",
492
+ "creatives.containers.Email.Create.campaigns": "Campaigns",
493
+ "creatives.containers.Email.Create.copyPrimaryLanguage": "Copy Primary Language",
494
+ "creatives.containers.Email.Create.creatives": "Creatives",
495
+ "creatives.containers.Email.Create.descriptionEmail": "Description of Email",
496
+ "creatives.containers.Email.Create.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
497
+ "creatives.containers.Email.Create.h3emailPreview": "Email preview",
498
+ "creatives.containers.Email.Create.h3imageSelection": "Image selection",
499
+ "creatives.containers.Email.Create.invalidFileMessage": "Invalid file type added! Please Give a proper zip/html file",
500
+ "creatives.containers.Email.Create.newVersion": "New Version",
501
+ "creatives.containers.Email.Create.uploadFile": "Upload File",
502
+ "creatives.containers.Email.Create.useEditor": "Use Editor",
503
+ "creatives.containers.Email.Create.versionMessage": "Version",
504
+ "creatives.containers.Email.Create.versionOneMessage": "Version 1",
505
+ "creatives.containers.Email.Creatives": "Creatives",
506
+ "creatives.containers.Email.Preview": "Preview",
507
+ "creatives.containers.Email.Save": "Save",
508
+ "creatives.containers.Email.Subject": "Subject",
509
+ "creatives.containers.Email.Tags": "Tags",
510
+ "creatives.containers.Email.alphabetically": "Alphabetically",
511
+ "creatives.containers.Email.alphabeticallyOption": "Alphabetically",
512
+ "creatives.containers.Email.assetUploadFailed": "Image uploaded failed",
513
+ "creatives.containers.Email.blankTemplate": "Blank template",
514
+ "creatives.containers.Email.cancel": "Cancel",
515
+ "creatives.containers.Email.createHeading": "Create email template",
516
+ "creatives.containers.Email.delete": "Delete",
517
+ "creatives.containers.Email.deleteLanguage": "Delete language",
518
+ "creatives.containers.Email.deleteLanguageConfirmation": "Do you really want to delete this language?",
519
+ "creatives.containers.Email.deleteVersion": "Delete version",
520
+ "creatives.containers.Email.deleteVersionConfirm": "Do you really want to delete this version?",
521
+ "creatives.containers.Email.dupicateVersion": "Duplicate version",
522
+ "creatives.containers.Email.editButton": "Edit",
523
+ "creatives.containers.Email.editHeading": "Edit email template",
524
+ "creatives.containers.Email.edmSwitchAcceptText": "I understand that this cannot be reversed.",
525
+ "creatives.containers.Email.edmSwtichMessage": "On choosing Edit as HTML, easy email design options such as drag-drop will be no longer available for this template.",
526
+ "creatives.containers.Email.emailCreateSuccess": "Email template created successfully",
527
+ "creatives.containers.Email.emailEditSuccess": "Email template edited successfully",
528
+ "creatives.containers.Email.emailPreview": "Email preview",
529
+ "creatives.containers.Email.emailSubject": "Enter email subject",
530
+ "creatives.containers.Email.emailSubjectNotEmplty": "Email subject cannot be empty.",
531
+ "creatives.containers.Email.emailText": "Email",
532
+ "creatives.containers.Email.imageSelection": "Image selection",
533
+ "creatives.containers.Email.insertImage": "Insert image",
534
+ "creatives.containers.Email.markAsFinal": "Mark as final",
535
+ "creatives.containers.Email.moreThanFiveVersionNotAllowed": "You cant have more that 5 versions",
536
+ "creatives.containers.Email.mostRecent": "Most recent",
537
+ "creatives.containers.Email.mostRecentOption": "Most recent",
538
+ "creatives.containers.Email.preview": "Preview",
539
+ "creatives.containers.Email.previewButton": "Preview",
540
+ "creatives.containers.Email.saveTemplateLoader": "Saving template...",
541
+ "creatives.containers.Email.searchText": "Search",
542
+ "creatives.containers.Email.select": "Select",
543
+ "creatives.containers.Email.selectButton": "Select",
544
+ "creatives.containers.Email.somethingWentWrong": "Something went wrong!!",
545
+ "creatives.containers.Email.sortBy": "Sort by",
546
+ "creatives.containers.Email.sortby": "Sort by",
547
+ "creatives.containers.Email.switchEditor": "Switch editor",
548
+ "creatives.containers.Email.templateLoader": "Loading template...",
549
+ "creatives.containers.Email.templateMarkedFinalSuccess": "Template marked as final successfully",
550
+ "creatives.containers.Email.templateNameNotEmpty": "Please provide a template name",
551
+ "creatives.containers.Email.templateNamePlaceholder": "Enter template name",
552
+ "creatives.containers.Email.upload": "Upload image",
553
+ "creatives.containers.Email.uploadSizeError": "File size too large to upload. Please upload file upto 5 MB",
554
+ "creatives.containers.Email.uploadedAt": "Modified",
555
+ "creatives.containers.Email.uploadedBy": "Uploaded by",
556
+ "creatives.containers.Email.uploadingImage": "Uploading image...",
557
+ "creatives.containers.Email.yes": "Yes",
558
+ "creatives.containers.Line.Create.Campaigns": "Campaigns",
559
+ "creatives.containers.Line.Create.Creatives": "Creatives",
560
+ "creatives.containers.Line.Create.Image": "Image",
561
+ "creatives.containers.Line.Create.ImageUploadLabel": "Upload image",
562
+ "creatives.containers.Line.Create.Tags": "Tags",
563
+ "creatives.containers.Line.Create.accountId": "Account id",
564
+ "creatives.containers.Line.Create.alertMessage": "Alert",
565
+ "creatives.containers.Line.Create.button1": "Button 1",
566
+ "creatives.containers.Line.Create.button2": "Button 2",
567
+ "creatives.containers.Line.Create.cancel": "Cancel",
568
+ "creatives.containers.Line.Create.discardChanges": "Discard changes",
569
+ "creatives.containers.Line.Create.enterTemplateName": "Enter template name",
570
+ "creatives.containers.Line.Create.enterTemplateNameImportant": "Enter template name*",
571
+ "creatives.containers.Line.Create.gettingTemplate": "Getting template details...",
572
+ "creatives.containers.Line.Create.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
573
+ "creatives.containers.Line.Create.image": "Please upload an image to proceed",
574
+ "creatives.containers.Line.Create.inputLineTemplateContent": "Please enter the message content",
575
+ "creatives.containers.Line.Create.line": "Line",
576
+ "creatives.containers.Line.Create.maxUploadFileSize": "Max file size acceptable is 5mb",
577
+ "creatives.containers.Line.Create.maximumCharacterLengthExceeds": "Maximum characters length exceeds",
578
+ "creatives.containers.Line.Create.message": "Message",
579
+ "creatives.containers.Line.Create.messageHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
580
+ "creatives.containers.Line.Create.messageLabel": "Message*",
581
+ "creatives.containers.Line.Create.messageTitleWithUnsupportedTag": "Please check the message content for unsupported/missing tags",
582
+ "creatives.containers.Line.Create.nameAndDescription": "Name and description",
583
+ "creatives.containers.Line.Create.pleaseUploadImage": "Please upload Image",
584
+ "creatives.containers.Line.Create.save": "Save",
585
+ "creatives.containers.Line.Create.savingTemplate": "Saving Template...",
586
+ "creatives.containers.Line.Create.selectLineAccount": "Select line account",
587
+ "creatives.containers.Line.Create.selectLineTemplate": "Select line template",
588
+ "creatives.containers.Line.Create.somethingWentWrong": "Something went wrong!!",
589
+ "creatives.containers.Line.Create.template": "Template",
590
+ "creatives.containers.Line.Create.templateCantEmpty": "Template name cannot be empty",
591
+ "creatives.containers.Line.Create.templateCreatedSuccessfully": "Line template created successfully",
592
+ "creatives.containers.Line.Create.templateEditedSuccessfully": "Line template edited successfully",
593
+ "creatives.containers.Line.Create.templateNameNotEmpty": "Please provide a template name",
594
+ "creatives.containers.Line.Create.templateNotConfigured": "template not configured,",
595
+ "creatives.containers.Line.Create.title": "Title",
596
+ "creatives.containers.Line.Create.titleHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
597
+ "creatives.containers.Line.Create.titleLabel": "Title*",
598
+ "creatives.containers.Line.Create.titleNameInvalid": "Please enter the message title",
599
+ "creatives.containers.Line.Create.uploadFileSizeError": "File size cannot be more than 1mb",
600
+ "creatives.containers.Line.Create.uploadImage": "Upload image",
601
+ "creatives.containers.Line.Create.uploadSuccess": "Photo uploaded successfully",
602
+ "creatives.containers.Line.Create.uploadingImage": "Uploading image...",
603
+ "creatives.containers.Line.Create.valueCantEmpty": "value cannot be empty.",
604
+ "creatives.containers.Line.Edit.Campaigns": "Campaigns",
605
+ "creatives.containers.Line.Edit.Creatives": "Creatives",
606
+ "creatives.containers.Line.Edit.Image": "Image",
607
+ "creatives.containers.Line.Edit.ImageUploadLabel": "Upload image",
608
+ "creatives.containers.Line.Edit.Tags": "Tags",
609
+ "creatives.containers.Line.Edit.alertMessage": "Alert",
610
+ "creatives.containers.Line.Edit.androidNotConfigured": "Android template is not configured. Save without Android template",
611
+ "creatives.containers.Line.Edit.button1": "Button 1",
612
+ "creatives.containers.Line.Edit.button2": "Button 2",
613
+ "creatives.containers.Line.Edit.cancel": "Cancel",
614
+ "creatives.containers.Line.Edit.discardChanges": "Discard changes",
615
+ "creatives.containers.Line.Edit.enterTemplateName": "Enter template name",
616
+ "creatives.containers.Line.Edit.enterTemplateNameImportant": "Enter template name*",
617
+ "creatives.containers.Line.Edit.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
618
+ "creatives.containers.Line.Edit.inputLineTemplateContent": "Please enter the message content",
619
+ "creatives.containers.Line.Edit.iosNotConfigured": "IOS template is not configured, Save without IOS template",
620
+ "creatives.containers.Line.Edit.maxUploadFileSize": "Max file size acceptable is 5mb",
621
+ "creatives.containers.Line.Edit.message": "Message",
622
+ "creatives.containers.Line.Edit.messageHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
623
+ "creatives.containers.Line.Edit.messageLabel": "Message*",
624
+ "creatives.containers.Line.Edit.messageTitleWithUnsupportedTag": "Please check the message content for unsupported/missing tags",
625
+ "creatives.containers.Line.Edit.mobilePush": "Mobile Push",
626
+ "creatives.containers.Line.Edit.nameAndDescription": "Name and description",
627
+ "creatives.containers.Line.Edit.pleaseUploadImage": "Please upload image",
628
+ "creatives.containers.Line.Edit.save": "Save",
629
+ "creatives.containers.Line.Edit.savingTemplate": "Saving Template...",
630
+ "creatives.containers.Line.Edit.selectLineTemplate": "Select line template",
631
+ "creatives.containers.Line.Edit.somethingWentWrong": "Something went wrong!!",
632
+ "creatives.containers.Line.Edit.template": "Template",
633
+ "creatives.containers.Line.Edit.templateCantEmpty": "Template name cannot be empty",
634
+ "creatives.containers.Line.Edit.templateEditedSuccessfully": "Line template edited successfully",
635
+ "creatives.containers.Line.Edit.templateNameNotEmpty": "Please provide a template name",
636
+ "creatives.containers.Line.Edit.templateNotConfigured": "template not configured,",
637
+ "creatives.containers.Line.Edit.title": "Title",
638
+ "creatives.containers.Line.Edit.titleHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
639
+ "creatives.containers.Line.Edit.titleLabel": "Title*",
640
+ "creatives.containers.Line.Edit.titleNameInvalid": "Please enter the message title",
641
+ "creatives.containers.Line.Edit.uploadFileSizeError": "File size cannot be more than 5mb",
642
+ "creatives.containers.Line.Edit.uploadImage": "Upload image",
643
+ "creatives.containers.Line.Edit.uploadingImage": "Uploading image...",
644
+ "creatives.containers.Line.Edit.valueCantEmpty": "value cannot be empty.",
645
+ "creatives.containers.Login.components.LoginForm.input.inputPasswordMandatory": "Please input your Password!",
646
+ "creatives.containers.Login.components.LoginForm.input.inputUsernameMandatory": "Please input your username!",
647
+ "creatives.containers.Login.components.LoginForm.input.invalidCredentials": "Invalid or Incorrect credentials!",
648
+ "creatives.containers.Login.components.LoginForm.input.loginButton": "Login",
649
+ "creatives.containers.Login.components.LoginForm.input.password": "Password",
650
+ "creatives.containers.Login.components.LoginForm.input.username": "Username or email",
651
+ "creatives.containers.Login.header": "This is login container change !",
652
+ "creatives.containers.Login.invalidCredential": "Invalid username or password",
653
+ "creatives.containers.Login.loginPage": "Login Page",
654
+ "creatives.containers.Login.pageTitle": "Login",
655
+ "creatives.containers.MobilePush.Create.Android": "Android",
656
+ "creatives.containers.MobilePush.Create.Campaigns": "Campaigns",
657
+ "creatives.containers.MobilePush.Create.Creatives": "Creatives",
658
+ "creatives.containers.MobilePush.Create.Image": "Image",
659
+ "creatives.containers.MobilePush.Create.ImageUploadLabel": "Upload image",
660
+ "creatives.containers.MobilePush.Create.Tags": "Tags",
661
+ "creatives.containers.MobilePush.Create.accountId": "Account id",
662
+ "creatives.containers.MobilePush.Create.addAnotherCTA": "Add another CTA",
663
+ "creatives.containers.MobilePush.Create.addPrimaryCTA": "Add primary CTA",
664
+ "creatives.containers.MobilePush.Create.addSecondaryCTA": "Add secondary CTA",
665
+ "creatives.containers.MobilePush.Create.alertMessage": "Alert",
666
+ "creatives.containers.MobilePush.Create.androidNotConfigured": "Android template is not configured. Save without Android template",
667
+ "creatives.containers.MobilePush.Create.button1": "Button 1",
668
+ "creatives.containers.MobilePush.Create.button2": "Button 2",
669
+ "creatives.containers.MobilePush.Create.cancel": "Cancel",
670
+ "creatives.containers.MobilePush.Create.cantCopyEmptyField": "Cannot copy empty field values.",
671
+ "creatives.containers.MobilePush.Create.copyFromAndroid": "Copy Title and Content From Android",
672
+ "creatives.containers.MobilePush.Create.copyFromIos": "Copy Title and Content From IOS",
673
+ "creatives.containers.MobilePush.Create.ctaLabelCantEmpty": "CTA label cannot be empty.",
674
+ "creatives.containers.MobilePush.Create.deleteSecondCTAFirst": "Please delete second secondary cta first",
675
+ "creatives.containers.MobilePush.Create.discardChanges": "Discard changes",
676
+ "creatives.containers.MobilePush.Create.enterCTALabel": "Enter CTA label here",
677
+ "creatives.containers.MobilePush.Create.enterTemplateName": "Enter template name",
678
+ "creatives.containers.MobilePush.Create.enterTemplateNameImportant": "Enter template name*",
679
+ "creatives.containers.MobilePush.Create.externalLink": "External link",
680
+ "creatives.containers.MobilePush.Create.externalLinkCantEmpty": "External link cannot be empty",
681
+ "creatives.containers.MobilePush.Create.gettingTemplate": "Getting template details...",
682
+ "creatives.containers.MobilePush.Create.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
683
+ "creatives.containers.MobilePush.Create.here": "here .",
684
+ "creatives.containers.MobilePush.Create.iOS": "iOS",
685
+ "creatives.containers.MobilePush.Create.inputMobilePushTemplateContent": "Please enter the message content",
686
+ "creatives.containers.MobilePush.Create.iosNotConfigured": "IOS template is not configured, Save without IOS template",
687
+ "creatives.containers.MobilePush.Create.maxUploadFileSize": "Max file size acceptable is 5mb",
688
+ "creatives.containers.MobilePush.Create.message": "Message",
689
+ "creatives.containers.MobilePush.Create.messageHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
690
+ "creatives.containers.MobilePush.Create.messageLabel": "Message*",
691
+ "creatives.containers.MobilePush.Create.messageTitleWithUnsupportedTag": "Please check the message content for unsupported/missing tags",
692
+ "creatives.containers.MobilePush.Create.mobilePush": "Mobile Push",
693
+ "creatives.containers.MobilePush.Create.nameAndDescription": "Name and description",
694
+ "creatives.containers.MobilePush.Create.pleaseInput": "Please input",
695
+ "creatives.containers.MobilePush.Create.pleaseUploadImage": "Please upload image",
696
+ "creatives.containers.MobilePush.Create.primaryCTA": "Primary CTA",
697
+ "creatives.containers.MobilePush.Create.save": "Save",
698
+ "creatives.containers.MobilePush.Create.savingTemplate": "Saving Template...",
699
+ "creatives.containers.MobilePush.Create.secondaryCTA": "Secondary CTA",
700
+ "creatives.containers.MobilePush.Create.selectADeeplink": "Select a deeplink",
701
+ "creatives.containers.MobilePush.Create.selectDeepLink": "Select deepLink",
702
+ "creatives.containers.MobilePush.Create.selectDeeplink": "Select deeplink",
703
+ "creatives.containers.MobilePush.Create.selectLinkType": "Please select link type",
704
+ "creatives.containers.MobilePush.Create.selectMobilePushAccount": "Select mobilepush account",
705
+ "creatives.containers.MobilePush.Create.selectMobilePushTemplate": "Select mobilepush template",
706
+ "creatives.containers.MobilePush.Create.somethingWentWrong": "Something went wrong!!",
707
+ "creatives.containers.MobilePush.Create.template": "Template",
708
+ "creatives.containers.MobilePush.Create.templateCantEmpty": "Template name cannot be empty",
709
+ "creatives.containers.MobilePush.Create.templateCreatedSuccessfully": "Mobile push template created successfully",
710
+ "creatives.containers.MobilePush.Create.templateNameNotEmpty": "Please provide a template name",
711
+ "creatives.containers.MobilePush.Create.templateNotConfigured": "template not configured,",
712
+ "creatives.containers.MobilePush.Create.title": "Title",
713
+ "creatives.containers.MobilePush.Create.titleHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
714
+ "creatives.containers.MobilePush.Create.titleLabel": "Title*",
715
+ "creatives.containers.MobilePush.Create.titleNameInvalid": "Please enter the message title",
716
+ "creatives.containers.MobilePush.Create.uploadFileSizeError": "File size cannot be more than 5mb",
717
+ "creatives.containers.MobilePush.Create.uploadImage": "Upload image",
718
+ "creatives.containers.MobilePush.Create.uploadingImage": "Uploading image...",
719
+ "creatives.containers.MobilePush.Create.valueCantEmpty": "value cannot be empty.",
720
+ "creatives.containers.MobilePush.Edit.Android": "Android",
721
+ "creatives.containers.MobilePush.Edit.Campaigns": "Campaigns",
722
+ "creatives.containers.MobilePush.Edit.Creatives": "Creatives",
723
+ "creatives.containers.MobilePush.Edit.Image": "Image",
724
+ "creatives.containers.MobilePush.Edit.ImageUploadLabel": "Upload image",
725
+ "creatives.containers.MobilePush.Edit.Tags": "Tags",
726
+ "creatives.containers.MobilePush.Edit.accountId": "Account id",
727
+ "creatives.containers.MobilePush.Edit.addAnotherCTA": "Add another CTA",
728
+ "creatives.containers.MobilePush.Edit.addPrimaryCTA": "Add primary CTA",
729
+ "creatives.containers.MobilePush.Edit.addSecondaryCTA": "Add secondary CTA",
730
+ "creatives.containers.MobilePush.Edit.alertMessage": "Alert",
731
+ "creatives.containers.MobilePush.Edit.androidTemplateNotConfigured": "Android template is not configured. Continue save?",
732
+ "creatives.containers.MobilePush.Edit.button1": "Button 1",
733
+ "creatives.containers.MobilePush.Edit.button2": "Button 2",
734
+ "creatives.containers.MobilePush.Edit.cancel": "Cancel",
735
+ "creatives.containers.MobilePush.Edit.cantCopyEmptyField": "Cannot copy empty field values.",
736
+ "creatives.containers.MobilePush.Edit.copyFromAndroid": "Copy Title and Content From Android",
737
+ "creatives.containers.MobilePush.Edit.copyFromIos": "Copy Title and Content From IOS",
738
+ "creatives.containers.MobilePush.Edit.ctaLabelCantEmpty": "CTA label cannot be empty.",
739
+ "creatives.containers.MobilePush.Edit.deleteSecondCTAFirst": "Please delete second Secondary cta First",
740
+ "creatives.containers.MobilePush.Edit.discardChanges": "Discard changes",
741
+ "creatives.containers.MobilePush.Edit.enterCTALabel": "Enter CTA label here",
742
+ "creatives.containers.MobilePush.Edit.enterTemplateName": "Enter template name",
743
+ "creatives.containers.MobilePush.Edit.enterTemplateNameImportant": "Enter template name*",
744
+ "creatives.containers.MobilePush.Edit.externalLink": "External link",
745
+ "creatives.containers.MobilePush.Edit.externalLinkCantEmpty": "External link cannot be empty.",
746
+ "creatives.containers.MobilePush.Edit.gettingTemplate": "Getting template details...",
747
+ "creatives.containers.MobilePush.Edit.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
748
+ "creatives.containers.MobilePush.Edit.iOS": "iOS",
749
+ "creatives.containers.MobilePush.Edit.inputMobilePushTemplateContent": "Please enter the message content",
750
+ "creatives.containers.MobilePush.Edit.iosTemplateNotConfigured": "IOS template is not configured, Save without IOS template",
751
+ "creatives.containers.MobilePush.Edit.maxUploadFileSize": "Max file size acceptable is 5mb",
752
+ "creatives.containers.MobilePush.Edit.message": "Message",
753
+ "creatives.containers.MobilePush.Edit.messageHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
754
+ "creatives.containers.MobilePush.Edit.messageLabel": "Message*",
755
+ "creatives.containers.MobilePush.Edit.messageTitleWithUnsupportedTag": "Please check the message content for unsupported/missing tags",
756
+ "creatives.containers.MobilePush.Edit.mobilePush": "Mobile Push",
757
+ "creatives.containers.MobilePush.Edit.nameAndDescription": "Name and description",
758
+ "creatives.containers.MobilePush.Edit.pleaseInput": "Please input",
759
+ "creatives.containers.MobilePush.Edit.pleaseUploadImage": "Please upload image",
760
+ "creatives.containers.MobilePush.Edit.primaryCTA": "Primary CTA",
761
+ "creatives.containers.MobilePush.Edit.save": "Save",
762
+ "creatives.containers.MobilePush.Edit.savingTemplate": "Saving Template...",
763
+ "creatives.containers.MobilePush.Edit.secondaryCTA": "Secondary CTA",
764
+ "creatives.containers.MobilePush.Edit.selectADeeplink": "Select a deeplink",
765
+ "creatives.containers.MobilePush.Edit.selectDeepLink": "Select deepLink",
766
+ "creatives.containers.MobilePush.Edit.selectDeeplink": "Select deeplink",
767
+ "creatives.containers.MobilePush.Edit.selectLinkType": "Please select link type",
768
+ "creatives.containers.MobilePush.Edit.selectMobilePushAccount": "Select mobilepush account",
769
+ "creatives.containers.MobilePush.Edit.selectMobilePushTemplate": "Select mobilepush template",
770
+ "creatives.containers.MobilePush.Edit.somethingWentWrong": "Something went wrong!!",
771
+ "creatives.containers.MobilePush.Edit.template": "Template",
772
+ "creatives.containers.MobilePush.Edit.templateCantEmpty": "Template name cannot be empty",
773
+ "creatives.containers.MobilePush.Edit.templateEditedSuccessfully": "MOBILEPUSH template edited successfully",
774
+ "creatives.containers.MobilePush.Edit.templateNameNotEmpty": "Please provide a template name",
775
+ "creatives.containers.MobilePush.Edit.templateNotConfigured": "template not configured,",
776
+ "creatives.containers.MobilePush.Edit.title": "Title",
777
+ "creatives.containers.MobilePush.Edit.titleHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
778
+ "creatives.containers.MobilePush.Edit.titleLabel": "Title*",
779
+ "creatives.containers.MobilePush.Edit.titleNameInvalid": "Please enter the message title",
780
+ "creatives.containers.MobilePush.Edit.uploadFileSizeError": "File size cannot be more than 5mb",
781
+ "creatives.containers.MobilePush.Edit.uploadImage": "Upload image",
782
+ "creatives.containers.MobilePush.Edit.uploadingImage": "Uploading image...",
783
+ "creatives.containers.MobilePush.Edit.valueCantEmpty": "value cannot be empty.",
784
+ "creatives.containers.TagList.header": "This is TagList container !",
785
+ "creatives.containers.Templates.Ebill": "Ebill",
786
+ "creatives.containers.Templates.Email": "Email",
787
+ "creatives.containers.Templates.Gallery": "Gallery",
788
+ "creatives.containers.Templates.Line": "Line",
789
+ "creatives.containers.Templates.MobilePush": "MobilePush",
790
+ "creatives.containers.Templates.Sms": "Sms",
791
+ "creatives.containers.Templates.all": "All",
792
+ "creatives.containers.Templates.alphabeticallyOption": "Alphabetically",
793
+ "creatives.containers.Templates.blankTemplate": "Blank template",
794
+ "creatives.containers.Templates.campaigns": "Campaigns",
795
+ "creatives.containers.Templates.cancelText": "Cancel",
796
+ "creatives.containers.Templates.createEmailActionButton": "Create email",
797
+ "creatives.containers.Templates.createSmsActionButton": "Create SMS",
798
+ "creatives.containers.Templates.creatives": "Creatives",
799
+ "creatives.containers.Templates.deleteButton": "Delete",
800
+ "creatives.containers.Templates.deletedSuccssfully": "Template deleted successfully",
801
+ "creatives.containers.Templates.deletionFailed": "Template deletion failed",
802
+ "creatives.containers.Templates.descriptionTemplates": "Description of templates",
803
+ "creatives.containers.Templates.duplicateButton": "Duplicate",
804
+ "creatives.containers.Templates.ebillChannel": "Ebill",
805
+ "creatives.containers.Templates.ebillChannelTemplatesHeader": "Select Ebill Template",
806
+ "creatives.containers.Templates.ebillHeader": "Ebill",
807
+ "creatives.containers.Templates.ebillPreview": "Ebill preview",
808
+ "creatives.containers.Templates.editButton": "Edit",
809
+ "creatives.containers.Templates.emailChannel": "Email",
810
+ "creatives.containers.Templates.emailChannelTemplatesHeader": "Select Email Template",
811
+ "creatives.containers.Templates.emailHeader": "Email",
812
+ "creatives.containers.Templates.emailPreview": "Email preview",
813
+ "creatives.containers.Templates.gettingAllTemplates": "Getting all templates...",
814
+ "creatives.containers.Templates.header": "This is Templates container !",
815
+ "creatives.containers.Templates.image": "Image",
816
+ "creatives.containers.Templates.imageTemplate": "Image",
817
+ "creatives.containers.Templates.invalidUploadFileError": "File cannot be uploaded. Please select another file with valid file format.",
818
+ "creatives.containers.Templates.layoutSelection": "Select layout",
819
+ "creatives.containers.Templates.lineChannel": "Line",
820
+ "creatives.containers.Templates.lineChannelTemplatesHeader": "Select Line Template",
821
+ "creatives.containers.Templates.lineHeader": "Line",
822
+ "creatives.containers.Templates.loadingEDMTemplates": "Loading EDM Templates",
823
+ "creatives.containers.Templates.mapTemplate": "Map template",
824
+ "creatives.containers.Templates.mobilePushChannel": "Mobile push",
825
+ "creatives.containers.Templates.mobilePushChannelTemplatesHeader": "Select Mobile push Template",
826
+ "creatives.containers.Templates.mobilepush": "mobilepush",
827
+ "creatives.containers.Templates.mobilepushHeader": "Mobile Push",
828
+ "creatives.containers.Templates.mostRecentOption": "Most recent",
829
+ "creatives.containers.Templates.newTemplate": "New template",
830
+ "creatives.containers.Templates.noAccountMessage": "Please select an account to proceed",
831
+ "creatives.containers.Templates.noTemplatesMessage": "No templates available",
832
+ "creatives.containers.Templates.preview": "Preview",
833
+ "creatives.containers.Templates.previewButton": "Preview",
834
+ "creatives.containers.Templates.previewGenerateText": "Preview is being generated...",
835
+ "creatives.containers.Templates.searchText": "Search",
836
+ "creatives.containers.Templates.selectAccount": "Select account",
837
+ "creatives.containers.Templates.selectButton": "Select",
838
+ "creatives.containers.Templates.selectDefaultButton": "Select",
839
+ "creatives.containers.Templates.selectSmsHeader": "Select SMS template",
840
+ "creatives.containers.Templates.selectWechatHeader": "Select WECHAT template",
841
+ "creatives.containers.Templates.smsChannel": "Sms",
842
+ "creatives.containers.Templates.smsChannelTemplatesHeader": "SMS templates",
843
+ "creatives.containers.Templates.smsHeader": "SMS",
844
+ "creatives.containers.Templates.somethingWentWrong": "Something went wrong!!",
845
+ "creatives.containers.Templates.sortBy": "Sort by",
846
+ "creatives.containers.Templates.templateDeleteConfirm": "Are you sure you want to delete this template?",
847
+ "creatives.containers.Templates.templateDeleteSuccess": "SMS template deleted successfully",
848
+ "creatives.containers.Templates.templateDuplicateSuccess": "Template duplicated successfully",
849
+ "creatives.containers.Templates.templateSelection": "Template selection",
850
+ "creatives.containers.Templates.text": "Text",
851
+ "creatives.containers.Templates.textTemplate": "Text",
852
+ "creatives.containers.Templates.type": "Type",
853
+ "creatives.containers.Templates.unMapButton": "Unmap",
854
+ "creatives.containers.Templates.uploadFile": "Upload File",
855
+ "creatives.containers.Templates.uploadedAt": "Modified",
856
+ "creatives.containers.Templates.uploadedBy": "Uploaded by",
857
+ "creatives.containers.Templates.uploadingFile": "Uploading file",
858
+ "creatives.containers.Templates.useEditor": "Use Editor",
859
+ "creatives.containers.Templates.weChatRichmediaTemplate": "Richmedia template",
860
+ "creatives.containers.Templates.wechat": "wechat",
861
+ "creatives.containers.Templates.wechatAccountNotConfigured": "Selected wechat account is not configured to create wechat templates",
862
+ "creatives.containers.Templates.wechatChannelTemplatesHeader": "WECHAT templates",
863
+ "creatives.containers.Templates.wechatHeader": "WECHAT",
864
+ "creatives.containers.Templates.yesText": "Yes",
865
+ "creatives.containers.Templates.zipUploadFailed": "Failed to upload zip file",
866
+ "creatives.containers.View.descriptionView": "Description of View",
867
+ "creatives.containers.View.header": "This is View container !",
868
+ "creatives.containers.View.view": "View",
869
+ "creatives.containers.WeChat.accountId": "Account id",
870
+ "creatives.containers.WeChat.alertMessage": "Alert",
871
+ "creatives.containers.WeChat.cancel": "Cancel",
872
+ "creatives.containers.WeChat.discard": "Discard",
873
+ "creatives.containers.WeChat.gettingTemplateData": "Getting template data..",
874
+ "creatives.containers.WeChat.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
875
+ "creatives.containers.WeChat.goBackTemporaryConfirmation": "Do you really want to go back? All your temporary changes will be lost!",
876
+ "creatives.containers.WeChat.header": "WeChat",
877
+ "creatives.containers.WeChat.invalidContent": "has invalid content.",
878
+ "creatives.containers.WeChat.isInternalUrl": "Is this internal url",
879
+ "creatives.containers.WeChat.link": "Link",
880
+ "creatives.containers.WeChat.linkCantEmpty": "Link cannot be empty",
881
+ "creatives.containers.WeChat.loadingEDMTemplates": "loading EDM Templates",
882
+ "creatives.containers.WeChat.mapTemplateFooter": "Footer",
883
+ "creatives.containers.WeChat.mapTemplateHeader": "Header",
884
+ "creatives.containers.WeChat.miniWeChatPlaceholder": "E.g. ab4892njkl4l2op",
885
+ "creatives.containers.WeChat.miniWechatIdError": "Mini-Program ID cannot be empty",
886
+ "creatives.containers.WeChat.miniWechatIdInductive": "Unique alpha numeric code for this specific app",
887
+ "creatives.containers.WeChat.miniWechatIdLabel": "Mini-Program ID",
888
+ "creatives.containers.WeChat.pagePathError": "Page path cannot be empty.",
889
+ "creatives.containers.WeChat.pagePathInductive": "User will be redirected to the Mini-Program path provided here",
890
+ "creatives.containers.WeChat.pagePathLabel": "Page path",
891
+ "creatives.containers.WeChat.pagePathPlaceholder": "E.g. pages/user/profile",
892
+ "creatives.containers.WeChat.redirectOptionMiniProgram": "Mini-Program",
893
+ "creatives.containers.WeChat.redirectOptionURL": "URL",
894
+ "creatives.containers.WeChat.redirectOptionsHeadingValue": "URL or Mini-Program",
895
+ "creatives.containers.WeChat.redirectionOptionError": "Please select a redirect option",
896
+ "creatives.containers.WeChat.save": "Save",
897
+ "creatives.containers.WeChat.selectWechatAccount": "Select wechat account",
898
+ "creatives.containers.WeChat.selectWechatTemplate": "Select wechat template",
899
+ "creatives.containers.WeChat.somethingWentWrong": "Something went wrong!!",
900
+ "creatives.containers.WeChat.tagsLabel": "Tags",
901
+ "creatives.containers.WeChat.template": "Template",
902
+ "creatives.containers.WeChat.templateMapping": "Template mapping",
903
+ "creatives.containers.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
904
+ "creatives.containers.WeChat.wechatEditSuccess": "WeChat template edited successfully",
905
+ "creatives.containers.WechatWrapper.mapTemplate": "Map template",
906
+ "creatives.containers.WechatWrapper.mapTemplateSubtext": "Used for announcing offers and transaction related information",
907
+ "creatives.containers.WechatWrapper.richMedia": "Richmedia template",
908
+ "creatives.containers.WechatWrapper.richMediaSubtext": "Used for creating rich content using text, image, location and audio",
909
+ "creatives.containers.WechatWrapper.templateType": "Which type of template you want to create?",
910
+ "creatives.containersV2.Assets.Gallery.addImages": "Add images",
911
+ "creatives.containersV2.Assets.Gallery.alphabetically": "Alphabetically",
912
+ "creatives.containersV2.Assets.Gallery.assetDeleteFailed": "Image deletion failed.",
913
+ "creatives.containersV2.Assets.Gallery.assetDeleteSuccess": "Image deleted successfully.",
914
+ "creatives.containersV2.Assets.Gallery.assetUploadFailed": "Image uploaded failed",
915
+ "creatives.containersV2.Assets.Gallery.assetUploadSuccess": "Image uploaded successfully",
916
+ "creatives.containersV2.Assets.Gallery.backToGallery": "Back to image gallery",
917
+ "creatives.containersV2.Assets.Gallery.delete": "Delete",
918
+ "creatives.containersV2.Assets.Gallery.dimensions": "Dimensions",
919
+ "creatives.containersV2.Assets.Gallery.gallery": "Gallery",
920
+ "creatives.containersV2.Assets.Gallery.imagePreview": "Image preview",
921
+ "creatives.containersV2.Assets.Gallery.lastUpdated": "Last update {on} by {by}",
922
+ "creatives.containersV2.Assets.Gallery.loadingGallery": "Loading gallery...",
923
+ "creatives.containersV2.Assets.Gallery.mostRecent": "Most recent",
924
+ "creatives.containersV2.Assets.Gallery.noAssetMessage": "No image is uploaded",
925
+ "creatives.containersV2.Assets.Gallery.noTemplatesFound": "No templates found",
926
+ "creatives.containersV2.Assets.Gallery.preview": "Preview",
927
+ "creatives.containersV2.Assets.Gallery.search": "Search",
928
+ "creatives.containersV2.Assets.Gallery.select": "Select",
929
+ "creatives.containersV2.Assets.Gallery.size": "Size",
930
+ "creatives.containersV2.Assets.Gallery.sortby": "Sort by",
931
+ "creatives.containersV2.Assets.Gallery.upload": "Upload image",
932
+ "creatives.containersV2.Assets.Gallery.uploadedAt": "Uploaded at",
933
+ "creatives.containersV2.Assets.Gallery.uploadedBy": "Uploaded by",
934
+ "creatives.containersV2.Assets.Gallery.uploadedOn": "Uploaded on",
935
+ "creatives.containersV2.BeeEditor.addLabel": "Add label",
936
+ "creatives.containersV2.BeeEditor.cta": "CTA",
937
+ "creatives.containersV2.BeeEditor.customRows": "Create new row",
938
+ "creatives.containersV2.BeeEditor.done": "Done",
939
+ "creatives.containersV2.BeeEditor.footer": "Footer",
940
+ "creatives.containersV2.BeeEditor.header": "Header",
941
+ "creatives.containersV2.BeeEditor.others": "Others",
942
+ "creatives.containersV2.BeeEditor.rowCreationFailureMgs": "Error in row creation",
943
+ "creatives.containersV2.BeeEditor.rowCreationSuccessMgs": "Row created successfully",
944
+ "creatives.containersV2.BeeEditor.rowName": "Row name",
945
+ "creatives.containersV2.BeeEditor.rowPlaceHolder": "Enter Row name",
946
+ "creatives.containersV2.BeeEditor.select": "Select",
947
+ "creatives.containersV2.BeeEditor.selectCategoyPlaceholder": "Select category",
948
+ "creatives.containersV2.BeeEditor.socialPlatform": "Social platform",
949
+ "creatives.containersV2.CallTask.addNewCallTask": "Add new call task",
950
+ "creatives.containersV2.CallTask.callTaskInfo": "Call Tasks are message sent to store staff. The messages are displayed on the Point of Sale (POS) machines for store staff to take action.",
951
+ "creatives.containersV2.CallTask.callTaskTitleIllustartion": "Create a Call Task {templateText}",
952
+ "creatives.containersV2.CallTask.newCallTaskTemplate": "New Call Task {templateText}",
953
+ "creatives.containersV2.CallTask.newMessage": "New message",
954
+ "creatives.containersV2.CallTask.template": "template",
955
+ "creatives.containersV2.Cap.Workbench": "WorkBench",
956
+ "creatives.containersV2.Cap.campaigns": "Campaigns",
957
+ "creatives.containersV2.Cap.creatives": "Creatives",
958
+ "creatives.containersV2.Cap.creativesDashboard": "Creatives",
959
+ "creatives.containersV2.Cap.ebill": "Ebill",
960
+ "creatives.containersV2.Cap.email": "Email",
961
+ "creatives.containersV2.Cap.gallery": "Gallery",
962
+ "creatives.containersV2.Cap.journeys": "Journeys",
963
+ "creatives.containersV2.Cap.loyalty": "Loyalty",
964
+ "creatives.containersV2.Cap.memberCare": "Member Care",
965
+ "creatives.containersV2.Cap.sms": "SMS",
966
+ "creatives.containersV2.Cap.storeCare": "Store Care",
967
+ "creatives.containersV2.Cap.storePerformance": "Store Performance",
968
+ "creatives.containersV2.Cap.wechat": "WeChat",
969
+ "creatives.containersV2.CapFacebookPreview.audienceNetworkInstreamVideo": "Audience network instream video",
970
+ "creatives.containersV2.CapFacebookPreview.audienceNetworkInstreamVideoMobile": "Audience network instream video mobile",
971
+ "creatives.containersV2.CapFacebookPreview.audienceNetworkOutstreamVideo": "Audience network outstream video",
972
+ "creatives.containersV2.CapFacebookPreview.audienceNetworkRewardedVideo": "Audience network rewarded video",
973
+ "creatives.containersV2.CapFacebookPreview.desktopFeedStandard": "Desktop feed standard",
974
+ "creatives.containersV2.CapFacebookPreview.facebookStoryMobile": "Facebook story mobile",
975
+ "creatives.containersV2.CapFacebookPreview.generatePreview": "Generate preview",
976
+ "creatives.containersV2.CapFacebookPreview.generatePreviewDisableToolTip": "Looks like either all the mandatory fields are not filled or there is no new change",
977
+ "creatives.containersV2.CapFacebookPreview.generatePreviewError": "Error in generating preview",
978
+ "creatives.containersV2.CapFacebookPreview.instagramExploreContextual": "Instagram explore contextual",
979
+ "creatives.containersV2.CapFacebookPreview.instagramExploreImmersive": "Instagram explore immersive",
980
+ "creatives.containersV2.CapFacebookPreview.instagramStandard": "Instagram standard",
981
+ "creatives.containersV2.CapFacebookPreview.instagramStory": "Instagram story",
982
+ "creatives.containersV2.CapFacebookPreview.instantArticleStandard": "Instant article standard",
983
+ "creatives.containersV2.CapFacebookPreview.instreamVideoDesktop": "Instream video desktop",
984
+ "creatives.containersV2.CapFacebookPreview.instreamVideoMobile": "Instream video mobile",
985
+ "creatives.containersV2.CapFacebookPreview.marketplaceDesktop": "Marketplace desktop",
986
+ "creatives.containersV2.CapFacebookPreview.marketplaceMobile": "Marketplace mobile",
987
+ "creatives.containersV2.CapFacebookPreview.messengerMobileInboxMedia": "Messenger mobile inbox media",
988
+ "creatives.containersV2.CapFacebookPreview.mobileBanner": "Mobile banner",
989
+ "creatives.containersV2.CapFacebookPreview.mobileFeedBasic": "Mobile feed basic",
990
+ "creatives.containersV2.CapFacebookPreview.mobileFeedStandard": "Mobile feed standard",
991
+ "creatives.containersV2.CapFacebookPreview.mobileFullwidth": "Mobile fullwidth",
992
+ "creatives.containersV2.CapFacebookPreview.mobileInterstitial": "Mobile interstitial",
993
+ "creatives.containersV2.CapFacebookPreview.mobileMediumRectangle": "Mobile medium rectangle",
994
+ "creatives.containersV2.CapFacebookPreview.mobileNative": "Mobile native",
995
+ "creatives.containersV2.CapFacebookPreview.previewAdDesc": "Please add Media, Primary text & Website link & click on “Generate preview” to view preview.",
996
+ "creatives.containersV2.CapFacebookPreview.previewBasedonAdPlacement": "Preview based on ad placement",
997
+ "creatives.containersV2.CapFacebookPreview.refreshPreview": "Refresh preview",
998
+ "creatives.containersV2.CapFacebookPreview.rightColumnStandard": "Right column standard",
999
+ "creatives.containersV2.CapFacebookPreview.suggestedVideoDesktop": "Suggested video desktop",
1000
+ "creatives.containersV2.CapFacebookPreview.suggestedVideoMobile": "Suggested video mobile",
1001
+ "creatives.containersV2.CapFacebookPreview.videoNotePreview": "Facebook may take time to upload the video. Please try Refreshing.",
1002
+ "creatives.containersV2.CapFacebookPreview.watchFeedMobile": "Watch feed mobile",
1003
+ "creatives.containersV2.Create.addLabel": "Add label",
1004
+ "creatives.containersV2.Create.alertMessage": "Alert",
1005
+ "creatives.containersV2.Create.cancelButton": "Cancel",
1006
+ "creatives.containersV2.Create.characters": "characters",
1007
+ "creatives.containersV2.Create.creativeName": "Creative name",
1008
+ "creatives.containersV2.Create.deleteLabel": "Delete",
1009
+ "creatives.containersV2.Create.discardChangesButton": "Discard changes",
1010
+ "creatives.containersV2.Create.duplicateLabel": "Duplicate",
1011
+ "creatives.containersV2.Create.emptyTemplateErrorMessage": "Please provide a template name",
1012
+ "creatives.containersV2.Create.goBackTemporaryChangesLost": "Do you really want to go back? All your temporary changes will be lost!",
1013
+ "creatives.containersV2.Create.invalidTags": "Invalid tags",
1014
+ "creatives.containersV2.Create.markFinalVersionLabel": "Mark as final",
1015
+ "creatives.containersV2.Create.messageLabel": "Message",
1016
+ "creatives.containersV2.Create.newVersionLabel": "New version",
1017
+ "creatives.containersV2.Create.renameLabel": "Rename",
1018
+ "creatives.containersV2.Create.saveButton": "Save",
1019
+ "creatives.containersV2.Create.saveTemplateLoader": "Saving template...",
1020
+ "creatives.containersV2.Create.sms": "SMS",
1021
+ "creatives.containersV2.Create.smsEditorPlaceholder": "Please enter the message content",
1022
+ "creatives.containersV2.Create.smsTemplateCreatedSuccess": "SMS Template Created Successfully",
1023
+ "creatives.containersV2.Create.somethingWentWrong": "Something went wrong!!",
1024
+ "creatives.containersV2.Create.tagsErrorMessage": "\\"Optout\\" label is mandatory. Please add \\"Optout\\" label to this message",
1025
+ "creatives.containersV2.Create.tagsLabel": "Tags",
1026
+ "creatives.containersV2.Create.templateMarkedSuccessfully": "Template Marked as Final Successfully",
1027
+ "creatives.containersV2.Create.templateNamePlaceHolder": "Enter template name",
1028
+ "creatives.containersV2.Create.templateNotValid": "Template data is not valid",
1029
+ "creatives.containersV2.Create.unicodeErrorMessage": "Please check this if you want to use Unicode characters",
1030
+ "creatives.containersV2.Create.unicodeLabel": "Allow unicode characters",
1031
+ "creatives.containersV2.Create.validationError": "Validation error",
1032
+ "creatives.containersV2.Create.versionLabel": "Version",
1033
+ "creatives.containersV2.Creatives.UploadSMStemplates": "Upload SMS templates",
1034
+ "creatives.containersV2.Creatives.addContent": "Add content",
1035
+ "creatives.containersV2.Creatives.alphabeticallyOption": "Alphabetically",
1036
+ "creatives.containersV2.Creatives.blankTemplate": "Blank template",
1037
+ "creatives.containersV2.Creatives.by": "by",
1038
+ "creatives.containersV2.Creatives.campaigns": "Campaigns",
1039
+ "creatives.containersV2.Creatives.cancelText": "Cancel",
1040
+ "creatives.containersV2.Creatives.continue": "Continue",
1041
+ "creatives.containersV2.Creatives.createEmailActionButton": "Create email",
1042
+ "creatives.containersV2.Creatives.createMessageContent": "New {channel}",
1043
+ "creatives.containersV2.Creatives.createNewActionButton": "Create new",
1044
+ "creatives.containersV2.Creatives.createSmsActionButton": "Create SMS",
1045
+ "creatives.containersV2.Creatives.creativeTemplates": "Creative templates",
1046
+ "creatives.containersV2.Creatives.creativeTemplatesDesc": "Select only one creative",
1047
+ "creatives.containersV2.Creatives.creatives": "Creatives",
1048
+ "creatives.containersV2.Creatives.creativesTemplatesDiscard": "Discard",
1049
+ "creatives.containersV2.Creatives.creativesTemplatesEdit": "Edit",
1050
+ "creatives.containersV2.Creatives.creativesTemplatesEditName": "Edit name",
1051
+ "creatives.containersV2.Creatives.creativesTemplatesSave": "Done",
1052
+ "creatives.containersV2.Creatives.creativesTemplatesSaveFullMode": "Create",
1053
+ "creatives.containersV2.Creatives.creativesTemplatesUpdate": "Update",
1054
+ "creatives.containersV2.Creatives.deleteButton": "Delete",
1055
+ "creatives.containersV2.Creatives.deletedSuccssfully": "Template deleted successfully",
1056
+ "creatives.containersV2.Creatives.deletionFailed": "Template deletion failed",
1057
+ "creatives.containersV2.Creatives.duplicateButton": "Duplicate",
1058
+ "creatives.containersV2.Creatives.ebillHeader": "Ebill",
1059
+ "creatives.containersV2.Creatives.ebillPreview": "Ebill preview",
1060
+ "creatives.containersV2.Creatives.editButton": "Edit",
1061
+ "creatives.containersV2.Creatives.editMessageContent": "Edit {channel}",
1062
+ "creatives.containersV2.Creatives.emailHeader": "Email",
1063
+ "creatives.containersV2.Creatives.emailPreview": "Email preview",
1064
+ "creatives.containersV2.Creatives.gettingAllTemplates": "Getting all templates...",
1065
+ "creatives.containersV2.Creatives.header": "This is EmailWrapper container !",
1066
+ "creatives.containersV2.Creatives.imageTemplate": "Image",
1067
+ "creatives.containersV2.Creatives.invalidUploadFileError": "File cannot be uploaded. Please select another file with valid file format.",
1068
+ "creatives.containersV2.Creatives.lastUpdated": "Last updated: {date} by {user}",
1069
+ "creatives.containersV2.Creatives.layoutSelection": "Select layout",
1070
+ "creatives.containersV2.Creatives.learnTips": "Learn tips to get approved",
1071
+ "creatives.containersV2.Creatives.lineHeader": "Line",
1072
+ "creatives.containersV2.Creatives.mapTemplate": "Map template",
1073
+ "creatives.containersV2.Creatives.mobilepushHeader": "Mobile Push",
1074
+ "creatives.containersV2.Creatives.mostRecentOption": "Most recent",
1075
+ "creatives.containersV2.Creatives.newTemplate": "New template",
1076
+ "creatives.containersV2.Creatives.noAccountMessage": "Please select an account to proceed",
1077
+ "creatives.containersV2.Creatives.noTemplatesMessage": "No templates available",
1078
+ "creatives.containersV2.Creatives.preview": "Preview",
1079
+ "creatives.containersV2.Creatives.previewButton": "Preview",
1080
+ "creatives.containersV2.Creatives.previewGenerateText": "Preview is being generated...",
1081
+ "creatives.containersV2.Creatives.rcsCreative": "RCS creative",
1082
+ "creatives.containersV2.Creatives.searchText": "Search",
1083
+ "creatives.containersV2.Creatives.selectAccount": "Select account",
1084
+ "creatives.containersV2.Creatives.selectButton": "Select",
1085
+ "creatives.containersV2.Creatives.selectDefaultButton": "Select",
1086
+ "creatives.containersV2.Creatives.selectSmsHeader": "Select SMS template",
1087
+ "creatives.containersV2.Creatives.selectTemplate": "Select template",
1088
+ "creatives.containersV2.Creatives.selectWechatHeader": "Select WECHAT template",
1089
+ "creatives.containersV2.Creatives.smsChannelTemplatesHeader": "SMS templates",
1090
+ "creatives.containersV2.Creatives.smsHeader": "SMS",
1091
+ "creatives.containersV2.Creatives.somethingWentWrong": "Something went wrong!!",
1092
+ "creatives.containersV2.Creatives.sortBy": "Sort by",
1093
+ "creatives.containersV2.Creatives.templateDeleteConfirm": "Are you sure you want to delete this template?",
1094
+ "creatives.containersV2.Creatives.templateDeleteSuccess": "SMS template deleted successfully",
1095
+ "creatives.containersV2.Creatives.templateDuplicateSuccess": "Template duplicated successfully",
1096
+ "creatives.containersV2.Creatives.templateNameEmpty": "Template name cannot be empty",
1097
+ "creatives.containersV2.Creatives.templateSelection": "Template selection",
1098
+ "creatives.containersV2.Creatives.textTemplate": "Text",
1099
+ "creatives.containersV2.Creatives.unMapButton": "Unmap",
1100
+ "creatives.containersV2.Creatives.uploadFile": "Upload file",
1101
+ "creatives.containersV2.Creatives.uploadedAt": "Modified",
1102
+ "creatives.containersV2.Creatives.uploadedBy": "Uploaded by",
1103
+ "creatives.containersV2.Creatives.uploadingFile": "Uploading file",
1104
+ "creatives.containersV2.Creatives.useEditor": "Use editor",
1105
+ "creatives.containersV2.Creatives.weChatRichmediaTemplate": "Richmedia template",
1106
+ "creatives.containersV2.Creatives.wechatAccountNotConfigured": "Selected wechat account is not configured to create wechat templates",
1107
+ "creatives.containersV2.Creatives.wechatChannelTemplatesHeader": "WECHAT templates",
1108
+ "creatives.containersV2.Creatives.wechatHeader": "WECHAT",
1109
+ "creatives.containersV2.Creatives.whatsappOverview": "WhatsApp template overview",
1110
+ "creatives.containersV2.Creatives.whatsappTemplate": "WhatsApp template",
1111
+ "creatives.containersV2.Creatives.yesText": "Yes",
1112
+ "creatives.containersV2.Creatives.zipUploadFailed": "Failed to upload zip file",
1113
+ "creatives.containersV2.Dashboard.header": "Dashboard",
1114
+ "creatives.containersV2.Ebill.Cancel": "Cancel",
1115
+ "creatives.containersV2.Ebill.Preview": "Preview",
1116
+ "creatives.containersV2.Ebill.Save": "Save",
1117
+ "creatives.containersV2.Ebill.campaigns": "Campaigns",
1118
+ "creatives.containersV2.Ebill.creatives": "Creatives",
1119
+ "creatives.containersV2.Ebill.ebill": "Ebill",
1120
+ "creatives.containersV2.Ebill.ebillCreateSuccess": "Ebill template created successfully",
1121
+ "creatives.containersV2.Ebill.ebillEditSuccess": "Ebill template edited successfully",
1122
+ "creatives.containersV2.Ebill.ebillPreview": "Ebill preview",
1123
+ "creatives.containersV2.Ebill.emptyTemplateErrorMessage": "Please provide a template name",
1124
+ "creatives.containersV2.Ebill.enterTemplateName": "Enter template name",
1125
+ "creatives.containersV2.Ebill.loading": "Loading..",
1126
+ "creatives.containersV2.Ebill.newVersionLabel": "New version",
1127
+ "creatives.containersV2.Ebill.somethingWentWrong": "Something went wrong!!",
1128
+ "creatives.containersV2.Ebill.tagsErrorMessage": "Please check the message content for unsupported/missing tags",
1129
+ "creatives.containersV2.Ebill.tagsLabel": "Tags",
1130
+ "creatives.containersV2.Ebill.templateDataNotValid": "Template data is not valid",
1131
+ "creatives.containersV2.Edit.addLabel": "Add label",
1132
+ "creatives.containersV2.Edit.alertMessage": "Alert",
1133
+ "creatives.containersV2.Edit.cancelButton": "Cancel",
1134
+ "creatives.containersV2.Edit.characters": "characters",
1135
+ "creatives.containersV2.Edit.creativeName": "Creative name",
1136
+ "creatives.containersV2.Edit.deleteLabel": "Delete",
1137
+ "creatives.containersV2.Edit.discardChangesButton": "Discard changes",
1138
+ "creatives.containersV2.Edit.duplicateLabel": "Duplicate",
1139
+ "creatives.containersV2.Edit.emptyTemplateErrorMessage": "Please provide a template name",
1140
+ "creatives.containersV2.Edit.getTemplateDetailsLoader": "Getting template details...",
1141
+ "creatives.containersV2.Edit.goBackTemporaryChangesLost": "Do you really want to go back? All your temporary changes will be lost!",
1142
+ "creatives.containersV2.Edit.header": "This is Edit container !",
1143
+ "creatives.containersV2.Edit.markFinalVersionLabel": "Mark as final",
1144
+ "creatives.containersV2.Edit.messageLabel": "Message",
1145
+ "creatives.containersV2.Edit.newVersionLabel": "New version",
1146
+ "creatives.containersV2.Edit.renameLabel": "Rename",
1147
+ "creatives.containersV2.Edit.saveButton": "Save",
1148
+ "creatives.containersV2.Edit.saveTemplateLoader": "Saving template...",
1149
+ "creatives.containersV2.Edit.sms": "SMS",
1150
+ "creatives.containersV2.Edit.smsEditorPlaceholder": "Please enter the message content",
1151
+ "creatives.containersV2.Edit.somethingWentWrong": "Something went wrong!!",
1152
+ "creatives.containersV2.Edit.tagsErrorMessage": "\\"Optout\\" label is mandatory. Please add \\"Optout\\" label to this message",
1153
+ "creatives.containersV2.Edit.tagsLabel": "Tags",
1154
+ "creatives.containersV2.Edit.templateEditedSuccessfully": "SMS Template Edited Successfully",
1155
+ "creatives.containersV2.Edit.templateMarkedSuccessfully": "Template Marked as Final Successfully",
1156
+ "creatives.containersV2.Edit.templateNamePlaceHolder": "Enter template name",
1157
+ "creatives.containersV2.Edit.unicodeErrorMessage": "Please check this if you want to use unicode characters",
1158
+ "creatives.containersV2.Edit.unicodeLabel": "Allow unicode characters",
1159
+ "creatives.containersV2.Edit.versionLabel": "Version",
1160
+ "creatives.containersV2.Email.Campaigns": "Campaigns",
1161
+ "creatives.containersV2.Email.Cancel": "Cancel",
1162
+ "creatives.containersV2.Email.Creatives": "Creatives",
1163
+ "creatives.containersV2.Email.Preview": "Preview",
1164
+ "creatives.containersV2.Email.Save": "Save",
1165
+ "creatives.containersV2.Email.Subject": "Subject",
1166
+ "creatives.containersV2.Email.Tags": "Tags",
1167
+ "creatives.containersV2.Email.addLabel": "Add label",
1168
+ "creatives.containersV2.Email.alert": "Alert",
1169
+ "creatives.containersV2.Email.alertMessage": "Alert",
1170
+ "creatives.containersV2.Email.alphabetically": "Alphabetically",
1171
+ "creatives.containersV2.Email.alphabeticallyOption": "Alphabetically",
1172
+ "creatives.containersV2.Email.assetUploadFailed": "Image uploaded failed",
1173
+ "creatives.containersV2.Email.blankTemplate": "Blank template",
1174
+ "creatives.containersV2.Email.cancel": "Cancel",
1175
+ "creatives.containersV2.Email.copyPrimaryLanguage": "Copy Primary Language",
1176
+ "creatives.containersV2.Email.createHeading": "Create email template",
1177
+ "creatives.containersV2.Email.delete": "Delete",
1178
+ "creatives.containersV2.Email.deleteLanguage": "Delete language",
1179
+ "creatives.containersV2.Email.deleteLanguageConfirmation": "Do you really want to delete this language?",
1180
+ "creatives.containersV2.Email.deleteVersion": "Delete version",
1181
+ "creatives.containersV2.Email.deleteVersionConfirmation": "Do you really want to delete this version?",
1182
+ "creatives.containersV2.Email.dupicateVersion": "Duplicate version",
1183
+ "creatives.containersV2.Email.editButton": "Edit",
1184
+ "creatives.containersV2.Email.editHeading": "Edit email template",
1185
+ "creatives.containersV2.Email.edmSwitchAcceptText": "I understand that this cannot be reversed.",
1186
+ "creatives.containersV2.Email.edmSwtichMessage": "On choosing Edit as HTML, easy email design options such as drag-drop will be no longer available for this template.",
1187
+ "creatives.containersV2.Email.emailCreateSuccess": "Email template created successfully",
1188
+ "creatives.containersV2.Email.emailEditSuccess": "Email template edited successfully",
1189
+ "creatives.containersV2.Email.emailPreview": "Email preview",
1190
+ "creatives.containersV2.Email.emailSubject": "Enter email subject",
1191
+ "creatives.containersV2.Email.emailSubjectNotEmplty": "Email subject cannot be empty.",
1192
+ "creatives.containersV2.Email.emailText": "Email",
1193
+ "creatives.containersV2.Email.english": "English",
1194
+ "creatives.containersV2.Email.goBackTemporaryChangesLost": "Do you really want to go back? All your temporary changes will be lost!",
1195
+ "creatives.containersV2.Email.h3emailPreview": "Email preview",
1196
+ "creatives.containersV2.Email.h3imageSelection": "Image selection",
1197
+ "creatives.containersV2.Email.imageSelection": "Image selection",
1198
+ "creatives.containersV2.Email.invalidFileMessage": "Invalid file type added! Please Give a proper zip/html file",
1199
+ "creatives.containersV2.Email.kmage": "Image",
1200
+ "creatives.containersV2.Email.loadingImage": "Loading images...",
1201
+ "creatives.containersV2.Email.markAsFinal": "Mark as final",
1202
+ "creatives.containersV2.Email.moreThanFiveVersionNotAllowed": "You cant have more that 5 versions",
1203
+ "creatives.containersV2.Email.mostRecent": "Most recent",
1204
+ "creatives.containersV2.Email.mostRecentOption": "Most recent",
1205
+ "creatives.containersV2.Email.newLanguage": "New Language",
1206
+ "creatives.containersV2.Email.newVersion": "New Version",
1207
+ "creatives.containersV2.Email.noImgInGallery": "No images in the gallery. Please upload images in gallery.",
1208
+ "creatives.containersV2.Email.preview": "Preview",
1209
+ "creatives.containersV2.Email.previewButton": "Preview",
1210
+ "creatives.containersV2.Email.saveTemplateLoader": "Saving template...",
1211
+ "creatives.containersV2.Email.searchText": "Search",
1212
+ "creatives.containersV2.Email.select": "Select",
1213
+ "creatives.containersV2.Email.selectButton": "Select",
1214
+ "creatives.containersV2.Email.somethingWentWrong": "Something went wrong!!",
1215
+ "creatives.containersV2.Email.sortBy": "Sort by",
1216
+ "creatives.containersV2.Email.sortby": "Sort by",
1217
+ "creatives.containersV2.Email.switchEditor": "Switch editor",
1218
+ "creatives.containersV2.Email.templateLoader": "Loading template...",
1219
+ "creatives.containersV2.Email.templateMarkedFinalSuccess": "Template marked as final successfully",
1220
+ "creatives.containersV2.Email.templateNameNotEmpty": "Please provide a template name",
1221
+ "creatives.containersV2.Email.templateNamePlaceholder": "Enter template name",
1222
+ "creatives.containersV2.Email.testMessage": "Test message",
1223
+ "creatives.containersV2.Email.upload": "Upload image",
1224
+ "creatives.containersV2.Email.uploadSizeError": "File size too large to upload. Please upload file upto 5 MB",
1225
+ "creatives.containersV2.Email.uploadedAt": "Modified",
1226
+ "creatives.containersV2.Email.uploadedBy": "Uploaded by",
1227
+ "creatives.containersV2.Email.uploadingImage": "Uploading image...",
1228
+ "creatives.containersV2.Email.useEditor": "Use Editor",
1229
+ "creatives.containersV2.Email.versionMessage": "Version",
1230
+ "creatives.containersV2.Email.versionOneMessage": "Version 1",
1231
+ "creatives.containersV2.Email.yes": "Yes",
1232
+ "creatives.containersV2.EmailWrapper.createMode": "How do you want to create ?",
1233
+ "creatives.containersV2.EmailWrapper.creativeName": "Creative name",
1234
+ "creatives.containersV2.EmailWrapper.emptyTemplateName": "Please enter template name.",
1235
+ "creatives.containersV2.EmailWrapper.header": "This is EmailWrapper container !",
1236
+ "creatives.containersV2.EmailWrapper.invalidUploadFileDesc": "Please select another file with valid file format.",
1237
+ "creatives.containersV2.EmailWrapper.invalidUploadFileError": "File cannot be uploaded.",
1238
+ "creatives.containersV2.EmailWrapper.invalidUploadFileError2": "File upload failed",
1239
+ "creatives.containersV2.EmailWrapper.invalidUploadFileErrorDesc2": "Please select another file with valid file contents",
1240
+ "creatives.containersV2.EmailWrapper.invalidUploadFileErrorDesc3": "Please select another file with valid file size less than 5MB",
1241
+ "creatives.containersV2.EmailWrapper.upload": "Upload",
1242
+ "creatives.containersV2.EmailWrapper.useEditor": "Create using editor",
1243
+ "creatives.containersV2.EmailWrapper.useEditorDesc": "Create using in-built template",
1244
+ "creatives.containersV2.EmailWrapper.zipUpload": "Upload zip file",
1245
+ "creatives.containersV2.EmailWrapper.zipUploadDesc": "Upload compressed file (Zip) containing HTML & images",
1246
+ "creatives.containersV2.FTP.addColumn": "Add column",
1247
+ "creatives.containersV2.FTP.addLabel": "Add Labels",
1248
+ "creatives.containersV2.FTP.change": "Change",
1249
+ "creatives.containersV2.FTP.configureCsv": "Configure CSV",
1250
+ "creatives.containersV2.FTP.customerID": "Customer ID",
1251
+ "creatives.containersV2.FTP.dataPreview": "Data Preview",
1252
+ "creatives.containersV2.FTP.done": "Done",
1253
+ "creatives.containersV2.FTP.ftpServer": "FTP Server",
1254
+ "creatives.containersV2.FTP.ftpServerDesc": "Select the FTP server to send the message data. To add another FTP location,",
1255
+ "creatives.containersV2.FTP.manageFTPSettings": "manage FTP settings",
1256
+ "creatives.containersV2.FTP.messageContent": "Message Content",
1257
+ "creatives.containersV2.FTP.messageHeader": "Message",
1258
+ "creatives.containersV2.FTP.optional": "(optional)",
1259
+ "creatives.containersV2.FTP.selectFtpServerDesc": "FTP not configured for this org. Please add FTP server",
1260
+ "creatives.containersV2.FTP.selectTag": "Select tag",
1261
+ "creatives.containersV2.FTP.unsupportedTagsValidationError": "Unsupported tags: {unsupportedTags}. Please remove them from this message.",
1262
+ "creatives.containersV2.Facebook.Advertisement.AdvertisementType": "How you would like your ad to look?",
1263
+ "creatives.containersV2.Facebook.Advertisement.addCard": "Add card",
1264
+ "creatives.containersV2.Facebook.Advertisement.callToAction": "Call to action",
1265
+ "creatives.containersV2.Facebook.Advertisement.callToActionMandatoryError": "call to action is mandatory for Video Media. Please select call to action",
1266
+ "creatives.containersV2.Facebook.Advertisement.carouselDesc": "Create an Ad with 2 or more scrollable images or videos",
1267
+ "creatives.containersV2.Facebook.Advertisement.carouselTitle": "Carousel",
1268
+ "creatives.containersV2.Facebook.Advertisement.clickButtonLabel": "Continue",
1269
+ "creatives.containersV2.Facebook.Advertisement.createNotification": "Facebook template created successfully",
1270
+ "creatives.containersV2.Facebook.Advertisement.creativeName": "Creative name",
1271
+ "creatives.containersV2.Facebook.Advertisement.creativesTemplatesEditName": "Edit name",
1272
+ "creatives.containersV2.Facebook.Advertisement.deleteTooltipLabel": "Delete",
1273
+ "creatives.containersV2.Facebook.Advertisement.displayLink": "Display link",
1274
+ "creatives.containersV2.Facebook.Advertisement.displayLinkPlaceHolder": "Enter the link that you want to show on your ad",
1275
+ "creatives.containersV2.Facebook.Advertisement.doneButtonLabel": "Done",
1276
+ "creatives.containersV2.Facebook.Advertisement.duplicateTooltipLabel": "Duplicate",
1277
+ "creatives.containersV2.Facebook.Advertisement.editNotification": "Facebook template updated successfully",
1278
+ "creatives.containersV2.Facebook.Advertisement.facebookPage": "Facebook page",
1279
+ "creatives.containersV2.Facebook.Advertisement.image": "Image",
1280
+ "creatives.containersV2.Facebook.Advertisement.imageVideoDesc": "Create an Ad with one image or video",
1281
+ "creatives.containersV2.Facebook.Advertisement.imageVideoTitle": "Single image or video",
1282
+ "creatives.containersV2.Facebook.Advertisement.inValidUrliErrorMessage": "Website link is not valid",
1283
+ "creatives.containersV2.Facebook.Advertisement.linkDesc": "Link description",
1284
+ "creatives.containersV2.Facebook.Advertisement.linkDescPlaceHolder": "Enter the additional details",
1285
+ "creatives.containersV2.Facebook.Advertisement.linkDescToolTip": "Description over 40 characters may be cut off.",
1286
+ "creatives.containersV2.Facebook.Advertisement.linkHeadline": "Link headline",
1287
+ "creatives.containersV2.Facebook.Advertisement.linkHeadlinePlaceHolder": "Enter the short headline",
1288
+ "creatives.containersV2.Facebook.Advertisement.linkHeadlineToolTip": "Headlines over 40 characters may be cut off.",
1289
+ "creatives.containersV2.Facebook.Advertisement.newFacebookCreatives": "New Facebook creative",
1290
+ "creatives.containersV2.Facebook.Advertisement.optional": "(Optional)",
1291
+ "creatives.containersV2.Facebook.Advertisement.primaryText": "Primary text",
1292
+ "creatives.containersV2.Facebook.Advertisement.primaryTextPlaceholder": "Enter text that clearly tells people about what you are promoting",
1293
+ "creatives.containersV2.Facebook.Advertisement.primaryTextToolTip": "Facebook recommends 125 characters or fewer.",
1294
+ "creatives.containersV2.Facebook.Advertisement.shiftLeftTooltipLabel": "Shift Left",
1295
+ "creatives.containersV2.Facebook.Advertisement.shiftRightTooltipLabel": "Shift Right",
1296
+ "creatives.containersV2.Facebook.Advertisement.video_slideshow": "Video",
1297
+ "creatives.containersV2.Facebook.Advertisement.webSiteLink": "Website link",
1298
+ "creatives.containersV2.Facebook.Advertisement.websiteLinkPlaceHolder": "Enter the URL for the web page that you want people to visit",
1299
+ "creatives.containersV2.Facebook.adManagerHeading": "Where do you want to create your Facebook ad creative?",
1300
+ "creatives.containersV2.Facebook.capAdManagerHeading": "You can create Facebook ads creative in Engage+ Facebook ad Manager.",
1301
+ "creatives.containersV2.Facebook.capFbAdManager": "Capillary Facebook ad manager",
1302
+ "creatives.containersV2.Facebook.facebookDisableinfo": "Please integrate Facebook page ID & page name to enable this option.",
1303
+ "creatives.containersV2.Facebook.fbAccount": "Facebook Account",
1304
+ "creatives.containersV2.Facebook.fbAdCampaignSetDetailsDescription": "Once this message is approved, a campaign and an ad set will be created on Facebook Ad Manager with the same name as the current campaign and message name.",
1305
+ "creatives.containersV2.Facebook.fbAdCampaignSetDetailsTitle": "Ad campaign & ad set details",
1306
+ "creatives.containersV2.Facebook.fbAdManager": "Facebook ad manager",
1307
+ "creatives.containersV2.Facebook.fbAdSetName": "Ad set name",
1308
+ "creatives.containersV2.Facebook.fbAdsDescription": "Proceed with empty content block & you can create ads in Facebook Ad Manager under the mentioned ad set.",
1309
+ "creatives.containersV2.Facebook.fbAdsDetailOne": "Only FB campaign & ad set creation is supported in Engage+",
1310
+ "creatives.containersV2.Facebook.fbAdsDetailThree": "You can create ads later in Facebook ad manager.",
1311
+ "creatives.containersV2.Facebook.fbAdsDetailTwo": "You can proceed with an empty content block",
1312
+ "creatives.containersV2.Facebook.fbAdsTitle": "Facebook ads",
1313
+ "creatives.containersV2.Facebook.fbAudience": "Audience",
1314
+ "creatives.containersV2.Facebook.fbCampaignName": "FB Campaign name",
1315
+ "creatives.containersV2.Facebook.fbChange": "Change",
1316
+ "creatives.containersV2.Facebook.fbContinue": "Continue",
1317
+ "creatives.containersV2.Facebook.fbMarketingObjective": "FB Marketing objective",
1318
+ "creatives.containersV2.Facebook.fbMarketingObjectiveAppInstallTitle": "App Installs",
1319
+ "creatives.containersV2.Facebook.fbMarketingObjectiveAppInstallsDescription": "Get more people to install your app.",
1320
+ "creatives.containersV2.Facebook.fbMarketingObjectiveAwareness": "Awareness",
1321
+ "creatives.containersV2.Facebook.fbMarketingObjectiveBrandAwarenessDescription": "Increase awareness for your brand by reaching people who are more likely to be interested in it.",
1322
+ "creatives.containersV2.Facebook.fbMarketingObjectiveBrandAwarenessTitle": "Brand awareness",
1323
+ "creatives.containersV2.Facebook.fbMarketingObjectiveCatalogSalesDescription": "Create ads that automatically show items from your catalog based on your target audience.",
1324
+ "creatives.containersV2.Facebook.fbMarketingObjectiveCatalogSalesTitle": "Catalog Sales",
1325
+ "creatives.containersV2.Facebook.fbMarketingObjectiveConsideration": "Consideration",
1326
+ "creatives.containersV2.Facebook.fbMarketingObjectiveConversionsDescription": "Drive valuable actions on your website, app or in Messenger.",
1327
+ "creatives.containersV2.Facebook.fbMarketingObjectiveConversionsTitle": "Conversions",
1328
+ "creatives.containersV2.Facebook.fbMarketingObjectiveEngagementDescription": "Get more post engagements",
1329
+ "creatives.containersV2.Facebook.fbMarketingObjectiveEngagementTitle": "Engagement",
1330
+ "creatives.containersV2.Facebook.fbMarketingObjectiveLeadGenerationDescription": "Drive more sales leads, such as email addresses, from people interested in your brand or business.",
1331
+ "creatives.containersV2.Facebook.fbMarketingObjectiveLeadGenerationTitle": "Lead Generation",
1332
+ "creatives.containersV2.Facebook.fbMarketingObjectiveMessagesDescription": "Get more people to send messages to your business in Messenger.",
1333
+ "creatives.containersV2.Facebook.fbMarketingObjectiveMessagesTitle": "Messages",
1334
+ "creatives.containersV2.Facebook.fbMarketingObjectiveReachDescription": "Show your ad to the maximum number of people.",
1335
+ "creatives.containersV2.Facebook.fbMarketingObjectiveReachTitle": "Reach",
1336
+ "creatives.containersV2.Facebook.fbMarketingObjectiveStoreTrafficDescription": "Drive visits to your physical stores by showing ads to people who are nearby.",
1337
+ "creatives.containersV2.Facebook.fbMarketingObjectiveStoreTrafficTitle": "Store Traffic",
1338
+ "creatives.containersV2.Facebook.fbMarketingObjectiveTrafficDescription": "Send more people to a destination such as a website, app or Messenger conversation.",
1339
+ "creatives.containersV2.Facebook.fbMarketingObjectiveTrafficTitle": "Traffic",
1340
+ "creatives.containersV2.Facebook.fbMarketingObjectiveVideoViewsDescription": "Get more people to view your video content.",
1341
+ "creatives.containersV2.Facebook.fbMarketingObjectiveVideoViewsTitle": "Video Views",
1342
+ "creatives.containersV2.Facebook.fbNoAudienceSelected": "Not Selected",
1343
+ "creatives.containersV2.FacebookMarketingObjective.fbMarketingObjectiveDescription": "Objectives help break reporting into a more granular level",
1344
+ "creatives.containersV2.FacebookMarketingObjective.fbMarketingObjectiveDone": "Done",
1345
+ "creatives.containersV2.FacebookMarketingObjective.fbMarketingObjectiveTitle": "Facebook Marketing Objective",
1346
+ "creatives.containersV2.LineContainer.addMessageButtonLabel": "Add message",
1347
+ "creatives.containersV2.LineContainer.cancelButtonLabel": "Cancel",
1348
+ "creatives.containersV2.LineContainer.changeAccount": "Change",
1349
+ "creatives.containersV2.LineContainer.chooseAccount": "Choose the account to send content",
1350
+ "creatives.containersV2.LineContainer.doneButtonLabel": "Done",
1351
+ "creatives.containersV2.LineContainer.lineAccount": "Line account",
1352
+ "creatives.containersV2.LineContainer.lineAccountHeading": "Line account",
1353
+ "creatives.containersV2.LineContainer.lineAccountHeadingChangeLabel": "Change",
1354
+ "creatives.containersV2.LineContainer.lineAccountLabel": "Line account",
1355
+ "creatives.containersV2.LineContainer.lineCreateNotification": "Line template created successfully",
1356
+ "creatives.containersV2.LineContainer.lineCreativeDescription": "Select any of the existing templates or create new",
1357
+ "creatives.containersV2.LineContainer.lineCreativeTitle": "Line creative",
1358
+ "creatives.containersV2.LineContainer.lineEditNotification": "Line template edited successfully",
1359
+ "creatives.containersV2.LineContainer.noAccountsPresentLine": "Line accounts are not setup for your brand",
1360
+ "creatives.containersV2.LineDrawer.gettingAllTemplates": "Getting all templates...",
1361
+ "creatives.containersV2.LineDrawer.noTemplatesFound": "No templates found",
1362
+ "creatives.containersV2.LineImage.dragAndDrop": "Drag and drop image here",
1363
+ "creatives.containersV2.LineImage.emptyTitleErrorMessage": "Template title can not be empty",
1364
+ "creatives.containersV2.LineImage.imageDimenstionDescription": "Dimensions: 300px x 400px Size: 10mb",
1365
+ "creatives.containersV2.LineImage.imageGallery": "Gallery",
1366
+ "creatives.containersV2.LineImage.imageReUpload": "Re upload",
1367
+ "creatives.containersV2.LineImage.lineImageIncorrectSize": "Please upload the image with correct type, size and dimension",
1368
+ "creatives.containersV2.LineImage.lineTemplateImage": "Line templates - Image",
1369
+ "creatives.containersV2.LineImage.or": "OR",
1370
+ "creatives.containersV2.LineImage.searchImages": "Search Images",
1371
+ "creatives.containersV2.LineImage.select": "Select",
1372
+ "creatives.containersV2.LineImage.textMessageAddLabel": "How do you want to upload the image?",
1373
+ "creatives.containersV2.LineImage.textMessageCreateNew": "Create new",
1374
+ "creatives.containersV2.LineImage.textMessageORLabel": "OR",
1375
+ "creatives.containersV2.LineImage.textMessageSelectTemplate": "Select template",
1376
+ "creatives.containersV2.LineImage.textMessageTitleLabel": "Template name",
1377
+ "creatives.containersV2.LineImage.textMessageTitlePlaceholder": "Enter template name",
1378
+ "creatives.containersV2.LineImage.uploadComputer": "Your computer",
1379
+ "creatives.containersV2.LineImage.uploadGallery": "Gallery",
1380
+ "creatives.containersV2.LineImage.uploadImageLabel": "Upload Image",
1381
+ "creatives.containersV2.LineImageCarousel.actionLabelPlaceholder": "Enter action label",
1382
+ "creatives.containersV2.LineImageCarousel.actionLabelTitle": "Action",
1383
+ "creatives.containersV2.LineImageCarousel.actionTypePlaceholder": "Select the action",
1384
+ "creatives.containersV2.LineImageCarousel.actionTypeTitle": "Action Type",
1385
+ "creatives.containersV2.LineImageCarousel.addCard": "Add card",
1386
+ "creatives.containersV2.LineImageCarousel.cardMessageDescription": "Use this to present content with multiple cards in carousel format, packed into a single chat bubble.",
1387
+ "creatives.containersV2.LineImageCarousel.cardMessageInfo": "If your message contains multiple cards, all cards will be as tall as the tallest card.",
1388
+ "creatives.containersV2.LineImageCarousel.cardMessageTitle": "Card Message",
1389
+ "creatives.containersV2.LineImageCarousel.deleteTooltipLabel": "Delete",
1390
+ "creatives.containersV2.LineImageCarousel.dragAndDrop": "Drag and drop image here",
1391
+ "creatives.containersV2.LineImageCarousel.duplicateTooltipLabel": "Duplicate",
1392
+ "creatives.containersV2.LineImageCarousel.emptyActionContentErrorMessage": "Action content can not be empty",
1393
+ "creatives.containersV2.LineImageCarousel.emptyAltTextErrorMessage": "Title can not be empty",
1394
+ "creatives.containersV2.LineImageCarousel.emptyTitleErrorMessage": "Template title can not be empty",
1395
+ "creatives.containersV2.LineImageCarousel.enterTextActionTypeTitle": "Enter text",
1396
+ "creatives.containersV2.LineImageCarousel.enterUriActionTypeTitle": "Enter url",
1397
+ "creatives.containersV2.LineImageCarousel.imageDimenstionDesc": "Format: JPEG, PNG Dimensions: 1024px x 1024px Size: 1 MB",
1398
+ "creatives.containersV2.LineImageCarousel.imageDimenstionDescription": "Format: JPEG, PNG Aspect ratio: 1:1 Dimensions: 1024px x 1024px Size: 1 MB",
1399
+ "creatives.containersV2.LineImageCarousel.imageGallery": "Gallery",
1400
+ "creatives.containersV2.LineImageCarousel.imageReUpload": "Re upload",
1401
+ "creatives.containersV2.LineImageCarousel.inValidUrliErrorMessage": "Action content uri is not valid",
1402
+ "creatives.containersV2.LineImageCarousel.lineImageIncorrectSize": "Please upload the image with correct type, size and dimension",
1403
+ "creatives.containersV2.LineImageCarousel.lineTemplateImage": "Line templates - Image",
1404
+ "creatives.containersV2.LineImageCarousel.maxActionLabelErrorMessage": "Action label can not be more than 12 character",
1405
+ "creatives.containersV2.LineImageCarousel.or": "OR",
1406
+ "creatives.containersV2.LineImageCarousel.searchImages": "Search Images",
1407
+ "creatives.containersV2.LineImageCarousel.select": "Select",
1408
+ "creatives.containersV2.LineImageCarousel.shiftLeftTooltipLabel": "Shift Left",
1409
+ "creatives.containersV2.LineImageCarousel.shiftRightTooltipLabel": "Shift Right",
1410
+ "creatives.containersV2.LineImageCarousel.textActionTypeTitle": "TEXT",
1411
+ "creatives.containersV2.LineImageCarousel.textMessageAddLabel": "How do you want to upload the \\"Card message\\"?",
1412
+ "creatives.containersV2.LineImageCarousel.textMessageCreateNew": "Create new",
1413
+ "creatives.containersV2.LineImageCarousel.textMessageORLabel": "OR",
1414
+ "creatives.containersV2.LineImageCarousel.textMessageSelectTemplate": "Select template",
1415
+ "creatives.containersV2.LineImageCarousel.textMessageTitleLabel": "Template name",
1416
+ "creatives.containersV2.LineImageCarousel.textMessageTitlePlaceholder": "Enter template name",
1417
+ "creatives.containersV2.LineImageCarousel.titleDescription": "The title is shown in push notifications and in the user's chat list.",
1418
+ "creatives.containersV2.LineImageCarousel.titleLabel": "Title",
1419
+ "creatives.containersV2.LineImageCarousel.uploadComputer": "Your computer",
1420
+ "creatives.containersV2.LineImageCarousel.uploadGallery": "Gallery",
1421
+ "creatives.containersV2.LineImageCarousel.uploadImageDescription": "The relevant image that complements the message context.",
1422
+ "creatives.containersV2.LineImageCarousel.uploadImageLabel": "Upload Image",
1423
+ "creatives.containersV2.LineImageCarousel.urlActionTypeTitle": "URL",
1424
+ "creatives.containersV2.LineImageMap.customAssetDesc": "Supported image sizes are 1040 × 520–2080 px for custom templates.",
1425
+ "creatives.containersV2.LineImageMap.dragAndDrop": "Drag and drop image here",
1426
+ "creatives.containersV2.LineImageMap.emptyAltTextErrorMessage": "Title can not be empty",
1427
+ "creatives.containersV2.LineImageMap.emptyTitleErrorMessage": "Template title can not be empty",
1428
+ "creatives.containersV2.LineImageMap.imageDimenstionDescription": "Dimensions: {dimensions} Size: Up to 10MB",
1429
+ "creatives.containersV2.LineImageMap.imageGallery": "Gallery",
1430
+ "creatives.containersV2.LineImageMap.imageReUpload": "Re upload",
1431
+ "creatives.containersV2.LineImageMap.lineImageMapIncorrectSize": "Please upload the image with correct type, size and dimension",
1432
+ "creatives.containersV2.LineImageMap.lineTemplateImageMap": "Line templates - ImageMap",
1433
+ "creatives.containersV2.LineImageMap.linkDescription": "Add URL link/s to different parts of uploaded image.",
1434
+ "creatives.containersV2.LineImageMap.linkUrl": "Enter URL link",
1435
+ "creatives.containersV2.LineImageMap.or": "OR",
1436
+ "creatives.containersV2.LineImageMap.richMsgDesc": "Use this to send out interactive content featuring images you've selected.",
1437
+ "creatives.containersV2.LineImageMap.richMsgHeader": "Rich message",
1438
+ "creatives.containersV2.LineImageMap.searchImageMaps": "Search ImageMaps",
1439
+ "creatives.containersV2.LineImageMap.select": "Select",
1440
+ "creatives.containersV2.LineImageMap.selectTemplateDesc": "Select a template and upload an image to preview your message",
1441
+ "creatives.containersV2.LineImageMap.squareAssetDesc": "Supported image sizes are 1040 × 1040 px for square templates.",
1442
+ "creatives.containersV2.LineImageMap.textMessageAddLabel": "How do you want to upload the image map?",
1443
+ "creatives.containersV2.LineImageMap.textMessageCreateNew": "Create new",
1444
+ "creatives.containersV2.LineImageMap.textMessageORLabel": "OR",
1445
+ "creatives.containersV2.LineImageMap.textMessageSelectTemplate": "Select template",
1446
+ "creatives.containersV2.LineImageMap.textMessageTitleLabel": "Template name",
1447
+ "creatives.containersV2.LineImageMap.textMessageTitlePlaceholder": "Enter template name",
1448
+ "creatives.containersV2.LineImageMap.titleDescription": "The title is shown in push notifications and in the user's chat list.",
1449
+ "creatives.containersV2.LineImageMap.titleLabel": "Title",
1450
+ "creatives.containersV2.LineImageMap.uploadComputer": "Your computer",
1451
+ "creatives.containersV2.LineImageMap.uploadGallery": "Gallery",
1452
+ "creatives.containersV2.LineImageMap.uploadImageDesc": "The relevant image that complements the message context.",
1453
+ "creatives.containersV2.LineImageMap.uploadImageLabel": "Upload Image",
1454
+ "creatives.containersV2.LineImageMap.validUrl": "Please enter a valid URL",
1455
+ "creatives.containersV2.LineSticker.changeStickerButtonLabel": "Change sticker",
1456
+ "creatives.containersV2.LineSticker.emptyTitleErrorMessage": "Template title can not be empty",
1457
+ "creatives.containersV2.LineSticker.selectStickersLabels": "Select stickers",
1458
+ "creatives.containersV2.LineSticker.stickerDrawerTitle": "Sticker",
1459
+ "creatives.containersV2.LineSticker.textMessageTitleLabel": "Template name",
1460
+ "creatives.containersV2.LineSticker.textMessageTitlePlaceholder": "Enter template name",
1461
+ "creatives.containersV2.LineText.addLabels": "Add labels",
1462
+ "creatives.containersV2.LineText.charCount": "Characters count:",
1463
+ "creatives.containersV2.LineText.emptyContentErrorMessage": "Template content can not be empty",
1464
+ "creatives.containersV2.LineText.emptyTitleErrorMessage": "Template title can not be empty",
1465
+ "creatives.containersV2.LineText.invalidTagError": "Please check the message content for unsupported/missing tags",
1466
+ "creatives.containersV2.LineText.limitExceededContentErrorMessage": "Template content can not be more than 1600",
1467
+ "creatives.containersV2.LineText.lineTemplateText": "Line templates - Text",
1468
+ "creatives.containersV2.LineText.searchText": "Search Text",
1469
+ "creatives.containersV2.LineText.select": "Select",
1470
+ "creatives.containersV2.LineText.textMessage": "Text message",
1471
+ "creatives.containersV2.LineText.textMessageAddLabel": "How do you want to add the text message?",
1472
+ "creatives.containersV2.LineText.textMessageCreateNew": "Create new",
1473
+ "creatives.containersV2.LineText.textMessageORLabel": "OR",
1474
+ "creatives.containersV2.LineText.textMessagePlaceholder": "Enter text message",
1475
+ "creatives.containersV2.LineText.textMessageSelectTemplate": "Select template",
1476
+ "creatives.containersV2.LineText.textMessageTitleLabel": "Template name",
1477
+ "creatives.containersV2.LineText.textMessageTitlePlaceholder": "Enter template name",
1478
+ "creatives.containersV2.LineVideo.actionButtonLabel": "Action button",
1479
+ "creatives.containersV2.LineVideo.actionLabelInductiveTitle": "Make your own action button label",
1480
+ "creatives.containersV2.LineVideo.actionLabelPlaceholder": "Enter Label",
1481
+ "creatives.containersV2.LineVideo.actionLabelTitle": "Action button label",
1482
+ "creatives.containersV2.LineVideo.actionUrlPlaceholder": "Enter URL",
1483
+ "creatives.containersV2.LineVideo.actionUrlTitle": "Link Url",
1484
+ "creatives.containersV2.LineVideo.display": "Display",
1485
+ "creatives.containersV2.LineVideo.dragAndDrop": "Drag and drop video here",
1486
+ "creatives.containersV2.LineVideo.emptyAltTextErrorMessage": "Title can not be empty",
1487
+ "creatives.containersV2.LineVideo.emptyLabelErrorMessage": "Action label can not be more empty",
1488
+ "creatives.containersV2.LineVideo.emptyTitleErrorMessage": "Template title can not be empty",
1489
+ "creatives.containersV2.LineVideo.emptyUrlErrorMessage": "Action URL can not be more empty",
1490
+ "creatives.containersV2.LineVideo.hide": "Hide",
1491
+ "creatives.containersV2.LineVideo.imageGallery": "Gallery",
1492
+ "creatives.containersV2.LineVideo.imageReUpload": "Re upload",
1493
+ "creatives.containersV2.LineVideo.inValidUrlErrorMessage": "Action url is not valid",
1494
+ "creatives.containersV2.LineVideo.lineTemplateImage": "Line templates - Image",
1495
+ "creatives.containersV2.LineVideo.lineVideoIncorrectSize": "This file format/size is not supported.",
1496
+ "creatives.containersV2.LineVideo.maxActionLabelErrorMessage": "Action label can not be more than 20 character",
1497
+ "creatives.containersV2.LineVideo.or": "OR",
1498
+ "creatives.containersV2.LineVideo.searchImages": "Search Images",
1499
+ "creatives.containersV2.LineVideo.select": "Select",
1500
+ "creatives.containersV2.LineVideo.textMessageAddLabel": "How do you want to upload the image?",
1501
+ "creatives.containersV2.LineVideo.textMessageCreateNew": "Create new",
1502
+ "creatives.containersV2.LineVideo.textMessageORLabel": "OR",
1503
+ "creatives.containersV2.LineVideo.textMessageSelectTemplate": "Select template",
1504
+ "creatives.containersV2.LineVideo.textMessageTitleLabel": "Template name",
1505
+ "creatives.containersV2.LineVideo.textMessageTitlePlaceholder": "Enter template name",
1506
+ "creatives.containersV2.LineVideo.titleDescription": "The title is shown in push notifications and in the user's chat list.",
1507
+ "creatives.containersV2.LineVideo.titleLabel": "Title",
1508
+ "creatives.containersV2.LineVideo.uploadComputer": "Your computer",
1509
+ "creatives.containersV2.LineVideo.uploadGallery": "Gallery",
1510
+ "creatives.containersV2.LineVideo.uploadVideoLabel": "Upload Video",
1511
+ "creatives.containersV2.LineVideo.videoFormatDescription": "File formats: MP4",
1512
+ "creatives.containersV2.LineVideo.videoSizeDescription": "File size: Up to 200 MB",
1513
+ "creatives.containersV2.LineWrapper.changeModalDescription": "The already added content for this card will be lost by changing the content tab.",
1514
+ "creatives.containersV2.LineWrapper.changeModalLabel": "Do you still want to make the changes to content tab",
1515
+ "creatives.containersV2.LineWrapper.changeModalTitle": "Changing content tab?",
1516
+ "creatives.containersV2.LineWrapper.flexLabel": "Card message",
1517
+ "creatives.containersV2.LineWrapper.imageLabel": "Image",
1518
+ "creatives.containersV2.LineWrapper.imagemapLabel": "Rich message",
1519
+ "creatives.containersV2.LineWrapper.modalDiscardChangesButtonLabel": "No",
1520
+ "creatives.containersV2.LineWrapper.modalSaveChangesButtonLabel": "Yes, change",
1521
+ "creatives.containersV2.LineWrapper.stickerLabel": "Sticker",
1522
+ "creatives.containersV2.LineWrapper.textLabel": "Text",
1523
+ "creatives.containersV2.LineWrapper.videoLabel": "Rich video message",
1524
+ "creatives.containersV2.Login.header": "This is login container change !",
1525
+ "creatives.containersV2.Login.invalidCredential": "Invalid username or password",
1526
+ "creatives.containersV2.Login.loginPage": "Login Page",
1527
+ "creatives.containersV2.Login.pageTitle": "Login",
1528
+ "creatives.containersV2.MobilePush.Create.Android": "Android",
1529
+ "creatives.containersV2.MobilePush.Create.Campaigns": "Campaigns",
1530
+ "creatives.containersV2.MobilePush.Create.Creatives": "Creatives",
1531
+ "creatives.containersV2.MobilePush.Create.Image": "Image",
1532
+ "creatives.containersV2.MobilePush.Create.ImageUploadLabel": "Upload image",
1533
+ "creatives.containersV2.MobilePush.Create.Tags": "Tags",
1534
+ "creatives.containersV2.MobilePush.Create.aPageWithMobileApp": "A page within mobile app",
1535
+ "creatives.containersV2.MobilePush.Create.accountId": "Account id",
1536
+ "creatives.containersV2.MobilePush.Create.addActionButtonsToNotification": "Add action buttons to notification",
1537
+ "creatives.containersV2.MobilePush.Create.addActionLinkToContent": "Add action link to content",
1538
+ "creatives.containersV2.MobilePush.Create.addActionLinkToContentDescription": "Add a hyperlink of the page which customer will be directed to",
1539
+ "creatives.containersV2.MobilePush.Create.addAnotherCTA": "Add another CTA",
1540
+ "creatives.containersV2.MobilePush.Create.addPrimaryButtonToNotification": "Add primary button to notification",
1541
+ "creatives.containersV2.MobilePush.Create.addPrimaryCTA": "Add primary CTA",
1542
+ "creatives.containersV2.MobilePush.Create.addSecondaryButtonToNotification": "Add secondary button to notification",
1543
+ "creatives.containersV2.MobilePush.Create.addSecondaryCTA": "Add secondary CTA",
1544
+ "creatives.containersV2.MobilePush.Create.alertMessage": "Alert",
1545
+ "creatives.containersV2.MobilePush.Create.anExternalWebPage": "An external web page",
1546
+ "creatives.containersV2.MobilePush.Create.androidNotConfigured": "Android template is not configured. Save without Android template",
1547
+ "creatives.containersV2.MobilePush.Create.button1": "Button 1",
1548
+ "creatives.containersV2.MobilePush.Create.button2": "Button 2",
1549
+ "creatives.containersV2.MobilePush.Create.buttonLabel": "Button label",
1550
+ "creatives.containersV2.MobilePush.Create.cancel": "Cancel",
1551
+ "creatives.containersV2.MobilePush.Create.cantCopyEmptyFieldValues": "Cannot copy empty field values.",
1552
+ "creatives.containersV2.MobilePush.Create.change": "change",
1553
+ "creatives.containersV2.MobilePush.Create.copyFromAndroid": "Copy Title and Content From Android",
1554
+ "creatives.containersV2.MobilePush.Create.copyFromIos": "Copy Title and Content From IOS",
1555
+ "creatives.containersV2.MobilePush.Create.coverImage": "Cover image",
1556
+ "creatives.containersV2.MobilePush.Create.coverImageDescription": "Maximum file size acceptable is 5 MB",
1557
+ "creatives.containersV2.MobilePush.Create.ctaLabelCantEmpty": "CTA label cannot be empty.",
1558
+ "creatives.containersV2.MobilePush.Create.deleteSecondCTAFirst": "Please delete second secondary cta first",
1559
+ "creatives.containersV2.MobilePush.Create.discardChanges": "Discard changes",
1560
+ "creatives.containersV2.MobilePush.Create.enterCTALabel": "Enter CTA label here",
1561
+ "creatives.containersV2.MobilePush.Create.enterTemplateName": "Enter template name",
1562
+ "creatives.containersV2.MobilePush.Create.enterTemplateNameImportant": "Enter template name*",
1563
+ "creatives.containersV2.MobilePush.Create.externalLink": "External link",
1564
+ "creatives.containersV2.MobilePush.Create.externalLinkCantEmpty": "External link cannot be empty",
1565
+ "creatives.containersV2.MobilePush.Create.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
1566
+ "creatives.containersV2.MobilePush.Create.goBackTemporaryChangesLost": "Do you really want to go back? All your temporary changes will be lost!",
1567
+ "creatives.containersV2.MobilePush.Create.here": "here .",
1568
+ "creatives.containersV2.MobilePush.Create.iOS": "iOS",
1569
+ "creatives.containersV2.MobilePush.Create.inputMobilePushTemplateContent": "Please enter the message content",
1570
+ "creatives.containersV2.MobilePush.Create.invalidAndroidMessage": "Validation failed for android",
1571
+ "creatives.containersV2.MobilePush.Create.invalidExternalLink": "External link cannot be empty / invalid url",
1572
+ "creatives.containersV2.MobilePush.Create.invalidIosMessage": "Validation failed for IOS",
1573
+ "creatives.containersV2.MobilePush.Create.invalidTags": "Invalid tags",
1574
+ "creatives.containersV2.MobilePush.Create.iosNotConfigured": "IOS template is not configured, Save without IOS template",
1575
+ "creatives.containersV2.MobilePush.Create.maxUploadFileSize": "Max file size acceptable is 5mb",
1576
+ "creatives.containersV2.MobilePush.Create.message": "Message",
1577
+ "creatives.containersV2.MobilePush.Create.messageHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
1578
+ "creatives.containersV2.MobilePush.Create.messageLabel": "Message*",
1579
+ "creatives.containersV2.MobilePush.Create.messageTitleWithUnsupportedTag": "Please check the message content for unsupported/missing tags",
1580
+ "creatives.containersV2.MobilePush.Create.mobilePush": "Mobile Push",
1581
+ "creatives.containersV2.MobilePush.Create.nameAndDescription": "Name and description",
1582
+ "creatives.containersV2.MobilePush.Create.pleaseInput": "Please input",
1583
+ "creatives.containersV2.MobilePush.Create.pleaseUploadImage": "Please upload image",
1584
+ "creatives.containersV2.MobilePush.Create.primaryCTA": "Primary CTA",
1585
+ "creatives.containersV2.MobilePush.Create.save": "Save",
1586
+ "creatives.containersV2.MobilePush.Create.secondaryCTA": "Secondary CTA",
1587
+ "creatives.containersV2.MobilePush.Create.selectADeeplink": "Select a deeplink",
1588
+ "creatives.containersV2.MobilePush.Create.selectActionButton": "Select action buttons",
1589
+ "creatives.containersV2.MobilePush.Create.selectDeeplink": "Select deeplink",
1590
+ "creatives.containersV2.MobilePush.Create.selectLinkType": "Please select link type",
1591
+ "creatives.containersV2.MobilePush.Create.selectMobilePushAccount": "Select mobilepush account",
1592
+ "creatives.containersV2.MobilePush.Create.selectMobilePushTemplate": "Select mobilepush template",
1593
+ "creatives.containersV2.MobilePush.Create.somethingWentWrong": "Something went wrong!!",
1594
+ "creatives.containersV2.MobilePush.Create.template": "Template",
1595
+ "creatives.containersV2.MobilePush.Create.templateCantEmpty": "Template name cannot be empty",
1596
+ "creatives.containersV2.MobilePush.Create.templateCreatedSuccessfully": "Mobile push template created successfully",
1597
+ "creatives.containersV2.MobilePush.Create.templateNameNotEmpty": "Please provide a template name",
1598
+ "creatives.containersV2.MobilePush.Create.templateNotConfigured": "template not configured,",
1599
+ "creatives.containersV2.MobilePush.Create.thisSectionDisabledHoverText": "This section is being revamped. Till then it will remain disabled.",
1600
+ "creatives.containersV2.MobilePush.Create.title": "Title",
1601
+ "creatives.containersV2.MobilePush.Create.titleHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
1602
+ "creatives.containersV2.MobilePush.Create.titleLabel": "Title*",
1603
+ "creatives.containersV2.MobilePush.Create.titleNameInvalid": "Please enter the message title",
1604
+ "creatives.containersV2.MobilePush.Create.uploadFileSizeError": "File size cannot be more than 5mb",
1605
+ "creatives.containersV2.MobilePush.Create.uploadImage": "Upload image",
1606
+ "creatives.containersV2.MobilePush.Create.uploadImageSizeErrorDescription": "File size cannot be more than 3mb",
1607
+ "creatives.containersV2.MobilePush.Create.uploadImageSizeErrorTitle": "File size error",
1608
+ "creatives.containersV2.MobilePush.Create.uploadingImage": "Uploading image...",
1609
+ "creatives.containersV2.MobilePush.Create.validationError": "Validation error",
1610
+ "creatives.containersV2.MobilePush.Create.valueCantEmpty": "Value cannot be empty.",
1611
+ "creatives.containersV2.MobilePush.Edit.Android": "Android",
1612
+ "creatives.containersV2.MobilePush.Edit.Campaigns": "Campaigns",
1613
+ "creatives.containersV2.MobilePush.Edit.Creatives": "Creatives",
1614
+ "creatives.containersV2.MobilePush.Edit.Image": "Image",
1615
+ "creatives.containersV2.MobilePush.Edit.ImageUploadLabel": "Upload image",
1616
+ "creatives.containersV2.MobilePush.Edit.Tags": "Tags",
1617
+ "creatives.containersV2.MobilePush.Edit.aPageWithMobileApp": "A page within mobile app",
1618
+ "creatives.containersV2.MobilePush.Edit.accountId": "Account id",
1619
+ "creatives.containersV2.MobilePush.Edit.addActionButtonsToNotification": "Add action buttons to notification",
1620
+ "creatives.containersV2.MobilePush.Edit.addActionLinkToContent": "Add action link to content",
1621
+ "creatives.containersV2.MobilePush.Edit.addActionLinkToContentDescription": "Add a hyperlink of the page which customer will be directed to",
1622
+ "creatives.containersV2.MobilePush.Edit.addAnotherCTA": "Add another CTA",
1623
+ "creatives.containersV2.MobilePush.Edit.addPrimaryButtonToNotification": "Add primary button to notification",
1624
+ "creatives.containersV2.MobilePush.Edit.addPrimaryCTA": "Add primary CTA",
1625
+ "creatives.containersV2.MobilePush.Edit.addSecondaryButtonToNotification": "Add secondary button to notification",
1626
+ "creatives.containersV2.MobilePush.Edit.addSecondaryCTA": "Add secondary CTA",
1627
+ "creatives.containersV2.MobilePush.Edit.alertMessage": "Alert",
1628
+ "creatives.containersV2.MobilePush.Edit.anExternalWebPage": "An external web page",
1629
+ "creatives.containersV2.MobilePush.Edit.androidTemplateNotConfigured": "Android template is not configured. Continue save?",
1630
+ "creatives.containersV2.MobilePush.Edit.button1": "Button 1",
1631
+ "creatives.containersV2.MobilePush.Edit.button2": "Button 2",
1632
+ "creatives.containersV2.MobilePush.Edit.buttonLabel": "Button label",
1633
+ "creatives.containersV2.MobilePush.Edit.cancel": "Cancel",
1634
+ "creatives.containersV2.MobilePush.Edit.cantCopyEmptyFieldValues": "Cannot copy empty field values.",
1635
+ "creatives.containersV2.MobilePush.Edit.change": "change",
1636
+ "creatives.containersV2.MobilePush.Edit.copyFromAndroid": "Copy Title and Content From Android",
1637
+ "creatives.containersV2.MobilePush.Edit.copyFromIos": "Copy Title and Content From IOS",
1638
+ "creatives.containersV2.MobilePush.Edit.coverImage": "Cover image",
1639
+ "creatives.containersV2.MobilePush.Edit.coverImageDescription": "Maximum file size acceptable is 5 MB",
1640
+ "creatives.containersV2.MobilePush.Edit.ctaLabelCantEmpty": "CTA label cannot be empty.",
1641
+ "creatives.containersV2.MobilePush.Edit.deleteSecondCTAFirst": "Please delete second Secondary cta First",
1642
+ "creatives.containersV2.MobilePush.Edit.discardChanges": "Discard changes",
1643
+ "creatives.containersV2.MobilePush.Edit.enterCTALabel": "Enter CTA label here",
1644
+ "creatives.containersV2.MobilePush.Edit.enterTemplateName": "Enter template name",
1645
+ "creatives.containersV2.MobilePush.Edit.enterTemplateNameImportant": "Enter template name*",
1646
+ "creatives.containersV2.MobilePush.Edit.externalLink": "External link",
1647
+ "creatives.containersV2.MobilePush.Edit.externalLinkCantEmpty": "External link cannot be empty",
1648
+ "creatives.containersV2.MobilePush.Edit.externalLinkCantEmpty1": "External link cannot be empty.",
1649
+ "creatives.containersV2.MobilePush.Edit.goBackConfirmation": "Going back will discard all the changes you've made. Continue?",
1650
+ "creatives.containersV2.MobilePush.Edit.goBackTemporaryChangesLost": "Do you really want to go back? All your temporary changes will be lost!",
1651
+ "creatives.containersV2.MobilePush.Edit.iOS": "iOS",
1652
+ "creatives.containersV2.MobilePush.Edit.inputMobilePushTemplateContent": "Please enter the message content",
1653
+ "creatives.containersV2.MobilePush.Edit.invalidAndroidMessage": "Validation failed for android",
1654
+ "creatives.containersV2.MobilePush.Edit.invalidIosMessage": "Validation failed for IOS",
1655
+ "creatives.containersV2.MobilePush.Edit.invalidTags": "Invalid tags",
1656
+ "creatives.containersV2.MobilePush.Edit.iosTemplateNotConfigured": "IOS template is not configured, save without IOS template",
1657
+ "creatives.containersV2.MobilePush.Edit.maxUploadFileSize": "Max file size acceptable is 5mb",
1658
+ "creatives.containersV2.MobilePush.Edit.message": "Message",
1659
+ "creatives.containersV2.MobilePush.Edit.messageHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
1660
+ "creatives.containersV2.MobilePush.Edit.messageLabel": "Message*",
1661
+ "creatives.containersV2.MobilePush.Edit.messageTitleWithUnsupportedTag": "Please check the message content for unsupported/missing tags",
1662
+ "creatives.containersV2.MobilePush.Edit.mobilePush": "Mobile Push",
1663
+ "creatives.containersV2.MobilePush.Edit.nameAndDescription": "Name and description",
1664
+ "creatives.containersV2.MobilePush.Edit.pleaseInput": "Please input",
1665
+ "creatives.containersV2.MobilePush.Edit.pleaseUploadImage": "Please upload image",
1666
+ "creatives.containersV2.MobilePush.Edit.primaryCTA": "Primary CTA",
1667
+ "creatives.containersV2.MobilePush.Edit.save": "Save",
1668
+ "creatives.containersV2.MobilePush.Edit.secondaryCTA": "Secondary CTA",
1669
+ "creatives.containersV2.MobilePush.Edit.selectADeeplink": "Select a deeplink",
1670
+ "creatives.containersV2.MobilePush.Edit.selectActionButton": "Select action buttons",
1671
+ "creatives.containersV2.MobilePush.Edit.selectDeepLink": "Select deepLink",
1672
+ "creatives.containersV2.MobilePush.Edit.selectDeeplink": "Select deeplink",
1673
+ "creatives.containersV2.MobilePush.Edit.selectLinkType": "Please select link type",
1674
+ "creatives.containersV2.MobilePush.Edit.selectMobilePushAccount": "Select mobilepush account",
1675
+ "creatives.containersV2.MobilePush.Edit.selectMobilePushTemplate": "Select mobilepush template",
1676
+ "creatives.containersV2.MobilePush.Edit.somethingWentWrong": "Something went wrong!!",
1677
+ "creatives.containersV2.MobilePush.Edit.template": "Template",
1678
+ "creatives.containersV2.MobilePush.Edit.templateCantEmpty": "Template name cannot be empty",
1679
+ "creatives.containersV2.MobilePush.Edit.templateEditedSuccessfully": "MOBILEPUSH template edited successfully",
1680
+ "creatives.containersV2.MobilePush.Edit.templateNameNotEmpty": "Please provide a template name",
1681
+ "creatives.containersV2.MobilePush.Edit.templateNotConfigured": "Template not configured,",
1682
+ "creatives.containersV2.MobilePush.Edit.thisSectionDisabledHoverText": "This section is being revamped. Till then it will remain disabled.",
1683
+ "creatives.containersV2.MobilePush.Edit.title": "Title",
1684
+ "creatives.containersV2.MobilePush.Edit.titleHasUnsupportedTag": "Please check the message content for unsupported/missing tags",
1685
+ "creatives.containersV2.MobilePush.Edit.titleLabel": "Title*",
1686
+ "creatives.containersV2.MobilePush.Edit.titleNameInvalid": "Please enter the message title",
1687
+ "creatives.containersV2.MobilePush.Edit.uploadFileSizeError": "File size cannot be more than 5mb",
1688
+ "creatives.containersV2.MobilePush.Edit.uploadImage": "Upload image",
1689
+ "creatives.containersV2.MobilePush.Edit.uploadingImage": "Uploading image...",
1690
+ "creatives.containersV2.MobilePush.Edit.validationError": "Validation error",
1691
+ "creatives.containersV2.MobilePush.Edit.valueCantEmpty": "value cannot be empty.",
1692
+ "creatives.containersV2.MobilepushWrapper.createMode": "Which type of content you want to create?",
1693
+ "creatives.containersV2.MobilepushWrapper.creativeName": "Creative name",
1694
+ "creatives.containersV2.MobilepushWrapper.header": "This is MobilepushWrapper container !",
1695
+ "creatives.containersV2.MobilepushWrapper.image": "Image content",
1696
+ "creatives.containersV2.MobilepushWrapper.text": "Text content",
1697
+ "creatives.containersV2.NotFoundPage.header": "Looks like you are lost!",
1698
+ "creatives.containersV2.Rcs.addSmsCreative": "Add SMS creative",
1699
+ "creatives.containersV2.Rcs.buttonTextAndUrl": ", CTA button text & url",
1700
+ "creatives.containersV2.Rcs.disabledMediaTooltip": "Not yet enabled. Coming soon!",
1701
+ "creatives.containersV2.Rcs.dltEditHeader": "Edit SMS",
1702
+ "creatives.containersV2.Rcs.emptyTemplateDescErrorMessage": "Template message cannot be empty",
1703
+ "creatives.containersV2.Rcs.fallbackDesc": "We would suggest to add fallback SMS",
1704
+ "creatives.containersV2.Rcs.fallbackLabel": "Fallback SMS message",
1705
+ "creatives.containersV2.Rcs.fallbackMsgLenError": "Only 1 SMS (160 characters) allowed for fallback sms",
1706
+ "creatives.containersV2.Rcs.fallbackMsgPlaceholder": "Enter the text message content for fallback SMS",
1707
+ "creatives.containersV2.Rcs.fallbackPreviewtitle": "Preview of fallback SMS",
1708
+ "creatives.containersV2.Rcs.fallbackTextAreaLabel": "SMS message",
1709
+ "creatives.containersV2.Rcs.fallbackToolTip": "This is to deliver an RCS message as an SMS message to end users whose phones do not support RCS",
1710
+ "creatives.containersV2.Rcs.image": "and image",
1711
+ "creatives.containersV2.Rcs.mediaImage": "Image",
1712
+ "creatives.containersV2.Rcs.mediaLabel": "Media",
1713
+ "creatives.containersV2.Rcs.mediaNone": "None",
1714
+ "creatives.containersV2.Rcs.mediaVideo": "Video/Slideshow",
1715
+ "creatives.containersV2.Rcs.optional": "(Optional)",
1716
+ "creatives.containersV2.Rcs.rcsCreateNotification": "RCS template created successfully",
1717
+ "creatives.containersV2.Rcs.rcsDltDesc": "Select any of the existing templates",
1718
+ "creatives.containersV2.Rcs.rcsDltTitle": "SMS creative templates",
1719
+ "creatives.containersV2.Rcs.rcsDoneBtnToolTip": "Please add template name {type} to proceed further",
1720
+ "creatives.containersV2.Rcs.rcsEditNotification": "RCS template updated successfully",
1721
+ "creatives.containersV2.Rcs.templateButton": "Buttons",
1722
+ "creatives.containersV2.Rcs.templateButtonDesc": "Use buttons to redirect user to respective link or quick response/ action.",
1723
+ "creatives.containersV2.Rcs.templateCTAButton": "Call to action",
1724
+ "creatives.containersV2.Rcs.templateCTAButtonDesc": "Create up to 3 buttons that let customers respond to your messages or take action.",
1725
+ "creatives.containersV2.Rcs.templateDescLabel": "Text message",
1726
+ "creatives.containersV2.Rcs.templateDescLengthError": "Template message length cannot exceed 1000",
1727
+ "creatives.containersV2.Rcs.templateDescPlaceholder": "Enter the text message",
1728
+ "creatives.containersV2.Rcs.templateQRButton": "Quick reply",
1729
+ "creatives.containersV2.Rcs.templateQRButtonDesc": "Create up to 3 buttons that let customers respond to your messages or take action.",
1730
+ "creatives.containersV2.Rcs.templateTitle": "Title",
1731
+ "creatives.containersV2.Rcs.templateTitlePlaceholder": "Enter title",
1732
+ "creatives.containersV2.Rcs.textMessage": "and text message",
1733
+ "creatives.containersV2.Rcs.totalCharacters": "{smsCount} SMS ({number} characters)",
1734
+ "creatives.containersV2.TagList.header": "This is TagList container !",
1735
+ "creatives.containersV2.Templates.accountConfigError": "This account is not configured properly. You can configure it",
1736
+ "creatives.containersV2.Templates.all": "All",
1737
+ "creatives.containersV2.Templates.alphabeticallyOption": "Alphabetically",
1738
+ "creatives.containersV2.Templates.areYouSureText": "Confirm delete template",
1739
+ "creatives.containersV2.Templates.blankTemplate": "Blank template",
1740
+ "creatives.containersV2.Templates.campaigns": "Campaigns",
1741
+ "creatives.containersV2.Templates.cancelText": "Cancel",
1742
+ "creatives.containersV2.Templates.category": "Category",
1743
+ "creatives.containersV2.Templates.chooseAccount": "Choose the account to send content",
1744
+ "creatives.containersV2.Templates.clearAll": "Clear all",
1745
+ "creatives.containersV2.Templates.continue": "Continue",
1746
+ "creatives.containersV2.Templates.copyOf": "Copy of",
1747
+ "creatives.containersV2.Templates.createEmailActionButton": "Create email",
1748
+ "creatives.containersV2.Templates.createMessageContent": "New message",
1749
+ "creatives.containersV2.Templates.createNewActionButton": "Create new",
1750
+ "creatives.containersV2.Templates.createNewTemplateLink": "Create new template",
1751
+ "creatives.containersV2.Templates.createSmsActionButton": "Create SMS",
1752
+ "creatives.containersV2.Templates.creativeTemplates": "Creative templates",
1753
+ "creatives.containersV2.Templates.creativeTemplatesDesc": "(Select only one creative)",
1754
+ "creatives.containersV2.Templates.creatives": "Creatives",
1755
+ "creatives.containersV2.Templates.creativesTemplatesEdit": "Edit",
1756
+ "creatives.containersV2.Templates.creativesTemplatesSave": "Done",
1757
+ "creatives.containersV2.Templates.deleteButton": "Delete",
1758
+ "creatives.containersV2.Templates.deletedSuccssfully": "Template deleted successfully",
1759
+ "creatives.containersV2.Templates.deletingTemplate": "Deleting template...",
1760
+ "creatives.containersV2.Templates.deletionFailed": "Template deletion failed",
1761
+ "creatives.containersV2.Templates.duplicateButton": "Duplicate",
1762
+ "creatives.containersV2.Templates.duplicatingTemplate": "Duplicating template...",
1763
+ "creatives.containersV2.Templates.ebillHeader": "Ebill",
1764
+ "creatives.containersV2.Templates.ebillPreview": "Ebill preview",
1765
+ "creatives.containersV2.Templates.editButton": "Edit",
1766
+ "creatives.containersV2.Templates.editMessageContent": "Edit message content",
1767
+ "creatives.containersV2.Templates.emailHeader": "Email",
1768
+ "creatives.containersV2.Templates.emailPreview": "Email preview",
1769
+ "creatives.containersV2.Templates.emailTitleIllustartion": "Create an email {template}",
1770
+ "creatives.containersV2.Templates.gettingAllTemplates": "Getting all templates...",
1771
+ "creatives.containersV2.Templates.header": "This is Templates container !",
1772
+ "creatives.containersV2.Templates.imageCarouselTemplate": "Card message",
1773
+ "creatives.containersV2.Templates.imageMapTemplate": "Rich message",
1774
+ "creatives.containersV2.Templates.imageMapVideoTemplate": "Rich video message",
1775
+ "creatives.containersV2.Templates.imageTemplate": "Image",
1776
+ "creatives.containersV2.Templates.invalidUploadFileError": "File cannot be uploaded. Please select another file with valid file format.",
1777
+ "creatives.containersV2.Templates.layoutSelection": "Select layout",
1778
+ "creatives.containersV2.Templates.lineAccount": "Line account",
1779
+ "creatives.containersV2.Templates.lineHeader": "Line",
1780
+ "creatives.containersV2.Templates.mapTemplate": "Map template",
1781
+ "creatives.containersV2.Templates.mapTemplates": "Map templates",
1782
+ "creatives.containersV2.Templates.mobilepushAccount": "Mobilepush account",
1783
+ "creatives.containersV2.Templates.mobilepushHeader": "Mobile Push",
1784
+ "creatives.containersV2.Templates.mostRecentOption": "Most recent",
1785
+ "creatives.containersV2.Templates.newEmailTemplate": "New email {template}",
1786
+ "creatives.containersV2.Templates.newNotificationTemplate": "New notification {template}",
1787
+ "creatives.containersV2.Templates.newRCSTemplate": "New RCS {template}",
1788
+ "creatives.containersV2.Templates.newSMSTemplate": "New SMS {template}",
1789
+ "creatives.containersV2.Templates.newTemplate": "New template",
1790
+ "creatives.containersV2.Templates.newWhatsappTemplate": "Add new Whatsapp {template}",
1791
+ "creatives.containersV2.Templates.noAccountMessage": "Please select an account to proceed",
1792
+ "creatives.containersV2.Templates.noAccountsPresent": "Push notifications are not setup for your brand",
1793
+ "creatives.containersV2.Templates.noAccountsPresentFacebook": "Please setup the Facebook account & Facebook page to start creating content in Capillary's FB content creator.",
1794
+ "creatives.containersV2.Templates.noAccountsPresentLine": "Line accounts are not setup for your brand",
1795
+ "creatives.containersV2.Templates.noAccountsPresentViber": "Viber accounts are not setup for your brand",
1796
+ "creatives.containersV2.Templates.noAccountsPresentWeChat": "Wechat accounts are not setup for your brand",
1797
+ "creatives.containersV2.Templates.noAccountsPresentWhatsapp": "Whatsapp accounts are not setup for your brand",
1798
+ "creatives.containersV2.Templates.noApprovedWhatsappTemplatesDesc": "Please try creating a new template, once it is approved by Whatsapp it will be available here",
1799
+ "creatives.containersV2.Templates.noApprovedWhatsappTemplatesTitle": "Sorry, we couldn’t find any approved templates",
1800
+ "creatives.containersV2.Templates.noFilteredWhatsappTemplatesDesc": "Please try searching with another term or apply different filter",
1801
+ "creatives.containersV2.Templates.noFilteredWhatsappTemplatesTitle": "Sorry, we couldn’t find any matches",
1802
+ "creatives.containersV2.Templates.noTemplatesFound": "No templates found",
1803
+ "creatives.containersV2.Templates.noTemplatesMessage": "No templates available",
1804
+ "creatives.containersV2.Templates.preview": "Preview",
1805
+ "creatives.containersV2.Templates.previewButton": "Preview",
1806
+ "creatives.containersV2.Templates.previewGenerateText": "Preview is being generated...",
1807
+ "creatives.containersV2.Templates.promotional": "Promotional",
1808
+ "creatives.containersV2.Templates.pushTitleIllustartion": "Create a mobile push notification {template}",
1809
+ "creatives.containersV2.Templates.rcsDescIllustartion": "These templates can be reused when creating a new message content",
1810
+ "creatives.containersV2.Templates.rcsDltIllustrationDesc": "Please try creating a new DLT template in SMS section, once it is created, it will be available here",
1811
+ "creatives.containersV2.Templates.rcsDltIllustrationTitle": "Sorry, we couldn’t find any DLT templates",
1812
+ "creatives.containersV2.Templates.rcsTitleIllustartion": "Add new RCS creatives {template}",
1813
+ "creatives.containersV2.Templates.richMediaTemplates": "Rich media templates",
1814
+ "creatives.containersV2.Templates.searchText": "Search",
1815
+ "creatives.containersV2.Templates.selectAccount": "Select account",
1816
+ "creatives.containersV2.Templates.selectButton": "Select",
1817
+ "creatives.containersV2.Templates.selectDefaultButton": "Select",
1818
+ "creatives.containersV2.Templates.selectSmsHeader": "Select SMS template",
1819
+ "creatives.containersV2.Templates.selectWechatHeader": "Select WECHAT template",
1820
+ "creatives.containersV2.Templates.serviceExplicit": "Service explicit",
1821
+ "creatives.containersV2.Templates.serviceImplicit": "Service implicit",
1822
+ "creatives.containersV2.Templates.smsChannelTemplatesHeader": "SMS templates",
1823
+ "creatives.containersV2.Templates.smsHeader": "SMS",
1824
+ "creatives.containersV2.Templates.smsTitleIllustartion": "Create an SMS {template}",
1825
+ "creatives.containersV2.Templates.somethingWentWrong": "Something went wrong!!",
1826
+ "creatives.containersV2.Templates.sortBy": "Sort by",
1827
+ "creatives.containersV2.Templates.status": "Status",
1828
+ "creatives.containersV2.Templates.template": "template",
1829
+ "creatives.containersV2.Templates.templateDeleteConfirm": "Are you sure you wish to delete this template?",
1830
+ "creatives.containersV2.Templates.templateDeleteSuccess": "SMS template deleted successfully",
1831
+ "creatives.containersV2.Templates.templateDuplicateSuccess": "Template duplicated successfully",
1832
+ "creatives.containersV2.Templates.templateSelection": "Template selection",
1833
+ "creatives.containersV2.Templates.textTemplate": "Text",
1834
+ "creatives.containersV2.Templates.unMapButton": "Unmap",
1835
+ "creatives.containersV2.Templates.uploadFile": "Upload file",
1836
+ "creatives.containersV2.Templates.uploadTemplate": "Upload template",
1837
+ "creatives.containersV2.Templates.uploadedAt": "Modified",
1838
+ "creatives.containersV2.Templates.uploadedBy": "Uploaded by",
1839
+ "creatives.containersV2.Templates.uploadingFile": "Uploading file",
1840
+ "creatives.containersV2.Templates.useEditor": "Use editor",
1841
+ "creatives.containersV2.Templates.weChatRichmediaTemplate": "Richmedia template",
1842
+ "creatives.containersV2.Templates.wechatAccount": "Wechat account",
1843
+ "creatives.containersV2.Templates.wechatAccountNotConfigured": "Selected wechat account is not configured to create wechat templates",
1844
+ "creatives.containersV2.Templates.wechatChannelTemplatesHeader": "WECHAT templates",
1845
+ "creatives.containersV2.Templates.wechatHeader": "WECHAT",
1846
+ "creatives.containersV2.Templates.whatsappAccount": "Whatsapp account",
1847
+ "creatives.containersV2.Templates.whatsappDescIllustration": "These templates can be reused when creating a
1848
+ new message content.",
1849
+ "creatives.containersV2.Templates.whatsappMaxTemplates": "WhatsApp allows {maxCount} approved templates. To accommodate new approved templates either delete the existing one or reach out to Capillary POC to increase the limit.",
1850
+ "creatives.containersV2.Templates.whatsappOnlyApprovedTemplates": "Only \\"Approved\\" templates are available here, as you can use those templates to create a message.",
1851
+ "creatives.containersV2.Templates.whatsappOverview": "Overview",
1852
+ "creatives.containersV2.Templates.whatsappTitleIllustration": "Add a new Whatsapp creative {template}",
1853
+ "creatives.containersV2.Templates.yesText": "Yes, delete",
1854
+ "creatives.containersV2.Templates.zipUploadFailed": "Failed to upload zip file",
1855
+ "creatives.containersV2.TemplatesV2.FTP": "FTP",
1856
+ "creatives.containersV2.TemplatesV2.callTask": "Call Task",
1857
+ "creatives.containersV2.TemplatesV2.creatives": "Creatives",
1858
+ "creatives.containersV2.TemplatesV2.creativesDesc": "These are pre-built templates which you could use to customize your message content.",
1859
+ "creatives.containersV2.TemplatesV2.edit": "Edit",
1860
+ "creatives.containersV2.TemplatesV2.email": "Email",
1861
+ "creatives.containersV2.TemplatesV2.facebook": "Facebook",
1862
+ "creatives.containersV2.TemplatesV2.facebookDisableinfo": "Please integrate Facebook page ID & page name to enable this option.",
1863
+ "creatives.containersV2.TemplatesV2.gallery": "Gallery",
1864
+ "creatives.containersV2.TemplatesV2.header": "This is TemplatesV2 container !",
1865
+ "creatives.containersV2.TemplatesV2.line": "Line",
1866
+ "creatives.containersV2.TemplatesV2.pushNotification": "Push notification",
1867
+ "creatives.containersV2.TemplatesV2.rcs": "RCS",
1868
+ "creatives.containersV2.TemplatesV2.select": "Select",
1869
+ "creatives.containersV2.TemplatesV2.sms": "SMS",
1870
+ "creatives.containersV2.TemplatesV2.viber": "Viber",
1871
+ "creatives.containersV2.TemplatesV2.wechat": "Wechat",
1872
+ "creatives.containersV2.TemplatesV2.whatsapp": "WhatsApp",
1873
+ "creatives.containersV2.View.descriptionView": "Description of View",
1874
+ "creatives.containersV2.View.header": "This is View container !",
1875
+ "creatives.containersV2.View.view": "View",
1876
+ "creatives.containersV2.WeChat.accountId": "Account id",
1877
+ "creatives.containersV2.WeChat.alertMessage": "Alert",
1878
+ "creatives.containersV2.WeChat.cancel": "Cancel",
1879
+ "creatives.containersV2.WeChat.discard": "Discard",
1880
+ "creatives.containersV2.WeChat.gettingTemplateData": "Getting template data..",
1881
+ "creatives.containersV2.WeChat.goBackTemporaryChangesLost": "Do you really want to go back? All your temporary changes will be lost!",
1882
+ "creatives.containersV2.WeChat.hasInvalidContent": "has invalid content.",
1883
+ "creatives.containersV2.WeChat.hasValidContent": "has valid content.",
1884
+ "creatives.containersV2.WeChat.header": "WeChat",
1885
+ "creatives.containersV2.WeChat.internalUrlLabel": "Is this internal url",
1886
+ "creatives.containersV2.WeChat.isInternalUrl": "Is this internal url",
1887
+ "creatives.containersV2.WeChat.link": "Link",
1888
+ "creatives.containersV2.WeChat.linkCantEmpty": "has valid content.",
1889
+ "creatives.containersV2.WeChat.linkErrorMessage": "Link cannot be empty.",
1890
+ "creatives.containersV2.WeChat.miniWeChatPlaceholder": "E.g. ab4892njkl4l2op",
1891
+ "creatives.containersV2.WeChat.miniWechatIdError": "Mini-Program ID cannot be empty",
1892
+ "creatives.containersV2.WeChat.miniWechatIdInductive": "Unique alpha numeric code for this specific app",
1893
+ "creatives.containersV2.WeChat.miniWechatIdLabel": "Mini-Program ID",
1894
+ "creatives.containersV2.WeChat.newWechat": "New wechat",
1895
+ "creatives.containersV2.WeChat.pagePathError": "Page path cannot be empty.",
1896
+ "creatives.containersV2.WeChat.pagePathInductive": "User will be redirected to the Mini-Program path provided here",
1897
+ "creatives.containersV2.WeChat.pagePathLabel": "Page path",
1898
+ "creatives.containersV2.WeChat.pagePathPlaceholder": "E.g. pages/user/profile",
1899
+ "creatives.containersV2.WeChat.redirectOptionMiniProgram": "Mini-Program",
1900
+ "creatives.containersV2.WeChat.redirectOptionURL": "URL",
1901
+ "creatives.containersV2.WeChat.redirectOptionsHeadingValue": "URL or Mini-Program",
1902
+ "creatives.containersV2.WeChat.redirectionOptionError": "Please select a redirect option",
1903
+ "creatives.containersV2.WeChat.save": "Save",
1904
+ "creatives.containersV2.WeChat.select": "Select",
1905
+ "creatives.containersV2.WeChat.selectWechatAccount": "Select wechat account",
1906
+ "creatives.containersV2.WeChat.selectWechatTemplate": "Select wechat template",
1907
+ "creatives.containersV2.WeChat.somethingWentWrong": "Something went wrong!!",
1908
+ "creatives.containersV2.WeChat.tagsLabel": "Tags",
1909
+ "creatives.containersV2.WeChat.template": "Template",
1910
+ "creatives.containersV2.WeChat.templateLinkError": "Link cannot be empty.",
1911
+ "creatives.containersV2.WeChat.templateLinkLabel": "Link",
1912
+ "creatives.containersV2.WeChat.templateMapping": "Template mapping",
1913
+ "creatives.containersV2.WeChat.templateName": "Template Name",
1914
+ "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
1915
+ "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
1916
+ "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1917
+ "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1918
+ "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
1919
+ "creatives.containersV2.Whatsapp.addVar": "Add variables",
1920
+ "creatives.containersV2.Whatsapp.afrikaans": "Afrikaans",
1921
+ "creatives.containersV2.Whatsapp.albanian": "Albanian",
1922
+ "creatives.containersV2.Whatsapp.alertUpdate": "Alert update",
1923
+ "creatives.containersV2.Whatsapp.alertUpdateTooltip": "Send important updates or news to customers.",
1924
+ "creatives.containersV2.Whatsapp.appointmentUpdate": "Appointment update",
1925
+ "creatives.containersV2.Whatsapp.appointmentUpdateTooltip": "Send confirmations, reminders, or other updates to customers about their appointments.",
1926
+ "creatives.containersV2.Whatsapp.approved": "Approved",
1927
+ "creatives.containersV2.Whatsapp.approvedStatusMsg": "This template has been approved",
1928
+ "creatives.containersV2.Whatsapp.arabic": "Arabic",
1929
+ "creatives.containersV2.Whatsapp.authentication": "Authentication",
1930
+ "creatives.containersV2.Whatsapp.authenticationTooltip": "Send codes that allow your customers to securely access their accounts.",
1931
+ "creatives.containersV2.Whatsapp.awaitingApproval": "Awaiting approval",
1932
+ "creatives.containersV2.Whatsapp.awaitingStatusDesc": "The template has been sent for approval at {date}, {time}. It takes up to 48 hrs to get approved.",
1933
+ "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
1934
+ "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
1935
+ "creatives.containersV2.Whatsapp.bengali": "Bengali",
1936
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
1937
+ "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
1938
+ "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
1939
+ "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
1940
+ "creatives.containersV2.Whatsapp.btnTypeNone": "None",
1941
+ "creatives.containersV2.Whatsapp.btnTypeQuickReply": "Quick reply",
1942
+ "creatives.containersV2.Whatsapp.bulgarian": "Bulgarian",
1943
+ "creatives.containersV2.Whatsapp.cancelButtonLabel": "Cancel",
1944
+ "creatives.containersV2.Whatsapp.catalan": "Catalan",
1945
+ "creatives.containersV2.Whatsapp.chineseCHN": "Chinese (CHN)",
1946
+ "creatives.containersV2.Whatsapp.chineseHKG": "Chinese (HKG)",
1947
+ "creatives.containersV2.Whatsapp.chineseTAI": "Chinese (TAI)",
1948
+ "creatives.containersV2.Whatsapp.croatian": "Croatian",
1949
+ "creatives.containersV2.Whatsapp.ctaDesc": "Create up to 2 buttons that let customers respond to your messages or take action.",
1950
+ "creatives.containersV2.Whatsapp.czech": "Czech",
1951
+ "creatives.containersV2.Whatsapp.danish": "Danish",
1952
+ "creatives.containersV2.Whatsapp.disabledEditTooltip": "This template is non-editable as this is {status}",
1953
+ "creatives.containersV2.Whatsapp.disabledEditTooltipStatus": "awaiting for approval",
1954
+ "creatives.containersV2.Whatsapp.disabledFeatureTooltip": "Not yet enabled. Coming soon!",
1955
+ "creatives.containersV2.Whatsapp.dutch": "Dutch",
1956
+ "creatives.containersV2.Whatsapp.emptyTemplateMessageErrorMessage": "Template message cannot be empty",
1957
+ "creatives.containersV2.Whatsapp.english": "English",
1958
+ "creatives.containersV2.Whatsapp.englishUK": "English (UK)",
1959
+ "creatives.containersV2.Whatsapp.englishUS": "English (US)",
1960
+ "creatives.containersV2.Whatsapp.estonian": "Estonian",
1961
+ "creatives.containersV2.Whatsapp.filipino": "Filipino",
1962
+ "creatives.containersV2.Whatsapp.finnish": "Finnish",
1963
+ "creatives.containersV2.Whatsapp.french": "French",
1964
+ "creatives.containersV2.Whatsapp.georgian": "Georgian",
1965
+ "creatives.containersV2.Whatsapp.german": "German",
1966
+ "creatives.containersV2.Whatsapp.greek": "Greek",
1967
+ "creatives.containersV2.Whatsapp.gujarati": "Gujarati",
1968
+ "creatives.containersV2.Whatsapp.hausa": "Hausa",
1969
+ "creatives.containersV2.Whatsapp.hebrew": "Hebrew",
1970
+ "creatives.containersV2.Whatsapp.here": "here",
1971
+ "creatives.containersV2.Whatsapp.hindi": "Hindi",
1972
+ "creatives.containersV2.Whatsapp.hungarian": "Hungarian",
1973
+ "creatives.containersV2.Whatsapp.indonesian": "Indonesian",
1974
+ "creatives.containersV2.Whatsapp.inputplaceHolderText": "{value} Add labels or text or combination of both",
1975
+ "creatives.containersV2.Whatsapp.invalidFormatError": "INVALID FORMAT: Placeholders or other elements were formatted incorrectly.",
1976
+ "creatives.containersV2.Whatsapp.irish": "Irish",
1977
+ "creatives.containersV2.Whatsapp.italian": "Italian",
1978
+ "creatives.containersV2.Whatsapp.japanese": "Japanese",
1979
+ "creatives.containersV2.Whatsapp.kannada": "Kannada",
1980
+ "creatives.containersV2.Whatsapp.kazakh": "Kazakh",
1981
+ "creatives.containersV2.Whatsapp.kinyarwanda": "Kinyarwanda",
1982
+ "creatives.containersV2.Whatsapp.korean": "Korean",
1983
+ "creatives.containersV2.Whatsapp.kyrgyz": "Kyrgyz (Kyrgyzstan)",
1984
+ "creatives.containersV2.Whatsapp.labelSeperator": "|",
1985
+ "creatives.containersV2.Whatsapp.languageLabel": "Language",
1986
+ "creatives.containersV2.Whatsapp.lao": "Lao",
1987
+ "creatives.containersV2.Whatsapp.latvian": "Latvian",
1988
+ "creatives.containersV2.Whatsapp.lithuanian": "Lithuanian",
1989
+ "creatives.containersV2.Whatsapp.macedonian": "Macedonian",
1990
+ "creatives.containersV2.Whatsapp.malay": "Malay",
1991
+ "creatives.containersV2.Whatsapp.malayalam": "Malayalam",
1992
+ "creatives.containersV2.Whatsapp.marathi": "Marathi",
1993
+ "creatives.containersV2.Whatsapp.marketing": "Marketing",
1994
+ "creatives.containersV2.Whatsapp.marketingTooltip": "Send promotional offers, product announcements, and more to increase awareness and engagement.",
1995
+ "creatives.containersV2.Whatsapp.mediaDocument": "Document",
1996
+ "creatives.containersV2.Whatsapp.mediaImage": "Image",
1997
+ "creatives.containersV2.Whatsapp.mediaLabel": "Media",
1998
+ "creatives.containersV2.Whatsapp.mediaText": "Text",
1999
+ "creatives.containersV2.Whatsapp.mediaVideo": "Video",
2000
+ "creatives.containersV2.Whatsapp.messageLanguageLabel": "Message language",
2001
+ "creatives.containersV2.Whatsapp.modifiedUnsubscribeText": "Click {value} to unsubscribe",
2002
+ "creatives.containersV2.Whatsapp.noContentBetweenVars": "Add atleast 1 character between 2 variables",
2003
+ "creatives.containersV2.Whatsapp.norwegian": "Norwegian",
2004
+ "creatives.containersV2.Whatsapp.optional": "(Optional)",
2005
+ "creatives.containersV2.Whatsapp.otp": "Otp",
2006
+ "creatives.containersV2.Whatsapp.page": "page",
2007
+ "creatives.containersV2.Whatsapp.pages": "pages",
2008
+ "creatives.containersV2.Whatsapp.paymentUpdate": "Payment update",
2009
+ "creatives.containersV2.Whatsapp.paymentUpdateTooltip": "Send a message to customers about their payment.",
2010
+ "creatives.containersV2.Whatsapp.pdf": "PDF",
2011
+ "creatives.containersV2.Whatsapp.persian": "Persian",
2012
+ "creatives.containersV2.Whatsapp.polish": "Polish",
2013
+ "creatives.containersV2.Whatsapp.portugueseBR": "Portuguese (BR)",
2014
+ "creatives.containersV2.Whatsapp.portuguesePOR": "Portuguese (POR)",
2015
+ "creatives.containersV2.Whatsapp.punjabi": "Punjabi",
2016
+ "creatives.containersV2.Whatsapp.quickReplyDesc": "Create up to 3 buttons that let customers respond to your messages or take action.",
2017
+ "creatives.containersV2.Whatsapp.rejected": "Rejected",
2018
+ "creatives.containersV2.Whatsapp.rejectedStatusMsg": "This template has been rejected",
2019
+ "creatives.containersV2.Whatsapp.removeMultinewlineChars": "More than two consecutive line breaks are not allowed.",
2020
+ "creatives.containersV2.Whatsapp.repetativeVars": "Variables cannot be repeated",
2021
+ "creatives.containersV2.Whatsapp.reservationUpdate": "Reservation update",
2022
+ "creatives.containersV2.Whatsapp.reservationUpdateTooltip": "Send confirmations, reminders, or other updates to customers about their reservations.",
2023
+ "creatives.containersV2.Whatsapp.romanian": "Romanian",
2024
+ "creatives.containersV2.Whatsapp.russian": "Russian",
2025
+ "creatives.containersV2.Whatsapp.select": "Select",
2026
+ "creatives.containersV2.Whatsapp.sendForApprovalButtonLabel": "Send for approval",
2027
+ "creatives.containersV2.Whatsapp.sequenceVars": "Variable name should start from {one} and it should be in sequential order",
2028
+ "creatives.containersV2.Whatsapp.serbian": "Serbian",
2029
+ "creatives.containersV2.Whatsapp.slovak": "Slovak",
2030
+ "creatives.containersV2.Whatsapp.slovenian": "Slovenian",
2031
+ "creatives.containersV2.Whatsapp.spanish": "Spanish",
2032
+ "creatives.containersV2.Whatsapp.spanishARG": "Spanish (ARG)",
2033
+ "creatives.containersV2.Whatsapp.spanishMEX": "Spanish (MEX)",
2034
+ "creatives.containersV2.Whatsapp.spanishSPA": "Spanish (SPA)",
2035
+ "creatives.containersV2.Whatsapp.swahili": "Swahili",
2036
+ "creatives.containersV2.Whatsapp.swedish": "Swedish",
2037
+ "creatives.containersV2.Whatsapp.tagContentMismatchError": "TAG CONTENT MISMATCH: The language and/or template category selected don’t match the template content.",
2038
+ "creatives.containersV2.Whatsapp.tamil": "Tamil",
2039
+ "creatives.containersV2.Whatsapp.telugu": "Telugu",
2040
+ "creatives.containersV2.Whatsapp.templateCategoryLabel": "Template category",
2041
+ "creatives.containersV2.Whatsapp.templateLanguageEnglish": "English",
2042
+ "creatives.containersV2.Whatsapp.templateMessageLabel": "Message",
2043
+ "creatives.containersV2.Whatsapp.templateMessageLength": "Characters count: {currentLength}/{maxLength}",
2044
+ "creatives.containersV2.Whatsapp.templateMessageLengthError": "Template message length cannot exceed 1024",
2045
+ "creatives.containersV2.Whatsapp.templateMessagePlaceholder": "Enter message with variable",
2046
+ "creatives.containersV2.Whatsapp.templateMessageTooltip": "You can write variables by adding two curly brackets before the variable name and two curly brackets after the variable name.{br}{br}Tip :{br}It looks something like this: Hi {var},{br}so 1 is the variable name here.",
2047
+ "creatives.containersV2.Whatsapp.templateMessageUnsubscribeText": "Click {unsubscribe} to unsubscribe",
2048
+ "creatives.containersV2.Whatsapp.templateNameDesc": "Must be a unique name and can only contain lowercase alphanumeric characters and underscores.",
2049
+ "creatives.containersV2.Whatsapp.templateNameRegexErrorMessage": "Template name can only contain lowercase alphanumeric characters and underscores",
2050
+ "creatives.containersV2.Whatsapp.templateNameTooltip": "Tip : Use a name that helps WhatsApp's reviewer understand the purpose of your message, for example \\"order_delivery\\" rather than \\"template_1\\"",
2051
+ "creatives.containersV2.Whatsapp.thai": "Thai",
2052
+ "creatives.containersV2.Whatsapp.transactional": "Transactional",
2053
+ "creatives.containersV2.Whatsapp.turkish": "Turkish",
2054
+ "creatives.containersV2.Whatsapp.ukrainian": "Ukrainian",
2055
+ "creatives.containersV2.Whatsapp.unknownVars": "Variable name should be numeric value from {one} to {nineteen}",
2056
+ "creatives.containersV2.Whatsapp.unsubscribeTextTooltipCreateFlow": "To enable the checkbox, reduce the message character count to 988",
2057
+ "creatives.containersV2.Whatsapp.unsubscribeTextTooltipEditFlow": "This is non-editable",
2058
+ "creatives.containersV2.Whatsapp.urdu": "Urdu",
2059
+ "creatives.containersV2.Whatsapp.useTwoBracketsOnly": "Use two brackets on each side to declare a variable",
2060
+ "creatives.containersV2.Whatsapp.utility": "Utility",
2061
+ "creatives.containersV2.Whatsapp.utilityTooltip": "Send account updates, order updates, alerts, and more to share important information.",
2062
+ "creatives.containersV2.Whatsapp.uzbek": "Uzbek",
2063
+ "creatives.containersV2.Whatsapp.videoErrorMessage": "Please upload the video with allowed file extension, size, dimension and aspect ratio",
2064
+ "creatives.containersV2.Whatsapp.vietnamese": "Vietnamese",
2065
+ "creatives.containersV2.Whatsapp.whatsappCreateNotification": "{name} has been sent for approval",
2066
+ "creatives.containersV2.Whatsapp.zulu": "Zulu",
2067
+ "creatives.containersV2.addLabels": "Add labels",
2068
+ "creatives.containersV2.appName": "App Name",
2069
+ "creatives.containersV2.applyNow": "Apply now",
2070
+ "creatives.containersV2.areYouSureText": "Are you sure?",
2071
+ "creatives.containersV2.audience": "Audience",
2072
+ "creatives.containersV2.campaignsDashboard": "Campaigns",
2073
+ "creatives.containersV2.campaignsHome": "Campaigns Home",
2074
+ "creatives.containersV2.cancel": "Cancel",
2075
+ "creatives.containersV2.changeOk": "Ok, change",
2076
+ "creatives.containersV2.comingSoonTooltip": "Not enabled yet. Coming soon!",
2077
+ "creatives.containersV2.creativeNameLabel": "Creative name",
2078
+ "creatives.containersV2.delete": "Delete",
2079
+ "creatives.containersV2.done": "Done",
2080
+ "creatives.containersV2.emptyTemplateNameErrorMessage": "Template name cannot be empty",
2081
+ "creatives.containersV2.incentive": "Incentive",
2082
+ "creatives.containersV2.learnMore": "Learn More",
2083
+ "creatives.containersV2.newOrgName": "{newOrgName}",
2084
+ "creatives.containersV2.noCallToAction": "No call to action",
2085
+ "creatives.containersV2.orgChangeText": "Changing from <b>{oldOrgName}</b> to <b>{newOrgName}</b> will change the organisation for applications open in other tabs as well.<br/>Do you want to make the change to <b>{newOrgName}</b>?",
2086
+ "creatives.containersV2.orgChangedText": "Organization changed to",
2087
+ "creatives.containersV2.orgRefreshHeading": "Org refresh",
2088
+ "creatives.containersV2.preview": "Preview",
2089
+ "creatives.containersV2.programs": "Programs",
2090
+ "creatives.containersV2.promotions": "Promotions",
2091
+ "creatives.containersV2.refreshOrgText": "Refreshing this page & changing the Org from <b>{oldOrgName}</b> to <b>{newOrgName}</b>. At a time only one Org can be selected on the browser.",
2092
+ "creatives.containersV2.refreshText": "Refreshing in {time}...",
2093
+ "creatives.containersV2.richMedia.Create.Anyone": "Anyone",
2094
+ "creatives.containersV2.richMedia.Create.Author": "Author",
2095
+ "creatives.containersV2.richMedia.Create.Content": "Content",
2096
+ "creatives.containersV2.richMedia.Create.Cover_abstract": "Cover abstract",
2097
+ "creatives.containersV2.richMedia.Create.Cover_image": "Cover image",
2098
+ "creatives.containersV2.richMedia.Create.No_one": "No one",
2099
+ "creatives.containersV2.richMedia.Create.Only_followers": "Only followers",
2100
+ "creatives.containersV2.richMedia.Create.Please_input_author": "Please input author",
2101
+ "creatives.containersV2.richMedia.Create.Please_input_content": "Please input content",
2102
+ "creatives.containersV2.richMedia.Create.Please_input_cover_abstract": "Please input cover abstract",
2103
+ "creatives.containersV2.richMedia.Create.Please_input_title": "Please input title",
2104
+ "creatives.containersV2.richMedia.Create.Show_cover_picture": "Show cover picture",
2105
+ "creatives.containersV2.richMedia.Create.Title": "Title",
2106
+ "creatives.containersV2.richMedia.Create.Who_can_post_comments_on_this_content": "Who can post comments on this content",
2107
+ "creatives.containersV2.richMedia.Create.addNewRichmedia": "Add richmedia content",
2108
+ "creatives.containersV2.richMedia.Create.addRichMediaContent": "Add rich media content",
2109
+ "creatives.containersV2.richMedia.Create.articleContent": "Article content",
2110
+ "creatives.containersV2.richMedia.Create.authorCharacterCount": "Author exceeds character count limit by",
2111
+ "creatives.containersV2.richMedia.Create.authorInductiveText": "Brand/name that your customer will recognise",
2112
+ "creatives.containersV2.richMedia.Create.contentEmpty": "Cannot leave content field empty",
2113
+ "creatives.containersV2.richMedia.Create.coverAbstract": "Cover abstract",
2114
+ "creatives.containersV2.richMedia.Create.coverAbstractCharacterCount": "Cover abstract exceeds character count limit by",
2115
+ "creatives.containersV2.richMedia.Create.coverAbstractInductive": "A short description help customers learn more",
2116
+ "creatives.containersV2.richMedia.Create.coverImageTitle": "The relevant image that complements title.",
2117
+ "creatives.containersV2.richMedia.Create.delete": "delete",
2118
+ "creatives.containersV2.richMedia.Create.deleteContent": "Do you really want to delete? All your temporary changes will be lost!",
2119
+ "creatives.containersV2.richMedia.Create.emptyTemplateName": "Cannot leave template name empty",
2120
+ "creatives.containersV2.richMedia.Create.existingMedia": "Existing media",
2121
+ "creatives.containersV2.richMedia.Create.existingMediaHeader": "Rich media templates",
2122
+ "creatives.containersV2.richMedia.Create.fileContentFailed": "Failed to get File content",
2123
+ "creatives.containersV2.richMedia.Create.formEmpty": "Cannot leave form empty",
2124
+ "creatives.containersV2.richMedia.Create.header": "This is Create container !",
2125
+ "creatives.containersV2.richMedia.Create.insertImage": "Insert Image",
2126
+ "creatives.containersV2.richMedia.Create.linkInductiveText": "Link to help customers discover more about the brand.",
2127
+ "creatives.containersV2.richMedia.Create.maxContentCount": "You have reached the maximum template size",
2128
+ "creatives.containersV2.richMedia.Create.modalBody": "Do you really want to go back? All your temporary changes will be lost!",
2129
+ "creatives.containersV2.richMedia.Create.modalTitle": "Alert",
2130
+ "creatives.containersV2.richMedia.Create.nameOfTemplate": "Name of the template",
2131
+ "creatives.containersV2.richMedia.Create.newMedia": "New media",
2132
+ "creatives.containersV2.richMedia.Create.noImage": "Please upload an image",
2133
+ "creatives.containersV2.richMedia.Create.payloadMissing": "Please provide payload to create wechat template",
2134
+ "creatives.containersV2.richMedia.Create.readMoreLink": "Read more link",
2135
+ "creatives.containersV2.richMedia.Create.requiredField": "This field is required!",
2136
+ "creatives.containersV2.richMedia.Create.resolutionText": "Resolution 360 x 200",
2137
+ "creatives.containersV2.richMedia.Create.sameTemplateExists": "Template with the same name exists",
2138
+ "creatives.containersV2.richMedia.Create.saveSuccess": "Template saved successfully",
2139
+ "creatives.containersV2.richMedia.Create.searchText": "Search Templates",
2140
+ "creatives.containersV2.richMedia.Create.somethingWentWrong": "Something went wrong!!",
2141
+ "creatives.containersV2.richMedia.Create.sourceIdentMissing": "Please provide source account identifier",
2142
+ "creatives.containersV2.richMedia.Create.sourceLinkEmpty": "Cannot leave source link field empty",
2143
+ "creatives.containersV2.richMedia.Create.sufficientParam": "Please provide sufficient params to create richmedia wechat template",
2144
+ "creatives.containersV2.richMedia.Create.sufficientPayload": "Please provide sufficient parameters to generate richmedia message payload",
2145
+ "creatives.containersV2.richMedia.Create.templateNameAlreadyExists": "Template name already exists",
2146
+ "creatives.containersV2.richMedia.Create.templateNameBlank": "Template name cannot be blank",
2147
+ "creatives.containersV2.richMedia.Create.templateNameContainsWS": "Template name contains only whitespaces",
2148
+ "creatives.containersV2.richMedia.Create.templateNameExists": "Template with the same name exists. Please try another template name.",
2149
+ "creatives.containersV2.richMedia.Create.titleCharacterCount": "Title exceeds character count limit by",
2150
+ "creatives.containersV2.richMedia.Create.titleEmpty": "Cannot leave title field empty",
2151
+ "creatives.containersV2.richMedia.Create.titleInductiveText": "Write a brief headline to draw customer's attention",
2152
+ "creatives.containersV2.richMedia.Create.titleNameRepeated": "Title name cannot be repeated",
2153
+ "creatives.containersV2.richMedia.Create.uploadFailed": "Upload has failed",
2154
+ "creatives.containersV2.richMedia.Create.uploadImage": "Upload Image",
2155
+ "creatives.containersV2.richMedia.Create.visibility": "visibility",
2156
+ "creatives.containersV2.richMedia.Create.wechatTitle": "Title",
2157
+ "creatives.containersV2.richMedia.Create.wrongFormatFile": "Wrong file upoaded. Please upload image file",
2158
+ "creatives.containersV2.richMedia.Create.wrongUrl": "Enter correct URL",
2159
+ "creatives.containersV2.save": "Save",
2160
+ "creatives.containersV2.shopNow": "Shop Now",
2161
+ "creatives.containersV2.signUp": "Sign Up",
2162
+ "creatives.containersV2.subscribe": "Subscribe",
2163
+ "creatives.containersV2.templateNameLabel": "Template name",
2164
+ "creatives.containersV2.templateNamePlaceholder": "Enter template name",
2165
+ "creatives.containersV2.unsupportedTagsValidationError": "Unsupported tags: {unsupportedTags}. Please remove them from this message.",
2166
+ "creatives.containersV2.viber.addLabels": "Add labels",
2167
+ "creatives.containersV2.viber.button": "Button",
2168
+ "creatives.containersV2.viber.buttonText": "Button text",
2169
+ "creatives.containersV2.viber.buttonUrl": "Button url",
2170
+ "creatives.containersV2.viber.cancelButtonLabel": "Cancel",
2171
+ "creatives.containersV2.viber.characters": "characters",
2172
+ "creatives.containersV2.viber.doneButtonLabel": "Done",
2173
+ "creatives.containersV2.viber.dragAndDrop": "Drag and drop image here",
2174
+ "creatives.containersV2.viber.emptyContentErrorMessage": "Template content can not be empty",
2175
+ "creatives.containersV2.viber.emptyTitleErrorMessage": "Template title can not be empty",
2176
+ "creatives.containersV2.viber.gettingAllTemplates": "Getting all templates...",
2177
+ "creatives.containersV2.viber.image": "Image",
2178
+ "creatives.containersV2.viber.imageDesc": "The relevant image that complements the message context.",
2179
+ "creatives.containersV2.viber.imageDimenstionDescription": "Dimensions: 300px x 400px",
2180
+ "creatives.containersV2.viber.imageGallery": "Gallery",
2181
+ "creatives.containersV2.viber.imageReUpload": "Re upload",
2182
+ "creatives.containersV2.viber.imageSizeDescription": "Size: 10mb",
2183
+ "creatives.containersV2.viber.inValidUrliErrorMessage": "Button URL is not valid",
2184
+ "creatives.containersV2.viber.invalidTagError": "Please check the message content for unsupported/missing tags",
2185
+ "creatives.containersV2.viber.limitExceededContentErrorMessage": "Template content can not be more than 1000",
2186
+ "creatives.containersV2.viber.message": "Message",
2187
+ "creatives.containersV2.viber.optional": "(optional)",
2188
+ "creatives.containersV2.viber.or": "OR",
2189
+ "creatives.containersV2.viber.search": "Search",
2190
+ "creatives.containersV2.viber.textMessage": "Text message",
2191
+ "creatives.containersV2.viber.textMessageTitleLabel": "Creative name",
2192
+ "creatives.containersV2.viber.textMessageTitlePlaceholder": "Enter template name",
2193
+ "creatives.containersV2.viber.uploadComputer": "Your computer",
2194
+ "creatives.containersV2.viber.uploadGallery": "Gallery",
2195
+ "creatives.containersV2.viber.uploadImage": "Upload Image",
2196
+ "creatives.containersV2.viber.uploadImageDescription": "The relevant image that complements the message context.",
2197
+ "creatives.containersV2.viber.viberCreateNotification": "Viber template created successfully",
2198
+ "creatives.containersV2.viber.viberCreativeTitle": "Viber creative",
2199
+ "creatives.containersV2.viber.viberEditNotification": "Viber template updated successfully",
2200
+ "creatives.containersV2.viber.viberImageIncorrectSize": "Please upload the image with correct type, size and dimension",
2201
+ "creatives.containersV2.watchMore": "Watch More",
2202
+ "customdatepicker.cancel": "Cancel",
2203
+ "customdatepicker.done": "Done",
2204
+ "reon.components.Cap.Workbench": "WorkBench",
2205
+ "reon.components.Cap.appName": "App Name",
2206
+ "reon.components.Cap.campaigns": "Campaigns",
2207
+ "reon.components.Cap.creatives": "Creatives",
2208
+ "reon.components.Cap.creativesDashboard": "Creatives",
2209
+ "reon.components.Cap.ebill": "Ebill",
2210
+ "reon.components.Cap.email": "Email",
2211
+ "reon.components.Cap.gallery": "Gallery",
2212
+ "reon.components.Cap.line": "Line",
2213
+ "reon.components.Cap.loyalty": "Loyalty",
2214
+ "reon.components.Cap.memberCare": "Member Care",
2215
+ "reon.components.Cap.mobilepush": "Mobile Push",
2216
+ "reon.components.Cap.sms": "SMS",
2217
+ "reon.components.Cap.storeCare": "Store Care",
2218
+ "reon.components.Cap.storePerformance": "Store Performance",
2219
+ "reon.components.Cap.wechat": "WeChat",
2220
+ "reon.components.DateFilter.apply": "Apply",
2221
+ "reon.components.DateFilter.cancel": "Cancel",
2222
+ "reon.components.DateFilter.custom": "Custom",
2223
+ "reon.components.DateFilter.editText": "Edit",
2224
+ "reon.components.DateFilter.loaderMessage": "Fetching data",
2225
+ "reon.components.DateFilter.mtd": "MTD",
2226
+ "reon.components.DateFilter.previousMonth": "Previous Month",
2227
+ "reon.components.DateFilter.previousWeek": "Previous Week",
2228
+ "reon.components.DateFilter.previousYear": "Previous Year",
2229
+ "reon.components.DateFilter.selectDateRange": "Select Date Range",
2230
+ "reon.components.DateFilter.wtd": "WTD",
2231
+ "reon.components.DateFilter.ytd": "YTD",
2232
+ "reon.components.TopBar.brand.dropdown": "Select brand",
2233
+ "reon.components.TopBar.logout": "Logout",
2234
+ "reon.components.TopBar.profile": "Profile",
2235
+ "reon.components.TopBar.settings": "Settings",
2236
+ "reon.components.campaignsDashboard": "Campaigns",
2237
+ "reon.components.campaignsHome": "Campaigns Home",
2238
+ "reon.componentsv2.Cap.Workbench": "WorkBench",
2239
+ "reon.componentsv2.Cap.campaigns": "Campaigns",
2240
+ "reon.componentsv2.Cap.creatives": "Creatives",
2241
+ "reon.componentsv2.Cap.creativesDashboard": "Creatives",
2242
+ "reon.componentsv2.Cap.ebill": "Ebill",
2243
+ "reon.componentsv2.Cap.email": "Email",
2244
+ "reon.componentsv2.Cap.gallery": "Gallery",
2245
+ "reon.componentsv2.Cap.loyalty": "Loyalty",
2246
+ "reon.componentsv2.Cap.memberCare": "Member Care",
2247
+ "reon.componentsv2.Cap.sms": "SMS",
2248
+ "reon.componentsv2.Cap.storeCare": "Store Care",
2249
+ "reon.componentsv2.Cap.storePerformance": "Store Performance",
2250
+ "reon.componentsv2.Cap.wechat": "WeChat",
2251
+ "reon.componentsv2.appName": "App Name",
2252
+ "reon.componentsv2.campaignsDashboard": "Campaigns",
2253
+ "reon.componentsv2.campaignsHome": "Campaigns Home",
2254
+ "reon.modules.Login.componentsv2.LoginForm.input.inputPasswordMandatory": "Please input your Password!",
2255
+ "reon.modules.Login.componentsv2.LoginForm.input.inputUsernameMandatory": "Please input your username!",
2256
+ "reon.modules.Login.componentsv2.LoginForm.input.invalidCredentials": "Invalid or Incorrect credentials!",
2257
+ "reon.modules.Login.componentsv2.LoginForm.input.loginButton": "Login",
2258
+ "reon.modules.Login.componentsv2.LoginForm.input.password": "Password",
2259
+ "reon.modules.Login.componentsv2.LoginForm.input.username": "Username or email",
2260
+ },
2261
+ "now": [Function],
2262
+ "onError": [Function],
2263
+ "textComponent": "span",
2264
+ "timeZone": null,
2265
+ }
2266
+ }
2267
+ orgTimezone="Asia/Kolkata"
2268
+ />
2269
+ `;