@strapi/admin 4.2.0-beta.0 → 4.2.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/src/assets/images/icon_offline-cloud.svg +5 -0
- package/admin/src/components/AuthenticatedApp/utils/api.js +1 -1
- package/admin/src/components/AutoReloadOverlayBlockerProvider/Blocker.js +1 -1
- package/admin/src/components/LeftMenu/index.js +2 -2
- package/admin/src/content-manager/components/CollectionTypeFormWrapper/index.js +17 -3
- package/admin/src/content-manager/components/ComponentInitializer/index.js +9 -4
- package/admin/src/content-manager/components/DynamicTable/CellContent/RelationMultiple/index.js +135 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/RelationSingle/index.js +32 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/RepeatableComponent/index.js +62 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/SingleComponent/index.js +37 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/index.js +52 -27
- package/admin/src/content-manager/components/DynamicTable/CellContent/utils/hasContent.js +64 -0
- package/admin/src/content-manager/components/DynamicTable/CellContent/utils/isSingleRelation.js +3 -0
- package/admin/src/content-manager/components/DynamicTable/TableRows/index.js +1 -1
- package/admin/src/content-manager/components/EditViewDataManagerProvider/index.js +37 -37
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/getAPIInnerError.js +18 -0
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/handleAPIError.js +15 -0
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/index.js +0 -1
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/schema.js +9 -7
- package/admin/src/content-manager/components/FieldComponent/index.js +0 -1
- package/admin/src/content-manager/components/InputUID/index.js +1 -5
- package/admin/src/content-manager/components/Inputs/index.js +4 -6
- package/admin/src/content-manager/components/RepeatableComponent/AccordionGroupCustom/index.js +3 -1
- package/admin/src/content-manager/components/RepeatableComponent/index.js +3 -18
- package/admin/src/content-manager/components/RepeatableComponent/utils/getComponentErrorKeys.js +10 -0
- package/admin/src/content-manager/components/SelectMany/index.js +1 -1
- package/admin/src/content-manager/components/SelectOne/index.js +1 -1
- package/admin/src/content-manager/components/SingleTypeFormWrapper/index.js +15 -3
- package/admin/src/content-manager/components/Wysiwyg/index.js +3 -4
- package/admin/src/content-manager/hooks/useFetchContentTypeLayout/utils/formatLayouts.js +23 -2
- package/admin/src/content-manager/pages/EditSettingsView/components/FieldButtonContent.js +1 -1
- package/admin/src/content-manager/pages/EditSettingsView/components/FormModal.js +1 -1
- package/admin/src/content-manager/pages/EditSettingsView/components/ModalForm.js +6 -1
- package/admin/src/content-manager/pages/EditSettingsView/index.js +3 -3
- package/admin/src/content-manager/pages/EditSettingsView/utils/layout.js +7 -1
- package/admin/src/content-manager/pages/EditView/DeleteLink/index.js +1 -4
- package/admin/src/content-manager/pages/EditView/DraftAndPublishBadge/index.js +1 -4
- package/admin/src/content-manager/pages/EditView/Header/index.js +1 -1
- package/admin/src/content-manager/pages/ListSettingsView/components/EditFieldForm.js +1 -1
- package/admin/src/content-manager/pages/ListSettingsView/index.js +2 -2
- package/admin/src/content-manager/pages/ListView/actions.js +2 -1
- package/admin/src/content-manager/pages/ListView/index.js +2 -5
- package/admin/src/content-manager/pages/ListView/reducer.js +55 -21
- package/admin/src/content-manager/pages/ListView/selectors.js +3 -6
- package/admin/src/content-manager/pages/ListViewLayoutManager/index.js +1 -1
- package/admin/src/content-manager/testUtils/data.js +5 -1
- package/admin/src/content-manager/utils/checkIfAttributeIsDisplayable.js +1 -1
- package/admin/src/content-manager/utils/isFieldTypeNumber.js +3 -0
- package/admin/src/hooks/useMenu/reducer.js +3 -3
- package/admin/src/hooks/useNavigatorOnLine/index.js +31 -0
- package/admin/src/hooks/useReleaseNotification/index.js +1 -1
- package/admin/src/hooks/useSettingsMenu/init.js +2 -2
- package/admin/src/layouts/UnauthenticatedLayout/index.js +1 -1
- package/admin/src/pages/Admin/Onboarding/index.js +1 -1
- package/admin/src/pages/Admin/index.js +15 -5
- package/admin/src/pages/App/constants.js +1 -0
- package/admin/src/pages/App/index.js +17 -3
- package/admin/src/pages/App/reducer.js +22 -0
- package/admin/src/pages/AuthPage/components/Login/BaseLogin.js +1 -1
- package/admin/src/pages/AuthPage/components/Register/index.js +6 -6
- package/admin/src/pages/AuthPage/components/ResetPassword/index.js +3 -3
- package/admin/src/pages/HomePage/ContentBlocks.js +1 -1
- package/admin/src/pages/HomePage/SocialLinks.js +1 -4
- package/admin/src/pages/InstalledPluginsPage/Plugins.js +3 -3
- package/admin/src/pages/InstalledPluginsPage/index.js +1 -1
- package/admin/src/pages/MarketplacePage/components/MissingPluginBanner/index.js +40 -0
- package/admin/src/pages/MarketplacePage/components/PageHeader/index.js +46 -0
- package/admin/src/pages/MarketplacePage/components/PluginCard/InstallPluginButton.js +66 -0
- package/admin/src/pages/MarketplacePage/components/PluginCard/index.js +13 -36
- package/admin/src/pages/MarketplacePage/index.js +65 -27
- package/admin/src/pages/ProfilePage/index.js +5 -5
- package/admin/src/pages/SettingsPage/components/SettingsNav/index.js +1 -1
- package/admin/src/pages/SettingsPage/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/LoadingView/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/index.js +3 -3
- package/admin/src/pages/SettingsPage/pages/ApiTokens/ListView/DynamicTable/DeleteButton/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ConditionsButton/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/RoleForm/index.js +3 -3
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/Roles/ListPage/index.js +6 -6
- package/admin/src/pages/SettingsPage/pages/Users/EditPage/index.js +5 -5
- package/admin/src/pages/SettingsPage/pages/Users/EditPage/utils/layout.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/DynamicTable/TableRows/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/ModalForm/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/ModalForm/utils/stepper.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Webhooks/EditView/components/WebhookForm/index.js +3 -3
- package/admin/src/pages/SettingsPage/pages/Webhooks/ListView/index.js +7 -7
- package/admin/src/pages/UseCasePage/index.js +2 -2
- package/admin/src/reducers.js +4 -2
- package/admin/src/translations/ar.json +0 -6
- package/admin/src/translations/cs.json +0 -8
- package/admin/src/translations/de.json +244 -49
- package/admin/src/translations/dk.json +0 -53
- package/admin/src/translations/en.json +87 -99
- package/admin/src/translations/es.json +0 -53
- package/admin/src/translations/fr.json +0 -56
- package/admin/src/translations/he.json +0 -24
- package/admin/src/translations/hu.json +0 -53
- package/admin/src/translations/id.json +0 -21
- package/admin/src/translations/it.json +0 -22
- package/admin/src/translations/ja.json +0 -53
- package/admin/src/translations/ko.json +0 -56
- package/admin/src/translations/ms.json +0 -12
- package/admin/src/translations/nl.json +0 -53
- package/admin/src/translations/no.json +0 -22
- package/admin/src/translations/pl.json +0 -26
- package/admin/src/translations/pt-BR.json +0 -53
- package/admin/src/translations/pt.json +0 -13
- package/admin/src/translations/ru.json +0 -25
- package/admin/src/translations/sk.json +0 -21
- package/admin/src/translations/sv.json +0 -6
- package/admin/src/translations/th.json +0 -21
- package/admin/src/translations/tr.json +0 -13
- package/admin/src/translations/uk.json +0 -12
- package/admin/src/translations/vi.json +1 -10
- package/admin/src/translations/zh-Hans.json +0 -53
- package/admin/src/translations/zh.json +0 -56
- package/admin/src/tsconfig.json +10 -0
- package/build/1856.e2bce2e8.chunk.js +171 -0
- package/build/2481.5fe150c7.chunk.js +184 -0
- package/build/272.d442e5ca.chunk.js +349 -0
- package/build/2912.5a7b0406.chunk.js +252 -0
- package/build/306.28d21ab8.chunk.js +896 -0
- package/build/4073.4765687b.chunk.js +1 -0
- package/build/4715.7f616cf6.chunk.js +387 -0
- package/build/4800.d3ebc81d.chunk.js +1 -0
- package/build/497.2ba35e90.chunk.js +284 -0
- package/build/4982.91235074.chunk.js +310 -0
- package/build/6229.f558fd19.chunk.js +194 -0
- package/build/6404.25d0f0d8.chunk.js +508 -0
- package/build/6925.fafef528.chunk.js +761 -0
- package/build/7841.0d73dde1.chunk.js +252 -0
- package/build/7863.996e70df.chunk.js +112 -0
- package/build/8469.3af1823d.chunk.js +1 -0
- package/build/9298.dab64a1b.chunk.js +345 -0
- package/build/948.d64fb515.chunk.js +2 -0
- package/build/9853.6cc1043a.chunk.js +354 -0
- package/build/9988.9b6e1d79.chunk.js +161 -0
- package/build/Admin-authenticatedApp.d26b3032.chunk.js +80 -0
- package/build/Admin_homePage.fc4a8408.chunk.js +71 -0
- package/build/Admin_marketplace.c406a140.chunk.js +11 -0
- package/build/Admin_pluginsPage.788fb2f6.chunk.js +1 -0
- package/build/Admin_profilePage.27191ed2.chunk.js +15 -0
- package/build/Admin_settingsPage.c40fdef1.chunk.js +170 -0
- package/build/a6b842e0b6d2b61135d1.svg +5 -0
- package/build/admin-edit-roles-page.c69fe8ab.chunk.js +1 -0
- package/build/admin-edit-users.be232f6b.chunk.js +10 -0
- package/build/admin-users.47d06d24.chunk.js +11 -0
- package/build/api-tokens-create-page.9774f0fe.chunk.js +1 -0
- package/build/api-tokens-edit-page.8f03c9a1.chunk.js +1 -0
- package/build/api-tokens-list-page.126fbca6.chunk.js +15 -0
- package/build/ar-json.d4cb26d9.chunk.js +1 -0
- package/build/codemirror-addon-closebrackets.c0f97916.chunk.js +2 -0
- package/build/codemirror-addon-lint-js.7c35dcb0.chunk.js +1 -0
- package/build/codemirror-addon-lint.505ff1d4.chunk.js +1 -0
- package/build/codemirror-addon-mark-selection.653e904d.chunk.js +1 -0
- package/build/codemirror-css.b467b1de.chunk.js +346 -0
- package/build/codemirror-javacript.41bdefda.chunk.js +1 -0
- package/build/codemirror-theme.cf9f9eb6.chunk.js +34 -0
- package/build/content-manager.ca66b566.chunk.js +1204 -0
- package/build/content-type-builder-translation-ar-json.142327af.chunk.js +1 -0
- package/build/content-type-builder-translation-cs-json.4aafb972.chunk.js +1 -0
- package/build/content-type-builder-translation-de-json.0d7696b9.chunk.js +1 -0
- package/build/content-type-builder-translation-dk-json.4729f055.chunk.js +1 -0
- package/build/content-type-builder-translation-en-json.e5110288.chunk.js +1 -0
- package/build/content-type-builder-translation-es-json.333cf47f.chunk.js +1 -0
- package/build/content-type-builder-translation-fr-json.aa6eeea8.chunk.js +1 -0
- package/build/content-type-builder-translation-id-json.7c00a32a.chunk.js +1 -0
- package/build/content-type-builder-translation-it-json.a906b389.chunk.js +1 -0
- package/build/content-type-builder-translation-ja-json.87f71930.chunk.js +1 -0
- package/build/content-type-builder-translation-ko-json.51201b12.chunk.js +1 -0
- package/build/content-type-builder-translation-ms-json.963a1a01.chunk.js +1 -0
- package/build/content-type-builder-translation-nl-json.c46c8f30.chunk.js +1 -0
- package/build/content-type-builder-translation-pl-json.a866acda.chunk.js +1 -0
- package/build/content-type-builder-translation-pt-BR-json.5739a2aa.chunk.js +1 -0
- package/build/content-type-builder-translation-pt-json.766bd747.chunk.js +1 -0
- package/build/content-type-builder-translation-ru-json.cf8d7c5c.chunk.js +1 -0
- package/build/content-type-builder-translation-sk-json.3a6defe0.chunk.js +1 -0
- package/build/content-type-builder-translation-th-json.c96a2d3f.chunk.js +1 -0
- package/build/content-type-builder-translation-tr-json.2e52bc60.chunk.js +1 -0
- package/build/content-type-builder-translation-uk-json.d8c0b6dd.chunk.js +1 -0
- package/build/content-type-builder-translation-zh-Hans-json.92a27f59.chunk.js +1 -0
- package/build/content-type-builder-translation-zh-json.2cc55621.chunk.js +1 -0
- package/build/content-type-builder.d12fd5cd.chunk.js +141 -0
- package/build/cropper-css.ecc0d670.chunk.js +306 -0
- package/build/cs-json.c8f28ba8.chunk.js +1 -0
- package/build/de-json.0b92acd2.chunk.js +1 -0
- package/build/dk-json.9f1bc016.chunk.js +1 -0
- package/build/email-settings-page.d807edfd.chunk.js +103 -0
- package/build/{email-translation-de-json.559a7d5f.chunk.js → email-translation-ar-json.c624512d.chunk.js} +1 -1
- package/build/{email-translation-ar-json.95d90eb4.chunk.js → email-translation-cs-json.cb18caab.chunk.js} +1 -1
- package/build/{email-translation-it-json.3de61cb6.chunk.js → email-translation-de-json.54743260.chunk.js} +1 -1
- package/build/{email-translation-dk-json.f8a595bf.chunk.js → email-translation-dk-json.f323fe4e.chunk.js} +1 -1
- package/build/{email-translation-en-json.fa0dc92b.chunk.js → email-translation-en-json.6da7e388.chunk.js} +1 -1
- package/build/{email-translation-es-json.eb303dea.chunk.js → email-translation-es-json.9021417d.chunk.js} +1 -1
- package/build/{email-translation-fr-json.49c3c888.chunk.js → email-translation-fr-json.9f125db0.chunk.js} +1 -1
- package/build/email-translation-id-json.3bcae5f5.chunk.js +1 -0
- package/build/{email-translation-cs-json.dfd1f3f2.chunk.js → email-translation-it-json.6ffd1774.chunk.js} +1 -1
- package/build/email-translation-ja-json.72b3f73c.chunk.js +1 -0
- package/build/email-translation-ko-json.e61d4e7a.chunk.js +1 -0
- package/build/email-translation-ms-json.b2b11e05.chunk.js +1 -0
- package/build/email-translation-nl-json.5349635f.chunk.js +1 -0
- package/build/email-translation-pl-json.6da50d0f.chunk.js +1 -0
- package/build/email-translation-pt-BR-json.2c98ab20.chunk.js +1 -0
- package/build/email-translation-pt-json.959ea070.chunk.js +1 -0
- package/build/email-translation-ru-json.d508cf3e.chunk.js +1 -0
- package/build/email-translation-sk-json.fa1fd4b3.chunk.js +1 -0
- package/build/email-translation-th-json.989cfecc.chunk.js +1 -0
- package/build/email-translation-tr-json.87f2feb3.chunk.js +1 -0
- package/build/email-translation-uk-json.0396a803.chunk.js +1 -0
- package/build/email-translation-vi-json.c0d8c414.chunk.js +1 -0
- package/build/email-translation-zh-Hans-json.b463cb25.chunk.js +1 -0
- package/build/email-translation-zh-json.3455468b.chunk.js +1 -0
- package/build/en-json.3e1a222e.chunk.js +1 -0
- package/build/es-json.2a5a9fc1.chunk.js +1 -0
- package/build/fontawesome-css-all.04f33619.chunk.js +4618 -0
- package/build/fontawesome-css.477ba714.chunk.js +6 -0
- package/build/fontawesome-js.252cc5f3.chunk.js +7 -0
- package/build/fr-json.84064a0b.chunk.js +1 -0
- package/build/he-json.d40da459.chunk.js +1 -0
- package/build/highlight.js.3381ffc3.chunk.js +86 -0
- package/build/hu-json.c81ce352.chunk.js +1 -0
- package/build/i18n-settings-page.c8f3b78b.chunk.js +101 -0
- package/build/i18n-translation-de-json.92534555.chunk.js +1 -0
- package/build/{i18n-translation-dk-json.ecf02d28.chunk.js → i18n-translation-dk-json.54f410ca.chunk.js} +1 -1
- package/build/{i18n-translation-en-json.4d823f62.chunk.js → i18n-translation-en-json.85bc892c.chunk.js} +1 -1
- package/build/i18n-translation-es-json.488206ae.chunk.js +1 -0
- package/build/i18n-translation-fr-json.0839d68d.chunk.js +1 -0
- package/build/i18n-translation-ko-json.d0bc1203.chunk.js +1 -0
- package/build/i18n-translation-zh-Hans-json.560a98e3.chunk.js +1 -0
- package/build/id-json.fad45d17.chunk.js +1 -0
- package/build/index.html +1 -1
- package/build/it-json.12df4cdf.chunk.js +1 -0
- package/build/ja-json.850237e9.chunk.js +1 -0
- package/build/ko-json.2f3d256e.chunk.js +1 -0
- package/build/main.36da7eeb.js +7918 -0
- package/build/ms-json.836ed013.chunk.js +1 -0
- package/build/nl-json.465b173f.chunk.js +1 -0
- package/build/no-json.e8749dd4.chunk.js +1 -0
- package/build/pl-json.94f05d2c.chunk.js +1 -0
- package/build/pt-BR-json.6301d49b.chunk.js +1 -0
- package/build/pt-json.c23020ab.chunk.js +1 -0
- package/build/ru-json.4560906c.chunk.js +1 -0
- package/build/runtime~main.251e9cca.js +2 -0
- package/build/sk-json.5b33afc2.chunk.js +1 -0
- package/build/sso-settings-page.dfb0b917.chunk.js +1 -0
- package/build/sv-json.cdcac02d.chunk.js +1 -0
- package/build/th-json.3aadaec6.chunk.js +1 -0
- package/build/tr-json.276e59fe.chunk.js +1 -0
- package/build/uk-json.5b5b9c27.chunk.js +1 -0
- package/build/upload-settings.17202e3b.chunk.js +101 -0
- package/build/upload-translation-de-json.b642da08.chunk.js +1 -0
- package/build/upload-translation-dk-json.fc61df13.chunk.js +1 -0
- package/build/upload-translation-en-json.59269508.chunk.js +1 -0
- package/build/upload-translation-es-json.8ec935ef.chunk.js +1 -0
- package/build/upload-translation-fr-json.eb9b4f84.chunk.js +1 -0
- package/build/upload-translation-he-json.c226f2dc.chunk.js +1 -0
- package/build/upload-translation-it-json.8e58456e.chunk.js +1 -0
- package/build/upload-translation-ja-json.1378a2e7.chunk.js +1 -0
- package/build/upload-translation-ko-json.5e06e112.chunk.js +1 -0
- package/build/upload-translation-ms-json.dc3bf0d7.chunk.js +1 -0
- package/build/upload-translation-pl-json.6071e38c.chunk.js +1 -0
- package/build/upload-translation-pt-BR-json.7e8d9550.chunk.js +1 -0
- package/build/upload-translation-ru-json.da2529f3.chunk.js +1 -0
- package/build/upload-translation-sk-json.bfdf4f09.chunk.js +1 -0
- package/build/upload-translation-th-json.6a48b826.chunk.js +1 -0
- package/build/upload-translation-uk-json.6fb09148.chunk.js +1 -0
- package/build/upload-translation-zh-Hans-json.c9622577.chunk.js +1 -0
- package/build/upload-translation-zh-json.711f804b.chunk.js +1 -0
- package/build/upload.d647d59d.chunk.js +105 -0
- package/build/users-advanced-settings-page.22690469.chunk.js +101 -0
- package/build/users-email-settings-page.0a096388.chunk.js +1 -0
- package/build/users-permissions-translation-ar-json.e8123ed2.chunk.js +1 -0
- package/build/users-permissions-translation-cs-json.e6649c5f.chunk.js +1 -0
- package/build/users-permissions-translation-de-json.c3628843.chunk.js +1 -0
- package/build/users-permissions-translation-dk-json.fe39c74b.chunk.js +1 -0
- package/build/users-permissions-translation-en-json.3fe86528.chunk.js +1 -0
- package/build/users-permissions-translation-es-json.1bb9cde2.chunk.js +1 -0
- package/build/users-permissions-translation-fr-json.172aa69f.chunk.js +1 -0
- package/build/users-permissions-translation-id-json.5aadd143.chunk.js +1 -0
- package/build/users-permissions-translation-it-json.7d377480.chunk.js +1 -0
- package/build/users-permissions-translation-ja-json.4967badf.chunk.js +1 -0
- package/build/users-permissions-translation-ko-json.3be77775.chunk.js +1 -0
- package/build/users-permissions-translation-ms-json.ea8a2baf.chunk.js +1 -0
- package/build/users-permissions-translation-nl-json.d638c4ce.chunk.js +1 -0
- package/build/users-permissions-translation-pl-json.3c4fe81c.chunk.js +1 -0
- package/build/users-permissions-translation-pt-BR-json.f6791a86.chunk.js +1 -0
- package/build/users-permissions-translation-pt-json.38afed04.chunk.js +1 -0
- package/build/users-permissions-translation-ru-json.319d51ef.chunk.js +1 -0
- package/build/users-permissions-translation-sk-json.ba1cd385.chunk.js +1 -0
- package/build/users-permissions-translation-sv-json.83c60841.chunk.js +1 -0
- package/build/users-permissions-translation-th-json.68873214.chunk.js +1 -0
- package/build/users-permissions-translation-tr-json.cdc49a3c.chunk.js +1 -0
- package/build/users-permissions-translation-uk-json.63eaa01c.chunk.js +1 -0
- package/build/users-permissions-translation-vi-json.dccc02fc.chunk.js +1 -0
- package/build/users-permissions-translation-zh-Hans-json.c3fd301b.chunk.js +1 -0
- package/build/users-permissions-translation-zh-json.e03ae2a4.chunk.js +1 -0
- package/build/users-providers-settings-page.bfe7755a.chunk.js +1 -0
- package/build/users-roles-settings-page.487f3346.chunk.js +30 -0
- package/build/vi-json.3d14e91e.chunk.js +1 -0
- package/build/webhook-edit-page.043fe03f.chunk.js +23 -0
- package/build/webhook-list-page.2d2d71a1.chunk.js +132 -0
- package/build/zh-Hans-json.c84ce330.chunk.js +1 -0
- package/build/zh-json.96bf6019.chunk.js +1 -0
- package/ee/admin/pages/AuthPage/components/Providers/SSOProviders.js +1 -1
- package/ee/admin/pages/SettingsPage/SingleSignOn/index.js +2 -2
- package/ee/admin/pages/SettingsPage/pages/Roles/CreatePage/index.js +5 -5
- package/ee/admin/pages/SettingsPage/pages/Roles/ListPage/index.js +6 -6
- package/index.js +32 -27
- package/package.json +10 -12
- package/scripts/build.js +32 -4
- package/server/bootstrap.js +9 -7
- package/server/config/index.js +0 -1
- package/server/controllers/admin.js +22 -1
- package/server/policies/index.js +1 -0
- package/server/policies/isTelemetryEnabled.js +16 -0
- package/server/routes/admin.js +9 -0
- package/server/services/api-token.js +15 -14
- package/server/services/token.js +13 -0
- package/server/validation/permission.js +5 -1
- package/utils/create-cache-dir.js +60 -15
- package/utils/get-custom-app-config-file.js +23 -0
- package/utils/get-plugins-path.js +26 -0
- package/utils/should-build-admin.js +7 -6
- package/utils/watch-admin-files.js +4 -1
- package/webpack.config.js +100 -91
- package/admin/src/content-manager/components/DynamicTable/CellContent/Relation/PopoverContent.js +0 -87
- package/admin/src/content-manager/components/DynamicTable/CellContent/Relation/index.js +0 -107
- package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/getYupInnerErrors.js +0 -17
- package/build/1094.e1db3a1a.chunk.js +0 -1
- package/build/1454.f065d92a.chunk.js +0 -2
- package/build/1454.f065d92a.chunk.js.LICENSE.txt +0 -7
- package/build/1856.a30bd09b.chunk.js +0 -1
- package/build/2481.4eae9408.chunk.js +0 -1
- package/build/2912.c5f76e65.chunk.js +0 -1
- package/build/4362.b3d67035.chunk.js +0 -1
- package/build/4715.8a2db02a.chunk.js +0 -1
- package/build/4800.f4a1384a.chunk.js +0 -1
- package/build/497.3fcf6196.chunk.js +0 -1
- package/build/4982.601f6196.chunk.js +0 -1
- package/build/6404.3c2d0a81.chunk.js +0 -1
- package/build/6925.bd694b04.chunk.js +0 -2
- package/build/6925.bd694b04.chunk.js.LICENSE.txt +0 -5
- package/build/7841.490dbbf1.chunk.js +0 -1
- package/build/8042.1d66811a.chunk.js +0 -2
- package/build/8042.1d66811a.chunk.js.LICENSE.txt +0 -4
- package/build/8469.8d819a3c.chunk.js +0 -1
- package/build/849.17f011e8.chunk.js +0 -1
- package/build/9235.ced8aebf.chunk.js +0 -1
- package/build/9260.4233fae2.chunk.js +0 -2
- package/build/9260.4233fae2.chunk.js.LICENSE.txt +0 -15
- package/build/9853.6ff595fa.chunk.js +0 -1
- package/build/9988.fe838ba6.chunk.js +0 -2
- package/build/9988.fe838ba6.chunk.js.LICENSE.txt +0 -9
- package/build/Admin-authenticatedApp.16bed71f.chunk.js +0 -1
- package/build/Admin_homePage.fd1fc572.chunk.js +0 -1
- package/build/Admin_marketplace.89a0a014.chunk.js +0 -1
- package/build/Admin_pluginsPage.97a514db.chunk.js +0 -1
- package/build/Admin_profilePage.d7192d06.chunk.js +0 -1
- package/build/Admin_settingsPage.a8c7ded5.chunk.js +0 -1
- package/build/admin-edit-roles-page.49b6f01d.chunk.js +0 -1
- package/build/admin-edit-users.381e4a0d.chunk.js +0 -1
- package/build/admin-users.2740c223.chunk.js +0 -1
- package/build/api-tokens-create-page.db17bb39.chunk.js +0 -1
- package/build/api-tokens-edit-page.c7299a77.chunk.js +0 -1
- package/build/api-tokens-list-page.26a05a21.chunk.js +0 -1
- package/build/ar-json.6a2565af.chunk.js +0 -1
- package/build/codemirror-addon-closebrackets.0cfe64d0.chunk.js +0 -1
- package/build/codemirror-addon-lint-js.a6eeef9c.chunk.js +0 -1
- package/build/codemirror-addon-lint.91580cda.chunk.js +0 -1
- package/build/codemirror-addon-mark-selection.4dca121f.chunk.js +0 -1
- package/build/codemirror-css.48b438c9.chunk.js +0 -1
- package/build/codemirror-javacript.8c7c015d.chunk.js +0 -1
- package/build/codemirror-theme.b5559efc.chunk.js +0 -1
- package/build/content-manager.f1c46a88.chunk.js +0 -1
- package/build/content-type-builder-translation-ar-json.f1fedc12.chunk.js +0 -1
- package/build/content-type-builder-translation-cs-json.89f7272e.chunk.js +0 -1
- package/build/content-type-builder-translation-de-json.0205697c.chunk.js +0 -1
- package/build/content-type-builder-translation-dk-json.235ff56e.chunk.js +0 -1
- package/build/content-type-builder-translation-en-json.8034dab6.chunk.js +0 -1
- package/build/content-type-builder-translation-es-json.13b2e2aa.chunk.js +0 -1
- package/build/content-type-builder-translation-fr-json.bee621f7.chunk.js +0 -1
- package/build/content-type-builder-translation-id-json.2fbf4f8c.chunk.js +0 -1
- package/build/content-type-builder-translation-it-json.a1afd7a9.chunk.js +0 -1
- package/build/content-type-builder-translation-ja-json.1459fb88.chunk.js +0 -1
- package/build/content-type-builder-translation-ko-json.d2080111.chunk.js +0 -1
- package/build/content-type-builder-translation-ms-json.048122eb.chunk.js +0 -1
- package/build/content-type-builder-translation-nl-json.8d59e86b.chunk.js +0 -1
- package/build/content-type-builder-translation-pl-json.01dc068c.chunk.js +0 -1
- package/build/content-type-builder-translation-pt-BR-json.d311d056.chunk.js +0 -1
- package/build/content-type-builder-translation-pt-json.4893266f.chunk.js +0 -1
- package/build/content-type-builder-translation-ru-json.1285874d.chunk.js +0 -1
- package/build/content-type-builder-translation-sk-json.0064156b.chunk.js +0 -1
- package/build/content-type-builder-translation-th-json.5f690524.chunk.js +0 -1
- package/build/content-type-builder-translation-tr-json.696283a5.chunk.js +0 -1
- package/build/content-type-builder-translation-uk-json.87496bf9.chunk.js +0 -1
- package/build/content-type-builder-translation-zh-Hans-json.283c640e.chunk.js +0 -1
- package/build/content-type-builder-translation-zh-json.77aa2275.chunk.js +0 -1
- package/build/content-type-builder.cda4ba3c.chunk.js +0 -1
- package/build/cropper-css.ace19575.chunk.js +0 -1
- package/build/cs-json.8df09876.chunk.js +0 -1
- package/build/de-json.6e14f607.chunk.js +0 -1
- package/build/dk-json.be388470.chunk.js +0 -1
- package/build/email-settings-page.40ee2bda.chunk.js +0 -1
- package/build/email-translation-id-json.e3c2101d.chunk.js +0 -1
- package/build/email-translation-ja-json.66337e44.chunk.js +0 -1
- package/build/email-translation-ko-json.52bbd7b4.chunk.js +0 -1
- package/build/email-translation-ms-json.e39256df.chunk.js +0 -1
- package/build/email-translation-nl-json.12d28adb.chunk.js +0 -1
- package/build/email-translation-pl-json.9585a84e.chunk.js +0 -1
- package/build/email-translation-pt-BR-json.6c04b3ef.chunk.js +0 -1
- package/build/email-translation-pt-json.0239be04.chunk.js +0 -1
- package/build/email-translation-ru-json.f3b4fecc.chunk.js +0 -1
- package/build/email-translation-sk-json.76dbaaa6.chunk.js +0 -1
- package/build/email-translation-th-json.25ad73e7.chunk.js +0 -1
- package/build/email-translation-tr-json.ae04a9f2.chunk.js +0 -1
- package/build/email-translation-uk-json.03b27b08.chunk.js +0 -1
- package/build/email-translation-vi-json.3e1dd5b3.chunk.js +0 -1
- package/build/email-translation-zh-Hans-json.0df4ca59.chunk.js +0 -1
- package/build/email-translation-zh-json.82978eb0.chunk.js +0 -1
- package/build/en-json.73a610d6.chunk.js +0 -1
- package/build/es-json.61553168.chunk.js +0 -1
- package/build/fontawesome-css-all.3b89f909.chunk.js +0 -1
- package/build/fontawesome-css.36cff9ae.chunk.js +0 -1
- package/build/fontawesome-js.2639263c.chunk.js +0 -2
- package/build/fontawesome-js.2639263c.chunk.js.LICENSE.txt +0 -4
- package/build/fr-json.a9ce0700.chunk.js +0 -1
- package/build/he-json.1742494e.chunk.js +0 -1
- package/build/highlight.js.6321cb45.chunk.js +0 -1
- package/build/hu-json.e667d285.chunk.js +0 -1
- package/build/i18n-settings-page.c4018651.chunk.js +0 -1
- package/build/i18n-translation-de-json.c5c9054f.chunk.js +0 -1
- package/build/i18n-translation-es-json.7049afa2.chunk.js +0 -1
- package/build/i18n-translation-fr-json.c6367bc9.chunk.js +0 -1
- package/build/i18n-translation-ko-json.aecb7e01.chunk.js +0 -1
- package/build/i18n-translation-zh-Hans-json.258b2e1a.chunk.js +0 -1
- package/build/id-json.d87ebb20.chunk.js +0 -1
- package/build/it-json.a2880b81.chunk.js +0 -1
- package/build/ja-json.e13f04e8.chunk.js +0 -1
- package/build/ko-json.2200c9c9.chunk.js +0 -1
- package/build/main.12d62562.js +0 -2
- package/build/main.12d62562.js.LICENSE.txt +0 -91
- package/build/ms-json.3a062984.chunk.js +0 -1
- package/build/nl-json.30ce02cb.chunk.js +0 -1
- package/build/no-json.9af40e9d.chunk.js +0 -1
- package/build/pl-json.fd373053.chunk.js +0 -1
- package/build/pt-BR-json.30e2d716.chunk.js +0 -1
- package/build/pt-json.3aaf9e05.chunk.js +0 -1
- package/build/ru-json.78c56e1c.chunk.js +0 -1
- package/build/runtime~main.21bf3a67.js +0 -1
- package/build/sk-json.c0bf144c.chunk.js +0 -1
- package/build/sso-settings-page.121dd0a6.chunk.js +0 -1
- package/build/sv-json.aad187b9.chunk.js +0 -1
- package/build/th-json.e2b4a0fb.chunk.js +0 -1
- package/build/tr-json.0add11cd.chunk.js +0 -1
- package/build/uk-json.eb78e77e.chunk.js +0 -1
- package/build/upload-settings.4401f36d.chunk.js +0 -1
- package/build/upload-translation-de-json.1308dce5.chunk.js +0 -1
- package/build/upload-translation-dk-json.0d4e855f.chunk.js +0 -1
- package/build/upload-translation-en-json.c334dd82.chunk.js +0 -1
- package/build/upload-translation-es-json.81b13eac.chunk.js +0 -1
- package/build/upload-translation-fr-json.1bec79ec.chunk.js +0 -1
- package/build/upload-translation-he-json.1d28982f.chunk.js +0 -1
- package/build/upload-translation-it-json.7d4bdc5a.chunk.js +0 -1
- package/build/upload-translation-ja-json.97fcacd8.chunk.js +0 -1
- package/build/upload-translation-ko-json.d7345fe1.chunk.js +0 -1
- package/build/upload-translation-ms-json.081effd5.chunk.js +0 -1
- package/build/upload-translation-pl-json.2dfe78bb.chunk.js +0 -1
- package/build/upload-translation-pt-BR-json.65936d7b.chunk.js +0 -1
- package/build/upload-translation-ru-json.2d3b6f69.chunk.js +0 -1
- package/build/upload-translation-sk-json.f15c7fd6.chunk.js +0 -1
- package/build/upload-translation-th-json.6d3c2370.chunk.js +0 -1
- package/build/upload-translation-uk-json.a6c38449.chunk.js +0 -1
- package/build/upload-translation-zh-Hans-json.f6b26c45.chunk.js +0 -1
- package/build/upload-translation-zh-json.06052336.chunk.js +0 -1
- package/build/upload.5a2dded7.chunk.js +0 -1
- package/build/users-advanced-settings-page.8905d8d8.chunk.js +0 -1
- package/build/users-email-settings-page.5abb9575.chunk.js +0 -1
- package/build/users-permissions-translation-ar-json.bdddd0d7.chunk.js +0 -1
- package/build/users-permissions-translation-cs-json.7881d3ff.chunk.js +0 -1
- package/build/users-permissions-translation-de-json.8d53c619.chunk.js +0 -1
- package/build/users-permissions-translation-dk-json.89d41c4b.chunk.js +0 -1
- package/build/users-permissions-translation-en-json.21b0fd2f.chunk.js +0 -1
- package/build/users-permissions-translation-es-json.a4f81eaa.chunk.js +0 -1
- package/build/users-permissions-translation-fr-json.a2172545.chunk.js +0 -1
- package/build/users-permissions-translation-id-json.8f17982a.chunk.js +0 -1
- package/build/users-permissions-translation-it-json.87952a24.chunk.js +0 -1
- package/build/users-permissions-translation-ja-json.5915d9ef.chunk.js +0 -1
- package/build/users-permissions-translation-ko-json.f1ca6cc4.chunk.js +0 -1
- package/build/users-permissions-translation-ms-json.2268324c.chunk.js +0 -1
- package/build/users-permissions-translation-nl-json.4e1231dd.chunk.js +0 -1
- package/build/users-permissions-translation-pl-json.107638b5.chunk.js +0 -1
- package/build/users-permissions-translation-pt-BR-json.8dafc053.chunk.js +0 -1
- package/build/users-permissions-translation-pt-json.3322464f.chunk.js +0 -1
- package/build/users-permissions-translation-ru-json.5709c5a0.chunk.js +0 -1
- package/build/users-permissions-translation-sk-json.fe7cc044.chunk.js +0 -1
- package/build/users-permissions-translation-sv-json.e7e1684b.chunk.js +0 -1
- package/build/users-permissions-translation-th-json.bb544ee3.chunk.js +0 -1
- package/build/users-permissions-translation-tr-json.30f3ca90.chunk.js +0 -1
- package/build/users-permissions-translation-uk-json.634f2569.chunk.js +0 -1
- package/build/users-permissions-translation-vi-json.605d88bc.chunk.js +0 -1
- package/build/users-permissions-translation-zh-Hans-json.85480dab.chunk.js +0 -1
- package/build/users-permissions-translation-zh-json.99932731.chunk.js +0 -1
- package/build/users-providers-settings-page.368893ed.chunk.js +0 -1
- package/build/users-roles-settings-page.a2f6277a.chunk.js +0 -1
- package/build/vi-json.1e850069.chunk.js +0 -1
- package/build/webhook-edit-page.d170eda1.chunk.js +0 -1
- package/build/webhook-list-page.c21b5a9a.chunk.js +0 -1
- package/build/zh-Hans-json.55f6475b.chunk.js +0 -1
- package/build/zh-json.c3c2b225.chunk.js +0 -1
- package/server/config/api-token.js +0 -7
|
@@ -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": "
|
|
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
|
|
45
|
-
"Auth.form.register.subtitle": "
|
|
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,7 +122,6 @@
|
|
|
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",
|
|
@@ -157,9 +134,7 @@
|
|
|
157
134
|
"Settings.profile.form.section.experience.mode.option-label": "{name} mode",
|
|
158
135
|
"Settings.profile.form.section.experience.title": "Experience",
|
|
159
136
|
"Settings.profile.form.section.helmet.title": "User profile",
|
|
160
|
-
"Settings.profile.form.section.password.title": "Change password",
|
|
161
137
|
"Settings.profile.form.section.profile.page.title": "Profile page",
|
|
162
|
-
"Settings.profile.form.section.profile.title": "Profile",
|
|
163
138
|
"Settings.roles.create.description": "Define the rights given to the role",
|
|
164
139
|
"Settings.roles.create.title": "Create a role",
|
|
165
140
|
"Settings.roles.created": "Role created",
|
|
@@ -167,8 +142,6 @@
|
|
|
167
142
|
"Settings.roles.form.button.users-with-role": "{number, plural, =0 {# users} one {# user} other {# users}} with this role",
|
|
168
143
|
"Settings.roles.form.created": "Created",
|
|
169
144
|
"Settings.roles.form.description": "Name and description of the role",
|
|
170
|
-
"Settings.roles.form.input.description": "Description",
|
|
171
|
-
"Settings.roles.form.input.name": "Name",
|
|
172
145
|
"Settings.roles.form.permission.property-label": "{label} permissions",
|
|
173
146
|
"Settings.roles.form.permissions.attributesPermissions": "Fields permissions",
|
|
174
147
|
"Settings.roles.form.permissions.create": "Create",
|
|
@@ -176,14 +149,8 @@
|
|
|
176
149
|
"Settings.roles.form.permissions.publish": "Publish",
|
|
177
150
|
"Settings.roles.form.permissions.read": "Read",
|
|
178
151
|
"Settings.roles.form.permissions.update": "Update",
|
|
179
|
-
"Settings.roles.form.title": "Details",
|
|
180
152
|
"Settings.roles.list.button.add": "Add new role",
|
|
181
153
|
"Settings.roles.list.description": "List of roles",
|
|
182
|
-
"Settings.roles.list.header.actions": "Actions",
|
|
183
|
-
"Settings.roles.list.header.description": "Description",
|
|
184
|
-
"Settings.roles.list.header.name": "Name",
|
|
185
|
-
"Settings.roles.list.header.users": "Users",
|
|
186
|
-
"Settings.roles.title": "Roles",
|
|
187
154
|
"Settings.roles.title.singular": "role",
|
|
188
155
|
"Settings.sso.description": "Configure the settings for the Single Sign-On feature.",
|
|
189
156
|
"Settings.sso.form.defaultRole.description": "It will attach the new authenticated user to the selected role",
|
|
@@ -191,30 +158,23 @@
|
|
|
191
158
|
"Settings.sso.form.defaultRole.label": "Default role",
|
|
192
159
|
"Settings.sso.form.registration.description": "Create new user on SSO login if no account exists",
|
|
193
160
|
"Settings.sso.form.registration.label": "Auto-registration",
|
|
194
|
-
"Settings.sso.form.settings.title": "Settings",
|
|
195
161
|
"Settings.sso.title": "Single Sign-On",
|
|
196
162
|
"Settings.webhooks.create": "Create a webhook",
|
|
197
163
|
"Settings.webhooks.create.header": "Create new header",
|
|
198
164
|
"Settings.webhooks.created": "Webhook created",
|
|
199
|
-
"Settings.webhooks.disabled": "Disabled",
|
|
200
|
-
"Settings.webhooks.enabled": "Enabled",
|
|
201
165
|
"Settings.webhooks.event.publish-tooltip": "This event only exists for contents with Draft/Publish system enabled",
|
|
202
166
|
"Settings.webhooks.events.create": "Create",
|
|
203
|
-
"Settings.webhooks.events.delete": "Delete",
|
|
204
167
|
"Settings.webhooks.events.update": "Update",
|
|
205
168
|
"Settings.webhooks.form.events": "Events",
|
|
206
169
|
"Settings.webhooks.form.headers": "Headers",
|
|
207
|
-
"Settings.webhooks.form.name": "Name",
|
|
208
170
|
"Settings.webhooks.form.url": "Url",
|
|
209
171
|
"Settings.webhooks.headers.remove": "Remove header row {number}",
|
|
210
172
|
"Settings.webhooks.key": "Key",
|
|
211
|
-
"Settings.webhooks.list.all-entries.select": "Select all entries",
|
|
212
173
|
"Settings.webhooks.list.button.add": "Create new webhook",
|
|
213
174
|
"Settings.webhooks.list.description": "Get POST changes notifications",
|
|
214
175
|
"Settings.webhooks.list.empty.description": "No webhooks found",
|
|
215
176
|
"Settings.webhooks.list.empty.link": "See our documentation",
|
|
216
177
|
"Settings.webhooks.list.empty.title": "There are no webhooks yet",
|
|
217
|
-
"Settings.webhooks.list.select": "Select",
|
|
218
178
|
"Settings.webhooks.list.th.actions": "actions",
|
|
219
179
|
"Settings.webhooks.list.th.status": "status",
|
|
220
180
|
"Settings.webhooks.singular": "webhook",
|
|
@@ -229,65 +189,55 @@
|
|
|
229
189
|
"Settings.webhooks.trigger.test": "Test-trigger",
|
|
230
190
|
"Settings.webhooks.trigger.title": "Save before Trigger",
|
|
231
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",
|
|
232
201
|
"Username": "Username",
|
|
233
202
|
"Users": "Users",
|
|
234
203
|
"Users & Permissions": "Users & Permissions",
|
|
235
|
-
"Usecase.front-end": "Front-end developer",
|
|
236
|
-
"Usecase.back-end": "Back-end developer",
|
|
237
|
-
"Usecase.full-stack": "Full-stack developer",
|
|
238
|
-
"Usecase.content-manager": "Content Manager",
|
|
239
|
-
"Usecase.content-creator": "Content Creator",
|
|
240
|
-
"Usecase.other": "Other",
|
|
241
|
-
"Usecase.title": "Tell us a bit more about yourself",
|
|
242
|
-
"Usecase.input.work-type": "What type of work do you do?",
|
|
243
|
-
"Usecase.button.skip": "Skip this question",
|
|
244
|
-
"Usecase.notification.success.project-created": "Project has been successfully created",
|
|
245
204
|
"Users.components.List.empty": "There is no users...",
|
|
246
205
|
"Users.components.List.empty.withFilters": "There is no users with the applied filters...",
|
|
247
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.offline.title": "You are offline",
|
|
209
|
+
"admin.pages.MarketPlacePage.offline.subtitle": "You need to be connected to the Internet to access Strapi Market.",
|
|
210
|
+
"admin.pages.MarketPlacePage.plugin.copy": "Copy install command",
|
|
211
|
+
"admin.pages.MarketPlacePage.plugin.copy.success": "Install command ready to be pasted in your terminal",
|
|
212
|
+
"admin.pages.MarketPlacePage.plugin.info": "Learn more",
|
|
213
|
+
"admin.pages.MarketPlacePage.plugin.info.label": "Learn more about {pluginName}",
|
|
214
|
+
"admin.pages.MarketPlacePage.plugin.info.text": "Learn more",
|
|
215
|
+
"admin.pages.MarketPlacePage.plugin.installed": "Installed",
|
|
216
|
+
"admin.pages.MarketPlacePage.plugin.tooltip.madeByStrapi": "Made by Strapi",
|
|
217
|
+
"admin.pages.MarketPlacePage.plugin.tooltip.verified": "Plugin verified by Strapi",
|
|
218
|
+
"admin.pages.MarketPlacePage.search.clear": "Clear the plugin search",
|
|
219
|
+
"admin.pages.MarketPlacePage.search.empty": "No result for \"{target}\"",
|
|
220
|
+
"admin.pages.MarketPlacePage.search.placeholder": "Search for a plugin",
|
|
221
|
+
"admin.pages.MarketPlacePage.submit.plugin.link": "Submit your plugin",
|
|
222
|
+
"admin.pages.MarketPlacePage.subtitle": "Get more out of Strapi",
|
|
223
|
+
"admin.pages.MarketPlacePage.missingPlugin.title": "Missing a plugin?",
|
|
224
|
+
"admin.pages.MarketPlacePage.missingPlugin.description": "Tell us what plugin you are looking for and we'll let our community plugin developers know in case they are in search for inspiration!",
|
|
248
225
|
"anErrorOccurred": "Woops! Something went wrong. Please, try again.",
|
|
249
|
-
"app.components.GuidedTour.skip": "Skip the tour",
|
|
250
|
-
"app.components.GuidedTour.title": "3 steps to get started",
|
|
251
|
-
"app.components.GuidedTour.create-content": "Create content",
|
|
252
|
-
"app.components.GuidedTour.home.CTB.title": "🧠 Build the content structure",
|
|
253
|
-
"app.components.GuidedTour.home.CTB.cta.title": "Go to the Content type Builder",
|
|
254
|
-
"app.components.GuidedTour.CTB.create.title": "🧠 Create a first Collection type",
|
|
255
|
-
"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>",
|
|
256
|
-
"app.components.GuidedTour.CTB.create.cta.title": "Build a Collection type",
|
|
257
|
-
"app.components.GuidedTour.CTB.success.title": "Step 1: Completed ✅",
|
|
258
|
-
"app.components.GuidedTour.CTB.success.content": "<p>Good going!</p><b>⚡️ What would you like to share with the world?</b>",
|
|
259
|
-
"app.components.GuidedTour.home.CM.title": "⚡️ What would you like to share with the world?",
|
|
260
|
-
"app.components.GuidedTour.CM.create.title": "⚡️ Create content",
|
|
261
|
-
"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>",
|
|
262
|
-
"app.components.GuidedTour.CM.success.title": "Step 2: Completed ✅",
|
|
263
|
-
"app.components.GuidedTour.CM.success.content": "<p>Awesome, one last step to go!</p><b>🚀 See content in action</b>",
|
|
264
|
-
"app.components.GuidedTour.CM.success.cta.title": "Test the API",
|
|
265
|
-
"app.components.GuidedTour.home.apiTokens.cta.title": "Test the API",
|
|
266
|
-
"app.components.GuidedTour.apiTokens.create.title": "🚀 See content in action",
|
|
267
|
-
"app.components.GuidedTour.apiTokens.create.content": "<p>Generate an authentication token here and retrieve the content you just created.</p>",
|
|
268
|
-
"app.components.GuidedTour.apiTokens.create.cta.title": "Generate an API Token",
|
|
269
|
-
"app.components.GuidedTour.apiTokens.success.title": "Step 3: Completed ✅",
|
|
270
|
-
"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>",
|
|
271
|
-
"app.components.GuidedTour.apiTokens.success.cta.title": "Go back to homepage",
|
|
272
226
|
"app.component.CopyToClipboard.label": "Copy to clipboard",
|
|
273
227
|
"app.component.search.label": "Search for {target}",
|
|
274
|
-
"app.component.table.delete": "Delete {target}",
|
|
275
228
|
"app.component.table.duplicate": "Duplicate {target}",
|
|
276
229
|
"app.component.table.edit": "Edit {target}",
|
|
277
|
-
"app.component.table.select.all-entries": "Select all entries",
|
|
278
230
|
"app.component.table.select.one-entry": "Select {target}",
|
|
279
231
|
"app.components.BlockLink.blog": "Blog",
|
|
280
232
|
"app.components.BlockLink.blog.content": "Read the latest news about Strapi and the ecosystem.",
|
|
281
233
|
"app.components.BlockLink.code": "Code examples",
|
|
282
234
|
"app.components.BlockLink.code.content": "Learn by testing real projects developed the community.",
|
|
283
|
-
"app.components.BlockLink.documentation": "Documentation",
|
|
284
235
|
"app.components.BlockLink.documentation.content": "Discover the essential concepts, guides and instructions.",
|
|
285
236
|
"app.components.BlockLink.tutorial": "Tutorials",
|
|
286
237
|
"app.components.BlockLink.tutorial.content": "Follow step-by-step instructions to use and customize Strapi.",
|
|
287
238
|
"app.components.Button.cancel": "Cancel",
|
|
288
239
|
"app.components.Button.confirm": "Confirm",
|
|
289
240
|
"app.components.Button.reset": "Reset",
|
|
290
|
-
"app.components.Button.save": "Save",
|
|
291
241
|
"app.components.ComingSoonPage.comingSoon": "Coming soon",
|
|
292
242
|
"app.components.ConfirmDialog.title": "Confirmation",
|
|
293
243
|
"app.components.DownloadInfo.download": "Download in progress...",
|
|
@@ -295,7 +245,29 @@
|
|
|
295
245
|
"app.components.EmptyAttributes.title": "There are no fields yet",
|
|
296
246
|
"app.components.EmptyStateLayout.content-document": "No content found",
|
|
297
247
|
"app.components.EmptyStateLayout.content-permissions": "You don't have the permissions to access that content",
|
|
298
|
-
"app.components.
|
|
248
|
+
"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>",
|
|
249
|
+
"app.components.GuidedTour.CM.create.title": "⚡️ Create content",
|
|
250
|
+
"app.components.GuidedTour.CM.success.content": "<p>Awesome, one last step to go!</p><b>🚀 See content in action</b>",
|
|
251
|
+
"app.components.GuidedTour.CM.success.cta.title": "Test the API",
|
|
252
|
+
"app.components.GuidedTour.CM.success.title": "Step 2: Completed ✅",
|
|
253
|
+
"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>",
|
|
254
|
+
"app.components.GuidedTour.CTB.create.cta.title": "Build a Collection type",
|
|
255
|
+
"app.components.GuidedTour.CTB.create.title": "🧠 Create a first Collection type",
|
|
256
|
+
"app.components.GuidedTour.CTB.success.content": "<p>Good going!</p><b>⚡️ What would you like to share with the world?</b>",
|
|
257
|
+
"app.components.GuidedTour.CTB.success.title": "Step 1: Completed ✅",
|
|
258
|
+
"app.components.GuidedTour.apiTokens.create.content": "<p>Generate an authentication token here and retrieve the content you just created.</p>",
|
|
259
|
+
"app.components.GuidedTour.apiTokens.create.cta.title": "Generate an API Token",
|
|
260
|
+
"app.components.GuidedTour.apiTokens.create.title": "🚀 See content in action",
|
|
261
|
+
"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>",
|
|
262
|
+
"app.components.GuidedTour.apiTokens.success.cta.title": "Go back to homepage",
|
|
263
|
+
"app.components.GuidedTour.apiTokens.success.title": "Step 3: Completed ✅",
|
|
264
|
+
"app.components.GuidedTour.create-content": "Create content",
|
|
265
|
+
"app.components.GuidedTour.home.CM.title": "⚡️ What would you like to share with the world?",
|
|
266
|
+
"app.components.GuidedTour.home.CTB.cta.title": "Go to the Content type Builder",
|
|
267
|
+
"app.components.GuidedTour.home.CTB.title": "🧠 Build the content structure",
|
|
268
|
+
"app.components.GuidedTour.home.apiTokens.cta.title": "Test the API",
|
|
269
|
+
"app.components.GuidedTour.skip": "Skip the tour",
|
|
270
|
+
"app.components.GuidedTour.title": "3 steps to get started",
|
|
299
271
|
"app.components.HomePage.button.blog": "See more on the blog",
|
|
300
272
|
"app.components.HomePage.community": "Join the community",
|
|
301
273
|
"app.components.HomePage.community.content": "Discuss with team members, contributors and developers on different channels.",
|
|
@@ -322,24 +294,18 @@
|
|
|
322
294
|
"app.components.LeftMenu.logout": "Logout",
|
|
323
295
|
"app.components.LeftMenu.navbrand.title": "Strapi Dashboard",
|
|
324
296
|
"app.components.LeftMenu.navbrand.workplace": "Workplace",
|
|
325
|
-
"app.components.LeftMenu.profile": "Profile",
|
|
326
|
-
"app.components.LeftMenuFooter.documentation": "Documentation",
|
|
327
297
|
"app.components.LeftMenuFooter.help": "Help",
|
|
328
298
|
"app.components.LeftMenuFooter.poweredBy": "Powered by ",
|
|
329
299
|
"app.components.LeftMenuLinkContainer.collectionTypes": "Collection Types",
|
|
330
300
|
"app.components.LeftMenuLinkContainer.configuration": "Configurations",
|
|
331
301
|
"app.components.LeftMenuLinkContainer.general": "General",
|
|
332
|
-
"app.components.LeftMenuLinkContainer.installNewPlugin": "Marketplace",
|
|
333
|
-
"app.components.LeftMenuLinkContainer.listPlugins": "Plugins",
|
|
334
302
|
"app.components.LeftMenuLinkContainer.noPluginsInstalled": "No plugins installed yet",
|
|
335
303
|
"app.components.LeftMenuLinkContainer.plugins": "Plugins",
|
|
336
|
-
"app.components.LeftMenuLinkContainer.settings": "Settings",
|
|
337
304
|
"app.components.LeftMenuLinkContainer.singleTypes": "Single Types",
|
|
338
305
|
"app.components.ListPluginsPage.deletePlugin.description": "It might take a few seconds to uninstall the plugin.",
|
|
339
306
|
"app.components.ListPluginsPage.deletePlugin.title": "Uninstalling",
|
|
340
307
|
"app.components.ListPluginsPage.description": "List of the installed plugins in the project.",
|
|
341
308
|
"app.components.ListPluginsPage.helmet.title": "List plugins",
|
|
342
|
-
"app.components.ListPluginsPage.title": "Plugins",
|
|
343
309
|
"app.components.Logout.logout": "Logout",
|
|
344
310
|
"app.components.Logout.profile": "Profile",
|
|
345
311
|
"app.components.MarketplaceBanner": "Discover plugins built by the community, and many more awesome things to kickstart your project, on Strapi Awesome.",
|
|
@@ -371,7 +337,6 @@
|
|
|
371
337
|
"app.components.Users.MagicLink.connect": "Copy and share this link to give access to this user",
|
|
372
338
|
"app.components.Users.MagicLink.connect.sso": "Send this link to the user, the first login can be made via a SSO provider",
|
|
373
339
|
"app.components.Users.ModalCreateBody.block-title.details": "User details",
|
|
374
|
-
"app.components.Users.ModalCreateBody.block-title.login": "Roles",
|
|
375
340
|
"app.components.Users.ModalCreateBody.block-title.roles": "User's roles",
|
|
376
341
|
"app.components.Users.ModalCreateBody.block-title.roles.description": "A user can have one or several roles",
|
|
377
342
|
"app.components.Users.SortPicker.button-label": "Sort by",
|
|
@@ -383,7 +348,6 @@
|
|
|
383
348
|
"app.components.Users.SortPicker.sortby.lastname_desc": "Last name (Z to A)",
|
|
384
349
|
"app.components.Users.SortPicker.sortby.username_asc": "Username (A to Z)",
|
|
385
350
|
"app.components.Users.SortPicker.sortby.username_desc": "Username (Z to A)",
|
|
386
|
-
"app.components.go-back": "Back",
|
|
387
351
|
"app.components.listPlugins.button": "Add New Plugin",
|
|
388
352
|
"app.components.listPlugins.title.none": "No plugins installed",
|
|
389
353
|
"app.components.listPluginsPage.deletePlugin.error": "An error occurred while uninstalling the plugin",
|
|
@@ -403,7 +367,6 @@
|
|
|
403
367
|
"app.utils.add-filter": "Add filter",
|
|
404
368
|
"app.utils.close-label": "Close",
|
|
405
369
|
"app.utils.defaultMessage": " ",
|
|
406
|
-
"app.utils.delete": "Delete",
|
|
407
370
|
"app.utils.duplicate": "Duplicate",
|
|
408
371
|
"app.utils.edit": "Edit",
|
|
409
372
|
"app.utils.errors.file-too-big.message": "The file is too big",
|
|
@@ -465,8 +428,6 @@
|
|
|
465
428
|
"components.ProductionBlocker.description": "For safety purposes we have to disable this plugin in other environments.",
|
|
466
429
|
"components.ProductionBlocker.header": "This plugin is only available in development.",
|
|
467
430
|
"components.Search.placeholder": "Search...",
|
|
468
|
-
"components.Select.placeholder": "Select",
|
|
469
|
-
"components.TableHeader.actions-label": "Actions",
|
|
470
431
|
"components.TableHeader.sort": "Sort on {label}",
|
|
471
432
|
"components.Wysiwyg.ToggleMode.markdown-mode": "Markdown mode",
|
|
472
433
|
"components.Wysiwyg.ToggleMode.preview-mode": "Preview mode",
|
|
@@ -491,7 +452,9 @@
|
|
|
491
452
|
"components.popUpWarning.message": "Are you sure you want to delete this?",
|
|
492
453
|
"components.popUpWarning.title": "Please confirm",
|
|
493
454
|
"content-manager.App.schemas.data-loaded": "The schemas have been successfully loaded",
|
|
494
|
-
"content-manager.DynamicTable.relation-loaded": "
|
|
455
|
+
"content-manager.DynamicTable.relation-loaded": "Relations have been loaded",
|
|
456
|
+
"content-manager.DynamicTable.relation-loading": "Relations are loading",
|
|
457
|
+
"content-manager.DynamicTable.relation-more": "This relation contains more entities than displayed",
|
|
495
458
|
"content-manager.EditRelations.title": "Relational data",
|
|
496
459
|
"content-manager.HeaderLayout.button.label-add-entry": "Create new entry",
|
|
497
460
|
"content-manager.api.id": "API ID",
|
|
@@ -668,7 +631,6 @@
|
|
|
668
631
|
"content-manager.permissions.not-allowed.update": "You are not allowed to see this document",
|
|
669
632
|
"content-manager.plugin.description.long": "Quick way to see, edit and delete the data in your database.",
|
|
670
633
|
"content-manager.plugin.description.short": "Quick way to see, edit and delete the data in your database.",
|
|
671
|
-
"content-manager.plugin.name": "Content Manager",
|
|
672
634
|
"content-manager.popUpWarning.bodyMessage.contentType.delete": "Are you sure you want to delete this entry?",
|
|
673
635
|
"content-manager.popUpWarning.bodyMessage.contentType.delete.all": "Are you sure you want to delete these entries?",
|
|
674
636
|
"content-manager.popUpWarning.warning.cancelAllSettings": "Are you sure you want to cancel your modifications?",
|
|
@@ -684,11 +646,38 @@
|
|
|
684
646
|
"content-manager.success.record.save": "Saved",
|
|
685
647
|
"content-manager.success.record.unpublish": "Unpublished",
|
|
686
648
|
"content-manager.utils.data-loaded": "The {number, plural, =1 {entry has} other {entries have}} successfully been loaded",
|
|
649
|
+
"content-manager.apiError.This attribute must be unique": "{field} must be unique",
|
|
687
650
|
"form.button.continue": "Continue",
|
|
688
651
|
"form.button.done": "Done",
|
|
689
|
-
"
|
|
690
|
-
"
|
|
652
|
+
"global.actions": "Actions",
|
|
653
|
+
"global.back": "Back",
|
|
654
|
+
"global.change-password": "Change password",
|
|
655
|
+
"global.content-manager": "Content Manager",
|
|
656
|
+
"global.continue": "Continue",
|
|
657
|
+
"global.delete": "Delete",
|
|
658
|
+
"global.delete-target": "Delete {target}",
|
|
659
|
+
"global.description": "Description",
|
|
660
|
+
"global.details": "Details",
|
|
661
|
+
"global.disabled": "Disabled",
|
|
662
|
+
"global.documentation": "Documentation",
|
|
663
|
+
"global.enabled": "Enabled",
|
|
664
|
+
"global.finish": "Finish",
|
|
665
|
+
"global.marketplace": "Marketplace",
|
|
666
|
+
"global.name": "Name",
|
|
667
|
+
"global.none": "None",
|
|
668
|
+
"global.password": "Password",
|
|
669
|
+
"global.plugins": "Plugins",
|
|
670
|
+
"global.profile": "Profile",
|
|
691
671
|
"global.prompt.unsaved": "Are you sure you want to leave this page? All your modifications will be lost",
|
|
672
|
+
"global.reset-password": "Reset password",
|
|
673
|
+
"global.roles": "Roles",
|
|
674
|
+
"global.save": "Save",
|
|
675
|
+
"global.see-more": "See more",
|
|
676
|
+
"global.select": "Select",
|
|
677
|
+
"global.select-all-entries": "Select all entries",
|
|
678
|
+
"global.settings": "Settings",
|
|
679
|
+
"global.type": "Type",
|
|
680
|
+
"global.users": "Users",
|
|
692
681
|
"notification.contentType.relations.conflict": "Content type has conflicting relations",
|
|
693
682
|
"notification.default.title": "Information:",
|
|
694
683
|
"notification.error": "An error occurred",
|
|
@@ -700,11 +689,10 @@
|
|
|
700
689
|
"notification.success.delete": "The item has been deleted",
|
|
701
690
|
"notification.success.saved": "Saved",
|
|
702
691
|
"notification.success.title": "Success:",
|
|
703
|
-
"notification.version.update.link": "See more",
|
|
704
692
|
"notification.version.update.message": "A new version of Strapi is available!",
|
|
705
693
|
"notification.warning.title": "Warning:",
|
|
706
694
|
"or": "OR",
|
|
707
695
|
"request.error.model.unknown": "This model doesn't exist",
|
|
708
696
|
"skipToContent": "Skip to content",
|
|
709
697
|
"submit": "Submit"
|
|
710
|
-
}
|
|
698
|
+
}
|