@groovymedia/easy-email-core 4.12.3 → 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.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 content block here";
121
+ text = t("Drop a Content block here");
122
122
  }
123
123
  if (!text)
124
124
  return null;