Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/dist/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/dist/js/vendor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/dist/styles/bundle.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions client/lang/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') {
} else {
ss.i18n.addDictionary('en', {
"Admin.ACTIONS": "View actions",
"Admin.ADD_CHILD": "Add child",
"Admin.ADD_TO_CAMPAIGN": "Add to campaign",
"Admin.ADVANCED": "Advanced",
"Admin.ANY": "Any",
Expand All @@ -30,6 +31,9 @@ if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') {
"Admin.DELETE_CONFIRM_MESSAGE": "Deleted",
"Admin.DISABLESPLITVIEW": "Screen too small to show site preview in split mode",
"Admin.DISMISS": "Dismiss",
"Admin.DUPLICATE": "Duplicate",
"Admin.DUPLICATE_THIS_ONLY": "This record only",
"Admin.DUPLICATE_WITH_CHILDREN": "This record and children",
"Admin.EDIT": "Edit",
"Admin.EDIT_LINK": "Edit link",
"Admin.EDIT_MODE": "Edit mode",
Expand Down Expand Up @@ -65,6 +69,7 @@ if (typeof(ss) === 'undefined' || typeof(ss.i18n) === 'undefined') {
"Admin.SEARCH": "Search",
"Admin.SEARCH_OPTIONS": "Search options",
"Admin.SELECTONEPAGE": "Please select at least one page",
"Admin.SHOW_AS_LIST": "Show children as list",
"Admin.SHOW_SEARCH": "Show search",
"Admin.SPLIT_MODE": "Split mode",
"Admin.SUMMARY_TAG_LABEL": "filters",
Expand Down
5 changes: 5 additions & 0 deletions client/lang/src/en.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"Admin.ACTIONS": "View actions",
"ADD_CHILD": "Add child",
"Admin.ADD_TO_CAMPAIGN": "Add to campaign",
"Admin.ADVANCED": "Advanced",
"Admin.ANY": "Any",
Expand All @@ -26,6 +27,9 @@
"Admin.DELETE_CONFIRM_MESSAGE": "Deleted",
"Admin.DISABLESPLITVIEW": "Screen too small to show site preview in split mode",
"Admin.DISMISS": "Dismiss",
"Admin.DUPLICATE": "Duplicate",
"Admin.DUPLICATE_THIS_ONLY": "This record only",
"Admin.DUPLICATE_WITH_CHILDREN": "This record and children",
"Admin.EDIT": "Edit",
"Admin.EDIT_LINK": "Edit link",
"Admin.EDIT_MODE": "Edit mode",
Expand Down Expand Up @@ -63,6 +67,7 @@
"Admin.SEARCH": "Search",
"Admin.SEARCH_OPTIONS": "Search options",
"Admin.SELECTONEPAGE": "Please select at least one page",
"Admin.SHOW_AS_LIST": "Show children as list",
"Admin.SHOW_SEARCH": "Show search",
"Admin.SPLIT_MODE": "Split mode",
"Admin.SUMMARY_TAG_LABEL": "filters",
Expand Down
2 changes: 2 additions & 0 deletions client/src/boot/registerComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ import SudoModePasswordField from 'components/SudoModePasswordField/SudoModePass
import Paginator from 'components/Paginator/Paginator';
import UnsavedChangesIndicator from 'components/UnsavedChangesIndicator/UnsavedChangesIndicator';
import UnsavedChangesIndicatorTimer from 'components/UnsavedChangesIndicator/UnsavedChangesIndicatorTimer';
import ComplexTreeView from 'components/ComplexTreeView/ComplexTreeView';

export default () => {
Injector.component.registerMany({
Expand Down Expand Up @@ -114,5 +115,6 @@ export default () => {
Paginator,
UnsavedChangesIndicator,
UnsavedChangesIndicatorTimer,
ComplexTreeView,
});
};
1 change: 1 addition & 0 deletions client/src/bundles/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,6 @@ import '../legacy/HtmlEditorField';
import '../legacy/TabSet';
import '../legacy/GridField';
import '../legacy/SearchableDropdownField/SearchableDropdownFieldEntwine';
import '../legacy/ComplexTreeView/ComplexTreeViewEntwine';

import 'boot';
Loading