@questpie/admin 3.0.3 → 3.0.5
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/README.md +34 -5
- package/dist/client/blocks/block-renderer.d.mts +2 -2
- package/dist/client/blocks/block-renderer.mjs +4 -1
- package/dist/client/builder/types/action-types.d.mts +31 -3
- package/dist/client/builder/types/collection-types.d.mts +140 -0
- package/dist/client/builder/types/ui-config.d.mts +16 -2
- package/dist/client/builder/types/views.d.mts +57 -0
- package/dist/client/builder/types/widget-types.d.mts +5 -0
- package/dist/client/components/actions/action-button.mjs +137 -199
- package/dist/client/components/actions/action-dialog.mjs +198 -156
- package/dist/client/components/actions/confirmation-dialog.mjs +2 -2
- package/dist/client/components/actions/header-actions.mjs +52 -53
- package/dist/client/components/admin-link.d.mts +2 -2
- package/dist/client/components/auth/auth-loading.mjs +41 -18
- package/dist/client/components/blocks/block-editor-layout.mjs +2 -2
- package/dist/client/components/blocks/block-fields-renderer.mjs +64 -28
- package/dist/client/components/blocks/block-insert-button.mjs +4 -4
- package/dist/client/components/blocks/block-item.mjs +2 -2
- package/dist/client/components/blocks/block-library-sidebar.mjs +91 -63
- package/dist/client/components/component-renderer.mjs +1 -1
- package/dist/client/components/fields/array-field.mjs +14 -14
- package/dist/client/components/fields/asset-preview-field.mjs +1 -1
- package/dist/client/components/fields/blocks-field/blocks-field.mjs +84 -104
- package/dist/client/components/fields/json-field.mjs +2 -2
- package/dist/client/components/fields/object-array-field.mjs +22 -22
- package/dist/client/components/fields/object-field.mjs +5 -5
- package/dist/client/components/fields/relation/displays/cards-display.mjs +16 -9
- package/dist/client/components/fields/relation/displays/chips-display.mjs +15 -12
- package/dist/client/components/fields/relation/displays/grid-display.mjs +15 -11
- package/dist/client/components/fields/relation/displays/list-display.mjs +33 -20
- package/dist/client/components/fields/relation/displays/table-display.mjs +62 -93
- package/dist/client/components/fields/relation/relation-items-display.mjs +1 -1
- package/dist/client/components/fields/relation-picker.mjs +7 -6
- package/dist/client/components/fields/relation-select.mjs +71 -47
- package/dist/client/components/fields/rich-text-editor/bubble-menu.mjs +392 -82
- package/dist/client/components/fields/rich-text-editor/extensions.mjs +54 -23
- package/dist/client/components/fields/rich-text-editor/image-popover.mjs +24 -50
- package/dist/client/components/fields/rich-text-editor/image-upload.mjs +66 -0
- package/dist/client/components/fields/rich-text-editor/index.d.mts +38 -0
- package/dist/client/components/fields/rich-text-editor/index.mjs +637 -376
- package/dist/client/components/fields/rich-text-editor/link-utils.mjs +26 -0
- package/dist/client/components/fields/rich-text-editor/presets.d.mts +10 -0
- package/dist/client/components/fields/rich-text-editor/slash-commands.mjs +27 -6
- package/dist/client/components/fields/rich-text-editor/toolbar.mjs +464 -346
- package/dist/client/components/fields/rich-text-editor/types.d.mts +77 -0
- package/dist/client/components/fields/upload-field.mjs +45 -49
- package/dist/client/components/filter-builder/columns-tab.mjs +69 -62
- package/dist/client/components/filter-builder/filter-builder-sheet.mjs +473 -308
- package/dist/client/components/filter-builder/filters-tab.mjs +109 -82
- package/dist/client/components/filter-builder/saved-views-tab.mjs +300 -198
- package/dist/client/components/history-sidebar.mjs +850 -340
- package/dist/client/components/layout/field-layout-renderer.mjs +6 -5
- package/dist/client/components/locale-switcher.mjs +8 -8
- package/dist/client/components/media/media-grid.mjs +106 -86
- package/dist/client/components/media/media-picker-dialog.mjs +242 -230
- package/dist/client/components/preview/live-preview-mode.mjs +1 -1
- package/dist/client/components/primitives/asset-preview.mjs +37 -22
- package/dist/client/components/primitives/date-input.mjs +212 -249
- package/dist/client/components/primitives/dropzone.mjs +192 -159
- package/dist/client/components/primitives/field-select-control.mjs +93 -0
- package/dist/client/components/primitives/select-multi.mjs +406 -365
- package/dist/client/components/primitives/select-single.mjs +391 -323
- package/dist/client/components/primitives/time-input.mjs +2 -2
- package/dist/client/components/sheets/resource-sheet.mjs +2 -0
- package/dist/client/components/ui/accordion.mjs +4 -4
- package/dist/client/components/ui/alert.mjs +3 -3
- package/dist/client/components/ui/badge.mjs +4 -4
- package/dist/client/components/ui/button.mjs +47 -37
- package/dist/client/components/ui/card.mjs +2 -2
- package/dist/client/components/ui/checkbox.mjs +1 -1
- package/dist/client/components/ui/command.mjs +5 -5
- package/dist/client/components/ui/dialog.mjs +3 -3
- package/dist/client/components/ui/drawer.mjs +1 -1
- package/dist/client/components/ui/dropdown-menu.mjs +157 -15
- package/dist/client/components/ui/empty-state.mjs +88 -59
- package/dist/client/components/ui/field.mjs +2 -2
- package/dist/client/components/ui/input-group.mjs +3 -3
- package/dist/client/components/ui/input.mjs +1 -1
- package/dist/client/components/ui/kbd.mjs +1 -1
- package/dist/client/components/ui/label.mjs +1 -1
- package/dist/client/components/ui/popover.mjs +19 -11
- package/dist/client/components/ui/scroll-fade.mjs +170 -0
- package/dist/client/components/ui/search-input.mjs +1 -1
- package/dist/client/components/ui/select.mjs +129 -27
- package/dist/client/components/ui/sheet.mjs +54 -34
- package/dist/client/components/ui/sidebar.mjs +15 -14
- package/dist/client/components/ui/skeleton.mjs +28 -12
- package/dist/client/components/ui/switch.mjs +2 -2
- package/dist/client/components/ui/table.mjs +82 -74
- package/dist/client/components/ui/tabs.mjs +26 -31
- package/dist/client/components/ui/textarea.mjs +1 -1
- package/dist/client/components/ui/tooltip.mjs +1 -1
- package/dist/client/components/widgets/chart-widget.mjs +154 -100
- package/dist/client/components/widgets/progress-widget.mjs +63 -36
- package/dist/client/components/widgets/quick-actions-widget.mjs +207 -115
- package/dist/client/components/widgets/recent-items-widget.mjs +147 -103
- package/dist/client/components/widgets/stats-widget.mjs +91 -72
- package/dist/client/components/widgets/table-widget.mjs +161 -247
- package/dist/client/components/widgets/timeline-widget.mjs +119 -78
- package/dist/client/components/widgets/value-widget.mjs +286 -157
- package/dist/client/components/widgets/widget-empty-state.mjs +88 -0
- package/dist/client/components/widgets/widget-skeletons.mjs +53 -20
- package/dist/client/contexts/focus-context.d.mts +2 -2
- package/dist/client/hooks/use-action.mjs +63 -55
- package/dist/client/hooks/use-audit-history.mjs +1 -65
- package/dist/client/hooks/use-collection-validation.mjs +36 -23
- package/dist/client/hooks/use-collection.mjs +96 -1
- package/dist/client/hooks/use-saved-views.mjs +70 -49
- package/dist/client/hooks/use-server-actions.mjs +70 -46
- package/dist/client/hooks/use-server-validation.mjs +156 -41
- package/dist/client/hooks/use-server-widget-data.mjs +1 -1
- package/dist/client/hooks/use-setup-status.d.mts +3 -3
- package/dist/client/hooks/use-setup-status.mjs +2 -2
- package/dist/client/hooks/use-transition-stage.mjs +2 -10
- package/dist/client/hooks/use-validation-error-map.mjs +31 -13
- package/dist/client/hooks/use-view-state.mjs +238 -174
- package/dist/client/i18n/date-locale.mjs +33 -0
- package/dist/client/i18n/hooks.mjs +17 -1
- package/dist/client/lib/utils.mjs +3 -2
- package/dist/client/preview/block-scope-context.d.mts +2 -2
- package/dist/client/preview/preview-banner.d.mts +2 -2
- package/dist/client/preview/preview-banner.mjs +75 -46
- package/dist/client/preview/preview-field.d.mts +4 -4
- package/dist/client/preview/preview-field.mjs +2 -2
- package/dist/client/runtime/provider.mjs +8 -1
- package/dist/client/runtime/translations-provider.mjs +1 -1
- package/dist/client/scope/picker.d.mts +2 -2
- package/dist/client/scope/provider.d.mts +2 -2
- package/dist/client/styles/base.css +1022 -0
- package/dist/client/styles/index.css +3 -589
- package/dist/client/utils/auto-expand-fields.mjs +4 -2
- package/dist/client/utils/keyboard-shortcuts.mjs +26 -0
- package/dist/client/utils/use-lazy-component.mjs +80 -0
- package/dist/client/views/auth/accept-invite-form.d.mts +2 -2
- package/dist/client/views/auth/auth-layout.d.mts +17 -10
- package/dist/client/views/auth/auth-layout.mjs +291 -80
- package/dist/client/views/auth/forgot-password-form.d.mts +2 -2
- package/dist/client/views/auth/forgot-password-form.mjs +2 -2
- package/dist/client/views/auth/login-form.d.mts +2 -2
- package/dist/client/views/auth/login-form.mjs +1 -1
- package/dist/client/views/auth/reset-password-form.d.mts +2 -2
- package/dist/client/views/auth/reset-password-form.mjs +2 -2
- package/dist/client/views/auth/setup-form.d.mts +2 -2
- package/dist/client/views/collection/auto-form-fields.mjs +11 -9
- package/dist/client/views/collection/bulk-action-toolbar.mjs +173 -138
- package/dist/client/views/collection/cells/complex-cells.mjs +22 -22
- package/dist/client/views/collection/cells/primitive-cells.mjs +1 -1
- package/dist/client/views/collection/cells/relation-cells.mjs +147 -129
- package/dist/client/views/collection/cells/shared/asset-thumbnail.mjs +224 -278
- package/dist/client/views/collection/cells/shared/relation-chip.mjs +64 -36
- package/dist/client/views/collection/cells/upload-cells.mjs +199 -9
- package/dist/client/views/collection/columns/build-columns.mjs +29 -9
- package/dist/client/views/collection/columns/column-defaults.mjs +2 -2
- package/dist/client/views/collection/field-renderer.mjs +50 -89
- package/dist/client/views/collection/form-view.mjs +237 -227
- package/dist/client/views/collection/table-view.mjs +1167 -234
- package/dist/client/views/collection/view-skeletons.mjs +222 -79
- package/dist/client/views/common/global-search.mjs +29 -18
- package/dist/client/views/dashboard/dashboard-grid.mjs +678 -501
- package/dist/client/views/dashboard/dashboard-widget.mjs +6 -3
- package/dist/client/views/dashboard/widget-card.mjs +23 -14
- package/dist/client/views/globals/global-form-view.mjs +634 -589
- package/dist/client/views/layout/admin-layout-provider.mjs +67 -70
- package/dist/client/views/layout/admin-layout.d.mts +3 -6
- package/dist/client/views/layout/admin-layout.mjs +152 -155
- package/dist/client/views/layout/admin-router.mjs +936 -616
- package/dist/client/views/layout/admin-sidebar.d.mts +38 -1
- package/dist/client/views/layout/admin-sidebar.mjs +762 -592
- package/dist/client/views/layout/admin-theme.d.mts +10 -0
- package/dist/client/views/layout/admin-theme.mjs +84 -0
- package/dist/client/views/layout/admin-view-layout.mjs +161 -0
- package/dist/client/views/pages/accept-invite-page.d.mts +2 -2
- package/dist/client/views/pages/accept-invite-page.mjs +49 -26
- package/dist/client/views/pages/dashboard-page.d.mts +2 -2
- package/dist/client/views/pages/forgot-password-page.d.mts +2 -2
- package/dist/client/views/pages/forgot-password-page.mjs +2 -19
- package/dist/client/views/pages/invite-page.d.mts +2 -2
- package/dist/client/views/pages/invite-page.mjs +2 -19
- package/dist/client/views/pages/login-page.d.mts +3 -3
- package/dist/client/views/pages/login-page.mjs +4 -21
- package/dist/client/views/pages/reset-password-page.d.mts +2 -2
- package/dist/client/views/pages/reset-password-page.mjs +3 -20
- package/dist/client/views/pages/setup-page.d.mts +2 -2
- package/dist/client/views/pages/setup-page.mjs +70 -71
- package/dist/client.d.mts +6 -2
- package/dist/client.mjs +2 -1
- package/dist/components/rich-text/rich-text-renderer.d.mts +2 -2
- package/dist/index.d.mts +6 -2
- package/dist/index.mjs +2 -1
- package/dist/server/augmentation/dashboard.d.mts +67 -3
- package/dist/server/augmentation/form-layout.d.mts +21 -0
- package/dist/server/augmentation/index.d.mts +1 -1
- package/dist/server/codegen/admin-client-template.mjs +4 -0
- package/dist/server/fields/blocks.d.mts +1 -1
- package/dist/server/fields/blocks.mjs +12 -0
- package/dist/server/fields/rich-text.d.mts +1 -1
- package/dist/server/fields/rich-text.mjs +8 -0
- package/dist/server/i18n/index.mjs +29 -7
- package/dist/server/i18n/messages/cs.mjs +414 -1
- package/dist/server/i18n/messages/de.mjs +412 -1
- package/dist/server/i18n/messages/en.mjs +166 -1
- package/dist/server/i18n/messages/es.mjs +412 -1
- package/dist/server/i18n/messages/fr.mjs +412 -1
- package/dist/server/i18n/messages/pl.mjs +416 -1
- package/dist/server/i18n/messages/pt.mjs +409 -1
- package/dist/server/i18n/messages/sk.mjs +216 -2
- package/dist/server/modules/admin/block/introspection.mjs +4 -1
- package/dist/server/modules/admin/block/prefetch.mjs +12 -2
- package/dist/server/modules/admin/collections/account.d.mts +2 -2
- package/dist/server/modules/admin/collections/admin-locks.d.mts +2 -2
- package/dist/server/modules/admin/collections/admin-preferences.d.mts +39 -39
- package/dist/server/modules/admin/collections/admin-saved-views.d.mts +47 -47
- package/dist/server/modules/admin/collections/apikey.d.mts +42 -42
- package/dist/server/modules/admin/collections/assets.d.mts +20 -20
- package/dist/server/modules/admin/collections/assets.mjs +0 -1
- package/dist/server/modules/admin/collections/session.d.mts +42 -42
- package/dist/server/modules/admin/collections/user.d.mts +40 -28
- package/dist/server/modules/admin/collections/user.mjs +40 -9
- package/dist/server/modules/admin/collections/verification.d.mts +36 -36
- package/dist/server/modules/admin/dto/admin-config.dto.mjs +2 -0
- package/dist/server/modules/admin/factories.mjs +7 -18
- package/dist/server/modules/admin/index.d.mts +1 -1
- package/dist/server/modules/admin/routes/admin-config.d.mts +2 -2
- package/dist/server/modules/admin/routes/admin-config.mjs +34 -16
- package/dist/server/modules/admin/routes/execute-action.d.mts +9 -9
- package/dist/server/modules/admin/routes/execute-action.mjs +67 -28
- package/dist/server/modules/admin/routes/i18n-helpers.mjs +34 -0
- package/dist/server/modules/admin/routes/locales.d.mts +2 -2
- package/dist/server/modules/admin/routes/preview.mjs +25 -17
- package/dist/server/modules/admin/routes/reactive.d.mts +9 -9
- package/dist/server/modules/admin/routes/route-helpers.mjs +1 -1
- package/dist/server/modules/admin/routes/setup.d.mts +10 -10
- package/dist/server/modules/admin/routes/setup.mjs +16 -13
- package/dist/server/modules/admin/routes/translations.d.mts +4 -4
- package/dist/server/modules/admin/routes/translations.mjs +5 -1
- package/dist/server/modules/admin-preferences/collections/admin-preferences.mjs +1 -1
- package/dist/server/modules/admin-preferences/collections/saved-views.d.mts +2 -2
- package/dist/server/modules/audit/.generated/module.d.mts +1 -1
- package/dist/server/modules/audit/.generated/module.mjs +1 -1
- package/dist/server/modules/audit/collections/audit-log.d.mts +2 -2
- package/dist/server/modules/audit/collections/audit-log.mjs +1 -1
- package/dist/server/modules/audit/config/app.mjs +99 -42
- package/dist/server/modules/audit/jobs/audit-cleanup.mjs +1 -1
- package/dist/server/plugin.mjs +4 -2
- package/dist/server/proxy-factories.d.mts +4 -3
- package/dist/server/proxy-factories.mjs +34 -8
- package/dist/shared/types/saved-views.types.d.mts +2 -0
- package/package.json +6 -4
- package/dist/client/components/fields/rich-text-editor/link-popover.mjs +0 -85
- package/dist/client/components/ui/spinner.mjs +0 -52
- package/dist/client/components/ui/toolbar.mjs +0 -136
- package/dist/client/contexts/breadcrumb-context.mjs +0 -60
- package/dist/client/views/layout/admin-topbar.mjs +0 -236
|
@@ -26,6 +26,7 @@ var en_default = {
|
|
|
26
26
|
"common.yes": "Yes",
|
|
27
27
|
"common.no": "No",
|
|
28
28
|
"common.ok": "OK",
|
|
29
|
+
"common.done": "Done",
|
|
29
30
|
"common.apply": "Apply",
|
|
30
31
|
"common.reset": "Reset",
|
|
31
32
|
"common.clear": "Clear",
|
|
@@ -40,8 +41,10 @@ var en_default = {
|
|
|
40
41
|
"common.view": "View",
|
|
41
42
|
"common.open": "Open",
|
|
42
43
|
"common.retry": "Retry",
|
|
44
|
+
"common.backToList": "Back to list",
|
|
43
45
|
"common.submit": "Submit",
|
|
44
46
|
"common.deleted": "Deleted",
|
|
47
|
+
"common.noValue": "No value",
|
|
45
48
|
"nav.dashboard": "Dashboard",
|
|
46
49
|
"nav.collections": "Collections",
|
|
47
50
|
"nav.globals": "Globals",
|
|
@@ -50,6 +53,8 @@ var en_default = {
|
|
|
50
53
|
"nav.logout": "Log out",
|
|
51
54
|
"nav.home": "Home",
|
|
52
55
|
"nav.back": "Back",
|
|
56
|
+
"nav.breadcrumb": "Breadcrumb",
|
|
57
|
+
"nav.adminNavigation": "Admin navigation",
|
|
53
58
|
"dashboard.title": "Dashboard",
|
|
54
59
|
"dashboard.welcome": "Welcome back",
|
|
55
60
|
"dashboard.recentActivity": "Recent Activity",
|
|
@@ -58,6 +63,20 @@ var en_default = {
|
|
|
58
63
|
"dashboard.noWidgetsDescription": "Add widgets to your dashboard configuration to display data here.",
|
|
59
64
|
"dashboard.systemStatus": "System Status",
|
|
60
65
|
"dashboard.welcomeDescription": "Select a collection from the sidebar to manage your content.",
|
|
66
|
+
"widget.quickActions.emptyTitle": "No actions configured",
|
|
67
|
+
"widget.quickActions.emptyDescription": "There are no shortcuts to display.",
|
|
68
|
+
"widget.chart.emptyTitle": "No chart data",
|
|
69
|
+
"widget.chart.emptyDescription": "There are no values for this range.",
|
|
70
|
+
"widget.recentItems.emptyTitle": "No recent items",
|
|
71
|
+
"widget.recentItems.emptyDescription": "There are no recent records to show.",
|
|
72
|
+
"widget.value.emptyTitle": "No value to display",
|
|
73
|
+
"widget.value.emptyDescription": "There is no value for this card yet.",
|
|
74
|
+
"widget.progress.emptyTitle": "No progress data",
|
|
75
|
+
"widget.progress.emptyDescription": "There is no target value to display.",
|
|
76
|
+
"widget.timeline.emptyTitle": "No activity yet",
|
|
77
|
+
"widget.timeline.emptyDescription": "There are no events to display.",
|
|
78
|
+
"widget.table.emptyTitle": "No rows to show",
|
|
79
|
+
"widget.table.emptyDescription": "There are no records for the current criteria.",
|
|
61
80
|
"collection.create": "Create {{name}}",
|
|
62
81
|
"collection.edit": "Edit {{name}}",
|
|
63
82
|
"collection.delete": "Delete {{name}}",
|
|
@@ -100,6 +119,50 @@ var en_default = {
|
|
|
100
119
|
one: "Restored {{success}} item, {{failed}} failed",
|
|
101
120
|
other: "Restored {{success}} items, {{failed}} failed"
|
|
102
121
|
},
|
|
122
|
+
"collection.orderSaved": "Order saved",
|
|
123
|
+
"collection.orderSaveFailed": "Could not save order",
|
|
124
|
+
"collection.reorderMode": "Reorder mode",
|
|
125
|
+
"collection.sortedByField": "Sorted by {{field}} {{direction}}.",
|
|
126
|
+
"collection.reorderEnableOrderable": "Enable orderable before reordering",
|
|
127
|
+
"collection.reorderAddOrderField": "Add a numeric order field before reordering",
|
|
128
|
+
"collection.reorderClearSearch": "Clear search to reorder",
|
|
129
|
+
"collection.reorderRemoveGrouping": "Remove grouping to reorder",
|
|
130
|
+
"collection.reorderClearFilters": "Clear filters to reorder",
|
|
131
|
+
"collection.reorderShowOnePage": "Show one page of items to reorder",
|
|
132
|
+
"collection.reorderExitMode": "Exit reorder mode",
|
|
133
|
+
"collection.reorderItems": "Reorder items",
|
|
134
|
+
"collection.reorderSwitchSort": "Switch to {{field}} sort and reorder",
|
|
135
|
+
"collection.reorderUnavailable": "Reorder unavailable: {{reason}}",
|
|
136
|
+
"collection.reorderEnterMode": "Enter reorder mode",
|
|
137
|
+
"action.collectionNotFound": "Collection \"{{collection}}\" not found",
|
|
138
|
+
"action.notFound": "Action \"{{action}}\" not found on collection \"{{collection}}\"",
|
|
139
|
+
"action.executionFailed": "Action execution failed",
|
|
140
|
+
"action.itemCreated": "Item created successfully",
|
|
141
|
+
"action.itemIdRequired.save": "Item ID is required for save action",
|
|
142
|
+
"action.itemSaved": "Item saved successfully",
|
|
143
|
+
"action.itemIdRequired.delete": "Item ID is required for delete action",
|
|
144
|
+
"action.itemDeleted": "Item deleted successfully",
|
|
145
|
+
"action.itemIdsRequired.bulkDelete": "Item IDs are required for bulk delete action",
|
|
146
|
+
"action.itemsDeleted": {
|
|
147
|
+
one: "{{count}} item deleted successfully",
|
|
148
|
+
other: "{{count}} items deleted successfully"
|
|
149
|
+
},
|
|
150
|
+
"action.itemIdRequired.restore": "Item ID is required for restore action",
|
|
151
|
+
"action.restoreUnsupported": "Restore is not supported for this collection",
|
|
152
|
+
"action.itemRestored": "Item restored successfully",
|
|
153
|
+
"action.itemIdsRequired.bulkRestore": "Item IDs are required for bulk restore action",
|
|
154
|
+
"action.itemsRestored": {
|
|
155
|
+
one: "{{count}} item restored successfully",
|
|
156
|
+
other: "{{count}} items restored successfully"
|
|
157
|
+
},
|
|
158
|
+
"action.itemIdRequired.duplicate": "Item ID is required for duplicate action",
|
|
159
|
+
"action.itemNotFound": "Item not found",
|
|
160
|
+
"action.itemDuplicated": "Item duplicated successfully",
|
|
161
|
+
"action.itemIdRequired.transition": "Item ID is required for transition action",
|
|
162
|
+
"action.targetStageRequired": "Target stage is required for transition action",
|
|
163
|
+
"action.workflowUnsupported": "Workflow transitions are not supported for this collection",
|
|
164
|
+
"action.unknownBuiltin": "Unknown built-in action: {{action}}",
|
|
165
|
+
"action.fieldRequired": "Field \"{{field}}\" is required",
|
|
103
166
|
"relation.select": "Select {{name}}",
|
|
104
167
|
"relation.clear": "Clear selection",
|
|
105
168
|
"relation.search": "Search {{name}}...",
|
|
@@ -124,6 +187,10 @@ var en_default = {
|
|
|
124
187
|
"blocks.searchPlaceholder": "Search blocks...",
|
|
125
188
|
"blocks.uncategorized": "Other",
|
|
126
189
|
"blocks.noEditableFields": "This block has no editable fields.",
|
|
190
|
+
"blocks.emptyTitle": "No blocks yet",
|
|
191
|
+
"blocks.libraryDescription": "Select a block type to add to your content",
|
|
192
|
+
"blocks.noSearchResults": "No blocks found",
|
|
193
|
+
"blocks.tryDifferentSearch": "Try a different search term",
|
|
127
194
|
"blocks.noDefinitions": "No block definitions registered",
|
|
128
195
|
"blocks.noDefinitionsHint": "Register blocks with .blocks() in your admin configuration",
|
|
129
196
|
"form.id": "ID",
|
|
@@ -194,6 +261,7 @@ var en_default = {
|
|
|
194
261
|
"auth.setupDescription": "Create your first admin account to get started.",
|
|
195
262
|
"auth.profile": "Profile",
|
|
196
263
|
"auth.myAccount": "My account",
|
|
264
|
+
"auth.user": "User",
|
|
197
265
|
"auth.logoutFailed": "Failed to log out. Please try again.",
|
|
198
266
|
"auth.forgotPasswordTitle": "Forgot password",
|
|
199
267
|
"auth.forgotPasswordDescription": "Enter your email to receive a password reset link",
|
|
@@ -232,6 +300,8 @@ var en_default = {
|
|
|
232
300
|
"auth.invalidLink": "Invalid Link",
|
|
233
301
|
"auth.invalidLinkDescription": "The password reset link is invalid or has expired.",
|
|
234
302
|
"auth.requestNewResetLink": "Please request a new password reset link.",
|
|
303
|
+
"auth.setupAlreadyCompleted": "Setup already completed - admin users exist in the system",
|
|
304
|
+
"auth.failedToCreateUserAccount": "Failed to create user account",
|
|
235
305
|
"error.notFound": "Not found",
|
|
236
306
|
"error.serverError": "Server error",
|
|
237
307
|
"error.networkError": "Network error. Please check your connection.",
|
|
@@ -255,6 +325,7 @@ var en_default = {
|
|
|
255
325
|
"error.pageNotFoundDescription": "The page you're looking for doesn't exist.",
|
|
256
326
|
"error.accessRestricted": "Access Restricted",
|
|
257
327
|
"error.accessRestrictedDescription": "You don't have permission to access this page. Contact your administrator if you believe this is an error.",
|
|
328
|
+
"error.accessRestrictedResourceDescription": "The {{type}} \"{{name}}\" is not available in the admin panel. It may be hidden or you do not have permission to access it.",
|
|
258
329
|
"error.tryAgain": "Try again",
|
|
259
330
|
"error.backToDashboard": "Back to Dashboard",
|
|
260
331
|
"error.noUploadCollection": "No upload collection is configured.",
|
|
@@ -269,6 +340,7 @@ var en_default = {
|
|
|
269
340
|
"error.failedToSendResetEmail": "Failed to send reset email",
|
|
270
341
|
"error.failedToResetPassword": "Failed to reset password",
|
|
271
342
|
"error.failedToCreateAccount": "Failed to create account",
|
|
343
|
+
"error.failedToCreateAdminAccount": "Failed to create admin account",
|
|
272
344
|
"error.failedToSendInvitation": "Failed to send invitation",
|
|
273
345
|
"error.anErrorOccurred": "An error occurred",
|
|
274
346
|
"error.uploadFailed": "Upload failed",
|
|
@@ -276,7 +348,9 @@ var en_default = {
|
|
|
276
348
|
"error.missingFieldComponent": "No component registered for field type: {{type}}",
|
|
277
349
|
"error.selectAtLeastOne": "Please select at least one asset",
|
|
278
350
|
"error.maxItemsAllowed": "Maximum {{max}} items allowed",
|
|
351
|
+
"error.unregisteredViewDescription": "View \"{{viewId}}\" is not registered in the admin view registry.",
|
|
279
352
|
"table.rowsPerPage": "Rows per page",
|
|
353
|
+
"table.show": "Show",
|
|
280
354
|
"table.of": "of",
|
|
281
355
|
"table.noResults": "No results",
|
|
282
356
|
"table.selectAll": "Select all",
|
|
@@ -293,6 +367,7 @@ var en_default = {
|
|
|
293
367
|
"table.hideColumn": "Hide column",
|
|
294
368
|
"table.showColumn": "Show column",
|
|
295
369
|
"table.noItemsInCollection": "No items found in this collection",
|
|
370
|
+
"table.emptyDescription": "Records will appear here once they are created.",
|
|
296
371
|
"table.pagination": "Pagination",
|
|
297
372
|
"table.editing": "Editing",
|
|
298
373
|
"upload.dropzone": "Drop files here or click to upload",
|
|
@@ -337,6 +412,17 @@ var en_default = {
|
|
|
337
412
|
"editor.underline": "Underline",
|
|
338
413
|
"editor.strikethrough": "Strikethrough",
|
|
339
414
|
"editor.heading": "Heading {{level}}",
|
|
415
|
+
"editor.richTextToolbar": "Rich text toolbar",
|
|
416
|
+
"editor.blockType": "Block type",
|
|
417
|
+
"editor.selectionBlockType": "Selection block type",
|
|
418
|
+
"editor.paragraph": "Paragraph",
|
|
419
|
+
"editor.textBlocks": "Text blocks",
|
|
420
|
+
"editor.headings": "Headings",
|
|
421
|
+
"editor.blocks": "Blocks",
|
|
422
|
+
"editor.formatting": "Formatting",
|
|
423
|
+
"editor.moreFormatting": "More formatting",
|
|
424
|
+
"editor.alignment": "Alignment",
|
|
425
|
+
"editor.insert": "Insert",
|
|
340
426
|
"editor.link": "Insert link",
|
|
341
427
|
"editor.image": "Insert image",
|
|
342
428
|
"editor.list": "List",
|
|
@@ -371,6 +457,17 @@ var en_default = {
|
|
|
371
457
|
"editor.uploading": "Uploading...",
|
|
372
458
|
"editor.browseLibrary": "Browse library",
|
|
373
459
|
"editor.startWriting": "Start writing...",
|
|
460
|
+
"editor.pasteOrTypeLink": "Paste or type a link...",
|
|
461
|
+
"editor.paragraphDescription": "Start with plain text",
|
|
462
|
+
"editor.heading1Description": "Large section heading",
|
|
463
|
+
"editor.heading2Description": "Medium section heading",
|
|
464
|
+
"editor.heading3Description": "Small section heading",
|
|
465
|
+
"editor.bulletListDescription": "Create a bulleted list",
|
|
466
|
+
"editor.orderedListDescription": "Create an ordered list",
|
|
467
|
+
"editor.quoteDescription": "Capture a quote",
|
|
468
|
+
"editor.codeBlockDescription": "Insert code snippet",
|
|
469
|
+
"editor.dividerDescription": "Insert a horizontal rule",
|
|
470
|
+
"editor.tableDescription": "Insert a 3x3 table",
|
|
374
471
|
"toast.success": "Success",
|
|
375
472
|
"toast.error": "Error",
|
|
376
473
|
"toast.warning": "Warning",
|
|
@@ -518,8 +615,14 @@ var en_default = {
|
|
|
518
615
|
"viewOptions.savedViews": "Saved Views",
|
|
519
616
|
"viewOptions.apply": "Apply",
|
|
520
617
|
"viewOptions.reset": "Reset",
|
|
618
|
+
"viewOptions.realtime": "Realtime updates",
|
|
619
|
+
"viewOptions.realtimeDescription": "Auto-refresh this table when data changes.",
|
|
521
620
|
"viewOptions.showDeleted": "Show deleted",
|
|
522
621
|
"viewOptions.showDeletedDescription": "Include soft-deleted records in this view.",
|
|
622
|
+
"viewOptions.groupBy": "Group by",
|
|
623
|
+
"viewOptions.groupByDescription": "Group the current page by a configured field.",
|
|
624
|
+
"viewOptions.noGrouping": "No grouping",
|
|
625
|
+
"viewOptions.sort": "Sort",
|
|
523
626
|
"version.history": "Version history",
|
|
524
627
|
"version.historyDescription": "Browse previous versions and restore one if needed.",
|
|
525
628
|
"version.globalHistoryDescription": "Browse previous global versions and restore one if needed.",
|
|
@@ -537,7 +640,7 @@ var en_default = {
|
|
|
537
640
|
"version.revertConfirmDescription": "This will replace current content with version {{number}}.",
|
|
538
641
|
"viewOptions.saveCurrentConfig": "Save Current Configuration",
|
|
539
642
|
"viewOptions.viewNamePlaceholder": "View Name...",
|
|
540
|
-
"viewOptions.saveDescription": "Saves current columns, filters, and sort order.",
|
|
643
|
+
"viewOptions.saveDescription": "Saves current columns, filters, grouping, and sort order.",
|
|
541
644
|
"viewOptions.noChangesToSave": "No filters or column changes to save.",
|
|
542
645
|
"viewOptions.noSavedViews": "No saved views yet.",
|
|
543
646
|
"viewOptions.filtersCount": {
|
|
@@ -564,6 +667,7 @@ var en_default = {
|
|
|
564
667
|
other: "{{count}} filters active"
|
|
565
668
|
},
|
|
566
669
|
"viewOptions.clearFilters": "Clear filters",
|
|
670
|
+
"viewOptions.noResultsDescription": "No records match the active filters. Adjust or clear them to see more results.",
|
|
567
671
|
"filter.contains": "Contains",
|
|
568
672
|
"filter.notContains": "Does not contain",
|
|
569
673
|
"filter.equals": "Equals",
|
|
@@ -584,6 +688,7 @@ var en_default = {
|
|
|
584
688
|
"preview.show": "Preview",
|
|
585
689
|
"preview.hide": "Hide Preview",
|
|
586
690
|
"preview.title": "Preview",
|
|
691
|
+
"preview.mode": "Preview Mode",
|
|
587
692
|
"preview.livePreview": "Live Preview",
|
|
588
693
|
"preview.fullscreen": "Fullscreen",
|
|
589
694
|
"preview.close": "Close preview",
|
|
@@ -595,6 +700,18 @@ var en_default = {
|
|
|
595
700
|
"preview.refreshing": "Refreshing...",
|
|
596
701
|
"preview.showPreview": "Show Preview",
|
|
597
702
|
"preview.hidePreview": "Hide Preview",
|
|
703
|
+
"preview.pathRequired": "Path is required",
|
|
704
|
+
"preview.collectionNameRequired": "Collection name is required",
|
|
705
|
+
"preview.adminSessionRequired": "Admin session required",
|
|
706
|
+
"preview.invalidTokenFormat": "Invalid token format",
|
|
707
|
+
"preview.invalidSignature": "Invalid signature",
|
|
708
|
+
"preview.invalidPayload": "Invalid payload",
|
|
709
|
+
"preview.tokenExpired": "Token expired",
|
|
710
|
+
"preview.invalidPath": "Invalid path",
|
|
711
|
+
"preview.collectionNotFound": "Collection \"{{collection}}\" not found",
|
|
712
|
+
"preview.noUrlConfigured": "No preview URL configured for this collection",
|
|
713
|
+
"preview.disabledForCollection": "Preview is disabled for this collection",
|
|
714
|
+
"preview.generateUrlFailed": "Failed to generate preview URL: {{message}}",
|
|
598
715
|
"autosave.saving": "Saving...",
|
|
599
716
|
"autosave.saved": "Saved",
|
|
600
717
|
"autosave.unsavedChanges": "Unsaved changes",
|
|
@@ -611,6 +728,19 @@ var en_default = {
|
|
|
611
728
|
one: "{{count}}h ago",
|
|
612
729
|
other: "{{count}}h ago"
|
|
613
730
|
},
|
|
731
|
+
"time.justNow": "just now",
|
|
732
|
+
"time.minutesAgoShort": {
|
|
733
|
+
one: "{{count}}m ago",
|
|
734
|
+
other: "{{count}}m ago"
|
|
735
|
+
},
|
|
736
|
+
"time.hoursAgoShort": {
|
|
737
|
+
one: "{{count}}h ago",
|
|
738
|
+
other: "{{count}}h ago"
|
|
739
|
+
},
|
|
740
|
+
"time.daysAgoShort": {
|
|
741
|
+
one: "{{count}}d ago",
|
|
742
|
+
other: "{{count}}d ago"
|
|
743
|
+
},
|
|
614
744
|
"globalSearch.placeholder": "Search collections, globals, actions, records...",
|
|
615
745
|
"globalSearch.collections": "Collections",
|
|
616
746
|
"globalSearch.globals": "Globals",
|
|
@@ -623,6 +753,7 @@ var en_default = {
|
|
|
623
753
|
"globalSearch.select": "to select",
|
|
624
754
|
"collectionSearch.placeholder": "Search records...",
|
|
625
755
|
"collectionSearch.noResults": "No matching records found",
|
|
756
|
+
"collectionSearch.noResultsDescription": "Try a different search term or clear the search to return to the full list.",
|
|
626
757
|
"collectionSearch.searching": "Searching...",
|
|
627
758
|
"audit.collection.label": "Audit Log",
|
|
628
759
|
"audit.collection.description": "Browse all recorded changes and user activity",
|
|
@@ -634,6 +765,7 @@ var en_default = {
|
|
|
634
765
|
"audit.widget.recentActivity.empty": "No recent activity recorded.",
|
|
635
766
|
"history.title": "History",
|
|
636
767
|
"history.description": "Changes and activity for this record",
|
|
768
|
+
"history.versionDescription": "Browse version snapshots and inspect field-level diffs.",
|
|
637
769
|
"history.tabActivity": "Activity",
|
|
638
770
|
"history.tabVersions": "Versions",
|
|
639
771
|
"history.empty": "No activity recorded",
|
|
@@ -642,6 +774,36 @@ var en_default = {
|
|
|
642
774
|
other: "Show changes ({{count}})"
|
|
643
775
|
},
|
|
644
776
|
"history.hideChanges": "Hide changes",
|
|
777
|
+
"history.changedFields": {
|
|
778
|
+
one: "{{count}} field changed",
|
|
779
|
+
other: "{{count}} fields changed"
|
|
780
|
+
},
|
|
781
|
+
"history.moreFields": {
|
|
782
|
+
one: "{{count}} more",
|
|
783
|
+
other: "{{count}} more"
|
|
784
|
+
},
|
|
785
|
+
"history.changeAdded": "Added",
|
|
786
|
+
"history.changeRemoved": "Removed",
|
|
787
|
+
"history.changeChanged": "Changed",
|
|
788
|
+
"history.diffAgainstVersion": "Diff against version {{number}}",
|
|
789
|
+
"history.initialSnapshot": "Initial snapshot",
|
|
790
|
+
"history.noFieldChanges": "No field-level changes in this snapshot.",
|
|
791
|
+
"history.before": "Before",
|
|
792
|
+
"history.after": "After",
|
|
793
|
+
"history.stage": "Stage",
|
|
794
|
+
"history.systemUser": "System",
|
|
795
|
+
"history.itemsCount": {
|
|
796
|
+
one: "{{count}} item",
|
|
797
|
+
other: "{{count}} items"
|
|
798
|
+
},
|
|
799
|
+
"history.blocksCount": {
|
|
800
|
+
one: "{{count}} block",
|
|
801
|
+
other: "{{count}} blocks"
|
|
802
|
+
},
|
|
803
|
+
"history.objectWithKeys": {
|
|
804
|
+
one: "Object with {{count}} key",
|
|
805
|
+
other: "Object with {{count}} keys"
|
|
806
|
+
},
|
|
645
807
|
"workflow.transition": "Transition",
|
|
646
808
|
"workflow.currentStage": "Current stage",
|
|
647
809
|
"workflow.transitionTo": "Transition to {{stage}}",
|
|
@@ -658,6 +820,8 @@ var en_default = {
|
|
|
658
820
|
"lock.openElsewhere": "You have this document open in another tab. Changes will sync automatically.",
|
|
659
821
|
"lock.cannotSave": "Cannot save - document is locked by another user",
|
|
660
822
|
"ui.toggleSidebar": "Toggle Sidebar",
|
|
823
|
+
"ui.expandSidebar": "Expand sidebar",
|
|
824
|
+
"ui.skipToMainContent": "Skip to main content",
|
|
661
825
|
"ui.processing": "Processing...",
|
|
662
826
|
"ui.commandPalette": "Command Palette",
|
|
663
827
|
"ui.commandPaletteDescription": "Search for a command to run...",
|
|
@@ -682,6 +846,7 @@ var en_default = {
|
|
|
682
846
|
"media.audio": "Audio",
|
|
683
847
|
"media.documents": "Documents",
|
|
684
848
|
"media.searchPlaceholder": "Search by filename...",
|
|
849
|
+
"media.noAssets": "No assets found",
|
|
685
850
|
"field.moveUp": "Move up",
|
|
686
851
|
"field.moveDown": "Move down",
|
|
687
852
|
"field.dragToReorder": "Drag to reorder",
|