@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": "Да или нет, 1 или 0, Истина или Ложь",
|
|
4
|
+
"attribute.component": "Компонент",
|
|
5
|
+
"attribute.component.description": "Компонент - группа полей, доступных для повторения или повторного использования",
|
|
6
|
+
"attribute.date": "Date",
|
|
7
|
+
"attribute.date.description": "Элемент управления датой и временем",
|
|
8
|
+
"attribute.datetime": "Datetime",
|
|
9
|
+
"attribute.dynamiczone": "Dynamic zone",
|
|
10
|
+
"attribute.dynamiczone.description": "Компоненты с динамическим редактированием",
|
|
11
|
+
"attribute.email": "Email",
|
|
12
|
+
"attribute.email.description": "Поле электронной почты с проверкой формата",
|
|
13
|
+
"attribute.enumeration": "Enumeration",
|
|
14
|
+
"attribute.enumeration.description": "Перечень значений, выбирается одно",
|
|
15
|
+
"attribute.json": "JSON",
|
|
16
|
+
"attribute.json.description": "Данные в формате JSON",
|
|
17
|
+
"attribute.media": "Media",
|
|
18
|
+
"attribute.media.description": "Аудио- видео- и прочие медиафайлы",
|
|
19
|
+
"attribute.null": " ",
|
|
20
|
+
"attribute.number": "Number",
|
|
21
|
+
"attribute.number.description": "Числа (integer, float, decimal)",
|
|
22
|
+
"attribute.password": "Password",
|
|
23
|
+
"attribute.password.description": "Поле пароля с шифрованием",
|
|
24
|
+
"attribute.relation": "Relation",
|
|
25
|
+
"attribute.relation.description": "Ссылка на какой-либо тип контента",
|
|
26
|
+
"attribute.richtext": "Rich text",
|
|
27
|
+
"attribute.richtext.description": "Элемент управления для редактирования текста с форматированием",
|
|
28
|
+
"attribute.text": "Text",
|
|
29
|
+
"attribute.text.description": "Маленький или длинный текст, например заголовок или описание",
|
|
30
|
+
"attribute.time": "Time",
|
|
31
|
+
"attribute.timestamp": "Timestamp",
|
|
32
|
+
"attribute.uid": "UID",
|
|
33
|
+
"attribute.uid.description": "Уникальный идентификатор",
|
|
34
|
+
"button.attributes.add.another": "Ещё поле",
|
|
35
|
+
"button.component.add": "Добавить компонент",
|
|
36
|
+
"button.component.create": "Создать компонент",
|
|
37
|
+
"button.model.create": "Создать новый тип контента",
|
|
38
|
+
"button.single-types.create": "Создать новый единичный тип",
|
|
39
|
+
"component.repeatable": "(повторяется)",
|
|
40
|
+
"components.componentSelect.no-component-available": "Вы уже добавили все имеющиеся группы полей",
|
|
41
|
+
"components.componentSelect.no-component-available.with-search": "Подходящих групп полей не найдено",
|
|
42
|
+
"components.componentSelect.value-component": "Выбрано компонентов - {number} (наберите для поиска)",
|
|
43
|
+
"components.componentSelect.value-components": "Компонентов выбрано - {number}",
|
|
44
|
+
"configurations": "конфигурации",
|
|
45
|
+
"contentType.UID.description": "Идентификатор, используемый для генерации маршрутов и таблиц в API",
|
|
46
|
+
"contentType.collectionName.description": "Полезно, когда имя вашего типа контента и имя вашей таблицы различаются",
|
|
47
|
+
"contentType.collectionName.label": "Название коллекции",
|
|
48
|
+
"contentType.displayName.label": "Отображаемое имя",
|
|
49
|
+
"contentType.draftAndPublish.description": "Напишите черновую версию каждой записи перед публикацией",
|
|
50
|
+
"contentType.draftAndPublish.label": "Система черновиков/публикаций",
|
|
51
|
+
"contentType.kind.change.warning": "Вы только что изменили тип типа контента: API будет сброшен (маршруты, контроллеры и сервисы будут перезаписаны).",
|
|
52
|
+
"error.attributeName.reserved-name": "Это имя нельзя использовать в вашем типе контента, так как это может нарушить другие функции.",
|
|
53
|
+
"error.contentTypeName.reserved-name": "Это название зарезервировано и не может быть использовано в проекте",
|
|
54
|
+
"error.validation.enum-duplicate": "Повторяющиеся значения не допускаются",
|
|
55
|
+
"error.validation.minSupMax": "Не может выходить за ограничения",
|
|
56
|
+
"error.validation.regex": "Шаблон регулярного выражения недействителен",
|
|
57
|
+
"error.validation.relation.targetAttribute-taken": "Это имя существует в целевом объекте",
|
|
58
|
+
"form.attribute.component.option.add": "Добавление компонента",
|
|
59
|
+
"form.attribute.component.option.create": "Создание нового компонента",
|
|
60
|
+
"form.attribute.component.option.create.description": "Компонент предоставляется в разных типах и группах и будет доступен отовсюду",
|
|
61
|
+
"form.attribute.component.option.repeatable": "Повторяющийся компонент",
|
|
62
|
+
"form.attribute.component.option.repeatable.description": "Применимо для множественных вхождений (массивов) ингредиентов, мета-тегов и т.д.",
|
|
63
|
+
"form.attribute.component.option.reuse-existing": "Использовать существующий компонент",
|
|
64
|
+
"form.attribute.component.option.reuse-existing.description": "Использовать повторно созданный ранее компонент, чтобы обеспечить согласованность данных в разных типах контента.",
|
|
65
|
+
"form.attribute.component.option.single": "Одиночный компонент",
|
|
66
|
+
"form.attribute.component.option.single.description": "Применимо для группировки полей, таких как полный адрес, основная информация и т.д.",
|
|
67
|
+
"form.attribute.item.customColumnName": "Названия столбцов",
|
|
68
|
+
"form.attribute.item.customColumnName.description": "Может быть полезно переименовать названия столбцов для более читаемых ответов API.",
|
|
69
|
+
"form.attribute.item.date.type.date": "дата",
|
|
70
|
+
"form.attribute.item.date.type.datetime": "дата/время",
|
|
71
|
+
"form.attribute.item.date.type.time": "время",
|
|
72
|
+
"form.attribute.item.defineRelation.fieldName": "Название поля",
|
|
73
|
+
"form.attribute.item.enumeration.graphql": "Название поля в GraphQL",
|
|
74
|
+
"form.attribute.item.enumeration.graphql.description": "Позволяет переопределить название поля в GraphQL, сгенерированное по умолчанию",
|
|
75
|
+
"form.attribute.item.enumeration.placeholder": "Например:\nутро\nполдень\nвечер",
|
|
76
|
+
"form.attribute.item.enumeration.rules": "Значения (одна линия на значение)",
|
|
77
|
+
"form.attribute.item.maximum": "Максимальное значение",
|
|
78
|
+
"form.attribute.item.maximumLength": "Максимальная длина",
|
|
79
|
+
"form.attribute.item.minimum": "Минимальное значение",
|
|
80
|
+
"form.attribute.item.minimumLength": "Минимальная длина",
|
|
81
|
+
"form.attribute.item.number.type": "Числовой формат",
|
|
82
|
+
"form.attribute.item.number.type.biginteger": "Большое целое (ex: 123456789)",
|
|
83
|
+
"form.attribute.item.number.type.decimal": "Десятичное (ex: 2.22)",
|
|
84
|
+
"form.attribute.item.number.type.float": "С плавающей точкой (ex: 3.33333333)",
|
|
85
|
+
"form.attribute.item.number.type.integer": "Целое (ex: 10)",
|
|
86
|
+
"form.attribute.item.privateField": "Закрытое поле",
|
|
87
|
+
"form.attribute.item.privateField.description": "Это поле не будет отображаться в ответе API",
|
|
88
|
+
"form.attribute.item.requiredField": "Обязательное поле",
|
|
89
|
+
"form.attribute.item.requiredField.description": "Вы не сможете создать запись, если это поле не заполнено",
|
|
90
|
+
"form.attribute.item.settings.name": "Настройки",
|
|
91
|
+
"form.attribute.item.text.regex": "Шаблон регулярного выражения",
|
|
92
|
+
"form.attribute.item.text.regex.description": "Текст регулярного выражения",
|
|
93
|
+
"form.attribute.item.uniqueField": "Уникальное поле",
|
|
94
|
+
"form.attribute.item.uniqueField.description": "Вы не сможете создать запись, если уже существует запись с таким значением",
|
|
95
|
+
"form.attribute.media.allowed-types": "Выберите разрешенные типы медиа",
|
|
96
|
+
"form.attribute.media.allowed-types.none": "Никто",
|
|
97
|
+
"form.attribute.media.allowed-types.option-files": "Файлы",
|
|
98
|
+
"form.attribute.media.allowed-types.option-images": "Изображения",
|
|
99
|
+
"form.attribute.media.allowed-types.option-videos": "Видео",
|
|
100
|
+
"form.attribute.media.option.multiple": "Множественные медиа",
|
|
101
|
+
"form.attribute.media.option.multiple.description": "Применимо для слайдеров и каруселей",
|
|
102
|
+
"form.attribute.media.option.single": "Одиночное медиа",
|
|
103
|
+
"form.attribute.media.option.single.description": "Применимо для аватаров, картинок профиля и пр.",
|
|
104
|
+
"form.attribute.settings.default": "Стандартное значение",
|
|
105
|
+
"form.attribute.text.option.long-text": "Большой текст",
|
|
106
|
+
"form.attribute.text.option.long-text.description": "Применимо для описания, биографии... (не учествует в поиске)",
|
|
107
|
+
"form.attribute.text.option.short-text": "Короткий текст",
|
|
108
|
+
"form.attribute.text.option.short-text.description": "Применимо для названий, заголовков, ссылок... (участвует в поиске)",
|
|
109
|
+
"form.button.add-components-to-dynamiczone": "Добавить компоненты в зону",
|
|
110
|
+
"form.button.add-field": "Еще поле",
|
|
111
|
+
"form.button.add-first-field-to-created-component": "Добавить первое поле в компонент",
|
|
112
|
+
"form.button.add.field.to.collectionType": "Добавить поле в коллекцию",
|
|
113
|
+
"form.button.add.field.to.component": "Добавить поле в компонент",
|
|
114
|
+
"form.button.add.field.to.contentType": "Добавить поле в тип контента",
|
|
115
|
+
"form.button.add.field.to.singleType": "Добавить поле в тип",
|
|
116
|
+
"form.button.cancel": "Отменить",
|
|
117
|
+
"form.button.collection-type.description": "Лучше всего подходит для нескольких экземпляров, таких как статьи, товары, комментарии и т.д.",
|
|
118
|
+
"form.button.configure-component": "настроить компонент",
|
|
119
|
+
"form.button.configure-view": "Настроить отображение",
|
|
120
|
+
"form.button.continue": "Продолжить",
|
|
121
|
+
"form.button.delete": "Удалить",
|
|
122
|
+
"form.button.finish": "Завершить",
|
|
123
|
+
"form.button.save": "Сохранить",
|
|
124
|
+
"form.button.select-component": "Выбрать компонент",
|
|
125
|
+
"form.button.single-type.description": "Лучше всего подходит для одного экземпляра, например, о нас, домашняя страница и т.д.",
|
|
126
|
+
"form.contentType.divider.draft-publish": "ЧЕРНОВИК/ПУБЛИКАЦИЯ",
|
|
127
|
+
"from": "из",
|
|
128
|
+
"injected-components.content-manager.edit-settings-view.link.components": "Редактирование компонента",
|
|
129
|
+
"injected-components.content-manager.edit-settings-view.link.content-types": "Редактирование типа контента",
|
|
130
|
+
"menu.section.components.name.plural": "Компоненты",
|
|
131
|
+
"menu.section.components.name.singular": "Компонент",
|
|
132
|
+
"menu.section.models.name.plural": "Типы коллекций",
|
|
133
|
+
"menu.section.models.name.singular": "Тип коллекции",
|
|
134
|
+
"menu.section.single-types.name.plural": "Одиночные типы",
|
|
135
|
+
"menu.section.single-types.name.singular": "Одиночный тип",
|
|
136
|
+
"modalForm.attribute.form.base.name": "Имя",
|
|
137
|
+
"modalForm.attribute.form.base.name.description": "Пробелы в имени атрибута недопустимы",
|
|
138
|
+
"modalForm.attribute.form.base.name.placeholder": "e.g. Slug, SEO URL, Canonical URL",
|
|
139
|
+
"modalForm.attribute.target-field": "Добавленные поля",
|
|
140
|
+
"modalForm.attribute.text.type-selection": "Тип",
|
|
141
|
+
"modalForm.attributes.select-component": "Выбор компонента",
|
|
142
|
+
"modalForm.attributes.select-components": "Выбор компонентов",
|
|
143
|
+
"modalForm.component.header-create": "Создание компонента",
|
|
144
|
+
"modalForm.components.create-component.category.label": "Выберите категорию или введите имя новой",
|
|
145
|
+
"modalForm.components.icon.label": "Иконка",
|
|
146
|
+
"modalForm.contentType.header-create": "Создание типа контента",
|
|
147
|
+
"modalForm.editCategory.base.name.description": "Пробелы в имени категории недопустимы",
|
|
148
|
+
"modalForm.header-edit": "Редактирование {name}",
|
|
149
|
+
"modalForm.header.categories": "Категории",
|
|
150
|
+
"modalForm.singleType.header-create": "Создание одиночного типа",
|
|
151
|
+
"modalForm.sub-header.addComponentToDynamicZone": "Добавить компонент в динамическую зону",
|
|
152
|
+
"modalForm.sub-header.attribute.create": "Добавить новое поле типа {type}",
|
|
153
|
+
"modalForm.sub-header.attribute.create.step": "Добавить новый компонент ({step}/2)",
|
|
154
|
+
"modalForm.sub-header.attribute.edit": "Изменение {name}",
|
|
155
|
+
"modalForm.sub-header.chooseAttribute.collectionType": "Выбрать имя поля типа контента",
|
|
156
|
+
"modalForm.sub-header.chooseAttribute.component": "Выбрать имя поля компонента",
|
|
157
|
+
"modalForm.sub-header.chooseAttribute.singleType": "Выберите поле для вашего отдельного типа",
|
|
158
|
+
"modelPage.attribute.relation-polymorphic": "Связь (полиморфная)",
|
|
159
|
+
"modelPage.attribute.relationWith": "Связь с",
|
|
160
|
+
"modelPage.contentHeader.emptyDescription.description": "Нет никакого описания",
|
|
161
|
+
"none": "Никто",
|
|
162
|
+
"notification.info.autoreaload-disable": "Для использования этого плагина требуется функция автоматической загрузки. Запустите свой сервер с помощью `strapi develop`",
|
|
163
|
+
"notification.info.creating.notSaved": "Пожалуйста, сохраните изменения перед созданием нового компонента типа контента ",
|
|
164
|
+
"plugin.description.long": "Моделируйте структуру данных вашего API. Создавайте новые поля и связи всего за минуту. Файлы в вашем проекте создаются и обновляются автоматически.",
|
|
165
|
+
"plugin.description.short": "Моделируйте структуру данных вашего API.",
|
|
166
|
+
"plugin.name": "Конструктор Типов Контента",
|
|
167
|
+
"popUpForm.navContainer.advanced": "Расширенные настройки",
|
|
168
|
+
"popUpForm.navContainer.base": "Базовые настройки",
|
|
169
|
+
"popUpWarning.bodyMessage.cancel-modifications": "Вы уверены, что хотите отменить изменения?",
|
|
170
|
+
"popUpWarning.bodyMessage.cancel-modifications.with-components": "Вы уверены, что хотите отменить сделанные изменения? Некоторые компоненты были созданы или изменены...",
|
|
171
|
+
"popUpWarning.bodyMessage.category.delete": "Вы уверены, что хотите удалить категорию? Все входящие в нее компоненты будут также удалены.",
|
|
172
|
+
"popUpWarning.bodyMessage.component.delete": "Вы уверены, что хотите удалить этот компонент?",
|
|
173
|
+
"popUpWarning.bodyMessage.contentType.delete": "Вы уверены, что хотите удалить этот тип контента?",
|
|
174
|
+
"popUpWarning.draft-publish.button.confirm": "Да, отключить",
|
|
175
|
+
"popUpWarning.draft-publish.message": "Если вы отключите систему черновиков/публикаций, ваши черновики будут удалены.",
|
|
176
|
+
"popUpWarning.draft-publish.second-message": "Вы уверены, что хотите отключить его?",
|
|
177
|
+
"prompt.unsaved": "Вы уверены, что хотите выйти? Все изменения будут потеряны.",
|
|
178
|
+
"relation.attributeName.placeholder": "Пример: автор, категория, тег",
|
|
179
|
+
"relation.manyToMany": "имеет и принадлежит многим",
|
|
180
|
+
"relation.manyToOne": "имеет много",
|
|
181
|
+
"relation.manyWay": "имеет много",
|
|
182
|
+
"relation.oneToMany": "принадлежит многим",
|
|
183
|
+
"relation.oneToOne": "имеет один и принадлежит одному",
|
|
184
|
+
"relation.oneWay": "имеет один",
|
|
185
|
+
"table.attributes.title.plural": "Полей - {number}",
|
|
186
|
+
"table.attributes.title.singular": "Поле - {number}",
|
|
187
|
+
"error.validation.enum-empty-string": "Не может быть пустой строкой"
|
|
188
|
+
}
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attribute.boolean": "Logická hodnota",
|
|
3
|
+
"attribute.boolean.description": "áno/nie, 1/0, pravda/lož",
|
|
4
|
+
"attribute.component": "Komponent",
|
|
5
|
+
"attribute.component.description": "Skupina políčok, ktoré je možné opakovane používať",
|
|
6
|
+
"attribute.date": "Dátum a čas",
|
|
7
|
+
"attribute.date.description": "Dialóg pre výber dátumu a času",
|
|
8
|
+
"attribute.datetime": "Dátum a čas",
|
|
9
|
+
"attribute.dynamiczone": "Dynamická zóna",
|
|
10
|
+
"attribute.dynamiczone.description": "Umožňuje dynamicky zvoliť komponenty počas úpravy obsahu",
|
|
11
|
+
"attribute.email": "E-mailová adresa",
|
|
12
|
+
"attribute.email.description": "Políčko s automatickou validáciou formátu e-mailovej adresy",
|
|
13
|
+
"attribute.enumeration": "Vymenovanie",
|
|
14
|
+
"attribute.enumeration.description": "Zoznam preddefinovaných hodnôt s výberom jednej možnosti",
|
|
15
|
+
"attribute.json": "JSON",
|
|
16
|
+
"attribute.json.description": "Dáta vo formáte JSON",
|
|
17
|
+
"attribute.media": "Súbory",
|
|
18
|
+
"attribute.media.description": "Napr. obrázky, videá, atď.",
|
|
19
|
+
"attribute.null": " ",
|
|
20
|
+
"attribute.number": "Číslo",
|
|
21
|
+
"attribute.number.description": "Čísla (celé, desatinné)",
|
|
22
|
+
"attribute.password": "Heslo",
|
|
23
|
+
"attribute.password.description": "Políčko pre zadanie hesla",
|
|
24
|
+
"attribute.relation": "Relácia",
|
|
25
|
+
"attribute.relation.description": "Určuje vzťah k inému Typu obsahu",
|
|
26
|
+
"attribute.richtext": "Textový editor",
|
|
27
|
+
"attribute.richtext.description": "Textové pole s možnosťami formátovania",
|
|
28
|
+
"attribute.text": "Text",
|
|
29
|
+
"attribute.text.description": "Krátky alebo dlhší text",
|
|
30
|
+
"attribute.time": "Čas",
|
|
31
|
+
"attribute.timestamp": "Timestamp - Časový odtlačok",
|
|
32
|
+
"attribute.uid": "UID",
|
|
33
|
+
"attribute.uid.description": "Unikátny identifikátor",
|
|
34
|
+
"button.attributes.add.another": "Pridať ďalšie políčko",
|
|
35
|
+
"button.component.add": "Pridať komponent",
|
|
36
|
+
"button.component.create": "Vytvoriť nový komponent",
|
|
37
|
+
"button.model.create": "Vytvoriť nový Typ obsahu",
|
|
38
|
+
"button.single-types.create": "Vytvoriť nový jednorazový typ",
|
|
39
|
+
"component.repeatable": "(opakujúce)",
|
|
40
|
+
"components.componentSelect.no-component-available": "Už ste pridali všetky komponenty",
|
|
41
|
+
"components.componentSelect.no-component-available.with-search": "Nenašiel sa žiaden komponent splňujúci výraz",
|
|
42
|
+
"components.componentSelect.value-component": "Označené komponenty: {number} (zadajte hľadaný text)",
|
|
43
|
+
"components.componentSelect.value-components": "Označené komponenty: {number}",
|
|
44
|
+
"configurations": "nastavenia",
|
|
45
|
+
"contentType.UID.description": "UID sa používa pre vygenerovanie API URL adries a databázových tabuliek",
|
|
46
|
+
"contentType.collectionName.description": "Užitočné, ak má byť názov kolekcie (v dashboard) iný ako meno tabuľky",
|
|
47
|
+
"contentType.collectionName.label": "Meno kolekcie",
|
|
48
|
+
"contentType.displayName.label": "Názov kolekcie",
|
|
49
|
+
"contentType.draftAndPublish.description": "Pred zverejnením vytvárať verziu návrhu každej položky",
|
|
50
|
+
"contentType.draftAndPublish.label": "Draft/publish systém",
|
|
51
|
+
"contentType.kind.change.warning": "Práve ste zmenili druh typu obsahu: API bude obnovené (routes, controllers a services budú prepísané)",
|
|
52
|
+
"error.attributeName.reserved-name": "Tento názov je vyhradený a nemôže byť použitý (hrozí poškodenie iných funkcionalít systému)",
|
|
53
|
+
"error.contentTypeName.reserved-name": "Tento názov je vyhradený a nemôže byť použitý (hrozí poškodenie iných funkcionalít systému)",
|
|
54
|
+
"error.validation.enum-duplicate": "Duplicitné hodnoty nie sú povolené",
|
|
55
|
+
"error.validation.minSupMax": "Nemôže byť nadradený",
|
|
56
|
+
"error.validation.regex": "Vzor regulárneho výrazu (regex) je neplatný",
|
|
57
|
+
"error.validation.relation.targetAttribute-taken": "Tento názov už v cieľovom objekte existuje",
|
|
58
|
+
"form.attribute.component.option.add": "Pridať komponent",
|
|
59
|
+
"form.attribute.component.option.create": "Vytvoriť nový komponent",
|
|
60
|
+
"form.attribute.component.option.create.description": "Komponent je dostupný medzi všetkými typmi a komponentami.",
|
|
61
|
+
"form.attribute.component.option.repeatable": "Znovu použiteľný komponent",
|
|
62
|
+
"form.attribute.component.option.repeatable.description": "Ideálne pre viacpoložkové (polia) inštancie ako napríklad meta tagy, ingrediencie, atď..",
|
|
63
|
+
"form.attribute.component.option.reuse-existing": "Použiť existujúci komponent",
|
|
64
|
+
"form.attribute.component.option.reuse-existing.description": "Používajte už vytvorené komponenty pre uchovanie konzistentných dát medzi Typmi obsahu.",
|
|
65
|
+
"form.attribute.component.option.single": "Jednorazový komponent",
|
|
66
|
+
"form.attribute.component.option.single.description": "Vhodné pre zoskúpenie políčok, napr. celá adresa",
|
|
67
|
+
"form.attribute.item.customColumnName": "Vlastné názvy stĺpcov",
|
|
68
|
+
"form.attribute.item.customColumnName.description": "Umožňuje premenovať databázový stĺpček pre potreby API",
|
|
69
|
+
"form.attribute.item.date.type.date": "dátum",
|
|
70
|
+
"form.attribute.item.date.type.datetime": "dátum a čas",
|
|
71
|
+
"form.attribute.item.date.type.time": "čas",
|
|
72
|
+
"form.attribute.item.defineRelation.fieldName": "Názov políčka",
|
|
73
|
+
"form.attribute.item.enumeration.graphql": "Názov políčka pre GraphQL",
|
|
74
|
+
"form.attribute.item.enumeration.graphql.description": "Umožňuje prepísať predvolené názvy pre GraphQL",
|
|
75
|
+
"form.attribute.item.enumeration.placeholder": "Napr.:\nráno\ndeň\nvečer",
|
|
76
|
+
"form.attribute.item.enumeration.rules": "Hodnoty (jedna na riadok)",
|
|
77
|
+
"form.attribute.item.maximum": "Maximálna hodnota",
|
|
78
|
+
"form.attribute.item.maximumLength": "Maximálna dĺžka",
|
|
79
|
+
"form.attribute.item.minimum": "Minimálna hodnota",
|
|
80
|
+
"form.attribute.item.minimumLength": "Minimálna dĺžka",
|
|
81
|
+
"form.attribute.item.number.type": "Číselný formát",
|
|
82
|
+
"form.attribute.item.number.type.biginteger": "veľké číslo (napr.: 123456789)",
|
|
83
|
+
"form.attribute.item.number.type.decimal": "desatinné číslo (napr.: 2.22)",
|
|
84
|
+
"form.attribute.item.number.type.float": "desatinné číslo (napr.: 3.33333333)",
|
|
85
|
+
"form.attribute.item.number.type.integer": "celé číslo (napr.: 10)",
|
|
86
|
+
"form.attribute.item.privateField": "Skryté políčko",
|
|
87
|
+
"form.attribute.item.privateField.description": "Toto políčko sa nebude zobrazovať v API",
|
|
88
|
+
"form.attribute.item.requiredField": "Povinné políčko",
|
|
89
|
+
"form.attribute.item.requiredField.description": "Nedovolí vytvoriť záznam ak ostane toto políčko prázdne",
|
|
90
|
+
"form.attribute.item.settings.name": "Nastavenia",
|
|
91
|
+
"form.attribute.item.text.regex": "Vzor regulárneho výrazu (RegExp)",
|
|
92
|
+
"form.attribute.item.text.regex.description": "Text regulárneho výrazu",
|
|
93
|
+
"form.attribute.item.uniqueField": "Unikátne políčko",
|
|
94
|
+
"form.attribute.item.uniqueField.description": "Nedovolí vytvoriť záznam ak už existuje iný záznam s rovnakou hodnotou",
|
|
95
|
+
"form.attribute.media.allowed-types": "Zvoliť povolené typy súborov",
|
|
96
|
+
"form.attribute.media.allowed-types.none": "Žiadne",
|
|
97
|
+
"form.attribute.media.allowed-types.option-files": "Súbory",
|
|
98
|
+
"form.attribute.media.allowed-types.option-images": "Obrázky",
|
|
99
|
+
"form.attribute.media.allowed-types.option-videos": "Videá",
|
|
100
|
+
"form.attribute.media.option.multiple": "Viacero súborov",
|
|
101
|
+
"form.attribute.media.option.multiple.description": "Vhodné pre galériu, zoznam súborov na stiahnutie",
|
|
102
|
+
"form.attribute.media.option.single": "Jeden súbor",
|
|
103
|
+
"form.attribute.media.option.single.description": "Vhodné pre profilovú fotku alebo hlavný obrázok",
|
|
104
|
+
"form.attribute.settings.default": "Predvolená hodnota",
|
|
105
|
+
"form.attribute.text.option.long-text": "Dlhý text",
|
|
106
|
+
"form.attribute.text.option.long-text.description": "Vhodné pre dlhšie popisy. Presné vyhľadávanie je vypnuté.",
|
|
107
|
+
"form.attribute.text.option.short-text": "Krátky text",
|
|
108
|
+
"form.attribute.text.option.short-text.description": "Vhodné pre nadpisy, názvy, URL adresy. Presné vyhľadávanie je zapnuté.",
|
|
109
|
+
"form.button.add-components-to-dynamiczone": "Pridať komponenty do zóny",
|
|
110
|
+
"form.button.add-field": "Pridať ďalšie políčko",
|
|
111
|
+
"form.button.add-first-field-to-created-component": "Pridať prvé políčko do komponentu",
|
|
112
|
+
"form.button.add.field.to.collectionType": "Pridať ďalšie políčko do tejto kolekcie",
|
|
113
|
+
"form.button.add.field.to.component": "Pridať ďalšie políčko do komponentu",
|
|
114
|
+
"form.button.add.field.to.contentType": "Pridať ďalšie políčko do tohto typu obsahu",
|
|
115
|
+
"form.button.add.field.to.singleType": "Pridať ďalšie políčko do tohto jednorazového typu",
|
|
116
|
+
"form.button.cancel": "Zrušiť",
|
|
117
|
+
"form.button.collection-type.description": "Ideálne pre viacnásobné inštancie ako sú napríklad články, produkty, komentáre, atď.",
|
|
118
|
+
"form.button.configure-component": "Nastaviť komponent",
|
|
119
|
+
"form.button.configure-view": "Upraviť vzhľad",
|
|
120
|
+
"form.button.continue": "Pokračovať",
|
|
121
|
+
"form.button.delete": "Odstrániť",
|
|
122
|
+
"form.button.finish": "Dokončiť",
|
|
123
|
+
"form.button.save": "Uložiť",
|
|
124
|
+
"form.button.select-component": "Vybrať komponent",
|
|
125
|
+
"form.button.single-type.description": "Ideálne pre jednorazové inštancie ako sú napríklad domovská stránka, atď.",
|
|
126
|
+
"from": "od",
|
|
127
|
+
"injected-components.content-manager.edit-settings-view.link.components": "Upraviť komponent",
|
|
128
|
+
"injected-components.content-manager.edit-settings-view.link.content-types": "Upraviť Typ obsahu",
|
|
129
|
+
"menu.section.components.name.plural": "Komponenty",
|
|
130
|
+
"menu.section.components.name.singular": "Komponent",
|
|
131
|
+
"menu.section.models.name.plural": "Typy obsahu",
|
|
132
|
+
"menu.section.models.name.singular": "Typ obsahu",
|
|
133
|
+
"menu.section.single-types.name.plural": "Jednorazové Typy",
|
|
134
|
+
"menu.section.single-types.name.singular": "Jednorazový Typ",
|
|
135
|
+
"modalForm.attribute.form.base.name": "Meno",
|
|
136
|
+
"modalForm.attribute.form.base.name.description": "Medzery nie sú povolené v názve políčka",
|
|
137
|
+
"modalForm.attribute.form.base.name.placeholder": "napr. slug, SEO URL, kanonická URL",
|
|
138
|
+
"modalForm.attribute.target-field": "Priložené políčko",
|
|
139
|
+
"modalForm.attribute.text.type-selection": "Typ",
|
|
140
|
+
"modalForm.attributes.select-component": "Vyberte komponent",
|
|
141
|
+
"modalForm.attributes.select-components": "Vyberte komponenty",
|
|
142
|
+
"modalForm.component.header-create": "Vytvorte komponent",
|
|
143
|
+
"modalForm.components.create-component.category.label": "Vyberte kategóriu alebo zadajte názov pre vytvorenie novej",
|
|
144
|
+
"modalForm.components.icon.label": "Ikona",
|
|
145
|
+
"modalForm.contentType.header-create": "Vytvoriť Typ obsahu",
|
|
146
|
+
"modalForm.editCategory.base.name.description": "Medzery nie sú povolené v názve kategórie",
|
|
147
|
+
"modalForm.header-edit": "Upraviť {name}",
|
|
148
|
+
"modalForm.header.categories": "Kategórie",
|
|
149
|
+
"modalForm.singleType.header-create": "Vytvoriť jednorazový typ",
|
|
150
|
+
"modalForm.sub-header.addComponentToDynamicZone": "Pridať nový komponent do dynamickej zóny",
|
|
151
|
+
"modalForm.sub-header.attribute.create": "Pridať nové políčko {type}",
|
|
152
|
+
"modalForm.sub-header.attribute.create.step": "Pridať nový komponent ({step}/2)",
|
|
153
|
+
"modalForm.sub-header.attribute.edit": "Upraviť {name}",
|
|
154
|
+
"modalForm.sub-header.chooseAttribute.collectionType": "Vyberte typ políčka pre Typ obsahu",
|
|
155
|
+
"modalForm.sub-header.chooseAttribute.component": "Vyberte typ políčka pre komponent",
|
|
156
|
+
"modalForm.sub-header.chooseAttribute.singleType": "Vyberte typ políčka pre jednorazový typ",
|
|
157
|
+
"modelPage.attribute.relation-polymorphic": "Prepojenie (polymorfné)",
|
|
158
|
+
"modelPage.attribute.relationWith": "Prepojenie s",
|
|
159
|
+
"modelPage.contentHeader.emptyDescription.description": "Žiaden popis",
|
|
160
|
+
"none": "Žiadne",
|
|
161
|
+
"notification.info.autoreaload-disable": "Funkcionalita AutoReload je povinná pre použitie tohto pluginu. Spustite Váš server pomocou príkazu `strapi develop`",
|
|
162
|
+
"notification.info.creating.notSaved": "Uložte zmeny pred vytvorením nového Typu obsahu alebo komponentu",
|
|
163
|
+
"plugin.description.long": "Navrhnite štruktúru webu jednoducho. Vytvorte nové políčka a prepojenia behom pár sekúnd. Súbory sa automaticky vytvoria a upravia v rámci projektu.",
|
|
164
|
+
"plugin.description.short": "Navrhnite štruktúru webu jednoducho.",
|
|
165
|
+
"plugin.name": "Tvorca typov obsahu",
|
|
166
|
+
"popUpForm.navContainer.advanced": "Pokročilé nastavenia",
|
|
167
|
+
"popUpForm.navContainer.base": "Základné nastavenia",
|
|
168
|
+
"popUpWarning.bodyMessage.cancel-modifications": "Ste si istý, že chcete zrušiť úpravy?",
|
|
169
|
+
"popUpWarning.bodyMessage.cancel-modifications.with-components": "Ste si istý, že chcete zrušiť úpravy? Niektoré komponenty boli vytvorené alebo upravené...",
|
|
170
|
+
"popUpWarning.bodyMessage.category.delete": "Ste si istý, že chcete odstrániť túto kategóriu? Všetky komponentu budú takisto vymazané.",
|
|
171
|
+
"popUpWarning.bodyMessage.component.delete": "Ste si istý, že chcete odstrániť tento komponent?",
|
|
172
|
+
"popUpWarning.bodyMessage.contentType.delete": "Ste si istý, že chcete odstrániť tento Typ obsahu?",
|
|
173
|
+
"popUpWarning.draft-publish.button.confirm": "Áno, deaktivovať",
|
|
174
|
+
"popUpWarning.draft-publish.message": "Ak deaktivujete Draft/Publish systém, všetky Vaše návrhy (drafts) budú zmazané",
|
|
175
|
+
"popUpWarning.draft-publish.second-message": "Ste si istý, že to chcete deaktivovať?",
|
|
176
|
+
"prompt.unsaved": "Ste si istý, že chcete odísť? Všetky úpravy budú stratené.",
|
|
177
|
+
"relation.attributeName.placeholder": "Napr: autor, kategoria, tag",
|
|
178
|
+
"relation.manyToMany": "má viacero a patrí viacerým",
|
|
179
|
+
"relation.manyToOne": "má viacero",
|
|
180
|
+
"relation.manyWay": "má viacero",
|
|
181
|
+
"relation.oneToMany": "patrí viacerým",
|
|
182
|
+
"relation.oneToOne": "má jeden a patrí jednému",
|
|
183
|
+
"relation.oneWay": "má jeden",
|
|
184
|
+
"table.attributes.title.plural": "Políčka: {number}",
|
|
185
|
+
"table.attributes.title.singular": "Políčka: {number}"
|
|
186
|
+
}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attribute.boolean": "บูลีน",
|
|
3
|
+
"attribute.boolean.description": "Yes หรือ no, 1 หรือ 0, true หรือ false",
|
|
4
|
+
"attribute.component": "คอมโพเนนต์",
|
|
5
|
+
"attribute.component.description": "กลุ่มของฟิลด์ที่คุณสามารถซ้ำหรือนำกลับมาใช้ใหม่",
|
|
6
|
+
"attribute.date": "วันที่",
|
|
7
|
+
"attribute.date.description": "เครื่องมือเลือกวันที่ที่มีชั่วโมงนาทีและวินาที",
|
|
8
|
+
"attribute.datetime": "วันที่เวลา",
|
|
9
|
+
"attribute.dynamiczone": "ไดนามิกโซน",
|
|
10
|
+
"attribute.dynamiczone.description": "เลือกคอมโพเนนต์แบบไดนามิกเมื่อแก้ไขเนื้อหา",
|
|
11
|
+
"attribute.email": "อีเมล",
|
|
12
|
+
"attribute.email.description": "ฟิลด์อีเมลที่มีรูปแบบการตรวจสอบความถูกต้อง",
|
|
13
|
+
"attribute.enumeration": "การแจงนับ",
|
|
14
|
+
"attribute.enumeration.description": "รายการค่าจากนั้นเลือกค่าหนึ่ง",
|
|
15
|
+
"attribute.json": "JSON",
|
|
16
|
+
"attribute.json.description": "ข้อมูลในรูปแบบ JSON",
|
|
17
|
+
"attribute.media": "สื่อ",
|
|
18
|
+
"attribute.media.description": "ไฟล์เช่นอิมเมจ, วิดีโอ, เป็นต้น",
|
|
19
|
+
"attribute.null": " ",
|
|
20
|
+
"attribute.number": "หมายเลข",
|
|
21
|
+
"attribute.number.description": "ตัวเลข (integer, float, decimal)",
|
|
22
|
+
"attribute.password": "รหัสผ่าน",
|
|
23
|
+
"attribute.password.description": "ฟิลด์รหัสผ่านที่มีการเข้ารหัส",
|
|
24
|
+
"attribute.relation": "ความสัมพันธ์",
|
|
25
|
+
"attribute.relation.description": "อ้างถึงชนิดคอลเล็กชัน",
|
|
26
|
+
"attribute.richtext": "ข้อความแบบ Rich",
|
|
27
|
+
"attribute.richtext.description": "เครื่องมือแก้ไขข้อความ ที่มีอ็อพชันการจัดรูปแบบ",
|
|
28
|
+
"attribute.text": "ข้อความ",
|
|
29
|
+
"attribute.text.description": "ข้อความเล็กหรือยาวเช่นหัวเรื่องหรือคำอธิบาย",
|
|
30
|
+
"attribute.time": "เวลา",
|
|
31
|
+
"attribute.timestamp": "การประทับเวลา",
|
|
32
|
+
"attribute.uid": "UID",
|
|
33
|
+
"attribute.uid.description": "ตัวระบุเฉพาะ",
|
|
34
|
+
"button.attributes.add.another": "เพิ่มฟิลด์อื่น",
|
|
35
|
+
"button.component.add": "เพิ่มคอมโพเนนต์",
|
|
36
|
+
"button.component.create": "สร้างคอมโพเนนต์ใหม่",
|
|
37
|
+
"button.model.create": "สร้างชนิดการรวบรวมใหม่",
|
|
38
|
+
"button.single-types.create": "สร้างชนิดเดี่ยวใหม่",
|
|
39
|
+
"component.repeatable": "(ทำซ้ำได้)",
|
|
40
|
+
"components.componentSelect.no-component-available": "คุณได้เพิ่มส่วนประกอบทั้งหมดของคุณแล้ว",
|
|
41
|
+
"components.componentSelect.no-component-available.with-search": "ไม่มีคอมโพเนนต์ที่ตรงกับการค้นหาของคุณ",
|
|
42
|
+
"components.componentSelect.value-component": "{number} คอมโพเนนต์ที่เลือก (ชนิดที่จะค้นหาสำหรับคอมโพเนนต์)",
|
|
43
|
+
"components.componentSelect.value-components": "เลือกคอมโพเนนต์ {number} แล้ว",
|
|
44
|
+
"configurations": "การตั้งค่า",
|
|
45
|
+
"contentType.UID.description": "UID ถูกใช้เพื่อสร้างเส้นทาง API และตาราง/คอลเล็กชันฐานข้อมูล",
|
|
46
|
+
"contentType.collectionName.description": "มีประโยชน์เมื่อชื่อของชนิดเนื้อหาและชื่อตารางของคุณแตกต่างกัน",
|
|
47
|
+
"contentType.collectionName.label": "ชื่อคอลเล็กชัน",
|
|
48
|
+
"contentType.displayName.label": "ชื่อที่แสดง",
|
|
49
|
+
"contentType.kind.change.warning": "คุณเพียงแค่เปลี่ยนชนิดของชนิดเนื้อหา: API จะถูกรีเซ็ต (เส้นทางตัวควบคุมและเซอร์วิสจะถูกเขียนทับ)",
|
|
50
|
+
"error.attributeName.reserved-name": "ชื่อนี้ไม่สามารถใช้ในชนิดเนื้อหาของคุณได้ เนื่องจากอาจทำให้ฟังก์ชันอื่นเสียหายได้",
|
|
51
|
+
"error.contentTypeName.reserved-name": "ชื่อนี้ไม่สามารถใช้ในโปรเจ็กต์ของคุณ เนื่องจากอาจหยุดการทำงานของฟังก์ชันอื่น",
|
|
52
|
+
"error.validation.enum-duplicate": "ไม่อนุญาตให้ใช้ค่าซ้ำ",
|
|
53
|
+
"error.validation.minSupMax": "ไม่สามารถเหนือกว่า",
|
|
54
|
+
"error.validation.regex": "รูปแบบ Regex ไม่ถูกต้อง",
|
|
55
|
+
"error.validation.relation.targetAttribute-taken": "ชื่อนี้มีอยู่ในเป้าหมาย",
|
|
56
|
+
"form.attribute.component.option.add": "เพิ่มคอมโพเนนต์",
|
|
57
|
+
"form.attribute.component.option.create": "สร้างคอมโพเนนต์ใหม่",
|
|
58
|
+
"form.attribute.component.option.create.description": "คอมโพเนนต์ที่แบ่งใช้ระหว่างชนิดและคอมโพเนนต์จะพร้อมใช้งานและสามารถเข้าถึงได้ทุกที่",
|
|
59
|
+
"form.attribute.component.option.repeatable": "คอมโพเนนต์ที่ทำซ้ำได้",
|
|
60
|
+
"form.attribute.component.option.repeatable.description": "ดีที่สุดสำหรับหลายอินสแตนซ์ (ชุดข้อมูล) ของส่วนผสมเมตาแท็กและอื่นๆ",
|
|
61
|
+
"form.attribute.component.option.reuse-existing": "ใช้คอมโพเนนต์ที่มีอยู่",
|
|
62
|
+
"form.attribute.component.option.reuse-existing.description": "ใช้คอมโพเนนต์ที่สร้างไว้แล้วเพื่อทำให้ข้อมูลของคุณสอดคล้องกันระหว่างชนิดเนื้อหา",
|
|
63
|
+
"form.attribute.component.option.single": "คอมโพเนนต์เดียว",
|
|
64
|
+
"form.attribute.component.option.single.description": "ดีที่สุดสำหรับการจัดกลุ่มฟิลด์เช่นแอดเดรสแบบเต็มข้อมูลหลักและอื่นๆ",
|
|
65
|
+
"form.attribute.item.customColumnName": "ชื่อคอลัมน์แบบกำหนดเอง",
|
|
66
|
+
"form.attribute.item.customColumnName.description": "สิ่งนี้มีประโยชน์ในการเปลี่ยนชื่อคอลัมน์ฐานข้อมูลในรูปแบบที่ครอบคลุมมากขึ้นสำหรับการตอบกลับของ API",
|
|
67
|
+
"form.attribute.item.date.type.date": "วันที่",
|
|
68
|
+
"form.attribute.item.date.type.datetime": "วันที่เวลา",
|
|
69
|
+
"form.attribute.item.date.type.time": "เวลา",
|
|
70
|
+
"form.attribute.item.defineRelation.fieldName": "ชื่อฟิลด์",
|
|
71
|
+
"form.attribute.item.enumeration.graphql": "การเขียนทับชื่อสำหรับ GraphQL",
|
|
72
|
+
"form.attribute.item.enumeration.graphql.description": "อนุญาตให้คุณเขียนทับชื่อที่สร้างขึ้นพื้นฐานสำหรับ GraphQL",
|
|
73
|
+
"form.attribute.item.enumeration.placeholder": "ตัวอย่าง:\nเช้า\nเที่ยง\nเย็น",
|
|
74
|
+
"form.attribute.item.enumeration.rules": "ค่า (หนึ่งบรรทัดต่อค่า)",
|
|
75
|
+
"form.attribute.item.maximum": "ค่าสูงสุด",
|
|
76
|
+
"form.attribute.item.maximumLength": "ความยาวสูงสุด",
|
|
77
|
+
"form.attribute.item.minimum": "ค่าต่ำสุด",
|
|
78
|
+
"form.attribute.item.minimumLength": "ความยาวต่ำสุด",
|
|
79
|
+
"form.attribute.item.number.type": "รูปแบบตัวเลข",
|
|
80
|
+
"form.attribute.item.number.type.biginteger": "จำนวนเต็มขนาดใหญ่ (ตัวอย่าง: 1 2 3 4 5 6 7 8 9)",
|
|
81
|
+
"form.attribute.item.number.type.decimal": "เลขฐานสิบ (ตัวอย่าง: 2.22)",
|
|
82
|
+
"form.attribute.item.number.type.float": "จำนวนจริง (ตัวอย่าง: 3.33333333)",
|
|
83
|
+
"form.attribute.item.number.type.integer": "จำนวนเต็ม (ตัวอย่าง: 10)",
|
|
84
|
+
"form.attribute.item.privateField": "ไพรเวตฟิลด์",
|
|
85
|
+
"form.attribute.item.privateField.description": "ฟิลด์นี้จะไม่แสดงขึ้นในการตอบกลับ API",
|
|
86
|
+
"form.attribute.item.requiredField": "ฟิลด์ที่จำเป็น",
|
|
87
|
+
"form.attribute.item.requiredField.description": "คุณจะไม่สามารถสร้างรายการได้หากฟิลด์นี้ว่างอยู่",
|
|
88
|
+
"form.attribute.item.settings.name": "การตั้งค่า",
|
|
89
|
+
"form.attribute.item.text.regex": "รูปแบบ RegExp",
|
|
90
|
+
"form.attribute.item.text.regex.description": "ข้อความของนิพจน์ปกติ",
|
|
91
|
+
"form.attribute.item.uniqueField": "ฟิลด์เฉพาะ",
|
|
92
|
+
"form.attribute.item.uniqueField.description": "คุณจะไม่สามารถสร้างรายการได้ถ้ามีรายการที่มีเนื้อหาที่เหมือนกันอยู่แล้ว",
|
|
93
|
+
"form.attribute.media.allowed-types": "เลือกชนิดของสื่อบันทึกที่อนุญาต",
|
|
94
|
+
"form.attribute.media.allowed-types.none": "ไม่มี",
|
|
95
|
+
"form.attribute.media.allowed-types.option-files": "ไฟล์",
|
|
96
|
+
"form.attribute.media.allowed-types.option-images": "รูปภาพ",
|
|
97
|
+
"form.attribute.media.allowed-types.option-videos": "วิดีโอ",
|
|
98
|
+
"form.attribute.media.option.multiple": "สื่อบันทึกหลายสื่อ",
|
|
99
|
+
"form.attribute.media.option.multiple.description": "ดีที่สุดสำหรับสไลเดอร์, การหมุนหรือการดาวน์โหลดหลายไฟล์",
|
|
100
|
+
"form.attribute.media.option.single": "สื่อบันทึกเดี่ยว",
|
|
101
|
+
"form.attribute.media.option.single.description": "ดีที่สุดสำหรับ รูปภาพของโปรไฟล์หรือรูปภาพปก",
|
|
102
|
+
"form.attribute.settings.default": "ค่าพื้นฐาน",
|
|
103
|
+
"form.attribute.text.option.long-text": "ข้อความแบบยาว",
|
|
104
|
+
"form.attribute.text.option.long-text.description": "ดีที่สุดสำหรับคำอธิบายชีวประวัติ การค้นหาที่แท้จริงถูกปิดใช้งาน",
|
|
105
|
+
"form.attribute.text.option.short-text": "ข้อความแบบสั้น",
|
|
106
|
+
"form.attribute.text.option.short-text.description": "ดีที่สุดสำหรับหัวเรื่อง, ชื่อ, ลิงก์ (URL) และยังเปิดใช้งานการค้นหาที่แน่นอนบนฟิลด์",
|
|
107
|
+
"form.button.add-components-to-dynamiczone": "เพิ่มคอมโพเนนต์ลงในโซน",
|
|
108
|
+
"form.button.add-field": "เพิ่มฟิลด์อื่น",
|
|
109
|
+
"form.button.add-first-field-to-created-component": "เพิ่มฟิลด์แรกในคอมโพเนนต์",
|
|
110
|
+
"form.button.add.field.to.collectionType": "เพิ่มฟิลด์อื่นให้กับชนิดคอลเล็กชันนี้",
|
|
111
|
+
"form.button.add.field.to.component": "เพิ่มฟิลด์อื่นลงในคอมโพเนนต์นี้",
|
|
112
|
+
"form.button.add.field.to.contentType": "เพิ่มฟิลด์อื่นลงในชนิดเนื้อหานี้",
|
|
113
|
+
"form.button.add.field.to.singleType": "เพิ่มฟิลด์อื่นให้กับชนิดเดี่ยวนี้",
|
|
114
|
+
"form.button.cancel": "ยกเลิก",
|
|
115
|
+
"form.button.collection-type.description": "ดีที่สุดสำหรับหลายอินสแตนซ์เช่น บทความ, ผลิตภัณฑ์, ข้อคิดเห็น เป็นต้น",
|
|
116
|
+
"form.button.configure-component": "ตั้งค่าคอมโพเนนต์",
|
|
117
|
+
"form.button.configure-view": "กำหนดคอนฟิกมุมมอง",
|
|
118
|
+
"form.button.continue": "ดำเนินการต่อ",
|
|
119
|
+
"form.button.delete": "ลบ",
|
|
120
|
+
"form.button.finish": "เสร็จสิ้น",
|
|
121
|
+
"form.button.save": "บันทึก",
|
|
122
|
+
"form.button.select-component": "เลือกคอมโพเนนต์",
|
|
123
|
+
"form.button.single-type.description": "ที่ดีที่สุดสำหรับอินสแตนซ์เดี่ยวเช่น เกี่ยวกับเรา, โฮมเพจ, เป็นต้น",
|
|
124
|
+
"from": "จาก",
|
|
125
|
+
"injected-components.content-manager.edit-settings-view.link.components": "แก้ไขคอมโพเนนต์",
|
|
126
|
+
"injected-components.content-manager.edit-settings-view.link.content-types": "แก้ไขชนิดเนื้อหา",
|
|
127
|
+
"menu.section.components.name.plural": "คอมโพเนนต์",
|
|
128
|
+
"menu.section.components.name.singular": "คอมโพเนนต์",
|
|
129
|
+
"menu.section.models.name.plural": "ชนิดของคอลเล็กชัน",
|
|
130
|
+
"menu.section.models.name.singular": "ชนิดคอลเล็กชัน",
|
|
131
|
+
"menu.section.single-types.name.plural": "ชนิดเดียว",
|
|
132
|
+
"menu.section.single-types.name.singular": "ชนิดเดียว",
|
|
133
|
+
"modalForm.attribute.form.base.name": "ชื่อ",
|
|
134
|
+
"modalForm.attribute.form.base.name.description": "ไม่มีพื้นที่ว่างที่อนุญาตให้ใช้สำหรับชื่อของแอ็ตทริบิวต์",
|
|
135
|
+
"modalForm.attribute.form.base.name.placeholder": "เช่น Slug, SEO URL, Canonical URL",
|
|
136
|
+
"modalForm.attribute.target-field": "ฟิลด์ที่แนบ",
|
|
137
|
+
"modalForm.attribute.text.type-selection": "ชนิด",
|
|
138
|
+
"modalForm.attributes.select-component": "เลือกคอมโพเนนต์",
|
|
139
|
+
"modalForm.attributes.select-components": "เลือกคอมโพเนนต์",
|
|
140
|
+
"modalForm.component.header-create": "สร้างคอมโพเนนต์",
|
|
141
|
+
"modalForm.components.create-component.category.label": "เลือกหมวดหมู่หรือป้อนชื่อเพื่อสร้างหมวดหมู่ใหม่หรือป้อนชื่อ",
|
|
142
|
+
"modalForm.components.icon.label": "ไอคอน",
|
|
143
|
+
"modalForm.contentType.header-create": "สร้างชนิดคอลเล็กชัน",
|
|
144
|
+
"modalForm.editCategory.base.name.description": "ไม่อนุญาตให้มีช่องว่างสำหรับชื่อของหมวดหมู่",
|
|
145
|
+
"modalForm.header-edit": "แก้ไข {name}",
|
|
146
|
+
"modalForm.header.categories": "ประเภท",
|
|
147
|
+
"modalForm.singleType.header-create": "สร้างชนิดเดี่ยว",
|
|
148
|
+
"modalForm.sub-header.addComponentToDynamicZone": "เพิ่มคอมโพเนนต์ใหม่ให้กับไดนามิกโซน",
|
|
149
|
+
"modalForm.sub-header.attribute.create": "เพิ่มฟิลด์ {type} ใหม่",
|
|
150
|
+
"modalForm.sub-header.attribute.create.step": "เพิ่มคอมโพเนนต์ใหม่ ({step}/2)",
|
|
151
|
+
"modalForm.sub-header.attribute.edit": "แก้ไข {name}",
|
|
152
|
+
"modalForm.sub-header.chooseAttribute.collectionType": "เลือกฟิลด์สำหรับชนิดคอลเล็กชันของคุณ",
|
|
153
|
+
"modalForm.sub-header.chooseAttribute.component": "เลือกฟิลด์สำหรับคอมโพเนนต์ของคุณ",
|
|
154
|
+
"modalForm.sub-header.chooseAttribute.singleType": "เลือกฟิลด์สำหรับชนิดเดี่ยวของคุณ",
|
|
155
|
+
"modelPage.attribute.relation-polymorphic": "ความสัมพันธ์ (polymorphic)",
|
|
156
|
+
"modelPage.attribute.relationWith": "ความสัมพันธ์กับ",
|
|
157
|
+
"modelPage.contentHeader.emptyDescription.description": "ไม่มีคำอธิบาย",
|
|
158
|
+
"none": "ไม่มี",
|
|
159
|
+
"notification.info.autoreaload-disable": "คุณลักษณะ autoReload จำเป็นต้องมีเพื่อใช้ปลั๊กอินนี้ เริ่มทำงานเซิร์ฟเวอร์ของคุณด้วย `strapi develop`",
|
|
160
|
+
"notification.info.creating.notSaved": "โปรดบันทึกงานของคุณก่อนการสร้างชนิดคอลเล็กชันหรือคอมโพเนนต์ใหม่",
|
|
161
|
+
"plugin.description.long": "โมเดลโครงสร้างข้อมูลของ API ของคุณ สร้างฟิลด์ใหม่และความสัมพันธ์ในเวลาเพียงหนึ่งนาที ไฟล์จะถูกสร้างและอัพเดตโดยอัตโนมัติในโปรเจ็กต์ของคุณ",
|
|
162
|
+
"plugin.description.short": "โมเดลโครงสร้างข้อมูลของ API ของคุณ",
|
|
163
|
+
"plugin.name": "ตัวสร้าง Content-Types",
|
|
164
|
+
"popUpForm.navContainer.advanced": "การตั้งค่าขั้นสูง",
|
|
165
|
+
"popUpForm.navContainer.base": "ค่าติดตั้งพื้นฐาน",
|
|
166
|
+
"popUpWarning.bodyMessage.cancel-modifications": "คุณแน่ใจว่าต้องการยกเลิกการแก้ไขของคุณหรือไม่?",
|
|
167
|
+
"popUpWarning.bodyMessage.cancel-modifications.with-components": "คุณแน่ใจว่าต้องการยกเลิกการแก้ไขของคุณหรือไม่? บางคอมโพเนนต์ถูกสร้างหรือแก้ไข...",
|
|
168
|
+
"popUpWarning.bodyMessage.category.delete": "คุณแน่ใจว่าต้องการลบหมวดหมู่นี้หรือไม่? คอมโพเนนต์ทั้งหมดจะถูกลบออกด้วย",
|
|
169
|
+
"popUpWarning.bodyMessage.component.delete": "คุณแน่ใจว่าต้องการลบคอมโพเนนต์นี้หรือไม่?",
|
|
170
|
+
"popUpWarning.bodyMessage.contentType.delete": "คุณแน่ใจว่าต้องการลบชนิดคอลเล็กชันนี้หรือไม่?",
|
|
171
|
+
"prompt.unsaved": "คุณแน่ใจว่าคุณต้องการออกหรือไม่? การปรับเปลี่ยนทั้งหมดของคุณจะหายไป",
|
|
172
|
+
"relation.attributeName.placeholder": "ตัวอย่าง: author, category, tag",
|
|
173
|
+
"relation.manyToMany": "มีและเป็นของหลาย",
|
|
174
|
+
"relation.manyToOne": "มีจำนวนมาก",
|
|
175
|
+
"relation.manyWay": "มีจำนวนมาก",
|
|
176
|
+
"relation.oneToMany": "เป็นของหลาย",
|
|
177
|
+
"relation.oneToOne": "มีและเป็นของหนึ่ง",
|
|
178
|
+
"relation.oneWay": "มีหนึ่ง",
|
|
179
|
+
"table.attributes.title.plural": "{number} ฟิลด์",
|
|
180
|
+
"table.attributes.title.singular": "ฟิลด์ {number}"
|
|
181
|
+
}
|