@innovastudio/contentbuilder 1.4.22 → 1.4.24

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.
@@ -412,4 +412,5 @@ _txt["Desktop"] = "Desktop";
412
412
  _txt["Live Preview"] = "Live Preview";
413
413
  _txt["Wrap Columns (Breakpoint)"] = "Wrap Columns (Breakpoint)";
414
414
  _txt["Reverse Columns"] = "Reverse Columns";
415
- _txt["Columns per Line"] = "Columns per Line";
415
+ _txt["Columns per Line"] = "Columns per Line";
416
+ _txt["Symbol"] = "Symbol";
@@ -412,4 +412,5 @@ _txt["Desktop"] = "Desktop";
412
412
  _txt["Live Preview"] = "Live Preview";
413
413
  _txt["Wrap Columns (Breakpoint)"] = "Wrap Columns (Breakpoint)";
414
414
  _txt["Reverse Columns"] = "Reverse Columns";
415
- _txt["Columns per Line"] = "Columns per Line";
415
+ _txt["Columns per Line"] = "Columns per Line";
416
+ _txt["Symbol"] = "Symbol";
@@ -45,7 +45,7 @@ Preview Plugin
45
45
  // _cb.addCss(css);
46
46
 
47
47
  var button_html =
48
- '<button class="previewcontent-button" title="Preview" style="font-size:15px;vertical-align:bottom;">' +
48
+ '<button class="previewcontent-button" title="' + _cb.out('Preview') + '" style="font-size:15px;vertical-align:bottom;">' +
49
49
  '<svg class="is-icon-flex"><use xlink:href="#ion-eye"></use></svg>' +
50
50
  "</button>";
51
51
 
@@ -21,7 +21,7 @@
21
21
 
22
22
  _cb.addCss(css);
23
23
 
24
- var button = '<button class="insertsymbol-button" title="Symbol" style="font-size:14px;vertical-align:bottom;">' +
24
+ var button = '<button class="insertsymbol-button" title="' + _cb.out('Symbol') + '" style="font-size:14px;vertical-align:bottom;">' +
25
25
  '&#8486;' +
26
26
  '</button>';
27
27
 
@@ -35,7 +35,7 @@
35
35
 
36
36
  _cb.addCss(css);
37
37
 
38
- var button = '<button class="wordcount-button" title="Word Count" style="font-size:15px;vertical-align:bottom;">' +
38
+ var button = '<button class="wordcount-button" title="' + _cb.out('Word Count') + '" style="font-size:15px;vertical-align:bottom;">' +
39
39
  '<svg class="is-icon-flex" style="margin-top:-1px"><use xlink:href="#ion-information"></use></svg>' +
40
40
  '</button>';
41
41