@akemona-org/strapi-plugin-content-type-builder 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 +19 -0
- package/admin/src/InjectedComponents/ContentManager/EditSettingViewButton.js +76 -0
- package/admin/src/InjectedComponents/ContentManager/EditViewLink.js +44 -0
- package/admin/src/assets/images/logo.svg +1 -0
- package/admin/src/components/AllowedTypesSelect/MenuList.js +115 -0
- package/admin/src/components/AllowedTypesSelect/Text.js +26 -0
- package/admin/src/components/AllowedTypesSelect/index.js +55 -0
- package/admin/src/components/AttributeOption/Button.js +50 -0
- package/admin/src/components/AttributeOption/Card.js +26 -0
- package/admin/src/components/AttributeOption/index.js +127 -0
- package/admin/src/components/BooleanBox/CT.js +21 -0
- package/admin/src/components/BooleanBox/Enumeration.js +10 -0
- package/admin/src/components/BooleanBox/EnumerationWrapper.js +14 -0
- package/admin/src/components/BooleanBox/Label.js +9 -0
- package/admin/src/components/BooleanBox/ST.js +21 -0
- package/admin/src/components/BooleanBox/Wrapper.js +75 -0
- package/admin/src/components/BooleanBox/icons/CTSelected.js +136 -0
- package/admin/src/components/BooleanBox/icons/CTUnselected.js +136 -0
- package/admin/src/components/BooleanBox/icons/STSelected.js +80 -0
- package/admin/src/components/BooleanBox/icons/STUnselected.js +76 -0
- package/admin/src/components/BooleanBox/index.js +103 -0
- package/admin/src/components/CheckboxWithDescription/Wrapper.js +12 -0
- package/admin/src/components/CheckboxWithDescription/index.js +40 -0
- package/admin/src/components/ComponentCard/Close.js +12 -0
- package/admin/src/components/ComponentCard/Wrapper.js +84 -0
- package/admin/src/components/ComponentCard/index.js +62 -0
- package/admin/src/components/ComponentIconPicker/Cell.js +40 -0
- package/admin/src/components/ComponentIconPicker/CellRenderer.js +36 -0
- package/admin/src/components/ComponentIconPicker/Search.js +12 -0
- package/admin/src/components/ComponentIconPicker/SearchWrapper.js +34 -0
- package/admin/src/components/ComponentIconPicker/Wrapper.js +60 -0
- package/admin/src/components/ComponentIconPicker/index.js +143 -0
- package/admin/src/components/ComponentList/index.js +78 -0
- package/admin/src/components/ComponentSelect/Category.js +20 -0
- package/admin/src/components/ComponentSelect/CategoryName.js +11 -0
- package/admin/src/components/ComponentSelect/MenuList.js +110 -0
- package/admin/src/components/ComponentSelect/MultipleMenuList.js +271 -0
- package/admin/src/components/ComponentSelect/Value.js +83 -0
- package/admin/src/components/ComponentSelect/index.js +83 -0
- package/admin/src/components/ComponentSelect/utils/HasSomeSubArray.js +5 -0
- package/admin/src/components/ComponentSelect/utils/hasSubArray.js +5 -0
- package/admin/src/components/CreatableSelect/index.js +58 -0
- package/admin/src/components/CustomCheckbox/StyledCustomCheckbox.js +25 -0
- package/admin/src/components/CustomCheckbox/index.js +71 -0
- package/admin/src/components/CustomLink/P.js +17 -0
- package/admin/src/components/CustomLink/StyledCustomLink.js +20 -0
- package/admin/src/components/CustomLink/index.js +31 -0
- package/admin/src/components/DynamicZoneList/ComponentButton.js +39 -0
- package/admin/src/components/DynamicZoneList/index.js +124 -0
- package/admin/src/components/HeaderModalNavContainer/index.js +25 -0
- package/admin/src/components/HeaderNavLink/Wrapper.js +21 -0
- package/admin/src/components/HeaderNavLink/index.js +50 -0
- package/admin/src/components/List/List.js +131 -0
- package/admin/src/components/List/index.js +295 -0
- package/admin/src/components/ListButton/index.js +9 -0
- package/admin/src/components/ListHeader/Title.js +19 -0
- package/admin/src/components/ListHeader/Wrapper.js +24 -0
- package/admin/src/components/ListHeader/index.js +37 -0
- package/admin/src/components/ListRow/Wrapper.js +76 -0
- package/admin/src/components/ListRow/index.js +334 -0
- package/admin/src/components/ModalHeader/ComponentIcon.js +21 -0
- package/admin/src/components/ModalHeader/ComponentInfos.js +22 -0
- package/admin/src/components/ModalHeader/ComponentInfosWrapper.js +9 -0
- package/admin/src/components/ModalHeader/DropdownInfos.js +50 -0
- package/admin/src/components/ModalHeader/Icon.js +26 -0
- package/admin/src/components/ModalHeader/IconWrapper.js +11 -0
- package/admin/src/components/ModalHeader/Item.js +19 -0
- package/admin/src/components/ModalHeader/Menu.js +8 -0
- package/admin/src/components/ModalHeader/Toggle.js +14 -0
- package/admin/src/components/ModalHeader/Wrapper.js +12 -0
- package/admin/src/components/ModalHeader/index.js +105 -0
- package/admin/src/components/RelationForm/Wrapper.js +9 -0
- package/admin/src/components/RelationForm/index.js +66 -0
- package/admin/src/components/RelationFormBox/Wrapper.js +34 -0
- package/admin/src/components/RelationFormBox/index.js +85 -0
- package/admin/src/components/RelationFormNaturePicker/Wrapper.js +53 -0
- package/admin/src/components/RelationFormNaturePicker/index.js +112 -0
- package/admin/src/components/RelationTargetPicker/Item.js +62 -0
- package/admin/src/components/RelationTargetPicker/Wrapper.js +89 -0
- package/admin/src/components/RelationTargetPicker/index.js +88 -0
- package/admin/src/components/SelectCheckbox/index.js +8 -0
- package/admin/src/components/SelectMenuSubUl/ToggleUl.js +23 -0
- package/admin/src/components/SelectMenuSubUl/index.js +23 -0
- package/admin/src/components/SelectMenuUl/index.js +66 -0
- package/admin/src/components/Td/index.js +37 -0
- package/admin/src/components/UpperFirst/index.js +14 -0
- package/admin/src/components/WrapperSelect/index.js +89 -0
- package/admin/src/containers/App/Wrapper.js +14 -0
- package/admin/src/containers/App/index.js +39 -0
- package/admin/src/containers/App/utils/icons.json +962 -0
- package/admin/src/containers/DataManagerProvider/constants.js +15 -0
- package/admin/src/containers/DataManagerProvider/index.js +610 -0
- package/admin/src/containers/DataManagerProvider/reducer.js +461 -0
- package/admin/src/containers/DataManagerProvider/selectors.js +25 -0
- package/admin/src/containers/DataManagerProvider/utils/cleanData.js +167 -0
- package/admin/src/containers/DataManagerProvider/utils/createDataObject.js +8 -0
- package/admin/src/containers/DataManagerProvider/utils/createModifiedDataSchema.js +91 -0
- package/admin/src/containers/DataManagerProvider/utils/retrieveComponentsFromSchema.js +55 -0
- package/admin/src/containers/DataManagerProvider/utils/retrieveComponentsThatHaveComponents.js +35 -0
- package/admin/src/containers/DataManagerProvider/utils/retrieveNestedComponents.js +34 -0
- package/admin/src/containers/DataManagerProvider/utils/retrieveSpecificInfoFromComponents.js +12 -0
- package/admin/src/containers/FormModal/CustomButton.js +12 -0
- package/admin/src/containers/FormModal/attributes/advancedForm.js +269 -0
- package/admin/src/containers/FormModal/attributes/attributeOptions.js +99 -0
- package/admin/src/containers/FormModal/attributes/baseForm.js +322 -0
- package/admin/src/containers/FormModal/attributes/commonBaseForm.js +7 -0
- package/admin/src/containers/FormModal/attributes/form.js +9 -0
- package/admin/src/containers/FormModal/attributes/index.js +4 -0
- package/admin/src/containers/FormModal/attributes/nameField.js +19 -0
- package/admin/src/containers/FormModal/attributes/types.js +309 -0
- package/admin/src/containers/FormModal/attributes/uiHelpers.js +11 -0
- package/admin/src/containers/FormModal/attributes/validation/common.js +151 -0
- package/admin/src/containers/FormModal/category/createCategorySchema.js +28 -0
- package/admin/src/containers/FormModal/category/form.js +27 -0
- package/admin/src/containers/FormModal/category/index.js +3 -0
- package/admin/src/containers/FormModal/category/regex.js +3 -0
- package/admin/src/containers/FormModal/component/componentField.js +25 -0
- package/admin/src/containers/FormModal/component/createComponentSchema.js +49 -0
- package/admin/src/containers/FormModal/component/form.js +67 -0
- package/admin/src/containers/FormModal/component/index.js +4 -0
- package/admin/src/containers/FormModal/constants.js +11 -0
- package/admin/src/containers/FormModal/contentType/createContentTypeSchema.js +44 -0
- package/admin/src/containers/FormModal/contentType/form.js +116 -0
- package/admin/src/containers/FormModal/contentType/index.js +2 -0
- package/admin/src/containers/FormModal/dynamicZone/form.js +45 -0
- package/admin/src/containers/FormModal/dynamicZone/index.js +2 -0
- package/admin/src/containers/FormModal/forms/index.js +164 -0
- package/admin/src/containers/FormModal/index.js +1552 -0
- package/admin/src/containers/FormModal/reducer.js +293 -0
- package/admin/src/containers/FormModal/selectors.js +24 -0
- package/admin/src/containers/FormModal/utils/canEditContentType.js +19 -0
- package/admin/src/containers/FormModal/utils/createHeadersArray.js +37 -0
- package/admin/src/containers/FormModal/utils/createHeadersObjectFromArray.js +27 -0
- package/admin/src/containers/FormModal/utils/createUid.js +17 -0
- package/admin/src/containers/FormModal/utils/getAttributesToDisplay.js +35 -0
- package/admin/src/containers/FormModal/utils/getModalTitleSubHeader.js +25 -0
- package/admin/src/containers/FormModal/utils/getNextSearch.js +17 -0
- package/admin/src/containers/FormModal/utils/index.js +6 -0
- package/admin/src/containers/FormModal/utils/relations.js +9 -0
- package/admin/src/containers/FormModal/utils/staticData.js +43 -0
- package/admin/src/containers/Initializer/index.js +26 -0
- package/admin/src/containers/LeftMenu/Wrapper.js +14 -0
- package/admin/src/containers/LeftMenu/index.js +220 -0
- package/admin/src/containers/ListView/Wrapper.js +16 -0
- package/admin/src/containers/ListView/index.js +322 -0
- package/admin/src/containers/NotFoundPage/index.js +20 -0
- package/admin/src/containers/RecursivePath/index.js +22 -0
- package/admin/src/contexts/DataManagerContext.js +5 -0
- package/admin/src/contexts/ListViewContext.js +5 -0
- package/admin/src/hooks/useDataManager.js +6 -0
- package/admin/src/hooks/useListView.js +6 -0
- package/admin/src/icons/Curve.js +26 -0
- package/admin/src/icons/ManyToMany.js +98 -0
- package/admin/src/icons/ManyToOne.js +64 -0
- package/admin/src/icons/ManyWay.js +36 -0
- package/admin/src/icons/OneToMany.js +65 -0
- package/admin/src/icons/OneToOne.js +47 -0
- package/admin/src/icons/OneWay.js +38 -0
- package/admin/src/index.js +83 -0
- package/admin/src/lifecycles.js +13 -0
- package/admin/src/permissions.js +9 -0
- package/admin/src/pluginId.js +5 -0
- package/admin/src/reducers.js +10 -0
- package/admin/src/translations/ar.json +48 -0
- package/admin/src/translations/cs.json +151 -0
- package/admin/src/translations/de.json +187 -0
- package/admin/src/translations/dk.json +181 -0
- package/admin/src/translations/en.json +188 -0
- package/admin/src/translations/es.json +188 -0
- package/admin/src/translations/fr.json +87 -0
- package/admin/src/translations/id.json +187 -0
- package/admin/src/translations/index.js +51 -0
- package/admin/src/translations/it.json +187 -0
- package/admin/src/translations/ja.json +50 -0
- package/admin/src/translations/ko.json +57 -0
- package/admin/src/translations/ms.json +179 -0
- package/admin/src/translations/nl.json +171 -0
- package/admin/src/translations/pl.json +152 -0
- package/admin/src/translations/pt-BR.json +51 -0
- package/admin/src/translations/pt.json +51 -0
- package/admin/src/translations/ru.json +188 -0
- package/admin/src/translations/sk.json +186 -0
- package/admin/src/translations/th.json +181 -0
- package/admin/src/translations/tr.json +51 -0
- package/admin/src/translations/uk.json +180 -0
- package/admin/src/translations/zh-Hans.json +188 -0
- package/admin/src/translations/zh.json +178 -0
- package/admin/src/utils/convertAttrObjToArray.js +7 -0
- package/admin/src/utils/formAPI.js +112 -0
- package/admin/src/utils/getAttributeDisplayedType.js +31 -0
- package/admin/src/utils/getComponents.js +31 -0
- package/admin/src/utils/getTrad.js +5 -0
- package/admin/src/utils/makeSearch.js +15 -0
- package/admin/src/utils/makeUnique.js +3 -0
- package/config/functions/bootstrap.js +14 -0
- package/config/routes.json +144 -0
- package/controllers/Builder.js +7 -0
- package/controllers/ComponentCategories.js +43 -0
- package/controllers/Components.js +152 -0
- package/controllers/Connections.js +9 -0
- package/controllers/ContentTypes.js +143 -0
- package/controllers/validation/common.js +118 -0
- package/controllers/validation/component-category.js +21 -0
- package/controllers/validation/component.js +89 -0
- package/controllers/validation/content-type.js +161 -0
- package/controllers/validation/data-transform.js +32 -0
- package/controllers/validation/model-schema.js +91 -0
- package/controllers/validation/relations.js +56 -0
- package/controllers/validation/types.js +277 -0
- package/package.json +63 -0
- package/services/Builder.js +7 -0
- package/services/ComponentCategories.js +88 -0
- package/services/Components.js +103 -0
- package/services/ContentTypes.js +263 -0
- package/services/api-handler.js +158 -0
- package/services/constants.js +59 -0
- package/services/schema-builder/component-builder.js +137 -0
- package/services/schema-builder/content-type-builder.js +256 -0
- package/services/schema-builder/index.js +196 -0
- package/services/schema-builder/schema-handler.js +297 -0
- package/utils/attributes.js +154 -0
- package/utils/helpers.js +31 -0
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attribute.boolean": "Boolean",
|
|
3
|
+
"attribute.boolean.description": "Yes or no, 1 or 0, true or false",
|
|
4
|
+
"attribute.component": "Component",
|
|
5
|
+
"attribute.component.description": "Group of fields that you can repeat or reuse",
|
|
6
|
+
"attribute.date": "Date",
|
|
7
|
+
"attribute.date.description": "A date picker with hours, minutes and seconds",
|
|
8
|
+
"attribute.datetime": "Datetime",
|
|
9
|
+
"attribute.dynamiczone": "Dynamic zone",
|
|
10
|
+
"attribute.dynamiczone.description": "Dynamically pick component when editing content",
|
|
11
|
+
"attribute.email": "Email",
|
|
12
|
+
"attribute.email.description": "Email field with validations format",
|
|
13
|
+
"attribute.enumeration": "Enumeration",
|
|
14
|
+
"attribute.enumeration.description": "List of values, then pick one",
|
|
15
|
+
"attribute.json": "JSON",
|
|
16
|
+
"attribute.json.description": "Data in JSON format",
|
|
17
|
+
"attribute.media": "Media",
|
|
18
|
+
"attribute.media.description": "Files like images, videos, etc",
|
|
19
|
+
"attribute.null": " ",
|
|
20
|
+
"attribute.number": "Number",
|
|
21
|
+
"attribute.number.description": "Numbers (integer, float, decimal)",
|
|
22
|
+
"attribute.password": "Password",
|
|
23
|
+
"attribute.password.description": "Password field with encryption",
|
|
24
|
+
"attribute.relation": "Relation",
|
|
25
|
+
"attribute.relation.description": "Refers to a Collection Type",
|
|
26
|
+
"attribute.richtext": "Rich text",
|
|
27
|
+
"attribute.richtext.description": "A rich text editor with formatting options",
|
|
28
|
+
"attribute.text": "Text",
|
|
29
|
+
"attribute.text.description": "Small or long text like title or description",
|
|
30
|
+
"attribute.time": "Time",
|
|
31
|
+
"attribute.timestamp": "Timestamp",
|
|
32
|
+
"attribute.uid": "UID",
|
|
33
|
+
"attribute.uid.description": "Unique identifier",
|
|
34
|
+
"button.attributes.add.another": "Add another field",
|
|
35
|
+
"button.component.add": "Add a component",
|
|
36
|
+
"button.component.create": "Create new component",
|
|
37
|
+
"button.model.create": "Create new collection type",
|
|
38
|
+
"button.single-types.create": "Create new single type",
|
|
39
|
+
"component.repeatable": "(repeatable)",
|
|
40
|
+
"components.componentSelect.no-component-available": "You have already added all your components",
|
|
41
|
+
"components.componentSelect.no-component-available.with-search": "There is no component matching your search",
|
|
42
|
+
"components.componentSelect.value-component": "{number} component selected (type to search for a component)",
|
|
43
|
+
"components.componentSelect.value-components": "{number} components selected",
|
|
44
|
+
"configurations": "configurations",
|
|
45
|
+
"contentType.UID.description": "The UID is used to generate the API routes and databases tables/collections",
|
|
46
|
+
"contentType.collectionName.description": "Useful when the name of your Content Type and your table name differ",
|
|
47
|
+
"contentType.collectionName.label": "Collection name",
|
|
48
|
+
"contentType.displayName.label": "Display name",
|
|
49
|
+
"contentType.draftAndPublish.description": "Write a draft version of each entry before publishing it",
|
|
50
|
+
"contentType.draftAndPublish.label": "Draft/publish system",
|
|
51
|
+
"contentType.kind.change.warning": "You just changed the kind of a content type: API will be reset (routes, controllers, and services will be overwritten).",
|
|
52
|
+
"error.attributeName.reserved-name": "This name cannot be used in your content type as it might break other functionalities",
|
|
53
|
+
"error.contentTypeName.reserved-name": "This name cannot be used in your project as it might break other functionalities",
|
|
54
|
+
"error.validation.enum-duplicate": "Duplicate values are not allowed",
|
|
55
|
+
"error.validation.minSupMax": "Can't be superior",
|
|
56
|
+
"error.validation.regex": "Regex pattern is invalid",
|
|
57
|
+
"error.validation.enum-empty-string": "Empty strings are not allowed",
|
|
58
|
+
"error.validation.relation.targetAttribute-taken": "This name exists in the target",
|
|
59
|
+
"form.attribute.component.option.add": "Add a component",
|
|
60
|
+
"form.attribute.component.option.create": "Create a new component",
|
|
61
|
+
"form.attribute.component.option.create.description": "A component is shared across types and components, it will be available and accessible everywhere.",
|
|
62
|
+
"form.attribute.component.option.repeatable": "Repeatable component",
|
|
63
|
+
"form.attribute.component.option.repeatable.description": "Best for multiple instances (array) of ingredients, meta tags, etc..",
|
|
64
|
+
"form.attribute.component.option.reuse-existing": "Use an existing component",
|
|
65
|
+
"form.attribute.component.option.reuse-existing.description": "Reuse a component already created to keep your data consistent across content-types.",
|
|
66
|
+
"form.attribute.component.option.single": "Single component",
|
|
67
|
+
"form.attribute.component.option.single.description": "Best for grouping fields like full address, main information, etc...",
|
|
68
|
+
"form.attribute.item.customColumnName": "Custom column names",
|
|
69
|
+
"form.attribute.item.customColumnName.description": "This is useful to rename database column names in a more comprehensive format for the API's responses",
|
|
70
|
+
"form.attribute.item.date.type.date": "date",
|
|
71
|
+
"form.attribute.item.date.type.datetime": "datetime",
|
|
72
|
+
"form.attribute.item.date.type.time": "time",
|
|
73
|
+
"form.attribute.item.defineRelation.fieldName": "Field name",
|
|
74
|
+
"form.attribute.item.enumeration.graphql": "Name override for GraphQL",
|
|
75
|
+
"form.attribute.item.enumeration.graphql.description": "Allows you to override the default generated name for GraphQL",
|
|
76
|
+
"form.attribute.item.enumeration.placeholder": "Ex:\nmorning\nnoon\nevening",
|
|
77
|
+
"form.attribute.item.enumeration.rules": "Values (one line per value)",
|
|
78
|
+
"form.attribute.item.maximum": "Maximum value",
|
|
79
|
+
"form.attribute.item.maximumLength": "Maximum length",
|
|
80
|
+
"form.attribute.item.minimum": "Minimum value",
|
|
81
|
+
"form.attribute.item.minimumLength": "Minimum length",
|
|
82
|
+
"form.attribute.item.number.type": "Number format",
|
|
83
|
+
"form.attribute.item.number.type.biginteger": "big integer (ex: 123456789)",
|
|
84
|
+
"form.attribute.item.number.type.decimal": "decimal (ex: 2.22)",
|
|
85
|
+
"form.attribute.item.number.type.float": "float (ex: 3.33333333)",
|
|
86
|
+
"form.attribute.item.number.type.integer": "integer (ex: 10)",
|
|
87
|
+
"form.attribute.item.privateField": "Private field",
|
|
88
|
+
"form.attribute.item.privateField.description": "This field will not show up in the API response",
|
|
89
|
+
"form.attribute.item.requiredField": "Required field",
|
|
90
|
+
"form.attribute.item.requiredField.description": "You won't be able to create an entry if this field is empty",
|
|
91
|
+
"form.attribute.item.settings.name": "Settings",
|
|
92
|
+
"form.attribute.item.text.regex": "RegExp pattern",
|
|
93
|
+
"form.attribute.item.text.regex.description": "The text of the regular expression",
|
|
94
|
+
"form.attribute.item.uniqueField": "Unique field",
|
|
95
|
+
"form.attribute.item.uniqueField.description": "You won't be able to create an entry if there is an existing entry with identical content",
|
|
96
|
+
"form.attribute.media.allowed-types": "Select allowed types of media",
|
|
97
|
+
"form.attribute.media.allowed-types.none": "None",
|
|
98
|
+
"form.attribute.media.allowed-types.option-files": "Files",
|
|
99
|
+
"form.attribute.media.allowed-types.option-images": "Images",
|
|
100
|
+
"form.attribute.media.allowed-types.option-videos": "Videos",
|
|
101
|
+
"form.attribute.media.option.multiple": "Multiple media",
|
|
102
|
+
"form.attribute.media.option.multiple.description": "Best for sliders, carousels or multiple files download",
|
|
103
|
+
"form.attribute.media.option.single": "Single media",
|
|
104
|
+
"form.attribute.media.option.single.description": "Best for avatar, profile picture or cover",
|
|
105
|
+
"form.attribute.settings.default": "Default value",
|
|
106
|
+
"form.attribute.text.option.long-text": "Long text",
|
|
107
|
+
"form.attribute.text.option.long-text.description": "Best for descriptions, biography. Exact search is disabled.",
|
|
108
|
+
"form.attribute.text.option.short-text": "Short text",
|
|
109
|
+
"form.attribute.text.option.short-text.description": "Best for titles, names, links (URL). It also enables exact search on the field.",
|
|
110
|
+
"form.button.add-components-to-dynamiczone": "Add components to the zone",
|
|
111
|
+
"form.button.add-field": "Add another field",
|
|
112
|
+
"form.button.add-first-field-to-created-component": "Add first field to the component",
|
|
113
|
+
"form.button.add.field.to.collectionType": "Add another field to this collection type",
|
|
114
|
+
"form.button.add.field.to.component": "Add another field to this component",
|
|
115
|
+
"form.button.add.field.to.contentType": "Add another field to this content type",
|
|
116
|
+
"form.button.add.field.to.singleType": "Add another field to this single type",
|
|
117
|
+
"form.button.cancel": "Cancel",
|
|
118
|
+
"form.button.collection-type.description": "Best for multiple instances like articles, products, comments, etc.",
|
|
119
|
+
"form.button.configure-component": "Configure the component",
|
|
120
|
+
"form.button.configure-view": "Configure the view",
|
|
121
|
+
"form.button.continue": "Continue",
|
|
122
|
+
"form.button.delete": "Delete",
|
|
123
|
+
"form.button.finish": "Finish",
|
|
124
|
+
"form.button.save": "Save",
|
|
125
|
+
"form.button.select-component": "Select a component",
|
|
126
|
+
"form.button.single-type.description": "Best for single instance like about us, homepage, etc.",
|
|
127
|
+
"form.contentType.divider.draft-publish": "DRAFT/PUBLISH",
|
|
128
|
+
"from": "from",
|
|
129
|
+
"injected-components.content-manager.edit-settings-view.link.components": "Edit the component",
|
|
130
|
+
"injected-components.content-manager.edit-settings-view.link.content-types": "Edit the content type",
|
|
131
|
+
"menu.section.components.name.plural": "Components",
|
|
132
|
+
"menu.section.components.name.singular": "Component",
|
|
133
|
+
"menu.section.models.name.plural": "Collection Types",
|
|
134
|
+
"menu.section.models.name.singular": "Collection Type",
|
|
135
|
+
"menu.section.single-types.name.plural": "Single Types",
|
|
136
|
+
"menu.section.single-types.name.singular": "Single Type",
|
|
137
|
+
"modalForm.attribute.form.base.name": "Name",
|
|
138
|
+
"modalForm.attribute.form.base.name.description": "No space is allowed for the name of the attribute",
|
|
139
|
+
"modalForm.attribute.form.base.name.placeholder": "e.g. Slug, SEO URL, Canonical URL",
|
|
140
|
+
"modalForm.attribute.target-field": "Attached field",
|
|
141
|
+
"modalForm.attribute.text.type-selection": "Type",
|
|
142
|
+
"modalForm.attributes.select-component": "Select a component",
|
|
143
|
+
"modalForm.attributes.select-components": "Select the components",
|
|
144
|
+
"modalForm.component.header-create": "Create a component",
|
|
145
|
+
"modalForm.components.create-component.category.label": "Select a category or enter a name to create a new one",
|
|
146
|
+
"modalForm.components.icon.label": "Icon",
|
|
147
|
+
"modalForm.contentType.header-create": "Create a collection type",
|
|
148
|
+
"modalForm.editCategory.base.name.description": "No space is allowed for the name of the category",
|
|
149
|
+
"modalForm.header-edit": "Edit {name}",
|
|
150
|
+
"modalForm.header.categories": "Categories",
|
|
151
|
+
"modalForm.singleType.header-create": "Create a single type",
|
|
152
|
+
"modalForm.sub-header.addComponentToDynamicZone": "Add new component to the dynamic zone",
|
|
153
|
+
"modalForm.sub-header.attribute.create": "Add new {type} field",
|
|
154
|
+
"modalForm.sub-header.attribute.create.step": "Add new component ({step}/2)",
|
|
155
|
+
"modalForm.sub-header.attribute.edit": "Edit {name}",
|
|
156
|
+
"modalForm.sub-header.chooseAttribute.collectionType": "Select a field for your collection type",
|
|
157
|
+
"modalForm.sub-header.chooseAttribute.component": "Select a field for your component",
|
|
158
|
+
"modalForm.sub-header.chooseAttribute.singleType": "Select a field for your single type",
|
|
159
|
+
"modelPage.attribute.relation-polymorphic": "Relation (polymorphic)",
|
|
160
|
+
"modelPage.attribute.relationWith": "Relation with",
|
|
161
|
+
"modelPage.contentHeader.emptyDescription.description": "There is no description",
|
|
162
|
+
"none": "None",
|
|
163
|
+
"notification.info.autoreaload-disable": "The autoReload feature is required to use this plugin. Start your server with `strapi develop`",
|
|
164
|
+
"notification.info.creating.notSaved": "Please save your work before creating a new collection type or component",
|
|
165
|
+
"plugin.description.long": "Modelize the data structure of your API. Create new fields and relations in just a minute. The files are automatically created and updated in your project.",
|
|
166
|
+
"plugin.description.short": "Modelize the data structure of your API.",
|
|
167
|
+
"plugin.name": "Content-Types Builder",
|
|
168
|
+
"popUpForm.navContainer.advanced": "Advanced settings",
|
|
169
|
+
"popUpForm.navContainer.base": "Base settings",
|
|
170
|
+
"popUpWarning.bodyMessage.cancel-modifications": "Are you sure you want to cancel your modifications?",
|
|
171
|
+
"popUpWarning.bodyMessage.cancel-modifications.with-components": "Are you sure you want to cancel your modifications? Some components have been created or modified...",
|
|
172
|
+
"popUpWarning.bodyMessage.category.delete": "Are you sure you want to delete this category? All the components will also be deleted.",
|
|
173
|
+
"popUpWarning.bodyMessage.component.delete": "Are you sure you want to delete this component?",
|
|
174
|
+
"popUpWarning.bodyMessage.contentType.delete": "Are you sure you want to delete this collection type?",
|
|
175
|
+
"popUpWarning.draft-publish.button.confirm": "Yes, disable",
|
|
176
|
+
"popUpWarning.draft-publish.message": "If you disable the Draft/Publish system, your drafts will be deleted.",
|
|
177
|
+
"popUpWarning.draft-publish.second-message": "Are you sure you want to disable it?",
|
|
178
|
+
"prompt.unsaved": "Are you sure you want to leave? All your modifications will be lost.",
|
|
179
|
+
"relation.attributeName.placeholder": "Ex: author, category, tag",
|
|
180
|
+
"relation.manyToMany": "has and belongs to many",
|
|
181
|
+
"relation.manyToOne": "has many",
|
|
182
|
+
"relation.manyWay": "has many",
|
|
183
|
+
"relation.oneToMany": "belongs to many",
|
|
184
|
+
"relation.oneToOne": "has and belongs to one",
|
|
185
|
+
"relation.oneWay": "has one",
|
|
186
|
+
"table.attributes.title.plural": "{number} fields",
|
|
187
|
+
"table.attributes.title.singular": "{number} field"
|
|
188
|
+
}
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attribute.boolean": "Booleano",
|
|
3
|
+
"attribute.boolean.description": "Si o no, 1 o 0, verdadero o falso",
|
|
4
|
+
"attribute.component": "Componente",
|
|
5
|
+
"attribute.component.description": "Grupo de campos que puedes repetir o reutilizar",
|
|
6
|
+
"attribute.date": "Fecha",
|
|
7
|
+
"attribute.date.description": "Un selector de fechas con horas, minutos y segundos",
|
|
8
|
+
"attribute.datetime": "Fecha y hora",
|
|
9
|
+
"attribute.dynamiczone": "Zona dinámica",
|
|
10
|
+
"attribute.dynamiczone.description": "Elija componentes dinámicamente al editar contenido",
|
|
11
|
+
"attribute.email": "Correo electrónico",
|
|
12
|
+
"attribute.email.description": "Campo de correo electrónico con formato de validaciones",
|
|
13
|
+
"attribute.enumeration": "Enumeración",
|
|
14
|
+
"attribute.enumeration.description": "Lista de valores, luego elija uno",
|
|
15
|
+
"attribute.json": "JSON",
|
|
16
|
+
"attribute.json.description": "Datos en formato JSON",
|
|
17
|
+
"attribute.media": "Media",
|
|
18
|
+
"attribute.media.description": "Archivos como imágenes, videos, etc.",
|
|
19
|
+
"attribute.null": " ",
|
|
20
|
+
"attribute.number": "Número",
|
|
21
|
+
"attribute.number.description": "Números (entero, flotante, decimal)",
|
|
22
|
+
"attribute.password": "Contraseña",
|
|
23
|
+
"attribute.password.description": "Campo de contraseña con cifrado",
|
|
24
|
+
"attribute.relation": "Relación",
|
|
25
|
+
"attribute.relation.description": "Se refiere a un Tipo de Colección",
|
|
26
|
+
"attribute.richtext": "Texto enriquecido",
|
|
27
|
+
"attribute.richtext.description": "Un editor de texto enriquecido con opciones de formato.",
|
|
28
|
+
"attribute.text": "Texto",
|
|
29
|
+
"attribute.text.description": "Texto corto o largo como título o descripción",
|
|
30
|
+
"attribute.time": "Hora",
|
|
31
|
+
"attribute.timestamp": "Marca de tiempo",
|
|
32
|
+
"attribute.uid": "UID",
|
|
33
|
+
"attribute.uid.description": "Identificador único",
|
|
34
|
+
"button.attributes.add.another": "Agregar otro campo",
|
|
35
|
+
"button.component.add": "Agregar un componente",
|
|
36
|
+
"button.component.create": "Crear nuevo componente",
|
|
37
|
+
"button.model.create": "Crear nuevo Tipo de Colección",
|
|
38
|
+
"button.single-types.create": "Crear nuevo tipo único",
|
|
39
|
+
"component.repeatable": "(repetible)",
|
|
40
|
+
"components.componentSelect.no-component-available": "Ya ha agregado todos sus componentes",
|
|
41
|
+
"components.componentSelect.no-component-available.with-search": "No hay ningún componente que coincida con su búsqueda",
|
|
42
|
+
"components.componentSelect.value-component": "{number} componente seleccionado (escriba para buscar un componente)",
|
|
43
|
+
"components.componentSelect.value-components": "{number} componentes seleccionados",
|
|
44
|
+
"configurations": "configuraciones",
|
|
45
|
+
"contentType.UID.description": "El UID se utiliza para generar las rutas API y las tablas/colecciones de bases de datos.",
|
|
46
|
+
"contentType.collectionName.description": "Útil cuando el nombre de su Tipo de Contenido y el nombre de su tabla difieren",
|
|
47
|
+
"contentType.collectionName.label": "Nombre de la colección",
|
|
48
|
+
"contentType.displayName.label": "Nombre para mostrar",
|
|
49
|
+
"contentType.draftAndPublish.description": "Escribe un borrador de cada entrada antes de publicarla.",
|
|
50
|
+
"contentType.draftAndPublish.label": "Sistema de borrador/publicación",
|
|
51
|
+
"contentType.kind.change.warning": "Acaba de cambiar el Tipo de Contenido: la API se restablecerá (las rutas, los controladores y los servicios se sobrescribirán).",
|
|
52
|
+
"error.attributeName.reserved-name": "Este nombre no se puede utilizar en su Tipo de Contenido, ya que podría romper otras funcionalidades.",
|
|
53
|
+
"error.contentTypeName.reserved-name": "Este nombre no se puede utilizar en su proyecto, ya que podría romper otras funcionalidades.",
|
|
54
|
+
"error.validation.enum-duplicate": "No se permiten valores duplicados",
|
|
55
|
+
"error.validation.minSupMax": "No puede ser superior",
|
|
56
|
+
"error.validation.regex": "El patrón de expresión regular no es válido",
|
|
57
|
+
"error.validation.relation.targetAttribute-taken": "Este nombre existe en el destino",
|
|
58
|
+
"form.attribute.component.option.add": "Agregar un componente",
|
|
59
|
+
"form.attribute.component.option.create": "Crea un nuevo componente",
|
|
60
|
+
"form.attribute.component.option.create.description": "Un componente se comparte entre tipos y componentes, estará disponible y accesible en todas partes.",
|
|
61
|
+
"form.attribute.component.option.repeatable": "Componente repetible",
|
|
62
|
+
"form.attribute.component.option.repeatable.description": "Lo mejor para múltiples instancias (matriz) de ingredientes, meta etiquetas, etc.",
|
|
63
|
+
"form.attribute.component.option.reuse-existing": "Utilice un componente existente",
|
|
64
|
+
"form.attribute.component.option.reuse-existing.description": "Reutilice un componente ya creado para mantener la coherencia de sus datos en todos los tipos de contenido.",
|
|
65
|
+
"form.attribute.component.option.single": "Componente único",
|
|
66
|
+
"form.attribute.component.option.single.description": "Lo mejor para agrupar campos como dirección completa, información principal...",
|
|
67
|
+
"form.attribute.item.customColumnName": "Nombres de columna personalizados",
|
|
68
|
+
"form.attribute.item.customColumnName.description": "Esto es útil para renombrar los nombres de las columnas de la base de datos en un formato más completo para las respuestas de la API.",
|
|
69
|
+
"form.attribute.item.date.type.date": "fecha",
|
|
70
|
+
"form.attribute.item.date.type.datetime": "fecha y hora",
|
|
71
|
+
"form.attribute.item.date.type.time": "hora",
|
|
72
|
+
"form.attribute.item.defineRelation.fieldName": "Nombre del campo",
|
|
73
|
+
"form.attribute.item.enumeration.graphql": "Sobreescritura de nombre para GraphQL",
|
|
74
|
+
"form.attribute.item.enumeration.graphql.description": "Le permite redefinir el nombre generado por defecto para GraphQL",
|
|
75
|
+
"form.attribute.item.enumeration.placeholder": "Ej:\nmañana\nmediodía\nnoche",
|
|
76
|
+
"form.attribute.item.enumeration.rules": "Values (one line per value)",
|
|
77
|
+
"form.attribute.item.maximum": "Valor máximo",
|
|
78
|
+
"form.attribute.item.maximumLength": "Longitud máxima",
|
|
79
|
+
"form.attribute.item.minimum": "Valor mínimo",
|
|
80
|
+
"form.attribute.item.minimumLength": "Longitud mínima",
|
|
81
|
+
"form.attribute.item.number.type": "Tipo de número",
|
|
82
|
+
"form.attribute.item.number.type.biginteger": "entero grande (ej: 123456789)",
|
|
83
|
+
"form.attribute.item.number.type.decimal": "decimal (ex: 2.22)",
|
|
84
|
+
"form.attribute.item.number.type.float": "flotante (ex: 3.3333333333)",
|
|
85
|
+
"form.attribute.item.number.type.integer": "entero (ej: 10)",
|
|
86
|
+
"form.attribute.item.privateField": "Campo privado",
|
|
87
|
+
"form.attribute.item.privateField.description": "Este campo no aparecerá en la respuesta de la API",
|
|
88
|
+
"form.attribute.item.requiredField": "Campo obligatorio",
|
|
89
|
+
"form.attribute.item.requiredField.description": "No podrá crear un registro si este campo está vacío",
|
|
90
|
+
"form.attribute.item.settings.name": "Ajustes",
|
|
91
|
+
"form.attribute.item.text.regex": "Patrón de expresión regular",
|
|
92
|
+
"form.attribute.item.text.regex.description": "El texto de la expresión regular",
|
|
93
|
+
"form.attribute.item.uniqueField": "Campo único",
|
|
94
|
+
"form.attribute.item.uniqueField.description": "No podrá crear un registro si ya existe otro registro con el mismo contenido",
|
|
95
|
+
"form.attribute.media.allowed-types": "Seleccionar tipos de multimedia permitidos",
|
|
96
|
+
"form.attribute.media.allowed-types.none": "Ninguna",
|
|
97
|
+
"form.attribute.media.allowed-types.option-files": "Archivos",
|
|
98
|
+
"form.attribute.media.allowed-types.option-images": "Imagenes",
|
|
99
|
+
"form.attribute.media.allowed-types.option-videos": "Videos",
|
|
100
|
+
"form.attribute.media.option.multiple": "Múltiples multimedia",
|
|
101
|
+
"form.attribute.media.option.multiple.description": "Ideal para controles deslizantes, carruseles o descarga de varios archivos",
|
|
102
|
+
"form.attribute.media.option.single": "Multimedia único",
|
|
103
|
+
"form.attribute.media.option.single.description": "Lo mejor para avatar, foto de perfil o portada",
|
|
104
|
+
"form.attribute.settings.default": "Valor por defecto",
|
|
105
|
+
"form.attribute.text.option.long-text": "Texto largo",
|
|
106
|
+
"form.attribute.text.option.long-text.description": "Mejor para descripciones o biografía. La búsqueda exacta está inhabilitada.",
|
|
107
|
+
"form.attribute.text.option.short-text": "Texto corto",
|
|
108
|
+
"form.attribute.text.option.short-text.description": "Mejor para títulos, nombres, enlaces (URL). También permite una búsqueda exacta en el campo.",
|
|
109
|
+
"form.button.add-components-to-dynamiczone": "Agregar componentes a la zona",
|
|
110
|
+
"form.button.add-field": "Agregar otro campo",
|
|
111
|
+
"form.button.add-first-field-to-created-component": "Agregue el primer campo al componente",
|
|
112
|
+
"form.button.add.field.to.collectionType": "Agrega otro campo a este tipo de colección",
|
|
113
|
+
"form.button.add.field.to.component": "Agregar otro campo a este componente",
|
|
114
|
+
"form.button.add.field.to.contentType": "Agregar campo al Tipo de Contenido",
|
|
115
|
+
"form.button.add.field.to.contentType ": "Agregue otro campo a este Tipo de Contenido",
|
|
116
|
+
"form.button.add.field.to.singleType": "Agregue otro campo a este tipo único",
|
|
117
|
+
"form.button.cancel": "Cancelar",
|
|
118
|
+
"form.button.collection-type.description": "Lo mejor para múltiples instancias como artículos, productos, comentarios, etc.",
|
|
119
|
+
"form.button.configure-component": "Configurar el componente",
|
|
120
|
+
"form.button.configure-view": "Configurar la vista",
|
|
121
|
+
"form.button.continue": "Continuar",
|
|
122
|
+
"form.button.delete": "Eliminar",
|
|
123
|
+
"form.button.finish": "Terminar",
|
|
124
|
+
"form.button.save": "Guardar",
|
|
125
|
+
"form.button.select-component": "Seleccione un componente",
|
|
126
|
+
"form.button.single-type.description": "Lo mejor para una sola instancia como acerca de nosotros, página de inicio, etc.",
|
|
127
|
+
"form.contentType.divider.draft-publish": "BORRAR/PUBLICAR",
|
|
128
|
+
"from": "de",
|
|
129
|
+
"injected-components.content-manager.edit-settings-view.link.components": "Editar el componente",
|
|
130
|
+
"injected-components.content-manager.edit-settings-view.link.content-types": "Edita el Tipo de Contenido",
|
|
131
|
+
"menu.section.components.name.plural": "Componentes",
|
|
132
|
+
"menu.section.components.name.singular": "Componente",
|
|
133
|
+
"menu.section.models.name.plural": "Tipos de contenido",
|
|
134
|
+
"menu.section.models.name.singular": "Tipo de Contenido",
|
|
135
|
+
"menu.section.single-types.name.plural": "Tipos únicos",
|
|
136
|
+
"menu.section.single-types.name.singular": "Tipo único",
|
|
137
|
+
"modalForm.attribute.form.base.name": "Nombre",
|
|
138
|
+
"modalForm.attribute.form.base.name.description": "No se permiten espacios para el nombre del atributo",
|
|
139
|
+
"modalForm.attribute.form.base.name.placeholder": "p. ej. Slug, URL SEO, URL canónica",
|
|
140
|
+
"modalForm.attribute.target-field": "Campo adjunto",
|
|
141
|
+
"modalForm.attribute.text.type-selection": "Tipo",
|
|
142
|
+
"modalForm.attributes.select-component": "Seleccione un componente",
|
|
143
|
+
"modalForm.attributes.select-components": "Seleccionar los componentes",
|
|
144
|
+
"modalForm.component.header-create": "Crea un componente",
|
|
145
|
+
"modalForm.components.create-component.category.label": "Seleccione una categoría o ingrese un nombre para crear una nueva",
|
|
146
|
+
"modalForm.components.icon.label": "Icono",
|
|
147
|
+
"modalForm.contentType.header-create": "Crea un tipo de colección",
|
|
148
|
+
"modalForm.editCategory.base.name.description": "No se permiten espacios para el nombre de la categoría.",
|
|
149
|
+
"modalForm.header-edit": "Editar {name}",
|
|
150
|
+
"modalForm.header.categories": "Categorías",
|
|
151
|
+
"modalForm.singleType.header-create": "Crea un tipo único",
|
|
152
|
+
"modalForm.sub-header.addComponentToDynamicZone": "Agregar nuevo componente a la zona dinámica",
|
|
153
|
+
"modalForm.sub-header.attribute.create": "Agregar nuevo campo {type}",
|
|
154
|
+
"modalForm.sub-header.attribute.create.step": "Agregar nuevo componente ({step}/2)",
|
|
155
|
+
"modalForm.sub-header.attribute.edit": "Editar {name}",
|
|
156
|
+
"modalForm.sub-header.chooseAttribute.collectionType": "Seleccione un campo para su Tipo de Colección",
|
|
157
|
+
"modalForm.sub-header.chooseAttribute.component": "Seleccione un campo para su componente",
|
|
158
|
+
"modalForm.sub-header.chooseAttribute.singleType": "Seleccione un campo para su tipo único",
|
|
159
|
+
"modelPage.attribute.relation-polymorphic": "Relación (polimórfica)",
|
|
160
|
+
"modelPage.attribute.relationWith": "Vinculación con",
|
|
161
|
+
"modelPage.contentHeader.emptyDescription.description": "No hay descripción para este Tipo de Contenido",
|
|
162
|
+
"none": "Ninguna",
|
|
163
|
+
"notification.info.autoreaload-disable": "Se requiere la función autoReload para usar este plugin. Inicie su servidor con `strapi develop`",
|
|
164
|
+
"notification.info.creating.notSaved": "Guarde su trabajo antes de crear un nuevo tipo de colección o componente",
|
|
165
|
+
"plugin.description.long": "Modelice la estructura de datos de su API. Cree nuevos campos y relaciones en sólo un minuto. Los archivos se crean y actualizan automáticamente en el proyecto.",
|
|
166
|
+
"plugin.description.short": "Modelice la estructura de datos de su API.",
|
|
167
|
+
"plugin.name": "Creador de Tipos de Contenido",
|
|
168
|
+
"popUpForm.navContainer.advanced": "Configuración avanzada",
|
|
169
|
+
"popUpForm.navContainer.base": "Ajustes básicos",
|
|
170
|
+
"popUpWarning.bodyMessage.cancel-modifications": "¿Estás seguro de que deseas cancelar tus modificaciones?",
|
|
171
|
+
"popUpWarning.bodyMessage.cancel-modifications.with-components": "¿Está seguro de que desea cancelar sus modificaciones? Algunos componentes han sido creados o modificados...",
|
|
172
|
+
"popUpWarning.bodyMessage.category.delete": "¿Está seguro de que desea eliminar esta categoría? También se eliminarán todos los componentes.",
|
|
173
|
+
"popUpWarning.bodyMessage.component.delete": "¿Está seguro de que desea eliminar este componente?",
|
|
174
|
+
"popUpWarning.bodyMessage.contentType.delete": "¿Está seguro de que desea eliminar este Tipo de Contenido?",
|
|
175
|
+
"popUpWarning.draft-publish.button.confirm": "Sí, deshabilitar",
|
|
176
|
+
"popUpWarning.draft-publish.message": "Si desactiva el sistema Borrador/Publicación, se eliminarán sus borradores.",
|
|
177
|
+
"popUpWarning.draft-publish.second-message": "¿Estás seguro de que quieres desactivarlo?",
|
|
178
|
+
"prompt.unsaved": "¿Estás seguro que quieres irte? Todas sus modificaciones se perderán.",
|
|
179
|
+
"relation.attributeName.placeholder": "Ej: autor, categoría, etiqueta",
|
|
180
|
+
"relation.manyToMany": "tiene y pertenece a muchos",
|
|
181
|
+
"relation.manyToOne": "tiene muchos",
|
|
182
|
+
"relation.manyWay": "tiene muchas",
|
|
183
|
+
"relation.oneToMany": "pertenece a muchos",
|
|
184
|
+
"relation.oneToOne": "tiene y pertenece a una",
|
|
185
|
+
"relation.oneWay": "tiene uno",
|
|
186
|
+
"table.attributes.title.plural": "{number} campos",
|
|
187
|
+
"table.attributes.title.singular": "{number} campo"
|
|
188
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attribute.boolean": "Booléen",
|
|
3
|
+
"attribute.date": "Date",
|
|
4
|
+
"attribute.email": "Email",
|
|
5
|
+
"attribute.enumeration": "Énumération",
|
|
6
|
+
"attribute.json": "JSON",
|
|
7
|
+
"attribute.media": "Média",
|
|
8
|
+
"attribute.password": "Mot de passe",
|
|
9
|
+
"attribute.relation": "Relation",
|
|
10
|
+
"attribute.richtext": "Texte enrichi",
|
|
11
|
+
"attribute.text": "Texte",
|
|
12
|
+
"button.attributes.add.another": "Ajouter un autre champ",
|
|
13
|
+
"button.component.create": "Créer un composant",
|
|
14
|
+
"button.model.create": "Créer un type de collection",
|
|
15
|
+
"button.single-types.create": "Créer un single type",
|
|
16
|
+
"contentType.kind.change.warning": "Vous venez de changer le type de ce modèle: L'API va redémarrer (Les routes, controllers, et les services seront écrasés).",
|
|
17
|
+
"contentType.draftAndPublish.description": "Rédigez une version brouillon de chaque entrée avant de la publier",
|
|
18
|
+
"contentType.draftAndPublish.label": "Système brouillon/publier",
|
|
19
|
+
"form.attribute.item.customColumnName": "Nom de colonne personalisée",
|
|
20
|
+
"form.attribute.item.customColumnName.description": "Pratique pour renommer la colonne de la db dans un format plus comprehensible pour les responses de l'API",
|
|
21
|
+
"form.attribute.item.defineRelation.fieldName": "Nom du Champ",
|
|
22
|
+
"form.attribute.item.enumeration.graphql": "Surchage du nom pour GraphQL",
|
|
23
|
+
"form.attribute.item.enumeration.graphql.description": "Vous permet de remplacer le nom généré par défaut pour GraphQL",
|
|
24
|
+
"form.attribute.item.enumeration.placeholder": "Ex:\nmatin\nmidi\nsoir",
|
|
25
|
+
"form.attribute.item.enumeration.rules": "Valeurs (les séparer par une nouvelle ligne)",
|
|
26
|
+
"form.attribute.item.maximum": "Valeur maximum",
|
|
27
|
+
"form.attribute.item.maximumLength": "Taille maximum",
|
|
28
|
+
"form.attribute.item.minimum": "Valeur minimun",
|
|
29
|
+
"form.attribute.item.minimumLength": "Taille minimun",
|
|
30
|
+
"form.attribute.item.number.type": "Format nombre",
|
|
31
|
+
"form.attribute.item.number.type.decimal": "décimal approximatif (ex: 2,22)",
|
|
32
|
+
"form.attribute.item.number.type.float": "décimal (ex: 3,33333)",
|
|
33
|
+
"form.attribute.item.number.type.integer": "entier (ex: 10)",
|
|
34
|
+
"form.attribute.item.requiredField": "Champ obligatoire",
|
|
35
|
+
"form.attribute.item.requiredField.description": "Vous ne pourrez pas créer une entrée si ce champ est vide",
|
|
36
|
+
"form.attribute.item.settings.name": "Paramètres",
|
|
37
|
+
"form.attribute.item.uniqueField": "Champ unique",
|
|
38
|
+
"form.attribute.item.uniqueField.description": "Vous ne pourrez pas créer une entrée s'il existe un champ similaire",
|
|
39
|
+
"form.attribute.settings.default": "Valeur par défault",
|
|
40
|
+
"form.button.add.field.to.collectionType": "Ajouter un nouveau champ à cette collection",
|
|
41
|
+
"form.button.add.field.to.component": "Ajouter un nouveau champ à ce composant",
|
|
42
|
+
"form.button.add.field.to.contentType": "Ajouter un nouveau champ à cette content type",
|
|
43
|
+
"form.button.add.field.to.singleType": "Ajouter un nouveau champ à ce single type",
|
|
44
|
+
"form.button.cancel": "Annuler",
|
|
45
|
+
"form.button.configure-view": "Configurer la vue",
|
|
46
|
+
"form.button.continue": "Continuer",
|
|
47
|
+
"form.button.delete": "Supprimer",
|
|
48
|
+
"form.button.finish": "Terminer",
|
|
49
|
+
"form.button.save": "Sauvegarder",
|
|
50
|
+
"form.contentType.divider.draft-publish": "BROUILLON/PUBLIER",
|
|
51
|
+
"from": "de",
|
|
52
|
+
"injected-components.content-manager.edit-settings-view.link.components": "Modifier le composant",
|
|
53
|
+
"injected-components.content-manager.edit-settings-view.link.content-types": "Modifier le content type",
|
|
54
|
+
"menu.section.components.name.plural": "Composants",
|
|
55
|
+
"menu.section.components.name.singular": "Composant",
|
|
56
|
+
"menu.section.models.name.plural": "Collections",
|
|
57
|
+
"menu.section.models.name.singular": "Collection",
|
|
58
|
+
"menu.section.single-types.name.plural": "Single Types",
|
|
59
|
+
"menu.section.single-types.name.singular": "Single Type",
|
|
60
|
+
"modalForm.attribute.form.base.name.placeholder": "ex : Slug, URL SEO, URL Canonique",
|
|
61
|
+
"modalForm.attribute.target-field": "Champ associé",
|
|
62
|
+
"modalForm.singleType.header-create": "Créer un single type",
|
|
63
|
+
"modalForm.sub-header.chooseAttribute.collectionType": "Selectionnez un champ pour votre collection",
|
|
64
|
+
"modalForm.sub-header.chooseAttribute.component": "Selectionnez un champ pour votre composant",
|
|
65
|
+
"modalForm.sub-header.chooseAttribute.singleType": "Selectionnez un champ pour votre single type",
|
|
66
|
+
"modelPage.attribute.relationWith": "Relation avec",
|
|
67
|
+
"modelPage.contentHeader.emptyDescription.description": "Il n'y a pas de description",
|
|
68
|
+
"none": "Aucun",
|
|
69
|
+
"plugin.description.long": "Modélisez la structure de données de votre API. Créer des nouveaux champs et relations en un instant. Les fichiers se créent et se mettent à jour automatiquement.",
|
|
70
|
+
"plugin.description.short": "Modélisez la structure de données de votre API.",
|
|
71
|
+
"plugin.name": "Content Types Builder",
|
|
72
|
+
"popUpForm.navContainer.advanced": "Réglages avancés",
|
|
73
|
+
"popUpForm.navContainer.base": "Réglages de base",
|
|
74
|
+
"popUpWarning.bodyMessage.contentType.delete": "Êtes-vous sûr de vouloir supprimer cette Collection ? Cela le supprimera aussi de vos types de contenu.",
|
|
75
|
+
"popUpWarning.draft-publish.button.confirm": "Oui, désactiver",
|
|
76
|
+
"popUpWarning.draft-publish.message": "Si vous désactivez le système Brouillon/Publier, vos brouillons seront supprimés.",
|
|
77
|
+
"popUpWarning.draft-publish.second-message": "Êtes-vous sûr de vouloir le désactiver ?",
|
|
78
|
+
"relation.attributeName.placeholder": "Ex : auteur, catégorie, tag",
|
|
79
|
+
"relation.manyToMany": "a et appartient à plusieurs",
|
|
80
|
+
"relation.manyToOne": "a plusieurs",
|
|
81
|
+
"relation.manyWay": "a plusieurs",
|
|
82
|
+
"relation.oneToMany": "appartient à plusieurs",
|
|
83
|
+
"relation.oneToOne": "a et appartient à un",
|
|
84
|
+
"relation.oneWay": "a un",
|
|
85
|
+
"table.attributes.title.plural": "{number} champs",
|
|
86
|
+
"table.attributes.title.singular": "{number} champ"
|
|
87
|
+
}
|