@groovymedia/easy-email-core 4.12.4 → 4.12.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.cjs.js +9 -9
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.es.js +4 -4
- package/lib/index.es.js.map +1 -1
- package/package.json +1 -1
package/lib/index.es.js
CHANGED
|
@@ -112,13 +112,13 @@ function getPlaceholder(params) {
|
|
|
112
112
|
return null;
|
|
113
113
|
let text = null;
|
|
114
114
|
if (type === BasicType.PAGE) {
|
|
115
|
-
text = "Drop a Wrapper block here";
|
|
115
|
+
text = t("Drop a Wrapper block here");
|
|
116
116
|
} else if (type === BasicType.WRAPPER || type === AdvancedType.WRAPPER) {
|
|
117
|
-
text = "Drop a Section block here";
|
|
117
|
+
text = t("Drop a Section block here");
|
|
118
118
|
} else if (type === BasicType.SECTION || type === BasicType.GROUP || type === AdvancedType.SECTION || type === AdvancedType.GROUP) {
|
|
119
|
-
text = "Drop a Column block here";
|
|
119
|
+
text = t("Drop a Column block here");
|
|
120
120
|
} else if (type === BasicType.COLUMN || type === AdvancedType.COLUMN) {
|
|
121
|
-
text = "Drop a
|
|
121
|
+
text = t("Drop a Content block here");
|
|
122
122
|
}
|
|
123
123
|
if (!text)
|
|
124
124
|
return null;
|