@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([[8329],{34357:function(t){t.exports=JSON.parse('{"attribute.boolean":"Booleskt v\xE4rde","attribute.boolean.description":"Ja eller nej, 1 eller 0, sant eller falskt","attribute.component":"Komponent","attribute.component.description":"Grupp av f\xE4lt du kan \xE5teranv\xE4nda och repetera","attribute.customField":"Anpassat f\xE4lt","attribute.date":"Datum","attribute.date.description":"En datumv\xE4ljare med sekunder, minuter och timmar","attribute.datetime":"Datum och tid","attribute.dynamiczone":"Dynamisk zon","attribute.dynamiczone.description":"Dynamiskt v\xE4lj mellan f\xF6rutbest\xE4mda komponenter n\xE4r du skapar inneh\xE5ll","attribute.email":"E-post","attribute.email.description":"E-postadressf\xE4lt med validering","attribute.enumeration":"Enumeration","attribute.enumeration.description":"F\xF6rutbest\xE4mda v\xE4rden som man kan v\xE4lja mellan","attribute.json":"JSON","attribute.json.description":"Data i JSON-format","attribute.media":"Media","attribute.media.description":"Filer s\xE5som bilder, videos, m.m","attribute.null":" ","attribute.number":"Nummer","attribute.number.description":"Nummer (heltal och decimaltal)","attribute.password":"L\xF6senord","attribute.password.description":"L\xF6senordsf\xE4lt med kryptering","attribute.relation":"Relation","attribute.relation.description":"Refererar till en samlingstyp","attribute.richtext":"Formaterad text","attribute.richtext.description":"En textredigerare med formatalternativ","attribute.text":"Text","attribute.text.description":"Kort och l\xE5ng text s\xE5som titel eller beskrivning","attribute.time":"Tid","attribute.timestamp":"Tidst\xE4mpel","attribute.uid":"UID","attribute.uid.description":"Unik identifierare","button.attributes.add.another":"L\xE4gg till nytt f\xE4lt","button.component.add":"L\xE4gg till en komponent","button.component.create":"Skapa komponent","button.model.create":"Skapa samlingstyp","button.single-types.create":"Skapa eng\xE5ngstyp","component.repeatable":"(repeterbar)","components.SelectComponents.displayed-value":"{number, plural, =0 {# komponenter} one {# komponent} other {# komponenter}} valda","components.componentSelect.no-component-available":"Du har redan lagt till alla dina komponenter","components.componentSelect.no-component-available.with-search":"Det finns inga komponenter matchande s\xF6kningen","components.componentSelect.value-component":"{number} komponenter valda (skriv f\xF6r att s\xF6ka efter en komponent)","components.componentSelect.value-components":"{number} komponenter valda","configurations":"Konfigurationer","contentType.apiId-plural.description":"Pluraliserat API-ID","contentType.apiId-plural.label":"API ID (Plural)","contentType.apiId-singular.description":"UID:t anv\xE4nds f\xF6r att generera API-rutterna och databastabellerna","contentType.apiId-singular.label":"API ID (Singular)","contentType.collectionName.description":"Anv\xE4ndbart n\xE4r namnet p\xE5 din inneh\xE5llstyp och din tabell \xE4r olika","contentType.collectionName.label":"Samlingsnamn","contentType.displayName.label":"Visningsnamn","contentType.draftAndPublish.description":"Skapa ett utkast av varje inl\xE4gg innan det publiceras","contentType.draftAndPublish.label":"Utkast/publiceringssystem","contentType.kind.change.warning":"Du \xE4ndrade typen p\xE5 en inneh\xE5llstyp: API:n kommer \xE5terskapas (rutter, kontroller, och tj\xE4nster kommer bli \xF6verskrivna).","error.attributeName.reserved-name":"Namnet kan inte anv\xE4ndas f\xF6r att det kan p\xE5verka annan funktionalitet","error.contentType.pluralName-used":"V\xE4rdet kan inte vara samma som namnet i singular","error.contentType.singularName-used":"V\xE4rdet kan inte vara samma som det pluraliserade namnet","error.contentTypeName.reserved-name":"Namnet kan inte anv\xE4ndas i ditt projekt f\xF6r att det kan p\xE5verka annan funktionalitet","error.validation.enum-duplicate":"Dubblettv\xE4rden \xE4r inte till\xE5tna (endast alfanumeriska tecken kontrolleras).","error.validation.enum-empty-string":"Tomma str\xE4ngar \xE4r inte till\xE5tna","error.validation.enum-regex":"Minst ett v\xE4rde \xE4r ogiltigt. V\xE4rden ska ha minst ett alfabetiskt tecken f\xF6re det f\xF6rsta talet.","error.validation.minSupMax":"Can\'t be superior","error.validation.positive":"M\xE5ste vara ett positivt tal","error.validation.regex":"Regex-m\xF6nstret \xE4r ogiltigt","error.validation.relation.targetAttribute-taken":"Detta namn existerar i m\xE5let","form.attribute.component.option.add":"L\xE4gg till en komponent","form.attribute.component.option.create":"Skapa en komponent","form.attribute.component.option.create.description":"En komponent delas mellan inneh\xE5llstyper och komponenter, och \xE4r tillg\xE4nglig \xF6verallt.","form.attribute.component.option.repeatable":"Repeterbar komponent","form.attribute.component.option.repeatable.description":"B\xE4st f\xF6r flera t.ex ingredienser, metataggar m.m. (listor)","form.attribute.component.option.reuse-existing":"Anv\xE4nd en befintlig komponent","form.attribute.component.option.reuse-existing.description":"\xC5teranv\xE4nd en komponent som redan har skapats f\xF6r att h\xE5lla datastrukturen samma \xF6ver flera inneh\xE5llstyper.","form.attribute.component.option.single":"Eng\xE5ngskomponent","form.attribute.component.option.single.description":"B\xE4st f\xF6r att gruppera f\xE4lt som adress, huvudinneh\xE5ll, etc...","form.attribute.item.customColumnName":"Anpassade kolumnnamn","form.attribute.item.customColumnName.description":"Kan anv\xE4ndas f\xF6r att anpassa hur datan ser ut i API-svar","form.attribute.item.date.type.date":"datum (t.ex: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"datum och tid (t.ex: 01/01/{currentYear} 00:00)","form.attribute.item.date.type.time":"tid (t.ex: 00:00)","form.attribute.item.defineRelation.fieldName":"F\xE4ltnamn","form.attribute.item.enumeration.graphql":"Namn\xE4ndring f\xF6r GraphQL","form.attribute.item.enumeration.graphql.description":"L\xE5ter dig \xE4ndra det genererade namnet i GraphQL","form.attribute.item.enumeration.placeholder":"Ex:\\nmorgon\\nmiddag\\nkv\xE4ll","form.attribute.item.enumeration.rules":"V\xE4rden (ett v\xE4rde per rad)","form.attribute.item.maximum":"St\xF6rsta v\xE4rde","form.attribute.item.maximumLength":"L\xE4ngsta l\xE4ngd","form.attribute.item.minimum":"Minsta v\xE4rde","form.attribute.item.minimumLength":"Kortaste l\xE4ngd","form.attribute.item.number.type":"Nummerformat","form.attribute.item.number.type.biginteger":"stort heltal (t.ex: 123456789)","form.attribute.item.number.type.decimal":"decimaltal (t.ex: 2.22)","form.attribute.item.number.type.float":"flyttal (t.ex: 3.33333333)","form.attribute.item.number.type.integer":"heltal (t.ex: 10)","form.attribute.item.privateField":"Privat f\xE4lt","form.attribute.item.privateField.description":"Detta f\xE4lt kommer inte att visas i API-svar","form.attribute.item.requiredField":"Obligatoriskt f\xE4lt","form.attribute.item.requiredField.description":"Du kommer inte kunna skapa posten om detta f\xE4ltet \xE4r tomt","form.attribute.item.text.regex":"RegEx-m\xF6nster","form.attribute.item.text.regex.description":"Texten f\xF6r RegEx-m\xF6nstret","form.attribute.item.uniqueField":"Unikt f\xE4lt","form.attribute.item.uniqueField.description":"Du kommer inte kunna skapa posten om det redan finns en annan post med samma v\xE4rde","form.attribute.media.allowed-types":"V\xE4lj till\xE5tna typer av medier","form.attribute.media.allowed-types.option-files":"Filer","form.attribute.media.allowed-types.option-images":"Bilder","form.attribute.media.allowed-types.option-videos":"Videos","form.attribute.media.option.multiple":"Flera medier","form.attribute.media.option.multiple.description":"Till\xE5ter flera medier att v\xE4ljas i samma f\xE4lt, passar bra f\xF6r t.ex bildgallerier","form.attribute.media.option.single":"En media","form.attribute.media.option.single.description":"B\xE4st f\xF6r profilbilder eller andra bilder som bara f\xF6rekommer en g\xE5ng per post","form.attribute.settings.default":"Standardv\xE4rde","form.attribute.text.option.long-text":"L\xE5ng text","form.attribute.text.option.long-text.description":"B\xE4st f\xF6r beskrivningar eller andra l\xE4ngre texter. Fulltexts\xF6kning \xE4r inaktiverat.","form.attribute.text.option.short-text":"Kort text","form.attribute.text.option.short-text.description":"B\xE4st f\xF6r titlar, namn, l\xE4nkar (URL:er). Aktiverar fulltexts\xF6kning s\xF6kning f\xF6r f\xE4ltet.","form.button.add-components-to-dynamiczone":"L\xE4gg till komponenter till dynamiska zonen","form.button.add-field":"L\xE4gg till nytt f\xE4lt","form.button.add-first-field-to-created-component":"L\xE4gg till f\xF6rsta f\xE4ltet i komponenten","form.button.add.field.to.collectionType":"L\xE4gg till ett nytt f\xE4lt i samlingstypen","form.button.add.field.to.component":"L\xE4gg till ett nytt f\xE4lt i komponenten","form.button.add.field.to.contentType":"L\xE4gg till ett nytt f\xE4lt i inneh\xE5llstypen","form.button.add.field.to.singleType":"L\xE4gg till ett nytt f\xE4lt i eng\xE5ngstypen","form.button.cancel":"Avbryt","form.button.collection-type.description":"B\xE4st f\xF6r flera poster s\xE5som artiklar, produkter och kommentarer.","form.button.collection-type.name":"Samlingstyper","form.button.configure-component":"Konfigurera komponenten","form.button.configure-view":"Konfigurera visningen","form.button.select-component":"V\xE4lj en komponent","form.button.single-type.description":"B\xE4st f\xF6r poster som bara f\xF6rekommer en g\xE5ng s\xE5som startsida, om oss, m.m.","form.button.single-type.name":"Eng\xE5ngstyper","form.contentType.divider.draft-publish":"Utkast/Publicera","from":"fr\xE5n","listView.headerLayout.description":"Skapa datastrukturen f\xF6r ditt inneh\xE5ll","menu.section.components.name":"Komponenter","menu.section.models.name":"Samlingstyper","menu.section.single-types.name":"Eng\xE5ngstyper","modalForm.attribute.form.base.name.description":"Mellanslag till\xE5ts inte i namnet p\xE5 attributet","modalForm.attribute.form.base.name.placeholder":"t.ex Titel, Slug, Canonical URL","modalForm.attribute.target-field":"Kopplat f\xE4lt","modalForm.attributes.select-component":"V\xE4lj komponent","modalForm.attributes.select-components":"V\xE4lj komponenter","modalForm.collectionType.header-create":"Skapa samlingstyp","modalForm.component.header-create":"Skapa komponent","modalForm.components.create-component.category.label":"V\xE4lj kategori eller ange namn p\xE5 ny kategori","modalForm.components.icon.label":"Ikon","modalForm.empty.button":"L\xE4gg till anpassade f\xE4lt","modalForm.empty.heading":"Inget h\xE4r \xE4nnu.","modalForm.empty.sub-heading":"Hitta det du letar efter genom ett brett utbud av till\xE4gg.","modalForm.editCategory.base.name.description":"Inget mellanslag f\xE5r finnas i namnet p\xE5 kategorin","modalForm.header-edit":"Redigera {name}","modalForm.header.categories":"Kategorier","modalForm.singleType.header-create":"Skapa eng\xE5ngstyp","modalForm.sub-header.addComponentToDynamicZone":"L\xE4gg till ny komponent till dynamisk zon","modalForm.sub-header.attribute.create":"L\xE4gg till {type}-f\xE4lt","modalForm.sub-header.attribute.create.step":"L\xE4gg till ny komponent ({step}/2)","modalForm.sub-header.attribute.edit":"Redigera {name}","modalForm.sub-header.chooseAttribute.collectionType":"V\xE4lj ett f\xE4lt f\xF6r samlingstypen","modalForm.sub-header.chooseAttribute.component":"V\xE4lj ett f\xE4lt f\xF6r komponenten","modalForm.sub-header.chooseAttribute.singleType":"V\xE4lj ett f\xE4lt f\xF6r eng\xE5ngstypen","modalForm.custom-fields.advanced.settings.extended":"Ut\xF6kade inst\xE4llningar","modalForm.tabs.custom":"Anpassat","modalForm.tabs.custom.howToLink":"Hur du l\xE4gger till anpassade f\xE4lt","modalForm.tabs.default":"Standard","modalForm.tabs.label":"Standard/anpassade-flikar","modelPage.attribute.relation-polymorphic":"Relation (polymorfisk)","modelPage.attribute.relationWith":"Relation med","notification.error.dynamiczone-min.validation":"Minst en komponent m\xE5ste vara vald f\xF6r en dynamisk zon f\xF6r att kunna spara inneh\xE5llstypen","notification.info.autoreaload-disable":"autoReload-funktionen kr\xE4vs f\xF6r att anv\xE4nda detta plugin. Starta servern med `strapi develop`","notification.info.creating.notSaved":"Spara ditt arbete innan du skapar en ny samlingstyp eller komponent","plugin.description.long":"Modellera datastrukturen f\xF6r ditt API. Skapa nya f\xE4lt och relationer p\xE5 bara en minut. Filerna skapas och uppdateras automatiskt i ditt projekt.","plugin.description.short":"Modellera datastrukturen f\xF6r ditt API.","plugin.name":"Inneh\xE5llstyps-skapare","popUpForm.navContainer.advanced":"Avancerade inst\xE4llningar","popUpForm.navContainer.base":"Grundl\xE4ggande inst\xE4llningar","popUpWarning.bodyMessage.cancel-modifications":"\xC4r du s\xE4ker p\xE5 att du vill avbryta dina \xE4ndringar?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\xC4r du s\xE4ker p\xE5 att du vill avbryta dina \xE4ndringar? Vissa komponenter har skapats eller modifierats...","popUpWarning.bodyMessage.category.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r kategorin? Alla komponenter i den kommer ocks\xE5 att raderas.","popUpWarning.bodyMessage.component.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r komponenten?","popUpWarning.bodyMessage.contentType.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r samlingstypen?","popUpWarning.draft-publish.button.confirm":"Ja, inaktiverar","popUpWarning.draft-publish.message":"Om du inaktiverar Utkast/Publicera-systemet kommer dina utkast att raderas.","popUpWarning.draft-publish.second-message":"\xC4r du s\xE4ker p\xE5 att du vill inaktivera det?","prompt.unsaved":"\xC4r du s\xE4ker p\xE5 att du vill l\xE4mna? Dina \xE4ndringar kommer att f\xF6rsvinna.","relation.attributeName.placeholder":"Ex: f\xF6rfattare, kategori, tagg","relation.manyToMany":"har och tillh\xF6r m\xE5nga","relation.manyToOne":"har m\xE5nga","relation.manyWay":"har m\xE5nga","relation.oneToMany":"tillh\xF6r m\xE5nga","relation.oneToOne":"har och tillh\xF6r en","relation.oneWay":"har en","table.button.no-fields":"L\xE4gg till nytt f\xE4lt","table.content.create-first-content-type":"Skapa din f\xF6rsta samlingstyp","table.content.no-fields.collection-type":"L\xE4gg till ett f\xF6rsta f\xE4lt till samlingstypen","table.content.no-fields.component":"L\xE4gg till ett f\xF6rsta f\xE4lt i komponenten"}')}}]);
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[8329],{34357:function(t){t.exports=JSON.parse('{"attribute.boolean":"Booleskt v\xE4rde","attribute.boolean.description":"Ja eller nej, 1 eller 0, sant eller falskt","attribute.component":"Komponent","attribute.component.description":"Grupp av f\xE4lt du kan \xE5teranv\xE4nda och repetera","attribute.customField":"Anpassat f\xE4lt","attribute.date":"Datum","attribute.date.description":"En datumv\xE4ljare med sekunder, minuter och timmar","attribute.datetime":"Datum och tid","attribute.dynamiczone":"Dynamisk zon","attribute.dynamiczone.description":"Dynamiskt v\xE4lj mellan f\xF6rutbest\xE4mda komponenter n\xE4r du skapar inneh\xE5ll","attribute.email":"E-post","attribute.email.description":"E-postadressf\xE4lt med validering","attribute.enumeration":"Enumeration","attribute.enumeration.description":"F\xF6rutbest\xE4mda v\xE4rden som man kan v\xE4lja mellan","attribute.json":"JSON","attribute.json.description":"Data i JSON-format","attribute.media":"Media","attribute.media.description":"Filer s\xE5som bilder, videos, m.m","attribute.null":" ","attribute.number":"Nummer","attribute.number.description":"Nummer (heltal och decimaltal)","attribute.password":"L\xF6senord","attribute.password.description":"L\xF6senordsf\xE4lt med kryptering","attribute.relation":"Relation","attribute.relation.description":"Refererar till en samlingstyp","attribute.richtext":"Formaterad text","attribute.richtext.description":"En textredigerare med formatalternativ","attribute.text":"Text","attribute.text.description":"Kort och l\xE5ng text s\xE5som titel eller beskrivning","attribute.time":"Tid","attribute.timestamp":"Tidst\xE4mpel","attribute.uid":"UID","attribute.uid.description":"Unik identifierare","button.attributes.add.another":"L\xE4gg till nytt f\xE4lt","button.component.add":"L\xE4gg till en komponent","button.component.create":"Skapa komponent","button.model.create":"Skapa samlingstyp","button.single-types.create":"Skapa eng\xE5ngstyp","component.repeatable":"(repeterbar)","components.SelectComponents.displayed-value":"{number, plural, =0 {# komponenter} one {# komponent} other {# komponenter}} valda","components.componentSelect.no-component-available":"Du har redan lagt till alla dina komponenter","components.componentSelect.no-component-available.with-search":"Det finns inga komponenter matchande s\xF6kningen","components.componentSelect.value-component":"{number} komponenter valda (skriv f\xF6r att s\xF6ka efter en komponent)","components.componentSelect.value-components":"{number} komponenter valda","configurations":"Konfigurationer","contentType.apiId-plural.description":"Pluraliserat API-ID","contentType.apiId-plural.label":"API ID (Plural)","contentType.apiId-singular.description":"UID:t anv\xE4nds f\xF6r att generera API-rutterna och databastabellerna","contentType.apiId-singular.label":"API ID (Singular)","contentType.collectionName.description":"Anv\xE4ndbart n\xE4r namnet p\xE5 din inneh\xE5llstyp och din tabell \xE4r olika","contentType.collectionName.label":"Samlingsnamn","contentType.displayName.label":"Visningsnamn","contentType.draftAndPublish.description":"Skapa ett utkast av varje inl\xE4gg innan det publiceras","contentType.draftAndPublish.label":"Utkast/publiceringssystem","contentType.kind.change.warning":"Du \xE4ndrade typen p\xE5 en inneh\xE5llstyp: API:n kommer \xE5terskapas (rutter, kontroller, och tj\xE4nster kommer bli \xF6verskrivna).","error.attributeName.reserved-name":"Namnet kan inte anv\xE4ndas f\xF6r att det kan p\xE5verka annan funktionalitet","error.contentType.pluralName-used":"V\xE4rdet kan inte vara samma som namnet i singular","error.contentType.singularName-used":"V\xE4rdet kan inte vara samma som det pluraliserade namnet","error.contentTypeName.reserved-name":"Namnet kan inte anv\xE4ndas i ditt projekt f\xF6r att det kan p\xE5verka annan funktionalitet","error.validation.enum-duplicate":"Dubblettv\xE4rden \xE4r inte till\xE5tna (endast alfanumeriska tecken kontrolleras).","error.validation.enum-empty-string":"Tomma str\xE4ngar \xE4r inte till\xE5tna","error.validation.enum-regex":"Minst ett v\xE4rde \xE4r ogiltigt. V\xE4rden ska ha minst ett alfabetiskt tecken f\xF6re det f\xF6rsta talet.","error.validation.minSupMax":"Can\'t be superior","error.validation.positive":"M\xE5ste vara ett positivt tal","error.validation.regex":"Regex-m\xF6nstret \xE4r ogiltigt","error.validation.relation.targetAttribute-taken":"Detta namn existerar i m\xE5let","form.attribute.component.option.add":"L\xE4gg till en komponent","form.attribute.component.option.create":"Skapa en komponent","form.attribute.component.option.create.description":"En komponent delas mellan inneh\xE5llstyper och komponenter, och \xE4r tillg\xE4nglig \xF6verallt.","form.attribute.component.option.repeatable":"Repeterbar komponent","form.attribute.component.option.repeatable.description":"B\xE4st f\xF6r flera t.ex ingredienser, metataggar m.m. (listor)","form.attribute.component.option.reuse-existing":"Anv\xE4nd en befintlig komponent","form.attribute.component.option.reuse-existing.description":"\xC5teranv\xE4nd en komponent som redan har skapats f\xF6r att h\xE5lla datastrukturen samma \xF6ver flera inneh\xE5llstyper.","form.attribute.component.option.single":"Eng\xE5ngskomponent","form.attribute.component.option.single.description":"B\xE4st f\xF6r att gruppera f\xE4lt som adress, huvudinneh\xE5ll, etc...","form.attribute.item.customColumnName":"Anpassade kolumnnamn","form.attribute.item.customColumnName.description":"Kan anv\xE4ndas f\xF6r att anpassa hur datan ser ut i API-svar","form.attribute.item.date.type.date":"datum (t.ex: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"datum och tid (t.ex: 01/01/{currentYear} 00:00)","form.attribute.item.date.type.time":"tid (t.ex: 00:00)","form.attribute.item.defineRelation.fieldName":"F\xE4ltnamn","form.attribute.item.enumeration.graphql":"Namn\xE4ndring f\xF6r GraphQL","form.attribute.item.enumeration.graphql.description":"L\xE5ter dig \xE4ndra det genererade namnet i GraphQL","form.attribute.item.enumeration.placeholder":"Ex:\\nmorgon\\nmiddag\\nkv\xE4ll","form.attribute.item.enumeration.rules":"V\xE4rden (ett v\xE4rde per rad)","form.attribute.item.maximum":"St\xF6rsta v\xE4rde","form.attribute.item.maximumLength":"L\xE4ngsta l\xE4ngd","form.attribute.item.minimum":"Minsta v\xE4rde","form.attribute.item.minimumLength":"Kortaste l\xE4ngd","form.attribute.item.number.type":"Nummerformat","form.attribute.item.number.type.biginteger":"stort heltal (t.ex: 123456789)","form.attribute.item.number.type.decimal":"decimaltal (t.ex: 2.22)","form.attribute.item.number.type.float":"flyttal (t.ex: 3.33333333)","form.attribute.item.number.type.integer":"heltal (t.ex: 10)","form.attribute.item.privateField":"Privat f\xE4lt","form.attribute.item.privateField.description":"Detta f\xE4lt kommer inte att visas i API-svar","form.attribute.item.requiredField":"Obligatoriskt f\xE4lt","form.attribute.item.requiredField.description":"Du kommer inte kunna skapa posten om detta f\xE4ltet \xE4r tomt","form.attribute.item.text.regex":"RegEx-m\xF6nster","form.attribute.item.text.regex.description":"Texten f\xF6r RegEx-m\xF6nstret","form.attribute.item.uniqueField":"Unikt f\xE4lt","form.attribute.item.uniqueField.description":"Du kommer inte kunna skapa posten om det redan finns en annan post med samma v\xE4rde","form.attribute.media.allowed-types":"V\xE4lj till\xE5tna typer av medier","form.attribute.media.allowed-types.option-files":"Filer","form.attribute.media.allowed-types.option-images":"Bilder","form.attribute.media.allowed-types.option-videos":"Videos","form.attribute.media.option.multiple":"Flera medier","form.attribute.media.option.multiple.description":"Till\xE5ter flera medier att v\xE4ljas i samma f\xE4lt, passar bra f\xF6r t.ex bildgallerier","form.attribute.media.option.single":"En media","form.attribute.media.option.single.description":"B\xE4st f\xF6r profilbilder eller andra bilder som bara f\xF6rekommer en g\xE5ng per post","form.attribute.settings.default":"Standardv\xE4rde","form.attribute.text.option.long-text":"L\xE5ng text","form.attribute.text.option.long-text.description":"B\xE4st f\xF6r beskrivningar eller andra l\xE4ngre texter. Fulltexts\xF6kning \xE4r inaktiverat.","form.attribute.text.option.short-text":"Kort text","form.attribute.text.option.short-text.description":"B\xE4st f\xF6r titlar, namn, l\xE4nkar (URL:er). Aktiverar fulltexts\xF6kning s\xF6kning f\xF6r f\xE4ltet.","form.button.add-components-to-dynamiczone":"L\xE4gg till komponenter till dynamiska zonen","form.button.add-field":"L\xE4gg till nytt f\xE4lt","form.button.add-first-field-to-created-component":"L\xE4gg till f\xF6rsta f\xE4ltet i komponenten","form.button.add.field.to.collectionType":"L\xE4gg till ett nytt f\xE4lt i samlingstypen","form.button.add.field.to.component":"L\xE4gg till ett nytt f\xE4lt i komponenten","form.button.add.field.to.contentType":"L\xE4gg till ett nytt f\xE4lt i inneh\xE5llstypen","form.button.add.field.to.singleType":"L\xE4gg till ett nytt f\xE4lt i eng\xE5ngstypen","form.button.cancel":"Avbryt","form.button.collection-type.description":"B\xE4st f\xF6r flera poster s\xE5som artiklar, produkter och kommentarer.","form.button.collection-type.name":"Samlingstyper","form.button.configure-component":"Konfigurera komponenten","form.button.configure-view":"Konfigurera visningen","form.button.select-component":"V\xE4lj en komponent","form.button.single-type.description":"B\xE4st f\xF6r poster som bara f\xF6rekommer en g\xE5ng s\xE5som startsida, om oss, m.m.","form.button.single-type.name":"Eng\xE5ngstyper","from":"fr\xE5n","listView.headerLayout.description":"Skapa datastrukturen f\xF6r ditt inneh\xE5ll","menu.section.components.name":"Komponenter","menu.section.models.name":"Samlingstyper","menu.section.single-types.name":"Eng\xE5ngstyper","modalForm.attribute.form.base.name.description":"Mellanslag till\xE5ts inte i namnet p\xE5 attributet","modalForm.attribute.form.base.name.placeholder":"t.ex Titel, Slug, Canonical URL","modalForm.attribute.target-field":"Kopplat f\xE4lt","modalForm.attributes.select-component":"V\xE4lj komponent","modalForm.attributes.select-components":"V\xE4lj komponenter","modalForm.collectionType.header-create":"Skapa samlingstyp","modalForm.component.header-create":"Skapa komponent","modalForm.components.create-component.category.label":"V\xE4lj kategori eller ange namn p\xE5 ny kategori","modalForm.components.icon.label":"Ikon","modalForm.empty.button":"L\xE4gg till anpassade f\xE4lt","modalForm.empty.heading":"Inget h\xE4r \xE4nnu.","modalForm.empty.sub-heading":"Hitta det du letar efter genom ett brett utbud av till\xE4gg.","modalForm.editCategory.base.name.description":"Inget mellanslag f\xE5r finnas i namnet p\xE5 kategorin","modalForm.header-edit":"Redigera {name}","modalForm.header.categories":"Kategorier","modalForm.singleType.header-create":"Skapa eng\xE5ngstyp","modalForm.sub-header.addComponentToDynamicZone":"L\xE4gg till ny komponent till dynamisk zon","modalForm.sub-header.attribute.create":"L\xE4gg till {type}-f\xE4lt","modalForm.sub-header.attribute.create.step":"L\xE4gg till ny komponent ({step}/2)","modalForm.sub-header.attribute.edit":"Redigera {name}","modalForm.sub-header.chooseAttribute.collectionType":"V\xE4lj ett f\xE4lt f\xF6r samlingstypen","modalForm.sub-header.chooseAttribute.component":"V\xE4lj ett f\xE4lt f\xF6r komponenten","modalForm.sub-header.chooseAttribute.singleType":"V\xE4lj ett f\xE4lt f\xF6r eng\xE5ngstypen","modalForm.custom-fields.advanced.settings.extended":"Ut\xF6kade inst\xE4llningar","modalForm.tabs.custom":"Anpassat","modalForm.tabs.custom.howToLink":"Hur du l\xE4gger till anpassade f\xE4lt","modalForm.tabs.default":"Standard","modalForm.tabs.label":"Standard/anpassade-flikar","modelPage.attribute.relation-polymorphic":"Relation (polymorfisk)","modelPage.attribute.relationWith":"Relation med","notification.error.dynamiczone-min.validation":"Minst en komponent m\xE5ste vara vald f\xF6r en dynamisk zon f\xF6r att kunna spara inneh\xE5llstypen","notification.info.autoreaload-disable":"autoReload-funktionen kr\xE4vs f\xF6r att anv\xE4nda detta plugin. Starta servern med `strapi develop`","notification.info.creating.notSaved":"Spara ditt arbete innan du skapar en ny samlingstyp eller komponent","plugin.description.long":"Modellera datastrukturen f\xF6r ditt API. Skapa nya f\xE4lt och relationer p\xE5 bara en minut. Filerna skapas och uppdateras automatiskt i ditt projekt.","plugin.description.short":"Modellera datastrukturen f\xF6r ditt API.","plugin.name":"Inneh\xE5llstyps-skapare","popUpForm.navContainer.advanced":"Avancerade inst\xE4llningar","popUpForm.navContainer.base":"Grundl\xE4ggande inst\xE4llningar","popUpWarning.bodyMessage.cancel-modifications":"\xC4r du s\xE4ker p\xE5 att du vill avbryta dina \xE4ndringar?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\xC4r du s\xE4ker p\xE5 att du vill avbryta dina \xE4ndringar? Vissa komponenter har skapats eller modifierats...","popUpWarning.bodyMessage.category.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r kategorin? Alla komponenter i den kommer ocks\xE5 att raderas.","popUpWarning.bodyMessage.component.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r komponenten?","popUpWarning.bodyMessage.contentType.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r samlingstypen?","popUpWarning.draft-publish.button.confirm":"Ja, inaktiverar","popUpWarning.draft-publish.message":"Om du inaktiverar Utkast/Publicera-systemet kommer dina utkast att raderas.","popUpWarning.draft-publish.second-message":"\xC4r du s\xE4ker p\xE5 att du vill inaktivera det?","prompt.unsaved":"\xC4r du s\xE4ker p\xE5 att du vill l\xE4mna? Dina \xE4ndringar kommer att f\xF6rsvinna.","relation.attributeName.placeholder":"Ex: f\xF6rfattare, kategori, tagg","relation.manyToMany":"har och tillh\xF6r m\xE5nga","relation.manyToOne":"har m\xE5nga","relation.manyWay":"har m\xE5nga","relation.oneToMany":"tillh\xF6r m\xE5nga","relation.oneToOne":"har och tillh\xF6r en","relation.oneWay":"har en","table.button.no-fields":"L\xE4gg till nytt f\xE4lt","table.content.create-first-content-type":"Skapa din f\xF6rsta samlingstyp","table.content.no-fields.collection-type":"L\xE4gg till ett f\xF6rsta f\xE4lt till samlingstypen","table.content.no-fields.component":"L\xE4gg till ett f\xF6rsta f\xE4lt i komponenten"}')}}]);
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3304],{16260:function(e){e.exports=JSON.parse('{"ComponentIconPicker.search.placeholder":"Bir ikon ara","attribute.boolean":"Mant\u0131ksal","attribute.component":"Bile\u015Fen","attribute.component.description":"Tekrarlayabilece\u011Fin alanlar grubu","attribute.customField":"\xD6zel alan","attribute.date":"Tarih","attribute.dynamiczone":"Dinamik b\xF6lge","attribute.dynamiczone.description":"\u0130\xE7eri\u011Fi d\xFCzenlerken bile\u015Fenleri dinamik olarak se\xE7","attribute.email":"E-posta","attribute.enumeration":"Enumeration","attribute.json":"JSON","attribute.media":"Medya","attribute.null":" ","attribute.number":"Say\u0131","attribute.number.description":"Say\u0131lar (tamsay\u0131, kayan, ondal\u0131kl\u0131)","attribute.password":"Parola","attribute.relation":"\u0130li\u015Fki","attribute.richtext":"Zengin metin","attribute.richtext.description":"Bi\xE7imlendirme se\xE7enekleri olan bir zengin metin d\xFCzenleyici","attribute.text":"Yaz\u0131","attribute.time":"Zaman","attribute.timestamp":"Zaman damgas\u0131","attribute.uid":"UID","attribute.uid.description":"Benzersiz kimlik numaras\u0131","button.attributes.add.another":"Ba\u015Fka bir alan ekle","button.component.add":"Bir bile\u015Fen ekle","button.component.create":"Yeni bile\u015Fen olu\u015Ftur","button.model.create":"Yeni koleksiyon tipi olu\u015Ftur","button.single-types.create":"Yeni tekil tip olu\u015Ftur","component.repeatable":"(tekrarlayabilen)","components.SelectComponents.displayed-value":"{number} bile\u015Fen se\xE7ildi","components.componentSelect.no-component-available":"T\xFCm bile\u015Fenleri ekledin","components.componentSelect.no-component-available.with-search":"Araman\u0131zla e\u015Fle\u015Fen bile\u015Fen bulunamad\u0131","components.componentSelect.value-component":"{number} bile\u015Fen se\xE7ildi (aramak istedi\u011Fin bile\u015Feni yaz)","components.componentSelect.value-components":"{number} bile\u015Fen se\xE7ildi","configurations":"Kurulumlar","contentType.apiId-plural.description":"\xC7o\u011Ful API Kimli\u011Fi","contentType.apiId-plural.label":"API Kimli\u011Fi (\xC7o\u011Ful)","contentType.apiId-singular.description":"UID API yollar\u0131 ve veritaban\u0131 tablolar\u0131n\u0131 olu\u015Fturmak i\xE7in kullan\u0131l\u0131r","contentType.apiId-singular.label":"API Kimli\u011Fi (Tekil)","contentType.collectionName.description":"\u0130\xE7erik tipin ve tablo ad\u0131n farkl\u0131 oldu\u011Fu durumlarda kullan\u0131\u015Fl\u0131d\u0131r","contentType.collectionName.label":"Koleksiyon ad\u0131","contentType.displayName.label":"G\xF6r\xFCnt\xFClenme ad\u0131","contentType.draftAndPublish.description":"Yay\u0131nlamadan \xF6nce girdilerin taslak halini yaz","contentType.draftAndPublish.label":"Taslak/Yay\u0131n sistemi","contentType.kind.change.warning":"\u0130\xE7erik tipinin \xE7e\u015Fidini de\u011Fi\u015Ftirdiniz. API s\u0131f\u0131rlanacak (routes, controllers, services).","error.attributeName.reserved-name":"Bu isim, di\u011Fer \xF6zellikleri bozabilece\u011Finden, i\xE7erik tipi i\xE7in kullan\u0131lamaz","error.contentType.pluralName-used":"Bu de\u011Fer tekil olanla ayn\u0131 olamaz","error.contentType.singularName-used":"Bu de\u011Fer \xE7o\u011Ful olanla ayn\u0131 olamaz","error.contentTypeName.reserved-name":"Bu isim, di\u011Fer \xF6zellikleri bozabilece\u011Finden, projede kullan\u0131lamaz","error.validation.enum-duplicate":"M\xFCkerrer de\u011Ferlere izin verilmez (yaln\u0131zca alfan\xFCmerik karakterler hesaba kat\u0131lm\u0131\u015Ft\u0131r).","error.validation.enum-empty-string":"Kelime bo\u015F olamaz","error.validation.enum-regex":"En az bir de\u011Fer ge\xE7ersiz. De\u011Ferlerin i\xE7inde say\u0131lardan \xF6nce en az bir alfabetik karakter olmal\u0131d\u0131r.","error.validation.minSupMax":"\xDCst olamaz","error.validation.positive":"Pozitif say\u0131 olmal\u0131d\u0131r","error.validation.regex":"Regex ifadesi ge\xE7ersiz","error.validation.relation.targetAttribute-taken":"Bu isim hedefte yer al\u0131yor","form.attribute.component.option.add":"Bir bile\u015Fen ekle","form.attribute.component.option.create":"Yeni bir bile\u015Fen olu\u015Ftur","form.attribute.component.option.create.description":"Bile\u015Fen tipler ve bile\u015Fenler aras\u0131nda payla\u015F\u0131l\u0131r ve her yerden eri\u015Filebilir.","form.attribute.component.option.repeatable":"Tekrarlanabilir bile\u015Fen","form.attribute.component.option.repeatable.description":"\xC7ok kay\u0131tl\u0131 (diziler) i\xE7erikler, meta etiketleri, v.b. i\xE7in ideal","form.attribute.component.option.reuse-existing":"Mevcut bir bile\u015Feni kullan","form.attribute.component.option.reuse-existing.description":"Verilerini i\xE7erik tipleri aras\u0131nda tutarl\u0131 k\u0131lmak i\xE7in daha \xF6nceden olu\u015Fturulmu\u015F bir bile\u015Feni kullan.","form.attribute.component.option.single":"Tekil bile\u015Fen","form.attribute.component.option.single.description":"Gruplama alanlar\u0131 (adres, temel bilgiler, v.b. i\xE7in ideal","form.attribute.item.customColumnName":"\xD6zel kolon isimleri","form.attribute.item.customColumnName.description":"Bu veritaban\u0131 s\xFCtun isimleri servis yan\u0131tlar\u0131 i\xE7in daha kapsaml\u0131 bir bi\xE7imde yeniden adland\u0131rmak i\xE7in kullan\u0131\u015Fl\u0131d\u0131r","form.attribute.item.date.type.date":"tarih (\xF6r: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"tarih saat (\xF6r: 01/01/{currentYear} 00:00)","form.attribute.item.date.type.time":"saat (\xF6r: 00:00)","form.attribute.item.defineRelation.fieldName":"Alan ad\u0131","form.attribute.item.enumeration.graphql":"GraphQL i\xE7in isim ge\xE7ersiz k\u0131l","form.attribute.item.enumeration.graphql.description":"GraphQL i\xE7in varsay\u0131lan olu\u015Fturulan ad\u0131 ge\xE7ersiz k\u0131lman\u0131za izin verir.","form.attribute.item.enumeration.placeholder":"\xD6rn:\\nsabah\\n\xF6\u011Flen\\nak\u015Fam","form.attribute.item.enumeration.rules":"Values (one line per value)","form.attribute.item.maximum":"En y\xFCksek de\u011Fer","form.attribute.item.maximumLength":"En y\xFCksek uzunluk","form.attribute.item.minimum":"En d\xFC\u015F\xFCk de\u011Fer","form.attribute.item.minimumLength":"En d\xFC\u015F\xFCk uzunluk","form.attribute.item.number.type":"Say\u0131 bi\xE7imi","form.attribute.item.number.type.decimal":"ondal\u0131k (ex: 2.22)","form.attribute.item.number.type.float":"float (ex: 3.33333333)","form.attribute.item.number.type.integer":"tamsay\u0131 (ex: 10)","form.attribute.item.privateField":"Gizli alan","form.attribute.item.privateField.description":"Bu alan API yan\u0131t\u0131nda g\xF6r\xFCnmez","form.attribute.item.requiredField":"Zorunlu alan","form.attribute.item.requiredField.description":"Bu alan bo\u015Fsa kay\u0131t olu\u015Fturamazs\u0131n\u0131z","form.attribute.item.text.regex":"RegExp ifadesi","form.attribute.item.text.regex.description":"RegExp ifadesi","form.attribute.item.uniqueField":"Benzersiz alan","form.attribute.item.uniqueField.description":"Ayn\u0131 i\xE7eri\u011Fe sahip bir kay\u0131t varsa kay\u0131t olu\u015Fturamazs\u0131n\u0131z.","form.attribute.settings.default":"Varsay\u0131lan de\u011Fer","form.button.add-components-to-dynamiczone":"B\xF6lgeye bile\u015Fenleri ekle","form.button.add-field":"Ba\u015Fka bir alan ekle","form.button.add-first-field-to-created-component":"\u0130lk alan\u0131 bile\u015Fene ekle","form.button.add.field.to.collectionType":"Bu koleksiyon tipine ba\u015Fka bir alan ekle","form.button.add.field.to.component":"Bu bile\u015Fene ba\u015Fka bir alan ekle","form.button.add.field.to.contentType":"Bu i\xE7erik tipine ba\u015Fka bir alan ekle","form.button.add.field.to.singleType":"Bu tekil tipe ba\u015Fka bir alan ekle","form.button.cancel":"\u0130ptal","form.button.collection-type.description":"\xC7oklu kay\u0131tlar (makaleler, \xFCr\xFCnler, yorumlar, v.b.) i\xE7in ideal","form.button.collection-type.name":"Koleksiyon Tipi","form.button.configure-component":"Bile\u015Feni ayarla","form.button.configure-view":"G\xF6r\xFCn\xFCm\xFC ayarla","form.button.select-component":"Bir bile\u015Fen se\xE7","form.button.single-type.description":"Tekil kay\u0131tlar (hakk\u0131m\u0131zda, ana sayfa, v.b.) i\xE7in ideal","form.button.single-type.name":"Tekil Tip","form.contentType.divider.draft-publish":"Taslak/Yay\u0131nla","from":"kimden","listView.headerLayout.description":"\u0130\xE7eri\u011Finin veri mimarisini kur","menu.section.components.name":"Bile\u015Fenler","menu.section.models.name":"Koleksiyon Tipleri","menu.section.single-types.name":"Tekil Tipler","modalForm.attribute.form.base.name.description":"Nitelik ad\u0131nda bo\u015Fluk olamaz","modalForm.attribute.form.base.name.placeholder":"\xF6r. Slug, SEO URL, Canonical URL","modalForm.attribute.target-field":"\u0130li\u015Ftirilmi\u015F alan","modalForm.attributes.select-component":"Bir bile\u015Fen se\xE7","modalForm.attributes.select-components":"Bile\u015Fenleri se\xE7","modalForm.collectionType.header-create":"Bir koleksiyon tipi olu\u015Ftur","modalForm.component.header-create":"Bir bile\u015Fen olu\u015Ftur","modalForm.components.create-component.category.label":"Kategori se\xE7 ya da yeni bir tane olu\u015Fturmak i\xE7in isim gir","modalForm.components.icon.label":"\u0130kon","modalForm.custom-fields.advanced.settings.extended":"Geli\u015Fmi\u015F ayarlar","modalForm.editCategory.base.name.description":"Kategori ad\u0131nda bo\u015Fluk olamaz","modalForm.empty.button":"\xD6zel alanlar ekle","modalForm.empty.heading":"Burada hen\xFCz bir \u015Fey yok.","modalForm.empty.sub-heading":"Geni\u015F yelpazedeki uzant\u0131lar ile arad\u0131\u011F\u0131n\u0131 bul.","modalForm.header-edit":"D\xFCzenle: {name}","modalForm.header.categories":"Kategoriler","modalForm.singleType.header-create":"Bir tekil tip olu\u015Ftur","modalForm.sub-header.addComponentToDynamicZone":"Dinamik b\xF6lgeye yeni bile\u015Fen ekle","modalForm.sub-header.attribute.create":"Yeni {type} alan\u0131 ekle","modalForm.sub-header.attribute.create.step":"Yeni bile\u015Fen ekle ({step}/2)","modalForm.sub-header.attribute.edit":"D\xFCzenle: {name}","modalForm.sub-header.chooseAttribute.collectionType":"Koleksiyon tipin i\xE7in bir alan se\xE7","modalForm.sub-header.chooseAttribute.component":"Bile\u015Fenin i\xE7in bir alan se\xE7","modalForm.sub-header.chooseAttribute.singleType":"Tekil tipin i\xE7in bir alan se\xE7","modalForm.tabs.custom":"\xD6zel","modalForm.tabs.custom.howToLink":"Nas\u0131l \xF6zel alan eklenir","modalForm.tabs.default":"Varsay\u0131lan","modalForm.tabs.label":"Varsay\u0131lan ve \xD6zel tip sekmeleri","modelPage.attribute.relationWith":"\u0130li\u015Fkili","notification.error.dynamiczone-min.validation":"Bir i\xE7erik tipini kaydetmek i\xE7in dinamik b\xF6lgede en az bir bile\u015Fen olmas\u0131 gereklidir","notification.info.autoreaload-disable":"Bu eklentinin kullan\u0131labilmesi i\xE7in otomatik yeniden y\xFCkleme (autoReload) \xF6zelli\u011Fi gereklidir. Sunucunu `strapi develop` ile ba\u015Flat","notification.info.creating.notSaved":"Yeni bir koleksiyon tipi ya da bile\u015Fen olu\u015Fturmadan \xF6nce yapt\u0131klar\u0131n\u0131 kaydet","plugin.description.long":"APInin veri yap\u0131s\u0131n\u0131 modelle. Sadece bir iki dakikada yeni alanlar ve ili\u015Fkiler olu\u015Ftur. Projendeki dosyalar otomatik olarak olu\u015Fturulur ve g\xFCncellenir.","plugin.description.short":"APInin veri yap\u0131s\u0131n\u0131 modelle.","plugin.name":"\u0130\xE7erik Tipi Kurucusu","popUpForm.navContainer.advanced":"Geli\u015Fmi\u015F Ayarlar","popUpForm.navContainer.base":"Temel ayarlar","popUpWarning.bodyMessage.cancel-modifications":"De\u011Fi\u015Fikliklerini iptal etmek istedi\u011Finden emin misin?","popUpWarning.bodyMessage.cancel-modifications.with-components":"De\u011Fi\u015Fikliklerini iptal etmek istedi\u011Finden emin misin? Baz\u0131 bile\u015Fenler olu\u015Fturuldu ya da de\u011Fi\u015Ftirildi.","popUpWarning.bodyMessage.category.delete":"Bu kategoriyi silmek istedi\u011Finden emin misin? T\xFCm bile\u015Fenler de silinecek.","popUpWarning.bodyMessage.component.delete":"Bu bile\u015Feni silmek istedi\u011Finden emin misin?","popUpWarning.bodyMessage.contentType.delete":"Bu \u0130\xE7erik T\xFCr\xFCn\xFC silmek istedi\u011Finizden emin misiniz?","popUpWarning.draft-publish.button.confirm":"Evet, devred\u0131\u015F\u0131 b\u0131rak","popUpWarning.draft-publish.message":"Taslak/Yay\u0131nla sistemini devred\u0131\u015F\u0131 b\u0131rak\u0131rsan taslaklar\u0131n silinecek.","popUpWarning.draft-publish.second-message":"Devred\u0131\u015F\u0131 b\u0131rakmak istedi\u011Finden emin misin?","prompt.unsaved":"\xC7\u0131kmak istedi\u011Finden emin misin? T\xFCm de\u011Fi\u015Fikliklerin kaybolacak.","relation.attributeName.placeholder":"\xD6rnek: yazar, katagori, etiket","relation.manyToMany":"bir\xE7ok ki\u015Fiye ait ve ait","relation.manyToOne":"Bir\xE7ok var","relation.manyWay":"\xE7ok y\xF6nl\xFC","relation.oneToMany":"Bir\xE7o\u011Funa ait","relation.oneToOne":"biri var","relation.oneWay":"tek y\xF6nl\xFC","table.button.no-fields":"Yeni alan ekle","table.content.create-first-content-type":"\u0130lk Koleksiyon-Tipini olu\u015Ftur","table.content.no-fields.collection-type":"Bu Koleksiyon-Tipine ile alan\u0131n\u0131 ekle","table.content.no-fields.component":"Bu bile\u015Fene ilk alan\u0131n\u0131 ekle"}')}}]);
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3304],{16260:function(e){e.exports=JSON.parse('{"ComponentIconPicker.search.placeholder":"Bir ikon ara","attribute.boolean":"Mant\u0131ksal","attribute.component":"Bile\u015Fen","attribute.component.description":"Tekrarlayabilece\u011Fin alanlar grubu","attribute.customField":"\xD6zel alan","attribute.date":"Tarih","attribute.dynamiczone":"Dinamik b\xF6lge","attribute.dynamiczone.description":"\u0130\xE7eri\u011Fi d\xFCzenlerken bile\u015Fenleri dinamik olarak se\xE7","attribute.email":"E-posta","attribute.enumeration":"Enumeration","attribute.json":"JSON","attribute.media":"Medya","attribute.null":" ","attribute.number":"Say\u0131","attribute.number.description":"Say\u0131lar (tamsay\u0131, kayan, ondal\u0131kl\u0131)","attribute.password":"Parola","attribute.relation":"\u0130li\u015Fki","attribute.richtext":"Zengin metin","attribute.richtext.description":"Bi\xE7imlendirme se\xE7enekleri olan bir zengin metin d\xFCzenleyici","attribute.text":"Yaz\u0131","attribute.time":"Zaman","attribute.timestamp":"Zaman damgas\u0131","attribute.uid":"UID","attribute.uid.description":"Benzersiz kimlik numaras\u0131","button.attributes.add.another":"Ba\u015Fka bir alan ekle","button.component.add":"Bir bile\u015Fen ekle","button.component.create":"Yeni bile\u015Fen olu\u015Ftur","button.model.create":"Yeni koleksiyon tipi olu\u015Ftur","button.single-types.create":"Yeni tekil tip olu\u015Ftur","component.repeatable":"(tekrarlayabilen)","components.SelectComponents.displayed-value":"{number} bile\u015Fen se\xE7ildi","components.componentSelect.no-component-available":"T\xFCm bile\u015Fenleri ekledin","components.componentSelect.no-component-available.with-search":"Araman\u0131zla e\u015Fle\u015Fen bile\u015Fen bulunamad\u0131","components.componentSelect.value-component":"{number} bile\u015Fen se\xE7ildi (aramak istedi\u011Fin bile\u015Feni yaz)","components.componentSelect.value-components":"{number} bile\u015Fen se\xE7ildi","configurations":"Kurulumlar","contentType.apiId-plural.description":"\xC7o\u011Ful API Kimli\u011Fi","contentType.apiId-plural.label":"API Kimli\u011Fi (\xC7o\u011Ful)","contentType.apiId-singular.description":"UID API yollar\u0131 ve veritaban\u0131 tablolar\u0131n\u0131 olu\u015Fturmak i\xE7in kullan\u0131l\u0131r","contentType.apiId-singular.label":"API Kimli\u011Fi (Tekil)","contentType.collectionName.description":"\u0130\xE7erik tipin ve tablo ad\u0131n farkl\u0131 oldu\u011Fu durumlarda kullan\u0131\u015Fl\u0131d\u0131r","contentType.collectionName.label":"Koleksiyon ad\u0131","contentType.displayName.label":"G\xF6r\xFCnt\xFClenme ad\u0131","contentType.draftAndPublish.description":"Yay\u0131nlamadan \xF6nce girdilerin taslak halini yaz","contentType.draftAndPublish.label":"Taslak/Yay\u0131n sistemi","contentType.kind.change.warning":"\u0130\xE7erik tipinin \xE7e\u015Fidini de\u011Fi\u015Ftirdiniz. API s\u0131f\u0131rlanacak (routes, controllers, services).","error.attributeName.reserved-name":"Bu isim, di\u011Fer \xF6zellikleri bozabilece\u011Finden, i\xE7erik tipi i\xE7in kullan\u0131lamaz","error.contentType.pluralName-used":"Bu de\u011Fer tekil olanla ayn\u0131 olamaz","error.contentType.singularName-used":"Bu de\u011Fer \xE7o\u011Ful olanla ayn\u0131 olamaz","error.contentTypeName.reserved-name":"Bu isim, di\u011Fer \xF6zellikleri bozabilece\u011Finden, projede kullan\u0131lamaz","error.validation.enum-duplicate":"M\xFCkerrer de\u011Ferlere izin verilmez (yaln\u0131zca alfan\xFCmerik karakterler hesaba kat\u0131lm\u0131\u015Ft\u0131r).","error.validation.enum-empty-string":"Kelime bo\u015F olamaz","error.validation.enum-regex":"En az bir de\u011Fer ge\xE7ersiz. De\u011Ferlerin i\xE7inde say\u0131lardan \xF6nce en az bir alfabetik karakter olmal\u0131d\u0131r.","error.validation.minSupMax":"\xDCst olamaz","error.validation.positive":"Pozitif say\u0131 olmal\u0131d\u0131r","error.validation.regex":"Regex ifadesi ge\xE7ersiz","error.validation.relation.targetAttribute-taken":"Bu isim hedefte yer al\u0131yor","form.attribute.component.option.add":"Bir bile\u015Fen ekle","form.attribute.component.option.create":"Yeni bir bile\u015Fen olu\u015Ftur","form.attribute.component.option.create.description":"Bile\u015Fen tipler ve bile\u015Fenler aras\u0131nda payla\u015F\u0131l\u0131r ve her yerden eri\u015Filebilir.","form.attribute.component.option.repeatable":"Tekrarlanabilir bile\u015Fen","form.attribute.component.option.repeatable.description":"\xC7ok kay\u0131tl\u0131 (diziler) i\xE7erikler, meta etiketleri, v.b. i\xE7in ideal","form.attribute.component.option.reuse-existing":"Mevcut bir bile\u015Feni kullan","form.attribute.component.option.reuse-existing.description":"Verilerini i\xE7erik tipleri aras\u0131nda tutarl\u0131 k\u0131lmak i\xE7in daha \xF6nceden olu\u015Fturulmu\u015F bir bile\u015Feni kullan.","form.attribute.component.option.single":"Tekil bile\u015Fen","form.attribute.component.option.single.description":"Gruplama alanlar\u0131 (adres, temel bilgiler, v.b. i\xE7in ideal","form.attribute.item.customColumnName":"\xD6zel kolon isimleri","form.attribute.item.customColumnName.description":"Bu veritaban\u0131 s\xFCtun isimleri servis yan\u0131tlar\u0131 i\xE7in daha kapsaml\u0131 bir bi\xE7imde yeniden adland\u0131rmak i\xE7in kullan\u0131\u015Fl\u0131d\u0131r","form.attribute.item.date.type.date":"tarih (\xF6r: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"tarih saat (\xF6r: 01/01/{currentYear} 00:00)","form.attribute.item.date.type.time":"saat (\xF6r: 00:00)","form.attribute.item.defineRelation.fieldName":"Alan ad\u0131","form.attribute.item.enumeration.graphql":"GraphQL i\xE7in isim ge\xE7ersiz k\u0131l","form.attribute.item.enumeration.graphql.description":"GraphQL i\xE7in varsay\u0131lan olu\u015Fturulan ad\u0131 ge\xE7ersiz k\u0131lman\u0131za izin verir.","form.attribute.item.enumeration.placeholder":"\xD6rn:\\nsabah\\n\xF6\u011Flen\\nak\u015Fam","form.attribute.item.enumeration.rules":"Values (one line per value)","form.attribute.item.maximum":"En y\xFCksek de\u011Fer","form.attribute.item.maximumLength":"En y\xFCksek uzunluk","form.attribute.item.minimum":"En d\xFC\u015F\xFCk de\u011Fer","form.attribute.item.minimumLength":"En d\xFC\u015F\xFCk uzunluk","form.attribute.item.number.type":"Say\u0131 bi\xE7imi","form.attribute.item.number.type.decimal":"ondal\u0131k (ex: 2.22)","form.attribute.item.number.type.float":"float (ex: 3.33333333)","form.attribute.item.number.type.integer":"tamsay\u0131 (ex: 10)","form.attribute.item.privateField":"Gizli alan","form.attribute.item.privateField.description":"Bu alan API yan\u0131t\u0131nda g\xF6r\xFCnmez","form.attribute.item.requiredField":"Zorunlu alan","form.attribute.item.requiredField.description":"Bu alan bo\u015Fsa kay\u0131t olu\u015Fturamazs\u0131n\u0131z","form.attribute.item.text.regex":"RegExp ifadesi","form.attribute.item.text.regex.description":"RegExp ifadesi","form.attribute.item.uniqueField":"Benzersiz alan","form.attribute.item.uniqueField.description":"Ayn\u0131 i\xE7eri\u011Fe sahip bir kay\u0131t varsa kay\u0131t olu\u015Fturamazs\u0131n\u0131z.","form.attribute.settings.default":"Varsay\u0131lan de\u011Fer","form.button.add-components-to-dynamiczone":"B\xF6lgeye bile\u015Fenleri ekle","form.button.add-field":"Ba\u015Fka bir alan ekle","form.button.add-first-field-to-created-component":"\u0130lk alan\u0131 bile\u015Fene ekle","form.button.add.field.to.collectionType":"Bu koleksiyon tipine ba\u015Fka bir alan ekle","form.button.add.field.to.component":"Bu bile\u015Fene ba\u015Fka bir alan ekle","form.button.add.field.to.contentType":"Bu i\xE7erik tipine ba\u015Fka bir alan ekle","form.button.add.field.to.singleType":"Bu tekil tipe ba\u015Fka bir alan ekle","form.button.cancel":"\u0130ptal","form.button.collection-type.description":"\xC7oklu kay\u0131tlar (makaleler, \xFCr\xFCnler, yorumlar, v.b.) i\xE7in ideal","form.button.collection-type.name":"Koleksiyon Tipi","form.button.configure-component":"Bile\u015Feni ayarla","form.button.configure-view":"G\xF6r\xFCn\xFCm\xFC ayarla","form.button.select-component":"Bir bile\u015Fen se\xE7","form.button.single-type.description":"Tekil kay\u0131tlar (hakk\u0131m\u0131zda, ana sayfa, v.b.) i\xE7in ideal","form.button.single-type.name":"Tekil Tip","from":"kimden","listView.headerLayout.description":"\u0130\xE7eri\u011Finin veri mimarisini kur","menu.section.components.name":"Bile\u015Fenler","menu.section.models.name":"Koleksiyon Tipleri","menu.section.single-types.name":"Tekil Tipler","modalForm.attribute.form.base.name.description":"Nitelik ad\u0131nda bo\u015Fluk olamaz","modalForm.attribute.form.base.name.placeholder":"\xF6r. Slug, SEO URL, Canonical URL","modalForm.attribute.target-field":"\u0130li\u015Ftirilmi\u015F alan","modalForm.attributes.select-component":"Bir bile\u015Fen se\xE7","modalForm.attributes.select-components":"Bile\u015Fenleri se\xE7","modalForm.collectionType.header-create":"Bir koleksiyon tipi olu\u015Ftur","modalForm.component.header-create":"Bir bile\u015Fen olu\u015Ftur","modalForm.components.create-component.category.label":"Kategori se\xE7 ya da yeni bir tane olu\u015Fturmak i\xE7in isim gir","modalForm.components.icon.label":"\u0130kon","modalForm.custom-fields.advanced.settings.extended":"Geli\u015Fmi\u015F ayarlar","modalForm.editCategory.base.name.description":"Kategori ad\u0131nda bo\u015Fluk olamaz","modalForm.empty.button":"\xD6zel alanlar ekle","modalForm.empty.heading":"Burada hen\xFCz bir \u015Fey yok.","modalForm.empty.sub-heading":"Geni\u015F yelpazedeki uzant\u0131lar ile arad\u0131\u011F\u0131n\u0131 bul.","modalForm.header-edit":"D\xFCzenle: {name}","modalForm.header.categories":"Kategoriler","modalForm.singleType.header-create":"Bir tekil tip olu\u015Ftur","modalForm.sub-header.addComponentToDynamicZone":"Dinamik b\xF6lgeye yeni bile\u015Fen ekle","modalForm.sub-header.attribute.create":"Yeni {type} alan\u0131 ekle","modalForm.sub-header.attribute.create.step":"Yeni bile\u015Fen ekle ({step}/2)","modalForm.sub-header.attribute.edit":"D\xFCzenle: {name}","modalForm.sub-header.chooseAttribute.collectionType":"Koleksiyon tipin i\xE7in bir alan se\xE7","modalForm.sub-header.chooseAttribute.component":"Bile\u015Fenin i\xE7in bir alan se\xE7","modalForm.sub-header.chooseAttribute.singleType":"Tekil tipin i\xE7in bir alan se\xE7","modalForm.tabs.custom":"\xD6zel","modalForm.tabs.custom.howToLink":"Nas\u0131l \xF6zel alan eklenir","modalForm.tabs.default":"Varsay\u0131lan","modalForm.tabs.label":"Varsay\u0131lan ve \xD6zel tip sekmeleri","modelPage.attribute.relationWith":"\u0130li\u015Fkili","notification.error.dynamiczone-min.validation":"Bir i\xE7erik tipini kaydetmek i\xE7in dinamik b\xF6lgede en az bir bile\u015Fen olmas\u0131 gereklidir","notification.info.autoreaload-disable":"Bu eklentinin kullan\u0131labilmesi i\xE7in otomatik yeniden y\xFCkleme (autoReload) \xF6zelli\u011Fi gereklidir. Sunucunu `strapi develop` ile ba\u015Flat","notification.info.creating.notSaved":"Yeni bir koleksiyon tipi ya da bile\u015Fen olu\u015Fturmadan \xF6nce yapt\u0131klar\u0131n\u0131 kaydet","plugin.description.long":"APInin veri yap\u0131s\u0131n\u0131 modelle. Sadece bir iki dakikada yeni alanlar ve ili\u015Fkiler olu\u015Ftur. Projendeki dosyalar otomatik olarak olu\u015Fturulur ve g\xFCncellenir.","plugin.description.short":"APInin veri yap\u0131s\u0131n\u0131 modelle.","plugin.name":"\u0130\xE7erik Tipi Kurucusu","popUpForm.navContainer.advanced":"Geli\u015Fmi\u015F Ayarlar","popUpForm.navContainer.base":"Temel ayarlar","popUpWarning.bodyMessage.cancel-modifications":"De\u011Fi\u015Fikliklerini iptal etmek istedi\u011Finden emin misin?","popUpWarning.bodyMessage.cancel-modifications.with-components":"De\u011Fi\u015Fikliklerini iptal etmek istedi\u011Finden emin misin? Baz\u0131 bile\u015Fenler olu\u015Fturuldu ya da de\u011Fi\u015Ftirildi.","popUpWarning.bodyMessage.category.delete":"Bu kategoriyi silmek istedi\u011Finden emin misin? T\xFCm bile\u015Fenler de silinecek.","popUpWarning.bodyMessage.component.delete":"Bu bile\u015Feni silmek istedi\u011Finden emin misin?","popUpWarning.bodyMessage.contentType.delete":"Bu \u0130\xE7erik T\xFCr\xFCn\xFC silmek istedi\u011Finizden emin misiniz?","popUpWarning.draft-publish.button.confirm":"Evet, devred\u0131\u015F\u0131 b\u0131rak","popUpWarning.draft-publish.message":"Taslak/Yay\u0131nla sistemini devred\u0131\u015F\u0131 b\u0131rak\u0131rsan taslaklar\u0131n silinecek.","popUpWarning.draft-publish.second-message":"Devred\u0131\u015F\u0131 b\u0131rakmak istedi\u011Finden emin misin?","prompt.unsaved":"\xC7\u0131kmak istedi\u011Finden emin misin? T\xFCm de\u011Fi\u015Fikliklerin kaybolacak.","relation.attributeName.placeholder":"\xD6rnek: yazar, katagori, etiket","relation.manyToMany":"bir\xE7ok ki\u015Fiye ait ve ait","relation.manyToOne":"Bir\xE7ok var","relation.manyWay":"\xE7ok y\xF6nl\xFC","relation.oneToMany":"Bir\xE7o\u011Funa ait","relation.oneToOne":"biri var","relation.oneWay":"tek y\xF6nl\xFC","table.button.no-fields":"Yeni alan ekle","table.content.create-first-content-type":"\u0130lk Koleksiyon-Tipini olu\u015Ftur","table.content.no-fields.collection-type":"Bu Koleksiyon-Tipine ile alan\u0131n\u0131 ekle","table.content.no-fields.component":"Bu bile\u015Fene ilk alan\u0131n\u0131 ekle"}')}}]);
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4302],{63338:function(t){t.exports=JSON.parse('{"attribute.boolean":"\u5E03\u6797\u503C","attribute.boolean.description":"\u597D\u6216\u4E0D\u597D\u30011 \u6216 0\u3001\u662F\u6216\u5426","attribute.component":"\u5143\u4EF6","attribute.component.description":"\u7D44\u5408\u6B04\u4F4D\u503C\u4EE5\u4FBF\u91CD\u8907\u4F7F\u7528","attribute.customField":"\u81EA\u8A02\u6B04\u4F4D","attribute.date":"\u65E5\u671F","attribute.date.description":"\u6642\u9593\u9078\u64C7\u5668\uFF0C\u53EF\u9078\u64C7\u65E5\u671F\u53CA\u6642\u9593","attribute.datetime":"\u65E5\u671F\u548C\u6642\u9593","attribute.dynamiczone":"\u52D5\u614B\u914D\u7F6E","attribute.dynamiczone.description":"\u52D5\u614B\u9078\u64C7\u5143\u4EF6\u53CA\u7DE8\u8F2F\u5176\u5167\u5BB9","attribute.email":"\u96FB\u5B50\u90F5\u4EF6\u5730\u5740","attribute.email.description":"\u9A57\u8B49\u683C\u5F0F\u904E\u7684\u96FB\u5B50\u90F5\u4EF6\u6B04\u4F4D","attribute.enumeration":"\u5217\u8209","attribute.enumeration.description":"\u5217\u8209\u8A2D\u5B9A\u503C\u4E26\u53EF\u64C7\u4E00\u70BA\u503C","attribute.json":"JSON","attribute.json.description":"JSON \u8CC7\u6599\u683C\u5F0F","attribute.media":"\u5A92\u9AD4","attribute.media.description":"\u5716\u7247\u3001\u5F71\u7247\u7B49\u6A94\u6848","attribute.null":" ","attribute.number":"\u6578\u5B57","attribute.number.description":"\u6578\u5B57 (\u6B63\u6574\u6578\u3001\u6D6E\u9EDE\u6578\u3001\u5C0F\u6578)","attribute.password":"\u5BC6\u78BC","attribute.password.description":"\u52A0\u5BC6\u904E\u7684\u5BC6\u78BC\u6B04\u4F4D","attribute.relation":"\u95DC\u806F","attribute.relation.description":"\u6307\u5411\u5176\u4ED6\u96C6\u5408\u985E\u578B","attribute.richtext":"\u591A\u6587\u672C\u683C\u5F0F","attribute.richtext.description":"\u591A\u6587\u672C\u683C\u5F0F\u7DE8\u8F2F\u5668","attribute.text":"\u6587\u5B57","attribute.text.description":"\u77ED\u7684\u6A19\u984C\u6216\u9577\u7684\u63CF\u8FF0\u6587\u5B57","attribute.time":"\u6642\u9593","attribute.timestamp":"\u6642\u9593\u6233\u8A18","attribute.uid":"UID","attribute.uid.description":"\u552F\u4E00\u8B58\u5225\u78BC","button.attributes.add.another":"\u65B0\u589E\u6B04\u4F4D","button.component.add":"\u65B0\u589E\u5143\u4EF6","button.component.create":"\u5EFA\u7ACB\u65B0\u5143\u4EF6","button.model.create":"\u5EFA\u7ACB\u65B0\u7684\u96C6\u5408\u985E\u578B","button.single-types.create":"\u5EFA\u7ACB\u65B0\u7684\u55AE\u4E00\u985E\u578B","component.repeatable":"(\u53EF\u91CD\u8907\u7684)","components.SelectComponents.displayed-value":" \u5DF2\u9078\u64C7 {number, plural, =0 {# components} \u4E00\u500B {# component} \u5176\u4ED6 {# components}}","components.componentSelect.no-component-available":"\u4F60\u5DF2\u7D93\u52A0\u5165\u4E86\u6240\u6709\u53EF\u4EE5\u52A0\u5165\u7684\u5143\u4EF6","components.componentSelect.no-component-available.with-search":"\u641C\u5C0B\u4E0D\u5230\u7B26\u5408\u7684\u5143\u4EF6","components.componentSelect.value-component":"{number} \u500B\u5143\u4EF6\u88AB\u9078\u53D6 (\u8F38\u5165\u641C\u5C0B\u5143\u4EF6)","components.componentSelect.value-components":"{number} \u500B\u5143\u4EF6\u88AB\u9078\u53D6","configurations":"\u914D\u7F6E\u8A2D\u5B9A","contentType.apiId-plural.description":"\u8907\u6578 API ID","contentType.apiId-plural.label":"API ID (\u8907\u6578)","contentType.apiId-singular.description":"UID \u7528\u65BC\u7522\u751F API \u8DEF\u5F91\u548C\u8CC7\u6599\u5EAB\u8CC7\u6599\u8868/\u96C6\u5408\u7684 UID","contentType.apiId-singular.label":"API ID (\u55AE\u6578)","contentType.collectionName.description":"\u4F7F\u7528\u65BC\u7576\u5167\u5BB9\u96C6\u5408\u540D\u7A31\u8207\u8CC7\u6599\u96C6\u5408\u540D\u7A31\u4E0D\u540C\u6642","contentType.collectionName.label":"\u96C6\u5408\u540D\u7A31","contentType.displayName.label":"\u986F\u793A\u540D\u7A31","contentType.draftAndPublish.description":"\u5728\u767C\u4F48\u9805\u76EE\u524D\uFF0C\u64B0\u5BEB\u8349\u7A3F\u7248\u672C","contentType.draftAndPublish.label":"\u8349\u7A3F/\u767C\u4F48\u7CFB\u7D71","contentType.kind.change.warning":"\u4F60\u8B8A\u66F4\u4E86\u5167\u5BB9\u985E\u578B\uFF1AAPI \u5C07\u6703\u88AB\u91CD\u7F6E (\u8DEF\u7531\u5668\u3001\u63A7\u5236\u5668\u3001\u548C\u670D\u52D9\u5C07\u6703\u88AB\u8986\u5BEB)\u3002","error.attributeName.reserved-name":"\u9019\u500B\u6B04\u4F4D\u540D\u7A31\u4E0D\u53EF\u4EE5\u5728\u6B64\u5167\u5BB9\u985E\u578B\u5167\u88AB\u4F7F\u7528\uFF0C\u6709\u53EF\u80FD\u6703\u7834\u58DE\u5176\u4ED6\u529F\u80FD","error.contentType.pluralName-used":"\u6B64\u6578\u503C\u4E0D\u80FD\u8207\u55AE\u6578\u76F8\u540C","error.contentType.singularName-used":"\u6B64\u6578\u503C\u4E0D\u80FD\u8207\u8907\u6578\u76F8\u540C","error.contentTypeName.reserved-name":"\u9019\u500B\u5167\u5BB9\u985E\u578B\u540D\u7A31\u4E0D\u53EF\u4EE5\u5728\u6B64\u5C08\u6848\u5167\u88AB\u4F7F\u7528\uFF0C\u6709\u53EF\u80FD\u6703\u7834\u58DE\u5176\u4ED6\u529F\u80FD","error.validation.enum-duplicate":"\u4E0D\u5141\u53D6\u91CD\u8907\u7684\u503C","error.validation.enum-empty-string":"\u4E0D\u5141\u8A31\u7A7A\u5B57\u4E32","error.validation.enum-regex":"\u6709\u4E00\u500B\u4EE5\u4E0A\u7684\u6578\u503C\u7121\u6548\u3002\u6578\u503C\u5728\u9996\u500B\u6578\u5B57\u524D\u61C9\u5148\u6709\u82F1\u6587\u5B57\u6BCD\u3002","error.validation.minSupMax":"Can\'t be superior","error.validation.positive":"\u5FC5\u9808\u70BA\u6B63\u6578","error.validation.regex":"\u4E0D\u5408\u6CD5\u7684\u6B63\u898F\u5F0F","error.validation.relation.targetAttribute-taken":"\u8A72\u6B04\u4F4D\u540D\u7A31\u5DF2\u88AB\u4F7F\u7528","form.attribute.component.option.add":"\u65B0\u589E\u5143\u4EF6","form.attribute.component.option.create":"\u5EFA\u7ACB\u65B0\u5143\u4EF6","form.attribute.component.option.create.description":"\u4E00\u500B\u53EF\u4EE5\u8DE8\u5143\u4EF6\u53CA\u985E\u578B\u5F15\u7528\u7684\u5143\u4EF6, \u53EF\u4EE5\u5728\u4EFB\u4F55\u5730\u65B9\u88AB\u5F15\u7528","form.attribute.component.option.repeatable":"\u53EF\u91CD\u8907\u7684\u5143\u4EF6","form.attribute.component.option.repeatable.description":"\u9069\u7528\u65BC\u9663\u5217\uFF0C\u6E05\u55AE\uFF0C\u6A19\u7C64\u985E\u578B\u5143\u4EF6","form.attribute.component.option.reuse-existing":"\u4F7F\u7528\u4E00\u500B\u5DF2\u5EFA\u7ACB\u7684\u5143\u4EF6","form.attribute.component.option.reuse-existing.description":"\u53EF\u8907\u7528\u5143\u4EF6\u5DF2\u5EFA\u7ACB\uFF0C\u53EF\u4EE5\u5354\u52A9\u4F60\u5728\u4E0D\u540C\u7684\u5167\u5BB9\u578B\u5225\u9593\u4FDD\u6301\u8CC7\u6599\u4E00\u81F4\u6027","form.attribute.component.option.single":"\u55AE\u4E00\u5143\u4EF6","form.attribute.component.option.single.description":"\u9069\u7528\u65BC\u7D44\u5408\u578B\u6B04\u4F4D\u7FA4\uFF0C\u5982\uFF1A\u5B8C\u6574\u5730\u5740,\u57FA\u672C\u5B8C\u6574\u8CC7\u8A0A ......\u7B49","form.attribute.item.customColumnName":"\u81EA\u8A02\u6B04\u4F4D\u540D\u7A31","form.attribute.item.customColumnName.description":"\u5C07\u8CC7\u6599\u5EAB\u6B04\u4F4D\u540D\u7A31\u4EE5\u66F4\u6613\u61C2\u7684\u683C\u5F0F\u91CD\u65B0\u547D\u540D\uFF0C\u5C0D API \u56DE\u61C9\u5F88\u6709\u7528\u3002","form.attribute.item.date.type.date":"date (\u4F8B\u5982\uFF1A01/01/{currentYear})","form.attribute.item.date.type.datetime":"datetime (\u4F8B\u5982\uFF1A01/01/{currentYear} 00:00 AM)","form.attribute.item.date.type.time":"time (\u4F8B\u5982\uFF1A00:00 AM)","form.attribute.item.defineRelation.fieldName":"\u6B04\u4F4D\u540D\u7A31","form.attribute.item.enumeration.graphql":"GraphQL \u540D\u7A31\u8986\u5BEB","form.attribute.item.enumeration.graphql.description":"\u53EF\u4EE5\u8B93\u60A8\u8986\u5BEB GraphQL \u7684\u9810\u8A2D\u540D\u7A31","form.attribute.item.enumeration.placeholder":"\u4F8B:\\n\u65E9\u4E0A\\n\u4E2D\u5348\\n\u665A\u4E0A","form.attribute.item.enumeration.rules":"\u503C (\u683C\u5F0F\u70BA\u4E00\u884C\u4E00\u500B\u503C)","form.attribute.item.maximum":"\u6700\u5927\u6578\u503C","form.attribute.item.maximumLength":"\u6700\u5927\u9577\u5EA6","form.attribute.item.minimum":"\u6700\u5C0F\u6578\u503C","form.attribute.item.minimumLength":"\u6700\u5C0F\u9577\u5EA6","form.attribute.item.number.type":"\u6578\u5B57\u683C\u5F0F","form.attribute.item.number.type.biginteger":"\u5927\u6574\u6578 (\u4F8B\u5982\uFF1A123456789)","form.attribute.item.number.type.decimal":"\u6D6E\u9EDE\u6578 (decimal) (\u4F8B: 2.22)","form.attribute.item.number.type.float":"\u6D6E\u9EDE\u6578 (float) (\u4F8B: 3.33333333)","form.attribute.item.number.type.integer":"\u6574\u6578 (\u4F8B: 10)","form.attribute.item.privateField":"\u96B1\u5BC6\u6B04\u4F4D","form.attribute.item.privateField.description":"\u8A72\u6B04\u4F4D\u4E0D\u6703\u88AB\u986F\u793A\u5728 API \u7684\u56DE\u50B3\u8CC7\u6599\u4E2D","form.attribute.item.requiredField":"\u5FC5\u586B\u6B04\u4F4D","form.attribute.item.requiredField.description":"\u5982\u679C\u9019\u500B\u6B04\u4F4D\u7559\u7A7A\uFF0C\u60A8\u5C07\u4E0D\u80FD\u5EFA\u7ACB\u9805\u76EE\u3002","form.attribute.item.text.regex":"\u6B63\u898F\u5F0F","form.attribute.item.text.regex.description":"\u6587\u672C\u6B63\u898F\u8868\u9054\u5F0F","form.attribute.item.uniqueField":"\u552F\u4E00\u6B04\u4F4D","form.attribute.item.uniqueField.description":"\u5982\u679C\u5DF2\u5B58\u5728\u7684\u9805\u76EE\u6709\u4E00\u6A21\u4E00\u6A23\u7684\u5167\u5BB9\uFF0C\u60A8\u5C07\u4E0D\u80FD\u5EFA\u7ACB\u9805\u76EE\u3002","form.attribute.media.allowed-types":"\u9078\u64C7\u5408\u6CD5\u7684\u591A\u5A92\u9AD4\u985E\u578B","form.attribute.media.allowed-types.option-files":"\u6A94\u6848","form.attribute.media.allowed-types.option-images":"\u5716\u7247","form.attribute.media.allowed-types.option-videos":"\u5F71\u7247","form.attribute.media.option.multiple":"\u8907\u6578\u591A\u5A92\u9AD4","form.attribute.media.option.multiple.description":"\u9069\u7528\u65BC\u8F2A\u64A5\u6A21\u7D44\u6216\u591A\u6A94\u6848\u4E0B\u8F09","form.attribute.media.option.single":"\u55AE\u4E00\u591A\u5A92\u9AD4","form.attribute.media.option.single.description":"\u9069\u7528\u65BC\u5927\u982D\u8CBC\u6216\u80CC\u666F\u5716","form.attribute.settings.default":"\u9810\u8A2D\u503C","form.attribute.text.option.long-text":"\u9577\u6587\u5B57","form.attribute.text.option.long-text.description":"\u9069\u7528\u65BC\u63CF\u8FF0\u53CA\u81EA\u50B3\u5167\u5BB9\uFF0C\u4F46\u7121\u6CD5\u88AB\u7CBE\u6E96\u641C\u5C0B","form.attribute.text.option.short-text":"\u77ED\u6587\u5B57","form.attribute.text.option.short-text.description":"\u9069\u7528\u65BC\u6A19\u984C,\u540D\u7A31,\u9023\u7D50\u4E14\u53EF\u4EE5\u88AB\u7CBE\u6E96\u641C\u5C0B","form.button.add-components-to-dynamiczone":"\u65B0\u589E\u5143\u4EF6\u81F3\u52D5\u614B\u914D\u7F6E","form.button.add-field":"\u65B0\u589E\u6B04\u4F4D","form.button.add-first-field-to-created-component":"\u65B0\u589E\u5143\u4EF6\u7684\u7B2C\u4E00\u500B\u6B04\u4F4D","form.button.add.field.to.collectionType":"\u65B0\u589E\u5176\u4ED6\u6B04\u4F4D\u65BC\u6B64\u96C6\u5408\u985E\u578B","form.button.add.field.to.component":"\u65B0\u589E\u5176\u4ED6\u6B04\u4F4D\u65BC\u6B64\u5143\u4EF6","form.button.add.field.to.contentType":"\u65B0\u589E\u5176\u4ED6\u6B04\u4F4D\u65BC\u6B64\u5167\u5BB9\u985E\u578B","form.button.add.field.to.singleType":"\u65B0\u589E\u5176\u4ED6\u6B04\u4F4D\u65BC\u6B64\u55AE\u4E00\u985E\u578B","form.button.cancel":"\u53D6\u6D88","form.button.collection-type.description":"\u9069\u7528\u65BC\u8907\u6578\u5BE6\u4F8B\uFF0C\u5982\u8B70\u984C\u6587\u7AE0\u3001\u7522\u54C1\u3001\u8CBC\u6587......\u7B49","form.button.collection-type.name":"\u96C6\u5408\u578B\u5225","form.button.configure-component":"\u914D\u7F6E\u5143\u4EF6","form.button.configure-view":"\u914D\u7F6E\u756B\u9762","form.button.select-component":"\u9078\u64C7\u4E00\u500B\u5143\u4EF6","form.button.single-type.description":"\u9069\u7528\u65BC\u55AE\u4E00\u5BE6\u4F8B\uFF0C\u5982\u9996\u9801\u3001\u95DC\u65BC ...... \u7B49","form.button.single-type.name":"\u55AE\u4E00\u578B\u5225","form.contentType.divider.draft-publish":"\u8349\u7A3F/\u767C\u4F48","from":"\u5F9E","listView.headerLayout.description":"\u5EFA\u7ACB\u60A8\u7684\u5167\u5BB9\u7684\u8CC7\u6599\u7D50\u69CB","menu.section.components.name":"\u5143\u4EF6","menu.section.models.name":"\u96C6\u5408\u578B\u5225","menu.section.single-types.name":"\u55AE\u4E00\u578B\u5225","modalForm.attribute.form.base.name.description":"\u6B04\u4F4D\u540D\u7A31\u4E0D\u5141\u8A31\u7A7A\u767D","modalForm.attribute.form.base.name.placeholder":"\u4F8B\u5982\uFF1ASlug\u3001SEO \u7DB2\u5740\u3001Canonical \u7DB2\u5740","modalForm.attribute.target-field":"\u95DC\u806F\u76EE\u6A19\u6B04\u4F4D","modalForm.attributes.select-component":"\u9078\u64C7\u4E00\u500B\u5143\u4EF6","modalForm.attributes.select-components":"\u9078\u64C7\u591A\u500B\u5143\u4EF6","modalForm.collectionType.header-create":"\u5EFA\u7ACB\u96C6\u5408\u578B\u5225","modalForm.component.header-create":"\u5EFA\u7ACB\u5143\u4EF6","modalForm.components.create-component.category.label":"\u9078\u64C7\u6216\u65B0\u589E\u4E00\u500B\u5206\u985E","modalForm.components.icon.label":"\u5716\u793A","modalForm.empty.button":"\u65B0\u589E\u81EA\u8A02\u6B04\u4F4D","modalForm.empty.heading":"\u9019\u88E1\u76EE\u524D\u4EC0\u9EBC\u90FD\u6C92\u6709\u3002","modalForm.empty.sub-heading":"\u900F\u904E\u64F4\u5145\u529F\u80FD\u627E\u5230\u60A8\u60F3\u641C\u5C0B\u7684\u9805\u76EE\u3002","modalForm.editCategory.base.name.description":"\u5206\u985E\u540D\u7A31\u4E0D\u5141\u8A31\u7A7A\u767D","modalForm.header-edit":"\u7DE8\u8F2F {name}","modalForm.header.categories":"\u8907\u6578\u5206\u985E","modalForm.singleType.header-create":"\u5EFA\u7ACB\u55AE\u4E00\u578B\u5225","modalForm.sub-header.addComponentToDynamicZone":"\u5728\u52D5\u614B\u914D\u7F6E\u5340\u65B0\u589E\u4E00\u500B\u5143\u4EF6","modalForm.sub-header.attribute.create":"\u65B0\u589E {type} \u6B04\u4F4D","modalForm.sub-header.attribute.create.step":"\u65B0\u589E\u5143\u4EF6 ({step}/2)","modalForm.sub-header.attribute.edit":"\u7DE8\u8F2F {name}","modalForm.sub-header.chooseAttribute.collectionType":"\u9078\u64C7\u96C6\u5408\u578B\u5225\u7684\u4E00\u500B\u6B04\u4F4D","modalForm.sub-header.chooseAttribute.component":"\u9078\u64C7\u5143\u4EF6\u7684\u4E00\u500B\u6B04\u4F4D","modalForm.sub-header.chooseAttribute.singleType":"\u9078\u64C7\u55AE\u4E00\u578B\u5225\u7684\u4E00\u500B\u6B04\u4F4D","modalForm.custom-fields.advanced.settings.extended":"\u64F4\u5145\u8A2D\u5B9A","modalForm.tabs.custom":"\u81EA\u8A02","modalForm.tabs.custom.howToLink":"\u5982\u4F55\u65B0\u589E\u81EA\u8A02\u6B04\u4F4D","modalForm.tabs.default":"\u9810\u8A2D","modalForm.tabs.label":"\u9810\u8A2D\u548C\u81EA\u8A02\u985E\u578B\u5206\u9801","modelPage.attribute.relation-polymorphic":"\u95DC\u806F (\u591A\u5C0D\u591A\u591A\u578B)","modelPage.attribute.relationWith":"\u95DC\u806F\u5230","notification.error.dynamiczone-min.validation":"\u81F3\u5C11\u8981\u6709\u4E00\u500B\u4F4D\u65BC\u52D5\u614B\u5340\u57DF\u4E2D\u7684\u5143\u4EF6\u624D\u80FD\u5132\u5B58\u5167\u5BB9\u578B\u5225","notification.info.autoreaload-disable":"\u555F\u7528\u9019\u500B\u64F4\u5145\u6A21\u7D44\u9700\u8981\u91CD\u65B0\u555F\u52D5\uFF0C\u4F7F\u7528 `strapi develop` \u6307\u4EE4\u91CD\u65B0\u555F\u52D5","notification.info.creating.notSaved":"\u5728\u5EFA\u7ACB\u65B0\u7684\u96C6\u5408\u578B\u5225\u6216\u5143\u4EF6\u524D\u8ACB\u8A18\u5F97\u5132\u5B58","plugin.description.long":"\u70BA\u60A8\u7684 API \u5B9A\u7FA9\u8CC7\u6599\u7D50\u69CB\uFF0C\u4F7F\u60A8\u8F15\u9B06\u65B0\u589E\u6B04\u4F4D\u548C\u95DC\u806F\u7D50\u69CB\uFF0C\u60A8\u6240\u505A\u7684\u4FEE\u6539\u6703\u81EA\u52D5\u66F4\u65B0\u5C08\u6848\u3002","plugin.description.short":"\u70BA\u60A8\u7684 API \u5B9A\u7FA9\u8CC7\u6599\u7D50\u69CB","plugin.name":"\u5167\u5BB9\u578B\u5225\u5EFA\u7ACB\u8005","popUpForm.navContainer.advanced":"\u9032\u968E\u8A2D\u5B9A","popUpForm.navContainer.base":"\u57FA\u672C\u8A2D\u5B9A","popUpWarning.bodyMessage.cancel-modifications":"\u4F60\u78BA\u5B9A\u8981\u53D6\u6D88\u4F60\u7684\u4FEE\u6539\u55CE\uFF1F","popUpWarning.bodyMessage.cancel-modifications.with-components":"\u4F60\u78BA\u5B9A\u8981\u53D6\u6D88\u4F60\u7684\u4FEE\u6539\u55CE\uFF1F\u90E8\u4EFD\u5143\u4EF6\u5DF2\u88AB\u65B0\u589E\u6216\u4FEE\u6539...","popUpWarning.bodyMessage.category.delete":"\u4F60\u78BA\u5B9A\u8981\u522A\u9664\u6B64\u5206\u985E\u55CE\uFF1F\u6240\u6709\u6B64\u5206\u985E\u5167\u7684\u5143\u4EF6\u90FD\u6703\u88AB\u522A\u9664.","popUpWarning.bodyMessage.component.delete":"\u4F60\u78BA\u5B9A\u8981\u522A\u9664\u6B64\u5143\u4EF6\u55CE\uFF1F","popUpWarning.bodyMessage.contentType.delete":"\u60A8\u78BA\u5B9A\u8981\u522A\u9664\u9019\u500B\u8CC7\u6599\u7D50\u69CB\u55CE\uFF1F","popUpWarning.draft-publish.button.confirm":"\u662F\u7684\uFF0C\u8ACB\u505C\u7528","popUpWarning.draft-publish.message":"\u5982\u679C\u60A8\u505C\u7528\u4E86\u8349\u7A3F/\u767C\u4F48\u7CFB\u7D71\uFF0C\u60A8\u7684\u8349\u7A3F\u5C07\u88AB\u522A\u9664\u3002","popUpWarning.draft-publish.second-message":"\u60A8\u78BA\u5B9A\u8981\u505C\u7528\u55CE\uFF1F","prompt.unsaved":"\u4F60\u78BA\u5B9A\u8981\u96E2\u958B\u55CE\uFF1F\u6240\u6709\u4F60\u7684\u4FEE\u6539\u90FD\u6703\u5931\u6548\u3002","relation.attributeName.placeholder":"\u4F8B\u5982\uFF1A\u4F5C\u8005\u3001\u985E\u5225\u3001\u6A19\u7C64...","relation.manyToMany":"\u6709\u800C\u4E14\u5C6C\u65BC\u8A31\u591A","relation.manyToOne":"\u6709\u8A31\u591A","relation.manyWay":"\u6709\u8A31\u591A","relation.oneToMany":"\u5C6C\u65BC\u8A31\u591A","relation.oneToOne":"\u4E00\u5C0D\u4E00\u5230","relation.oneWay":"\u6709\u4E00\u500B","table.button.no-fields":"\u65B0\u589E\u6B04\u4F4D","table.content.create-first-content-type":"\u5EFA\u7ACB\u60A8\u7684\u9996\u500B\u96C6\u5408\u578B\u5225","table.content.no-fields.collection-type":"\u5411\u6B64\u96C6\u5408\u578B\u5225\u65B0\u589E\u9996\u500B\u6B04\u4F4D","table.content.no-fields.component":"\u5411\u6B64\u5143\u4EF6\u65B0\u589E\u9996\u500B\u6B04\u4F4D"}')}}]);
1
+ "use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4302],{63338:function(t){t.exports=JSON.parse('{"attribute.boolean":"\u5E03\u6797\u503C","attribute.boolean.description":"\u597D\u6216\u4E0D\u597D\u30011 \u6216 0\u3001\u662F\u6216\u5426","attribute.component":"\u5143\u4EF6","attribute.component.description":"\u7D44\u5408\u6B04\u4F4D\u503C\u4EE5\u4FBF\u91CD\u8907\u4F7F\u7528","attribute.customField":"\u81EA\u8A02\u6B04\u4F4D","attribute.date":"\u65E5\u671F","attribute.date.description":"\u6642\u9593\u9078\u64C7\u5668\uFF0C\u53EF\u9078\u64C7\u65E5\u671F\u53CA\u6642\u9593","attribute.datetime":"\u65E5\u671F\u548C\u6642\u9593","attribute.dynamiczone":"\u52D5\u614B\u914D\u7F6E","attribute.dynamiczone.description":"\u52D5\u614B\u9078\u64C7\u5143\u4EF6\u53CA\u7DE8\u8F2F\u5176\u5167\u5BB9","attribute.email":"\u96FB\u5B50\u90F5\u4EF6\u5730\u5740","attribute.email.description":"\u9A57\u8B49\u683C\u5F0F\u904E\u7684\u96FB\u5B50\u90F5\u4EF6\u6B04\u4F4D","attribute.enumeration":"\u5217\u8209","attribute.enumeration.description":"\u5217\u8209\u8A2D\u5B9A\u503C\u4E26\u53EF\u64C7\u4E00\u70BA\u503C","attribute.json":"JSON","attribute.json.description":"JSON \u8CC7\u6599\u683C\u5F0F","attribute.media":"\u5A92\u9AD4","attribute.media.description":"\u5716\u7247\u3001\u5F71\u7247\u7B49\u6A94\u6848","attribute.null":" ","attribute.number":"\u6578\u5B57","attribute.number.description":"\u6578\u5B57 (\u6B63\u6574\u6578\u3001\u6D6E\u9EDE\u6578\u3001\u5C0F\u6578)","attribute.password":"\u5BC6\u78BC","attribute.password.description":"\u52A0\u5BC6\u904E\u7684\u5BC6\u78BC\u6B04\u4F4D","attribute.relation":"\u95DC\u806F","attribute.relation.description":"\u6307\u5411\u5176\u4ED6\u96C6\u5408\u985E\u578B","attribute.richtext":"\u591A\u6587\u672C\u683C\u5F0F","attribute.richtext.description":"\u591A\u6587\u672C\u683C\u5F0F\u7DE8\u8F2F\u5668","attribute.text":"\u6587\u5B57","attribute.text.description":"\u77ED\u7684\u6A19\u984C\u6216\u9577\u7684\u63CF\u8FF0\u6587\u5B57","attribute.time":"\u6642\u9593","attribute.timestamp":"\u6642\u9593\u6233\u8A18","attribute.uid":"UID","attribute.uid.description":"\u552F\u4E00\u8B58\u5225\u78BC","button.attributes.add.another":"\u65B0\u589E\u6B04\u4F4D","button.component.add":"\u65B0\u589E\u5143\u4EF6","button.component.create":"\u5EFA\u7ACB\u65B0\u5143\u4EF6","button.model.create":"\u5EFA\u7ACB\u65B0\u7684\u96C6\u5408\u985E\u578B","button.single-types.create":"\u5EFA\u7ACB\u65B0\u7684\u55AE\u4E00\u985E\u578B","component.repeatable":"(\u53EF\u91CD\u8907\u7684)","components.SelectComponents.displayed-value":" \u5DF2\u9078\u64C7 {number, plural, =0 {# components} \u4E00\u500B {# component} \u5176\u4ED6 {# components}}","components.componentSelect.no-component-available":"\u4F60\u5DF2\u7D93\u52A0\u5165\u4E86\u6240\u6709\u53EF\u4EE5\u52A0\u5165\u7684\u5143\u4EF6","components.componentSelect.no-component-available.with-search":"\u641C\u5C0B\u4E0D\u5230\u7B26\u5408\u7684\u5143\u4EF6","components.componentSelect.value-component":"{number} \u500B\u5143\u4EF6\u88AB\u9078\u53D6 (\u8F38\u5165\u641C\u5C0B\u5143\u4EF6)","components.componentSelect.value-components":"{number} \u500B\u5143\u4EF6\u88AB\u9078\u53D6","configurations":"\u914D\u7F6E\u8A2D\u5B9A","contentType.apiId-plural.description":"\u8907\u6578 API ID","contentType.apiId-plural.label":"API ID (\u8907\u6578)","contentType.apiId-singular.description":"UID \u7528\u65BC\u7522\u751F API \u8DEF\u5F91\u548C\u8CC7\u6599\u5EAB\u8CC7\u6599\u8868/\u96C6\u5408\u7684 UID","contentType.apiId-singular.label":"API ID (\u55AE\u6578)","contentType.collectionName.description":"\u4F7F\u7528\u65BC\u7576\u5167\u5BB9\u96C6\u5408\u540D\u7A31\u8207\u8CC7\u6599\u96C6\u5408\u540D\u7A31\u4E0D\u540C\u6642","contentType.collectionName.label":"\u96C6\u5408\u540D\u7A31","contentType.displayName.label":"\u986F\u793A\u540D\u7A31","contentType.draftAndPublish.description":"\u5728\u767C\u4F48\u9805\u76EE\u524D\uFF0C\u64B0\u5BEB\u8349\u7A3F\u7248\u672C","contentType.draftAndPublish.label":"\u8349\u7A3F/\u767C\u4F48\u7CFB\u7D71","contentType.kind.change.warning":"\u4F60\u8B8A\u66F4\u4E86\u5167\u5BB9\u985E\u578B\uFF1AAPI \u5C07\u6703\u88AB\u91CD\u7F6E (\u8DEF\u7531\u5668\u3001\u63A7\u5236\u5668\u3001\u548C\u670D\u52D9\u5C07\u6703\u88AB\u8986\u5BEB)\u3002","error.attributeName.reserved-name":"\u9019\u500B\u6B04\u4F4D\u540D\u7A31\u4E0D\u53EF\u4EE5\u5728\u6B64\u5167\u5BB9\u985E\u578B\u5167\u88AB\u4F7F\u7528\uFF0C\u6709\u53EF\u80FD\u6703\u7834\u58DE\u5176\u4ED6\u529F\u80FD","error.contentType.pluralName-used":"\u6B64\u6578\u503C\u4E0D\u80FD\u8207\u55AE\u6578\u76F8\u540C","error.contentType.singularName-used":"\u6B64\u6578\u503C\u4E0D\u80FD\u8207\u8907\u6578\u76F8\u540C","error.contentTypeName.reserved-name":"\u9019\u500B\u5167\u5BB9\u985E\u578B\u540D\u7A31\u4E0D\u53EF\u4EE5\u5728\u6B64\u5C08\u6848\u5167\u88AB\u4F7F\u7528\uFF0C\u6709\u53EF\u80FD\u6703\u7834\u58DE\u5176\u4ED6\u529F\u80FD","error.validation.enum-duplicate":"\u4E0D\u5141\u53D6\u91CD\u8907\u7684\u503C","error.validation.enum-empty-string":"\u4E0D\u5141\u8A31\u7A7A\u5B57\u4E32","error.validation.enum-regex":"\u6709\u4E00\u500B\u4EE5\u4E0A\u7684\u6578\u503C\u7121\u6548\u3002\u6578\u503C\u5728\u9996\u500B\u6578\u5B57\u524D\u61C9\u5148\u6709\u82F1\u6587\u5B57\u6BCD\u3002","error.validation.minSupMax":"Can\'t be superior","error.validation.positive":"\u5FC5\u9808\u70BA\u6B63\u6578","error.validation.regex":"\u4E0D\u5408\u6CD5\u7684\u6B63\u898F\u5F0F","error.validation.relation.targetAttribute-taken":"\u8A72\u6B04\u4F4D\u540D\u7A31\u5DF2\u88AB\u4F7F\u7528","form.attribute.component.option.add":"\u65B0\u589E\u5143\u4EF6","form.attribute.component.option.create":"\u5EFA\u7ACB\u65B0\u5143\u4EF6","form.attribute.component.option.create.description":"\u4E00\u500B\u53EF\u4EE5\u8DE8\u5143\u4EF6\u53CA\u985E\u578B\u5F15\u7528\u7684\u5143\u4EF6, \u53EF\u4EE5\u5728\u4EFB\u4F55\u5730\u65B9\u88AB\u5F15\u7528","form.attribute.component.option.repeatable":"\u53EF\u91CD\u8907\u7684\u5143\u4EF6","form.attribute.component.option.repeatable.description":"\u9069\u7528\u65BC\u9663\u5217\uFF0C\u6E05\u55AE\uFF0C\u6A19\u7C64\u985E\u578B\u5143\u4EF6","form.attribute.component.option.reuse-existing":"\u4F7F\u7528\u4E00\u500B\u5DF2\u5EFA\u7ACB\u7684\u5143\u4EF6","form.attribute.component.option.reuse-existing.description":"\u53EF\u8907\u7528\u5143\u4EF6\u5DF2\u5EFA\u7ACB\uFF0C\u53EF\u4EE5\u5354\u52A9\u4F60\u5728\u4E0D\u540C\u7684\u5167\u5BB9\u578B\u5225\u9593\u4FDD\u6301\u8CC7\u6599\u4E00\u81F4\u6027","form.attribute.component.option.single":"\u55AE\u4E00\u5143\u4EF6","form.attribute.component.option.single.description":"\u9069\u7528\u65BC\u7D44\u5408\u578B\u6B04\u4F4D\u7FA4\uFF0C\u5982\uFF1A\u5B8C\u6574\u5730\u5740,\u57FA\u672C\u5B8C\u6574\u8CC7\u8A0A ......\u7B49","form.attribute.item.customColumnName":"\u81EA\u8A02\u6B04\u4F4D\u540D\u7A31","form.attribute.item.customColumnName.description":"\u5C07\u8CC7\u6599\u5EAB\u6B04\u4F4D\u540D\u7A31\u4EE5\u66F4\u6613\u61C2\u7684\u683C\u5F0F\u91CD\u65B0\u547D\u540D\uFF0C\u5C0D API \u56DE\u61C9\u5F88\u6709\u7528\u3002","form.attribute.item.date.type.date":"date (\u4F8B\u5982\uFF1A01/01/{currentYear})","form.attribute.item.date.type.datetime":"datetime (\u4F8B\u5982\uFF1A01/01/{currentYear} 00:00 AM)","form.attribute.item.date.type.time":"time (\u4F8B\u5982\uFF1A00:00 AM)","form.attribute.item.defineRelation.fieldName":"\u6B04\u4F4D\u540D\u7A31","form.attribute.item.enumeration.graphql":"GraphQL \u540D\u7A31\u8986\u5BEB","form.attribute.item.enumeration.graphql.description":"\u53EF\u4EE5\u8B93\u60A8\u8986\u5BEB GraphQL \u7684\u9810\u8A2D\u540D\u7A31","form.attribute.item.enumeration.placeholder":"\u4F8B:\\n\u65E9\u4E0A\\n\u4E2D\u5348\\n\u665A\u4E0A","form.attribute.item.enumeration.rules":"\u503C (\u683C\u5F0F\u70BA\u4E00\u884C\u4E00\u500B\u503C)","form.attribute.item.maximum":"\u6700\u5927\u6578\u503C","form.attribute.item.maximumLength":"\u6700\u5927\u9577\u5EA6","form.attribute.item.minimum":"\u6700\u5C0F\u6578\u503C","form.attribute.item.minimumLength":"\u6700\u5C0F\u9577\u5EA6","form.attribute.item.number.type":"\u6578\u5B57\u683C\u5F0F","form.attribute.item.number.type.biginteger":"\u5927\u6574\u6578 (\u4F8B\u5982\uFF1A123456789)","form.attribute.item.number.type.decimal":"\u6D6E\u9EDE\u6578 (decimal) (\u4F8B: 2.22)","form.attribute.item.number.type.float":"\u6D6E\u9EDE\u6578 (float) (\u4F8B: 3.33333333)","form.attribute.item.number.type.integer":"\u6574\u6578 (\u4F8B: 10)","form.attribute.item.privateField":"\u96B1\u5BC6\u6B04\u4F4D","form.attribute.item.privateField.description":"\u8A72\u6B04\u4F4D\u4E0D\u6703\u88AB\u986F\u793A\u5728 API \u7684\u56DE\u50B3\u8CC7\u6599\u4E2D","form.attribute.item.requiredField":"\u5FC5\u586B\u6B04\u4F4D","form.attribute.item.requiredField.description":"\u5982\u679C\u9019\u500B\u6B04\u4F4D\u7559\u7A7A\uFF0C\u60A8\u5C07\u4E0D\u80FD\u5EFA\u7ACB\u9805\u76EE\u3002","form.attribute.item.text.regex":"\u6B63\u898F\u5F0F","form.attribute.item.text.regex.description":"\u6587\u672C\u6B63\u898F\u8868\u9054\u5F0F","form.attribute.item.uniqueField":"\u552F\u4E00\u6B04\u4F4D","form.attribute.item.uniqueField.description":"\u5982\u679C\u5DF2\u5B58\u5728\u7684\u9805\u76EE\u6709\u4E00\u6A21\u4E00\u6A23\u7684\u5167\u5BB9\uFF0C\u60A8\u5C07\u4E0D\u80FD\u5EFA\u7ACB\u9805\u76EE\u3002","form.attribute.media.allowed-types":"\u9078\u64C7\u5408\u6CD5\u7684\u591A\u5A92\u9AD4\u985E\u578B","form.attribute.media.allowed-types.option-files":"\u6A94\u6848","form.attribute.media.allowed-types.option-images":"\u5716\u7247","form.attribute.media.allowed-types.option-videos":"\u5F71\u7247","form.attribute.media.option.multiple":"\u8907\u6578\u591A\u5A92\u9AD4","form.attribute.media.option.multiple.description":"\u9069\u7528\u65BC\u8F2A\u64A5\u6A21\u7D44\u6216\u591A\u6A94\u6848\u4E0B\u8F09","form.attribute.media.option.single":"\u55AE\u4E00\u591A\u5A92\u9AD4","form.attribute.media.option.single.description":"\u9069\u7528\u65BC\u5927\u982D\u8CBC\u6216\u80CC\u666F\u5716","form.attribute.settings.default":"\u9810\u8A2D\u503C","form.attribute.text.option.long-text":"\u9577\u6587\u5B57","form.attribute.text.option.long-text.description":"\u9069\u7528\u65BC\u63CF\u8FF0\u53CA\u81EA\u50B3\u5167\u5BB9\uFF0C\u4F46\u7121\u6CD5\u88AB\u7CBE\u6E96\u641C\u5C0B","form.attribute.text.option.short-text":"\u77ED\u6587\u5B57","form.attribute.text.option.short-text.description":"\u9069\u7528\u65BC\u6A19\u984C,\u540D\u7A31,\u9023\u7D50\u4E14\u53EF\u4EE5\u88AB\u7CBE\u6E96\u641C\u5C0B","form.button.add-components-to-dynamiczone":"\u65B0\u589E\u5143\u4EF6\u81F3\u52D5\u614B\u914D\u7F6E","form.button.add-field":"\u65B0\u589E\u6B04\u4F4D","form.button.add-first-field-to-created-component":"\u65B0\u589E\u5143\u4EF6\u7684\u7B2C\u4E00\u500B\u6B04\u4F4D","form.button.add.field.to.collectionType":"\u65B0\u589E\u5176\u4ED6\u6B04\u4F4D\u65BC\u6B64\u96C6\u5408\u985E\u578B","form.button.add.field.to.component":"\u65B0\u589E\u5176\u4ED6\u6B04\u4F4D\u65BC\u6B64\u5143\u4EF6","form.button.add.field.to.contentType":"\u65B0\u589E\u5176\u4ED6\u6B04\u4F4D\u65BC\u6B64\u5167\u5BB9\u985E\u578B","form.button.add.field.to.singleType":"\u65B0\u589E\u5176\u4ED6\u6B04\u4F4D\u65BC\u6B64\u55AE\u4E00\u985E\u578B","form.button.cancel":"\u53D6\u6D88","form.button.collection-type.description":"\u9069\u7528\u65BC\u8907\u6578\u5BE6\u4F8B\uFF0C\u5982\u8B70\u984C\u6587\u7AE0\u3001\u7522\u54C1\u3001\u8CBC\u6587......\u7B49","form.button.collection-type.name":"\u96C6\u5408\u578B\u5225","form.button.configure-component":"\u914D\u7F6E\u5143\u4EF6","form.button.configure-view":"\u914D\u7F6E\u756B\u9762","form.button.select-component":"\u9078\u64C7\u4E00\u500B\u5143\u4EF6","form.button.single-type.description":"\u9069\u7528\u65BC\u55AE\u4E00\u5BE6\u4F8B\uFF0C\u5982\u9996\u9801\u3001\u95DC\u65BC ...... \u7B49","form.button.single-type.name":"\u55AE\u4E00\u578B\u5225","from":"\u5F9E","listView.headerLayout.description":"\u5EFA\u7ACB\u60A8\u7684\u5167\u5BB9\u7684\u8CC7\u6599\u7D50\u69CB","menu.section.components.name":"\u5143\u4EF6","menu.section.models.name":"\u96C6\u5408\u578B\u5225","menu.section.single-types.name":"\u55AE\u4E00\u578B\u5225","modalForm.attribute.form.base.name.description":"\u6B04\u4F4D\u540D\u7A31\u4E0D\u5141\u8A31\u7A7A\u767D","modalForm.attribute.form.base.name.placeholder":"\u4F8B\u5982\uFF1ASlug\u3001SEO \u7DB2\u5740\u3001Canonical \u7DB2\u5740","modalForm.attribute.target-field":"\u95DC\u806F\u76EE\u6A19\u6B04\u4F4D","modalForm.attributes.select-component":"\u9078\u64C7\u4E00\u500B\u5143\u4EF6","modalForm.attributes.select-components":"\u9078\u64C7\u591A\u500B\u5143\u4EF6","modalForm.collectionType.header-create":"\u5EFA\u7ACB\u96C6\u5408\u578B\u5225","modalForm.component.header-create":"\u5EFA\u7ACB\u5143\u4EF6","modalForm.components.create-component.category.label":"\u9078\u64C7\u6216\u65B0\u589E\u4E00\u500B\u5206\u985E","modalForm.components.icon.label":"\u5716\u793A","modalForm.empty.button":"\u65B0\u589E\u81EA\u8A02\u6B04\u4F4D","modalForm.empty.heading":"\u9019\u88E1\u76EE\u524D\u4EC0\u9EBC\u90FD\u6C92\u6709\u3002","modalForm.empty.sub-heading":"\u900F\u904E\u64F4\u5145\u529F\u80FD\u627E\u5230\u60A8\u60F3\u641C\u5C0B\u7684\u9805\u76EE\u3002","modalForm.editCategory.base.name.description":"\u5206\u985E\u540D\u7A31\u4E0D\u5141\u8A31\u7A7A\u767D","modalForm.header-edit":"\u7DE8\u8F2F {name}","modalForm.header.categories":"\u8907\u6578\u5206\u985E","modalForm.singleType.header-create":"\u5EFA\u7ACB\u55AE\u4E00\u578B\u5225","modalForm.sub-header.addComponentToDynamicZone":"\u5728\u52D5\u614B\u914D\u7F6E\u5340\u65B0\u589E\u4E00\u500B\u5143\u4EF6","modalForm.sub-header.attribute.create":"\u65B0\u589E {type} \u6B04\u4F4D","modalForm.sub-header.attribute.create.step":"\u65B0\u589E\u5143\u4EF6 ({step}/2)","modalForm.sub-header.attribute.edit":"\u7DE8\u8F2F {name}","modalForm.sub-header.chooseAttribute.collectionType":"\u9078\u64C7\u96C6\u5408\u578B\u5225\u7684\u4E00\u500B\u6B04\u4F4D","modalForm.sub-header.chooseAttribute.component":"\u9078\u64C7\u5143\u4EF6\u7684\u4E00\u500B\u6B04\u4F4D","modalForm.sub-header.chooseAttribute.singleType":"\u9078\u64C7\u55AE\u4E00\u578B\u5225\u7684\u4E00\u500B\u6B04\u4F4D","modalForm.custom-fields.advanced.settings.extended":"\u64F4\u5145\u8A2D\u5B9A","modalForm.tabs.custom":"\u81EA\u8A02","modalForm.tabs.custom.howToLink":"\u5982\u4F55\u65B0\u589E\u81EA\u8A02\u6B04\u4F4D","modalForm.tabs.default":"\u9810\u8A2D","modalForm.tabs.label":"\u9810\u8A2D\u548C\u81EA\u8A02\u985E\u578B\u5206\u9801","modelPage.attribute.relation-polymorphic":"\u95DC\u806F (\u591A\u5C0D\u591A\u591A\u578B)","modelPage.attribute.relationWith":"\u95DC\u806F\u5230","notification.error.dynamiczone-min.validation":"\u81F3\u5C11\u8981\u6709\u4E00\u500B\u4F4D\u65BC\u52D5\u614B\u5340\u57DF\u4E2D\u7684\u5143\u4EF6\u624D\u80FD\u5132\u5B58\u5167\u5BB9\u578B\u5225","notification.info.autoreaload-disable":"\u555F\u7528\u9019\u500B\u64F4\u5145\u6A21\u7D44\u9700\u8981\u91CD\u65B0\u555F\u52D5\uFF0C\u4F7F\u7528 `strapi develop` \u6307\u4EE4\u91CD\u65B0\u555F\u52D5","notification.info.creating.notSaved":"\u5728\u5EFA\u7ACB\u65B0\u7684\u96C6\u5408\u578B\u5225\u6216\u5143\u4EF6\u524D\u8ACB\u8A18\u5F97\u5132\u5B58","plugin.description.long":"\u70BA\u60A8\u7684 API \u5B9A\u7FA9\u8CC7\u6599\u7D50\u69CB\uFF0C\u4F7F\u60A8\u8F15\u9B06\u65B0\u589E\u6B04\u4F4D\u548C\u95DC\u806F\u7D50\u69CB\uFF0C\u60A8\u6240\u505A\u7684\u4FEE\u6539\u6703\u81EA\u52D5\u66F4\u65B0\u5C08\u6848\u3002","plugin.description.short":"\u70BA\u60A8\u7684 API \u5B9A\u7FA9\u8CC7\u6599\u7D50\u69CB","plugin.name":"\u5167\u5BB9\u578B\u5225\u5EFA\u7ACB\u8005","popUpForm.navContainer.advanced":"\u9032\u968E\u8A2D\u5B9A","popUpForm.navContainer.base":"\u57FA\u672C\u8A2D\u5B9A","popUpWarning.bodyMessage.cancel-modifications":"\u4F60\u78BA\u5B9A\u8981\u53D6\u6D88\u4F60\u7684\u4FEE\u6539\u55CE\uFF1F","popUpWarning.bodyMessage.cancel-modifications.with-components":"\u4F60\u78BA\u5B9A\u8981\u53D6\u6D88\u4F60\u7684\u4FEE\u6539\u55CE\uFF1F\u90E8\u4EFD\u5143\u4EF6\u5DF2\u88AB\u65B0\u589E\u6216\u4FEE\u6539...","popUpWarning.bodyMessage.category.delete":"\u4F60\u78BA\u5B9A\u8981\u522A\u9664\u6B64\u5206\u985E\u55CE\uFF1F\u6240\u6709\u6B64\u5206\u985E\u5167\u7684\u5143\u4EF6\u90FD\u6703\u88AB\u522A\u9664.","popUpWarning.bodyMessage.component.delete":"\u4F60\u78BA\u5B9A\u8981\u522A\u9664\u6B64\u5143\u4EF6\u55CE\uFF1F","popUpWarning.bodyMessage.contentType.delete":"\u60A8\u78BA\u5B9A\u8981\u522A\u9664\u9019\u500B\u8CC7\u6599\u7D50\u69CB\u55CE\uFF1F","popUpWarning.draft-publish.button.confirm":"\u662F\u7684\uFF0C\u8ACB\u505C\u7528","popUpWarning.draft-publish.message":"\u5982\u679C\u60A8\u505C\u7528\u4E86\u8349\u7A3F/\u767C\u4F48\u7CFB\u7D71\uFF0C\u60A8\u7684\u8349\u7A3F\u5C07\u88AB\u522A\u9664\u3002","popUpWarning.draft-publish.second-message":"\u60A8\u78BA\u5B9A\u8981\u505C\u7528\u55CE\uFF1F","prompt.unsaved":"\u4F60\u78BA\u5B9A\u8981\u96E2\u958B\u55CE\uFF1F\u6240\u6709\u4F60\u7684\u4FEE\u6539\u90FD\u6703\u5931\u6548\u3002","relation.attributeName.placeholder":"\u4F8B\u5982\uFF1A\u4F5C\u8005\u3001\u985E\u5225\u3001\u6A19\u7C64...","relation.manyToMany":"\u6709\u800C\u4E14\u5C6C\u65BC\u8A31\u591A","relation.manyToOne":"\u6709\u8A31\u591A","relation.manyWay":"\u6709\u8A31\u591A","relation.oneToMany":"\u5C6C\u65BC\u8A31\u591A","relation.oneToOne":"\u4E00\u5C0D\u4E00\u5230","relation.oneWay":"\u6709\u4E00\u500B","table.button.no-fields":"\u65B0\u589E\u6B04\u4F4D","table.content.create-first-content-type":"\u5EFA\u7ACB\u60A8\u7684\u9996\u500B\u96C6\u5408\u578B\u5225","table.content.no-fields.collection-type":"\u5411\u6B64\u96C6\u5408\u578B\u5225\u65B0\u589E\u9996\u500B\u6B04\u4F4D","table.content.no-fields.component":"\u5411\u6B64\u5143\u4EF6\u65B0\u589E\u9996\u500B\u6B04\u4F4D"}')}}]);