@tachybase/client 0.23.8-alpha.15
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/es/api-client/APIClient.d.ts +15 -0
- package/es/api-client/APIClientProvider.d.ts +7 -0
- package/es/api-client/context.d.ts +2 -0
- package/es/api-client/hooks/assign.d.ts +9 -0
- package/es/api-client/hooks/index.d.ts +3 -0
- package/es/api-client/hooks/useAPIClient.d.ts +1 -0
- package/es/api-client/hooks/useRequest.d.ts +22 -0
- package/es/api-client/hooks/useResource.d.ts +1 -0
- package/es/api-client/index.d.ts +4 -0
- package/es/application/AppSchemaComponentProvider.d.ts +3 -0
- package/es/application/Application.d.ts +108 -0
- package/es/application/AttachmentPreviewManager.d.ts +15 -0
- package/es/application/NoticesManager.d.ts +46 -0
- package/es/application/Plugin.d.ts +21 -0
- package/es/application/PluginContextMenu.d.ts +17 -0
- package/es/application/PluginManager.d.ts +38 -0
- package/es/application/RouterManager.d.ts +46 -0
- package/es/application/SystemSettingsManager.d.ts +54 -0
- package/es/application/UserSettingsManager.d.ts +54 -0
- package/es/application/WebSocketClient.d.ts +35 -0
- package/es/application/components/AppComponent.d.ts +6 -0
- package/es/application/components/BlankComponent.d.ts +4 -0
- package/es/application/components/MainComponent.d.ts +2 -0
- package/es/application/components/RouterContextCleaner.d.ts +4 -0
- package/es/application/components/defaultComponents.d.ts +9 -0
- package/es/application/components/index.d.ts +4 -0
- package/es/application/context.d.ts +2 -0
- package/es/application/hoc/index.d.ts +1 -0
- package/es/application/hoc/withDynamicSchemaProps.d.ts +7 -0
- package/es/application/hooks/index.d.ts +3 -0
- package/es/application/hooks/useApp.d.ts +2 -0
- package/es/application/hooks/usePlugin.d.ts +3 -0
- package/es/application/hooks/useRouter.d.ts +1 -0
- package/es/application/index.d.ts +15 -0
- package/es/application/schema-initializer/SchemaInitializer.d.ts +12 -0
- package/es/application/schema-initializer/SchemaInitializerManager.d.ts +24 -0
- package/es/application/schema-initializer/components/SchemaInitializerActionModal.d.ts +11 -0
- package/es/application/schema-initializer/components/SchemaInitializerButton.d.ts +7 -0
- package/es/application/schema-initializer/components/SchemaInitializerChildren.d.ts +6 -0
- package/es/application/schema-initializer/components/SchemaInitializerDivider.d.ts +2 -0
- package/es/application/schema-initializer/components/SchemaInitializerItem.d.ts +14 -0
- package/es/application/schema-initializer/components/SchemaInitializerItemGroup.d.ts +9 -0
- package/es/application/schema-initializer/components/SchemaInitializerItems.d.ts +8 -0
- package/es/application/schema-initializer/components/SchemaInitializerSelect.d.ts +11 -0
- package/es/application/schema-initializer/components/SchemaInitializerSubMenu.d.ts +17 -0
- package/es/application/schema-initializer/components/SchemaInitializerSwitch.d.ts +8 -0
- package/es/application/schema-initializer/components/index.d.ts +10 -0
- package/es/application/schema-initializer/components/style.d.ts +1 -0
- package/es/application/schema-initializer/context/index.d.ts +16 -0
- package/es/application/schema-initializer/hoc/index.d.ts +3 -0
- package/es/application/schema-initializer/hooks/index.d.ts +19 -0
- package/es/application/schema-initializer/hooks/useAriaAttributeOfMenuItem.d.ts +10 -0
- package/es/application/schema-initializer/index.d.ts +7 -0
- package/es/application/schema-initializer/types.d.ts +80 -0
- package/es/application/schema-settings/SchemaSettings.d.ts +10 -0
- package/es/application/schema-settings/SchemaSettingsDefaults.d.ts +2 -0
- package/es/application/schema-settings/SchemaSettingsManager.d.ts +23 -0
- package/es/application/schema-settings/components/SchemaSettingsChildren.d.ts +7 -0
- package/es/application/schema-settings/components/SchemaSettingsIcon.d.ts +6 -0
- package/es/application/schema-settings/components/SchemaSettingsWrapper.d.ts +6 -0
- package/es/application/schema-settings/components/index.d.ts +2 -0
- package/es/application/schema-settings/context/index.d.ts +3 -0
- package/es/application/schema-settings/hooks/index.d.ts +18 -0
- package/es/application/schema-settings/index.d.ts +6 -0
- package/es/application/schema-settings/types.d.ts +62 -0
- package/es/application/schema-toolbar/context/index.d.ts +4 -0
- package/es/application/schema-toolbar/hooks/index.d.ts +9 -0
- package/es/application/schema-toolbar/index.d.ts +2 -0
- package/es/application/utils/globalDeps.d.ts +5 -0
- package/es/application/utils/index.d.ts +3 -0
- package/es/application/utils/remotePlugins.d.ts +36 -0
- package/es/async-data-provider/index.d.ts +18 -0
- package/es/block-provider/BlockProvider.d.ts +76 -0
- package/es/block-provider/DetailsBlockProvider.d.ts +15 -0
- package/es/block-provider/FilterFormBlockProvider.d.ts +2 -0
- package/es/block-provider/FormBlockProvider.d.ts +55 -0
- package/es/block-provider/FormFieldProvider.d.ts +8 -0
- package/es/block-provider/MobileProvider.d.ts +5 -0
- package/es/block-provider/PageLayout.d.ts +7 -0
- package/es/block-provider/TableBlockProvider.d.ts +5 -0
- package/es/block-provider/TableFieldProvider.d.ts +41 -0
- package/es/block-provider/TableSelectorProvider.d.ts +36 -0
- package/es/block-provider/TreeBlockProvider.d.ts +10 -0
- package/es/block-provider/hooks/index.d.ts +119 -0
- package/es/block-provider/hooks/useDataBlockSourceId.d.ts +15 -0
- package/es/block-provider/hooks/useFormActiveFields.d.ts +23 -0
- package/es/block-provider/hooks/useIsMobile.d.ts +1 -0
- package/es/block-provider/hooks/useParsedFilter.d.ts +5 -0
- package/es/block-provider/index.d.ts +11 -0
- package/es/built-in/acl/ACLProvider.d.ts +26 -0
- package/es/built-in/acl/ACLShortcut.d.ts +2 -0
- package/es/built-in/acl/Configuration/ConfigureCenter.d.ts +3 -0
- package/es/built-in/acl/Configuration/MenuConfigure.d.ts +2 -0
- package/es/built-in/acl/Configuration/MenuItemsProvider.d.ts +4 -0
- package/es/built-in/acl/Configuration/PermisionProvider.d.ts +4 -0
- package/es/built-in/acl/Configuration/RoleConfigure.d.ts +2 -0
- package/es/built-in/acl/Configuration/RoleTable.d.ts +3 -0
- package/es/built-in/acl/Configuration/RolesResourcesActions.d.ts +3 -0
- package/es/built-in/acl/Configuration/ScopeSelect.d.ts +3 -0
- package/es/built-in/acl/Configuration/StrategyActions.d.ts +2 -0
- package/es/built-in/acl/Configuration/index.d.ts +9 -0
- package/es/built-in/acl/Configuration/schemas/roles.d.ts +2 -0
- package/es/built-in/acl/Configuration/schemas/scopes.d.ts +11 -0
- package/es/built-in/acl/Configuration/schemas/useRoleResourceValues.d.ts +4 -0
- package/es/built-in/acl/Configuration/schemas/useSaveRoleResourceAction.d.ts +3 -0
- package/es/built-in/acl/index.d.ts +7 -0
- package/es/built-in/acl/style.d.ts +1 -0
- package/es/built-in/admin-layout/AdminContent.d.ts +2 -0
- package/es/built-in/admin-layout/AdminTabs.d.ts +2 -0
- package/es/built-in/admin-layout/NoticeArea.d.ts +2 -0
- package/es/built-in/admin-layout/components/AddNewButton.d.ts +2 -0
- package/es/built-in/admin-layout/components/WelcomeCard.d.ts +2 -0
- package/es/built-in/admin-layout/index.d.ts +11 -0
- package/es/built-in/admin-layout/style.d.ts +14 -0
- package/es/built-in/assistant/Assistant.provider.d.ts +4 -0
- package/es/built-in/assistant/ai-chat/index.d.ts +8 -0
- package/es/built-in/assistant/calculator/AutoScalingText.d.ts +4 -0
- package/es/built-in/assistant/calculator/Calculator.d.ts +2 -0
- package/es/built-in/assistant/calculator/CalculatorDisplay.d.ts +5 -0
- package/es/built-in/assistant/calculator/CalculatorKey.d.ts +6 -0
- package/es/built-in/assistant/calculator/CalculatorProvider.d.ts +10 -0
- package/es/built-in/assistant/calculator/Draggable.d.ts +8 -0
- package/es/built-in/assistant/calculator/style.d.ts +3 -0
- package/es/built-in/assistant/index.d.ts +4 -0
- package/es/built-in/assistant/search-and-jump/index.d.ts +16 -0
- package/es/built-in/attachment-preview/index.d.ts +4 -0
- package/es/built-in/attachment-preview/interface.d.ts +11 -0
- package/es/built-in/attachment-preview/previewers/file-default.d.ts +8 -0
- package/es/built-in/attachment-preview/previewers/file-pdf.d.ts +9 -0
- package/es/built-in/attachment-preview/previewers/file-pdf.style.d.ts +5 -0
- package/es/built-in/attachment-preview/previewers/file-sheet.d.ts +20 -0
- package/es/built-in/attachment-preview/previewers/file-sheet.style.d.ts +5 -0
- package/es/built-in/attachment-preview/previewers/image-jpeg.d.ts +7 -0
- package/es/built-in/attachment-preview/previewers/image-png.d.ts +7 -0
- package/es/built-in/attachment-preview/previewers/image-svg.d.ts +7 -0
- package/es/built-in/attachment-preview/previewers/index.d.ts +6 -0
- package/es/built-in/block-schema-component/index.d.ts +6 -0
- package/es/built-in/built-in-collections/index.d.ts +6 -0
- package/es/built-in/context-menu/ContextMenu.provider.d.ts +4 -0
- package/es/built-in/context-menu/ContextMenuItemsProps.d.ts +46 -0
- package/es/built-in/context-menu/index.d.ts +5 -0
- package/es/built-in/context-menu/useContextMenu.d.ts +11 -0
- package/es/built-in/document-title/index.d.ts +19 -0
- package/es/built-in/dynamic-page/DynamicPage.d.ts +2 -0
- package/es/built-in/dynamic-page/index.d.ts +22 -0
- package/es/built-in/dynamic-page/style.d.ts +27 -0
- package/es/built-in/dynamic-page/utils.d.ts +28 -0
- package/es/built-in/index.d.ts +13 -0
- package/es/built-in/locale/LocalePlugin.d.ts +5 -0
- package/es/built-in/locale/loadConstrueLocale.d.ts +1 -0
- package/es/built-in/page-style/CustomAdminHeader.d.ts +2 -0
- package/es/built-in/page-style/PageStyle.provider.d.ts +11 -0
- package/es/built-in/page-style/TabContent.d.ts +7 -0
- package/es/built-in/page-style/TabHeader.d.ts +8 -0
- package/es/built-in/page-style/index.d.ts +4 -0
- package/es/built-in/page-style/usePageStyle.d.ts +1 -0
- package/es/built-in/page-style/useTabSettings.d.ts +10 -0
- package/es/built-in/pinned-list/PinnedPluginListProvider.d.ts +6 -0
- package/es/built-in/pinned-list/context.d.ts +3 -0
- package/es/built-in/pinned-list/index.d.ts +6 -0
- package/es/built-in/pm/PluginCard.d.ts +7 -0
- package/es/built-in/pm/PluginDetail.d.ts +8 -0
- package/es/built-in/pm/PluginDocument.d.ts +7 -0
- package/es/built-in/pm/PluginForm/form/PluginNpmForm.d.ts +10 -0
- package/es/built-in/pm/PluginForm/form/PluginUploadForm.d.ts +9 -0
- package/es/built-in/pm/PluginForm/form/PluginUrlForm.d.ts +9 -0
- package/es/built-in/pm/PluginForm/modal/PluginAddModal.d.ts +7 -0
- package/es/built-in/pm/PluginForm/modal/PluginUpgradeModal.d.ts +9 -0
- package/es/built-in/pm/PluginManager.d.ts +19 -0
- package/es/built-in/pm/index.d.ts +11 -0
- package/es/built-in/pm/style.d.ts +50 -0
- package/es/built-in/pm/types.d.ts +25 -0
- package/es/built-in/quick-access/Action.d.ts +2 -0
- package/es/built-in/quick-access/Block.d.ts +5 -0
- package/es/built-in/quick-access/CustomRequestActionSchemaInitializerItem.d.ts +4 -0
- package/es/built-in/quick-access/LinkActionSchemaInitializerItem.d.ts +4 -0
- package/es/built-in/quick-access/ModalActionSchemaInitializerItem.d.ts +2 -0
- package/es/built-in/quick-access/PopupActionSchemaInitializerItem.d.ts +4 -0
- package/es/built-in/quick-access/SchemaSettingsBlockTitleItem.d.ts +2 -0
- package/es/built-in/quick-access/blockInitializerItem.d.ts +2 -0
- package/es/built-in/quick-access/blockSchema.d.ts +2 -0
- package/es/built-in/quick-access/blockSettings.d.ts +6 -0
- package/es/built-in/quick-access/configureActions.d.ts +2 -0
- package/es/built-in/quick-access/index.d.ts +4 -0
- package/es/built-in/scroll-assistant/ScrollAssistant.provider.d.ts +4 -0
- package/es/built-in/scroll-assistant/ScrollAssistantStatus.provider.d.ts +8 -0
- package/es/built-in/scroll-assistant/index.d.ts +13 -0
- package/es/built-in/scroll-assistant/useJoystick.d.ts +1 -0
- package/es/built-in/setting-layout/AdminSettings.d.ts +3 -0
- package/es/built-in/setting-layout/SettingLayout.d.ts +8 -0
- package/es/built-in/setting-layout/SettingsCenterDropdown.d.ts +2 -0
- package/es/built-in/system-settings/SystemSettingsProvider.d.ts +7 -0
- package/es/built-in/system-settings/SystemSettingsShortcut.d.ts +2 -0
- package/es/built-in/system-settings/index.d.ts +6 -0
- package/es/built-in/system-version/SystemVersion.provider.d.ts +4 -0
- package/es/built-in/system-version/index.d.ts +4 -0
- package/es/built-in/user-settings/UserSettingsLayout.d.ts +2 -0
- package/es/built-in/user-settings/index.d.ts +4 -0
- package/es/built-in/user-settings/style.d.ts +50 -0
- package/es/collection-manager/CollectionHistoryProvider.d.ts +8 -0
- package/es/collection-manager/CollectionManagerProvider.d.ts +8 -0
- package/es/collection-manager/CollectionManagerSchemaComponentProvider.d.ts +2 -0
- package/es/collection-manager/CollectionProvider_deprecated.d.ts +12 -0
- package/es/collection-manager/Configuration/AddCollectionAction.d.ts +3 -0
- package/es/collection-manager/Configuration/AddFieldAction.d.ts +6 -0
- package/es/collection-manager/Configuration/AddSubFieldAction.d.ts +2 -0
- package/es/collection-manager/Configuration/DeleteCollectionAction.d.ts +18 -0
- package/es/collection-manager/Configuration/EditCollectionAction.d.ts +7 -0
- package/es/collection-manager/Configuration/EditFieldAction.d.ts +3 -0
- package/es/collection-manager/Configuration/EditSubFieldAction.d.ts +2 -0
- package/es/collection-manager/Configuration/ImportCollectionMetaAction.d.ts +2 -0
- package/es/collection-manager/Configuration/OverridingCollectionField.d.ts +3 -0
- package/es/collection-manager/Configuration/SyncFieldsAction.d.ts +3 -0
- package/es/collection-manager/Configuration/SyncSQLFieldsAction.d.ts +4 -0
- package/es/collection-manager/Configuration/ViewInheritedField.d.ts +3 -0
- package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +2 -0
- package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.d.ts +2 -0
- package/es/collection-manager/Configuration/components/CollectionTemplateTag.d.ts +2 -0
- package/es/collection-manager/Configuration/components/FieldSummary.d.ts +5 -0
- package/es/collection-manager/Configuration/components/Summary.d.ts +6 -0
- package/es/collection-manager/Configuration/components/TemplateSummary.d.ts +7 -0
- package/es/collection-manager/Configuration/components/index.d.ts +9 -0
- package/es/collection-manager/Configuration/index.d.ts +18 -0
- package/es/collection-manager/Configuration/interfaces.d.ts +16 -0
- package/es/collection-manager/ResourceActionProvider.d.ts +37 -0
- package/es/collection-manager/action-hooks.d.ts +82 -0
- package/es/collection-manager/collectionPlugin.d.ts +7 -0
- package/es/collection-manager/context.d.ts +4 -0
- package/es/collection-manager/hooks/index.d.ts +4 -0
- package/es/collection-manager/hooks/useCollectionDataSource.d.ts +1 -0
- package/es/collection-manager/hooks/useCollectionField_deprecated.d.ts +4 -0
- package/es/collection-manager/hooks/useCollectionManager_deprecated.d.ts +54 -0
- package/es/collection-manager/hooks/useCollection_deprecated.d.ts +45 -0
- package/es/collection-manager/hooks/useDialect.d.ts +5 -0
- package/es/collection-manager/index.d.ts +21 -0
- package/es/collection-manager/interfaces/checkbox.d.ts +60 -0
- package/es/collection-manager/interfaces/checkboxGroup.d.ts +130 -0
- package/es/collection-manager/interfaces/chinaRegion.d.ts +102 -0
- package/es/collection-manager/interfaces/collection.d.ts +137 -0
- package/es/collection-manager/interfaces/color.d.ts +55 -0
- package/es/collection-manager/interfaces/components/index.d.ts +7 -0
- package/es/collection-manager/interfaces/createdAt.d.ts +70 -0
- package/es/collection-manager/interfaces/createdBy.d.ts +54 -0
- package/es/collection-manager/interfaces/datetime.d.ts +79 -0
- package/es/collection-manager/interfaces/email.d.ts +77 -0
- package/es/collection-manager/interfaces/icon.d.ts +36 -0
- package/es/collection-manager/interfaces/id.d.ts +62 -0
- package/es/collection-manager/interfaces/index.d.ts +39 -0
- package/es/collection-manager/interfaces/input.d.ts +170 -0
- package/es/collection-manager/interfaces/integer.d.ts +166 -0
- package/es/collection-manager/interfaces/json.d.ts +72 -0
- package/es/collection-manager/interfaces/linkTo.d.ts +82 -0
- package/es/collection-manager/interfaces/m2m.d.ts +275 -0
- package/es/collection-manager/interfaces/m2o.d.ts +222 -0
- package/es/collection-manager/interfaces/markdown.d.ts +88 -0
- package/es/collection-manager/interfaces/multipleSelect.d.ts +133 -0
- package/es/collection-manager/interfaces/nanoid.d.ts +69 -0
- package/es/collection-manager/interfaces/number.d.ts +133 -0
- package/es/collection-manager/interfaces/o2m.d.ts +252 -0
- package/es/collection-manager/interfaces/o2o.d.ts +658 -0
- package/es/collection-manager/interfaces/password.d.ts +84 -0
- package/es/collection-manager/interfaces/percent.d.ts +147 -0
- package/es/collection-manager/interfaces/phone.d.ts +75 -0
- package/es/collection-manager/interfaces/properties/index.d.ts +117 -0
- package/es/collection-manager/interfaces/properties/operators.d.ts +238 -0
- package/es/collection-manager/interfaces/radioGroup.d.ts +133 -0
- package/es/collection-manager/interfaces/richText.d.ts +90 -0
- package/es/collection-manager/interfaces/select.d.ts +138 -0
- package/es/collection-manager/interfaces/sort.d.ts +123 -0
- package/es/collection-manager/interfaces/subTable.d.ts +164 -0
- package/es/collection-manager/interfaces/tableoid.d.ts +51 -0
- package/es/collection-manager/interfaces/textarea.d.ts +90 -0
- package/es/collection-manager/interfaces/time.d.ts +67 -0
- package/es/collection-manager/interfaces/types.d.ts +30 -0
- package/es/collection-manager/interfaces/unixTimestamp.d.ts +71 -0
- package/es/collection-manager/interfaces/updatedAt.d.ts +70 -0
- package/es/collection-manager/interfaces/updatedBy.d.ts +54 -0
- package/es/collection-manager/interfaces/url.d.ts +58 -0
- package/es/collection-manager/interfaces/uuid.d.ts +56 -0
- package/es/collection-manager/mixins/InheritanceCollectionMixin.d.ts +33 -0
- package/es/collection-manager/sub-table.d.ts +20 -0
- package/es/collection-manager/templates/components/PresetFields.d.ts +2 -0
- package/es/collection-manager/templates/components/PreviewFields.d.ts +2 -0
- package/es/collection-manager/templates/components/PreviewTable.d.ts +2 -0
- package/es/collection-manager/templates/components/sql-collection/FieldsConfigure.d.ts +2 -0
- package/es/collection-manager/templates/components/sql-collection/PreviewTable.d.ts +2 -0
- package/es/collection-manager/templates/components/sql-collection/SQLInput.d.ts +4 -0
- package/es/collection-manager/templates/components/sql-collection/SQLRequestProvider.d.ts +5 -0
- package/es/collection-manager/templates/components/sql-collection/index.d.ts +4 -0
- package/es/collection-manager/templates/expression.d.ts +55 -0
- package/es/collection-manager/templates/general.d.ts +11 -0
- package/es/collection-manager/templates/import.d.ts +11 -0
- package/es/collection-manager/templates/index.d.ts +6 -0
- package/es/collection-manager/templates/properties/index.d.ts +59 -0
- package/es/collection-manager/templates/sql.d.ts +68 -0
- package/es/collection-manager/templates/tree.d.ts +75 -0
- package/es/collection-manager/templates/types.d.ts +57 -0
- package/es/collection-manager/templates/view.d.ts +114 -0
- package/es/collection-manager/types.d.ts +21 -0
- package/es/collection-manager/utils.d.ts +2 -0
- package/es/common/SelectWithTitle.d.ts +9 -0
- package/es/common/appInfo/CurrentAppInfoProvider.d.ts +12 -0
- package/es/common/appInfo/index.d.ts +1 -0
- package/es/common/index.d.ts +3 -0
- package/es/common/useFieldComponentName.d.ts +1 -0
- package/es/common/useNiceDropdownHeight.d.ts +5 -0
- package/es/data-source/collection/AssociationProvider.d.ts +14 -0
- package/es/data-source/collection/Collection.d.ts +125 -0
- package/es/data-source/collection/CollectionManager.d.ts +39 -0
- package/es/data-source/collection/CollectionManagerProvider.d.ts +12 -0
- package/es/data-source/collection/CollectionProvider.d.ts +11 -0
- package/es/data-source/collection/ExtendCollectionsProvider.d.ts +9 -0
- package/es/data-source/collection/index.d.ts +6 -0
- package/es/data-source/collection/utils.d.ts +50 -0
- package/es/data-source/collection-field/CollectionField.d.ts +11 -0
- package/es/data-source/collection-field/CollectionFieldProvider.d.ts +11 -0
- package/es/data-source/collection-field/index.d.ts +2 -0
- package/es/data-source/collection-field-interface/CollectionFieldInterface.d.ts +51 -0
- package/es/data-source/collection-field-interface/CollectionFieldInterfaceManager.d.ts +29 -0
- package/es/data-source/collection-field-interface/index.d.ts +2 -0
- package/es/data-source/collection-record/CollectionRecord.d.ts +13 -0
- package/es/data-source/collection-record/CollectionRecordProvider.d.ts +14 -0
- package/es/data-source/collection-record/index.d.ts +2 -0
- package/es/data-source/collection-record/isNewRecord.d.ts +12 -0
- package/es/data-source/collection-template/CollectionTemplate.d.ts +62 -0
- package/es/data-source/collection-template/CollectionTemplateManager.d.ts +10 -0
- package/es/data-source/collection-template/index.d.ts +2 -0
- package/es/data-source/commonsSettingsItem/fieldComponent.d.ts +2 -0
- package/es/data-source/commonsSettingsItem/index.d.ts +1 -0
- package/es/data-source/components/CollectionDeletedPlaceholder.d.ts +10 -0
- package/es/data-source/components/DataSourceApplicationProvider.d.ts +11 -0
- package/es/data-source/components/index.d.ts +2 -0
- package/es/data-source/data-block/DataBlockProvider.d.ts +73 -0
- package/es/data-source/data-block/DataBlockRequestProvider.d.ts +9 -0
- package/es/data-source/data-block/DataBlockResourceProvider.d.ts +7 -0
- package/es/data-source/data-block/context/ConfigSetting.provider.d.ts +7 -0
- package/es/data-source/data-block/index.d.ts +4 -0
- package/es/data-source/data-source/DataSource.d.ts +41 -0
- package/es/data-source/data-source/DataSourceManager.d.ts +47 -0
- package/es/data-source/data-source/DataSourceManagerProvider.d.ts +9 -0
- package/es/data-source/data-source/DataSourceProvider.d.ts +10 -0
- package/es/data-source/data-source/index.d.ts +4 -0
- package/es/data-source/index.d.ts +10 -0
- package/es/data-source/utils.d.ts +4 -0
- package/es/filter-provider/FilterProvider.d.ts +82 -0
- package/es/filter-provider/index.d.ts +2 -0
- package/es/filter-provider/utils.d.ts +44 -0
- package/es/flag-provider/FlagProvider.d.ts +26 -0
- package/es/flag-provider/hooks/useFlag.d.ts +1 -0
- package/es/flag-provider/index.d.ts +2 -0
- package/es/hooks/index.d.ts +2 -0
- package/es/hooks/useAdminSchemaUid.d.ts +1 -0
- package/es/hooks/useMenuItem.d.ts +39 -0
- package/es/hooks/useViewport.d.ts +1 -0
- package/es/i18n/i18n.d.ts +3 -0
- package/es/i18n/index.d.ts +1 -0
- package/es/icon/Icon.d.ts +16 -0
- package/es/icon/index.d.ts +1 -0
- package/es/icon/preloaded.d.ts +10 -0
- package/es/index.d.ts +47 -0
- package/es/locale/index.d.ts +272 -0
- package/es/modules/actions/ActionSchemaToolbar.d.ts +2 -0
- package/es/modules/actions/add-child/CreateChildInitializer.d.ts +2 -0
- package/es/modules/actions/add-child/addChildActionSettings.d.ts +2 -0
- package/es/modules/actions/add-new/CreateActionInitializer.d.ts +2 -0
- package/es/modules/actions/add-new/addNewActionSettings.d.ts +2 -0
- package/es/modules/actions/add-new/createFormBlockInitializers.d.ts +2 -0
- package/es/modules/actions/add-record/CustomizeAddRecordActionInitializer.d.ts +2 -0
- package/es/modules/actions/add-record/customizeAddRecordActionSettings.d.ts +2 -0
- package/es/modules/actions/add-record/customizeCreateFormBlockInitializers.d.ts +2 -0
- package/es/modules/actions/bulk-destroy/BulkDestroyActionInitializer.d.ts +2 -0
- package/es/modules/actions/bulk-destroy/bulkDeleteActionSettings.d.ts +2 -0
- package/es/modules/actions/delete/DestroyActionInitializer.d.ts +2 -0
- package/es/modules/actions/delete/deleteActionSettings.d.ts +2 -0
- package/es/modules/actions/disassociate/DisassociateActionInitializer.d.ts +2 -0
- package/es/modules/actions/disassociate/disassociateActionSettings.d.ts +2 -0
- package/es/modules/actions/expand-collapse/ExpandableActionInitializer.d.ts +2 -0
- package/es/modules/actions/expand-collapse/expendableActionSettings.d.ts +2 -0
- package/es/modules/actions/filter/FilterActionInitializer.d.ts +2 -0
- package/es/modules/actions/filter/filterActionSettings.d.ts +2 -0
- package/es/modules/actions/link/customizeLinkActionSettings.d.ts +4 -0
- package/es/modules/actions/link/hooks.d.ts +121 -0
- package/es/modules/actions/refresh/RefreshActionInitializer.d.ts +2 -0
- package/es/modules/actions/refresh/refreshActionSettings.d.ts +2 -0
- package/es/modules/actions/save-record/SaveRecordActionInitializer.d.ts +2 -0
- package/es/modules/actions/save-record/customizeSaveRecordActionSettings.d.ts +2 -0
- package/es/modules/actions/submit/CreateSubmitActionInitializer.d.ts +2 -0
- package/es/modules/actions/submit/UpdateSubmitActionInitializer.d.ts +2 -0
- package/es/modules/actions/submit/createSubmitActionSettings.d.ts +4 -0
- package/es/modules/actions/submit/updateSubmitActionSettings.d.ts +3 -0
- package/es/modules/actions/update-record/UpdateRecordActionInitializer.d.ts +2 -0
- package/es/modules/actions/update-record/customizeUpdateRecordActionSettings.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/PopupActionInitializer.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/RecordFormBlockInitializers.d.ts +5 -0
- package/es/modules/actions/view-edit-popup/UpdateActionInitializer.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/ViewActionInitializer.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/customizePopupActionSettings.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/editActionSettings.d.ts +2 -0
- package/es/modules/actions/view-edit-popup/viewActionSettings.d.ts +2 -0
- package/es/modules/blocks/BlockSchemaToolbar.d.ts +2 -0
- package/es/modules/blocks/data-blocks/details-multi/DetailsActionInitializers.d.ts +6 -0
- package/es/modules/blocks/data-blocks/details-multi/DetailsBlockInitializer.d.ts +26 -0
- package/es/modules/blocks/data-blocks/details-multi/createDetailsWithPaginationUISchema.d.ts +9 -0
- package/es/modules/blocks/data-blocks/details-multi/detailsWithPaginationSettings.d.ts +7 -0
- package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationDecoratorProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/details-multi/hooks/useDetailsWithPaginationProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/details-multi/setDataLoadingModeSettingsItem.d.ts +7 -0
- package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/details-single/ReadPrettyFormItemInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/details-single/RecordReadPrettyFormBlockInitializer.d.ts +8 -0
- package/es/modules/blocks/data-blocks/details-single/createDetailsUISchema.d.ts +11 -0
- package/es/modules/blocks/data-blocks/details-single/detailsBlockSettings.d.ts +7 -0
- package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsDecoratorProps.d.ts +12 -0
- package/es/modules/blocks/data-blocks/details-single/hooks/useDetailsProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/CreateFormBlockInitializer.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/FilterItemCustomSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/FormBlockInitializer.d.ts +93 -0
- package/es/modules/blocks/data-blocks/form/FormItemSchemaToolbar.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/RecordFormBlockInitializer.d.ts +13 -0
- package/es/modules/blocks/data-blocks/form/createCreateFormBlockUISchema.d.ts +14 -0
- package/es/modules/blocks/data-blocks/form/createEditFormBlockUISchema.d.ts +14 -0
- package/es/modules/blocks/data-blocks/form/createFormActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/createFormBlockSettings.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/editFormBlockSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/fieldSettingsFormItem.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/formActionInitializers.d.ts +6 -0
- package/es/modules/blocks/data-blocks/form/formItemInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockDecoratorProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/hooks/useCreateFormBlockProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockDecoratorProps.d.ts +6 -0
- package/es/modules/blocks/data-blocks/form/hooks/useEditFormBlockProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/form/index.d.ts +14 -0
- package/es/modules/blocks/data-blocks/form/updateFormActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/grid-card/GridCardActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/grid-card/GridCardBlockInitializer.d.ts +24 -0
- package/es/modules/blocks/data-blocks/grid-card/createGridCardBlockUISchema.d.ts +8 -0
- package/es/modules/blocks/data-blocks/grid-card/gridCardBlockSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/grid-card/gridCardItemActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockDecoratorProps.d.ts +4 -0
- package/es/modules/blocks/data-blocks/grid-card/hooks/useGridCardBlockParams.d.ts +1 -0
- package/es/modules/blocks/data-blocks/grid-card/utils.d.ts +1 -0
- package/es/modules/blocks/data-blocks/list/ListActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/list/ListBlockInitializer.d.ts +24 -0
- package/es/modules/blocks/data-blocks/list/createListBlockUISchema.d.ts +8 -0
- package/es/modules/blocks/data-blocks/list/hooks/useListBlockDecoratorProps.d.ts +3 -0
- package/es/modules/blocks/data-blocks/list/listBlockSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/list/listItemActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/TableActionColumnInitializers.d.ts +4 -0
- package/es/modules/blocks/data-blocks/table/TableActionInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/TableBlockInitializer.d.ts +20 -0
- package/es/modules/blocks/data-blocks/table/TableColumnInitializers.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/TableColumnSchemaToolbar.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/createTableBlockUISchema.d.ts +7 -0
- package/es/modules/blocks/data-blocks/table/hooks/useTableBlockDecoratorProps.d.ts +5 -0
- package/es/modules/blocks/data-blocks/table/hooks/useTableBlockProps.d.ts +19 -0
- package/es/modules/blocks/data-blocks/table/index.d.ts +9 -0
- package/es/modules/blocks/data-blocks/table/tableBlockSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/tableColumnSettings.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table/utils.d.ts +1 -0
- package/es/modules/blocks/data-blocks/table-selector/TableSelectorInitializer.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table-selector/createTableSelectorUISchema.d.ts +6 -0
- package/es/modules/blocks/data-blocks/table-selector/hooks/useTableSelectorDecoratorProps.d.ts +1 -0
- package/es/modules/blocks/data-blocks/table-selector/index.d.ts +2 -0
- package/es/modules/blocks/data-blocks/table-selector/tableSelectorBlockSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/collapse/CollapseItemSchemaToolbar.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/collapse/FilterCollapseBlockInitializer.d.ts +10 -0
- package/es/modules/blocks/filter-blocks/collapse/createFilterCollapseBlockSchema.d.ts +6 -0
- package/es/modules/blocks/filter-blocks/collapse/filterCollapseBlockSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemFieldSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/collapse/filterCollapseItemInitializer.d.ts +6 -0
- package/es/modules/blocks/filter-blocks/collapse/hooks/useCollapseBlockDecoratorProps.d.ts +1 -0
- package/es/modules/blocks/filter-blocks/form/FilterFormActionInitializers.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/form/FilterFormBlockInitializer.d.ts +10 -0
- package/es/modules/blocks/filter-blocks/form/createFilterFormBlockSchema.d.ts +62 -0
- package/es/modules/blocks/filter-blocks/form/filterFormBlockSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/form/filterFormItemFieldSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/form/filterFormItemInitializers.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockDecoratorProps.d.ts +1 -0
- package/es/modules/blocks/filter-blocks/form/hooks/useFilterFormBlockProps.d.ts +3 -0
- package/es/modules/blocks/filter-blocks/tree/FilterTreeActionInitializers.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/tree/FilterTreeBlockInitializer.d.ts +67 -0
- package/es/modules/blocks/filter-blocks/tree/filterTreeBlockSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/tree/filterTreeItemFieldSettings.d.ts +2 -0
- package/es/modules/blocks/filter-blocks/tree/filterTreeItemInitializers.d.ts +2 -0
- package/es/modules/blocks/other-blocks/markdown/MarkdownBlockInitializer.d.ts +2 -0
- package/es/modules/blocks/other-blocks/markdown/MarkdownFormItemInitializer.d.ts +2 -0
- package/es/modules/blocks/other-blocks/markdown/markdownBlockSettings.d.ts +2 -0
- package/es/modules/blocks/useParentRecordCommon.d.ts +7 -0
- package/es/modules/blocks/useSourceId.d.ts +1 -0
- package/es/modules/blocks/useSourceKey.d.ts +6 -0
- package/es/modules/fields/component/CascadeSelect/cascadeSelectComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Cascader/cascaderComponentFieldSettings.d.ts +5 -0
- package/es/modules/fields/component/Checkbox/checkboxComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/DatePicker/datePickerComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/DrawerSubTable/drawerSubTableComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/FileManager/fileManagerComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/FileManager/uploadAttachmentComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/InputNumber/inputNumberComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Nester/subformComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Picker/TableSelectorInitializers.d.ts +2 -0
- package/es/modules/fields/component/Picker/recordPickerComponentFieldSettings.d.ts +3 -0
- package/es/modules/fields/component/PopoverNester/subformPopoverComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Radio/radioComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/Select/selectComponentFieldSettings.d.ts +3 -0
- package/es/modules/fields/component/SubTable/subTablePopoverComponentFieldSettings.d.ts +80 -0
- package/es/modules/fields/component/Tag/tagComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/component/UnixTimestamp/unixTimestampComponentFieldSettings.d.ts +2 -0
- package/es/modules/fields/initializer/CollectionFieldInitializer.d.ts +2 -0
- package/es/modules/fields/initializer/TableCollectionFieldInitializer.d.ts +2 -0
- package/es/modules/menu/GroupItem.d.ts +2 -0
- package/es/modules/menu/LinkMenuItem.d.ts +2 -0
- package/es/modules/menu/PageMenuItem.d.ts +2 -0
- package/es/modules/menu/menuItemInitializer.d.ts +6 -0
- package/es/modules/page/BlockInitializers.d.ts +2 -0
- package/es/modules/variable/DeclareVariable.d.ts +18 -0
- package/es/modules/variable/useVariable.d.ts +14 -0
- package/es/powered-by/index.d.ts +2 -0
- package/es/record-provider/index.d.ts +27 -0
- package/es/route-switch/RouteSchemaComponent.d.ts +2 -0
- package/es/route-switch/index.d.ts +1 -0
- package/es/schema-component/antd/AntdSchemaComponentProvider.d.ts +7 -0
- package/es/schema-component/antd/__builtins__/hooks/index.d.ts +3 -0
- package/es/schema-component/antd/__builtins__/hooks/useConfig.d.ts +1 -0
- package/es/schema-component/antd/__builtins__/hooks/usePrefixCls.d.ts +3 -0
- package/es/schema-component/antd/__builtins__/hooks/useToken.d.ts +7 -0
- package/es/schema-component/antd/__builtins__/index.d.ts +4 -0
- package/es/schema-component/antd/__builtins__/loading.d.ts +1 -0
- package/es/schema-component/antd/__builtins__/portal.d.ts +10 -0
- package/es/schema-component/antd/__builtins__/render.d.ts +9 -0
- package/es/schema-component/antd/__builtins__/style.d.ts +29 -0
- package/es/schema-component/antd/action/Action.Area.d.ts +12 -0
- package/es/schema-component/antd/action/Action.Area.style.d.ts +4 -0
- package/es/schema-component/antd/action/Action.Container.d.ts +3 -0
- package/es/schema-component/antd/action/Action.Designer.d.ts +30 -0
- package/es/schema-component/antd/action/Action.Drawer.d.ts +5 -0
- package/es/schema-component/antd/action/Action.Drawer.style.d.ts +1 -0
- package/es/schema-component/antd/action/Action.Link.d.ts +2 -0
- package/es/schema-component/antd/action/Action.Modal.d.ts +6 -0
- package/es/schema-component/antd/action/Action.Page.d.ts +3 -0
- package/es/schema-component/antd/action/Action.Popover.d.ts +0 -0
- package/es/schema-component/antd/action/Action.Sheet.d.ts +3 -0
- package/es/schema-component/antd/action/Action.d.ts +3 -0
- package/es/schema-component/antd/action/Action.style.d.ts +2 -0
- package/es/schema-component/antd/action/ActionBar.d.ts +19 -0
- package/es/schema-component/antd/action/context.d.ts +23 -0
- package/es/schema-component/antd/action/hooks/useGetAriaLabelOfAction.d.ts +8 -0
- package/es/schema-component/antd/action/hooks/useGetAriaLabelOfDrawer.d.ts +7 -0
- package/es/schema-component/antd/action/hooks/useGetAriaLabelOfModal.d.ts +7 -0
- package/es/schema-component/antd/action/hooks/useGetAriaLabelOfPopover.d.ts +7 -0
- package/es/schema-component/antd/action/hooks/useSetAriaLabelForDrawer.d.ts +1 -0
- package/es/schema-component/antd/action/hooks/useSetAriaLabelForModal.d.ts +1 -0
- package/es/schema-component/antd/action/hooks/useSetAriaLabelForPopover.d.ts +1 -0
- package/es/schema-component/antd/action/hooks.d.ts +21 -0
- package/es/schema-component/antd/action/index.d.ts +10 -0
- package/es/schema-component/antd/action/types.d.ts +16 -0
- package/es/schema-component/antd/action/utils.d.ts +11 -0
- package/es/schema-component/antd/appends-tree-select/AppendsTreeSelect.d.ts +17 -0
- package/es/schema-component/antd/appends-tree-select/AppendsTreeSelectV2.d.ts +17 -0
- package/es/schema-component/antd/appends-tree-select/index.d.ts +2 -0
- package/es/schema-component/antd/association-cascader/AssociationCascader.d.ts +7 -0
- package/es/schema-component/antd/association-cascader/index.d.ts +1 -0
- package/es/schema-component/antd/association-field/AssociationFieldProvider.d.ts +2 -0
- package/es/schema-component/antd/association-field/AssociationSelect.d.ts +15 -0
- package/es/schema-component/antd/association-field/Editable.d.ts +2 -0
- package/es/schema-component/antd/association-field/FileManager.d.ts +4 -0
- package/es/schema-component/antd/association-field/InternalCascadeSelect.d.ts +3 -0
- package/es/schema-component/antd/association-field/InternalCascader.d.ts +4 -0
- package/es/schema-component/antd/association-field/InternalDrawerSubTable.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalNester.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalPicker.d.ts +25 -0
- package/es/schema-component/antd/association-field/InternalPopoverNester.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalSubTable.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalTag.d.ts +2 -0
- package/es/schema-component/antd/association-field/InternalViewer.d.ts +3 -0
- package/es/schema-component/antd/association-field/Nester.d.ts +2 -0
- package/es/schema-component/antd/association-field/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/association-field/SubTable.d.ts +1 -0
- package/es/schema-component/antd/association-field/SubTabs/InternalCollapse.d.ts +8 -0
- package/es/schema-component/antd/association-field/SubTabs/hook.d.ts +1 -0
- package/es/schema-component/antd/association-field/SubTabs/index.d.ts +1 -0
- package/es/schema-component/antd/association-field/SubTabs/styles.d.ts +3 -0
- package/es/schema-component/antd/association-field/components/CreateRecordAction.d.ts +2 -0
- package/es/schema-component/antd/association-field/context.d.ts +9 -0
- package/es/schema-component/antd/association-field/hooks.d.ts +29 -0
- package/es/schema-component/antd/association-field/index.d.ts +2 -0
- package/es/schema-component/antd/association-field/schema.d.ts +131 -0
- package/es/schema-component/antd/association-field/util.d.ts +12 -0
- package/es/schema-component/antd/association-filter/ActionBarAssociationFilterAction.d.ts +7 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.BlockDesigner.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.Initializer.d.ts +5 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.Item.Designer.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.Item.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.Item.style.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilter.d.ts +15 -0
- package/es/schema-component/antd/association-filter/AssociationFilterDesignerDelete.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilterDesignerDisplayField.d.ts +2 -0
- package/es/schema-component/antd/association-filter/AssociationFilterProvider.d.ts +1 -0
- package/es/schema-component/antd/association-filter/utilts.d.ts +2 -0
- package/es/schema-component/antd/association-select/AssociationSelect.d.ts +13 -0
- package/es/schema-component/antd/association-select/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/association-select/index.d.ts +1 -0
- package/es/schema-component/antd/association-select/useServiceOptions.d.ts +1 -0
- package/es/schema-component/antd/auto-complete/AutoComplete.d.ts +2 -0
- package/es/schema-component/antd/auto-complete/index.d.ts +1 -0
- package/es/schema-component/antd/block-item/BlockItem.d.ts +2 -0
- package/es/schema-component/antd/block-item/BlockToolbar.d.ts +11 -0
- package/es/schema-component/antd/block-item/hooks/useGetAriaLabelOfBlockItem.d.ts +7 -0
- package/es/schema-component/antd/block-item/index.d.ts +1 -0
- package/es/schema-component/antd/block-item/useBlockToolbar.d.ts +13 -0
- package/es/schema-component/antd/card-item/CardItem.d.ts +9 -0
- package/es/schema-component/antd/card-item/index.d.ts +1 -0
- package/es/schema-component/antd/card-item/style.d.ts +2 -0
- package/es/schema-component/antd/cascader/Cascader.d.ts +3 -0
- package/es/schema-component/antd/cascader/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/cascader/defaultFieldNames.d.ts +5 -0
- package/es/schema-component/antd/cascader/index.d.ts +1 -0
- package/es/schema-component/antd/checkbox/Checkbox.d.ts +16 -0
- package/es/schema-component/antd/checkbox/index.d.ts +1 -0
- package/es/schema-component/antd/collection-select/CollectionSelect.d.ts +17 -0
- package/es/schema-component/antd/collection-select/index.d.ts +1 -0
- package/es/schema-component/antd/color-picker/ColorPicker.d.ts +3 -0
- package/es/schema-component/antd/color-picker/ReadPretty.d.ts +7 -0
- package/es/schema-component/antd/color-picker/index.d.ts +1 -0
- package/es/schema-component/antd/color-picker/util.d.ts +31 -0
- package/es/schema-component/antd/color-select/ColorSelect.d.ts +3 -0
- package/es/schema-component/antd/color-select/index.d.ts +1 -0
- package/es/schema-component/antd/cron/Cron.d.ts +10 -0
- package/es/schema-component/antd/cron/CronSet.d.ts +7 -0
- package/es/schema-component/antd/cron/index.d.ts +2 -0
- package/es/schema-component/antd/custom-cascader/CustomCascader.d.ts +3 -0
- package/es/schema-component/antd/custom-cascader/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/custom-cascader/defaultFieldNames.d.ts +5 -0
- package/es/schema-component/antd/custom-cascader/index.d.ts +1 -0
- package/es/schema-component/antd/date-picker/DatePicker.d.ts +13 -0
- package/es/schema-component/antd/date-picker/ReadPretty.d.ts +8 -0
- package/es/schema-component/antd/date-picker/index.d.ts +1 -0
- package/es/schema-component/antd/date-picker/util.d.ts +37 -0
- package/es/schema-component/antd/details/Details.d.ts +2 -0
- package/es/schema-component/antd/details/index.d.ts +1 -0
- package/es/schema-component/antd/error-fallback/ErrorFallback.d.ts +3 -0
- package/es/schema-component/antd/error-fallback/index.d.ts +1 -0
- package/es/schema-component/antd/expand-action/Expand.Action.Design.d.ts +7 -0
- package/es/schema-component/antd/expand-action/Expand.Action.d.ts +2 -0
- package/es/schema-component/antd/expand-action/index.d.ts +1 -0
- package/es/schema-component/antd/filter/DynamicComponent.d.ts +19 -0
- package/es/schema-component/antd/filter/Filter.Action.Designer.d.ts +4 -0
- package/es/schema-component/antd/filter/Filter.d.ts +1 -0
- package/es/schema-component/antd/filter/FilterAction.d.ts +3 -0
- package/es/schema-component/antd/filter/FilterGroup.d.ts +2 -0
- package/es/schema-component/antd/filter/FilterItem.d.ts +2 -0
- package/es/schema-component/antd/filter/FilterItems.d.ts +2 -0
- package/es/schema-component/antd/filter/SaveDefaultValue.d.ts +2 -0
- package/es/schema-component/antd/filter/context.d.ts +14 -0
- package/es/schema-component/antd/filter/index.d.ts +3 -0
- package/es/schema-component/antd/filter/useFilterActionProps.d.ts +20 -0
- package/es/schema-component/antd/filter/useOperators.d.ts +5 -0
- package/es/schema-component/antd/filter/useValues.d.ts +14 -0
- package/es/schema-component/antd/filter/utils.d.ts +1 -0
- package/es/schema-component/antd/form/Form.Designer.d.ts +2 -0
- package/es/schema-component/antd/form/Form.Settings.d.ts +5 -0
- package/es/schema-component/antd/form/Form.d.ts +13 -0
- package/es/schema-component/antd/form/index.d.ts +2 -0
- package/es/schema-component/antd/form-dialog/index.d.ts +28 -0
- package/es/schema-component/antd/form-item/FormItem.FilterFormDesigner.d.ts +2 -0
- package/es/schema-component/antd/form-item/FormItem.FilterFormSettings.d.ts +5 -0
- package/es/schema-component/antd/form-item/FormItem.Settings.d.ts +73 -0
- package/es/schema-component/antd/form-item/FormItem.d.ts +9 -0
- package/es/schema-component/antd/form-item/SchemaSettingOptions.d.ts +24 -0
- package/es/schema-component/antd/form-item/hooks/useLazyLoadDisplayAssociationFieldsOfForm.d.ts +8 -0
- package/es/schema-component/antd/form-item/hooks/useParseDefaultValue.d.ts +5 -0
- package/es/schema-component/antd/form-item/hooks/useSpecialCase.d.ts +59 -0
- package/es/schema-component/antd/form-item/index.d.ts +4 -0
- package/es/schema-component/antd/form-item/utils.d.ts +8 -0
- package/es/schema-component/antd/form-tab/index.d.ts +19 -0
- package/es/schema-component/antd/form-v2/Form.Designer.d.ts +4 -0
- package/es/schema-component/antd/form-v2/Form.FilterDesigner.d.ts +6 -0
- package/es/schema-component/antd/form-v2/Form.Settings.d.ts +13 -0
- package/es/schema-component/antd/form-v2/Form.d.ts +10 -0
- package/es/schema-component/antd/form-v2/FormField.d.ts +1 -0
- package/es/schema-component/antd/form-v2/Templates.d.ts +32 -0
- package/es/schema-component/antd/form-v2/index.d.ts +6 -0
- package/es/schema-component/antd/form-v2/utils.d.ts +21 -0
- package/es/schema-component/antd/grid/Block.d.ts +2 -0
- package/es/schema-component/antd/grid/Grid.d.ts +5 -0
- package/es/schema-component/antd/grid/Grid.style.d.ts +2 -0
- package/es/schema-component/antd/grid/index.d.ts +2 -0
- package/es/schema-component/antd/grid-card/GridCard.Decorator.d.ts +5 -0
- package/es/schema-component/antd/grid-card/GridCard.Decorator.style.d.ts +2 -0
- package/es/schema-component/antd/grid-card/GridCard.Designer.d.ts +2 -0
- package/es/schema-component/antd/grid-card/GridCard.Item.d.ts +2 -0
- package/es/schema-component/antd/grid-card/GridCard.d.ts +11 -0
- package/es/schema-component/antd/grid-card/hooks.d.ts +13 -0
- package/es/schema-component/antd/grid-card/index.d.ts +1 -0
- package/es/schema-component/antd/grid-card/options.d.ts +20 -0
- package/es/schema-component/antd/icon-picker/IconFilterInput.d.ts +2 -0
- package/es/schema-component/antd/icon-picker/IconList.d.ts +2 -0
- package/es/schema-component/antd/icon-picker/IconPicker.d.ts +3 -0
- package/es/schema-component/antd/icon-picker/index.d.ts +1 -0
- package/es/schema-component/antd/index.d.ts +61 -0
- package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +8 -0
- package/es/schema-component/antd/input/Input.d.ts +14 -0
- package/es/schema-component/antd/input/Json.d.ts +10 -0
- package/es/schema-component/antd/input/ReadPretty.d.ts +22 -0
- package/es/schema-component/antd/input/index.d.ts +5 -0
- package/es/schema-component/antd/input/shared.d.ts +1 -0
- package/es/schema-component/antd/input-number/InputNumber.d.ts +7 -0
- package/es/schema-component/antd/input-number/ReadPretty.d.ts +8 -0
- package/es/schema-component/antd/input-number/index.d.ts +1 -0
- package/es/schema-component/antd/list/List.Decorator.d.ts +5 -0
- package/es/schema-component/antd/list/List.Designer.d.ts +5 -0
- package/es/schema-component/antd/list/List.Item.d.ts +2 -0
- package/es/schema-component/antd/list/List.d.ts +11 -0
- package/es/schema-component/antd/list/List.style.d.ts +2 -0
- package/es/schema-component/antd/list/hooks.d.ts +4 -0
- package/es/schema-component/antd/list/index.d.ts +1 -0
- package/es/schema-component/antd/markdown/Markdown.Void.Designer.d.ts +2 -0
- package/es/schema-component/antd/markdown/Markdown.Void.d.ts +1 -0
- package/es/schema-component/antd/markdown/Markdown.d.ts +4 -0
- package/es/schema-component/antd/markdown/index.d.ts +1 -0
- package/es/schema-component/antd/markdown/markdown-it-plugins/mermaidPlugin.d.ts +5 -0
- package/es/schema-component/antd/markdown/md.d.ts +3 -0
- package/es/schema-component/antd/markdown/style.d.ts +1 -0
- package/es/schema-component/antd/markdown/util.d.ts +6 -0
- package/es/schema-component/antd/menu/Menu.Designer.d.ts +2 -0
- package/es/schema-component/antd/menu/Menu.d.ts +9 -0
- package/es/schema-component/antd/menu/Menu.styles.d.ts +8 -0
- package/es/schema-component/antd/menu/MenuItemInitializers/index.d.ts +6 -0
- package/es/schema-component/antd/menu/index.d.ts +3 -0
- package/es/schema-component/antd/menu/locale.d.ts +1 -0
- package/es/schema-component/antd/menu/util.d.ts +4 -0
- package/es/schema-component/antd/nanoIDInput/NanoIDInput.d.ts +6 -0
- package/es/schema-component/antd/nanoIDInput/index.d.ts +1 -0
- package/es/schema-component/antd/page/FixedBlock.d.ts +16 -0
- package/es/schema-component/antd/page/FixedBlockDesignerItem.d.ts +2 -0
- package/es/schema-component/antd/page/Page.Settings.d.ts +5 -0
- package/es/schema-component/antd/page/Page.d.ts +5 -0
- package/es/schema-component/antd/page/PageTab.Settings.d.ts +5 -0
- package/es/schema-component/antd/page/PageTabDesigner.d.ts +7 -0
- package/es/schema-component/antd/page/hooks/useIsBlockInPage.d.ts +6 -0
- package/es/schema-component/antd/page/index.d.ts +5 -0
- package/es/schema-component/antd/page/style.d.ts +1 -0
- package/es/schema-component/antd/pagination/index.d.ts +2 -0
- package/es/schema-component/antd/password/Password.d.ts +7 -0
- package/es/schema-component/antd/password/PasswordStrength.d.ts +8 -0
- package/es/schema-component/antd/password/index.d.ts +1 -0
- package/es/schema-component/antd/password/utils.d.ts +1 -0
- package/es/schema-component/antd/percent/Percent.d.ts +2 -0
- package/es/schema-component/antd/percent/index.d.ts +1 -0
- package/es/schema-component/antd/popover/Popover.d.ts +8 -0
- package/es/schema-component/antd/popover/index.d.ts +1 -0
- package/es/schema-component/antd/preview/Preview.d.ts +13 -0
- package/es/schema-component/antd/preview/index.d.ts +1 -0
- package/es/schema-component/antd/quick-edit/QuickEdit.d.ts +3 -0
- package/es/schema-component/antd/quick-edit/index.d.ts +1 -0
- package/es/schema-component/antd/radio/Radio.d.ts +8 -0
- package/es/schema-component/antd/radio/index.d.ts +1 -0
- package/es/schema-component/antd/record-picker/InputRecordPicker.d.ts +5 -0
- package/es/schema-component/antd/record-picker/ReadPrettyRecordPicker.d.ts +2 -0
- package/es/schema-component/antd/record-picker/RecordPicker.d.ts +1 -0
- package/es/schema-component/antd/record-picker/index.d.ts +6 -0
- package/es/schema-component/antd/record-picker/useFieldNames.d.ts +1 -0
- package/es/schema-component/antd/record-picker/util.d.ts +5 -0
- package/es/schema-component/antd/remote-select/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +32 -0
- package/es/schema-component/antd/remote-select/index.d.ts +1 -0
- package/es/schema-component/antd/remote-select/shared.d.ts +1 -0
- package/es/schema-component/antd/rich-text/RichText.d.ts +2 -0
- package/es/schema-component/antd/rich-text/index.d.ts +1 -0
- package/es/schema-component/antd/rich-text/style.d.ts +7 -0
- package/es/schema-component/antd/scroll-area/ScrollArea.d.ts +3 -0
- package/es/schema-component/antd/scroll-area/index.d.ts +1 -0
- package/es/schema-component/antd/select/FormulaSelect.d.ts +3 -0
- package/es/schema-component/antd/select/ReadPretty.d.ts +2 -0
- package/es/schema-component/antd/select/Select.d.ts +15 -0
- package/es/schema-component/antd/select/index.d.ts +2 -0
- package/es/schema-component/antd/select/utils.d.ts +14 -0
- package/es/schema-component/antd/space/index.d.ts +4 -0
- package/es/schema-component/antd/table/Table.Array.Designer.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Array.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +5 -0
- package/es/schema-component/antd/table/Table.Column.Decorator.d.ts +13 -0
- package/es/schema-component/antd/table/Table.Column.Designer.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Column.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Designer.d.ts +2 -0
- package/es/schema-component/antd/table/Table.RowActionDesigner.d.ts +2 -0
- package/es/schema-component/antd/table/Table.RowSelection.d.ts +7 -0
- package/es/schema-component/antd/table/Table.Void.Designer.d.ts +2 -0
- package/es/schema-component/antd/table/Table.Void.d.ts +15 -0
- package/es/schema-component/antd/table/index.d.ts +1 -0
- package/es/schema-component/antd/table-v2/Table.ActionColumnDesigner.d.ts +2 -0
- package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +5 -0
- package/es/schema-component/antd/table-v2/Table.Column.Decorator.d.ts +13 -0
- package/es/schema-component/antd/table-v2/Table.Column.Designer.d.ts +10 -0
- package/es/schema-component/antd/table-v2/Table.Column.d.ts +2 -0
- package/es/schema-component/antd/table-v2/Table.Designer.d.ts +2 -0
- package/es/schema-component/antd/table-v2/Table.Index.d.ts +2 -0
- package/es/schema-component/antd/table-v2/Table.d.ts +1 -0
- package/es/schema-component/antd/table-v2/Table.styles.d.ts +13 -0
- package/es/schema-component/antd/table-v2/TableBlockDesigner.d.ts +3 -0
- package/es/schema-component/antd/table-v2/TableField.d.ts +1 -0
- package/es/schema-component/antd/table-v2/TableSelector.d.ts +1 -0
- package/es/schema-component/antd/table-v2/TableSelectorDesigner.d.ts +2 -0
- package/es/schema-component/antd/table-v2/components/ColumnFieldProvider.d.ts +6 -0
- package/es/schema-component/antd/table-v2/index.d.ts +5 -0
- package/es/schema-component/antd/table-v2/utils.d.ts +4 -0
- package/es/schema-component/antd/tabs/Tabs.Designer.d.ts +2 -0
- package/es/schema-component/antd/tabs/Tabs.d.ts +1 -0
- package/es/schema-component/antd/tabs/context.d.ts +8 -0
- package/es/schema-component/antd/tabs/index.d.ts +2 -0
- package/es/schema-component/antd/time-picker/ReadPretty.d.ts +3 -0
- package/es/schema-component/antd/time-picker/TimePicker.d.ts +6 -0
- package/es/schema-component/antd/time-picker/index.d.ts +1 -0
- package/es/schema-component/antd/tree/Tree.d.ts +2 -0
- package/es/schema-component/antd/tree/index.d.ts +2 -0
- package/es/schema-component/antd/tree-select/ReadPretty.d.ts +3 -0
- package/es/schema-component/antd/tree-select/TreeSelect.d.ts +2 -0
- package/es/schema-component/antd/tree-select/index.d.ts +1 -0
- package/es/schema-component/antd/unixTimestamp/UnixTimestamp.d.ts +2 -0
- package/es/schema-component/antd/unixTimestamp/index.d.ts +1 -0
- package/es/schema-component/antd/upload/ReadPretty.d.ts +17 -0
- package/es/schema-component/antd/upload/Upload.d.ts +5 -0
- package/es/schema-component/antd/upload/index.d.ts +1 -0
- package/es/schema-component/antd/upload/placeholder.d.ts +4 -0
- package/es/schema-component/antd/upload/shared.d.ts +61 -0
- package/es/schema-component/antd/upload/style.d.ts +1 -0
- package/es/schema-component/antd/variable/CodeMirror.d.ts +2 -0
- package/es/schema-component/antd/variable/Input.d.ts +2 -0
- package/es/schema-component/antd/variable/JSONInput.d.ts +2 -0
- package/es/schema-component/antd/variable/RawTextArea.d.ts +1 -0
- package/es/schema-component/antd/variable/TextArea.d.ts +5 -0
- package/es/schema-component/antd/variable/Variable.d.ts +15 -0
- package/es/schema-component/antd/variable/VariableSelect.d.ts +8 -0
- package/es/schema-component/antd/variable/VariableSelect.style.d.ts +2 -0
- package/es/schema-component/antd/variable/XButton.d.ts +3 -0
- package/es/schema-component/antd/variable/index.d.ts +1 -0
- package/es/schema-component/antd/variable/style.d.ts +90 -0
- package/es/schema-component/common/dnd-context/index.d.ts +3 -0
- package/es/schema-component/common/index.d.ts +2 -0
- package/es/schema-component/common/infinite-scroll/infinite-scroll.d.ts +8 -0
- package/es/schema-component/common/infinite-scroll/style.d.ts +4 -0
- package/es/schema-component/common/sortable-item/SortableItem.d.ts +17 -0
- package/es/schema-component/common/sortable-item/index.d.ts +1 -0
- package/es/schema-component/common/utils/logic.d.ts +11 -0
- package/es/schema-component/common/utils/uitls.d.ts +25 -0
- package/es/schema-component/context.d.ts +2 -0
- package/es/schema-component/core/DesignableSwitch.d.ts +2 -0
- package/es/schema-component/core/FormProvider.d.ts +2 -0
- package/es/schema-component/core/RemoteSchemaComponent.d.ts +15 -0
- package/es/schema-component/core/SchemaComponent.d.ts +16 -0
- package/es/schema-component/core/SchemaComponentOptions.d.ts +4 -0
- package/es/schema-component/core/SchemaComponentProvider.d.ts +6 -0
- package/es/schema-component/core/index.d.ts +12 -0
- package/es/schema-component/hooks/index.d.ts +12 -0
- package/es/schema-component/hooks/useAttach.d.ts +6 -0
- package/es/schema-component/hooks/useCompile.d.ts +8 -0
- package/es/schema-component/hooks/useComponent.d.ts +1 -0
- package/es/schema-component/hooks/useDesignable.d.ts +98 -0
- package/es/schema-component/hooks/useDesigner.d.ts +1 -0
- package/es/schema-component/hooks/useFieldComponentOptions.d.ts +4 -0
- package/es/schema-component/hooks/useFieldModeOptions.d.ts +4 -0
- package/es/schema-component/hooks/useFieldProps.d.ts +2 -0
- package/es/schema-component/hooks/useFieldTitle.d.ts +1 -0
- package/es/schema-component/hooks/useProps.d.ts +6 -0
- package/es/schema-component/hooks/useSchemaComponentContext.d.ts +1 -0
- package/es/schema-component/hooks/useTableSize.d.ts +5 -0
- package/es/schema-component/index.d.ts +6 -0
- package/es/schema-component/types.d.ts +29 -0
- package/es/schema-initializer/buttons/CustomFormItemInitializers.d.ts +2 -0
- package/es/schema-initializer/buttons/FormItemInitializers.d.ts +6 -0
- package/es/schema-initializer/buttons/RecordBlockInitializers.d.ts +3 -0
- package/es/schema-initializer/buttons/SubTableActionInitializers.d.ts +2 -0
- package/es/schema-initializer/buttons/TabPaneInitializers.d.ts +17 -0
- package/es/schema-initializer/buttons/index.d.ts +6 -0
- package/es/schema-initializer/components/CreateRecordAction.d.ts +4 -0
- package/es/schema-initializer/components/DeletedField.d.ts +2 -0
- package/es/schema-initializer/components/assigned-field/AssignedField.d.ts +12 -0
- package/es/schema-initializer/components/assigned-field/index.d.ts +1 -0
- package/es/schema-initializer/components/index.d.ts +2 -0
- package/es/schema-initializer/hooks/useGetAriaLabelOfSchemaInitializer.d.ts +7 -0
- package/es/schema-initializer/index.d.ts +7 -0
- package/es/schema-initializer/items/ActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/BlockInitializer.d.ts +3 -0
- package/es/schema-initializer/items/CreateFilterActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/CreateResetActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/CustomFilterFormItemInitializer.d.ts +15 -0
- package/es/schema-initializer/items/CustomizeActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/DataBlockInitializer.d.ts +46 -0
- package/es/schema-initializer/items/DeleteEventActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/FilterBlockInitializer.d.ts +1 -0
- package/es/schema-initializer/items/G2PlotInitializer.d.ts +2 -0
- package/es/schema-initializer/items/InitializerWithSwitch.d.ts +2 -0
- package/es/schema-initializer/items/RecordAssociationBlockInitializer.d.ts +10 -0
- package/es/schema-initializer/items/RecordAssociationDetailsBlockInitializer.d.ts +7 -0
- package/es/schema-initializer/items/RecordAssociationFormBlockInitializer.d.ts +13 -0
- package/es/schema-initializer/items/RecordAssociationGridCardBlockInitializer.d.ts +10 -0
- package/es/schema-initializer/items/RecordAssociationListBlockInitializer.d.ts +7 -0
- package/es/schema-initializer/items/RecordReadPrettyAssociationFormBlockInitializer.d.ts +13 -0
- package/es/schema-initializer/items/SelectActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/SubmitActionInitializer.d.ts +2 -0
- package/es/schema-initializer/items/TableActionColumnInitializer.d.ts +2 -0
- package/es/schema-initializer/items/index.d.ts +23 -0
- package/es/schema-initializer/style.d.ts +12 -0
- package/es/schema-initializer/utils.d.ts +421 -0
- package/es/schema-items/GeneralSchemaItems.d.ts +4 -0
- package/es/schema-items/GeneralSettings.d.ts +2 -0
- package/es/schema-items/OpenModeSchemaItems.d.ts +8 -0
- package/es/schema-items/index.d.ts +2 -0
- package/es/schema-settings/DataTemplates/FormDataTemplates.d.ts +4 -0
- package/es/schema-settings/DataTemplates/TreeLabel.d.ts +2 -0
- package/es/schema-settings/DataTemplates/components/AsDefaultTemplate.d.ts +2 -0
- package/es/schema-settings/DataTemplates/components/DataTemplateTitle.d.ts +10 -0
- package/es/schema-settings/DataTemplates/components/DataTemplateTitle.style.d.ts +5 -0
- package/es/schema-settings/DataTemplates/components/Designer.d.ts +7 -0
- package/es/schema-settings/DataTemplates/hooks/useCollectionState.d.ts +13 -0
- package/es/schema-settings/DataTemplates/index.d.ts +1 -0
- package/es/schema-settings/DataTemplates/utils.d.ts +3 -0
- package/es/schema-settings/DateFormat/ExpiresRadio.d.ts +4 -0
- package/es/schema-settings/EditCustomDefaultValue.d.ts +3 -0
- package/es/schema-settings/EditFormulaTitleField.d.ts +4 -0
- package/es/schema-settings/EnableChildCollections/DynamicComponent.d.ts +8 -0
- package/es/schema-settings/EnableChildCollections/index.d.ts +2 -0
- package/es/schema-settings/GeneralSchemaDesigner.d.ts +29 -0
- package/es/schema-settings/LinkageRules/DynamicComponent.d.ts +2 -0
- package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +3 -0
- package/es/schema-settings/LinkageRules/LinkageRuleActionGroup.d.ts +3 -0
- package/es/schema-settings/LinkageRules/ValueDynamicComponent.d.ts +9 -0
- package/es/schema-settings/LinkageRules/Variables.d.ts +7 -0
- package/es/schema-settings/LinkageRules/action-hooks.d.ts +1 -0
- package/es/schema-settings/LinkageRules/components/EnableLinkage.d.ts +2 -0
- package/es/schema-settings/LinkageRules/components/LinkageHeader.d.ts +10 -0
- package/es/schema-settings/LinkageRules/components/LinkageHeader.style.d.ts +5 -0
- package/es/schema-settings/LinkageRules/context.d.ts +11 -0
- package/es/schema-settings/LinkageRules/index.d.ts +2 -0
- package/es/schema-settings/LinkageRules/type.d.ts +13 -0
- package/es/schema-settings/LinkageRules/useValues.d.ts +1 -0
- package/es/schema-settings/SchemaSettingCollection.d.ts +2 -0
- package/es/schema-settings/SchemaSettingComponent.d.ts +2 -0
- package/es/schema-settings/SchemaSettings.d.ts +122 -0
- package/es/schema-settings/SchemaSettingsDataScope.d.ts +3 -0
- package/es/schema-settings/SchemaSettingsDateFormat.d.ts +5 -0
- package/es/schema-settings/SchemaSettingsDefaultValue.d.ts +5 -0
- package/es/schema-settings/SchemaSettingsNumberFormat.d.ts +5 -0
- package/es/schema-settings/SchemaSettingsPlugin.d.ts +4 -0
- package/es/schema-settings/SchemaSettingsSortingRule.d.ts +2 -0
- package/es/schema-settings/VariableInput/VariableInput.d.ts +87 -0
- package/es/schema-settings/VariableInput/hooks/index.d.ts +3 -0
- package/es/schema-settings/VariableInput/hooks/useBaseVariable.d.ts +51 -0
- package/es/schema-settings/VariableInput/hooks/useBlockCollection.d.ts +3 -0
- package/es/schema-settings/VariableInput/hooks/useContextAssociationFields.d.ts +9 -0
- package/es/schema-settings/VariableInput/hooks/useDateVariable.d.ts +57 -0
- package/es/schema-settings/VariableInput/hooks/useFilterVariable.d.ts +22 -0
- package/es/schema-settings/VariableInput/hooks/useFormVariable.d.ts +34 -0
- package/es/schema-settings/VariableInput/hooks/useIterationVariable.d.ts +38 -0
- package/es/schema-settings/VariableInput/hooks/useParentRecordVariable.d.ts +31 -0
- package/es/schema-settings/VariableInput/hooks/usePopupVariable.d.ts +16 -0
- package/es/schema-settings/VariableInput/hooks/useRecordVariable.d.ts +35 -0
- package/es/schema-settings/VariableInput/hooks/useRoleVariable.d.ts +37 -0
- package/es/schema-settings/VariableInput/hooks/useUserVariable.d.ts +37 -0
- package/es/schema-settings/VariableInput/hooks/useVariableOptions.d.ts +40 -0
- package/es/schema-settings/VariableInput/index.d.ts +2 -0
- package/es/schema-settings/VariableInput/type.d.ts +29 -0
- package/es/schema-settings/VariableInput/utils/formatVariableScop.d.ts +2 -0
- package/es/schema-settings/filter-form/FormFilterScope.d.ts +22 -0
- package/es/schema-settings/filter-form/context.d.ts +16 -0
- package/es/schema-settings/hooks/useFilterFormCustomProps.d.ts +4 -0
- package/es/schema-settings/hooks/useGetAriaLabelOfDesigner.d.ts +7 -0
- package/es/schema-settings/hooks/useIsAllowToSetDefaultValue.d.ts +26 -0
- package/es/schema-settings/hooks/useIsShowMultipleSwitch.d.ts +4 -0
- package/es/schema-settings/hooks/useParseDataScopeFilter.d.ts +12 -0
- package/es/schema-settings/index.d.ts +18 -0
- package/es/schema-settings/isPatternDisabled.d.ts +2 -0
- package/es/schema-settings/styles.d.ts +53 -0
- package/es/schema-settings/types.d.ts +33 -0
- package/es/schema-templates/BlockTemplate.d.ts +3 -0
- package/es/schema-templates/BlockTemplateDetails.d.ts +2 -0
- package/es/schema-templates/BlockTemplatePage.d.ts +3 -0
- package/es/schema-templates/SchemaTemplateManagerProvider.d.ts +14 -0
- package/es/schema-templates/collections/uiSchemaTemplates.d.ts +2 -0
- package/es/schema-templates/index.d.ts +4 -0
- package/es/schema-templates/schemas/CollectionTitle.d.ts +2 -0
- package/es/schema-templates/schemas/uiSchemaTemplates.d.ts +2 -0
- package/es/schema-templates/useSchemaTemplateManager.d.ts +14 -0
- package/es/style/css-variable/CSSVariableProvider.d.ts +7 -0
- package/es/style/css-variable/index.d.ts +1 -0
- package/es/style/index.d.ts +3 -0
- package/es/style/theme/AntdAppProvider.d.ts +8 -0
- package/es/style/theme/defaultTheme.d.ts +3 -0
- package/es/style/theme/index.d.ts +28 -0
- package/es/style/theme/type.d.ts +34 -0
- package/es/style/useToken.d.ts +7 -0
- package/es/testUtils/index.d.ts +1 -0
- package/es/testUtils/mockAPIClient.d.ts +9 -0
- package/es/user/ChangePassword.d.ts +1 -0
- package/es/user/CurrentUser.d.ts +9 -0
- package/es/user/CurrentUserProvider.d.ts +8 -0
- package/es/user/CurrentUserSettingsMenuProvider.d.ts +21 -0
- package/es/user/EditProfile.d.ts +1 -0
- package/es/user/LanguageSettings.d.ts +1 -0
- package/es/user/SwitchRole.d.ts +1 -0
- package/es/user/VerificationCode.d.ts +7 -0
- package/es/user/index.d.ts +3 -0
- package/es/variables/VariablesProvider.d.ts +10 -0
- package/es/variables/constants.d.ts +1 -0
- package/es/variables/hooks/useBuiltinVariables.d.ts +5 -0
- package/es/variables/hooks/useContextVariable.d.ts +3 -0
- package/es/variables/hooks/useLocalVariables.d.ts +8 -0
- package/es/variables/hooks/useVariables.d.ts +2 -0
- package/es/variables/index.d.ts +8 -0
- package/es/variables/types.d.ts +73 -0
- package/es/variables/utils/filterEmptyValues.d.ts +1 -0
- package/es/variables/utils/getAction.d.ts +1 -0
- package/es/variables/utils/getPath.d.ts +6 -0
- package/es/variables/utils/getVariableName.d.ts +6 -0
- package/es/variables/utils/hasRequested.d.ts +9 -0
- package/es/variables/utils/isVariable.d.ts +2 -0
- package/es/variables/utils/transformVariableValue.d.ts +12 -0
- package/es/variables/utils/uniq.d.ts +6 -0
- package/lib/953.mjs +74 -0
- package/lib/953.mjs.map +1 -0
- package/lib/index.css +321 -0
- package/lib/index.mjs +87006 -0
- package/lib/index.mjs.LICENSE.txt +6 -0
- package/lib/index.mjs.map +1 -0
- package/lib/locale/cron/zh_CN.js +33 -0
- package/lib/locale/cron/zh_TW.js +33 -0
- package/lib/locale/en_US.js +891 -0
- package/lib/locale/es_ES.js +755 -0
- package/lib/locale/fr_FR.js +775 -0
- package/lib/locale/index.js +165 -0
- package/lib/locale/ja_JP.js +694 -0
- package/lib/locale/ko_KR.js +890 -0
- package/lib/locale/pt_BR.js +734 -0
- package/lib/locale/ru_RU.js +570 -0
- package/lib/locale/tr_TR.js +567 -0
- package/lib/locale/uk_UA.js +775 -0
- package/lib/locale/zh-CN.js +1028 -0
- package/lib/locale/zh-TW.js +862 -0
- package/package.json +94 -0
|
@@ -0,0 +1,862 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"(Fields only)": "\uFF08\u50C5\u6B04\u4F4D\uFF09",
|
|
3
|
+
"<": "<",
|
|
4
|
+
"=": "=",
|
|
5
|
+
">": ">",
|
|
6
|
+
ACL: "\u8A2A\u554F\u63A7\u5236",
|
|
7
|
+
ASC: "\u5347\u51AA",
|
|
8
|
+
Accessible: "\u5141\u8A31\u8A2A\u554F",
|
|
9
|
+
"Action column": "\u52D5\u4F5C\u884C",
|
|
10
|
+
"Action display name": "\u57F7\u884C\u540D\u7A31",
|
|
11
|
+
"Action logs": "\u52D5\u4F5C\u65E5\u8A8C",
|
|
12
|
+
"Action name": "\u52D5\u4F5C\u540D\u7A31",
|
|
13
|
+
"Action on existing records": "\u5C0D\u5DF2\u6709\u8CC7\u6599\u57F7\u884C",
|
|
14
|
+
"Action on new records": "\u5C0D\u65B0\u589E\u8CC7\u6599\u57F7\u884C",
|
|
15
|
+
"Action permission": "\u57F7\u884C\u6B0A\u9650",
|
|
16
|
+
"Action permissions": "\u8CC7\u6599\u8868\u52D5\u4F5C\u6B0A\u9650",
|
|
17
|
+
"Action scope": "\u53EF\u904B\u7B97\u5143\u64DA\u7BC4\u570D",
|
|
18
|
+
"Action type": "\u52D5\u4F5C\u578B\u5225",
|
|
19
|
+
Actions: "\u52D5\u4F5C",
|
|
20
|
+
Add: "\u5EFA\u7ACB",
|
|
21
|
+
"Add attach": "\u589E\u52A0\u95DC\u806F",
|
|
22
|
+
"Add block": "\u5EFA\u7ACB\u5340\u584A",
|
|
23
|
+
"Add card": "\u65B0\u589E\u5361\u7247",
|
|
24
|
+
"Add category": "\u65B0\u589E\u5206\u985E",
|
|
25
|
+
"Add child": "\u65B0\u589E\u5B50\u8A18\u9304",
|
|
26
|
+
"Add condition": "\u65B0\u589E\u689D\u4EF6",
|
|
27
|
+
"Add condition group": "\u65B0\u589E\u689D\u4EF6\u7FA4\u7D44",
|
|
28
|
+
"Add exportable field": "\u65B0\u589E\u53EF\u532F\u51FA\u6B04\u4F4D",
|
|
29
|
+
"Add field": "\u65B0\u589E\u6B04\u4F4D",
|
|
30
|
+
"Add filter": "\u65B0\u589E\u7BE9\u9078\u689D\u4EF6",
|
|
31
|
+
"Add filter group": "\u65B0\u589E\u7BE9\u9078\u7FA4\u7D44",
|
|
32
|
+
"Add group": "\u65B0\u589E\u7FA4\u7D44",
|
|
33
|
+
"Add link": "\u65B0\u589E\u9023\u7D50",
|
|
34
|
+
"Add linkage rule": "\u65B0\u589E\u806F\u52D5\u898F\u5247",
|
|
35
|
+
"Add menu item": "\u65B0\u589E\u9078\u55AE\u9805\u76EE",
|
|
36
|
+
"Add new": "\u65B0\u589E",
|
|
37
|
+
"Add new mode": "\u65B0\u589E\u65B9\u5F0F",
|
|
38
|
+
"Add option": "\u65B0\u589E\u9078\u9805",
|
|
39
|
+
"Add page": "\u65B0\u589E\u9801\u9762",
|
|
40
|
+
"Add plugin": "\u65B0\u589E\u63D2\u4EF6",
|
|
41
|
+
"Add property": "\u65B0\u589E\u5C6C\u6027",
|
|
42
|
+
"Add record": "\u65B0\u589E\u8CC7\u6599",
|
|
43
|
+
"Add role": "\u65B0\u589E\u89D2\u8272",
|
|
44
|
+
"Add sort field": "\u65B0\u589E\u6392\u5E8F\u6B04\u4F4D",
|
|
45
|
+
"Add tab": "\u65B0\u589E\u6A19\u7C64\u9801",
|
|
46
|
+
"Add template": "\u65B0\u589E\u6A21\u677F",
|
|
47
|
+
"Add text": "\u65B0\u589E\u6587\u5B57",
|
|
48
|
+
"Add type": "\u65B0\u589E\u65B9\u5F0F",
|
|
49
|
+
"Add validation rule": "\u65B0\u589E\u9A57\u8B49\u898F\u5247",
|
|
50
|
+
'Add {{type}} after "{{title}}"': '\u5728 "{{title}}" \u524D\u63D2\u5165{{type}}',
|
|
51
|
+
'Add {{type}} before "{{title}}"': '\u5728 "{{title}}" \u524D\u63D2\u5165{{type}}',
|
|
52
|
+
'Add {{type}} in "{{title}}"': '\u5728 "{{title}}" \u88E1\u63D2\u5165{{type}}',
|
|
53
|
+
"Advanced type": "\u9AD8\u968E\u578B\u5225",
|
|
54
|
+
After: "\u4E4B\u5F8C",
|
|
55
|
+
"After change": "\u8B8A\u66F4\u5F8C",
|
|
56
|
+
"After clicking the custom button, the following field values will be assigned according to the following form.": "\u9EDE\u9078\u7576\u524D\u81EA\u5B9A\u7FA9\u6309\u9215\u6642\uFF0C\u4EE5\u4E0B\u6B04\u4F4D\u503C\u5C07\u6309\u7167\u4EE5\u4E0B\u8868\u55AE\u8CE6\u503C\u3002",
|
|
57
|
+
"After clicking the custom button, the following fields of the current record will be saved according to the following form.": "\u9EDE\u9078\u7576\u524D\u81EA\u5B9A\u7FA9\u6309\u9215\u6642\uFF0C\u7576\u524D\u8CC7\u6599\u4EE5\u4E0B\u6B04\u4F4D\u5C07\u6309\u7167\u4EE5\u4E0B\u8868\u55AE\u5132\u5B58\u3002",
|
|
58
|
+
"After successful bulk update": "\u6279\u6B21\u6210\u529F\u66F4\u65B0\u5F8C",
|
|
59
|
+
"After successful request": "\u8ACB\u6C42\u6210\u529F\u4E4B\u5F8C",
|
|
60
|
+
"After successful save": "\u5132\u5B58\u6210\u529F\u5F8C",
|
|
61
|
+
"After successful submission": "\u63D0\u4EA4\u6210\u529F\u5F8C",
|
|
62
|
+
"After successful update": "\u66F4\u65B0\u6210\u529F\u5F8C",
|
|
63
|
+
Agenda: "\u5217\u8868",
|
|
64
|
+
All: "\u6240\u6709",
|
|
65
|
+
"All collections": "\u5168\u90E8\u8CC7\u6599\u8868",
|
|
66
|
+
"All collections use general action permissions by default; permission configured individually will override the default one.": "\u6240\u6709\u8CC7\u6599\u8868\u90FD\u9810\u8A2D\u4F7F\u7528\u901A\u7528\u8CC7\u6599\u52D5\u4F5C\u6B0A\u9650\uFF1B\u540C\u6642\uFF0C\u53EF\u4EE5\u91DD\u5C0D\u6BCF\u500B\u8CC7\u6599\u8868\u55AE\u7368\u8A2D\u5B9A\u6B0A\u9650\u3002",
|
|
67
|
+
"All events": "\u6240\u6709\u4E8B\u4EF6",
|
|
68
|
+
"All plugin settings": "\u6240\u6709\u63D2\u4EF6\u8A2D\u5B9A",
|
|
69
|
+
"All records": "\u6240\u6709\u8CC7\u6599",
|
|
70
|
+
Allow: "\u5141\u8A31",
|
|
71
|
+
"Allow access": "\u5141\u8A31\u8A2A\u554F",
|
|
72
|
+
"Allow action": "\u5141\u8A31\u52D5\u4F5C",
|
|
73
|
+
"Allow add new": "\u5141\u8A31\u65B0\u589E",
|
|
74
|
+
"Allow add new data": "\u5141\u8A31\u65B0\u589E\u8CC7\u6599",
|
|
75
|
+
"Allow add new, update and delete actions": "\u5141\u8A31\u589E\u522A\u6539\u52D5\u4F5C",
|
|
76
|
+
"Allow adding records to the current collection": "\u5141\u8A31\u5411\u7576\u524D\u8CC7\u6599\u8868\u88E1\u65B0\u589E\u8A18\u9304",
|
|
77
|
+
"Allow dissociate": "\u5141\u8A31\u79FB\u9664\u5DF2\u95DC\u806F\u8A18\u9304",
|
|
78
|
+
"Allow linking to multiple records": "\u5141\u8A31\u95DC\u806F\u591A\u689D\u8A18\u9304",
|
|
79
|
+
"Allow multiple": "\u5141\u8A31\u65B0\u589E/\u95DC\u806F\u591A\u689D",
|
|
80
|
+
"Allow selection of existing records": "\u5141\u8A31\u9078\u64C7\u5DF2\u6709\u8CC7\u6599",
|
|
81
|
+
"Allow sign up": "\u5141\u8A31\u8A3B\u518A",
|
|
82
|
+
"Allow to configure plugins": "\u5141\u8A31\u7BA1\u7406\u8A2D\u5B9A\u4E2D\u5FC3",
|
|
83
|
+
"Allow to desgin pages": "\u5141\u8A31\u4ECB\u9762\u8A2D\u5B9A",
|
|
84
|
+
"Allow to manage plugins": "\u5141\u8A31\u7BA1\u7406\u63D2\u4EF6",
|
|
85
|
+
"Allows configuration of the whole system, including UI, collections, permissions, etc.": "\u5141\u8A31\u8A2D\u5B9A\u7CFB\u7D71\uFF0C\u5305\u62EC\u4ECB\u9762\u8A2D\u5B9A\u3001\u8CC7\u6599\u8868\u8A2D\u5B9A\u3001\u6B0A\u9650\u8A2D\u5B9A\u3001\u7CFB\u7D71\u8A2D\u5B9A\u7B49\u5168\u90E8\u8A2D\u5B9A\u9805",
|
|
86
|
+
"Allows to clear cache, reboot application": "\u5141\u8A31\u6E05\u9664\u5FEB\u53D6\uFF0C\u91CD\u555F App",
|
|
87
|
+
"Allows to configure interface": "\u5141\u8A31\u8A2D\u5B9A\u4ECB\u9762",
|
|
88
|
+
"Allows to configure plugins": "\u5141\u8A31\u8A2D\u5B9A\u63D2\u4EF6",
|
|
89
|
+
"Allows to install, activate, disable plugins": "\u5141\u8A31\u5B89\u88DD\u3001\u555F\u7528\u3001\u505C\u7528\u63D2\u4EF6",
|
|
90
|
+
"App error": "App \u932F\u8AA4",
|
|
91
|
+
"Application reloading": "App \u91CD\u65B0\u8F09\u5165\u4E2D",
|
|
92
|
+
"Are you sure to delete this plugin?": "\u78BA\u5B9A\u8981\u522A\u9664\u6B64\u63D2\u4EF6\u55CE\uFF1F",
|
|
93
|
+
"Are you sure you don't want to save?": "\u4F60\u78BA\u5B9A\u4E0D\u5132\u5B58\u55CE\uFF1F",
|
|
94
|
+
"Are you sure you want to delete it?": "\u4F60\u78BA\u5B9A\u8981\u522A\u9664\u55CE\uFF1F",
|
|
95
|
+
"Are you sure you want to disassociate it?": "\u4F60\u78BA\u5B9A\u8981\u89E3\u9664\u95DC\u806F\u55CE\uFF1F",
|
|
96
|
+
"Are you sure you want to perform the {{title}} action?": "\u4F60\u78BA\u5B9A\u57F7\u884C{{title}}\u52D5\u4F5C\u55CE\uFF1F",
|
|
97
|
+
Area: "\u5340/\u7E23",
|
|
98
|
+
"Area chart": "\u9762\u7A4D\u5716",
|
|
99
|
+
"Assign data scope for the template": "\u70BA\u6A21\u677F\u6307\u5B9A\u8CC7\u6599\u7BC4\u570D",
|
|
100
|
+
"Assign field values": "\u6B04\u4F4D\u8CE6\u503C",
|
|
101
|
+
"Associated records": "\u95DC\u806F\u8A18\u9304",
|
|
102
|
+
"Association fields": "\u95DC\u806F\u6B04\u4F4D",
|
|
103
|
+
"Association fields filter": "\u95DC\u806F\u7BE9\u9078",
|
|
104
|
+
"Audit logs": "\u57F7\u884C\u8A18\u9304",
|
|
105
|
+
Author: "\u4F5C\u8005",
|
|
106
|
+
"Automatic close": "\u81EA\u52D5\u95DC\u9589",
|
|
107
|
+
"Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "\u81EA\u52D5\u522A\u9664\u4F9D\u8CF4\u65BC\u8A72\u8868\u7684\u7269\u4EF6,\u4EE5\u53CA\u4F9D\u8CF4\u9019\u4E9B\u7269\u4EF6\u7684\u7269\u4EF6",
|
|
108
|
+
"Automatically load data": "\u81EA\u52D5\u52A0\u8F09\u8CC7\u6599",
|
|
109
|
+
"Bar chart": "\u689D\u5F62\u5716",
|
|
110
|
+
Basic: "\u57FA\u672C\u578B\u5225",
|
|
111
|
+
Before: "\u4E4B\u524D",
|
|
112
|
+
"Before change": "\u8B8A\u66F4\u524D",
|
|
113
|
+
"Blank block": "\u7A7A\u5340\u584A",
|
|
114
|
+
Block: "\u5340\u584A",
|
|
115
|
+
"Block templates": "\u5340\u584A\u6A21\u677F",
|
|
116
|
+
"Block title": "\u5340\u584A\u6A19\u984C",
|
|
117
|
+
"Block type": "\u5340\u584A\u578B\u5225",
|
|
118
|
+
Blue: "\u62C2\u66C9\u85CD",
|
|
119
|
+
Bookmark: "\u66F8\u7C64",
|
|
120
|
+
Boolean: "\u5E03\u6797\u503C",
|
|
121
|
+
"Built-in": "\u5167\u5EFA",
|
|
122
|
+
"Bulk edit": "\u6279\u6B21\u7DE8\u8F2F",
|
|
123
|
+
"Bulk update": "\u6279\u6B21\u66F4\u65B0",
|
|
124
|
+
"Button background color": "\u6309\u9215\u984F\u8272",
|
|
125
|
+
"Button icon": "\u6309\u9215\u5716\u793A",
|
|
126
|
+
"Button title": "\u6309\u9215\u6A19\u984C",
|
|
127
|
+
"Calculation engine": "\u8A08\u7B97\u5F15\u64CE",
|
|
128
|
+
Calendar: "\u65E5\u66C6",
|
|
129
|
+
"Calendar collection": "\u65E5\u66C6\u8CC7\u6599\u8868",
|
|
130
|
+
Cancel: "\u53D6\u6D88",
|
|
131
|
+
"Cascade Select": "\u7D1A\u806F\u9078\u64C7",
|
|
132
|
+
Categories: "\u8CC7\u6599\u8868\u985E\u5225",
|
|
133
|
+
"Category name": "\u5206\u985E\u540D\u7A31",
|
|
134
|
+
"Change password": "\u7DE8\u8F2F\u5BC6\u78BC",
|
|
135
|
+
"Changed to": "\u7DE8\u8F2F\u70BA",
|
|
136
|
+
Changelog: "\u66F4\u65B0\u65E5\u8A8C",
|
|
137
|
+
"Chart blocks": "\u5716\u8868\u5340\u584A",
|
|
138
|
+
"Chart config": "\u5716\u8868\u8A2D\u5B9A",
|
|
139
|
+
"Chart title": "\u5716\u8868\u6A19\u984C",
|
|
140
|
+
"Chart type": "\u5716\u8868\u578B\u5225",
|
|
141
|
+
Checkbox: "\u52FE\u9078",
|
|
142
|
+
"Checkbox group": "\u9078\u53D6\u65B9\u584A",
|
|
143
|
+
Children: "\u5B50\u8A18\u9304",
|
|
144
|
+
"China region": "\u4E2D\u570B\u884C\u653F\u5340",
|
|
145
|
+
Choices: "\u9078\u64C7\u578B\u5225",
|
|
146
|
+
"Choices fields": "\u9078\u9805\u6B04\u4F4D",
|
|
147
|
+
City: "\u5E02",
|
|
148
|
+
Clear: "\u6E05\u7A7A",
|
|
149
|
+
"Clear cache": "\u6E05\u9664\u5FEB\u53D6",
|
|
150
|
+
"Click or drag file to this area to upload": "\u9EDE\u9078\u6216\u62D6\u62FD\u6A94\u6848\u5230\u6B64\u5340\u57DF\u4E0A\u50B3",
|
|
151
|
+
Close: "\u95DC\u9589",
|
|
152
|
+
Collapse: "\u647A\u758A",
|
|
153
|
+
"Collapse all": "\u5168\u90E8\u6536\u8D77",
|
|
154
|
+
Collection: "\u8CC7\u6599\u8868",
|
|
155
|
+
"Collection category": "\u8CC7\u6599\u8868\u985E\u5225",
|
|
156
|
+
"Collection display name": "\u8CC7\u6599\u8868\u540D\u7A31",
|
|
157
|
+
"Collection manager": "\u8CC7\u6599\u8868\u7BA1\u7406",
|
|
158
|
+
"Collection name": "\u8CC7\u6599\u8868\u6A19\u8B58",
|
|
159
|
+
"Collection selector": "\u8CC7\u6599\u8868\u9078\u64C7\u5668",
|
|
160
|
+
"Collection template": "\u8CC7\u6599\u8868\u6A21\u677F",
|
|
161
|
+
"Collections & Fields": "\u8CC7\u6599\u8868\u8A2D\u5B9A",
|
|
162
|
+
Color: "\u984F\u8272",
|
|
163
|
+
Column: "\u5217",
|
|
164
|
+
"Column chart": "\u67F1\u72C0\u5716",
|
|
165
|
+
"Column title": "\u884C\u6A19\u984C",
|
|
166
|
+
"Column width": "\u5217\u5BEC",
|
|
167
|
+
"Coming soon...": "\u656C\u8ACB\u671F\u5F85...",
|
|
168
|
+
"Compact theme": "\u7DCA\u6E4A\u4E3B\u984C",
|
|
169
|
+
Comparision: "\u503C\u6BD4\u8F03",
|
|
170
|
+
"Compressed file url": "\u58D3\u7E2E\u5305\u5730\u5740",
|
|
171
|
+
Condition: "\u689D\u4EF6",
|
|
172
|
+
Configure: "\u8A2D\u5B9A",
|
|
173
|
+
"Configure actions": "\u8A2D\u5B9A\u52D5\u4F5C",
|
|
174
|
+
"Configure calendar": "\u8A2D\u5B9A\u65E5\u66C6",
|
|
175
|
+
"Configure columns": "\u8A2D\u5B9A\u6B04\u4F4D",
|
|
176
|
+
"Configure field": "\u8A2D\u5B9A\u6B04\u4F4D",
|
|
177
|
+
"Configure fields": "\u8A2D\u5B9A\u6B04\u4F4D",
|
|
178
|
+
"Configure fields of {{title}}": "\u300C{{title}}\u300D\u7684\u6B04\u4F4D\u8A2D\u5B9A",
|
|
179
|
+
"Configure permission": "\u8A2D\u5B9A\u6B0A\u9650",
|
|
180
|
+
"Configure permissions": "\u8A2D\u5B9A\u6B0A\u9650",
|
|
181
|
+
Confirm: "\u78BA\u5B9A",
|
|
182
|
+
"Confirm password": "\u78BA\u8A8D\u5BC6\u78BC",
|
|
183
|
+
"Connect data blocks": "\u9023\u7DDA\u8CC7\u6599\u5340\u584A",
|
|
184
|
+
"Connect to database view": "\u9023\u7DDA\u8CC7\u6599\u5EAB\u6AA2\u8996",
|
|
185
|
+
Constant: "\u5E38\u91CF",
|
|
186
|
+
"Constant value": "\u975C\u614B\u503C",
|
|
187
|
+
"Convert reference to duplicate": "\u6A21\u677F\u5F15\u7528\u8F49\u70BA\u8907\u88FD",
|
|
188
|
+
"Copy into the form and continue to fill in": "\u8907\u88FD\u5230\u8868\u55AE\u4E26\u7E7C\u7E8C\u586B\u5BEB",
|
|
189
|
+
Create: "\u50C5\u65B0\u589E",
|
|
190
|
+
"Create an account": "\u8A3B\u518A\u5E33\u865F",
|
|
191
|
+
"Create calendar block": "\u5EFA\u7ACB\u65E5\u66C6\u5340\u584A",
|
|
192
|
+
"Create collection": "\u5EFA\u7ACB\u8CC7\u6599\u8868",
|
|
193
|
+
"Create form": "\u5EFA\u7ACB\u8868\u55AE",
|
|
194
|
+
"Create gantt block": "\u5EFA\u7ACB\u7518\u7279\u5716\u5340\u584A",
|
|
195
|
+
"Create inverse field in the target collection": "\u5728\u76EE\u6A19\u8CC7\u6599\u8868\u88E1\u5EFA\u7ACB\u53CD\u5411\u95DC\u806F\u6B04\u4F4D",
|
|
196
|
+
"Create kanban block": "\u5EFA\u7ACB\u770B\u677F\u5340\u584A",
|
|
197
|
+
"Create template": "\u5EFA\u7ACB\u6A21\u677F",
|
|
198
|
+
"Created at": "\u5EFA\u7ACB\u65E5\u671F",
|
|
199
|
+
"Created by": "\u5EFA\u7ACB\u8005",
|
|
200
|
+
"Current form": "\u7576\u524D\u8868\u55AE",
|
|
201
|
+
"Current object": "\u7576\u524D\u7269\u4EF6",
|
|
202
|
+
"Current record": "\u7576\u524D\u8A18\u9304",
|
|
203
|
+
"Current record blocks": "\u7576\u524D\u8CC7\u6599\u5340\u584A",
|
|
204
|
+
"Current role": "\u7576\u524D\u89D2\u8272",
|
|
205
|
+
"Current time": "\u7576\u524D\u6642\u9593",
|
|
206
|
+
"Current user": "\u7576\u524D\u4F7F\u7528\u8005",
|
|
207
|
+
Custom: "\u81EA\u5B9A\u7FA9",
|
|
208
|
+
"Custom Title": "\u81EA\u5B9A\u7FA9\u6A19\u984C",
|
|
209
|
+
"Custom column name": "\u81EA\u5B9A\u7FA9\u884C\u540D\u7A31",
|
|
210
|
+
"Custom column title": "\u81EA\u5B9A\u7FA9\u884C\u6A19\u984C",
|
|
211
|
+
"Custom field display name": "\u81EA\u5B9A\u7FA9\u6B04\u4F4D\u540D\u7A31",
|
|
212
|
+
"Custom name": "\u81EA\u5B9A\u7FA9\u540D\u7A31",
|
|
213
|
+
"Custom request": "\u81EA\u5B9A\u7FA9\u8ACB\u6C42",
|
|
214
|
+
"Custom title": "\u81EA\u5B9A\u7FA9\u6A19\u984C",
|
|
215
|
+
Customize: "\u81EA\u5B9A\u7FA9",
|
|
216
|
+
Cyan: "\u660E\u9752",
|
|
217
|
+
DESC: "\u964D\u51AA",
|
|
218
|
+
Daily: "\u6BCF\u5929",
|
|
219
|
+
"Danger red": "\u7D05\u8272",
|
|
220
|
+
"Data blocks": "\u8CC7\u6599\u5340\u584A",
|
|
221
|
+
"Data changes": "\u8CC7\u6599\u8B8A\u66F4",
|
|
222
|
+
"Data fields": "\u8CC7\u6599\u6B04\u4F4D",
|
|
223
|
+
"Data loading mode": "\u8CC7\u6599\u52A0\u8F09\u65B9\u5F0F",
|
|
224
|
+
"Data scope": "\u8CC7\u6599\u7BC4\u570D",
|
|
225
|
+
"Data template": "\u8CC7\u6599\u6A21\u677F",
|
|
226
|
+
"Data will be updated": "\u66F4\u65B0\u7684\u8CC7\u6599",
|
|
227
|
+
Date: "\u65E5\u671F",
|
|
228
|
+
"Date & Time": "\u65E5\u671F & \u6642\u9593",
|
|
229
|
+
"Date display format": "\u65E5\u671F\u986F\u793A\u683C\u5F0F",
|
|
230
|
+
"Date format": "\u65E5\u671F\u683C\u5F0F",
|
|
231
|
+
"Date variables": "\u65E5\u671F\u8B8A\u6578",
|
|
232
|
+
Datetime: "\u65E5\u671F",
|
|
233
|
+
Day: "\u5929",
|
|
234
|
+
"Day/Month/Year": "\u65E5/\u6708/\u5E74",
|
|
235
|
+
Default: "\u9810\u8A2D",
|
|
236
|
+
"Default collapse": "\u9810\u8A2D\u5C55\u958B",
|
|
237
|
+
"Default is the ID field": "\u9810\u8A2D\u70BA ID \u6B04\u4F4D",
|
|
238
|
+
"Default role": "\u9810\u8A2D\u89D2\u8272",
|
|
239
|
+
"Default theme": "\u9810\u8A2D\u4E3B\u984C",
|
|
240
|
+
"Default title for each record": "\u7528\u4F5C\u8CC7\u6599\u7684\u9810\u8A2D\u6A19\u984C",
|
|
241
|
+
"Default value": "\u9810\u8A2D\u503C",
|
|
242
|
+
Delete: "\u522A\u9664",
|
|
243
|
+
"Delete Event": "\u522A\u9664\u4E8B\u4EF6",
|
|
244
|
+
"Delete action": "\u522A\u9664\u52D5\u4F5C",
|
|
245
|
+
"Delete block": "\u522A\u9664\u5340\u584A",
|
|
246
|
+
"Delete category": "\u522A\u9664\u5206\u985E",
|
|
247
|
+
"Delete events": "\u522A\u9664\u4E8B\u4EF6",
|
|
248
|
+
"Delete field": "\u522A\u9664\u6B04\u4F4D",
|
|
249
|
+
"Delete menu item": "\u522A\u9664\u9078\u55AE\u9805",
|
|
250
|
+
"Delete record": "\u522A\u9664\u8CC7\u6599",
|
|
251
|
+
"Delete role": "\u522A\u9664\u89D2\u8272",
|
|
252
|
+
"Delete table column": "\u522A\u9664\u884C",
|
|
253
|
+
"Delete this event?": "\u662F\u5426\u522A\u9664\u9019\u500B\u4E8B\u4EF6\uFF1F",
|
|
254
|
+
"Dependencies check": "\u4F9D\u8CF4\u6AA2\u67E5",
|
|
255
|
+
"Dependencies check failed, can't enable.": "\u4F9D\u8CF4\u6AA2\u67E5\u5931\u6557\uFF0C\u7121\u6CD5\u555F\u7528\u3002",
|
|
256
|
+
"Dependencies compatibility check": "\u4F9D\u8CF4\u76F8\u5BB9\u6027\u6AA2\u67E5",
|
|
257
|
+
Description: "\u63CF\u8FF0",
|
|
258
|
+
"Desktop device": "\u96FB\u8166\u88DD\u7F6E",
|
|
259
|
+
Details: "\u8A73\u60C5",
|
|
260
|
+
"Determine whether a record exists by the following fields": "\u900F\u904E\u4EE5\u4E0B\u6B04\u4F4D\u5224\u65B7\u8A18\u9304\u662F\u5426\u5B58\u5728",
|
|
261
|
+
Dialog: "\u5C0D\u8A71\u65B9\u584A",
|
|
262
|
+
"Direct duplicate": "\u76F4\u63A5\u8907\u88FD",
|
|
263
|
+
Disable: "\u505C\u7528",
|
|
264
|
+
"Disable tabs": "\u505C\u7528\u6A19\u7C64\u9801",
|
|
265
|
+
Disabled: "\u505C\u7528",
|
|
266
|
+
Disassociate: "\u89E3\u9664\u95DC\u806F",
|
|
267
|
+
"Disassociate record": "\u89E3\u9664\u95DC\u806F\u8A18\u9304",
|
|
268
|
+
"Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "\u6BCF\u9801\u986F\u793A <1><0>10</0><1>20</1><2>50</2><3>100</3></1> \u9805",
|
|
269
|
+
"Display <icon></icon> when unchecked": "\u672A\u52FE\u9078\u6642\u986F\u793A <icon></icon>",
|
|
270
|
+
"Display association fields": "\u986F\u793A\u95DC\u806F\u8868\u7684\u6B04\u4F4D",
|
|
271
|
+
"Display data template selector": "\u986F\u793A\u8CC7\u6599\u6A21\u677F\u9078\u64C7\u6846",
|
|
272
|
+
"Display field title": "\u986F\u793A\u6B04\u4F4D\u6A19\u984C",
|
|
273
|
+
"Display fields": "\u986F\u793A\u6B04\u4F4D",
|
|
274
|
+
"Display name": "\u986F\u793A\u540D\u7A31",
|
|
275
|
+
"Display order number": "\u986F\u793A\u5E8F\u865F",
|
|
276
|
+
"Display page title": "\u986F\u793A\u9801\u9762\u6A19\u984C",
|
|
277
|
+
"Display title": "\u986F\u793A\u6A19\u984C",
|
|
278
|
+
DisplayName: "\u986F\u793A\u540D\u7A31",
|
|
279
|
+
Docs: "\u6587\u4EF6",
|
|
280
|
+
Done: "\u5B8C\u6210",
|
|
281
|
+
"Double click to choose entire object": "\u96D9\u64CA\u9078\u64C7\u6574\u500B\u7269\u4EF6",
|
|
282
|
+
"Drag and drop the file here or click to upload, file size should not exceed 30M": "\u5C07\u6A94\u6848\u62D6\u653E\u5230\u6B64\u8655\u6216\u55AE\u64CA\u4E0A\u50B3\uFF0C\u6A94\u6848\u5927\u5C0F\u4E0D\u61C9\u8D85\u904E 30M",
|
|
283
|
+
Dragging: "\u62D6\u62FD\u4E2D",
|
|
284
|
+
Drawer: "\u5074\u6B04",
|
|
285
|
+
Dropdown: "\u4E0B\u62C9\u9078\u55AE",
|
|
286
|
+
Duplicate: "\u8907\u88FD",
|
|
287
|
+
"Duplicate and continue": "\u8907\u88FD\u4E26\u7E7C\u7E8C",
|
|
288
|
+
"Duplicate mode": "\u8907\u88FD\u65B9\u5F0F",
|
|
289
|
+
"Duplicate template": "\u8907\u88FD\u6A21\u677F",
|
|
290
|
+
Duplicating: "\u8907\u88FD\u4E2D",
|
|
291
|
+
"Dynamic value": "\u52D5\u614B\u503C",
|
|
292
|
+
"Easy reading": "\u552F\u8B80(\u95B1\u8B80\u6A21\u5F0F)",
|
|
293
|
+
"Easy-reading": "\u552F\u8B80 (\u95B1\u8B80\u6A21\u5F0F)",
|
|
294
|
+
Edit: "\u7DE8\u8F2F",
|
|
295
|
+
"Edit block title": "\u7DE8\u8F2F\u5340\u584A\u6A19\u984C",
|
|
296
|
+
"Edit button": "\u7DE8\u8F2F\u6309\u9215",
|
|
297
|
+
"Edit category": "\u7DE8\u8F2F\u5206\u985E",
|
|
298
|
+
"Edit chart": "\u7DE8\u8F2F\u5716\u8868",
|
|
299
|
+
"Edit collection": "\u7DE8\u8F2F\u8CC7\u6599\u8868",
|
|
300
|
+
"Edit description": "\u7DE8\u8F2F\u63CF\u8FF0",
|
|
301
|
+
"Edit field": "\u7DE8\u8F2F\u6B04\u4F4D",
|
|
302
|
+
"Edit field title": "\u7DE8\u8F2F\u6B04\u4F4D\u6A19\u984C",
|
|
303
|
+
"Edit form": "\u7DE8\u8F2F\u8868\u55AE",
|
|
304
|
+
"Edit markdown": "\u7DE8\u8F2F Markdown",
|
|
305
|
+
"Edit menu item": "\u7DE8\u8F2F\u9078\u55AE\u9805\u76EE",
|
|
306
|
+
"Edit page title": "\u7DE8\u8F2F\u9801\u9762\u6A19\u984C",
|
|
307
|
+
"Edit profile": "\u500B\u4EBA\u8CC7\u6599",
|
|
308
|
+
"Edit record": "\u7DE8\u8F2F\u8CC7\u6599",
|
|
309
|
+
"Edit role": "\u7DE8\u8F2F\u89D2\u8272",
|
|
310
|
+
"Edit tab": "\u7DE8\u8F2F\u6A19\u7C64\u9801",
|
|
311
|
+
"Edit tooltip": "\u7DE8\u8F2F\u63D0\u793A\u8CC7\u8A0A",
|
|
312
|
+
Editable: "\u53EF\u7DE8\u8F2F",
|
|
313
|
+
Email: "\u96FB\u5B50\u90F5\u7BB1",
|
|
314
|
+
Empty: "\u8CE6\u7A7A\u503C",
|
|
315
|
+
Enable: "\u555F\u7528",
|
|
316
|
+
"Enable SMS authentication": "\u555F\u7528\u7C21\u8A0A\u767B\u5165\u548C\u8A3B\u518A",
|
|
317
|
+
"Enable actions": "\u555F\u7528\u52D5\u4F5C",
|
|
318
|
+
"Enable child collections": "\u555F\u7528\u5B50\u8868",
|
|
319
|
+
"Enable drag and drop sorting": "\u555F\u7528\u62D6\u62FD\u6392\u5E8F",
|
|
320
|
+
"Enable link": "\u555F\u7528\u9023\u7D50",
|
|
321
|
+
"Enable page header": "\u555F\u7528\u9801\u9996",
|
|
322
|
+
"Enable page tabs": "\u555F\u7528\u9801\u9762\u9078\u9805\u5361",
|
|
323
|
+
Enabled: "\u555F\u7528",
|
|
324
|
+
"Enabled languages": "\u555F\u7528\u7684\u8A9E\u8A00",
|
|
325
|
+
"End date field": "\u7D50\u675F\u65E5\u671F\u6B04\u4F4D",
|
|
326
|
+
"Error message": "\u932F\u8AA4\u8A0A\u606F",
|
|
327
|
+
Event: "\u4E8B\u4EF6",
|
|
328
|
+
Execute: "\u57F7\u884C",
|
|
329
|
+
Exists: "\u5B58\u5728",
|
|
330
|
+
"Expand all": "\u5168\u90E8\u5C55\u958B",
|
|
331
|
+
"Expand/Collapse": "\u5C55\u958B/\u647A\u758A",
|
|
332
|
+
Export: "\u532F\u51FA",
|
|
333
|
+
"Exportable fields": "\u53EF\u532F\u51FA\u6B04\u4F4D",
|
|
334
|
+
Expression: "\u8868\u9054\u5F0F",
|
|
335
|
+
"Expression collection": "\u8868\u9054\u5F0F\u8868",
|
|
336
|
+
"Failed to load plugin": "\u63D2\u4EF6\u8F09\u5165\u5931\u6557",
|
|
337
|
+
False: "False",
|
|
338
|
+
Feedback: "\u53CD\u994B\u554F\u984C",
|
|
339
|
+
Field: "\u6B04\u4F4D",
|
|
340
|
+
"Field component": "\u6B04\u4F4D\u5143\u4EF6",
|
|
341
|
+
"Field display name": "\u6B04\u4F4D\u540D\u7A31",
|
|
342
|
+
"Field interface": "\u6B04\u4F4D\u578B\u5225",
|
|
343
|
+
"Field mode": "\u6B04\u4F4D\u5143\u4EF6",
|
|
344
|
+
"Field name": "\u6B04\u4F4D\u6A19\u8B58",
|
|
345
|
+
"Field permission": "\u6B04\u4F4D\u6B0A\u9650",
|
|
346
|
+
"Field source": "\u4F86\u6E90\u6B04\u4F4D",
|
|
347
|
+
"Field title": "\u6B04\u4F4D\u6A19\u984C",
|
|
348
|
+
"Field type": "\u6B04\u4F4D\u578B\u5225",
|
|
349
|
+
"Field value changes": "\u8B8A\u66F4\u8A18\u9304",
|
|
350
|
+
Fields: "\u6B04\u4F4D",
|
|
351
|
+
"Fields values": "\u6B04\u4F4D\u6578\u503C",
|
|
352
|
+
"File manager": "\u6A94\u6848\u7BA1\u7406\u5668",
|
|
353
|
+
Filter: "\u7BE9\u9078",
|
|
354
|
+
"Filter blocks": "\u7BE9\u9078\u5340\u584A",
|
|
355
|
+
"Filterable fields": "\u53EF\u7BE9\u9078\u6B04\u4F4D",
|
|
356
|
+
"Find by the following fields": "\u900F\u904E\u4EE5\u4E0B\u6B04\u4F4D\u67E5\u8A62",
|
|
357
|
+
"First or create": "\u4E0D\u5B58\u5728\u6642\u5247\u65B0\u589E,\u5B58\u5728\u6642\u4E0D\u8655\u7406",
|
|
358
|
+
"Fix block": "\u56FA\u5B9A\u5340\u584A",
|
|
359
|
+
"Flexible popup": "Flexible popup",
|
|
360
|
+
"Foreign key": "\u5916\u4F86\u9375",
|
|
361
|
+
"Foreign key 1": "\u5916\u4F86\u93751",
|
|
362
|
+
"Foreign key 2": "\u5916\u4F86\u93752",
|
|
363
|
+
Form: "\u8868\u55AE",
|
|
364
|
+
"Form (Add new)": "\u8868\u55AE\uFF08\u6DFB\u52A0\uFF09",
|
|
365
|
+
"Form (Edit)": "\u8868\u55AE\uFF08\u7DE8\u8F2F\uFF09",
|
|
366
|
+
"Form data templates": "\u8868\u55AE\u8CC7\u6599\u6A21\u677F",
|
|
367
|
+
"Form values": "\u8868\u55AE\u6578\u503C",
|
|
368
|
+
Format: "\u683C\u5F0F",
|
|
369
|
+
Formula: "\u516C\u5F0F",
|
|
370
|
+
"Formula description": "\u57FA\u65BC\u540C\u4E00\u689D\u8A18\u9304\u4E2D\u7684\u5176\u4ED6\u6B04\u4F4D\u8A08\u7B97\u51FA\u4E00\u500B\u503C\u3002",
|
|
371
|
+
"Formula.js supports most Microsoft Excel formula functions.": "Formula.js \u652F\u63F4\u5927\u90E8\u5206 Mircrosoft Excel \u516C\u5F0F\u3002",
|
|
372
|
+
Function: "Function",
|
|
373
|
+
Gantt: "\u7518\u7279\u5716",
|
|
374
|
+
"Geek blue": "\u6975\u5BA2\u85CD",
|
|
375
|
+
General: "\u901A\u7528\u8A2D\u5B9A",
|
|
376
|
+
"General action permissions": "\u901A\u7528\u52D5\u4F5C\u6B0A\u9650",
|
|
377
|
+
"General collection": "\u666E\u901A\u8CC7\u6599\u8868",
|
|
378
|
+
"General fields": "\u666E\u901A\u6B04\u4F4D",
|
|
379
|
+
"General permissions": "\u901A\u7528\u8A2D\u5B9A",
|
|
380
|
+
"Generated automatically if left blank": "\u7559\u7A7A\u6642\uFF0C\u81EA\u52D5\u751F\u6210\u4E2D\u4ECB\u8868",
|
|
381
|
+
"Global action permissions": "\u5168\u57DF\u6027\u52D5\u4F5C\u6B0A\u9650",
|
|
382
|
+
"Global permissions": "\u5168\u57DF\u6027\u8A2D\u5B9A",
|
|
383
|
+
Gold: "\u91D1\u76DE\u82B1",
|
|
384
|
+
Green: "\u6975\u5149\u7DA0",
|
|
385
|
+
"Grid Card": "\u7DB2\u683C\u5361\u7247",
|
|
386
|
+
Group: "\u7FA4\u7D44",
|
|
387
|
+
"Grouping field": "\u7FA4\u7D44\u6B04\u4F4D",
|
|
388
|
+
"Half of day": "\u534A\u5929",
|
|
389
|
+
Handbook: "\u4F7F\u7528\u624B\u518A",
|
|
390
|
+
Hidden: "\u96B1\u85CF",
|
|
391
|
+
"Hidden(reserved value)": "\u96B1\u85CF(\u4FDD\u7559\u6578\u503C)",
|
|
392
|
+
Hide: "\u96B1\u85CF",
|
|
393
|
+
Highlight: "\u9AD8\u4EAE",
|
|
394
|
+
"Home page": "\u4E3B\u9801",
|
|
395
|
+
Homepage: "\u4E3B\u9801",
|
|
396
|
+
Hour: "\u5C0F\u6642",
|
|
397
|
+
ID: "ID",
|
|
398
|
+
Icon: "\u5716\u793A",
|
|
399
|
+
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "\u7528\u65BC\u7A0B\u5F0F\u4F7F\u7528\u7684\u8B58\u5225\u7B26\u865F\uFF0C\u652F\u63F4\u5B57\u6BCD\u3001\u6578\u5B57\u548C\u4E0B\u5283\u7DDA\uFF0C\u5FC5\u9808\u4EE5\u5B57\u6BCD\u958B\u982D\u3002",
|
|
400
|
+
"If collection inherits, choose inherited collections as templates": "\u7576\u524D\u8868\u6709\u7E7C\u627F\u95DC\u806F\u6642\uFF0C\u53EF\u9078\u64C7\u7E7C\u627F\u93C8\u8DEF\u4E0A\u7684\u8868\u4F5C\u70BA\u6A21\u677F\u4F86\u6E90",
|
|
401
|
+
Import: "\u532F\u5165",
|
|
402
|
+
"Importable fields": "\u53EF\u532F\u5165\u6B04\u4F4D",
|
|
403
|
+
"In configuration": "\u8A2D\u5B9A\u4E2D",
|
|
404
|
+
Individual: "\u55AE\u7368\u8A2D\u5B9A",
|
|
405
|
+
"Inherited fields": "\u7E7C\u627F\u6B04\u4F4D",
|
|
406
|
+
Inherits: "\u7E7C\u627F",
|
|
407
|
+
Inner: "\u88E1\u9762",
|
|
408
|
+
Insert: "\u63D2\u5165",
|
|
409
|
+
"Insert above": "\u5F9E\u4E0A\u65B9\u63D2\u5165",
|
|
410
|
+
"Insert after": "\u5F9E\u5F8C\u9762\u63D2\u5165",
|
|
411
|
+
"Insert before": "\u5F9E\u524D\u9762\u63D2\u5165",
|
|
412
|
+
"Insert below": "\u5F9E\u4E0B\u65B9\u63D2\u5165",
|
|
413
|
+
"Insert if not exists": "\u4E0D\u5B58\u5728\u6642\u63D2\u5165",
|
|
414
|
+
"Insert if not exists, or update": "\u4E0D\u5B58\u5728\u6642\u63D2\u5165\uFF0C\u5426\u5247\u66F4\u65B0",
|
|
415
|
+
"Insert inner": "\u5F9E\u88E1\u9762\u63D2\u5165",
|
|
416
|
+
"Insert left": "\u5F9E\u5DE6\u908A\u63D2\u5165",
|
|
417
|
+
"Insert right": "\u5F9E\u53F3\u908A\u63D2\u5165",
|
|
418
|
+
Installing: "\u5B89\u88DD\u4E2D",
|
|
419
|
+
Integer: "\u6574\u6578",
|
|
420
|
+
"Invalid JSON format": "\u975E\u6CD5 JSON \u683C\u5F0F",
|
|
421
|
+
"Inverse field display name": "\u53CD\u5411\u95DC\u806F\u6B04\u4F4D\u540D\u7A31",
|
|
422
|
+
"Inverse field name": "\u53CD\u5411\u95DC\u806F\u6B04\u4F4D\u6A19\u8B58",
|
|
423
|
+
"Inverse relationship type": "\u53CD\u5411\u95DC\u806F\u578B\u5225",
|
|
424
|
+
"Junction collection": "\u4E2D\u4ECB\u8868",
|
|
425
|
+
Kanban: "\u770B\u677F",
|
|
426
|
+
"Label field": "\u6A19\u7C64\u6B04\u4F4D",
|
|
427
|
+
Language: "\u8A9E\u8A00\u8A2D\u5B9A",
|
|
428
|
+
Large: "\u8F03\u5BEC",
|
|
429
|
+
"Large screen device": "\u5927\u87A2\u5E55\u88DD\u7F6E",
|
|
430
|
+
"Last 30 days": "\u6700\u8FD1 30 \u5929",
|
|
431
|
+
"Last 7 days": "\u6700\u8FD1 7 \u5929",
|
|
432
|
+
"Last 90 days": "\u6700\u8FD1 90 \u5929",
|
|
433
|
+
"Last month": "\u4E0A\u6708",
|
|
434
|
+
"Last quarter": "\u4E0A\u5B63\u5EA6",
|
|
435
|
+
"Last updated": "\u6700\u5F8C\u66F4\u65B0",
|
|
436
|
+
"Last updated at": "\u6700\u5F8C\u7DE8\u8F2F\u65E5\u671F",
|
|
437
|
+
"Last updated by": "\u6700\u5F8C\u7DE8\u8F2F\u8005",
|
|
438
|
+
"Last week": "\u4E0A\u9031",
|
|
439
|
+
"Last year": "\u53BB\u5E74",
|
|
440
|
+
"Leave it blank, unless you need a custom intermediate table": "\u9810\u8A2D\u7559\u7A7A\uFF0C\u9664\u975E\u4F60\u9700\u8981\u4E00\u500B\u81EA\u5B9A\u7FA9\u7684\u4E2D\u4ECB\u8868",
|
|
441
|
+
Length: "\u9577\u5EA6",
|
|
442
|
+
License: "\u8A31\u53EF\u8B49",
|
|
443
|
+
Lime: "\u9752\u6AB8",
|
|
444
|
+
"Line chart": "\u6298\u7DDA\u5716",
|
|
445
|
+
Link: "\u8D85\u9023\u7D50",
|
|
446
|
+
"Link to": "\u95DC\u806F",
|
|
447
|
+
"Link to description": "\u7528\u65BC\u5FEB\u901F\u5EFA\u7ACB\u8868\u95DC\u806F\uFF0C\u53EF\u76F8\u5BB9\u5927\u591A\u6578\u666E\u901A\u5834\u666F\u3002\u9069\u5408\u975E\u958B\u767C\u4EBA\u54E1\u4F7F\u7528\u3002\u4F5C\u70BA\u6B04\u4F4D\u5B58\u5728\u6642\uFF0C\u5B83\u662F\u4E00\u500B\u4E0B\u62C9\u9078\u64C7\u7528\u65BC\u9078\u64C7\u76EE\u6A19\u8CC7\u6599\u8868\u7684\u8CC7\u6599\u3002\u5EFA\u7ACB\u5F8C\uFF0C\u5C07\u540C\u6642\u5728\u76EE\u6A19\u8CC7\u6599\u8868\u4E2D\u751F\u6210\u7576\u524D\u8CC7\u6599\u8868\u7684\u95DC\u806F\u6B04\u4F4D\u3002",
|
|
448
|
+
"Linkage rule": "\u806F\u52D5\u898F\u5247",
|
|
449
|
+
"Linkage rules": "\u806F\u52D5\u898F\u5247",
|
|
450
|
+
"Linkage with form fields": "\u5F9E\u8868\u55AE\u6B04\u4F4D\u806F\u52D5",
|
|
451
|
+
List: "\u5217\u8868",
|
|
452
|
+
"Load data after filtering": "\u7BE9\u9078\u5F8C\u624D\u52A0\u8F09\u8CC7\u6599",
|
|
453
|
+
Local: "\u672C\u5730",
|
|
454
|
+
"Log in with an existing account": "\u4F7F\u7528\u5DF2\u6709\u5E33\u865F\u767B\u5165",
|
|
455
|
+
Logo: "Logo",
|
|
456
|
+
"Long text": "\u591A\u884C\u6587\u5B57",
|
|
457
|
+
Magenta: "\u6CD5\u5F0F\u6D0B\u7D05",
|
|
458
|
+
"Manage all settings": "\u7BA1\u7406\u6240\u6709\u8A2D\u5B9A",
|
|
459
|
+
"Manually close": "\u624B\u52D5\u95DC\u9589",
|
|
460
|
+
"Many to many": "\u591A\u5C0D\u591A",
|
|
461
|
+
"Many to many description": "\u7528\u65BC\u5EFA\u7ACB\u591A\u5C0D\u591A\u95DC\u806F\uFF0C\u6BD4\u5982\u4E00\u500B\u5B78\u751F\u6703\u6709\u591A\u500B\u8001\u5E2B\uFF0C\u4E00\u500B\u8001\u5E2B\u4E5F\u6703\u6709\u591A\u500B\u5B78\u751F\u3002\u4F5C\u70BA\u6B04\u4F4D\u5B58\u5728\u6642\uFF0C\u5B83\u662F\u4E00\u500B\u4E0B\u62C9\u9078\u64C7\u7528\u65BC\u9078\u64C7\u76EE\u6A19\u8CC7\u6599\u8868\u7684\u8CC7\u6599\u3002",
|
|
462
|
+
"Many to one": "\u591A\u5C0D\u4E00",
|
|
463
|
+
"Many to one description": "\u7528\u65BC\u5EFA\u7ACB\u591A\u5C0D\u4E00\u95DC\u806F\uFF0C\u6BD4\u5982\u4E00\u500B\u57CE\u5E02\u53EA\u80FD\u5C6C\u65BC\u4E00\u500B\u570B\u5BB6\uFF0C\u4E00\u500B\u570B\u5BB6\u53EF\u4EE5\u6709\u591A\u500B\u57CE\u5E02\u3002\u4F5C\u70BA\u6B04\u4F4D\u5B58\u5728\u6642\uFF0C\u5B83\u662F\u4E00\u500B\u4E0B\u62C9\u9078\u64C7\u7528\u65BC\u9078\u64C7\u76EE\u6A19\u8CC7\u6599\u8868\u7684\u8CC7\u6599\u3002\u5EFA\u7ACB\u5F8C\uFF0C\u6703\u5728\u76EE\u6A19\u8CC7\u6599\u8868\u88E1\u81EA\u52D5\u751F\u6210\u4E00\u500B\u591A\u5C0D\u4E00\u6B04\u4F4D\u3002",
|
|
464
|
+
Markdown: "Markdown",
|
|
465
|
+
Marketplace: "\u63D2\u4EF6\u5E02\u5834",
|
|
466
|
+
"Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types": "Math.js \u5305\u542B\u5927\u91CF\u5167\u5EFA\u51FD\u5F0F\u548C\u5E38\u91CF\uFF0C\u4E26\u63D0\u4F9B\u4E86\u6574\u5408\u7684\u89E3\u6C7A\u65B9\u6848\u4F86\u8655\u7406\u4E0D\u540C\u7684\u8CC7\u6599\u578B\u5225\u3002",
|
|
467
|
+
"Max length": "\u6700\u5927\u9577\u5EA6",
|
|
468
|
+
"Max length must greater than min length": "\u6700\u5927\u9577\u5EA6\u5FC5\u9808\u5927\u65BC\u6700\u5C0F\u9577\u5EA6",
|
|
469
|
+
Maximum: "\u6700\u5927\u503C",
|
|
470
|
+
"Maximum must greater than minimum": "\u6700\u5927\u503C\u5FC5\u9808\u5927\u65BC\u6700\u5C0F\u503C",
|
|
471
|
+
Media: "\u591A\u5A92\u9AD4",
|
|
472
|
+
"Meet <1><0>All</0><1>Any</1></1> conditions in the group": "\u6EFF\u8DB3\u7FA4\u7D44\u5167 <1><0>\u5168\u90E8</0><1>\u4EFB\u610F</1></1> \u689D\u4EF6",
|
|
473
|
+
"Menu item icon": "\u9078\u55AE\u9805\u76EE\u5716\u793A",
|
|
474
|
+
"Menu item name": "\u9078\u55AE\u540D\u7A31",
|
|
475
|
+
"Menu item title": "\u9078\u55AE\u9805\u76EE\u540D\u7A31",
|
|
476
|
+
"Menu permissions": "\u9078\u55AE\u8A2A\u554F\u6B0A\u9650",
|
|
477
|
+
Middle: "\u4E2D\u7B49",
|
|
478
|
+
"Min length": "\u6700\u5C0F\u9577\u5EA6",
|
|
479
|
+
"Min length must less than max length": "\u6700\u5C0F\u9577\u5EA6\u5FC5\u9808\u5C0F\u65BC\u6700\u5927\u9577\u5EA6",
|
|
480
|
+
Minimum: "\u6700\u5C0F\u503C",
|
|
481
|
+
"Minimum must less than maximum": "\u6700\u5C0F\u503C\u5FC5\u9808\u5C0F\u65BC\u6700\u5927\u503C",
|
|
482
|
+
"Modal add": "\u5F48\u7A97\u65B0\u589E",
|
|
483
|
+
Month: "\u6708",
|
|
484
|
+
Monthly: "\u6BCF\u6708",
|
|
485
|
+
"More details": "\u66F4\u591A\u8A73\u60C5",
|
|
486
|
+
"More options": "\u66F4\u591A\u9078\u9805",
|
|
487
|
+
"Move to": "\u79FB\u52D5\u5230",
|
|
488
|
+
"Move {{title}} to": "\u5C07 {{title}} \u79FB\u52D5\u5230",
|
|
489
|
+
"Multiple select": "\u4E0B\u62C9\u9078\u55AE\uFF08\u591A\u9078\uFF09",
|
|
490
|
+
"Must be 2-16 characters in length (excluding @.<>\"'/)": `\u9577\u5EA6\u70BA2\u523016\u500B\u5B57\u5143\uFF08\u4E0D\u80FD\u5305\u542B@.<>"'/\uFF09`,
|
|
491
|
+
"Must select to the last level": "\u5FC5\u9808\u9078\u5230\u6700\u5F8C\u4E00\u968E",
|
|
492
|
+
Name: "\u540D\u7A31",
|
|
493
|
+
Navigate: "\u5206\u9801",
|
|
494
|
+
"New menu items are allowed to be accessed by default.": "\u65B0\u589E\u9078\u55AE\u9805\u9810\u8A2D\u5141\u8A31\u8A2A\u554F",
|
|
495
|
+
"New password": "\u65B0\u5BC6\u78BC",
|
|
496
|
+
"Next 30 days": "\u672A\u4F86 30 \u5929",
|
|
497
|
+
"Next 7 days": "\u672A\u4F86 7 \u5929",
|
|
498
|
+
"Next 90 days": "\u672A\u4F86 90 \u5929",
|
|
499
|
+
"Next month": "\u4E0B\u6708",
|
|
500
|
+
"Next quarter": "\u4E0B\u5B63\u5EA6",
|
|
501
|
+
"Next week": "\u4E0B\u9031",
|
|
502
|
+
"Next year": "\u660E\u5E74",
|
|
503
|
+
Nickname: "\u66B1\u7A31",
|
|
504
|
+
No: "\u5426",
|
|
505
|
+
"No CHANGELOG.md file": "\u6C92\u6709 CHANGELOG.md \u65E5\u8A8C",
|
|
506
|
+
"No README.md file": "\u6C92\u6709 README.md \u6A94\u6848",
|
|
507
|
+
"No blocks to connect": "\u6C92\u6709\u53EF\u9023\u7DDA\u7684\u5340\u584A",
|
|
508
|
+
"No configuration available.": "\u7121\u53EF\u8A2D\u5B9A\u9805\u3002",
|
|
509
|
+
None: "\u7121",
|
|
510
|
+
"Not enabled": "\u672A\u555F\u7528",
|
|
511
|
+
"Not required": "\u9078\u586B",
|
|
512
|
+
Now: "\u73FE\u5728",
|
|
513
|
+
"Npm package": "Npm \u5305",
|
|
514
|
+
"Npm package name": "Npm \u5305\u540D",
|
|
515
|
+
Null: "\u7A7A\u503C",
|
|
516
|
+
Number: "\u6578\u5B57",
|
|
517
|
+
Off: "\u505C\u7528",
|
|
518
|
+
"Official plugin": "\u5B98\u65B9\u63D2\u4EF6",
|
|
519
|
+
"Old password": "\u820A\u5BC6\u78BC",
|
|
520
|
+
On: "\u555F\u7528",
|
|
521
|
+
"One to many": "\u4E00\u5C0D\u591A",
|
|
522
|
+
"One to many description": "\u7528\u65BC\u5EFA\u7ACB\u4E00\u5C0D\u591A\u95DC\u806F\uFF0C\u6BD4\u5982\u4E00\u500B\u570B\u5BB6\u6703\u6709\u591A\u500B\u57CE\u5E02\u3002\u4F5C\u70BA\u6B04\u4F4D\u5B58\u5728\u6642\uFF0C\u5B83\u662F\u4E00\u500B\u5B50\u8868\u683C\u7528\u65BC\u986F\u793A\u76EE\u6A19\u8CC7\u6599\u8868\u7684\u8CC7\u6599\u3002\u5EFA\u7ACB\u5F8C\uFF0C\u6703\u5728\u76EE\u6A19\u8CC7\u6599\u8868\u88E1\u81EA\u52D5\u751F\u6210\u4E00\u500B\u591A\u5C0D\u4E00\u6B04\u4F4D\u3002",
|
|
523
|
+
"One to one": "\u4E00\u5C0D\u4E00",
|
|
524
|
+
"One to one (belongs to)": "\u4E00\u5C0D\u4E00\uFF08belongs to\uFF09",
|
|
525
|
+
"One to one (has one)": "\u4E00\u5C0D\u4E00\uFF08has one\uFF09",
|
|
526
|
+
"One to one description": "\u7528\u65BC\u5EFA\u7ACB\u4E00\u5C0D\u4E00\u95DC\u806F\uFF0C\u6BD4\u5982\u4E00\u500B\u4F7F\u7528\u8005\u6703\u6709\u4E00\u5957\u500B\u4EBA\u8CC7\u6599\u3002",
|
|
527
|
+
"Only the selected fields will be used as the initialization data for the form": "\u50C5\u9078\u64C7\u7684\u6B04\u4F4D\u624D\u6703\u4F5C\u70BA\u8868\u55AE\u7684\u521D\u59CB\u5316\u8CC7\u6599",
|
|
528
|
+
"Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "\u5728 <1><0>\u5C0D\u8A71\u65B9\u584A</0><1>\u5074\u6B04</1><2>\u5F48\u51FA\u8996\u7A97</2></1> \u5167\u958B\u555F",
|
|
529
|
+
"Open mode": "\u958B\u555F\u65B9\u5F0F",
|
|
530
|
+
"Operate on existing data": "\u5C0D\u5DF2\u6709\u8CC7\u6599\u52D5\u4F5C",
|
|
531
|
+
"Operate on new data": "\u5C0D\u65B0\u589E\u8CC7\u6599\u52D5\u4F5C",
|
|
532
|
+
"Operation failed": "\u57F7\u884C\u5931\u6557",
|
|
533
|
+
"Operation succeeded": "\u57F7\u884C\u6210\u529F",
|
|
534
|
+
Operator: "\u904B\u7B97\u5B50",
|
|
535
|
+
"Option label": "\u9078\u9805\u6A19\u7C64",
|
|
536
|
+
"Option value": "\u9078\u9805\u503C",
|
|
537
|
+
Options: "\u9078\u9805",
|
|
538
|
+
Orange: "\u65E5\u66AE",
|
|
539
|
+
"Original field title: ": "\u539F\u59CB\u6B04\u4F4D\u6A19\u984C\uFF1A",
|
|
540
|
+
"Original name": "\u539F\u540D\u7A31",
|
|
541
|
+
"Original title: ": "\u539F\u59CB\u6A19\u984C: ",
|
|
542
|
+
"Other blocks": "\u5176\u4ED6\u5340\u584A",
|
|
543
|
+
"Other chart": "\u5176\u4ED6\u5716\u8868",
|
|
544
|
+
Others: "\u5176\u4ED6",
|
|
545
|
+
Override: "\u91CD\u5BEB",
|
|
546
|
+
"Override field": "\u91CD\u5BEB\u6B04\u4F4D",
|
|
547
|
+
"Own records": "\u81EA\u5DF1\u7684\u8CC7\u6599",
|
|
548
|
+
"PK & FK fields": "\u4E3B\u5916\u4F86\u9375\u6B04\u4F4D",
|
|
549
|
+
PackageName: "\u5305\u540D",
|
|
550
|
+
Page: "\u9801\u9762",
|
|
551
|
+
"Page number": "\u9801\u78BC",
|
|
552
|
+
"Page size": "\u6BCF\u9801\u5217\u6578",
|
|
553
|
+
Parent: "\u7236\u8A18\u9304",
|
|
554
|
+
"Parent ID": "\u7236\u8A18\u9304ID",
|
|
555
|
+
"Parent collection fields": "\u7236\u8868\u6B04\u4F4D",
|
|
556
|
+
"Parent record": "\u4E0A\u7D1A\u8A18\u9304",
|
|
557
|
+
Password: "\u5BC6\u78BC",
|
|
558
|
+
"Password mismatch": "\u91CD\u8907\u5BC6\u78BC\u4E0D\u5339\u914D",
|
|
559
|
+
Pattern: "\u6A21\u5F0F",
|
|
560
|
+
Percent: "\u767E\u5206\u6BD4",
|
|
561
|
+
"Perform the {{title}}": "\u57F7\u884C{{title}}",
|
|
562
|
+
"Permission denied": "\u6C92\u6709\u6B0A\u9650",
|
|
563
|
+
"Permission policy": "\u6B0A\u9650\u7B56\u7565",
|
|
564
|
+
Phone: "\u624B\u6A5F\u865F\u78BC\u78BC",
|
|
565
|
+
"Phone device": "\u624B\u6A5F\u88DD\u7F6E",
|
|
566
|
+
"Pie chart": "\u5713\u9905\u5716",
|
|
567
|
+
"Please configure the duplicate fields": "\u8ACB\u8A2D\u5B9A\u8981\u8907\u88FD\u7684\u6B04\u4F4D",
|
|
568
|
+
"Please confirm the SQL statement first": "\u8ACB\u5148\u78BA\u8A8D SQL \u8A9E\u53E5",
|
|
569
|
+
"Please fill in the iframe URL": "\u8ACB\u586B\u5BEB\u5D4C\u5165\u7684\u5730\u5740",
|
|
570
|
+
"Please select the records to be updated": "\u8ACB\u9078\u64C7\u8981\u66F4\u65B0\u7684\u8A18\u9304",
|
|
571
|
+
"Please use a valid SELECT or WITH AS statement": "\u8ACB\u4F7F\u7528\u6709\u6548\u7684 SELECT \u6216 WITH AS \u8A9E\u53E5",
|
|
572
|
+
"Plugin Zip File": "\u63D2\u4EF6\u58D3\u7E2E\u5305",
|
|
573
|
+
"Plugin dependencies check failed": "\u63D2\u4EF6\u4F9D\u8CF4\u6AA2\u67E5\u5931\u6557",
|
|
574
|
+
"Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "\u63D2\u4EF6\u76F8\u5BB9\u6027\u6AA2\u67E5\u5931\u6557\uFF0C\u4F60\u61C9\u8A72\u7DE8\u8F2F\u4F9D\u8CF4\u7248\u672C\u4EE5\u6EFF\u8DB3\u7248\u672C\u8981\u6C42\u3002",
|
|
575
|
+
"Plugin loading failed. Please check the server logs.": "\u63D2\u4EF6\u8F09\u5165\u5931\u6557\uFF0C\u8ACB\u6AA2\u67E5\u4F3A\u670D\u5668\u65E5\u8A8C\u3002",
|
|
576
|
+
"Plugin manager": "\u63D2\u4EF6\u7BA1\u7406\u5668",
|
|
577
|
+
"Plugin name": "\u63D2\u4EF6",
|
|
578
|
+
"Plugin settings permissions": "\u63D2\u4EF6\u8A2D\u5B9A\u6B0A\u9650",
|
|
579
|
+
"Plugin source": "\u63D2\u4EF6\u4F86\u6E90",
|
|
580
|
+
"Plugin starting...": "\u63D2\u4EF6\u555F\u52D5\u4E2D...",
|
|
581
|
+
"Plugin stopping...": "\u63D2\u4EF6\u505C\u6B62\u4E2D...",
|
|
582
|
+
"Plugin tab name": "\u63D2\u4EF6\u6A19\u7C64\u9801",
|
|
583
|
+
"Plugin's version": "\u63D2\u4EF6\u7684\u7248\u672C",
|
|
584
|
+
"Pop-up": "\u5F48\u7A97",
|
|
585
|
+
Popup: "\u958B\u555F\u5F48\u7A97",
|
|
586
|
+
"Popup close method": "\u5F48\u7A97\u95DC\u9589\u65B9\u5F0F",
|
|
587
|
+
"Popup form": "Popup form",
|
|
588
|
+
"Popup message": "\u5F48\u7A97\u63D0\u793A\u8A0A\u606F",
|
|
589
|
+
"Popup size": "\u5F48\u7A97\u5C3A\u5BF8",
|
|
590
|
+
Position: "\u4F4D\u7F6E",
|
|
591
|
+
Precision: "\u7CBE\u78BA\u5EA6",
|
|
592
|
+
Prettify: "\u683C\u5F0F\u5316",
|
|
593
|
+
Preview: "\u9810\u89BD",
|
|
594
|
+
"Primary key, unique identifier, self growth": "\u4E3B\u952E\u3001\u552F\u4E00\u6807\u8BC6\u3001\u81EA\u589E\u957F",
|
|
595
|
+
Print: "\u5217\u5370",
|
|
596
|
+
Problematic: "\u6709\u554F\u984C",
|
|
597
|
+
"Progress field": "\u9032\u5EA6\u6B04\u4F4D",
|
|
598
|
+
Properties: "\u5C6C\u6027",
|
|
599
|
+
"Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "\u5C07\u8CC7\u6599\u8868\u88E1\u7684\u67D0\u4E9B\u8868\u4F5C\u70BA\u53EF\u9078\u9805\u76EE\u4F9B\u7D66\u4F7F\u7528\u8005\u9078\u64C7\uFF0C\u4E00\u822C\u7528\u5728\u591A\u578B\u6216\u7E7C\u627F\u7684\u5834\u666F\u88E1",
|
|
600
|
+
Province: "\u7701",
|
|
601
|
+
"Province/city/area name": "\u7701\u5E02\u5340\u540D\u7A31",
|
|
602
|
+
Purple: "\u91AC\u7D2B",
|
|
603
|
+
"Quarter of day": "\u56DB\u5206\u4E4B\u4E00\u5929",
|
|
604
|
+
QuarterYear: "\u5B63\u5EA6",
|
|
605
|
+
"Quick add": "\u5FEB\u6377\u65B0\u589E",
|
|
606
|
+
"Quick create": "\u5FEB\u901F\u5EFA\u7ACB",
|
|
607
|
+
"Quick duplicate": "\u5FEB\u901F\u8907\u88FD",
|
|
608
|
+
"Quick upload": "\u5FEB\u901F\u4E0A\u50B3",
|
|
609
|
+
"Radio group": "\u55AE\u9078\u6846",
|
|
610
|
+
"Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "\u96A8\u6A5F\u751F\u6210\uFF0C\u53EF\u7DE8\u8F2F\u3002\u652F\u63F4\u82F1\u6587\u3001\u6578\u5B57\u548C\u4E0B\u5283\u7DDA\uFF0C\u5FC5\u9808\u4EE5\u82F1\u6587\u5B57\u6BCD\u958B\u982D\u3002",
|
|
611
|
+
"Read only": "\u552F\u8B80",
|
|
612
|
+
Readme: "\u8AAA\u660E\u6587\u4EF6",
|
|
613
|
+
Readonly: "\u552F\u8B80",
|
|
614
|
+
"Record ID": "\u8CC7\u6599 ID",
|
|
615
|
+
"Record picker": "\u8CC7\u6599\u9078\u64C7\u5668",
|
|
616
|
+
"Records can be sorted": "\u53EF\u4EE5\u5C0D\u884C\u8A18\u9304\u9032\u884C\u6392\u5E8F",
|
|
617
|
+
"Records per page": "\u6BCF\u9801\u986F\u793A\u6578\u91CF",
|
|
618
|
+
Red: "\u8584\u66AE",
|
|
619
|
+
"Redirect to": "\u8DF3\u8F49\u5230",
|
|
620
|
+
"Reference template": "\u5F15\u7528\u6A21\u677F",
|
|
621
|
+
Refresh: "\u91CD\u65B0\u6574\u7406",
|
|
622
|
+
"Regular expression": "\u6B63\u898F\u8868\u9054\u5F0F",
|
|
623
|
+
"Related collection": "\u95DC\u806F\u8868",
|
|
624
|
+
Relation: "\u95DC\u806F\u578B\u5225",
|
|
625
|
+
"Relationship blocks": "\u95DC\u806F\u8CC7\u6599\u5340\u584A",
|
|
626
|
+
"Relationship type": "\u95DC\u806F\u578B\u5225",
|
|
627
|
+
"Reload application": "\u904E\u8F09 App",
|
|
628
|
+
"Remains the same": "\u4E0D\u66F4\u65B0",
|
|
629
|
+
Remove: "\u79FB\u9664",
|
|
630
|
+
"Render Failed": "\u6E32\u67D3\u5931\u6557",
|
|
631
|
+
Repeats: "\u91CD\u8907",
|
|
632
|
+
"Request API": "\u8ACB\u6C42 API",
|
|
633
|
+
"Request URL": "\u8ACB\u6C42\u7DB2\u5740",
|
|
634
|
+
"Request body": "\u8ACB\u6C42 Body (JSON\u683C\u5F0F)",
|
|
635
|
+
"Request headers": "\u8ACB\u6C42 Headers (JSON\u683C\u5F0F)",
|
|
636
|
+
"Request method": "\u8ACB\u6C42\u65B9\u6CD5",
|
|
637
|
+
"Request query parameters": "\u8ACB\u6C42\u67E5\u8A62\u5F15\u6578 (JSON\u683C\u5F0F)",
|
|
638
|
+
"Request settings": "\u8ACB\u6C42\u8A2D\u5B9A",
|
|
639
|
+
"Request success": "\u8ACB\u6C42\u6210\u529F",
|
|
640
|
+
Required: "\u5FC5\u586B",
|
|
641
|
+
Reset: "\u91CD\u7F6E",
|
|
642
|
+
Restart: "\u91CD\u555F",
|
|
643
|
+
"Restart application": "\u91CD\u555F App",
|
|
644
|
+
Result: "\u7D50\u679C",
|
|
645
|
+
"Retry after {{count}} seconds": "{{count}} \u79D2\u5F8C\u91CD\u8A66",
|
|
646
|
+
"Return to the main application": "\u8FD4\u56DE\u4E3BApp",
|
|
647
|
+
"Rich Text": "\u5BCC\u6587\u5B57",
|
|
648
|
+
"Role UID": "\u89D2\u8272\u6A19\u8B58",
|
|
649
|
+
"Role display name": "\u89D2\u8272\u540D\u7A31",
|
|
650
|
+
"Role name": "\u89D2\u8272\u540D\u7A31",
|
|
651
|
+
Roles: "\u89D2\u8272",
|
|
652
|
+
"Roles & Permissions": "\u89D2\u8272\u548C\u6B0A\u9650",
|
|
653
|
+
"SQL collection": "SQL\u8CC7\u6599\u8868",
|
|
654
|
+
Save: "\u5132\u5B58",
|
|
655
|
+
"Save action": "\u5132\u5B58\u52D5\u4F5C",
|
|
656
|
+
"Save as block template": "\u5132\u5B58\u70BA\u5340\u584A\u6A21\u677F",
|
|
657
|
+
"Save as template": "\u5132\u5B58\u70BA\u6A21\u677F",
|
|
658
|
+
"Save conditions": "\u5132\u5B58\u7BE9\u9078\u689D\u4EF6",
|
|
659
|
+
"Save mode": "\u5132\u5B58\u65B9\u5F0F",
|
|
660
|
+
"Save record": "\u5132\u5B58\u8CC7\u6599",
|
|
661
|
+
"Saved successfully": "\u5132\u5B58\u6210\u529F",
|
|
662
|
+
"Scope name": "\u8CC7\u6599\u7BC4\u570D\u540D\u7A31",
|
|
663
|
+
"Screen size": "\u87A2\u5E55\u5C3A\u5BF8",
|
|
664
|
+
"Search and select collection": "\u641C\u5C0B\u4E26\u9078\u64C7\u8CC7\u6599\u8868",
|
|
665
|
+
"Search plugin": "\u641C\u5C0B\u63D2\u4EF6",
|
|
666
|
+
"Secondary confirmation": "\u518D\u6B21\u78BA\u8A8D",
|
|
667
|
+
Select: "\u9078\u64C7",
|
|
668
|
+
"Select a variable": "\u9078\u64C7\u8B8A\u6578",
|
|
669
|
+
"Select all": "\u5168\u9078",
|
|
670
|
+
"Select an existing piece of data as the initialization data for the form": "\u9078\u64C7\u4E00\u689D\u5DF2\u6709\u7684\u8CC7\u6599\u4F5C\u70BA\u8868\u55AE\u7684\u521D\u59CB\u5316\u8CC7\u6599",
|
|
671
|
+
"Select collection": "\u9078\u64C7\u8CC7\u6599\u8868",
|
|
672
|
+
"Select data source": "\u9078\u64C7\u8CC7\u6599\u4F86\u6E90",
|
|
673
|
+
"Select field": "\u9078\u64C7\u6B04\u4F4D",
|
|
674
|
+
"Select file": "\u9078\u64C7\u6A94\u6848",
|
|
675
|
+
"Select grouping field": "\u9078\u64C7\u7FA4\u7D44\u6B04\u4F4D",
|
|
676
|
+
"Select icon": "\u9078\u64C7\u5716\u793A",
|
|
677
|
+
"Select level": "\u9078\u64C7\u5C64\u7D1A",
|
|
678
|
+
"Select record": "\u9078\u64C7\u8CC7\u6599",
|
|
679
|
+
"Select template": "\u9078\u64C7\u6A21\u677F",
|
|
680
|
+
"Select view": "\u5207\u63DB\u6AA2\u8996",
|
|
681
|
+
Selected: "\u9078\u4E2D",
|
|
682
|
+
Selector: "\u9078\u64C7\u5668",
|
|
683
|
+
"Selector mode": "\u9078\u64C7\u5668\u6A21\u5F0F",
|
|
684
|
+
"Send code": "\u50B3\u9001\u9A57\u8B49\u78BC",
|
|
685
|
+
"Set data loading mode": "\u8A2D\u5B9A\u8CC7\u6599\u52A0\u8F09\u65B9\u5F0F",
|
|
686
|
+
"Set default sorting rules": "\u8A2D\u5B9A\u6392\u5E8F\u898F\u5247",
|
|
687
|
+
"Set default value": "\u8A2D\u5B9A\u9810\u8A2D\u503C",
|
|
688
|
+
"Set the count of columns displayed in a row": "\u8A2D\u5B9A\u4E00\u884C\u5C55\u793A\u7684\u5217\u6578",
|
|
689
|
+
"Set the data scope": "\u8A2D\u5B9A\u8CC7\u6599\u7BC4\u570D",
|
|
690
|
+
"Set validation rules": "\u8A2D\u5B9A\u9A57\u8B49\u898F\u5247",
|
|
691
|
+
Setting: "\u8A2D\u5B9A",
|
|
692
|
+
Settings: "\u8A2D\u5B9A",
|
|
693
|
+
"Show lunar": "\u5C55\u793A\u8FB2\u66C6",
|
|
694
|
+
"Show time": "\u986F\u793A\u6642\u9593",
|
|
695
|
+
"Sign in": "\u767B\u5165",
|
|
696
|
+
"Sign in via account": "\u5E33\u865F\u5BC6\u78BC\u767B\u5165",
|
|
697
|
+
"Sign in via phone": "\u624B\u6A5F\u865F\u78BC\u767B\u5165",
|
|
698
|
+
"Sign in with another account": "\u767B\u5165\u5176\u4ED6\u5E33\u865F",
|
|
699
|
+
"Sign out": "\u767B\u51FA",
|
|
700
|
+
"Sign up": "\u8A3B\u518A",
|
|
701
|
+
"Sign up successfully, and automatically jump to the sign in page": "\u8A3B\u518A\u6210\u529F\uFF0C\u5373\u5C07\u8DF3\u8F49\u5230\u767B\u5165\u9801\u9762",
|
|
702
|
+
"Signed up successfully. It will jump to the login page.": "\u8A3B\u518A\u6210\u529F\uFF0C\u5C07\u8DF3\u8F49\u767B\u5165\u9801\u3002",
|
|
703
|
+
"Single line text": "\u55AE\u884C\u6587\u5B57",
|
|
704
|
+
"Single select": "\u4E0B\u62C9\u9078\u55AE\uFF08\u55AE\u9078\uFF09",
|
|
705
|
+
"Single select and radio fields can be used as the grouping field": "\u8CC7\u6599\u8868\u7684\u55AE\u9078\u6B04\u4F4D\u53EF\u4EE5\u4F5C\u70BA\u7FA4\u7D44\u6B04\u4F4D",
|
|
706
|
+
"Skip required validation": "\u8DF3\u904E\u5FC5\u586B\u6AA2\u9A57",
|
|
707
|
+
Small: "\u8F03\u7A84",
|
|
708
|
+
Sort: "\u6392\u5E8F",
|
|
709
|
+
Sortable: "\u53EF\u6392\u5E8F\u7684",
|
|
710
|
+
"Source collection": "\u4F86\u6E90\u8CC7\u6599\u8868",
|
|
711
|
+
"Source collections": "\u4F86\u6E90\u8CC7\u6599\u8868",
|
|
712
|
+
"Source key": "\u4F86\u6E90\u8CC7\u6599\u8868\u6B04\u4F4D\u6A19\u8B58",
|
|
713
|
+
"Start date field": "\u958B\u59CB\u65E5\u671F\u6B04\u4F4D",
|
|
714
|
+
"Stay on current page": "\u505C\u7559\u5728\u7576\u524D\u9801\u9762",
|
|
715
|
+
"Store the creation time of each record": "\u8A18\u9304\u5EFA\u7ACB\u6642\u9593",
|
|
716
|
+
"Store the creation user of each record": "\u8A18\u9304\u5EFA\u7ACB\u8005",
|
|
717
|
+
"Store the last update time of each record": "\u8A18\u9304\u6700\u5F8C\u66F4\u65B0\u6642\u9593",
|
|
718
|
+
"Store the last update user of each record": "\u8A18\u9304\u6700\u5F8C\u66F4\u65B0\u8005",
|
|
719
|
+
Street: "\u9109\u93AE/\u8857\u9053",
|
|
720
|
+
String: "\u5B57\u4E32",
|
|
721
|
+
"Sub-details": "\u5B50\u8A73\u60C5",
|
|
722
|
+
"Sub-form": "\u5B50\u8868\u55AE",
|
|
723
|
+
"Sub-table": "\u5B50\u8868\u683C",
|
|
724
|
+
"Subform mode": "\u5B50\u8868\u55AE\u6A21\u5F0F",
|
|
725
|
+
"Subform: Popover": "\u5B50\u8868\u55AE\uFF1A\u5F48\u7A97",
|
|
726
|
+
Submit: "\u63D0\u4EA4",
|
|
727
|
+
"Submitted successfully": "\u63D0\u4EA4\u6210\u529F",
|
|
728
|
+
Subtable: "\u5B50\u8868\u683C",
|
|
729
|
+
"Subtable mode": "\u5B50\u8868\u683C\u6A21\u5F0F",
|
|
730
|
+
"Super admin": "\u8D85\u7D1A\u7BA1\u7406\u54E1",
|
|
731
|
+
"Support for a single or bulk upload, file size should not exceed": "\u652F\u63F4\u55AE\u500B\u6216\u6279\u6B21\u4E0A\u50B3\uFF0C\u6A94\u6848\u5927\u5C0F\u4E0D\u80FD\u8D85\u904E",
|
|
732
|
+
"Switch role": "\u5207\u63DB\u89D2\u8272",
|
|
733
|
+
"Sync from database": "\u5F9E\u8CC7\u6599\u5EAB\u540C\u6B65",
|
|
734
|
+
"Sync from form fields": "\u540C\u6B65\u8868\u55AE\u6B04\u4F4D",
|
|
735
|
+
"Sync successfully": "\u540C\u6B65\u6210\u529F",
|
|
736
|
+
"Syntax references": "\u8A9E\u6CD5\u53C3\u8003",
|
|
737
|
+
"System fields": "\u7CFB\u7D71\u6B04\u4F4D",
|
|
738
|
+
"System info": "\u7CFB\u7D71\u8CC7\u8A0A",
|
|
739
|
+
"System settings": "\u7CFB\u7D71\u8A2D\u5B9A",
|
|
740
|
+
"System title": "\u7CFB\u7D71\u540D\u7A31",
|
|
741
|
+
"System variables": "\u7CFB\u7D71\u8B8A\u6578",
|
|
742
|
+
"Tab name": "\u6A19\u7C64\u540D\u7A31",
|
|
743
|
+
Table: "\u8868\u683C",
|
|
744
|
+
"Table OID(Inheritance)": "\u8CC7\u6599\u8868 OID (\u7E7C\u627F)",
|
|
745
|
+
"Table selected records": "\u8868\u683C\u4E2D\u9078\u4E2D\u7684\u8A18\u9304",
|
|
746
|
+
"Tablet device": "\u5E73\u677F\u88DD\u7F6E",
|
|
747
|
+
Tag: "\u6A19\u7C64",
|
|
748
|
+
"Tag color field": "\u6A19\u7C64\u984F\u8272\u6B04\u4F4D",
|
|
749
|
+
Target: "\u76EE\u6A19",
|
|
750
|
+
"Target collection": "\u76EE\u6A19\u8CC7\u6599\u8868",
|
|
751
|
+
"Target key": "\u76EE\u6A19\u8CC7\u6599\u8868\u6B04\u4F4D\u6A19\u8B58",
|
|
752
|
+
"Target position": "\u76EE\u6A19\u4F4D\u7F6E",
|
|
753
|
+
"Template Data": "\u6A21\u677F\u8CC7\u6599",
|
|
754
|
+
"Template name": "\u6A21\u677F\u540D\u7A31",
|
|
755
|
+
Templates: "\u6A21\u677F",
|
|
756
|
+
"The application is reloading, please do not close the page.": "App \u6B63\u5728\u91CD\u65B0\u8F09\u5165\uFF0C\u8ACB\u52FF\u95DC\u9589\u9801\u9762\u3002",
|
|
757
|
+
"The deletion was successful.": "\u522A\u9664\u6210\u529F",
|
|
758
|
+
"The field has been deleted": "\u6B04\u4F4D\u5DF2\u522A\u9664",
|
|
759
|
+
"The field value cannot be greater than ": "\u6578\u503C\u4E0D\u80FD\u5927\u65BC",
|
|
760
|
+
"The field value cannot be less than ": "\u6578\u503C\u4E0D\u80FD\u5C0F\u65BC",
|
|
761
|
+
"The field value is not an integer number": "\u6578\u5B57\u4E0D\u662F\u6574\u6578",
|
|
762
|
+
"The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "\u91CD\u555F\u5C07\u6703\u4E2D\u65B7\u7576\u524D\u670D\u52D9\uFF0C\u9019\u500B\u904E\u7A0B\u53EF\u80FD\u9700\u8981\u4E00\u9EDE\u6642\u9593\uFF0C\u78BA\u5B9A\u8981\u7E7C\u7E8C\u55CE\uFF1F",
|
|
763
|
+
'The {{type}} "{{name}}" may have been deleted. Please remove this {{blockType}}.': '{{type}} "{{name}}" \u53EF\u80FD\u5DF2\u88AB\u522A\u9664\uFF0C\u8ACB\u79FB\u9664\u9019\u500B {{blockType}}\u3002',
|
|
764
|
+
Theme: "\u4E3B\u984C",
|
|
765
|
+
Then: "\u7136\u5F8C",
|
|
766
|
+
"This and following events": "\u6B64\u4E8B\u4EF6\u53CA\u5F8C\u7E8C\u4E8B\u4EF6",
|
|
767
|
+
"This event": "\u6B64\u4E8B\u4EF6",
|
|
768
|
+
"This is a demo text, **supports Markdown syntax**.": "\u9019\u662F\u4E00\u6BB5\u6F14\u793A\u6587\u5B57\uFF0C**\u652F\u63F4 Markdown \u8A9E\u6CD5**\u3002",
|
|
769
|
+
"This is likely a Tachybase internals bug. Please open an issue at <1>here</1>": "\u9019\u53EF\u80FD\u662F Tachybase \u5167\u90E8\u7684\u554F\u984C\uFF0C\u4F60\u53EF\u4EE5\u5728<1>\u9019\u88E1</1>\u5C07\u8A72\u932F\u8AA4\u53CD\u994B\u7D66\u6211\u5011\uFF0C\u6211\u5011\u6703\u76E1\u5FEB\u4FEE\u5FA9",
|
|
770
|
+
"This month": "\u672C\u6708",
|
|
771
|
+
"This quarter": "\u672C\u5B63\u5EA6",
|
|
772
|
+
"This week": "\u672C\u9031",
|
|
773
|
+
"This year": "\u4ECA\u5E74",
|
|
774
|
+
"Through collection": "\u4E2D\u4ECB\u8CC7\u6599\u8868",
|
|
775
|
+
Time: "\u6642\u9593",
|
|
776
|
+
"Time format": "\u6642\u9593\u683C\u5F0F",
|
|
777
|
+
"Time scale": "\u6642\u9593\u7E2E\u653E\u7B49\u7D1A",
|
|
778
|
+
Title: "\u6A19\u984C",
|
|
779
|
+
"Title field": "\u6A19\u984C\u6B04\u4F4D",
|
|
780
|
+
Today: "\u4ECA\u5929",
|
|
781
|
+
"Toggles the subfield mode": "\u5207\u63DB\u5B50\u6B04\u4F4D\u6A21\u5F0F",
|
|
782
|
+
Tomorrow: "\u660E\u5929",
|
|
783
|
+
"Total {{count}} items": "\u7E3D\u5171 {{count}} \u9805",
|
|
784
|
+
"Tree collection": "\u6A39\u72C0\u8868",
|
|
785
|
+
"Tree table": "\u6A39\u8868\u683C",
|
|
786
|
+
"Trigger workflow": "\u89F8\u767C\u5DE5\u4F5C\u6D41\u7A0B",
|
|
787
|
+
"Triggered when the row is clicked": "\u9EDE\u9078\u8868\u683C\u5217\u6642\u89F8\u767C",
|
|
788
|
+
True: "True",
|
|
789
|
+
"Try again": "\u91CD\u8A66\u4E00\u4E0B",
|
|
790
|
+
"Turn pages": "\u7FFB\u9801",
|
|
791
|
+
"UI Editor": "\u4ECB\u9762\u8A2D\u5B9A",
|
|
792
|
+
"UI editor": "\u4ECB\u9762\u7DE8\u8F2F",
|
|
793
|
+
"UnSelect all": "\u53D6\u6D88\u5168\u9078",
|
|
794
|
+
Unconnected: "\u672A\u9023\u7DDA",
|
|
795
|
+
Unique: "\u4E0D\u5141\u8A31\u91CD\u8907",
|
|
796
|
+
Unnamed: "\u672A\u547D\u540D",
|
|
797
|
+
"Unsaved changes": "\u672A\u5132\u5B58\u7DE8\u8F2F",
|
|
798
|
+
Update: "\u66F4\u65B0",
|
|
799
|
+
"Update all data?": "\u66F4\u65B0\u5168\u90E8\u8CC7\u6599\u55CE\uFF1F",
|
|
800
|
+
"Update or create": "\u4E0D\u5B58\u5728\u6642\u65B0\u589E,\u5B58\u5728\u6642\u66F4\u65B0",
|
|
801
|
+
"Update plugin": "\u66F4\u65B0\u63D2\u4EF6",
|
|
802
|
+
"Update record": "\u66F4\u65B0\u8CC7\u6599",
|
|
803
|
+
"Update selected data?": "\u66F4\u65B0\u9078\u4E2D\u7684\u8CC7\u6599\u55CE\uFF1F",
|
|
804
|
+
"Updated successfully": "\u66F4\u65B0\u6210\u529F",
|
|
805
|
+
Upgrade: "\u53EF\u4F9B\u66F4\u65B0",
|
|
806
|
+
Upload: "\u4E0A\u50B3",
|
|
807
|
+
"Upload new version": "\u4E0A\u50B3\u65B0\u7248",
|
|
808
|
+
"Upload plugin": "\u4E0A\u50B3\u63D2\u4EF6",
|
|
809
|
+
"Use the same time zone (GMT) for all users": "\u6240\u6709\u4F7F\u7528\u8005\u4F7F\u7528\u540C\u4E00\u6642\u5340 (\u683C\u6797\u5C3C\u6CBB\u6A19\u6E96\u6642\u9593)",
|
|
810
|
+
User: "\u4F7F\u7528\u8005",
|
|
811
|
+
Username: "\u4F7F\u7528\u8005\u540D\u7A31",
|
|
812
|
+
Users: "\u4F7F\u7528\u8005",
|
|
813
|
+
"Validation rule": "\u9A57\u8B49\u898F\u5247",
|
|
814
|
+
Value: "\u6B04\u4F4D\u6578\u503C",
|
|
815
|
+
"Verification code": "\u9A57\u8B49\u78BC",
|
|
816
|
+
Version: "\u7248\u672C",
|
|
817
|
+
"Version range": "\u7248\u672C\u7BC4\u570D",
|
|
818
|
+
View: "\u6AA2\u8996",
|
|
819
|
+
"View all plugins": "\u6AA2\u8996\u6240\u6709\u63D2\u4EF6",
|
|
820
|
+
"View record": "\u6AA2\u8996\u8CC7\u6599",
|
|
821
|
+
Village: "\u6751/\u5C45\u59D4\u6703",
|
|
822
|
+
Visible: "\u986F\u793A",
|
|
823
|
+
Volcano: "\u706B\u5C71",
|
|
824
|
+
Week: "\u9031",
|
|
825
|
+
Weekly: "\u6BCF\u9031",
|
|
826
|
+
"When submitting the following fields, the saved values are": "\u63D0\u4EA4\u4EE5\u4E0B\u6B04\u4F4D\u6642\uFF0C\u5132\u5B58\u7684\u6578\u503C\u70BA",
|
|
827
|
+
"Work week": "\u5DE5\u4F5C\u65E5",
|
|
828
|
+
Wysiwyg: "\u6240\u898B\u5373\u6240\u5F97",
|
|
829
|
+
Year: "\u5E74",
|
|
830
|
+
"Year-Month-Day": "\u5E74-\u6708-\u65E5",
|
|
831
|
+
"Year/Month/Day": "\u5E74/\u6708/\u65E5",
|
|
832
|
+
Yearly: "\u6BCF\u5E74",
|
|
833
|
+
Yes: "\u662F",
|
|
834
|
+
Yesterday: "\u6628\u5929",
|
|
835
|
+
contains: "\u5305\u542B",
|
|
836
|
+
"does not contain": "\u4E0D\u5305\u542B",
|
|
837
|
+
"edit title": "\u7DE8\u8F2F\u6A19\u984C",
|
|
838
|
+
"ends with": "\u7D50\u5C3E\u662F",
|
|
839
|
+
exists: "\u5B58\u5728",
|
|
840
|
+
is: "\u7B49\u65BC",
|
|
841
|
+
"is after": "\u665A\u65BC",
|
|
842
|
+
"is before": "\u65E9\u65BC",
|
|
843
|
+
"is between": "\u4ECB\u65BC",
|
|
844
|
+
"is empty": "\u70BA\u7A7A",
|
|
845
|
+
"is not": "\u4E0D\u7B49\u65BC",
|
|
846
|
+
"is not empty": "\u4E0D\u70BA\u7A7A",
|
|
847
|
+
"is on or after": "\u4E0D\u65E9\u65BC",
|
|
848
|
+
"is on or before": "\u4E0D\u665A\u65BC",
|
|
849
|
+
"not ends with": "\u7D50\u5C3E\u4E0D\u662F",
|
|
850
|
+
"not exists": "\u4E0D\u5B58\u5728",
|
|
851
|
+
"not starts with": "\u958B\u982D\u4E0D\u662F",
|
|
852
|
+
pixels: "\u756B\u7D20",
|
|
853
|
+
"re-download file": "\u91CD\u65B0\u4E0B\u8F09\u6A94\u6848",
|
|
854
|
+
"starts with": "\u958B\u982D\u662F",
|
|
855
|
+
"{{count}} filter items": "{{count}} \u500B\u7BE9\u9078\u9805\u76EE",
|
|
856
|
+
"{{count}} more items": "\u9084\u6709 {{count}} \u9805",
|
|
857
|
+
"\u2260": "\u2260",
|
|
858
|
+
"\u2264": "\u2264",
|
|
859
|
+
"\u2265": "\u2265",
|
|
860
|
+
"12 hour": "12 \u5C0F\u6642\u5236",
|
|
861
|
+
"24 hour": "24 \u5C0F\u6642\u5236"
|
|
862
|
+
};
|