@strapi/admin 4.6.0-alpha.1 → 4.6.0-beta.1

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 (248) hide show
  1. package/admin/src/components/AuthenticatedApp/index.js +13 -2
  2. package/admin/src/components/GlobalStyle/index.js +0 -5
  3. package/admin/src/content-manager/components/ComponentIcon/ComponentIcon.js +49 -0
  4. package/admin/src/content-manager/components/ComponentIcon/index.js +1 -0
  5. package/admin/src/content-manager/components/ComponentInitializer/index.js +1 -7
  6. package/admin/src/content-manager/components/{RepeatableComponent/DragPreview.js → DragLayer/ComponentDragPreview.js} +10 -11
  7. package/admin/src/content-manager/components/DragLayer/RelationDragPreview.js +75 -0
  8. package/admin/src/content-manager/components/DragLayer/index.js +23 -7
  9. package/admin/src/content-manager/components/DynamicZone/components/ComponentCard.js +17 -31
  10. package/admin/src/content-manager/components/DynamicZone/components/ComponentCategory.js +2 -2
  11. package/admin/src/content-manager/components/DynamicZone/components/DynamicComponent.js +129 -85
  12. package/admin/src/content-manager/components/DynamicZone/index.js +99 -24
  13. package/admin/src/content-manager/components/DynamicZone/utils/select.js +9 -5
  14. package/admin/src/content-manager/components/EditViewDataManagerProvider/index.js +76 -14
  15. package/admin/src/content-manager/components/EditViewDataManagerProvider/reducer.js +42 -25
  16. package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/cleanData.js +24 -5
  17. package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/recursivelyFindPathsBasedOnCondition.js +8 -1
  18. package/admin/src/content-manager/components/InputJSON/FieldWrapper.js +10 -2
  19. package/admin/src/content-manager/components/InputJSON/Label.js +2 -18
  20. package/admin/src/content-manager/components/InputJSON/index.js +7 -3
  21. package/admin/src/content-manager/components/NonRepeatableComponent/index.js +4 -0
  22. package/admin/src/content-manager/components/RelationInput/RelationInput.js +205 -74
  23. package/admin/src/content-manager/components/RelationInput/components/RelationItem.js +136 -21
  24. package/admin/src/content-manager/components/RelationInput/components/RelationList.js +1 -2
  25. package/admin/src/content-manager/components/RelationInput/constants.js +1 -0
  26. package/admin/src/content-manager/components/RelationInput/index.js +1 -0
  27. package/admin/src/content-manager/components/RelationInputDataManager/RelationInputDataManager.js +132 -10
  28. package/admin/src/content-manager/components/RepeatableComponent/components/Accordion.js +77 -0
  29. package/admin/src/content-manager/components/RepeatableComponent/components/Component.js +262 -0
  30. package/admin/src/content-manager/components/RepeatableComponent/{DraggedItem → components}/Preview.js +0 -0
  31. package/admin/src/content-manager/components/RepeatableComponent/index.js +148 -90
  32. package/admin/src/content-manager/components/RepeatableComponent/utils/getComponentErrorKeys.js +1 -1
  33. package/admin/src/content-manager/components/SingleTypeFormWrapper/index.js +1 -1
  34. package/admin/src/content-manager/components/Wysiwyg/Editor.js +1 -1
  35. package/admin/src/content-manager/hooks/index.js +2 -0
  36. package/admin/src/content-manager/hooks/useDragAndDrop.js +134 -0
  37. package/admin/src/content-manager/hooks/useKeyboardDragAndDrop.js +98 -0
  38. package/admin/src/content-manager/hooks/useLazyComponents/index.js +40 -15
  39. package/admin/src/content-manager/pages/EditSettingsView/components/DynamicZoneList.js +18 -38
  40. package/admin/src/content-manager/sharedReducers/crudReducer/actions.js +5 -0
  41. package/admin/src/content-manager/sharedReducers/crudReducer/constants.js +2 -0
  42. package/admin/src/content-manager/sharedReducers/crudReducer/reducer.js +7 -0
  43. package/admin/src/content-manager/utils/ItemTypes.js +1 -1
  44. package/admin/src/content-manager/utils/composeRefs.js +28 -0
  45. package/admin/src/content-manager/utils/getMaxTempKey.js +1 -1
  46. package/admin/src/content-manager/utils/index.js +7 -0
  47. package/admin/src/core/utils/axiosInstance.js +4 -2
  48. package/admin/src/hooks/index.js +1 -0
  49. package/admin/src/hooks/useFetchClient/index.js +23 -0
  50. package/admin/src/hooks/useSettingsMenu/init.js +0 -7
  51. package/admin/src/pages/Admin/Onboarding/index.js +42 -44
  52. package/admin/src/pages/App/index.js +20 -13
  53. package/admin/src/pages/AuthPage/components/Register/index.js +1 -1
  54. package/admin/src/pages/AuthPage/components/ResetPassword/index.js +1 -1
  55. package/admin/src/pages/HomePage/SocialLinks.js +4 -4
  56. package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/index.js +2 -3
  57. package/admin/src/pages/SettingsPage/pages/Users/ListPage/ModalForm/index.js +23 -18
  58. package/admin/src/pages/SettingsPage/utils/defaultRoutes.js +0 -11
  59. package/admin/src/permissions/defaultPermissions.js +0 -4
  60. package/admin/src/translations/en.json +8 -8
  61. package/admin/src/translations/sk.json +274 -52
  62. package/admin/src/translations/tr.json +485 -5
  63. package/admin/src/utils/fetchClient.js +45 -0
  64. package/admin/src/utils/getFetchClient.js +10 -0
  65. package/admin/src/utils/index.js +1 -0
  66. package/admin/src/utils/uniqueAdminHash.js +22 -0
  67. package/build/2235.06c13219.chunk.js +106 -0
  68. package/build/2598.962797b2.chunk.js +159 -0
  69. package/build/4318.0bbd3f4b.chunk.js +30 -0
  70. package/build/4958.7c118f5e.chunk.js +276 -0
  71. package/build/5052.712419ea.chunk.js +65 -0
  72. package/build/7295.04ac49dc.chunk.js +114 -0
  73. package/build/805.ddcead70.chunk.js +138 -0
  74. package/build/{8633.8da5488a.chunk.js → 8633.59223842.chunk.js} +1 -1
  75. package/build/874.bde3ea04.chunk.js +104 -0
  76. package/build/{1233.80b05d66.chunk.js → 9159.ac968e72.chunk.js} +67 -67
  77. package/build/9707.77e475ee.chunk.js +101 -0
  78. package/build/Admin-authenticatedApp.9dd415b8.chunk.js +72 -0
  79. package/build/{Admin_homePage.54e33c2d.chunk.js → Admin_homePage.8945f71a.chunk.js} +5 -5
  80. package/build/{Admin_marketplace.8219fda6.chunk.js → Admin_marketplace.ed754a4a.chunk.js} +1 -1
  81. package/build/Admin_pluginsPage.67728975.chunk.js +6 -0
  82. package/build/{Admin_profilePage.e9fcce92.chunk.js → Admin_profilePage.60ab80bb.chunk.js} +1 -1
  83. package/build/{Admin_settingsPage.d3f48e9e.chunk.js → Admin_settingsPage.9ce40fed.chunk.js} +15 -15
  84. package/build/Upload_ConfigureTheView.7cb2a3fd.chunk.js +1 -0
  85. package/build/admin-app.d8fc7c4d.chunk.js +112 -0
  86. package/build/admin-edit-roles-page.f407538c.chunk.js +1 -0
  87. package/build/admin-edit-users.5547b126.chunk.js +10 -0
  88. package/build/{admin-users.a0748674.chunk.js → admin-users.4b6b47f8.chunk.js} +2 -2
  89. package/build/api-tokens-create-page.dd4ddfcb.chunk.js +1 -0
  90. package/build/api-tokens-edit-page.821c5a6c.chunk.js +1 -0
  91. package/build/{api-tokens-list-page.700e575f.chunk.js → api-tokens-list-page.50519ed7.chunk.js} +1 -1
  92. package/build/content-manager.f2214e32.chunk.js +1166 -0
  93. package/build/content-type-builder-list-view.4aea46fa.chunk.js +198 -0
  94. package/build/content-type-builder-translation-de-json.a52482c7.chunk.js +1 -0
  95. package/build/content-type-builder-translation-dk-json.a8616510.chunk.js +1 -0
  96. package/build/content-type-builder-translation-en-json.1d9a3c14.chunk.js +1 -0
  97. package/build/content-type-builder-translation-es-json.c3ea46fb.chunk.js +1 -0
  98. package/build/content-type-builder-translation-ko-json.3fb7ddc8.chunk.js +1 -0
  99. package/build/content-type-builder-translation-pl-json.9b2993b2.chunk.js +1 -0
  100. package/build/content-type-builder-translation-pt-BR-json.6d255441.chunk.js +1 -0
  101. package/build/content-type-builder-translation-sv-json.c608b9ca.chunk.js +1 -0
  102. package/build/content-type-builder-translation-tr-json.949e22eb.chunk.js +1 -0
  103. package/build/content-type-builder-translation-zh-json.b79513e4.chunk.js +1 -0
  104. package/build/content-type-builder.8a9a77f9.chunk.js +127 -0
  105. package/build/email-settings-page.c6e62f6b.chunk.js +15 -0
  106. package/build/email-translation-tr-json.8aa034bb.chunk.js +1 -0
  107. package/build/en-json.1abdade9.chunk.js +1 -0
  108. package/build/{i18n-settings-page.195d42fe.chunk.js → i18n-settings-page.ee572037.chunk.js} +1 -1
  109. package/build/i18n-translation-tr-json.34ca9d61.chunk.js +1 -0
  110. package/build/index.html +1 -1
  111. package/build/main.91f6e21e.js +4099 -0
  112. package/build/runtime~main.447b0382.js +2 -0
  113. package/build/sk-json.2af48064.chunk.js +1 -0
  114. package/build/sso-settings-page.91924df1.chunk.js +41 -0
  115. package/build/tr-json.eac8bd79.chunk.js +1 -0
  116. package/build/upload-settings.326cd9fd.chunk.js +89 -0
  117. package/build/upload-translation-en-json.32cf9aff.chunk.js +1 -0
  118. package/build/upload-translation-sk-json.fe86c53b.chunk.js +1 -0
  119. package/build/upload-translation-tr-json.b173223a.chunk.js +1 -0
  120. package/build/upload.2977cb13.chunk.js +38 -0
  121. package/build/users-advanced-settings-page.0c0b8230.chunk.js +13 -0
  122. package/build/users-email-settings-page.18d4a475.chunk.js +28 -0
  123. package/build/{users-permissions-translation-dk-json.fe39c74b.chunk.js → users-permissions-translation-dk-json.bad0b786.chunk.js} +1 -1
  124. package/build/{users-permissions-translation-en-json.765abf48.chunk.js → users-permissions-translation-en-json.aeab388a.chunk.js} +1 -1
  125. package/build/{users-permissions-translation-es-json.1bb9cde2.chunk.js → users-permissions-translation-es-json.152a923f.chunk.js} +1 -1
  126. package/build/{users-permissions-translation-ko-json.3be77775.chunk.js → users-permissions-translation-ko-json.6bd0ae22.chunk.js} +1 -1
  127. package/build/{users-permissions-translation-pl-json.1dbdd4a1.chunk.js → users-permissions-translation-pl-json.c6a02992.chunk.js} +1 -1
  128. package/build/{users-permissions-translation-sv-json.d5d11648.chunk.js → users-permissions-translation-sv-json.370d6eee.chunk.js} +1 -1
  129. package/build/users-permissions-translation-tr-json.9bebc250.chunk.js +1 -0
  130. package/build/{users-permissions-translation-zh-json.92f406f9.chunk.js → users-permissions-translation-zh-json.1fea833f.chunk.js} +1 -1
  131. package/build/users-providers-settings-page.25dd858e.chunk.js +1 -0
  132. package/build/users-roles-settings-page.8482a999.chunk.js +30 -0
  133. package/build/{webhook-edit-page.14ad1e6e.chunk.js → webhook-edit-page.dcc3d145.chunk.js} +4 -4
  134. package/build/{webhook-list-page.b87821f2.chunk.js → webhook-list-page.894e6959.chunk.js} +1 -1
  135. package/ee/server/services/passport/provider-registry.js +1 -1
  136. package/package.json +16 -22
  137. package/server/controllers/admin.js +2 -0
  138. package/server/routes/admin.js +1 -1
  139. package/server/services/metrics.js +5 -2
  140. package/server/services/role.js +1 -0
  141. package/utils/get-plugins-path.js +17 -3
  142. package/webpack.alias.js +0 -2
  143. package/admin/src/content-manager/components/BackHeader/index.js +0 -8
  144. package/admin/src/content-manager/components/Block/components.js +0 -28
  145. package/admin/src/content-manager/components/Block/index.js +0 -43
  146. package/admin/src/content-manager/components/Container/index.js +0 -7
  147. package/admin/src/content-manager/components/CustomInputCheckbox/components.js +0 -77
  148. package/admin/src/content-manager/components/CustomInputCheckbox/index.js +0 -53
  149. package/admin/src/content-manager/components/DynamicComponentCard/Wrapper.js +0 -63
  150. package/admin/src/content-manager/components/FilterOptionsCTA/index.js +0 -14
  151. package/admin/src/content-manager/components/FormTitle/index.js +0 -22
  152. package/admin/src/content-manager/components/FormWrapper/index.js +0 -20
  153. package/admin/src/content-manager/components/InputJSON/FieldError.js +0 -38
  154. package/admin/src/content-manager/components/LayoutTitle/index.js +0 -19
  155. package/admin/src/content-manager/components/PlusButton/index.js +0 -52
  156. package/admin/src/content-manager/components/PreviewCarret/components.js +0 -27
  157. package/admin/src/content-manager/components/PreviewCarret/index.js +0 -22
  158. package/admin/src/content-manager/components/RepeatableComponent/AccordionGroupCustom/index.js +0 -122
  159. package/admin/src/content-manager/components/RepeatableComponent/AddFieldButton.js +0 -58
  160. package/admin/src/content-manager/components/RepeatableComponent/DraggedItem/DraggingSibling.js +0 -72
  161. package/admin/src/content-manager/components/RepeatableComponent/DraggedItem/IconButtonCustoms.js +0 -32
  162. package/admin/src/content-manager/components/RepeatableComponent/DraggedItem/index.js +0 -322
  163. package/admin/src/content-manager/components/RepeatableComponent/DraggedItem/utils/connect.js +0 -11
  164. package/admin/src/content-manager/components/RepeatableComponent/DraggedItem/utils/index.js +0 -2
  165. package/admin/src/content-manager/components/RepeatableComponent/DraggedItem/utils/select.js +0 -30
  166. package/admin/src/content-manager/components/RepeatableComponent/utils/connect.js +0 -11
  167. package/admin/src/content-manager/components/RepeatableComponent/utils/select.js +0 -12
  168. package/admin/src/content-manager/components/SectionTitle/Title.js +0 -11
  169. package/admin/src/content-manager/components/SectionTitle/index.js +0 -26
  170. package/admin/src/content-manager/hooks/__test__/usePrev.test.js +0 -26
  171. package/admin/src/pages/SettingsPage/pages/AuditLogs/ListView/DynamicTable/TableRows/CellValue.js +0 -19
  172. package/admin/src/pages/SettingsPage/pages/AuditLogs/ListView/DynamicTable/TableRows/index.js +0 -65
  173. package/admin/src/pages/SettingsPage/pages/AuditLogs/ListView/ModalDialog/ActionItem.js +0 -25
  174. package/admin/src/pages/SettingsPage/pages/AuditLogs/ListView/ModalDialog/index.js +0 -76
  175. package/admin/src/pages/SettingsPage/pages/AuditLogs/ListView/hooks/useFormatTimeStamp.js +0 -24
  176. package/admin/src/pages/SettingsPage/pages/AuditLogs/ListView/index.js +0 -84
  177. package/admin/src/pages/SettingsPage/pages/AuditLogs/ListView/utils/tableHeaders.js +0 -37
  178. package/admin/src/pages/SettingsPage/pages/AuditLogs/ProtectedListPage/index.js +0 -12
  179. package/build/1551f4f60c37af51121f.woff2 +0 -0
  180. package/build/1920.74a262e7.chunk.js +0 -245
  181. package/build/1e59d2330b4c6deb84b3.ttf +0 -0
  182. package/build/20fd1704ea223900efa9.woff2 +0 -0
  183. package/build/2285773e6b4b172f07d9.woff +0 -0
  184. package/build/23f19bb08961f37aaf69.eot +0 -0
  185. package/build/2438.61291207.chunk.js +0 -2183
  186. package/build/2517.9b4940f3.chunk.js +0 -117
  187. package/build/2f517e09eb2ca6650ff5.svg +0 -3717
  188. package/build/4306.f03c2b46.chunk.js +0 -98
  189. package/build/4318.7931eee7.chunk.js +0 -30
  190. package/build/4689f52cc96215721344.svg +0 -801
  191. package/build/491974d108fe4002b2aa.ttf +0 -0
  192. package/build/4986.3820d11d.chunk.js +0 -145
  193. package/build/504.9aeff724.chunk.js +0 -758
  194. package/build/527940b104eb2ea366c8.ttf +0 -0
  195. package/build/77206a6bb316fa0aded5.eot +0 -0
  196. package/build/7a3337626410ca2f4071.woff2 +0 -0
  197. package/build/7a8b4f130182d19a2d7c.svg +0 -5034
  198. package/build/805.e991a370.chunk.js +0 -138
  199. package/build/8b43027f47b20503057d.eot +0 -0
  200. package/build/9707.a0cc4ad8.chunk.js +0 -70
  201. package/build/9bbb245e67a133f6e486.eot +0 -0
  202. package/build/Admin-authenticatedApp.ac85652e.chunk.js +0 -80
  203. package/build/Admin_pluginsPage.3c872de7.chunk.js +0 -6
  204. package/build/admin-app.77179e07.chunk.js +0 -112
  205. package/build/admin-audit-logs.334ee871.chunk.js +0 -1
  206. package/build/admin-edit-roles-page.23f15909.chunk.js +0 -1
  207. package/build/admin-edit-users.283b49ed.chunk.js +0 -10
  208. package/build/api-tokens-create-page.93dd0689.chunk.js +0 -1
  209. package/build/api-tokens-edit-page.b0adac81.chunk.js +0 -1
  210. package/build/bb58e57c48a3e911f15f.woff +0 -0
  211. package/build/be9ee23c0c6390141475.ttf +0 -0
  212. package/build/c1e38fd9e0e74ba58f7a.svg +0 -2671
  213. package/build/content-manager.01e04e11.chunk.js +0 -1200
  214. package/build/content-type-builder-list-view.4412efc3.chunk.js +0 -201
  215. package/build/content-type-builder-translation-de-json.0d7696b9.chunk.js +0 -1
  216. package/build/content-type-builder-translation-dk-json.4729f055.chunk.js +0 -1
  217. package/build/content-type-builder-translation-en-json.f985c9c4.chunk.js +0 -1
  218. package/build/content-type-builder-translation-es-json.333cf47f.chunk.js +0 -1
  219. package/build/content-type-builder-translation-ko-json.51201b12.chunk.js +0 -1
  220. package/build/content-type-builder-translation-pl-json.4a42349b.chunk.js +0 -1
  221. package/build/content-type-builder-translation-pt-BR-json.6fe3b8d1.chunk.js +0 -1
  222. package/build/content-type-builder-translation-sv-json.6deff030.chunk.js +0 -1
  223. package/build/content-type-builder-translation-tr-json.2e52bc60.chunk.js +0 -1
  224. package/build/content-type-builder-translation-zh-json.3b0afd31.chunk.js +0 -1
  225. package/build/content-type-builder.aa4ec633.chunk.js +0 -145
  226. package/build/d878b0a6a1144760244f.woff2 +0 -0
  227. package/build/eeccf4f66002c6f2ba24.woff +0 -0
  228. package/build/email-settings-page.d44a57cb.chunk.js +0 -15
  229. package/build/email-translation-tr-json.87f2feb3.chunk.js +0 -1
  230. package/build/en-json.57917cb1.chunk.js +0 -1
  231. package/build/f691f37e57f04c152e23.woff +0 -0
  232. package/build/fontawesome-css-all.15068c6e.chunk.js +0 -4618
  233. package/build/fontawesome-css.418f40da.chunk.js +0 -6
  234. package/build/fontawesome-js.252cc5f3.chunk.js +0 -7
  235. package/build/main.f31112a5.js +0 -2034
  236. package/build/runtime~main.81f05721.js +0 -2
  237. package/build/sk-json.7ba4b330.chunk.js +0 -1
  238. package/build/sso-settings-page.9f091262.chunk.js +0 -1
  239. package/build/tr-json.9c44ea0c.chunk.js +0 -1
  240. package/build/upload-settings.450cab1a.chunk.js +0 -18
  241. package/build/upload-translation-en-json.86da7b0a.chunk.js +0 -1
  242. package/build/upload-translation-sk-json.b03d4904.chunk.js +0 -1
  243. package/build/upload.a73936d9.chunk.js +0 -64
  244. package/build/users-advanced-settings-page.dc23bc56.chunk.js +0 -13
  245. package/build/users-email-settings-page.6541d372.chunk.js +0 -28
  246. package/build/users-permissions-translation-tr-json.cdc49a3c.chunk.js +0 -1
  247. package/build/users-providers-settings-page.e11a2f64.chunk.js +0 -33
  248. package/build/users-roles-settings-page.445e5e16.chunk.js +0 -30
@@ -0,0 +1,198 @@
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[5905],{69073:(te,B,a)=>{a.r(B),a.d(B,{default:()=>ln});var t=a(32735),c=a(88425),m=a(19406),A=a(29439),L=a(66456),M=a(68625),D=a(41415),k=a(36320),f=a(27677),s=a(62345),v=a(28356),pe=a(17e3),J=a(33795),$=a.n(J),ne=a(23973),oe=a.n(ne),Q=a(89793),re=a.n(Q),ue=a(23940),ae=a.n(ue),I=a(5636),Y=a(5141),K=a(60216),r=a.n(K),l=a(88860),p=a(94745),u=a(76330),T=a(29005),Z=a(66735),j=a(73269),q=a(32237),U=a(198),w=a(83292),b=a(92318),N=a(39161),qe=a(35331);const _e=(0,w.default)(N.Flex)`
2
+ border-radius: 50%;
3
+ color: ${({theme:e,isActive:n})=>n?e.colors.primary600:e.colors.neutral600};
4
+ height: ${({theme:e})=>e.spaces[8]};
5
+ width: ${({theme:e})=>e.spaces[8]};
6
+
7
+ svg {
8
+ height: ${({theme:e})=>e.spaces[5]};
9
+ width: ${({theme:e})=>e.spaces[5]};
10
+ }
11
+ `;function me({isActive:e}){return t.createElement(_e,{alignItems:"center",background:e?"primary200":"neutral200",justifyContent:"center",isActive:e},t.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 448 512"},t.createElement("path",{d:"M216.3 2c4.8-2.6 10.5-2.6 15.3 0L422.3 106c5.1 2.8 8.3 8.2 8.3 14s-3.2 11.2-8.3 14L231.7 238c-4.8 2.6-10.5 2.6-15.3 0L25.7 134c-5.1-2.8-8.3-8.2-8.3-14s3.2-11.2 8.3-14L216.3 2zM23.7 170l176 96c5.1 2.8 8.3 8.2 8.3 14V496c0 5.6-3 10.9-7.8 13.8s-10.9 3-15.8 .3L8.3 414C3.2 411.2 0 405.9 0 400V184c0-5.6 3-10.9 7.8-13.8s10.9-3 15.8-.3zm400.7 0c5-2.7 11-2.6 15.8 .3s7.8 8.1 7.8 13.8V400c0 5.9-3.2 11.2-8.3 14l-176 96c-5 2.7-11 2.6-15.8-.3s-7.8-8.1-7.8-13.8V280c0-5.9 3.2-11.2 8.3-14l176-96z",fill:"currentColor"})))}me.defaultProps={isActive:!1},me.propTypes={isActive:r().bool};const Oe=(0,w.default)(N.Box)`
12
+ position: absolute;
13
+ display: none;
14
+ top: 5px;
15
+ right: ${(0,c.pxToRem)(8)};
16
+
17
+ svg {
18
+ width: ${(0,c.pxToRem)(10)};
19
+ height: ${(0,c.pxToRem)(10)};
20
+
21
+ path {
22
+ fill: ${({theme:e})=>e.colors.primary600};
23
+ }
24
+ }
25
+ `,et=(0,w.default)(N.Flex)`
26
+ width: ${(0,c.pxToRem)(140)};
27
+ height: ${(0,c.pxToRem)(80)};
28
+ position: relative;
29
+ border: 1px solid ${({theme:e})=>e.colors.neutral200};
30
+ background: ${({theme:e})=>e.colors.neutral100};
31
+ border-radius: ${({theme:e})=>e.borderRadius};
32
+ max-width: 100%;
33
+
34
+ &.active,
35
+ &:focus,
36
+ &:hover {
37
+ border: 1px solid ${({theme:e})=>e.colors.primary200};
38
+ background: ${({theme:e})=>e.colors.primary100};
39
+
40
+ ${Oe} {
41
+ display: block;
42
+ }
43
+
44
+ ${N.Typography} {
45
+ color: ${({theme:e})=>e.colors.primary600};
46
+ }
47
+
48
+ /* > ComponentIcon */
49
+ > div:first-child {
50
+ background: ${({theme:e})=>e.colors.primary200};
51
+ color: ${({theme:e})=>e.colors.primary600};
52
+ }
53
+ }
54
+ `;function fe({component:e,dzName:n,index:o,isActive:i,isInDevelopmentMode:g,onClick:d}){const{modifiedData:E,removeComponentFromDynamicZone:R}=(0,U.Z)(),{schema:{displayName:h}}=$()(E,["components",e],{schema:{}}),O=x=>{x.stopPropagation(),R(n,o)};return t.createElement(et,{as:"button",alignItems:"center",direction:"column",className:i?"active":"",borderRadius:"borderRadius",justifyContent:"center",paddingLeft:4,paddingRight:4,shrink:0,type:"button",onClick:d},t.createElement(me,{isActive:i}),t.createElement(N.Box,{marginTop:1,maxWidth:"100%"},t.createElement(N.Typography,{variant:"pi",fontWeight:"bold",ellipsis:!0},h)),g&&t.createElement(Oe,{as:"button",onClick:O,type:"button"},t.createElement(qe.default,null)))}fe.defaultProps={component:null,isActive:!1,isInDevelopmentMode:!1,onClick(){}},fe.propTypes={component:r().string,dzName:r().string.isRequired,index:r().number.isRequired,isActive:r().bool,isInDevelopmentMode:r().bool,onClick:r().func};const tt=fe,xe=w.default.tr`
55
+ &.component-row,
56
+ &.dynamiczone-row {
57
+ position: relative;
58
+ border-top: none !important;
59
+
60
+ table tr:first-child {
61
+ border-top: none;
62
+ }
63
+
64
+ > td:first-of-type {
65
+ padding: 0 0 0 ${(0,c.pxToRem)(20)};
66
+ position: relative;
67
+
68
+ &::before {
69
+ content: '';
70
+ width: ${(0,c.pxToRem)(4)};
71
+ height: calc(100% - 40px);
72
+ position: absolute;
73
+ top: -7px;
74
+ left: 1.625rem;
75
+ border-radius: 4px;
76
+
77
+ ${({isFromDynamicZone:e,isChildOfDynamicZone:n,theme:o})=>n?`background-color: ${o.colors.primary200};`:e?`background-color: ${o.colors.primary200};`:`background: ${o.colors.neutral150};`}
78
+ }
79
+ }
80
+ }
81
+
82
+ &.dynamiczone-row > td:first-of-type {
83
+ padding: 0;
84
+ }
85
+ `;function ge({customRowComponent:e,component:n,isFromDynamicZone:o,isNestedInDZComponent:i,firstLoopComponentUid:g}){const{modifiedData:d}=(0,U.Z)(),{schema:{attributes:E}}=$()(d,["components",n],{schema:{attributes:[]}});return t.createElement(xe,{isChildOfDynamicZone:o,className:"component-row"},t.createElement("td",{colSpan:12},t.createElement(Be,{customRowComponent:e,items:E,targetUid:n,firstLoopComponentUid:g||n,editTarget:"components",isFromDynamicZone:o,isNestedInDZComponent:i,isSub:!0,secondLoopComponentUid:g?n:null})))}ge.defaultProps={component:null,customRowComponent:null,firstLoopComponentUid:null,isFromDynamicZone:!1,isNestedInDZComponent:!1},ge.propTypes={component:r().string,customRowComponent:r().func,firstLoopComponentUid:r().string,isFromDynamicZone:r().bool,isNestedInDZComponent:r().bool};const Pe=ge;var nt=Object.defineProperty,ot=Object.defineProperties,rt=Object.getOwnPropertyDescriptors,Le=Object.getOwnPropertySymbols,at=Object.prototype.hasOwnProperty,lt=Object.prototype.propertyIsEnumerable,Re=(e,n,o)=>n in e?nt(e,n,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[n]=o,it=(e,n)=>{for(var o in n||(n={}))at.call(n,o)&&Re(e,o,n[o]);if(Le)for(var o of Le(n))lt.call(n,o)&&Re(e,o,n[o]);return e},st=(e,n)=>ot(e,rt(n));const ct=(0,w.default)(m.default)`
86
+ width: ${(0,c.pxToRem)(32)};
87
+ height: ${(0,c.pxToRem)(32)};
88
+ padding: ${(0,c.pxToRem)(9)};
89
+ border-radius: ${(0,c.pxToRem)(64)};
90
+ background: ${({theme:e})=>e.colors.primary100};
91
+ path {
92
+ fill: ${({theme:e})=>e.colors.primary600};
93
+ }
94
+ `,dt=(0,w.default)(s.x)`
95
+ height: ${(0,c.pxToRem)(90)};
96
+ position: absolute;
97
+ width: 100%;
98
+ top: 0;
99
+ left: 0;
100
+ `,pt=(0,w.default)(f.K)`
101
+ width: 100%;
102
+ overflow-x: auto;
103
+ `,ut=(0,w.default)(s.x)`
104
+ padding-top: ${(0,c.pxToRem)(90)};
105
+ `,mt=(0,w.default)(f.K)`
106
+ flex-shrink: 0;
107
+ width: ${(0,c.pxToRem)(140)};
108
+ height: ${(0,c.pxToRem)(80)};
109
+ justify-content: center;
110
+ align-items: center;
111
+ `;function ye({customRowComponent:e,components:n,addComponent:o,name:i,targetUid:g}){const{isInDevelopmentMode:d}=(0,U.Z)(),[E,R]=(0,t.useState)(0),{formatMessage:h}=(0,I.useIntl)(),O=y=>{E!==y&&R(y)},x=()=>{o(i)};return t.createElement(xe,{className:"dynamiczone-row",isFromDynamicZone:!0},t.createElement("td",{colSpan:12},t.createElement(dt,{paddingLeft:8},t.createElement(pt,{horizontal:!0,spacing:2},d&&t.createElement("button",{type:"button",onClick:x},t.createElement(mt,{spacing:1},t.createElement(ct,null),t.createElement(l.Z,{variant:"pi",fontWeight:"bold",textColor:"primary600"},h({id:(0,b.Z)("button.component.add"),formatMessage:"Add a component"})))),n.map((y,C)=>t.createElement(tt,{key:y,dzName:i,index:C,component:y,isActive:E===C,isInDevelopmentMode:d,onClick:()=>O(C)})))),t.createElement(ut,null,n.map((y,C)=>{const P={customRowComponent:e,component:y};return t.createElement(s.x,{tabId:`${C}`,key:y,style:{display:E===C?"block":"none"}},t.createElement("table",null,t.createElement("tbody",null,t.createElement(Pe,st(it({},P),{isFromDynamicZone:!0,targetUid:g,key:y})))))}))))}ye.defaultProps={addComponent(){},components:[],customRowComponent:null,name:null},ye.propTypes={addComponent:r().func,components:r().instanceOf(Array),customRowComponent:r().func,name:r().string,targetUid:r().string.isRequired};const ft=ye,gt=(0,w.default)(s.x)`
112
+ table {
113
+ width: 100%;
114
+ white-space: nowrap;
115
+ }
116
+
117
+ thead {
118
+ border-bottom: 1px solid ${({theme:e})=>e.colors.neutral150};
119
+
120
+ tr {
121
+ border-top: 0;
122
+ }
123
+ }
124
+
125
+ tr {
126
+ border-top: 1px solid ${({theme:e})=>e.colors.neutral150};
127
+
128
+ & td,
129
+ & th {
130
+ padding: ${({theme:e})=>e.spaces[4]};
131
+ }
132
+
133
+ & td:first-of-type,
134
+ & th:first-of-type {
135
+ padding: 0 ${({theme:e})=>e.spaces[1]};
136
+ }
137
+ }
138
+
139
+ th,
140
+ td {
141
+ vertical-align: middle;
142
+ text-align: left;
143
+ color: ${({theme:e})=>e.colors.neutral600};
144
+ outline-offset: -4px;
145
+ }
146
+ `;var yt=Object.defineProperty,le=Object.getOwnPropertySymbols,Me=Object.prototype.hasOwnProperty,$e=Object.prototype.propertyIsEnumerable,Ze=(e,n,o)=>n in e?yt(e,n,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[n]=o,vt=(e,n)=>{for(var o in n||(n={}))Me.call(n,o)&&Ze(e,o,n[o]);if(le)for(var o of le(n))$e.call(n,o)&&Ze(e,o,n[o]);return e},ht=(e,n)=>{var o={};for(var i in e)Me.call(e,i)&&n.indexOf(i)<0&&(o[i]=e[i]);if(e!=null&&le)for(var i of le(e))n.indexOf(i)<0&&$e.call(e,i)&&(o[i]=e[i]);return o};const bt=(0,w.default)(s.x)`
147
+ height: ${24/16}rem;
148
+ width: ${24/16}rem;
149
+ border-radius: 50%;
150
+ display: flex;
151
+ justify-content: center;
152
+ align-items: center;
153
+
154
+ svg {
155
+ height: ${10/16}rem;
156
+ width: ${10/16}rem;
157
+ }
158
+
159
+ svg path {
160
+ fill: ${({theme:e,color:n})=>e.colors[`${n}600`]};
161
+ }
162
+ `,Et=(0,w.default)(s.x)`
163
+ border-radius: 0 0 ${({theme:e})=>e.borderRadius} ${({theme:e})=>e.borderRadius};
164
+ display: block;
165
+ width: 100%;
166
+ border: none;
167
+ position: relative;
168
+ left: -0.25rem;
169
+ `,Ae=e=>{var n=e,{children:o,icon:i,color:g}=n,d=ht(n,["children","icon","color"]);return t.createElement(Et,vt({paddingBottom:4,paddingTop:4,as:"button",type:"button"},d),t.createElement(k.k,null,t.createElement(bt,{color:g,"aria-hidden":!0,background:`${g}200`},i),t.createElement(s.x,{paddingLeft:3},t.createElement(l.Z,{variant:"pi",fontWeight:"bold",textColor:`${g}600`},o))))};Ae.propTypes={color:r().string.isRequired,children:r().string.isRequired,icon:r().node.isRequired};const Tt=Ae;var Ct=Object.defineProperty,wt=Object.defineProperties,Ot=Object.getOwnPropertyDescriptors,De=Object.getOwnPropertySymbols,xt=Object.prototype.hasOwnProperty,Pt=Object.prototype.propertyIsEnumerable,Ie=(e,n,o)=>n in e?Ct(e,n,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[n]=o,ie=(e,n)=>{for(var o in n||(n={}))xt.call(n,o)&&Ie(e,o,n[o]);if(De)for(var o of De(n))Pt.call(n,o)&&Ie(e,o,n[o]);return e},ve=(e,n)=>wt(e,Ot(n));function he({addComponentToDZ:e,customRowComponent:n,editTarget:o,firstLoopComponentUid:i,isFromDynamicZone:g,isMain:d,isNestedInDZComponent:E,isSub:R,items:h,secondLoopComponentUid:O,targetUid:x}){const{formatMessage:y}=(0,I.useIntl)(),{trackUsage:C}=(0,c.useTracking)(),{isInDevelopmentMode:P,modifiedData:X,isInContentTypeView:V}=(0,U.Z)(),{onOpenModalAddField:W}=(0,q.Z)(),S=()=>{C("hasClickedCTBAddFieldBanner"),W({forTarget:o,targetUid:x})};return x?h.length===0&&d?t.createElement(p.i,{colCount:2,rowCount:2},t.createElement(u.h,null,t.createElement(T.Tr,null,t.createElement(Z.Th,null,t.createElement(l.Z,{variant:"sigma",textColor:"neutral600"},y({id:"global.name",defaultMessage:"Name"}))),t.createElement(Z.Th,null,t.createElement(l.Z,{variant:"sigma",textColor:"neutral600"},y({id:"global.type",defaultMessage:"Type"}))))),t.createElement(c.EmptyBodyTable,{action:t.createElement(D.z,{onClick:S,size:"L",startIcon:t.createElement(m.default,null),variant:"secondary"},y({id:(0,b.Z)("table.button.no-fields"),defaultMessage:"Add new field"})),colSpan:2,content:V?{id:(0,b.Z)("table.content.no-fields.collection-type"),defaultMessage:"Add your first field to this Collection-Type"}:{id:(0,b.Z)("table.content.no-fields.component"),defaultMessage:"Add your first field to this component"}})):t.createElement(gt,null,t.createElement(s.x,ie({paddingLeft:6,paddingRight:d?6:0},d&&{style:{overflowX:"auto"}}),t.createElement("table",null,d&&t.createElement("thead",null,t.createElement("tr",null,t.createElement("th",null,t.createElement(l.Z,{variant:"sigma",textColor:"neutral600"},y({id:"global.name",defaultMessage:"Name"}))),t.createElement("th",{colSpan:"2"},t.createElement(l.Z,{variant:"sigma",textColor:"neutral600"},y({id:"global.type",defaultMessage:"Type"}))))),t.createElement("tbody",null,h.map(z=>{const{type:G}=z,_=n;return t.createElement(t.Fragment,{key:z.name},t.createElement(_,ve(ie({},z),{isNestedInDZComponent:E,targetUid:x,editTarget:o,firstLoopComponentUid:i,isFromDynamicZone:g,secondLoopComponentUid:O})),G==="component"&&t.createElement(Pe,ve(ie({},z),{customRowComponent:n,targetUid:x,isNestedInDZComponent:g,editTarget:o,firstLoopComponentUid:i})),G==="dynamiczone"&&t.createElement(ft,ve(ie({},z),{customRowComponent:n,addComponent:e,targetUid:x})))})))),d&&P&&t.createElement(j.c,{icon:t.createElement(m.default,null),onClick:S},y({id:(0,b.Z)(`form.button.add.field.to.${X.contentType?X.contentType.schema.kind:o||"collectionType"}`),defaultMessage:"Add another field"})),R&&P&&t.createElement(Tt,{icon:t.createElement(m.default,null),onClick:S,color:g?"primary":"neutral"},y({id:(0,b.Z)("form.button.add.field.to.component"),defaultMessage:"Add another field"}))):t.createElement(p.i,{colCount:2,rowCount:2},t.createElement(u.h,null,t.createElement(T.Tr,null,t.createElement(Z.Th,null,t.createElement(l.Z,{variant:"sigma",textColor:"neutral600"},y({id:"global.name",defaultMessage:"Name"}))),t.createElement(Z.Th,null,t.createElement(l.Z,{variant:"sigma",textColor:"neutral600"},y({id:"global.type",defaultMessage:"Type"}))))),t.createElement(c.EmptyBodyTable,{colSpan:2,content:{id:(0,b.Z)("table.content.create-first-content-type"),defaultMessage:"Create your first Collection-Type"}}))}he.defaultProps={addComponentToDZ(){},customRowComponent:null,firstLoopComponentUid:null,isFromDynamicZone:!1,isNestedInDZComponent:!1,isMain:!1,isSub:!1,items:[],secondLoopComponentUid:null,targetUid:null},he.propTypes={addComponentToDZ:r().func,customRowComponent:r().func,editTarget:r().string.isRequired,firstLoopComponentUid:r().string,isFromDynamicZone:r().bool,isNestedInDZComponent:r().bool,isMain:r().bool,items:r().instanceOf(Array),secondLoopComponentUid:r().string,targetUid:r().string,isSub:r().bool};const Be=he;var je=a(50563),Lt=Object.defineProperty,Se=Object.getOwnPropertySymbols,Rt=Object.prototype.hasOwnProperty,Mt=Object.prototype.propertyIsEnumerable,Fe=(e,n,o)=>n in e?Lt(e,n,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[n]=o,$t=(e,n)=>{for(var o in n||(n={}))Rt.call(n,o)&&Fe(e,o,n[o]);if(Se)for(var o of Se(n))Mt.call(n,o)&&Fe(e,o,n[o]);return e};function Zt(e){return t.createElement("svg",$t({width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),t.createElement("path",{d:"M19 10h1a1 1 0 011 1v10a1 1 0 01-1 1H4a1 1 0 01-1-1V11a1 1 0 011-1h1V9a7 7 0 0114 0v1zm-2 0V9A5 5 0 007 9v1h10zm-6 4v4h2v-4h-2z",fill:"#8E8EA9"}))}var At=a(4038),Dt=Object.defineProperty,ke=Object.getOwnPropertySymbols,It=Object.prototype.hasOwnProperty,Bt=Object.prototype.propertyIsEnumerable,Ne=(e,n,o)=>n in e?Dt(e,n,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[n]=o,jt=(e,n)=>{for(var o in n||(n={}))It.call(n,o)&&Ne(e,o,n[o]);if(ke)for(var o of ke(n))Bt.call(n,o)&&Ne(e,o,n[o]);return e};const St=(0,w.default)(s.x)`
170
+ position: absolute;
171
+ left: -1.125rem;
172
+ top: 0px;
173
+
174
+ &:before {
175
+ content: '';
176
+ width: ${4/16}rem;
177
+ height: ${12/16}rem;
178
+ background: ${({theme:e,color:n})=>e.colors[n]};
179
+ display: block;
180
+ }
181
+ `,Ft=w.default.svg`
182
+ position: relative;
183
+ flex-shrink: 0;
184
+ transform: translate(-0.5px, -1px);
185
+
186
+ * {
187
+ fill: ${({theme:e,color:n})=>e.colors[n]};
188
+ }
189
+ `,Ve=e=>t.createElement(St,null,t.createElement(Ft,jt({width:"20",height:"23",viewBox:"0 0 20 23",fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.02477 14.7513C8.65865 17.0594 11.6046 18.6059 17.5596 18.8856C18.6836 18.9384 19.5976 19.8435 19.5976 20.9688V20.9688C19.5976 22.0941 18.6841 23.0125 17.5599 22.9643C10.9409 22.6805 6.454 20.9387 3.75496 17.1258C0.937988 13.1464 0.486328 7.39309 0.486328 0.593262H4.50974C4.50974 7.54693 5.06394 11.9813 7.02477 14.7513Z"})));Ve.propTypes={color:r().string.isRequired};const kt=Ve,be=({content:e})=>ae()(e);be.defaultProps={content:null},be.propTypes={content:r().string};const Nt=be,Vt=(0,w.default)(s.x)`
190
+ position: relative;
191
+ `;var zt=a(25747);const Ee=({type:e,customField:n,repeatable:o})=>{const{formatMessage:i}=(0,I.useIntl)();let g=e;return["integer","biginteger","float","decimal"].includes(e)?g="number":["string"].includes(e)&&(g="text"),n?t.createElement(l.Z,null,i({id:(0,b.Z)("attribute.customField"),defaultMessage:"Custom field"})):t.createElement(l.Z,null,i({id:(0,b.Z)(`attribute.${g}`),defaultMessage:e}),"\xA0",o&&i({id:(0,b.Z)("component.repeatable"),defaultMessage:"(repeatable)"}))};Ee.defaultProps={customField:null,repeatable:!1},Ee.propTypes={type:r().string.isRequired,customField:r().string,repeatable:r().bool};const Ut=Ee;var Wt=Object.defineProperty,ze=Object.getOwnPropertySymbols,Ht=Object.prototype.hasOwnProperty,Kt=Object.prototype.propertyIsEnumerable,Ue=(e,n,o)=>n in e?Wt(e,n,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[n]=o,We=(e,n)=>{for(var o in n||(n={}))Ht.call(n,o)&&Ue(e,o,n[o]);if(ze)for(var o of ze(n))Kt.call(n,o)&&Ue(e,o,n[o]);return e};function Te({configurable:e,customField:n,editTarget:o,firstLoopComponentUid:i,isFromDynamicZone:g,name:d,onClick:E,relation:R,repeatable:h,secondLoopComponentUid:O,target:x,targetUid:y,type:C}){const{contentTypes:P,isInDevelopmentMode:X,removeAttribute:V}=(0,U.Z)(),{formatMessage:W}=(0,I.useIntl)(),S=C==="relation"&&R.includes("morph"),z=["integer","biginteger","float","decimal"].includes(C)?"number":C,G=$()(P,[x],{}),_=$()(G,["schema","displayName"],""),ee=$()(G,"plugin"),we=x?"relation":z,se=()=>{S||e!==!1&&E(o,O||i||y,d,C,n)};let H;return O&&i?H=2:i?H=1:H=0,t.createElement(Vt,We({as:"tr"},(0,c.onRowClick)({fn:se,condition:X&&e&&!S})),t.createElement("td",{style:{position:"relative"}},H!==0&&t.createElement(kt,{color:g?"primary200":"neutral150"}),t.createElement(f.K,{paddingLeft:2,spacing:4,horizontal:!0},t.createElement(zt.Z,{type:we,customField:n}),t.createElement(l.Z,{fontWeight:"bold"},d))),t.createElement("td",null,x?t.createElement(l.Z,null,W({id:(0,b.Z)(`modelPage.attribute.${S?"relation-polymorphic":"relationWith"}`),defaultMessage:"Relation with"}),"\xA0",t.createElement("span",{style:{fontStyle:"italic"}},t.createElement(Nt,{content:_}),"\xA0",ee&&`(${W({id:(0,b.Z)("from"),defaultMessage:"from"})}: ${ee})`)):t.createElement(Ut,{type:C,customField:n,repeatable:h})),t.createElement("td",null,X?t.createElement(k.k,We({justifyContent:"flex-end"},c.stopPropagation),e?t.createElement(f.K,{horizontal:!0,spacing:1},!S&&t.createElement(je.h,{onClick:se,label:`${W({id:"app.utils.edit",defaultMessage:"Edit"})} ${d}`,noBorder:!0,icon:t.createElement(M.Z,null)}),t.createElement(je.h,{onClick:ce=>{ce.stopPropagation(),V(o,d,O||i||"")},label:`${W({id:"global.delete",defaultMessage:"Delete"})} ${d}`,noBorder:!0,icon:t.createElement(At.default,null)})):t.createElement(Zt,null)):t.createElement(s.x,{height:(0,c.pxToRem)(32)})))}Te.defaultProps={configurable:!0,customField:null,firstLoopComponentUid:null,isFromDynamicZone:!1,onClick(){},relation:"",repeatable:!1,secondLoopComponentUid:null,target:null,targetUid:null,type:null},Te.propTypes={configurable:r().bool,customField:r().string,editTarget:r().string.isRequired,firstLoopComponentUid:r().string,isFromDynamicZone:r().bool,name:r().string.isRequired,onClick:r().func,relation:r().string,repeatable:r().bool,secondLoopComponentUid:r().string,target:r().string,targetUid:r().string,type:r().string};const Xt=(0,t.memo)(Te),Gt=e=>{let n;switch(e){case"date":case"datetime":case"time":case"timestamp":n="date";break;case"integer":case"biginteger":case"decimal":case"float":n="number";break;case"string":case"text":n="text";break;case"":n="relation";break;default:n=e}return n};var Jt=a(2669);const Qt={collectionTypesConfigurations:[{action:"plugin::content-manager.collection-types.configure-view",subject:null}],componentsConfigurations:[{action:"plugin::content-manager.components.configure-layout",subject:null}],singleTypesConfigurations:[{action:"plugin::content-manager.single-types.configure-view",subject:null}]},Ce=({disabled:e,isTemporary:n,isInContentTypeView:o,contentTypeKind:i,targetUid:g})=>{const{formatMessage:d}=(0,I.useIntl)(),{push:E}=(0,Y.useHistory)(),{collectionTypesConfigurations:R,componentsConfigurations:h,singleTypesConfigurations:O}=Qt,x=d({id:"content-type-builder.form.button.configure-view"});let y=R;const C=()=>(n||E(o?`/content-manager/collectionType/${g}/configurations/edit`:`/content-manager/components/${g}/configurations/edit`),!1);return o&&i==="singleType"&&(y=O),o||(y=h),t.createElement(c.CheckPermissions,{permissions:y},t.createElement(D.z,{startIcon:t.createElement(Jt.Z,null),variant:"tertiary",onClick:C,disabled:n||e},x))};Ce.defaultProps={contentTypeKind:"collectionType",isInContentTypeView:!0,isTemporary:!1,targetUid:""},Ce.propTypes={disabled:r().bool.isRequired,contentTypeKind:r().string,isInContentTypeView:r().bool,isTemporary:r().bool,targetUid:r().string};const Yt=(0,t.memo)(Ce);var qt=Object.defineProperty,_t=Object.defineProperties,en=Object.getOwnPropertyDescriptors,He=Object.getOwnPropertySymbols,tn=Object.prototype.hasOwnProperty,nn=Object.prototype.propertyIsEnumerable,Ke=(e,n,o)=>n in e?qt(e,n,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[n]=o,on=(e,n)=>{for(var o in n||(n={}))tn.call(n,o)&&Ke(e,o,n[o]);if(He)for(var o of He(n))nn.call(n,o)&&Ke(e,o,n[o]);return e},rn=(e,n)=>_t(e,en(n)),an=(e,n,o)=>new Promise((i,g)=>{var d=h=>{try{R(o.next(h))}catch(O){g(O)}},E=h=>{try{R(o.throw(h))}catch(O){g(O)}},R=h=>h.done?i(h.value):Promise.resolve(h.value).then(d,E);R((o=o.apply(e,n)).next())});const ln=()=>{const{initialData:e,modifiedData:n,isInDevelopmentMode:o,isInContentTypeView:i,submitData:g}=(0,U.Z)(),{formatMessage:d}=(0,I.useIntl)(),{trackUsage:E}=(0,c.useTracking)(),R=(0,Y.useRouteMatch)("/plugins/content-type-builder/:kind/:currentUID"),{onOpenModalAddComponentsToDZ:h,onOpenModalAddField:O,onOpenModalEditField:x,onOpenModalEditSchema:y,onOpenModalEditCustomField:C}=(0,q.Z)(),P=i?"contentType":"component",X=[P,"schema","attributes"],V=$()(n,[P,"uid"]),W=$()(n,[P,"isTemporary"],!1),S=$()(n,[P,"schema","kind"],null),z=$()(n,X,[]),G=oe()(e,[P,"plugin"]),_=!re()(n,e),ee=i?"contentType":"component",we=F=>{h({dynamicZoneTarget:F,targetUid:V})},se=(F,Xe,Ge,Je,Qe)=>an(void 0,null,function*(){const Ye=Gt(Je);Qe?C({forTarget:F,targetUid:Xe,attributeName:Ge,attributeType:Ye,customFieldUid:Qe}):x({forTarget:F,targetUid:Xe,attributeName:Ge,attributeType:Ye,step:Je==="component"?"2":null})});let H=$()(n,[P,"schema","displayName"],"");const ce=$()(n,[P,"schema","kind"],""),de=(R==null?void 0:R.params.currentUID)==="create-content-type";!H&&de&&(H=d({id:(0,b.Z)("button.model.create"),defaultMessage:"Create new collection type"}));const sn=()=>{const F=ce||P;F==="collectionType"&&E("willEditNameOfContentType"),F==="singleType"&&E("willEditNameOfSingleType"),y({modalType:P,forTarget:P,targetUid:V,kind:F})};return t.createElement(t.Fragment,null,t.createElement(Y.Prompt,{message:d({id:(0,b.Z)("prompt.unsaved")}),when:_}),t.createElement(v.T,{id:"title",primaryAction:o&&t.createElement(f.K,{horizontal:!0,spacing:2},!de&&t.createElement(D.z,{startIcon:t.createElement(m.default,null),variant:"secondary",onClick:()=>{O({forTarget:ee,targetUid:V})}},d({id:(0,b.Z)("button.attributes.add.another")})),t.createElement(D.z,{startIcon:t.createElement(L.Z,null),onClick:()=>g(),type:"submit",disabled:re()(n,e)},d({id:"global.save",defaultMessage:"Save"}))),secondaryAction:o&&!G&&!de&&t.createElement(D.z,{startIcon:t.createElement(M.Z,null),variant:"tertiary",onClick:sn},d({id:"app.utils.edit",defaultMessage:"Edit"})),title:ae()(H),subtitle:d({id:(0,b.Z)("listView.headerLayout.description"),defaultMessage:"Build the data architecture of your content"}),navigationAction:t.createElement(c.Link,{startIcon:t.createElement(A.Z,null),to:"/plugins/content-type-builder/"},d({id:"global.back",defaultMessage:"Back"}))}),t.createElement(pe.D,null,t.createElement(f.K,{spacing:4},t.createElement(k.k,{justifyContent:"flex-end"},t.createElement(f.K,{horizontal:!0,spacing:2},t.createElement(Yt,{key:"link-to-cm-settings-view",targetUid:V,isTemporary:W,isInContentTypeView:i,contentTypeKind:S,disabled:de}))),t.createElement(s.x,{background:"neutral0",shadow:"filterShadow",hasRadius:!0},t.createElement(Be,{items:z,customRowComponent:F=>t.createElement(Xt,rn(on({},F),{onClick:se})),addComponentToDZ:we,targetUid:V,editTarget:ee,isMain:!0})))))}},17e3:(te,B,a)=>{a.d(B,{D:()=>A});var t=a(32735),c=a(60216),m=a(62345);const A=({children:L})=>t.createElement(m.x,{paddingLeft:10,paddingRight:10},L);A.propTypes={children:c.node.isRequired}},28356:(te,B,a)=>{a.d(B,{T:()=>I});var t=a(32735),c=a(83292),m=a(60216),A=a(88860),L=a(62345),M=a(36320);const D=r=>{const l=(0,t.useRef)(null),[p,u]=(0,t.useState)(!0),T=([Z])=>{u(Z.isIntersecting)};return(0,t.useEffect)(()=>{const Z=l.current,j=new IntersectionObserver(T,r);return Z&&j.observe(l.current),()=>{Z&&j.disconnect()}},[l,r]),[l,p]};var k=a(81002);const f=(r,l)=>{const p=(0,k.useCallbackRef)(l);(0,t.useLayoutEffect)(()=>{const u=new ResizeObserver(p);return Array.isArray(r)?r.forEach(T=>{T.current&&u.observe(T.current)}):r.current&&u.observe(r.current),()=>{u.disconnect()}},[r,p])};var s=Object.defineProperty,v=Object.defineProperties,pe=Object.getOwnPropertyDescriptors,J=Object.getOwnPropertySymbols,$=Object.prototype.hasOwnProperty,ne=Object.prototype.propertyIsEnumerable,oe=(r,l,p)=>l in r?s(r,l,{enumerable:!0,configurable:!0,writable:!0,value:p}):r[l]=p,Q=(r,l)=>{for(var p in l||(l={}))$.call(l,p)&&oe(r,p,l[p]);if(J)for(var p of J(l))ne.call(l,p)&&oe(r,p,l[p]);return r},re=(r,l)=>v(r,pe(l)),ue=(r,l)=>{var p={};for(var u in r)$.call(r,u)&&l.indexOf(u)<0&&(p[u]=r[u]);if(r!=null&&J)for(var u of J(r))l.indexOf(u)<0&&ne.call(r,u)&&(p[u]=r[u]);return p};const ae=()=>{const r=(0,t.useRef)(null),[l,p]=(0,t.useState)(null),[u,T]=D({root:null,rootMargin:"0px",threshold:0});return f(u,()=>{u.current&&p(u.current.getBoundingClientRect())}),(0,t.useEffect)(()=>{r.current&&p(r.current.getBoundingClientRect())},[r]),{containerRef:u,isVisible:T,baseHeaderLayoutRef:r,headerSize:l}},I=r=>{const{containerRef:l,isVisible:p,baseHeaderLayoutRef:u,headerSize:T}=ae();return t.createElement(t.Fragment,null,t.createElement("div",{style:{height:T==null?void 0:T.height},ref:l},p&&t.createElement(K,Q({ref:u},r))),!p&&t.createElement(K,re(Q({},r),{sticky:!0,width:T==null?void 0:T.width})))};I.displayName="HeaderLayout";const Y=(0,c.default)(L.x)`
192
+ position: fixed;
193
+ top: 0;
194
+ right: 0;
195
+ width: ${r=>r.width}px;
196
+ z-index: 4;
197
+ box-shadow: ${({theme:r})=>r.shadows.tableShadow};
198
+ `,K=t.forwardRef((r,l)=>{var p=r,{navigationAction:u,primaryAction:T,secondaryAction:Z,subtitle:j,title:q,sticky:U,width:w}=p,b=ue(p,["navigationAction","primaryAction","secondaryAction","subtitle","title","sticky","width"]);const N=typeof j=="string";return U?t.createElement(Y,{paddingLeft:6,paddingRight:6,paddingTop:3,paddingBottom:3,background:"neutral0",width:w,"data-strapi-header-sticky":!0},t.createElement(M.k,{justifyContent:"space-between"},t.createElement(M.k,null,u&&t.createElement(L.x,{paddingRight:3},u),t.createElement(L.x,null,t.createElement(A.Z,Q({variant:"beta",as:"h1"},b),q),N?t.createElement(A.Z,{variant:"pi",textColor:"neutral600"},j):j),Z?t.createElement(L.x,{paddingLeft:4},Z):null),t.createElement(M.k,null,T?t.createElement(L.x,{paddingLeft:2},T):void 0))):t.createElement(L.x,{ref:l,paddingLeft:10,paddingRight:10,paddingBottom:8,paddingTop:u?6:8,background:"neutral100","data-strapi-header":!0},u?t.createElement(L.x,{paddingBottom:2},u):null,t.createElement(M.k,{justifyContent:"space-between"},t.createElement(M.k,null,t.createElement(A.Z,Q({as:"h1",variant:"alpha"},b),q),Z?t.createElement(L.x,{paddingLeft:4},Z):null),T),N?t.createElement(A.Z,{variant:"epsilon",textColor:"neutral600",as:"p"},j):j)});K.displayName="BaseHeaderLayout",K.defaultProps={navigationAction:void 0,primaryAction:void 0,secondaryAction:void 0,subtitle:void 0,sticky:!1,width:void 0},K.propTypes={navigationAction:m.node,primaryAction:m.node,secondaryAction:m.node,sticky:m.bool,subtitle:m.oneOfType([m.string,m.node]),title:m.string.isRequired,width:m.number},I.defaultProps={navigationAction:void 0,primaryAction:void 0,secondaryAction:void 0,subtitle:void 0},I.propTypes={navigationAction:m.node,primaryAction:m.node,secondaryAction:m.node,subtitle:m.oneOfType([m.string,m.node]),title:m.string.isRequired}},29439:(te,B,a)=>{a.d(B,{Z:()=>k});var t=a(32735),c=Object.defineProperty,m=Object.getOwnPropertySymbols,A=Object.prototype.hasOwnProperty,L=Object.prototype.propertyIsEnumerable,M=(f,s,v)=>s in f?c(f,s,{enumerable:!0,configurable:!0,writable:!0,value:v}):f[s]=v,D=(f,s)=>{for(var v in s||(s={}))A.call(s,v)&&M(f,v,s[v]);if(m)for(var v of m(s))L.call(s,v)&&M(f,v,s[v]);return f};function k(f){return t.createElement("svg",D({width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},f),t.createElement("path",{d:"M24 13.3a.2.2 0 01-.2.2H5.74l8.239 8.239a.2.2 0 010 .282L12.14 23.86a.2.2 0 01-.282 0L.14 12.14a.2.2 0 010-.282L11.86.14a.2.2 0 01.282 0L13.98 1.98a.2.2 0 010 .282L5.74 10.5H23.8c.11 0 .2.09.2.2v2.6z",fill:"#212134"}))}},2669:(te,B,a)=>{a.d(B,{Z:()=>k});var t=a(32735),c=Object.defineProperty,m=Object.getOwnPropertySymbols,A=Object.prototype.hasOwnProperty,L=Object.prototype.propertyIsEnumerable,M=(f,s,v)=>s in f?c(f,s,{enumerable:!0,configurable:!0,writable:!0,value:v}):f[s]=v,D=(f,s)=>{for(var v in s||(s={}))A.call(s,v)&&M(f,v,s[v]);if(m)for(var v of m(s))L.call(s,v)&&M(f,v,s[v]);return f};function k(f){return t.createElement("svg",D({width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},f),t.createElement("path",{d:"M4.8.2c0-.11.09-.2.2-.2h18.8c.11 0 .2.09.2.2v4.4a.2.2 0 01-.2.2H5a.2.2 0 01-.2-.2V.2zM0 9.8c0-.11.09-.2.2-.2H19c.11 0 .2.09.2.2v4.4a.2.2 0 01-.2.2H.2a.2.2 0 01-.2-.2V9.8zM5 19.2a.2.2 0 00-.2.2v4.4c0 .11.09.2.2.2h18.8a.2.2 0 00.2-.2v-4.4a.2.2 0 00-.2-.2H5z",fill:"#212134"}))}}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[7155],{85638:e=>{e.exports=JSON.parse('{"attribute.boolean":"Boolean","attribute.boolean.description":"Ja oder nein, 1 oder 0, wahr oder falsch","attribute.component":"Komponente","attribute.component.description":"Gruppierung an Feldern, die wiederholt und wiederbenutzt werden kann","attribute.date":"Datum","attribute.date.description":"Eine Datums-Auswahl mit Stunden, Minuten und Sekunden","attribute.datetime":"Datum mit Uhrzeit","attribute.dynamiczone":"Dynamische Zone","attribute.dynamiczone.description":"Beliebige Komponenten beim Bearbeiten des Inhalts w\xE4hlen","attribute.email":"E-Mail","attribute.email.description":"E-Mail-Feld mit Validierung","attribute.enumeration":"Enumeration","attribute.enumeration.description":"Aufz\xE4hlung an Auswahlm\xF6glichkeiten, von denen eine gew\xE4hlt werden muss","attribute.json":"JSON","attribute.json.description":"Daten im JSON-Format","attribute.media":"Medien","attribute.media.description":"Dateien wie Bilder, Videos, etc","attribute.null":" ","attribute.number":"Zahl","attribute.number.description":"Zahlen (ganzzahlig, Gleitkommazahl, dezimal)","attribute.password":"Passwort","attribute.password.description":"Passwort-Feld mit Verschl\xFCsselung","attribute.relation":"Beziehung","attribute.relation.description":"Beziehung mit einem anderen Eintrag","attribute.richtext":"Formatierter Text","attribute.richtext.description":"Ein Text-Editor mit Formatierungsoptionen","attribute.text":"Text","attribute.text.description":"Ein- oder mehrzeiliger Text wie Titel oder Beschreibungen","attribute.time":"Uhrzeit","attribute.timestamp":"Zeitstempel","attribute.uid":"UID","attribute.uid.description":"Einzigartiger Identifier","button.attributes.add.another":"Weiteres Feld hinzuf\xFCgen","button.component.add":"Komponente hinzuf\xFCgen","button.component.create":"Neue Komponente erstellen","button.model.create":"Neue Sammlung erstellen","button.single-types.create":"Neuen Einzel-Eintrag erstellen","component.repeatable":"(wiederholbar)","components.SelectComponents.displayed-value":"{number, plural, =0 {# Komponenten} one {# Komponente} other {# Komponenten}} ausgew\xE4hlt","components.componentSelect.no-component-available":"Du hast bereits alle Komponenten hinzugef\xFCgt","components.componentSelect.no-component-available.with-search":"Es gibt keine Komponenten, die diesem Begriff entsprechen","components.componentSelect.value-component":"{number} Komponente ausgew\xE4hlt (Tippen um nach Komponente zu suchen)","components.componentSelect.value-components":"{number} Komponenten ausgew\xE4hlt","configurations":"Konfigurationen","contentType.apiId-plural.description":"API-ID im Plural","contentType.apiId-plural.label":"Plural API ID","contentType.apiId-singular.description":"Die UID wird verwendet, um API-Routen und Datenbank-Tabellen/-Sammlungen zu erstellen","contentType.apiId-singular.label":"Singular API ID","contentType.collectionName.description":"N\xFCtzlich wenn sich der Name der Sammlung und der Tabellenname unterscheiden","contentType.collectionName.label":"Name der Sammlung","contentType.displayName.label":"Anzeigename","contentType.draftAndPublish.description":"Lege einen Entwurf des Eintrags an bevor er ver\xF6ffentlicht wird","contentType.draftAndPublish.label":"Entwurf/Ver\xF6ffentlichen-System","contentType.kind.change.warning":"Du hast die Art eines Inhaltstyps ge\xE4ndert: API wird resettet (Routen, Controller und Services werden \xFCberschrieben).","error.attributeName.reserved-name":"Dieser Name kann nicht f\xFCr Attribute genutzt werden, da er andere Funktionalit\xE4ten beeintr\xE4chtigen w\xFCrde","error.contentType.pluralName-used":"Dieser Wert kann nicht gleich sein wie der Singular-Wert","error.contentType.singularName-used":"Dieser Wert kann nicht gleich sein wie der Plural-Wert","error.contentTypeName.reserved-name":"Dieser Name kann nicht genutzt werden, da er andere Funktionalit\xE4ten beeintr\xE4chtigen w\xFCrde","error.validation.enum-duplicate":"Doppelte Werte sind nicht erlaubt","error.validation.enum-empty-string":"Leere Werte sind nicht erlaubt","error.validation.enum-number":"Werte k\xF6nnen nicht mit einer Zahl beginnen","error.validation.minSupMax":"Wert kann nicht h\xF6her sein","error.validation.positive":"Muss eine positive Zahl sein","error.validation.regex":"Regex-Pattern ist ung\xFCltig","error.validation.relation.targetAttribute-taken":"Dieser Name existiert bereits im Ziel-Typ","form.attribute.component.option.add":"Komponente hinzuf\xFCgen","form.attribute.component.option.create":"Neue Komponente erstellen","form.attribute.component.option.create.description":"Eine Komponente ist \xFCberall verf\xFCgbar und wird unter Inhaltstypen und anderen Komponenten geteilt.","form.attribute.component.option.repeatable":"Wiederholbare Komponenten","form.attribute.component.option.repeatable.description":"N\xFCtzlich f\xFCr mehrere Instanzen (Array) an Zutaten, Meta-Tags, etc...","form.attribute.component.option.reuse-existing":"Bereits existierende Komponente nutzen","form.attribute.component.option.reuse-existing.description":"Eine bereits erstellte Komponente benutzen, um Daten \xFCber Inhaltstypen hinweg konsistent zu halten.","form.attribute.component.option.single":"Einzelne Komponente","form.attribute.component.option.single.description":"N\xFCtzlich um Felder wie volle Addresse, Hauptinformationen, etc. zu grupppieren","form.attribute.item.customColumnName":"Eigener Spaltenname","form.attribute.item.customColumnName.description":"Dies ist n\xFCtzlich, um Spalten in der Datenbank f\xFCr Antworten der API umzubenennen","form.attribute.item.date.type.date":"Datum (Bsp: 01.01.{currentYear})","form.attribute.item.date.type.datetime":"Datum & Uhrzeit (Bsp: 01.01.{currentYear} 00:00)","form.attribute.item.date.type.time":"Uhrzeit (Bsp: 00:00)","form.attribute.item.defineRelation.fieldName":"Feldname","form.attribute.item.enumeration.graphql":"Namens\xFCberschreibung f\xFCr GraphQL","form.attribute.item.enumeration.graphql.description":"Erm\xF6glicht, den standardm\xE4\xDFig generierten Namen f\xFCr GraphQL zu \xFCberschreiben","form.attribute.item.enumeration.placeholder":"Bsp:\\nMorgen\\nMittag\\nAbend","form.attribute.item.enumeration.rules":"Werte (einer pro Zeile)","form.attribute.item.maximum":"Maximalwert","form.attribute.item.maximumLength":"Maximall\xE4nge","form.attribute.item.minimum":"Mindestwert","form.attribute.item.minimumLength":"Mindestl\xE4nge","form.attribute.item.number.type":"Zahlenformat","form.attribute.item.number.type.biginteger":"gro\xDFe Ganzzahl (ex: 123456789)","form.attribute.item.number.type.decimal":"dezimal (z.B.: 2.22)","form.attribute.item.number.type.float":"Gleitkommazahl (z.B.: 3.33333333)","form.attribute.item.number.type.integer":"ganzzahlig (z.B.: 10)","form.attribute.item.privateField":"Privates Feld","form.attribute.item.privateField.description":"Dieses Feld wird nicht in API-Abfragen angezeigt","form.attribute.item.requiredField":"Ben\xF6tigtes Feld","form.attribute.item.requiredField.description":"Du wirst keinen Eintrag anlegen k\xF6nnen, wenn dieses Feld leer ist","form.attribute.item.text.regex":"RegExp-Pattern","form.attribute.item.text.regex.description":"Der Text der Regular Expression","form.attribute.item.uniqueField":"Einzigartiges Feld","form.attribute.item.uniqueField.description":"Du wirst keinen Eintrag anlegen k\xF6nnen, wenn es bereits einen Eintrag mit identischem Inhalt gibt","form.attribute.media.allowed-types":"W\xE4hle erlaubte Arten von Medien","form.attribute.media.allowed-types.option-files":"Dateien","form.attribute.media.allowed-types.option-images":"Bilder","form.attribute.media.allowed-types.option-videos":"Videos","form.attribute.media.option.multiple":"Mehrere Medien","form.attribute.media.option.multiple.description":"N\xFCtzlich f\xFCr Slider, Galerien oder Downloads von mehreren Dateien","form.attribute.media.option.single":"Einzelne Medien-Datei","form.attribute.media.option.single.description":"N\xFCtzlich f\xFCr Profilbilder oder Cover-Bilder","form.attribute.settings.default":"Standardwert","form.attribute.text.option.long-text":"Mehrzeiliger Text","form.attribute.text.option.long-text.description":"N\xFCtzlich f\xFCr Beschreibungen, Biographien. Exakte Suche ist deaktiviert","form.attribute.text.option.short-text":"Einzeiliger Text","form.attribute.text.option.short-text.description":"N\xFCtzlich f\xFCr Titel, Namen, Links (URL). Erm\xF6glicht exakte Suche.","form.button.add-components-to-dynamiczone":"Komponenten zur Zone hinzuf\xFCgen","form.button.add-field":"Weiteres Feld hinzuf\xFCgen","form.button.add-first-field-to-created-component":"Erstes Feld zur Komponente hinzuf\xFCgen","form.button.add.field.to.collectionType":"Weiteres Feld zur Sammlung hinzuf\xFCgen","form.button.add.field.to.component":"Weiteres Feld zur Komponente hinzuf\xFCgen","form.button.add.field.to.contentType":"Weiteres Feld zum Inhaltstyp hinzuf\xFCgen","form.button.add.field.to.singleType":"Weiteres Feld zum Einzel-Eintrag hinzuf\xFCgen","form.button.cancel":"Abbrechen","form.button.collection-type.description":"N\xFCtzlich f\xFCr mehrere Instanzen wie Artikel, Produkte, Kommentare, etc.","form.button.collection-type.name":"Inhalts-Typ","form.button.configure-component":"Komponente konfigurieren","form.button.configure-view":"Ansicht konfigurieren","form.button.select-component":"Komponente ausw\xE4hlen","form.button.single-type.description":"N\xFCtzlich f\xFCr einzelne Instanz wie \xDCber uns, Startseite, etc.","form.button.single-type.name":"Einzel-Eintrag","form.contentType.divider.draft-publish":"Entwurf/Ver\xF6ffentlichen","from":"von","listView.headerLayout.description":"Baue die Daten-Architektur deines Inhalts","menu.section.components.name":"Komponenten","menu.section.models.name":"Sammlungen","menu.section.single-types.name":"Einzel-Eintr\xE4ge","modalForm.attribute.form.base.name.description":"Leerzeichen sind im Name eines Attributs nicht erlaubt","modalForm.attribute.form.base.name.placeholder":"z.B. Slug, SEO URL, Canonical URL","modalForm.attribute.target-field":"Verkn\xFCpftes Feld","modalForm.attributes.select-component":"W\xE4hle eine Komponente","modalForm.attributes.select-components":"W\xE4hle die Komponenten","modalForm.collectionType.header-create":"Erstelle einen Inhalts-Typ","modalForm.component.header-create":"Erstelle eine Komponente","modalForm.components.create-component.category.label":"W\xE4hle Kategorie oder gebe neuen Namen ein, um eine zu erstellen","modalForm.components.icon.label":"Icon","modalForm.editCategory.base.name.description":"Leerzeichen sind im Name einer Kategorie nicht erlaubt","modalForm.header-edit":"Bearbeite {name}","modalForm.header.categories":"Kategorien","modalForm.singleType.header-create":"Erstelle einen Einzel-Eintrag","modalForm.sub-header.addComponentToDynamicZone":"Komponente zur dynamischen Zone hinzuf\xFCgen","modalForm.sub-header.attribute.create":"Erstelle neues {type}-Feld","modalForm.sub-header.attribute.create.step":"Neue Komponente ({step}/2)","modalForm.sub-header.attribute.edit":"Bearbeite {name}","modalForm.sub-header.chooseAttribute.collectionType":"W\xE4hle ein Feld f\xFCr die Sammlung","modalForm.sub-header.chooseAttribute.component":"W\xE4hle ein Feld f\xFCr die Komponente","modalForm.sub-header.chooseAttribute.singleType":"W\xE4hle ein Feld f\xFCr den Einzel-Eintrag","modelPage.attribute.relation-polymorphic":"Beziehung (polymorph)","modelPage.attribute.relationWith":"Beziehung mit","notification.error.dynamiczone-min.validation":"Eine dynamische Zone braucht mindestens eine Komponente, bevor sie gespeichert werden kann","notification.info.autoreaload-disable":"Das autoReload-Feature wird f\xFCr dieses Plugin ben\xF6tigt. Starte deinen Server mit `strapi develop`","notification.info.creating.notSaved":"Bitte speichere deine Arbeit bevor du einen neuen Inhaltstyp oder eine neue Komponente erstellst","plugin.description.long":"Modelliere die Datenstruktur deiner API. Lege neue Felder und Beziehungen innerhalb von einer Minute an. Erforderliche Dateien werden automatisch in deinem Projekt angelegt und aktualisiert.","plugin.description.short":"Modelliere die Datenstruktur deiner API.","plugin.name":"Content-Type Builder","popUpForm.navContainer.advanced":"Fortgeschrittene Einstellungen","popUpForm.navContainer.base":"Grundeinstellungen","popUpWarning.bodyMessage.cancel-modifications":"Bist du dir sicher, dass du alle deine \xC4nderungen abbrechen willst?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Bist du dir sicher, dass du alle deine \xC4nderungen abbrechen willst? Es wurden Komponenten erstellt oder bearbeitet...","popUpWarning.bodyMessage.category.delete":"Bist du dir sicher, dass du diese Kategorie l\xF6schen willst? Alle dazugeh\xF6rigen Komponenten werden ebenfalls gel\xF6scht.","popUpWarning.bodyMessage.component.delete":"Bist du dir sicher, dass du diese Komponente l\xF6schen willst?","popUpWarning.bodyMessage.contentType.delete":"Bist du sicher, dass du diesen Inhaltstyp l\xF6schen willst?","popUpWarning.draft-publish.button.confirm":"Ja, deaktivieren","popUpWarning.draft-publish.message":"Wenn du das Entwurf/Ver\xF6ffentlichen-System deaktivierst werden alle Entw\xFCrfe gel\xF6scht.","popUpWarning.draft-publish.second-message":"Bist du dir sicher, dass du es deaktivieren willst?","prompt.unsaved":"Bist du dir sicher, dass du diese Seite verlassen willst? Deine \xC4nderungen werden verworfen.","relation.attributeName.placeholder":"z.B.: Autor, Kategorie","relation.manyToMany":"hat und geh\xF6rt zu vielen","relation.manyToOne":"hat viele","relation.manyWay":"hat viele","relation.oneToMany":"geh\xF6rt zu vielen","relation.oneToOne":"hat und geh\xF6rt zu ein(-er/-em)","relation.oneWay":"hat ein(-e/-en)","table.button.no-fields":"Neues Feld hinzuf\xFCgen","table.content.create-first-content-type":"Erstelle deinen ersten Inhalts-Typ","table.content.no-fields.collection-type":"F\xFCge diesem Inhalts-Typ das erstes Feld hinzu","table.content.no-fields.component":"F\xFCge dieser Komponente das erstes Feld hinzu"}')}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[2246],{8737:e=>{e.exports=JSON.parse('{"attribute.boolean":"Boolean","attribute.boolean.description":"Ja eller nej, 1 eller 0, sand eller falsk","attribute.component":"Komponent","attribute.component.description":"Gruppe af felter som kan gentages","attribute.date":"Dato","attribute.date.description":"En datov\xE6lger med timer, minutter og sekunder","attribute.datetime":"Dato - tid","attribute.dynamiczone":"Dynamisk zone","attribute.dynamiczone.description":"Dynamisk udv\xE6lg komponenter ved redigering af indhold","attribute.email":"E-mail","attribute.email.description":"E-mail felt med valideringsformat","attribute.enumeration":"Enumeration","attribute.enumeration.description":"Liste med v\xE6rdier, v\xE6lg \xE9n","attribute.json":"JSON","attribute.json.description":"Data i JSON format","attribute.media":"Medie","attribute.media.description":"Filer som billeder, videoer, osv...","attribute.null":" ","attribute.number":"Tal","attribute.number.description":"Tal (hele tal, kommatal)","attribute.password":"Kodeord","attribute.password.description":"Kodeord med kryptering","attribute.relation":"Relation","attribute.relation.description":"Reference til en dokument type","attribute.richtext":"RTE","attribute.richtext.description":"En rich-text-editor med formateringsmuligheder","attribute.text":"Tekst","attribute.text.description":"Korte eller lange tekster som titel eller beskrivelse","attribute.time":"Tid","attribute.timestamp":"Tidsstempel","attribute.uid":"UID","attribute.uid.description":"Unikt ID","button.attributes.add.another":"Tilf\xF8j et felt","button.component.add":"Tilf\xF8j et komponent","button.component.create":"Opret komponent","button.model.create":"Opret dokument type","button.single-types.create":"Opret enkelt type","component.repeatable":"(gentageligt)","components.SelectComponents.displayed-value":"{number, plural, =0 {# komponenter} one {# komponent} other {# komponenter}} valgt","components.componentSelect.no-component-available":"Du har allerede tilf\xF8jet alle dine komponenter","components.componentSelect.no-component-available.with-search":"Der er ingen komponenter som matcher din s\xF8gning","components.componentSelect.value-component":"{number} komponent valgt (skriv for at s\xF8ge efter komponenter)","components.componentSelect.value-components":"{number} komponenter valgt","configurations":"konfigurationer","contentType.apiId-plural.description":"API ID i flertal","contentType.apiId-plural.label":"API ID (flertal)","contentType.apiId-singular.description":"UID bliver brugt til at generere API routes og database tabeller/kollektion","contentType.apiId-singular.label":"API ID (ental)","contentType.collectionName.description":"Brugbar n\xE5r navnet p\xE5 din indholdstype og dit tabel navn er forskellige","contentType.collectionName.label":"Dokument navn","contentType.displayName.label":"Visningsnavn","contentType.draftAndPublish.description":"Opret en version som udkast for hvert element inden det offentligg\xF8res","contentType.draftAndPublish.label":"Udkast/offentligg\xF8r system","contentType.kind.change.warning":"Du har lige \xE6ndret typen af en indholdstype: API bliver nustillet (ruter, controllere, og services bliver overskrevet).","error.attributeName.reserved-name":"Dette navn kan ikke bruges i din indholdstype, da det m\xE5ske kan \xF8del\xE6gge andre funktioner","error.contentType.pluralName-used":"Denne v\xE6rdi kan ikke v\xE6re den samme som ved ental","error.contentType.singularName-used":"Denne v\xE6rdi kan ikke v\xE6re den samme som ved flertal","error.contentTypeName.reserved-name":"Dette navn kan ikke bruges i dit projekt, da det m\xE5ske kan \xF8del\xE6gge andre funktioner","error.validation.enum-duplicate":"Duplikat v\xE6rdi er ikke tilladt","error.validation.enum-empty-string":"Tomme strenge er ikke tilladt","error.validation.minSupMax":"M\xE5 ikke overstige","error.validation.positive":"Skal v\xE6re et positivt tal","error.validation.regex":"Regex m\xF8nster er ikke gyldig","error.validation.relation.targetAttribute-taken":"Dette navn eksisterer allerede","form.attribute.component.option.add":"Tilf\xF8j et komponent","form.attribute.component.option.create":"Opret et komponent","form.attribute.component.option.create.description":"Et komponent er delt mellem typer og komponenter, det bliver tilg\xE6ngeligt fra alle steder.","form.attribute.component.option.repeatable":"Gentageligt komponent","form.attribute.component.option.repeatable.description":"Bedst til gentagne v\xE6rdier af f.eks. ingredienser, meta tags, osv...","form.attribute.component.option.reuse-existing":"Brug et eksisterende komponent","form.attribute.component.option.reuse-existing.description":"Genbrug en komponent der allerede er oprettet for at holde din data konsistent gennem indholdstyper.","form.attribute.component.option.single":"Enkelt komponent","form.attribute.component.option.single.description":"Bedst til at gruppere felter som fulde adresse, prim\xE6r information osv...","form.attribute.item.customColumnName":"Specielle kolonne navne","form.attribute.item.customColumnName.description":"Dette er brugbart til at omd\xF8be database kolonne navne i et mere omfattende format til API svar","form.attribute.item.defineRelation.fieldName":"Felt navn","form.attribute.item.enumeration.graphql":"Navn overskrivning til GraphQL","form.attribute.item.enumeration.graphql.description":"Tillader dig at overskrive standard genereret navn til GraphQL","form.attribute.item.enumeration.placeholder":"F.eks.\\nmorgen\\nmiddag\\naften","form.attribute.item.enumeration.rules":"V\xE6rdier (\xE9n linje pr. v\xE6rdi)","form.attribute.item.maximum":"Maks v\xE6rdi","form.attribute.item.maximumLength":"Maks l\xE6ngde","form.attribute.item.minimum":"Minimum v\xE6rdi","form.attribute.item.minimumLength":"Minimum l\xE6ngde","form.attribute.item.number.type":"Tal format","form.attribute.item.number.type.biginteger":"stort helt tal (f.eks. 123456789)","form.attribute.item.number.type.decimal":"decimal (f.eks. 2.22)","form.attribute.item.number.type.float":"float (f.eks. 3.33333333)","form.attribute.item.number.type.integer":"helt tal (f.eks. 10)","form.attribute.item.privateField":"Privat felt","form.attribute.item.privateField.description":"Dette flet bliver ikke vist i API svar","form.attribute.item.requiredField":"P\xE5kr\xE6vet felt","form.attribute.item.requiredField.description":"Du kan ikke oprette et element hvis dette felt er tomt","form.attribute.item.text.regex":"RegExp m\xF8nster","form.attribute.item.text.regex.description":"Teksten til regular expression","form.attribute.item.uniqueField":"Unikt felt","form.attribute.item.uniqueField.description":"Du kan ikke oprette et element hvis der allerede findes et element med samme indhold","form.attribute.media.allowed-types":"V\xE6lg tillade typer af medier","form.attribute.media.allowed-types.option-files":"Filer","form.attribute.media.allowed-types.option-images":"Billeder","form.attribute.media.allowed-types.option-videos":"Videoer","form.attribute.media.option.multiple":"Flere medier","form.attribute.media.option.multiple.description":"Best til gallerier, slideshows eller download af flere filer","form.attribute.media.option.single":"Enkelt medie","form.attribute.media.option.single.description":"Best til avatar, profil billeder eller cover","form.attribute.settings.default":"Standard v\xE6rdi","form.attribute.text.option.long-text":"Lang tekst","form.attribute.text.option.long-text.description":"Bedst til beskrivelser, biografier. Pr\xE6cis s\xF8gning er deaktiveret.","form.attribute.text.option.short-text":"Kort tekst","form.attribute.text.option.short-text.description":"Bedst til titler, navne, links (URL). Pr\xE6cis s\xF8gning er aktiveret.","form.button.add-components-to-dynamiczone":"Tilf\xF8j komponenter til zonen","form.button.add-field":"Tilf\xF8j endnu et felt","form.button.add-first-field-to-created-component":"Tilf\xF8j det f\xF8rste felt til komponentet","form.button.add.field.to.collectionType":"Tilf\xF8j endnu et felt til dokument typen","form.button.add.field.to.component":"Tilf\xF8j endnu et felt til komponentet","form.button.add.field.to.contentType":"Tilf\xF8j endnu et felt til dokument typen","form.button.add.field.to.singleType":"Tilf\xF8j endnu et felt til enkelt typen","form.button.cancel":"Annuller","form.button.collection-type.description":"Bedst til Best for flere forkomster som artikler, produkter, kommentarer osv...","form.button.configure-component":"Konfigur\xE9r komponentet","form.button.configure-view":"Konfigur\xE9r visning","form.button.select-component":"V\xE6lg et komponent","form.button.single-type.description":"Bedst til enkelte forekomster som \\"om os\\", forside osv...","form.contentType.divider.draft-publish":"Udkast/offentligg\xF8r","from":"fra","listView.headerLayout.description":"Byg datastrukturen for dit indhold","modalForm.attribute.form.base.name.description":"Mellemrum er ikke tilladt i navnet","modalForm.attribute.form.base.name.placeholder":"f.eks. Slug, SEO URL, Canonical URL","modalForm.attribute.target-field":"Vedh\xE6ftet felt","modalForm.attributes.select-component":"V\xE6lg et komponent","modalForm.attributes.select-components":"V\xE6lg komponenterne","modalForm.collectionType.header-create":"Opret en dokumenttype","modalForm.component.header-create":"Opret et komponent","modalForm.components.create-component.category.label":"V\xE6lg en kategori eller intast et navn for at oprette en ny","modalForm.components.icon.label":"Ikon","modalForm.editCategory.base.name.description":"Mellemrum er ikke tilladt i kategori navnet","modalForm.header-edit":"Redig\xE9r {name}","modalForm.header.categories":"Kategorier","modalForm.singleType.header-create":"Opret en enkelt type","modalForm.sub-header.addComponentToDynamicZone":"Tilf\xF8j komponent til den dymaiske zone","modalForm.sub-header.attribute.create":"Tilf\xF8j {type} felt","modalForm.sub-header.attribute.create.step":"Tilf\xF8j komponent ({step}/2)","modalForm.sub-header.attribute.edit":"Redig\xE9r {name}","modalForm.sub-header.chooseAttribute.collectionType":"V\xE6lg et felt til din dokument type","modalForm.sub-header.chooseAttribute.component":"V\xE6lg et felt til dit komponent","modalForm.sub-header.chooseAttribute.singleType":"V\xE6lg et felt til din enkelt type","modelPage.attribute.relation-polymorphic":"Relation (polymorphic)","modelPage.attribute.relationWith":"Relation med","notification.info.autoreaload-disable":"AutoReload funktionen er p\xE5kr\xE6vet for at bruge dette plugin. Start din server med `strapi develop`","notification.info.creating.notSaved":"Gem venligst dit arbejde inden du opretter en dokument type eller komponent","plugin.description.long":"Modell\xE9r data strukturen i dit API. Opret felter og relationer p\xE5 f\xE5 minutter. Filerne bliver automatisk oprettet og opdateret i dit projekt.","plugin.description.short":"Modell\xE9r data strukturen i dit API.","plugin.name":"Dokumenttype bygger","popUpForm.navContainer.advanced":"Avancerede indstillinger","popUpForm.navContainer.base":"Standard indstillinger","popUpWarning.bodyMessage.cancel-modifications":"Er du sikker p\xE5 at du vil annullere dine \xE6ndringer?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Er du sikker p\xE5 at du vil annullere dine \xE6ndringer? Nogle komponenter er blevet oprettet eller redigeret...","popUpWarning.bodyMessage.category.delete":"Er du sikker p\xE5 at du vil slette denne kategori? Alle komponenterne bliver ogs\xE5 slettet.","popUpWarning.bodyMessage.component.delete":"Er du sikker p\xE5 at du vil slette denne komponent?","popUpWarning.bodyMessage.contentType.delete":"Er du sikker p\xE5 at du vil slette denne dokument type?","popUpWarning.draft-publish.button.confirm":"Ja, deaktiv\xE9r","popUpWarning.draft-publish.message":"Hvis du deaktiverer udkast/offentligg\xF8r systemet, bliver dine udkast slettet.","popUpWarning.draft-publish.second-message":"Er du sikker p\xE5 at du vil deaktivere det?","prompt.unsaved":"Er du sikker p\xE5 at du vil stoppe? Alle dine \xE6ndringer g\xE5r tabt.","relation.attributeName.placeholder":"F.eks. forfatter, kategori, tag","relation.manyToMany":"har og tilh\xF8rer flere","relation.manyToOne":"har flere","relation.manyWay":"har flere","relation.oneToMany":"tilh\xF8rer flere","relation.oneToOne":"har og tilh\xF8rer \xE9n","relation.oneWay":"har \xE9n","table.button.no-fields":"Tilf\xF8j nyt felt","table.content.create-first-content-type":"Opret din f\xF8rst dokumenttype","table.content.no-fields.collection-type":"Tilf\xF8j dit f\xF8rste felt til denne dokumenttype","table.content.no-fields.component":"Tilf\xF8j dit f\xF8rste felt til dette komponent"}')}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[931],{20392:e=>{e.exports=JSON.parse(`{"attribute.boolean":"Boolean","attribute.boolean.description":"Yes or no, 1 or 0, true or false","attribute.component":"Component","attribute.component.description":"Group of fields that you can repeat or reuse","attribute.customField":"Custom field","attribute.date":"Date","attribute.date.description":"A date picker with hours, minutes and seconds","attribute.datetime":"Datetime","attribute.dynamiczone":"Dynamic zone","attribute.dynamiczone.description":"Dynamically pick component when editing content","attribute.email":"Email","attribute.email.description":"Email field with validations format","attribute.enumeration":"Enumeration","attribute.enumeration.description":"List of values, then pick one","attribute.json":"JSON","attribute.json.description":"Data in JSON format","attribute.media":"Media","attribute.media.description":"Files like images, videos, etc","attribute.null":" ","attribute.number":"Number","attribute.number.description":"Numbers (integer, float, decimal)","attribute.password":"Password","attribute.password.description":"Password field with encryption","attribute.relation":"Relation","attribute.relation.description":"Refers to a Collection Type","attribute.richtext":"Rich text","attribute.richtext.description":"A rich text editor with formatting options","attribute.text":"Text","attribute.text.description":"Small or long text like title or description","attribute.time":"Time","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"Unique identifier","button.attributes.add.another":"Add another field","button.component.add":"Add a component","button.component.create":"Create new component","button.model.create":"Create new collection type","button.single-types.create":"Create new single type","component.repeatable":"(repeatable)","components.SelectComponents.displayed-value":"{number, plural, =0 {# components} one {# component} other {# components}} selected","components.componentSelect.no-component-available":"You have already added all your components","components.componentSelect.no-component-available.with-search":"There is no component matching your search","components.componentSelect.value-component":"{number} component selected (type to search for a component)","components.componentSelect.value-components":"{number} components selected","configurations":"Configurations","contentType.apiId-plural.description":"Pluralized API ID","contentType.apiId-plural.label":"API ID (Plural)","contentType.apiId-singular.description":"The UID is used to generate the API routes and databases tables/collections","contentType.apiId-singular.label":"API ID (Singular)","contentType.collectionName.description":"Useful when the name of your Content Type and your table name differ","contentType.collectionName.label":"Collection name","contentType.displayName.label":"Display name","contentType.draftAndPublish.description":"Write a draft version of each entry before publishing it","contentType.draftAndPublish.label":"Draft/publish system","contentType.kind.change.warning":"You just changed the kind of a content type: API will be reset (routes, controllers, and services will be overwritten).","error.attributeName.reserved-name":"This name cannot be used in your content type as it might break other functionalities","error.contentType.pluralName-used":"This value cannot be the same as the singular one","error.contentType.singularName-used":"This value cannot be the same as the plural one","error.contentTypeName.reserved-name":"This name cannot be used in your project as it might break other functionalities","error.validation.enum-duplicate":"Duplicate values are not allowed (only alphanumeric characters are taken into account).","error.validation.enum-empty-string":"Empty strings are not allowed","error.validation.enum-regex":"At least one value is invalid. Values should have at least one alphabetical character preceeding the first occurence of a number.","error.validation.minSupMax":"Can't be superior","error.validation.positive":"Must be a positive number","error.validation.regex":"Regex pattern is invalid","error.validation.relation.targetAttribute-taken":"This name exists in the target","form.attribute.component.option.add":"Add a component","form.attribute.component.option.create":"Create a new component","form.attribute.component.option.create.description":"A component is shared across types and components, it will be available and accessible everywhere.","form.attribute.component.option.repeatable":"Repeatable component","form.attribute.component.option.repeatable.description":"Best for multiple instances (array) of ingredients, meta tags, etc..","form.attribute.component.option.reuse-existing":"Use an existing component","form.attribute.component.option.reuse-existing.description":"Reuse a component already created to keep your data consistent across content-types.","form.attribute.component.option.single":"Single component","form.attribute.component.option.single.description":"Best for grouping fields like full address, main information, etc...","form.attribute.item.customColumnName":"Custom column names","form.attribute.item.customColumnName.description":"This is useful to rename database column names in a more comprehensive format for the API's responses","form.attribute.item.date.type.date":"date (ex: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"datetime (ex: 01/01/{currentYear} 00:00 AM)","form.attribute.item.date.type.time":"time (ex: 00:00 AM)","form.attribute.item.defineRelation.fieldName":"Field name","form.attribute.item.enumeration.graphql":"Name override for GraphQL","form.attribute.item.enumeration.graphql.description":"Allows you to override the default generated name for GraphQL","form.attribute.item.enumeration.placeholder":"Ex:\\nmorning\\nnoon\\nevening","form.attribute.item.enumeration.rules":"Values (one line per value)","form.attribute.item.maximum":"Maximum value","form.attribute.item.maximumLength":"Maximum length","form.attribute.item.minimum":"Minimum value","form.attribute.item.minimumLength":"Minimum length","form.attribute.item.number.type":"Number format","form.attribute.item.number.type.biginteger":"big integer (ex: 123456789)","form.attribute.item.number.type.decimal":"decimal (ex: 2.22)","form.attribute.item.number.type.float":"float (ex: 3.33333333)","form.attribute.item.number.type.integer":"integer (ex: 10)","form.attribute.item.privateField":"Private field","form.attribute.item.privateField.description":"This field will not show up in the API response","form.attribute.item.requiredField":"Required field","form.attribute.item.requiredField.description":"You won't be able to create an entry if this field is empty","form.attribute.item.text.regex":"RegExp pattern","form.attribute.item.text.regex.description":"The text of the regular expression","form.attribute.item.uniqueField":"Unique field","form.attribute.item.uniqueField.description":"You won't be able to create an entry if there is an existing entry with identical content","form.attribute.media.allowed-types":"Select allowed types of media","form.attribute.media.allowed-types.option-files":"Files","form.attribute.media.allowed-types.option-images":"Images","form.attribute.media.allowed-types.option-videos":"Videos","form.attribute.media.option.multiple":"Multiple media","form.attribute.media.option.multiple.description":"Best for sliders, carousels or multiple files download","form.attribute.media.option.single":"Single media","form.attribute.media.option.single.description":"Best for avatar, profile picture or cover","form.attribute.settings.default":"Default value","form.attribute.text.option.long-text":"Long text","form.attribute.text.option.long-text.description":"Best for descriptions, biography. Exact search is disabled.","form.attribute.text.option.short-text":"Short text","form.attribute.text.option.short-text.description":"Best for titles, names, links (URL). It also enables exact search on the field.","form.button.add-components-to-dynamiczone":"Add components to the zone","form.button.add-field":"Add another field","form.button.add-first-field-to-created-component":"Add first field to the component","form.button.add.field.to.collectionType":"Add another field to this collection type","form.button.add.field.to.component":"Add another field to this component","form.button.add.field.to.contentType":"Add another field to this content type","form.button.add.field.to.singleType":"Add another field to this single type","form.button.cancel":"Cancel","form.button.collection-type.description":"Best for multiple instances like articles, products, comments, etc.","form.button.collection-type.name":"Collection Type","form.button.configure-component":"Configure the component","form.button.configure-view":"Configure the view","form.button.select-component":"Select a component","form.button.single-type.description":"Best for single instance like about us, homepage, etc.","form.button.single-type.name":"Single Type","form.contentType.divider.draft-publish":"Draft/Publish","from":"from","listView.headerLayout.description":"Build the data architecture of your content","menu.section.components.name":"Components","menu.section.models.name":"Collection Types","menu.section.single-types.name":"Single Types","modalForm.attribute.form.base.name.description":"No space is allowed for the name of the attribute","modalForm.attribute.form.base.name.placeholder":"e.g. Slug, SEO URL, Canonical URL","modalForm.attribute.target-field":"Attached field","modalForm.attributes.select-component":"Select a component","modalForm.attributes.select-components":"Select the components","modalForm.collectionType.header-create":"Create a collection type","modalForm.component.header-create":"Create a component","modalForm.components.create-component.category.label":"Select a category or enter a name to create a new one","modalForm.components.icon.label":"Icon","modalForm.empty.button":"Add custom fields","modalForm.empty.heading":"Nothing in here yet.","modalForm.empty.sub-heading":"Find what you are looking for through a wide range of extensions.","modalForm.editCategory.base.name.description":"No space is allowed for the name of the category","modalForm.header-edit":"Edit {name}","modalForm.header.categories":"Categories","modalForm.singleType.header-create":"Create a single type","modalForm.sub-header.addComponentToDynamicZone":"Add new component to the dynamic zone","modalForm.sub-header.attribute.create":"Add new {type} field","modalForm.sub-header.attribute.create.step":"Add new component ({step}/2)","modalForm.sub-header.attribute.edit":"Edit {name}","modalForm.sub-header.chooseAttribute.collectionType":"Select a field for your collection type","modalForm.sub-header.chooseAttribute.component":"Select a field for your component","modalForm.sub-header.chooseAttribute.singleType":"Select a field for your single type","modalForm.custom-fields.advanced.settings.extended":"Extended settings","modalForm.tabs.custom":"Custom","modalForm.tabs.custom.howToLink":"How to add custom fields","modalForm.tabs.default":"Default","modalForm.tabs.label":"Default and Custom types tabs","modelPage.attribute.relation-polymorphic":"Relation (polymorphic)","modelPage.attribute.relationWith":"Relation with","notification.error.dynamiczone-min.validation":"At least one component is required in a dynamic zone to be able to save a content type","notification.info.autoreaload-disable":"The autoReload feature is required to use this plugin. Start your server with \`strapi develop\`","notification.info.creating.notSaved":"Please save your work before creating a new collection type or component","plugin.description.long":"Modelize the data structure of your API. Create new fields and relations in just a minute. The files are automatically created and updated in your project.","plugin.description.short":"Modelize the data structure of your API.","plugin.name":"Content-Type Builder","popUpForm.navContainer.advanced":"Advanced settings","popUpForm.navContainer.base":"Basic settings","popUpWarning.bodyMessage.cancel-modifications":"Are you sure you want to cancel your modifications?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Are you sure you want to cancel your modifications? Some components have been created or modified...","popUpWarning.bodyMessage.category.delete":"Are you sure you want to delete this category? All the components will also be deleted.","popUpWarning.bodyMessage.component.delete":"Are you sure you want to delete this component?","popUpWarning.bodyMessage.contentType.delete":"Are you sure you want to delete this collection type?","popUpWarning.draft-publish.button.confirm":"Yes, disable","popUpWarning.draft-publish.message":"If you disable the Draft/Publish system, your drafts will be deleted.","popUpWarning.draft-publish.second-message":"Are you sure you want to disable it?","prompt.unsaved":"Are you sure you want to leave? All your modifications will be lost.","relation.attributeName.placeholder":"Ex: author, category, tag","relation.manyToMany":"has and belongs to many","relation.manyToOne":"has many","relation.manyWay":"has many","relation.oneToMany":"belongs to many","relation.oneToOne":"has and belongs to one","relation.oneWay":"has one","table.button.no-fields":"Add new field","table.content.create-first-content-type":"Create your first Collection-Type","table.content.no-fields.collection-type":"Add your first field to this Collection-Type","table.content.no-fields.component":"Add your first field to this component"}`)}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[8342],{87187:e=>{e.exports=JSON.parse('{"attribute.boolean":"Booleano","attribute.boolean.description":"Si o no, 1 o 0, verdadero o falso","attribute.component":"Componente","attribute.component.description":"Grupo de campos que puedes repetir o reutilizar","attribute.date":"Fecha","attribute.date.description":"Un selector de fechas con horas, minutos y segundos","attribute.datetime":"Fecha y hora","attribute.dynamiczone":"Zona din\xE1mica","attribute.dynamiczone.description":"Elija componentes din\xE1micamente al editar contenido","attribute.email":"Correo electr\xF3nico","attribute.email.description":"Campo de correo electr\xF3nico con formato de validaciones","attribute.enumeration":"Enumeraci\xF3n","attribute.enumeration.description":"Lista de valores, luego elija uno","attribute.json":"JSON","attribute.json.description":"Datos en formato JSON","attribute.media":"Media","attribute.media.description":"Archivos como im\xE1genes, videos, etc.","attribute.null":" ","attribute.number":"N\xFAmero","attribute.number.description":"N\xFAmeros (entero, flotante, decimal)","attribute.password":"Contrase\xF1a","attribute.password.description":"Campo de contrase\xF1a con cifrado","attribute.relation":"Relaci\xF3n","attribute.relation.description":"Se refiere a un Tipo de Colecci\xF3n","attribute.richtext":"Texto enriquecido","attribute.richtext.description":"Un editor de texto enriquecido con opciones de formato.","attribute.text":"Texto","attribute.text.description":"Texto corto o largo como t\xEDtulo o descripci\xF3n","attribute.time":"Hora","attribute.timestamp":"Marca de tiempo","attribute.uid":"UID","attribute.uid.description":"Identificador \xFAnico","button.attributes.add.another":"Agregar otro campo","button.component.add":"Agregar un componente","button.component.create":"Crear nuevo componente","button.model.create":"Crear nuevo Tipo de Colecci\xF3n","button.single-types.create":"Crear nuevo tipo \xFAnico","component.repeatable":"(repetible)","components.SelectComponents.displayed-value":"{number, plural, =0 {ning\xFAn componente seleccionado} one {1 componente seleccionado} other {# componentes seleccionados}}","components.componentSelect.no-component-available":"Ya ha agregado todos sus componentes","components.componentSelect.no-component-available.with-search":"No hay ning\xFAn componente que coincida con su b\xFAsqueda","components.componentSelect.value-component":"{number} componente seleccionado (escriba para buscar un componente)","components.componentSelect.value-components":"{number} componentes seleccionados","configurations":"configuraciones","contentType.apiId-plural.description":"ID de API pluralizado","contentType.apiId-plural.label":"ID de API (Plural)","contentType.apiId-singular.description":"El UID se utiliza para generar las rutas de la API y las tablas/colecciones de la base de datos","contentType.apiId-singular.label":"ID de API (Singular)","contentType.collectionName.description":"\xDAtil cuando el nombre de su Tipo de Contenido y el nombre de su tabla difieren","contentType.collectionName.label":"Nombre de la colecci\xF3n","contentType.displayName.label":"Nombre para mostrar","contentType.draftAndPublish.description":"Escribe un borrador de cada entrada antes de publicarla.","contentType.draftAndPublish.label":"Sistema de borrador/publicaci\xF3n","contentType.kind.change.warning":"Acaba de cambiar el Tipo de Contenido: la API se restablecer\xE1 (las rutas, los controladores y los servicios se sobrescribir\xE1n).","error.attributeName.reserved-name":"Este nombre no se puede utilizar en su Tipo de Contenido, ya que podr\xEDa romper otras funcionalidades.","error.contentType.pluralName-used":"Este valor no puede ser igual al valor singular","error.contentType.singularName-used":"Este valor no puede ser igual al valor plural","error.contentTypeName.reserved-name":"Este nombre no se puede utilizar en su proyecto, ya que podr\xEDa romper otras funcionalidades.","error.validation.enum-duplicate":"No se permiten valores duplicados","error.validation.enum-empty-string":"No se permiten cadenas de caracteres vac\xEDas","error.validation.minSupMax":"No puede ser superior","error.validation.positive":"Debe ser un n\xFAmero positivo","error.validation.regex":"El patr\xF3n de expresi\xF3n regular no es v\xE1lido","error.validation.relation.targetAttribute-taken":"Este nombre existe en el destino","form.attribute.component.option.add":"Agregar un componente","form.attribute.component.option.create":"Crea un nuevo componente","form.attribute.component.option.create.description":"Un componente se comparte entre tipos y componentes, estar\xE1 disponible y accesible en todas partes.","form.attribute.component.option.repeatable":"Componente repetible","form.attribute.component.option.repeatable.description":"Lo mejor para m\xFAltiples instancias (matriz) de ingredientes, meta etiquetas, etc.","form.attribute.component.option.reuse-existing":"Utilice un componente existente","form.attribute.component.option.reuse-existing.description":"Reutilice un componente ya creado para mantener la coherencia de sus datos en todos los tipos de contenido.","form.attribute.component.option.single":"Componente \xFAnico","form.attribute.component.option.single.description":"Lo mejor para agrupar campos como direcci\xF3n completa, informaci\xF3n principal...","form.attribute.item.customColumnName":"Nombres de columna personalizados","form.attribute.item.customColumnName.description":"Esto es \xFAtil para renombrar los nombres de las columnas de la base de datos en un formato m\xE1s completo para las respuestas de la API.","form.attribute.item.defineRelation.fieldName":"Nombre del campo","form.attribute.item.enumeration.graphql":"Sobreescritura de nombre para GraphQL","form.attribute.item.enumeration.graphql.description":"Le permite redefinir el nombre generado por defecto para GraphQL","form.attribute.item.enumeration.placeholder":"Ej:\\nma\xF1ana\\nmediod\xEDa\\nnoche","form.attribute.item.enumeration.rules":"Valores (una l\xEDnea por valor)","form.attribute.item.maximum":"Valor m\xE1ximo","form.attribute.item.maximumLength":"Longitud m\xE1xima","form.attribute.item.minimum":"Valor m\xEDnimo","form.attribute.item.minimumLength":"Longitud m\xEDnima","form.attribute.item.number.type":"Tipo de n\xFAmero","form.attribute.item.number.type.biginteger":"entero grande (ej: 123456789)","form.attribute.item.number.type.decimal":"decimal (ej: 2.22)","form.attribute.item.number.type.float":"flotante (ej: 3.3333333333)","form.attribute.item.number.type.integer":"entero (ej: 10)","form.attribute.item.privateField":"Campo privado","form.attribute.item.privateField.description":"Este campo no aparecer\xE1 en la respuesta de la API","form.attribute.item.requiredField":"Campo obligatorio","form.attribute.item.requiredField.description":"No podr\xE1 crear un registro si este campo est\xE1 vac\xEDo","form.attribute.item.text.regex":"Patr\xF3n de expresi\xF3n regular","form.attribute.item.text.regex.description":"El texto de la expresi\xF3n regular","form.attribute.item.uniqueField":"Campo \xFAnico","form.attribute.item.uniqueField.description":"No podr\xE1 crear un registro si ya existe otro registro con el mismo contenido","form.attribute.media.allowed-types":"Seleccionar tipos de multimedia permitidos","form.attribute.media.allowed-types.option-files":"Archivos","form.attribute.media.allowed-types.option-images":"Im\xE1genes","form.attribute.media.allowed-types.option-videos":"Videos","form.attribute.media.option.multiple":"M\xFAltiples multimedia","form.attribute.media.option.multiple.description":"Ideal para controles deslizantes, carruseles o descarga de varios archivos","form.attribute.media.option.single":"Multimedia \xFAnico","form.attribute.media.option.single.description":"Lo mejor para avatar, foto de perfil o portada","form.attribute.settings.default":"Valor por defecto","form.attribute.text.option.long-text":"Texto largo","form.attribute.text.option.long-text.description":"Mejor para descripciones o biograf\xEDa. La b\xFAsqueda exacta est\xE1 inhabilitada.","form.attribute.text.option.short-text":"Texto corto","form.attribute.text.option.short-text.description":"Mejor para t\xEDtulos, nombres, enlaces (URL). Tambi\xE9n permite una b\xFAsqueda exacta en el campo.","form.button.add-components-to-dynamiczone":"Agregar componentes a la zona","form.button.add-field":"Agregar otro campo","form.button.add-first-field-to-created-component":"Agregue el primer campo al componente","form.button.add.field.to.collectionType":"Agrega otro campo a este tipo de colecci\xF3n","form.button.add.field.to.component":"Agregar otro campo a este componente","form.button.add.field.to.contentType":"Agregar campo al Tipo de Contenido","form.button.add.field.to.singleType":"Agregue otro campo a este tipo \xFAnico","form.button.cancel":"Cancelar","form.button.collection-type.description":"Lo mejor para m\xFAltiples instancias como art\xEDculos, productos, comentarios, etc.","form.button.configure-component":"Configurar el componente","form.button.configure-view":"Configurar la vista","form.button.select-component":"Seleccione un componente","form.button.single-type.description":"Lo mejor para una sola instancia como acerca de nosotros, p\xE1gina de inicio, etc.","form.contentType.divider.draft-publish":"BORRAR/PUBLICAR","from":"de","listView.headerLayout.description":"Construya la arquitectura de datos de su contenido","modalForm.attribute.form.base.name.description":"No se permiten espacios para el nombre del atributo","modalForm.attribute.form.base.name.placeholder":"p. ej. Slug, URL SEO, URL can\xF3nica","modalForm.attribute.target-field":"Campo adjunto","modalForm.attributes.select-component":"Seleccione un componente","modalForm.attributes.select-components":"Seleccionar los componentes","modalForm.collectionType.header-create":"Crea un tipo de colecci\xF3n","modalForm.component.header-create":"Crea un componente","modalForm.components.create-component.category.label":"Seleccione una categor\xEDa o ingrese un nombre para crear una nueva","modalForm.components.icon.label":"Icono","modalForm.editCategory.base.name.description":"No se permiten espacios para el nombre de la categor\xEDa.","modalForm.header-edit":"Editar {name}","modalForm.header.categories":"Categor\xEDas","modalForm.singleType.header-create":"Crea un tipo \xFAnico","modalForm.sub-header.addComponentToDynamicZone":"Agregar nuevo componente a la zona din\xE1mica","modalForm.sub-header.attribute.create":"Agregar nuevo campo {type}","modalForm.sub-header.attribute.create.step":"Agregar nuevo componente ({step}/2)","modalForm.sub-header.attribute.edit":"Editar {name}","modalForm.sub-header.chooseAttribute.collectionType":"Seleccione un campo para su Tipo de Colecci\xF3n","modalForm.sub-header.chooseAttribute.component":"Seleccione un campo para su componente","modalForm.sub-header.chooseAttribute.singleType":"Seleccione un campo para su tipo \xFAnico","modelPage.attribute.relation-polymorphic":"Relaci\xF3n (polim\xF3rfica)","modelPage.attribute.relationWith":"Vinculaci\xF3n con","notification.info.autoreaload-disable":"Se requiere la funci\xF3n autoReload para usar este plugin. Inicie su servidor con `strapi develop`","notification.info.creating.notSaved":"Guarde su trabajo antes de crear un nuevo tipo de colecci\xF3n o componente","plugin.description.long":"Modelice la estructura de datos de su API. Cree nuevos campos y relaciones en s\xF3lo un minuto. Los archivos se crean y actualizan autom\xE1ticamente en el proyecto.","plugin.description.short":"Modelice la estructura de datos de su API.","plugin.name":"Generador de Tipo de Contenido","popUpForm.navContainer.advanced":"Configuraci\xF3n avanzada","popUpForm.navContainer.base":"Ajustes b\xE1sicos","popUpWarning.bodyMessage.cancel-modifications":"\xBFEst\xE1s seguro de que deseas cancelar tus modificaciones?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\xBFEst\xE1 seguro de que desea cancelar sus modificaciones? Algunos componentes han sido creados o modificados...","popUpWarning.bodyMessage.category.delete":"\xBFEst\xE1 seguro de que desea eliminar esta categor\xEDa? Tambi\xE9n se eliminar\xE1n todos los componentes.","popUpWarning.bodyMessage.component.delete":"\xBFEst\xE1 seguro de que desea eliminar este componente?","popUpWarning.bodyMessage.contentType.delete":"\xBFEst\xE1 seguro de que desea eliminar este Tipo de Contenido?","popUpWarning.draft-publish.button.confirm":"S\xED, deshabilitar","popUpWarning.draft-publish.message":"Si desactiva el sistema Borrador/Publicaci\xF3n, se eliminar\xE1n sus borradores.","popUpWarning.draft-publish.second-message":"\xBFEst\xE1s seguro de que quieres desactivarlo?","prompt.unsaved":"\xBFEst\xE1s seguro que quieres irte? Todas sus modificaciones se perder\xE1n.","relation.attributeName.placeholder":"Ej: autor, categor\xEDa, etiqueta","relation.manyToMany":"tiene y pertenece a muchos","relation.manyToOne":"tiene muchos","relation.manyWay":"tiene muchas","relation.oneToMany":"pertenece a muchos","relation.oneToOne":"tiene y pertenece a una","relation.oneWay":"tiene uno","table.button.no-fields":"Agregar campo","table.content.create-first-content-type":"Crea tu primer Tipo de Colecci\xF3n","table.content.no-fields.collection-type":"Agrega tu primer campo a este Tipo de Colecci\xF3n","table.content.no-fields.component":"Agregar tu primer campo a este componente"}')}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[2567],{92329:t=>{t.exports=JSON.parse('{"attribute.boolean":"\uBD88\uB9AC\uC5B8(Boolean)","attribute.boolean.description":"\uC608 \uC544\uB2C8\uC624, 1 \uB610\uB294 0, \uCC38 \uB610\uB294 \uAC70\uC9D3","attribute.component":"\uCEF4\uD3EC\uB10C\uD2B8","attribute.component.description":"\uBC18\uBCF5\uD558\uAC70\uB098 \uC7AC\uC0AC\uC6A9\uD560 \uC218 \uC788\uB294 \uD544\uB4DC \uADF8\uB8F9","attribute.date":"\uB0A0\uC9DC(Date)","attribute.date.description":"\uC2DC\uAC04, \uBD84, \uCD08\uAC00 \uC788\uB294 \uB370\uC774\uD2B8 \uD53C\uCEE4","attribute.datetime":"Datetime","attribute.dynamiczone":"\uB2E4\uC774\uB098\uBBF9 \uC874","attribute.dynamiczone.description":"\uB0B4\uC6A9\uC744 \uD3B8\uC9D1\uD560 \uB54C \uB3D9\uC801\uC73C\uB85C \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uC120\uD0DD\uD569\uB2C8\uB2E4.","attribute.email":"\uC774\uBA54\uC77C(Email)","attribute.email.description":"\uC720\uD6A8\uC131 \uAC80\uC0AC\uAC00 \uAC00\uB2A5\uD55C \uC774\uBA54\uC77C \uD544\uB4DC","attribute.enumeration":"\uC5F4\uAC70(Enumeration)","attribute.enumeration.description":"\uAC12\uC744 \uB098\uC5F4\uD558\uACE0 \uC120\uD0DD\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","attribute.json":"JSON","attribute.json.description":"JSON \uD615\uC2DD\uC758 \uB370\uC774\uD130","attribute.media":"\uBBF8\uB514\uC5B4(Media)","attribute.media.description":"\uC774\uBBF8\uC9C0, \uBE44\uB514\uC624 \uB4F1\uC758 \uD30C\uC77C","attribute.null":" ","attribute.number":"\uC22B\uC790(Number)","attribute.number.description":"\uC22B\uC790 (integer, float, decimal)","attribute.password":"\uD328\uC2A4\uC6CC\uB4DC(Password)","attribute.password.description":"\uC554\uD638\uD654\uB41C \uBE44\uBC00\uBC88\uD638 \uD544\uB4DC","attribute.relation":"\uAD00\uACC4(Relation)","attribute.relation.description":"\uCF5C\uB809\uC158 \uD0C0\uC785\uC744 \uCC38\uC870\uD558\uB294 \uD544\uB4DC","attribute.richtext":"\uC11C\uC2DD\uC788\uB294 \uD14D\uC2A4\uD2B8(Rich text)","attribute.richtext.description":"\uC11C\uC2DD \uC635\uC158\uC774 \uC788\uB294 \uB9AC\uCE58 \uD14D\uC2A4\uD2B8 \uC5D0\uB514\uD130","attribute.text":"\uD14D\uC2A4\uD2B8(Text)","attribute.text.description":"\uC81C\uBAA9 \uB610\uB294 \uC124\uBA85\uACFC \uAC19\uC774 \uC9E7\uAC70\uB098 \uAE34 \uD14D\uC2A4\uD2B8","attribute.time":"Time","attribute.timestamp":"\uD0C0\uC784\uC2A4\uD0EC\uD504","attribute.uid":"UID","attribute.uid.description":"Unique identifier","button.attributes.add.another":"\uC0C8 \uD544\uB4DC \uCD94\uAC00","button.component.add":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uCD94\uAC00","button.component.create":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uC0DD\uC131","button.model.create":"\uC0C8 \uCF5C\uB809\uC158 \uD0C0\uC785 \uC0DD\uC131","button.single-types.create":"\uC0C8 \uC2F1\uAE00 \uD0C0\uC785 \uC0DD\uC131","component.repeatable":"(repeatable)","components.SelectComponents.displayed-value":"{number, plural, =0 {# \uAC1C} one {# \uAC1C} other {# \uAC1C}}\uC758 \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uC120\uD0DD\uB428","components.componentSelect.no-component-available":"\uC774\uBBF8 \uBAA8\uB4E0 \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uCD94\uAC00\uB418\uC5C8\uC2B5\uB2C8\uB2E4.","components.componentSelect.no-component-available.with-search":"\uAC80\uC0C9\uACFC \uC77C\uCE58\uD558\uB294 \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.","components.componentSelect.value-component":"{number} component selected (type to search for a component)","components.componentSelect.value-components":"{number} \uAC1C\uC758 \uCEF4\uD3EC\uB10C\uD2B8 \uC120\uD0DD\uB428","configurations":"\uC124\uC815","contentType.apiId-plural.description":"\uBCF5\uC218 \uD615\uC2DD\uC758 API ID","contentType.apiId-plural.label":"API ID (\uBCF5\uC218)","contentType.apiId-singular.description":"UID\uB294 API \uACBD\uB85C \uBC0F \uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uD14C\uC774\uBE14/ \uCEEC\uB809\uC158\uC744 \uC0DD\uC131\uD558\uB294 \uB370 \uC0AC\uC6A9\uB429\uB2C8\uB2E4.","contentType.apiId-singular.label":"API ID (\uB2E8\uC218)","contentType.collectionName.description":"\uCF58\uD150\uCE20 \uD0C0\uC785\uACFC \uD14C\uC774\uBE14 \uC774\uB984\uC774 \uB2E4\uB97C \uB54C \uC720\uC6A9\uD569\uB2C8\uB2E4.","contentType.collectionName.label":"\uCF5C\uB809\uC158 \uC774\uB984","contentType.displayName.label":"\uD45C\uC2DC \uC774\uB984","contentType.draftAndPublish.description":"\uAC01 \uD56D\uBAA9\uC744 \uBC1C\uD589\uD558\uAE30 \uC804\uC5D0 \uCD08\uC548 \uBC84\uC804\uC744 \uC791\uC131\uD569\uB2C8\uB2E4.","contentType.draftAndPublish.label":"\uCD08\uC548/\uBC1C\uD589 \uC2DC\uC2A4\uD15C","contentType.kind.change.warning":"\uCF58\uD150\uCE20 \uD0C0\uC785\uC744 \uC218\uC815\uD588\uC2B5\uB2C8\uB2E4. API\uAC00 \uB9AC\uC14B\uB429\uB2C8\uB2E4(\uB77C\uC6B0\uD2B8, \uCEE8\uD2B8\uB864\uB7EC, \uC11C\uBE44\uC2A4\uAC00 \uB36E\uC5B4\uC50C\uC6CC\uC9D1\uB2C8\uB2E4.)","error.attributeName.reserved-name":"\uC774 \uC774\uB984\uC740 \uB2E4\uB978 \uAE30\uB2A5\uC744 \uC190\uC0C1\uC2DC\uD0AC \uC218 \uC788\uC73C\uBBC0\uB85C \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.contentType.pluralName-used":"\uC774 \uAC12\uC740 \uB2E8\uC218 \uC774\uB984\uACFC \uAC19\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.contentType.singularName-used":"\uC774 \uAC12\uC740 \uBCF5\uC218 \uC774\uB984\uACFC \uAC19\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.contentTypeName.reserved-name":"\uC774 \uC774\uB984\uC740 \uB2E4\uB978 \uAE30\uB2A5\uC744 \uC190\uC0C1\uC2DC\uD0AC \uC218 \uC788\uC73C\uBBC0\uB85C \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.validation.enum-duplicate":"\uC911\uBCF5\uB41C \uAC12\uC740 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.validation.enum-empty-string":"\uBE48 \uBB38\uC790\uC5F4\uC740 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.validation.minSupMax":"Can\'t be superior","error.validation.positive":"\uC591\uC218\uB97C \uC785\uB825\uD574\uC8FC\uC138\uC694.","error.validation.regex":"\uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 \uC815\uADDC\uC2DD \uD328\uD134\uC785\uB2C8\uB2E4.","error.validation.relation.targetAttribute-taken":"\uB300\uC0C1 \uB9B4\uB808\uC774\uC158\uC5D0\uC11C \uC0AC\uC6A9\uC911\uC778 \uC774\uB984\uC785\uB2C8\uB2E4.","form.attribute.component.option.add":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uCD94\uAC00","form.attribute.component.option.create":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uC0DD\uC131","form.attribute.component.option.create.description":"\uCEF4\uD3EC\uB10C\uD2B8\uB294 \uCF58\uD150\uCE20 \uD0C0\uC785\uACFC \uCEF4\uD3EC\uB10C\uD2B8\uB4E4 \uC0AC\uC774\uC5D0 \uACF5\uC720\uB418\uBA70, \uC5B4\uB514\uC11C\uB098 \uC0AC\uC6A9\uACFC \uC811\uADFC\uC774 \uAC00\uB2A5\uD569\uB2C8\uB2E4.","form.attribute.component.option.repeatable":"\uBC18\uBCF5 \uCEF4\uD3EC\uB10C\uD2B8","form.attribute.component.option.repeatable.description":"\uC7AC\uB8CC, \uBA54\uD0C0 \uD0DC\uADF8 \uB4F1 \uC5EC\uB7EC \uC778\uC2A4\uD134\uC2A4(\uBC30\uC5F4) \uAD6C\uC131\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","form.attribute.component.option.reuse-existing":"\uAE30\uC874 \uCEF4\uD3EC\uB10C\uD2B8 \uC0AC\uC6A9","form.attribute.component.option.reuse-existing.description":"\uC0DD\uC131\uB41C \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uC7AC\uC0AC\uC6A9\uD569\uB2C8\uB2E4. \uCF58\uD150\uCE20 \uD0C0\uC785\uAC04\uC5D0 \uB370\uC774\uD130\uB97C \uC77C\uAD00\uB418\uAC8C \uC720\uC9C0\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","form.attribute.component.option.single":"\uB2E8\uC77C \uCEF4\uD3EC\uB10C\uD2B8","form.attribute.component.option.single.description":"\uC804\uCCB4 \uC8FC\uC18C\uC9C0, \uAE30\uBCF8 \uC815\uBCF4 \uB4F1\uACFC \uAC19\uC740 \uD544\uB4DC\uB97C \uADF8\uB8F9\uD654\uD558\uB294 \uB370 \uC801\uD569\uD569\uB2C8\uB2E4.","form.attribute.item.customColumnName":"\uCEE4\uC2A4\uD140 \uCEEC\uB7FC \uC774\uB984","form.attribute.item.customColumnName.description":"API \uC751\uB2F5\uC744 \uC704\uD574 \uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uCEEC\uB7FC \uC774\uB984\uC744 \uD3EC\uAD04\uC801\uC778 \uD615\uC2DD\uC73C\uB85C \uBCC0\uACBD\uD558\uB294\uB370 \uC720\uC6A9\uD569\uB2C8\uB2E4.","form.attribute.item.defineRelation.fieldName":"\uD544\uB4DC \uC774\uB984","form.attribute.item.enumeration.graphql":"GraphQL\uC5D0\uC11C \uC0AC\uC6A9\uD560 \uC774\uB984","form.attribute.item.enumeration.graphql.description":"\uAE30\uBCF8 \uC0DD\uC131\uB41C \uC774\uB984\uC744 GraphQL\uC5D0\uC11C \uC0AC\uC6A9\uD569\uB2C8\uB2E4.","form.attribute.item.enumeration.placeholder":"Ex:\\nmorning\\nnoon\\nevening","form.attribute.item.enumeration.rules":"\uAC12 (\uD55C \uC904\uC5D0 \uD558\uB098\uC529 \uC785\uB825)","form.attribute.item.maximum":"\uCD5C\uB300 \uAC12","form.attribute.item.maximumLength":"\uCD5C\uB300 \uAE38\uC774","form.attribute.item.minimum":"\uCD5C\uC18C \uAC12","form.attribute.item.minimumLength":"\uCD5C\uC18C \uAE38\uC774","form.attribute.item.number.type":"\uC22B\uC790 \uD615\uC2DD","form.attribute.item.number.type.biginteger":"big integer (ex: 123456789)","form.attribute.item.number.type.decimal":"\uC18C\uC218 (ex: 2.22)","form.attribute.item.number.type.float":"\uC2E4\uC218 (ex: 3.33333333)","form.attribute.item.number.type.integer":"\uC815\uC218 (ex: 10)","form.attribute.item.privateField":"Private field","form.attribute.item.privateField.description":"\uC774 \uD544\uB4DC\uB294 API \uC751\uB2F5\uC5D0 \uD45C\uC2DC\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.","form.attribute.item.requiredField":"\uD544\uC218 \uD56D\uBAA9","form.attribute.item.requiredField.description":"\uD544\uC218 \uD56D\uBAA9\uC77C \uACBD\uC6B0 \uCCB4\uD06C\uD558\uC138\uC694.","form.attribute.item.text.regex":"\uC815\uADDC\uC2DD \uD328\uD134","form.attribute.item.text.regex.description":"\uC815\uADDC\uC2DD \uD14D\uC2A4\uD2B8","form.attribute.item.uniqueField":"\uC720\uB2C8\uD06C \uD56D\uBAA9","form.attribute.item.uniqueField.description":"\uC720\uC77C\uD55C \uAC12\uB9CC \uD5C8\uC6A9 \uD560 \uACBD\uC6B0 \uCCB4\uD06C\uD558\uC138\uC694.","form.attribute.media.allowed-types":"\uD5C8\uC6A9\uD560 \uBBF8\uB514\uC5B4 \uD0C0\uC785\uC744 \uC120\uD0DD\uD569\uB2C8\uB2E4.","form.attribute.media.allowed-types.option-files":"\uD30C\uC77C","form.attribute.media.allowed-types.option-images":"\uC774\uBBF8\uC9C0","form.attribute.media.allowed-types.option-videos":"\uC601\uC0C1","form.attribute.media.option.multiple":"\uBCF5\uC218 \uBBF8\uB514\uC5B4","form.attribute.media.option.multiple.description":"\uC2AC\uB77C\uC774\uB354, \uCE90\uB85C\uC140(carousels), \uD639\uC740 \uC5EC\uB7EC \uD30C\uC77C \uB2E4\uC6B4\uB85C\uB4DC\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","form.attribute.media.option.single":"\uB2E8\uC77C \uBBF8\uB514\uC5B4","form.attribute.media.option.single.description":"\uC544\uBC14\uD0C0, \uD504\uB85C\uD544 \uC0AC\uC9C4 \uB610\uB294 \uCEE4\uBC84\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","form.attribute.settings.default":"\uAE30\uBCF8\uAC12","form.attribute.text.option.long-text":"\uAE34 \uD14D\uC2A4\uD2B8","form.attribute.text.option.long-text.description":"\uC124\uBA85, \uC774\uC57C\uAE30\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4. \uC815\uD655\uD55C \uAC80\uC0C9(Exact search)\uC740 \uBD88\uAC00\uB2A5\uD569\uB2C8\uB2E4.","form.attribute.text.option.short-text":"\uC9E7\uC740 \uD14D\uC2A4\uD2B8","form.attribute.text.option.short-text.description":"\uC81C\uBAA9, \uC774\uB984, \uB9C1\uD06C(URL)\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4. \uB610\uD55C \uD544\uB4DC\uC5D0\uC11C \uC815\uD655\uD55C \uAC80\uC0C9(Exact search)\uC774 \uAC00\uB2A5\uD569\uB2C8\uB2E4.","form.button.add-components-to-dynamiczone":"\uB2E4\uC774\uB098\uBBF9 \uC874\uC5D0 \uCEF4\uD3EC\uB10C\uD2B8 \uCD94\uAC00","form.button.add-field":"\uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00","form.button.add-first-field-to-created-component":"\uCEF4\uD3EC\uB10C\uD2B8\uC5D0 \uCCAB \uD544\uB4DC \uB9CC\uB4E4\uAE30","form.button.add.field.to.collectionType":"\uC774 \uCF5C\uB809\uC158 \uD0C0\uC785\uC5D0 \uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00\uD558\uAE30","form.button.add.field.to.component":"\uC774 \uCEF4\uD3EC\uB10C\uD2B8\uC5D0 \uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00\uD558\uAE30","form.button.add.field.to.contentType":"\uC774 \uCF58\uD150\uCE20 \uD0C0\uC785\uC5D0 \uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00\uD558\uAE30","form.button.add.field.to.singleType":"\uC774 \uC2F1\uAE00 \uD0C0\uC785\uC5D0 \uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00\uD558\uAE30","form.button.cancel":"\uCDE8\uC18C","form.button.collection-type.description":"\uAE30\uC0AC(Article), \uC81C\uD488(Product) \uB4F1 \uC5EC\uB7EC\uAC1C\uC758 \uCF58\uD150\uCE20\uAC00 \uD544\uC694\uD55C \uACBD\uC6B0\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","form.button.configure-component":"\uCEF4\uD3EC\uB10C\uD2B8 \uC124\uC815","form.button.configure-view":"\uBCF4\uAE30 \uC124\uC815","form.button.select-component":"\uCEF4\uD3EC\uB10C\uD2B8 \uC120\uD0DD","form.button.single-type.description":"About us, \uD648\uD398\uC774\uC9C0 \uB4F1 \uB2E8\uC77C \uCF58\uD150\uCE20\uAC00 \uD544\uC694\uD55C \uACBD\uC6B0\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","form.contentType.divider.draft-publish":"\uCD08\uC548/\uBC1C\uD589","from":"from","listView.headerLayout.description":"\uCF58\uD150\uCE20 \uAD6C\uC870\uB97C \uB9CC\uB4ED\uB2C8\uB2E4.","modalForm.attribute.form.base.name.description":"\uC18D\uC131 \uC774\uB984\uC5D0\uB294 \uACF5\uBC31\uC744 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","modalForm.attribute.form.base.name.placeholder":"\uC608: Slug, SEO URL, \uD45C\uC900 URL","modalForm.attribute.target-field":"Attached field","modalForm.attributes.select-component":"\uCEF4\uD3EC\uB10C\uD2B8 \uC120\uD0DD","modalForm.attributes.select-components":"\uCEF4\uD3EC\uB10C\uD2B8 \uC5EC\uB7EC\uAC1C \uC120\uD0DD","modalForm.collectionType.header-create":"\uCF5C\uB809\uC158 \uD0C0\uC785 \uC0DD\uC131","modalForm.component.header-create":"\uCEF4\uD3EC\uB10C\uD2B8 \uC0DD\uC131","modalForm.components.create-component.category.label":"\uCE74\uD14C\uACE0\uB9AC\uB97C \uC120\uD0DD\uD558\uAC70\uB098 \uC0C8 \uCE74\uD14C\uACE0\uB9AC \uC774\uB984\uC744 \uC785\uB825\uD574\uC8FC\uC138\uC694.","modalForm.components.icon.label":"\uC544\uC774\uCF58","modalForm.editCategory.base.name.description":"\uCE74\uD14C\uACE0\uB9AC \uC774\uB984\uC5D0 \uACF5\uBC31\uC744 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","modalForm.header-edit":"{name} \uC218\uC815","modalForm.header.categories":"\uCE74\uD14C\uACE0\uB9AC","modalForm.singleType.header-create":"\uC2F1\uAE00 \uD0C0\uC785 \uC0DD\uC131","modalForm.sub-header.addComponentToDynamicZone":"\uB2E4\uC774\uB098\uBBF9 \uC874\uC5D0 \uC0C8 \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uCD94\uAC00\uD569\uB2C8\uB2E4.","modalForm.sub-header.attribute.create":"\uC0C8 {type} \uD544\uB4DC \uCD94\uAC00","modalForm.sub-header.attribute.create.step":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uCD94\uAC00 ({step}/2)","modalForm.sub-header.attribute.edit":"{name} \uC218\uC815","modalForm.sub-header.chooseAttribute.collectionType":"\uCF5C\uB809\uC158 \uD0C0\uC785\uC5D0 \uCD94\uAC00\uD560 \uD544\uB4DC\uB97C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.","modalForm.sub-header.chooseAttribute.component":"\uCEF4\uD3EC\uB10C\uD2B8\uC5D0 \uCD94\uAC00\uD560 \uD544\uB4DC\uB97C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.","modalForm.sub-header.chooseAttribute.singleType":"\uC2F1\uAE00 \uD0C0\uC785\uC5D0 \uCD94\uAC00\uD560 \uD544\uB4DC\uB97C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.","modelPage.attribute.relation-polymorphic":"\uB9B4\uB808\uC774\uC158 (polymorphic)","modelPage.attribute.relationWith":"\uAD00\uACC4","notification.info.autoreaload-disable":"\uC774 \uD50C\uB7EC\uADF8\uC778\uC744 \uC0AC\uC6A9\uD558\uB824\uBA74 autoReload \uAE30\uB2A5\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. `strapi develop`\uB85C \uC11C\uBC84\uB97C \uC2DC\uC791\uD574\uC8FC\uC138\uC694.","notification.info.creating.notSaved":"\uC0C8 \uCF5C\uB809\uC158 \uD0C0\uC785 \uB610\uB294 \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uB9CC\uB4E4\uAE30 \uC804\uC5D0 \uC791\uC5C5\uC744 \uC800\uC7A5\uD574\uC8FC\uC138\uC694.","plugin.description.long":"API\uB97C \uC704\uD55C \uB370\uC774\uD130 \uAD6C\uC870\uB97C \uBAA8\uB378\uB9C1 \uD569\uB2C8\uB2E4. \uC0C8\uB85C\uC6B4 \uD544\uB4DC\uC640 \uB9B4\uB808\uC774\uC158\uC744 \uAC04\uB2E8\uD788 \uB9CC\uB4DC\uC138\uC694. \uC790\uB3D9\uC73C\uB85C \uC124\uC815 \uD30C\uC77C\uC774 \uB9CC\uB4E4\uC5B4 \uC9C0\uACE0 \uD504\uB85C\uC81D\uD2B8\uC5D0 \uCD94\uAC00\uB429\uB2C8\uB2E4.","plugin.description.short":"API\uB97C \uC704\uD55C \uB370\uC774\uD130 \uAD6C\uC870\uB97C \uBAA8\uB378\uB9C1 \uD569\uB2C8\uB2E4.","plugin.name":"\uCF58\uD150\uCE20 \uD0C0\uC785 \uBE4C\uB354","popUpForm.navContainer.advanced":"\uACE0\uAE09 \uC124\uC815","popUpForm.navContainer.base":"\uAE30\uBCF8 \uC124\uC815","popUpWarning.bodyMessage.cancel-modifications":"\uC218\uC815 \uB0B4\uC6A9\uC744 \uCDE8\uC18C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\uC218\uC815 \uB0B4\uC6A9\uC744 \uCDE8\uC18C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? \uC0DD\uC131 \uD639\uC740 \uC218\uC815\uB41C \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uC788\uC2B5\uB2C8\uB2E4.","popUpWarning.bodyMessage.category.delete":"\uC774 \uCE74\uD14C\uACE0\uB9AC\uB97C \uC0AD\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? \uBAA8\uB4E0 \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uD568\uAED8 \uC0AD\uC81C\uB429\uB2C8\uB2E4.","popUpWarning.bodyMessage.component.delete":"\uC774 \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uC0AD\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","popUpWarning.bodyMessage.contentType.delete":"\uC774 \uCF58\uD150\uCE20 \uD0C0\uC785\uC744 \uC0AD\uC81C \uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","popUpWarning.draft-publish.button.confirm":"\uB124, \uBE44\uD65C\uC131\uD654\uD569\uB2C8\uB2E4.","popUpWarning.draft-publish.message":"\uCD08\uC548/\uBC1C\uD589 \uC2DC\uC2A4\uD15C\uC744 \uBE44\uD65C\uC131\uD654\uD558\uBA74 \uCD08\uC548\uC774 \uC0AD\uC81C\uB429\uB2C8\uB2E4.","popUpWarning.draft-publish.second-message":"\uC0AC\uC6A9 \uC548 \uD568\uC73C\uB85C \uC124\uC815\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","prompt.unsaved":"\uC774 \uD398\uC774\uC9C0\uB97C \uB5A0\uB098\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? \uBAA8\uB4E0 \uBCC0\uACBD \uC0AC\uD56D\uC774 \uC5C6\uC5B4\uC9D1\uB2C8\uB2E4.","relation.attributeName.placeholder":"\uC608: author, category, tag","relation.manyToMany":"N : N","relation.manyToOne":"has many","relation.manyWay":"has many","relation.oneToMany":"1 : N","relation.oneToOne":"1 : 1","relation.oneWay":"has one","table.button.no-fields":"\uC0C8 \uD544\uB4DC \uCD94\uAC00","table.content.create-first-content-type":"\uCCAB \uCF5C\uB809\uC158 \uD0C0\uC785\uC744 \uB9CC\uB4E4\uC5B4\uBCF4\uC138\uC694.","table.content.no-fields.collection-type":"\uCF5C\uB809\uC158 \uD0C0\uC785\uC5D0 \uCCAB \uD544\uB4DC\uB97C \uCD94\uAC00\uD574\uBCF4\uC138\uC694.","table.content.no-fields.component":"\uCEF4\uD3EC\uB10C\uD2B8\uC5D0 \uCCAB \uD544\uB4DC\uB97C \uCD94\uAC00\uD574\uBCF4\uC138\uC694."}')}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3948],{68630:e=>{e.exports=JSON.parse('{"attribute.boolean":"Typ logiczny","attribute.boolean.description":"Tak lub nie, 1 lub 0, true lub false","attribute.component":"Komponent","attribute.component.description":"Grupa p\xF3l do powtarzania lub ponownego u\u017Cywania","attribute.date":"Data","attribute.date.description":"Wyb\xF3r daty z godzinami, minutami i sekundami","attribute.datetime":"Data i godzina","attribute.dynamiczone":"Strefa dynamiczna","attribute.dynamiczone.description":"Dynamicznie wybierz komponent podczas edycji tre\u015Bci","attribute.email":"Email","attribute.email.description":"Pole email ze sprawdzaniem poprawno\u015Bci","attribute.enumeration":"Wyliczenie","attribute.enumeration.description":"Lista warto\u015Bci do jednokrotnego wyboru","attribute.json":"JSON","attribute.json.description":"Dane w formacie JSON","attribute.media":"Media","attribute.media.description":"Pliki takie jak obrazki, filmy, itp.","attribute.null":" ","attribute.number":"Liczba","attribute.number.description":"Liczby (ca\u0142kowita, zmiennoprzecinkowa, dziesi\u0119tna)","attribute.password":"Has\u0142o","attribute.password.description":"Pole has\u0142a z szyfrowaniem","attribute.relation":"Relacja","attribute.relation.description":"Odno\u015Bnik do innego modelu","attribute.richtext":"Tekst sformatowany","attribute.richtext.description":"Edytor tekstu z mo\u017Cliwo\u015Bci\u0105 formatowania","attribute.text":"Tekst","attribute.text.description":"Kr\xF3tki lub d\u0142ugi tekst jak tytu\u0142 lub opis","attribute.time":"Czas","attribute.timestamp":"Znacznik czasu","attribute.uid":"UID","attribute.uid.description":"Unikalny identyfikator","button.attributes.add.another":"Dodaj kolejne pole","button.component.add":"Dodaj komponent","button.component.create":"Nowy komponent","button.model.create":"Nowa kolekcja","button.single-types.create":"Nowy pojedynczy typ","component.repeatable":"(powtarzalne)","components.SelectComponents.displayed-value":"{number, plural, =0 {# } one {# } other {# }} wybrano","components.componentSelect.no-component-available":"Doda\u0142e\u015B ju\u017C wszystkie swoje komponenty","components.componentSelect.no-component-available.with-search":"Brak element\xF3w pasuj\u0105cych do twojego wyszukiwania","components.componentSelect.value-component":"{number} wybrany komponent (wpisz, aby wyszuka\u0107 komponent)","components.componentSelect.value-components":"{number} wybranych komponent\xF3w","configurations":"Ustawienia","contentType.apiId-plural.description":"API ID w liczbie mnogiej","contentType.apiId-plural.label":"API ID (liczba mnoga)","contentType.apiId-singular.description":"UID jest u\u017Cywane do generowania \u015Bcie\u017Cek API i tabel/kolekcji w bazie danych","contentType.apiId-singular.label":"API ID (liczba pojedyncza)","contentType.collectionName.description":"Przydatne, gdy nazwa typu zawarto\u015Bci i nazwa tabeli r\xF3\u017Cni\u0105 si\u0119","contentType.collectionName.label":"Nazwa kolekcji","contentType.displayName.label":"Nazwa","contentType.draftAndPublish.description":"Napisz szkic ka\u017Cdego wpisu przed publikacj\u0105","contentType.draftAndPublish.label":"System szkicu/publikacji","contentType.kind.change.warning":"W\u0142a\u015Bnie zmieni\u0142e\u015B rodzaj typu tre\u015Bci: API zostanie zresetowane (\u015Bcie\u017Cki, kontrolery i us\u0142ugi zostan\u0105 nadpisane).","error.attributeName.reserved-name":"Ta nazwa nie mo\u017Ce by\u0107 u\u017Cywana w tym typie tre\u015Bci, poniewa\u017C mo\u017Ce uszkodzi\u0107 inne funkcje","error.contentType.pluralName-used":"Ta warto\u015B\u0107 nie mo\u017Ce by\u0107 taka sama jak pojedyncza","error.contentType.singularName-used":"Ta warto\u015B\u0107 nie mo\u017Ce by\u0107 taka sama jak mnoga","error.contentTypeName.reserved-name":"Ta nazwa nie mo\u017Ce by\u0107 u\u017Cywana w tym typie tre\u015Bci, poniewa\u017C mo\u017Ce uszkodzi\u0107 inne funkcje","error.validation.enum-duplicate":"Zduplikowane warto\u015Bci nie s\u0105 dozwolone","error.validation.enum-empty-string":"Puste pola nie s\u0105 dozwolone","error.validation.enum-number":"Warto\u015B\u0107 nie mo\u017Ce zaczyna\u0107 si\u0119 liczb\u0105","error.validation.minSupMax":"Nie mo\u017Ce by\u0107 wy\u017Cszy","error.validation.positive":"Musi by\u0107 liczb\u0105 dodatni\u0105","error.validation.regex":"Regex jest niepoprawny","error.validation.relation.targetAttribute-taken":"Ta nazwa ju\u017C istnieje","form.attribute.component.option.add":"Dodaj komponent","form.attribute.component.option.create":"Utw\xF3rz nowy komponent","form.attribute.component.option.create.description":"Komponent jest wsp\xF3\u0142u\u017Cytkowany przez typy i komponenty, b\u0119dzie dost\u0119pny wsz\u0119dzie.","form.attribute.component.option.repeatable":"Powtarzalny komponent","form.attribute.component.option.repeatable.description":"Najlepsze dla wielu wyst\u0105pie\u0144 (tablicy) np. sk\u0142adnik\xF3w, metatag\xF3w itp.","form.attribute.component.option.reuse-existing":"U\u017Cyj istniej\u0105cego komponentu","form.attribute.component.option.reuse-existing.description":"Ponownie u\u017Cyj utworzonego ju\u017C komponentu, aby zachowa\u0107 sp\xF3jno\u015B\u0107 danych mi\u0119dzy typami tre\u015Bci.","form.attribute.component.option.single":"Pojedynczy komponent","form.attribute.component.option.single.description":"Najlepsze do grupowania p\xF3l takich jak adres, g\u0142\xF3wne informacje itp.","form.attribute.item.customColumnName":"W\u0142asne nazwy tabel","form.attribute.item.customColumnName.description":"Jest to przydatne do zmiany nazwy tabel bazy danych w bardziej wszechstronnym formacie odpowiedzi API","form.attribute.item.date.type.date":"data (np: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"data i czas (np: 01/01/{currentYear} 00:00 AM)","form.attribute.item.date.type.time":"czas (np: 00:00 AM)","form.attribute.item.defineRelation.fieldName":"Nazwa pola","form.attribute.item.enumeration.graphql":"Nadpisanie nazwy dla GraphQL","form.attribute.item.enumeration.graphql.description":"Pozwalaj na nadpisanie domy\u015Blnie wygenerowanej nazwy dla GraphQL.","form.attribute.item.enumeration.placeholder":"Przyk\u0142ad:\\nrano\\npo\u0142udnie\\nwiecz\xF3r","form.attribute.item.enumeration.rules":"Warto\u015Bci (ka\u017Cda w osobnej linii)","form.attribute.item.maximum":"Maksymalna warto\u015B\u0107","form.attribute.item.maximumLength":"Maksymalna d\u0142ugo\u015B\u0107","form.attribute.item.minimum":"Minimalna warto\u015B\u0107","form.attribute.item.minimumLength":"Minimalna d\u0142ugo\u015B\u0107","form.attribute.item.number.type":"Format liczby","form.attribute.item.number.type.biginteger":"du\u017Ca liczba ca\u0142kowita (np. 123456789)","form.attribute.item.number.type.decimal":"dziesi\u0119tna (np: 2.22)","form.attribute.item.number.type.float":"zmiennoprzecinkowa (np: 3.33333333)","form.attribute.item.number.type.integer":"ca\u0142kowita (np: 10)","form.attribute.item.privateField":"Pole prywatne","form.attribute.item.privateField.description":"To pole nie pojawi si\u0119 w odpowiedzi API","form.attribute.item.requiredField":"Wymagany","form.attribute.item.requiredField.description":"Nie b\u0119dziesz w stanie stworzy\u0107 wpisu je\u017Celi atrybut b\u0119dzie pusty","form.attribute.item.text.regex":"RegExp","form.attribute.item.text.regex.description":"Wyra\u017Cenie regularne","form.attribute.item.uniqueField":"Pole unikalne","form.attribute.item.uniqueField.description":"Nie b\u0119dziesz w stanie stworzy\u0107 wpisu je\u017Celi b\u0119dzie istnia\u0142 element z tak\u0105 sam\u0105 zawarto\u015Bci\u0105","form.attribute.media.allowed-types":"Wybierz dozwolone media","form.attribute.media.allowed-types.option-files":"Pliki","form.attribute.media.allowed-types.option-images":"Obrazki","form.attribute.media.allowed-types.option-videos":"Filmy","form.attribute.media.option.multiple":"Wiele medi\xF3w","form.attribute.media.option.multiple.description":"Najlepsze dla slajder\xF3w, karuzeli lub pobierania wielu plik\xF3w","form.attribute.media.option.single":"Pojedyncze media","form.attribute.media.option.single.description":"Najlepsze dla awatara, zdj\u0119cia profilowego lub ok\u0142adki","form.attribute.settings.default":"Domy\u015Blna warto\u015B\u0107","form.attribute.text.option.long-text":"D\u0142ugi tekst","form.attribute.text.option.long-text.description":"Najlepszy dla opis\xF3w, biografii. Dok\u0142adne wyszukiwanie jest wy\u0142\u0105czone.","form.attribute.text.option.short-text":"Kr\xF3tki tekst","form.attribute.text.option.short-text.description":"Najlepszy dla tytu\u0142\xF3w, nazw, link\xF3w (URL). Umo\u017Cliwia tak\u017Ce dok\u0142adne wyszukiwanie dla pola.","form.button.add-components-to-dynamiczone":"Dodaj komponenty do strefy","form.button.add-field":"Dodaj kolejne pole","form.button.add-first-field-to-created-component":"Dodaj pierwsze pole do komponentu","form.button.add.field.to.collectionType":"Dodaj kolejne pole","form.button.add.field.to.component":"Dodaj kolejne pole","form.button.add.field.to.contentType":"Dodaj kolejne pole","form.button.add.field.to.singleType":"Dodaj kolejne pole","form.button.cancel":"Anuluj","form.button.collection-type.description":"Najlepsze rozwi\u0105zanie dla wielu wyst\u0105pie\u0144 typu artyku\u0142y, produkty, komentarze itd.","form.button.collection-type.name":"Kolekcja","form.button.configure-component":"Skonfiguruj komponent","form.button.configure-view":"Skonfiguruj widok","form.button.select-component":"Wybierz komponent","form.button.single-type.description":"Najlepsze rozwi\u0105zanie dla pojedynczych wyst\u0105pie\u0144 typu strona g\u0142\xF3wna, strona o nas itd","form.button.single-type.name":"Pojedynczy typ","form.contentType.divider.draft-publish":"Szkic/Publikacja","from":"z","listView.headerLayout.description":"Stw\xF3rz struktur\u0119 danych dla twoich tre\u015Bci","menu.section.components.name":"Komponenty","menu.section.models.name":"Kolekcje","menu.section.single-types.name":"Pojedyncze typy","modalForm.attribute.form.base.name.description":"Spacja nie jest dozwolona dla nazwy","modalForm.attribute.form.base.name.placeholder":"np. Slug, SEO URL, Canonical URL","modalForm.attribute.target-field":"Do\u0142\u0105czone pole","modalForm.attributes.select-component":"Wybierz komponent","modalForm.attributes.select-components":"Wybierz komponenty","modalForm.collectionType.header-create":"Nowa kolekcja","modalForm.component.header-create":"Nowy komponent","modalForm.components.create-component.category.label":"Wybierz kategori\u0119 lub wprowad\u017A nazw\u0119, aby utworzy\u0107 now\u0105","modalForm.components.icon.label":"Ikona","modalForm.editCategory.base.name.description":"Spacja nie jest dozwolona dla nazwy kategorii","modalForm.header-edit":"Edytuj {name}","modalForm.header.categories":"Kategorie","modalForm.singleType.header-create":"Nowy pojedynczy typ","modalForm.sub-header.addComponentToDynamicZone":"Dodaj nowy komponent do strefy dynamicznej","modalForm.sub-header.attribute.create":"Dodaj nowe pole {type}","modalForm.sub-header.attribute.create.step":"Dodaj nowy komponent ({step}/2)","modalForm.sub-header.attribute.edit":"Edytuj {name}","modalForm.sub-header.chooseAttribute.collectionType":"Wybierz pole dla kolekcji","modalForm.sub-header.chooseAttribute.component":"Wybierz pole dla komponentu","modalForm.sub-header.chooseAttribute.singleType":"Wybierz pole dla pojedynczego typu","modelPage.attribute.relation-polymorphic":"Relacja","modelPage.attribute.relationWith":"Relacja z","notification.error.dynamiczone-min.validation":"Co najmniej jeden komponent jest wymagany","notification.info.autoreaload-disable":"Funkcja autoReload jest wymagana by u\u017Cy\u0107 tego pluginu. Uruchom serwer u\u017Cywaj\u0105c `strapi develop`","notification.info.creating.notSaved":"Zapisz swoj\u0105 prac\u0119 przed utworzeniem nowego typu tre\u015Bci lub komponentu","plugin.description.long":"Modeluj struktur\u0119 danych swojego API. Tw\xF3rz atrybuty i relacje w minut\u0119. Pliki s\u0105 automatycznie tworzone i aktualizowane w twoim projekcie.","plugin.description.short":"Modeluj struktur\u0119 danych swojego API.","plugin.name":"Kreator typu tre\u015Bci","popUpForm.navContainer.advanced":"Zaawansowane","popUpForm.navContainer.base":"Podstawowe","popUpWarning.bodyMessage.cancel-modifications":"Czy na pewno chcesz anulowa\u0107 swoje zmiany?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Czy na pewno chcesz anulowa\u0107 swoje zmiany? Niekt\xF3re komponenty zosta\u0142y utworzone lub zmodyfikowane ...","popUpWarning.bodyMessage.category.delete":"Czy na pewno chcesz usun\u0105\u0107 t\u0119 kategori\u0119? Wszystkie komponenty r\xF3wnie\u017C zostan\u0105 usuni\u0119te.","popUpWarning.bodyMessage.component.delete":"Czy na pewno chcesz usun\u0105\u0107 ten komponent?","popUpWarning.bodyMessage.contentType.delete":"Czy na pewno chcesz usun\u0105\u0107 t\u0119 kolekcj\u0119?","popUpWarning.draft-publish.button.confirm":"Tak, wy\u0142\u0105cz","popUpWarning.draft-publish.message":"Je\u015Bli wy\u0142\u0105czysz system szkicu/publikacji, wszystkie twoje szkice zostan\u0105 usuni\u0119te.","popUpWarning.draft-publish.second-message":"Czy na pewno chcesz to wy\u0142\u0105czy\u0107?","prompt.unsaved":"Jeste\u015B pewny, \u017Ce chcesz wyj\u015B\u0107? Wszystkie twoje zmiany zostan\u0105 utracone.","relation.attributeName.placeholder":"Np: autor, kategoria, tag","relation.manyToMany":"zawiera i nale\u017Cy do wielu","relation.manyToOne":"zawiera wiele","relation.manyWay":"ma wiele","relation.oneToMany":"nale\u017Cy do wielu","relation.oneToOne":"zawiera i nale\u017Cy do","relation.oneWay":"zawiera","table.button.no-fields":"Dodaj nowe pole","table.content.create-first-content-type":"Stw\xF3rz pierwszy typ tre\u015Bci","table.content.no-fields.collection-type":"Dodaj pierwsze pole do tego typu tre\u015Bci","table.content.no-fields.component":"Dodaj pierwsze pole do tego komponentu"}')}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[5906],{52805:e=>{e.exports=JSON.parse('{"attribute.boolean":"Booleano","attribute.boolean.description":"Sim ou n\xE3o, 1 ou 0, verdadeiro ou falso","attribute.component":"Componente","attribute.component.description":"Grupo de campos que voc\xEA pode repetir ou reutilizar","attribute.date":"Data","attribute.date.description":"Seleciona datas com horas, minutos e segundos","attribute.datetime":"Data e hora","attribute.dynamiczone":"Zona din\xE2mica","attribute.dynamiczone.description":"Escolha um componente dinamicamente quando estiver editando um conte\xFAdo","attribute.email":"E-mail","attribute.email.description":"Campo de email com valida\xE7\xE3o de formato","attribute.enumeration":"Enumera\xE7\xE3o","attribute.enumeration.description":"Lista de valores, escolha um","attribute.json":"JSON","attribute.json.description":"Dados no formato de JSON","attribute.media":"M\xEDdia","attribute.media.description":"Arquivos como imagens, v\xEDdeos, etc","attribute.null":" ","attribute.number":"N\xFAmero","attribute.number.description":"N\xFAmeros (inteiro, flutuante, decimal)","attribute.password":"Senha","attribute.password.description":"Campo de senha com criptografia","attribute.relation":"Rela\xE7\xE3o","attribute.relation.description":"Refere-se a um Tipo de Cole\xE7\xE3o","attribute.richtext":"Texto avan\xE7ado","attribute.richtext.description":"Um editor de texto avan\xE7ado com op\xE7\xF5es de formata\xE7\xE3o","attribute.text":"Texto","attribute.text.description":"Texto curto ou longo como t\xEDtulo ou descri\xE7\xE3o","attribute.time":"Time","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"Identificador \xFAnico","button.attributes.add.another":"Adicionar outro campo","button.component.add":"Adicionar um componente","button.component.create":"Criar novo componente","button.model.create":"Criar novo tipo de cole\xE7\xE3o","button.single-types.create":"Criar novo tipo \xFAnico","component.repeatable":"(repet\xEDvel)","components.SelectComponents.displayed-value":"{number, plural, =0 {# componentes} one {# componente} other {# componentes}} selecionados","components.componentSelect.no-component-available":"Voc\xEA j\xE1 adicionou todos os seus componentes","components.componentSelect.no-component-available.with-search":"N\xE3o h\xE1 nenhum componente que corresponda \xE0 sua pesquisa","components.componentSelect.value-component":"{number} componente selecionado (digite para pesquisar por um componente)","components.componentSelect.value-components":"{number} componentes selecionados","configurations":"Configura\xE7\xF5es","contentType.apiId-plural.description":"ID de API pluralizado","contentType.apiId-plural.label":"ID da API (plural)","contentType.apiId-singular.description":"O UID \xE9 usado para gerar as rotas de API e tabelas/cole\xE7\xF5es de bancos de dados","contentType.apiId-singular.label":"ID da API (Singular)","contentType.collectionName.description":"\xDAtil quando o nome do seu Tipo de Conte\xFAdo e o nome da sua tabela diferem","contentType.collectionName.label":"Nome da cole\xE7\xE3o","contentType.displayName.label":"Mostrar nome","contentType.draftAndPublish.description":"Escreva uma vers\xE3o de rascunho de cada entrada antes de public\xE1-la","contentType.draftAndPublish.label":"Sistema de rascunho/publica\xE7\xE3o","contentType.kind.change.warning":"Voc\xEA acabou de alterar o tipo de um tipo de conte\xFAdo: a API ser\xE1 redefinida (rotas, controladores e servi\xE7os ser\xE3o substitu\xEDdos).","error.attributeName.reserved-name":"Este nome n\xE3o pode ser usado em seu tipo de conte\xFAdo, pois pode quebrar outras funcionalidades","error.contentType.pluralName-used":"Este valor n\xE3o pode ser igual ao singular","error.contentType.singularName-used":"Este valor n\xE3o pode ser igual ao plural","error.contentTypeName.reserved-name":"Este nome n\xE3o pode ser usado em seu projeto, pois pode quebrar outras funcionalidades","error.validation.enum-duplicate":"Valores duplicados n\xE3o s\xE3o permitidos (somente os caracteres alfanum\xE9ricos s\xE3o considerados).","error.validation.enum-empty-string":"Strings vazias n\xE3o s\xE3o permitidas","error.validation.enum-regex":"Pelo menos um valor \xE9 inv\xE1lido. Os valores devem ter pelo menos um caractere alfab\xE9tico antes da primeira ocorr\xEAncia de um n\xFAmero.","error.validation.minSupMax":"N\xE3o pode ser superior","error.validation.positive":"Valor deve ser positivo","error.validation.regex":"O padr\xE3o Regex \xE9 inv\xE1lido","error.validation.relation.targetAttribute-taken":"Este atributo j\xE1 est\xE1 sendo usado","form.attribute.component.option.add":"Adicionar componente","form.attribute.component.option.create":"Criar novo componente","form.attribute.component.option.create.description":"Um componente \xE9 compartilhado entre tipos e componentes, ele estar\xE1 dispon\xEDvel e acess\xEDvel em qualquer lugar.","form.attribute.component.option.repeatable":"Componente repet\xEDvel","form.attribute.component.option.repeatable.description":"Melhor para v\xE1rias inst\xE2ncias (array) de ingredientes, meta tags, etc.","form.attribute.component.option.reuse-existing":"Reutilizar componente existente","form.attribute.component.option.reuse-existing.description":"Reutilize um componente j\xE1 criado para manter seus dados consistentes em todos os tipos de conte\xFAdo.","form.attribute.component.option.single":"Componente \xFAnico","form.attribute.component.option.single.description":"Melhor para agrupar campos como endere\xE7o completo, informa\xE7\xF5es principais, etc...","form.attribute.item.customColumnName":"Nomes de coluna personalizados","form.attribute.item.customColumnName.description":"Isso \xE9 \xFAtil para renomear os nomes das colunas do banco de dados em um formato mais abrangente para as respostas da API","form.attribute.item.date.type.date":"data (ex: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"data e hora (ex: 01/01/{currentYear} 00:00 AM)","form.attribute.item.date.type.time":"hora (ex: 00:00 AM)","form.attribute.item.defineRelation.fieldName":"Nome do campo","form.attribute.item.enumeration.graphql":"Substitui\xE7\xE3o de nome para GraphQL","form.attribute.item.enumeration.graphql.description":"Permite que voc\xEA substitua o nome padr\xE3o gerado para GraphQL","form.attribute.item.enumeration.placeholder":"Ex:\\nmanh\xE3\\ntarde\\nnoite","form.attribute.item.enumeration.rules":"Valores (uma linha por valor)","form.attribute.item.maximum":"Valor m\xE1ximo","form.attribute.item.maximumLength":"Tamanho m\xE1ximo","form.attribute.item.minimum":"Valor m\xEDnimo","form.attribute.item.minimumLength":"Tamanho m\xEDnimo","form.attribute.item.number.type":"Formato de n\xFAmero","form.attribute.item.number.type.biginteger":"inteiro grande (ex: 123456789)","form.attribute.item.number.type.decimal":"decimal (ex: 2.22)","form.attribute.item.number.type.float":"float (ex: 3.33333333)","form.attribute.item.number.type.integer":"inteiro (ex: 10)","form.attribute.item.privateField":"Campo privado","form.attribute.item.privateField.description":"Este campo n\xE3o aparecer\xE1 na resposta da API","form.attribute.item.requiredField":"Campo obrigat\xF3rio","form.attribute.item.requiredField.description":"Voc\xEA n\xE3o poder\xE1 criar uma entrada se este campo estiver vazio","form.attribute.item.text.regex":"Padr\xE3o Regex","form.attribute.item.text.regex.description":"O texto da express\xE3o regular","form.attribute.item.uniqueField":"Campo \xFAnico","form.attribute.item.uniqueField.description":"Voc\xEA n\xE3o poder\xE1 criar uma entrada se houver uma entrada existente com conte\xFAdo id\xEAntico","form.attribute.media.allowed-types":"Selecione os tipos de m\xEDdia permitidos","form.attribute.media.allowed-types.option-files":"Arquivos","form.attribute.media.allowed-types.option-images":"Imagens","form.attribute.media.allowed-types.option-videos":"V\xEDdeos","form.attribute.media.option.multiple":"M\xFAltiplos","form.attribute.media.option.multiple.description":"Melhor para sliders, carross\xE9is ou download de v\xE1rios arquivos","form.attribute.media.option.single":"\xDAnico","form.attribute.media.option.single.description":"Melhor para avatar, foto de perfil ou capa","form.attribute.settings.default":"Valor Padr\xE3o","form.attribute.text.option.long-text":"Texto longo","form.attribute.text.option.long-text.description":"Melhor para descri\xE7\xF5es, biografia. A pesquisa exata est\xE1 desativada.","form.attribute.text.option.short-text":"Texto curto","form.attribute.text.option.short-text.description":"Melhor para t\xEDtulos, nomes, links (URL). Tamb\xE9m permite a pesquisa exata no campo.","form.button.add-components-to-dynamiczone":"Adicionar componentes \xE0 zona","form.button.add-field":"Adicionar campo","form.button.add-first-field-to-created-component":"Adicionar primeiro campo ao componente criado","form.button.add.field.to.collectionType":"Adicionar outro campo a este tipo de cole\xE7\xE3o","form.button.add.field.to.component":"Adicionar outro campo a este componente","form.button.add.field.to.contentType":"Adicionar outro campo a este tipo de conte\xFAdo","form.button.add.field.to.singleType":"Adicionar outro campo a este \xFAnico tipo","form.button.cancel":"Cancelar","form.button.collection-type.description":"Melhor para v\xE1rias inst\xE2ncias, como artigos, produtos, coment\xE1rios etc.","form.button.collection-type.name":"Tipo de Cole\xE7\xE3o","form.button.configure-component":"Configurar componente","form.button.configure-view":"Configurar visualiza\xE7\xE3o","form.button.select-component":"Selecionar componente","form.button.single-type.description":"Melhor para inst\xE2ncia \xFAnica, como sobre n\xF3s, p\xE1gina inicial etc.","form.button.single-type.name":"Tipo \xDAnico","form.contentType.divider.draft-publish":"Rascunho / Publicar","from":"de","listView.headerLayout.description":"Crie a arquitetura de dados do seu conte\xFAdo","menu.section.components.name":"Componentes","menu.section.models.name":"Tipos de Cole\xE7\xE3o","menu.section.single-types.name":"Tipos \xDAnicos","modalForm.attribute.form.base.name.description":"Nenhum espa\xE7o \xE9 permitido para o nome do atributo","modalForm.attribute.form.base.name.placeholder":"por exemplo. Slug, URL de SEO, URL can\xF4nica","modalForm.attribute.target-field":"Campo anexado","modalForm.attributes.select-component":"Selecione um componente","modalForm.attributes.select-components":"Selecione os componentes","modalForm.collectionType.header-create":"Criar modelo","modalForm.component.header-create":"Criar componente","modalForm.components.create-component.category.label":"Selecione uma categoria ou insira um nome para criar uma nova","modalForm.components.icon.label":"\xCDcone","modalForm.editCategory.base.name.description":"N\xE3o \xE9 permitido espa\xE7o para o nome da categoria","modalForm.header-edit":"Editar {name}","modalForm.header.categories":"Categorias","modalForm.singleType.header-create":"Criar tipo \xFAnico","modalForm.sub-header.addComponentToDynamicZone":"Adicionar novo componente \xE0 zona din\xE2mica","modalForm.sub-header.attribute.create":"Adicionar novo campo {type}","modalForm.sub-header.attribute.create.step":"Adicionar novo componente ({step}/2)","modalForm.sub-header.attribute.edit":"Editar {name}","modalForm.sub-header.chooseAttribute.collectionType":"Selecione um campo para seu tipo de cole\xE7\xE3o","modalForm.sub-header.chooseAttribute.component":"Selecione um campo para seu componente","modalForm.sub-header.chooseAttribute.singleType":"Selecione um campo para seu tipo \xFAnico","modelPage.attribute.relation-polymorphic":"Rela\xE7\xE3o (polim\xF3rfica)","modelPage.attribute.relationWith":"Rela\xE7\xE3o com","notification.error.dynamiczone-min.validation":"Pelo menos um componente \xE9 necess\xE1rio em uma zona din\xE2mica para poder salvar um tipo de conte\xFAdo","notification.info.autoreaload-disable":"O recurso autoReload \xE9 necess\xE1rio para usar este plugin. Inicie seu servidor com `strapi develop`","notification.info.creating.notSaved":"Por favor, salve seu trabalho antes de criar um novo tipo de cole\xE7\xE3o ou componente","plugin.description.long":"Modele a estrutura de dados da sua API. Crie novos campos e rela\xE7\xF5es em apenas um minuto. Os arquivos s\xE3o criados e atualizados automaticamente em seu projeto.","plugin.description.short":"Modele a estrutura de dados da sua API.","plugin.name":"Criador de tipo de conte\xFAdo","popUpForm.navContainer.advanced":"Configura\xE7\xF5es avan\xE7adas","popUpForm.navContainer.base":"Configura\xE7\xF5es b\xE1sicas","popUpWarning.bodyMessage.cancel-modifications":"Tem certeza de que deseja cancelar suas modifica\xE7\xF5es?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Tem certeza de que deseja cancelar suas modifica\xE7\xF5es? Alguns componentes foram criados ou modificados...","popUpWarning.bodyMessage.category.delete":"Tem certeza de que deseja excluir esta categoria? Todos os componentes tamb\xE9m ser\xE3o exclu\xEDdos.","popUpWarning.bodyMessage.component.delete":"Tem certeza de que deseja excluir este componente?","popUpWarning.bodyMessage.contentType.delete":"Tem certeza de que deseja excluir este tipo de cole\xE7\xE3o?","popUpWarning.draft-publish.button.confirm":"Sim, desabilitar ","popUpWarning.draft-publish.message":"Se voc\xEA desativar o sistema Rascunho/Publicar, seus rascunhos ser\xE3o exclu\xEDdos.","popUpWarning.draft-publish.second-message":"Tem certeza de que deseja desativ\xE1-lo?","prompt.unsaved":"Voc\xEA tem certeza de que quer sair? Todas as suas modifica\xE7\xF5es ser\xE3o perdidas.","relation.attributeName.placeholder":"Ex: autor, categoria, tag","relation.manyToMany":"tem e pertence a muitos","relation.manyToOne":"tem e pertence a um","relation.manyWay":"tem e pertence a muitos","relation.oneToMany":"pertence a muitos","relation.oneToOne":"tem e pertence a um","relation.oneWay":"pertence a um","table.button.no-fields":"Adicionar novo campo","table.content.create-first-content-type":"Crie seu primeiro tipo de cole\xE7\xE3o","table.content.no-fields.collection-type":"Adicione seu primeiro campo a este Tipo de Cole\xE7\xE3o","table.content.no-fields.component":"Adicione seu primeiro campo a este Componente"}')}}]);
@@ -0,0 +1 @@
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[8329],{34357:t=>{t.exports=JSON.parse('{"attribute.boolean":"Booleskt v\xE4rde","attribute.boolean.description":"Ja eller nej, 1 eller 0, sant eller falskt","attribute.component":"Komponent","attribute.component.description":"Grupp av f\xE4lt du kan \xE5teranv\xE4nda och repetera","attribute.customField":"Anpassat f\xE4lt","attribute.date":"Datum","attribute.date.description":"En datumv\xE4ljare med sekunder, minuter och timmar","attribute.datetime":"Datum och tid","attribute.dynamiczone":"Dynamisk zon","attribute.dynamiczone.description":"Dynamiskt v\xE4lj mellan f\xF6rutbest\xE4mda komponenter n\xE4r du skapar inneh\xE5ll","attribute.email":"E-post","attribute.email.description":"E-postadressf\xE4lt med validering","attribute.enumeration":"Enumeration","attribute.enumeration.description":"F\xF6rutbest\xE4mda v\xE4rden som man kan v\xE4lja mellan","attribute.json":"JSON","attribute.json.description":"Data i JSON-format","attribute.media":"Media","attribute.media.description":"Filer s\xE5som bilder, videos, m.m","attribute.null":" ","attribute.number":"Nummer","attribute.number.description":"Nummer (heltal och decimaltal)","attribute.password":"L\xF6senord","attribute.password.description":"L\xF6senordsf\xE4lt med kryptering","attribute.relation":"Relation","attribute.relation.description":"Refererar till en samlingstyp","attribute.richtext":"Formaterad text","attribute.richtext.description":"En textredigerare med formatalternativ","attribute.text":"Text","attribute.text.description":"Kort och l\xE5ng text s\xE5som titel eller beskrivning","attribute.time":"Tid","attribute.timestamp":"Tidst\xE4mpel","attribute.uid":"UID","attribute.uid.description":"Unik identifierare","button.attributes.add.another":"L\xE4gg till nytt f\xE4lt","button.component.add":"L\xE4gg till en komponent","button.component.create":"Skapa komponent","button.model.create":"Skapa samlingstyp","button.single-types.create":"Skapa eng\xE5ngstyp","component.repeatable":"(repeterbar)","components.SelectComponents.displayed-value":"{number, plural, =0 {# komponenter} one {# komponent} other {# komponenter}} valda","components.componentSelect.no-component-available":"Du har redan lagt till alla dina komponenter","components.componentSelect.no-component-available.with-search":"Det finns inga komponenter matchande s\xF6kningen","components.componentSelect.value-component":"{number} komponenter valda (skriv f\xF6r att s\xF6ka efter en komponent)","components.componentSelect.value-components":"{number} komponenter valda","configurations":"Konfigurationer","contentType.apiId-plural.description":"Pluraliserat API-ID","contentType.apiId-plural.label":"API ID (Plural)","contentType.apiId-singular.description":"UID:t anv\xE4nds f\xF6r att generera API-rutterna och databastabellerna","contentType.apiId-singular.label":"API ID (Singular)","contentType.collectionName.description":"Anv\xE4ndbart n\xE4r namnet p\xE5 din inneh\xE5llstyp och din tabell \xE4r olika","contentType.collectionName.label":"Samlingsnamn","contentType.displayName.label":"Visningsnamn","contentType.draftAndPublish.description":"Skapa ett utkast av varje inl\xE4gg innan det publiceras","contentType.draftAndPublish.label":"Utkast/publiceringssystem","contentType.kind.change.warning":"Du \xE4ndrade typen p\xE5 en inneh\xE5llstyp: API:n kommer \xE5terskapas (rutter, kontroller, och tj\xE4nster kommer bli \xF6verskrivna).","error.attributeName.reserved-name":"Namnet kan inte anv\xE4ndas f\xF6r att det kan p\xE5verka annan funktionalitet","error.contentType.pluralName-used":"V\xE4rdet kan inte vara samma som namnet i singular","error.contentType.singularName-used":"V\xE4rdet kan inte vara samma som det pluraliserade namnet","error.contentTypeName.reserved-name":"Namnet kan inte anv\xE4ndas i ditt projekt f\xF6r att det kan p\xE5verka annan funktionalitet","error.validation.enum-duplicate":"Dubblettv\xE4rden \xE4r inte till\xE5tna (endast alfanumeriska tecken kontrolleras).","error.validation.enum-empty-string":"Tomma str\xE4ngar \xE4r inte till\xE5tna","error.validation.enum-regex":"Minst ett v\xE4rde \xE4r ogiltigt. V\xE4rden ska ha minst ett alfabetiskt tecken f\xF6re det f\xF6rsta talet.","error.validation.minSupMax":"Can\'t be superior","error.validation.positive":"M\xE5ste vara ett positivt tal","error.validation.regex":"Regex-m\xF6nstret \xE4r ogiltigt","error.validation.relation.targetAttribute-taken":"Detta namn existerar i m\xE5let","form.attribute.component.option.add":"L\xE4gg till en komponent","form.attribute.component.option.create":"Skapa en komponent","form.attribute.component.option.create.description":"En komponent delas mellan inneh\xE5llstyper och komponenter, och \xE4r tillg\xE4nglig \xF6verallt.","form.attribute.component.option.repeatable":"Repeterbar komponent","form.attribute.component.option.repeatable.description":"B\xE4st f\xF6r flera t.ex ingredienser, metataggar m.m. (listor)","form.attribute.component.option.reuse-existing":"Anv\xE4nd en befintlig komponent","form.attribute.component.option.reuse-existing.description":"\xC5teranv\xE4nd en komponent som redan har skapats f\xF6r att h\xE5lla datastrukturen samma \xF6ver flera inneh\xE5llstyper.","form.attribute.component.option.single":"Eng\xE5ngskomponent","form.attribute.component.option.single.description":"B\xE4st f\xF6r att gruppera f\xE4lt som adress, huvudinneh\xE5ll, etc...","form.attribute.item.customColumnName":"Anpassade kolumnnamn","form.attribute.item.customColumnName.description":"Kan anv\xE4ndas f\xF6r att anpassa hur datan ser ut i API-svar","form.attribute.item.date.type.date":"datum (t.ex: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"datum och tid (t.ex: 01/01/{currentYear} 00:00)","form.attribute.item.date.type.time":"tid (t.ex: 00:00)","form.attribute.item.defineRelation.fieldName":"F\xE4ltnamn","form.attribute.item.enumeration.graphql":"Namn\xE4ndring f\xF6r GraphQL","form.attribute.item.enumeration.graphql.description":"L\xE5ter dig \xE4ndra det genererade namnet i GraphQL","form.attribute.item.enumeration.placeholder":"Ex:\\nmorgon\\nmiddag\\nkv\xE4ll","form.attribute.item.enumeration.rules":"V\xE4rden (ett v\xE4rde per rad)","form.attribute.item.maximum":"St\xF6rsta v\xE4rde","form.attribute.item.maximumLength":"L\xE4ngsta l\xE4ngd","form.attribute.item.minimum":"Minsta v\xE4rde","form.attribute.item.minimumLength":"Kortaste l\xE4ngd","form.attribute.item.number.type":"Nummerformat","form.attribute.item.number.type.biginteger":"stort heltal (t.ex: 123456789)","form.attribute.item.number.type.decimal":"decimaltal (t.ex: 2.22)","form.attribute.item.number.type.float":"flyttal (t.ex: 3.33333333)","form.attribute.item.number.type.integer":"heltal (t.ex: 10)","form.attribute.item.privateField":"Privat f\xE4lt","form.attribute.item.privateField.description":"Detta f\xE4lt kommer inte att visas i API-svar","form.attribute.item.requiredField":"Obligatoriskt f\xE4lt","form.attribute.item.requiredField.description":"Du kommer inte kunna skapa posten om detta f\xE4ltet \xE4r tomt","form.attribute.item.text.regex":"RegEx-m\xF6nster","form.attribute.item.text.regex.description":"Texten f\xF6r RegEx-m\xF6nstret","form.attribute.item.uniqueField":"Unikt f\xE4lt","form.attribute.item.uniqueField.description":"Du kommer inte kunna skapa posten om det redan finns en annan post med samma v\xE4rde","form.attribute.media.allowed-types":"V\xE4lj till\xE5tna typer av medier","form.attribute.media.allowed-types.option-files":"Filer","form.attribute.media.allowed-types.option-images":"Bilder","form.attribute.media.allowed-types.option-videos":"Videos","form.attribute.media.option.multiple":"Flera medier","form.attribute.media.option.multiple.description":"Till\xE5ter flera medier att v\xE4ljas i samma f\xE4lt, passar bra f\xF6r t.ex bildgallerier","form.attribute.media.option.single":"En media","form.attribute.media.option.single.description":"B\xE4st f\xF6r profilbilder eller andra bilder som bara f\xF6rekommer en g\xE5ng per post","form.attribute.settings.default":"Standardv\xE4rde","form.attribute.text.option.long-text":"L\xE5ng text","form.attribute.text.option.long-text.description":"B\xE4st f\xF6r beskrivningar eller andra l\xE4ngre texter. Fulltexts\xF6kning \xE4r inaktiverat.","form.attribute.text.option.short-text":"Kort text","form.attribute.text.option.short-text.description":"B\xE4st f\xF6r titlar, namn, l\xE4nkar (URL:er). Aktiverar fulltexts\xF6kning s\xF6kning f\xF6r f\xE4ltet.","form.button.add-components-to-dynamiczone":"L\xE4gg till komponenter till dynamiska zonen","form.button.add-field":"L\xE4gg till nytt f\xE4lt","form.button.add-first-field-to-created-component":"L\xE4gg till f\xF6rsta f\xE4ltet i komponenten","form.button.add.field.to.collectionType":"L\xE4gg till ett nytt f\xE4lt i samlingstypen","form.button.add.field.to.component":"L\xE4gg till ett nytt f\xE4lt i komponenten","form.button.add.field.to.contentType":"L\xE4gg till ett nytt f\xE4lt i inneh\xE5llstypen","form.button.add.field.to.singleType":"L\xE4gg till ett nytt f\xE4lt i eng\xE5ngstypen","form.button.cancel":"Avbryt","form.button.collection-type.description":"B\xE4st f\xF6r flera poster s\xE5som artiklar, produkter och kommentarer.","form.button.collection-type.name":"Samlingstyper","form.button.configure-component":"Konfigurera komponenten","form.button.configure-view":"Konfigurera visningen","form.button.select-component":"V\xE4lj en komponent","form.button.single-type.description":"B\xE4st f\xF6r poster som bara f\xF6rekommer en g\xE5ng s\xE5som startsida, om oss, m.m.","form.button.single-type.name":"Eng\xE5ngstyper","form.contentType.divider.draft-publish":"Utkast/Publicera","from":"fr\xE5n","listView.headerLayout.description":"Skapa datastrukturen f\xF6r ditt inneh\xE5ll","menu.section.components.name":"Komponenter","menu.section.models.name":"Samlingstyper","menu.section.single-types.name":"Eng\xE5ngstyper","modalForm.attribute.form.base.name.description":"Mellanslag till\xE5ts inte i namnet p\xE5 attributet","modalForm.attribute.form.base.name.placeholder":"t.ex Titel, Slug, Canonical URL","modalForm.attribute.target-field":"Kopplat f\xE4lt","modalForm.attributes.select-component":"V\xE4lj komponent","modalForm.attributes.select-components":"V\xE4lj komponenter","modalForm.collectionType.header-create":"Skapa samlingstyp","modalForm.component.header-create":"Skapa komponent","modalForm.components.create-component.category.label":"V\xE4lj kategori eller ange namn p\xE5 ny kategori","modalForm.components.icon.label":"Ikon","modalForm.empty.button":"L\xE4gg till anpassade f\xE4lt","modalForm.empty.heading":"Inget h\xE4r \xE4nnu.","modalForm.empty.sub-heading":"Hitta det du letar efter genom ett brett utbud av till\xE4gg.","modalForm.editCategory.base.name.description":"Inget mellanslag f\xE5r finnas i namnet p\xE5 kategorin","modalForm.header-edit":"Redigera {name}","modalForm.header.categories":"Kategorier","modalForm.singleType.header-create":"Skapa eng\xE5ngstyp","modalForm.sub-header.addComponentToDynamicZone":"L\xE4gg till ny komponent till dynamisk zon","modalForm.sub-header.attribute.create":"L\xE4gg till {type}-f\xE4lt","modalForm.sub-header.attribute.create.step":"L\xE4gg till ny komponent ({step}/2)","modalForm.sub-header.attribute.edit":"Redigera {name}","modalForm.sub-header.chooseAttribute.collectionType":"V\xE4lj ett f\xE4lt f\xF6r samlingstypen","modalForm.sub-header.chooseAttribute.component":"V\xE4lj ett f\xE4lt f\xF6r komponenten","modalForm.sub-header.chooseAttribute.singleType":"V\xE4lj ett f\xE4lt f\xF6r eng\xE5ngstypen","modalForm.custom-fields.advanced.settings.extended":"Ut\xF6kade inst\xE4llningar","modalForm.tabs.custom":"Anpassat","modalForm.tabs.custom.howToLink":"Hur du l\xE4gger till anpassade f\xE4lt","modalForm.tabs.default":"Standard","modalForm.tabs.label":"Standard/anpassade-flikar","modelPage.attribute.relation-polymorphic":"Relation (polymorfisk)","modelPage.attribute.relationWith":"Relation med","notification.error.dynamiczone-min.validation":"Minst en komponent m\xE5ste vara vald f\xF6r en dynamisk zon f\xF6r att kunna spara inneh\xE5llstypen","notification.info.autoreaload-disable":"autoReload-funktionen kr\xE4vs f\xF6r att anv\xE4nda detta plugin. Starta servern med `strapi develop`","notification.info.creating.notSaved":"Spara ditt arbete innan du skapar en ny samlingstyp eller komponent","plugin.description.long":"Modellera datastrukturen f\xF6r ditt API. Skapa nya f\xE4lt och relationer p\xE5 bara en minut. Filerna skapas och uppdateras automatiskt i ditt projekt.","plugin.description.short":"Modellera datastrukturen f\xF6r ditt API.","plugin.name":"Inneh\xE5llstyps-skapare","popUpForm.navContainer.advanced":"Avancerade inst\xE4llningar","popUpForm.navContainer.base":"Grundl\xE4ggande inst\xE4llningar","popUpWarning.bodyMessage.cancel-modifications":"\xC4r du s\xE4ker p\xE5 att du vill avbryta dina \xE4ndringar?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\xC4r du s\xE4ker p\xE5 att du vill avbryta dina \xE4ndringar? Vissa komponenter har skapats eller modifierats...","popUpWarning.bodyMessage.category.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r kategorin? Alla komponenter i den kommer ocks\xE5 att raderas.","popUpWarning.bodyMessage.component.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r komponenten?","popUpWarning.bodyMessage.contentType.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r samlingstypen?","popUpWarning.draft-publish.button.confirm":"Ja, inaktiverar","popUpWarning.draft-publish.message":"Om du inaktiverar Utkast/Publicera-systemet kommer dina utkast att raderas.","popUpWarning.draft-publish.second-message":"\xC4r du s\xE4ker p\xE5 att du vill inaktivera det?","prompt.unsaved":"\xC4r du s\xE4ker p\xE5 att du vill l\xE4mna? Dina \xE4ndringar kommer att f\xF6rsvinna.","relation.attributeName.placeholder":"Ex: f\xF6rfattare, kategori, tagg","relation.manyToMany":"har och tillh\xF6r m\xE5nga","relation.manyToOne":"har m\xE5nga","relation.manyWay":"har m\xE5nga","relation.oneToMany":"tillh\xF6r m\xE5nga","relation.oneToOne":"har och tillh\xF6r en","relation.oneWay":"har en","table.button.no-fields":"L\xE4gg till nytt f\xE4lt","table.content.create-first-content-type":"Skapa din f\xF6rsta samlingstyp","table.content.no-fields.collection-type":"L\xE4gg till ett f\xF6rsta f\xE4lt till samlingstypen","table.content.no-fields.component":"L\xE4gg till ett f\xF6rsta f\xE4lt i komponenten"}')}}]);