@bigbinary/neeto-molecules 1.1.27 → 1.1.29

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.
@@ -15,7 +15,9 @@
15
15
  "publish": "Publish",
16
16
  "draft": "Draft",
17
17
  "changeTimezone": "Change timezone",
18
- "rename": "Rename"
18
+ "rename": "Rename",
19
+ "resetToDefaults": "Reset to defaults",
20
+ "proceed": "Proceed"
19
21
  },
20
22
  "or": "or",
21
23
  "name": "name",
@@ -579,6 +581,24 @@
579
581
  "viewMore": "View more",
580
582
  "viewLess": "View less"
581
583
  }
584
+ },
585
+ "taxonomy": {
586
+ "title": "Taxonomy",
587
+ "browserTitle": "Taxonomy | Settings",
588
+ "defaultLabel": "Default label",
589
+ "singularLabel": "Singular label",
590
+ "pluralLabel": "Plural label",
591
+ "resetAlert": {
592
+ "title": "Reset to defaults?",
593
+ "message": "You are resetting taxonomies to their defaults. This can't be undone. Are you sure you want to proceed?"
594
+ },
595
+ "editPane": {
596
+ "title": "Edit labels for {{entity}}",
597
+ "validations": {
598
+ "singularLabelRequired": "Singular label is a required field.",
599
+ "pluralLabelRequired": "Plural label is a required field."
600
+ }
601
+ }
582
602
  }
583
603
  }
584
604
  }
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+
3
+ const Taxonomy: React.FC<{
4
+ breadcrumbs: {
5
+ text: string;
6
+ link: string;
7
+ }[];
8
+ }>;
9
+
10
+ export default Taxonomy;