@strapi/admin 4.6.0-beta.2 → 4.6.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 (228) hide show
  1. package/.browserslistrc +2 -1
  2. package/admin/src/components/AuthenticatedApp/utils/api.js +5 -4
  3. package/admin/src/components/ConfigurationsProvider/index.js +21 -18
  4. package/admin/src/components/ConfigurationsProvider/reducer.js +1 -0
  5. package/admin/src/components/LeftMenu/index.js +62 -53
  6. package/admin/src/components/UnauthenticatedLogo/index.js +1 -1
  7. package/admin/src/content-manager/components/CollectionTypeFormWrapper/index.js +20 -16
  8. package/admin/src/content-manager/components/DynamicTable/CellContent/RelationMultiple/index.js +5 -5
  9. package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/findLeafByPathAndReplace.js +1 -3
  10. package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/schema.js +6 -5
  11. package/admin/src/content-manager/components/Hint/index.js +4 -17
  12. package/admin/src/content-manager/components/InputUID/index.js +7 -18
  13. package/admin/src/content-manager/components/Inputs/index.js +0 -2
  14. package/admin/src/content-manager/components/PreviewWysiwyg/Wrapper.js +22 -27
  15. package/admin/src/content-manager/components/SingleTypeFormWrapper/index.js +35 -14
  16. package/admin/src/content-manager/components/Wysiwyg/EditorLayout.js +19 -28
  17. package/admin/src/content-manager/components/Wysiwyg/index.js +4 -8
  18. package/admin/src/content-manager/hooks/useFetchContentTypeLayout/index.js +4 -3
  19. package/admin/src/content-manager/hooks/useLazyComponents/index.js +9 -13
  20. package/admin/src/content-manager/hooks/useRelation/useRelation.js +4 -4
  21. package/admin/src/content-manager/pages/App/LeftMenu/index.js +3 -8
  22. package/admin/src/content-manager/pages/App/LeftMenu/utils/index.js +1 -0
  23. package/admin/src/content-manager/pages/App/LeftMenu/utils/matchByTitle.js +24 -0
  24. package/admin/src/content-manager/pages/App/useModels.js +8 -3
  25. package/admin/src/content-manager/pages/App/utils/getContentTypeLinks.js +3 -2
  26. package/admin/src/content-manager/pages/ComponentSetttingsView/index.js +4 -4
  27. package/admin/src/content-manager/pages/EditSettingsView/utils/api.js +4 -2
  28. package/admin/src/content-manager/pages/EditView/{Informations → Information}/index.js +55 -39
  29. package/admin/src/content-manager/pages/EditView/{Informations → Information}/utils/getUnits.js +0 -0
  30. package/admin/src/content-manager/pages/EditView/index.js +3 -3
  31. package/admin/src/content-manager/pages/ListSettingsView/utils/api.js +4 -2
  32. package/admin/src/content-manager/pages/ListView/index.js +9 -9
  33. package/admin/src/core/store/configureStore.js +22 -4
  34. package/admin/src/core/utils/index.js +0 -1
  35. package/admin/src/hooks/useFetchEnabledPlugins/utils/api.js +3 -2
  36. package/admin/src/hooks/useInjectReducer/index.js +1 -0
  37. package/admin/src/hooks/useInjectReducer/useInjectReducer.js +19 -0
  38. package/admin/src/hooks/useRegenerate/index.js +3 -3
  39. package/admin/src/hooks/useRolesList/index.js +5 -3
  40. package/admin/src/hooks/useSettingsMenu/init.js +2 -25
  41. package/admin/src/hooks/useSettingsMenu/utils/adminLinks.js +4 -0
  42. package/admin/src/hooks/useSettingsMenu/utils/customAdminLinks.js +1 -0
  43. package/admin/src/hooks/useSettingsMenu/utils/defaultAdminLinks.js +21 -0
  44. package/admin/src/index.js +5 -4
  45. package/admin/src/pages/App/index.js +6 -2
  46. package/admin/src/pages/ProfilePage/utils/api.js +5 -3
  47. package/admin/src/pages/SettingsPage/{pages/Users/ListPage → components}/Filters/index.js +0 -0
  48. package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/index.js +6 -5
  49. package/admin/src/pages/SettingsPage/pages/ApiTokens/ListView/index.js +4 -3
  50. package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/components/CustomizationInfos/index.js +142 -0
  51. package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/components/{Form → CustomizationInfos}/init.js +3 -0
  52. package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/components/{Form → CustomizationInfos}/reducer.js +20 -0
  53. package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/components/LogoInput/index.js +21 -17
  54. package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/index.js +68 -42
  55. package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/utils/api.js +9 -3
  56. package/admin/src/pages/SettingsPage/pages/Users/EditPage/utils/api.js +6 -3
  57. package/admin/src/pages/SettingsPage/pages/Users/ListPage/ModalForm/index.js +9 -3
  58. package/admin/src/pages/SettingsPage/pages/Users/ListPage/index.js +1 -1
  59. package/admin/src/pages/SettingsPage/pages/Users/ListPage/utils/api.js +6 -3
  60. package/admin/src/pages/SettingsPage/pages/Users/components/SelectRoles/index.js +3 -2
  61. package/admin/src/pages/SettingsPage/pages/Webhooks/EditView/components/EventInput/index.js +1 -1
  62. package/admin/src/pages/SettingsPage/pages/Webhooks/EditView/index.js +3 -2
  63. package/admin/src/pages/SettingsPage/utils/defaultRoutes.js +0 -11
  64. package/admin/src/permissions/defaultPermissions.js +4 -0
  65. package/admin/src/translations/en.json +29 -21
  66. package/admin/src/translations/eu.json +796 -0
  67. package/admin/src/translations/languageNativeNames.js +1 -0
  68. package/admin/src/translations/ru.json +9 -9
  69. package/build/1412.936ed920.chunk.js +159 -0
  70. package/build/1683.c8aa7b7c.chunk.js +268 -0
  71. package/build/2607.2e48dbf8.chunk.js +66 -0
  72. package/build/2743.6d1632f9.chunk.js +45 -0
  73. package/build/3075.dc3894fe.chunk.js +108 -0
  74. package/build/3632.0317b618.chunk.js +138 -0
  75. package/build/4318.f96a9d4d.chunk.js +30 -0
  76. package/build/{3557.e7115160.chunk.js → 4855.bd092921.chunk.js} +131 -91
  77. package/build/{5015.f5e15fdb.chunk.js → 5015.8e3fe50b.chunk.js} +1 -1
  78. package/build/8633.00ccd382.chunk.js +1 -0
  79. package/build/9707.7290fd92.chunk.js +96 -0
  80. package/build/Admin-authenticatedApp.ce646f66.chunk.js +75 -0
  81. package/build/Admin_homePage.b1730882.chunk.js +77 -0
  82. package/build/Admin_marketplace.ea0316c2.chunk.js +26 -0
  83. package/build/Admin_pluginsPage.5c24f963.chunk.js +6 -0
  84. package/build/Admin_profilePage.59af1978.chunk.js +15 -0
  85. package/build/Admin_settingsPage.d1493824.chunk.js +178 -0
  86. package/build/{Upload_ConfigureTheView.9bdf41b5.chunk.js → Upload_ConfigureTheView.3f2b6e6a.chunk.js} +1 -1
  87. package/build/admin-app.25934eaa.chunk.js +112 -0
  88. package/build/admin-edit-roles-page.446b69dc.chunk.js +1 -0
  89. package/build/admin-edit-users.2ed69bfd.chunk.js +10 -0
  90. package/build/admin-users.fc003b10.chunk.js +11 -0
  91. package/build/{api-tokens-create-page.0e686c30.chunk.js → api-tokens-create-page.d248362d.chunk.js} +1 -1
  92. package/build/{api-tokens-edit-page.d6c7487b.chunk.js → api-tokens-edit-page.8516fa20.chunk.js} +1 -1
  93. package/build/api-tokens-list-page.44a79fda.chunk.js +16 -0
  94. package/build/audit-logs-settings-page.c3dce30d.chunk.js +1 -0
  95. package/build/content-manager.35ff9726.chunk.js +1139 -0
  96. package/build/content-type-builder-list-view.79e84b36.chunk.js +193 -0
  97. package/build/{content-type-builder-translation-de-json.29df67b8.chunk.js → content-type-builder-translation-de-json.0979cccb.chunk.js} +1 -1
  98. package/build/{content-type-builder-translation-dk-json.e22d2527.chunk.js → content-type-builder-translation-dk-json.e05583e9.chunk.js} +1 -1
  99. package/build/content-type-builder-translation-en-json.e577d595.chunk.js +1 -0
  100. package/build/{content-type-builder-translation-es-json.1044b252.chunk.js → content-type-builder-translation-es-json.fe4daad8.chunk.js} +1 -1
  101. package/build/{content-type-builder-translation-fr-json.2183e6b3.chunk.js → content-type-builder-translation-fr-json.b1eb52f6.chunk.js} +1 -1
  102. package/build/{content-type-builder-translation-id-json.ba3e8891.chunk.js → content-type-builder-translation-id-json.ee3b36bb.chunk.js} +1 -1
  103. package/build/{content-type-builder-translation-it-json.d4661201.chunk.js → content-type-builder-translation-it-json.13b3c26a.chunk.js} +1 -1
  104. package/build/{content-type-builder-translation-ko-json.57ff7f51.chunk.js → content-type-builder-translation-ko-json.8a274be5.chunk.js} +1 -1
  105. package/build/{content-type-builder-translation-pl-json.a057b51e.chunk.js → content-type-builder-translation-pl-json.24a34349.chunk.js} +1 -1
  106. package/build/{content-type-builder-translation-pt-BR-json.446df9da.chunk.js → content-type-builder-translation-pt-BR-json.97f71a9d.chunk.js} +1 -1
  107. package/build/{content-type-builder-translation-ru-json.8c51843e.chunk.js → content-type-builder-translation-ru-json.54d11230.chunk.js} +1 -1
  108. package/build/{content-type-builder-translation-sv-json.af6ecca1.chunk.js → content-type-builder-translation-sv-json.59f5e1e5.chunk.js} +1 -1
  109. package/build/{content-type-builder-translation-tr-json.da83a07e.chunk.js → content-type-builder-translation-tr-json.cea4d226.chunk.js} +1 -1
  110. package/build/{content-type-builder-translation-zh-json.42f94cb3.chunk.js → content-type-builder-translation-zh-json.faedd610.chunk.js} +1 -1
  111. package/build/content-type-builder.855db321.chunk.js +126 -0
  112. package/build/email-settings-page.d1fcc7a3.chunk.js +10 -0
  113. package/build/en-json.1f137a90.chunk.js +1 -0
  114. package/build/eu-json.fceecd8b.chunk.js +1 -0
  115. package/build/i18n-settings-page.b8d8753e.chunk.js +60 -0
  116. package/build/{i18n-translation-de-json.dc876c08.chunk.js → i18n-translation-de-json.362384a6.chunk.js} +1 -1
  117. package/build/{i18n-translation-dk-json.49aaf933.chunk.js → i18n-translation-dk-json.89401417.chunk.js} +1 -1
  118. package/build/{i18n-translation-en-json.ac9ebc1b.chunk.js → i18n-translation-en-json.60af6722.chunk.js} +1 -1
  119. package/build/{i18n-translation-es-json.57072ed3.chunk.js → i18n-translation-es-json.87b494d1.chunk.js} +1 -1
  120. package/build/{i18n-translation-fr-json.84733f34.chunk.js → i18n-translation-fr-json.57ddc77e.chunk.js} +1 -1
  121. package/build/{i18n-translation-ko-json.fc73fe20.chunk.js → i18n-translation-ko-json.ef4f9471.chunk.js} +1 -1
  122. package/build/{i18n-translation-pl-json.16e5df90.chunk.js → i18n-translation-pl-json.dfac513d.chunk.js} +1 -1
  123. package/build/{i18n-translation-tr-json.cb39c048.chunk.js → i18n-translation-tr-json.10f0600d.chunk.js} +1 -1
  124. package/build/{i18n-translation-zh-Hans-json.2cf82d2d.chunk.js → i18n-translation-zh-Hans-json.757ce62d.chunk.js} +1 -1
  125. package/build/{i18n-translation-zh-json.ed1d272e.chunk.js → i18n-translation-zh-json.bef2dc07.chunk.js} +1 -1
  126. package/build/index.html +1 -1
  127. package/build/main.7b151630.js +4377 -0
  128. package/build/ru-json.aa5cd123.chunk.js +1 -0
  129. package/build/runtime~main.a20d633b.js +2 -0
  130. package/build/sso-settings-page.b85ad080.chunk.js +41 -0
  131. package/build/upload-settings.ef64bbf9.chunk.js +84 -0
  132. package/build/upload.c5730dfa.chunk.js +33 -0
  133. package/build/users-advanced-settings-page.fce9908e.chunk.js +8 -0
  134. package/build/users-email-settings-page.343d0ad2.chunk.js +23 -0
  135. package/build/users-providers-settings-page.e5a9a3f1.chunk.js +99 -0
  136. package/build/users-roles-settings-page.66312f31.chunk.js +30 -0
  137. package/build/webhook-edit-page.73e51e64.chunk.js +75 -0
  138. package/build/webhook-list-page.1134f130.chunk.js +42 -0
  139. package/ee/admin/hooks/useSettingsMenu/utils/customAdminLinks.js +17 -0
  140. package/ee/admin/pages/SettingsPage/pages/AuditLogs/ListView/ComboboxFilter/index.js +41 -0
  141. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ListView/Modal/ActionBody.js +1 -3
  142. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ListView/Modal/ActionItem.js +0 -0
  143. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ListView/Modal/index.js +5 -1
  144. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ListView/PaginationFooter/index.js +0 -0
  145. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ListView/TableRows/index.js +1 -1
  146. package/ee/admin/pages/SettingsPage/pages/AuditLogs/ListView/hooks/useAuditLogsData.js +47 -0
  147. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ListView/hooks/useFormatTimeStamp.js +0 -0
  148. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ListView/index.js +35 -36
  149. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ListView/utils/getActionTypesDefaultMessages.js +10 -9
  150. package/ee/admin/pages/SettingsPage/pages/AuditLogs/ListView/utils/getDisplayedFilters.js +88 -0
  151. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ListView/utils/tableHeaders.js +0 -0
  152. package/{admin/src → ee/admin}/pages/SettingsPage/pages/AuditLogs/ProtectedListPage/index.js +1 -1
  153. package/ee/admin/pages/SettingsPage/pages/Roles/ListPage/index.js +4 -2
  154. package/ee/admin/pages/SettingsPage/{SingleSignOn → pages/SingleSignOn}/index.js +3 -3
  155. package/ee/admin/pages/SettingsPage/{SingleSignOn → pages/SingleSignOn}/utils/schema.js +0 -0
  156. package/ee/admin/pages/SettingsPage/utils/customRoutes.js +28 -16
  157. package/ee/server/bootstrap.js +2 -0
  158. package/ee/server/migrations/audit-logs-table.js +45 -0
  159. package/ee/server/register.js +2 -0
  160. package/ee/server/routes/index.js +94 -10
  161. package/ee/server/services/audit-logs.js +30 -2
  162. package/ee/server/services/passport/sso.js +13 -1
  163. package/ee/server/services/passport.js +1 -4
  164. package/package.json +27 -32
  165. package/server/controllers/admin.js +19 -2
  166. package/server/register.js +7 -7
  167. package/server/services/project-settings.js +10 -6
  168. package/server/services/user.js +3 -1
  169. package/server/validation/project-settings.js +19 -10
  170. package/strapi-server.js +1 -1
  171. package/admin/src/content-manager/components/InputJSON/FieldWrapper.js +0 -40
  172. package/admin/src/content-manager/components/InputJSON/Label.js +0 -35
  173. package/admin/src/content-manager/components/InputJSON/components.js +0 -36
  174. package/admin/src/content-manager/components/InputJSON/index.js +0 -223
  175. package/admin/src/content-manager/components/InputJSON/jsonlint.js +0 -680
  176. package/admin/src/core/store/createReducer.js +0 -5
  177. package/admin/src/core/utils/axiosInstance.js +0 -38
  178. package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/components/Form/index.js +0 -85
  179. package/build/2235.746d3cf7.chunk.js +0 -106
  180. package/build/2598.01c96bd5.chunk.js +0 -159
  181. package/build/2743.692b1f21.chunk.js +0 -42
  182. package/build/4318.87affaf2.chunk.js +0 -30
  183. package/build/4958.1979bbf5.chunk.js +0 -276
  184. package/build/5052.c2eacff2.chunk.js +0 -65
  185. package/build/7295.4e2dfbbb.chunk.js +0 -114
  186. package/build/805.da20168c.chunk.js +0 -138
  187. package/build/8633.6f546066.chunk.js +0 -1
  188. package/build/874.be41e4b3.chunk.js +0 -104
  189. package/build/9707.a07db355.chunk.js +0 -101
  190. package/build/Admin-authenticatedApp.9933974c.chunk.js +0 -75
  191. package/build/Admin_homePage.045bb0c8.chunk.js +0 -77
  192. package/build/Admin_marketplace.bf3ac090.chunk.js +0 -26
  193. package/build/Admin_pluginsPage.d2a9a619.chunk.js +0 -6
  194. package/build/Admin_profilePage.5e830ceb.chunk.js +0 -15
  195. package/build/Admin_settingsPage.53fa00a4.chunk.js +0 -178
  196. package/build/admin-app.8ed108ca.chunk.js +0 -112
  197. package/build/admin-audit-logs.68f833bf.chunk.js +0 -1
  198. package/build/admin-edit-roles-page.32bfe5ea.chunk.js +0 -1
  199. package/build/admin-edit-users.795f155c.chunk.js +0 -10
  200. package/build/admin-users.cbd9bcf7.chunk.js +0 -11
  201. package/build/api-tokens-list-page.a55e427c.chunk.js +0 -16
  202. package/build/codemirror-addon-closebrackets.71aa4bbd.chunk.js +0 -2
  203. package/build/codemirror-addon-lint-js.405f70fb.chunk.js +0 -1
  204. package/build/codemirror-addon-lint.8487ad3d.chunk.js +0 -1
  205. package/build/codemirror-addon-mark-selection.1928c849.chunk.js +0 -1
  206. package/build/codemirror-css.359a2a4b.chunk.js +0 -345
  207. package/build/codemirror-javacript.af237b68.chunk.js +0 -1
  208. package/build/codemirror-theme.2fe63a16.chunk.js +0 -33
  209. package/build/content-manager.ad929a94.chunk.js +0 -1174
  210. package/build/content-type-builder-list-view.3048854d.chunk.js +0 -198
  211. package/build/content-type-builder-translation-en-json.08e28f4e.chunk.js +0 -1
  212. package/build/content-type-builder.4edd1c22.chunk.js +0 -127
  213. package/build/email-settings-page.7c9e6c5e.chunk.js +0 -15
  214. package/build/en-json.d65a13ef.chunk.js +0 -1
  215. package/build/i18n-settings-page.fbccdf12.chunk.js +0 -1
  216. package/build/main.6bbf9950.js +0 -4417
  217. package/build/ru-json.3b411a39.chunk.js +0 -1
  218. package/build/runtime~main.c2bf62af.js +0 -2
  219. package/build/sso-settings-page.4031de9e.chunk.js +0 -41
  220. package/build/upload-settings.657790fd.chunk.js +0 -89
  221. package/build/upload.608a9856.chunk.js +0 -38
  222. package/build/users-advanced-settings-page.e3ab865f.chunk.js +0 -13
  223. package/build/users-email-settings-page.57adf9b7.chunk.js +0 -28
  224. package/build/users-providers-settings-page.7d1fb45c.chunk.js +0 -1
  225. package/build/users-roles-settings-page.ad28ab42.chunk.js +0 -30
  226. package/build/webhook-edit-page.1dd6d040.chunk.js +0 -75
  227. package/build/webhook-list-page.98afa3ea.chunk.js +0 -42
  228. package/ee/server/routes/features-routes.js +0 -66
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[2151],{29915:function(a){a.exports=JSON.parse('{"attribute.boolean":"Boolean","attribute.boolean.description":"Ya atau tidak, 1 atau 0, benar atau salah","attribute.component":"Komponen","attribute.component.description":"Grup dari bidang yang dapat diulang","attribute.date":"Tanggal","attribute.date.description":"Date picker dengan jam, menit dan detik","attribute.datetime":"Tanggal waktu","attribute.dynamiczone":"Zona dinamis","attribute.dynamiczone.description":"Ambil konten dinamis ketika edit kontent","attribute.email":"Email","attribute.email.description":"Bidang email dengan format validasi","attribute.enumeration":"Pencacahan","attribute.enumeration.description":"Daftar nilai, lalu pilih satu","attribute.json":"JSON","attribute.json.description":"Data dalam format JSON","attribute.media":"Media","attribute.media.description":"File seperti gambar, video, dll","attribute.null":" ","attribute.number":"Angka","attribute.number.description":"Angka (integer, pecahan, desimal)","attribute.password":"Kata sandi","attribute.password.description":"Kata sandi dengan enkripsi","attribute.relation":"Relasi","attribute.relation.description":"Mengacu pada Jenis Koleksi","attribute.richtext":"Rich teks","attribute.richtext.description":"Editor teks kaya dengan opsi pemformatan","attribute.text":"Teks","attribute.text.description":"Teks kecil atau panjang seperti judul atau deskripsi","attribute.time":"Waktu","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"Pengenal unik","button.attributes.add.another":"Tambahkan bidang lain","button.component.add":"Tambahkan komponen","button.component.create":"Buat komponen baru","button.model.create":"Buat jenis koleksi baru","button.single-types.create":"Buat tipe tunggal baru","component.repeatable":"(berulang)","components.componentSelect.no-component-available":"Anda telah menambahkan semua komponen Anda","components.componentSelect.no-component-available.with-search":"Tidak ada komponen yang cocok dengan pencarian Anda","components.componentSelect.value-component":"{number} komponen dipilih (ketik untuk mencari komponen)","components.componentSelect.value-components":"{number} komponen dipilih","configurations":"konfigurasi","contentType.collectionName.description":"Berguna jika nama Jenis Konten dan nama tabel Anda berbeda","contentType.collectionName.label":"Nama koleksi","contentType.displayName.label":"Nama tampilan","contentType.draftAndPublish.description":"Tulis versi draf dari setiap entri sebelum menerbitkannya","contentType.draftAndPublish.label":"Draf / sistem terbitkan","contentType.kind.change.warning":"Anda baru saja mengubah jenis tipe konten: API akan disetel ulang (rute, pengontrol, dan layanan akan ditimpa).","error.attributeName.reserved-name":"Nama ini tidak dapat digunakan dalam tipe konten Anda karena dapat merusak fungsi lainnya","error.contentTypeName.reserved-name":"Nama ini tidak dapat digunakan dalam proyek Anda karena dapat merusak fungsi lainnya","error.validation.enum-duplicate":"Nilai duplikat tidak diperbolehkan","error.validation.minSupMax":"Tidak bisa lebih unggul","error.validation.regex":"Pola ekspresi reguler tidak valid","error.validation.relation.targetAttribute-taken":"Nama ini ada di target","form.attribute.component.option.add":"Tambahkan komponen","form.attribute.component.option.create":"Buat komponen baru","form.attribute.component.option.create.description":"Sebuah komponen dibagikan ke seluruh tipe dan komponen, itu akan tersedia dan dapat diakses di mana saja.","form.attribute.component.option.repeatable":"Komponen yang dapat diulang","form.attribute.component.option.repeatable.description":"Terbaik untuk beberapa contoh (larik) bahan, tag meta, dll ..","form.attribute.component.option.reuse-existing":"Gunakan komponen yang ada","form.attribute.component.option.reuse-existing.description":"Gunakan kembali komponen yang sudah dibuat untuk menjaga data Anda tetap konsisten di seluruh tipe konten.","form.attribute.component.option.single":"Komponen tunggal","form.attribute.component.option.single.description":"Paling baik untuk mengelompokkan bidang seperti alamat lengkap, informasi utama, dll ...","form.attribute.item.customColumnName":"Nama kolom kustom","form.attribute.item.customColumnName.description":"Ini berguna untuk mengganti nama kolom database dalam format yang lebih komprehensif untuk respons API","form.attribute.item.defineRelation.fieldName":"Nama bidang","form.attribute.item.enumeration.graphql":"Nama pengganti untuk GraphQL","form.attribute.item.enumeration.graphql.description":"Memungkinkan Anda untuk mengganti nama default yang dibuat untuk GraphQL ","form.attribute.item.enumeration.placeholder":"Misal:\\npagi\\nsiang\\nsore","form.attribute.item.enumeration.rules":"Nilai (satu baris per nilai)","form.attribute.item.maximum":"Nilai maksimum","form.attribute.item.maximumLength":"Panjang maksimum","form.attribute.item.minimum":"Nilai minimum","form.attribute.item.minimumLength":"Panjang minimum","form.attribute.item.number.type":"Format angka","form.attribute.item.number.type.biginteger":"big integer (misal: 123456789)","form.attribute.item.number.type.decimal":"desimal (misal: 2.22)","form.attribute.item.number.type.integer":"integer (misal: 10)","form.attribute.item.privateField":"Bidang pribadi","form.attribute.item.privateField.description":"Bidang ini tidak akan ditampilkan di request API","form.attribute.item.requiredField":"Bidang wajib","form.attribute.item.requiredField.description":"Bidang ini wajib diisi untuk meneruskan data","form.attribute.item.text.regex":"Pola RegExp","form.attribute.item.text.regex.description":"Teks ekspresi reguler","form.attribute.item.uniqueField":"Bidang unik","form.attribute.item.uniqueField.description":"Anda tidak dapat membuat entri jika sudah ada entri dengan konten identik","form.attribute.media.allowed-types":"Pilih jenis media yang diizinkan","form.attribute.media.allowed-types.option-files":"File","form.attribute.media.allowed-types.option-images":"Gambar","form.attribute.media.allowed-types.option-videos":"Video","form.attribute.media.option.multiple":"Banyak media","form.attribute.media.option.multiple.description":"Paling baik untuk pengunduhan penggeser, komidi putar, atau banyak file","form.attribute.media.option.single":"Media tunggal","form.attribute.media.option.single.description":"Terbaik untuk avatar, gambar profil, atau sampul","form.attribute.settings.default":"Nilai default","form.attribute.text.option.long-text":"Teks panjang","form.attribute.text.option.long-text.description":"Terbaik untuk deskripsi, biografi. Pencarian yang tepat dinonaktifkan.","form.attribute.text.option.short-text":"Teks pendek","form.attribute.text.option.short-text.description":"Terbaik untuk judul, nama, tautan (URL). Ini juga memungkinkan pencarian yang tepat di lapangan.","form.button.add-components-to-dynamiczone":"Tambahkan komponen ke zona","form.button.add-field":"Tambahkan bidang lain","form.button.add-first-field-to-created-component":"Tambahkan bidang pertama ke komponen","form.button.add.field.to.collectionType":"Tambahkan bidang lain ke jenis koleksi ini","form.button.add.field.to.component":"Tambahkan bidang lain ke komponen ini","form.button.add.field.to.contentType":"Tambahkan bidang lain ke jenis konten ini","form.button.add.field.to.singleType":"Tambahkan bidang lain ke jenis tunggal ini","form.button.cancel":"Batal","form.button.collection-type.description":"Paling baik untuk berbagai contoh seperti artikel, produk, komentar, dll.","form.button.configure-component":"Konfigurasikan komponen","form.button.configure-view":"Konfigurasi tampilan","form.button.select-component":"Pilih sebuah komponen","form.button.single-type.description":"Terbaik untuk satu contoh seperti tentang kami, beranda, dll.","form.contentType.divider.draft-publish":"DRAF/TERBIT","from":"dari","modalForm.attribute.form.base.name.description":"Tidak ada spasi yang diperbolehkan untuk nama atribut","modalForm.attribute.form.base.name.placeholder":"Misalnya Siput, URL SEO, URL Kanonis","modalForm.attribute.target-field":"Bidang terlampir","modalForm.attributes.select-component":"Pilih komponen","modalForm.attributes.select-components":"Pilih komponen","modalForm.component.header-create":"Buat komponen","modalForm.components.create-component.category.label":"Pilih kategori atau masukkan nama untuk membuat yang baru","modalForm.components.icon.label":"Ikon","modalForm.editCategory.base.name.description":"Tidak ada spasi yang diperbolehkan untuk nama kategori","modalForm.header-edit":"Edit {name}","modalForm.header.categories":"Kategori","modalForm.singleType.header-create":"Buat jenis tunggal","modalForm.sub-header.addComponentToDynamicZone":"Tambahkan komponen baru ke zona dinamis","modalForm.sub-header.attribute.create":"Tambah bidang {type}","modalForm.sub-header.attribute.create.step":"Tambah komponen ({step}/2)","modalForm.sub-header.attribute.edit":"Edit {name}","modalForm.sub-header.chooseAttribute.collectionType":"Pilih bidang untuk jenis koleksi Anda","modalForm.sub-header.chooseAttribute.component":"Pilih bidang untuk komponen Anda","modalForm.sub-header.chooseAttribute.singleType":"Pilih bidang untuk tipe tunggal Anda","modelPage.attribute.relation-polymorphic":"Hubungan (polimorfik)","modelPage.attribute.relationWith":"Hubungan dengan","notification.info.autoreaload-disable":"Fitur autoReload diperlukan untuk menggunakan plugin ini. Mulai server Anda dengan `strapi develop`","notification.info.creating.notSaved":"Harap simpan pekerjaan Anda sebelum membuat jenis atau komponen koleksi baru","plugin.description.long":"Buat model struktur data API Anda. Buat bidang dan relasi baru hanya dalam satu menit. File secara otomatis dibuat dan diperbarui dalam proyek Anda.","plugin.description.short":"Buat model struktur data API Anda.","popUpForm.navContainer.advanced":"Pengaturan lanjut","popUpForm.navContainer.base":"Pengaturan dasar","popUpWarning.bodyMessage.cancel-modifications":"Anda yakin ingin membatalkan modifikasi Anda?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Anda yakin ingin membatalkan modifikasi Anda? Beberapa komponen telah dibuat atau dimodifikasi ...","popUpWarning.bodyMessage.category.delete":"Anda yakin ingin menghapus kategori ini? Semua komponen juga akan dihapus.","popUpWarning.bodyMessage.component.delete":"Anda yakin ingin menghapus komponen ini?","popUpWarning.bodyMessage.contentType.delete":"Anda yakin ingin menghapus jenis koleksi ini?","popUpWarning.draft-publish.button.confirm":"Ya, non-aktifkan","popUpWarning.draft-publish.message":"Jika Anda menonaktifkan sistem Draf / Terbitkan, draf Anda akan dihapus.","popUpWarning.draft-publish.second-message":"Anda yakin ingin menonaktifkannya?","prompt.unsaved":"Anda yakin ingin pergi? Semua modifikasi Anda akan hilang.","relation.attributeName.placeholder":"Misal: penulis, kategori, tag","relation.manyToMany":"memiliki dan menjadi milik banyak orang","relation.manyToOne":"memiliki banyak","relation.manyWay":"memiliki banyak","relation.oneToMany":"memiliki banyak orang","relation.oneToOne":"memiliki dan menjadi milik satu","relation.oneWay":"memiliki satu"}')}}]);
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[2151],{29915:function(a){a.exports=JSON.parse('{"attribute.boolean":"Boolean","attribute.boolean.description":"Ya atau tidak, 1 atau 0, benar atau salah","attribute.component":"Komponen","attribute.component.description":"Grup dari bidang yang dapat diulang","attribute.date":"Tanggal","attribute.date.description":"Date picker dengan jam, menit dan detik","attribute.datetime":"Tanggal waktu","attribute.dynamiczone":"Zona dinamis","attribute.dynamiczone.description":"Ambil konten dinamis ketika edit kontent","attribute.email":"Email","attribute.email.description":"Bidang email dengan format validasi","attribute.enumeration":"Pencacahan","attribute.enumeration.description":"Daftar nilai, lalu pilih satu","attribute.json":"JSON","attribute.json.description":"Data dalam format JSON","attribute.media":"Media","attribute.media.description":"File seperti gambar, video, dll","attribute.null":" ","attribute.number":"Angka","attribute.number.description":"Angka (integer, pecahan, desimal)","attribute.password":"Kata sandi","attribute.password.description":"Kata sandi dengan enkripsi","attribute.relation":"Relasi","attribute.relation.description":"Mengacu pada Jenis Koleksi","attribute.richtext":"Rich teks","attribute.richtext.description":"Editor teks kaya dengan opsi pemformatan","attribute.text":"Teks","attribute.text.description":"Teks kecil atau panjang seperti judul atau deskripsi","attribute.time":"Waktu","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"Pengenal unik","button.attributes.add.another":"Tambahkan bidang lain","button.component.add":"Tambahkan komponen","button.component.create":"Buat komponen baru","button.model.create":"Buat jenis koleksi baru","button.single-types.create":"Buat tipe tunggal baru","component.repeatable":"(berulang)","components.componentSelect.no-component-available":"Anda telah menambahkan semua komponen Anda","components.componentSelect.no-component-available.with-search":"Tidak ada komponen yang cocok dengan pencarian Anda","components.componentSelect.value-component":"{number} komponen dipilih (ketik untuk mencari komponen)","components.componentSelect.value-components":"{number} komponen dipilih","configurations":"konfigurasi","contentType.collectionName.description":"Berguna jika nama Jenis Konten dan nama tabel Anda berbeda","contentType.collectionName.label":"Nama koleksi","contentType.displayName.label":"Nama tampilan","contentType.draftAndPublish.description":"Tulis versi draf dari setiap entri sebelum menerbitkannya","contentType.draftAndPublish.label":"Draf / sistem terbitkan","contentType.kind.change.warning":"Anda baru saja mengubah jenis tipe konten: API akan disetel ulang (rute, pengontrol, dan layanan akan ditimpa).","error.attributeName.reserved-name":"Nama ini tidak dapat digunakan dalam tipe konten Anda karena dapat merusak fungsi lainnya","error.contentTypeName.reserved-name":"Nama ini tidak dapat digunakan dalam proyek Anda karena dapat merusak fungsi lainnya","error.validation.enum-duplicate":"Nilai duplikat tidak diperbolehkan","error.validation.minSupMax":"Tidak bisa lebih unggul","error.validation.regex":"Pola ekspresi reguler tidak valid","error.validation.relation.targetAttribute-taken":"Nama ini ada di target","form.attribute.component.option.add":"Tambahkan komponen","form.attribute.component.option.create":"Buat komponen baru","form.attribute.component.option.create.description":"Sebuah komponen dibagikan ke seluruh tipe dan komponen, itu akan tersedia dan dapat diakses di mana saja.","form.attribute.component.option.repeatable":"Komponen yang dapat diulang","form.attribute.component.option.repeatable.description":"Terbaik untuk beberapa contoh (larik) bahan, tag meta, dll ..","form.attribute.component.option.reuse-existing":"Gunakan komponen yang ada","form.attribute.component.option.reuse-existing.description":"Gunakan kembali komponen yang sudah dibuat untuk menjaga data Anda tetap konsisten di seluruh tipe konten.","form.attribute.component.option.single":"Komponen tunggal","form.attribute.component.option.single.description":"Paling baik untuk mengelompokkan bidang seperti alamat lengkap, informasi utama, dll ...","form.attribute.item.customColumnName":"Nama kolom kustom","form.attribute.item.customColumnName.description":"Ini berguna untuk mengganti nama kolom database dalam format yang lebih komprehensif untuk respons API","form.attribute.item.defineRelation.fieldName":"Nama bidang","form.attribute.item.enumeration.graphql":"Nama pengganti untuk GraphQL","form.attribute.item.enumeration.graphql.description":"Memungkinkan Anda untuk mengganti nama default yang dibuat untuk GraphQL ","form.attribute.item.enumeration.placeholder":"Misal:\\npagi\\nsiang\\nsore","form.attribute.item.enumeration.rules":"Nilai (satu baris per nilai)","form.attribute.item.maximum":"Nilai maksimum","form.attribute.item.maximumLength":"Panjang maksimum","form.attribute.item.minimum":"Nilai minimum","form.attribute.item.minimumLength":"Panjang minimum","form.attribute.item.number.type":"Format angka","form.attribute.item.number.type.biginteger":"big integer (misal: 123456789)","form.attribute.item.number.type.decimal":"desimal (misal: 2.22)","form.attribute.item.number.type.integer":"integer (misal: 10)","form.attribute.item.privateField":"Bidang pribadi","form.attribute.item.privateField.description":"Bidang ini tidak akan ditampilkan di request API","form.attribute.item.requiredField":"Bidang wajib","form.attribute.item.requiredField.description":"Bidang ini wajib diisi untuk meneruskan data","form.attribute.item.text.regex":"Pola RegExp","form.attribute.item.text.regex.description":"Teks ekspresi reguler","form.attribute.item.uniqueField":"Bidang unik","form.attribute.item.uniqueField.description":"Anda tidak dapat membuat entri jika sudah ada entri dengan konten identik","form.attribute.media.allowed-types":"Pilih jenis media yang diizinkan","form.attribute.media.allowed-types.option-files":"File","form.attribute.media.allowed-types.option-images":"Gambar","form.attribute.media.allowed-types.option-videos":"Video","form.attribute.media.option.multiple":"Banyak media","form.attribute.media.option.multiple.description":"Paling baik untuk pengunduhan penggeser, komidi putar, atau banyak file","form.attribute.media.option.single":"Media tunggal","form.attribute.media.option.single.description":"Terbaik untuk avatar, gambar profil, atau sampul","form.attribute.settings.default":"Nilai default","form.attribute.text.option.long-text":"Teks panjang","form.attribute.text.option.long-text.description":"Terbaik untuk deskripsi, biografi. Pencarian yang tepat dinonaktifkan.","form.attribute.text.option.short-text":"Teks pendek","form.attribute.text.option.short-text.description":"Terbaik untuk judul, nama, tautan (URL). Ini juga memungkinkan pencarian yang tepat di lapangan.","form.button.add-components-to-dynamiczone":"Tambahkan komponen ke zona","form.button.add-field":"Tambahkan bidang lain","form.button.add-first-field-to-created-component":"Tambahkan bidang pertama ke komponen","form.button.add.field.to.collectionType":"Tambahkan bidang lain ke jenis koleksi ini","form.button.add.field.to.component":"Tambahkan bidang lain ke komponen ini","form.button.add.field.to.contentType":"Tambahkan bidang lain ke jenis konten ini","form.button.add.field.to.singleType":"Tambahkan bidang lain ke jenis tunggal ini","form.button.cancel":"Batal","form.button.collection-type.description":"Paling baik untuk berbagai contoh seperti artikel, produk, komentar, dll.","form.button.configure-component":"Konfigurasikan komponen","form.button.configure-view":"Konfigurasi tampilan","form.button.select-component":"Pilih sebuah komponen","form.button.single-type.description":"Terbaik untuk satu contoh seperti tentang kami, beranda, dll.","from":"dari","modalForm.attribute.form.base.name.description":"Tidak ada spasi yang diperbolehkan untuk nama atribut","modalForm.attribute.form.base.name.placeholder":"Misalnya Siput, URL SEO, URL Kanonis","modalForm.attribute.target-field":"Bidang terlampir","modalForm.attributes.select-component":"Pilih komponen","modalForm.attributes.select-components":"Pilih komponen","modalForm.component.header-create":"Buat komponen","modalForm.components.create-component.category.label":"Pilih kategori atau masukkan nama untuk membuat yang baru","modalForm.components.icon.label":"Ikon","modalForm.editCategory.base.name.description":"Tidak ada spasi yang diperbolehkan untuk nama kategori","modalForm.header-edit":"Edit {name}","modalForm.header.categories":"Kategori","modalForm.singleType.header-create":"Buat jenis tunggal","modalForm.sub-header.addComponentToDynamicZone":"Tambahkan komponen baru ke zona dinamis","modalForm.sub-header.attribute.create":"Tambah bidang {type}","modalForm.sub-header.attribute.create.step":"Tambah komponen ({step}/2)","modalForm.sub-header.attribute.edit":"Edit {name}","modalForm.sub-header.chooseAttribute.collectionType":"Pilih bidang untuk jenis koleksi Anda","modalForm.sub-header.chooseAttribute.component":"Pilih bidang untuk komponen Anda","modalForm.sub-header.chooseAttribute.singleType":"Pilih bidang untuk tipe tunggal Anda","modelPage.attribute.relation-polymorphic":"Hubungan (polimorfik)","modelPage.attribute.relationWith":"Hubungan dengan","notification.info.autoreaload-disable":"Fitur autoReload diperlukan untuk menggunakan plugin ini. Mulai server Anda dengan `strapi develop`","notification.info.creating.notSaved":"Harap simpan pekerjaan Anda sebelum membuat jenis atau komponen koleksi baru","plugin.description.long":"Buat model struktur data API Anda. Buat bidang dan relasi baru hanya dalam satu menit. File secara otomatis dibuat dan diperbarui dalam proyek Anda.","plugin.description.short":"Buat model struktur data API Anda.","popUpForm.navContainer.advanced":"Pengaturan lanjut","popUpForm.navContainer.base":"Pengaturan dasar","popUpWarning.bodyMessage.cancel-modifications":"Anda yakin ingin membatalkan modifikasi Anda?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Anda yakin ingin membatalkan modifikasi Anda? Beberapa komponen telah dibuat atau dimodifikasi ...","popUpWarning.bodyMessage.category.delete":"Anda yakin ingin menghapus kategori ini? Semua komponen juga akan dihapus.","popUpWarning.bodyMessage.component.delete":"Anda yakin ingin menghapus komponen ini?","popUpWarning.bodyMessage.contentType.delete":"Anda yakin ingin menghapus jenis koleksi ini?","popUpWarning.draft-publish.button.confirm":"Ya, non-aktifkan","popUpWarning.draft-publish.message":"Jika Anda menonaktifkan sistem Draf / Terbitkan, draf Anda akan dihapus.","popUpWarning.draft-publish.second-message":"Anda yakin ingin menonaktifkannya?","prompt.unsaved":"Anda yakin ingin pergi? Semua modifikasi Anda akan hilang.","relation.attributeName.placeholder":"Misal: penulis, kategori, tag","relation.manyToMany":"memiliki dan menjadi milik banyak orang","relation.manyToOne":"memiliki banyak","relation.manyWay":"memiliki banyak","relation.oneToMany":"memiliki banyak orang","relation.oneToOne":"memiliki dan menjadi milik satu","relation.oneWay":"memiliki satu"}')}}]);
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[1023],{66345:function(e){e.exports=JSON.parse(`{"attribute.boolean":"Booleano","attribute.boolean.description":"S\xEC o no, 1 o 0, vero o falso","attribute.component":"Componente","attribute.component.description":"Gruppo di campi che puoi ripetere o riutilizzare","attribute.date":"Data","attribute.date.description":"Un selettore di date con ore, minuti e secondi","attribute.datetime":"Data e Ora","attribute.dynamiczone":"Zona dinamica","attribute.dynamiczone.description":"Scegli un componente dinamicamente durante la modifica del contenuto ","attribute.email":"Email","attribute.email.description":"Un campo Email con validazione del formato","attribute.enumeration":"Enumerazione","attribute.enumeration.description":"Scegli il valore da una lista precompilata","attribute.json":"JSON","attribute.json.description":"Dati in formato JSON","attribute.media":"Media","attribute.media.description":"File come immagini, video, ecc.","attribute.null":" ","attribute.number":"Numero","attribute.number.description":"Numeri (interi, float, decimali)","attribute.password":"Password","attribute.password.description":"Campo Password crittografato","attribute.relation":"Relazione","attribute.relation.description":"Per collegare una Collezione","attribute.richtext":"Testo formattato","attribute.richtext.description":"Un editor di testo con comandi per la formattazione","attribute.text":"Testo","attribute.text.description":"Testo semplice come titolo o descrizione","attribute.time":"Orario","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"Identificatore univoco","button.attributes.add.another":"Aggiungi altro campo","button.component.add":"Aggiungi componente","button.component.create":"Crea nuovo componente","button.model.create":"Crea nuova Collezione","button.single-types.create":"Crea nuova Entit\xE0 singola","component.repeatable":"(ripetibile)","components.componentSelect.no-component-available":"Hai gi\xE0 aggiunto tutti i componenti","components.componentSelect.no-component-available.with-search":"Nessun componente con questa chiave di ricerca","components.componentSelect.value-component":"{number} componenti selezionati (digita per cercare un componente)","components.componentSelect.value-components":"{number} componenti selezionati","configurations":"configurazioni","contentType.collectionName.description":"Utile quando il nome della Collezione differisce dal nome della tabella del DB","contentType.collectionName.label":"Nome della Collezione","contentType.displayName.label":"Nome visualizzato","contentType.draftAndPublish.description":"Scrivi una bozza dell'elemento prima di pubblicarlo","contentType.draftAndPublish.label":"Sistema Bozza/pubblicato","contentType.kind.change.warning":"Hai cambiato il genere di questo Tipo di Contenuto. Le API verranno ripristinate (route, controller e services verranno sovrascritti).","error.attributeName.reserved-name":"Questo nome non pu\xF2 essere utilizzato nel tuo Tipo di Contenuto perch\xE9 potrebbe danneggiare altre funzionalit\xE0","error.contentTypeName.reserved-name":"Questo nome non pu\xF2 essere utilizzato nel tuo progetto perch\xE9 potrebbe danneggiare altre funzionalit\xE0","error.validation.enum-duplicate":"Valori duplicati non ammessi","error.validation.minSupMax":"Non pu\xF2 essere maggiore","error.validation.regex":"Regex non valida","error.validation.relation.targetAttribute-taken":"Questo nome gi\xE0 esiste nella destinazione","form.attribute.component.option.add":"Aggiungi componente","form.attribute.component.option.create":"Crea nuovo componente","form.attribute.component.option.create.description":"I componenti sono condivisi tra Tipi e componenti, sono disponibili e accessibili da ovunque.","form.attribute.component.option.repeatable":"Componente ripetibile","form.attribute.component.option.repeatable.description":"Utile per istanze multiple (liste) come ingredienti, meta tag, ecc...","form.attribute.component.option.reuse-existing":"Usa componente esistente","form.attribute.component.option.reuse-existing.description":"Riutilizza un componente gi\xE0 creato per mantenere i dati consistenti tra i vari Tipi di Contenuto","form.attribute.component.option.single":"Componente singolo","form.attribute.component.option.single.description":"Utile per raggruppare campi correlati come quelli di un indirizzo","form.attribute.item.customColumnName":"Nome della colonna personalizzato","form.attribute.item.customColumnName.description":"Utile per rinominare le colonne del database e mantenere consistente il formato delle risposte API","form.attribute.item.defineRelation.fieldName":"Nome del campo","form.attribute.item.enumeration.graphql":"Override del nome GraphQL","form.attribute.item.enumeration.graphql.description":"Consente di ignorare l'impostazione predefinita del nome generato per GraphQL","form.attribute.item.enumeration.placeholder":"Es:\\nmattina\\nmezzogiorno\\nsera","form.attribute.item.enumeration.rules":"Valori (un valore per riga)","form.attribute.item.maximum":"Valore massimo","form.attribute.item.maximumLength":"Lunghezza massima","form.attribute.item.minimum":"Valore minimo","form.attribute.item.minimumLength":"Lunghezza minima","form.attribute.item.number.type":"Formato del numero","form.attribute.item.number.type.biginteger":"intero grande (es: 123456789)","form.attribute.item.number.type.decimal":"decimale (es: 2.22)","form.attribute.item.number.type.float":"float (es: 3.33333333)","form.attribute.item.number.type.integer":"intero (es: 10)","form.attribute.item.privateField":"Campo privato","form.attribute.item.privateField.description":"Questo campo non sar\xE0 presente nelle risposte API","form.attribute.item.requiredField":"Campo obbligatorio","form.attribute.item.requiredField.description":"Non sarai in grado di creare una voce se questo campo \xE8 vuoto","form.attribute.item.text.regex":"Schema RegExp","form.attribute.item.text.regex.description":"Il testo di una Espressione Regolare","form.attribute.item.uniqueField":"Campo univoco","form.attribute.item.uniqueField.description":"Non sarai in grado di creare una voce, se c'\xE8 una voce esistente con valore identico","form.attribute.media.allowed-types":"Seleziona i tipi di media permessi","form.attribute.media.allowed-types.option-files":"File","form.attribute.media.allowed-types.option-images":"Immagini","form.attribute.media.allowed-types.option-videos":"Video","form.attribute.media.option.multiple":"Media multipli","form.attribute.media.option.multiple.description":"Utile per slider, caroselli o download multipli","form.attribute.media.option.single":"Media singolo","form.attribute.media.option.single.description":"Utile per avatar, foto profilo o copertina","form.attribute.settings.default":"Valore di Default","form.attribute.text.option.long-text":"Testo lungo","form.attribute.text.option.long-text.description":"Utile per descrizioni o biografie. La ricerca esatta \xE8 disabilitata.","form.attribute.text.option.short-text":"Testo breve","form.attribute.text.option.short-text.description":"Utile per titoli, nomi, link (URL). Potrai eseguire una ricerca esatta sul campo.","form.button.add-components-to-dynamiczone":"Aggiungi componenti alla zona","form.button.add-field":"Aggiungi altro campo","form.button.add-first-field-to-created-component":"Aggiungi un primo campo al componente","form.button.add.field.to.collectionType":"Aggiungi un altro campo a questa Collezione","form.button.add.field.to.component":"Aggiungi un altro campo a questo componente","form.button.add.field.to.contentType":"Aggiungi un altro campo a questo Tipo di Contenuto","form.button.add.field.to.singleType":"Aggiungi un altro campo a questa Entit\xE0 singola","form.button.cancel":"Annulla","form.button.collection-type.description":"Utile per istanze multiple come articoli, prodotti, commenti, ecc...","form.button.configure-component":"Configura componente","form.button.configure-view":"Configura vista","form.button.select-component":"Seleziona un componente","form.button.single-type.description":"Indicato per entit\xE0 uniche come home page, chi siamo, ecc...","form.contentType.divider.draft-publish":"Draft/Publish","from":"da","modalForm.attribute.form.base.name.description":"Spazi non ammessi per il nome dell'attributo","modalForm.attribute.form.base.name.placeholder":"Es: Slug, URL SEO, URL Canonico","modalForm.attribute.target-field":"Campo collegato","modalForm.attributes.select-component":"Seleziona un componente","modalForm.attributes.select-components":"Seleziona i componenti","modalForm.component.header-create":"Crea un componente","modalForm.components.create-component.category.label":"Seleziona una categoria o inserisci un nome per crearne una nuova","modalForm.components.icon.label":"Icona","modalForm.editCategory.base.name.description":"Spazi non ammessi per il nome della categoria","modalForm.header-edit":"Modifica {name}","modalForm.header.categories":"Categorie","modalForm.singleType.header-create":"Crea una Entit\xE0 singola","modalForm.sub-header.addComponentToDynamicZone":"Aggiungi nuovo componente alla zona dinamica","modalForm.sub-header.attribute.create":"Aggiungi nuovo campo {type}","modalForm.sub-header.attribute.create.step":"Aggiungi nuovo componente ({step}/2)","modalForm.sub-header.attribute.edit":"Modifica {name}","modalForm.sub-header.chooseAttribute.collectionType":"Seleziona un campo per la tua Collezione","modalForm.sub-header.chooseAttribute.component":"Seleziona un campo per il tuo componente","modalForm.sub-header.chooseAttribute.singleType":"Seleziona un campo per la tua Entit\xE0 singola","modelPage.attribute.relation-polymorphic":"Relazione (polimorfica)","modelPage.attribute.relationWith":"Relazione con","notification.info.autoreaload-disable":"La funzionalit\xE0 autoReload \xE8 richiesta per usare questo plugin. Avvia il tuo server con \`strapi develop\`","notification.info.creating.notSaved":"Per favore, salva il tuo lavoro prima di creare nuovi Tipi di Contenuto o componenti","plugin.description.long":"Modella la struttura dei dati delle tue API. Crea nuovi campi e relazioni in maniera visuale. I file vengono automaticamente creati e aggiornati nel tuo progetto.","plugin.description.short":"Modella la struttura dei dati delle tue API.","popUpForm.navContainer.advanced":"Impostazioni avanzate","popUpForm.navContainer.base":"Impostazioni di base","popUpWarning.bodyMessage.cancel-modifications":"Sei sicuro di voler annullare le tue modifiche?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Sei sicuro di voler annullare le tue modifiche? Alcuni componenti sono stati creati o modificati...","popUpWarning.bodyMessage.category.delete":"Sei sicuro di voler eliminare questa categoria? Verranno cancellati anche tutti i suoi componenti.","popUpWarning.bodyMessage.component.delete":"Sei sicuro di voler eliminare questo componente?","popUpWarning.bodyMessage.contentType.delete":"Sei sicuro di voler eliminare questa Collezione?","popUpWarning.draft-publish.button.confirm":"S\xEC, disabilita","popUpWarning.draft-publish.message":"Se disabiliti il sistema Bozza/pubblicato, le tue bozze verranno eliminate.","popUpWarning.draft-publish.second-message":"Sei sicuro di volerlo disabilitare?","prompt.unsaved":"Sei sicuro di voler uscire? Tutte le modifiche verranno perdute.","relation.attributeName.placeholder":"Es: autore, categoria, tag","relation.manyToMany":"ha e appartiene a molti","relation.manyToOne":"ha molti","relation.manyWay":"ha molti","relation.oneToMany":"appartiene a molti","relation.oneToOne":"ha e appartiene a un","relation.oneWay":"ha un"}`)}}]);
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[1023],{66345:function(e){e.exports=JSON.parse(`{"attribute.boolean":"Booleano","attribute.boolean.description":"S\xEC o no, 1 o 0, vero o falso","attribute.component":"Componente","attribute.component.description":"Gruppo di campi che puoi ripetere o riutilizzare","attribute.date":"Data","attribute.date.description":"Un selettore di date con ore, minuti e secondi","attribute.datetime":"Data e Ora","attribute.dynamiczone":"Zona dinamica","attribute.dynamiczone.description":"Scegli un componente dinamicamente durante la modifica del contenuto ","attribute.email":"Email","attribute.email.description":"Un campo Email con validazione del formato","attribute.enumeration":"Enumerazione","attribute.enumeration.description":"Scegli il valore da una lista precompilata","attribute.json":"JSON","attribute.json.description":"Dati in formato JSON","attribute.media":"Media","attribute.media.description":"File come immagini, video, ecc.","attribute.null":" ","attribute.number":"Numero","attribute.number.description":"Numeri (interi, float, decimali)","attribute.password":"Password","attribute.password.description":"Campo Password crittografato","attribute.relation":"Relazione","attribute.relation.description":"Per collegare una Collezione","attribute.richtext":"Testo formattato","attribute.richtext.description":"Un editor di testo con comandi per la formattazione","attribute.text":"Testo","attribute.text.description":"Testo semplice come titolo o descrizione","attribute.time":"Orario","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"Identificatore univoco","button.attributes.add.another":"Aggiungi altro campo","button.component.add":"Aggiungi componente","button.component.create":"Crea nuovo componente","button.model.create":"Crea nuova Collezione","button.single-types.create":"Crea nuova Entit\xE0 singola","component.repeatable":"(ripetibile)","components.componentSelect.no-component-available":"Hai gi\xE0 aggiunto tutti i componenti","components.componentSelect.no-component-available.with-search":"Nessun componente con questa chiave di ricerca","components.componentSelect.value-component":"{number} componenti selezionati (digita per cercare un componente)","components.componentSelect.value-components":"{number} componenti selezionati","configurations":"configurazioni","contentType.collectionName.description":"Utile quando il nome della Collezione differisce dal nome della tabella del DB","contentType.collectionName.label":"Nome della Collezione","contentType.displayName.label":"Nome visualizzato","contentType.draftAndPublish.description":"Scrivi una bozza dell'elemento prima di pubblicarlo","contentType.draftAndPublish.label":"Sistema Bozza/pubblicato","contentType.kind.change.warning":"Hai cambiato il genere di questo Tipo di Contenuto. Le API verranno ripristinate (route, controller e services verranno sovrascritti).","error.attributeName.reserved-name":"Questo nome non pu\xF2 essere utilizzato nel tuo Tipo di Contenuto perch\xE9 potrebbe danneggiare altre funzionalit\xE0","error.contentTypeName.reserved-name":"Questo nome non pu\xF2 essere utilizzato nel tuo progetto perch\xE9 potrebbe danneggiare altre funzionalit\xE0","error.validation.enum-duplicate":"Valori duplicati non ammessi","error.validation.minSupMax":"Non pu\xF2 essere maggiore","error.validation.regex":"Regex non valida","error.validation.relation.targetAttribute-taken":"Questo nome gi\xE0 esiste nella destinazione","form.attribute.component.option.add":"Aggiungi componente","form.attribute.component.option.create":"Crea nuovo componente","form.attribute.component.option.create.description":"I componenti sono condivisi tra Tipi e componenti, sono disponibili e accessibili da ovunque.","form.attribute.component.option.repeatable":"Componente ripetibile","form.attribute.component.option.repeatable.description":"Utile per istanze multiple (liste) come ingredienti, meta tag, ecc...","form.attribute.component.option.reuse-existing":"Usa componente esistente","form.attribute.component.option.reuse-existing.description":"Riutilizza un componente gi\xE0 creato per mantenere i dati consistenti tra i vari Tipi di Contenuto","form.attribute.component.option.single":"Componente singolo","form.attribute.component.option.single.description":"Utile per raggruppare campi correlati come quelli di un indirizzo","form.attribute.item.customColumnName":"Nome della colonna personalizzato","form.attribute.item.customColumnName.description":"Utile per rinominare le colonne del database e mantenere consistente il formato delle risposte API","form.attribute.item.defineRelation.fieldName":"Nome del campo","form.attribute.item.enumeration.graphql":"Override del nome GraphQL","form.attribute.item.enumeration.graphql.description":"Consente di ignorare l'impostazione predefinita del nome generato per GraphQL","form.attribute.item.enumeration.placeholder":"Es:\\nmattina\\nmezzogiorno\\nsera","form.attribute.item.enumeration.rules":"Valori (un valore per riga)","form.attribute.item.maximum":"Valore massimo","form.attribute.item.maximumLength":"Lunghezza massima","form.attribute.item.minimum":"Valore minimo","form.attribute.item.minimumLength":"Lunghezza minima","form.attribute.item.number.type":"Formato del numero","form.attribute.item.number.type.biginteger":"intero grande (es: 123456789)","form.attribute.item.number.type.decimal":"decimale (es: 2.22)","form.attribute.item.number.type.float":"float (es: 3.33333333)","form.attribute.item.number.type.integer":"intero (es: 10)","form.attribute.item.privateField":"Campo privato","form.attribute.item.privateField.description":"Questo campo non sar\xE0 presente nelle risposte API","form.attribute.item.requiredField":"Campo obbligatorio","form.attribute.item.requiredField.description":"Non sarai in grado di creare una voce se questo campo \xE8 vuoto","form.attribute.item.text.regex":"Schema RegExp","form.attribute.item.text.regex.description":"Il testo di una Espressione Regolare","form.attribute.item.uniqueField":"Campo univoco","form.attribute.item.uniqueField.description":"Non sarai in grado di creare una voce, se c'\xE8 una voce esistente con valore identico","form.attribute.media.allowed-types":"Seleziona i tipi di media permessi","form.attribute.media.allowed-types.option-files":"File","form.attribute.media.allowed-types.option-images":"Immagini","form.attribute.media.allowed-types.option-videos":"Video","form.attribute.media.option.multiple":"Media multipli","form.attribute.media.option.multiple.description":"Utile per slider, caroselli o download multipli","form.attribute.media.option.single":"Media singolo","form.attribute.media.option.single.description":"Utile per avatar, foto profilo o copertina","form.attribute.settings.default":"Valore di Default","form.attribute.text.option.long-text":"Testo lungo","form.attribute.text.option.long-text.description":"Utile per descrizioni o biografie. La ricerca esatta \xE8 disabilitata.","form.attribute.text.option.short-text":"Testo breve","form.attribute.text.option.short-text.description":"Utile per titoli, nomi, link (URL). Potrai eseguire una ricerca esatta sul campo.","form.button.add-components-to-dynamiczone":"Aggiungi componenti alla zona","form.button.add-field":"Aggiungi altro campo","form.button.add-first-field-to-created-component":"Aggiungi un primo campo al componente","form.button.add.field.to.collectionType":"Aggiungi un altro campo a questa Collezione","form.button.add.field.to.component":"Aggiungi un altro campo a questo componente","form.button.add.field.to.contentType":"Aggiungi un altro campo a questo Tipo di Contenuto","form.button.add.field.to.singleType":"Aggiungi un altro campo a questa Entit\xE0 singola","form.button.cancel":"Annulla","form.button.collection-type.description":"Utile per istanze multiple come articoli, prodotti, commenti, ecc...","form.button.configure-component":"Configura componente","form.button.configure-view":"Configura vista","form.button.select-component":"Seleziona un componente","form.button.single-type.description":"Indicato per entit\xE0 uniche come home page, chi siamo, ecc...","from":"da","modalForm.attribute.form.base.name.description":"Spazi non ammessi per il nome dell'attributo","modalForm.attribute.form.base.name.placeholder":"Es: Slug, URL SEO, URL Canonico","modalForm.attribute.target-field":"Campo collegato","modalForm.attributes.select-component":"Seleziona un componente","modalForm.attributes.select-components":"Seleziona i componenti","modalForm.component.header-create":"Crea un componente","modalForm.components.create-component.category.label":"Seleziona una categoria o inserisci un nome per crearne una nuova","modalForm.components.icon.label":"Icona","modalForm.editCategory.base.name.description":"Spazi non ammessi per il nome della categoria","modalForm.header-edit":"Modifica {name}","modalForm.header.categories":"Categorie","modalForm.singleType.header-create":"Crea una Entit\xE0 singola","modalForm.sub-header.addComponentToDynamicZone":"Aggiungi nuovo componente alla zona dinamica","modalForm.sub-header.attribute.create":"Aggiungi nuovo campo {type}","modalForm.sub-header.attribute.create.step":"Aggiungi nuovo componente ({step}/2)","modalForm.sub-header.attribute.edit":"Modifica {name}","modalForm.sub-header.chooseAttribute.collectionType":"Seleziona un campo per la tua Collezione","modalForm.sub-header.chooseAttribute.component":"Seleziona un campo per il tuo componente","modalForm.sub-header.chooseAttribute.singleType":"Seleziona un campo per la tua Entit\xE0 singola","modelPage.attribute.relation-polymorphic":"Relazione (polimorfica)","modelPage.attribute.relationWith":"Relazione con","notification.info.autoreaload-disable":"La funzionalit\xE0 autoReload \xE8 richiesta per usare questo plugin. Avvia il tuo server con \`strapi develop\`","notification.info.creating.notSaved":"Per favore, salva il tuo lavoro prima di creare nuovi Tipi di Contenuto o componenti","plugin.description.long":"Modella la struttura dei dati delle tue API. Crea nuovi campi e relazioni in maniera visuale. I file vengono automaticamente creati e aggiornati nel tuo progetto.","plugin.description.short":"Modella la struttura dei dati delle tue API.","popUpForm.navContainer.advanced":"Impostazioni avanzate","popUpForm.navContainer.base":"Impostazioni di base","popUpWarning.bodyMessage.cancel-modifications":"Sei sicuro di voler annullare le tue modifiche?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Sei sicuro di voler annullare le tue modifiche? Alcuni componenti sono stati creati o modificati...","popUpWarning.bodyMessage.category.delete":"Sei sicuro di voler eliminare questa categoria? Verranno cancellati anche tutti i suoi componenti.","popUpWarning.bodyMessage.component.delete":"Sei sicuro di voler eliminare questo componente?","popUpWarning.bodyMessage.contentType.delete":"Sei sicuro di voler eliminare questa Collezione?","popUpWarning.draft-publish.button.confirm":"S\xEC, disabilita","popUpWarning.draft-publish.message":"Se disabiliti il sistema Bozza/pubblicato, le tue bozze verranno eliminate.","popUpWarning.draft-publish.second-message":"Sei sicuro di volerlo disabilitare?","prompt.unsaved":"Sei sicuro di voler uscire? Tutte le modifiche verranno perdute.","relation.attributeName.placeholder":"Es: autore, categoria, tag","relation.manyToMany":"ha e appartiene a molti","relation.manyToOne":"ha molti","relation.manyWay":"ha molti","relation.oneToMany":"appartiene a molti","relation.oneToOne":"ha e appartiene a un","relation.oneWay":"ha un"}`)}}]);
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[2567],{92329:function(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."}')}}]);
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[2567],{92329:function(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.","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."}')}}]);
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3948],{68630:function(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"}')}}]);
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3948],{68630:function(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","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"}')}}]);
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[5906],{52805:function(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"}')}}]);
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[5906],{52805:function(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","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"}')}}]);
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[7186],{72379:function(t){t.exports=JSON.parse('{"attribute.boolean":"Boolean","attribute.boolean.description":"\u0414\u0430 \u0438\u043B\u0438 \u043D\u0435\u0442, 1 \u0438\u043B\u0438 0, \u0418\u0441\u0442\u0438\u043D\u0430 \u0438\u043B\u0438 \u041B\u043E\u0436\u044C","attribute.component":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","attribute.component.description":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 - \u0433\u0440\u0443\u043F\u043F\u0430 \u043F\u043E\u043B\u0435\u0439, \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0445 \u0434\u043B\u044F \u043F\u043E\u0432\u0442\u043E\u0440\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E\u0433\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F","attribute.date":"Date","attribute.date.description":"\u042D\u043B\u0435\u043C\u0435\u043D\u0442 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0434\u0430\u0442\u043E\u0439 \u0438 \u0432\u0440\u0435\u043C\u0435\u043D\u0435\u043C","attribute.datetime":"Datetime","attribute.dynamiczone":"Dynamic zone","attribute.dynamiczone.description":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0441 \u0434\u0438\u043D\u0430\u043C\u0438\u0447\u0435\u0441\u043A\u0438\u043C \u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435\u043C","attribute.email":"Email","attribute.email.description":"\u041F\u043E\u043B\u0435 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u044B \u0441 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u043E\u0439 \u0444\u043E\u0440\u043C\u0430\u0442\u0430","attribute.enumeration":"Enumeration","attribute.enumeration.description":"\u041F\u0435\u0440\u0435\u0447\u0435\u043D\u044C \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0439, \u0432\u044B\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F \u043E\u0434\u043D\u043E","attribute.json":"JSON","attribute.json.description":"\u0414\u0430\u043D\u043D\u044B\u0435 \u0432 \u0444\u043E\u0440\u043C\u0430\u0442\u0435 JSON","attribute.media":"Media","attribute.media.description":"\u0410\u0443\u0434\u0438\u043E- \u0432\u0438\u0434\u0435\u043E- \u0438 \u043F\u0440\u043E\u0447\u0438\u0435 \u043C\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043B\u044B","attribute.null":" ","attribute.number":"Number","attribute.number.description":"\u0427\u0438\u0441\u043B\u0430 (integer, float, decimal)","attribute.password":"Password","attribute.password.description":"\u041F\u043E\u043B\u0435 \u043F\u0430\u0440\u043E\u043B\u044F \u0441 \u0448\u0438\u0444\u0440\u043E\u0432\u0430\u043D\u0438\u0435\u043C","attribute.relation":"Relation","attribute.relation.description":"\u0421\u0441\u044B\u043B\u043A\u0430 \u043D\u0430 \u043A\u0430\u043A\u043E\u0439-\u043B\u0438\u0431\u043E \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","attribute.richtext":"Rich text","attribute.richtext.description":"\u042D\u043B\u0435\u043C\u0435\u043D\u0442 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0442\u0435\u043A\u0441\u0442\u0430 \u0441 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435\u043C","attribute.text":"Text","attribute.text.description":"\u041C\u0430\u043B\u0435\u043D\u044C\u043A\u0438\u0439 \u0438\u043B\u0438 \u0434\u043B\u0438\u043D\u043D\u044B\u0439 \u0442\u0435\u043A\u0441\u0442, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440 \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A \u0438\u043B\u0438 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435","attribute.time":"Time","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"\u0423\u043D\u0438\u043A\u0430\u043B\u044C\u043D\u044B\u0439 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440","button.attributes.add.another":"\u0415\u0449\u0451 \u043F\u043E\u043B\u0435","button.component.add":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","button.component.create":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","button.model.create":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","button.single-types.create":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u0435\u0434\u0438\u043D\u0438\u0447\u043D\u044B\u0439 \u0442\u0438\u043F","component.repeatable":"(\u043F\u043E\u0432\u0442\u043E\u0440\u044F\u0435\u0442\u0441\u044F)","components.componentSelect.no-component-available":"\u0412\u044B \u0443\u0436\u0435 \u0434\u043E\u0431\u0430\u0432\u0438\u043B\u0438 \u0432\u0441\u0435 \u0438\u043C\u0435\u044E\u0449\u0438\u0435\u0441\u044F \u0433\u0440\u0443\u043F\u043F\u044B \u043F\u043E\u043B\u0435\u0439","components.componentSelect.no-component-available.with-search":"\u041F\u043E\u0434\u0445\u043E\u0434\u044F\u0449\u0438\u0445 \u0433\u0440\u0443\u043F\u043F \u043F\u043E\u043B\u0435\u0439 \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E","components.componentSelect.value-component":"\u0412\u044B\u0431\u0440\u0430\u043D\u043E \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u043E\u0432 - {number} (\u043D\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u043B\u044F \u043F\u043E\u0438\u0441\u043A\u0430)","components.componentSelect.value-components":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u043E\u0432 \u0432\u044B\u0431\u0440\u0430\u043D\u043E - {number}","configurations":"\u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438","contentType.collectionName.description":"\u041F\u043E\u043B\u0435\u0437\u043D\u043E, \u043A\u043E\u0433\u0434\u0430 \u0438\u043C\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430 \u0438 \u0438\u043C\u044F \u0432\u0430\u0448\u0435\u0439 \u0442\u0430\u0431\u043B\u0438\u0446\u044B \u0440\u0430\u0437\u043B\u0438\u0447\u0430\u044E\u0442\u0441\u044F","contentType.collectionName.label":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u0438","contentType.displayName.label":"\u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u043C\u043E\u0435 \u0438\u043C\u044F","contentType.draftAndPublish.description":"\u041D\u0430\u043F\u0438\u0448\u0438\u0442\u0435 \u0447\u0435\u0440\u043D\u043E\u0432\u0443\u044E \u0432\u0435\u0440\u0441\u0438\u044E \u043A\u0430\u0436\u0434\u043E\u0439 \u0437\u0430\u043F\u0438\u0441\u0438 \u043F\u0435\u0440\u0435\u0434 \u043F\u0443\u0431\u043B\u0438\u043A\u0430\u0446\u0438\u0435\u0439","contentType.draftAndPublish.label":"\u0421\u0438\u0441\u0442\u0435\u043C\u0430 \u0447\u0435\u0440\u043D\u043E\u0432\u0438\u043A\u043E\u0432/\u043F\u0443\u0431\u043B\u0438\u043A\u0430\u0446\u0438\u0439","contentType.kind.change.warning":"\u0412\u044B \u0442\u043E\u043B\u044C\u043A\u043E \u0447\u0442\u043E \u0438\u0437\u043C\u0435\u043D\u0438\u043B\u0438 \u0442\u0438\u043F \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430: API \u0431\u0443\u0434\u0435\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D (\u043C\u0430\u0440\u0448\u0440\u0443\u0442\u044B, \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043B\u0435\u0440\u044B \u0438 \u0441\u0435\u0440\u0432\u0438\u0441\u044B \u0431\u0443\u0434\u0443\u0442 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0438\u0441\u0430\u043D\u044B).","error.attributeName.reserved-name":"\u042D\u0442\u043E \u0438\u043C\u044F \u043D\u0435\u043B\u044C\u0437\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0432 \u0432\u0430\u0448\u0435\u043C \u0442\u0438\u043F\u0435 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430, \u0442\u0430\u043A \u043A\u0430\u043A \u044D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u043D\u0430\u0440\u0443\u0448\u0438\u0442\u044C \u0434\u0440\u0443\u0433\u0438\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u0438.","error.contentTypeName.reserved-name":"\u042D\u0442\u043E \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u0437\u0430\u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u0438 \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u043E \u0432 \u043F\u0440\u043E\u0435\u043A\u0442\u0435","error.validation.enum-duplicate":"\u041F\u043E\u0432\u0442\u043E\u0440\u044F\u044E\u0449\u0438\u0435\u0441\u044F \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F \u043D\u0435 \u0434\u043E\u043F\u0443\u0441\u043A\u0430\u044E\u0442\u0441\u044F","error.validation.enum-empty-string":"\u041D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u043F\u0443\u0441\u0442\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u043E\u0439","error.validation.minSupMax":"\u041D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0432\u044B\u0445\u043E\u0434\u0438\u0442\u044C \u0437\u0430 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F","error.validation.regex":"\u0428\u0430\u0431\u043B\u043E\u043D \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0433\u043E \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u0435\u043D","error.validation.relation.targetAttribute-taken":"\u042D\u0442\u043E \u0438\u043C\u044F \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u0446\u0435\u043B\u0435\u0432\u043E\u043C \u043E\u0431\u044A\u0435\u043A\u0442\u0435","form.attribute.component.option.add":"\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","form.attribute.component.option.create":"\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u043D\u043E\u0432\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","form.attribute.component.option.create.description":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0432 \u0440\u0430\u0437\u043D\u044B\u0445 \u0442\u0438\u043F\u0430\u0445 \u0438 \u0433\u0440\u0443\u043F\u043F\u0430\u0445 \u0438 \u0431\u0443\u0434\u0435\u0442 \u0434\u043E\u0441\u0442\u0443\u043F\u0435\u043D \u043E\u0442\u043E\u0432\u0441\u044E\u0434\u0443","form.attribute.component.option.repeatable":"\u041F\u043E\u0432\u0442\u043E\u0440\u044F\u044E\u0449\u0438\u0439\u0441\u044F \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.attribute.component.option.repeatable.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u043C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0445 \u0432\u0445\u043E\u0436\u0434\u0435\u043D\u0438\u0439 (\u043C\u0430\u0441\u0441\u0438\u0432\u043E\u0432) \u0438\u043D\u0433\u0440\u0435\u0434\u0438\u0435\u043D\u0442\u043E\u0432, \u043C\u0435\u0442\u0430-\u0442\u0435\u0433\u043E\u0432 \u0438 \u0442.\u0434.","form.attribute.component.option.reuse-existing":"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0439 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.attribute.component.option.reuse-existing.description":"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u0441\u043E\u0437\u0434\u0430\u043D\u043D\u044B\u0439 \u0440\u0430\u043D\u0435\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442, \u0447\u0442\u043E\u0431\u044B \u043E\u0431\u0435\u0441\u043F\u0435\u0447\u0438\u0442\u044C \u0441\u043E\u0433\u043B\u0430\u0441\u043E\u0432\u0430\u043D\u043D\u043E\u0441\u0442\u044C \u0434\u0430\u043D\u043D\u044B\u0445 \u0432 \u0440\u0430\u0437\u043D\u044B\u0445 \u0442\u0438\u043F\u0430\u0445 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430.","form.attribute.component.option.single":"\u041E\u0434\u0438\u043D\u043E\u0447\u043D\u044B\u0439 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.attribute.component.option.single.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u0433\u0440\u0443\u043F\u043F\u0438\u0440\u043E\u0432\u043A\u0438 \u043F\u043E\u043B\u0435\u0439, \u0442\u0430\u043A\u0438\u0445 \u043A\u0430\u043A \u043F\u043E\u043B\u043D\u044B\u0439 \u0430\u0434\u0440\u0435\u0441, \u043E\u0441\u043D\u043E\u0432\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u0438 \u0442.\u0434.","form.attribute.item.customColumnName":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u044F \u0441\u0442\u043E\u043B\u0431\u0446\u043E\u0432","form.attribute.item.customColumnName.description":"\u041C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u043F\u043E\u043B\u0435\u0437\u043D\u043E \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u0442\u044C \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u044F \u0441\u0442\u043E\u043B\u0431\u0446\u043E\u0432 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0447\u0438\u0442\u0430\u0435\u043C\u044B\u0445 \u043E\u0442\u0432\u0435\u0442\u043E\u0432 API.","form.attribute.item.defineRelation.fieldName":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u043E\u043B\u044F","form.attribute.item.enumeration.graphql":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u043E\u043B\u044F \u0432 GraphQL","form.attribute.item.enumeration.graphql.description":"\u041F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u043F\u0435\u0440\u0435\u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0438\u0442\u044C \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u043E\u043B\u044F \u0432 GraphQL, \u0441\u0433\u0435\u043D\u0435\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E","form.attribute.item.enumeration.placeholder":"\u041D\u0430\u043F\u0440\u0438\u043C\u0435\u0440:\\n\u0443\u0442\u0440\u043E\\n\u043F\u043E\u043B\u0434\u0435\u043D\u044C\\n\u0432\u0435\u0447\u0435\u0440","form.attribute.item.enumeration.rules":"\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u044F (\u043E\u0434\u043D\u0430 \u043B\u0438\u043D\u0438\u044F \u043D\u0430 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435)","form.attribute.item.maximum":"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435","form.attribute.item.maximumLength":"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0430\u044F \u0434\u043B\u0438\u043D\u0430","form.attribute.item.minimum":"\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435","form.attribute.item.minimumLength":"\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u0430\u044F \u0434\u043B\u0438\u043D\u0430","form.attribute.item.number.type":"\u0427\u0438\u0441\u043B\u043E\u0432\u043E\u0439 \u0444\u043E\u0440\u043C\u0430\u0442","form.attribute.item.number.type.biginteger":"\u0411\u043E\u043B\u044C\u0448\u043E\u0435 \u0446\u0435\u043B\u043E\u0435 (ex: 123456789)","form.attribute.item.number.type.decimal":"\u0414\u0435\u0441\u044F\u0442\u0438\u0447\u043D\u043E\u0435 (ex: 2.22)","form.attribute.item.number.type.float":"\u0421 \u043F\u043B\u0430\u0432\u0430\u044E\u0449\u0435\u0439 \u0442\u043E\u0447\u043A\u043E\u0439 (ex: 3.33333333)","form.attribute.item.number.type.integer":"\u0426\u0435\u043B\u043E\u0435 (ex: 10)","form.attribute.item.privateField":"\u0417\u0430\u043A\u0440\u044B\u0442\u043E\u0435 \u043F\u043E\u043B\u0435","form.attribute.item.privateField.description":"\u042D\u0442\u043E \u043F\u043E\u043B\u0435 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0442\u044C\u0441\u044F \u0432 \u043E\u0442\u0432\u0435\u0442\u0435 API","form.attribute.item.requiredField":"\u041E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E\u0435 \u043F\u043E\u043B\u0435","form.attribute.item.requiredField.description":"\u0412\u044B \u043D\u0435 \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u044C, \u0435\u0441\u043B\u0438 \u044D\u0442\u043E \u043F\u043E\u043B\u0435 \u043D\u0435 \u0437\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u043E","form.attribute.item.text.regex":"\u0428\u0430\u0431\u043B\u043E\u043D \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0433\u043E \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u044F","form.attribute.item.text.regex.description":"\u0422\u0435\u043A\u0441\u0442 \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0433\u043E \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u044F","form.attribute.item.uniqueField":"\u0423\u043D\u0438\u043A\u0430\u043B\u044C\u043D\u043E\u0435 \u043F\u043E\u043B\u0435","form.attribute.item.uniqueField.description":"\u0412\u044B \u043D\u0435 \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u044C, \u0435\u0441\u043B\u0438 \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0437\u0430\u043F\u0438\u0441\u044C \u0441 \u0442\u0430\u043A\u0438\u043C \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435\u043C","form.attribute.media.allowed-types":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u043D\u044B\u0435 \u0442\u0438\u043F\u044B \u043C\u0435\u0434\u0438\u0430","form.attribute.media.allowed-types.option-files":"\u0424\u0430\u0439\u043B\u044B","form.attribute.media.allowed-types.option-images":"\u0418\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F","form.attribute.media.allowed-types.option-videos":"\u0412\u0438\u0434\u0435\u043E","form.attribute.media.option.multiple":"\u041C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0435 \u043C\u0435\u0434\u0438\u0430","form.attribute.media.option.multiple.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u0441\u043B\u0430\u0439\u0434\u0435\u0440\u043E\u0432 \u0438 \u043A\u0430\u0440\u0443\u0441\u0435\u043B\u0435\u0439","form.attribute.media.option.single":"\u041E\u0434\u0438\u043D\u043E\u0447\u043D\u043E\u0435 \u043C\u0435\u0434\u0438\u0430","form.attribute.media.option.single.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u0430\u0432\u0430\u0442\u0430\u0440\u043E\u0432, \u043A\u0430\u0440\u0442\u0438\u043D\u043E\u043A \u043F\u0440\u043E\u0444\u0438\u043B\u044F \u0438 \u043F\u0440.","form.attribute.settings.default":"\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435","form.attribute.text.option.long-text":"\u0411\u043E\u043B\u044C\u0448\u043E\u0439 \u0442\u0435\u043A\u0441\u0442","form.attribute.text.option.long-text.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u044F, \u0431\u0438\u043E\u0433\u0440\u0430\u0444\u0438\u0438... (\u043D\u0435 \u0443\u0447\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u043F\u043E\u0438\u0441\u043A\u0435)","form.attribute.text.option.short-text":"\u041A\u043E\u0440\u043E\u0442\u043A\u0438\u0439 \u0442\u0435\u043A\u0441\u0442","form.attribute.text.option.short-text.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0439, \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043A\u043E\u0432, \u0441\u0441\u044B\u043B\u043E\u043A... (\u0443\u0447\u0430\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u043F\u043E\u0438\u0441\u043A\u0435)","form.button.add-components-to-dynamiczone":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0432 \u0437\u043E\u043D\u0443","form.button.add-field":"\u0415\u0449\u0435 \u043F\u043E\u043B\u0435","form.button.add-first-field-to-created-component":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0435\u0440\u0432\u043E\u0435 \u043F\u043E\u043B\u0435 \u0432 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.add.field.to.collectionType":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u043A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u044E","form.button.add.field.to.component":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.add.field.to.contentType":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","form.button.add.field.to.singleType":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u0442\u0438\u043F","form.button.cancel":"\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C","form.button.collection-type.description":"\u041B\u0443\u0447\u0448\u0435 \u0432\u0441\u0435\u0433\u043E \u043F\u043E\u0434\u0445\u043E\u0434\u0438\u0442 \u0434\u043B\u044F \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u0438\u0445 \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u043E\u0432, \u0442\u0430\u043A\u0438\u0445 \u043A\u0430\u043A \u0441\u0442\u0430\u0442\u044C\u0438, \u0442\u043E\u0432\u0430\u0440\u044B, \u043A\u043E\u043C\u043C\u0435\u043D\u0442\u0430\u0440\u0438\u0438 \u0438 \u0442.\u0434.","form.button.configure-component":"\u043D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.configure-view":"\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435","form.button.select-component":"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.single-type.description":"\u041B\u0443\u0447\u0448\u0435 \u0432\u0441\u0435\u0433\u043E \u043F\u043E\u0434\u0445\u043E\u0434\u0438\u0442 \u0434\u043B\u044F \u043E\u0434\u043D\u043E\u0433\u043E \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u0430, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440, \u043E \u043D\u0430\u0441, \u0434\u043E\u043C\u0430\u0448\u043D\u044F\u044F \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0438 \u0442.\u0434.","form.contentType.divider.draft-publish":"\u0427\u0415\u0420\u041D\u041E\u0412\u0418\u041A/\u041F\u0423\u0411\u041B\u0418\u041A\u0410\u0426\u0418\u042F","from":"\u0438\u0437","modalForm.attribute.form.base.name.description":"\u041F\u0440\u043E\u0431\u0435\u043B\u044B \u0432 \u0438\u043C\u0435\u043D\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B","modalForm.attribute.form.base.name.placeholder":"e.g. Slug, SEO URL, Canonical URL","modalForm.attribute.target-field":"\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u043F\u043E\u043B\u044F","modalForm.attributes.select-component":"\u0412\u044B\u0431\u043E\u0440 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","modalForm.attributes.select-components":"\u0412\u044B\u0431\u043E\u0440 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u043E\u0432","modalForm.component.header-create":"\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","modalForm.components.create-component.category.label":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044E \u0438\u043B\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043C\u044F \u043D\u043E\u0432\u043E\u0439","modalForm.components.icon.label":"\u0418\u043A\u043E\u043D\u043A\u0430","modalForm.editCategory.base.name.description":"\u041F\u0440\u043E\u0431\u0435\u043B\u044B \u0432 \u0438\u043C\u0435\u043D\u0438 \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0438 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B","modalForm.header-edit":"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 {name}","modalForm.header.categories":"\u041A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0438","modalForm.singleType.header-create":"\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u043E\u0434\u0438\u043D\u043E\u0447\u043D\u043E\u0433\u043E \u0442\u0438\u043F\u0430","modalForm.sub-header.addComponentToDynamicZone":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 \u0432 \u0434\u0438\u043D\u0430\u043C\u0438\u0447\u0435\u0441\u043A\u0443\u044E \u0437\u043E\u043D\u0443","modalForm.sub-header.attribute.create":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043D\u043E\u0432\u043E\u0435 \u043F\u043E\u043B\u0435 \u0442\u0438\u043F\u0430 {type}","modalForm.sub-header.attribute.create.step":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 ({step}/2)","modalForm.sub-header.attribute.edit":"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0435 {name}","modalForm.sub-header.chooseAttribute.collectionType":"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u0438\u043C\u044F \u043F\u043E\u043B\u044F \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","modalForm.sub-header.chooseAttribute.component":"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u0438\u043C\u044F \u043F\u043E\u043B\u044F \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","modalForm.sub-header.chooseAttribute.singleType":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u043F\u043E\u043B\u0435 \u0434\u043B\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u043E\u0442\u0434\u0435\u043B\u044C\u043D\u043E\u0433\u043E \u0442\u0438\u043F\u0430","modelPage.attribute.relation-polymorphic":"\u0421\u0432\u044F\u0437\u044C (\u043F\u043E\u043B\u0438\u043C\u043E\u0440\u0444\u043D\u0430\u044F)","modelPage.attribute.relationWith":"\u0421\u0432\u044F\u0437\u044C \u0441","notification.info.autoreaload-disable":"\u0414\u043B\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F \u044D\u0442\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u0444\u0443\u043D\u043A\u0446\u0438\u044F \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u043E\u0439 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438. \u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u0432\u043E\u0439 \u0441\u0435\u0440\u0432\u0435\u0440 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E `strapi develop`","notification.info.creating.notSaved":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0441\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0435\u0434 \u0441\u043E\u0437\u0434\u0430\u043D\u0438\u0435\u043C \u043D\u043E\u0432\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430 \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430 ","plugin.description.long":"\u041C\u043E\u0434\u0435\u043B\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0443 \u0434\u0430\u043D\u043D\u044B\u0445 \u0432\u0430\u0448\u0435\u0433\u043E API. \u0421\u043E\u0437\u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u043D\u043E\u0432\u044B\u0435 \u043F\u043E\u043B\u044F \u0438 \u0441\u0432\u044F\u0437\u0438 \u0432\u0441\u0435\u0433\u043E \u0437\u0430 \u043C\u0438\u043D\u0443\u0442\u0443. \u0424\u0430\u0439\u043B\u044B \u0432 \u0432\u0430\u0448\u0435\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u0435 \u0441\u043E\u0437\u0434\u0430\u044E\u0442\u0441\u044F \u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u044F\u044E\u0442\u0441\u044F \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438.","plugin.description.short":"\u041C\u043E\u0434\u0435\u043B\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0443 \u0434\u0430\u043D\u043D\u044B\u0445 \u0432\u0430\u0448\u0435\u0433\u043E API.","popUpForm.navContainer.advanced":"\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u043D\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","popUpForm.navContainer.base":"\u0411\u0430\u0437\u043E\u0432\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","popUpWarning.bodyMessage.cancel-modifications":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0434\u0435\u043B\u0430\u043D\u043D\u044B\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F? \u041D\u0435\u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0431\u044B\u043B\u0438 \u0441\u043E\u0437\u0434\u0430\u043D\u044B \u0438\u043B\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u044B...","popUpWarning.bodyMessage.category.delete":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044E? \u0412\u0441\u0435 \u0432\u0445\u043E\u0434\u044F\u0449\u0438\u0435 \u0432 \u043D\u0435\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0431\u0443\u0434\u0443\u0442 \u0442\u0430\u043A\u0436\u0435 \u0443\u0434\u0430\u043B\u0435\u043D\u044B.","popUpWarning.bodyMessage.component.delete":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442?","popUpWarning.bodyMessage.contentType.delete":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430?","popUpWarning.draft-publish.button.confirm":"\u0414\u0430, \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C","popUpWarning.draft-publish.message":"\u0415\u0441\u043B\u0438 \u0432\u044B \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0447\u0435\u0440\u043D\u043E\u0432\u0438\u043A\u043E\u0432/\u043F\u0443\u0431\u043B\u0438\u043A\u0430\u0446\u0438\u0439, \u0432\u0430\u0448\u0438 \u0447\u0435\u0440\u043D\u043E\u0432\u0438\u043A\u0438 \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B.","popUpWarning.draft-publish.second-message":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0435\u0433\u043E?","prompt.unsaved":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0432\u044B\u0439\u0442\u0438? \u0412\u0441\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0431\u0443\u0434\u0443\u0442 \u043F\u043E\u0442\u0435\u0440\u044F\u043D\u044B.","relation.attributeName.placeholder":"\u041F\u0440\u0438\u043C\u0435\u0440: \u0430\u0432\u0442\u043E\u0440, \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044F, \u0442\u0435\u0433","relation.manyToMany":"\u0438\u043C\u0435\u0435\u0442 \u0438 \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0438\u0442 \u043C\u043D\u043E\u0433\u0438\u043C","relation.manyToOne":"\u0438\u043C\u0435\u0435\u0442 \u043C\u043D\u043E\u0433\u043E","relation.manyWay":"\u0438\u043C\u0435\u0435\u0442 \u043C\u043D\u043E\u0433\u043E","relation.oneToMany":"\u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0438\u0442 \u043C\u043D\u043E\u0433\u0438\u043C","relation.oneToOne":"\u0438\u043C\u0435\u0435\u0442 \u043E\u0434\u0438\u043D \u0438 \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0438\u0442 \u043E\u0434\u043D\u043E\u043C\u0443","relation.oneWay":"\u0438\u043C\u0435\u0435\u0442 \u043E\u0434\u0438\u043D"}')}}]);
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[7186],{72379:function(t){t.exports=JSON.parse('{"attribute.boolean":"Boolean","attribute.boolean.description":"\u0414\u0430 \u0438\u043B\u0438 \u043D\u0435\u0442, 1 \u0438\u043B\u0438 0, \u0418\u0441\u0442\u0438\u043D\u0430 \u0438\u043B\u0438 \u041B\u043E\u0436\u044C","attribute.component":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","attribute.component.description":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 - \u0433\u0440\u0443\u043F\u043F\u0430 \u043F\u043E\u043B\u0435\u0439, \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0445 \u0434\u043B\u044F \u043F\u043E\u0432\u0442\u043E\u0440\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E\u0433\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F","attribute.date":"Date","attribute.date.description":"\u042D\u043B\u0435\u043C\u0435\u043D\u0442 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0434\u0430\u0442\u043E\u0439 \u0438 \u0432\u0440\u0435\u043C\u0435\u043D\u0435\u043C","attribute.datetime":"Datetime","attribute.dynamiczone":"Dynamic zone","attribute.dynamiczone.description":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0441 \u0434\u0438\u043D\u0430\u043C\u0438\u0447\u0435\u0441\u043A\u0438\u043C \u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435\u043C","attribute.email":"Email","attribute.email.description":"\u041F\u043E\u043B\u0435 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u044B \u0441 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u043E\u0439 \u0444\u043E\u0440\u043C\u0430\u0442\u0430","attribute.enumeration":"Enumeration","attribute.enumeration.description":"\u041F\u0435\u0440\u0435\u0447\u0435\u043D\u044C \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0439, \u0432\u044B\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F \u043E\u0434\u043D\u043E","attribute.json":"JSON","attribute.json.description":"\u0414\u0430\u043D\u043D\u044B\u0435 \u0432 \u0444\u043E\u0440\u043C\u0430\u0442\u0435 JSON","attribute.media":"Media","attribute.media.description":"\u0410\u0443\u0434\u0438\u043E- \u0432\u0438\u0434\u0435\u043E- \u0438 \u043F\u0440\u043E\u0447\u0438\u0435 \u043C\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043B\u044B","attribute.null":" ","attribute.number":"Number","attribute.number.description":"\u0427\u0438\u0441\u043B\u0430 (integer, float, decimal)","attribute.password":"Password","attribute.password.description":"\u041F\u043E\u043B\u0435 \u043F\u0430\u0440\u043E\u043B\u044F \u0441 \u0448\u0438\u0444\u0440\u043E\u0432\u0430\u043D\u0438\u0435\u043C","attribute.relation":"Relation","attribute.relation.description":"\u0421\u0441\u044B\u043B\u043A\u0430 \u043D\u0430 \u043A\u0430\u043A\u043E\u0439-\u043B\u0438\u0431\u043E \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","attribute.richtext":"Rich text","attribute.richtext.description":"\u042D\u043B\u0435\u043C\u0435\u043D\u0442 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0442\u0435\u043A\u0441\u0442\u0430 \u0441 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435\u043C","attribute.text":"Text","attribute.text.description":"\u041C\u0430\u043B\u0435\u043D\u044C\u043A\u0438\u0439 \u0438\u043B\u0438 \u0434\u043B\u0438\u043D\u043D\u044B\u0439 \u0442\u0435\u043A\u0441\u0442, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440 \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A \u0438\u043B\u0438 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435","attribute.time":"Time","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"\u0423\u043D\u0438\u043A\u0430\u043B\u044C\u043D\u044B\u0439 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440","button.attributes.add.another":"\u0415\u0449\u0451 \u043F\u043E\u043B\u0435","button.component.add":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","button.component.create":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","button.model.create":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","button.single-types.create":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u0435\u0434\u0438\u043D\u0438\u0447\u043D\u044B\u0439 \u0442\u0438\u043F","component.repeatable":"(\u043F\u043E\u0432\u0442\u043E\u0440\u044F\u0435\u0442\u0441\u044F)","components.componentSelect.no-component-available":"\u0412\u044B \u0443\u0436\u0435 \u0434\u043E\u0431\u0430\u0432\u0438\u043B\u0438 \u0432\u0441\u0435 \u0438\u043C\u0435\u044E\u0449\u0438\u0435\u0441\u044F \u0433\u0440\u0443\u043F\u043F\u044B \u043F\u043E\u043B\u0435\u0439","components.componentSelect.no-component-available.with-search":"\u041F\u043E\u0434\u0445\u043E\u0434\u044F\u0449\u0438\u0445 \u0433\u0440\u0443\u043F\u043F \u043F\u043E\u043B\u0435\u0439 \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E","components.componentSelect.value-component":"\u0412\u044B\u0431\u0440\u0430\u043D\u043E \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u043E\u0432 - {number} (\u043D\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u043B\u044F \u043F\u043E\u0438\u0441\u043A\u0430)","components.componentSelect.value-components":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u043E\u0432 \u0432\u044B\u0431\u0440\u0430\u043D\u043E - {number}","configurations":"\u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438","contentType.collectionName.description":"\u041F\u043E\u043B\u0435\u0437\u043D\u043E, \u043A\u043E\u0433\u0434\u0430 \u0438\u043C\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430 \u0438 \u0438\u043C\u044F \u0432\u0430\u0448\u0435\u0439 \u0442\u0430\u0431\u043B\u0438\u0446\u044B \u0440\u0430\u0437\u043B\u0438\u0447\u0430\u044E\u0442\u0441\u044F","contentType.collectionName.label":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u0438","contentType.displayName.label":"\u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u043C\u043E\u0435 \u0438\u043C\u044F","contentType.draftAndPublish.description":"\u041D\u0430\u043F\u0438\u0448\u0438\u0442\u0435 \u0447\u0435\u0440\u043D\u043E\u0432\u0443\u044E \u0432\u0435\u0440\u0441\u0438\u044E \u043A\u0430\u0436\u0434\u043E\u0439 \u0437\u0430\u043F\u0438\u0441\u0438 \u043F\u0435\u0440\u0435\u0434 \u043F\u0443\u0431\u043B\u0438\u043A\u0430\u0446\u0438\u0435\u0439","contentType.draftAndPublish.label":"\u0421\u0438\u0441\u0442\u0435\u043C\u0430 \u0447\u0435\u0440\u043D\u043E\u0432\u0438\u043A\u043E\u0432/\u043F\u0443\u0431\u043B\u0438\u043A\u0430\u0446\u0438\u0439","contentType.kind.change.warning":"\u0412\u044B \u0442\u043E\u043B\u044C\u043A\u043E \u0447\u0442\u043E \u0438\u0437\u043C\u0435\u043D\u0438\u043B\u0438 \u0442\u0438\u043F \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430: API \u0431\u0443\u0434\u0435\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D (\u043C\u0430\u0440\u0448\u0440\u0443\u0442\u044B, \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043B\u0435\u0440\u044B \u0438 \u0441\u0435\u0440\u0432\u0438\u0441\u044B \u0431\u0443\u0434\u0443\u0442 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0438\u0441\u0430\u043D\u044B).","error.attributeName.reserved-name":"\u042D\u0442\u043E \u0438\u043C\u044F \u043D\u0435\u043B\u044C\u0437\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0432 \u0432\u0430\u0448\u0435\u043C \u0442\u0438\u043F\u0435 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430, \u0442\u0430\u043A \u043A\u0430\u043A \u044D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u043D\u0430\u0440\u0443\u0448\u0438\u0442\u044C \u0434\u0440\u0443\u0433\u0438\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u0438.","error.contentTypeName.reserved-name":"\u042D\u0442\u043E \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u0437\u0430\u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u0438 \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u043E \u0432 \u043F\u0440\u043E\u0435\u043A\u0442\u0435","error.validation.enum-duplicate":"\u041F\u043E\u0432\u0442\u043E\u0440\u044F\u044E\u0449\u0438\u0435\u0441\u044F \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F \u043D\u0435 \u0434\u043E\u043F\u0443\u0441\u043A\u0430\u044E\u0442\u0441\u044F","error.validation.enum-empty-string":"\u041D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u043F\u0443\u0441\u0442\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u043E\u0439","error.validation.minSupMax":"\u041D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0432\u044B\u0445\u043E\u0434\u0438\u0442\u044C \u0437\u0430 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F","error.validation.regex":"\u0428\u0430\u0431\u043B\u043E\u043D \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0433\u043E \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u0435\u043D","error.validation.relation.targetAttribute-taken":"\u042D\u0442\u043E \u0438\u043C\u044F \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u0446\u0435\u043B\u0435\u0432\u043E\u043C \u043E\u0431\u044A\u0435\u043A\u0442\u0435","form.attribute.component.option.add":"\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","form.attribute.component.option.create":"\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u043D\u043E\u0432\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","form.attribute.component.option.create.description":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0432 \u0440\u0430\u0437\u043D\u044B\u0445 \u0442\u0438\u043F\u0430\u0445 \u0438 \u0433\u0440\u0443\u043F\u043F\u0430\u0445 \u0438 \u0431\u0443\u0434\u0435\u0442 \u0434\u043E\u0441\u0442\u0443\u043F\u0435\u043D \u043E\u0442\u043E\u0432\u0441\u044E\u0434\u0443","form.attribute.component.option.repeatable":"\u041F\u043E\u0432\u0442\u043E\u0440\u044F\u044E\u0449\u0438\u0439\u0441\u044F \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.attribute.component.option.repeatable.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u043C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0445 \u0432\u0445\u043E\u0436\u0434\u0435\u043D\u0438\u0439 (\u043C\u0430\u0441\u0441\u0438\u0432\u043E\u0432) \u0438\u043D\u0433\u0440\u0435\u0434\u0438\u0435\u043D\u0442\u043E\u0432, \u043C\u0435\u0442\u0430-\u0442\u0435\u0433\u043E\u0432 \u0438 \u0442.\u0434.","form.attribute.component.option.reuse-existing":"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0439 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.attribute.component.option.reuse-existing.description":"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u0441\u043E\u0437\u0434\u0430\u043D\u043D\u044B\u0439 \u0440\u0430\u043D\u0435\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442, \u0447\u0442\u043E\u0431\u044B \u043E\u0431\u0435\u0441\u043F\u0435\u0447\u0438\u0442\u044C \u0441\u043E\u0433\u043B\u0430\u0441\u043E\u0432\u0430\u043D\u043D\u043E\u0441\u0442\u044C \u0434\u0430\u043D\u043D\u044B\u0445 \u0432 \u0440\u0430\u0437\u043D\u044B\u0445 \u0442\u0438\u043F\u0430\u0445 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430.","form.attribute.component.option.single":"\u041E\u0434\u0438\u043D\u043E\u0447\u043D\u044B\u0439 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.attribute.component.option.single.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u0433\u0440\u0443\u043F\u043F\u0438\u0440\u043E\u0432\u043A\u0438 \u043F\u043E\u043B\u0435\u0439, \u0442\u0430\u043A\u0438\u0445 \u043A\u0430\u043A \u043F\u043E\u043B\u043D\u044B\u0439 \u0430\u0434\u0440\u0435\u0441, \u043E\u0441\u043D\u043E\u0432\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u0438 \u0442.\u0434.","form.attribute.item.customColumnName":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u044F \u0441\u0442\u043E\u043B\u0431\u0446\u043E\u0432","form.attribute.item.customColumnName.description":"\u041C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u043F\u043E\u043B\u0435\u0437\u043D\u043E \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u0442\u044C \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u044F \u0441\u0442\u043E\u043B\u0431\u0446\u043E\u0432 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0447\u0438\u0442\u0430\u0435\u043C\u044B\u0445 \u043E\u0442\u0432\u0435\u0442\u043E\u0432 API.","form.attribute.item.defineRelation.fieldName":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u043E\u043B\u044F","form.attribute.item.enumeration.graphql":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u043E\u043B\u044F \u0432 GraphQL","form.attribute.item.enumeration.graphql.description":"\u041F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u043F\u0435\u0440\u0435\u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0438\u0442\u044C \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u043E\u043B\u044F \u0432 GraphQL, \u0441\u0433\u0435\u043D\u0435\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E","form.attribute.item.enumeration.placeholder":"\u041D\u0430\u043F\u0440\u0438\u043C\u0435\u0440:\\n\u0443\u0442\u0440\u043E\\n\u043F\u043E\u043B\u0434\u0435\u043D\u044C\\n\u0432\u0435\u0447\u0435\u0440","form.attribute.item.enumeration.rules":"\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u044F (\u043E\u0434\u043D\u0430 \u043B\u0438\u043D\u0438\u044F \u043D\u0430 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435)","form.attribute.item.maximum":"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435","form.attribute.item.maximumLength":"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0430\u044F \u0434\u043B\u0438\u043D\u0430","form.attribute.item.minimum":"\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435","form.attribute.item.minimumLength":"\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u0430\u044F \u0434\u043B\u0438\u043D\u0430","form.attribute.item.number.type":"\u0427\u0438\u0441\u043B\u043E\u0432\u043E\u0439 \u0444\u043E\u0440\u043C\u0430\u0442","form.attribute.item.number.type.biginteger":"\u0411\u043E\u043B\u044C\u0448\u043E\u0435 \u0446\u0435\u043B\u043E\u0435 (ex: 123456789)","form.attribute.item.number.type.decimal":"\u0414\u0435\u0441\u044F\u0442\u0438\u0447\u043D\u043E\u0435 (ex: 2.22)","form.attribute.item.number.type.float":"\u0421 \u043F\u043B\u0430\u0432\u0430\u044E\u0449\u0435\u0439 \u0442\u043E\u0447\u043A\u043E\u0439 (ex: 3.33333333)","form.attribute.item.number.type.integer":"\u0426\u0435\u043B\u043E\u0435 (ex: 10)","form.attribute.item.privateField":"\u0417\u0430\u043A\u0440\u044B\u0442\u043E\u0435 \u043F\u043E\u043B\u0435","form.attribute.item.privateField.description":"\u042D\u0442\u043E \u043F\u043E\u043B\u0435 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0442\u044C\u0441\u044F \u0432 \u043E\u0442\u0432\u0435\u0442\u0435 API","form.attribute.item.requiredField":"\u041E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E\u0435 \u043F\u043E\u043B\u0435","form.attribute.item.requiredField.description":"\u0412\u044B \u043D\u0435 \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u044C, \u0435\u0441\u043B\u0438 \u044D\u0442\u043E \u043F\u043E\u043B\u0435 \u043D\u0435 \u0437\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u043E","form.attribute.item.text.regex":"\u0428\u0430\u0431\u043B\u043E\u043D \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0433\u043E \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u044F","form.attribute.item.text.regex.description":"\u0422\u0435\u043A\u0441\u0442 \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0433\u043E \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u044F","form.attribute.item.uniqueField":"\u0423\u043D\u0438\u043A\u0430\u043B\u044C\u043D\u043E\u0435 \u043F\u043E\u043B\u0435","form.attribute.item.uniqueField.description":"\u0412\u044B \u043D\u0435 \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u044C, \u0435\u0441\u043B\u0438 \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0437\u0430\u043F\u0438\u0441\u044C \u0441 \u0442\u0430\u043A\u0438\u043C \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435\u043C","form.attribute.media.allowed-types":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u043D\u044B\u0435 \u0442\u0438\u043F\u044B \u043C\u0435\u0434\u0438\u0430","form.attribute.media.allowed-types.option-files":"\u0424\u0430\u0439\u043B\u044B","form.attribute.media.allowed-types.option-images":"\u0418\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F","form.attribute.media.allowed-types.option-videos":"\u0412\u0438\u0434\u0435\u043E","form.attribute.media.option.multiple":"\u041C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0435 \u043C\u0435\u0434\u0438\u0430","form.attribute.media.option.multiple.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u0441\u043B\u0430\u0439\u0434\u0435\u0440\u043E\u0432 \u0438 \u043A\u0430\u0440\u0443\u0441\u0435\u043B\u0435\u0439","form.attribute.media.option.single":"\u041E\u0434\u0438\u043D\u043E\u0447\u043D\u043E\u0435 \u043C\u0435\u0434\u0438\u0430","form.attribute.media.option.single.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u0430\u0432\u0430\u0442\u0430\u0440\u043E\u0432, \u043A\u0430\u0440\u0442\u0438\u043D\u043E\u043A \u043F\u0440\u043E\u0444\u0438\u043B\u044F \u0438 \u043F\u0440.","form.attribute.settings.default":"\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435","form.attribute.text.option.long-text":"\u0411\u043E\u043B\u044C\u0448\u043E\u0439 \u0442\u0435\u043A\u0441\u0442","form.attribute.text.option.long-text.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u044F, \u0431\u0438\u043E\u0433\u0440\u0430\u0444\u0438\u0438... (\u043D\u0435 \u0443\u0447\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u043F\u043E\u0438\u0441\u043A\u0435)","form.attribute.text.option.short-text":"\u041A\u043E\u0440\u043E\u0442\u043A\u0438\u0439 \u0442\u0435\u043A\u0441\u0442","form.attribute.text.option.short-text.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0439, \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043A\u043E\u0432, \u0441\u0441\u044B\u043B\u043E\u043A... (\u0443\u0447\u0430\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u043F\u043E\u0438\u0441\u043A\u0435)","form.button.add-components-to-dynamiczone":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0432 \u0437\u043E\u043D\u0443","form.button.add-field":"\u0415\u0449\u0435 \u043F\u043E\u043B\u0435","form.button.add-first-field-to-created-component":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0435\u0440\u0432\u043E\u0435 \u043F\u043E\u043B\u0435 \u0432 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.add.field.to.collectionType":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u043A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u044E","form.button.add.field.to.component":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.add.field.to.contentType":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","form.button.add.field.to.singleType":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u0442\u0438\u043F","form.button.cancel":"\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C","form.button.collection-type.description":"\u041B\u0443\u0447\u0448\u0435 \u0432\u0441\u0435\u0433\u043E \u043F\u043E\u0434\u0445\u043E\u0434\u0438\u0442 \u0434\u043B\u044F \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u0438\u0445 \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u043E\u0432, \u0442\u0430\u043A\u0438\u0445 \u043A\u0430\u043A \u0441\u0442\u0430\u0442\u044C\u0438, \u0442\u043E\u0432\u0430\u0440\u044B, \u043A\u043E\u043C\u043C\u0435\u043D\u0442\u0430\u0440\u0438\u0438 \u0438 \u0442.\u0434.","form.button.configure-component":"\u043D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.configure-view":"\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435","form.button.select-component":"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.single-type.description":"\u041B\u0443\u0447\u0448\u0435 \u0432\u0441\u0435\u0433\u043E \u043F\u043E\u0434\u0445\u043E\u0434\u0438\u0442 \u0434\u043B\u044F \u043E\u0434\u043D\u043E\u0433\u043E \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u0430, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440, \u043E \u043D\u0430\u0441, \u0434\u043E\u043C\u0430\u0448\u043D\u044F\u044F \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0438 \u0442.\u0434.","from":"\u0438\u0437","modalForm.attribute.form.base.name.description":"\u041F\u0440\u043E\u0431\u0435\u043B\u044B \u0432 \u0438\u043C\u0435\u043D\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B","modalForm.attribute.form.base.name.placeholder":"e.g. Slug, SEO URL, Canonical URL","modalForm.attribute.target-field":"\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u043F\u043E\u043B\u044F","modalForm.attributes.select-component":"\u0412\u044B\u0431\u043E\u0440 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","modalForm.attributes.select-components":"\u0412\u044B\u0431\u043E\u0440 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u043E\u0432","modalForm.component.header-create":"\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","modalForm.components.create-component.category.label":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044E \u0438\u043B\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043C\u044F \u043D\u043E\u0432\u043E\u0439","modalForm.components.icon.label":"\u0418\u043A\u043E\u043D\u043A\u0430","modalForm.editCategory.base.name.description":"\u041F\u0440\u043E\u0431\u0435\u043B\u044B \u0432 \u0438\u043C\u0435\u043D\u0438 \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0438 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B","modalForm.header-edit":"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 {name}","modalForm.header.categories":"\u041A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0438","modalForm.singleType.header-create":"\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u043E\u0434\u0438\u043D\u043E\u0447\u043D\u043E\u0433\u043E \u0442\u0438\u043F\u0430","modalForm.sub-header.addComponentToDynamicZone":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 \u0432 \u0434\u0438\u043D\u0430\u043C\u0438\u0447\u0435\u0441\u043A\u0443\u044E \u0437\u043E\u043D\u0443","modalForm.sub-header.attribute.create":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043D\u043E\u0432\u043E\u0435 \u043F\u043E\u043B\u0435 \u0442\u0438\u043F\u0430 {type}","modalForm.sub-header.attribute.create.step":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 ({step}/2)","modalForm.sub-header.attribute.edit":"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0435 {name}","modalForm.sub-header.chooseAttribute.collectionType":"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u0438\u043C\u044F \u043F\u043E\u043B\u044F \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","modalForm.sub-header.chooseAttribute.component":"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u0438\u043C\u044F \u043F\u043E\u043B\u044F \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","modalForm.sub-header.chooseAttribute.singleType":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u043F\u043E\u043B\u0435 \u0434\u043B\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u043E\u0442\u0434\u0435\u043B\u044C\u043D\u043E\u0433\u043E \u0442\u0438\u043F\u0430","modelPage.attribute.relation-polymorphic":"\u0421\u0432\u044F\u0437\u044C (\u043F\u043E\u043B\u0438\u043C\u043E\u0440\u0444\u043D\u0430\u044F)","modelPage.attribute.relationWith":"\u0421\u0432\u044F\u0437\u044C \u0441","notification.info.autoreaload-disable":"\u0414\u043B\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F \u044D\u0442\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u0444\u0443\u043D\u043A\u0446\u0438\u044F \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u043E\u0439 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438. \u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u0432\u043E\u0439 \u0441\u0435\u0440\u0432\u0435\u0440 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E `strapi develop`","notification.info.creating.notSaved":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0441\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0435\u0434 \u0441\u043E\u0437\u0434\u0430\u043D\u0438\u0435\u043C \u043D\u043E\u0432\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430 \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430 ","plugin.description.long":"\u041C\u043E\u0434\u0435\u043B\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0443 \u0434\u0430\u043D\u043D\u044B\u0445 \u0432\u0430\u0448\u0435\u0433\u043E API. \u0421\u043E\u0437\u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u043D\u043E\u0432\u044B\u0435 \u043F\u043E\u043B\u044F \u0438 \u0441\u0432\u044F\u0437\u0438 \u0432\u0441\u0435\u0433\u043E \u0437\u0430 \u043C\u0438\u043D\u0443\u0442\u0443. \u0424\u0430\u0439\u043B\u044B \u0432 \u0432\u0430\u0448\u0435\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u0435 \u0441\u043E\u0437\u0434\u0430\u044E\u0442\u0441\u044F \u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u044F\u044E\u0442\u0441\u044F \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438.","plugin.description.short":"\u041C\u043E\u0434\u0435\u043B\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0443 \u0434\u0430\u043D\u043D\u044B\u0445 \u0432\u0430\u0448\u0435\u0433\u043E API.","popUpForm.navContainer.advanced":"\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u043D\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","popUpForm.navContainer.base":"\u0411\u0430\u0437\u043E\u0432\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","popUpWarning.bodyMessage.cancel-modifications":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0434\u0435\u043B\u0430\u043D\u043D\u044B\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F? \u041D\u0435\u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0431\u044B\u043B\u0438 \u0441\u043E\u0437\u0434\u0430\u043D\u044B \u0438\u043B\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u044B...","popUpWarning.bodyMessage.category.delete":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044E? \u0412\u0441\u0435 \u0432\u0445\u043E\u0434\u044F\u0449\u0438\u0435 \u0432 \u043D\u0435\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0431\u0443\u0434\u0443\u0442 \u0442\u0430\u043A\u0436\u0435 \u0443\u0434\u0430\u043B\u0435\u043D\u044B.","popUpWarning.bodyMessage.component.delete":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442?","popUpWarning.bodyMessage.contentType.delete":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430?","popUpWarning.draft-publish.button.confirm":"\u0414\u0430, \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C","popUpWarning.draft-publish.message":"\u0415\u0441\u043B\u0438 \u0432\u044B \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0447\u0435\u0440\u043D\u043E\u0432\u0438\u043A\u043E\u0432/\u043F\u0443\u0431\u043B\u0438\u043A\u0430\u0446\u0438\u0439, \u0432\u0430\u0448\u0438 \u0447\u0435\u0440\u043D\u043E\u0432\u0438\u043A\u0438 \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B.","popUpWarning.draft-publish.second-message":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0435\u0433\u043E?","prompt.unsaved":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0432\u044B\u0439\u0442\u0438? \u0412\u0441\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0431\u0443\u0434\u0443\u0442 \u043F\u043E\u0442\u0435\u0440\u044F\u043D\u044B.","relation.attributeName.placeholder":"\u041F\u0440\u0438\u043C\u0435\u0440: \u0430\u0432\u0442\u043E\u0440, \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044F, \u0442\u0435\u0433","relation.manyToMany":"\u0438\u043C\u0435\u0435\u0442 \u0438 \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0438\u0442 \u043C\u043D\u043E\u0433\u0438\u043C","relation.manyToOne":"\u0438\u043C\u0435\u0435\u0442 \u043C\u043D\u043E\u0433\u043E","relation.manyWay":"\u0438\u043C\u0435\u0435\u0442 \u043C\u043D\u043E\u0433\u043E","relation.oneToMany":"\u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0438\u0442 \u043C\u043D\u043E\u0433\u0438\u043C","relation.oneToOne":"\u0438\u043C\u0435\u0435\u0442 \u043E\u0434\u0438\u043D \u0438 \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0438\u0442 \u043E\u0434\u043D\u043E\u043C\u0443","relation.oneWay":"\u0438\u043C\u0435\u0435\u0442 \u043E\u0434\u0438\u043D"}')}}]);