@capillarytech/creatives-library 7.10.55 → 7.10.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { defineMessages } from 'react-intl';
|
|
2
2
|
const prefix = `creatives.containersV2.Whatsapp`;
|
|
3
3
|
export default defineMessages({
|
|
4
|
+
templateNameLabel: {
|
|
5
|
+
id: `${prefix}.templateNameLabel`,
|
|
6
|
+
defaultMessage: 'Template name',
|
|
7
|
+
},
|
|
4
8
|
templateNameDesc: {
|
|
5
9
|
id: `${prefix}.templateNameDesc`,
|
|
6
10
|
defaultMessage:
|
|
7
11
|
'Must be a unique name and can only contain lowercase alphanumeric characters and underscores.',
|
|
8
12
|
},
|
|
13
|
+
templateNamePlaceholder: {
|
|
14
|
+
id: `${prefix}.templateNamePlaceholder`,
|
|
15
|
+
defaultMessage: 'Enter template name',
|
|
16
|
+
},
|
|
9
17
|
templateNameTooltip: {
|
|
10
18
|
id: `${prefix}.templateNameTooltip`,
|
|
11
19
|
defaultMessage: `Tip : Use a name that helps WhatsApp's reviewer understand the purpose of your message, for example "order_delivery" rather than "template_1"`,
|
|
@@ -131,6 +139,11 @@ export default defineMessages({
|
|
|
131
139
|
id: `${prefix}.unsubscribeTextTooltip`,
|
|
132
140
|
defaultMessage: 'This is non-editable',
|
|
133
141
|
},
|
|
142
|
+
unsupportedTagsValidationError: {
|
|
143
|
+
id: `${prefix}.unsupportedTagsValidationError`,
|
|
144
|
+
defaultMessage:
|
|
145
|
+
'Unsupported tags: {unsupportedTags}. Please remove them from this message.',
|
|
146
|
+
},
|
|
134
147
|
repetativeVars: {
|
|
135
148
|
id: `${prefix}.repetativeVars`,
|
|
136
149
|
defaultMessage: 'Variables cannot be repeated',
|
|
@@ -224,4 +237,4 @@ export default defineMessages({
|
|
|
224
237
|
id: `${prefix}.disabledEditTooltipStatus`,
|
|
225
238
|
defaultMessage: 'awaiting for approval',
|
|
226
239
|
},
|
|
227
|
-
});
|
|
240
|
+
});
|