@strapi/admin 4.1.6-alpha.0 → 4.1.6-alpha.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 (344) hide show
  1. package/admin/src/StrapiApp.js +40 -42
  2. package/admin/src/components/AuthenticatedApp/utils/api.js +1 -1
  3. package/admin/src/components/AutoReloadOverlayBlockerProvider/Blocker.js +1 -1
  4. package/admin/src/components/GuidedTour/Homepage/index.js +2 -2
  5. package/admin/src/components/GuidedTour/Modal/components/Modal.js +1 -1
  6. package/admin/src/components/LeftMenu/index.js +2 -2
  7. package/admin/src/components/Providers/index.js +65 -32
  8. package/admin/src/components/Theme/index.js +11 -12
  9. package/admin/src/components/ThemeToggleProvider/index.js +66 -0
  10. package/admin/src/content-manager/components/DynamicTable/CellContent/RelationMultiple/index.js +135 -0
  11. package/admin/src/content-manager/components/DynamicTable/CellContent/RelationSingle/index.js +32 -0
  12. package/admin/src/content-manager/components/DynamicTable/CellContent/RepeatableComponent/index.js +62 -0
  13. package/admin/src/content-manager/components/DynamicTable/CellContent/SingleComponent/index.js +37 -0
  14. package/admin/src/content-manager/components/DynamicTable/CellContent/index.js +52 -27
  15. package/admin/src/content-manager/components/DynamicTable/CellContent/utils/hasContent.js +29 -0
  16. package/admin/src/content-manager/components/DynamicTable/CellContent/utils/isSingleRelation.js +3 -0
  17. package/admin/src/content-manager/components/DynamicTable/TableRows/index.js +1 -1
  18. package/admin/src/content-manager/components/SelectMany/index.js +1 -1
  19. package/admin/src/content-manager/components/SelectOne/index.js +1 -1
  20. package/admin/src/content-manager/components/SelectWrapper/utils/getSelectStyles.js +3 -1
  21. package/admin/src/content-manager/components/Wysiwyg/EditorStylesContainer.js +4 -2
  22. package/admin/src/content-manager/hooks/useFetchContentTypeLayout/utils/formatLayouts.js +23 -2
  23. package/admin/src/content-manager/pages/EditSettingsView/components/FieldButtonContent.js +1 -1
  24. package/admin/src/content-manager/pages/EditSettingsView/components/FormModal.js +1 -1
  25. package/admin/src/content-manager/pages/EditSettingsView/index.js +2 -2
  26. package/admin/src/content-manager/pages/EditView/Header/index.js +1 -1
  27. package/admin/src/content-manager/pages/ListSettingsView/components/EditFieldForm.js +1 -1
  28. package/admin/src/content-manager/pages/ListSettingsView/index.js +2 -2
  29. package/admin/src/content-manager/pages/ListView/actions.js +2 -1
  30. package/admin/src/content-manager/pages/ListView/index.js +2 -5
  31. package/admin/src/content-manager/pages/ListView/reducer.js +55 -21
  32. package/admin/src/content-manager/pages/ListViewLayoutManager/index.js +1 -1
  33. package/admin/src/content-manager/utils/checkIfAttributeIsDisplayable.js +1 -1
  34. package/admin/src/contexts/ThemeToggle/index.js +5 -0
  35. package/admin/src/contexts/index.js +1 -0
  36. package/admin/src/hooks/index.js +1 -0
  37. package/admin/src/hooks/useMenu/reducer.js +3 -3
  38. package/admin/src/hooks/useReleaseNotification/index.js +1 -1
  39. package/admin/src/hooks/useSettingsMenu/init.js +2 -2
  40. package/admin/src/hooks/useThemeToggle/index.js +10 -0
  41. package/admin/src/layouts/UnauthenticatedLayout/index.js +1 -1
  42. package/admin/src/pages/Admin/Onboarding/index.js +2 -2
  43. package/admin/src/pages/AuthPage/components/Login/BaseLogin.js +1 -1
  44. package/admin/src/pages/AuthPage/components/Register/index.js +6 -6
  45. package/admin/src/pages/AuthPage/components/ResetPassword/index.js +3 -3
  46. package/admin/src/pages/HomePage/ContentBlocks.js +1 -1
  47. package/admin/src/pages/InstalledPluginsPage/Plugins.js +3 -3
  48. package/admin/src/pages/InstalledPluginsPage/index.js +1 -1
  49. package/admin/src/pages/MarketplacePage/components/PluginCard/InstallPluginButton.js +66 -0
  50. package/admin/src/pages/MarketplacePage/components/PluginCard/index.js +13 -36
  51. package/admin/src/pages/MarketplacePage/index.js +18 -2
  52. package/admin/src/pages/ProfilePage/index.js +79 -15
  53. package/admin/src/pages/ProfilePage/utils/api.js +4 -2
  54. package/admin/src/pages/SettingsPage/components/SettingsNav/index.js +1 -1
  55. package/admin/src/pages/SettingsPage/index.js +1 -1
  56. package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/LoadingView/index.js +1 -1
  57. package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/index.js +3 -3
  58. package/admin/src/pages/SettingsPage/pages/ApiTokens/ListView/DynamicTable/DeleteButton/index.js +1 -1
  59. package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/index.js +1 -1
  60. package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ConditionsButton/index.js +1 -1
  61. package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/RoleForm/index.js +3 -3
  62. package/admin/src/pages/SettingsPage/pages/Roles/EditPage/index.js +2 -2
  63. package/admin/src/pages/SettingsPage/pages/Roles/ListPage/index.js +6 -6
  64. package/admin/src/pages/SettingsPage/pages/Users/EditPage/index.js +5 -5
  65. package/admin/src/pages/SettingsPage/pages/Users/EditPage/utils/layout.js +1 -1
  66. package/admin/src/pages/SettingsPage/pages/Users/ListPage/DynamicTable/TableRows/index.js +1 -1
  67. package/admin/src/pages/SettingsPage/pages/Users/ListPage/ModalForm/index.js +1 -1
  68. package/admin/src/pages/SettingsPage/pages/Users/ListPage/ModalForm/utils/stepper.js +1 -1
  69. package/admin/src/pages/SettingsPage/pages/Users/ListPage/index.js +1 -1
  70. package/admin/src/pages/SettingsPage/pages/Webhooks/EditView/components/WebhookForm/index.js +3 -3
  71. package/admin/src/pages/SettingsPage/pages/Webhooks/ListView/index.js +7 -7
  72. package/admin/src/pages/UseCasePage/index.js +2 -2
  73. package/admin/src/translations/ar.json +0 -6
  74. package/admin/src/translations/cs.json +0 -8
  75. package/admin/src/translations/de.json +0 -26
  76. package/admin/src/translations/dk.json +0 -53
  77. package/admin/src/translations/en.json +87 -102
  78. package/admin/src/translations/es.json +0 -53
  79. package/admin/src/translations/fr.json +0 -56
  80. package/admin/src/translations/he.json +0 -24
  81. package/admin/src/translations/hu.json +0 -53
  82. package/admin/src/translations/id.json +0 -21
  83. package/admin/src/translations/it.json +0 -22
  84. package/admin/src/translations/ja.json +0 -53
  85. package/admin/src/translations/ko.json +0 -56
  86. package/admin/src/translations/ms.json +0 -12
  87. package/admin/src/translations/nl.json +0 -53
  88. package/admin/src/translations/no.json +0 -22
  89. package/admin/src/translations/pl.json +0 -26
  90. package/admin/src/translations/pt-BR.json +0 -53
  91. package/admin/src/translations/pt.json +0 -13
  92. package/admin/src/translations/ru.json +0 -25
  93. package/admin/src/translations/sk.json +0 -21
  94. package/admin/src/translations/sv.json +0 -6
  95. package/admin/src/translations/th.json +0 -21
  96. package/admin/src/translations/tr.json +0 -13
  97. package/admin/src/translations/uk.json +0 -12
  98. package/admin/src/translations/vi.json +1 -10
  99. package/admin/src/translations/zh-Hans.json +0 -53
  100. package/admin/src/translations/zh.json +0 -56
  101. package/build/4362.d8299f0c.chunk.js +1 -0
  102. package/build/{6250.836851ca.chunk.js → 6404.3c2d0a81.chunk.js} +1 -1
  103. package/build/849.82c29ba7.chunk.js +1 -0
  104. package/build/9260.4233fae2.chunk.js +2 -0
  105. package/build/{9260.fa40c7bd.chunk.js.LICENSE.txt → 9260.4233fae2.chunk.js.LICENSE.txt} +0 -0
  106. package/build/Admin-authenticatedApp.cf7104f9.chunk.js +1 -0
  107. package/build/Admin_homePage.4a3aa22e.chunk.js +1 -0
  108. package/build/Admin_marketplace.4748c8f6.chunk.js +1 -0
  109. package/build/Admin_pluginsPage.89a96d29.chunk.js +1 -0
  110. package/build/Admin_profilePage.7869a07a.chunk.js +1 -0
  111. package/build/Admin_settingsPage.2763454c.chunk.js +1 -0
  112. package/build/admin-edit-roles-page.fbcc195d.chunk.js +1 -0
  113. package/build/admin-edit-users.91e8f5e4.chunk.js +1 -0
  114. package/build/admin-users.0a6acd73.chunk.js +1 -0
  115. package/build/api-tokens-create-page.76e13a35.chunk.js +1 -0
  116. package/build/api-tokens-edit-page.b3d48a7f.chunk.js +1 -0
  117. package/build/api-tokens-list-page.4e822ac8.chunk.js +1 -0
  118. package/build/ar-json.cc19c13c.chunk.js +1 -0
  119. package/build/content-manager.2f6a2082.chunk.js +1 -0
  120. package/build/{content-type-builder-translation-ar-json.f1fedc12.chunk.js → content-type-builder-translation-ar-json.ab0a0caa.chunk.js} +1 -1
  121. package/build/{content-type-builder-translation-cs-json.b593aef5.chunk.js → content-type-builder-translation-cs-json.e3913c9f.chunk.js} +1 -1
  122. package/build/content-type-builder-translation-de-json.5eb3135d.chunk.js +1 -0
  123. package/build/content-type-builder-translation-dk-json.52805572.chunk.js +1 -0
  124. package/build/content-type-builder-translation-en-json.e51b2ec3.chunk.js +1 -0
  125. package/build/{content-type-builder-translation-es-json.e42614fd.chunk.js → content-type-builder-translation-es-json.5a362abf.chunk.js} +1 -1
  126. package/build/content-type-builder-translation-fr-json.afd4a12f.chunk.js +1 -0
  127. package/build/content-type-builder-translation-id-json.4a21dfab.chunk.js +1 -0
  128. package/build/content-type-builder-translation-it-json.4fa203b1.chunk.js +1 -0
  129. package/build/{content-type-builder-translation-ja-json.1459fb88.chunk.js → content-type-builder-translation-ja-json.cbb3b88a.chunk.js} +1 -1
  130. package/build/content-type-builder-translation-ko-json.7daf86c3.chunk.js +1 -0
  131. package/build/{content-type-builder-translation-ms-json.3dd46b39.chunk.js → content-type-builder-translation-ms-json.3755f8c8.chunk.js} +1 -1
  132. package/build/{content-type-builder-translation-nl-json.877dff80.chunk.js → content-type-builder-translation-nl-json.6f8d924b.chunk.js} +1 -1
  133. package/build/{content-type-builder-translation-pl-json.95b2b33d.chunk.js → content-type-builder-translation-pl-json.fc0b0c20.chunk.js} +1 -1
  134. package/build/{content-type-builder-translation-pt-BR-json.d311d056.chunk.js → content-type-builder-translation-pt-BR-json.86b192fa.chunk.js} +1 -1
  135. package/build/{content-type-builder-translation-pt-json.4893266f.chunk.js → content-type-builder-translation-pt-json.b584f79f.chunk.js} +1 -1
  136. package/build/content-type-builder-translation-ru-json.7648049a.chunk.js +1 -0
  137. package/build/{content-type-builder-translation-sk-json.eb4930b0.chunk.js → content-type-builder-translation-sk-json.c12a8dec.chunk.js} +1 -1
  138. package/build/content-type-builder-translation-th-json.668cd5f5.chunk.js +1 -0
  139. package/build/{content-type-builder-translation-tr-json.696283a5.chunk.js → content-type-builder-translation-tr-json.0f52e1e8.chunk.js} +1 -1
  140. package/build/content-type-builder-translation-uk-json.4bf80448.chunk.js +1 -0
  141. package/build/{content-type-builder-translation-zh-Hans-json.c70a6a4a.chunk.js → content-type-builder-translation-zh-Hans-json.76e58138.chunk.js} +1 -1
  142. package/build/{content-type-builder-translation-zh-json.6fe1861a.chunk.js → content-type-builder-translation-zh-json.0bec81f1.chunk.js} +1 -1
  143. package/build/content-type-builder.19ae7eef.chunk.js +1 -0
  144. package/build/cs-json.ce6f2e52.chunk.js +1 -0
  145. package/build/de-json.2087d61e.chunk.js +1 -0
  146. package/build/dk-json.fb9ee45a.chunk.js +1 -0
  147. package/build/{email-settings-page.27ee4a98.chunk.js → email-settings-page.40ee2bda.chunk.js} +1 -1
  148. package/build/en-json.c55e5344.chunk.js +1 -0
  149. package/build/es-json.8f4d89e2.chunk.js +1 -0
  150. package/build/fr-json.2a0b93ed.chunk.js +1 -0
  151. package/build/he-json.917d416c.chunk.js +1 -0
  152. package/build/hu-json.bee23c51.chunk.js +1 -0
  153. package/build/{i18n-settings-page.c4018651.chunk.js → i18n-settings-page.1f6be747.chunk.js} +1 -1
  154. package/build/i18n-translation-de-json.96ae1f68.chunk.js +1 -0
  155. package/build/id-json.fef679cb.chunk.js +1 -0
  156. package/build/index.html +1 -1
  157. package/build/it-json.937b2108.chunk.js +1 -0
  158. package/build/ja-json.b4818378.chunk.js +1 -0
  159. package/build/ko-json.8294a7fc.chunk.js +1 -0
  160. package/build/{main.a8c2970b.js → main.06e1a4bf.js} +2 -2
  161. package/build/{main.a8c2970b.js.LICENSE.txt → main.06e1a4bf.js.LICENSE.txt} +0 -0
  162. package/build/ms-json.f46167ef.chunk.js +1 -0
  163. package/build/nl-json.86eae27d.chunk.js +1 -0
  164. package/build/no-json.17ecda5d.chunk.js +1 -0
  165. package/build/pl-json.0db77f2c.chunk.js +1 -0
  166. package/build/pt-BR-json.4c90cb2d.chunk.js +1 -0
  167. package/build/pt-json.ef0efd89.chunk.js +1 -0
  168. package/build/ru-json.da33236d.chunk.js +1 -0
  169. package/build/{runtime~main.4dafb29d.js → runtime~main.b090a1bb.js} +1 -1
  170. package/build/sk-json.797e898f.chunk.js +1 -0
  171. package/build/sso-settings-page.c5dda65d.chunk.js +1 -0
  172. package/build/sv-json.5bbe6a4f.chunk.js +1 -0
  173. package/build/th-json.c1393c06.chunk.js +1 -0
  174. package/build/tr-json.57cde8b0.chunk.js +1 -0
  175. package/build/uk-json.c6df66d2.chunk.js +1 -0
  176. package/build/{upload-settings.4401f36d.chunk.js → upload-settings.9d3231f4.chunk.js} +1 -1
  177. package/build/upload-translation-de-json.55a7e43a.chunk.js +1 -0
  178. package/build/upload-translation-dk-json.b74134c8.chunk.js +1 -0
  179. package/build/upload-translation-en-json.c4e56528.chunk.js +1 -0
  180. package/build/upload-translation-es-json.15a3015f.chunk.js +1 -0
  181. package/build/upload-translation-fr-json.b12f7247.chunk.js +1 -0
  182. package/build/upload-translation-he-json.bee013d1.chunk.js +1 -0
  183. package/build/upload-translation-it-json.43ec0a8d.chunk.js +1 -0
  184. package/build/upload-translation-ja-json.03f1af04.chunk.js +1 -0
  185. package/build/upload-translation-ko-json.08ad9013.chunk.js +1 -0
  186. package/build/upload-translation-ms-json.30974c82.chunk.js +1 -0
  187. package/build/upload-translation-pl-json.3740abed.chunk.js +1 -0
  188. package/build/upload-translation-pt-BR-json.c7656183.chunk.js +1 -0
  189. package/build/upload-translation-ru-json.0dd4f526.chunk.js +1 -0
  190. package/build/upload-translation-sk-json.55cacd22.chunk.js +1 -0
  191. package/build/upload-translation-th-json.f7aa9392.chunk.js +1 -0
  192. package/build/upload-translation-uk-json.696a16f3.chunk.js +1 -0
  193. package/build/upload-translation-zh-Hans-json.de7bc63f.chunk.js +1 -0
  194. package/build/upload-translation-zh-json.bbc1ed41.chunk.js +1 -0
  195. package/build/{upload.5a2dded7.chunk.js → upload.8edef1ea.chunk.js} +1 -1
  196. package/build/{users-advanced-settings-page.8905d8d8.chunk.js → users-advanced-settings-page.48c437f0.chunk.js} +1 -1
  197. package/build/users-email-settings-page.f39866d6.chunk.js +1 -0
  198. package/build/users-permissions-translation-ar-json.667e7eee.chunk.js +1 -0
  199. package/build/users-permissions-translation-cs-json.995b5d76.chunk.js +1 -0
  200. package/build/users-permissions-translation-de-json.a5c8db9c.chunk.js +1 -0
  201. package/build/users-permissions-translation-dk-json.1fe5e07a.chunk.js +1 -0
  202. package/build/users-permissions-translation-en-json.0e0bc290.chunk.js +1 -0
  203. package/build/users-permissions-translation-es-json.05669296.chunk.js +1 -0
  204. package/build/users-permissions-translation-fr-json.3e3522c3.chunk.js +1 -0
  205. package/build/users-permissions-translation-id-json.186a3f65.chunk.js +1 -0
  206. package/build/users-permissions-translation-it-json.ee5742c4.chunk.js +1 -0
  207. package/build/users-permissions-translation-ja-json.c9cafa6e.chunk.js +1 -0
  208. package/build/users-permissions-translation-ko-json.170f89c2.chunk.js +1 -0
  209. package/build/users-permissions-translation-ms-json.3a128ff4.chunk.js +1 -0
  210. package/build/users-permissions-translation-nl-json.4146aed1.chunk.js +1 -0
  211. package/build/users-permissions-translation-pl-json.a61de7ed.chunk.js +1 -0
  212. package/build/users-permissions-translation-pt-BR-json.51b1cc15.chunk.js +1 -0
  213. package/build/users-permissions-translation-pt-json.85f0e0e1.chunk.js +1 -0
  214. package/build/users-permissions-translation-ru-json.a19b2400.chunk.js +1 -0
  215. package/build/users-permissions-translation-sk-json.27af7260.chunk.js +1 -0
  216. package/build/users-permissions-translation-sv-json.739657b9.chunk.js +1 -0
  217. package/build/users-permissions-translation-th-json.f001fff3.chunk.js +1 -0
  218. package/build/users-permissions-translation-tr-json.3aae5dda.chunk.js +1 -0
  219. package/build/users-permissions-translation-uk-json.a66c7a8c.chunk.js +1 -0
  220. package/build/users-permissions-translation-vi-json.685c65cc.chunk.js +1 -0
  221. package/build/users-permissions-translation-zh-Hans-json.2202741e.chunk.js +1 -0
  222. package/build/users-permissions-translation-zh-json.429a3190.chunk.js +1 -0
  223. package/build/users-providers-settings-page.574ed765.chunk.js +1 -0
  224. package/build/{users-roles-settings-page.a2f6277a.chunk.js → users-roles-settings-page.b836dc30.chunk.js} +1 -1
  225. package/build/vi-json.104a6f3a.chunk.js +1 -0
  226. package/build/webhook-edit-page.b791c6f9.chunk.js +1 -0
  227. package/build/{webhook-list-page.c21b5a9a.chunk.js → webhook-list-page.502d1236.chunk.js} +1 -1
  228. package/build/zh-Hans-json.9afc1adf.chunk.js +1 -0
  229. package/build/zh-json.f36abb77.chunk.js +1 -0
  230. package/ee/admin/pages/AuthPage/components/Providers/SSOProviders.js +1 -1
  231. package/ee/admin/pages/SettingsPage/SingleSignOn/index.js +2 -2
  232. package/ee/admin/pages/SettingsPage/pages/Roles/CreatePage/index.js +5 -5
  233. package/ee/admin/pages/SettingsPage/pages/Roles/ListPage/index.js +6 -6
  234. package/package.json +5 -5
  235. package/scripts/build.js +15 -1
  236. package/admin/src/content-manager/components/DynamicTable/CellContent/Relation/PopoverContent.js +0 -87
  237. package/admin/src/content-manager/components/DynamicTable/CellContent/Relation/index.js +0 -107
  238. package/admin/src/themes/colors.js +0 -51
  239. package/admin/src/themes/fontWeights.js +0 -8
  240. package/admin/src/themes/index.js +0 -13
  241. package/admin/src/themes/sizes.js +0 -31
  242. package/build/4362.cf5b578d.chunk.js +0 -1
  243. package/build/849.98171304.chunk.js +0 -1
  244. package/build/9260.fa40c7bd.chunk.js +0 -2
  245. package/build/Admin-authenticatedApp.f7f4f112.chunk.js +0 -1
  246. package/build/Admin_homePage.fea90263.chunk.js +0 -1
  247. package/build/Admin_marketplace.89a0a014.chunk.js +0 -1
  248. package/build/Admin_pluginsPage.97a514db.chunk.js +0 -1
  249. package/build/Admin_profilePage.c497b39d.chunk.js +0 -1
  250. package/build/Admin_settingsPage.55ec1f30.chunk.js +0 -1
  251. package/build/admin-edit-roles-page.49b6f01d.chunk.js +0 -1
  252. package/build/admin-edit-users.381e4a0d.chunk.js +0 -1
  253. package/build/admin-users.2740c223.chunk.js +0 -1
  254. package/build/api-tokens-create-page.db17bb39.chunk.js +0 -1
  255. package/build/api-tokens-edit-page.c7299a77.chunk.js +0 -1
  256. package/build/api-tokens-list-page.26a05a21.chunk.js +0 -1
  257. package/build/ar-json.6a2565af.chunk.js +0 -1
  258. package/build/content-manager.94860c70.chunk.js +0 -1
  259. package/build/content-type-builder-translation-de-json.bf808f88.chunk.js +0 -1
  260. package/build/content-type-builder-translation-dk-json.28ed91d2.chunk.js +0 -1
  261. package/build/content-type-builder-translation-en-json.f19ac2e9.chunk.js +0 -1
  262. package/build/content-type-builder-translation-fr-json.bee621f7.chunk.js +0 -1
  263. package/build/content-type-builder-translation-id-json.dc5ea5d6.chunk.js +0 -1
  264. package/build/content-type-builder-translation-it-json.3c8ca035.chunk.js +0 -1
  265. package/build/content-type-builder-translation-ko-json.48ee9cec.chunk.js +0 -1
  266. package/build/content-type-builder-translation-ru-json.b76aa5ab.chunk.js +0 -1
  267. package/build/content-type-builder-translation-th-json.23555d01.chunk.js +0 -1
  268. package/build/content-type-builder-translation-uk-json.ff0523b6.chunk.js +0 -1
  269. package/build/content-type-builder.a963330a.chunk.js +0 -1
  270. package/build/cs-json.8df09876.chunk.js +0 -1
  271. package/build/de-json.6e14f607.chunk.js +0 -1
  272. package/build/dk-json.be388470.chunk.js +0 -1
  273. package/build/en-json.2bc27a3d.chunk.js +0 -1
  274. package/build/es-json.61553168.chunk.js +0 -1
  275. package/build/fr-json.a9ce0700.chunk.js +0 -1
  276. package/build/he-json.1742494e.chunk.js +0 -1
  277. package/build/hu-json.e667d285.chunk.js +0 -1
  278. package/build/i18n-translation-de-json.c5c9054f.chunk.js +0 -1
  279. package/build/id-json.d87ebb20.chunk.js +0 -1
  280. package/build/it-json.a2880b81.chunk.js +0 -1
  281. package/build/ja-json.e13f04e8.chunk.js +0 -1
  282. package/build/ko-json.2200c9c9.chunk.js +0 -1
  283. package/build/ms-json.3a062984.chunk.js +0 -1
  284. package/build/nl-json.30ce02cb.chunk.js +0 -1
  285. package/build/no-json.9af40e9d.chunk.js +0 -1
  286. package/build/pl-json.fd373053.chunk.js +0 -1
  287. package/build/pt-BR-json.30e2d716.chunk.js +0 -1
  288. package/build/pt-json.3aaf9e05.chunk.js +0 -1
  289. package/build/ru-json.78c56e1c.chunk.js +0 -1
  290. package/build/sk-json.c0bf144c.chunk.js +0 -1
  291. package/build/sso-settings-page.121dd0a6.chunk.js +0 -1
  292. package/build/sv-json.aad187b9.chunk.js +0 -1
  293. package/build/th-json.e2b4a0fb.chunk.js +0 -1
  294. package/build/tr-json.0add11cd.chunk.js +0 -1
  295. package/build/uk-json.eb78e77e.chunk.js +0 -1
  296. package/build/upload-translation-de-json.1308dce5.chunk.js +0 -1
  297. package/build/upload-translation-dk-json.0d4e855f.chunk.js +0 -1
  298. package/build/upload-translation-en-json.c334dd82.chunk.js +0 -1
  299. package/build/upload-translation-es-json.81b13eac.chunk.js +0 -1
  300. package/build/upload-translation-fr-json.1bec79ec.chunk.js +0 -1
  301. package/build/upload-translation-he-json.1d28982f.chunk.js +0 -1
  302. package/build/upload-translation-it-json.7d4bdc5a.chunk.js +0 -1
  303. package/build/upload-translation-ja-json.97fcacd8.chunk.js +0 -1
  304. package/build/upload-translation-ko-json.d7345fe1.chunk.js +0 -1
  305. package/build/upload-translation-ms-json.081effd5.chunk.js +0 -1
  306. package/build/upload-translation-pl-json.2dfe78bb.chunk.js +0 -1
  307. package/build/upload-translation-pt-BR-json.65936d7b.chunk.js +0 -1
  308. package/build/upload-translation-ru-json.2d3b6f69.chunk.js +0 -1
  309. package/build/upload-translation-sk-json.f15c7fd6.chunk.js +0 -1
  310. package/build/upload-translation-th-json.6d3c2370.chunk.js +0 -1
  311. package/build/upload-translation-uk-json.a6c38449.chunk.js +0 -1
  312. package/build/upload-translation-zh-Hans-json.f6b26c45.chunk.js +0 -1
  313. package/build/upload-translation-zh-json.06052336.chunk.js +0 -1
  314. package/build/users-email-settings-page.862eb51e.chunk.js +0 -1
  315. package/build/users-permissions-translation-ar-json.bdddd0d7.chunk.js +0 -1
  316. package/build/users-permissions-translation-cs-json.7881d3ff.chunk.js +0 -1
  317. package/build/users-permissions-translation-de-json.8d53c619.chunk.js +0 -1
  318. package/build/users-permissions-translation-dk-json.89d41c4b.chunk.js +0 -1
  319. package/build/users-permissions-translation-en-json.21b0fd2f.chunk.js +0 -1
  320. package/build/users-permissions-translation-es-json.a4f81eaa.chunk.js +0 -1
  321. package/build/users-permissions-translation-fr-json.a2172545.chunk.js +0 -1
  322. package/build/users-permissions-translation-id-json.8f17982a.chunk.js +0 -1
  323. package/build/users-permissions-translation-it-json.87952a24.chunk.js +0 -1
  324. package/build/users-permissions-translation-ja-json.5915d9ef.chunk.js +0 -1
  325. package/build/users-permissions-translation-ko-json.f1ca6cc4.chunk.js +0 -1
  326. package/build/users-permissions-translation-ms-json.2268324c.chunk.js +0 -1
  327. package/build/users-permissions-translation-nl-json.4e1231dd.chunk.js +0 -1
  328. package/build/users-permissions-translation-pl-json.107638b5.chunk.js +0 -1
  329. package/build/users-permissions-translation-pt-BR-json.8dafc053.chunk.js +0 -1
  330. package/build/users-permissions-translation-pt-json.3322464f.chunk.js +0 -1
  331. package/build/users-permissions-translation-ru-json.5709c5a0.chunk.js +0 -1
  332. package/build/users-permissions-translation-sk-json.fe7cc044.chunk.js +0 -1
  333. package/build/users-permissions-translation-sv-json.e7e1684b.chunk.js +0 -1
  334. package/build/users-permissions-translation-th-json.bb544ee3.chunk.js +0 -1
  335. package/build/users-permissions-translation-tr-json.30f3ca90.chunk.js +0 -1
  336. package/build/users-permissions-translation-uk-json.634f2569.chunk.js +0 -1
  337. package/build/users-permissions-translation-vi-json.605d88bc.chunk.js +0 -1
  338. package/build/users-permissions-translation-zh-Hans-json.85480dab.chunk.js +0 -1
  339. package/build/users-permissions-translation-zh-json.99932731.chunk.js +0 -1
  340. package/build/users-providers-settings-page.368893ed.chunk.js +0 -1
  341. package/build/vi-json.1e850069.chunk.js +0 -1
  342. package/build/webhook-edit-page.d170eda1.chunk.js +0 -1
  343. package/build/zh-Hans-json.55f6475b.chunk.js +0 -1
  344. package/build/zh-json.c3c2b225.chunk.js +0 -1
@@ -7,11 +7,9 @@
7
7
  "Auth.form.button.go-home": "GO BACK HOME",
8
8
  "Auth.form.button.login": "Login",
9
9
  "Auth.form.button.login.providers.error": "We cannot connect you through the selected provider.",
10
- "Auth.form.button.login.providers.see-more": "See more",
11
10
  "Auth.form.button.login.strapi": "Log in via Strapi",
12
11
  "Auth.form.button.password-recovery": "Password Recovery",
13
12
  "Auth.form.button.register": "Let's start",
14
- "Auth.form.button.reset-password": "Change password",
15
13
  "Auth.form.confirmPassword.label": "Confirmation Password",
16
14
  "Auth.form.currentPassword.label": "Current Password",
17
15
  "Auth.form.email.label": "Email",
@@ -38,16 +36,15 @@
38
36
  "Auth.form.lastname.label": "Last name",
39
37
  "Auth.form.lastname.placeholder": "e.g. Doe",
40
38
  "Auth.form.password.hide-password": "Hide password",
41
- "Auth.form.password.hint": "Password must contain at least 8 characters, 1 uppercase, 1 lowercase, and 1 number",
42
- "Auth.form.password.label": "Password",
39
+ "Auth.form.password.hint": "Must be at least 8 characters, 1 uppercase, 1 lowercase & 1 number",
43
40
  "Auth.form.password.show-password": "Show password",
44
- "Auth.form.register.news.label": "Keep me updated about the new features and upcoming improvements (by doing this you accept the {terms} and the {policy}).",
45
- "Auth.form.register.subtitle": "Your credentials are only used to authenticate yourself on the admin panel. All saved data will be stored in your own database.",
41
+ "Auth.form.register.news.label": "Keep me updated about new features & upcoming improvements (by doing this you accept the {terms} and the {policy}).",
42
+ "Auth.form.register.subtitle": "Credentials are only used to authenticate in Strapi. All saved data will be stored in your database.",
46
43
  "Auth.form.rememberMe.label": "Remember me",
47
44
  "Auth.form.username.label": "Username",
48
45
  "Auth.form.username.placeholder": "e.g. Kai_Doe",
49
46
  "Auth.form.welcome.subtitle": "Log in to your Strapi account",
50
- "Auth.form.welcome.title": "Welcome!",
47
+ "Auth.form.welcome.title": "Welcome to Strapi!",
51
48
  "Auth.link.forgot-password": "Forgot your password?",
52
49
  "Auth.link.ready": "Ready to sign in?",
53
50
  "Auth.link.signin": "Sign in",
@@ -58,21 +55,6 @@
58
55
  "Auth.privacy-policy-agreement.policy": "privacy policy",
59
56
  "Auth.privacy-policy-agreement.terms": "terms",
60
57
  "Auth.reset-password.title": "Reset password",
61
- "admin.pages.MarketPlacePage.helmet": "Marketplace - Plugins",
62
- "admin.pages.MarketPlacePage.title": "Marketplace",
63
- "admin.pages.MarketPlacePage.subtitle": "Get more out of Strapi",
64
- "admin.pages.MarketPlacePage.plugin.info.text": "Learn more",
65
- "admin.pages.MarketPlacePage.plugin.info.label": "Learn more about {pluginName}",
66
- "admin.pages.MarketPlacePage.plugin.copy": "Copy install command",
67
- "admin.pages.MarketPlacePage.plugin.copy.success": "Install command ready to be pasted in your terminal",
68
- "admin.pages.MarketPlacePage.plugin.installed": "Installed",
69
- "admin.pages.MarketPlacePage.plugin.info": "Learn more",
70
- "admin.pages.MarketPlacePage.submit.plugin.link": "Submit your plugin",
71
- "admin.pages.MarketPlacePage.plugin.tooltip.verified": "Plugin verified by Strapi",
72
- "admin.pages.MarketPlacePage.search.placeholder": "Search for a plugin",
73
- "admin.pages.MarketPlacePage.search.clear": "Clear the plugin search",
74
- "admin.pages.MarketPlacePage.search.empty": "No result for \"{target}\"",
75
- "admin.pages.MarketPlacePage.plugin.tooltip.madeByStrapi": "Made by Strapi",
76
58
  "Content Manager": "Content Manager",
77
59
  "Content Type Builder": "Content-Types Builder",
78
60
  "Documentation": "Documentation",
@@ -103,14 +85,12 @@
103
85
  "Settings.apiTokens.copy.lastWarning": "Make sure to copy this token, you won’t be able to see it again!",
104
86
  "Settings.apiTokens.create": "Create new API Token",
105
87
  "Settings.apiTokens.description": "List of generated tokens to consume the API",
106
- "Settings.apiTokens.details": "Details",
107
88
  "Settings.apiTokens.emptyStateLayout": "You don’t have any content yet...",
108
89
  "Settings.apiTokens.notification.copied": "Token copied to clipboard.",
109
90
  "Settings.apiTokens.title": "API Tokens",
110
91
  "Settings.apiTokens.types.full-access": "Full access",
111
92
  "Settings.apiTokens.types.read-only": "Read-only",
112
93
  "Settings.application.description": "Administration panel’s global information",
113
- "Settings.application.details": "Details",
114
94
  "Settings.application.edition-title": "current plan",
115
95
  "Settings.application.get-help": "Get help",
116
96
  "Settings.application.link-pricing": "See all pricing plans",
@@ -133,8 +113,6 @@
133
113
  "Settings.permissions.conditions.none-selected": "Anytime",
134
114
  "Settings.permissions.conditions.or": "OR",
135
115
  "Settings.permissions.conditions.when": "When",
136
- "Settings.permissions.menu.link.roles.label": "Roles",
137
- "Settings.permissions.menu.link.users.label": "Users",
138
116
  "Settings.permissions.select-all-by-permission": "Select all {label} permissions",
139
117
  "Settings.permissions.select-by-permission": "Select {label} permission",
140
118
  "Settings.permissions.users.create": "Invite new user",
@@ -144,19 +122,19 @@
144
122
  "Settings.permissions.users.form.sso": "Connect with SSO",
145
123
  "Settings.permissions.users.form.sso.description": "When enabled (ON), users can login via SSO",
146
124
  "Settings.permissions.users.listview.header.subtitle": "All the users who have access to the Strapi admin panel",
147
- "Settings.permissions.users.listview.header.title": "Users",
148
125
  "Settings.permissions.users.tabs.label": "Tabs Permissions",
149
126
  "Settings.profile.form.notify.data.loaded": "Your profile data has been loaded",
150
127
  "Settings.profile.form.section.experience.clear.select": "Clear the interface language selected",
151
- "Settings.profile.form.section.experience.documentation": "documentation",
128
+ "Settings.profile.form.section.experience.here": "here",
152
129
  "Settings.profile.form.section.experience.interfaceLanguage": "Interface language",
153
130
  "Settings.profile.form.section.experience.interfaceLanguage.hint": "This will only display your own interface in the chosen language.",
154
- "Settings.profile.form.section.experience.interfaceLanguageHelp": "Selection will change the interface language only for you. Please refer to this {documentation} to make other languages available for your team.",
131
+ "Settings.profile.form.section.experience.interfaceLanguageHelp": "Preference changes will apply only to you. More information is available {here}.",
132
+ "Settings.profile.form.section.experience.mode.label": "Interface mode",
133
+ "Settings.profile.form.section.experience.mode.hint": "Displays your interface in the chosen mode.",
134
+ "Settings.profile.form.section.experience.mode.option-label": "{name} mode",
155
135
  "Settings.profile.form.section.experience.title": "Experience",
156
136
  "Settings.profile.form.section.helmet.title": "User profile",
157
- "Settings.profile.form.section.password.title": "Change password",
158
137
  "Settings.profile.form.section.profile.page.title": "Profile page",
159
- "Settings.profile.form.section.profile.title": "Profile",
160
138
  "Settings.roles.create.description": "Define the rights given to the role",
161
139
  "Settings.roles.create.title": "Create a role",
162
140
  "Settings.roles.created": "Role created",
@@ -164,8 +142,6 @@
164
142
  "Settings.roles.form.button.users-with-role": "{number, plural, =0 {# users} one {# user} other {# users}} with this role",
165
143
  "Settings.roles.form.created": "Created",
166
144
  "Settings.roles.form.description": "Name and description of the role",
167
- "Settings.roles.form.input.description": "Description",
168
- "Settings.roles.form.input.name": "Name",
169
145
  "Settings.roles.form.permission.property-label": "{label} permissions",
170
146
  "Settings.roles.form.permissions.attributesPermissions": "Fields permissions",
171
147
  "Settings.roles.form.permissions.create": "Create",
@@ -173,14 +149,8 @@
173
149
  "Settings.roles.form.permissions.publish": "Publish",
174
150
  "Settings.roles.form.permissions.read": "Read",
175
151
  "Settings.roles.form.permissions.update": "Update",
176
- "Settings.roles.form.title": "Details",
177
152
  "Settings.roles.list.button.add": "Add new role",
178
153
  "Settings.roles.list.description": "List of roles",
179
- "Settings.roles.list.header.actions": "Actions",
180
- "Settings.roles.list.header.description": "Description",
181
- "Settings.roles.list.header.name": "Name",
182
- "Settings.roles.list.header.users": "Users",
183
- "Settings.roles.title": "Roles",
184
154
  "Settings.roles.title.singular": "role",
185
155
  "Settings.sso.description": "Configure the settings for the Single Sign-On feature.",
186
156
  "Settings.sso.form.defaultRole.description": "It will attach the new authenticated user to the selected role",
@@ -188,30 +158,23 @@
188
158
  "Settings.sso.form.defaultRole.label": "Default role",
189
159
  "Settings.sso.form.registration.description": "Create new user on SSO login if no account exists",
190
160
  "Settings.sso.form.registration.label": "Auto-registration",
191
- "Settings.sso.form.settings.title": "Settings",
192
161
  "Settings.sso.title": "Single Sign-On",
193
162
  "Settings.webhooks.create": "Create a webhook",
194
163
  "Settings.webhooks.create.header": "Create new header",
195
164
  "Settings.webhooks.created": "Webhook created",
196
- "Settings.webhooks.disabled": "Disabled",
197
- "Settings.webhooks.enabled": "Enabled",
198
165
  "Settings.webhooks.event.publish-tooltip": "This event only exists for contents with Draft/Publish system enabled",
199
166
  "Settings.webhooks.events.create": "Create",
200
- "Settings.webhooks.events.delete": "Delete",
201
167
  "Settings.webhooks.events.update": "Update",
202
168
  "Settings.webhooks.form.events": "Events",
203
169
  "Settings.webhooks.form.headers": "Headers",
204
- "Settings.webhooks.form.name": "Name",
205
170
  "Settings.webhooks.form.url": "Url",
206
171
  "Settings.webhooks.headers.remove": "Remove header row {number}",
207
172
  "Settings.webhooks.key": "Key",
208
- "Settings.webhooks.list.all-entries.select": "Select all entries",
209
173
  "Settings.webhooks.list.button.add": "Create new webhook",
210
174
  "Settings.webhooks.list.description": "Get POST changes notifications",
211
175
  "Settings.webhooks.list.empty.description": "No webhooks found",
212
176
  "Settings.webhooks.list.empty.link": "See our documentation",
213
177
  "Settings.webhooks.list.empty.title": "There are no webhooks yet",
214
- "Settings.webhooks.list.select": "Select",
215
178
  "Settings.webhooks.list.th.actions": "actions",
216
179
  "Settings.webhooks.list.th.status": "status",
217
180
  "Settings.webhooks.singular": "webhook",
@@ -226,65 +189,51 @@
226
189
  "Settings.webhooks.trigger.test": "Test-trigger",
227
190
  "Settings.webhooks.trigger.title": "Save before Trigger",
228
191
  "Settings.webhooks.value": "Value",
192
+ "Usecase.back-end": "Back-end developer",
193
+ "Usecase.button.skip": "Skip this question",
194
+ "Usecase.content-creator": "Content Creator",
195
+ "Usecase.front-end": "Front-end developer",
196
+ "Usecase.full-stack": "Full-stack developer",
197
+ "Usecase.input.work-type": "What type of work do you do?",
198
+ "Usecase.notification.success.project-created": "Project has been successfully created",
199
+ "Usecase.other": "Other",
200
+ "Usecase.title": "Tell us a bit more about yourself",
229
201
  "Username": "Username",
230
202
  "Users": "Users",
231
203
  "Users & Permissions": "Users & Permissions",
232
- "Usecase.front-end": "Front-end developer",
233
- "Usecase.back-end": "Back-end developer",
234
- "Usecase.full-stack": "Full-stack developer",
235
- "Usecase.content-manager": "Content Manager",
236
- "Usecase.content-creator": "Content Creator",
237
- "Usecase.other": "Other",
238
- "Usecase.title": "Tell us a bit more about yourself",
239
- "Usecase.input.work-type": "What type of work do you do?",
240
- "Usecase.button.skip": "Skip this question",
241
- "Usecase.notification.success.project-created": "Project has been successfully created",
242
204
  "Users.components.List.empty": "There is no users...",
243
205
  "Users.components.List.empty.withFilters": "There is no users with the applied filters...",
244
206
  "Users.components.List.empty.withSearch": "There is no users corresponding to the search ({search})...",
207
+ "admin.pages.MarketPlacePage.helmet": "Marketplace - Plugins",
208
+ "admin.pages.MarketPlacePage.plugin.copy": "Copy install command",
209
+ "admin.pages.MarketPlacePage.plugin.copy.success": "Install command ready to be pasted in your terminal",
210
+ "admin.pages.MarketPlacePage.plugin.info": "Learn more",
211
+ "admin.pages.MarketPlacePage.plugin.info.label": "Learn more about {pluginName}",
212
+ "admin.pages.MarketPlacePage.plugin.info.text": "Learn more",
213
+ "admin.pages.MarketPlacePage.plugin.installed": "Installed",
214
+ "admin.pages.MarketPlacePage.plugin.tooltip.madeByStrapi": "Made by Strapi",
215
+ "admin.pages.MarketPlacePage.plugin.tooltip.verified": "Plugin verified by Strapi",
216
+ "admin.pages.MarketPlacePage.search.clear": "Clear the plugin search",
217
+ "admin.pages.MarketPlacePage.search.empty": "No result for \"{target}\"",
218
+ "admin.pages.MarketPlacePage.search.placeholder": "Search for a plugin",
219
+ "admin.pages.MarketPlacePage.submit.plugin.link": "Submit your plugin",
220
+ "admin.pages.MarketPlacePage.subtitle": "Get more out of Strapi",
245
221
  "anErrorOccurred": "Woops! Something went wrong. Please, try again.",
246
- "app.components.GuidedTour.skip": "Skip the tour",
247
- "app.components.GuidedTour.title": "3 steps to get started",
248
- "app.components.GuidedTour.create-content": "Create content",
249
- "app.components.GuidedTour.home.CTB.title": "🧠 Build the content structure",
250
- "app.components.GuidedTour.home.CTB.cta.title": "Go to the Content type Builder",
251
- "app.components.GuidedTour.CTB.create.title": "🧠 Create a first Collection type",
252
- "app.components.GuidedTour.CTB.create.content": "<p>Collection types help you manage several entries, Single types are suitable to manage only one entry.</p> <p>Ex: For a Blog website, Articles would be a Collection type whereas a Homepage would be a Single type.</p>",
253
- "app.components.GuidedTour.CTB.create.cta.title": "Build a Collection type",
254
- "app.components.GuidedTour.CTB.success.title": "Step 1: Completed ✅",
255
- "app.components.GuidedTour.CTB.success.content": "<p>Good going!</p><b>⚡️ What would you like to share with the world?</b>",
256
- "app.components.GuidedTour.home.CM.title": "⚡️ What would you like to share with the world?",
257
- "app.components.GuidedTour.CM.create.title": "⚡️ Create content",
258
- "app.components.GuidedTour.CM.create.content": "<p>Create and manage all the content here in the Content Manager.</p><p>Ex: Taking the Blog website example further, one can write an Article, save and publish it as they like.</p><p>💡 Quick tip - Don't forget to hit publish on the content you create.</p>",
259
- "app.components.GuidedTour.CM.success.title": "Step 2: Completed ✅",
260
- "app.components.GuidedTour.CM.success.content": "<p>Awesome, one last step to go!</p><b>🚀 See content in action</b>",
261
- "app.components.GuidedTour.CM.success.cta.title": "Test the API",
262
- "app.components.GuidedTour.home.apiTokens.cta.title": "Test the API",
263
- "app.components.GuidedTour.apiTokens.create.title": "🚀 See content in action",
264
- "app.components.GuidedTour.apiTokens.create.content": "<p>Generate an authentication token here and retrieve the content you just created.</p>",
265
- "app.components.GuidedTour.apiTokens.create.cta.title": "Generate an API Token",
266
- "app.components.GuidedTour.apiTokens.success.title": "Step 3: Completed ✅",
267
- "app.components.GuidedTour.apiTokens.success.content": "<p>See content in action by making an HTTP request:</p><ul><li><p>To this URL: <light>https://'<'YOUR_DOMAIN'>'/api/'<'YOUR_CT'>'</light></p></li><li><p>With the header: <light>Authorization: bearer '<'YOUR_API_TOKEN'>'</light></p></li></ul><p>For more ways to interact with content, see the <documentationLink>documentation</documentationLink>.</p>",
268
- "app.components.GuidedTour.apiTokens.success.cta.title": "Go back to homepage",
269
222
  "app.component.CopyToClipboard.label": "Copy to clipboard",
270
223
  "app.component.search.label": "Search for {target}",
271
- "app.component.table.delete": "Delete {target}",
272
224
  "app.component.table.duplicate": "Duplicate {target}",
273
225
  "app.component.table.edit": "Edit {target}",
274
- "app.component.table.select.all-entries": "Select all entries",
275
226
  "app.component.table.select.one-entry": "Select {target}",
276
227
  "app.components.BlockLink.blog": "Blog",
277
228
  "app.components.BlockLink.blog.content": "Read the latest news about Strapi and the ecosystem.",
278
229
  "app.components.BlockLink.code": "Code examples",
279
230
  "app.components.BlockLink.code.content": "Learn by testing real projects developed the community.",
280
- "app.components.BlockLink.documentation": "Documentation",
281
231
  "app.components.BlockLink.documentation.content": "Discover the essential concepts, guides and instructions.",
282
232
  "app.components.BlockLink.tutorial": "Tutorials",
283
233
  "app.components.BlockLink.tutorial.content": "Follow step-by-step instructions to use and customize Strapi.",
284
234
  "app.components.Button.cancel": "Cancel",
285
235
  "app.components.Button.confirm": "Confirm",
286
236
  "app.components.Button.reset": "Reset",
287
- "app.components.Button.save": "Save",
288
237
  "app.components.ComingSoonPage.comingSoon": "Coming soon",
289
238
  "app.components.ConfirmDialog.title": "Confirmation",
290
239
  "app.components.DownloadInfo.download": "Download in progress...",
@@ -292,7 +241,29 @@
292
241
  "app.components.EmptyAttributes.title": "There are no fields yet",
293
242
  "app.components.EmptyStateLayout.content-document": "No content found",
294
243
  "app.components.EmptyStateLayout.content-permissions": "You don't have the permissions to access that content",
295
- "app.components.HeaderLayout.link.go-back": "Back",
244
+ "app.components.GuidedTour.CM.create.content": "<p>Create and manage all the content here in the Content Manager.</p><p>Ex: Taking the Blog website example further, one can write an Article, save and publish it as they like.</p><p>💡 Quick tip - Don't forget to hit publish on the content you create.</p>",
245
+ "app.components.GuidedTour.CM.create.title": "⚡️ Create content",
246
+ "app.components.GuidedTour.CM.success.content": "<p>Awesome, one last step to go!</p><b>🚀 See content in action</b>",
247
+ "app.components.GuidedTour.CM.success.cta.title": "Test the API",
248
+ "app.components.GuidedTour.CM.success.title": "Step 2: Completed ✅",
249
+ "app.components.GuidedTour.CTB.create.content": "<p>Collection types help you manage several entries, Single types are suitable to manage only one entry.</p> <p>Ex: For a Blog website, Articles would be a Collection type whereas a Homepage would be a Single type.</p>",
250
+ "app.components.GuidedTour.CTB.create.cta.title": "Build a Collection type",
251
+ "app.components.GuidedTour.CTB.create.title": "🧠 Create a first Collection type",
252
+ "app.components.GuidedTour.CTB.success.content": "<p>Good going!</p><b>⚡️ What would you like to share with the world?</b>",
253
+ "app.components.GuidedTour.CTB.success.title": "Step 1: Completed ✅",
254
+ "app.components.GuidedTour.apiTokens.create.content": "<p>Generate an authentication token here and retrieve the content you just created.</p>",
255
+ "app.components.GuidedTour.apiTokens.create.cta.title": "Generate an API Token",
256
+ "app.components.GuidedTour.apiTokens.create.title": "🚀 See content in action",
257
+ "app.components.GuidedTour.apiTokens.success.content": "<p>See content in action by making an HTTP request:</p><ul><li><p>To this URL: <light>https://'<'YOUR_DOMAIN'>'/api/'<'YOUR_CT'>'</light></p></li><li><p>With the header: <light>Authorization: bearer '<'YOUR_API_TOKEN'>'</light></p></li></ul><p>For more ways to interact with content, see the <documentationLink>documentation</documentationLink>.</p>",
258
+ "app.components.GuidedTour.apiTokens.success.cta.title": "Go back to homepage",
259
+ "app.components.GuidedTour.apiTokens.success.title": "Step 3: Completed ✅",
260
+ "app.components.GuidedTour.create-content": "Create content",
261
+ "app.components.GuidedTour.home.CM.title": "⚡️ What would you like to share with the world?",
262
+ "app.components.GuidedTour.home.CTB.cta.title": "Go to the Content type Builder",
263
+ "app.components.GuidedTour.home.CTB.title": "🧠 Build the content structure",
264
+ "app.components.GuidedTour.home.apiTokens.cta.title": "Test the API",
265
+ "app.components.GuidedTour.skip": "Skip the tour",
266
+ "app.components.GuidedTour.title": "3 steps to get started",
296
267
  "app.components.HomePage.button.blog": "See more on the blog",
297
268
  "app.components.HomePage.community": "Join the community",
298
269
  "app.components.HomePage.community.content": "Discuss with team members, contributors and developers on different channels.",
@@ -319,24 +290,18 @@
319
290
  "app.components.LeftMenu.logout": "Logout",
320
291
  "app.components.LeftMenu.navbrand.title": "Strapi Dashboard",
321
292
  "app.components.LeftMenu.navbrand.workplace": "Workplace",
322
- "app.components.LeftMenu.profile": "Profile",
323
- "app.components.LeftMenuFooter.documentation": "Documentation",
324
293
  "app.components.LeftMenuFooter.help": "Help",
325
294
  "app.components.LeftMenuFooter.poweredBy": "Powered by ",
326
295
  "app.components.LeftMenuLinkContainer.collectionTypes": "Collection Types",
327
296
  "app.components.LeftMenuLinkContainer.configuration": "Configurations",
328
297
  "app.components.LeftMenuLinkContainer.general": "General",
329
- "app.components.LeftMenuLinkContainer.installNewPlugin": "Marketplace",
330
- "app.components.LeftMenuLinkContainer.listPlugins": "Plugins",
331
298
  "app.components.LeftMenuLinkContainer.noPluginsInstalled": "No plugins installed yet",
332
299
  "app.components.LeftMenuLinkContainer.plugins": "Plugins",
333
- "app.components.LeftMenuLinkContainer.settings": "Settings",
334
300
  "app.components.LeftMenuLinkContainer.singleTypes": "Single Types",
335
301
  "app.components.ListPluginsPage.deletePlugin.description": "It might take a few seconds to uninstall the plugin.",
336
302
  "app.components.ListPluginsPage.deletePlugin.title": "Uninstalling",
337
303
  "app.components.ListPluginsPage.description": "List of the installed plugins in the project.",
338
304
  "app.components.ListPluginsPage.helmet.title": "List plugins",
339
- "app.components.ListPluginsPage.title": "Plugins",
340
305
  "app.components.Logout.logout": "Logout",
341
306
  "app.components.Logout.profile": "Profile",
342
307
  "app.components.MarketplaceBanner": "Discover plugins built by the community, and many more awesome things to kickstart your project, on Strapi Awesome.",
@@ -368,7 +333,6 @@
368
333
  "app.components.Users.MagicLink.connect": "Copy and share this link to give access to this user",
369
334
  "app.components.Users.MagicLink.connect.sso": "Send this link to the user, the first login can be made via a SSO provider",
370
335
  "app.components.Users.ModalCreateBody.block-title.details": "User details",
371
- "app.components.Users.ModalCreateBody.block-title.login": "Roles",
372
336
  "app.components.Users.ModalCreateBody.block-title.roles": "User's roles",
373
337
  "app.components.Users.ModalCreateBody.block-title.roles.description": "A user can have one or several roles",
374
338
  "app.components.Users.SortPicker.button-label": "Sort by",
@@ -380,7 +344,6 @@
380
344
  "app.components.Users.SortPicker.sortby.lastname_desc": "Last name (Z to A)",
381
345
  "app.components.Users.SortPicker.sortby.username_asc": "Username (A to Z)",
382
346
  "app.components.Users.SortPicker.sortby.username_desc": "Username (Z to A)",
383
- "app.components.go-back": "Back",
384
347
  "app.components.listPlugins.button": "Add New Plugin",
385
348
  "app.components.listPlugins.title.none": "No plugins installed",
386
349
  "app.components.listPluginsPage.deletePlugin.error": "An error occurred while uninstalling the plugin",
@@ -400,7 +363,6 @@
400
363
  "app.utils.add-filter": "Add filter",
401
364
  "app.utils.close-label": "Close",
402
365
  "app.utils.defaultMessage": " ",
403
- "app.utils.delete": "Delete",
404
366
  "app.utils.duplicate": "Duplicate",
405
367
  "app.utils.edit": "Edit",
406
368
  "app.utils.errors.file-too-big.message": "The file is too big",
@@ -462,8 +424,6 @@
462
424
  "components.ProductionBlocker.description": "For safety purposes we have to disable this plugin in other environments.",
463
425
  "components.ProductionBlocker.header": "This plugin is only available in development.",
464
426
  "components.Search.placeholder": "Search...",
465
- "components.Select.placeholder": "Select",
466
- "components.TableHeader.actions-label": "Actions",
467
427
  "components.TableHeader.sort": "Sort on {label}",
468
428
  "components.Wysiwyg.ToggleMode.markdown-mode": "Markdown mode",
469
429
  "components.Wysiwyg.ToggleMode.preview-mode": "Preview mode",
@@ -488,7 +448,9 @@
488
448
  "components.popUpWarning.message": "Are you sure you want to delete this?",
489
449
  "components.popUpWarning.title": "Please confirm",
490
450
  "content-manager.App.schemas.data-loaded": "The schemas have been successfully loaded",
491
- "content-manager.DynamicTable.relation-loaded": "The relations have been loaded",
451
+ "content-manager.DynamicTable.relation-loaded": "Relations have been loaded",
452
+ "content-manager.DynamicTable.relation-loading": "Relations are loading",
453
+ "content-manager.DynamicTable.relation-more": "This relation contains more entities than displayed",
492
454
  "content-manager.EditRelations.title": "Relational data",
493
455
  "content-manager.HeaderLayout.button.label-add-entry": "Create new entry",
494
456
  "content-manager.api.id": "API ID",
@@ -665,7 +627,6 @@
665
627
  "content-manager.permissions.not-allowed.update": "You are not allowed to see this document",
666
628
  "content-manager.plugin.description.long": "Quick way to see, edit and delete the data in your database.",
667
629
  "content-manager.plugin.description.short": "Quick way to see, edit and delete the data in your database.",
668
- "content-manager.plugin.name": "Content Manager",
669
630
  "content-manager.popUpWarning.bodyMessage.contentType.delete": "Are you sure you want to delete this entry?",
670
631
  "content-manager.popUpWarning.bodyMessage.contentType.delete.all": "Are you sure you want to delete these entries?",
671
632
  "content-manager.popUpWarning.warning.cancelAllSettings": "Are you sure you want to cancel your modifications?",
@@ -681,11 +642,36 @@
681
642
  "content-manager.success.record.save": "Saved",
682
643
  "content-manager.success.record.unpublish": "Unpublished",
683
644
  "content-manager.utils.data-loaded": "The {number, plural, =1 {entry has} other {entries have}} successfully been loaded",
684
- "form.button.continue": "Continue",
685
645
  "form.button.done": "Done",
686
- "form.button.finish": "Finish",
687
- "form.button.save": "Save",
646
+ "global.actions": "Actions",
647
+ "global.back": "Back",
648
+ "global.change-password": "Change password",
649
+ "global.content-manager": "Content Manager",
650
+ "global.continue": "Continue",
651
+ "global.delete": "Delete",
652
+ "global.delete-target": "Delete {target}",
653
+ "global.description": "Description",
654
+ "global.details": "Details",
655
+ "global.disabled": "Disabled",
656
+ "global.documentation": "Documentation",
657
+ "global.enabled": "Enabled",
658
+ "global.finish": "Finish",
659
+ "global.marketplace": "Marketplace",
660
+ "global.name": "Name",
661
+ "global.none": "None",
662
+ "global.password": "Password",
663
+ "global.plugins": "Plugins",
664
+ "global.profile": "Profile",
688
665
  "global.prompt.unsaved": "Are you sure you want to leave this page? All your modifications will be lost",
666
+ "global.reset-password": "Reset password",
667
+ "global.roles": "Roles",
668
+ "global.save": "Save",
669
+ "global.see-more": "See more",
670
+ "global.select": "Select",
671
+ "global.select-all-entries": "Select all entries",
672
+ "global.settings": "Settings",
673
+ "global.type": "Type",
674
+ "global.users": "Users",
689
675
  "notification.contentType.relations.conflict": "Content type has conflicting relations",
690
676
  "notification.default.title": "Information:",
691
677
  "notification.error": "An error occurred",
@@ -697,11 +683,10 @@
697
683
  "notification.success.delete": "The item has been deleted",
698
684
  "notification.success.saved": "Saved",
699
685
  "notification.success.title": "Success:",
700
- "notification.version.update.link": "See more",
701
686
  "notification.version.update.message": "A new version of Strapi is available!",
702
687
  "notification.warning.title": "Warning:",
703
688
  "or": "OR",
704
689
  "request.error.model.unknown": "This model doesn't exist",
705
690
  "skipToContent": "Skip to content",
706
691
  "submit": "Submit"
707
- }
692
+ }