@bigbinary/neeto-tags-frontend 0.0.36 → 0.0.37

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/dist/index.js CHANGED
@@ -3421,6 +3421,8 @@ var editItem = "Edit {{what}}";
3421
3421
  var createSuccess = "Tag created successfully.";
3422
3422
  var updateSuccess = "Tag updated successfully.";
3423
3423
  var deleteSuccess = "Tag deleted successfully.";
3424
+ var tagsWithCount_one = "{{count}} {{type}} tag";
3425
+ var tagsWithCount_other = "{{count}} {{type}} tags";
3424
3426
  var types = {
3425
3427
  string: "string"
3426
3428
  };
@@ -3468,6 +3470,8 @@ var en = {
3468
3470
  createSuccess: createSuccess,
3469
3471
  updateSuccess: updateSuccess,
3470
3472
  deleteSuccess: deleteSuccess,
3473
+ tagsWithCount_one: tagsWithCount_one,
3474
+ tagsWithCount_other: tagsWithCount_other,
3471
3475
  types: types,
3472
3476
  merge: merge$1
3473
3477
  };
@@ -7342,7 +7346,10 @@ var Dashboard = function Dashboard(_ref) {
7342
7346
  leftActionBlock: /*#__PURE__*/React.createElement(Typography, {
7343
7347
  component: "h4",
7344
7348
  className: "neeto-ui-gray-800 font-semibold"
7345
- }, "".concat(data === null || data === void 0 ? void 0 : (_data$tags3 = data.tags) === null || _data$tags3 === void 0 ? void 0 : _data$tags3.length, " ").concat(tagType.label, " tag(s)"))
7349
+ }, t("tagsWithCount", {
7350
+ count: data === null || data === void 0 ? void 0 : (_data$tags3 = data.tags) === null || _data$tags3 === void 0 ? void 0 : _data$tags3.length,
7351
+ type: tagType.label
7352
+ }))
7346
7353
  }), /*#__PURE__*/React.createElement("div", {
7347
7354
  className: "neeto-tags--table__wrapper"
7348
7355
  }, /*#__PURE__*/React.createElement(Table, {