@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.
Files changed (223) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +19 -0
  3. package/admin/src/InjectedComponents/ContentManager/EditSettingViewButton.js +76 -0
  4. package/admin/src/InjectedComponents/ContentManager/EditViewLink.js +44 -0
  5. package/admin/src/assets/images/logo.svg +1 -0
  6. package/admin/src/components/AllowedTypesSelect/MenuList.js +115 -0
  7. package/admin/src/components/AllowedTypesSelect/Text.js +26 -0
  8. package/admin/src/components/AllowedTypesSelect/index.js +55 -0
  9. package/admin/src/components/AttributeOption/Button.js +50 -0
  10. package/admin/src/components/AttributeOption/Card.js +26 -0
  11. package/admin/src/components/AttributeOption/index.js +127 -0
  12. package/admin/src/components/BooleanBox/CT.js +21 -0
  13. package/admin/src/components/BooleanBox/Enumeration.js +10 -0
  14. package/admin/src/components/BooleanBox/EnumerationWrapper.js +14 -0
  15. package/admin/src/components/BooleanBox/Label.js +9 -0
  16. package/admin/src/components/BooleanBox/ST.js +21 -0
  17. package/admin/src/components/BooleanBox/Wrapper.js +75 -0
  18. package/admin/src/components/BooleanBox/icons/CTSelected.js +136 -0
  19. package/admin/src/components/BooleanBox/icons/CTUnselected.js +136 -0
  20. package/admin/src/components/BooleanBox/icons/STSelected.js +80 -0
  21. package/admin/src/components/BooleanBox/icons/STUnselected.js +76 -0
  22. package/admin/src/components/BooleanBox/index.js +103 -0
  23. package/admin/src/components/CheckboxWithDescription/Wrapper.js +12 -0
  24. package/admin/src/components/CheckboxWithDescription/index.js +40 -0
  25. package/admin/src/components/ComponentCard/Close.js +12 -0
  26. package/admin/src/components/ComponentCard/Wrapper.js +84 -0
  27. package/admin/src/components/ComponentCard/index.js +62 -0
  28. package/admin/src/components/ComponentIconPicker/Cell.js +40 -0
  29. package/admin/src/components/ComponentIconPicker/CellRenderer.js +36 -0
  30. package/admin/src/components/ComponentIconPicker/Search.js +12 -0
  31. package/admin/src/components/ComponentIconPicker/SearchWrapper.js +34 -0
  32. package/admin/src/components/ComponentIconPicker/Wrapper.js +60 -0
  33. package/admin/src/components/ComponentIconPicker/index.js +143 -0
  34. package/admin/src/components/ComponentList/index.js +78 -0
  35. package/admin/src/components/ComponentSelect/Category.js +20 -0
  36. package/admin/src/components/ComponentSelect/CategoryName.js +11 -0
  37. package/admin/src/components/ComponentSelect/MenuList.js +110 -0
  38. package/admin/src/components/ComponentSelect/MultipleMenuList.js +271 -0
  39. package/admin/src/components/ComponentSelect/Value.js +83 -0
  40. package/admin/src/components/ComponentSelect/index.js +83 -0
  41. package/admin/src/components/ComponentSelect/utils/HasSomeSubArray.js +5 -0
  42. package/admin/src/components/ComponentSelect/utils/hasSubArray.js +5 -0
  43. package/admin/src/components/CreatableSelect/index.js +58 -0
  44. package/admin/src/components/CustomCheckbox/StyledCustomCheckbox.js +25 -0
  45. package/admin/src/components/CustomCheckbox/index.js +71 -0
  46. package/admin/src/components/CustomLink/P.js +17 -0
  47. package/admin/src/components/CustomLink/StyledCustomLink.js +20 -0
  48. package/admin/src/components/CustomLink/index.js +31 -0
  49. package/admin/src/components/DynamicZoneList/ComponentButton.js +39 -0
  50. package/admin/src/components/DynamicZoneList/index.js +124 -0
  51. package/admin/src/components/HeaderModalNavContainer/index.js +25 -0
  52. package/admin/src/components/HeaderNavLink/Wrapper.js +21 -0
  53. package/admin/src/components/HeaderNavLink/index.js +50 -0
  54. package/admin/src/components/List/List.js +131 -0
  55. package/admin/src/components/List/index.js +295 -0
  56. package/admin/src/components/ListButton/index.js +9 -0
  57. package/admin/src/components/ListHeader/Title.js +19 -0
  58. package/admin/src/components/ListHeader/Wrapper.js +24 -0
  59. package/admin/src/components/ListHeader/index.js +37 -0
  60. package/admin/src/components/ListRow/Wrapper.js +76 -0
  61. package/admin/src/components/ListRow/index.js +334 -0
  62. package/admin/src/components/ModalHeader/ComponentIcon.js +21 -0
  63. package/admin/src/components/ModalHeader/ComponentInfos.js +22 -0
  64. package/admin/src/components/ModalHeader/ComponentInfosWrapper.js +9 -0
  65. package/admin/src/components/ModalHeader/DropdownInfos.js +50 -0
  66. package/admin/src/components/ModalHeader/Icon.js +26 -0
  67. package/admin/src/components/ModalHeader/IconWrapper.js +11 -0
  68. package/admin/src/components/ModalHeader/Item.js +19 -0
  69. package/admin/src/components/ModalHeader/Menu.js +8 -0
  70. package/admin/src/components/ModalHeader/Toggle.js +14 -0
  71. package/admin/src/components/ModalHeader/Wrapper.js +12 -0
  72. package/admin/src/components/ModalHeader/index.js +105 -0
  73. package/admin/src/components/RelationForm/Wrapper.js +9 -0
  74. package/admin/src/components/RelationForm/index.js +66 -0
  75. package/admin/src/components/RelationFormBox/Wrapper.js +34 -0
  76. package/admin/src/components/RelationFormBox/index.js +85 -0
  77. package/admin/src/components/RelationFormNaturePicker/Wrapper.js +53 -0
  78. package/admin/src/components/RelationFormNaturePicker/index.js +112 -0
  79. package/admin/src/components/RelationTargetPicker/Item.js +62 -0
  80. package/admin/src/components/RelationTargetPicker/Wrapper.js +89 -0
  81. package/admin/src/components/RelationTargetPicker/index.js +88 -0
  82. package/admin/src/components/SelectCheckbox/index.js +8 -0
  83. package/admin/src/components/SelectMenuSubUl/ToggleUl.js +23 -0
  84. package/admin/src/components/SelectMenuSubUl/index.js +23 -0
  85. package/admin/src/components/SelectMenuUl/index.js +66 -0
  86. package/admin/src/components/Td/index.js +37 -0
  87. package/admin/src/components/UpperFirst/index.js +14 -0
  88. package/admin/src/components/WrapperSelect/index.js +89 -0
  89. package/admin/src/containers/App/Wrapper.js +14 -0
  90. package/admin/src/containers/App/index.js +39 -0
  91. package/admin/src/containers/App/utils/icons.json +962 -0
  92. package/admin/src/containers/DataManagerProvider/constants.js +15 -0
  93. package/admin/src/containers/DataManagerProvider/index.js +610 -0
  94. package/admin/src/containers/DataManagerProvider/reducer.js +461 -0
  95. package/admin/src/containers/DataManagerProvider/selectors.js +25 -0
  96. package/admin/src/containers/DataManagerProvider/utils/cleanData.js +167 -0
  97. package/admin/src/containers/DataManagerProvider/utils/createDataObject.js +8 -0
  98. package/admin/src/containers/DataManagerProvider/utils/createModifiedDataSchema.js +91 -0
  99. package/admin/src/containers/DataManagerProvider/utils/retrieveComponentsFromSchema.js +55 -0
  100. package/admin/src/containers/DataManagerProvider/utils/retrieveComponentsThatHaveComponents.js +35 -0
  101. package/admin/src/containers/DataManagerProvider/utils/retrieveNestedComponents.js +34 -0
  102. package/admin/src/containers/DataManagerProvider/utils/retrieveSpecificInfoFromComponents.js +12 -0
  103. package/admin/src/containers/FormModal/CustomButton.js +12 -0
  104. package/admin/src/containers/FormModal/attributes/advancedForm.js +269 -0
  105. package/admin/src/containers/FormModal/attributes/attributeOptions.js +99 -0
  106. package/admin/src/containers/FormModal/attributes/baseForm.js +322 -0
  107. package/admin/src/containers/FormModal/attributes/commonBaseForm.js +7 -0
  108. package/admin/src/containers/FormModal/attributes/form.js +9 -0
  109. package/admin/src/containers/FormModal/attributes/index.js +4 -0
  110. package/admin/src/containers/FormModal/attributes/nameField.js +19 -0
  111. package/admin/src/containers/FormModal/attributes/types.js +309 -0
  112. package/admin/src/containers/FormModal/attributes/uiHelpers.js +11 -0
  113. package/admin/src/containers/FormModal/attributes/validation/common.js +151 -0
  114. package/admin/src/containers/FormModal/category/createCategorySchema.js +28 -0
  115. package/admin/src/containers/FormModal/category/form.js +27 -0
  116. package/admin/src/containers/FormModal/category/index.js +3 -0
  117. package/admin/src/containers/FormModal/category/regex.js +3 -0
  118. package/admin/src/containers/FormModal/component/componentField.js +25 -0
  119. package/admin/src/containers/FormModal/component/createComponentSchema.js +49 -0
  120. package/admin/src/containers/FormModal/component/form.js +67 -0
  121. package/admin/src/containers/FormModal/component/index.js +4 -0
  122. package/admin/src/containers/FormModal/constants.js +11 -0
  123. package/admin/src/containers/FormModal/contentType/createContentTypeSchema.js +44 -0
  124. package/admin/src/containers/FormModal/contentType/form.js +116 -0
  125. package/admin/src/containers/FormModal/contentType/index.js +2 -0
  126. package/admin/src/containers/FormModal/dynamicZone/form.js +45 -0
  127. package/admin/src/containers/FormModal/dynamicZone/index.js +2 -0
  128. package/admin/src/containers/FormModal/forms/index.js +164 -0
  129. package/admin/src/containers/FormModal/index.js +1552 -0
  130. package/admin/src/containers/FormModal/reducer.js +293 -0
  131. package/admin/src/containers/FormModal/selectors.js +24 -0
  132. package/admin/src/containers/FormModal/utils/canEditContentType.js +19 -0
  133. package/admin/src/containers/FormModal/utils/createHeadersArray.js +37 -0
  134. package/admin/src/containers/FormModal/utils/createHeadersObjectFromArray.js +27 -0
  135. package/admin/src/containers/FormModal/utils/createUid.js +17 -0
  136. package/admin/src/containers/FormModal/utils/getAttributesToDisplay.js +35 -0
  137. package/admin/src/containers/FormModal/utils/getModalTitleSubHeader.js +25 -0
  138. package/admin/src/containers/FormModal/utils/getNextSearch.js +17 -0
  139. package/admin/src/containers/FormModal/utils/index.js +6 -0
  140. package/admin/src/containers/FormModal/utils/relations.js +9 -0
  141. package/admin/src/containers/FormModal/utils/staticData.js +43 -0
  142. package/admin/src/containers/Initializer/index.js +26 -0
  143. package/admin/src/containers/LeftMenu/Wrapper.js +14 -0
  144. package/admin/src/containers/LeftMenu/index.js +220 -0
  145. package/admin/src/containers/ListView/Wrapper.js +16 -0
  146. package/admin/src/containers/ListView/index.js +322 -0
  147. package/admin/src/containers/NotFoundPage/index.js +20 -0
  148. package/admin/src/containers/RecursivePath/index.js +22 -0
  149. package/admin/src/contexts/DataManagerContext.js +5 -0
  150. package/admin/src/contexts/ListViewContext.js +5 -0
  151. package/admin/src/hooks/useDataManager.js +6 -0
  152. package/admin/src/hooks/useListView.js +6 -0
  153. package/admin/src/icons/Curve.js +26 -0
  154. package/admin/src/icons/ManyToMany.js +98 -0
  155. package/admin/src/icons/ManyToOne.js +64 -0
  156. package/admin/src/icons/ManyWay.js +36 -0
  157. package/admin/src/icons/OneToMany.js +65 -0
  158. package/admin/src/icons/OneToOne.js +47 -0
  159. package/admin/src/icons/OneWay.js +38 -0
  160. package/admin/src/index.js +83 -0
  161. package/admin/src/lifecycles.js +13 -0
  162. package/admin/src/permissions.js +9 -0
  163. package/admin/src/pluginId.js +5 -0
  164. package/admin/src/reducers.js +10 -0
  165. package/admin/src/translations/ar.json +48 -0
  166. package/admin/src/translations/cs.json +151 -0
  167. package/admin/src/translations/de.json +187 -0
  168. package/admin/src/translations/dk.json +181 -0
  169. package/admin/src/translations/en.json +188 -0
  170. package/admin/src/translations/es.json +188 -0
  171. package/admin/src/translations/fr.json +87 -0
  172. package/admin/src/translations/id.json +187 -0
  173. package/admin/src/translations/index.js +51 -0
  174. package/admin/src/translations/it.json +187 -0
  175. package/admin/src/translations/ja.json +50 -0
  176. package/admin/src/translations/ko.json +57 -0
  177. package/admin/src/translations/ms.json +179 -0
  178. package/admin/src/translations/nl.json +171 -0
  179. package/admin/src/translations/pl.json +152 -0
  180. package/admin/src/translations/pt-BR.json +51 -0
  181. package/admin/src/translations/pt.json +51 -0
  182. package/admin/src/translations/ru.json +188 -0
  183. package/admin/src/translations/sk.json +186 -0
  184. package/admin/src/translations/th.json +181 -0
  185. package/admin/src/translations/tr.json +51 -0
  186. package/admin/src/translations/uk.json +180 -0
  187. package/admin/src/translations/zh-Hans.json +188 -0
  188. package/admin/src/translations/zh.json +178 -0
  189. package/admin/src/utils/convertAttrObjToArray.js +7 -0
  190. package/admin/src/utils/formAPI.js +112 -0
  191. package/admin/src/utils/getAttributeDisplayedType.js +31 -0
  192. package/admin/src/utils/getComponents.js +31 -0
  193. package/admin/src/utils/getTrad.js +5 -0
  194. package/admin/src/utils/makeSearch.js +15 -0
  195. package/admin/src/utils/makeUnique.js +3 -0
  196. package/config/functions/bootstrap.js +14 -0
  197. package/config/routes.json +144 -0
  198. package/controllers/Builder.js +7 -0
  199. package/controllers/ComponentCategories.js +43 -0
  200. package/controllers/Components.js +152 -0
  201. package/controllers/Connections.js +9 -0
  202. package/controllers/ContentTypes.js +143 -0
  203. package/controllers/validation/common.js +118 -0
  204. package/controllers/validation/component-category.js +21 -0
  205. package/controllers/validation/component.js +89 -0
  206. package/controllers/validation/content-type.js +161 -0
  207. package/controllers/validation/data-transform.js +32 -0
  208. package/controllers/validation/model-schema.js +91 -0
  209. package/controllers/validation/relations.js +56 -0
  210. package/controllers/validation/types.js +277 -0
  211. package/package.json +63 -0
  212. package/services/Builder.js +7 -0
  213. package/services/ComponentCategories.js +88 -0
  214. package/services/Components.js +103 -0
  215. package/services/ContentTypes.js +263 -0
  216. package/services/api-handler.js +158 -0
  217. package/services/constants.js +59 -0
  218. package/services/schema-builder/component-builder.js +137 -0
  219. package/services/schema-builder/content-type-builder.js +256 -0
  220. package/services/schema-builder/index.js +196 -0
  221. package/services/schema-builder/schema-handler.js +297 -0
  222. package/utils/attributes.js +154 -0
  223. package/utils/helpers.js +31 -0
@@ -0,0 +1,51 @@
1
+ {
2
+ "attribute.boolean": "Mantıksal",
3
+ "attribute.date": "Tarih",
4
+ "attribute.email": "E-posta",
5
+ "attribute.enumeration": "Enumeration",
6
+ "attribute.json": "JSON",
7
+ "attribute.media": "Medya",
8
+ "attribute.password": "Parola",
9
+ "attribute.relation": "İlişki",
10
+ "attribute.text": "Yazı",
11
+ "form.attribute.item.customColumnName": "Özel kolon isimleri",
12
+ "form.attribute.item.customColumnName.description": "Bu veritabanı sütun isimleri servis yanıtları için daha kapsamlı bir biçimde yeniden adlandırmak için kullanışlıdır",
13
+ "form.attribute.item.defineRelation.fieldName": "Alan adı",
14
+ "form.attribute.item.enumeration.graphql": "GraphQL için isim geçersiz kıl",
15
+ "form.attribute.item.enumeration.graphql.description": "GraphQL için varsayılan oluşturulan adı geçersiz kılmanıza izin verir.",
16
+ "form.attribute.item.enumeration.placeholder": "Örn:\nsabah\nöğlen\nakşam",
17
+ "form.attribute.item.enumeration.rules": "Values (one line per value)",
18
+ "form.attribute.item.maximum": "En yüksek değer",
19
+ "form.attribute.item.maximumLength": "En yüksek uzunluk",
20
+ "form.attribute.item.minimum": "En düşük değer",
21
+ "form.attribute.item.minimumLength": "En düşük uzunluk",
22
+ "form.attribute.item.number.type": "Sayı biçimi",
23
+ "form.attribute.item.number.type.decimal": "ondalık (ex: 2.22)",
24
+ "form.attribute.item.number.type.float": "float (ex: 3.33333333)",
25
+ "form.attribute.item.number.type.integer": "tamsayı (ex: 10)",
26
+ "form.attribute.item.requiredField": "Zorunlu alan",
27
+ "form.attribute.item.requiredField.description": "Bu alan boşsa kayıt oluşturamazsınız",
28
+ "form.attribute.item.settings.name": "Ayarlar",
29
+ "form.attribute.item.uniqueField": "Benzersiz alan",
30
+ "form.attribute.item.uniqueField.description": "Aynı içeriğe sahip bir kayıt varsa kayıt oluşturamazsınız.",
31
+ "form.attribute.settings.default": "Varsayılan değer",
32
+ "form.button.cancel": "İptal",
33
+ "form.button.continue": "Devam",
34
+ "form.button.save": "Kaydet",
35
+ "from": "kimden",
36
+ "menu.section.models.name.plural": "İçerik Türleri",
37
+ "menu.section.models.name.singular": "İçerik Türü",
38
+ "modelPage.attribute.relationWith": "İlişkili",
39
+ "modelPage.contentHeader.emptyDescription.description": "Bu İçerik Türü için açıklama bulunmamaktadır.",
40
+ "plugin.description.long": "Servisinizin veri yapısını modelleyin. Bir dakika içinde yeni alanlar ve ilişkiler yaratın. Dosyalar, projenizde otomatik olarak oluşturulur ve güncellenir.",
41
+ "plugin.description.short": "Servisinizin veri yapısını modelleyin.",
42
+ "popUpForm.navContainer.advanced": "Gelişmiş Ayarlar",
43
+ "popUpForm.navContainer.base": "Temel ayarlar",
44
+ "popUpWarning.bodyMessage.contentType.delete": "Bu İçerik Türünü silmek istediğinizden emin misiniz?",
45
+ "relation.attributeName.placeholder": "Örnek: yazar, katagori, etiket",
46
+ "relation.manyToMany": "birçok kişiye ait ve ait",
47
+ "relation.manyToOne": "Birçok var",
48
+ "relation.oneToMany": "Birçoğuna ait",
49
+ "relation.oneToOne": "biri var",
50
+ "relation.oneWay": "tek yönlü"
51
+ }
@@ -0,0 +1,180 @@
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": "Дата та час",
9
+ "attribute.dynamiczone": "Динамічна зона",
10
+ "attribute.dynamiczone.description": "Динамічний вибір компонентів підчас редагування контенту",
11
+ "attribute.email": "Email",
12
+ "attribute.email.description": "Поле email з перевіркою формату",
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": "Зв'язок з Collection Type",
26
+ "attribute.richtext": "Rich text",
27
+ "attribute.richtext.description": "Текст з можливістю форматування",
28
+ "attribute.text": "Text",
29
+ "attribute.text.description": "Короткий або довгий текст, як заголовок чи опис",
30
+ "attribute.time": "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": "Створити Collection Type",
38
+ "button.single-types.create": "Створити Single Type",
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": "Корисно, коли назва вашего Content Type та вашої таблиці різні",
47
+ "contentType.collectionName.label": "Назва колекції",
48
+ "contentType.displayName.label": "Назва для відображення",
49
+ "contentType.kind.change.warning": "Ви тільки що змінили тип Content Type: API буде перезавантажене (маршрути, контролери та сервіси будуть переписані).",
50
+ "error.attributeName.reserved-name": "Ця назва не може буди використана для вашого Content Type, так як воно може зламати іншу функціональність",
51
+ "error.contentTypeName.reserved-name": "Ця назва не може буди використана у вашому проекті, так як воно може зламати іншу функціональність",
52
+ "error.validation.enum-duplicate": "Значення не можуть повторюватись",
53
+ "error.validation.minSupMax": "Не може бути більше",
54
+ "error.validation.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": "Використовуйте створений вами компонент, щоб підтримувати узгодженність данних серед різних Content Types.",
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": "big integer (ex: 123456789)",
81
+ "form.attribute.item.number.type.decimal": "decimal (ex: 2.22)",
82
+ "form.attribute.item.number.type.float": "float (ex: 3.33333333)",
83
+ "form.attribute.item.number.type.integer": "integer (ex: 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": "Додати ще одне поле до цього Collection Type",
111
+ "form.button.add.field.to.component": "Додати ще одне поле до цього компоненту",
112
+ "form.button.add.field.to.contentType": "Додати ще одне поле до цього Content Type",
113
+ "form.button.add.field.to.singleType": "Додати ще одне поле до цього Single Type",
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": "Редагувати Content Type",
127
+ "menu.section.components.name.plural": "Компоненти",
128
+ "menu.section.components.name.singular": "Компонент",
129
+ "menu.section.models.name.plural": "Collection Types",
130
+ "menu.section.models.name.singular": "Collection Type",
131
+ "menu.section.single-types.name.plural": "Single Types",
132
+ "menu.section.single-types.name.singular": "Single Type",
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": "Створити Collection Type",
144
+ "modalForm.editCategory.base.name.description": "Для назви категорії не допускається пробілів",
145
+ "modalForm.header-edit": "Редагувати {name}",
146
+ "modalForm.header.categories": "Категорії",
147
+ "modalForm.singleType.header-create": "Створити Single Type",
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": "Виберіть поле для вашего Collection Type",
153
+ "modalForm.sub-header.chooseAttribute.component": "Виберіть поле для вашого компоненту",
154
+ "modalForm.sub-header.chooseAttribute.singleType": "Виберіть поле для вашего Single Type",
155
+ "modelPage.attribute.relation-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": "Будь ласка, збережіть ваші зміни перед тим як створювати новий компонент або Collection Type",
161
+ "plugin.description.long": "Моделюйте структуру данних для вашого API. Створюйте нові поля та зв'язки за хвилину. Файли будуть автоматично створені та оновлені в вашему проекту.",
162
+ "plugin.description.short": "Моделюйте структуру данних для вашого API.",
163
+ "popUpForm.navContainer.advanced": "Розширені налаштування",
164
+ "popUpForm.navContainer.base": "Основне",
165
+ "popUpWarning.bodyMessage.cancel-modifications": "Ви впевнені, що хочете скасувати свої зміни?",
166
+ "popUpWarning.bodyMessage.cancel-modifications.with-components": "Ви впевнені, що хочете скасувати свої зміни? Деякі компоненти були змінені, або створені нові...",
167
+ "popUpWarning.bodyMessage.category.delete": "Ви впевнені, що хочете видалити цю категорію? Всі компоненти також будуть видалені.",
168
+ "popUpWarning.bodyMessage.component.delete": "Ви впевнені, що хочете видалити цей компонент?",
169
+ "popUpWarning.bodyMessage.contentType.delete": "Ви впевнені, що хочете видалити цей Collection Type?",
170
+ "prompt.unsaved": "Ви впевнені що хочете залишити сторінку? Всі виші зміни будуть втарчені.",
171
+ "relation.attributeName.placeholder": "Ex: author, category, tag",
172
+ "relation.manyToMany": "містить і належить багатьом",
173
+ "relation.manyToOne": "містить багато",
174
+ "relation.manyWay": "містить багато",
175
+ "relation.oneToMany": "належить до багатьох",
176
+ "relation.oneToOne": "містить і належить до однієї",
177
+ "relation.oneWay": "містить одне",
178
+ "table.attributes.title.plural": "{number} полів",
179
+ "table.attributes.title.singular": "{number} поле"
180
+ }
@@ -0,0 +1,188 @@
1
+ {
2
+ "attribute.boolean": "布尔值",
3
+ "attribute.boolean.description": "是或否, 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": "富文本",
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.draftAndPublish.description": "发布内容前必须经过“草稿”阶段",
50
+ "contentType.draftAndPublish.label": "草稿/发布系统",
51
+ "contentType.kind.change.warning": "如果您修改内容的类型,所有的 API 都会被重置:routes、controllers、services",
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.enum-empty-string": "不允许填写空值",
58
+ "error.validation.relation.targetAttribute-taken": "该名称在目标关联类型中已存在",
59
+ "form.attribute.component.option.add": "添加组件",
60
+ "form.attribute.component.option.create": "创建组件",
61
+ "form.attribute.component.option.create.description": "组件可在类型和其他组件之间共享并复用。",
62
+ "form.attribute.component.option.repeatable": "可重复组件",
63
+ "form.attribute.component.option.repeatable.description": "用于多实例(数组),如:原材料、元标记等。",
64
+ "form.attribute.component.option.reuse-existing": "使用一个已存在的组件",
65
+ "form.attribute.component.option.reuse-existing.description": "复用已创建的组件,确保数据在不同内容类型间保持一致。",
66
+ "form.attribute.component.option.single": "单一组件",
67
+ "form.attribute.component.option.single.description": "最适合的对完整地址,主要信息等字段进行分组...",
68
+ "form.attribute.item.customColumnName": "自定义列名称",
69
+ "form.attribute.item.customColumnName.description": "修改数据库列名,使得API返回更容易理解。",
70
+ "form.attribute.item.date.type.date": "日期",
71
+ "form.attribute.item.date.type.datetime": "日期与时间",
72
+ "form.attribute.item.date.type.time": "时间",
73
+ "form.attribute.item.defineRelation.fieldName": "字段名称",
74
+ "form.attribute.item.enumeration.graphql": "GraphQL的名称重写",
75
+ "form.attribute.item.enumeration.graphql.description": "允许您覆盖 GraphQL 的默认生成名称",
76
+ "form.attribute.item.enumeration.placeholder": "例如:\n上午\n中午\n下午\n晚间",
77
+ "form.attribute.item.enumeration.rules": "枚举值(一行一个)",
78
+ "form.attribute.item.maximum": "最大值",
79
+ "form.attribute.item.maximumLength": "最大长度",
80
+ "form.attribute.item.minimum": "最小值",
81
+ "form.attribute.item.minimumLength": "最小长度",
82
+ "form.attribute.item.number.type": "数字格式",
83
+ "form.attribute.item.number.type.biginteger": "big integer (如: 123456789)",
84
+ "form.attribute.item.number.type.decimal": "decimal (如: 2.22)",
85
+ "form.attribute.item.number.type.float": "float (如: 3.33333333)",
86
+ "form.attribute.item.number.type.integer": "integer (如: 10)",
87
+ "form.attribute.item.privateField": "私有字段",
88
+ "form.attribute.item.privateField.description": "该字段不会显示在 API 请求的响应中",
89
+ "form.attribute.item.requiredField": "必填",
90
+ "form.attribute.item.requiredField.description": "如果此字段为空,则无法创建字段。",
91
+ "form.attribute.item.settings.name": "设置",
92
+ "form.attribute.item.text.regex": "正则表达式",
93
+ "form.attribute.item.text.regex.description": "正则表达式文本",
94
+ "form.attribute.item.uniqueField": "唯一",
95
+ "form.attribute.item.uniqueField.description": "如果存在具有相同内容,则无法创建新记录。",
96
+ "form.attribute.media.allowed-types": "允许的媒体类型",
97
+ "form.attribute.media.allowed-types.none": "无",
98
+ "form.attribute.media.allowed-types.option-files": "文件",
99
+ "form.attribute.media.allowed-types.option-images": "图片",
100
+ "form.attribute.media.allowed-types.option-videos": "视频",
101
+ "form.attribute.media.option.multiple": "多种媒体",
102
+ "form.attribute.media.option.multiple.description": "选择滑块,转盘或多个文件下载",
103
+ "form.attribute.media.option.single": "单一的媒体",
104
+ "form.attribute.media.option.single.description": "头像,个人资料图片或封面",
105
+ "form.attribute.settings.default": "默认值",
106
+ "form.attribute.text.option.long-text": "较长的文字",
107
+ "form.attribute.text.option.long-text.description": "描述,段落等。不支持字段精确搜索。",
108
+ "form.attribute.text.option.short-text": "较短的文字",
109
+ "form.attribute.text.option.short-text.description": "标题、名称、链接(URL)等。支持字段精确搜索。",
110
+ "form.button.add-components-to-dynamiczone": "将组件添加到区域",
111
+ "form.button.add-field": "继续添加字段",
112
+ "form.button.add-first-field-to-created-component": "向这个组件添加字段",
113
+ "form.button.add.field.to.collectionType": "添加字段",
114
+ "form.button.add.field.to.component": "添加字段",
115
+ "form.button.add.field.to.contentType": "添加字段",
116
+ "form.button.add.field.to.singleType": "添加字段",
117
+ "form.button.cancel": "取消",
118
+ "form.button.collection-type.description": "适合重复内容类型使用,如:文章集合、产品集合、评论、用户等。",
119
+ "form.button.configure-component": "配置组件",
120
+ "form.button.configure-view": "配置视图",
121
+ "form.button.continue": "继续",
122
+ "form.button.delete": "删除",
123
+ "form.button.finish": "完成",
124
+ "form.button.save": "保存",
125
+ "form.button.select-component": "选择一个组件",
126
+ "form.button.single-type.description": "适合独立页面或内容使用,如:首页、关于我们、营销落地页等。",
127
+ "form.contentType.divider.draft-publish": "草稿/发布",
128
+ "from": "来自",
129
+ "injected-components.content-manager.edit-settings-view.link.components": "编辑该组件",
130
+ "injected-components.content-manager.edit-settings-view.link.content-types": "编辑该内容类型",
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": "名称",
138
+ "modalForm.attribute.form.base.name.description": "属性名称不允许使用空格",
139
+ "modalForm.attribute.form.base.name.placeholder": "如:Slug, SEO URL, Canonical URL",
140
+ "modalForm.attribute.target-field": "关联字段",
141
+ "modalForm.attribute.text.type-selection": "内容类型",
142
+ "modalForm.attributes.select-component": "选择一个组件",
143
+ "modalForm.attributes.select-components": "选择组件",
144
+ "modalForm.component.header-create": "创建一个组件",
145
+ "modalForm.components.create-component.category.label": "选择一个类别或输入名称以创建一个新类别",
146
+ "modalForm.components.icon.label": "图标",
147
+ "modalForm.contentType.header-create": "创建一个集合类型",
148
+ "modalForm.editCategory.base.name.description": "类别名称不允许有空格",
149
+ "modalForm.header-edit": "编辑 {name}",
150
+ "modalForm.header.categories": "类别",
151
+ "modalForm.singleType.header-create": "创建一个独立类型",
152
+ "modalForm.sub-header.addComponentToDynamicZone": "将新组件添加到动态区域",
153
+ "modalForm.sub-header.attribute.create": "添加新的 {type} 字段",
154
+ "modalForm.sub-header.attribute.create.step": "添加新的组件 ({step}/2)",
155
+ "modalForm.sub-header.attribute.edit": "编辑 {name}",
156
+ "modalForm.sub-header.chooseAttribute.collectionType": "为您的内容类型选择一个字段",
157
+ "modalForm.sub-header.chooseAttribute.component": "选择一个字段",
158
+ "modalForm.sub-header.chooseAttribute.singleType": "选择一个字段",
159
+ "modelPage.attribute.relation-polymorphic": "关联 (多态)",
160
+ "modelPage.attribute.relationWith": "关联",
161
+ "modelPage.contentHeader.emptyDescription.description": "该集合没有任何描述",
162
+ "none": "None",
163
+ "notification.info.autoreaload-disable": "要使用此插件,需要自动重载功能。请使用 `strapi develop` 启动服务",
164
+ "notification.info.creating.notSaved": "在创建新的内容类型或组件之前,请保存您的工作",
165
+ "plugin.description.long": "给你的 API 的数据结构建模. 快速的创造新的字段(fields)和关联(relations)。将会自动在项目中创建和更新文件。",
166
+ "plugin.description.short": "给你的 API 的数据结构建模",
167
+ "plugin.name": "内容类型生成器",
168
+ "popUpForm.navContainer.advanced": "高级设置",
169
+ "popUpForm.navContainer.base": "基础设置",
170
+ "popUpWarning.bodyMessage.cancel-modifications": "您确定要取消修改吗?",
171
+ "popUpWarning.bodyMessage.cancel-modifications.with-components": "您确定要取消修改吗?某些组件已被创建或修改了...",
172
+ "popUpWarning.bodyMessage.category.delete": "您确定要删除此类别吗?所有组件也将被删除。",
173
+ "popUpWarning.bodyMessage.component.delete": "您确定要删除此组件吗?",
174
+ "popUpWarning.bodyMessage.contentType.delete": "您确定要删除此内容类型吗?",
175
+ "popUpWarning.draft-publish.button.confirm": "是的,确认!",
176
+ "popUpWarning.draft-publish.message": "如果您禁用 “草稿/发布” 系统,所有现有的草稿都会丢失!",
177
+ "popUpWarning.draft-publish.second-message": "您确定要禁用吗?",
178
+ "prompt.unsaved": "您确定要离开吗?您所有的修改都将丢失。",
179
+ "relation.attributeName.placeholder": "例如: 作者、类型、标签",
180
+ "relation.manyToMany": "有并属于许多",
181
+ "relation.manyToOne": "有很多",
182
+ "relation.manyWay": "有很多(单向)",
183
+ "relation.oneToMany": "属于很多",
184
+ "relation.oneToOne": "有一个",
185
+ "relation.oneWay": "有一个(单向)",
186
+ "table.attributes.title.plural": "已有 {number} 个字段",
187
+ "table.attributes.title.singular": "已有 {number} 个字段"
188
+ }
@@ -0,0 +1,178 @@
1
+ {
2
+ "attribute.boolean": "布林值",
3
+ "attribute.boolean.description": "好或不好, 1或0, 是或否",
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.number": "數字",
20
+ "attribute.number.description": "數字 (正整數, 浮點數, 小數)",
21
+ "attribute.password": "密碼",
22
+ "attribute.password.description": "加密過得密碼欄位",
23
+ "attribute.relation": "關聯",
24
+ "attribute.relation.description": "指向其他集合類型",
25
+ "attribute.richtext": "多文本格式",
26
+ "attribute.richtext.description": "多文本格式編輯器",
27
+ "attribute.text": "文字",
28
+ "attribute.text.description": "短的標題或長的描述文字",
29
+ "attribute.time": "時間",
30
+ "attribute.timestamp": "時間戳記",
31
+ "attribute.uid": "UID",
32
+ "attribute.uid.description": "唯一識別碼",
33
+ "button.attributes.add.another": "新增欄位",
34
+ "button.component.add": "新增元件",
35
+ "button.component.create": "建立新元件",
36
+ "button.model.create": "建立新的集合類型",
37
+ "button.single-types.create": "建立新的單一類型",
38
+ "component.repeatable": "(可重複的)",
39
+ "components.componentSelect.no-component-available": "你已經加入了所有可以加入的元件",
40
+ "components.componentSelect.no-component-available.with-search": "搜尋不到符合的元件",
41
+ "components.componentSelect.value-component": "{number} 個元件被選取 (輸入搜尋元件)",
42
+ "components.componentSelect.value-components": "{number} 個元件被選取",
43
+ "configurations": "配置設定",
44
+ "contentType.UID.description": "UID 被使用於建立API路由及資料庫的資料表或資料集",
45
+ "contentType.collectionName.description": "使用於當內容集合名稱與資料集合名稱不同時",
46
+ "contentType.collectionName.label": "集合名稱",
47
+ "contentType.displayName.label": "顯示名稱",
48
+ "contentType.kind.change.warning": "你變更了內容類型: API 將會被重置 (路由器, 控制器, 和服務將會被覆寫).",
49
+ "error.attributeName.reserved-name": "這個欄位名稱不可以在此內容類型內被使用,有可能會破壞其他功能",
50
+ "error.contentTypeName.reserved-name": "這個內容類型名稱不可以在此專案內被使用,有可能會破壞其他功能",
51
+ "error.validation.enum-duplicate": "不允取重複的值",
52
+ "error.validation.minSupMax": "Can't be superior",
53
+ "error.validation.regex": "不合法的正規式",
54
+ "error.validation.relation.targetAttribute-taken": "該欄位名稱已被使用",
55
+ "form.attribute.component.option.add": "新增元件",
56
+ "form.attribute.component.option.create": "建立新元件",
57
+ "form.attribute.component.option.create.description": "一個可以跨元件及類型引用的元件, 可以在任何地方被引用",
58
+ "form.attribute.component.option.repeatable": "可重複的元件",
59
+ "form.attribute.component.option.repeatable.description": "適用於陣列,清單,標籤類型元件",
60
+ "form.attribute.component.option.reuse-existing": "使用一個已建立的元件",
61
+ "form.attribute.component.option.reuse-existing.description": "可複用元件已建立,可以協助你在不同的內容型別間保持資料一致性",
62
+ "form.attribute.component.option.single": "單一元件",
63
+ "form.attribute.component.option.single.description": "適用於組合型欄位群,如:完整地址,基本完整資訊 ......等",
64
+ "form.attribute.item.customColumnName": "自訂欄位名稱",
65
+ "form.attribute.item.customColumnName.description": "將資料庫欄位名稱以更易懂的格式重新命名,對 API 回應很有用。",
66
+ "form.attribute.item.date.type.date": "日期",
67
+ "form.attribute.item.date.type.datetime": "日期及時間",
68
+ "form.attribute.item.date.type.time": "時間",
69
+ "form.attribute.item.defineRelation.fieldName": "欄位名稱",
70
+ "form.attribute.item.enumeration.graphql": "GraphQL 名稱覆寫",
71
+ "form.attribute.item.enumeration.graphql.description": "可以讓您覆寫 GraphQL 的預設名稱",
72
+ "form.attribute.item.enumeration.placeholder": "例:\n早上\n中午\n晚上",
73
+ "form.attribute.item.enumeration.rules": "值 (格式為一行一個值)",
74
+ "form.attribute.item.maximum": "最大數值",
75
+ "form.attribute.item.maximumLength": "最大長度",
76
+ "form.attribute.item.minimum": "最小數值",
77
+ "form.attribute.item.minimumLength": "最小長度",
78
+ "form.attribute.item.number.type": "數字格式",
79
+ "form.attribute.item.number.type.decimal": "浮點數(decimal) (例: 2.22)",
80
+ "form.attribute.item.number.type.float": "浮點數(float) (例: 3.33333333)",
81
+ "form.attribute.item.number.type.integer": "整數 (例: 10)",
82
+ "form.attribute.item.privateField": "隱密欄位",
83
+ "form.attribute.item.privateField.description": "該欄位不會被顯示在API的回傳資料中",
84
+ "form.attribute.item.requiredField": "必填欄位",
85
+ "form.attribute.item.requiredField.description": "如果這個欄位留空,您將不能建立項目。",
86
+ "form.attribute.item.settings.name": "設定",
87
+ "form.attribute.item.text.regex": "正規式",
88
+ "form.attribute.item.text.regex.description": "文本正規表達式",
89
+ "form.attribute.item.uniqueField": "唯一欄位",
90
+ "form.attribute.item.uniqueField.description": "如果已存在的項目有一模一樣的內容,您將不能建立項目。",
91
+ "form.attribute.media.allowed-types": "選擇合法的多媒體類型",
92
+ "form.attribute.media.allowed-types.none": "None",
93
+ "form.attribute.media.allowed-types.option-files": "檔案",
94
+ "form.attribute.media.allowed-types.option-images": "圖片",
95
+ "form.attribute.media.allowed-types.option-videos": "影片",
96
+ "form.attribute.media.option.multiple": "複數多媒體",
97
+ "form.attribute.media.option.multiple.description": "適用於輪撥模組或多檔案下載",
98
+ "form.attribute.media.option.single": "單一多媒體",
99
+ "form.attribute.media.option.single.description": "適用於大頭貼或背景圖",
100
+ "form.attribute.settings.default": "預設值",
101
+ "form.attribute.text.option.long-text": "長文字",
102
+ "form.attribute.text.option.long-text.description": "適用於描述及自傳內容,但無法被精準搜尋",
103
+ "form.attribute.text.option.short-text": "短文字",
104
+ "form.attribute.text.option.short-text.description": "適用於標題,名稱,連結且可以被精準搜尋",
105
+ "form.button.add-components-to-dynamiczone": "新增元件至動態配置",
106
+ "form.button.add-field": "新增欄位",
107
+ "form.button.add-first-field-to-created-component": "新增元件的第一個欄位",
108
+ "form.button.add.field.to.collectionType": "新增其他欄位於此集合類型",
109
+ "form.button.add.field.to.component": "新增其他欄位於此元件",
110
+ "form.button.add.field.to.contentType": "新增其他欄位於此內容類型",
111
+ "form.button.add.field.to.singleType": "新增其他欄位於此單一類型",
112
+ "form.button.cancel": "取消",
113
+ "form.button.collection-type.description": "適用於複數實例,如議題文章,產品,貼文......等",
114
+ "form.button.configure-component": "配置元件",
115
+ "form.button.configure-view": "配置畫面",
116
+ "form.button.continue": "繼續",
117
+ "form.button.delete": "刪除",
118
+ "form.button.finish": "完成",
119
+ "form.button.save": "儲存",
120
+ "form.button.select-component": "選擇一個元件",
121
+ "form.button.single-type.description": "適用於單一實例,如首頁,關於 ...... 等",
122
+ "from": "從",
123
+ "injected-components.content-manager.edit-settings-view.link.components": "編輯元件",
124
+ "injected-components.content-manager.edit-settings-view.link.content-types": "編輯內容型別",
125
+ "menu.section.components.name.plural": "複數元件",
126
+ "menu.section.components.name.singular": "元件",
127
+ "menu.section.models.name.plural": "資料結構",
128
+ "menu.section.models.name.singular": "資料結構",
129
+ "menu.section.single-types.name.plural": "複數單一型別",
130
+ "menu.section.single-types.name.singular": "單一型別",
131
+ "modalForm.attribute.form.base.name": "名稱",
132
+ "modalForm.attribute.form.base.name.description": "欄位名稱不允許空白",
133
+ "modalForm.attribute.form.base.name.placeholder": "e.g. Slug, SEO URL, Canonical URL",
134
+ "modalForm.attribute.target-field": "關聯目標欄位",
135
+ "modalForm.attribute.text.type-selection": "型別選擇",
136
+ "modalForm.attributes.select-component": "選擇一個元件",
137
+ "modalForm.attributes.select-components": "選擇多個元件",
138
+ "modalForm.component.header-create": "建立元件",
139
+ "modalForm.components.create-component.category.label": "選擇或新增一個分類",
140
+ "modalForm.components.icon.label": "圖示",
141
+ "modalForm.contentType.header-create": "建立集合型別",
142
+ "modalForm.editCategory.base.name.description": "分類名稱不允許空白",
143
+ "modalForm.header-edit": "編輯 {name}",
144
+ "modalForm.header.categories": "複數分類",
145
+ "modalForm.singleType.header-create": "建立單一型別",
146
+ "modalForm.sub-header.addComponentToDynamicZone": "在動態配置區新增一個元件",
147
+ "modalForm.sub-header.attribute.create": "新增 {type} 欄位",
148
+ "modalForm.sub-header.attribute.create.step": "新增元件 ({step}/2)",
149
+ "modalForm.sub-header.attribute.edit": "編輯 {name}",
150
+ "modalForm.sub-header.chooseAttribute.collectionType": "選擇集合型別的一個欄位",
151
+ "modalForm.sub-header.chooseAttribute.component": "選擇元件的一個欄位",
152
+ "modalForm.sub-header.chooseAttribute.singleType": "選擇單一型別的一個欄位",
153
+ "modelPage.attribute.relation-polymorphic": "關聯 (多對多多型)",
154
+ "modelPage.attribute.relationWith": "關聯到",
155
+ "modelPage.contentHeader.emptyDescription.description": "這個資料結構沒有任何說明",
156
+ "none": "None",
157
+ "notification.info.autoreaload-disable": "啟用這個擴充模組需要重新啟動,使用 `strapi develop` 指令重新啟動",
158
+ "notification.info.creating.notSaved": "在建立新的集合型別或元件前請記得儲存",
159
+ "plugin.description.long": "為您的 API 定義資料結構,使您輕鬆新增欄位和關聯結構,您所做的修改會自動更新專案。",
160
+ "plugin.description.short": "為您的 API 定義資料結構",
161
+ "plugin.name": "內容型別建造器",
162
+ "popUpForm.navContainer.advanced": "進階設定",
163
+ "popUpForm.navContainer.base": "基本設定",
164
+ "popUpWarning.bodyMessage.cancel-modifications": "你確定要取消你的修改嗎?",
165
+ "popUpWarning.bodyMessage.cancel-modifications.with-components": "你確定要取消你的修改嗎? 部份元件已被新增或修改...",
166
+ "popUpWarning.bodyMessage.category.delete": "你確定要刪除此分類嗎? 所有此分類內的元件都會被刪除.",
167
+ "popUpWarning.bodyMessage.component.delete": "你確定要刪除此元件嗎?",
168
+ "popUpWarning.bodyMessage.contentType.delete": "您確定要刪除這個資料結構嗎?",
169
+ "prompt.unsaved": "你確定要離開嗎? 所有你的修改都會失效",
170
+ "relation.attributeName.placeholder": "Ex: 作者, 類別, tag...",
171
+ "relation.manyToMany": "有而且屬於許多",
172
+ "relation.manyToOne": "有許多",
173
+ "relation.oneToMany": "屬於許多",
174
+ "relation.oneToOne": "一對一到",
175
+ "relation.oneWay": "有一個",
176
+ "table.attributes.title.plural": "{number} 個欄位",
177
+ "table.attributes.title.singular": "{number} 個欄位"
178
+ }
@@ -0,0 +1,7 @@
1
+ const convertAttrObjToArray = attributes => {
2
+ return Object.keys(attributes).map((key, index) => {
3
+ return { ...attributes[key], name: key, index };
4
+ });
5
+ };
6
+
7
+ export default convertAttrObjToArray;