@bigbinary/neeto-fields-frontend 1.3.5 → 1.3.7
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/app/javascript/src/translations/en.json +109 -0
- package/app/javascript/src/translations/index.js +3 -0
- package/dist/index.cjs.js +314 -5530
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +278 -5494
- package/dist/index.js.map +1 -1
- package/package.json +10 -4
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"neetoFields": {
|
|
3
|
+
"common": {
|
|
4
|
+
"yes": "Yes",
|
|
5
|
+
"no": "No"
|
|
6
|
+
},
|
|
7
|
+
"titles": {
|
|
8
|
+
"field_one": "Field",
|
|
9
|
+
"field_other": "Fields",
|
|
10
|
+
"fieldWithCount_one": "{{count}} field",
|
|
11
|
+
"fieldWithCount_other": "{{count}} fields",
|
|
12
|
+
"addField": "Add new field",
|
|
13
|
+
"editField": "Edit field",
|
|
14
|
+
"deleteField": "Delete field?",
|
|
15
|
+
"fieldName": "Field name",
|
|
16
|
+
"fieldKind": "Field type",
|
|
17
|
+
"required": "Required",
|
|
18
|
+
"dropdownOptions": "Dropdown options",
|
|
19
|
+
"regexOptions": "Regex options",
|
|
20
|
+
"reorderFields": "Reorder fields",
|
|
21
|
+
"filters": "Filters"
|
|
22
|
+
},
|
|
23
|
+
"labels": {
|
|
24
|
+
"addField": "Add new field",
|
|
25
|
+
"edit": "Edit",
|
|
26
|
+
"delete": "Delete",
|
|
27
|
+
"fieldName": "Field name",
|
|
28
|
+
"fieldKind": "Field type",
|
|
29
|
+
"createField": "Create field",
|
|
30
|
+
"updateField": "Update field",
|
|
31
|
+
"addMoreOption": "Add more option",
|
|
32
|
+
"regex": "Regex",
|
|
33
|
+
"regexCondition": "Condition",
|
|
34
|
+
"helpMessage": "Help message",
|
|
35
|
+
"isRequired": "Mark as a required field",
|
|
36
|
+
"submit": "Submit",
|
|
37
|
+
"reorder": "Reorder",
|
|
38
|
+
"saveChanges": "Save changes",
|
|
39
|
+
"cancel": "Cancel"
|
|
40
|
+
},
|
|
41
|
+
"placeholders": {
|
|
42
|
+
"enterFieldName": "Enter field name",
|
|
43
|
+
"enterAnOption": "Enter an option",
|
|
44
|
+
"regexExample": "Example: /^[0-9]{5}$/",
|
|
45
|
+
"enterErrorMessage": "Message to show on error",
|
|
46
|
+
"searchFields": "Search fields"
|
|
47
|
+
},
|
|
48
|
+
"fields": {
|
|
49
|
+
"kinds": {
|
|
50
|
+
"text": "Text",
|
|
51
|
+
"number": "Number",
|
|
52
|
+
"monetary": "Monetary",
|
|
53
|
+
"singleOption": "Single option",
|
|
54
|
+
"multiOption": "Multi option",
|
|
55
|
+
"date": "Date",
|
|
56
|
+
"time": "Time",
|
|
57
|
+
"datetime": "Date and time",
|
|
58
|
+
"dateRange": "Date range",
|
|
59
|
+
"timeRange": "Time range",
|
|
60
|
+
"textArea": "Text area",
|
|
61
|
+
"textarea": "Textarea",
|
|
62
|
+
"decimal": "Decimal",
|
|
63
|
+
"integer": "Integer",
|
|
64
|
+
"regex": "Regex",
|
|
65
|
+
"person": "Person",
|
|
66
|
+
"checkbox": "Checkbox"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"messages": {
|
|
70
|
+
"noFieldsWithState": "There are no {{state}} {{title}} to show",
|
|
71
|
+
"noFields": "There are no {{title}} to show",
|
|
72
|
+
"confirmDelete": "You are permanently deleting the field <strong>{{name}}</strong>. This action can't be undone.",
|
|
73
|
+
"confirmDeleteWithCount": "You are permanently deleting the field <strong>{{name}}</strong> which holds values for <strong>{{count}} {{resource}}</strong>. The values will be lost on deleting the field. This action can't be undone.",
|
|
74
|
+
"manageFieldFor": "Manage fields for {{resource}}",
|
|
75
|
+
"manageTitleForResource": "Manage {{title}} for {{resource}}",
|
|
76
|
+
"titleForResource": "{{title}} for {{resource}}",
|
|
77
|
+
"stateTitleForResource": "{{state}} {{title}} for {{resource}}",
|
|
78
|
+
"invalidKind": "Invalid kind",
|
|
79
|
+
"reorderFields": "Fields are displayed from top to bottom.",
|
|
80
|
+
"blockNavigationAlert": {
|
|
81
|
+
"title": "You have unsaved changes",
|
|
82
|
+
"message": "All of your unsaved changes will be lost. This can't be undone.",
|
|
83
|
+
"submitButtonLabel": "Discard changes",
|
|
84
|
+
"cancelButtonLabel": "Cancel"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"validations": {
|
|
88
|
+
"regexConditionIsRequired": "Regex condition is required",
|
|
89
|
+
"regexHelpMessageIsRequired": "Help message is required",
|
|
90
|
+
"fieldNameIsRequired": "Field name is required",
|
|
91
|
+
"atLeastFieldOptionIsRequired": "At least one field option is required",
|
|
92
|
+
"fieldOptionIsRequired": "Field option is required",
|
|
93
|
+
"kindIsRequired": "Kind is required",
|
|
94
|
+
"invalidRegexPattern": "Invalid regex pattern",
|
|
95
|
+
"advancedRegexAssertionsNotSupported": "Advanced regex assertions are not supported",
|
|
96
|
+
"notAValidNumber": "Entered number is not valid",
|
|
97
|
+
"notAValidInteger": "Entered number is not a valid integer",
|
|
98
|
+
"notAValid": "Entered number is not valid",
|
|
99
|
+
"thisIsRequired": "This is a required field",
|
|
100
|
+
"minOneItem": "Select at least one item"
|
|
101
|
+
},
|
|
102
|
+
"tooltips": {
|
|
103
|
+
"reorder": "Fields a are displayed from top to bottom. Re-order them"
|
|
104
|
+
},
|
|
105
|
+
"helpTexts": {
|
|
106
|
+
"noData": "Here is how you can use <a>{{title}}.</a>"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|