@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,694 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"(Fields only)": "(\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u307F)",
|
|
3
|
+
"<": "<",
|
|
4
|
+
"=": "=",
|
|
5
|
+
">": ">",
|
|
6
|
+
ASC: "\u6607\u9806",
|
|
7
|
+
Accessible: "\u30A2\u30AF\u30BB\u30B9\u3092\u8A31\u53EF\u3059\u308B",
|
|
8
|
+
"Action column": "\u64CD\u4F5C\u30AB\u30E9\u30E0",
|
|
9
|
+
"Action display name": "\u64CD\u4F5C\u540D",
|
|
10
|
+
"Action logs": "\u64CD\u4F5C\u5C65\u6B74",
|
|
11
|
+
"Action name": "\u64CD\u4F5C\u540D",
|
|
12
|
+
"Action on existing records": "\u65E2\u5B58\u306E\u30EC\u30B3\u30FC\u30C9\u306B\u5BFE\u3059\u308B\u64CD\u4F5C",
|
|
13
|
+
"Action on new records": "\u65B0\u3057\u3044\u30EC\u30B3\u30FC\u30C9\u306B\u5BFE\u3059\u308B\u64CD\u4F5C",
|
|
14
|
+
"Action permission": "\u64CD\u4F5C\u6A29\u9650",
|
|
15
|
+
"Action permissions": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u64CD\u4F5C\u6A29\u9650",
|
|
16
|
+
"Action scope": "\u64CD\u4F5C\u53EF\u80FD\u306A\u30EC\u30B3\u30FC\u30C9\u7BC4\u56F2",
|
|
17
|
+
"Action type": "\u64CD\u4F5C\u30BF\u30A4\u30D7",
|
|
18
|
+
Actions: "\u64CD\u4F5C",
|
|
19
|
+
Add: "\u8FFD\u52A0",
|
|
20
|
+
"Add block": "\u30D6\u30ED\u30C3\u30AF\u3092\u8FFD\u52A0",
|
|
21
|
+
"Add card": "\u30AB\u30FC\u30C9\u3092\u8FFD\u52A0",
|
|
22
|
+
"Add category": "\u5206\u985E\u306E\u8FFD\u52A0",
|
|
23
|
+
"Add child": "\u30B5\u30D6\u30EC\u30B3\u30FC\u30C9\u306E\u8FFD\u52A0",
|
|
24
|
+
"Add condition": "\u6761\u4EF6\u306E\u8FFD\u52A0",
|
|
25
|
+
"Add condition group": "\u6761\u4EF6\u30B0\u30EB\u30FC\u30D7\u306E\u8FFD\u52A0",
|
|
26
|
+
"Add exportable field": "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u53EF\u80FD\u306A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u8FFD\u52A0",
|
|
27
|
+
"Add field": "\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u8FFD\u52A0",
|
|
28
|
+
"Add filter": "\u30D5\u30A3\u30EB\u30BF\u30FC\u3092\u8FFD\u52A0",
|
|
29
|
+
"Add filter group": "\u30D5\u30A3\u30EB\u30BF\u30FC\u30B0\u30EB\u30FC\u30D7\u3092\u8FFD\u52A0",
|
|
30
|
+
"Add group": "\u30B0\u30EB\u30FC\u30D7\u3092\u8FFD\u52A0",
|
|
31
|
+
"Add link": "\u30EA\u30F3\u30AF\u3092\u8FFD\u52A0",
|
|
32
|
+
"Add linkage rule": "\u9023\u52D5\u898F\u5247\u306E\u8FFD\u52A0",
|
|
33
|
+
"Add menu item": "\u30E1\u30CB\u30E5\u30FC\u9805\u76EE\u3092\u8FFD\u52A0",
|
|
34
|
+
"Add new": "\u8FFD\u52A0",
|
|
35
|
+
"Add new mode": "\u8FFD\u52A0\u30E2\u30FC\u30C9",
|
|
36
|
+
"Add option": "\u30AA\u30D7\u30B7\u30E7\u30F3\u3092\u8FFD\u52A0",
|
|
37
|
+
"Add page": "\u30DA\u30FC\u30B8\u3092\u8FFD\u52A0",
|
|
38
|
+
"Add property": "\u5C5E\u6027\u306E\u8FFD\u52A0",
|
|
39
|
+
"Add record": "\u30EC\u30B3\u30FC\u30C9\u3092\u8FFD\u52A0",
|
|
40
|
+
"Add role": "\u5F79\u5272\u306E\u8FFD\u52A0",
|
|
41
|
+
"Add sort field": "\u30BD\u30FC\u30C8\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u8FFD\u52A0",
|
|
42
|
+
"Add tab": "\u30BF\u30D6\u3092\u8FFD\u52A0",
|
|
43
|
+
"Add template": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u8FFD\u52A0",
|
|
44
|
+
"Add text": "\u30C6\u30AD\u30B9\u30C8\u3092\u8FFD\u52A0",
|
|
45
|
+
"Add type": "\u30BF\u30A4\u30D7\u3092\u8FFD\u52A0",
|
|
46
|
+
"Add validation rule": "\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3\u30EB\u30FC\u30EB\u3092\u8FFD\u52A0",
|
|
47
|
+
'Add {{type}} after "{{title}}"': '"{{title}}"\u306E\u5F8C\u306B{{type}}\u3092\u633F\u5165',
|
|
48
|
+
'Add {{type}} before "{{title}}"': '"{{title}}"\u306E\u524D\u306B{{type}}\u3092\u633F\u5165',
|
|
49
|
+
'Add {{type}} in "{{title}}"': '"{{title}}" \u306B {{type}} \u3092\u633F\u5165',
|
|
50
|
+
"Advanced type": "\u30A2\u30C9\u30D0\u30F3\u30B9\u30BF\u30A4\u30D7",
|
|
51
|
+
After: "\u5F8C",
|
|
52
|
+
"After change": "\u5909\u66F4\u5F8C",
|
|
53
|
+
"After clicking the custom button, the following field values will be assigned according to the following form.": "\u73FE\u5728\u306E\u30AB\u30B9\u30BF\u30E0\u30DC\u30BF\u30F3\u3092\u30AF\u30EA\u30C3\u30AF\u3059\u308B\u3068\u3001\u6B21\u306E\u30D5\u30A9\u30FC\u30E0\u306B\u5F93\u3063\u3066\u6B21\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u5024\u304C\u5272\u308A\u5F53\u3066\u3089\u308C\u307E\u3059\u3002",
|
|
54
|
+
"After clicking the custom button, the following fields of the current record will be saved according to the following form.": "\u30AB\u30B9\u30BF\u30E0\u30DC\u30BF\u30F3\u3092\u30AF\u30EA\u30C3\u30AF\u3059\u308B\u3068\u3001\u73FE\u5728\u306E\u30EC\u30B3\u30FC\u30C9\u306E\u6B21\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u304C\u6B21\u306E\u5F62\u5F0F\u306B\u5F93\u3063\u3066\u4FDD\u5B58\u3055\u308C\u307E\u3059\u3002",
|
|
55
|
+
"After successful request": "\u30EA\u30AF\u30A8\u30B9\u30C8\u304C\u6210\u529F\u3057\u305F\u5F8C",
|
|
56
|
+
"After successful save": "\u4FDD\u5B58\u306B\u6210\u529F\u3057\u305F\u5F8C",
|
|
57
|
+
"After successful submission": "\u9001\u4FE1\u304C\u6210\u529F\u3057\u305F\u5F8C",
|
|
58
|
+
"After successful update": "\u66F4\u65B0\u6210\u529F\u5F8C",
|
|
59
|
+
Agenda: "\u30A2\u30B8\u30A7\u30F3\u30C0",
|
|
60
|
+
"All collections": "\u3059\u3079\u3066\u306E\u30C7\u30FC\u30BF\u30C6\u30FC\u30D6\u30EB",
|
|
61
|
+
"All collections use general action permissions by default; permission configured individually will override the default one.": "\u3059\u3079\u3066\u306E\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306F\u3001\u30C7\u30D5\u30A9\u30EB\u30C8\u3067\u4E00\u822C\u64CD\u4F5C\u6A29\u9650\u3092\u4F7F\u7528\u3057\u307E\u3059\u3002 \u5404\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306B\u5BFE\u3057\u3066\u500B\u5225\u306B\u6A29\u9650\u3092\u8A2D\u5B9A\u3059\u308B\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002",
|
|
62
|
+
"All records": "\u3059\u3079\u3066\u306E\u30EC\u30B3\u30FC\u30C9",
|
|
63
|
+
Allow: "\u8A31\u53EF\u3059\u308B",
|
|
64
|
+
"Allow access": "\u8A31\u53EF\u3055\u308C\u305F\u30A2\u30AF\u30BB\u30B9",
|
|
65
|
+
"Allow action": "\u8A31\u53EF\u3055\u308C\u305F\u64CD\u4F5C",
|
|
66
|
+
"Allow add new": "\u65B0\u898F\u4F5C\u6210\u3092\u8A31\u53EF",
|
|
67
|
+
"Allow add new data": "\u30C7\u30FC\u30BF\u306E\u8FFD\u52A0\u3092\u8A31\u53EF",
|
|
68
|
+
"Allow add new, update and delete actions": "\u524A\u9664\u5909\u66F4\u64CD\u4F5C\u306E\u8A31\u53EF",
|
|
69
|
+
"Allow adding records to the current collection": "\u73FE\u5728\u306E\u30C7\u30FC\u30BF\u30FB\u30D5\u30A9\u30FC\u30E0\u3078\u306E\u30EC\u30B3\u30FC\u30C9\u306E\u8FFD\u52A0\u3092\u8A31\u53EF\u3059\u308B",
|
|
70
|
+
"Allow linking to multiple records": "\u8907\u6570\u306E\u30EC\u30B3\u30FC\u30C9\u306E\u95A2\u9023\u4ED8\u3051\u3092\u8A31\u53EF\u3059\u308B",
|
|
71
|
+
"Allow multiple": "\u8907\u6570\u9078\u629E\u3092\u8A31\u53EF\u3059\u308B",
|
|
72
|
+
"Allow selection of existing records": "\u65E2\u5B58\u306E\u30C7\u30FC\u30BF\u306E\u9078\u629E\u3092\u8A31\u53EF",
|
|
73
|
+
"Allow sign up": "\u30B5\u30A4\u30F3\u30A2\u30C3\u30D7\u3092\u8A31\u53EF",
|
|
74
|
+
"Allow to configure plugins": "\u7BA1\u7406\u69CB\u6210\u30BB\u30F3\u30BF\u30FC\u306E\u8A31\u53EF",
|
|
75
|
+
"Allow to desgin pages": "\u30A4\u30F3\u30BF\u30D5\u30A7\u30FC\u30B9\u69CB\u6210\u306E\u8A31\u53EF",
|
|
76
|
+
"Allow to manage plugins": "\u7BA1\u7406\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u8A31\u53EF",
|
|
77
|
+
"Allows configuration of the whole system, including UI, collections, permissions, etc.": "UI\u8A2D\u5B9A\u3001\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u8A2D\u5B9A\u3001\u6A29\u9650\u8A2D\u5B9A\u3001\u30B7\u30B9\u30C6\u30E0\u8A2D\u5B9A\u7B49\u3001\u30B7\u30B9\u30C6\u30E0\u5168\u4F53\u306E\u8A2D\u5B9A\u3092\u8A31\u53EF\u3059\u308B",
|
|
78
|
+
"Any succeeded or failed": "\u3044\u305A\u308C\u304B\u304C\u6210\u529F\u3082\u3057\u304F\u306F\u5931\u6557",
|
|
79
|
+
"Are you sure to delete this plugin": "\u672C\u5F53\u306B\u3053\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u7121\u52B9\u306B\u3057\u307E\u3059\u304B\uFF1F",
|
|
80
|
+
"Are you sure to delete this plugin?": "\u3053\u306E\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u524A\u9664\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B\uFF1F",
|
|
81
|
+
"Are you sure you don't want to save?": "\u5909\u66F4\u3092\u4FDD\u5B58\u3057\u306A\u304F\u3066\u3082\u3088\u3044\u3067\u3059\u304B?",
|
|
82
|
+
"Are you sure you want to delete it?": "\u672C\u5F53\u306B\u524A\u9664\u3057\u307E\u3059\u304B\uFF1F",
|
|
83
|
+
"Are you sure you want to disassociate it?": "\u672C\u5F53\u306B\u95A2\u9023\u4ED8\u3051\u3092\u89E3\u9664\u3057\u307E\u3059\u304B\uFF1F",
|
|
84
|
+
Area: "\u5730\u533A/\u7FA4",
|
|
85
|
+
"Area chart": "\u7A4D\u307F\u4E0A\u3052\u9762\u30B0\u30E9\u30D5",
|
|
86
|
+
"Assign data scope for the template": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u30C7\u30FC\u30BF\u7BC4\u56F2\u306E\u6307\u5B9A",
|
|
87
|
+
"Assign field values": "\u30D5\u30A3\u30FC\u30EB\u30C9\u5272\u5F53",
|
|
88
|
+
"Associated records": "\u95A2\u9023\u4ED8\u3051\u3089\u308C\u305F\u30EC\u30B3\u30FC\u30C9",
|
|
89
|
+
"Audit logs": "\u76E3\u67FB\u30ED\u30B0",
|
|
90
|
+
Author: "\u8457\u8005",
|
|
91
|
+
AutoGenId: "ID\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u81EA\u52D5\u751F\u6210",
|
|
92
|
+
"Automatic close": "\u81EA\u52D5\u3067\u9589\u3058\u308B",
|
|
93
|
+
"Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "\u30C6\u30FC\u30D6\u30EB\u306B\u4F9D\u5B58\u3059\u308B\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u3001\u304A\u3088\u3073\u305D\u308C\u3089\u306B\u4F9D\u5B58\u3059\u308B\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8\u3092\u81EA\u52D5\u7684\u306B\u524A\u9664\u3059\u308B",
|
|
94
|
+
"Automatically load data": "\u30C7\u30FC\u30BF\u3092\u81EA\u52D5\u7684\u306B\u8AAD\u307F\u8FBC\u3080",
|
|
95
|
+
"Bar chart": "\u6A2A\u68D2\u30B0\u30E9\u30D5",
|
|
96
|
+
Basic: "\u57FA\u672C\u30BF\u30A4\u30D7",
|
|
97
|
+
Before: "\u524D",
|
|
98
|
+
"Before change": "\u5909\u66F4\u524D",
|
|
99
|
+
"Blank block": "\u7A7A\u306E\u30D6\u30ED\u30C3\u30AF",
|
|
100
|
+
"Block templates": "\u30D6\u30ED\u30C3\u30AF\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8",
|
|
101
|
+
"Block title": "\u30D6\u30ED\u30C3\u30AF\u30BF\u30A4\u30C8\u30EB",
|
|
102
|
+
"Block type": "\u30D6\u30ED\u30C3\u30AF\u30BF\u30A4\u30D7",
|
|
103
|
+
Blue: "\u30D6\u30EB\u30FC",
|
|
104
|
+
"Button background color": "\u30DC\u30BF\u30F3\u306E\u80CC\u666F\u8272",
|
|
105
|
+
"Button icon": "\u30DC\u30BF\u30F3\u30A2\u30A4\u30B3\u30F3",
|
|
106
|
+
"Button title": "\u30DC\u30BF\u30F3\u30BF\u30A4\u30C8\u30EB",
|
|
107
|
+
Calendar: "\u30AB\u30EC\u30F3\u30C0\u30FC",
|
|
108
|
+
"Calendar collection": "\u30AB\u30EC\u30F3\u30C0\u30C7\u30FC\u30BF\u30C6\u30FC\u30D6\u30EB",
|
|
109
|
+
Cancel: "\u53D6\u6D88",
|
|
110
|
+
"Cascade Select": "\u30AB\u30B9\u30B1\u30FC\u30C9\u9078\u629E",
|
|
111
|
+
Categories: "\u30C7\u30FC\u30BF\u30C6\u30FC\u30D6\u30EB\u30AB\u30C6\u30B4\u30EA",
|
|
112
|
+
"Category name": "\u5206\u985E\u540D",
|
|
113
|
+
"Change password": "\u30D1\u30B9\u30EF\u30FC\u30C9\u5909\u66F4",
|
|
114
|
+
Changelog: "\u5909\u66F4\u5C65\u6B74",
|
|
115
|
+
"Chart blocks": "\u30C1\u30E3\u30FC\u30C8\u30D6\u30ED\u30C3\u30AF",
|
|
116
|
+
"Chart config": "\u30C1\u30E3\u30FC\u30C8\u8A2D\u5B9A",
|
|
117
|
+
"Chart title": "\u30C1\u30E3\u30FC\u30C8\u30BF\u30A4\u30C8\u30EB",
|
|
118
|
+
"Chart type": "\u30C1\u30E3\u30FC\u30C8\u30BF\u30A4\u30D7",
|
|
119
|
+
Checkbox: "\u30C1\u30A7\u30C3\u30AF\u30DC\u30C3\u30AF\u30B9",
|
|
120
|
+
"Checkbox group": "\u30C1\u30A7\u30C3\u30AF\u30DC\u30C3\u30AF\u30B9\u30B0\u30EB\u30FC\u30D7",
|
|
121
|
+
"China region": "\u4E2D\u56FD\u5730\u57DF",
|
|
122
|
+
Choices: "\u9078\u629E",
|
|
123
|
+
"Choices fields": "\u30C1\u30E7\u30A4\u30B9\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
124
|
+
City: "\u5E02",
|
|
125
|
+
"Click or drag file to this area to upload": "\u30AF\u30EA\u30C3\u30AF\u307E\u305F\u306F\u30C9\u30E9\u30C3\u30B0\u3057\u3066\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9",
|
|
126
|
+
Close: "\u9589\u3058\u308B",
|
|
127
|
+
Collapse: "\u6298\u308A\u305F\u305F\u307F",
|
|
128
|
+
"Collapse all": "\u3059\u3079\u3066\u9589\u3058\u308B",
|
|
129
|
+
Collection: "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3",
|
|
130
|
+
"Collection category": "Collection category",
|
|
131
|
+
"Collection display name": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u540D",
|
|
132
|
+
"Collection name": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u8B58\u5225\u5B50",
|
|
133
|
+
"Collection template": "\u30C7\u30FC\u30BF\u30C6\u30FC\u30D6\u30EB\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8",
|
|
134
|
+
"Collections & Fields": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u3068\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
135
|
+
Color: "\u30AB\u30E9\u30FC",
|
|
136
|
+
"Column chart": "\u7E26\u68D2\u30B0\u30E9\u30D5",
|
|
137
|
+
"Column title": "\u30AB\u30E9\u30E0\u30BF\u30A4\u30C8\u30EB",
|
|
138
|
+
Comparision: "\u6BD4\u8F03",
|
|
139
|
+
"Compressed file url": "\u5727\u7E2E\u30D5\u30A1\u30A4\u30EB\u306EURL",
|
|
140
|
+
Condition: "\u6761\u4EF6\uFF03\u30B8\u30E7\u30A6\u30B1\u30F3\uFF03",
|
|
141
|
+
Configure: "\u8A2D\u5B9A",
|
|
142
|
+
"Configure actions": "\u64CD\u4F5C\u306E\u8A2D\u5B9A",
|
|
143
|
+
"Configure calendar": "\u30AB\u30EC\u30F3\u30C0\u30FC\u306E\u8A2D\u5B9A",
|
|
144
|
+
"Configure columns": "\u30AB\u30E9\u30E0\u306E\u8A2D\u5B9A",
|
|
145
|
+
"Configure fields": "\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u8A2D\u5B9A",
|
|
146
|
+
"Configure fields of {{title}}": "{{title}}\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u8A2D\u5B9A",
|
|
147
|
+
"Configure permission": "\u6A29\u9650\u8A2D\u5B9A",
|
|
148
|
+
"Configure permissions": "\u6A29\u9650\u306E\u8A2D\u5B9A",
|
|
149
|
+
"Confirm password": "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u78BA\u8A8D",
|
|
150
|
+
"Connect data blocks": "\u30C7\u30FC\u30BF\u30D6\u30ED\u30C3\u30AF\u3092\u9023\u7D50",
|
|
151
|
+
"Connect to database view": "\u30D3\u30E5\u30FC\u306B\u63A5\u7D9A",
|
|
152
|
+
"Constant value": "\u5B9A\u6570\u5024",
|
|
153
|
+
"Continue after any branch succeeded, or exit after any branch failed": "\u3044\u305A\u308C\u304B\u306E\u5206\u5C90\u3067\u6210\u529F\u3057\u7D9A\u884C\u3059\u308B\u304B\u3001\u5206\u5C90\u304C\u5931\u6557\u3057\u305F\u5F8C\u7D42\u4E86\u3057\u307E\u3059",
|
|
154
|
+
"Convert reference to duplicate": "\u53C2\u7167\u3092\u8907\u88FD\u306B\u5909\u63DB",
|
|
155
|
+
Create: "\u65B0\u898F\u306E\u307F",
|
|
156
|
+
"Create an account": "\u30A2\u30AB\u30A6\u30F3\u30C8\u767B\u9332",
|
|
157
|
+
"Create calendar block": "\u30AB\u30EC\u30F3\u30C0\u30FC\u30D6\u30ED\u30C3\u30AF\u306E\u4F5C\u6210",
|
|
158
|
+
"Create collection": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u4F5C\u6210",
|
|
159
|
+
"Create form": "\u30D5\u30A9\u30FC\u30E0\u3092\u4F5C\u6210",
|
|
160
|
+
"Create gantt block": "\u30AC\u30F3\u30C8\u30C1\u30E3\u30FC\u30C8\u30D6\u30ED\u30C3\u30AF\u306E\u4F5C\u6210",
|
|
161
|
+
"Create kanban block": "\u304B\u3093\u3070\u3093\u30D6\u30ED\u30C3\u30AF\u306E\u4F5C\u6210",
|
|
162
|
+
"Create template": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u4F5C\u6210",
|
|
163
|
+
"Created at": "\u4F5C\u6210\u65E5",
|
|
164
|
+
"Created by": "\u4F5C\u6210\u8005",
|
|
165
|
+
CreatedAt: "\u30EC\u30B3\u30FC\u30C9\u4F5C\u6210\u6642\u9593",
|
|
166
|
+
CreatedBy: "\u30EC\u30B3\u30FC\u30C9\u4F5C\u6210\u8005",
|
|
167
|
+
"Current form": "\u73FE\u5728\u306E\u30D5\u30A9\u30FC\u30E0",
|
|
168
|
+
"Current object": "\u73FE\u5728\u306E\u30AA\u30D6\u30B8\u30A7\u30AF\u30C8",
|
|
169
|
+
"Current record": "\u73FE\u5728\u306E\u30EC\u30B3\u30FC\u30C9",
|
|
170
|
+
"Current record blocks": "\u73FE\u5728\u306E\u30EC\u30B3\u30FC\u30C9\u30D6\u30ED\u30C3\u30AF",
|
|
171
|
+
"Current role": "\u73FE\u5728\u306E\u5F79\u5272",
|
|
172
|
+
"Current user": "\u73FE\u5728\u306E\u30E6\u30FC\u30B6\u30FC",
|
|
173
|
+
"Custom Title": "\u30AB\u30B9\u30BF\u30E0\u30BF\u30A4\u30C8\u30EB",
|
|
174
|
+
"Custom column name": "\u30AB\u30B9\u30BF\u30E0\u30AB\u30E9\u30E0\u540D",
|
|
175
|
+
"Custom column title": "\u30AB\u30B9\u30BF\u30E0\u30AB\u30E9\u30E0\u30BF\u30A4\u30C8\u30EB",
|
|
176
|
+
"Custom field display name": "\u30AB\u30B9\u30BF\u30E0\u30D5\u30A3\u30FC\u30EB\u30C9\u540D",
|
|
177
|
+
"Custom name": "\u30AB\u30B9\u30BF\u30E0\u540D",
|
|
178
|
+
"Custom request": "\u30AB\u30B9\u30BF\u30E0\u30EA\u30AF\u30A8\u30B9\u30C8",
|
|
179
|
+
Customize: "\u30AB\u30B9\u30BF\u30DE\u30A4\u30BA",
|
|
180
|
+
Cyan: "\u30B7\u30A2\u30F3",
|
|
181
|
+
DESC: "\u964D\u9806",
|
|
182
|
+
"Danger red": "\u8D64",
|
|
183
|
+
"Data blocks": "\u30C7\u30FC\u30BF\u30D6\u30ED\u30C3\u30AF",
|
|
184
|
+
"Data changes": "\u30C7\u30FC\u30BF\u5909\u66F4",
|
|
185
|
+
"Data fields": "\u30C7\u30FC\u30BF\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
186
|
+
"Data loading mode": "\u30C7\u30FC\u30BF\u8AAD\u307F\u8FBC\u307F\u30E2\u30FC\u30C9",
|
|
187
|
+
"Data scope": "\u30EC\u30B3\u30FC\u30C9\u30B9\u30B3\u30FC\u30D7",
|
|
188
|
+
"Data template": "\u30C7\u30FC\u30BF\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8",
|
|
189
|
+
DataSource: "\u30C7\u30FC\u30BF\u30BD\u30FC\u30B9",
|
|
190
|
+
Date: "\u65E5\u4ED8",
|
|
191
|
+
"Date & Time": "\u65E5\u4ED8\u3068\u6642\u9593",
|
|
192
|
+
"Date display format": "\u65E5\u4ED8\u8868\u793A\u5F62\u5F0F",
|
|
193
|
+
"Date format": "\u65E5\u4ED8\u306E\u66F8\u5F0F",
|
|
194
|
+
Datetime: "\u65E5\u4ED8",
|
|
195
|
+
Day: "\u65E5",
|
|
196
|
+
"Day/Month/Year": "\u65E5/\u6708/\u5E74",
|
|
197
|
+
Default: "\u30C7\u30D5\u30A9\u30EB\u30C8",
|
|
198
|
+
"Default is the ID field": "\u30C7\u30D5\u30A9\u30EB\u30C8\u306FID\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
199
|
+
"Default role": "\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u5F79\u5272",
|
|
200
|
+
"Default title for each record": "\u5404\u30EC\u30B3\u30FC\u30C9\u306E\u30C7\u30D5\u30A9\u30EB\u30C8\u30BF\u30A4\u30C8\u30EB",
|
|
201
|
+
"Default value": "\u30C7\u30D5\u30A9\u30EB\u30C8\u5024",
|
|
202
|
+
Delay: "\u9045\u5EF6\u5B9F\u884C",
|
|
203
|
+
Delete: "\u524A\u9664",
|
|
204
|
+
"Delete action": "\u64CD\u4F5C\u3092\u524A\u9664",
|
|
205
|
+
"Delete block": "\u30D6\u30ED\u30C3\u30AF\u3092\u524A\u9664",
|
|
206
|
+
"Delete category": "\u5206\u985E\u306E\u524A\u9664",
|
|
207
|
+
"Delete collection": "\u30C7\u30FC\u30BF\u30C6\u30FC\u30D6\u30EB\u306E\u524A\u9664",
|
|
208
|
+
"Delete field": "\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u524A\u9664",
|
|
209
|
+
"Delete menu item": "\u30E1\u30CB\u30E5\u30FC\u9805\u76EE\u3092\u524A\u9664",
|
|
210
|
+
"Delete record": "\u30EC\u30B3\u30FC\u30C9\u524A\u9664",
|
|
211
|
+
"Delete role": "\u5F79\u5272\u3092\u524A\u9664",
|
|
212
|
+
"Delete table column": "\u30C6\u30FC\u30D6\u30EB\u306E\u30AB\u30E9\u30E0\u3092\u524A\u9664",
|
|
213
|
+
"Dependencies check": "\u4F9D\u5B58\u95A2\u4FC2\u306E\u30C1\u30A7\u30C3\u30AF",
|
|
214
|
+
"Dependencies check failed": "\u4F9D\u5B58\u95A2\u4FC2\u306E\u30C1\u30A7\u30C3\u30AF\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
215
|
+
"Dependencies check failed, can't enable.": "\u4F9D\u5B58\u95A2\u4FC2\u306E\u30C1\u30A7\u30C3\u30AF\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u6709\u52B9\u306B\u3067\u304D\u307E\u305B\u3093\u3002",
|
|
216
|
+
"Dependencies compatibility check": "\u4F9D\u5B58\u95A2\u4FC2\u306E\u4E92\u63DB\u6027\u30C1\u30A7\u30C3\u30AF",
|
|
217
|
+
Description: "\u8AAC\u660E",
|
|
218
|
+
Details: "\u8A73\u7D30",
|
|
219
|
+
Dialog: "\u30C0\u30A4\u30A2\u30ED\u30B0",
|
|
220
|
+
"Disable tabs": "\u30BF\u30D6\u3092\u7121\u52B9\u306B\u3059\u308B",
|
|
221
|
+
Disabled: "\u7121\u52B9\u5316",
|
|
222
|
+
Disassociate: "\u95A2\u9023\u4ED8\u3051\u3092\u89E3\u9664",
|
|
223
|
+
"Disassociate record": "\u30EC\u30B3\u30FC\u30C9\u306E\u95A2\u9023\u4ED8\u3051\u3092\u89E3\u9664",
|
|
224
|
+
"Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "\u5404\u30DA\u30FC\u30B8<1><0>10</0><1>20</1><2>50</2><3>100</3></1> \u4EF6\u8868\u793A",
|
|
225
|
+
"Display association fields": "\u95A2\u9023\u4ED8\u3051\u3089\u308C\u305F\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u8868\u793A",
|
|
226
|
+
"Display data template selector": "\u30C7\u30FC\u30BF\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u30BB\u30EC\u30AF\u30BF\u30FC\u3092\u8868\u793A",
|
|
227
|
+
"Display fields": "\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
228
|
+
"Display name": "\u8868\u793A\u540D",
|
|
229
|
+
"Display order number": "\u30B7\u30EA\u30A2\u30EB\u30CA\u30F3\u30D0\u30FC\u3092\u8868\u793A",
|
|
230
|
+
DisplayName: "\u8868\u793A\u540D",
|
|
231
|
+
"Drag and drop the file here or click to upload, file size should not exceed 30M": "\u30D5\u30A1\u30A4\u30EB\u3092\u3053\u3053\u306B\u30C9\u30E9\u30C3\u30B0\uFF06\u30C9\u30ED\u30C3\u30D7\u3059\u308B\u304B\u3001\u30AF\u30EA\u30C3\u30AF\u3057\u3066\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\u3002\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u306F10M\u3092\u8D85\u3048\u3066\u306F\u3044\u3051\u307E\u305B\u3093",
|
|
232
|
+
Dragging: "\u30C9\u30E9\u30C3\u30B0",
|
|
233
|
+
Drawer: "\u30C9\u30ED\u30EF\u30FC",
|
|
234
|
+
Duplicate: "\u30EC\u30D7\u30EA\u30B1\u30FC\u30B7\u30E7\u30F3",
|
|
235
|
+
"Duplicate and continue": "\u30B3\u30D4\u30FC\u3057\u3066\u7D9A\u884C",
|
|
236
|
+
"Duplicate mode": "\u30B3\u30D4\u30FC\u30E2\u30FC\u30C9",
|
|
237
|
+
"Duplicate template": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u30B3\u30D4\u30FC",
|
|
238
|
+
Duplicating: "\u30B3\u30D4\u30FC\u4E2D",
|
|
239
|
+
Duration: "\u9593\u9694",
|
|
240
|
+
"Dynamic value": "\u52D5\u7684\u5024",
|
|
241
|
+
"Easy reading": "\u8AAD\u307F\u53D6\u308A\u5C02\u7528(\u8AAD\u53D6\u308A\u30E2\u30FC\u30C9)",
|
|
242
|
+
"Easy-reading": "\u8AAD\u53D6\u308A\u5C02\u7528\uFF08\u8AAD\u53D6\u308A\u30E2\u30FC\u30C9\uFF09",
|
|
243
|
+
Edit: "\u7DE8\u96C6",
|
|
244
|
+
"Edit block title": "\u30D6\u30ED\u30C3\u30AF\u30BF\u30A4\u30C8\u30EB\u3092\u7DE8\u96C6",
|
|
245
|
+
"Edit button": "\u30DC\u30BF\u30F3\u3092\u7DE8\u96C6",
|
|
246
|
+
"Edit category": "\u5206\u985E\u306E\u7DE8\u96C6",
|
|
247
|
+
"Edit chart": "\u30C1\u30E3\u30FC\u30C8\u3092\u7DE8\u96C6",
|
|
248
|
+
"Edit collection": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u7DE8\u96C6",
|
|
249
|
+
"Edit description": "\u8AAC\u660E\u3092\u7DE8\u96C6",
|
|
250
|
+
"Edit field": "\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u7DE8\u96C6",
|
|
251
|
+
"Edit field title": "\u30D5\u30A3\u30FC\u30EB\u30C9\u30BF\u30A4\u30C8\u30EB\u3092\u7DE8\u96C6",
|
|
252
|
+
"Edit form": "\u30D5\u30A9\u30FC\u30E0\u3092\u7DE8\u96C6",
|
|
253
|
+
"Edit markdown": "\u30DE\u30FC\u30AF\u30C0\u30A6\u30F3\u3092\u7DE8\u96C6",
|
|
254
|
+
"Edit menu item": "\u30E1\u30CB\u30E5\u30FC\u9805\u76EE\u3092\u7DE8\u96C6",
|
|
255
|
+
"Edit profile": "\u30D7\u30ED\u30D5\u30A3\u30FC\u30EB",
|
|
256
|
+
"Edit record": "\u30EC\u30B3\u30FC\u30C9\u3092\u7DE8\u96C6",
|
|
257
|
+
"Edit role": "\u30ED\u30FC\u30EB\u3092\u7DE8\u96C6",
|
|
258
|
+
"Edit tab": "\u30BF\u30D6\u3092\u7DE8\u96C6",
|
|
259
|
+
"Edit tooltip": "\u30C4\u30FC\u30EB\u30C1\u30C3\u30D7\u3092\u7DE8\u96C6",
|
|
260
|
+
Editable: "\u7DE8\u96C6\u53EF\u80FD",
|
|
261
|
+
Email: "\u30E1\u30FC\u30EB",
|
|
262
|
+
Empty: "\u304F\u3046\u304D\u3061",
|
|
263
|
+
"Enable SMS authentication": "SMS\u8A8D\u8A3C\u3092\u6709\u52B9\u306B\u3059\u308B",
|
|
264
|
+
"Enable actions": "\u6709\u52B9\u306A\u64CD\u4F5C",
|
|
265
|
+
"Enable child collections": "\u542F\u7528\u5B50\u8868",
|
|
266
|
+
"Enable drag and drop sorting": "\u30C9\u30E9\u30C3\u30B0\u30A2\u30F3\u30C9\u30C9\u30ED\u30C3\u30D7\u306B\u3088\u308B\u4E26\u3073\u66FF\u3048\u3092\u6709\u52B9\u306B\u3059\u308B",
|
|
267
|
+
Enabled: "\u6709\u52B9\u5316",
|
|
268
|
+
"Enabled languages": "\u5229\u7528\u53EF\u80FD\u306A\u8A00\u8A9E",
|
|
269
|
+
"End Status": "\u7D42\u4E86\u72B6\u614B",
|
|
270
|
+
"End date field": "\u7D42\u4E86\u65E5\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
271
|
+
"Error message": "\u30A8\u30E9\u30FC\u30E1\u30C3\u30BB\u30FC\u30B8",
|
|
272
|
+
Event: "\u30A4\u30D9\u30F3\u30C8",
|
|
273
|
+
Exists: "\u5B58\u5728\u3059\u308B",
|
|
274
|
+
"Expand all": "\u3059\u3079\u3066\u5C55\u958B",
|
|
275
|
+
"Expand/Collapse": "\u5C55\u958B\u3068\u7D42\u4E86",
|
|
276
|
+
Export: "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8",
|
|
277
|
+
"Exportable fields": "\u30A8\u30AF\u30B9\u30DD\u30FC\u30C8\u53EF\u80FD\u306A\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
278
|
+
Expression: "\u8868\u8FBE\u5F0F",
|
|
279
|
+
"Fail and exit": "\u5931\u6557\u3057\u7D42\u4E86",
|
|
280
|
+
Feedback: "\u30D5\u30A3\u30FC\u30C9\u30D0\u30C3\u30AF",
|
|
281
|
+
Field: "\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
282
|
+
"Field component": "\u30D5\u30A3\u30FC\u30EB\u30C9\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8",
|
|
283
|
+
"Field display name": "\u30D5\u30A3\u30FC\u30EB\u30C9\u8868\u793A\u540D",
|
|
284
|
+
"Field interface": "\u30D5\u30A3\u30FC\u30EB\u30C9\u30BF\u30A4\u30D7",
|
|
285
|
+
"Field mode": "\u30D5\u30A3\u30FC\u30EB\u30C9\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8",
|
|
286
|
+
"Field name": "\u30D5\u30A3\u30FC\u30EB\u30C9\u8B58\u5225\u5B50",
|
|
287
|
+
"Field permission": "\u30D5\u30A3\u30FC\u30EB\u30C9\u6A29\u9650",
|
|
288
|
+
"Field source": "\u30BD\u30FC\u30B9\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
289
|
+
"Field title": "\u30D5\u30A3\u30FC\u30EB\u30C9\u30BF\u30A4\u30C8\u30EB",
|
|
290
|
+
"Field type": "\u30D5\u30A3\u30FC\u30EB\u30C9\u30BF\u30A4\u30D7",
|
|
291
|
+
"Field value changes": "\u5909\u66F4\u5C65\u6B74",
|
|
292
|
+
Fields: "\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
293
|
+
"Fields values": "\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u5024",
|
|
294
|
+
Filter: "\u30D5\u30A3\u30EB\u30BF\u30FC",
|
|
295
|
+
"Filter blocks": "\u30D5\u30A3\u30EB\u30BF\u30FC\u30D6\u30ED\u30C3\u30AF",
|
|
296
|
+
"Filterable fields": "\u30D5\u30A3\u30EB\u30BF\u30EA\u30F3\u30B0\u53EF\u80FD\u306A\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
297
|
+
"Find by the following fields": "\u6B21\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3067\u691C\u7D22",
|
|
298
|
+
"First or create": "\u5B58\u5728\u3057\u306A\u3044\u5834\u5408\u306B\u8FFD\u52A0",
|
|
299
|
+
"Flexible popup": "Flexible popup",
|
|
300
|
+
"Foreign key": "\u5916\u90E8\u30AD\u30FC",
|
|
301
|
+
"Foreign key 1": "\u5916\u90E8\u30AD\u30FC1",
|
|
302
|
+
"Foreign key 2": "\u5916\u90E8\u30AD\u30FC2",
|
|
303
|
+
Form: "\u30D5\u30A9\u30FC\u30E0",
|
|
304
|
+
"Form (Add new)": "\u30D5\u30A9\u30FC\u30E0 (\u65B0\u898F\u8FFD\u52A0)",
|
|
305
|
+
"Form (Edit)": "\u30D5\u30A9\u30FC\u30E0 (\u7DE8\u96C6)",
|
|
306
|
+
"Form data templates": "\u30D5\u30A9\u30FC\u30E0\u30C7\u30FC\u30BF\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8",
|
|
307
|
+
"Form values": "\u30D5\u30A9\u30FC\u30E0\u306E\u5024",
|
|
308
|
+
Format: "\u30D5\u30A9\u30FC\u30DE\u30C3\u30C8",
|
|
309
|
+
Formula: "\u5F0F",
|
|
310
|
+
"Formula description": "\u5404\u30EC\u30B3\u30FC\u30C9\u306E\u5024\u3092\u3001\u540C\u3058\u30EC\u30B3\u30FC\u30C9\u5185\u306E\u4ED6\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u57FA\u306B\u8A08\u7B97\u3057\u307E\u3059\u3002",
|
|
311
|
+
"Formula error.": "\u5F0F\u306E\u691C\u8A3C\u30A8\u30E9\u30FC\u3067\u3059\u3002",
|
|
312
|
+
"Formula mode": "\u6570\u5F0F\u30E2\u30FC\u30C9",
|
|
313
|
+
Function: "Function",
|
|
314
|
+
Gantt: "\u30AC\u30F3\u30C8\u56F3",
|
|
315
|
+
"Geek blue": "\u30AE\u30FC\u30AF\u30D6\u30EB\u30FC",
|
|
316
|
+
General: "\u4E00\u822C\u8A2D\u5B9A",
|
|
317
|
+
"General action permissions": "\u4E00\u822C\u64CD\u4F5C\u6A29\u9650",
|
|
318
|
+
"General collection": "\u4E00\u822C\u30C7\u30FC\u30BF\u30C6\u30FC\u30D6\u30EB",
|
|
319
|
+
"General permissions": "\u4E00\u822C\u8A2D\u5B9A",
|
|
320
|
+
"Global action permissions": "\u30B0\u30ED\u30FC\u30D0\u30EB\u64CD\u4F5C\u6A29\u9650",
|
|
321
|
+
"Global permissions": "\u30B0\u30ED\u30FC\u30D0\u30EB\u8A2D\u5B9A",
|
|
322
|
+
Gold: "\u30B4\u30FC\u30EB\u30C9",
|
|
323
|
+
Green: "\u30B0\u30EA\u30FC\u30F3",
|
|
324
|
+
Group: "\u30B0\u30EB\u30FC\u30D7",
|
|
325
|
+
"Grouping field": "\u30B0\u30EB\u30FC\u30D7\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
326
|
+
"Half of day": "\u534A\u65E5",
|
|
327
|
+
Handbook: "\u30E6\u30FC\u30B6\u30FC\u30DE\u30CB\u30E5\u30A2\u30EB",
|
|
328
|
+
Hidden: "\u975E\u8868\u793A",
|
|
329
|
+
"Hidden(reserved value)": "\u975E\u8868\u793A(\u5024\u306E\u4FDD\u6301)",
|
|
330
|
+
Hide: "\u96A0\u3059",
|
|
331
|
+
Highlight: "\u30CF\u30A4\u30E9\u30A4\u30C8",
|
|
332
|
+
"Home page": "\u30DB\u30FC\u30E0\u30DA\u30FC\u30B8",
|
|
333
|
+
Homepage: "\u30DB\u30FC\u30E0\u30DA\u30FC\u30B8",
|
|
334
|
+
Hour: "\u6642\u9593",
|
|
335
|
+
ID: "ID",
|
|
336
|
+
Icon: "\u30A2\u30A4\u30B3\u30F3",
|
|
337
|
+
"If collection inherits, choose inherited collections as templates": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u304C\u7D99\u627F\u3055\u308C\u3066\u3044\u308B\u5834\u5408\u3001\u7D99\u627F\u3055\u308C\u305F\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u3092\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3068\u3057\u3066\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
338
|
+
"If the compatibility check fails, you should change the dependent version to meet the version requirements.": "\u4E92\u63DB\u6027\u30C1\u30A7\u30C3\u30AF\u306B\u5931\u6557\u3057\u305F\u5834\u5408\u306F\u3001\u4F9D\u5B58\u95A2\u4FC2\u306E\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u5909\u66F4\u3057\u3066\u3001\u30D0\u30FC\u30B8\u30E7\u30F3\u8981\u4EF6\u3092\u6E80\u305F\u3059\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002",
|
|
339
|
+
"In configuration": "\u8A2D\u5B9A\u4E2D",
|
|
340
|
+
Individual: "\u500B\u5225\u8A2D\u5B9A",
|
|
341
|
+
Inherits: "\u7D99\u627F",
|
|
342
|
+
"Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "+\u3001-\u3001*\u3001/\u3001( ) \u3067\u7B97\u8853\u6F14\u7B97\u3001@\u3067\u30D5\u30A3\u30FC\u30EB\u30C9\u5909\u6570\u3092\u958B\u304F\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002",
|
|
343
|
+
Insert: "\u4F5C\u6210",
|
|
344
|
+
"Insert above": "\u4E0A\u306B\u633F\u5165",
|
|
345
|
+
"Insert after": "\u5F8C\u308D\u306B\u633F\u5165",
|
|
346
|
+
"Insert before": "\u524D\u306B\u633F\u5165",
|
|
347
|
+
"Insert below": "\u4E0B\u306B\u633F\u5165",
|
|
348
|
+
"Insert inner": "\u4E2D\u306B\u633F\u5165",
|
|
349
|
+
"Insert left": "\u5DE6\u306B\u633F\u5165",
|
|
350
|
+
"Insert right": "\u53F3\u306B\u633F\u5165",
|
|
351
|
+
Installing: "\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u4E2D",
|
|
352
|
+
Integer: "\u6574\u6570",
|
|
353
|
+
"Invalid JSON format": "\u4E0D\u6B63\u306AJSON\u30D5\u30A9\u30FC\u30DE\u30C3\u30C8",
|
|
354
|
+
"Junction collection": "\u4E2D\u9593\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3",
|
|
355
|
+
Kanban: "\u304B\u3093\u3070\u3093",
|
|
356
|
+
"Label field": "\u30E9\u30D9\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
357
|
+
Language: "\u8A00\u8A9E",
|
|
358
|
+
"Last 30 days": "\u904E\u53BB 30 \u65E5\u9593",
|
|
359
|
+
"Last 7 days": "\u904E\u53BB 7 \u65E5\u9593",
|
|
360
|
+
"Last 90 days": "\u904E\u53BB 90 \u65E5\u9593",
|
|
361
|
+
"Last month": "\u5148\u6708",
|
|
362
|
+
"Last quarter": "\u524D\u56DB\u534A\u671F",
|
|
363
|
+
"Last updated": "\u6700\u7D42\u66F4\u65B0",
|
|
364
|
+
"Last updated at": "\u6700\u7D42\u66F4\u65B0\u65E5",
|
|
365
|
+
"Last updated by": "\u6700\u7D42\u66F4\u65B0\u8005",
|
|
366
|
+
"Last week": "\u5148\u9031",
|
|
367
|
+
"Last year": "\u53BB\u5E74",
|
|
368
|
+
"Leave it blank, unless you need a custom intermediate table": "\u30AB\u30B9\u30BF\u30E0\u4E2D\u9593\u30C6\u30FC\u30D6\u30EB\u304C\u5FC5\u8981\u3067\u306A\u3044\u9650\u308A\u3001\u30C7\u30D5\u30A9\u30EB\u30C8\u3067\u7A7A\u767D\u306E\u307E\u307E\u306B\u3057\u307E\u3059",
|
|
369
|
+
License: "\u30E9\u30A4\u30BB\u30F3\u30B9",
|
|
370
|
+
Lime: "\u30E9\u30A4\u30E0",
|
|
371
|
+
"Line chart": "\u6298\u308C\u7DDA\u30B0\u30E9\u30D5",
|
|
372
|
+
Link: "\u30EA\u30F3\u30AF",
|
|
373
|
+
"Link to": "\u30EA\u30F3\u30AF",
|
|
374
|
+
"Link to description": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u95A2\u9023\u4ED8\u3051\u3092\u7D20\u65E9\u304F\u4F5C\u6210\u3059\u308B\u305F\u3081\u306B\u3057\u3088\u3046\u3055\u308C\u3001\u307B\u3068\u3093\u3069\u306E\u4E00\u822C\u7684\u306A\u30B7\u30CA\u30EA\u30AA\u306B\u5BFE\u5FDC\u3057\u3066\u3044\u307E\u3059\u3002\u958B\u767A\u8005\u4EE5\u5916\u306E\u65B9\u306E\u3057\u3088\u3046\u306B\u3082\u9069\u3057\u3066\u3044\u307E\u3059\u3002\u30D5\u30A3\u30FC\u30EB\u30C9\u3068\u3057\u3066\u5B58\u5728\u3059\u308B\u5834\u5408\u3001\u53C2\u7167\u5143\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u30EC\u30B3\u30FC\u30C9\u3092\u9078\u629E\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528\u3055\u308C\u308B\u30C9\u30ED\u30C3\u30D7\u30C0\u30A6\u30F3\u3067\u3059\u3002\u4E00\u5EA6\u4F5C\u6210\u3055\u308C\u308B\u3068\u3001\u53C2\u7167\u5148\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306B\u73FE\u5728\u306E\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u95A2\u9023\u30D5\u30A3\u30FC\u30EB\u30C9\u304C\u540C\u6642\u306B\u751F\u6210\u3055\u308C\u307E\u3059\u3002",
|
|
375
|
+
"Linkage rule": "\u9023\u52D5\u898F\u5247",
|
|
376
|
+
"Linkage rules": "\u9023\u52D5\u898F\u5247",
|
|
377
|
+
"Linkage with form fields": "\u30D5\u30A9\u30FC\u30E0\u30C7\u30FC\u30BF\u304B\u3089\u9023\u52D5",
|
|
378
|
+
"Load data after filtering": "\u30D5\u30A3\u30EB\u30BF\u30EA\u30F3\u30B0\u5F8C\u306B\u30C7\u30FC\u30BF\u3092\u8AAD\u307F\u8FBC\u3080",
|
|
379
|
+
"Log in with an existing account": "\u65E2\u5B58\u306E\u30A2\u30AB\u30A6\u30F3\u30C8\u3067\u30ED\u30B0\u30A4\u30F3",
|
|
380
|
+
Logo: "\u30ED\u30B4",
|
|
381
|
+
"Long text": "\u9577\u6587\u30C6\u30AD\u30B9\u30C8",
|
|
382
|
+
Magenta: "\u30DE\u30BC\u30F3\u30BF",
|
|
383
|
+
"Manually close": "\u624B\u52D5\u3067\u9589\u3058\u308B",
|
|
384
|
+
"Many to many": "\u591A\u5BFE\u591A",
|
|
385
|
+
"Many to many description": "\u3053\u308C\u306F\u591A\u5BFE\u591A\u306E\u95A2\u4FC2\u3092\u4F5C\u6210\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528\u3055\u308C\u307E\u3059\u3002\u4F8B\u3048\u3070\u3001\u751F\u5F92\u306F\u8907\u6570\u306E\u6559\u5E2B\u3092\u6301\u3061\u3001\u6559\u5E2B\u306F\u8907\u6570\u306E\u751F\u5F92\u3092\u6301\u3064\u3053\u3068\u306B\u306A\u308A\u307E\u3059\u3002 \u30D5\u30A3\u30FC\u30EB\u30C9\u3068\u3057\u3066\u5B58\u5728\u3059\u308B\u5834\u5408\u3001\u53C2\u7167\u5148\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u30EC\u30B3\u30FC\u30C9\u3092\u9078\u629E\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528\u3055\u308C\u308B\u30C9\u30ED\u30C3\u30D7\u30C0\u30A6\u30F3\u9078\u629E\u3067\u3059\u3002",
|
|
386
|
+
"Many to one": "\u591A\u5BFE1",
|
|
387
|
+
"Many to one description": "\u3053\u308C\u306F\u591A\u5BFE\u4E00\u306E\u95A2\u4FC2\u3092\u4F5C\u308B\u305F\u3081\u306B\u4F7F\u308F\u308C\u307E\u3059\u3002\u4F8B\u3048\u3070\u3001\u90FD\u5E02\u306F1\u3064\u306E\u56FD\u306B\u3057\u304B\u5C5E\u3055\u305A\u3001\u56FD\u306F\u8907\u6570\u306E\u90FD\u5E02\u3092\u6301\u3064\u3053\u3068\u304C\u3067\u304D\u307E\u3059\u3002 \u30D5\u30A3\u30FC\u30EB\u30C9\u3068\u3057\u3066\u5B58\u5728\u3059\u308B\u5834\u5408\u3001\u53C2\u7167\u5148\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u30EC\u30B3\u30FC\u30C9\u3092\u9078\u629E\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528\u3055\u308C\u308B\u30C9\u30ED\u30C3\u30D7\u30C0\u30A6\u30F3\u3067\u3059\u3002 \u4E00\u5EA6\u4F5C\u6210\u3055\u308C\u308B\u3068\u3001\u5BFE\u8C61\u306E\u53C2\u7167\u5148\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306B\u591A\u5BFE\u4E00\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u304C\u81EA\u52D5\u7684\u306B\u751F\u6210\u3055\u308C\u307E\u3059\u3002",
|
|
388
|
+
Markdown: "\u30DE\u30FC\u30AF\u30C0\u30A6\u30F3",
|
|
389
|
+
"Max length must greater than min length": "\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u306A\u304F\u3066\u306F\u306A\u308A\u307E\u305B\u3093",
|
|
390
|
+
Maximum: "\u6700\u5927\u503C",
|
|
391
|
+
"Maximum must greater than minimum": "\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u306A\u3051\u308C\u3070\u306A\u308A\u307E\u305B\u3093",
|
|
392
|
+
Media: "\u30E1\u30C7\u30A3\u30A2",
|
|
393
|
+
"Meet <1><0>All</0><1>Any</1></1> conditions in the group": "\u30B0\u30EB\u30FC\u30D7\u5185\u306E<1><0>\u3059\u3079\u3066</0><1>\u4E00\u90E8</1></1> \u306E\u6761\u4EF6\u3092\u6E80\u305F\u3059",
|
|
394
|
+
"Menu item icon": "\u30E1\u30CB\u30E5\u30FC\u9805\u76EE\u30A2\u30A4\u30B3\u30F3",
|
|
395
|
+
"Menu item name": "\u30E1\u30CB\u30E5\u30FC\u9805\u76EE\u540D",
|
|
396
|
+
"Menu item title": "\u30E1\u30CB\u30E5\u30FC\u9805\u76EE\u540D",
|
|
397
|
+
"Menu permissions": "\u30E1\u30CB\u30E5\u30FC\u30A2\u30AF\u30BB\u30B9\u6A29\u9650",
|
|
398
|
+
"Min length must less than max length": "\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5C0F\u3055\u304F\u306A\u304F\u3066\u306F\u306A\u308A\u307E\u305B\u3093",
|
|
399
|
+
Minimum: "\u6700\u5C0F\u503C",
|
|
400
|
+
"Minimum must less than maximum": "\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5C0F\u3055\u304F\u306A\u3051\u308C\u3070\u306A\u308A\u307E\u305B\u3093",
|
|
401
|
+
"Modal add": "\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7\u7A93\u306E\u8FFD\u52A0",
|
|
402
|
+
Month: "\u6708",
|
|
403
|
+
"More details": "\u8A73\u7D30",
|
|
404
|
+
"Move to": "\u79FB\u52D5",
|
|
405
|
+
"Move {{title}} to": "{{title}} \u3092\u79FB\u52D5",
|
|
406
|
+
"Multiple select": "\u30C9\u30ED\u30C3\u30D7\u30C0\u30A6\u30F3\uFF08\u8907\u6570\u9078\u629E\uFF09",
|
|
407
|
+
"Must select to the last level": "\u6700\u5F8C\u306E\u30EC\u30D9\u30EB\u307E\u3067\u9078\u629E\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059",
|
|
408
|
+
Name: "\u540D\u79F0",
|
|
409
|
+
Navigate: "\u30DA\u30FC\u30B8\u30CD\u30FC\u30B7\u30E7\u30F3",
|
|
410
|
+
"New menu items are allowed to be accessed by default.": "\u65B0\u3057\u3044\u30E1\u30CB\u30E5\u30FC\u9805\u76EE\u3092\u8FFD\u52A0\u3059\u308B\u3068\u3001\u30C7\u30D5\u30A9\u30EB\u30C8\u3067\u30A2\u30AF\u30BB\u30B9\u304C\u8A31\u53EF\u3055\u308C\u307E\u3059",
|
|
411
|
+
"New password": "\u65B0\u3057\u3044\u30D1\u30B9\u30EF\u30FC\u30C9",
|
|
412
|
+
"New plugin": "\u65B0\u3057\u3044\u30D7\u30E9\u30B0\u30A4\u30F3",
|
|
413
|
+
"Next 30 days": "\u6B21\u306E 30 \u65E5\u9593",
|
|
414
|
+
"Next 7 days": "\u6B21\u306E 7 \u65E5\u9593",
|
|
415
|
+
"Next 90 days": "\u6B21\u306E 90 \u65E5\u9593",
|
|
416
|
+
"Next month": "\u6765\u6708",
|
|
417
|
+
"Next quarter": "\u6765\u56DB\u534A\u671F",
|
|
418
|
+
"Next week": "\u6765\u9031",
|
|
419
|
+
"Next year": "\u6765\u5E74",
|
|
420
|
+
Nickname: "\u30CB\u30C3\u30AF\u30CD\u30FC\u30E0",
|
|
421
|
+
No: "\u3044\u3044\u3048",
|
|
422
|
+
"No CHANGELOG.md file": "CHANGELOG.md\u30D5\u30A1\u30A4\u30EB\u304C\u3042\u308A\u307E\u305B\u3093",
|
|
423
|
+
"No README.md file": "README.md\u30D5\u30A1\u30A4\u30EB\u304C\u3042\u308A\u307E\u305B\u3093",
|
|
424
|
+
"No blocks to connect": "\u63A5\u7D9A\u3059\u308B\u30D6\u30ED\u30C3\u30AF\u304C\u3042\u308A\u307E\u305B\u3093",
|
|
425
|
+
None: "\u306A\u3057",
|
|
426
|
+
"Not enabled": "\u6709\u52B9\u306B\u306A\u3063\u3066\u3044\u307E\u305B\u3093",
|
|
427
|
+
"Not required": "\u5FC5\u9808\u3067\u306F\u3042\u308A\u307E\u305B\u3093",
|
|
428
|
+
"Npm package": "Npm\u30D1\u30C3\u30B1\u30FC\u30B8",
|
|
429
|
+
"Npm package name": "Npm\u30D1\u30C3\u30B1\u30FC\u30B8\u540D",
|
|
430
|
+
Number: "\u6570\u5024",
|
|
431
|
+
Off: "\u7121\u52B9\u5316",
|
|
432
|
+
"Official plugin": "\u516C\u5F0F\u30D7\u30E9\u30B0\u30A4\u30F3",
|
|
433
|
+
"Old password": "\u73FE\u5728\u306E\u30D1\u30B9\u30EF\u30FC\u30C9",
|
|
434
|
+
On: "\u6709\u52B9\u5316",
|
|
435
|
+
"One to many": "1\u5BFE\u591A",
|
|
436
|
+
"One to many description": "1\u5BFE\u591A\u306E\u95A2\u4FC2\u3092\u4F5C\u6210\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528\u3057\u307E\u3059\u3002\u4F8B\u3048\u3070\u3001\u56FD\u306B\u306F\u591A\u304F\u306E\u90FD\u5E02\u304C\u3042\u308A\u3001\u90FD\u5E02\u306F1\u3064\u306E\u56FD\u306B\u3057\u304B\u5B58\u5728\u3067\u304D\u307E\u305B\u3093\u3002\u30D5\u30A3\u30FC\u30EB\u30C9\u3068\u3057\u3066\u5B58\u5728\u3059\u308B\u5834\u5408\u3001\u305D\u308C\u306F\u53C2\u7167\u5148\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u30EC\u30B3\u30FC\u30C9\u3092\u8868\u793A\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528\u3055\u308C\u308B\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u3067\u3059\u3002\u4F5C\u6210\u3055\u308C\u308B\u3068\u3001\u591A\u5BFE\u4E00\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u304C\u53C2\u7167\u5148\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306B\u81EA\u52D5\u7684\u306B\u751F\u6210\u3055\u308C\u307E\u3059\u3002",
|
|
437
|
+
"One to one": "1\u5BFE1",
|
|
438
|
+
"One to one (belongs to)": "1\u5BFE1 (belongs to)",
|
|
439
|
+
"One to one (has one)": "1\u5BFE1 (has one)",
|
|
440
|
+
"One to one description": "1\u5BFE1\u306E\u95A2\u4FC2\u3092\u4F5C\u6210\u3059\u308B\u305F\u3081\u306B\u4F7F\u7528\u3057\u307E\u3059\u3002\u4F8B\u3048\u3070\u30011\u3064\u306E\u30E6\u30FC\u30B6\u30FC\u306F1\u3064\u306E\u30D7\u30ED\u30D5\u30A1\u30A4\u30EB\u3092\u6301\u3064\u3053\u3068\u306B\u306A\u308A\u307E\u3059\u3002",
|
|
441
|
+
"Only the selected fields will be used as the initialization data for the form": "\u9078\u629E\u3057\u305F\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u307F\u304C\u30D5\u30A9\u30FC\u30E0\u306E\u521D\u671F\u5316\u30C7\u30FC\u30BF\u3068\u3057\u3066\u4F7F\u7528\u3055\u308C\u307E\u3059",
|
|
442
|
+
"Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "<1><0>\u30E2\u30FC\u30C0\u30EB</0><1>\u30C9\u30ED\u30EF\u30FC</1><2>\u30A6\u30A3\u30F3\u30C9\u30A6</2></1>\u3067\u958B\u304F",
|
|
443
|
+
"Open mode": "\u30AA\u30FC\u30D7\u30F3\u30E2\u30FC\u30C9",
|
|
444
|
+
"Operate on existing data": "\u65E2\u5B58\u306E\u30C7\u30FC\u30BF\u3092\u64CD\u4F5C\u3059\u308B",
|
|
445
|
+
"Operate on new data": "\u65B0\u898F\u30C7\u30FC\u30BF\u3092\u64CD\u4F5C\u3059\u308B",
|
|
446
|
+
"Operation failed": "\u64CD\u4F5C\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
447
|
+
"Operation succeeded": "\u64CD\u4F5C\u304C\u6210\u529F\u3057\u307E\u3057\u305F",
|
|
448
|
+
"Option label": "\u30AA\u30D7\u30B7\u30E7\u30F3 \u30E9\u30D9\u30EB",
|
|
449
|
+
"Option value": "\u30AA\u30D7\u30B7\u30E7\u30F3 \u5024",
|
|
450
|
+
Options: "\u30AA\u30D7\u30B7\u30E7\u30F3",
|
|
451
|
+
Orange: "\u30AA\u30EC\u30F3\u30B8",
|
|
452
|
+
"Original field title: ": "\u5143\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u30BF\u30A4\u30C8\u30EB: ",
|
|
453
|
+
"Original name": "\u5143\u306E\u540D\u79F0",
|
|
454
|
+
"Original title: ": "\u5143\u306E\u30BF\u30A4\u30C8\u30EB: ",
|
|
455
|
+
"Other blocks": "\u305D\u306E\u4ED6\u306E\u30D6\u30ED\u30C3\u30AF",
|
|
456
|
+
"Other chart": "\u305D\u306E\u4ED6\u306E\u30B0\u30E9\u30D5",
|
|
457
|
+
Others: "Others",
|
|
458
|
+
Override: "\u66F8\u304D\u63DB\u3048",
|
|
459
|
+
"Override field": "\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u4E0A\u66F8\u304D",
|
|
460
|
+
"Own records": "\u81EA\u8EAB\u304C\u6240\u6709\u3059\u308B\u30EC\u30B3\u30FC\u30C9",
|
|
461
|
+
PackageName: "\u30D1\u30C3\u30B1\u30FC\u30B8\u540D",
|
|
462
|
+
Page: "\u30DA\u30FC\u30B8",
|
|
463
|
+
Password: "\u30D1\u30B9\u30EF\u30FC\u30C9",
|
|
464
|
+
"Password mismatch": "\u30D1\u30B9\u30EF\u30FC\u30C9\u304C\u4E00\u81F4\u3057\u307E\u305B\u3093",
|
|
465
|
+
Percent: "\u30D1\u30FC\u30BB\u30F3\u30C8",
|
|
466
|
+
"Permission policy": "\u6A29\u9650\u30DD\u30EA\u30B7\u30FC",
|
|
467
|
+
Phone: "\u96FB\u8A71\u756A\u53F7",
|
|
468
|
+
"Pie chart": "\u5186\u30B0\u30E9\u30D5",
|
|
469
|
+
"Please configure the duplicate fields": "\u30B3\u30D4\u30FC\u3059\u308B\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
470
|
+
"Plugin Zip File": "\u30D7\u30E9\u30B0\u30A4\u30F3Zip\u30D5\u30A1\u30A4\u30EB",
|
|
471
|
+
"Plugin loading failed. Please check the server logs.": "\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30ED\u30FC\u30C9\u306B\u5931\u6557\u3057\u307E\u3057\u305F\u3002\u30B5\u30FC\u30D0\u30FC\u30ED\u30B0\u3092\u78BA\u8A8D\u3057\u3066\u304F\u3060\u3055\u3044\u3002",
|
|
472
|
+
"Plugin settings permissions": "\u4E2D\u592E\u6A29\u9650\u306E\u8A2D\u5B9A",
|
|
473
|
+
"Plugin starting...": "\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u8D77\u52D5\u3057\u3066\u3044\u307E\u3059...",
|
|
474
|
+
"Plugin stopping...": "\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u505C\u6B62\u3057\u3066\u3044\u307E\u3059...",
|
|
475
|
+
"Plugin's version": "\u30D7\u30E9\u30B0\u30A4\u30F3\u306E\u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
476
|
+
Popup: "\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7",
|
|
477
|
+
"Popup close method": "\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7\u3092\u9589\u3058\u308B\u65B9\u6CD5",
|
|
478
|
+
"Popup form": "Popup form",
|
|
479
|
+
"Popup message": "\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7\u30E1\u30C3\u30BB\u30FC\u30B8",
|
|
480
|
+
Position: "\u4F4D\u7F6E",
|
|
481
|
+
Precision: "\u7CBE\u5EA6",
|
|
482
|
+
Preview: "\u30D7\u30EC\u30D3\u30E5\u30FC",
|
|
483
|
+
Print: "Print",
|
|
484
|
+
"Progress field": "\u9032\u6357\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
485
|
+
Properties: "\u5C5E\u6027\uFF03\u30BE\u30AF\u30BB\u30A4\uFF03",
|
|
486
|
+
Province: "\u5DDE",
|
|
487
|
+
"Province/city/area name": "Province/city/area name",
|
|
488
|
+
Purple: "\u30D1\u30FC\u30D7\u30EB",
|
|
489
|
+
"Quarter of day": "\u56DB\u5206\u306E\u4E00\u65E5",
|
|
490
|
+
QuarterYear: "\u56DB\u534A\u671F",
|
|
491
|
+
"Quick add": "\u3059\u3070\u3084\u3044",
|
|
492
|
+
"Quick duplicate": "\u4ECA\u3059\u3050\u30B3\u30D4\u30FC",
|
|
493
|
+
"Quick upload": "\u30AF\u30A4\u30C3\u30AF\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9",
|
|
494
|
+
"Radio group": "\u30E9\u30B8\u30AA\u30DC\u30BF\u30F3\u30B0\u30EB\u30FC\u30D7",
|
|
495
|
+
"Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "\u30E9\u30F3\u30C0\u30E0\u306B\u751F\u6210\u3055\u308C\u3001\u5909\u66F4\u53EF\u80FD\u3067\u3059\u3002 \u30A2\u30EB\u30D5\u30A1\u30D9\u30C3\u30C8\u3001\u6570\u5B57\u3001\u30A2\u30F3\u30C0\u30FC\u30B9\u30B3\u30A2\u3092\u30B5\u30DD\u30FC\u30C8\u3057\u3001\u30A2\u30EB\u30D5\u30A1\u30D9\u30C3\u30C8\u304B\u3089\u59CB\u307E\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002",
|
|
496
|
+
"Read only": "\u8AAD\u307F\u53D6\u308A\u5C02\u7528(\u7DE8\u96C6\u4E0D\u53EF)",
|
|
497
|
+
Readme: "Readme",
|
|
498
|
+
Readonly: "\u8AAD\u307F\u53D6\u308A\u5C02\u7528\uFF08\u7DE8\u96C6\u4E0D\u53EF\uFF09",
|
|
499
|
+
"Record ID": "\u30EC\u30B3\u30FC\u30C9 ID",
|
|
500
|
+
"Record picker": "\u30EC\u30B3\u30FC\u30C9\u30D4\u30C3\u30AB\u30FC",
|
|
501
|
+
"Records can be sorted": "\u30BD\u30FC\u30C8\u53EF\u80FD",
|
|
502
|
+
"Records per page": "\u30DA\u30FC\u30B8\u3054\u3068\u306E\u30EC\u30B3\u30FC\u30C9\u6570",
|
|
503
|
+
Red: "\u30EC\u30C3\u30C9",
|
|
504
|
+
"Redirect to": "\u30EA\u30C0\u30A4\u30EC\u30AF\u30C8\u3059\u308B",
|
|
505
|
+
"Reference template": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u53C2\u7167",
|
|
506
|
+
Refresh: "\u30EA\u30D5\u30EC\u30C3\u30B7\u30E5",
|
|
507
|
+
"Regular expression": "\u6B63\u898F\u8868\u73FE",
|
|
508
|
+
"Related collection": "\u95A2\u9023\u4ED8\u3051\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3",
|
|
509
|
+
Relation: "\u95A2\u9023\u3065\u3051",
|
|
510
|
+
"Relationship blocks": "\u95A2\u9023\u4ED8\u3051\u3055\u308C\u305F\u30D6\u30ED\u30C3\u30AF",
|
|
511
|
+
"Relationship type": "\u95A2\u9023\u4ED8\u3051\u30BF\u30A4\u30D7",
|
|
512
|
+
"Render Failed": "\u30EC\u30F3\u30C0\u30EA\u30F3\u30B0\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
|
|
513
|
+
"Request API": "\u30EA\u30AF\u30A8\u30B9\u30C8 API",
|
|
514
|
+
"Request URL": "\u30EA\u30AF\u30A8\u30B9\u30C8 URL",
|
|
515
|
+
"Request body": "\u30EA\u30AF\u30A8\u30B9\u30C8 \u30DC\u30C7\u30A3",
|
|
516
|
+
"Request headers": "\u30EA\u30AF\u30A8\u30B9\u30C8 \u30D8\u30C3\u30C0",
|
|
517
|
+
"Request method": "\u30EA\u30AF\u30A8\u30B9\u30C8 \u30E1\u30BD\u30C3\u30C9",
|
|
518
|
+
"Request query parameters": "\u30EA\u30AF\u30A8\u30B9\u30C8 \u30AF\u30A8\u30EA \u30D1\u30E9\u30E1\u30FC\u30BF",
|
|
519
|
+
"Request settings": "\u30EA\u30AF\u30A8\u30B9\u30C8\u8A2D\u5B9A",
|
|
520
|
+
"Request success": "\u30EA\u30B9\u30A8\u30B9\u30C8\u6210\u529F",
|
|
521
|
+
Required: "\u5FC5\u9808",
|
|
522
|
+
Reset: "\u30EA\u30BB\u30C3\u30C8",
|
|
523
|
+
Result: "\u7D50\u679C",
|
|
524
|
+
"Rich Text": "\u30EA\u30C3\u30C1\u30C6\u30AD\u30B9\u30C8",
|
|
525
|
+
"Role UID": "\u5F79\u5272ID",
|
|
526
|
+
"Role display name": "\u5F79\u5272\u540D",
|
|
527
|
+
"Role name": "\u5F79\u5272\u540D",
|
|
528
|
+
Roles: "\u5F79\u5272",
|
|
529
|
+
"Roles & Permissions": "\u5F79\u5272\u3068\u6A29\u9650",
|
|
530
|
+
Save: "\u4FDD\u5B58",
|
|
531
|
+
"Save action": "\u64CD\u4F5C\u3092\u4FDD\u5B58",
|
|
532
|
+
"Save as block template": "\u30D6\u30ED\u30C3\u30AF\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3068\u3057\u3066\u4FDD\u5B58",
|
|
533
|
+
"Save as template": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3068\u3057\u3066\u4FDD\u5B58",
|
|
534
|
+
"Save conditions": "\u6761\u4EF6\u3092\u4FDD\u5B58",
|
|
535
|
+
"Save mode": "\u4FDD\u5B58\u65B9\u6CD5",
|
|
536
|
+
"Save record": "\u30EC\u30B3\u30FC\u30C9\u3092\u4FDD\u5B58",
|
|
537
|
+
"Saved successfully": "\u4FDD\u5B58\u306B\u6210\u529F\u3057\u307E\u3057\u305F",
|
|
538
|
+
"Scope name": "\u30B9\u30B3\u30FC\u30D7\u540D",
|
|
539
|
+
"Search and select collection": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u3092\u691C\u7D22\u3057\u3066\u9078\u629E",
|
|
540
|
+
"Search plugin": "\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u691C\u7D22",
|
|
541
|
+
"Select all": "\u3059\u3079\u3066\u9078\u629E",
|
|
542
|
+
"Select an existing piece of data as the initialization data for the form": "\u65E2\u5B58\u306E\u30C7\u30FC\u30BF\u3092\u9078\u629E\u3057\u3066\u3001\u30D5\u30A9\u30FC\u30E0\u306E\u521D\u671F\u5316\u30C7\u30FC\u30BF\u3068\u3057\u3066\u4F7F\u7528\u3057\u307E\u3059",
|
|
543
|
+
"Select collection": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
544
|
+
"Select data source": "\u30C7\u30FC\u30BF\u30BD\u30FC\u30B9\u3092\u9078\u629E",
|
|
545
|
+
"Select field": "\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
546
|
+
"Select file": "\u30D5\u30A1\u30A4\u30EB\u3092\u9078\u629E",
|
|
547
|
+
"Select grouping field": "\u30B0\u30EB\u30FC\u30D7\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
548
|
+
"Select icon": "\u30A2\u30A4\u30B3\u30F3\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
549
|
+
"Select level": "\u30EC\u30D9\u30EB\u3092\u9078\u629E",
|
|
550
|
+
"Select record": "\u30EC\u30B3\u30FC\u30C9\u3092\u9078\u629E",
|
|
551
|
+
"Select status": "\u72B6\u614B\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
552
|
+
"Select template": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
553
|
+
"Select view": "\u30D3\u30E5\u30FC\u306E\u5207\u308A\u66FF\u3048",
|
|
554
|
+
"Set data loading mode": "\u30C7\u30FC\u30BF\u8AAD\u307F\u8FBC\u307F\u30E2\u30FC\u30C9\u306E\u8A2D\u5B9A",
|
|
555
|
+
"Set default sorting rules": "\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u30BD\u30FC\u30C8\u30EB\u30FC\u30EB\u3092\u8A2D\u5B9A",
|
|
556
|
+
"Set default value": "\u30C7\u30D5\u30A9\u30EB\u30C8\u5024\u3092\u8A2D\u5B9A",
|
|
557
|
+
"Set the data scope": "\u30C7\u30FC\u30BF\u7BC4\u56F2\u306E\u8A2D\u5B9A",
|
|
558
|
+
"Set validation rules": "\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3\u30EB\u30FC\u30EB\u306E\u8A2D\u5B9A",
|
|
559
|
+
"Show time": "\u6642\u523B\u3092\u8868\u793A",
|
|
560
|
+
"Sign in": "\u30B5\u30A4\u30F3\u30A4\u30F3",
|
|
561
|
+
"Sign out": "\u30B5\u30A4\u30F3\u30A2\u30A6\u30C8",
|
|
562
|
+
"Sign up": "\u30B5\u30A4\u30F3\u30A2\u30C3\u30D7",
|
|
563
|
+
"Sign up successfully, and automatically jump to the sign in page": "\u30A2\u30AB\u30A6\u30F3\u30C8\u306E\u767B\u9332\u306B\u6210\u529F\u3059\u308B\u3068\u3001\u30ED\u30B0\u30A4\u30F3\u30DA\u30FC\u30B8\u306B\u30EA\u30C0\u30A4\u30EC\u30AF\u30C8\u3055\u308C\u307E\u3059",
|
|
564
|
+
"Signed up successfully. It will jump to the login page.": "\u767B\u9332\u306B\u6210\u529F\u3059\u308B\u3068\u3001\u30ED\u30B0\u30A4\u30F3\u30DA\u30FC\u30B8\u306B\u30EA\u30C0\u30A4\u30EC\u30AF\u30C8\u3055\u308C\u307E\u3059",
|
|
565
|
+
"Single line text": "\u4E00\u884C\u30C6\u30AD\u30B9\u30C8",
|
|
566
|
+
"Single select": "\u30C9\u30ED\u30C3\u30D7\u30C0\u30A6\u30F3\uFF08\u5358\u6570\u9078\u629E\uFF09",
|
|
567
|
+
"Single select and radio fields can be used as the grouping field": "\u5358\u4E00\u9078\u629E\u30D5\u30A3\u30FC\u30EB\u30C9\u3068\u30E9\u30B8\u30AA \u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u30B0\u30EB\u30FC\u30D7\u5316\u30D5\u30A3\u30FC\u30EB\u30C9\u3068\u3057\u3066\u4F7F\u7528\u3067\u304D\u307E\u3059",
|
|
568
|
+
"Skip required validation": "\u5FC5\u9808\u306E\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3\u3092\u30B9\u30AD\u30C3\u30D7",
|
|
569
|
+
Sort: "\u30BD\u30FC\u30C8\uFF03\u30BD\u30FC\u30C8\uFF03",
|
|
570
|
+
"Source collection": "\u53C2\u7167\u5143\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3",
|
|
571
|
+
"Source collections": "\u30BD\u30FC\u30B9\u30C7\u30FC\u30BF\u30BB\u30C3\u30C8",
|
|
572
|
+
"Source key": "\u53C2\u7167\u5143\u30AD\u30FC",
|
|
573
|
+
"Start date field": "\u958B\u59CB\u65E5\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
574
|
+
"Stay on current page": "\u73FE\u5728\u306E\u30DA\u30FC\u30B8\u306B\u3068\u3069\u307E\u308B",
|
|
575
|
+
Street: "\u753A/\u901A\u308A",
|
|
576
|
+
"Sub-details": "\u30B5\u30D6\u30EA\u30B9\u30C8",
|
|
577
|
+
"Sub-form": "\u30B5\u30D6\u30D5\u30A9\u30FC\u30E0",
|
|
578
|
+
"Sub-table": "\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB",
|
|
579
|
+
"Subform: Popover": "\u30B5\u30D6\u30D5\u30A9\u30FC\u30E0\uFF1A\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7\u7A93",
|
|
580
|
+
Submit: "\u9001\u4FE1",
|
|
581
|
+
"Submitted successfully": "\u6B63\u5E38\u306B\u9001\u4FE1\u3055\u308C\u307E\u3057\u305F",
|
|
582
|
+
Subtable: "\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB",
|
|
583
|
+
"Succeed and continue": "\u6210\u529F\u3057\u7D9A\u884C",
|
|
584
|
+
"Super admin": "\u7BA1\u7406\u8005",
|
|
585
|
+
"Support for a single or bulk upload, file size should not exceed": "\u5358\u4E00\u307E\u305F\u306F\u8907\u6570\u306E\u30D5\u30A1\u30A4\u30EB\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3067\u304D\u307E\u3059\u3002\u30D5\u30A1\u30A4\u30EB\u30B5\u30A4\u30BA\u306F",
|
|
586
|
+
"Switch role": "\u5F79\u5272\u306E\u5207\u66FF",
|
|
587
|
+
"Sync from form fields": "\u30D5\u30A9\u30FC\u30E0\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u540C\u671F",
|
|
588
|
+
"Sync successfully": "\u540C\u671F\u6210\u529F",
|
|
589
|
+
"System info": "\u30B7\u30B9\u30C6\u30E0\u60C5\u5831",
|
|
590
|
+
"System settings": "\u30B7\u30B9\u30C6\u30E0\u8A2D\u5B9A",
|
|
591
|
+
"System title": "\u30B7\u30B9\u30C6\u30E0\u540D",
|
|
592
|
+
"Tab name": "\u30BF\u30D6\u540D",
|
|
593
|
+
Table: "\u30C6\u30FC\u30D6\u30EB",
|
|
594
|
+
"Table OID(Inheritance)": "\u30C7\u30FC\u30BF\u30C6\u30FC\u30D6\u30EBOID(\u7D99\u627F)",
|
|
595
|
+
Tag: "\u30BF\u30D6",
|
|
596
|
+
"Tag color field": "\u30E9\u30D9\u30EB\u306E\u8272\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
597
|
+
Target: "\u30BF\u30FC\u30B2\u30C3\u30C8",
|
|
598
|
+
"Target collection": "\u53C2\u7167\u5148\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3",
|
|
599
|
+
"Target key": "\u53C2\u7167\u5148\u30AD\u30FC",
|
|
600
|
+
"Target position": "\u30BF\u30FC\u30B2\u30C3\u30C8\u306E\u4F4D\u7F6E",
|
|
601
|
+
"Template Data": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u30C7\u30FC\u30BF",
|
|
602
|
+
"Template name": "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u540D",
|
|
603
|
+
Templates: "\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8",
|
|
604
|
+
"The deletion was successful.": "\u524A\u9664\u306B\u6210\u529F\u3057\u307E\u3057\u305F\u3002",
|
|
605
|
+
"The field has been deleted": "\u30D5\u30A3\u30FC\u30EB\u30C9\u304C\u524A\u9664\u3055\u308C\u307E\u3057\u305F",
|
|
606
|
+
'The {{type}} "{{name}}" may have been deleted. Please remove this {{blockType}}.': '{{type}} "{{name}}" \u306F\u524A\u9664\u3055\u308C\u3066\u3044\u308B\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002\u3053\u306E {{blockType}} \u3092\u524A\u9664\u3057\u3066\u304F\u3060\u3055\u3044\u3002',
|
|
607
|
+
Then: "\u305D\u306E\u5F8C",
|
|
608
|
+
"This is a demo text, **supports Markdown syntax**.": "\u3053\u308C\u306F\u30C7\u30E2\u30C6\u30AD\u30B9\u30C8\u3067\u3059\u3002 **\u30DE\u30FC\u30AF\u30C0\u30A6\u30F3\u69CB\u6587\u3092\u30B5\u30DD\u30FC\u30C8\u3057\u3066\u3044\u307E\u3059\u3002**",
|
|
609
|
+
"This is likely a Tachybase internals bug. Please open an issue at <1>here</1>": "\u3053\u308C\u306FTachybase\u306E\u5185\u90E8\u30D0\u30B0\u306E\u53EF\u80FD\u6027\u304C\u3042\u308A\u307E\u3059\u3002 <1>\u3053\u3061\u3089</1>\u3067\u554F\u984C\u3092\u5831\u544A\u3057\u3066\u304F\u3060\u3055\u3044",
|
|
610
|
+
"This month": "\u4ECA\u6708",
|
|
611
|
+
"This quarter": "\u4ECA\u56DB\u534A\u671F",
|
|
612
|
+
"This week": "\u4ECA\u9031",
|
|
613
|
+
"This year": "\u4ECA\u5E74",
|
|
614
|
+
"Through collection": "\u4E2D\u9593\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3",
|
|
615
|
+
Time: "\u6642\u9593",
|
|
616
|
+
"Time format": "\u6642\u9593\u5F62\u5F0F",
|
|
617
|
+
"Time scale": "\u6642\u9593\u30B9\u30B1\u30FC\u30EB\u30EC\u30D9\u30EB",
|
|
618
|
+
Title: "\u30BF\u30A4\u30C8\u30EB",
|
|
619
|
+
"Title field": "\u30BF\u30A4\u30C8\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9",
|
|
620
|
+
Today: "\u4ECA\u65E5",
|
|
621
|
+
Tomorrow: "\u660E\u65E5",
|
|
622
|
+
"Total {{count}} items": "\u5408\u8A08 {{count}} \u4EF6",
|
|
623
|
+
"Tree table": "\u30C4\u30EA\u30FC\u30C6\u30FC\u30D6\u30EB",
|
|
624
|
+
"Trigger workflow": "\u30C8\u30EA\u30AC\u30FC\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC",
|
|
625
|
+
"Triggered when the row is clicked": "\u884C\u304C\u30AF\u30EA\u30C3\u30AF\u3055\u308C\u305F\u3068\u304D\u30C8\u30EA\u30AC\u30FC\u3055\u308C\u307E\u3059",
|
|
626
|
+
"Try again": "\u518D\u8A66\u884C",
|
|
627
|
+
"Turn pages": "\u30DA\u30FC\u30B8\u3092\u3081\u304F\u308B",
|
|
628
|
+
"UI Editor": "UI \u30A8\u30C7\u30A3\u30BF",
|
|
629
|
+
"UI editor": "UI \u30A8\u30C7\u30A3\u30BF",
|
|
630
|
+
Unconnected: "\u672A\u63A5\u7D9A",
|
|
631
|
+
Unique: "\u91CD\u8907\u3092\u8A31\u53EF\u3057\u306A\u3044",
|
|
632
|
+
"Unsaved changes": "\u5909\u66F4\u304C\u4FDD\u5B58\u3055\u308C\u3066\u3044\u307E\u305B\u3093",
|
|
633
|
+
Update: "\u66F4\u65B0",
|
|
634
|
+
"Update or create": "\u5B58\u5728\u3057\u306A\u3051\u308C\u3070\u65B0\u898F\u3001\u5B58\u5728\u3059\u308C\u3070\u66F4\u65B0",
|
|
635
|
+
"Update plugin": "\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u30A2\u30C3\u30D7\u30B0\u30EC\u30FC\u30C9",
|
|
636
|
+
"Updated successfully": "\u66F4\u65B0\u6210\u529F",
|
|
637
|
+
UpdatedAt: "\u30EC\u30B3\u30FC\u30C9\u6700\u7D42\u66F4\u65B0\u6642\u9593",
|
|
638
|
+
UpdatedBy: "\u30EC\u30B3\u30FC\u30C9\u6700\u7D42\u66F4\u65B0\u8005",
|
|
639
|
+
Upgrade: "\u30A2\u30C3\u30D7\u30B0\u30EC\u30FC\u30C9",
|
|
640
|
+
Upload: "\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9",
|
|
641
|
+
"Upload new version": "\u65B0\u3057\u3044\u30D0\u30FC\u30B8\u30E7\u30F3\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9",
|
|
642
|
+
"Upload plugin": "\u30D7\u30E9\u30B0\u30A4\u30F3\u3092\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9",
|
|
643
|
+
"Use the same time zone (GMT) for all users": "\u3059\u3079\u3066\u306E\u30E6\u30FC\u30B6\u30FC\u304C\u540C\u3058\u30BF\u30A4\u30E0\u30BE\u30FC\u30F3\uFF08GMT\uFF09\u3092\u4F7F\u7528\u3059\u308B",
|
|
644
|
+
User: "\u30E6\u30FC\u30B6\u30FC",
|
|
645
|
+
Users: "\u30E6\u30FC\u30B6\u30FC",
|
|
646
|
+
"Validation rule": "\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3\u30EB\u30FC\u30EB",
|
|
647
|
+
Value: "\u30D5\u30A3\u30FC\u30EB\u30C9\u5024",
|
|
648
|
+
Version: "\u30D0\u30FC\u30B8\u30E7\u30F3",
|
|
649
|
+
"Version range": "\u30D0\u30FC\u30B8\u30E7\u30F3\u7BC4\u56F2",
|
|
650
|
+
View: "\u8868\u793A",
|
|
651
|
+
"View all plugins": "\u3059\u3079\u3066\u306E\u30D7\u30E9\u30B0\u30E9\u30A4\u30F3\u3092\u898B\u308B",
|
|
652
|
+
"View record": "\u30EC\u30B3\u30FC\u30C9\u3092\u898B\u308B",
|
|
653
|
+
Village: "\u6751",
|
|
654
|
+
Visible: "\u8868\u793A",
|
|
655
|
+
Volcano: "\u30DC\u30EB\u30B1\u30FC\u30CE",
|
|
656
|
+
Week: "\u9031",
|
|
657
|
+
"When submitting the following fields, the saved values are": "\u6B21\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9001\u4FE1\u3059\u308B\u3068\u3001\u4FDD\u5B58\u3055\u308C\u305F\u5024\u306F",
|
|
658
|
+
"Work week": "\u7A3C\u50CD\u65E5",
|
|
659
|
+
Wysiwyg: "Wysiwyg",
|
|
660
|
+
Year: "\u5E74",
|
|
661
|
+
"Year-Month-Day": "\u5E74-\u6708-\u65E5",
|
|
662
|
+
"Year/Month/Day": "\u5E74/\u6708/\u65E5",
|
|
663
|
+
Yes: "\u306F\u3044",
|
|
664
|
+
Yesterday: "\u6628\u65E5",
|
|
665
|
+
contains: "\u3092\u542B\u3080",
|
|
666
|
+
"data source": "\u30C7\u30FC\u30BF\u30BD\u30FC\u30B9",
|
|
667
|
+
"does not contain": "\u3092\u542B\u307E\u306A\u3044",
|
|
668
|
+
"edit title": "\u30BF\u30A4\u30C8\u30EB\u3092\u7DE8\u96C6",
|
|
669
|
+
"ends with": "\u3067\u7D42\u308F\u308B",
|
|
670
|
+
exists: "\u304C\u5B58\u5728\u3059\u308B",
|
|
671
|
+
is: "\u304C\u540C\u3058\u3067\u3042\u308B",
|
|
672
|
+
"is after": "\u3088\u308A\u5F8C",
|
|
673
|
+
"is before": "\u3088\u308A\u524D",
|
|
674
|
+
"is between": "\u7BC4\u56F2",
|
|
675
|
+
"is empty": "\u304C\u7A7A\u3067\u3042\u308B",
|
|
676
|
+
"is not": "\u304C\u540C\u3058\u3067\u306F\u306A\u3044",
|
|
677
|
+
"is not empty": "\u304C\u7A7A\u3067\u306F\u306A\u3044",
|
|
678
|
+
"is on or after": "\u4EE5\u964D",
|
|
679
|
+
"is on or before": "\u4EE5\u524D",
|
|
680
|
+
loading: "\u30ED\u30FC\u30C9\u4E2D",
|
|
681
|
+
"name is required": "\u540D\u524D\u306F\u5FC5\u9808\u3067\u3059",
|
|
682
|
+
"not ends with": "\u3067\u7D42\u308F\u3089\u306A\u3044",
|
|
683
|
+
"not exists": "\u304C\u5B58\u5728\u3057\u306A\u3044",
|
|
684
|
+
"not starts with": "\u3067\u59CB\u307E\u3089\u306A\u3044",
|
|
685
|
+
"re-download file": "\u30D5\u30A1\u30A4\u30EB\u3092\u518D\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9",
|
|
686
|
+
"starts with": "\u3067\u59CB\u307E\u308B",
|
|
687
|
+
"{{count}} filter items": "{{count}} \u3064\u306E\u30D5\u30A3\u30EB\u30BF\u30FC\u9805\u76EE",
|
|
688
|
+
"{{count}} more items": "{{count}} \u4EF6\u4EE5\u4E0A",
|
|
689
|
+
"\u2260": "\u2260",
|
|
690
|
+
"\u2264": "\u2264",
|
|
691
|
+
"\u2265": "\u2265",
|
|
692
|
+
"12 hour": "12 \u6642\u9593\u5236",
|
|
693
|
+
"24 hour": "24 \u6642\u9593\u5236"
|
|
694
|
+
};
|