@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,179 @@
1
+ {
2
+ "attribute.boolean": "Boolean",
3
+ "attribute.boolean.description": "Ya atau tidak, 1 atau 0, benar atau salah",
4
+ "attribute.component": "Komponen",
5
+ "attribute.component.description": "Ruang yang boleh diulang atau digunakan semula",
6
+ "attribute.date": "Tarikh",
7
+ "attribute.date.description": "Pemilih tarikh dengan jam, minit dan saat",
8
+ "attribute.datetime": "Masa tarikh",
9
+ "attribute.dynamiczone": "Zon dinamik",
10
+ "attribute.dynamiczone.description": "Memilih komponen secara dinamik semasa mengedit kandungan",
11
+ "attribute.email": "E-mel",
12
+ "attribute.email.description": "Ruang e-mel dengan pengesahan format",
13
+ "attribute.enumeration": "Pilihan",
14
+ "attribute.enumeration.description": "Senarai untuk dipilih",
15
+ "attribute.json": "JSON",
16
+ "attribute.json.description": "Data dalam format JSON",
17
+ "attribute.media": "Media",
18
+ "attribute.media.description": "Fail seperti gambar, video, dll",
19
+ "attribute.number": "Nombor",
20
+ "attribute.number.description": "Nombor (nombor bulat, apungan, perpuluhan)",
21
+ "attribute.password": "Kata Laluan",
22
+ "attribute.password.description": "Ruang kata laluan dengan penyulitan",
23
+ "attribute.relation": "Perhubung",
24
+ "attribute.relation.description": "Menghubungkan Jenis Koleksi",
25
+ "attribute.richtext": "Teks beraneka",
26
+ "attribute.richtext.description": "Penyunting teks beraneka dengan pilihan format",
27
+ "attribute.text": "Teks",
28
+ "attribute.text.description": "Teks kecil atau panjang seperti tajuk atau penerangan",
29
+ "attribute.time": "Masa",
30
+ "attribute.timestamp": "Cap waktu",
31
+ "attribute.uid": "UID",
32
+ "attribute.uid.description": "Pengecam unik",
33
+ "button.attributes.add.another": "Tambah ruang baru",
34
+ "button.component.add": "Tambah komponen",
35
+ "button.component.create": "Tambah komponen",
36
+ "button.model.create": "Tambah jenis koleksi",
37
+ "button.single-types.create": "Tambah jenis tunggal",
38
+ "component.repeatable": "(boleh diulang)",
39
+ "components.componentSelect.no-component-available": "Anda telah tambah semua komponen anda",
40
+ "components.componentSelect.no-component-available.with-search": "Tidak ada komponen dijumpai dengan carian anda",
41
+ "components.componentSelect.value-component": "{number} komponen dipilih (taip untuk mencari komponen)",
42
+ "components.componentSelect.value-components": "{number} komponen dipilih",
43
+ "configurations": "konfigurasi",
44
+ "contentType.UID.description": "UID digunakan untuk menghasilkan laluan(routes) API dan jadual pangkalan data/koleksi ",
45
+ "contentType.collectionName.description": "Berguna apabila nama Jenis Kandungan dan nama jadual anda berbeza",
46
+ "contentType.collectionName.label": "Nama koleksi",
47
+ "contentType.displayName.label": "Nama paparan",
48
+ "contentType.kind.change.warning": "Anda baru sahaja menukar sesuatu jenis kandungan: API akan diset semula (laluan, pengawal, dan perkhidmatan akan ditulis semula) .",
49
+ "error.attributeName.reserved-name": "Nama ini tidak boleh digunakan dalam jenis kandungan anda kerana ia boleh merosakkan fungsi lain",
50
+ "error.contentTypeName.reserved-name": "Nama ini tidak boleh digunakan dalam projek anda kerana ia boleh merosakkan fungsi lain",
51
+ "error.validation.enum-duplicate": "dua data yang sama tidak dibenarkan",
52
+ "error.validation.minSupMax": "Tidak boleh lebih dari maksimum",
53
+ "error.validation.regex": "Corak regex tidak sah",
54
+ "error.validation.relation.targetAttribute-taken": "Nama ini telah wujud dalam sasaran",
55
+ "form.attribute.component.option.add": "Tambah komponen",
56
+ "form.attribute.component.option.create": "Cip komponen baru",
57
+ "form.attribute.component.option.create.description": "Komponen dikongsi antara pelbagai jenis dan komponen, ia akan tersedia dan dapat diakses di mana sahaja .",
58
+ "form.attribute.component.option.repeatable": "Komponen yang boleh diulang",
59
+ "form.attribute.component.option.repeatable.description": "Sesuai untuk pelbagai pengganti (array) ramuan, tag meta, dan lain-lain ..",
60
+ "form.attribute.component.option.reuse-existing": "Gunakan komponen yang ada",
61
+ "form.attribute.component.option.reuse-existing.description": "Gunakan semula komponen yang telah dibuat untuk memastikan data anda tetap konsisten di semua jenis kandungan",
62
+ "form.attribute.component.option.single": "Komponen tunggal",
63
+ "form.attribute.component.option.single.description": "Sesuai untuk ruang kumpulan seperti alamat penuh, maklumat utama dan lain-lain ...",
64
+ "form.attribute.item.customColumnName": "Gubah nama lajur",
65
+ "form.attribute.item.customColumnName.description": "Ini berguna untuk menamakan semula nama lajur didalam pangkalan data dengan format yang lebih komprehensif untuk respons API",
66
+ "form.attribute.item.date.type.date": "tarikh",
67
+ "form.attribute.item.date.type.datetime": "masa dan tarikh",
68
+ "form.attribute.item.date.type.time": "masa",
69
+ "form.attribute.item.defineRelation.fieldName": "Nama ruang",
70
+ "form.attribute.item.enumeration.graphql": "Ganti nama untuk GraphQL",
71
+ "form.attribute.item.enumeration.graphql.description": "Membolehkan anda menggantikan nama yang dihasilkan secara lalai untuk GraphQL",
72
+ "form.attribute.item.enumeration.placeholder": "Cth: \nmalam \nnoon \nevening",
73
+ "form.attribute.item.enumeration.rules": "Pilihan (satu baris setiap pilihan)",
74
+ "form.attribute.item.maximum": "Nilai maksimum",
75
+ "form.attribute.item.maximumLength": "Panjang maksimum",
76
+ "form.attribute.item.minimum": "Nilai minimum",
77
+ "form.attribute.item.minimumLength": "Panjang minimum",
78
+ "form.attribute.item.number.type": "Format nombor",
79
+ "form.attribute.item.number.type.biginteger": "nombor bulat besar (cth: 123456789)",
80
+ "form.attribute.item.number.type.decimal": "perpuluhan (cth: 2.22)",
81
+ "form.attribute.item.number.type.float": "apungan (cth: 3.33333333)",
82
+ "form.attribute.item.number.type.integer": "integer (cth: 10)",
83
+ "form.attribute.item.privateField": "Ruang bersifat persendirian",
84
+ "form.attribute.item.privateField.description": "Ruang ini tidak akan muncul dalam respons API",
85
+ "form.attribute.item.requiredField": "Ruang yang wajib",
86
+ "form.attribute.item.requiredField.description": "Anda tidak akan dapat membuat entri jika ruang ini kosong",
87
+ "form.attribute.item.settings.name": "Tetapan",
88
+ "form.attribute.item.text.regex": "Corak RegExp",
89
+ "form.attribute.item.text.regex.description": "Teks regular expression",
90
+ "form.attribute.item.uniqueField": "Ruang yang unik",
91
+ "form.attribute.item.uniqueField.description": "Anda tidak boleh buat entri jika ada entri yang sama dengan yang kandungan",
92
+ "form.attribute.media.allowed-types": "Pilih jenis media yang dibenarkan",
93
+ "form.attribute.media.allowed-types.none": "Tiada",
94
+ "form.attribute.media.allowed-types.option-files": "Fail",
95
+ "form.attribute.media.allowed-types.option-images": "Gambar",
96
+ "form.attribute.media.allowed-types.option-videos": "Video",
97
+ "form.attribute.media.option.multiple": "Pelbagai media",
98
+ "form.attribute.media.option.multiple.description": "Sesuai untuk slaid, karusel atau muat turun fail yang banyak",
99
+ "form.attribute.media.option.single": "Media tunggal",
100
+ "form.attribute.media.option.single.description": "Sesuai untuk avatar, gambar profil atau sampul",
101
+ "form.attribute.settings.default": "Isi yang asal",
102
+ "form.attribute.text.option.long-text": "Teks panjang",
103
+ "form.attribute.text.option.long-text.description": "Sesuai untuk penerangan, biografi. Pencarian yang tepat dinyahaktifkan.",
104
+ "form.attribute.text.option.short-text": "Teks pendek",
105
+ "form.attribute.text.option.short-text.description": "Sesuai untuk tajuk, nama, pautan (URL). Ia juga membenarkan carian yang tepat .",
106
+ "form.button.add-components-to-dynamiczone": "Tambah komponen ke zon",
107
+ "form.button.add-field": "Tambah ruang lain",
108
+ "form.button.add-first-field-to-created-component": "Tambah ruang pertama ke komponen",
109
+ "form.button.add.field.to.collectionType": "Tambah ruang lain ke jenis koleksi ini",
110
+ "form.button.add.field.to.component": "Tambah ruang lain ke komponen ini",
111
+ "form.button.add.field.to.contentType": "Tambah ruang lain ke jenis kandungan ini",
112
+ "form.button.add.field.to.singleType": "Tambah ruang lain untuk jenis tunggal ini",
113
+ "form.button.cancel": "Batal",
114
+ "form.button.collection-type.description": "Sesuai untuk data yang banyak seperti artikel, produk, komen dan lain-lain",
115
+ "form.button.configure-component": "Tetapkan komponen",
116
+ "form.button.configure-view": "Susun paparan",
117
+ "form.button.continue": "Teruskan",
118
+ "form.button.delete": "Padam",
119
+ "form.button.finish": "Selesai",
120
+ "form.button.save": "Simpan",
121
+ "form.button.select-component": "Pilih komponen",
122
+ "form.button.single-type.description": "Sesuai untuk data tunggal seperti mengenai kami, laman utama dan lain-lain",
123
+ "from": "dari",
124
+ "injected-components.content-manager.edit-settings-view.link.components": "Edit komponen",
125
+ "injected-components.content-manager.edit-settings-view.link.content-types": "Edit jenis kandungan",
126
+ "menu.section.components.name.plural": "Komponen-komponen",
127
+ "menu.section.components.name.singular": "Komponen",
128
+ "menu.section.models.name.plural": "Jenis Koleksi",
129
+ "menu.section.models.name.singular": "Jenis Koleksi",
130
+ "menu.section.single-types.name.plural": "Jenis Tunggal",
131
+ "menu.section.single-types.name.singular": "Jenis Tunggal",
132
+ "modalForm.attribute.form.base.name": "Nama",
133
+ "modalForm.attribute.form.base.name.description": "Tidak boleh ada jarak dalam nama",
134
+ "modalForm.attribute.form.base.name.placeholder": "cth. Slug, URL SEO, URL Canonical",
135
+ "modalForm.attribute.target-field": "Ruang terpasang",
136
+ "modalForm.attribute.text.type-selection": "Jenis",
137
+ "modalForm.attributes.select-component": "Pilih komponen",
138
+ "modalForm.attributes.select-components": "Pilih komponen",
139
+ "modalForm.component.header-create": "Cipta komponen",
140
+ "modalForm.components.create-component.category.label": "Pilih kategori atau masukkan nama untuk buat yang baru",
141
+ "modalForm.components.icon.label": "Ikon",
142
+ "modalForm.contentType.header-create": "Cipta jenis koleksi",
143
+ "modalForm.editCategory.base.name.description": "Tidak boleh ada jarak dalam nama kategori",
144
+ "modalForm.header-edit": "Edit {name}",
145
+ "modalForm.header.categories": "Kategori",
146
+ "modalForm.singleType.header-create": "Cipta jenis tunggal",
147
+ "modalForm.sub-header.addComponentToDynamicZone": "Tambah komponen baru ke zon dinamik",
148
+ "modalForm.sub-header.attribute.create": "Tambah {type} baru",
149
+ "modalForm.sub-header.attribute.create.step": "Tambah komponen baru ({step} / 2)",
150
+ "modalForm.sub-header.attribute.edit": "Edit {name}",
151
+ "modalForm.sub-header.chooseAttribute.collectionType": "Pilih ruang untuk jenis koleksi anda",
152
+ "modalForm.sub-header.chooseAttribute.component": "Pilih ruang untuk komponen anda",
153
+ "modalForm.sub-header.chooseAttribute.singleType": "Pilih ruang untuk jenis tunggal anda",
154
+ "modelPage.attribute.relation-polymorphic": "Perhubung (polimorfik)",
155
+ "modelPage.attribute.relationWith": "Terhubung dengan",
156
+ "modelPage.contentHeader.emptyDescription.description": "Tiada penerangan",
157
+ "none": "Tiada",
158
+ "notification.info.autoreaload-disable": "Ciri autoReload diperlukan untuk menggunakan plugin ini. Mulakan pelayan anda dengan `strapi Develop`",
159
+ "notification.info.creating.notSaved": "Sila simpan kerja anda sebelum tambah jenis koleksi atau komponen baru",
160
+ "plugin.description.long": "Memodelkan struktur data API anda. Buat ruang dan hubungan baru hanya dalam satu minit. Fail dibuat dan dikemas kini secara automatik dalam projek anda .",
161
+ "plugin.description.short": "Memodelkan struktur data API anda .",
162
+ "popUpForm.navContainer.advanced": "Tetapan lanjut",
163
+ "popUpForm.navContainer.base": "Tetapan asas",
164
+ "popUpWarning.bodyMessage.cancel-modifications": "Adakah anda pasti mahu membatalkan pengubahsuaian anda ?",
165
+ "popUpWarning.bodyMessage.cancel-modifications.with-components": "Adakah anda pasti mahu membatalkan pengubahsuaian anda? Beberapa komponen telah ditambah atau diubah suai ...",
166
+ "popUpWarning.bodyMessage.category.delete": "Adakah anda pasti mahu memadamkan kategori ini? Semua komponen juga akan dihapuskan .",
167
+ "popUpWarning.bodyMessage.component.delete": "Adakah anda pasti mahu memadamkan komponen ini ?",
168
+ "popUpWarning.bodyMessage.contentType.delete": "Adakah anda pasti mahu memadamkan jenis koleksi ini ?",
169
+ "prompt.unsaved": "Adakah anda pasti mahu keluar? Semua pengubahsuaian anda akan hilang .",
170
+ "relation.attributeName.placeholder": "Cth: pengarang, kategori, teg",
171
+ "relation.manyToMany": "mempunyai dan dimiliki oleh banyak",
172
+ "relation.manyToOne": "ada banyak",
173
+ "relation.manyWay": "ada banyak",
174
+ "relation.oneToMany": "dimiliki oleh banyak",
175
+ "relation.oneToOne": "mempunyai dan dimiliki oleh satu",
176
+ "relation.oneWay": "mempunyai satu",
177
+ "table.attributes.title.plural": "{number} ruang",
178
+ "table.attributes.title.singular": "{number} ruang"
179
+ }
@@ -0,0 +1,171 @@
1
+ {
2
+ "attribute.boolean": "Boolean",
3
+ "attribute.boolean.description": "Ja of nee, 1 of 0, waar of onwaar",
4
+ "attribute.component": "Component",
5
+ "attribute.component.description": "Groep van herbruikbare en herhaalbare velden",
6
+ "attribute.date": "Datum",
7
+ "attribute.date.description": "Een datumkiezer met uren, minuten en seconden",
8
+ "attribute.datetime": "Datum-tijd",
9
+ "attribute.dynamiczone": "Dynamische zone",
10
+ "attribute.dynamiczone.description": "Kies dynamisch componenten bij het bewerken van content",
11
+ "attribute.email": "E-mail",
12
+ "attribute.email.description": "E-mailveld met formaat validatie",
13
+ "attribute.enumeration": "Opsomming",
14
+ "attribute.enumeration.description": "Lijst met waarden, kies er een",
15
+ "attribute.json": "JSON",
16
+ "attribute.json.description": "Gegevens in JSON formaat",
17
+ "attribute.media": "Media",
18
+ "attribute.media.description": "Bestanden zoals afbeeldingen, video's, enz",
19
+ "attribute.null": " ",
20
+ "attribute.number": "Getal",
21
+ "attribute.number.description": "Getallen (integer, float, decimal)",
22
+ "attribute.password": "Wachtwoord",
23
+ "attribute.password.description": "Wachtwoordveld met versleuteling",
24
+ "attribute.relation": "Relatie",
25
+ "attribute.relation.description": "Verwijst naar een collectie type",
26
+ "attribute.richtext": "Rijk tekst",
27
+ "attribute.richtext.description": "Een rijk tekst-editor met opmaakopties",
28
+ "attribute.text": "Tekst",
29
+ "attribute.text.description": "Kleine of lange tekst zoals een titel of beschrijving",
30
+ "attribute.time": "Tijd",
31
+ "attribute.timestamp": "Tijdstempel",
32
+ "attribute.uid": "UID",
33
+ "attribute.uid.description": "Unieke identificatie",
34
+ "button.attributes.add.another": "Voeg een veld toe",
35
+ "button.component.add": "Voeg een component toe",
36
+ "button.component.create": "Maak een nieuw component",
37
+ "button.model.create": "Maak een nieuw collectie type",
38
+ "button.single-types.create": "Maak een nieuw enkel type",
39
+ "component.repeatable": "(herhaalbaar)",
40
+ "components.componentSelect.no-component-available": "Alle componenten zijn al toegevoegd",
41
+ "components.componentSelect.no-component-available.with-search": "Er komt geen component overeen met de zoekopdracht",
42
+ "components.componentSelect.value-component": "{number} componenten geselecteerd (typ om een component te zoeken)",
43
+ "components.componentSelect.value-components": "{number} componenten geselecteerd",
44
+ "configurations": "configuraties",
45
+ "contentType.UID.description": "De UID wordt gebruikt om de API-routes, databasetabellen en -collecties te genereren",
46
+ "contentType.collectionName.description": "Handig wanneer de naam van het collectie type en de tabelnaam verschillen",
47
+ "contentType.collectionName.label": "Collectienaam",
48
+ "contentType.displayName.label": "Weergavenaam",
49
+ "contentType.kind.change.warning": "Je hebt zojuist het soort content type gewijzigd. De API wordt gereset (routes, controllers en services worden overschreven).",
50
+ "error.contentTypeName.reserved-name": "Deze naam kan niet worden gebruikt in het project, omdat andere functionaliteiten zou kunnen breken",
51
+ "error.validation.enum-duplicate": "Dubbele waarden zijn niet toegestaan",
52
+ "error.validation.minSupMax": "Kan niet superieur zijn",
53
+ "error.validation.relation.targetAttribute-taken": "Deze naam bestaat al",
54
+ "form.attribute.component.option.add": "Voeg een component toe",
55
+ "form.attribute.component.option.create": "Maak een nieuw component",
56
+ "form.attribute.component.option.create.description": "Een component wordt gedeeld tussen types en componenten, het zal overal beschikbaar zijn.",
57
+ "form.attribute.component.option.repeatable": "Herhaalbaar component",
58
+ "form.attribute.component.option.repeatable.description": "Het beste voor meerdere instanties (array) van ingrediënten, metatags, enz",
59
+ "form.attribute.component.option.reuse-existing": "Gebruik een bestaand component",
60
+ "form.attribute.component.option.reuse-existing.description": "Hergebruik een reeds gemaakt component om de gegevens consistent te houden voor alle Content types.",
61
+ "form.attribute.component.option.single": "Enkel component",
62
+ "form.attribute.component.option.single.description": "het beste voor het groeperen van velden zoals volledig adres, hoofdinformatie, enz",
63
+ "form.attribute.item.customColumnName": "Aangepaste kolom namen",
64
+ "form.attribute.item.customColumnName.description": "Dit is handig om database kolom namen te hernoemen in een meer uitgebreid formaat voor de API responses",
65
+ "form.attribute.item.date.type.date": "datum",
66
+ "form.attribute.item.date.type.datetime": "datum-tijd",
67
+ "form.attribute.item.date.type.time": "tijd",
68
+ "form.attribute.item.defineRelation.fieldName": "Veld naam",
69
+ "form.attribute.item.enumeration.graphql": "Naam overschreven voor GraphQL",
70
+ "form.attribute.item.enumeration.graphql.description": "Zorgt ervoor dat je de standaard gegenereerde naam voor GraphQL kan overschrijven",
71
+ "form.attribute.item.enumeration.placeholder": "Bijv.:\nochtend\nmiddag\navond",
72
+ "form.attribute.item.enumeration.rules": "Waardes (één regel per waarde)",
73
+ "form.attribute.item.maximum": "Maximale waarde",
74
+ "form.attribute.item.maximumLength": "Maximale lengte",
75
+ "form.attribute.item.minimum": "Minimale waarde",
76
+ "form.attribute.item.minimumLength": "Minimale lengte",
77
+ "form.attribute.item.number.type": "Nummer formaat",
78
+ "form.attribute.item.number.type.biginteger": "big integer (bijv.: 123456789)",
79
+ "form.attribute.item.number.type.decimal": "decimaal (bijv.: 2.22)",
80
+ "form.attribute.item.number.type.float": "float (bijv.: 3.33333333)",
81
+ "form.attribute.item.number.type.integer": "integer (bijv.: 10)",
82
+ "form.attribute.item.privateField": "Privéveld",
83
+ "form.attribute.item.privateField.description": "Dit veld wordt niet weergegeven in de API response",
84
+ "form.attribute.item.requiredField": "Verplicht veld",
85
+ "form.attribute.item.requiredField.description": "Je kan geen item aanmaken als dit veld leeg is",
86
+ "form.attribute.item.settings.name": "Instellingen",
87
+ "form.attribute.item.uniqueField": "Uniek veld",
88
+ "form.attribute.item.uniqueField.description": "Je kan geen item aanmaken als er een item is met gelijke inhoud",
89
+ "form.attribute.media.option.multiple": "Meerdere media",
90
+ "form.attribute.media.option.multiple.description": "Het beste voor sliders, carrousels of het downloaden van meerdere bestanden",
91
+ "form.attribute.media.option.single": "Enkel media",
92
+ "form.attribute.media.option.single.description": "het beste voor avatar, profielfoto of omslag",
93
+ "form.attribute.settings.default": "Standaard waarde",
94
+ "form.attribute.text.option.long-text": "Lange tekst",
95
+ "form.attribute.text.option.long-text.description": "Het beste voor beschrijvingen of een biografie. Exact zoeken is uitgeschakeld.",
96
+ "form.attribute.text.option.short-text": "Korte tekst",
97
+ "form.attribute.text.option.short-text.description": "Het beste voor titels, namen, linken (URL). Exact zoeken op het veld is mogelijk.",
98
+ "form.button.add-components-to-dynamiczone": "Voeg componenten toe aan de zone",
99
+ "form.button.add-field": "Voeg een veld toe",
100
+ "form.button.add-first-field-to-created-component": "Voeg een eerste veld toe aan het component",
101
+ "form.button.add.field.to.collectionType": "Voeg een veld toe aan dit collectie type",
102
+ "form.button.add.field.to.component": "Voeg een veld toe aan dit component",
103
+ "form.button.add.field.to.contentType": "Voeg een veld toe aan dit content type",
104
+ "form.button.add.field.to.singleType": "Voeg een veld toe aan dit enkel type",
105
+ "form.button.cancel": "Annuleren",
106
+ "form.button.collection-type.description": "Het beste voor meerdere instanties zoals artikelen, producten, opmerkingen, enz.",
107
+ "form.button.configure-component": "Configureer het component",
108
+ "form.button.configure-view": "Configureer de weergave",
109
+ "form.button.continue": "Doorgaan",
110
+ "form.button.delete": "Verwijderen",
111
+ "form.button.finish": "Voltooien",
112
+ "form.button.save": "Opslaan",
113
+ "form.button.select-component": "Selecteer een component",
114
+ "form.button.single-type.description": "Het beste voor een enkele instantie zoals over ons, homepage, enz.",
115
+ "from": "van",
116
+ "injected-components.content-manager.edit-settings-view.link.components": "Bewerk het component",
117
+ "injected-components.content-manager.edit-settings-view.link.content-types": "Bewerk het content type",
118
+ "menu.section.components.name.plural": "Componenten",
119
+ "menu.section.components.name.singular": "Component",
120
+ "menu.section.models.name.plural": "Collectie types",
121
+ "menu.section.models.name.singular": "Collectie type",
122
+ "menu.section.single-types.name.plural": "Enkel types",
123
+ "menu.section.single-types.name.singular": "Enkel type",
124
+ "modalForm.attribute.form.base.name": "Naam",
125
+ "modalForm.attribute.form.base.name.description": "Er is geen ruimte toegestaan voor de naam van het attribuut",
126
+ "modalForm.attribute.form.base.name.placeholder": "Bijv.: Slug, SEO URL, Canonical URL",
127
+ "modalForm.attribute.target-field": "Gekoppeld veld",
128
+ "modalForm.attribute.text.type-selection": "Type",
129
+ "modalForm.attributes.select-component": "Selecteer een component",
130
+ "modalForm.attributes.select-components": "Selecteer de componenten",
131
+ "modalForm.component.header-create": "Maak een component",
132
+ "modalForm.components.create-component.category.label": "Selecteer een categorie of voer een naam in om een nieuwe te maken",
133
+ "modalForm.components.icon.label": "Icoon",
134
+ "modalForm.contentType.header-create": "Maak een collectie type",
135
+ "modalForm.editCategory.base.name.description": "Er is geen spatie toegestaan in de naam van een categorie",
136
+ "modalForm.header-edit": "Bewerk {name}",
137
+ "modalForm.header.categories": "Categorieën",
138
+ "modalForm.singleType.header-create": "Maak een enkel type",
139
+ "modalForm.sub-header.addComponentToDynamicZone": "Voeg een nieuw component toe aan de dynamische zone",
140
+ "modalForm.sub-header.attribute.create": "Voeg een nieuw {type} veld toe",
141
+ "modalForm.sub-header.attribute.create.step": "Nieuw component toevoegen ({step}/2)",
142
+ "modalForm.sub-header.attribute.edit": "Bewerk {name}",
143
+ "modalForm.sub-header.chooseAttribute.collectionType": "Selecteer een veld voor het collectie type",
144
+ "modalForm.sub-header.chooseAttribute.component": "Selecteer een veld voor het component",
145
+ "modalForm.sub-header.chooseAttribute.singleType": "Selecteer een veld voor het enkel type",
146
+ "modelPage.attribute.relation-polymorphic": "Relatie (polymorf)",
147
+ "modelPage.attribute.relationWith": "Relatie met",
148
+ "modelPage.contentHeader.emptyDescription.description": "Er is geen beschrijving voor dit collectie type",
149
+ "none": "Geen",
150
+ "notification.info.autoreaload-disable": "De autoReload-functie is vereist om deze plug-in te gebruiken. Herstart de server met `strapi develop`",
151
+ "notification.info.creating.notSaved": "Sla het werk op voordat je een nieuw collectie type of component aanmaakt",
152
+ "plugin.description.long": "Modelleer de gegevensstructuur van de API. Maak nieuwe velden en relaties in slechts een minuut. De bestanden worden automatisch aangemaakt en bijgewerkt in jouw project.",
153
+ "plugin.description.short": "Modelleer de gegevensstructuur van de API",
154
+ "popUpForm.navContainer.advanced": "Geavanceerde instellingen",
155
+ "popUpForm.navContainer.base": "Standaard instellingen",
156
+ "popUpWarning.bodyMessage.cancel-modifications": "Weet je zeker dat je de wijzigingen wilt annuleren?",
157
+ "popUpWarning.bodyMessage.cancel-modifications.with-components": "Are you sure you want to cancel your modifications? Some components have been created or modified...",
158
+ "popUpWarning.bodyMessage.category.delete": "Are you sure you want to delete this category? All the components will also be deleted.",
159
+ "popUpWarning.bodyMessage.component.delete": "Are you sure you want to delete this component?",
160
+ "popUpWarning.bodyMessage.contentType.delete": "Weet je zeker dat je dit collectie type wilt verwijderen?",
161
+ "prompt.unsaved": "Weet je zeker dat je wilt stoppen? Al uw wijzigingen gaan verloren.",
162
+ "relation.attributeName.placeholder": "Bijv.: auteur, categorie, tag",
163
+ "relation.manyToMany": "heeft en behoort tot veel",
164
+ "relation.manyToOne": "heeft veel en behoort tot één",
165
+ "relation.manyWay": "heeft veel",
166
+ "relation.oneToMany": "behoort tot vele",
167
+ "relation.oneToOne": "heeft en behoort tot één",
168
+ "relation.oneWay": "heeft één",
169
+ "table.attributes.title.plural": "{number} velden",
170
+ "table.attributes.title.singular": "{number} veld"
171
+ }
@@ -0,0 +1,152 @@
1
+ {
2
+ "attribute.boolean": "Typ logiczny",
3
+ "attribute.boolean.description": "Tak lub nie, 1 lub 0, true lub false",
4
+ "attribute.component": "Komponent",
5
+ "attribute.component.description": "Grupa pól, które można powtarzać lub używać ponownie",
6
+ "attribute.date": "Data",
7
+ "attribute.date.description": "Wybór daty z godzinami, minutami i sekundami",
8
+ "attribute.datetime": "Data i godzina",
9
+ "attribute.dynamiczone": "Strefa dynamiczna",
10
+ "attribute.dynamiczone.description": "Dynamicznie wybierz komponent podczas edycji treści",
11
+ "attribute.email": "Email",
12
+ "attribute.email.description": "Pole email ze sprawdzaniem poprawno",
13
+ "attribute.enumeration": "Wyliczenie",
14
+ "attribute.enumeration.description": "Lista wartości do jednokrotnego wyboru",
15
+ "attribute.json": "JSON",
16
+ "attribute.json.description": "Dane w formacie JSON",
17
+ "attribute.media": "Media",
18
+ "attribute.media.description": "Pliki jak obrazki, filmy, itp.",
19
+ "attribute.null": " ",
20
+ "attribute.number": "Numer",
21
+ "attribute.number.description": "Numery (liczba całkowita, liczba zmiennoprzecinkowa, dziesiętna)",
22
+ "attribute.password": "Hasło",
23
+ "attribute.password.description": "Pole hasła z szyfrowaniem",
24
+ "attribute.relation": "Relacja",
25
+ "attribute.relation.description": "Odnośnik do innego modelu",
26
+ "attribute.richtext": "Tekst sformatowany",
27
+ "attribute.richtext.description": "Edytor tekstu z możliwością formatowania",
28
+ "attribute.text": "Tekst",
29
+ "attribute.text.description": "Krótki lub długi tekst jak tytuł lub opis",
30
+ "attribute.time": "Czas",
31
+ "attribute.uid": "UID",
32
+ "attribute.uid.description": "Unikalny identyfikator",
33
+ "button.attributes.add.another": "Dodaj kolejne pole",
34
+ "button.component.add": "Dodaj komponent",
35
+ "button.component.create": "Utwórz komponent",
36
+ "button.model.create": "Utwórz nowy typ zawartości",
37
+ "component.repeatable": "(powtarzalne)",
38
+ "components.componentSelect.no-component-available": "Dodałeś już wszystkie swoje komponenty",
39
+ "components.componentSelect.no-component-available.with-search": "Brak elementów pasujących do Twojego wyszukiwania",
40
+ "components.componentSelect.value-component": "{number} wybrany komponent (wpisz, aby wyszukać komponent)",
41
+ "components.componentSelect.value-components": "{number} wybranych komponentów",
42
+ "configurations": "konfiguracje",
43
+ "contentType.UID.description": "UID służy do generowania ścieżek API i tabel/kolekcji baz danych",
44
+ "contentType.collectionName.description": "Przydatne, gdy nazwa typu zawartości i nazwa tabeli różnią się",
45
+ "contentType.collectionName.label": "Nazwa kolekcji",
46
+ "contentType.displayName.label": "Wyświetlana nazwa",
47
+ "error.contentTypeName.reserved-name": "Ta nazwa nie może być używana w Twoim projekcie, ponieważ może uszkodzić inne funkcje",
48
+ "error.validation.minSupMax": "Nie może być wyższy",
49
+ "form.attribute.component.option.add": "Dodaj komponent",
50
+ "form.attribute.component.option.create": "Utwórz nowy komponent",
51
+ "form.attribute.component.option.create.description": "Komponent jest współużytkowany przez typy i komponenty, będzie dostępny i dostępny wszędzie.",
52
+ "form.attribute.component.option.repeatable": "Powtarzalny komponent",
53
+ "form.attribute.component.option.repeatable.description": "Najlepsze dla wielu wystąpień (tablicy) np. składników, metatagów itp.",
54
+ "form.attribute.component.option.reuse-existing": "Użyj istniejącego komponentu",
55
+ "form.attribute.component.option.reuse-existing.description": "Ponownie użyj utworzonego już komponentu, aby zachować spójność danych między typami treści.",
56
+ "form.attribute.component.option.single": "Pojedynczy komponent",
57
+ "form.attribute.component.option.single.description": "Najlepsze do grupowania pól takich jak pełny adres, główne informacje itp.",
58
+ "form.attribute.item.customColumnName": "Własne nazwy tabel",
59
+ "form.attribute.item.customColumnName.description": "Jest to przydatne do zmiany nazwy tabel bazy danych w bardziej wszechstronnym formacie odpowiedzi API",
60
+ "form.attribute.item.date.type.date": "data",
61
+ "form.attribute.item.date.type.datetime": "data i czas",
62
+ "form.attribute.item.date.type.time": "czas",
63
+ "form.attribute.item.defineRelation.fieldName": "Atrybut",
64
+ "form.attribute.item.enumeration.graphql": "Nadpisanie nazwy dla GraphQL",
65
+ "form.attribute.item.enumeration.graphql.description": "Pozwalaj na nadpisanie domyślnie wygenerowanej nazwy dla GraphQL.",
66
+ "form.attribute.item.enumeration.placeholder": "Przykład:\nrano\npołudnie\nwieczór",
67
+ "form.attribute.item.enumeration.rules": "Values (one line per value)",
68
+ "form.attribute.item.maximum": "Maksymalna wartość",
69
+ "form.attribute.item.maximumLength": "Maksymalna długość",
70
+ "form.attribute.item.minimum": "Minimalna wartość",
71
+ "form.attribute.item.minimumLength": "Minimalna długość",
72
+ "form.attribute.item.number.type": "Forma",
73
+ "form.attribute.item.number.type.biginteger": "duża liczba całkowita (np. 123456789)",
74
+ "form.attribute.item.number.type.decimal": "dziesiętna (np: 2.22)",
75
+ "form.attribute.item.number.type.float": "zmiennoprzecinkowa (np: 3.33333333)",
76
+ "form.attribute.item.number.type.integer": "całkowita (np: 10)",
77
+ "form.attribute.item.privateField": "Pole prywatne",
78
+ "form.attribute.item.privateField.description": "To pole nie pojawi się w odpowiedzi interfejsu API",
79
+ "form.attribute.item.requiredField": "Wymagany",
80
+ "form.attribute.item.requiredField.description": "Nie będziesz w stanie stworzyć wpisu jeżeli atrybut będzie pusty",
81
+ "form.attribute.item.settings.name": "Ustawienia",
82
+ "form.attribute.item.uniqueField": "Unikalny",
83
+ "form.attribute.item.uniqueField.description": "Nie będziesz w stanie stworzyć wpisu jeżeli wartość atrybutu będzie już wykorzystywana",
84
+ "form.attribute.media.option.multiple": "Wiele mediów",
85
+ "form.attribute.media.option.multiple.description": "Najlepsze dla suwaków, karuzeli lub pobierania wielu plików",
86
+ "form.attribute.media.option.single": "Pojedyncze media",
87
+ "form.attribute.media.option.single.description": "Najlepsze dla awatara, zdjęcia profilowego lub okładki",
88
+ "form.attribute.settings.default": "Domyślnie",
89
+ "form.attribute.text.option.long-text": "Długi tekst",
90
+ "form.attribute.text.option.long-text.description": "Najlepsze dla opisów, biografii. 
Dokładne wyszukiwanie jest wyłączone.",
91
+ "form.attribute.text.option.short-text": "Krótki tekst",
92
+ "form.attribute.text.option.short-text.description": "Najlepsze dla tytułów, nazw, linków (URL). Umożliwia także dokładne wyszukiwanie dla pola.",
93
+ "form.button.add-components-to-dynamiczone": "Dodaj komponenty do strefy",
94
+ "form.button.add-field": "Dodaj kolejne pole",
95
+ "form.button.add-first-field-to-created-component": "Dodaj pierwsze pole do komponentu",
96
+ "form.button.add.field.to.component": "Dodaj kolejne pole do tego komponentu",
97
+ "form.button.cancel": "Anuluj",
98
+ "form.button.configure-component": "Skonfiguruj komponent",
99
+ "form.button.configure-view": "Skonfiguruj widok",
100
+ "form.button.continue": "Kontynuuj",
101
+ "form.button.delete": "Usuń",
102
+ "form.button.finish": "Zakończ",
103
+ "form.button.save": "Zapisz",
104
+ "form.button.select-component": "Wybierz komponent",
105
+ "from": "z",
106
+ "injected-components.content-manager.edit-settings-view.link.components": "Edytuj komponent",
107
+ "injected-components.content-manager.edit-settings-view.link.content-types": "Edytuj typ zawartości",
108
+ "menu.section.components.name.plural": "Komponenty",
109
+ "menu.section.components.name.singular": "Komponent",
110
+ "menu.section.models.name.plural": "Modele",
111
+ "menu.section.models.name.singular": "Model",
112
+ "modalForm.attribute.form.base.name": "Nazwa",
113
+ "modalForm.attribute.form.base.name.description": "Spacja nie jest dozwolona dla nazwy atrybutu",
114
+ "modalForm.attribute.text.type-selection": "Typ",
115
+ "modalForm.attributes.select-component": "Wybierz komponent",
116
+ "modalForm.attributes.select-components": "Wybierz komponenty",
117
+ "modalForm.component.header-create": "Utwórz komponent",
118
+ "modalForm.components.create-component.category.label": "Wybierz kategorię lub wprowadź nazwę, aby utworzyć nową",
119
+ "modalForm.components.icon.label": "Ikona",
120
+ "modalForm.contentType.header-create": "Utwórz typ zawartości",
121
+ "modalForm.editCategory.base.name.description": "Spacja nie jest dozwolona dla nazwy kategorii",
122
+ "modalForm.header-edit": "Edytuj {name}",
123
+ "modalForm.header.categories": "Kategorie",
124
+ "modalForm.sub-header.addComponentToDynamicZone": "Dodaj nowy komponent do strefy dynamicznej",
125
+ "modalForm.sub-header.attribute.create": "Dodaj nowe pole {type}",
126
+ "modalForm.sub-header.attribute.create.step": "Dodaj nowy komponent ({step}/2)",
127
+ "modalForm.sub-header.attribute.edit": "Edytuj {name}",
128
+ "modalForm.sub-header.chooseAttribute.collectionType": "Wybierz pole dla typu zawartości",
129
+ "modalForm.sub-header.chooseAttribute.component": "Wybierz pole dla komponentu",
130
+ "modelPage.attribute.relationWith": "Relacja z",
131
+ "modelPage.contentHeader.emptyDescription.description": "Ten model nie posiada opisu",
132
+ "notification.info.creating.notSaved": "Zapisz swoją pracę przed utworzeniem nowego typu treści lub komponentu",
133
+ "plugin.description.long": "Modeluj strukturę danych swojego API. Twórz atrybuty i relacje w minutę. Pliki są automatycznie tworzone i aktualizowane w twoim projekcie.",
134
+ "plugin.description.short": "Modeluj strukturę danych swojego API.",
135
+ "popUpForm.navContainer.advanced": "Zaawansowane",
136
+ "popUpForm.navContainer.base": "Podstawowe",
137
+ "popUpWarning.bodyMessage.cancel-modifications": "Czy na pewno chcesz anulować swoje modyfikacje?",
138
+ "popUpWarning.bodyMessage.cancel-modifications.with-components": "Czy na pewno chcesz anulować swoje modyfikacje? Niektóre komponenty zostały utworzone lub zmodyfikowane ...",
139
+ "popUpWarning.bodyMessage.category.delete": "Czy na pewno chcesz usunąć tę kategorię? Wszystkie komponenty również zostaną usunięte.",
140
+ "popUpWarning.bodyMessage.component.delete": "Czy na pewno chcesz usunąć ten komponent?",
141
+ "popUpWarning.bodyMessage.contentType.delete": "Czy na pewno chcesz usunąć ten model?",
142
+ "prompt.unsaved": "Jesteś pewny, że chcesz wyjść? Wszystkie twoje modyfikacje zostaną utracone.",
143
+ "relation.attributeName.placeholder": "Np: autor, kategoria, tag",
144
+ "relation.manyToMany": "zawiera i należy do wielu",
145
+ "relation.manyToOne": "zawiera wiele",
146
+ "relation.manyWay": "ma wiele",
147
+ "relation.oneToMany": "należy do wielu",
148
+ "relation.oneToOne": "zawiera i należy do",
149
+ "relation.oneWay": "zawiera",
150
+ "table.attributes.title.plural": "pól: {number}",
151
+ "table.attributes.title.singular": "{number} pole"
152
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "attribute.boolean": "Booleano",
3
+ "attribute.date": "Data",
4
+ "attribute.email": "Email",
5
+ "attribute.enumeration": "Enumeração",
6
+ "attribute.json": "JSON",
7
+ "attribute.media": "Mídia",
8
+ "attribute.password": "Senha",
9
+ "attribute.relation": "Relação",
10
+ "attribute.text": "Texto",
11
+ "form.attribute.item.customColumnName": "Nomes de colunas customizadas",
12
+ "form.attribute.item.customColumnName.description": "Isto é útil para renomear os nomes das colunas da base de dados em um formato mais abrangente para as respostas da API",
13
+ "form.attribute.item.defineRelation.fieldName": "Nome do campo",
14
+ "form.attribute.item.enumeration.graphql": "Substituição de nome para o GraphQL",
15
+ "form.attribute.item.enumeration.graphql.description": "Permite à si a substituição do nome predefinido para o GraphQL",
16
+ "form.attribute.item.enumeration.placeholder": "Ex:\nmanhã\ntarde\nnoite",
17
+ "form.attribute.item.enumeration.rules": "Values (one line per value)",
18
+ "form.attribute.item.maximum": "Valor máximo",
19
+ "form.attribute.item.maximumLength": "Tamanho máximo",
20
+ "form.attribute.item.minimum": "Valor mínimo",
21
+ "form.attribute.item.minimumLength": "Tamanho mínimo",
22
+ "form.attribute.item.number.type": "Formato numérico",
23
+ "form.attribute.item.number.type.decimal": "decimal (ex: 2.22)",
24
+ "form.attribute.item.number.type.float": "float (ex: 3.33333333)",
25
+ "form.attribute.item.number.type.integer": "inteiro (ex: 10)",
26
+ "form.attribute.item.requiredField": "Campo obrigatório",
27
+ "form.attribute.item.requiredField.description": "Você não poderá criar um registro se este campo estiver vazio",
28
+ "form.attribute.item.settings.name": "Definições",
29
+ "form.attribute.item.uniqueField": "Campo único",
30
+ "form.attribute.item.uniqueField.description": "Você não poderá criar um registro se houver outro registro com o nome do campo idêntico",
31
+ "form.attribute.settings.default": "Valor predefinido",
32
+ "form.button.cancel": "Cancelar",
33
+ "form.button.continue": "Continuar",
34
+ "form.button.save": "Salvar",
35
+ "from": "de",
36
+ "menu.section.models.name.plural": "Tipos de Conteúdos",
37
+ "menu.section.models.name.singular": "Tipo de Conteúdo",
38
+ "modelPage.attribute.relationWith": "Relação com",
39
+ "modelPage.contentHeader.emptyDescription.description": "Nenhuma descrição para este Tipo De Conteúdo",
40
+ "plugin.description.long": "Molde a estrutura de dados da sua API. Crie novos campos e relações em apenas um minuto. Os arquivos são automaticamente criados e atualizados no seu projeto.",
41
+ "plugin.description.short": "Molde a estrutura de dados da sua API.",
42
+ "popUpForm.navContainer.advanced": "Definições Avançadas",
43
+ "popUpForm.navContainer.base": "Definições básicas",
44
+ "popUpWarning.bodyMessage.contentType.delete": "Tem a certeza que deseja remover este Tipo de Conteúdo?",
45
+ "relation.attributeName.placeholder": "Ex: autor, catégoria, etiqueta",
46
+ "relation.manyToMany": "tem e pertence à vários",
47
+ "relation.manyToOne": "tem vários",
48
+ "relation.oneToMany": "pertence à vários",
49
+ "relation.oneToOne": "tem e pertence à um",
50
+ "relation.oneWay": "tem um"
51
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "attribute.boolean": "Booleano",
3
+ "attribute.date": "Data",
4
+ "attribute.email": "Email",
5
+ "attribute.enumeration": "Enumeração",
6
+ "attribute.json": "JSON",
7
+ "attribute.media": "Media",
8
+ "attribute.password": "Palavra-passe",
9
+ "attribute.relation": "Relação",
10
+ "attribute.text": "Texto",
11
+ "form.attribute.item.customColumnName": "Nomes de colunas customizadas",
12
+ "form.attribute.item.customColumnName.description": "Isto é útil para renomear os nomes das colunas da base de dados em um formato mais abrangente para as respostas da API",
13
+ "form.attribute.item.defineRelation.fieldName": "Nome do campo",
14
+ "form.attribute.item.enumeration.graphql": "Substituição de nome para o GraphQL",
15
+ "form.attribute.item.enumeration.graphql.description": "Permite à si a substituição do nome predefinido para o GraphQL",
16
+ "form.attribute.item.enumeration.placeholder": "Ex:\nmanhã\ntarde\nnoite",
17
+ "form.attribute.item.enumeration.rules": "Values (one line per value)",
18
+ "form.attribute.item.maximum": "Valor máximo",
19
+ "form.attribute.item.maximumLength": "Comprimento máximo",
20
+ "form.attribute.item.minimum": "Valor mínimo",
21
+ "form.attribute.item.minimumLength": "Comprimento mínimo",
22
+ "form.attribute.item.number.type": "Formato numérico",
23
+ "form.attribute.item.number.type.decimal": "decimal (ex: 2.22)",
24
+ "form.attribute.item.number.type.float": "float (ex: 3.33333333)",
25
+ "form.attribute.item.number.type.integer": "inteiro (ex: 10)",
26
+ "form.attribute.item.requiredField": "Campo obrigatório",
27
+ "form.attribute.item.requiredField.description": "Você não será capaz de criar uma entrada se este campo estiver vazio",
28
+ "form.attribute.item.settings.name": "Definições",
29
+ "form.attribute.item.uniqueField": "Campo único",
30
+ "form.attribute.item.uniqueField.description": "Você não será capaz de criar uma entrada se houver uma entrada existente com conteúdo idêntico",
31
+ "form.attribute.settings.default": "Valor predefinido",
32
+ "form.button.cancel": "Cancelar",
33
+ "form.button.continue": "Continuar",
34
+ "form.button.save": "Guardar",
35
+ "from": "de",
36
+ "menu.section.models.name.plural": "Tipos de Conteúdos",
37
+ "menu.section.models.name.singular": "Tipo de Conteúdo",
38
+ "modelPage.attribute.relationWith": "Relação com",
39
+ "modelPage.contentHeader.emptyDescription.description": "Nenhuma descrição para este Tipo De Conteúdo",
40
+ "plugin.description.long": "Modelize a estrutura de dados da sua API. Crie novos campos e relações em apenas um minuto. Os arquivos são automaticamente criados e actualizados no seu projecto.",
41
+ "plugin.description.short": "Modelize a estrutura de dados da sua API.",
42
+ "popUpForm.navContainer.advanced": "Definições Avançadas",
43
+ "popUpForm.navContainer.base": "Definições básicas",
44
+ "popUpWarning.bodyMessage.contentType.delete": "Tem a certeza que pretende apagar este Tipo de Conteúdo?",
45
+ "relation.attributeName.placeholder": "Ex: autor, catégoria, tag",
46
+ "relation.manyToMany": "tem e pertence à vários",
47
+ "relation.manyToOne": "tem vários",
48
+ "relation.oneToMany": "pertence à vários",
49
+ "relation.oneToOne": "tem e pertence à um",
50
+ "relation.oneWay": "tem um"
51
+ }