@strapi/admin 4.2.0-beta.0 → 4.2.0-beta.3
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/homepage-logo.png +0 -0
- 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 +3 -7
- package/admin/src/components/GuidedTour/Homepage/index.js +1 -2
- package/admin/src/components/GuidedTour/Modal/components/Stepper.js +1 -2
- package/admin/src/components/LeftMenu/index.js +9 -7
- package/admin/src/components/Notifications/Notification/index.js +2 -2
- package/admin/src/components/UpgradePlanModal/index.js +6 -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/DynamicZone/components/ComponentPicker/Category/ComponentCard/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/ListItem.js +1 -2
- 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/SelectWrapper/index.js +8 -7
- package/admin/src/content-manager/components/SelectWrapper/utils/getSelectStyles.js +1 -1
- package/admin/src/content-manager/components/SingleTypeFormWrapper/index.js +17 -5
- package/admin/src/content-manager/components/Wysiwyg/Editor.js +2 -0
- 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/App/LeftMenu/index.js +8 -7
- package/admin/src/content-manager/pages/EditSettingsView/components/ComponentFieldList.js +1 -1
- 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/LinkToCTB.js +1 -2
- package/admin/src/content-manager/pages/EditSettingsView/components/ModalForm.js +6 -1
- package/admin/src/content-manager/pages/EditSettingsView/index.js +4 -5
- 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 +4 -4
- package/admin/src/content-manager/pages/EditView/index.js +1 -4
- package/admin/src/content-manager/pages/ListSettingsView/components/EditFieldForm.js +1 -1
- package/admin/src/content-manager/pages/ListSettingsView/index.js +3 -4
- package/admin/src/content-manager/pages/ListView/actions.js +2 -1
- package/admin/src/content-manager/pages/ListView/index.js +3 -6
- 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/pages/NoContentType/index.js +1 -2
- 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/ForgotPassword/index.js +1 -2
- package/admin/src/pages/AuthPage/components/ForgotPasswordSuccess/index.js +1 -1
- package/admin/src/pages/AuthPage/components/Login/BaseLogin.js +2 -3
- package/admin/src/pages/AuthPage/components/Oops/index.js +1 -2
- package/admin/src/pages/AuthPage/components/Register/index.js +18 -18
- package/admin/src/pages/AuthPage/components/ResetPassword/index.js +6 -7
- package/admin/src/pages/HomePage/ContentBlocks.js +16 -3
- package/admin/src/pages/HomePage/HomeHeader.js +2 -2
- package/admin/src/pages/HomePage/SocialLinks.js +4 -6
- package/admin/src/pages/InstalledPluginsPage/Plugins.js +3 -3
- package/admin/src/pages/InstalledPluginsPage/index.js +1 -1
- package/admin/src/pages/InternalErrorPage/index.js +1 -2
- package/admin/src/pages/MarketplacePage/components/MissingPluginBanner/index.js +40 -0
- package/admin/src/pages/MarketplacePage/components/PageHeader/index.js +47 -0
- package/admin/src/pages/MarketplacePage/components/PluginCard/InstallPluginButton.js +66 -0
- package/admin/src/pages/MarketplacePage/components/PluginCard/index.js +17 -39
- package/admin/src/pages/MarketplacePage/index.js +65 -27
- package/admin/src/pages/NotFoundPage/index.js +1 -2
- package/admin/src/pages/ProfilePage/index.js +5 -5
- package/admin/src/pages/SettingsPage/components/SettingsNav/index.js +6 -5
- 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 +4 -4
- package/admin/src/pages/SettingsPage/pages/ApiTokens/ListView/DynamicTable/DeleteButton/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/ListView/DynamicTable/UpdateButton/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/ListView/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/index.js +9 -3
- 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 +3 -3
- package/admin/src/pages/SettingsPage/pages/Roles/ListPage/index.js +6 -6
- package/admin/src/pages/SettingsPage/pages/Users/EditPage/index.js +6 -6
- 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 +4 -5
- package/admin/src/pages/SettingsPage/pages/Webhooks/ListView/index.js +8 -8
- 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/ca.json +699 -0
- 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/languageNativeNames.js +1 -0
- 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 +34 -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/1709.ceed0e18.chunk.js +503 -0
- package/build/1856.521a99fd.chunk.js +172 -0
- package/build/20.cf744c35.chunk.js +308 -0
- package/build/2077.51485bfb.chunk.js +194 -0
- package/build/210.014495c1.chunk.js +338 -0
- package/build/2135.95ee6de1.chunk.js +162 -0
- package/build/2524.688d0355.chunk.js +1 -0
- package/build/2912.79c2b3c8.chunk.js +253 -0
- package/build/4073.41ac1235.chunk.js +1 -0
- package/build/4715.77e04177.chunk.js +385 -0
- package/build/4761.3eabdf46.chunk.js +101 -0
- package/build/6229.a5cca9f2.chunk.js +194 -0
- package/build/6281.f10a7e3a.chunk.js +1 -0
- package/build/6925.fafef528.chunk.js +761 -0
- package/build/7009.79fce86d.chunk.js +164 -0
- package/build/7191.3bde3cbf.chunk.js +335 -0
- package/build/7841.f0e7d629.chunk.js +253 -0
- package/build/7863.bc7a8f3a.chunk.js +112 -0
- package/build/8469.3af1823d.chunk.js +1 -0
- package/build/9420.cb0b75e8.chunk.js +508 -0
- package/build/Admin-authenticatedApp.4ce8d292.chunk.js +80 -0
- package/build/Admin_homePage.f157e33e.chunk.js +71 -0
- package/build/Admin_marketplace.1e3393c9.chunk.js +11 -0
- package/build/Admin_pluginsPage.788fb2f6.chunk.js +1 -0
- package/build/Admin_profilePage.62c203ad.chunk.js +15 -0
- package/build/Admin_settingsPage.924a7816.chunk.js +170 -0
- package/build/a6b842e0b6d2b61135d1.svg +5 -0
- package/build/admin-edit-roles-page.94e1403b.chunk.js +1 -0
- package/build/admin-edit-users.6c2bf718.chunk.js +10 -0
- package/build/admin-users.e03db115.chunk.js +11 -0
- package/build/api-tokens-create-page.787ab302.chunk.js +1 -0
- package/build/api-tokens-edit-page.e4010c0c.chunk.js +1 -0
- package/build/api-tokens-list-page.340750a6.chunk.js +15 -0
- package/build/ar-json.d4cb26d9.chunk.js +1 -0
- package/build/ca-json.0097e443.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.6cdcfb6e.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.e73879b9.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.f67d13b2.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/fb376b132d18bf4522ca.png +0 -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.6b67cb75.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.45472ea9.js +8404 -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.28147733.chunk.js +1 -0
- package/build/runtime~main.e7611418.js +2 -0
- package/build/sk-json.5b33afc2.chunk.js +1 -0
- package/build/sso-settings-page.e9034e22.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.3db55de0.chunk.js +101 -0
- package/build/upload-translation-ca-json.79159984.chunk.js +1 -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.070c189b.chunk.js +105 -0
- package/build/users-advanced-settings-page.a23cda17.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.988ebc3b.chunk.js +30 -0
- package/build/vi-json.3d14e91e.chunk.js +1 -0
- package/build/webhook-edit-page.2fa94db3.chunk.js +23 -0
- package/build/webhook-list-page.b594db49.chunk.js +133 -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/AuthPage/components/Providers/index.js +1 -1
- package/ee/admin/pages/SettingsPage/SingleSignOn/index.js +2 -2
- package/ee/admin/pages/SettingsPage/pages/Roles/CreatePage/index.js +6 -6
- package/ee/admin/pages/SettingsPage/pages/Roles/ListPage/index.js +6 -6
- package/ee/server/controllers/user.js +4 -0
- package/index.js +32 -27
- package/package.json +12 -14
- 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/controllers/user.js +4 -0
- 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/permission/permissions-manager/sanitize.js +22 -0
- package/server/services/token.js +13 -0
- package/server/services/user.js +1 -1
- package/server/validation/permission.js +5 -1
- package/utils/create-cache-dir.js +57 -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/DynamicComponentCard/index.js +0 -43
- 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/2a9e9ef5c4c775bb7c7b.png +0 -0
- 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": "TERUG NAAR HOME",
|
|
8
8
|
"Auth.form.button.login": "Inloggen",
|
|
9
9
|
"Auth.form.button.login.providers.error": "We kunnen je niet verbinden via de geselecteerde provider.",
|
|
10
|
-
"Auth.form.button.login.providers.see-more": "Bekijk meer",
|
|
11
10
|
"Auth.form.button.login.strapi": "Log in via Strapi",
|
|
12
11
|
"Auth.form.button.password-recovery": "Wachtwoordherstel",
|
|
13
12
|
"Auth.form.button.register": "Beginnen",
|
|
14
|
-
"Auth.form.button.reset-password": "Wachtwoord wijzigen",
|
|
15
13
|
"Auth.form.confirmPassword.label": "Bevestig wachtwoord",
|
|
16
14
|
"Auth.form.currentPassword.label": "Huidige wachtwoord",
|
|
17
15
|
"Auth.form.email.label": "E-mail",
|
|
@@ -39,7 +37,6 @@
|
|
|
39
37
|
"Auth.form.lastname.placeholder": "Bijv. Doe",
|
|
40
38
|
"Auth.form.password.hide-password": "Wachtwoord verbergen",
|
|
41
39
|
"Auth.form.password.hint": "Wachtwoord moet ten minste 8 karakters, 1 hoofdletter, 1 kleine letter en 1 nummer bevatten",
|
|
42
|
-
"Auth.form.password.label": "Wachtwoord",
|
|
43
40
|
"Auth.form.password.show-password": "Wachtwoord tonen",
|
|
44
41
|
"Auth.form.register.news.label": "Houd me op de hoogte van de nieuwe functionaliteiten en aankomende verbeteringen (door dit te doen accepteer je de {terms} en het {policy}).",
|
|
45
42
|
"Auth.form.register.subtitle": "Je inloggegevens worden alleen gebruikt om jezelf te authenticeren op het beheerdersdashboard. Alle gegevens worden opgeslagen in je eigen database.",
|
|
@@ -57,7 +54,6 @@
|
|
|
57
54
|
"Auth.login.sso.subtitle": "Log in met SSO",
|
|
58
55
|
"Auth.privacy-policy-agreement.policy": "privacybeleid",
|
|
59
56
|
"Auth.privacy-policy-agreement.terms": "voorwaarden",
|
|
60
|
-
"Auth.reset-password.title": "Wachtwoord resetten",
|
|
61
57
|
"Content Manager": "Content Manager",
|
|
62
58
|
"Content Type Builder": "Content-Types Bouwer",
|
|
63
59
|
"Documentation": "Documentatie",
|
|
@@ -87,14 +83,12 @@
|
|
|
87
83
|
"Settings.apiTokens.copy.lastWarning": "Maak een kopie van deze token, we laten deze niet nog eens zien!",
|
|
88
84
|
"Settings.apiTokens.create": "Token toevoegen",
|
|
89
85
|
"Settings.apiTokens.description": "Lijst van gegenereerde tokens met API-toegang",
|
|
90
|
-
"Settings.apiTokens.details": "Details",
|
|
91
86
|
"Settings.apiTokens.emptyStateLayout": "Je hebt nog geen content...",
|
|
92
87
|
"Settings.apiTokens.notification.copied": "Token gekopieerd naar klembord.",
|
|
93
88
|
"Settings.apiTokens.title": "API Tokens",
|
|
94
89
|
"Settings.apiTokens.types.full-access": "Volledige toegang",
|
|
95
90
|
"Settings.apiTokens.types.read-only": "Alleen lezen",
|
|
96
91
|
"Settings.application.description": "Beheerdersdashboard's globale informatie",
|
|
97
|
-
"Settings.application.details": "Details",
|
|
98
92
|
"Settings.application.edition-title": "huidige abonnement",
|
|
99
93
|
"Settings.application.get-help": "Hulp krijgen",
|
|
100
94
|
"Settings.application.link-pricing": "Bekijk alle abonnementen",
|
|
@@ -117,8 +111,6 @@
|
|
|
117
111
|
"Settings.permissions.conditions.none-selected": "Altijd",
|
|
118
112
|
"Settings.permissions.conditions.or": "OF",
|
|
119
113
|
"Settings.permissions.conditions.when": "Wanneer",
|
|
120
|
-
"Settings.permissions.menu.link.roles.label": "Rollen",
|
|
121
|
-
"Settings.permissions.menu.link.users.label": "Gebruikers",
|
|
122
114
|
"Settings.permissions.select-all-by-permission": "Selecteer alle {label} rechten",
|
|
123
115
|
"Settings.permissions.select-by-permission": "Selecteer {label} recht",
|
|
124
116
|
"Settings.permissions.users.create": "Nodig nieuwe gebruiker uit",
|
|
@@ -128,7 +120,6 @@
|
|
|
128
120
|
"Settings.permissions.users.form.sso": "Verbind met SSO",
|
|
129
121
|
"Settings.permissions.users.form.sso.description": "Wanneer dit aan staat (ON), kunnen gebruikers inloggen met SSO",
|
|
130
122
|
"Settings.permissions.users.listview.header.subtitle": "Alle gebruikers die toegang hebben tot het Strapi beheerdersdashboard",
|
|
131
|
-
"Settings.permissions.users.listview.header.title": "Gebruikers",
|
|
132
123
|
"Settings.permissions.users.tabs.label": "Tabs Rechten",
|
|
133
124
|
"Settings.profile.form.notify.data.loaded": "Je profielgegevens zijn geladen",
|
|
134
125
|
"Settings.profile.form.section.experience.clear.select": "Wis de geselecteerde interfacetaal",
|
|
@@ -138,9 +129,7 @@
|
|
|
138
129
|
"Settings.profile.form.section.experience.interfaceLanguageHelp": "Selectie zal de interfacetaal alleen voor jou veranderen. Raadpleeg deze {documentation} om andere talen beschikbaar te maken voor uw team.",
|
|
139
130
|
"Settings.profile.form.section.experience.title": "Ervaring",
|
|
140
131
|
"Settings.profile.form.section.helmet.title": "Gebruikersprofiel",
|
|
141
|
-
"Settings.profile.form.section.password.title": "Wachtwoord wijzigen",
|
|
142
132
|
"Settings.profile.form.section.profile.page.title": "Profiel pagina",
|
|
143
|
-
"Settings.profile.form.section.profile.title": "Profiel",
|
|
144
133
|
"Settings.roles.create.description": "Definieer de rechten om aan de rol te geven",
|
|
145
134
|
"Settings.roles.create.title": "Creëer een rol",
|
|
146
135
|
"Settings.roles.created": "Rol gecreëerd",
|
|
@@ -148,8 +137,6 @@
|
|
|
148
137
|
"Settings.roles.form.button.users-with-role": "{number, plural, =0 {# users} één {# user} andere {# users}} met deze rol",
|
|
149
138
|
"Settings.roles.form.created": "Gecreëerd",
|
|
150
139
|
"Settings.roles.form.description": "Naam en beschrijving van de rol",
|
|
151
|
-
"Settings.roles.form.input.description": "Beschrijving",
|
|
152
|
-
"Settings.roles.form.input.name": "Naam",
|
|
153
140
|
"Settings.roles.form.permission.property-label": "{label} rechten",
|
|
154
141
|
"Settings.roles.form.permissions.attributesPermissions": "Velden rechten",
|
|
155
142
|
"Settings.roles.form.permissions.create": "Creëer",
|
|
@@ -157,14 +144,8 @@
|
|
|
157
144
|
"Settings.roles.form.permissions.publish": "Publiceer",
|
|
158
145
|
"Settings.roles.form.permissions.read": "Lees",
|
|
159
146
|
"Settings.roles.form.permissions.update": "Update",
|
|
160
|
-
"Settings.roles.form.title": "Details",
|
|
161
147
|
"Settings.roles.list.button.add": "Nieuwe rol",
|
|
162
148
|
"Settings.roles.list.description": "Lijst van rollen",
|
|
163
|
-
"Settings.roles.list.header.actions": "Acties",
|
|
164
|
-
"Settings.roles.list.header.description": "Beschrijving",
|
|
165
|
-
"Settings.roles.list.header.name": "Naam",
|
|
166
|
-
"Settings.roles.list.header.users": "Gebruikers",
|
|
167
|
-
"Settings.roles.title": "Rollen",
|
|
168
149
|
"Settings.roles.title.singular": "rol",
|
|
169
150
|
"Settings.sso.description": "Configureer de instellingen voor SSO functie.",
|
|
170
151
|
"Settings.sso.form.defaultRole.description": "Dit zal de nieuwe geverifieerde gebruiker aan de geselecteerde rol koppelen",
|
|
@@ -172,30 +153,23 @@
|
|
|
172
153
|
"Settings.sso.form.defaultRole.label": "Standaard rol",
|
|
173
154
|
"Settings.sso.form.registration.description": "Creëer nieuwe gebruiker met SSO login als er nog geen account bestaat",
|
|
174
155
|
"Settings.sso.form.registration.label": "Automatische registratie",
|
|
175
|
-
"Settings.sso.form.settings.title": "Instellingen",
|
|
176
156
|
"Settings.sso.title": "Single Sign-On",
|
|
177
157
|
"Settings.webhooks.create": "Maak een webhook",
|
|
178
158
|
"Settings.webhooks.create.header": "Voeg een nieuwe header toe",
|
|
179
159
|
"Settings.webhooks.created": "Webhook aangemaakt",
|
|
180
|
-
"Settings.webhooks.disabled": "Uitgeschakeld",
|
|
181
|
-
"Settings.webhooks.enabled": "Ingeschakeld",
|
|
182
160
|
"Settings.webhooks.event.publish-tooltip": "Dit event bestaat alleen voor content waar het Concept/Publiceer systeem is ingeschakeld",
|
|
183
161
|
"Settings.webhooks.events.create": "Creëer",
|
|
184
|
-
"Settings.webhooks.events.delete": "Verwijder",
|
|
185
162
|
"Settings.webhooks.events.update": "Update",
|
|
186
163
|
"Settings.webhooks.form.events": "Events",
|
|
187
164
|
"Settings.webhooks.form.headers": "Headers",
|
|
188
|
-
"Settings.webhooks.form.name": "Naam",
|
|
189
165
|
"Settings.webhooks.form.url": "URL",
|
|
190
166
|
"Settings.webhooks.headers.remove": "Verwijder header rij {number}",
|
|
191
167
|
"Settings.webhooks.key": "Sleutel",
|
|
192
|
-
"Settings.webhooks.list.all-entries.select": "Selecteer alle items",
|
|
193
168
|
"Settings.webhooks.list.button.add": "Maak een nieuwe webhook",
|
|
194
169
|
"Settings.webhooks.list.description": "Ontvang POST veranderingen als notificatie.",
|
|
195
170
|
"Settings.webhooks.list.empty.description": "Voeg de eerste toe aan deze lijst.",
|
|
196
171
|
"Settings.webhooks.list.empty.link": "Bekijk onze documentatie",
|
|
197
172
|
"Settings.webhooks.list.empty.title": "Er zijn nog geen webhooks",
|
|
198
|
-
"Settings.webhooks.list.select": "Selecteer",
|
|
199
173
|
"Settings.webhooks.list.th.actions": "acties",
|
|
200
174
|
"Settings.webhooks.list.th.status": "status",
|
|
201
175
|
"Settings.webhooks.singular": "webhook",
|
|
@@ -216,35 +190,25 @@
|
|
|
216
190
|
"Users.components.List.empty": "Er zijn geen gebruiker...",
|
|
217
191
|
"Users.components.List.empty.withFilters": "Er zijn geen gebruikers met de geselecteerde filters...",
|
|
218
192
|
"Users.components.List.empty.withSearch": "Er zijn geen gebruikers die overeenkomen met de zoekopdracht ({search})...",
|
|
219
|
-
"admin.pages.MarketPlacePage.blog.link": "Lees onze blog post",
|
|
220
|
-
"admin.pages.MarketPlacePage.coming-soon.1": "Een nieuwe manier om Strapi geweldig te maken.",
|
|
221
|
-
"admin.pages.MarketPlacePage.coming-soon.2": "Binnenkort beschikbaar.",
|
|
222
|
-
"admin.pages.MarketPlacePage.content.subtitle": "De nieuwe marktplaats helpt je meer uit Strapi te halen. We werken er hard aan om de best ervaring te bieden om plugins te ontdekken en te installeren.",
|
|
223
193
|
"admin.pages.MarketPlacePage.helmet": "Marktplaats - Plugins",
|
|
224
|
-
"admin.pages.MarketPlacePage.illustration": "marktplaats illustratie",
|
|
225
194
|
"admin.pages.MarketPlacePage.submit.plugin.link": "Stuur je plugin in",
|
|
226
195
|
"admin.pages.MarketPlacePage.subtitle": "Haal meer uit Strapi",
|
|
227
|
-
"admin.pages.MarketPlacePage.title": "Marktplaats",
|
|
228
196
|
"anErrorOccurred": "Oeps! Er ging iets mis. Probeer het a.u.b. opnieuw.",
|
|
229
197
|
"app.component.CopyToClipboard.label": "Kopieer naar klembord",
|
|
230
198
|
"app.component.search.label": "Zoek naar {target}",
|
|
231
|
-
"app.component.table.delete": "Verwijder {target}",
|
|
232
199
|
"app.component.table.duplicate": "Dupliceer {target}",
|
|
233
200
|
"app.component.table.edit": "Pas {target} aan",
|
|
234
|
-
"app.component.table.select.all-entries": "Selecteer alle items",
|
|
235
201
|
"app.component.table.select.one-entry": "Selecteer {target}",
|
|
236
202
|
"app.components.BlockLink.blog": "Blog",
|
|
237
203
|
"app.components.BlockLink.blog.content": "Lees het laatste nieuws over Strapi en het ecosysteem.",
|
|
238
204
|
"app.components.BlockLink.code": "Code voorbeelden",
|
|
239
205
|
"app.components.BlockLink.code.content": "Leer door het testen van echte projecten die zijn ontwikkeld door de community.",
|
|
240
|
-
"app.components.BlockLink.documentation": "Documentatie",
|
|
241
206
|
"app.components.BlockLink.documentation.content": "Ontdek de essentiële concepten, handleidingen en instructies.",
|
|
242
207
|
"app.components.BlockLink.tutorial": "Tutorials",
|
|
243
208
|
"app.components.BlockLink.tutorial.content": "Volg stapsgewijze instructies om Strapi te gebruiken en aan te passen.",
|
|
244
209
|
"app.components.Button.cancel": "Annuleer",
|
|
245
210
|
"app.components.Button.confirm": "Bevestig",
|
|
246
211
|
"app.components.Button.reset": "Resetten",
|
|
247
|
-
"app.components.Button.save": "Opslaan",
|
|
248
212
|
"app.components.ComingSoonPage.comingSoon": "Binnenkort beschikbaar",
|
|
249
213
|
"app.components.ConfirmDialog.title": "Bevestiging",
|
|
250
214
|
"app.components.DownloadInfo.download": "Download bezig...",
|
|
@@ -252,7 +216,6 @@
|
|
|
252
216
|
"app.components.EmptyAttributes.title": "Er zijn nog geen velden",
|
|
253
217
|
"app.components.EmptyStateLayout.content-document": "Geen content gevonden",
|
|
254
218
|
"app.components.EmptyStateLayout.content-permissions": "Je hebt niet de juiste rechten om die content te bekijken",
|
|
255
|
-
"app.components.HeaderLayout.link.go-back": "Terug",
|
|
256
219
|
"app.components.HomePage.button.blog": "Lees meer op de blog",
|
|
257
220
|
"app.components.HomePage.community": "Join de community",
|
|
258
221
|
"app.components.HomePage.community.content": "Bespreek met teamleden, bijdragers en ontwikkelaars op verschillende kanalen.",
|
|
@@ -279,24 +242,18 @@
|
|
|
279
242
|
"app.components.LeftMenu.logout": "Uitloggen",
|
|
280
243
|
"app.components.LeftMenu.navbrand.title": "Strapi Dashboard",
|
|
281
244
|
"app.components.LeftMenu.navbrand.workplace": "Werkplek",
|
|
282
|
-
"app.components.LeftMenu.profile": "Profiel",
|
|
283
|
-
"app.components.LeftMenuFooter.documentation": "Documentatie",
|
|
284
245
|
"app.components.LeftMenuFooter.help": "Help",
|
|
285
246
|
"app.components.LeftMenuFooter.poweredBy": "Powered by ",
|
|
286
247
|
"app.components.LeftMenuLinkContainer.collectionTypes": "Collectie Types",
|
|
287
248
|
"app.components.LeftMenuLinkContainer.configuration": "Configuraties",
|
|
288
249
|
"app.components.LeftMenuLinkContainer.general": "Algemeen",
|
|
289
|
-
"app.components.LeftMenuLinkContainer.installNewPlugin": "Marktplaats",
|
|
290
|
-
"app.components.LeftMenuLinkContainer.listPlugins": "Plugins",
|
|
291
250
|
"app.components.LeftMenuLinkContainer.noPluginsInstalled": "Nog geen plugins geïnstalleerd",
|
|
292
251
|
"app.components.LeftMenuLinkContainer.plugins": "Plugins",
|
|
293
|
-
"app.components.LeftMenuLinkContainer.settings": "Instellingen",
|
|
294
252
|
"app.components.LeftMenuLinkContainer.singleTypes": "Enkele Types",
|
|
295
253
|
"app.components.ListPluginsPage.deletePlugin.description": "Het kan enkele seconden duren om de plugin te deinstalleren.",
|
|
296
254
|
"app.components.ListPluginsPage.deletePlugin.title": "Deinstalleren",
|
|
297
255
|
"app.components.ListPluginsPage.description": "Lijst van alle plugins voor dit project",
|
|
298
256
|
"app.components.ListPluginsPage.helmet.title": "Lijst plugins",
|
|
299
|
-
"app.components.ListPluginsPage.title": "Plugins",
|
|
300
257
|
"app.components.Logout.logout": "Logout",
|
|
301
258
|
"app.components.Logout.profile": "Profile",
|
|
302
259
|
"app.components.MarketplaceBanner": "Ontdek plugins die zijn gebouwd door de community en nog veel meer geweldige dingen om je project een kickstart te geven op Strapi Awesome.",
|
|
@@ -328,7 +285,6 @@
|
|
|
328
285
|
"app.components.Users.MagicLink.connect": "Kopieer en deel deze link om toegang te geven aan deze gebruiker",
|
|
329
286
|
"app.components.Users.MagicLink.connect.sso": "Stuur deze link naar de gebruiker, de eerste login kan gedaan worden via een SSO provider",
|
|
330
287
|
"app.components.Users.ModalCreateBody.block-title.details": "Gebruiker details",
|
|
331
|
-
"app.components.Users.ModalCreateBody.block-title.login": "Rollen",
|
|
332
288
|
"app.components.Users.ModalCreateBody.block-title.roles": "Gebruiker's rollen",
|
|
333
289
|
"app.components.Users.ModalCreateBody.block-title.roles.description": "Een gebruiker kan één of meerdere rollen hebben",
|
|
334
290
|
"app.components.Users.SortPicker.button-label": "Sorteer op",
|
|
@@ -340,7 +296,6 @@
|
|
|
340
296
|
"app.components.Users.SortPicker.sortby.lastname_desc": "Achternaam (Z tot A)",
|
|
341
297
|
"app.components.Users.SortPicker.sortby.username_asc": "Gebruikersnaam (A tot Z)",
|
|
342
298
|
"app.components.Users.SortPicker.sortby.username_desc": "Gebruikersnaam (Z tot A)",
|
|
343
|
-
"app.components.go-back": "Terug",
|
|
344
299
|
"app.components.listPlugins.button": "Nieuwe plugin toevoegen",
|
|
345
300
|
"app.components.listPlugins.title.none": "Geen plugins geïnstalleerd",
|
|
346
301
|
"app.components.listPluginsPage.deletePlugin.error": "Er is een fout opgetreden tijdens het verwijderen van de plugin",
|
|
@@ -359,7 +314,6 @@
|
|
|
359
314
|
"app.utils.add-filter": "Voeg filter toe",
|
|
360
315
|
"app.utils.close-label": "Sluit",
|
|
361
316
|
"app.utils.defaultMessage": " ",
|
|
362
|
-
"app.utils.delete": "Verwijder",
|
|
363
317
|
"app.utils.duplicate": "Dupliceer",
|
|
364
318
|
"app.utils.edit": "Pas aan",
|
|
365
319
|
"app.utils.errors.file-too-big.message": "Het bestand is te groot",
|
|
@@ -421,8 +375,6 @@
|
|
|
421
375
|
"components.ProductionBlocker.description": "Om veiligheidsredenen schakelen we deze plugin uit in andere omgevingen.",
|
|
422
376
|
"components.ProductionBlocker.header": "Deze extensie is alleen beschikbaar in ontwikkelaarsmodus",
|
|
423
377
|
"components.Search.placeholder": "Zoeken...",
|
|
424
|
-
"components.Select.placeholder": "Selecteer",
|
|
425
|
-
"components.TableHeader.actions-label": "Acties",
|
|
426
378
|
"components.TableHeader.sort": "Sorteer op {label}",
|
|
427
379
|
"components.Wysiwyg.ToggleMode.markdown-mode": "Markdown modus",
|
|
428
380
|
"components.Wysiwyg.ToggleMode.preview-mode": "Voorbeeld modus",
|
|
@@ -624,7 +576,6 @@
|
|
|
624
576
|
"content-manager.permissions.not-allowed.update": "Je hebt niet de rechten om dit document te zien",
|
|
625
577
|
"content-manager.plugin.description.long": "Snelle manier om data te zien, aan te passen en te verwijderen in je database",
|
|
626
578
|
"content-manager.plugin.description.short": "Snelle manier om data te zien, aan te passen en te verwijderen in je database.",
|
|
627
|
-
"content-manager.plugin.name": "Content Manager",
|
|
628
579
|
"content-manager.popUpWarning.bodyMessage.contentType.delete": "Weet je zeker dat je dit item wilt verwijderen?",
|
|
629
580
|
"content-manager.popUpWarning.bodyMessage.contentType.delete.all": "Weet je zeker dat je deze items wilt verwijderen?",
|
|
630
581
|
"content-manager.popUpWarning.warning.cancelAllSettings": "Weet je zeker dat je je wijzigingen wilt annuleren?",
|
|
@@ -640,10 +591,7 @@
|
|
|
640
591
|
"content-manager.success.record.save": "Opgeslagen",
|
|
641
592
|
"content-manager.success.record.unpublish": "Gedepubliceerd",
|
|
642
593
|
"content-manager.utils.data-loaded": "De {number, plural, =1 {entry is} other {entries zijn}} succesvol geladen!",
|
|
643
|
-
"form.button.continue": "Ga door",
|
|
644
594
|
"form.button.done": "Klaar",
|
|
645
|
-
"form.button.finish": "Voltooi",
|
|
646
|
-
"form.button.save": "Sla op",
|
|
647
595
|
"global.prompt.unsaved": "Weet je zeker dat je deze pagina wilt verlaten? Al de wijzigingen gaan verloren.",
|
|
648
596
|
"notification.contentType.relations.conflict": "Content type heeft conflicterende relaties",
|
|
649
597
|
"notification.default.title": "Informatie:",
|
|
@@ -656,7 +604,6 @@
|
|
|
656
604
|
"notification.success.delete": "Het item is verwijderd",
|
|
657
605
|
"notification.success.saved": "Opgeslagen",
|
|
658
606
|
"notification.success.title": "Succes:",
|
|
659
|
-
"notification.version.update.link": "Lees meer",
|
|
660
607
|
"notification.version.update.message": "Een nieuwe versie van Strapi is beschikbaar!",
|
|
661
608
|
"notification.warning.title": "Waarschuwing:",
|
|
662
609
|
"or": "OF",
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
"Auth.form.button.go-home": "GÅ TILBAKE TIL HJEM",
|
|
6
6
|
"Auth.form.button.login": "Logg inn",
|
|
7
7
|
"Auth.form.button.register": "KOM I GANG",
|
|
8
|
-
"Auth.form.button.reset-password": "Endre passord",
|
|
9
8
|
"Auth.form.confirmPassword.label": "Bekreft passord",
|
|
10
9
|
"Auth.form.email.label": "Epost",
|
|
11
10
|
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
|
@@ -30,7 +29,6 @@
|
|
|
30
29
|
"Auth.form.forgot-password.email.label.success": "Epost sendt til",
|
|
31
30
|
"Auth.form.lastname.label": "Etternavn",
|
|
32
31
|
"Auth.form.lastname.placeholder": "Doe",
|
|
33
|
-
"Auth.form.password.label": "Passord",
|
|
34
32
|
"Auth.form.register.news.label": "Hold meg oppdatert på nye features og kommende forbedringer (ved å gjøre dette aksepterer du {terms} og {policy}).",
|
|
35
33
|
"Auth.form.rememberMe.label": "Husk meg",
|
|
36
34
|
"Auth.form.username.label": "Brukernavn",
|
|
@@ -82,14 +80,11 @@
|
|
|
82
80
|
"Settings.permissions.conditions.no-actions": "Du må først velge handling (opprette, lese, oppdatere, ...) før du definerer betingelser for de.",
|
|
83
81
|
"Settings.permissions.conditions.or": "ELLER",
|
|
84
82
|
"Settings.permissions.conditions.when": "Når",
|
|
85
|
-
"Settings.permissions.menu.link.roles.label": "Roller",
|
|
86
|
-
"Settings.permissions.menu.link.users.label": "Brukere",
|
|
87
83
|
"Settings.permissions.users.create": "Opprett ny bruker",
|
|
88
84
|
"Settings.permissions.users.form.email": "Epost",
|
|
89
85
|
"Settings.permissions.users.form.firstname": "Fornavn",
|
|
90
86
|
"Settings.permissions.users.form.lastname": "Etternavn",
|
|
91
87
|
"Settings.permissions.users.form.sso": "Koble til med SSO",
|
|
92
|
-
"Settings.permissions.users.listview.header.title": "Brukere",
|
|
93
88
|
"Settings.roles.create.description": "Definér rollens rettigheter",
|
|
94
89
|
"Settings.roles.create.title": "Opprett en rolle",
|
|
95
90
|
"Settings.roles.created": "Rolle opprettet",
|
|
@@ -97,30 +92,23 @@
|
|
|
97
92
|
"Settings.roles.form.button.users-with-role": "Brukere med denne rollen",
|
|
98
93
|
"Settings.roles.form.created": "Opprettet",
|
|
99
94
|
"Settings.roles.form.description": "Navn og beskrivelse av rollen",
|
|
100
|
-
"Settings.roles.form.input.description": "Beskrivelse",
|
|
101
|
-
"Settings.roles.form.input.name": "Navn",
|
|
102
95
|
"Settings.roles.form.permissions.attributesPermissions": "Feltrettigheter",
|
|
103
96
|
"Settings.roles.form.permissions.create": "Opprett",
|
|
104
97
|
"Settings.roles.form.permissions.delete": "Slett",
|
|
105
98
|
"Settings.roles.form.permissions.publish": "Publiser",
|
|
106
99
|
"Settings.roles.form.permissions.read": "Les",
|
|
107
100
|
"Settings.roles.form.permissions.update": "Oppdater",
|
|
108
|
-
"Settings.roles.form.title": "Detaljer",
|
|
109
101
|
"Settings.roles.list.button.add": "Opprett rolle",
|
|
110
102
|
"Settings.roles.list.description": "Liste over roller",
|
|
111
|
-
"Settings.roles.title": "Roller",
|
|
112
103
|
"Settings.roles.title.singular": "rolle",
|
|
113
104
|
"Settings.webhooks.create": "Opprett en webhook",
|
|
114
105
|
"Settings.webhooks.create.header": "Opprett en ny header",
|
|
115
106
|
"Settings.webhooks.created": "Webhook opprettet",
|
|
116
|
-
"Settings.webhooks.disabled": "Deaktivert",
|
|
117
|
-
"Settings.webhooks.enabled": "Aktivert",
|
|
118
107
|
"Settings.webhooks.event.publish-tooltip": "Denne hendelsen er kun tilgjengelig for innhold med kladd/publisering aktivert",
|
|
119
108
|
"Settings.webhooks.events.create": "Opprett",
|
|
120
109
|
"Settings.webhooks.events.update": "Oppdater",
|
|
121
110
|
"Settings.webhooks.form.events": "Events",
|
|
122
111
|
"Settings.webhooks.form.headers": "Headers",
|
|
123
|
-
"Settings.webhooks.form.name": "Navn",
|
|
124
112
|
"Settings.webhooks.form.url": "Url",
|
|
125
113
|
"Settings.webhooks.key": "Key",
|
|
126
114
|
"Settings.webhooks.list.button.add": "Opprett ny webhook",
|
|
@@ -148,7 +136,6 @@
|
|
|
148
136
|
"app.components.BlockLink.code": "Kode-eksempler",
|
|
149
137
|
"app.components.Button.cancel": "Annuller",
|
|
150
138
|
"app.components.Button.reset": "Nullstill",
|
|
151
|
-
"app.components.Button.save": "Lagre",
|
|
152
139
|
"app.components.ComingSoonPage.comingSoon": "Kommer snart",
|
|
153
140
|
"app.components.DownloadInfo.download": "Download er i gang...",
|
|
154
141
|
"app.components.DownloadInfo.text": "Dette kan ta et lite øyeblikk, takk for din tålmodighet.",
|
|
@@ -173,23 +160,18 @@
|
|
|
173
160
|
"app.components.InstallPluginPage.Download.description": "Det tar muligens et øyeblikk å laste ned og installere denne pluginen.",
|
|
174
161
|
"app.components.InstallPluginPage.Download.title": "Laster ned...",
|
|
175
162
|
"app.components.InstallPluginPage.description": "Utvid din app problemfritt.",
|
|
176
|
-
"app.components.LeftMenuFooter.documentation": "Dokumentasjon",
|
|
177
163
|
"app.components.LeftMenuFooter.help": "Hjelp",
|
|
178
164
|
"app.components.LeftMenuFooter.poweredBy": "Powered by ",
|
|
179
165
|
"app.components.LeftMenuLinkContainer.collectionTypes": "Dokumenttyper",
|
|
180
166
|
"app.components.LeftMenuLinkContainer.configuration": "Konfigurasjoner",
|
|
181
167
|
"app.components.LeftMenuLinkContainer.general": "Generelt",
|
|
182
|
-
"app.components.LeftMenuLinkContainer.installNewPlugin": "Marked",
|
|
183
|
-
"app.components.LeftMenuLinkContainer.listPlugins": "Plugins",
|
|
184
168
|
"app.components.LeftMenuLinkContainer.noPluginsInstalled": "Ingen plugins installeret ennå",
|
|
185
169
|
"app.components.LeftMenuLinkContainer.plugins": "Plugins",
|
|
186
|
-
"app.components.LeftMenuLinkContainer.settings": "Innstillinger",
|
|
187
170
|
"app.components.LeftMenuLinkContainer.singleTypes": "Enkelttyper",
|
|
188
171
|
"app.components.ListPluginsPage.deletePlugin.description": "Det tar sannsynligvis noen sekunder å avinstallere pluginen.",
|
|
189
172
|
"app.components.ListPluginsPage.deletePlugin.title": "Avinstallerer",
|
|
190
173
|
"app.components.ListPluginsPage.description": "Liste over installerte plugins i dette prosjektet.",
|
|
191
174
|
"app.components.ListPluginsPage.helmet.title": "Vis plugins",
|
|
192
|
-
"app.components.ListPluginsPage.title": "Plugins",
|
|
193
175
|
"app.components.Logout.logout": "Logg ut",
|
|
194
176
|
"app.components.Logout.profile": "Profil",
|
|
195
177
|
"app.components.NotFoundPage.back": "Tilbake til startside",
|
|
@@ -241,7 +223,6 @@
|
|
|
241
223
|
"app.utils.SelectOption.defaultMessage": " ",
|
|
242
224
|
"app.utils.add-filter": "Legg til filter",
|
|
243
225
|
"app.utils.defaultMessage": " ",
|
|
244
|
-
"app.utils.delete": "Slett",
|
|
245
226
|
"app.utils.errors.file-too-big.message": "Filen er for stor",
|
|
246
227
|
"app.utils.filters": "Filtre",
|
|
247
228
|
"app.utils.placeholder.defaultMessage": " ",
|
|
@@ -297,9 +278,7 @@
|
|
|
297
278
|
"components.popUpWarning.button.confirm": "Bekreft",
|
|
298
279
|
"components.popUpWarning.message": "Er du sikker på at du vil slette?",
|
|
299
280
|
"components.popUpWarning.title": "Vennligst bekreft",
|
|
300
|
-
"form.button.continue": "Fortsett",
|
|
301
281
|
"form.button.done": "Ferdig",
|
|
302
|
-
"form.button.finish": "Ferdig",
|
|
303
282
|
"global.prompt.unsaved": "Er du sikker på at du vil forlate denne siden? Alle dine endringer vil gå tapt",
|
|
304
283
|
"notification.contentType.relations.conflict": "Det er en eller flere konflikter med inndholdstypens relasjoner",
|
|
305
284
|
"notification.error": "En feil oppstod",
|
|
@@ -310,7 +289,6 @@
|
|
|
310
289
|
"notification.permission.not-allowed-read": "Du har ikke tillatelse til å se dette dokument",
|
|
311
290
|
"notification.success.delete": "Elementet er slettet",
|
|
312
291
|
"notification.success.saved": "Lagret",
|
|
313
|
-
"notification.version.update.link": "Se mer",
|
|
314
292
|
"notification.version.update.message": "En ny versjon av Strapi er tilgjengelig!",
|
|
315
293
|
"request.error.model.unknown": "Denne modellen finnes ikke"
|
|
316
294
|
}
|
|
@@ -5,10 +5,8 @@
|
|
|
5
5
|
"Auth.form.button.go-home": "PRZEJDŹ DO STRONY GŁÓWNEJ",
|
|
6
6
|
"Auth.form.button.login": "Zaloguj się",
|
|
7
7
|
"Auth.form.button.login.providers.error": "Nie możemy połączyć Cię za pośrednictwem wybranego dostawcy.",
|
|
8
|
-
"Auth.form.button.login.providers.see-more": "Zobacz więcej",
|
|
9
8
|
"Auth.form.button.login.strapi": "ZALOGUJ SIĘ PRZEZ STRAPI",
|
|
10
9
|
"Auth.form.button.register": "ZACZYNAJMY",
|
|
11
|
-
"Auth.form.button.reset-password": "Zmień hasło",
|
|
12
10
|
"Auth.form.confirmPassword.label": "Hasło potwierdzające",
|
|
13
11
|
"Auth.form.email.label": "E-mail",
|
|
14
12
|
"Auth.form.email.placeholder": "jan@kowalski.pl",
|
|
@@ -33,7 +31,6 @@
|
|
|
33
31
|
"Auth.form.forgot-password.email.label.success": "E-mail pomyślnie wysłany do",
|
|
34
32
|
"Auth.form.lastname.label": "Nazwisko",
|
|
35
33
|
"Auth.form.lastname.placeholder": "Kowalski",
|
|
36
|
-
"Auth.form.password.label": "Hasło",
|
|
37
34
|
"Auth.form.register.news.label": "Informuj mnie na bieżąco o nowych funkcjach i nadchodzących ulepszeniach (robiąc to, akceptujesz postanowienia zawarte w niniejszych dokumentach - {terms} i {policy}).",
|
|
38
35
|
"Auth.form.rememberMe.label": "Zapamiętaj mnie",
|
|
39
36
|
"Auth.form.username.label": "Nazwa użytkownika",
|
|
@@ -86,20 +83,15 @@
|
|
|
86
83
|
"Settings.permissions.conditions.none-selected": "W dowolnym momencie",
|
|
87
84
|
"Settings.permissions.conditions.or": "LUB",
|
|
88
85
|
"Settings.permissions.conditions.when": "Kiedy",
|
|
89
|
-
"Settings.permissions.menu.link.roles.label": "Role",
|
|
90
|
-
"Settings.permissions.menu.link.users.label": "Użytkownicy",
|
|
91
86
|
"Settings.permissions.users.create": "Utwórz nowego użytkownika",
|
|
92
87
|
"Settings.permissions.users.form.email": "E-mail",
|
|
93
88
|
"Settings.permissions.users.form.firstname": "Imię",
|
|
94
89
|
"Settings.permissions.users.form.lastname": "Nazwisko",
|
|
95
90
|
"Settings.permissions.users.form.sso": "Połącz z logowaniem jednokrotnym (SSO)",
|
|
96
91
|
"Settings.permissions.users.form.sso.description": "Po włączeniu (ON) użytkownicy mogą logować się za pomocą logowania jednokrotnego",
|
|
97
|
-
"Settings.permissions.users.listview.header.title": "Użytkownicy",
|
|
98
92
|
"Settings.profile.form.section.experience.interfaceLanguage": "Język interfejsu",
|
|
99
93
|
"Settings.profile.form.section.experience.interfaceLanguage.hint": "Spowoduje to wyświetlenie tylko własnego interfejsu w wybranym języku.",
|
|
100
94
|
"Settings.profile.form.section.experience.title": "Doświadczenie",
|
|
101
|
-
"Settings.profile.form.section.password.title": "Zmień hasło",
|
|
102
|
-
"Settings.profile.form.section.profile.title": "Profil",
|
|
103
95
|
"Settings.roles.create.description": "Zdefiniuj uprawnienia nadane roli",
|
|
104
96
|
"Settings.roles.create.title": "Utwórz rolę",
|
|
105
97
|
"Settings.roles.created": "Utworzono rolę",
|
|
@@ -107,8 +99,6 @@
|
|
|
107
99
|
"Settings.roles.form.button.users-with-role": "Użytkownicy z tą rolą",
|
|
108
100
|
"Settings.roles.form.created": "Utworzono",
|
|
109
101
|
"Settings.roles.form.description": "Nazwa i opis roli",
|
|
110
|
-
"Settings.roles.form.input.description": "Opis",
|
|
111
|
-
"Settings.roles.form.input.name": "Nazwa",
|
|
112
102
|
"Settings.roles.form.permission.property-label": "Uprawnienia dla {label}",
|
|
113
103
|
"Settings.roles.form.permissions.attributesPermissions": "Uprawnienia do pól",
|
|
114
104
|
"Settings.roles.form.permissions.create": "Tworzenie",
|
|
@@ -116,10 +106,8 @@
|
|
|
116
106
|
"Settings.roles.form.permissions.publish": "Publikowanie",
|
|
117
107
|
"Settings.roles.form.permissions.read": "Odczyt",
|
|
118
108
|
"Settings.roles.form.permissions.update": "Aktualizowanie",
|
|
119
|
-
"Settings.roles.form.title": "Szczegóły",
|
|
120
109
|
"Settings.roles.list.button.add": "Dodaj nową rolę",
|
|
121
110
|
"Settings.roles.list.description": "Lista ról",
|
|
122
|
-
"Settings.roles.title": "Role",
|
|
123
111
|
"Settings.roles.title.singular": "rola",
|
|
124
112
|
"Settings.sso.description": "Skonfiguruj ustawienia funkcji logowania jednokrotnego (SSO).",
|
|
125
113
|
"Settings.sso.form.defaultRole.description": "Połączy to nowego uwierzytelnionego użytkownika do wybranej roli",
|
|
@@ -131,14 +119,11 @@
|
|
|
131
119
|
"Settings.webhooks.create": "Utwórz webhook",
|
|
132
120
|
"Settings.webhooks.create.header": "Utwórz nowy nagłówek",
|
|
133
121
|
"Settings.webhooks.created": "Utworzono webhook",
|
|
134
|
-
"Settings.webhooks.disabled": "Wyłączono",
|
|
135
|
-
"Settings.webhooks.enabled": "Włączono",
|
|
136
122
|
"Settings.webhooks.event.publish-tooltip": "To zdarzenie istnieje tylko dla treści z włączonym systemem wersji roboczej/publikacji",
|
|
137
123
|
"Settings.webhooks.events.create": "Utwórz",
|
|
138
124
|
"Settings.webhooks.events.update": "Aktualizuj",
|
|
139
125
|
"Settings.webhooks.form.events": "Zdarzenia",
|
|
140
126
|
"Settings.webhooks.form.headers": "Nagłówki",
|
|
141
|
-
"Settings.webhooks.form.name": "Nazwa",
|
|
142
127
|
"Settings.webhooks.form.url": "URL",
|
|
143
128
|
"Settings.webhooks.key": "Klucz",
|
|
144
129
|
"Settings.webhooks.list.button.add": "Dodaj nowy webhook",
|
|
@@ -166,7 +151,6 @@
|
|
|
166
151
|
"app.components.BlockLink.code": "Przykłady kodu",
|
|
167
152
|
"app.components.Button.cancel": "Anuluj",
|
|
168
153
|
"app.components.Button.reset": "Resetuj",
|
|
169
|
-
"app.components.Button.save": "Zapisz",
|
|
170
154
|
"app.components.ComingSoonPage.comingSoon": "Wkrótce",
|
|
171
155
|
"app.components.DownloadInfo.download": "Pobieranie w toku...",
|
|
172
156
|
"app.components.DownloadInfo.text": "Może to chwilę potrwać. Dziękuję za cierpliwość.",
|
|
@@ -191,23 +175,18 @@
|
|
|
191
175
|
"app.components.InstallPluginPage.Download.description": "Pobranie i zainstalowanie wtyczki może zająć kilka sekund.",
|
|
192
176
|
"app.components.InstallPluginPage.Download.title": "Pobieram...",
|
|
193
177
|
"app.components.InstallPluginPage.description": "Rozszerz swoją aplikację bez wysiłku.",
|
|
194
|
-
"app.components.LeftMenuFooter.documentation": "Dokumentacja",
|
|
195
178
|
"app.components.LeftMenuFooter.help": "Wsparcie",
|
|
196
179
|
"app.components.LeftMenuFooter.poweredBy": "Obsługiwane przez ",
|
|
197
180
|
"app.components.LeftMenuLinkContainer.collectionTypes": "Typy kolekcji",
|
|
198
181
|
"app.components.LeftMenuLinkContainer.configuration": "Konfiguracje",
|
|
199
182
|
"app.components.LeftMenuLinkContainer.general": "Ogólne",
|
|
200
|
-
"app.components.LeftMenuLinkContainer.installNewPlugin": "Marketplace",
|
|
201
|
-
"app.components.LeftMenuLinkContainer.listPlugins": "Wtyczki",
|
|
202
183
|
"app.components.LeftMenuLinkContainer.noPluginsInstalled": "Nie zainstalowano jeszcze żadnych wtyczek",
|
|
203
184
|
"app.components.LeftMenuLinkContainer.plugins": "Wtyczki",
|
|
204
|
-
"app.components.LeftMenuLinkContainer.settings": "Ustawienia",
|
|
205
185
|
"app.components.LeftMenuLinkContainer.singleTypes": "Pojedyncze typy",
|
|
206
186
|
"app.components.ListPluginsPage.deletePlugin.description": "Odinstalowanie wtyczki może zająć kilka sekund.",
|
|
207
187
|
"app.components.ListPluginsPage.deletePlugin.title": "Odinstalowywanie",
|
|
208
188
|
"app.components.ListPluginsPage.description": "Lista zainstalowanych wtyczek w projekcie.",
|
|
209
189
|
"app.components.ListPluginsPage.helmet.title": "Lista wtyczek",
|
|
210
|
-
"app.components.ListPluginsPage.title": "Wtyczki",
|
|
211
190
|
"app.components.Logout.logout": "Wyloguj",
|
|
212
191
|
"app.components.Logout.profile": "Profil",
|
|
213
192
|
"app.components.NotFoundPage.back": "Powrót na stronę główną",
|
|
@@ -233,7 +212,6 @@
|
|
|
233
212
|
"app.components.Users.MagicLink.connect": "Wyślij ten link do użytkownika, aby mógł się połączyć.",
|
|
234
213
|
"app.components.Users.MagicLink.connect.sso": "Wyślij ten link do użytkownika, pierwsze logowanie można wykonać za pośrednictwem dostawcy SSO",
|
|
235
214
|
"app.components.Users.ModalCreateBody.block-title.details": "Szczegóły",
|
|
236
|
-
"app.components.Users.ModalCreateBody.block-title.login": "Ustawienia logowania",
|
|
237
215
|
"app.components.Users.ModalCreateBody.block-title.roles": "Role użytkownika",
|
|
238
216
|
"app.components.Users.ModalCreateBody.block-title.roles.description": "Twój użytkownik może mieć jedną lub kilka ról",
|
|
239
217
|
"app.components.Users.SortPicker.button-label": "Sortuj według",
|
|
@@ -262,7 +240,6 @@
|
|
|
262
240
|
"app.utils.SelectOption.defaultMessage": " ",
|
|
263
241
|
"app.utils.add-filter": "Dodaj filtr",
|
|
264
242
|
"app.utils.defaultMessage": " ",
|
|
265
|
-
"app.utils.delete": "Usuń",
|
|
266
243
|
"app.utils.errors.file-too-big.message": "Plik jest za duży",
|
|
267
244
|
"app.utils.filters": "Filtry",
|
|
268
245
|
"app.utils.placeholder.defaultMessage": " ",
|
|
@@ -447,9 +424,7 @@
|
|
|
447
424
|
"content-manager.popUpWarning.warning.updateAllSettings": "Ta operacja zmieni twoje ustawienia",
|
|
448
425
|
"content-manager.success.record.delete": "Usunięto",
|
|
449
426
|
"content-manager.success.record.save": "Zapisano",
|
|
450
|
-
"form.button.continue": "Dalej",
|
|
451
427
|
"form.button.done": "Gotowe",
|
|
452
|
-
"form.button.finish": "Zakończ",
|
|
453
428
|
"global.prompt.unsaved": "Czy na pewno chcesz opuścić tę stronę? Wszystkie twoje modyfikacje zostaną utracone",
|
|
454
429
|
"notification.contentType.relations.conflict": "Typ treści ma sprzeczne relacje",
|
|
455
430
|
"notification.error": "Wystąpił bład",
|
|
@@ -460,7 +435,6 @@
|
|
|
460
435
|
"notification.permission.not-allowed-read": "Nie masz uprawnień, by zobaczyć ten dokument",
|
|
461
436
|
"notification.success.delete": "Pozycja została usunięta",
|
|
462
437
|
"notification.success.saved": "Zapisano",
|
|
463
|
-
"notification.version.update.link": "Zobacz więcej",
|
|
464
438
|
"notification.version.update.message": "Dostępna jest nowa wersja Strapi!",
|
|
465
439
|
"or": "LUB",
|
|
466
440
|
"request.error.model.unknown": "Ten model nie istnieje"
|