@akemona-org/strapi-plugin-content-manager 3.7.0
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/LICENSE +22 -0
- package/README.md +27 -0
- package/admin/src/InjectedComponents/ContentTypeBuilder/ConfigureViewButton/index.js +78 -0
- package/admin/src/assets/images/background_input.svg +1 -0
- package/admin/src/assets/images/icon-cross-blue.svg +1 -0
- package/admin/src/assets/images/icon_remove.svg +19 -0
- package/admin/src/assets/images/logo.svg +1 -0
- package/admin/src/components/AddDropdown/components.js +113 -0
- package/admin/src/components/AddDropdown/index.js +76 -0
- package/admin/src/components/Block/components.js +28 -0
- package/admin/src/components/Block/index.js +45 -0
- package/admin/src/components/ComponentInitializer/P.js +9 -0
- package/admin/src/components/ComponentInitializer/index.js +43 -0
- package/admin/src/components/Container/index.js +7 -0
- package/admin/src/components/CustomInputCheckbox/components.js +77 -0
- package/admin/src/components/CustomInputCheckbox/index.js +53 -0
- package/admin/src/components/CustomTable/ActionCollapse/Delete.js +14 -0
- package/admin/src/components/CustomTable/ActionCollapse/DeleteAll.js +18 -0
- package/admin/src/components/CustomTable/ActionCollapse/Wrapper.js +20 -0
- package/admin/src/components/CustomTable/ActionCollapse/index.js +38 -0
- package/admin/src/components/CustomTable/Headers/Header.js +59 -0
- package/admin/src/components/CustomTable/Headers/Thead.js +35 -0
- package/admin/src/components/CustomTable/Headers/index.js +46 -0
- package/admin/src/components/CustomTable/Row/ActionContainer.js +19 -0
- package/admin/src/components/CustomTable/Row/Cell.js +55 -0
- package/admin/src/components/CustomTable/Row/index.js +112 -0
- package/admin/src/components/CustomTable/index.js +162 -0
- package/admin/src/components/CustomTable/styledComponents.js +85 -0
- package/admin/src/components/DragLayer/index.js +102 -0
- package/admin/src/components/DraggedField/Close/index.js +10 -0
- package/admin/src/components/DraggedField/GrabWrapper.js +38 -0
- package/admin/src/components/DraggedField/Link.js +17 -0
- package/admin/src/components/DraggedField/NameWrapper.js +29 -0
- package/admin/src/components/DraggedField/RemoveWrapper.js +32 -0
- package/admin/src/components/DraggedField/SubWrapper.js +36 -0
- package/admin/src/components/DraggedField/Wrapper.js +134 -0
- package/admin/src/components/DraggedField/index.js +196 -0
- package/admin/src/components/DraggedField/utils/getColor.js +12 -0
- package/admin/src/components/DraggedField/utils/getHeight.js +3 -0
- package/admin/src/components/DraggedFieldWithPreview/Carret.js +24 -0
- package/admin/src/components/DraggedFieldWithPreview/DynamicComponent.js +70 -0
- package/admin/src/components/DraggedFieldWithPreview/DynamicZoneWrapper.js +10 -0
- package/admin/src/components/DraggedFieldWithPreview/Tooltip.js +19 -0
- package/admin/src/components/DraggedFieldWithPreview/Wrapper.js +24 -0
- package/admin/src/components/DraggedFieldWithPreview/index.js +194 -0
- package/admin/src/components/DynamicComponentCard/Wrapper.js +63 -0
- package/admin/src/components/DynamicComponentCard/index.js +49 -0
- package/admin/src/components/DynamicZone/BaselineAlignement.js +11 -0
- package/admin/src/components/DynamicZone/Button.js +31 -0
- package/admin/src/components/DynamicZone/Component/RoundCTA.js +45 -0
- package/admin/src/components/DynamicZone/Component/index.js +79 -0
- package/admin/src/components/DynamicZone/ComponentWrapper.js +44 -0
- package/admin/src/components/DynamicZone/DynamicZoneWrapper.js +12 -0
- package/admin/src/components/DynamicZone/Label.js +42 -0
- package/admin/src/components/DynamicZone/Picker/Category/Banner/Wrapper.js +78 -0
- package/admin/src/components/DynamicZone/Picker/Category/Banner/index.js +33 -0
- package/admin/src/components/DynamicZone/Picker/Category/index.js +53 -0
- package/admin/src/components/DynamicZone/Picker/Wrapper.js +32 -0
- package/admin/src/components/DynamicZone/Picker/index.js +88 -0
- package/admin/src/components/DynamicZone/Wrapper.js +34 -0
- package/admin/src/components/DynamicZone/index.js +238 -0
- package/admin/src/components/DynamicZone/utils/connect.js +12 -0
- package/admin/src/components/DynamicZone/utils/select.js +49 -0
- package/admin/src/components/FieldComponent/ComponentIcon.js +44 -0
- package/admin/src/components/FieldComponent/EmptyComponent.js +19 -0
- package/admin/src/components/FieldComponent/Label.js +10 -0
- package/admin/src/components/FieldComponent/ResetComponent.js +41 -0
- package/admin/src/components/FieldComponent/Wrapper.js +18 -0
- package/admin/src/components/FieldComponent/index.js +171 -0
- package/admin/src/components/FieldComponent/utils/connect.js +12 -0
- package/admin/src/components/FieldComponent/utils/select.js +123 -0
- package/admin/src/components/FieldsReorder/Item.js +249 -0
- package/admin/src/components/FieldsReorder/components.js +8 -0
- package/admin/src/components/FieldsReorder/index.js +102 -0
- package/admin/src/components/FilterOptionsCTA/index.js +14 -0
- package/admin/src/components/FilterPicker/components.js +56 -0
- package/admin/src/components/FilterPicker/index.js +258 -0
- package/admin/src/components/FilterPicker/init.js +25 -0
- package/admin/src/components/FilterPicker/reducer.js +58 -0
- package/admin/src/components/FilterPickerOption/Input.js +58 -0
- package/admin/src/components/FilterPickerOption/Option.js +18 -0
- package/admin/src/components/FilterPickerOption/components.js +60 -0
- package/admin/src/components/FilterPickerOption/index.js +101 -0
- package/admin/src/components/FormTitle/index.js +26 -0
- package/admin/src/components/FormWrapper/index.js +20 -0
- package/admin/src/components/InputJSON/components.js +30 -0
- package/admin/src/components/InputJSON/index.js +184 -0
- package/admin/src/components/InputJSON/jsonlint.js +424 -0
- package/admin/src/components/InputJSONWithErrors/Wrapper.js +32 -0
- package/admin/src/components/InputJSONWithErrors/index.js +168 -0
- package/admin/src/components/InputUID/InputUID.js +26 -0
- package/admin/src/components/InputUID/Options/Option.js +22 -0
- package/admin/src/components/InputUID/Options/OptionsTitle.js +12 -0
- package/admin/src/components/InputUID/Options/RightOptionLabel.js +10 -0
- package/admin/src/components/InputUID/Options/index.js +34 -0
- package/admin/src/components/InputUID/Options/wrapper.js +13 -0
- package/admin/src/components/InputUID/RegenerateButton.js +18 -0
- package/admin/src/components/InputUID/RightContent.js +14 -0
- package/admin/src/components/InputUID/RightContentLabel.js +10 -0
- package/admin/src/components/InputUID/RightLabel.js +42 -0
- package/admin/src/components/InputUID/SubLabel.js +9 -0
- package/admin/src/components/InputUID/Wrapper.js +8 -0
- package/admin/src/components/InputUID/index.js +325 -0
- package/admin/src/components/InputUID/regex.js +3 -0
- package/admin/src/components/Inputs/index.js +283 -0
- package/admin/src/components/Inputs/utils/VALIDATIONS_TO_OMIT.js +12 -0
- package/admin/src/components/Inputs/utils/connect.js +12 -0
- package/admin/src/components/Inputs/utils/generateOptions.js +19 -0
- package/admin/src/components/Inputs/utils/getInputType.js +44 -0
- package/admin/src/components/Inputs/utils/getStep.js +15 -0
- package/admin/src/components/Inputs/utils/index.js +6 -0
- package/admin/src/components/Inputs/utils/select.js +38 -0
- package/admin/src/components/LayoutTitle/index.js +19 -0
- package/admin/src/components/MediaPreviewList/StyledMediaPreviewList.js +171 -0
- package/admin/src/components/MediaPreviewList/index.js +110 -0
- package/admin/src/components/NonRepeatableComponent/index.js +73 -0
- package/admin/src/components/NonRepeatableWrapper/index.js +73 -0
- package/admin/src/components/PlusButton/index.js +52 -0
- package/admin/src/components/PopupForm/index.js +93 -0
- package/admin/src/components/PreviewCarret/components.js +27 -0
- package/admin/src/components/PreviewCarret/index.js +22 -0
- package/admin/src/components/PreviewWysiwyg/Wrapper.js +133 -0
- package/admin/src/components/PreviewWysiwyg/index.js +34 -0
- package/admin/src/components/PreviewWysiwyg/utils/mdRenderer.js +72 -0
- package/admin/src/components/PreviewWysiwyg/utils/satinizeHtml.js +16 -0
- package/admin/src/components/RelationPreviewList/CountWrapper.js +7 -0
- package/admin/src/components/RelationPreviewList/RelationPreviewTooltip.js +117 -0
- package/admin/src/components/RelationPreviewList/index.js +111 -0
- package/admin/src/components/RepeatableComponent/AddFieldButton.js +64 -0
- package/admin/src/components/RepeatableComponent/Banner.js +112 -0
- package/admin/src/components/RepeatableComponent/BannerWrapper.js +194 -0
- package/admin/src/components/RepeatableComponent/CarretTop.js +14 -0
- package/admin/src/components/RepeatableComponent/DraggedItem/index.js +245 -0
- package/admin/src/components/RepeatableComponent/DraggedItem/utils/connect.js +11 -0
- package/admin/src/components/RepeatableComponent/DraggedItem/utils/index.js +2 -0
- package/admin/src/components/RepeatableComponent/DraggedItem/utils/select.js +30 -0
- package/admin/src/components/RepeatableComponent/EmptyComponent.js +27 -0
- package/admin/src/components/RepeatableComponent/FormWrapper.js +27 -0
- package/admin/src/components/RepeatableComponent/index.js +187 -0
- package/admin/src/components/RepeatableComponent/reducer.js +73 -0
- package/admin/src/components/RepeatableComponent/utils/connect.js +11 -0
- package/admin/src/components/RepeatableComponent/utils/select.js +12 -0
- package/admin/src/components/Search/index.js +88 -0
- package/admin/src/components/SectionTitle/Title.js +11 -0
- package/admin/src/components/SectionTitle/index.js +29 -0
- package/admin/src/components/SelectMany/ListItem.js +107 -0
- package/admin/src/components/SelectMany/Relation.js +106 -0
- package/admin/src/components/SelectMany/components.js +153 -0
- package/admin/src/components/SelectMany/index.js +159 -0
- package/admin/src/components/SelectOne/SingleValue.js +58 -0
- package/admin/src/components/SelectOne/index.js +71 -0
- package/admin/src/components/SelectWrapper/ClearIndicator.js +15 -0
- package/admin/src/components/SelectWrapper/IndicatorSeparator.js +3 -0
- package/admin/src/components/SelectWrapper/Option.js +76 -0
- package/admin/src/components/SelectWrapper/components.js +14 -0
- package/admin/src/components/SelectWrapper/index.js +393 -0
- package/admin/src/components/SelectWrapper/utils/connect.js +12 -0
- package/admin/src/components/SelectWrapper/utils/index.js +3 -0
- package/admin/src/components/SelectWrapper/utils/select.js +45 -0
- package/admin/src/components/SelectWrapper/utils/styles.js +105 -0
- package/admin/src/components/Separator/index.js +9 -0
- package/admin/src/components/SettingFormWrapper/index.js +9 -0
- package/admin/src/components/SettingsViewWrapper/index.js +283 -0
- package/admin/src/components/SortWrapper/index.js +9 -0
- package/admin/src/components/SortableList/Item.js +126 -0
- package/admin/src/components/SortableList/index.js +60 -0
- package/admin/src/components/State/Wrapper.js +30 -0
- package/admin/src/components/State/index.js +26 -0
- package/admin/src/components/Truncate/index.js +5 -0
- package/admin/src/components/Truncated/index.js +10 -0
- package/admin/src/components/Wysiwyg/EditorWrapper.js +122 -0
- package/admin/src/components/Wysiwyg/MediaLib.js +71 -0
- package/admin/src/components/Wysiwyg/PreviewControlWrapper.js +30 -0
- package/admin/src/components/Wysiwyg/SelectWrapper.js +24 -0
- package/admin/src/components/Wysiwyg/ToggleModeWrapper.js +30 -0
- package/admin/src/components/Wysiwyg/constants.js +98 -0
- package/admin/src/components/Wysiwyg/customSelect.js +39 -0
- package/admin/src/components/Wysiwyg/helpers.js +116 -0
- package/admin/src/components/Wysiwyg/index.js +819 -0
- package/admin/src/components/Wysiwyg/previewControl.js +29 -0
- package/admin/src/components/Wysiwyg/toggleMode.js +44 -0
- package/admin/src/components/Wysiwyg/utils.js +70 -0
- package/admin/src/components/WysiwygBottomControls/components.js +44 -0
- package/admin/src/components/WysiwygBottomControls/index.js +33 -0
- package/admin/src/components/WysiwygDropUpload/Label.js +16 -0
- package/admin/src/components/WysiwygDropUpload/index.js +18 -0
- package/admin/src/components/WysiwygEditor/index.js +26 -0
- package/admin/src/components/WysiwygInlineControls/Button.js +77 -0
- package/admin/src/components/WysiwygInlineControls/StyledButton.js +54 -0
- package/admin/src/components/WysiwygInlineControls/Wrapper.js +25 -0
- package/admin/src/components/WysiwygInlineControls/index.js +66 -0
- package/admin/src/components/WysiwygWithErrors/Wrapper.js +38 -0
- package/admin/src/components/WysiwygWithErrors/index.js +158 -0
- package/admin/src/containers/CollectionTypeFormWrapper/index.js +376 -0
- package/admin/src/containers/CollectionTypeFormWrapper/utils/getRequestUrl.js +5 -0
- package/admin/src/containers/CollectionTypeFormWrapper/utils/index.js +2 -0
- package/admin/src/containers/CollectionTypeRecursivePath/index.js +125 -0
- package/admin/src/containers/ComponentSetttingsView/index.js +55 -0
- package/admin/src/containers/EditSettingsView/index.js +408 -0
- package/admin/src/containers/EditSettingsView/init.js +18 -0
- package/admin/src/containers/EditSettingsView/reducer.js +126 -0
- package/admin/src/containers/EditSettingsView/utils/createPossibleMainFieldsForModelsAndComponents.js +26 -0
- package/admin/src/containers/EditSettingsView/utils/getInputProps.js +30 -0
- package/admin/src/containers/EditSettingsView/utils/index.js +2 -0
- package/admin/src/containers/EditSettingsView/utils/layout.js +98 -0
- package/admin/src/containers/EditView/DeleteLink/index.js +94 -0
- package/admin/src/containers/EditView/DeleteLink/utils/connect.js +12 -0
- package/admin/src/containers/EditView/DeleteLink/utils/index.js +2 -0
- package/admin/src/containers/EditView/DeleteLink/utils/select.js +21 -0
- package/admin/src/containers/EditView/Header/index.js +258 -0
- package/admin/src/containers/EditView/Header/utils/connect.js +12 -0
- package/admin/src/containers/EditView/Header/utils/getDraftRelations.js +62 -0
- package/admin/src/containers/EditView/Header/utils/index.js +3 -0
- package/admin/src/containers/EditView/Header/utils/select.js +31 -0
- package/admin/src/containers/EditView/InformationCard.js +100 -0
- package/admin/src/containers/EditView/components.js +74 -0
- package/admin/src/containers/EditView/index.js +297 -0
- package/admin/src/containers/EditView/utils/createAttributesLayout.js +39 -0
- package/admin/src/containers/EditView/utils/getFieldsActionMatchingPermissions.js +23 -0
- package/admin/src/containers/EditView/utils/index.js +3 -0
- package/admin/src/containers/EditViewDataManagerProvider/index.js +519 -0
- package/admin/src/containers/EditViewDataManagerProvider/reducer.js +218 -0
- package/admin/src/containers/EditViewDataManagerProvider/utils/cleanData.js +88 -0
- package/admin/src/containers/EditViewDataManagerProvider/utils/getYupInnerErrors.js +17 -0
- package/admin/src/containers/EditViewDataManagerProvider/utils/index.js +3 -0
- package/admin/src/containers/EditViewDataManagerProvider/utils/schema.js +368 -0
- package/admin/src/containers/EditViewLayoutManager/Permissions.js +30 -0
- package/admin/src/containers/EditViewLayoutManager/actions.js +9 -0
- package/admin/src/containers/EditViewLayoutManager/constants.js +2 -0
- package/admin/src/containers/EditViewLayoutManager/index.js +44 -0
- package/admin/src/containers/EditViewLayoutManager/reducer.js +30 -0
- package/admin/src/containers/EditViewLayoutManager/selectors.js +5 -0
- package/admin/src/containers/LayoutDndProvider/index.js +75 -0
- package/admin/src/containers/ListSettingsView/DragWrapper.js +21 -0
- package/admin/src/containers/ListSettingsView/DropdownButton.js +8 -0
- package/admin/src/containers/ListSettingsView/Label.js +91 -0
- package/admin/src/containers/ListSettingsView/MenuDropdown.js +41 -0
- package/admin/src/containers/ListSettingsView/Toggle.js +51 -0
- package/admin/src/containers/ListSettingsView/forms.json +64 -0
- package/admin/src/containers/ListSettingsView/index.js +298 -0
- package/admin/src/containers/ListSettingsView/init.js +11 -0
- package/admin/src/containers/ListSettingsView/reducer.js +77 -0
- package/admin/src/containers/ListView/FieldPicker/ConfigureLink/StyledLink.js +28 -0
- package/admin/src/containers/ListView/FieldPicker/ConfigureLink/Wrapper.js +8 -0
- package/admin/src/containers/ListView/FieldPicker/ConfigureLink/index.js +29 -0
- package/admin/src/containers/ListView/FieldPicker/Field/Wrapper.js +15 -0
- package/admin/src/containers/ListView/FieldPicker/Field/index.js +24 -0
- package/admin/src/containers/ListView/FieldPicker/Fields/Wrapper.js +18 -0
- package/admin/src/containers/ListView/FieldPicker/Fields/index.js +27 -0
- package/admin/src/containers/ListView/FieldPicker/Header/Reset.js +8 -0
- package/admin/src/containers/ListView/FieldPicker/Header/index.js +42 -0
- package/admin/src/containers/ListView/FieldPicker/Wrapper.js +9 -0
- package/admin/src/containers/ListView/FieldPicker/index.js +46 -0
- package/admin/src/containers/ListView/Filter.js +83 -0
- package/admin/src/containers/ListView/Footer.js +60 -0
- package/admin/src/containers/ListView/actions.js +91 -0
- package/admin/src/containers/ListView/components.js +138 -0
- package/admin/src/containers/ListView/constants.js +16 -0
- package/admin/src/containers/ListView/index.js +573 -0
- package/admin/src/containers/ListView/reducer.js +182 -0
- package/admin/src/containers/ListView/selectors.js +24 -0
- package/admin/src/containers/ListView/utils/buildQueryString.js +26 -0
- package/admin/src/containers/ListView/utils/createPluginsFilter.js +13 -0
- package/admin/src/containers/ListView/utils/getAllAllowedHeaders.js +17 -0
- package/admin/src/containers/ListView/utils/getFirstSortableHeader.js +14 -0
- package/admin/src/containers/ListView/utils/index.js +3 -0
- package/admin/src/containers/ListViewLayoutManager/Permissions.js +29 -0
- package/admin/src/containers/ListViewLayoutManager/index.js +60 -0
- package/admin/src/containers/ListViewProvider/index.js +16 -0
- package/admin/src/containers/Main/actions.js +13 -0
- package/admin/src/containers/Main/constants.js +3 -0
- package/admin/src/containers/Main/index.js +100 -0
- package/admin/src/containers/Main/reducer.js +37 -0
- package/admin/src/containers/Main/selectors.js +20 -0
- package/admin/src/containers/RBACManager/actions.js +14 -0
- package/admin/src/containers/RBACManager/constants.js +2 -0
- package/admin/src/containers/RBACManager/reducer.js +32 -0
- package/admin/src/containers/RBACManager/useSyncRbac.js +28 -0
- package/admin/src/containers/SingleTypeFormWrapper/index.js +317 -0
- package/admin/src/containers/SingleTypeFormWrapper/utils/getRequestUrl.js +5 -0
- package/admin/src/containers/SingleTypeFormWrapper/utils/index.js +2 -0
- package/admin/src/containers/SingleTypeRecursivePath/index.js +84 -0
- package/admin/src/containers/WysiwygProvider/index.js +16 -0
- package/admin/src/contexts/ContentTypeLayout.js +5 -0
- package/admin/src/contexts/LayoutDnd.js +5 -0
- package/admin/src/contexts/ListView.js +5 -0
- package/admin/src/contexts/Wysiwyg.js +5 -0
- package/admin/src/contexts/index.js +4 -0
- package/admin/src/hooks/index.js +6 -0
- package/admin/src/hooks/useContentTypeLayout/index.js +19 -0
- package/admin/src/hooks/useFetchContentTypeLayout/index.js +83 -0
- package/admin/src/hooks/useFetchContentTypeLayout/reducer.js +56 -0
- package/admin/src/hooks/useFetchContentTypeLayout/utils/formatLayouts.js +235 -0
- package/admin/src/hooks/useFindRedirectionLink/index.js +14 -0
- package/admin/src/hooks/useFindRedirectionLink/selectors.js +7 -0
- package/admin/src/hooks/useFindRedirectionLink/utils/getRedirectionLink.js +45 -0
- package/admin/src/hooks/useLayoutDnd.js +6 -0
- package/admin/src/hooks/useListView.js +6 -0
- package/admin/src/hooks/useWysiwyg.js +6 -0
- package/admin/src/icons/Bold/index.js +22 -0
- package/admin/src/icons/Code/index.js +13 -0
- package/admin/src/icons/Cross/index.js +33 -0
- package/admin/src/icons/Italic/index.js +23 -0
- package/admin/src/icons/Link/index.js +21 -0
- package/admin/src/icons/Media/index.js +14 -0
- package/admin/src/icons/Na/index.js +58 -0
- package/admin/src/icons/Ol/index.js +13 -0
- package/admin/src/icons/Quote/index.js +13 -0
- package/admin/src/icons/Striked/index.js +24 -0
- package/admin/src/icons/Ul/index.js +15 -0
- package/admin/src/icons/Underline/index.js +22 -0
- package/admin/src/index.js +52 -0
- package/admin/src/lifecycles.js +19 -0
- package/admin/src/permissions.js +27 -0
- package/admin/src/pluginId.js +5 -0
- package/admin/src/reducers.js +16 -0
- package/admin/src/selectors.js +6 -0
- package/admin/src/sharedReducers/crudReducer/actions.js +44 -0
- package/admin/src/sharedReducers/crudReducer/constants.js +7 -0
- package/admin/src/sharedReducers/crudReducer/reducer.js +75 -0
- package/admin/src/sharedReducers/crudReducer/selectors.js +5 -0
- package/admin/src/testUtils/data.js +305 -0
- package/admin/src/testUtils/index.js +4 -0
- package/admin/src/translations/ar.json +94 -0
- package/admin/src/translations/cs.json +130 -0
- package/admin/src/translations/de.json +177 -0
- package/admin/src/translations/dk.json +180 -0
- package/admin/src/translations/en.json +177 -0
- package/admin/src/translations/es.json +177 -0
- package/admin/src/translations/fr.json +162 -0
- package/admin/src/translations/id.json +175 -0
- package/admin/src/translations/index.js +53 -0
- package/admin/src/translations/it.json +177 -0
- package/admin/src/translations/ja.json +94 -0
- package/admin/src/translations/ko.json +110 -0
- package/admin/src/translations/ms.json +148 -0
- package/admin/src/translations/nl.json +94 -0
- package/admin/src/translations/pl.json +142 -0
- package/admin/src/translations/pt-BR.json +94 -0
- package/admin/src/translations/pt.json +94 -0
- package/admin/src/translations/ru.json +177 -0
- package/admin/src/translations/sk.json +172 -0
- package/admin/src/translations/th.json +155 -0
- package/admin/src/translations/tr.json +177 -0
- package/admin/src/translations/uk.json +148 -0
- package/admin/src/translations/vi.json +110 -0
- package/admin/src/translations/zh-Hans.json +177 -0
- package/admin/src/translations/zh.json +94 -0
- package/admin/src/utils/ItemTypes.js +7 -0
- package/admin/src/utils/checkIfAttributeIsDisplayable.js +13 -0
- package/admin/src/utils/createDefaultForm.js +50 -0
- package/admin/src/utils/dateFormats.js +18 -0
- package/admin/src/utils/formatFiltersFromQuery.js +55 -0
- package/admin/src/utils/formatFiltersToQuery.js +27 -0
- package/admin/src/utils/formatLayoutToApi.js +44 -0
- package/admin/src/utils/generatePermissionsObject.js +20 -0
- package/admin/src/utils/getComponents.js +50 -0
- package/admin/src/utils/getDisplayedValue.js +61 -0
- package/admin/src/utils/getFieldName.js +6 -0
- package/admin/src/utils/getMaxTempKey.js +12 -0
- package/admin/src/utils/getRequestUrl.js +5 -0
- package/admin/src/utils/getTrad.js +5 -0
- package/admin/src/utils/index.js +17 -0
- package/admin/src/utils/mergeMetasWithSchema.js +20 -0
- package/admin/src/utils/removeKeyInObject.js +45 -0
- package/admin/src/utils/removePasswordFieldsFromData.js +54 -0
- package/config/admin.json +5 -0
- package/config/functions/bootstrap.js +9 -0
- package/config/policies/has-draft-and-publish.js +19 -0
- package/config/policies/hasPermissions.js +34 -0
- package/config/policies/routing.js +27 -0
- package/config/routes.json +275 -0
- package/controllers/collection-types.js +282 -0
- package/controllers/components.js +66 -0
- package/controllers/content-types.js +112 -0
- package/controllers/relations.js +63 -0
- package/controllers/single-types.js +170 -0
- package/controllers/uid.js +41 -0
- package/controllers/validation/index.js +104 -0
- package/controllers/validation/model-configuration.js +114 -0
- package/oas.yml +757 -0
- package/package.json +77 -0
- package/services/components.js +92 -0
- package/services/configuration.js +79 -0
- package/services/content-types.js +73 -0
- package/services/data-mapper.js +98 -0
- package/services/entity-manager.js +140 -0
- package/services/metrics.js +34 -0
- package/services/permission-checker.js +69 -0
- package/services/permission.js +95 -0
- package/services/uid.js +63 -0
- package/services/utils/configuration/attributes.js +175 -0
- package/services/utils/configuration/index.js +43 -0
- package/services/utils/configuration/layouts.js +185 -0
- package/services/utils/configuration/metadatas.js +142 -0
- package/services/utils/configuration/settings.js +52 -0
- package/services/utils/store.js +93 -0
- package/utils/index.js +16 -0
- package/utils/pick-writable-attributes.js +6 -0
- package/utils/wrap-bad-request.js +15 -0
- package/validation/policies/hasPermissions.js +17 -0
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
{
|
|
2
|
+
"EditRelations.title": "İlişkili Data",
|
|
3
|
+
"api.id": "API Kimliği",
|
|
4
|
+
"components.AddFilterCTA.add": "Filtreler",
|
|
5
|
+
"components.AddFilterCTA.hide": "Filtreler",
|
|
6
|
+
"components.DraggableAttr.edit": "Düzenlemek için tıkla",
|
|
7
|
+
"components.DynamicZone.add-compo": "Şuna ekle {componentName}",
|
|
8
|
+
"components.DynamicZone.missing.plural": "{count} eksik bileşen var",
|
|
9
|
+
"components.DynamicZone.missing.singular": "{count} eksik bileşen var",
|
|
10
|
+
"components.DynamicZone.pick-compo": "Bir bileşen seç",
|
|
11
|
+
"components.DynamicZone.required": "Bileşen gerekli",
|
|
12
|
+
"components.EmptyAttributesBlock.button": "Ayarlar sayfasına git",
|
|
13
|
+
"components.EmptyAttributesBlock.description": "Ayarlarınızı değiştirebilirsiniz",
|
|
14
|
+
"components.FieldItem.linkToComponentLayout": "Bileşenin düzenini ayarla",
|
|
15
|
+
"components.FilterOptions.button.apply": "Uygula",
|
|
16
|
+
"components.FiltersPickWrapper.PluginHeader.actions.apply": "Uygula",
|
|
17
|
+
"components.FiltersPickWrapper.PluginHeader.actions.clearAll": "Hepsini temizle",
|
|
18
|
+
"components.FiltersPickWrapper.PluginHeader.description": "Kayıtları filtrelemek için uygulanacak koşulları ayarlayın",
|
|
19
|
+
"components.FiltersPickWrapper.PluginHeader.title.filter": "Filtreler",
|
|
20
|
+
"components.FiltersPickWrapper.hide": "Gizle",
|
|
21
|
+
"components.LimitSelect.itemsPerPage": "Sayfa başına öğe",
|
|
22
|
+
"components.NotAllowedInput.text": "Bu alanı görmeye yetkin yok",
|
|
23
|
+
"components.Search.placeholder": "Kayıt ara...",
|
|
24
|
+
"components.Select.draft-info-title": "Durum: Taslak",
|
|
25
|
+
"components.Select.publish-info-title": "Durum: Yayınlandı",
|
|
26
|
+
"components.SettingsViewWrapper.pluginHeader.description.edit-settings": "Düzenleme görünümünün nasıl görüneceğini özelleştirin.",
|
|
27
|
+
"components.SettingsViewWrapper.pluginHeader.description.list-settings": "Liste görünümünün ayarlarını tanımlayın.",
|
|
28
|
+
"components.SettingsViewWrapper.pluginHeader.title": "Görünümü yapılandır - {name}",
|
|
29
|
+
"components.TableDelete.delete": "Hepsini sil",
|
|
30
|
+
"components.TableDelete.deleteSelected": "Seçiliyi sil",
|
|
31
|
+
"components.TableDelete.entries.plural": "{number} kayıt seçildi",
|
|
32
|
+
"components.TableDelete.entries.singular": "{number} kayıt seçildi",
|
|
33
|
+
"components.TableEmpty.withFilters": "Uygulanan filtrelerde {contentType} yoktur...",
|
|
34
|
+
"components.TableEmpty.withSearch": "Aramaya karşılık gelen {contentType} yoktur ({search})...",
|
|
35
|
+
"components.TableEmpty.withoutFilter": "{contentType} yoktur...",
|
|
36
|
+
"components.empty-repeatable": "Henüz kayıt yok. Eklemek için aşağıdaki butona tıklayın.",
|
|
37
|
+
"components.notification.info.maximum-requirement": "Zaten maksimum alan sayısına ulaştınız.",
|
|
38
|
+
"components.notification.info.minimum-requirement": "Minimum gereksinimi karşılamak için bir alan eklendi",
|
|
39
|
+
"components.repeatable.reorder.error": "Bileşeninizin alanı yeniden sıralanırken bir hata oluştu, lütfen tekrar deneyin",
|
|
40
|
+
"components.reset-entry": "Kaydı sıfırla",
|
|
41
|
+
"components.uid.apply": "uygula",
|
|
42
|
+
"components.uid.available": "kullanılabilir",
|
|
43
|
+
"components.uid.regenerate": "tekrar oluştur",
|
|
44
|
+
"components.uid.suggested": "önerildi",
|
|
45
|
+
"components.uid.unavailable": "kullanım dışı",
|
|
46
|
+
"containers.Edit.Link.Fields": "Alanları düzenle",
|
|
47
|
+
"containers.Edit.Link.Layout": "Düzeni yapılandır",
|
|
48
|
+
"containers.Edit.Link.Model": "Koleksiyon türünü düzenle",
|
|
49
|
+
"containers.Edit.addAnItem": "Bir öğe ekle...",
|
|
50
|
+
"containers.Edit.clickToJump": "Kayda atlamak için tıklayın",
|
|
51
|
+
"containers.Edit.delete": "Sil",
|
|
52
|
+
"containers.Edit.delete-entry": "Bu kaydı sil",
|
|
53
|
+
"containers.Edit.editing": "Düzenleniyor...",
|
|
54
|
+
"containers.Edit.information": "Bilgi",
|
|
55
|
+
"containers.Edit.information.by": "Sunan",
|
|
56
|
+
"containers.Edit.information.draftVersion": "taslak sürümü",
|
|
57
|
+
"containers.Edit.information.editing": "Düzenleme",
|
|
58
|
+
"containers.Edit.information.lastUpdate": "Son güncelleme",
|
|
59
|
+
"containers.Edit.information.publishedVersion": "yayınlanan sürüm",
|
|
60
|
+
"containers.Edit.pluginHeader.title.new": "Bir kayıt oluştur",
|
|
61
|
+
"containers.Edit.reset": "Sıfırla",
|
|
62
|
+
"containers.Edit.returnList": "Listeye dön",
|
|
63
|
+
"containers.Edit.seeDetails": "Ayrıntılar",
|
|
64
|
+
"containers.Edit.submit": "Kaydet",
|
|
65
|
+
"containers.EditSettingsView.modal-form.edit-field": "Alanı düzenle",
|
|
66
|
+
"containers.EditView.add.new": "YENİ BİR KAYIT EKLE",
|
|
67
|
+
"containers.EditView.components.missing.plural": "{count} eksik bileşen mevcut",
|
|
68
|
+
"containers.EditView.components.missing.singular": "{count} eksik bileşen mevcut",
|
|
69
|
+
"containers.EditView.notification.errors": "Form bazı hatalar içeriyor",
|
|
70
|
+
"containers.Home.introduction": "Kayıtlarınızı düzenlemek için soldaki menüdeki ilgili bağlantıya gidin. Bu eklentinin ayarları düzenlemek için uygun bir yol bulunmamaktadır ve halen aktif geliştirme aşamasındadır.",
|
|
71
|
+
"containers.Home.pluginHeaderDescription": "Güçlü ve güzel bir arayüz aracılığıyla kayıtlarınızı yönetin.",
|
|
72
|
+
"containers.Home.pluginHeaderTitle": "İçerik Yöneticisi",
|
|
73
|
+
"containers.List.addAnEntry": "Yeni {entity} ekle",
|
|
74
|
+
"containers.List.draft": "Taslak",
|
|
75
|
+
"containers.List.errorFetchRecords": "Hata",
|
|
76
|
+
"containers.List.pluginHeaderDescription": "{label} kayıt bulundu",
|
|
77
|
+
"containers.List.pluginHeaderDescription.singular": "{label} kayıt bulundu",
|
|
78
|
+
"containers.List.published": "Yayınlandı",
|
|
79
|
+
"containers.ListPage.displayedFields": "Görüntülenen Alanlar",
|
|
80
|
+
"containers.ListPage.items.plural": "öğeler",
|
|
81
|
+
"containers.ListPage.items.singular": "öğe",
|
|
82
|
+
"containers.ListPage.table-headers.published_at": "Durum",
|
|
83
|
+
"containers.ListSettingsView.modal-form.edit-label": "Etiketi düzenle",
|
|
84
|
+
"containers.SettingPage.add.field": "Başka bir alan ekle",
|
|
85
|
+
"containers.SettingPage.add.relational-field": "Başka bir ilişkisel alan ekle",
|
|
86
|
+
"containers.SettingPage.attributes": "Nitelik alanları",
|
|
87
|
+
"containers.SettingPage.attributes.description": "Niteliklerin sırasını tanımlayın",
|
|
88
|
+
"containers.SettingPage.editSettings.description": "Yerleşimi oluşturmak için alanları sürükleyip bırakın",
|
|
89
|
+
"containers.SettingPage.editSettings.entry.title": "Kayıt başlığı",
|
|
90
|
+
"containers.SettingPage.editSettings.entry.title.description": "Kaydınızın görüntülenen alanını ayarlayın",
|
|
91
|
+
"containers.SettingPage.editSettings.relation-field.description": "Hem düzenleme hem de liste görünümlerinde görüntülenen alanı ayarlayın",
|
|
92
|
+
"containers.SettingPage.editSettings.title": "Görünümü düzenle (ayarlar)",
|
|
93
|
+
"containers.SettingPage.layout": "Düzen",
|
|
94
|
+
"containers.SettingPage.listSettings.description": "Bu koleksiyon türü için seçenekleri yapılandırın",
|
|
95
|
+
"containers.SettingPage.listSettings.title": "Liste görünümü (ayarlar)",
|
|
96
|
+
"containers.SettingPage.pluginHeaderDescription": "Bu Koleksiyon Türü için belirli ayarları yapılandırın",
|
|
97
|
+
"containers.SettingPage.relations": "İlişkisel alanlar",
|
|
98
|
+
"containers.SettingPage.settings": "Ayarlar",
|
|
99
|
+
"containers.SettingPage.view": "Görünüm",
|
|
100
|
+
"containers.SettingViewModel.pluginHeader.title": "İçerik Yöneticisi - {name}",
|
|
101
|
+
"containers.SettingsPage.Block.contentType.description": "Belirli ayarları yapılandırın",
|
|
102
|
+
"containers.SettingsPage.Block.contentType.title": "Koleksiyon Türleri",
|
|
103
|
+
"containers.SettingsPage.Block.generalSettings.description": "Koleksiyon Türleriniz için varsayılan seçenekleri yapılandırın",
|
|
104
|
+
"containers.SettingsPage.Block.generalSettings.title": "Genel",
|
|
105
|
+
"containers.SettingsPage.pluginHeaderDescription": "Tüm Koleksiyon türleriniz ve Gruplarınız için ayarları yapılandırın",
|
|
106
|
+
"containers.SettingsView.list.subtitle": "Koleksiyon türlerinizin ve gruplarınızın düzenini ve görüntüsünü yapılandırın",
|
|
107
|
+
"containers.SettingsView.list.title": "Görünüm yapılandırmaları",
|
|
108
|
+
"emptyAttributes.button": "",
|
|
109
|
+
"emptyAttributes.description": "Koleksiyon Türünüze ilk alanınızı ekleyin",
|
|
110
|
+
"emptyAttributes.title": "Henüz bir alan yok",
|
|
111
|
+
"error.attribute.key.taken": "Bu değer zaten mevcut",
|
|
112
|
+
"error.attribute.sameKeyAndName": "Eşit olamaz",
|
|
113
|
+
"error.attribute.taken": "Bu alan ismi zaten mevcut",
|
|
114
|
+
"error.contentTypeName.taken": "Bu isim zaten mevcut",
|
|
115
|
+
"error.model.fetch": "Modellerin yapılandırması getirilirken bir hata oluştu.",
|
|
116
|
+
"error.record.create": "Kayıt oluşturulurken bir hata oluştu.",
|
|
117
|
+
"error.record.delete": "Kayıt silinirken bir hata oluştu.",
|
|
118
|
+
"error.record.fetch": "Kayıt getirilirken bir hata oluştu.",
|
|
119
|
+
"error.record.update": "Kayıt güncellenirken bir hata oluştu.",
|
|
120
|
+
"error.records.count": "Kayıtların sayısı getirilirken bir hata oluştu.",
|
|
121
|
+
"error.records.fetch": "Kayıtlar getirilirken bir hata oluştu.",
|
|
122
|
+
"error.schema.generation": "Şema oluşturulurken bir hata oluştu.",
|
|
123
|
+
"error.validation.json": "Bu JSON biçimi geçersiz",
|
|
124
|
+
"error.validation.max": "Değer çok yüksek.",
|
|
125
|
+
"error.validation.maxLength": "Değer çok uzun.",
|
|
126
|
+
"error.validation.min": "Değer çok az.",
|
|
127
|
+
"error.validation.minLength": "Değer çok kısa.",
|
|
128
|
+
"error.validation.minSupMax": "Üstü olamaz",
|
|
129
|
+
"error.validation.regex": "Değer regex ile eşleşmiyor.",
|
|
130
|
+
"error.validation.required": "Bu alan zorunludur.",
|
|
131
|
+
"form.Input.bulkActions": "Toplu işlemleri etkinleştir",
|
|
132
|
+
"form.Input.defaultSort": "Varsayılan sıralama özelliği",
|
|
133
|
+
"form.Input.description": "Açıklama",
|
|
134
|
+
"form.Input.description.placeholder": "Profildeki görünen ad",
|
|
135
|
+
"form.Input.editable": "Düzenlenebilir alan",
|
|
136
|
+
"form.Input.filters": "Filtreleri etkinleştir",
|
|
137
|
+
"form.Input.label": "Etiket",
|
|
138
|
+
"form.Input.label.inputDescription": "Bu değer, tablonun başında görüntülenen etiketi geçersiz kılar",
|
|
139
|
+
"form.Input.pageEntries": "Sayfa başına kayıt",
|
|
140
|
+
"form.Input.pageEntries.inputDescription": "Not: Koleksiyon Türü ayarları sayfasında bu değeri geçersiz kılabilirsiniz.",
|
|
141
|
+
"form.Input.placeholder": "Placeholder",
|
|
142
|
+
"form.Input.placeholder.placeholder": "Benim harika değerim",
|
|
143
|
+
"form.Input.search": "Aramayı etkinleştir",
|
|
144
|
+
"form.Input.search.field": "Bu alanda aramayı etkinleştir",
|
|
145
|
+
"form.Input.sort.field": "Bu alana göre sıralamayı etkinleştir",
|
|
146
|
+
"form.Input.wysiwyg": "WYSIWYG olarak görüntüle",
|
|
147
|
+
"global.displayedFields": "Görüntülenen Alanlar",
|
|
148
|
+
"groups": "Gruplar",
|
|
149
|
+
"groups.numbered": "Gruplar ({number})",
|
|
150
|
+
"models": "Koleksiyon Türleri",
|
|
151
|
+
"models.numbered": "Koleksiyon Türleri ({number})",
|
|
152
|
+
"notification.error.displayedFields": "En az bir görüntülenen alana ihtiyacınız var",
|
|
153
|
+
"notification.error.relationship.fetch": "İlişki getirilirken bir hata oluştu.",
|
|
154
|
+
"notification.info.SettingPage.disableSort": "Sıralamaya izin verilen bir özelliğin olması gerekir",
|
|
155
|
+
"notification.info.minimumFields": "Görüntülenen bir alanın olması gerekir",
|
|
156
|
+
"notification.upload.error": "Dosyalarınız yüklenirken bir hata oluştu",
|
|
157
|
+
"pageNotFound": "Sayfa bulunamadı",
|
|
158
|
+
"permissions.not-allowed.create": "Belge oluşturmaya izniniz yok",
|
|
159
|
+
"permissions.not-allowed.update": "Bu belgeyi görüntülemeye izniniz yok",
|
|
160
|
+
"plugin.description.long": "Veritabanındaki verileri görmek, düzenlemek ve silmek için hızlı bir yol.",
|
|
161
|
+
"plugin.description.short": "Veritabanındaki verileri görmek, düzenlemek ve silmek için hızlı bir yol.",
|
|
162
|
+
"popUpWarning.bodyMessage.contentType.delete": "Bu kaydı silmek istediğinizden emin misiniz?",
|
|
163
|
+
"popUpWarning.bodyMessage.contentType.delete.all": "Bu kayıtları silmek istediğinizden emin misiniz?",
|
|
164
|
+
"popUpWarning.warning.cancelAllSettings": "Değişikliklerinizi iptal etmek istediğinizden emin misiniz?",
|
|
165
|
+
"popUpWarning.warning.publish-question": "Hala yayınlamak istiyor musunuz?",
|
|
166
|
+
"popUpWarning.warning.unpublish": "Bu içeriğin yayından kaldırılması,<br></br>içeriği otomatik olarak taslak olarak değiştirecektir.",
|
|
167
|
+
"popUpWarning.warning.unpublish-question": "Yayından kaldırmak istediğinizden emin misiniz?",
|
|
168
|
+
"popUpWarning.warning.updateAllSettings": "Bu, tüm ayarlarınızı değiştirecektir",
|
|
169
|
+
"popUpwarning.warning.has-draft-relations.button-confirm": "Evet, yayınla",
|
|
170
|
+
"popUpwarning.warning.has-draft-relations.message.plural": "<b>İçerik ilişkilerinizden {count} tanesi</b> henüz yayınlanmadı.<br></br>Projenizde kopuk bağlantılara ve hatalara neden olabilir.",
|
|
171
|
+
"popUpwarning.warning.has-draft-relations.message.singular": "<b>İçerik ilişkilerinizden {count} tanesi</b> henüz yayınlanmadı.<br></br>Projenizde kopuk bağlantılara ve hatalara neden olabilir.",
|
|
172
|
+
"popUpwarning.warning.has-draft-relations.second-message": "Projenizde kopuk bağlantılara ve hatalara neden olabilir.",
|
|
173
|
+
"success.record.delete": "Silindi",
|
|
174
|
+
"success.record.publish": "Yayınlandı",
|
|
175
|
+
"success.record.save": "Kaydedildi",
|
|
176
|
+
"success.record.unpublish": "Yayından Kaldırıldı"
|
|
177
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
{
|
|
2
|
+
"EditRelations.title": "Зв'язок",
|
|
3
|
+
"api.id": "API ID",
|
|
4
|
+
"components.AddFilterCTA.add": "Фільтри",
|
|
5
|
+
"components.AddFilterCTA.hide": "Фільтри",
|
|
6
|
+
"components.DraggableAttr.edit": "Натисніть щоб змінити",
|
|
7
|
+
"components.DynamicZone.add-compo": "Додати до {componentName}",
|
|
8
|
+
"components.DynamicZone.missing.plural": "Бракує {count} компоненту",
|
|
9
|
+
"components.DynamicZone.missing.singular": "Бракує {count} компонентів",
|
|
10
|
+
"components.DynamicZone.pick-compo": "Виберіть один компонент",
|
|
11
|
+
"components.EmptyAttributesBlock.button": "Перейти до налаштувань",
|
|
12
|
+
"components.EmptyAttributesBlock.description": "Ви можете змінити свої налаштування",
|
|
13
|
+
"components.FieldItem.linkToComponentLayout": "Встановити макет компоненту",
|
|
14
|
+
"components.FilterOptions.button.apply": "Застосувати",
|
|
15
|
+
"components.FiltersPickWrapper.PluginHeader.actions.apply": "Застосувати",
|
|
16
|
+
"components.FiltersPickWrapper.PluginHeader.actions.clearAll": "Очистити все",
|
|
17
|
+
"components.FiltersPickWrapper.PluginHeader.description": "Вкажіть умови фільтрації записів",
|
|
18
|
+
"components.FiltersPickWrapper.PluginHeader.title.filter": "Фільтри",
|
|
19
|
+
"components.FiltersPickWrapper.hide": "Сховати",
|
|
20
|
+
"components.LimitSelect.itemsPerPage": "Єлементів на сторінку",
|
|
21
|
+
"components.Search.placeholder": "Пошук записів...",
|
|
22
|
+
"components.SettingsViewWrapper.pluginHeader.description.edit-settings": "Налаштуйте, як буде віглядати екран редагування.",
|
|
23
|
+
"components.SettingsViewWrapper.pluginHeader.description.list-settings": "Визначте параметри вигяду у списку.",
|
|
24
|
+
"components.SettingsViewWrapper.pluginHeader.title": "Налаштуйте вигляд - {name}",
|
|
25
|
+
"components.TableDelete.delete": "Видалити все",
|
|
26
|
+
"components.TableDelete.deleteSelected": "Відалити вибране",
|
|
27
|
+
"components.TableDelete.entries.plural": "{number} записів вибрано",
|
|
28
|
+
"components.TableDelete.entries.singular": "{number} запис вибрано",
|
|
29
|
+
"components.TableEmpty.withFilters": "Немає {contentType} з вібраними фільтрами...",
|
|
30
|
+
"components.TableEmpty.withSearch": "Немає {contentType}, які відповідають пошуку \"{search}\"...",
|
|
31
|
+
"components.TableEmpty.withoutFilter": "Немає {contentType}...",
|
|
32
|
+
"components.empty-repeatable": "Немає записів. Натисніть кнопку нижче щоб додати нову.",
|
|
33
|
+
"components.notification.info.maximum-requirement": "Ви досягли максимальної кількостей полей",
|
|
34
|
+
"components.notification.info.minimum-requirement": "Поле було добавлене, щоб відповідати мінімальним вимогам",
|
|
35
|
+
"components.reset-entry": "Скинути запис",
|
|
36
|
+
"components.uid.apply": "Вибрати",
|
|
37
|
+
"components.uid.available": "Доступний",
|
|
38
|
+
"components.uid.regenerate": "Згенерувати",
|
|
39
|
+
"components.uid.suggested": "Рекомендоване",
|
|
40
|
+
"components.uid.unavailable": "Недоступний",
|
|
41
|
+
"containers.Edit.Link.Fields": "Змінити поля",
|
|
42
|
+
"containers.Edit.Link.Layout": "Налаштувати компонування",
|
|
43
|
+
"containers.Edit.Link.Model": "Змінити Collection Type",
|
|
44
|
+
"containers.Edit.addAnItem": "Додати елемент...",
|
|
45
|
+
"containers.Edit.clickToJump": "Натисніть щоб перейти до запису",
|
|
46
|
+
"containers.Edit.delete": "Видалити",
|
|
47
|
+
"containers.Edit.editing": "Редагування...",
|
|
48
|
+
"containers.Edit.pluginHeader.title.new": "Створити запис",
|
|
49
|
+
"containers.Edit.reset": "Скинути",
|
|
50
|
+
"containers.Edit.returnList": "Повернутися до списку",
|
|
51
|
+
"containers.Edit.seeDetails": "Докладніше",
|
|
52
|
+
"containers.Edit.submit": "Зберегти",
|
|
53
|
+
"containers.EditSettingsView.modal-form.edit-field": "Налаштуйте поле",
|
|
54
|
+
"containers.EditView.add.new": "Додати новий запис",
|
|
55
|
+
"containers.EditView.components.missing.plural": "Бракує {count} компоненту",
|
|
56
|
+
"containers.EditView.components.missing.singular": "Бракує {count} компонентів",
|
|
57
|
+
"containers.EditView.notification.errors": "Форма містить деякі помилки",
|
|
58
|
+
"containers.Home.introduction": "Щоб редагувати ваші записи, перейдіть за посиланням в лівому меню. Цей плаґін не має належного способу редагування налаштувань і все ще активно розробляється.",
|
|
59
|
+
"containers.Home.pluginHeaderDescription": "Керуйте своїми записами за допомогою потужного та красивого інтерфейсу.",
|
|
60
|
+
"containers.Home.pluginHeaderTitle": "Контент-менеджер",
|
|
61
|
+
"containers.List.addAnEntry": "Додати {entity}",
|
|
62
|
+
"containers.List.errorFetchRecords": "Помилка",
|
|
63
|
+
"containers.List.pluginHeaderDescription": "Знайдено {label} записів",
|
|
64
|
+
"containers.List.pluginHeaderDescription.singular": "Знейдено {label} запис",
|
|
65
|
+
"containers.ListPage.displayedFields": "Показувати поля",
|
|
66
|
+
"containers.ListSettingsView.modal-form.edit-label": "Налаштуйте підпис",
|
|
67
|
+
"containers.SettingPage.add.field": "Додати ще одне поле",
|
|
68
|
+
"containers.SettingPage.add.relational-field": "Додати ще одне поле зв'язку",
|
|
69
|
+
"containers.SettingPage.attributes": "Поля атрибутів",
|
|
70
|
+
"containers.SettingPage.attributes.description": "Визначте порядок атрибутів",
|
|
71
|
+
"containers.SettingPage.editSettings.description": "Перетягніть поля щоб налаштувати вігляд.",
|
|
72
|
+
"containers.SettingPage.editSettings.entry.title": "Заголовок запису",
|
|
73
|
+
"containers.SettingPage.editSettings.entry.title.description": "Встановіть поле, яке буде відображати запис.",
|
|
74
|
+
"containers.SettingPage.editSettings.title": "Змінити вигляд (налаштування)",
|
|
75
|
+
"containers.SettingPage.layout": "Компонування",
|
|
76
|
+
"containers.SettingPage.listSettings.description": "Налаштуйте параметри для цього Collection Type",
|
|
77
|
+
"containers.SettingPage.listSettings.title": "Список (налаштування)",
|
|
78
|
+
"containers.SettingPage.pluginHeaderDescription": "Налаштуйте конкретні параметри для цього Collection Type",
|
|
79
|
+
"containers.SettingPage.relations": "Поля зв'язків",
|
|
80
|
+
"containers.SettingPage.settings": "Налаштування",
|
|
81
|
+
"containers.SettingPage.view": "Вигляд",
|
|
82
|
+
"containers.SettingViewModel.pluginHeader.title": "Контент-менеджер - {name}",
|
|
83
|
+
"containers.SettingsPage.Block.contentType.description": "Налаштуйте конкретні параметри",
|
|
84
|
+
"containers.SettingsPage.Block.contentType.title": "Collection Types",
|
|
85
|
+
"containers.SettingsPage.Block.generalSettings.description": "Налаштуйте параметри за замовчуванням для свого Collection Types",
|
|
86
|
+
"containers.SettingsPage.Block.generalSettings.title": "Загальне",
|
|
87
|
+
"containers.SettingsPage.pluginHeaderDescription": "Налаштуйте параметри для всіх ваших Collection Types та груп",
|
|
88
|
+
"containers.SettingsView.list.subtitle": "Налаштуйте компонування та відображення ваших Collection Types та груп",
|
|
89
|
+
"containers.SettingsView.list.title": "Налаштування відображення",
|
|
90
|
+
"emptyAttributes.button": "Перейдіть до конструктора Collection Type",
|
|
91
|
+
"emptyAttributes.description": "Додайте перше поле в ваш Collection Type",
|
|
92
|
+
"emptyAttributes.title": "Поки що немає полей",
|
|
93
|
+
"error.attribute.key.taken": "Значення вже існує",
|
|
94
|
+
"error.attribute.sameKeyAndName": "Не може співпадати",
|
|
95
|
+
"error.attribute.taken": "Це поле вже існує",
|
|
96
|
+
"error.contentTypeName.taken": "Це ім'я вже існує",
|
|
97
|
+
"error.model.fetch": "Під час завантаження конфігурації моделей сталася помилка.",
|
|
98
|
+
"error.record.create": "Під час створення запису сталася помилка.",
|
|
99
|
+
"error.record.delete": "Під час видалення запису сталася помилка.",
|
|
100
|
+
"error.record.fetch": "Під час завантаження запису сталася помилка.",
|
|
101
|
+
"error.record.update": "Під час оновлення запису сталася помилка.",
|
|
102
|
+
"error.records.count": "Під час завантаження кількості записів сталася помилка.",
|
|
103
|
+
"error.records.fetch": "Під час завантаження записів сталася помилка.",
|
|
104
|
+
"error.schema.generation": "Під час створення схеми сталася помилка.",
|
|
105
|
+
"error.validation.json": "Це не відпоідає формату JSON",
|
|
106
|
+
"error.validation.max": "Значення занадто велике.",
|
|
107
|
+
"error.validation.maxLength": "Значення занадто довге.",
|
|
108
|
+
"error.validation.min": "Значення занадто мале.",
|
|
109
|
+
"error.validation.minLength": "Значення занадто коротке.",
|
|
110
|
+
"error.validation.minSupMax": "Не може бути більше",
|
|
111
|
+
"error.validation.regex": "Значення не відповідає регулярному віразу.",
|
|
112
|
+
"error.validation.required": "Це обов'язкове поле.",
|
|
113
|
+
"form.Input.bulkActions": "Дозволити масові дії",
|
|
114
|
+
"form.Input.defaultSort": "Сортування за замовчуванням",
|
|
115
|
+
"form.Input.description": "Опис",
|
|
116
|
+
"form.Input.description.placeholder": "Ім'я, для відображення в профілі",
|
|
117
|
+
"form.Input.editable": "Редагуєме поле",
|
|
118
|
+
"form.Input.filters": "Увімкнути фільтри",
|
|
119
|
+
"form.Input.label": "Підпис",
|
|
120
|
+
"form.Input.label.inputDescription": "Це значення змінить підпис, який відображується у заголовку таблиці",
|
|
121
|
+
"form.Input.pageEntries": "записів на сторінці",
|
|
122
|
+
"form.Input.pageEntries.inputDescription": "Зауважте, що ви можете змінити це значення на сторінці налаштувань Collection Type.",
|
|
123
|
+
"form.Input.placeholder": "Плейсхолдер",
|
|
124
|
+
"form.Input.placeholder.placeholder": "Моє значення",
|
|
125
|
+
"form.Input.search": "Увімкнути пошук",
|
|
126
|
+
"form.Input.search.field": "Дозвольте шукати за цим полем",
|
|
127
|
+
"form.Input.sort.field": "Дозвольте сортувати за цим полем",
|
|
128
|
+
"form.Input.wysiwyg": "Відображувати як WYSIWYG",
|
|
129
|
+
"global.displayedFields": "Відображені поля",
|
|
130
|
+
"groups": "Групи",
|
|
131
|
+
"groups.numbered": "Групи ({number})",
|
|
132
|
+
"models": "Collection Types",
|
|
133
|
+
"models.numbered": "Collection Types ({number})",
|
|
134
|
+
"notification.error.displayedFields": "Порібне хоча б одне поле для відображення.",
|
|
135
|
+
"notification.error.relationship.fetch": "Під час завантаження зв'язків сталася помилка.",
|
|
136
|
+
"notification.info.SettingPage.disableSort": "Потрібне хоча б один атрібут дозволений для сортування.",
|
|
137
|
+
"notification.info.minimumFields": "Необхідно відобразити хоча б одне поле.",
|
|
138
|
+
"notification.upload.error": "Під час завантаження файлів сталася помилка.",
|
|
139
|
+
"pageNotFound": "Сотрінка не знайдена",
|
|
140
|
+
"plugin.description.long": "Швидкий спосіб перегляду, редагування та видалення даних у вашій базі даних.",
|
|
141
|
+
"plugin.description.short": "Швидкий спосіб перегляду, редагування та видалення даних у вашій базі даних.",
|
|
142
|
+
"popUpWarning.bodyMessage.contentType.delete": "Ви впевнені що хочете видалити цей запис?",
|
|
143
|
+
"popUpWarning.bodyMessage.contentType.delete.all": "Ви впевнені, що хочете видалити ці записи?",
|
|
144
|
+
"popUpWarning.warning.cancelAllSettings": "Ви впевнені, що хочете скасувати свої зміни?",
|
|
145
|
+
"popUpWarning.warning.updateAllSettings": "Це змінить всі ваші налаштування",
|
|
146
|
+
"success.record.delete": "Видалено",
|
|
147
|
+
"success.record.save": "Збережено"
|
|
148
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"EditRelations.title": "Dữ Liệu Quan Hệ",
|
|
3
|
+
"components.AddFilterCTA.add": "Lọc",
|
|
4
|
+
"components.AddFilterCTA.hide": "Lọc",
|
|
5
|
+
"components.DraggableAttr.edit": "Nhấn để chỉnh sửa",
|
|
6
|
+
"components.EmptyAttributesBlock.button": "Đến trang cài đặt",
|
|
7
|
+
"components.EmptyAttributesBlock.description": "Bạn có thể thay đổi cài đặt của bạn",
|
|
8
|
+
"components.FilterOptions.button.apply": "Áp dụng",
|
|
9
|
+
"components.FiltersPickWrapper.PluginHeader.actions.apply": "Áp dụng",
|
|
10
|
+
"components.FiltersPickWrapper.PluginHeader.actions.clearAll": "Xóa tất cả",
|
|
11
|
+
"components.FiltersPickWrapper.PluginHeader.description": "Cài đặt các điều kiện để áp dụng cho việc lọc các bản ghi",
|
|
12
|
+
"components.FiltersPickWrapper.PluginHeader.title.filter": "Các bộ lọc",
|
|
13
|
+
"components.FiltersPickWrapper.hide": "Ẩn đi",
|
|
14
|
+
"components.LimitSelect.itemsPerPage": "Số lượng bản ghi trong trang",
|
|
15
|
+
"components.Search.placeholder": "Tìm một bản ghi...",
|
|
16
|
+
"components.TableDelete.delete": "Xóa tất cả",
|
|
17
|
+
"components.TableDelete.deleteSelected": "Xóa đã chọn",
|
|
18
|
+
"components.TableDelete.entries.plural": "{number} bản ghi đã chọn",
|
|
19
|
+
"components.TableDelete.entries.singular": "{number} bản ghi đã chọn",
|
|
20
|
+
"components.TableEmpty.withFilters": "Không có {contentType} với bộ lọc được dùng",
|
|
21
|
+
"components.TableEmpty.withSearch": "Không có {contentType} tương ứng với tìm kiếm ({search})...",
|
|
22
|
+
"components.TableEmpty.withoutFilter": "Không có {contentType}...",
|
|
23
|
+
"containers.Edit.Link.Fields": "Chỉnh sửa các trường",
|
|
24
|
+
"containers.Edit.Link.Layout": "Cấu hình bố cục",
|
|
25
|
+
"containers.Edit.addAnItem": "Thêm một bản ghi...",
|
|
26
|
+
"containers.Edit.clickToJump": "Nhấn để nhảy vào bản ghi",
|
|
27
|
+
"containers.Edit.delete": "Xóa",
|
|
28
|
+
"containers.Edit.editing": "Đăng sửa...",
|
|
29
|
+
"containers.Edit.pluginHeader.title.new": "Tạo một Bản ghi",
|
|
30
|
+
"containers.Edit.reset": "Làm lại",
|
|
31
|
+
"containers.Edit.returnList": "Trở về danh sách",
|
|
32
|
+
"containers.Edit.seeDetails": "Chi tiết",
|
|
33
|
+
"containers.Edit.submit": "Lưu",
|
|
34
|
+
"containers.EditView.notification.errors": "Bảng nhập liệu có vài lỗi",
|
|
35
|
+
"containers.Home.introduction": "Để chỉnh sửa các bản ghi của bạn, đi đến liên kết ở menu bên trái. Plugin này chưa có cách thích hợp để chỉnh sửa các cài đặt và nó vẫn đang được phát triển.",
|
|
36
|
+
"containers.Home.pluginHeaderDescription": "Quản lý các bản ghi thông qua một giao diện mạnh và đẹp.",
|
|
37
|
+
"containers.Home.pluginHeaderTitle": "Quản Lý Nội Dung",
|
|
38
|
+
"containers.List.addAnEntry": "Thêm mới {entity}",
|
|
39
|
+
"containers.List.errorFetchRecords": "Lỗi",
|
|
40
|
+
"containers.List.pluginHeaderDescription": "{label} bản ghi đã tìm thấy",
|
|
41
|
+
"containers.List.pluginHeaderDescription.singular": "{label} bản ghi đã tìm thấy",
|
|
42
|
+
"containers.ListPage.displayedFields": "Các trường đã được trình bày",
|
|
43
|
+
"containers.SettingPage.attributes": "Các trường thuộc tính",
|
|
44
|
+
"containers.SettingPage.attributes.description": "Định nghĩa thứ tự các thuộc tính",
|
|
45
|
+
"containers.SettingPage.editSettings.description": "Kéo & thả các trường để xây dựng bố cục",
|
|
46
|
+
"containers.SettingPage.editSettings.entry.title": "Tên bản ghi",
|
|
47
|
+
"containers.SettingPage.editSettings.entry.title.description": "Cài đặt trường được trình bày trong bản ghi của bạn",
|
|
48
|
+
"containers.SettingPage.editSettings.title": "Chỉnh sửa hiển thị (các cài đặt)",
|
|
49
|
+
"containers.SettingPage.layout": "Bố cục",
|
|
50
|
+
"containers.SettingPage.listSettings.title": "Hiển thị danh sách (các cài đặt)",
|
|
51
|
+
"containers.SettingPage.relations": "Các trường Quan Hệ",
|
|
52
|
+
"containers.SettingPage.settings": "Các cài đặt",
|
|
53
|
+
"containers.SettingViewModel.pluginHeader.title": "Quản Lý Nội Dung - {name}",
|
|
54
|
+
"containers.SettingsPage.Block.contentType.description": "Cấu hình các cài đặt riêng",
|
|
55
|
+
"containers.SettingsPage.Block.generalSettings.title": "Chung",
|
|
56
|
+
"containers.SettingsView.list.title": "Các cấu hình về Trình bày",
|
|
57
|
+
"emptyAttributes.title": "Chưa có trường nào hết",
|
|
58
|
+
"error.attribute.key.taken": "Giá trị này đã tồn tại",
|
|
59
|
+
"error.attribute.sameKeyAndName": "Không thể bằng nhau",
|
|
60
|
+
"error.attribute.taken": "Tên trường này đã tồn tại",
|
|
61
|
+
"error.contentTypeName.taken": "Tên này đã tồn tại",
|
|
62
|
+
"error.model.fetch": "Một lỗi đã xảy ra trong khi lấy về cấu hình nội dung.",
|
|
63
|
+
"error.record.create": "Một lỗi đã xảy ra trong khi tạo bản ghi.",
|
|
64
|
+
"error.record.delete": "Một lỗi đã xảy ra trong khi xoá bản ghi.",
|
|
65
|
+
"error.record.fetch": "Một lỗi đã xảy ra trong khi lấy về bản ghi.",
|
|
66
|
+
"error.record.update": "Một lỗi đã xảy ra trong khi cập nhật bản ghi.",
|
|
67
|
+
"error.records.count": "Một lỗi đã xảy ra trong khi lấy về số lượng bản ghi.",
|
|
68
|
+
"error.records.fetch": "Một lỗi đã xảy ra trong khi lấy về các bản ghi.",
|
|
69
|
+
"error.schema.generation": "Một lỗi đã xảy ra trong khi quá trình tạo ra lược đồ.",
|
|
70
|
+
"error.validation.json": "Đây không phải là JSON",
|
|
71
|
+
"error.validation.max": "Giá trị quá cao.",
|
|
72
|
+
"error.validation.maxLength": "Giá trị quá dài.",
|
|
73
|
+
"error.validation.min": "Giá trị quá thấp.",
|
|
74
|
+
"error.validation.minLength": "Giá trị quá ngắn.",
|
|
75
|
+
"error.validation.minSupMax": "Không thể là trên mũ",
|
|
76
|
+
"error.validation.regex": "Giá trị không khới với regex.",
|
|
77
|
+
"error.validation.required": "Giá trị này bắt buộc.",
|
|
78
|
+
"form.Input.bulkActions": "Kích hoạt hoạt động gộp",
|
|
79
|
+
"form.Input.defaultSort": "Thuộc tính sắp xếp mặc định",
|
|
80
|
+
"form.Input.description": "Mô tả",
|
|
81
|
+
"form.Input.description.placeholder": "Tên hiển thị trong hồ sơ",
|
|
82
|
+
"form.Input.editable": "Trường chỉnh sửa được",
|
|
83
|
+
"form.Input.filters": "Kích hoạt các bộ lọc",
|
|
84
|
+
"form.Input.label": "Nhãn",
|
|
85
|
+
"form.Input.label.inputDescription": "Giá trị này ghi đè lên nhãn được trình bày trong phần đầu của bảng",
|
|
86
|
+
"form.Input.pageEntries": "Bản ghi trong trang",
|
|
87
|
+
"form.Input.placeholder": "Chỗ chờ giá trị",
|
|
88
|
+
"form.Input.placeholder.placeholder": "Giá trị tuyệt vời của tôi",
|
|
89
|
+
"form.Input.search": "Kích hoạt tìm kiếm",
|
|
90
|
+
"form.Input.search.field": "Kích hoạt tìm kiếm cho trường này",
|
|
91
|
+
"form.Input.sort.field": "Kích hoạt sắp xếp trên trường này",
|
|
92
|
+
"form.Input.wysiwyg": "Trình bày như là WYSIWYG",
|
|
93
|
+
"global.displayedFields": "Các Trường Đã Được Trình Bày",
|
|
94
|
+
"groups": "Nhóm",
|
|
95
|
+
"groups.numbered": "Nhóm ({number})",
|
|
96
|
+
"notification.error.displayedFields": "Bạn cần trình bày ít nhất một trường",
|
|
97
|
+
"notification.error.relationship.fetch": "Một lỗi đã xảy ra trong khi lấy về mối quan hệ.",
|
|
98
|
+
"notification.info.SettingPage.disableSort": "Bạn cần có một thuộc tính được phép sắp xếp",
|
|
99
|
+
"notification.info.minimumFields": "Bạn cần hiển thị ít nhất một trường",
|
|
100
|
+
"notification.upload.error": "Một lỗi đã xảy ra trong khi tải lên các tập tin của bạn",
|
|
101
|
+
"pageNotFound": "Không Tìm Thấy Trang",
|
|
102
|
+
"plugin.description.long": "Cách nhanh để xem, sửa và xoá dữ liệu trong cơ sở dữ liệu của bạn.",
|
|
103
|
+
"plugin.description.short": "Cách nhanh để xem, sửa và xoá dữ liệu trong cơ sở dữ liệu của bạn.",
|
|
104
|
+
"popUpWarning.bodyMessage.contentType.delete": "Bạn có chắc là muốn xoá bản ghi này không?",
|
|
105
|
+
"popUpWarning.bodyMessage.contentType.delete.all": "Bạn có chắc là muốn xoá các bản ghi này không?",
|
|
106
|
+
"popUpWarning.warning.cancelAllSettings": "Bạn có chắc là muốn hủy bỏ các thay đổi của bạn?",
|
|
107
|
+
"popUpWarning.warning.updateAllSettings": "Nó sẽ thay đổi tất cả cài đặt của bạn",
|
|
108
|
+
"success.record.delete": "Đã xoá",
|
|
109
|
+
"success.record.save": "Đã lưu"
|
|
110
|
+
}
|