@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
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[9303],{43211:e=>{e.exports=JSON.parse('{"Analytics":"Analytics","Content Manager":"Inneh\xe5llshantering","Email":"E-post","Files Upload":"Uppladdning av filer","New entry":"Nytt inl\xe4gg","Password":"L\xf6senord","Provider":"Leverant\xf6r","ResetPasswordToken":"\xc5terst\xe4ll l\xf6senord","Role":"Roll","Username":"Anv\xe4ndarnamn","Users":"Anv\xe4ndare","Users & Permissions":"Anv\xe4ndare och beh\xf6righeter","app.components.BlockLink.code":"Kodexempel","app.components.Button.cancel":"Avbryt","app.components.Button.save":"Spara","app.components.ComingSoonPage.comingSoon":"Kommer snart","app.components.DownloadInfo.download":"Nedladdning p\xe5g\xe5r ...","app.components.DownloadInfo.text":"Det kan ta en minut. Tack f\xf6r ditt t\xe5lamod.","app.components.EmptyAttributes.title":"Det finns inga f\xe4lt \xe4n ","app.components.HomePage.button.blog":"SE MER P\xc5 BLOGGEN","app.components.HomePage.community":"Hitta gemenskapen p\xe5 webben","app.components.HomePage.community.content":"Diskutera med teammedlemmar, bidragsgivare och utvecklare p\xe5 olika kanaler.","app.components.HomePage.create":"Skapa din f\xf6rsta inneh\xe5llstyp","app.components.HomePage.welcome":"V\xe4lkommen ombord!","app.components.HomePage.welcome.again":"V\xe4lkommen ","app.components.HomePage.welcomeBlock.content":"Vi \xe4r glada \xf6ver att ha dig som en del av communityn. Vi letar st\xe4ndigt efter feedback s\xe5 skicka oss DM p\xe5 ","app.components.HomePage.welcomeBlock.content.again":"We hope you are making progress on your project... Feel free to read the latest new about Strapi. We are giving our best to improve the product based on your feedback.","app.components.HomePage.welcomeBlock.content.issues":"issues.","app.components.HomePage.welcomeBlock.content.raise":" or raise ","app.components.ImgPreview.hint":"Dra och sl\xe4pp din fil i det h\xe4r omr\xe5det eller {bl\xe4ddra} efter en fil att ladda upp","app.components.ImgPreview.hint.browse":"bl\xe4ddra","app.components.InputFile.newFile":"L\xe4gg till ny fil","app.components.InputFileDetails.open":"\xd6ppna i en ny flik","app.components.InputFileDetails.originalName":"Originalnamn:","app.components.InputFileDetails.remove":"Ta bort den h\xe4r filen","app.components.InputFileDetails.size":"Storlek:","app.components.InstallPluginPage.Download.description":"Det kan ta n\xe5gra sekunder att ladda ner och installera pluginet","app.components.InstallPluginPage.Download.title":"Laddar ner...","app.components.InstallPluginPage.description":"Ut\xf6ka din app enkelt.","app.components.LeftMenuFooter.documentation":"Dokumentation","app.components.LeftMenuFooter.help":"Hj\xe4lp","app.components.LeftMenuFooter.poweredBy":"Drivs av ","app.components.LeftMenuLinkContainer.configuration":"Konfigurationer","app.components.LeftMenuLinkContainer.general":"Allm\xe4nt","app.components.LeftMenuLinkContainer.installNewPlugin":"Marknad","app.components.LeftMenuLinkContainer.listPlugins":"Plugins","app.components.LeftMenuLinkContainer.noPluginsInstalled":"Inga plugins installerade \xe4n","app.components.LeftMenuLinkContainer.plugins":"Plugins","app.components.ListPluginsPage.description":"Lista \xf6ver de installerade plugins i projektet.","app.components.ListPluginsPage.helmet.title":"Lista plugins","app.components.ListPluginsPage.title":"Plugins","app.components.Logout.logout":"Logga ut","app.components.Logout.profile":"Profil","app.components.NotFoundPage.back":"Tillbaka till startsidan","app.components.NotFoundPage.description":"Hittades inte","app.components.Official":"Officiell","app.components.Onboarding.label.completed":"% klar","app.components.Onboarding.title":"Kom ig\xe5ng videor","app.components.PluginCard.Button.label.download":"Ladda ner","app.components.PluginCard.Button.label.install":"Redan installerad","app.components.PluginCard.PopUpWarning.install.impossible.autoReload.needed":"AutoReload-funktionen m\xe5ste vara inaktiverad. Starta din app med `yarn develop`.","app.components.PluginCard.PopUpWarning.install.impossible.confirm":"Jag f\xf6rst\xe5r!","app.components.PluginCard.PopUpWarning.install.impossible.environment":"Av s\xe4kerhetssk\xe4l kan ett plugin bara laddas ner i en utvecklingsmilj\xf6.","app.components.PluginCard.PopUpWarning.install.impossible.title":"Nedladdning \xe4r inte m\xf6jlig","app.components.PluginCard.compatible":"Kompatibel med din app","app.components.PluginCard.compatibleCommunity":"Kompatibel med communityn","app.components.PluginCard.more-details":"Mer detaljer","app.components.listPlugins.button":"L\xe4gg till nytt plugin","app.components.listPlugins.title.none":"Inga plugins installerade","app.components.listPluginsPage.deletePlugin.error":"Ett fel intr\xe4ffade vid avinstallation av pluginet","app.utils.SelectOption.defaultMessage":" ","app.utils.defaultMessage":" ","app.utils.delete":"Radera","app.utils.placeholder.defaultMessage":" ","components.AutoReloadBlocker.description":"K\xf6r Strapi med ett av de f\xf6ljande kommandon:","components.AutoReloadBlocker.header":"Reload funktionen kr\xe4vs f\xf6r detta plugin.","components.ErrorBoundary.title":"N\xe5gonting gick fel...","components.Input.error.attribute.key.taken":"Detta v\xe4rde finns redan","components.Input.error.attribute.sameKeyAndName":"Kan inte vara lika","components.Input.error.attribute.taken":"Detta f\xe4ltnamn finns redan","components.Input.error.contentTypeName.taken":"Detta namn finns redan","components.Input.error.custom-error":"{errorMessage} ","components.Input.error.validation.email":"Detta \xe4r inte en e-post","components.Input.error.validation.json":"Detta st\xe4mmer inte med JSON-formatet","components.Input.error.validation.max":"V\xe4rdet \xe4r f\xf6r h\xf6gt.","components.Input.error.validation.maxLength":"V\xe4rdet \xe4r f\xf6r l\xe5ngt.","components.Input.error.validation.min":"V\xe4rdet \xe4r f\xf6r l\xe5gt.","components.Input.error.validation.minLength":"V\xe4rdet \xe4r f\xf6r kort.","components.Input.error.validation.minSupMax":"Kan inte vara \xf6verl\xe4gsen","components.Input.error.validation.regex":"V\xe4rdet matchar inte regexet.","components.Input.error.validation.required":"Detta v\xe4rde kr\xe4vs.","components.ListRow.empty":"Det finns inga data som ska visas.","components.OverlayBlocker.description":"Du anv\xe4nder en funktion som beh\xf6ver servern att starta om. V\xe4nta tills servern \xe4r ig\xe5ng.","components.OverlayBlocker.description.serverError":"Servern borde ha startat om, kontrollera dina loggar i terminalen.","components.OverlayBlocker.title":"V\xe4ntar p\xe5 omstart...","components.OverlayBlocker.title.serverError":"Omstarten tar l\xe4ngre tid \xe4n v\xe4ntat","components.PageFooter.select":"poster per sida","components.ProductionBlocker.description":"F\xf6r s\xe4kerhetssk\xe4l m\xe5ste vi inaktivera detta plugin i andra milj\xf6er.","components.ProductionBlocker.header":"Denna plugin \xe4r endast tillg\xe4nglig under utveckling.","components.Wysiwyg.collapse":"Kollapsera","components.Wysiwyg.selectOptions.H1":"Titel H1","components.Wysiwyg.selectOptions.H2":"Titel H2","components.Wysiwyg.selectOptions.H3":"Titel H3","components.Wysiwyg.selectOptions.H4":"Titel H4","components.Wysiwyg.selectOptions.H5":"Titel H5","components.Wysiwyg.selectOptions.H6":"Titel H6","components.Wysiwyg.selectOptions.title":"L\xe4gg till en titel","components.WysiwygBottomControls.charactersIndicators":"Tecken","components.WysiwygBottomControls.fullscreen":"Expandera","components.WysiwygBottomControls.uploadFiles":"Dra och sl\xe4pp filer, klistra in fr\xe5n urklipp eller {bl\xe4ddra}.","components.WysiwygBottomControls.uploadFiles.browse":"v\xe4lj dem","components.popUpWarning.message":"\xc4r du s\xe4ker p\xe5 att du vill radera detta?","components.popUpWarning.title":"Var god bekr\xe4fta","notification.error":"Ett fel uppstod","notification.error.layout":"Det gick inte att h\xe4mta layouten","request.error.model.unknown":"Denna modellen finns inte"}')}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[749],{49582:e=>{e.exports=JSON.parse('{"Analytics":"\u0e01\u0e32\u0e23\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c","Auth.components.Oops.text":"\u0e41\u0e2d\u0e04\u0e40\u0e04\u0e32\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e16\u0e39\u0e01\u0e23\u0e30\u0e07\u0e31\u0e1a\u0e0a\u0e31\u0e48\u0e27\u0e04\u0e23\u0e32\u0e27","Auth.form.button.forgot-password":"\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25","Auth.form.button.go-home":"\u0e01\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e25\u0e31\u0e01","Auth.form.button.login":"\u0e25\u0e47\u0e2d\u0e01\u0e2d\u0e34\u0e19","Auth.form.button.register":"\u0e21\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e01\u0e31\u0e19\u0e40\u0e16\u0e2d\u0e30","Auth.form.button.reset-password":"\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19","Auth.form.confirmPassword.label":"\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19","Auth.form.email.label":"\u0e2d\u0e35\u0e40\u0e21\u0e25","Auth.form.email.placeholder":"kai@doe.com","Auth.form.error.blocked":"\u0e41\u0e2d\u0e04\u0e40\u0e04\u0e32\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e42\u0e14\u0e22\u0e1c\u0e39\u0e49\u0e14\u0e39\u0e41\u0e25\u0e23\u0e30\u0e1a\u0e1a","Auth.form.error.code.provide":"\u0e21\u0e35\u0e42\u0e04\u0e49\u0e14\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07","Auth.form.error.confirmed":"\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e41\u0e2d\u0e04\u0e40\u0e04\u0e32\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19","Auth.form.error.email.invalid":"\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07","Auth.form.error.email.provide":"\u0e42\u0e1b\u0e23\u0e14\u0e1b\u0e49\u0e2d\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e2b\u0e23\u0e37\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","Auth.form.error.email.taken":"\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e16\u0e39\u0e01\u0e43\u0e0a\u0e49\u0e44\u0e1b\u0e41\u0e25\u0e49\u0e27","Auth.form.error.invalid":"\u0e15\u0e31\u0e27\u0e23\u0e30\u0e1a\u0e38\u0e2b\u0e23\u0e37\u0e2d\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07","Auth.form.error.params.provide":"\u0e21\u0e35\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07","Auth.form.error.password.format":"\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e35\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c `$` \u0e44\u0e14\u0e49\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32\u0e2a\u0e32\u0e21\u0e04\u0e23\u0e31\u0e49\u0e07","Auth.form.error.password.local":"\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19, \u0e42\u0e1b\u0e23\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e2d\u0e34\u0e19\u0e1c\u0e48\u0e32\u0e19\u0e1c\u0e39\u0e49\u0e43\u0e2b\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e41\u0e2d\u0e04\u0e40\u0e04\u0e32\u0e15\u0e4c","Auth.form.error.password.matching":"\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e44\u0e21\u0e48\u0e15\u0e23\u0e07\u0e01\u0e31\u0e19","Auth.form.error.password.provide":"\u0e42\u0e1b\u0e23\u0e14\u0e1b\u0e49\u0e2d\u0e19\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","Auth.form.error.ratelimit":"\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21\u0e21\u0e32\u0e01\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b \u0e42\u0e1b\u0e23\u0e14\u0e25\u0e2d\u0e07\u0e43\u0e2b\u0e21\u0e48\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07\u0e43\u0e19\u0e19\u0e32\u0e17\u0e35\u0e16\u0e31\u0e14\u0e44\u0e1b","Auth.form.error.user.not-exist":"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e19\u0e35\u0e49\u0e2d\u0e22\u0e39\u0e48","Auth.form.error.username.taken":"\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e16\u0e39\u0e01\u0e43\u0e0a\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27","Auth.form.firstname.label":"\u0e0a\u0e37\u0e48\u0e2d","Auth.form.firstname.placeholder":"Kai","Auth.form.forgot-password.email.label":"\u0e1b\u0e49\u0e2d\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","Auth.form.forgot-password.email.label.success":"\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e44\u0e1b\u0e22\u0e31\u0e07","Auth.form.lastname.label":"\u0e19\u0e32\u0e21\u0e2a\u0e01\u0e38\u0e25","Auth.form.lastname.placeholder":"Doe","Auth.form.password.label":"\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19","Auth.form.register.news.label":"\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e15\u0e43\u0e2b\u0e49\u0e09\u0e31\u0e19\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e04\u0e38\u0e13\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e43\u0e2b\u0e21\u0e48\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e17\u0e35\u0e48\u0e01\u0e33\u0e25\u0e31\u0e07\u0e08\u0e30\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19 (\u0e42\u0e14\u0e22\u0e01\u0e32\u0e23\u0e17\u0e33\u0e2a\u0e34\u0e48\u0e07\u0e19\u0e35\u0e49\u0e04\u0e38\u0e13\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a {terms} \u0e41\u0e25\u0e30 {policy})","Auth.form.rememberMe.label":"\u0e08\u0e33\u0e09\u0e31\u0e19\u0e44\u0e27\u0e49","Auth.form.username.label":"\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49","Auth.form.username.placeholder":"Kai Doe","Auth.link.forgot-password":"\u0e25\u0e37\u0e21\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13?","Auth.link.ready":"\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e25\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e02\u0e49\u0e32\u0e43\u0e0a\u0e49?","Auth.link.signin":"\u0e25\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e02\u0e49\u0e32\u0e43\u0e0a\u0e49","Auth.link.signin.account":"\u0e21\u0e35\u0e41\u0e2d\u0e04\u0e40\u0e04\u0e32\u0e15\u0e4c\u0e41\u0e25\u0e49\u0e27\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?","Auth.privacy-policy-agreement.policy":"\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27","Auth.privacy-policy-agreement.terms":"\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02","Content Manager":"\u0e15\u0e31\u0e27\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32","Content Type Builder":"\u0e15\u0e31\u0e27\u0e2a\u0e23\u0e49\u0e32\u0e07 Content-Types","Documentation":"\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e04\u0e39\u0e48\u0e21\u0e37\u0e2d","Email":"\u0e2d\u0e35\u0e40\u0e21\u0e25","Files Upload":"\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e1f\u0e25\u0e4c","HomePage.helmet.title":"\u0e42\u0e2e\u0e21\u0e40\u0e1e\u0e08","HomePage.roadmap":"\u0e14\u0e39\u0e42\u0e23\u0e14\u0e41\u0e21\u0e47\u0e1e\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32","HomePage.welcome.congrats":"\u0e22\u0e34\u0e19\u0e14\u0e35\u0e14\u0e49\u0e27\u0e22!","HomePage.welcome.congrats.content":"\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e25\u0e47\u0e2d\u0e01\u0e2d\u0e34\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e14\u0e39\u0e41\u0e25\u0e23\u0e30\u0e1a\u0e1a\u0e04\u0e19\u0e41\u0e23\u0e01 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e04\u0e49\u0e19\u0e1e\u0e1a\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e2d\u0e31\u0e19\u0e17\u0e23\u0e07\u0e1e\u0e25\u0e31\u0e07\u0e17\u0e35\u0e48\u0e43\u0e2b\u0e49\u0e44\u0e27\u0e49\u0e01\u0e31\u0e1a Strapi,","HomePage.welcome.congrats.content.bold":"\u0e40\u0e23\u0e32\u0e41\u0e19\u0e30\u0e19\u0e33\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e0a\u0e19\u0e34\u0e14\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19-\u0e0a\u0e19\u0e34\u0e14\u0e41\u0e23\u0e01\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","Media Library":"\u0e44\u0e25\u0e1a\u0e23\u0e32\u0e23\u0e35\u0e2a\u0e37\u0e48\u0e2d","New entry":"\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e2b\u0e21\u0e48","Password":"\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19","Provider":"\u0e1c\u0e39\u0e49\u0e43\u0e2b\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23","ResetPasswordToken":"\u0e42\u0e17\u0e40\u0e04\u0e47\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19","Role":"\u0e1a\u0e17\u0e1a\u0e32\u0e17","Roles & Permissions":"\u0e1a\u0e17\u0e1a\u0e32\u0e17 & \u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15","Roles.ListPage.notification.delete-all-not-allowed":"\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e25\u0e1a\u0e1a\u0e32\u0e07\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e44\u0e14\u0e49\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07\u0e08\u0e32\u0e01\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e16\u0e39\u0e01\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07\u0e01\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49","Roles.ListPage.notification.delete-not-allowed":"\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e16\u0e39\u0e01\u0e25\u0e1a\u0e44\u0e14\u0e49\u0e16\u0e49\u0e32\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07\u0e01\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49","Roles.components.List.empty.withSearch":"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e17\u0e35\u0e48\u0e2a\u0e2d\u0e14\u0e04\u0e25\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e04\u0e49\u0e19\u0e2b\u0e32 ({search})...","Settings.PageTitle":"\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07 - {name}","Settings.error":"\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14","Settings.global":"\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e42\u0e01\u0e25\u0e1a\u0e2d\u0e25","Settings.permissions":"\u0e1e\u0e32\u0e40\u0e19\u0e25\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e2b\u0e32\u0e23\u0e23\u0e30\u0e1a\u0e1a","Settings.permissions.category":"\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a {category}","Settings.permissions.conditions.anytime":"\u0e17\u0e38\u0e01\u0e17\u0e35\u0e48\u0e17\u0e38\u0e01\u0e40\u0e27\u0e25\u0e32","Settings.permissions.conditions.apply":"\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49","Settings.permissions.conditions.can":"\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16","Settings.permissions.conditions.define-conditions":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02","Settings.permissions.conditions.links":"\u0e25\u0e34\u0e07\u0e01\u0e4c","Settings.permissions.conditions.no-actions":"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23","Settings.permissions.conditions.or":"\u0e2b\u0e23\u0e37\u0e2d","Settings.permissions.conditions.when":"\u0e40\u0e21\u0e37\u0e48\u0e2d","Settings.permissions.menu.link.roles.label":"\u0e1a\u0e17\u0e1a\u0e32\u0e17","Settings.permissions.menu.link.users.label":"\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49","Settings.permissions.users.create":"\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e43\u0e2b\u0e21\u0e48","Settings.permissions.users.form.email":"\u0e2d\u0e35\u0e40\u0e21\u0e25","Settings.permissions.users.form.firstname":"\u0e0a\u0e37\u0e48\u0e2d","Settings.permissions.users.form.lastname":"\u0e19\u0e32\u0e21\u0e2a\u0e01\u0e38\u0e25","Settings.permissions.users.listview.header.title":"\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49","Settings.roles.create.description":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e1a\u0e17\u0e1a\u0e32\u0e17","Settings.roles.create.title":"\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1a\u0e17\u0e1a\u0e32\u0e17","Settings.roles.created":"\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07","Settings.roles.edit.title":"\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1a\u0e17\u0e1a\u0e32\u0e17","Settings.roles.form.button.users-with-role":"\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e19\u0e35\u0e49","Settings.roles.form.created":"\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19","Settings.roles.form.description":"\u0e0a\u0e37\u0e48\u0e2d\u0e41\u0e25\u0e30\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e1a\u0e17\u0e1a\u0e32\u0e17","Settings.roles.form.input.description":"\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14","Settings.roles.form.input.name":"\u0e0a\u0e37\u0e48\u0e2d","Settings.roles.form.permissions.attributesPermissions":"\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e43\u0e19\u0e1f\u0e34\u0e25\u0e14\u0e4c","Settings.roles.form.permissions.create":"\u0e2a\u0e23\u0e49\u0e32\u0e07","Settings.roles.form.permissions.delete":"\u0e25\u0e1a","Settings.roles.form.permissions.read":"\u0e2d\u0e48\u0e32\u0e19","Settings.roles.form.permissions.update":"\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e15","Settings.roles.form.title":"\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14","Settings.roles.list.button.add":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e43\u0e2b\u0e21\u0e48","Settings.roles.list.description":"\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e17\u0e1a\u0e32\u0e17","Settings.roles.title":"\u0e1a\u0e17\u0e1a\u0e32\u0e17","Settings.roles.title.singular":"\u0e1a\u0e17\u0e1a\u0e32\u0e17","Settings.webhooks.create":"\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e2e\u0e38\u0e04","Settings.webhooks.create.header":"\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27\u0e43\u0e2b\u0e21\u0e48","Settings.webhooks.created":"\u0e40\u0e27\u0e47\u0e1a\u0e2e\u0e38\u0e04\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19","Settings.webhooks.disabled":"\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19","Settings.webhooks.enabled":"\u0e16\u0e39\u0e01\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19","Settings.webhooks.events.create":"\u0e2a\u0e23\u0e49\u0e32\u0e07","Settings.webhooks.form.events":"\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c","Settings.webhooks.form.headers":"\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27","Settings.webhooks.form.name":"\u0e0a\u0e37\u0e48\u0e2d","Settings.webhooks.form.url":"Url","Settings.webhooks.key":"\u0e04\u0e35\u0e22\u0e4c","Settings.webhooks.list.button.add":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e27\u0e47\u0e1a\u0e2e\u0e38\u0e04\u0e43\u0e2b\u0e21\u0e48","Settings.webhooks.list.description":"\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e1c\u0e48\u0e32\u0e19 POST","Settings.webhooks.list.empty.description":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e23\u0e01\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e25\u0e07\u0e43\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u0e49","Settings.webhooks.list.empty.link":"\u0e14\u0e39\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32","Settings.webhooks.list.empty.title":"\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e40\u0e27\u0e47\u0e1a\u0e2e\u0e38\u0e04","Settings.webhooks.singular":"\u0e40\u0e27\u0e47\u0e1a\u0e2e\u0e38\u0e04","Settings.webhooks.title":"\u0e40\u0e27\u0e47\u0e1a\u0e2e\u0e38\u0e04","Settings.webhooks.trigger":"\u0e17\u0e23\u0e34\u0e01\u0e40\u0e01\u0e2d\u0e23\u0e4c","Settings.webhooks.trigger.cancel":"\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e17\u0e23\u0e34\u0e01\u0e40\u0e01\u0e2d\u0e23\u0e4c","Settings.webhooks.trigger.pending":"\u0e04\u0e49\u0e32\u0e07\u0e2d\u0e22\u0e39\u0e48 ...","Settings.webhooks.trigger.save":"\u0e42\u0e1b\u0e23\u0e14\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e17\u0e23\u0e34\u0e01\u0e40\u0e01\u0e2d\u0e23\u0e4c","Settings.webhooks.trigger.success":"\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08!","Settings.webhooks.trigger.success.label":"\u0e17\u0e23\u0e34\u0e01\u0e40\u0e01\u0e2d\u0e23\u0e4c\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08","Settings.webhooks.trigger.test":"\u0e17\u0e23\u0e34\u0e01\u0e40\u0e01\u0e2d\u0e23\u0e4c\u0e17\u0e14\u0e2a\u0e2d\u0e1a","Settings.webhooks.trigger.title":"\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e48\u0e2d\u0e19\u0e17\u0e23\u0e34\u0e01\u0e40\u0e01\u0e2d\u0e23\u0e4c","Settings.webhooks.value":"\u0e04\u0e48\u0e32","Username":"\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49","Users":"Users","Users & Permissions":"\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 & \u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15","Users.components.List.empty":"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49...","Users.components.List.empty.withFilters":"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e15\u0e32\u0e21\u0e15\u0e31\u0e27\u0e01\u0e23\u0e2d\u0e07\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49 ...","Users.components.List.empty.withSearch":"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e35\u0e48\u0e2a\u0e2d\u0e14\u0e04\u0e25\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e04\u0e49\u0e19\u0e2b\u0e32 ({search})...","app.components.BlockLink.code":"\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e42\u0e04\u0e49\u0e14","app.components.Button.cancel":"\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01","app.components.Button.reset":"\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15","app.components.Button.save":"\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01","app.components.ComingSoonPage.comingSoon":"\u0e40\u0e23\u0e47\u0e27\u0e46\u0e19\u0e35\u0e49","app.components.DownloadInfo.download":"\u0e01\u0e33\u0e25\u0e31\u0e07\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14 ...","app.components.DownloadInfo.text":"\u0e2d\u0e32\u0e08\u0e43\u0e0a\u0e49\u0e40\u0e27\u0e25\u0e32\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e2a\u0e31\u0e01\u0e04\u0e23\u0e39\u0e48 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e2d\u0e14\u0e17\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","app.components.EmptyAttributes.title":"\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1f\u0e34\u0e25\u0e14\u0e4c","app.components.HomePage.button.blog":"\u0e14\u0e39\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e1a\u0e19\u0e1a\u0e25\u0e47\u0e2d\u0e01","app.components.HomePage.community":"\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e0a\u0e38\u0e21\u0e0a\u0e19\u0e1a\u0e19\u0e40\u0e27\u0e47\u0e1a","app.components.HomePage.community.content":"\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32\u0e01\u0e31\u0e1a\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e02\u0e2d\u0e07\u0e17\u0e35\u0e21\u0e1c\u0e39\u0e49\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e41\u0e25\u0e30\u0e1c\u0e39\u0e49\u0e1e\u0e31\u0e12\u0e19\u0e32\u0e1a\u0e19\u0e2d\u0e35\u0e01\u0e0a\u0e48\u0e2d\u0e07\u0e17\u0e32\u0e07","app.components.HomePage.create":"\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e0a\u0e19\u0e34\u0e14\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e41\u0e23\u0e01\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","app.components.HomePage.welcome":"\u0e22\u0e34\u0e19\u0e14\u0e35\u0e15\u0e49\u0e2d\u0e19\u0e23\u0e31\u0e1a\u0e2a\u0e39\u0e48\u0e1a\u0e2d\u0e23\u0e4c\u0e14!","app.components.HomePage.welcome.again":"\u0e22\u0e34\u0e19\u0e14\u0e35\u0e15\u0e49\u0e2d\u0e19\u0e23\u0e31\u0e1a ","app.components.HomePage.welcomeBlock.content":"\u0e40\u0e23\u0e32\u0e22\u0e34\u0e19\u0e14\u0e35\u0e17\u0e35\u0e48\u0e08\u0e30\u0e21\u0e35\u0e04\u0e38\u0e13\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e0a\u0e38\u0e21\u0e0a\u0e19. \u0e04\u0e38\u0e13\u0e23\u0e39\u0e49\u0e44\u0e2b\u0e21? \u0e40\u0e23\u0e32\u0e01\u0e33\u0e25\u0e31\u0e07\u0e21\u0e2d\u0e07\u0e2b\u0e32\u0e1c\u0e25\u0e15\u0e2d\u0e1a\u0e23\u0e31\u0e1a\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e15\u0e48\u0e2d\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07 \u0e14\u0e31\u0e07\u0e19\u0e31\u0e49\u0e19\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e1a\u0e32\u0e22\u0e43\u0e08\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e42\u0e14\u0e22\u0e15\u0e23\u0e07\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32 ","app.components.HomePage.welcomeBlock.content.again":"\u0e40\u0e23\u0e32\u0e2b\u0e27\u0e31\u0e07\u0e27\u0e48\u0e32\u0e04\u0e38\u0e13\u0e08\u0e30\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e15\u0e32\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 ... \u0e2d\u0e48\u0e32\u0e19\u0e02\u0e48\u0e32\u0e27\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a Strapi \u0e40\u0e23\u0e32\u0e01\u0e33\u0e25\u0e31\u0e07\u0e43\u0e2b\u0e49\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e14\u0e35\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e41\u0e01\u0e48\u0e40\u0e23\u0e32\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e42\u0e14\u0e22\u0e22\u0e36\u0e14\u0e15\u0e32\u0e21\u0e04\u0e27\u0e32\u0e21\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","app.components.HomePage.welcomeBlock.content.issues":"\u0e1b\u0e31\u0e0d\u0e2b\u0e32.","app.components.HomePage.welcomeBlock.content.raise":" \u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21 ","app.components.ImgPreview.hint":"\u0e25\u0e32\u0e01 & \u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e44\u0e1f\u0e25\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e25\u0e07\u0e43\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e19\u0e35\u0e49 \u0e2b\u0e23\u0e37\u0e2d{browse}\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e2b\u0e32\u0e44\u0e1f\u0e25\u0e4c\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14","app.components.ImgPreview.hint.browse":"\u0e40\u0e23\u0e35\u0e22\u0e01\u0e14\u0e39","app.components.InputFile.newFile":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e44\u0e1f\u0e25\u0e4c\u0e43\u0e2b\u0e21\u0e48","app.components.InputFileDetails.open":"\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e19\u0e41\u0e17\u0e47\u0e1a\u0e43\u0e2b\u0e21\u0e48","app.components.InputFileDetails.originalName":"\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e14\u0e34\u0e21:","app.components.InputFileDetails.remove":"\u0e25\u0e1a\u0e44\u0e1f\u0e25\u0e4c\u0e19\u0e35\u0e49","app.components.InputFileDetails.size":"\u0e02\u0e19\u0e32\u0e14:","app.components.InstallPluginPage.Download.description":"\u0e2d\u0e32\u0e08\u0e43\u0e0a\u0e49\u0e40\u0e27\u0e25\u0e32\u0e2a\u0e2d\u0e07\u0e2a\u0e32\u0e21\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35\u0e43\u0e19\u0e01\u0e32\u0e23\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e41\u0e25\u0e30\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19","app.components.InstallPluginPage.Download.title":"\u0e01\u0e33\u0e25\u0e31\u0e07\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14...","app.components.InstallPluginPage.description":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e41\u0e2d\u0e1b\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e0a\u0e31\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e07\u0e48\u0e32\u0e22\u0e14\u0e32\u0e22","app.components.LeftMenuFooter.documentation":"\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e04\u0e39\u0e48\u0e21\u0e37\u0e2d","app.components.LeftMenuFooter.help":"\u0e27\u0e34\u0e18\u0e35\u0e43\u0e0a\u0e49","app.components.LeftMenuFooter.poweredBy":"\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e42\u0e14\u0e22 ","app.components.LeftMenuLinkContainer.collectionTypes":"\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19","app.components.LeftMenuLinkContainer.configuration":"\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07","app.components.LeftMenuLinkContainer.general":"\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b","app.components.LeftMenuLinkContainer.installNewPlugin":"\u0e15\u0e25\u0e32\u0e14","app.components.LeftMenuLinkContainer.listPlugins":"\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19","app.components.LeftMenuLinkContainer.noPluginsInstalled":"\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19","app.components.LeftMenuLinkContainer.plugins":"\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19","app.components.LeftMenuLinkContainer.settings":"\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32","app.components.LeftMenuLinkContainer.singleTypes":"\u0e0a\u0e19\u0e34\u0e14\u0e40\u0e14\u0e35\u0e22\u0e27","app.components.ListPluginsPage.deletePlugin.description":"\u0e2d\u0e32\u0e08\u0e43\u0e0a\u0e49\u0e40\u0e27\u0e25\u0e32\u0e2a\u0e2d\u0e07\u0e2a\u0e32\u0e21\u0e27\u0e34\u0e19\u0e32\u0e17\u0e35\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e16\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19","app.components.ListPluginsPage.deletePlugin.title":"\u0e01\u0e32\u0e23\u0e16\u0e2d\u0e19\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07","app.components.ListPluginsPage.description":"\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e44\u0e27\u0e49\u0e43\u0e19\u0e42\u0e1b\u0e23\u0e40\u0e08\u0e47\u0e01\u0e15\u0e4c","app.components.ListPluginsPage.helmet.title":"\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19","app.components.ListPluginsPage.title":"\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19","app.components.Logout.logout":"\u0e25\u0e47\u0e2d\u0e01\u0e40\u0e2d\u0e32\u0e15\u0e4c","app.components.Logout.profile":"\u0e42\u0e1b\u0e23\u0e44\u0e1f\u0e25\u0e4c","app.components.NotFoundPage.back":"\u0e01\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e42\u0e2e\u0e21\u0e40\u0e1e\u0e08","app.components.NotFoundPage.description":"\u0e44\u0e21\u0e48\u0e1e\u0e1a","app.components.Official":"\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e17\u0e32\u0e07\u0e01\u0e32\u0e23","app.components.Onboarding.label.completed":"% \u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c","app.components.Onboarding.title":"\u0e27\u0e34\u0e14\u0e35\u0e42\u0e2d\u0e01\u0e32\u0e23\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19","app.components.PluginCard.Button.label.download":"\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14","app.components.PluginCard.Button.label.install":"\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e41\u0e25\u0e49\u0e27","app.components.PluginCard.PopUpWarning.install.impossible.autoReload.needed":"\u0e04\u0e38\u0e13\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30 autoReload \u0e15\u0e49\u0e2d\u0e07\u0e16\u0e39\u0e01\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19 \u0e42\u0e1b\u0e23\u0e14\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e41\u0e2d\u0e1b\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49 `yarn develop`","app.components.PluginCard.PopUpWarning.install.impossible.confirm":"\u0e09\u0e31\u0e19\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08!","app.components.PluginCard.PopUpWarning.install.impossible.environment":"\u0e14\u0e49\u0e27\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e14\u0e49\u0e32\u0e19\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e14\u0e49\u0e43\u0e19\u0e2a\u0e20\u0e32\u0e27\u0e30\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e01\u0e32\u0e23\u0e1e\u0e31\u0e12\u0e19\u0e32\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19","app.components.PluginCard.PopUpWarning.install.impossible.title":"\u0e01\u0e32\u0e23\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e40\u0e1b\u0e47\u0e19\u0e44\u0e1b\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49","app.components.PluginCard.compatible":"\u0e40\u0e02\u0e49\u0e32\u0e01\u0e31\u0e19\u0e44\u0e14\u0e49\u0e01\u0e31\u0e1a\u0e41\u0e2d\u0e1b\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","app.components.PluginCard.compatibleCommunity":"\u0e17\u0e33\u0e07\u0e32\u0e19\u0e23\u0e48\u0e27\u0e21\u0e01\u0e31\u0e19\u0e44\u0e14\u0e49\u0e01\u0e31\u0e1a\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e0a\u0e31\u0e48\u0e19\u0e0a\u0e38\u0e21\u0e0a\u0e19","app.components.PluginCard.more-details":"\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21","app.components.UpgradePlanModal.button":"\u0e40\u0e23\u0e35\u0e22\u0e19\u0e23\u0e39\u0e49\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21","app.components.UpgradePlanModal.limit-reached":"\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e16\u0e36\u0e07\u0e02\u0e35\u0e14\u0e08\u0e33\u0e01\u0e31\u0e14\u0e41\u0e25\u0e49\u0e27","app.components.UpgradePlanModal.text-ce":"\u0e40\u0e2d\u0e14\u0e34\u0e0a\u0e31\u0e19\u0e0a\u0e38\u0e21\u0e0a\u0e19","app.components.UpgradePlanModal.text-ee":"\u0e40\u0e2d\u0e14\u0e34\u0e0a\u0e31\u0e19 Enterprise","app.components.UpgradePlanModal.text-power":"\u0e1b\u0e25\u0e14\u0e25\u0e47\u0e2d\u0e01\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e40\u0e15\u0e47\u0e21","app.components.UpgradePlanModal.text-strapi":"\u0e02\u0e2d\u0e07 Strapi \u0e42\u0e14\u0e22\u0e01\u0e32\u0e23\u0e2d\u0e31\u0e1e\u0e40\u0e01\u0e23\u0e14\u0e41\u0e1c\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e1b\u0e22\u0e31\u0e07","app.components.Users.MagicLink.connect":"\u0e2a\u0e48\u0e07\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e19\u0e35\u0e49\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e15\u0e48\u0e2d","app.components.Users.ModalCreateBody.block-title.details":"\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14","app.components.Users.ModalCreateBody.block-title.roles":"\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49","app.components.Users.SortPicker.button-label":"\u0e40\u0e23\u0e35\u0e22\u0e07\u0e15\u0e32\u0e21","app.components.Users.SortPicker.sortby.email_asc":"\u0e2d\u0e35\u0e40\u0e21\u0e25 (A \u0e16\u0e36\u0e07 Z)","app.components.Users.SortPicker.sortby.email_desc":"\u0e2d\u0e35\u0e40\u0e21\u0e25 (Z \u0e16\u0e36\u0e07 A)","app.components.Users.SortPicker.sortby.firstname_asc":"\u0e0a\u0e37\u0e48\u0e2d (A \u0e16\u0e36\u0e07 Z)","app.components.Users.SortPicker.sortby.firstname_desc":"\u0e0a\u0e37\u0e48\u0e2d (Z \u0e16\u0e36\u0e07 A)","app.components.Users.SortPicker.sortby.lastname_asc":"\u0e19\u0e32\u0e21\u0e2a\u0e01\u0e38\u0e25 (A \u0e16\u0e36\u0e07 Z)","app.components.Users.SortPicker.sortby.lastname_desc":"\u0e19\u0e32\u0e21\u0e2a\u0e01\u0e38\u0e25 (Z \u0e16\u0e36\u0e07 A)","app.components.Users.SortPicker.sortby.username_asc":"\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 (A \u0e16\u0e36\u0e07 Z)","app.components.Users.SortPicker.sortby.username_desc":"\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 (Z \u0e16\u0e36\u0e07 A)","app.components.listPlugins.button":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e43\u0e2b\u0e21\u0e48","app.components.listPlugins.title.none":"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19","app.components.listPluginsPage.deletePlugin.error":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e02\u0e13\u0e30\u0e16\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19","app.containers.App.notification.error.init":"\u0e40\u0e01\u0e34\u0e14\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e02\u0e36\u0e49\u0e19\u0e02\u0e13\u0e30\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d API","app.containers.AuthPage.ForgotPasswordSuccess.text.contact-admin":"\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e19\u0e35\u0e49\u0e42\u0e1b\u0e23\u0e14\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e14\u0e39\u0e41\u0e25\u0e23\u0e30\u0e1a\u0e1a\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","app.containers.AuthPage.ForgotPasswordSuccess.text.email":"\u0e2d\u0e32\u0e08\u0e43\u0e0a\u0e49\u0e40\u0e27\u0e25\u0e32\u0e2a\u0e2d\u0e07\u0e2a\u0e32\u0e21\u0e19\u0e32\u0e17\u0e35\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e23\u0e31\u0e1a\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e01\u0e32\u0e23\u0e01\u0e39\u0e49\u0e04\u0e37\u0e19\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","app.containers.AuthPage.ForgotPasswordSuccess.title":"\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e41\u0e25\u0e49\u0e27","app.containers.Users.EditPage.form.active.label":"\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19","app.containers.Users.EditPage.header.label":"\u0e41\u0e01\u0e49\u0e44\u0e02 {name}","app.containers.Users.EditPage.header.label-loading":"\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49","app.containers.Users.EditPage.roles-bloc-title":"\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e17\u0e35\u0e48\u0e41\u0e2d\u0e47\u0e15\u0e17\u0e23\u0e34\u0e1a\u0e34\u0e27\u0e15\u0e4c","app.containers.Users.ModalForm.footer.button-success":"\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49","app.links.configure-view":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07","app.static.links.cheatsheet":"\u0e0a\u0e35\u0e17\u0e0a\u0e35\u0e17","app.utils.SelectOption.defaultMessage":" ","app.utils.add-filter":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e15\u0e31\u0e27\u0e01\u0e23\u0e2d\u0e07","app.utils.defaultMessage":" ","app.utils.delete":"\u0e25\u0e1a","app.utils.errors.file-too-big.message":"\u0e44\u0e1f\u0e25\u0e4c\u0e21\u0e35\u0e02\u0e19\u0e32\u0e14\u0e43\u0e2b\u0e0d\u0e48\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b","app.utils.filters":"\u0e15\u0e31\u0e27\u0e01\u0e23\u0e2d\u0e07","app.utils.placeholder.defaultMessage":" ","app.utils.select-all":"\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14","component.Input.error.validation.integer":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e15\u0e47\u0e21","components.AutoReloadBlocker.description":"\u0e23\u0e31\u0e19 Strapi \u0e14\u0e49\u0e27\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e43\u0e19\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49:","components.AutoReloadBlocker.header":"\u0e23\u0e35\u0e42\u0e2b\u0e25\u0e14\u0e04\u0e38\u0e13\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e19\u0e35\u0e49","components.ErrorBoundary.title":"\u0e21\u0e35\u0e1a\u0e32\u0e07\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14...","components.Input.error.attribute.key.taken":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27","components.Input.error.attribute.sameKeyAndName":"\u0e44\u0e21\u0e48\u0e40\u0e17\u0e48\u0e32\u0e01\u0e31\u0e1a","components.Input.error.attribute.taken":"\u0e0a\u0e37\u0e48\u0e2d\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e19\u0e35\u0e49\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27","components.Input.error.contain.lowercase":"\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e40\u0e25\u0e47\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e15\u0e31\u0e27","components.Input.error.contain.number":"\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e15\u0e31\u0e27\u0e40\u0e25\u0e02","components.Input.error.contain.uppercase":"\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30\u0e15\u0e31\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e2b\u0e0d\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e15\u0e31\u0e27","components.Input.error.contentTypeName.taken":"\u0e0a\u0e37\u0e48\u0e2d\u0e19\u0e35\u0e49\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27","components.Input.error.custom-error":"{errorMessage} ","components.Input.error.password.noMatch":"\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e44\u0e21\u0e48\u0e15\u0e23\u0e07\u0e01\u0e31\u0e19","components.Input.error.validation.email":"\u0e19\u0e35\u0e48\u0e21\u0e31\u0e19\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e2d\u0e35\u0e40\u0e21\u0e25","components.Input.error.validation.json":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e15\u0e23\u0e07\u0e01\u0e31\u0e1a\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a JSON","components.Input.error.validation.max":"\u0e04\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b.","components.Input.error.validation.maxLength":"\u0e04\u0e48\u0e32\u0e21\u0e35\u0e02\u0e19\u0e32\u0e14\u0e22\u0e32\u0e27\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b","components.Input.error.validation.min":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e15\u0e48\u0e33\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b.","components.Input.error.validation.minLength":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e2a\u0e31\u0e49\u0e19\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b.","components.Input.error.validation.minSupMax":"\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32","components.Input.error.validation.regex":"\u0e04\u0e48\u0e32\u0e44\u0e21\u0e48\u0e15\u0e23\u0e07\u0e01\u0e31\u0e1a regex","components.Input.error.validation.required":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e48\u0e32\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19","components.Input.error.validation.unique":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e16\u0e39\u0e01\u0e43\u0e0a\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27","components.InputSelect.option.placeholder":"\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48","components.ListRow.empty":"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e16\u0e39\u0e01\u0e41\u0e2a\u0e14\u0e07.","components.OverlayBlocker.description":"\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07\u0e43\u0e0a\u0e49\u0e04\u0e38\u0e13\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e23\u0e35\u0e2a\u0e15\u0e32\u0e23\u0e4c\u0e17\u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c \u0e42\u0e1b\u0e23\u0e14\u0e23\u0e2d\u0e08\u0e19\u0e01\u0e27\u0e48\u0e32\u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e08\u0e30\u0e40\u0e23\u0e34\u0e48\u0e21\u0e17\u0e33\u0e07\u0e32\u0e19","components.OverlayBlocker.description.serverError":"\u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e04\u0e27\u0e23\u0e16\u0e39\u0e01\u0e23\u0e35\u0e2a\u0e15\u0e32\u0e23\u0e4c\u0e17 \u0e42\u0e1b\u0e23\u0e14\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e43\u0e19\u0e40\u0e17\u0e2d\u0e23\u0e4c\u0e21\u0e34\u0e19\u0e31\u0e25","components.OverlayBlocker.title":"\u0e01\u0e33\u0e25\u0e31\u0e07\u0e23\u0e2d\u0e01\u0e32\u0e23\u0e23\u0e35\u0e2a\u0e15\u0e32\u0e23\u0e4c\u0e17...","components.OverlayBlocker.title.serverError":"\u0e01\u0e32\u0e23\u0e23\u0e35\u0e2a\u0e15\u0e32\u0e23\u0e4c\u0e17\u0e43\u0e0a\u0e49\u0e40\u0e27\u0e25\u0e32\u0e19\u0e32\u0e19\u0e01\u0e27\u0e48\u0e32\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e44\u0e27\u0e49","components.PageFooter.select":"\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32","components.ProductionBlocker.description":"\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22\u0e40\u0e23\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e19\u0e35\u0e49\u0e43\u0e19\u0e2a\u0e20\u0e32\u0e27\u0e30\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e2d\u0e37\u0e48\u0e19","components.ProductionBlocker.header":"\u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e19\u0e35\u0e49\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e43\u0e19\u0e01\u0e32\u0e23\u0e1e\u0e31\u0e12\u0e19\u0e32\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19","components.Search.placeholder":"\u0e04\u0e49\u0e19\u0e2b\u0e32...","components.Wysiwyg.collapse":"\u0e22\u0e38\u0e1a","components.Wysiwyg.selectOptions.H1":"\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 H1","components.Wysiwyg.selectOptions.H2":"\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 H2","components.Wysiwyg.selectOptions.H3":"\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 H3","components.Wysiwyg.selectOptions.H4":"\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 H4","components.Wysiwyg.selectOptions.H5":"\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 H5","components.Wysiwyg.selectOptions.H6":"\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 H6","components.Wysiwyg.selectOptions.title":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07","components.WysiwygBottomControls.charactersIndicators":"\u0e2d\u0e31\u0e01\u0e02\u0e23\u0e30","components.WysiwygBottomControls.fullscreen":"\u0e02\u0e22\u0e32\u0e22","components.WysiwygBottomControls.uploadFiles":"\u0e25\u0e32\u0e01 & \u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e44\u0e1f\u0e25\u0e4c\u0e27\u0e32\u0e07\u0e08\u0e32\u0e01\u0e04\u0e25\u0e34\u0e1b\u0e1a\u0e2d\u0e23\u0e4c\u0e14\u0e2b\u0e23\u0e37\u0e2d {browse}","components.WysiwygBottomControls.uploadFiles.browse":"\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23","components.popUpWarning.button.cancel":"\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01","components.popUpWarning.button.confirm":"\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19","components.popUpWarning.message":"\u0e04\u0e38\u0e13\u0e41\u0e19\u0e48\u0e43\u0e08\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e25\u0e1a\u0e2a\u0e34\u0e48\u0e07\u0e19\u0e35\u0e49\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?","components.popUpWarning.title":"\u0e42\u0e1b\u0e23\u0e14\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19","content-manager.EditRelations.title":"\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e0a\u0e34\u0e07\u0e2a\u0e31\u0e21\u0e1e\u0e31\u0e19\u0e18\u0e4c","content-manager.api.id":"\u0e23\u0e2b\u0e31\u0e2a API","content-manager.components.AddFilterCTA.add":"\u0e15\u0e31\u0e27\u0e01\u0e23\u0e2d\u0e07","content-manager.components.AddFilterCTA.hide":"\u0e15\u0e31\u0e27\u0e01\u0e23\u0e2d\u0e07","content-manager.components.DraggableAttr.edit":"\u0e04\u0e25\u0e34\u0e01\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e01\u0e49\u0e44\u0e02","content-manager.components.DynamicZone.pick-compo":"\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e04\u0e2d\u0e21\u0e42\u0e1e\u0e40\u0e19\u0e19\u0e15\u0e4c","content-manager.components.DynamicZone.required":"\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e04\u0e2d\u0e21\u0e42\u0e1e\u0e40\u0e19\u0e19\u0e15\u0e4c","content-manager.components.EmptyAttributesBlock.button":"\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e2b\u0e19\u0e49\u0e32\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07","content-manager.components.EmptyAttributesBlock.description":"\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","content-manager.components.FieldItem.linkToComponentLayout":"\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e42\u0e04\u0e23\u0e07\u0e23\u0e48\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e2d\u0e21\u0e42\u0e1e\u0e40\u0e19\u0e19\u0e15\u0e4c","content-manager.components.FilterOptions.button.apply":"\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49","content-manager.components.FiltersPickWrapper.PluginHeader.actions.apply":"\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49","content-manager.components.FiltersPickWrapper.PluginHeader.actions.clearAll":"\u0e25\u0e49\u0e32\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14","content-manager.components.FiltersPickWrapper.PluginHeader.description":"\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e0a\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e23\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e48\u0e32\u0e07\u0e46","content-manager.components.FiltersPickWrapper.PluginHeader.title.filter":"\u0e15\u0e31\u0e27\u0e01\u0e23\u0e2d\u0e07","content-manager.components.FiltersPickWrapper.hide":"\u0e0b\u0e48\u0e2d\u0e19","content-manager.components.LimitSelect.itemsPerPage":"\u0e44\u0e2d\u0e40\u0e17\u0e47\u0e21\u0e15\u0e48\u0e2d\u0e40\u0e1e\u0e08","content-manager.components.NotAllowedInput.text":"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e43\u0e19\u0e01\u0e32\u0e23\u0e14\u0e39\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e19\u0e35\u0e49","content-manager.components.Search.placeholder":"\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23...","content-manager.components.SettingsViewWrapper.pluginHeader.description.edit-settings":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e27\u0e34\u0e18\u0e35\u0e17\u0e35\u0e48\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07\u0e41\u0e01\u0e49\u0e44\u0e02\u0e08\u0e30\u0e21\u0e35\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19","content-manager.components.SettingsViewWrapper.pluginHeader.description.list-settings":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e02\u0e2d\u0e07\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23","content-manager.components.SettingsViewWrapper.pluginHeader.title":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07 - {name}","content-manager.components.TableDelete.delete":"\u0e25\u0e1a\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14","content-manager.components.TableDelete.deleteSelected":"\u0e25\u0e1a\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e44\u0e27\u0e49","content-manager.components.TableEmpty.withFilters":"\u0e44\u0e21\u0e48\u0e21\u0e35 {contentType} \u0e15\u0e32\u0e21\u0e15\u0e31\u0e27\u0e01\u0e23\u0e2d\u0e07\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49 ...","content-manager.components.TableEmpty.withSearch":"\u0e44\u0e21\u0e48\u0e21\u0e35 {contentType} \u0e17\u0e35\u0e48\u0e2a\u0e2d\u0e14\u0e04\u0e25\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e04\u0e49\u0e19\u0e2b\u0e32 ({search})...","content-manager.components.TableEmpty.withoutFilter":"\u0e44\u0e21\u0e48\u0e21\u0e35 {contentType}...","content-manager.components.empty-repeatable":"\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25 \u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e02\u0e49\u0e32\u0e44\u0e1b","content-manager.components.notification.info.maximum-requirement":"\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e21\u0e32\u0e16\u0e36\u0e07\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e39\u0e07\u0e2a\u0e38\u0e14\u0e02\u0e2d\u0e07\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e41\u0e25\u0e49\u0e27","content-manager.components.notification.info.minimum-requirement":"\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e16\u0e39\u0e01\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e2b\u0e49\u0e15\u0e23\u0e07\u0e01\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e15\u0e48\u0e33\u0e2a\u0e38\u0e14","content-manager.components.reset-entry":"\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23","content-manager.components.uid.apply":"\u0e2a\u0e21\u0e31\u0e04\u0e23","content-manager.components.uid.available":"\u0e17\u0e35\u0e48\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19","content-manager.components.uid.regenerate":"\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e2b\u0e21\u0e48\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07","content-manager.components.uid.suggested":"\u0e04\u0e48\u0e32\u0e41\u0e19\u0e30\u0e19\u0e33","content-manager.components.uid.unavailable":"\u0e44\u0e21\u0e48\u0e27\u0e48\u0e32\u0e07","content-manager.containers.Edit.Link.Layout":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e42\u0e04\u0e23\u0e07\u0e23\u0e48\u0e32\u0e07","content-manager.containers.Edit.Link.Model":"\u0e41\u0e01\u0e49\u0e44\u0e02\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19","content-manager.containers.Edit.addAnItem":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e44\u0e2d\u0e40\u0e17\u0e47\u0e21...","content-manager.containers.Edit.clickToJump":"\u0e04\u0e25\u0e34\u0e01\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e02\u0e49\u0e32\u0e21\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23","content-manager.containers.Edit.delete":"\u0e25\u0e1a","content-manager.containers.Edit.editing":"\u0e01\u0e33\u0e25\u0e31\u0e07\u0e41\u0e01\u0e49\u0e44\u0e02...","content-manager.containers.Edit.pluginHeader.title.new":"\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23","content-manager.containers.Edit.reset":"\u0e23\u0e35\u0e40\u0e0b\u0e47\u0e15","content-manager.containers.Edit.returnList":"\u0e01\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23","content-manager.containers.Edit.seeDetails":"\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14","content-manager.containers.Edit.submit":"\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01","content-manager.containers.EditSettingsView.modal-form.edit-field":"\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1f\u0e34\u0e25\u0e14\u0e4c","content-manager.containers.EditView.notification.errors":"\u0e1f\u0e2d\u0e23\u0e4c\u0e21\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e1a\u0e32\u0e07\u0e2d\u0e22\u0e48\u0e32\u0e07","content-manager.containers.Home.introduction":"\u0e2b\u0e32\u0e01\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e43\u0e2b\u0e49\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e43\u0e19\u0e40\u0e21\u0e19\u0e39\u0e14\u0e49\u0e32\u0e19\u0e0b\u0e49\u0e32\u0e22 \u0e1b\u0e25\u0e31\u0e4a\u0e01\u0e2d\u0e34\u0e19\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e21\u0e35\u0e27\u0e34\u0e18\u0e35\u0e17\u0e35\u0e48\u0e40\u0e2b\u0e21\u0e32\u0e30\u0e2a\u0e21\u0e43\u0e19\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e41\u0e25\u0e30\u0e22\u0e31\u0e07\u0e04\u0e07\u0e2d\u0e22\u0e39\u0e48\u0e20\u0e32\u0e22\u0e43\u0e15\u0e49\u0e01\u0e32\u0e23\u0e1e\u0e31\u0e12\u0e19\u0e32","content-manager.containers.Home.pluginHeaderDescription":"\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e2d\u0e34\u0e19\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e40\u0e1f\u0e2a\u0e17\u0e35\u0e48\u0e17\u0e23\u0e07\u0e1e\u0e25\u0e31\u0e07\u0e41\u0e25\u0e30\u0e2a\u0e27\u0e22\u0e07\u0e32\u0e21","content-manager.containers.Home.pluginHeaderTitle":"\u0e15\u0e31\u0e27\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32","content-manager.containers.List.errorFetchRecords":"\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14","content-manager.containers.ListPage.displayedFields":"\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e41\u0e2a\u0e14\u0e07","content-manager.containers.ListSettingsView.modal-form.edit-label":"\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e25\u0e40\u0e1a\u0e25","content-manager.containers.SettingPage.add.field":"\u0e41\u0e17\u0e23\u0e01\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e2d\u0e37\u0e48\u0e19","content-manager.containers.SettingPage.add.relational-field":"\u0e41\u0e17\u0e23\u0e01\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e40\u0e0a\u0e34\u0e07\u0e2a\u0e31\u0e21\u0e1e\u0e31\u0e19\u0e18\u0e4c\u0e2d\u0e37\u0e48\u0e19","content-manager.containers.SettingPage.attributes":"\u0e1f\u0e34\u0e25\u0e14\u0e4c Attributes","content-manager.containers.SettingPage.attributes.description":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e02\u0e2d\u0e07\u0e41\u0e2d\u0e47\u0e15\u0e17\u0e23\u0e34\u0e1a\u0e34\u0e27\u0e15\u0e4c","content-manager.containers.SettingPage.editSettings.description":"\u0e25\u0e32\u0e01 & \u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e42\u0e04\u0e23\u0e07\u0e23\u0e48\u0e32\u0e07","content-manager.containers.SettingPage.editSettings.entry.title":"\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23","content-manager.containers.SettingPage.editSettings.entry.title.description":"\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e41\u0e2a\u0e14\u0e07\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","content-manager.containers.SettingPage.editSettings.title":"\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07\u0e41\u0e01\u0e49\u0e44\u0e02 (\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07)","content-manager.containers.SettingPage.layout":"\u0e42\u0e04\u0e23\u0e07\u0e23\u0e48\u0e32\u0e07","content-manager.containers.SettingPage.listSettings.description":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e2d\u0e47\u0e2d\u0e1e\u0e0a\u0e31\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e0a\u0e19\u0e34\u0e14\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19\u0e19\u0e35\u0e49","content-manager.containers.SettingPage.listSettings.title":"\u0e21\u0e38\u0e21\u0e21\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 (\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32)","content-manager.containers.SettingPage.pluginHeaderDescription":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e0a\u0e19\u0e34\u0e14\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19\u0e19\u0e35\u0e49","content-manager.containers.SettingPage.relations":"\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e40\u0e0a\u0e34\u0e07\u0e2a\u0e31\u0e21\u0e1e\u0e31\u0e19\u0e18\u0e4c","content-manager.containers.SettingPage.settings":"\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32","content-manager.containers.SettingPage.view":"\u0e14\u0e39","content-manager.containers.SettingViewModel.pluginHeader.title":"Content Manager - {name}","content-manager.containers.SettingsPage.Block.contentType.description":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e48\u0e32\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e40\u0e09\u0e1e\u0e32\u0e30","content-manager.containers.SettingsPage.Block.contentType.title":"\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19","content-manager.containers.SettingsPage.Block.generalSettings.description":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e04\u0e48\u0e32\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e0a\u0e19\u0e34\u0e14\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","content-manager.containers.SettingsPage.Block.generalSettings.title":"\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b","content-manager.containers.SettingsPage.pluginHeaderDescription":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e0a\u0e19\u0e34\u0e14\u0e41\u0e25\u0e30\u0e01\u0e25\u0e38\u0e48\u0e21\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14","content-manager.containers.SettingsView.list.subtitle":"\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e42\u0e04\u0e23\u0e07\u0e23\u0e48\u0e32\u0e07\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e0a\u0e19\u0e34\u0e14\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19\u0e41\u0e25\u0e30\u0e01\u0e25\u0e38\u0e48\u0e21\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","content-manager.containers.SettingsView.list.title":"\u0e41\u0e2a\u0e14\u0e07\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32","content-manager.emptyAttributes.button":"\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e15\u0e31\u0e27\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e0a\u0e19\u0e34\u0e14\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19","content-manager.emptyAttributes.description":"\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e41\u0e23\u0e01\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e25\u0e07\u0e43\u0e19\u0e0a\u0e19\u0e34\u0e14\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","content-manager.emptyAttributes.title":"\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1f\u0e34\u0e25\u0e14\u0e4c","content-manager.error.attribute.key.taken":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27","content-manager.error.attribute.sameKeyAndName":"\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e17\u0e48\u0e32\u0e01\u0e31\u0e1a","content-manager.error.attribute.taken":"\u0e0a\u0e37\u0e48\u0e2d\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e19\u0e35\u0e49\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27","content-manager.error.contentTypeName.taken":"\u0e0a\u0e37\u0e48\u0e2d\u0e19\u0e35\u0e49\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27","content-manager.error.model.fetch":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e14\u0e36\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e04\u0e2d\u0e19\u0e1f\u0e34\u0e01\u0e42\u0e21\u0e40\u0e14\u0e25","content-manager.error.record.create":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e23\u0e47\u0e01\u0e04\u0e2d\u0e23\u0e4c\u0e14","content-manager.error.record.delete":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e25\u0e1a\u0e40\u0e23\u0e47\u0e01\u0e04\u0e2d\u0e23\u0e4c\u0e14","content-manager.error.record.fetch":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e14\u0e36\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e23\u0e47\u0e01\u0e04\u0e2d\u0e23\u0e4c\u0e14","content-manager.error.record.update":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e15\u0e40\u0e23\u0e47\u0e01\u0e04\u0e2d\u0e23\u0e4c\u0e14","content-manager.error.records.count":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e14\u0e36\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e08\u0e33\u0e19\u0e27\u0e19\u0e19\u0e31\u0e1a\u0e40\u0e23\u0e47\u0e01\u0e04\u0e2d\u0e23\u0e4c\u0e14","content-manager.error.records.fetch":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e14\u0e36\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e23\u0e47\u0e01\u0e04\u0e2d\u0e23\u0e4c\u0e14","content-manager.error.schema.generation":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2a\u0e01\u0e35\u0e21\u0e32","content-manager.error.validation.json":"\u0e19\u0e35\u0e48\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48 JSON \u0e49","content-manager.error.validation.max":"\u0e04\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b","content-manager.error.validation.maxLength":"\u0e04\u0e48\u0e32\u0e21\u0e35\u0e02\u0e19\u0e32\u0e14\u0e22\u0e32\u0e27\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b","content-manager.error.validation.min":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e15\u0e48\u0e33\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b","content-manager.error.validation.minLength":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e2a\u0e31\u0e49\u0e19\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b","content-manager.error.validation.minSupMax":"\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32","content-manager.error.validation.regex":"\u0e04\u0e48\u0e32\u0e44\u0e21\u0e48\u0e15\u0e23\u0e07\u0e01\u0e31\u0e1a regex","content-manager.error.validation.required":"\u0e04\u0e48\u0e32\u0e17\u0e35\u0e48\u0e1b\u0e49\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35","content-manager.form.Input.bulkActions":"\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e41\u0e2d\u0e47\u0e04\u0e0a\u0e31\u0e19\u0e02\u0e19\u0e32\u0e14\u0e43\u0e2b\u0e0d\u0e48","content-manager.form.Input.defaultSort":"\u0e41\u0e2d\u0e47\u0e15\u0e17\u0e23\u0e34\u0e1a\u0e34\u0e27\u0e15\u0e4c\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19","content-manager.form.Input.description":"\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14","content-manager.form.Input.description.placeholder":"\u0e41\u0e2a\u0e14\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e43\u0e19\u0e42\u0e1b\u0e23\u0e44\u0e1f\u0e25\u0e4c","content-manager.form.Input.editable":"\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e41\u0e01\u0e49\u0e44\u0e02\u0e44\u0e14\u0e49","content-manager.form.Input.filters":"\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e15\u0e31\u0e27\u0e01\u0e23\u0e2d\u0e07","content-manager.form.Input.label":"\u0e40\u0e25\u0e40\u0e1a\u0e25","content-manager.form.Input.label.inputDescription":"\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e40\u0e25\u0e40\u0e1a\u0e25\u0e17\u0e35\u0e48\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27\u0e02\u0e2d\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07","content-manager.form.Input.pageEntries":"\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32","content-manager.form.Input.pageEntries.inputDescription":"\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e04\u0e48\u0e32\u0e19\u0e35\u0e49\u0e43\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e19\u0e34\u0e14\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19","content-manager.form.Input.placeholder":"\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07","content-manager.form.Input.placeholder.placeholder":"\u0e04\u0e48\u0e32\u0e02\u0e2d\u0e07\u0e09\u0e31\u0e19","content-manager.form.Input.search":"\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e01\u0e32\u0e23\u0e04\u0e49\u0e19\u0e2b\u0e32","content-manager.form.Input.search.field":"\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e01\u0e32\u0e23\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e1a\u0e19\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e19\u0e35\u0e49","content-manager.form.Input.sort.field":"\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e1a\u0e19\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e19\u0e35\u0e49","content-manager.form.Input.wysiwyg":"\u0e41\u0e2a\u0e14\u0e07\u0e40\u0e1b\u0e47\u0e19 WYSIWYG","content-manager.global.displayedFields":"\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e41\u0e2a\u0e14\u0e07","content-manager.groups":"\u0e01\u0e25\u0e38\u0e48\u0e21","content-manager.groups.numbered":"\u0e01\u0e25\u0e38\u0e48\u0e21 ({number})","content-manager.models":"\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19","content-manager.models.numbered":"\u0e0a\u0e19\u0e34\u0e14\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e47\u0e01\u0e0a\u0e31\u0e19 ({number})","content-manager.notification.error.displayedFields":"\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e41\u0e2a\u0e14\u0e07\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e1f\u0e34\u0e25\u0e14\u0e4c","content-manager.notification.error.relationship.fetch":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e23\u0e30\u0e2b\u0e27\u0e48\u0e32\u0e07\u0e01\u0e32\u0e23\u0e14\u0e36\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e31\u0e21\u0e1e\u0e31\u0e19\u0e18\u0e4c","content-manager.notification.info.SettingPage.disableSort":"\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e2d\u0e47\u0e15\u0e17\u0e23\u0e34\u0e1a\u0e34\u0e27\u0e15\u0e4c\u0e17\u0e35\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e07\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15","content-manager.notification.info.minimumFields":"\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e1f\u0e34\u0e25\u0e14\u0e4c","content-manager.notification.upload.error":"\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e02\u0e13\u0e30\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e1f\u0e25\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","content-manager.pageNotFound":"\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e2b\u0e19\u0e49\u0e32","content-manager.permissions.not-allowed.create":"\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23","content-manager.permissions.not-allowed.update":"\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e14\u0e39\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e19\u0e35\u0e49","content-manager.plugin.description.long":"\u0e27\u0e34\u0e18\u0e35\u0e17\u0e35\u0e48\u0e23\u0e27\u0e14\u0e40\u0e23\u0e47\u0e27\u0e43\u0e19\u0e01\u0e32\u0e23\u0e14\u0e39\u0e41\u0e01\u0e49\u0e44\u0e02\u0e41\u0e25\u0e30\u0e25\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e43\u0e19\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","content-manager.plugin.description.short":"\u0e27\u0e34\u0e18\u0e35\u0e17\u0e35\u0e48\u0e23\u0e27\u0e14\u0e40\u0e23\u0e47\u0e27\u0e43\u0e19\u0e01\u0e32\u0e23\u0e14\u0e39\u0e41\u0e01\u0e49\u0e44\u0e02\u0e41\u0e25\u0e30\u0e25\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e43\u0e19\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","content-manager.popUpWarning.bodyMessage.contentType.delete":"\u0e04\u0e38\u0e13\u0e41\u0e19\u0e48\u0e43\u0e08\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e25\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u0e49\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?","content-manager.popUpWarning.bodyMessage.contentType.delete.all":"\u0e04\u0e38\u0e13\u0e41\u0e19\u0e48\u0e43\u0e08\u0e27\u0e48\u0e32\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e25\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e40\u0e2b\u0e25\u0e48\u0e32\u0e19\u0e35\u0e49\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?","content-manager.popUpWarning.warning.cancelAllSettings":"\u0e04\u0e38\u0e13\u0e41\u0e19\u0e48\u0e43\u0e08\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48?","content-manager.popUpWarning.warning.updateAllSettings":"\u0e2a\u0e34\u0e48\u0e07\u0e19\u0e35\u0e49\u0e08\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e04\u0e48\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13","content-manager.success.record.delete":"\u0e25\u0e1a\u0e41\u0e25\u0e49\u0e27","content-manager.success.record.save":"\u0e16\u0e39\u0e01\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01","form.button.continue":"\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d","form.button.done":"\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27","form.button.finish":"\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e34\u0e49\u0e19","global.prompt.unsaved":"\u0e04\u0e38\u0e13\u0e41\u0e19\u0e48\u0e43\u0e08\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48? \u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e08\u0e30\u0e2b\u0e32\u0e22\u0e44\u0e1b","notification.contentType.relations.conflict":"\u0e0a\u0e19\u0e34\u0e14\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e02\u0e31\u0e14\u0e41\u0e22\u0e49\u0e07\u0e01\u0e31\u0e19","notification.error":"\u0e40\u0e01\u0e34\u0e14\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14","notification.error.layout":"\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e14\u0e36\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e42\u0e04\u0e23\u0e07\u0e23\u0e48\u0e32\u0e07","notification.form.error.fields":"\u0e1f\u0e2d\u0e23\u0e4c\u0e21\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e1c\u0e34\u0e14\u0e1e\u0e25\u0e32\u0e14\u0e1a\u0e32\u0e07\u0e2d\u0e22\u0e48\u0e32\u0e07","notification.form.success.fields":"\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e16\u0e39\u0e01\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01","notification.link-copied":"\u0e04\u0e31\u0e14\u0e25\u0e2d\u0e01\u0e25\u0e34\u0e07\u0e01\u0e4c\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e04\u0e25\u0e34\u0e1b\u0e1a\u0e2d\u0e23\u0e4c\u0e14","notification.success.delete":"\u0e44\u0e2d\u0e40\u0e17\u0e47\u0e21\u0e16\u0e39\u0e01\u0e25\u0e1a\u0e41\u0e25\u0e49\u0e27","notification.success.saved":"\u0e16\u0e39\u0e01\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01","request.error.model.unknown":"\u0e42\u0e21\u0e40\u0e14\u0e25\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48"}')}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[395],{99154:e=>{e.exports=JSON.parse('{"Analytics":"Analizler","Auth.form.button.forgot-password":"E-posta g\xf6nder","Auth.form.button.login":"Giri\u015f","Auth.form.button.register":"Ba\u015flamaya haz\u0131r","Auth.form.button.reset-password":"\u015eifre de\u011fi\u015ftir","Auth.form.email.label":"E-posta","Auth.form.email.placeholder":"kai@doe.com","Auth.form.error.blocked":"Hesab\u0131n\u0131z y\xf6netici taraf\u0131ndan engellendi.","Auth.form.error.code.provide":"Ge\xe7ersiz sa\u011flanm\u0131\u015f kod.","Auth.form.error.confirmed":"Tan\u0131mlad\u0131\u011f\u0131n\u0131z e-posta onaylanmad\u0131.","Auth.form.error.email.invalid":"E-postas\u0131 ge\xe7ersiz.","Auth.form.error.email.provide":"L\xfctfen kullan\u0131c\u0131 ad\u0131n\u0131z\u0131 veya e-postan\u0131z\u0131 belirtin.","Auth.form.error.email.taken":"E-posta zaten al\u0131nm\u0131\u015f","Auth.form.error.invalid":"Kimlik veya \u015fifre ge\xe7ersiz.","Auth.form.error.params.provide":"Ge\xe7ersiz sa\u011flanm\u0131\u015f kod parametresi.","Auth.form.error.password.format":"\u015eifreniz `$` sembol\xfcn\xfc \xfc\xe7 kezden fazla i\xe7eremez.","Auth.form.error.password.local":"Bu kullan\u0131c\u0131 hi\xe7bir bir \u015fifre belirlemedi; hesap olu\u015fturma s\u0131ras\u0131nda kullan\u0131lan sa\u011flay\u0131c\u0131 arac\u0131l\u0131\u011f\u0131yla l\xfctfen giri\u015f yap\u0131n\u0131z..","Auth.form.error.password.matching":"Parolalar uyu\u015fmuyor.","Auth.form.error.password.provide":"L\xfctfen \u015fifrenizi girin.","Auth.form.error.ratelimit":"\xc7ok fazla deneme var. L\xfctfen bir dakika sonra tekrar deneyin.","Auth.form.error.user.not-exist":"Bu e-posta bulunmamaktad\u0131r..","Auth.form.error.username.taken":"Kullan\u0131c\u0131 ad\u0131 zaten al\u0131nm\u0131\u015f","Auth.form.forgot-password.email.label":"E-postan\u0131z\u0131 giriniz","Auth.form.forgot-password.email.label.success":"E-posta ba\u015far\u0131yla g\xf6nderildi, ","Auth.form.password.label":"Parola","Auth.form.register.news.label":"Beni gelecekteki \xf6zellikler ve geli\u015ftirmeler hakk\u0131nda bilgilendir (bunu se\xe7erek {terms} ve {policy}\'leri kabul etmi\u015f say\u0131l\u0131rs\u0131n\u0131z)","Auth.form.rememberMe.label":"Beni hat\u0131rla","Auth.form.username.label":"Kullan\u0131c\u0131 Ad\u0131","Auth.form.username.placeholder":"Kai Doe","Auth.link.forgot-password":"Parolan\u0131z\u0131 m\u0131 unuttunuz ?","Auth.link.ready":"Zaten kay\u0131tl\u0131 m\u0131s\u0131n\u0131z?","Auth.privacy-policy-agreement.policy":"gizlilik s\xf6zle\u015fmesi","Auth.privacy-policy-agreement.terms":"ko\u015fullar","Content Manager":"\u0130\xe7erik Y\xf6netimi","Email":"E-posta","Files Upload":"Dosya y\xfckleme","HomePage.helmet.title":"Anasayfa","HomePage.roadmap":"Yol haritam\u0131z\u0131 g\xf6r\xfcnt\xfcleyin","HomePage.welcome.congrats":"Tebrikler!","HomePage.welcome.congrats.content":"\u0130lk y\xf6netici olarak giri\u015f yapt\u0131n\u0131z. Strapi\'nin g\xfc\xe7l\xfc \xf6zelliklerini ke\u015ffetmek i\xe7in,","HomePage.welcome.congrats.content.bold":"ilk \u0130\xe7erik-Tipi\'ni yaratman\u0131z\u0131 \xf6neriyoruz.","New entry":"Yeni kay\u0131t","Password":"\u015eifre","Provider":"Sa\u011flay\u0131c\u0131","ResetPasswordToken":"\u015eifre s\u0131f\u0131rlama anahtar\u0131","Role":"Rol","Settings.error":"Hata","Settings.global":"Genel Ayarlar","Settings.webhooks.create":"Webhook olu\u015ftur","Settings.webhooks.create.header":"Yeni ba\u015fl\u0131k yarat","Settings.webhooks.created":"Webhook olu\u015fturuldu","Settings.webhooks.disabled":"Pasif","Settings.webhooks.enabled":"Aktif","Settings.webhooks.events.create":"Olu\u015ftur","Settings.webhooks.form.events":"Etkinlikler","Settings.webhooks.form.headers":"Ba\u015fl\u0131klar","Settings.webhooks.form.name":"Ad","Settings.webhooks.form.url":"Url","Settings.webhooks.key":"Anahtar","Settings.webhooks.list.button.add":"Yeni webhook ekle","Settings.webhooks.list.description":"POST de\u011fi\u015fiklikleri bildirimi al.","Settings.webhooks.list.empty.description":"\u0130lkini bu listeye ekleyin.","Settings.webhooks.list.empty.link":"D\xf6k\xfcmantasyonumuzu g\xf6r\xfcnt\xfcleyin","Settings.webhooks.list.empty.title":"Hen\xfcz bir webhook yok","Settings.webhooks.singular":"webhook","Settings.webhooks.title":"Webhooklar","Settings.webhooks.trigger":"Tetikleyici","Settings.webhooks.trigger.cancel":"Tetikleyiciyi iptal et","Settings.webhooks.trigger.pending":"Bekleniyor...","Settings.webhooks.trigger.save":"L\xfctfen tetikleyiciyi kaydedin","Settings.webhooks.trigger.success":"Ba\u015far\u0131l\u0131!","Settings.webhooks.trigger.success.label":"Tetikleyici ba\u015far\u0131l\u0131","Settings.webhooks.trigger.test":"Test-tetikleyici","Settings.webhooks.trigger.title":"Tetikleyiciden \xf6nce kaydet","Settings.webhooks.value":"De\u011fer","Username":"Kullan\u0131c\u0131 Ad\u0131","Users":"Kullan\u0131c\u0131lar","Users & Permissions":"Kullan\u0131c\u0131lar & \u0130zinler","app.components.BlockLink.code":"Kod \xf6rnekleri","app.components.Button.cancel":"\u0130ptal","app.components.Button.reset":"S\u0131f\u0131rla","app.components.Button.save":"Kaydet","app.components.ComingSoonPage.comingSoon":"\xc7ok Yak\u0131nda","app.components.DownloadInfo.download":"\u0130ndirme devam ediyor...","app.components.DownloadInfo.text":"Bu birka\xe7 dakika s\xfcrebilir. Sabr\u0131n\u0131z i\xe7in te\u015fekk\xfcrler.","app.components.EmptyAttributes.title":"Alan hen\xfcz yok","app.components.HomePage.button.blog":"BLOG SAYFASINDA DAHA FAZLASINI G\xd6R\xdcN","app.components.HomePage.community":"Toplulu\u011fumuza ula\u015f\u0131n","app.components.HomePage.community.content":"Farkl\u0131 kanallarda tak\u0131m \xfcyeleri, katk\u0131da bulunanlar ve geli\u015ftiricilere ula\u015f\u0131n.","app.components.HomePage.welcome":"Panele ho\u015fgeldiniz.","app.components.HomePage.welcome.again":"Ho\u015fgeldiniz ","app.components.HomePage.welcomeBlock.content":"Sizi topluluk \xfcyelerinden biri olarak g\xf6rmekten mutluyuz. S\xfcrekli olarak geri bildirim alabilmemiz i\xe7in bize do\u011frudan mesaj g\xf6ndermeye \xe7ekinmeyin ","app.components.HomePage.welcomeBlock.content.again":"Projenizde ilerleme kaydedece\u011finizi umuyoruz... Strapi ile ilgili en yeni yenilikleri okumaktan \xe7ekinmeyin. \xdcr\xfcn\xfc geri bildirimlerinize g\xf6re geli\u015ftirmek i\xe7in elimizden geleni yap\u0131yoruz.","app.components.HomePage.welcomeBlock.content.issues":"sorunlar","app.components.HomePage.welcomeBlock.content.raise":" yada y\xfckselt ","app.components.ImgPreview.hint":"Dosyan\u0131z\u0131 bu alana s\xfcr\xfckleyip b\u0131rak\u0131n ya da bir dosya y\xfcklemek i\xe7in {browse}","app.components.ImgPreview.hint.browse":"g\xf6zat","app.components.InputFile.newFile":"Yeni dosya ekle","app.components.InputFileDetails.open":"Yeni sekmede a\xe7","app.components.InputFileDetails.originalName":"Orjinal isim:","app.components.InputFileDetails.remove":"Bu dosyay\u0131 sil","app.components.InputFileDetails.size":"Boyut:","app.components.InstallPluginPage.Download.description":"Eklentiyi indirmek ve y\xfcklemek bir ka\xe7 saniye s\xfcrebilir.","app.components.InstallPluginPage.Download.title":"\u0130ndiriliyor...","app.components.InstallPluginPage.description":"Uygulaman\u0131z\u0131 rahatl\u0131kla geni\u015fletin.","app.components.LeftMenuFooter.documentation":"D\xf6k\xfcmantasyon","app.components.LeftMenuFooter.help":"Yard\u0131m","app.components.LeftMenuFooter.poweredBy":"Gururla sunar ","app.components.LeftMenuLinkContainer.configuration":"Yap\u0131land\u0131rma","app.components.LeftMenuLinkContainer.general":"Genel","app.components.LeftMenuLinkContainer.installNewPlugin":"Ma\u011faza","app.components.LeftMenuLinkContainer.listPlugins":"Eklentiler","app.components.LeftMenuLinkContainer.noPluginsInstalled":"Y\xfcklenen eklenti bulunmamaktad\u0131r.","app.components.LeftMenuLinkContainer.plugins":"Eklentiler","app.components.LeftMenuLinkContainer.settings":"Ayarlar","app.components.ListPluginsPage.description":"Projedeki y\xfcklenen eklentiler.","app.components.ListPluginsPage.helmet.title":"Eklenti Listesi","app.components.ListPluginsPage.title":"Etklentiler","app.components.Logout.logout":"\xc7\u0131k\u0131\u015f Yap","app.components.Logout.profile":"Profil","app.components.NotFoundPage.back":"Anasayfaya geri d\xf6n","app.components.NotFoundPage.description":"Bulunamad\u0131","app.components.Official":"Resmi","app.components.Onboarding.label.completed":"% tamamland\u0131","app.components.Onboarding.title":"Ba\u015flang\u0131\xe7 Videolaro","app.components.PluginCard.Button.label.download":"\u0130ndir","app.components.PluginCard.Button.label.install":"Zaten y\xfcklenmi\u015f","app.components.PluginCard.PopUpWarning.install.impossible.autoReload.needed":"autoReload \xf6zelli\u011fi aktif edilmeli. L\xfctfen uygulamay\u0131 `yarn develop` ile ba\u015flat\u0131n.","app.components.PluginCard.PopUpWarning.install.impossible.confirm":"Anlad\u0131m!","app.components.PluginCard.PopUpWarning.install.impossible.environment":"G\xfcvenlik nedeniyle bir eklenti yaln\u0131zca geli\u015ftirme ortam\u0131nda indirilebilir.","app.components.PluginCard.PopUpWarning.install.impossible.title":"\u0130ndirme imkans\u0131z","app.components.PluginCard.compatible":"Uygulaman\u0131zla uyumlu","app.components.PluginCard.compatibleCommunity":"Toplulukla uyumlu","app.components.PluginCard.more-details":"Daha fazla detay","app.components.listPlugins.button":"Yeni eklenti ekle","app.components.listPlugins.title.none":"Y\xfcklenen eklenti bulunmamaktad\u0131r.","app.components.listPluginsPage.deletePlugin.error":"Eklenti kald\u0131r\u0131l\u0131rken bir hata olu\u015ftu","app.containers.App.notification.error.init":"API iste\u011fi s\u0131ras\u0131nda bir hata olu\u015ftu","app.links.configure-view":"Ekran\u0131 d\xfczenle","app.utils.SelectOption.defaultMessage":" ","app.utils.defaultMessage":" ","app.utils.delete":"Sil","app.utils.placeholder.defaultMessage":" ","component.Input.error.validation.integer":"De\u011fer say\u0131 olmal\u0131","components.AutoReloadBlocker.description":"Strapi\'yi a\u015fa\u011f\u0131daki komutlardan biri ile \xe7al\u0131\u015ft\u0131r\u0131n:","components.AutoReloadBlocker.header":"Bu eklenti i\xe7in tekrar y\xfckleme \xf6zelli\u011fi gerekiyor.","components.ErrorBoundary.title":"Bir \u015feyler yanl\u0131\u015f gitti...","components.Input.error.attribute.key.taken":"Bu de\u011fer zaten var.","components.Input.error.attribute.sameKeyAndName":"E\u015fit olamaz","components.Input.error.attribute.taken":"Bu alan ismi zaten var.","components.Input.error.contentTypeName.taken":"Bu isim zaten var.","components.Input.error.custom-error":"{errorMessage} ","components.Input.error.password.noMatch":"\u015eifreler uyu\u015fmuyor","components.Input.error.validation.email":"Ge\xe7ersiz e-posta adresi.","components.Input.error.validation.json":"Bu JSON bi\xe7imi ile e\u015fle\u015fmiyor","components.Input.error.validation.max":"De\u011fer \xe7ok y\xfcksek.","components.Input.error.validation.maxLength":"De\u011fer \xe7ok uzun.","components.Input.error.validation.min":"De\u011fer \xe7ok az.","components.Input.error.validation.minLength":"De\u011fer \xe7ok k\u0131sa.","components.Input.error.validation.minSupMax":"\xdcst\xfc olamaz","components.Input.error.validation.regex":"Regex ile e\u015fle\u015fmiyor.","components.Input.error.validation.required":"Zorunlu aland\u0131r.","components.Input.error.validation.unique":"De\u011fer zaten kullan\u0131lm\u0131\u015f.","components.InputSelect.option.placeholder":"Buradan se\xe7in","components.ListRow.empty":"G\xf6sterilecek veri bulunmamaktad\u0131r.","components.OverlayBlocker.description":"Sunucunun yeniden ba\u015flat\u0131lmas\u0131 gereken bir \xf6zellik kullan\u0131yorsunuz. L\xfctfen sunucu \xe7al\u0131\u015fana kadar bekleyin.","components.OverlayBlocker.description.serverError":"Sunucu yeniden ba\u015flat\u0131lmal\u0131, l\xfctfen terminal \xfczerinden loglar\u0131 kontrol edin.","components.OverlayBlocker.title":"Yeniden ba\u015flat\u0131lmay\u0131 bekliyor...","components.OverlayBlocker.title.serverError":"Yeniden ba\u015flatma beklendi\u011finden uzun s\xfcr\xfcyor","components.PageFooter.select":"sayfa ba\u015f\u0131na kay\u0131t","components.ProductionBlocker.description":"G\xfcvenlik nedeniyle, bu eklentiyi di\u011fer ortamlarda devre d\u0131\u015f\u0131 b\u0131rakmam\u0131z gerekir.","components.ProductionBlocker.header":"Bu eklenti yaln\u0131zca geli\u015ftirme a\u015famas\u0131nda mevcuttur.","components.Wysiwyg.collapse":"Daralt","components.Wysiwyg.selectOptions.H1":"H1 ba\u015fl\u0131k","components.Wysiwyg.selectOptions.H2":"H2 ba\u015fl\u0131k","components.Wysiwyg.selectOptions.H3":"H3 ba\u015fl\u0131k","components.Wysiwyg.selectOptions.H4":"H4 ba\u015fl\u0131k","components.Wysiwyg.selectOptions.H5":"H5 ba\u015fl\u0131k","components.Wysiwyg.selectOptions.H6":"H6 ba\u015fl\u0131k","components.Wysiwyg.selectOptions.title":"Ba\u015fl\u0131k ekle","components.WysiwygBottomControls.charactersIndicators":"karakter","components.WysiwygBottomControls.fullscreen":"Geni\u015flet","components.WysiwygBottomControls.uploadFiles":"Dosyan\u0131z\u0131 bu alana s\xfcr\xfckleyip b\u0131rak\u0131n ya da bir dosya y\xfcklemek i\xe7in {browse}","components.WysiwygBottomControls.uploadFiles.browse":"Bunlar\u0131 se\xe7","components.popUpWarning.message":"Bunu silmek istedi\u011finizden emin misiniz?","components.popUpWarning.title":"L\xfctfen onaylay\u0131n","content-manager.EditRelations.title":"\u0130li\u015fkili Data","content-manager.components.AddFilterCTA.add":"Filtreler","content-manager.components.AddFilterCTA.hide":"Filtreler","content-manager.components.DraggableAttr.edit":"D\xfczenlemek i\xe7in t\u0131klay\u0131n","content-manager.components.EmptyAttributesBlock.button":"Ayarlar sayfas\u0131na git","content-manager.components.EmptyAttributesBlock.description":"Ayarlar\u0131n\u0131z\u0131 de\u011fi\u015ftirebilirsiniz","content-manager.components.FilterOptions.button.apply":"Uygula","content-manager.components.FiltersPickWrapper.PluginHeader.actions.apply":"Uygula","content-manager.components.FiltersPickWrapper.PluginHeader.actions.clearAll":"Hepsini temizle","content-manager.components.FiltersPickWrapper.PluginHeader.description":"Filtrelemek i\xe7in uygulanacak \u015fartlar\u0131 ayarlay\u0131n","content-manager.components.FiltersPickWrapper.PluginHeader.title.filter":"Filtreler","content-manager.components.FiltersPickWrapper.hide":"Gizle","content-manager.components.LimitSelect.itemsPerPage":"Sayfa ba\u015f\u0131","content-manager.components.Search.placeholder":"Kay\u0131t aramak i\xe7in...","content-manager.components.TableDelete.delete":"Hepsini sil","content-manager.components.TableDelete.deleteSelected":"Silme se\xe7ildi","content-manager.components.TableEmpty.withFilters":"Uygulanan filtrelerle {contentType} yoktur...","content-manager.components.TableEmpty.withSearch":"Aramaya kar\u015f\u0131l\u0131k gelen {contentType} yoktur ({search})...","content-manager.components.TableEmpty.withoutFilter":"{contentType} yoktur...","content-manager.containers.Edit.addAnItem":"Bir \xf6\u011fe ekle...","content-manager.containers.Edit.clickToJump":"Kay\u0131ta atlamak i\xe7in t\u0131klay\u0131n","content-manager.containers.Edit.delete":"Sil","content-manager.containers.Edit.editing":"D\xfczenleniyor...","content-manager.containers.Edit.reset":"Reset","content-manager.containers.Edit.returnList":"Listeye d\xf6n","content-manager.containers.Edit.seeDetails":"Detaylar","content-manager.containers.Edit.submit":"Kaydet","content-manager.containers.Home.introduction":"Giri\u015flerinizi d\xfczenlemek i\xe7in soldaki men\xfcdeki ilgili ba\u011flant\u0131ya gidin. Bu eklentinin ayarlar\u0131 d\xfczenlemek i\xe7in uygun bir yol bulunmamaktad\u0131r ve halen aktif geli\u015ftirme a\u015famas\u0131ndad\u0131r.","content-manager.containers.Home.pluginHeaderDescription":"G\xfc\xe7l\xfc ve g\xfczel bir aray\xfcz arac\u0131l\u0131\u011f\u0131yla giri\u015flerinizi y\xf6netin.","content-manager.containers.Home.pluginHeaderTitle":"\u0130\xe7erik Y\xf6netimi","content-manager.containers.List.errorFetchRecords":"Hata","content-manager.containers.ListPage.displayedFields":"G\xf6r\xfcnt\xfclenen Alanlar","content-manager.containers.SettingPage.attributes":"Nitelik alanlar\u0131","content-manager.containers.SettingPage.attributes.description":"Niteliklerin s\u0131ras\u0131n\u0131 tan\u0131mlay\u0131n","content-manager.containers.SettingPage.editSettings.description":"Yerle\u015fimi olu\u015fturmak i\xe7in alanlar\u0131 s\xfcr\xfckleyip b\u0131rak\u0131n","content-manager.containers.SettingPage.editSettings.title":"D\xfczenle (ayarlar)","content-manager.containers.SettingPage.listSettings.title":"Liste (ayarlar)","content-manager.containers.SettingPage.relations":"\u0130li\u015fkisel alanlar","content-manager.containers.SettingsPage.Block.contentType.description":"Belirli ayarlar\u0131 yap\u0131land\u0131r\u0131n","content-manager.containers.SettingsPage.Block.generalSettings.title":"Genel","content-manager.emptyAttributes.title":"Hen\xfcz bir alan yok","content-manager.error.attribute.key.taken":"Bu de\u011fer zaten var.","content-manager.error.attribute.sameKeyAndName":"E\u015fit olamaz","content-manager.error.attribute.taken":"Bu alan ismi zaten var.","content-manager.error.contentTypeName.taken":"Bu alan ismi zaten var.","content-manager.error.model.fetch":"Modellerin yap\u0131land\u0131rmas\u0131 getirilirken bir hata olu\u015ftu.","content-manager.error.record.create":"Kay\u0131t olu\u015fturulurken bir hata olu\u015ftu.","content-manager.error.record.delete":"Kay\u0131t silinirken bir hata olu\u015ftu.","content-manager.error.record.fetch":"Kay\u0131t getirilirken bir hata olu\u015ftu.","content-manager.error.record.update":"Kay\u0131t g\xfcncelleme s\u0131ras\u0131nda bir hata olu\u015ftu.","content-manager.error.records.count":"Say\u0131m kay\u0131tlar\u0131 getirilinceye kadar","content-manager.error.records.fetch":"Kay\u0131tlar getirilirken bir hata olu\u015ftu.","content-manager.error.schema.generation":"\u015eema olu\u015fturma s\u0131ras\u0131nda bir hata olu\u015ftu.","content-manager.error.validation.json":"Bu JSON bi\xe7imi ile e\u015fle\u015fmiyor","content-manager.error.validation.max":"De\u011fer \xe7ok y\xfcksek.","content-manager.error.validation.maxLength":"De\u011fer \xe7ok uzun.","content-manager.error.validation.min":"De\u011fer \xe7ok az.","content-manager.error.validation.minLength":"De\u011fer \xe7ok k\u0131sa.","content-manager.error.validation.minSupMax":"\xdcst\xfc olamaz","content-manager.error.validation.regex":"Regex ile e\u015fle\u015fmiyor.","content-manager.error.validation.required":"Zorunlu aland\u0131r.","content-manager.form.Input.bulkActions":"Toplu i\u015flemleri etkinle\u015ftir","content-manager.form.Input.defaultSort":"Varsay\u0131lan s\u0131ralama \xf6zelli\u011fi","content-manager.form.Input.description":"A\xe7\u0131klama","content-manager.form.Input.description.placeholder":"Profildeki g\xf6r\xfcnen ad","content-manager.form.Input.editable":"D\xfczenlenebilir alan","content-manager.form.Input.filters":"Filtreleri etkinle\u015ftir","content-manager.form.Input.label":"Etiket","content-manager.form.Input.label.inputDescription":"Bu de\u011fer, tablonun ba\u015f\u0131nda g\xf6r\xfcnt\xfclenen etiketi ge\xe7ersiz k\u0131lar","content-manager.form.Input.pageEntries":"Sayfa ba\u015f\u0131na kay\u0131tlar","content-manager.form.Input.placeholder":"Placeholder","content-manager.form.Input.placeholder.placeholder":"M\xfcthi\u015f de\u011ferim","content-manager.form.Input.search":"Aramay\u0131 etkinle\u015ftir","content-manager.form.Input.search.field":"Bu alanda aramay\u0131 etkinle\u015ftir","content-manager.form.Input.sort.field":"Bu alana g\xf6re s\u0131ralamay\u0131 etkinle\u015ftir","content-manager.notification.error.displayedFields":"En az bir g\xf6r\xfcnt\xfclenen alana ihtiyac\u0131n\u0131z var","content-manager.notification.error.relationship.fetch":"\u0130li\u015fki getirme s\u0131ras\u0131nda bir hata olu\u015ftu.","content-manager.notification.info.SettingPage.disableSort":"S\u0131ralamaya izin verilen tek bir \xf6zelli\u011fe sahip olman\u0131z gerekir","content-manager.pageNotFound":"Sayfa bulunamad\u0131","content-manager.plugin.description.long":"Veritaban\u0131ndaki verileri g\xf6rmek, d\xfczenlemek ve silmek i\xe7in h\u0131zl\u0131 bir yol.","content-manager.plugin.description.short":"Veritaban\u0131ndaki verileri g\xf6rmek, d\xfczenlemek ve silmek i\xe7in h\u0131zl\u0131 bir yol.","content-manager.popUpWarning.bodyMessage.contentType.delete":"Bu kayd\u0131 silmek istedi\u011finizden emin misiniz?","content-manager.popUpWarning.bodyMessage.contentType.delete.all":"Bu kay\u0131tlar\u0131 silmek istedi\u011finizden emin misiniz?","content-manager.popUpWarning.warning.cancelAllSettings":"De\u011fi\u015fikliklerinizi iptal etmek istedi\u011finizden emin misiniz?","content-manager.popUpWarning.warning.updateAllSettings":"Bu b\xfct\xfcn ayarlar\u0131n\u0131z\u0131 de\u011fi\u015ftirecektir","content-manager.success.record.delete":"Silindi","content-manager.success.record.save":"Kaydedildi","form.button.done":"Tamam","form.button.finish":"Bitir","global.prompt.unsaved":"Bu sayfadan ayr\u0131lmak istedi\u011finize emin misiniz? T\xfcm d\xfczenlemeleriniz kaybolacak","notification.error":"Bir hata olu\u015ftu","notification.error.layout":"D\xfczen al\u0131namad\u0131","notification.form.error.fields":"Form birden fazla hata i\xe7eriyor","notification.form.success.fields":"De\u011fi\u015fiklikler kaydedildi","request.error.model.unknown":"Bu model bulunmamaktad\u0131r."}')}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[7403],{2987:e=>{e.exports=JSON.parse('{"Analytics":"\u0410\u043d\u0430\u043b\u0456\u0442\u0438\u043a\u0430","Auth.form.button.forgot-password":"\u0412\u0456\u0434\u043f\u0440\u0430\u0432\u0438\u0442\u0438 \u043b\u0438\u0441\u0442\u0430","Auth.form.button.login":"\u0423\u0432\u0456\u0439\u0442\u0438","Auth.form.button.register":"\u0413\u043e\u0442\u043e\u0432\u0438\u0439 \u043f\u043e\u0447\u0430\u0442\u0438","Auth.form.button.reset-password":"\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u043f\u0430\u0440\u043e\u043b\u044c","Auth.form.error.blocked":"\u0412\u0430\u0448 \u0430\u043a\u043a\u0430\u0443\u043d\u0442 \u0431\u0443\u0432 \u0437\u0430\u0431\u043b\u043e\u043a\u043e\u0432\u0430\u043d\u0438\u0439 \u0430\u0434\u043c\u0456\u043d\u0456\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u043c.","Auth.form.error.code.provide":"\u041d\u0430\u0434\u0430\u043d\u043e \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0438\u0439 \u043a\u043e\u0434.","Auth.form.error.confirmed":"\u0412\u0430\u0448 email \u043d\u0435 \u043f\u0456\u0434\u0442\u0432\u0435\u0440\u0434\u0436\u0435\u043d\u0438\u0439.","Auth.form.error.email.invalid":"\u0426\u0435 \u043d\u0435 \u0441\u0445\u043e\u0436\u0435 \u043d\u0430 email.","Auth.form.error.email.provide":"\u0412\u043a\u0430\u0436\u0456\u0442\u044c \u0441\u0432\u043e\u0454 \u0456\u043c\'\u044f \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u0430\u0431\u043e email.","Auth.form.error.email.taken":"\u0426\u0435\u0439 email \u0432\u0436\u0435 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454\u0442\u044c\u0441\u044f.","Auth.form.error.invalid":"\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0438\u0439 \u043b\u043e\u0433\u0456\u043d \u0430\u0431\u043e \u043f\u0430\u0440\u043e\u043b\u044c.","Auth.form.error.params.provide":"\u041d\u0430\u0434\u0430\u043d\u043e \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0456 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438.","Auth.form.error.password.format":"\u0423 \u043f\u0430\u0440\u043e\u043b\u0456 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0431\u0456\u043b\u044c\u0448\u0435 \u043d\u0456\u0436 \u0442\u0440\u0438 \u0441\u0438\u043c\u0432\u043e\u043b\u0438 `$`","Auth.form.error.password.local":"\u0426\u0435\u0439 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u044c \u043d\u0456\u043a\u043e\u043b\u0438 \u043d\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u044e\u0432\u0430\u0432 \u043f\u0430\u0440\u043e\u043b\u044c, \u0431\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430 \u0443\u0432\u0456\u0439\u0434\u0456\u0442\u044c \u0447\u0435\u0440\u0435\u0437 \u043f\u0440\u043e\u0432\u0430\u0439\u0434\u0435\u0440, \u044f\u043a\u0438\u0439 \u0432\u0438 \u0432\u0456\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u043b\u0438 \u043f\u0456\u0434 \u0447\u0430\u0441 \u0440\u0435\u0454\u0441\u0442\u0440\u0430\u0446\u0456\u0457.","Auth.form.error.password.matching":"\u041f\u0430\u0440\u043e\u043b\u0456 \u043d\u0435 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0430\u044e\u0442\u044c.","Auth.form.error.password.provide":"\u0412\u043a\u0430\u0436\u0456\u0442\u044c \u0441\u0432\u0456\u0439 \u043f\u0430\u0440\u043e\u043b\u044c, \u0431\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430.","Auth.form.error.ratelimit":"\u0417\u0430\u0431\u0430\u0433\u0430\u0442\u043e \u0441\u043f\u0440\u043e\u0431, \u0431\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0441\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0437\u043d\u043e\u0432\u0443 \u0447\u0435\u0440\u0435\u0437 \u0445\u0432\u0438\u043b\u0438\u043d\u043a\u0443.","Auth.form.error.user.not-exist":"\u0426\u044c\u043e\u0433\u043e email \u043d\u0435 \u0456\u0441\u043d\u0443\u0454.","Auth.form.error.username.taken":"\u0426\u0435 \u0456\u043c\'\u044f \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u0432\u0436\u0435 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454\u0442\u044c\u0441\u044f.","Auth.form.forgot-password.email.label":"\u0412\u043a\u0430\u0436\u0456\u0442\u044c \u0441\u0432\u0456\u0439 email","Auth.form.forgot-password.email.label.success":"\u041c\u0438 \u043d\u0430\u0434\u0456\u0441\u043b\u0430\u043b\u0438 \u0432\u0430\u043c \u043b\u0438\u0441\u0442\u0430 \u0434\u043e","Auth.form.register.news.label":"\u0422\u0440\u0438\u043c\u0430\u0439\u0442\u0435 \u043c\u0435\u043d\u0435 \u0432 \u043a\u0443\u0440\u0441\u0456 \u043d\u043e\u0432\u0438\u0445 \u043c\u043e\u0436\u043b\u0438\u0432\u043e\u0441\u0442\u0435\u0439 \u0442\u0430 \u043c\u0430\u0439\u0431\u0443\u0442\u043d\u0456\u0445 \u0432\u0434\u043e\u0441\u043a\u043e\u043d\u0430\u043b\u0435\u043d\u044c (\u0442\u0438\u043c \u0441\u0430\u043c\u0438\u043c \u0432\u0438 \u043f\u0440\u0438\u0439\u043c\u0430\u0454\u0442\u0435 {terms} \u0442\u0430 {policy})","Auth.link.forgot-password":"\u0417\u0430\u0431\u0443\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c?","Auth.link.ready":"\u0413\u043e\u0442\u043e\u0432\u0456 \u0443\u0432\u0456\u0439\u0442\u0438?","Auth.privacy-policy-agreement.policy":"\u043f\u043e\u043b\u0456\u0442\u0438\u043a\u0443 \u043a\u043e\u043d\u0444\u0456\u0434\u0435\u043d\u0446\u0456\u0439\u043d\u043e\u0441\u0442\u0456","Auth.privacy-policy-agreement.terms":"\u0443\u043c\u043e\u0432\u0438","Content Manager":"\u0420\u0435\u043a\u0434\u0430\u043a\u0442\u043e\u0440 \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0443","Content Type Builder":"\u041a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0442\u043e\u0440 Content-Types","Documentation":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u044f","Email":"Email","Files Upload":"\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0444\u0430\u0439\u043b\u0456\u0432","HomePage.helmet.title":"\u0413\u043e\u043b\u043e\u0432\u043d\u0430","HomePage.roadmap":"\u041d\u0430\u0448\u0430 \u0434\u043e\u0440\u043e\u0436\u043d\u044f \u043a\u0430\u0440\u0442\u0430","HomePage.welcome.congrats":"\u0412\u0456\u0442\u0430\u0454\u043c\u043e!","HomePage.welcome.congrats.content":"\u0412\u0438 \u0443\u0432\u0456\u0439\u0448\u043b\u0438 \u044f\u043a \u043f\u0435\u0440\u0448\u0438\u0439 \u0430\u0434\u043c\u0456\u043d\u0456\u0441\u0442\u0440\u0430\u0442\u043e\u0440. \u0429\u043e\u0431 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0434\u043b\u044f \u0441\u0435\u0431\u0435 \u043f\u043e\u0442\u0443\u0436\u043d\u0456 \u043c\u043e\u0436\u043b\u0438\u0432\u043e\u0441\u0442\u0456 Strapi,","HomePage.welcome.congrats.content.bold":"\u043c\u0438 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0454\u043c\u043e \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0441\u0432\u0456\u0439 \u043f\u0435\u0440\u0448\u0438\u0439 Collection-Type.","Media Library":"\u041c\u0435\u0434\u0456\u0430\u0442\u0435\u043a\u0430","New entry":"\u041d\u043e\u0432\u0438\u0439 \u0437\u0430\u043f\u0438\u0441","Password":"\u041f\u0430\u0440\u043e\u043b\u044c","Provider":"\u041f\u0440\u043e\u0432\u0430\u0439\u0434\u0435\u0440","ResetPasswordToken":"\u0421\u043a\u0438\u043d\u0443\u0442\u0438 \u0442\u043e\u043a\u0435\u043d \u043f\u0430\u0440\u043e\u043b\u044e","Role":"\u0420\u043e\u043b\u044c","Roles & Permissions":"\u0420\u043e\u043b\u0456 \u0439 \u0434\u043e\u0441\u0442\u0443\u043f\u0438","Settings.error":"\u041f\u043e\u043c\u0438\u043b\u043a\u0430","Settings.global":"\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0456 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f","Settings.webhooks.create":"\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 webhook","Settings.webhooks.create.header":"\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0438\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a","Settings.webhooks.created":"Webhook \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043e","Settings.webhooks.disabled":"\u0412\u0438\u043c\u043a\u043d\u0435\u043d\u0438\u0439","Settings.webhooks.enabled":"\u0423\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u0438\u0439","Settings.webhooks.events.create":"\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438","Settings.webhooks.form.events":"\u041f\u043e\u0434\u0456\u0457","Settings.webhooks.form.headers":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438","Settings.webhooks.form.name":"\u041d\u0430\u0437\u0432\u0430","Settings.webhooks.form.url":"URL","Settings.webhooks.key":"\u041a\u043b\u044e\u0447","Settings.webhooks.list.button.add":"\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0438\u0439 webhook","Settings.webhooks.list.description":"\u041e\u0442\u0440\u0438\u043c\u0443\u0439\u0442\u0435 POST-\u0441\u043f\u043e\u0432\u0456\u0449\u0435\u043d\u043d\u044f \u043f\u0440\u043e \u0437\u043c\u0456\u043d\u0438.","Settings.webhooks.list.empty.description":"\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u0441\u0432\u0456\u0439 \u043f\u0435\u0440\u0448\u0438\u0439 webhook \u0443 \u0446\u0435\u0439 \u0441\u043f\u0438\u0441\u043e\u043a.","Settings.webhooks.list.empty.link":"\u041f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u0443\u0442\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u044e","Settings.webhooks.list.empty.title":"\u041f\u043e\u043a\u0438 \u0449\u043e \u043d\u0435\u043c\u0430\u0454 webhooks","Settings.webhooks.singular":"webhook","Settings.webhooks.title":"Webhooks","Settings.webhooks.trigger":"\u0422\u0440\u0438\u0433\u0435\u0440","Settings.webhooks.trigger.cancel":"\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0432\u0438\u043a\u043b\u0438\u043a","Settings.webhooks.trigger.pending":"\u041e\u0447\u0456\u043a\u0443\u0432\u0430\u043d\u043d\u044f\u2026","Settings.webhooks.trigger.save":"\u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0437\u0431\u0435\u0440\u0435\u0436\u0456\u0442\u044c \u0442\u0440\u0438\u0433\u0435\u0440","Settings.webhooks.trigger.success":"\u0423\u0441\u043f\u0456\u0445!","Settings.webhooks.trigger.success.label":"\u0412\u0438\u043a\u043b\u0438\u043a \u0432\u0434\u0430\u0432\u0441\u044f","Settings.webhooks.trigger.test":"\u0412\u0438\u043f\u0440\u043e\u0431\u0443\u0432\u0430\u043b\u044c\u043d\u0438\u0439 \u0432\u0438\u043a\u043b\u0438\u043a","Settings.webhooks.trigger.title":"\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u043f\u0435\u0440\u0435\u0434 \u0432\u0438\u043a\u043b\u0438\u043a\u043e\u043c","Settings.webhooks.value":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f","Username":"\u0406\u043c\'\u044f \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430","Users":"\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456","Users & Permissions":"\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456 \u0456 \u0434\u043e\u0441\u0442\u0443\u043f\u0438","app.components.BlockLink.code":"\u041f\u0440\u0438\u043a\u043b\u0430\u0434\u0438 \u043a\u043e\u0434\u0443","app.components.Button.cancel":"\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438","app.components.Button.reset":"\u0421\u043a\u0438\u043d\u0443\u0442\u0438","app.components.Button.save":"\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438","app.components.ComingSoonPage.comingSoon":"\u041d\u0435\u0437\u0430\u0431\u0430\u0440\u043e\u043c","app.components.DownloadInfo.download":"\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0443\u0454\u0442\u044c\u0441\u044f...","app.components.DownloadInfo.text":"\u0426\u0435 \u043c\u043e\u0436\u0435 \u0437\u0430\u0439\u043d\u044f\u0442\u0438 \u0445\u0432\u0438\u043b\u0438\u043d\u043a\u0443. \u0414\u044f\u043a\u0443\u0454\u043c\u043e \u0437\u0430 \u0442\u0435\u0440\u043f\u0456\u043d\u043d\u044f.","app.components.EmptyAttributes.title":"\u041f\u043e\u043a\u0438 \u043d\u0435\u043c\u0430\u0454 \u043f\u043e\u043b\u0435\u0439","app.components.HomePage.button.blog":"\u0414\u0418\u0412\u0406\u0422\u042c\u0421\u042f \u0411\u0406\u041b\u042c\u0428\u0415 \u0412 \u0411\u041b\u041e\u0417\u0406","app.components.HomePage.community":"\u0417\u043d\u0430\u0439\u0434\u0456\u0442\u044c \u0441\u043f\u0456\u043b\u044c\u043d\u043e\u0442\u0443 \u0432 \u0456\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0456","app.components.HomePage.community.content":"\u041e\u0431\u0433\u043e\u0432\u043e\u0440\u044e\u0439\u0442\u0435 \u0437 \u0447\u043b\u0435\u043d\u0430\u043c\u0438 \u043a\u043e\u043c\u0430\u043d\u0434\u0438, \u043a\u043e\u043d\u0442\u0440\u0456\u0431\u044c\u044e\u0442\u043e\u0440\u0430\u043c\u0438 \u0442\u0430 \u0440\u043e\u0437\u0440\u043e\u0431\u043d\u0438\u043a\u0430\u043c\u0438 \u0447\u0435\u0440\u0435\u0437 \u0440\u0456\u0437\u043d\u0456 \u043a\u0430\u043d\u0430\u043b\u0438 \u0437\u0432\'\u044f\u0437\u043a\u0443.","app.components.HomePage.create":"\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0441\u0432\u0456\u0439 \u043f\u0435\u0440\u0448\u0438\u0439 Content-Type","app.components.HomePage.welcome":"\u0412\u0456\u0442\u0430\u0454\u043c\u043e \u043d\u0430 \u0431\u043e\u0440\u0442\u0443!","app.components.HomePage.welcome.again":"\u0412\u0456\u0442\u0430\u0454\u043c\u043e ","app.components.HomePage.welcomeBlock.content":"\u041c\u0438 \u0434\u0443\u0436\u0435 \u0440\u0430\u0434\u0456, \u0449\u043e \u0432\u0456 \u043f\u0440\u0438\u0454\u0434\u043d\u0430\u043b\u0438\u0441\u044f \u0434\u043e \u043d\u0430\u0448\u043e\u0457 \u0441\u043f\u0456\u043b\u044c\u043d\u043e\u0442\u0438. \u041d\u0430\u043c \u0437\u0430\u0432\u0436\u0434\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u0435\u043d \u0437\u0432\u043e\u0440\u043e\u0442\u043d\u0456\u0439 \u0437\u0432\'\u044f\u0437\u043e\u043a, \u0442\u043e\u043c\u0443 \u043d\u0435 \u0432\u0430\u0433\u0430\u0439\u0442\u0435\u0441\u044c \u043f\u0438\u0441\u0430\u0442\u0438 \u043d\u0430\u043c \u043d\u0430 ","app.components.HomePage.welcomeBlock.content.again":"\u041c\u0438 \u0441\u043f\u043e\u0434\u0456\u0432\u0430\u0454\u043c\u043e\u0441\u044c, \u0449\u043e \u0432\u0438 \u0440\u043e\u0431\u0438\u0442\u0435 \u0443\u0441\u043f\u0456\u0445\u0438 \u0443 \u0432\u0430\u0448\u043e\u043c\u0443 \u043f\u0440\u043e\u0435\u043a\u0442\u0456... \u0421\u043b\u0456\u0434\u043a\u0443\u0439\u0442\u0435 \u0437\u0430 \u043e\u0441\u0442\u0430\u043d\u043d\u0456\u043c\u0438 \u043d\u043e\u0432\u0438\u043d\u0430\u043c\u0438 Strapi. \u041c\u0438 \u0440\u043e\u0431\u0438\u043c\u043e \u0432\u0441\u0435 \u043c\u043e\u0436\u043b\u0438\u0432\u0435, \u0449\u043e\u0431 \u043f\u043e\u043a\u0440\u0430\u0449\u0438\u0442\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442 \u0437\u0430\u0432\u0434\u044f\u043a\u0438 \u0432\u0430\u0448\u0438\u043c \u0432\u0456\u0434\u0433\u0443\u043a\u0430\u043c.","app.components.HomePage.welcomeBlock.content.issues":"\u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438.","app.components.HomePage.welcomeBlock.content.raise":" \u0430\u0431\u043e \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u0442\u0435 \u043f\u0440\u043e ","app.components.ImgPreview.hint":"\u041f\u0435\u0440\u0435\u0442\u044f\u0433\u043d\u0456\u0442\u044c \u0432\u0430\u0448 \u0444\u0430\u0439\u043b \u0432 \u0446\u044e \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u0430\u0431\u043e {browse} \u0444\u0430\u0439\u043b \u0434\u043b\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f","app.components.ImgPreview.hint.browse":"\u043e\u0431\u0435\u0440\u0456\u0442\u044c","app.components.InputFile.newFile":"\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0438\u0439 \u0444\u0430\u0439\u043b","app.components.InputFileDetails.open":"\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0432 \u043d\u043e\u0432\u0456\u0439 \u0432\u043a\u043b\u0430\u0434\u0446\u0456","app.components.InputFileDetails.originalName":"\u041e\u0440\u0438\u0433\u0456\u043d\u0430\u043b\u044c\u043d\u0430 \u043d\u0430\u0437\u0432\u0430:","app.components.InputFileDetails.remove":"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0446\u0435\u0439 \u0444\u0430\u0439\u043b","app.components.InputFileDetails.size":"\u0420\u043e\u0437\u043c\u0456\u0440:","app.components.InstallPluginPage.Download.description":"\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0442\u0430 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043f\u043b\u0430\u0433\u0456\u043d\u0430 \u043c\u043e\u0436\u0435 \u0437\u0430\u0439\u043d\u044f\u0442\u0438 \u043a\u0456\u043b\u044c\u043a\u0430 \u0441\u0435\u043a\u0443\u043d\u0434.","app.components.InstallPluginPage.Download.title":"\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f...","app.components.InstallPluginPage.description":"\u0420\u043e\u0437\u0448\u0438\u0440\u044e\u0439\u0442\u0435 \u0441\u0432\u0456\u0439 \u043f\u0440\u043e\u0435\u043a\u0442 \u0431\u0435\u0437 \u0437\u0443\u0441\u0438\u043b\u044c.","app.components.LeftMenuFooter.documentation":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u044f","app.components.LeftMenuFooter.help":"\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430","app.components.LeftMenuFooter.poweredBy":"\u041f\u0440\u0430\u0446\u044e\u0454 \u043d\u0430 ","app.components.LeftMenuLinkContainer.collectionTypes":"Collection Types","app.components.LeftMenuLinkContainer.configuration":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f","app.components.LeftMenuLinkContainer.general":"\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0456","app.components.LeftMenuLinkContainer.installNewPlugin":"\u041c\u0430\u0433\u0430\u0437\u0438\u043d","app.components.LeftMenuLinkContainer.listPlugins":"\u041f\u043b\u0430\u0433\u0456\u043d\u0438","app.components.LeftMenuLinkContainer.noPluginsInstalled":"\u041d\u0435\u043c\u0430\u0454 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0445 \u043f\u043b\u0430\u0433\u0456\u043d\u0456\u0432","app.components.LeftMenuLinkContainer.plugins":"\u041f\u043b\u0430\u0433\u0456\u043d","app.components.LeftMenuLinkContainer.settings":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f","app.components.LeftMenuLinkContainer.singleTypes":"Single Types","app.components.ListPluginsPage.description":"\u0421\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u0438\u0445 \u0443 \u043f\u0440\u043e\u0435\u043a\u0442\u0456 \u043f\u043b\u0430\u0433\u0456\u043d\u0456\u0432.","app.components.ListPluginsPage.helmet.title":"\u0421\u043f\u0438\u0441\u043e\u043a \u043f\u043b\u0430\u0433\u0456\u043d\u0456\u0432","app.components.ListPluginsPage.title":"\u041f\u043b\u0430\u0433\u0456\u043d\u0438","app.components.Logout.logout":"\u0412\u0438\u0439\u0442\u0438","app.components.Logout.profile":"\u041f\u0440\u043e\u0444\u0456\u043b\u044c","app.components.NotFoundPage.back":"\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f \u043d\u0430 \u0433\u043e\u043b\u043e\u0432\u043d\u0443","app.components.NotFoundPage.description":"\u041d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e","app.components.Official":"\u041e\u0444\u0456\u0446\u0456\u0439\u043d\u0438\u0439","app.components.Onboarding.label.completed":"% \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e","app.components.Onboarding.title":"\u0412\u0441\u0442\u0443\u043f\u043d\u0456 \u0432\u0456\u0434\u0435\u043e","app.components.PluginCard.Button.label.download":"\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438","app.components.PluginCard.Button.label.install":"\u0412\u0436\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e","app.components.PluginCard.PopUpWarning.install.impossible.autoReload.needed":"\u0424\u0443\u043d\u043a\u0446\u0456\u044f autoReload \u043c\u0430\u0454 \u0431\u0443\u0442\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0437\u0430\u043f\u0443\u0441\u0442\u0456\u0442\u044c \u0441\u0432\u0456\u0439 \u0434\u043e\u0434\u0430\u0442\u043e\u043a \u0432\u0456\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u044e\u0447\u0438 `yarn develop`.","app.components.PluginCard.PopUpWarning.install.impossible.confirm":"\u042f \u0440\u043e\u0437\u0443\u043c\u0456\u044e!","app.components.PluginCard.PopUpWarning.install.impossible.environment":"\u0417 \u043c\u0456\u0440\u043a\u0443\u0432\u0430\u043d\u044c \u0431\u0435\u0437\u043f\u0435\u043a\u0438 \u043f\u043b\u0430\u0433\u0456\u043d \u043c\u043e\u0436\u043d\u0430 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0442\u0456\u043b\u044c\u043a\u0438 \u0432 \u0441\u0435\u0440\u0435\u0434\u043e\u0432\u0438\u0449\u0456 \u0440\u043e\u0437\u0440\u043e\u0431\u043a\u0438.","app.components.PluginCard.PopUpWarning.install.impossible.title":"\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u043d\u0435\u043c\u043e\u0436\u043b\u0438\u0432\u0435","app.components.PluginCard.compatible":"\u0421\u0443\u043c\u0456\u0441\u043d\u043e \u0437 \u0432\u0430\u0448\u0438\u043c \u0434\u043e\u0434\u0430\u0442\u043a\u043e\u043c","app.components.PluginCard.compatibleCommunity":"\u0421\u0443\u043c\u0456\u0441\u043d\u043e \u0437\u0456 \u0441\u043f\u0456\u043b\u044c\u043d\u043e\u0442\u043e\u044e","app.components.PluginCard.more-details":"\u0414\u043e\u043a\u043b\u0430\u0434\u043d\u0456\u0448\u0435","app.components.listPlugins.button":"\u0414\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0438\u0439 \u043f\u043b\u0430\u0433\u0456\u043d","app.components.listPlugins.title.none":"\u041d\u0435\u043c\u0430\u0454 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0445 \u043f\u043b\u0430\u0433\u0456\u043d\u0456\u0432","app.components.listPluginsPage.deletePlugin.error":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u043f\u043b\u0430\u0433\u0456\u043d\u0443 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430","app.containers.App.notification.error.init":"\u0421\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430 \u043f\u0456\u0434 \u0447\u0430\u0441 \u0432\u0438\u043a\u043b\u0438\u043a\u0443 API","app.links.configure-view":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0432\u0438\u0433\u043b\u044f\u0434","app.utils.SelectOption.defaultMessage":" ","app.utils.defaultMessage":" ","app.utils.delete":"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438","app.utils.filters":"\u0424\u0456\u043b\u044c\u0442\u0440\u0438","app.utils.placeholder.defaultMessage":" ","component.Input.error.validation.integer":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043c\u0430\u0454 \u0431\u0443\u0442\u0438 \u0446\u0456\u043b\u0438\u043c \u0447\u0438\u0441\u043b\u043e\u043c","components.AutoReloadBlocker.description":"\u0417\u0430\u043f\u0443\u0441\u0442\u0456\u0442\u044c Strapi \u043e\u0434\u043d\u0456\u0454\u044e \u0437 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0445 \u043a\u043e\u043c\u0430\u043d\u0434:","components.AutoReloadBlocker.header":"\u0414\u043b\u044f \u0446\u044c\u043e\u0433\u043e \u043f\u043b\u0430\u0433\u0456\u043d\u0443 \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u0430 \u0444\u0443\u043d\u043a\u0446\u0456\u044f \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0443 (reload).","components.ErrorBoundary.title":"\u0429\u043e\u0441\u044c \u043f\u0456\u0448\u043b\u043e \u043d\u0435 \u0442\u0430\u043a...","components.Input.error.attribute.key.taken":"\u0426\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0432\u0436\u0435 \u0456\u0441\u043d\u0443\u0454","components.Input.error.attribute.sameKeyAndName":"\u041d\u0435 \u043c\u043e\u0436\u0435 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0430\u0442\u0438","components.Input.error.attribute.taken":"\u041f\u043e\u043b\u0435 \u0437 \u0442\u0430\u043a\u043e\u044e \u043d\u0430\u0437\u0432\u043e\u044e \u0432\u0436\u0435 \u0456\u0441\u043d\u0443\u0454","components.Input.error.contentTypeName.taken":"\u0426\u044f \u043d\u0430\u0437\u0432\u0430 \u0432\u0436\u0435 \u0456\u0441\u043d\u0443\u0454","components.Input.error.custom-error":"{errorMessage} ","components.Input.error.password.noMatch":"\u041f\u0430\u0440\u043e\u043b\u0456 \u043d\u0435 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0430\u044e\u0442\u044c.","components.Input.error.validation.email":"\u0426\u0435 \u043d\u0435 \u0430\u0434\u0440\u0435\u0441\u0430 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438","components.Input.error.validation.json":"\u0426\u0435 \u043d\u0435 \u0432\u0456\u0434\u043f\u043e\u0456\u0434\u0430\u0454 \u0444\u043e\u0440\u043c\u0430\u0442\u0443 JSON","components.Input.error.validation.max":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043d\u0430\u0434\u0442\u043e \u0432\u0435\u043b\u0438\u043a\u0435.","components.Input.error.validation.maxLength":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043d\u0430\u0434\u0442\u043e \u0434\u043e\u0432\u0433\u0435.","components.Input.error.validation.min":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043d\u0430\u0434\u0442\u043e \u043c\u0430\u043b\u0435.","components.Input.error.validation.minLength":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043d\u0430\u0434\u0442\u043e \u043a\u043e\u0440\u043e\u0442\u043a\u0435.","components.Input.error.validation.minSupMax":"\u041d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0431\u0456\u043b\u044c\u0448\u0435","components.Input.error.validation.regex":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043d\u0435 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u0430\u0454 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u043c\u0443 \u0432\u0438\u0440\u0430\u0437\u0443.","components.Input.error.validation.required":"\u0426\u0435 \u043e\u0431\u043e\u0432\'\u044f\u0437\u043a\u043e\u0432\u0435 \u043f\u043e\u043b\u0435.","components.Input.error.validation.unique":"\u0426\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0432\u0436\u0435 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454\u0442\u044c\u0441\u044f.","components.InputSelect.option.placeholder":"\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0442\u0443\u0442","components.ListRow.empty":"\u041d\u0435\u043c\u0430\u0454 \u0434\u0430\u043d\u0438\u0445 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f.","components.OverlayBlocker.description":"\u0412\u0438 \u0441\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043b\u0438\u0441\u044f \u0444\u0443\u043d\u043a\u0446\u0456\u043e\u043d\u0430\u043b\u043e\u043c, \u044f\u043a\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0454 \u043f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0443. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430 \u0437\u0430\u0447\u0435\u043a\u0430\u0439\u0442\u0435 \u043f\u043e\u043a\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0454\u0442\u044c\u0441\u044f.","components.OverlayBlocker.description.serverError":"\u0421\u0435\u0440\u0432\u0435\u0440 \u043c\u0430\u0432 \u043f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438\u0441\u044c, \u0431\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u043f\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u0441\u0432\u043e\u0457 \u043b\u043e\u0433\u0438 \u0443 \u0442\u0435\u0440\u043c\u0456\u043d\u0430\u043b\u0456.","components.OverlayBlocker.title":"\u0427\u0435\u043a\u0430\u0454\u043c\u043e \u043d\u0430 \u043f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f...","components.OverlayBlocker.title.serverError":"\u041f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0442\u0440\u0438\u0432\u0430\u0454 \u0434\u043e\u0432\u0448\u0435 \u043d\u0456\u0436 \u043e\u0447\u0456\u043a\u0443\u0432\u0430\u043b\u043e\u0441\u044c.","components.PageFooter.select":"\u0437\u0430\u043f\u0438\u0441\u0456\u0432 \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456","components.ProductionBlocker.description":"\u0417 \u043c\u0456\u0440\u043a\u0443\u0432\u0430\u043d\u044c \u0431\u0435\u0437\u043f\u0435\u043a\u0438 \u043c\u0438 \u043c\u0430\u0454\u043c\u043e \u0432\u0456\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u0446\u0435\u0439 \u043f\u043b\u0430\u0433\u0456\u043d \u0432 \u0456\u043d\u0448\u0438\u0445 \u0441\u0435\u0440\u0435\u0434\u043e\u0432\u0438\u0449\u0430\u0445.","components.ProductionBlocker.header":"\u0426\u0435\u0439 \u043f\u043b\u0430\u0433\u0456\u043d \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0438\u0439 \u043b\u0438\u0448\u0435 \u0432 \u0441\u0435\u0440\u0435\u0434\u043e\u0432\u0438\u0449\u0456 \u0440\u043e\u0437\u0440\u043e\u0431\u043a\u0438.","components.Search.placeholder":"\u041f\u043e\u0448\u0443\u043a...","components.Wysiwyg.collapse":"\u0417\u0433\u043e\u0440\u043d\u0443\u0442\u0438","components.Wysiwyg.selectOptions.H1":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a H1","components.Wysiwyg.selectOptions.H2":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a H2","components.Wysiwyg.selectOptions.H3":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a H3","components.Wysiwyg.selectOptions.H4":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a H4","components.Wysiwyg.selectOptions.H5":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a H5","components.Wysiwyg.selectOptions.H6":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a H6","components.Wysiwyg.selectOptions.title":"\u0414\u043e\u0434\u0430\u0442\u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a","components.WysiwygBottomControls.charactersIndicators":"\u0441\u0438\u043c\u0432\u043e\u043b\u0456\u0432","components.WysiwygBottomControls.fullscreen":"\u0420\u043e\u0437\u0433\u043e\u0440\u043d\u0443\u0442\u0438","components.WysiwygBottomControls.uploadFiles":"\u041f\u0435\u0440\u0435\u0442\u044f\u0433\u043d\u0456\u0442\u044c \u0444\u0430\u0439\u043b\u0438 \u0441\u044e\u0434\u0438, \u0432\u0441\u0442\u0430\u0432\u0442\u0435 \u0437 \u0431\u0443\u0444\u0435\u0440\u0430 \u043e\u0431\u043c\u0456\u043d\u0443 \u0430\u0431\u043e {browse}.","components.WysiwygBottomControls.uploadFiles.browse":"\u043e\u0431\u0440\u0430\u0442\u0438 \u0457\u0445","components.popUpWarning.message":"\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0446\u0435 \u0432\u0456\u0434\u0430\u043b\u0438\u0442\u0438?","components.popUpWarning.title":"\u041f\u0456\u0434\u0442\u0432\u0435\u0440\u0434\u0456\u0442\u044c, \u0431\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430","content-manager.EditRelations.title":"\u0417\u0432\'\u044f\u0437\u043e\u043a","content-manager.api.id":"API ID","content-manager.components.AddFilterCTA.add":"\u0424\u0456\u043b\u044c\u0442\u0440\u0438","content-manager.components.AddFilterCTA.hide":"\u0424\u0456\u043b\u044c\u0442\u0440\u0438","content-manager.components.DraggableAttr.edit":"\u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \u0449\u043e\u0431 \u0437\u043c\u0456\u043d\u0438\u0442\u0438","content-manager.components.DynamicZone.pick-compo":"\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u043e\u0434\u0438\u043d \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442","content-manager.components.EmptyAttributesBlock.button":"\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u044c","content-manager.components.EmptyAttributesBlock.description":"\u0412\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0441\u0432\u043e\u0457 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f","content-manager.components.FieldItem.linkToComponentLayout":"\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 \u043c\u0430\u043a\u0435\u0442 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0443","content-manager.components.FilterOptions.button.apply":"\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438","content-manager.components.FiltersPickWrapper.PluginHeader.actions.apply":"\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438","content-manager.components.FiltersPickWrapper.PluginHeader.actions.clearAll":"\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0432\u0441\u0435","content-manager.components.FiltersPickWrapper.PluginHeader.description":"\u0412\u043a\u0430\u0436\u0456\u0442\u044c \u0443\u043c\u043e\u0432\u0438 \u0444\u0456\u043b\u044c\u0442\u0440\u0430\u0446\u0456\u0457 \u0437\u0430\u043f\u0438\u0441\u0456\u0432","content-manager.components.FiltersPickWrapper.PluginHeader.title.filter":"\u0424\u0456\u043b\u044c\u0442\u0440\u0438","content-manager.components.FiltersPickWrapper.hide":"\u0421\u0445\u043e\u0432\u0430\u0442\u0438","content-manager.components.LimitSelect.itemsPerPage":"\u0415\u043b\u0435\u043c\u0435\u043d\u0442\u0456\u0432 \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0443","content-manager.components.Search.placeholder":"\u041f\u043e\u0448\u0443\u043a \u0437\u0430\u043f\u0438\u0441\u0456\u0432...","content-manager.components.SettingsViewWrapper.pluginHeader.description.edit-settings":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435, \u044f\u043a \u0431\u0443\u0434\u0435 \u0432\u0438\u0433\u043b\u044f\u0434\u0430\u0442\u0438 \u0435\u043a\u0440\u0430\u043d \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f.","content-manager.components.SettingsViewWrapper.pluginHeader.description.list-settings":"\u0412\u0438\u0437\u043d\u0430\u0447\u0442\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0432\u0438\u0433\u044f\u0434\u0443 \u0441\u043f\u0438\u0441\u043a\u0443.","content-manager.components.SettingsViewWrapper.pluginHeader.title":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u0432\u0438\u0433\u043b\u044f\u0434 - {name}","content-manager.components.TableDelete.delete":"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0432\u0441\u0435","content-manager.components.TableDelete.deleteSelected":"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043e\u0431\u0440\u0430\u043d\u0435","content-manager.components.TableEmpty.withFilters":"\u041d\u0435\u043c\u0430\u0454 {contentType} \u0437 \u043e\u0431\u0440\u0430\u043d\u0438\u043c\u0438 \u0444\u0456\u043b\u044c\u0442\u0440\u0430\u043c\u0438...","content-manager.components.TableEmpty.withSearch":"\u041d\u0435\u043c\u0430\u0454 {contentType}, \u044f\u043a\u0456 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u0430\u044e\u0442\u044c \u043f\u043e\u0448\u0443\u043a\u0443 \\"{search}\\"...","content-manager.components.TableEmpty.withoutFilter":"\u041d\u0435\u043c\u0430\u0454 {contentType}...","content-manager.components.empty-repeatable":"\u041d\u0435\u043c\u0430\u0454 \u0437\u0430\u043f\u0438\u0441\u0456\u0432. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \u043a\u043d\u043e\u043f\u043a\u0443 \u043d\u0438\u0436\u0447\u0435, \u0449\u043e\u0431 \u0434\u043e\u0434\u0430\u0442\u0438 \u043d\u043e\u0432\u0443.","content-manager.components.notification.info.maximum-requirement":"\u0412\u0438 \u0434\u043e\u0441\u044f\u0433\u043b\u0438 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0457 \u043a\u0456\u043b\u044c\u043a\u043e\u0441\u0442\u0456 \u043f\u043e\u043b\u0435\u0439","content-manager.components.notification.info.minimum-requirement":"\u041f\u043e\u043b\u0435 \u0431\u0443\u043b\u043e \u0434\u043e\u0434\u0430\u043d\u043e, \u0449\u043e\u0431 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u0430\u0442\u0438 \u043c\u0456\u043d\u0456\u043c\u0430\u043b\u044c\u043d\u0438\u043c \u0432\u0438\u043c\u043e\u0433\u0430\u043c","content-manager.components.reset-entry":"\u0421\u043a\u0438\u043d\u0443\u0442\u0438 \u0437\u0430\u043f\u0438\u0441","content-manager.components.uid.apply":"\u0412\u0438\u0431\u0440\u0430\u0442\u0438","content-manager.components.uid.available":"\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0438\u0439","content-manager.components.uid.regenerate":"\u0417\u0433\u0435\u043d\u0435\u0440\u0443\u0432\u0430\u0442\u0438","content-manager.components.uid.suggested":"\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u043e\u0432\u0430\u043d\u0435","content-manager.components.uid.unavailable":"\u041d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0438\u0439","content-manager.containers.Edit.Link.Layout":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u043a\u043e\u043c\u043f\u043e\u043d\u0443\u0432\u0430\u043d\u043d\u044f","content-manager.containers.Edit.Link.Model":"\u0417\u043c\u0456\u043d\u0438\u0442\u0438 Collection Type","content-manager.containers.Edit.addAnItem":"\u0414\u043e\u0434\u0430\u0442\u0438 \u0435\u043b\u0435\u043c\u0435\u043d\u0442...","content-manager.containers.Edit.clickToJump":"\u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \u0449\u043e\u0431 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e \u0437\u0430\u043f\u0438\u0441\u0443","content-manager.containers.Edit.delete":"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438","content-manager.containers.Edit.editing":"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f...","content-manager.containers.Edit.pluginHeader.title.new":"\u0421\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0437\u0430\u043f\u0438\u0441","content-manager.containers.Edit.reset":"\u0421\u043a\u0438\u043d\u0443\u0442\u0438","content-manager.containers.Edit.returnList":"\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f \u0434\u043e \u0441\u043f\u0438\u0441\u043a\u0443","content-manager.containers.Edit.seeDetails":"\u0414\u043e\u043a\u043b\u0430\u0434\u043d\u0456\u0448\u0435","content-manager.containers.Edit.submit":"\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438","content-manager.containers.EditSettingsView.modal-form.edit-field":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u043f\u043e\u043b\u0435","content-manager.containers.EditView.notification.errors":"\u0424\u043e\u0440\u043c\u0430 \u043c\u0456\u0441\u0442\u0438\u0442\u044c \u0434\u0435\u044f\u043a\u0456 \u043f\u043e\u043c\u0438\u043b\u043a\u0438","content-manager.containers.Home.introduction":"\u0429\u043e\u0431 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0430\u0448\u0456 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u0435\u0440\u0435\u0439\u0434\u0456\u0442\u044c \u0437\u0430 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f\u043c \u0432 \u043b\u0456\u0432\u043e\u043c\u0443 \u043c\u0435\u043d\u044e. \u0426\u0435\u0439 \u043f\u043b\u0430\u0433\u0456\u043d \u043d\u0435 \u043c\u0430\u0454 \u043d\u0430\u043b\u0435\u0436\u043d\u043e\u0433\u043e \u0441\u043f\u043e\u0441\u043e\u0431\u0443 \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u044c \u0456 \u0432\u0441\u0435 \u0449\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u043e \u0440\u043e\u0437\u0440\u043e\u0431\u043b\u044f\u0454\u0442\u044c\u0441\u044f.","content-manager.containers.Home.pluginHeaderDescription":"\u041a\u0435\u0440\u0443\u0439\u0442\u0435 \u0441\u0432\u043e\u0457\u043c\u0438 \u0437\u0430\u043f\u0438\u0441\u0430\u043c\u0438 \u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e \u043f\u043e\u0442\u0443\u0436\u043d\u043e\u0433\u043e \u0442\u0430 \u043a\u0440\u0430\u0441\u0438\u0432\u043e\u0433\u043e \u0456\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443.","content-manager.containers.Home.pluginHeaderTitle":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442-\u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440","content-manager.containers.List.errorFetchRecords":"\u041f\u043e\u043c\u0438\u043b\u043a\u0430","content-manager.containers.ListPage.displayedFields":"\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u043b\u044f","content-manager.containers.ListSettingsView.modal-form.edit-label":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u043f\u0456\u0434\u043f\u0438\u0441","content-manager.containers.SettingPage.add.field":"\u0414\u043e\u0434\u0430\u0442\u0438 \u0449\u0435 \u043e\u0434\u043d\u0435 \u043f\u043e\u043b\u0435","content-manager.containers.SettingPage.add.relational-field":"\u0414\u043e\u0434\u0430\u0442\u0438 \u0449\u0435 \u043e\u0434\u043d\u0435 \u043f\u043e\u043b\u0435 \u0437\u0432\'\u044f\u0437\u043a\u0443","content-manager.containers.SettingPage.attributes":"\u041f\u043e\u043b\u044f \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0456\u0432","content-manager.containers.SettingPage.attributes.description":"\u0412\u0438\u0437\u043d\u0430\u0447\u0442\u0435 \u043f\u043e\u0440\u044f\u0434\u043e\u043a \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0456\u0432","content-manager.containers.SettingPage.editSettings.description":"\u041f\u0435\u0440\u0435\u0442\u044f\u0433\u043d\u0456\u0442\u044c \u043f\u043e\u043b\u044f \u0449\u043e\u0431 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u0442\u0438 \u0432\u0438\u0433\u043b\u044f\u0434.","content-manager.containers.SettingPage.editSettings.entry.title":"\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0437\u0430\u043f\u0438\u0441\u0443","content-manager.containers.SettingPage.editSettings.entry.title.description":"\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0456\u0442\u044c \u043f\u043e\u043b\u0435, \u044f\u043a\u0435 \u0431\u0443\u0434\u0435 \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u0438 \u0437\u0430\u043f\u0438\u0441.","content-manager.containers.SettingPage.editSettings.title":"\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0438\u0433\u043b\u044f\u0434 (\u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f)","content-manager.containers.SettingPage.layout":"\u041a\u043e\u043c\u043f\u043e\u043d\u0443\u0432\u0430\u043d\u043d\u044f","content-manager.containers.SettingPage.listSettings.description":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0434\u043b\u044f \u0446\u044c\u043e\u0433\u043e Collection Type","content-manager.containers.SettingPage.listSettings.title":"\u0421\u043f\u0438\u0441\u043e\u043a (\u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f)","content-manager.containers.SettingPage.pluginHeaderDescription":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u0456 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0434\u043b\u044f \u0446\u044c\u043e\u0433\u043e Collection Type","content-manager.containers.SettingPage.relations":"\u041f\u043e\u043b\u044f \u0437\u0432\'\u044f\u0437\u043a\u0456\u0432","content-manager.containers.SettingPage.settings":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f","content-manager.containers.SettingPage.view":"\u0412\u0438\u0433\u043b\u044f\u0434","content-manager.containers.SettingViewModel.pluginHeader.title":"\u041a\u043e\u043d\u0442\u0435\u043d\u0442-\u043c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 - {name}","content-manager.containers.SettingsPage.Block.contentType.description":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u0456 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438","content-manager.containers.SettingsPage.Block.contentType.title":"Collection Types","content-manager.containers.SettingsPage.Block.generalSettings.description":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0437\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c \u0434\u043b\u044f \u0441\u0432\u043e\u0433\u043e Collection Types","content-manager.containers.SettingsPage.Block.generalSettings.title":"\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0435","content-manager.containers.SettingsPage.pluginHeaderDescription":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0434\u043b\u044f \u0432\u0441\u0456\u0445 \u0432\u0430\u0448\u0438\u0445 Collection Types \u0442\u0430 \u0433\u0440\u0443\u043f","content-manager.containers.SettingsView.list.subtitle":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0430 \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0432\u0430\u0448\u0438\u0445 Collection Types \u0442\u0430 \u0433\u0440\u0443\u043f","content-manager.containers.SettingsView.list.title":"\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f","content-manager.emptyAttributes.button":"\u041f\u0435\u0440\u0435\u0439\u0434\u0456\u0442\u044c \u0434\u043e \u043a\u043e\u043d\u0441\u0442\u0440\u0443\u043a\u0442\u043e\u0440\u0430 Collection Type","content-manager.emptyAttributes.description":"\u0414\u043e\u0434\u0430\u0439\u0442\u0435 \u043f\u0435\u0440\u0448\u0435 \u043f\u043e\u043b\u0435 \u0432 \u0432\u0430\u0448 Collection Type","content-manager.emptyAttributes.title":"\u041f\u043e\u043a\u0438 \u0449\u043e \u043d\u0435\u043c\u0430\u0454 \u043f\u043e\u043b\u0435\u0439","content-manager.error.attribute.key.taken":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0432\u0436\u0435 \u0456\u0441\u043d\u0443\u0454","content-manager.error.attribute.sameKeyAndName":"\u041d\u0435 \u043c\u043e\u0436\u0435 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0430\u0442\u0438","content-manager.error.attribute.taken":"\u0426\u0435 \u043f\u043e\u043b\u0435 \u0432\u0436\u0435 \u0456\u0441\u043d\u0443\u0454","content-manager.error.contentTypeName.taken":"\u0426\u0435 \u0456\u043c\'\u044f \u0432\u0436\u0435 \u0456\u0441\u043d\u0443\u0454","content-manager.error.model.fetch":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u043a\u043e\u043d\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0457 \u043c\u043e\u0434\u0435\u043b\u0435\u0439 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.error.record.create":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u0437\u0430\u043f\u0438\u0441\u0443 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.error.record.delete":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u0437\u0430\u043f\u0438\u0441\u0443 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.error.record.fetch":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0437\u0430\u043f\u0438\u0441\u0443 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.error.record.update":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0437\u0430\u043f\u0438\u0441\u0443 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.error.records.count":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u043a\u0456\u043b\u044c\u043a\u043e\u0441\u0442\u0456 \u0437\u0430\u043f\u0438\u0441\u0456\u0432 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.error.records.fetch":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0437\u0430\u043f\u0438\u0441\u0456\u0432 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.error.schema.generation":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u043d\u044f \u0441\u0445\u0435\u043c\u0438 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.error.validation.json":"\u0426\u0435 \u043d\u0435 \u0432\u0456\u0434\u043f\u043e\u0456\u0434\u0430\u0454 \u0444\u043e\u0440\u043c\u0430\u0442\u0443 JSON","content-manager.error.validation.max":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043d\u0430\u0434\u0442\u043e \u0432\u0435\u043b\u0438\u043a\u0435.","content-manager.error.validation.maxLength":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043d\u0430\u0434\u0442\u043e \u0434\u043e\u0432\u0433\u0435.","content-manager.error.validation.min":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043d\u0430\u0434\u0442\u043e \u043c\u0430\u043b\u0435.","content-manager.error.validation.minLength":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u0430\u043d\u0430\u0434\u0442\u043e \u043a\u043e\u0440\u043e\u0442\u043a\u0435.","content-manager.error.validation.minSupMax":"\u041d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0431\u0456\u043b\u044c\u0448\u0435","content-manager.error.validation.regex":"\u0417\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043d\u0435 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u0430\u0454 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u043c\u0443 \u0432\u0438\u0440\u0430\u0437\u0443.","content-manager.error.validation.required":"\u0426\u0435 \u043e\u0431\u043e\u0432\'\u044f\u0437\u043a\u043e\u0432\u0435 \u043f\u043e\u043b\u0435.","content-manager.form.Input.bulkActions":"\u0414\u043e\u0437\u0432\u043e\u043b\u0438\u0442\u0438 \u043c\u0430\u0441\u043e\u0432\u0456 \u0434\u0456\u0457","content-manager.form.Input.defaultSort":"\u0421\u043e\u0440\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c","content-manager.form.Input.description":"\u041e\u043f\u0438\u0441","content-manager.form.Input.description.placeholder":"\u0406\u043c\'\u044f, \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0432 \u043f\u0440\u043e\u0444\u0456\u043b\u0456","content-manager.form.Input.editable":"\u0420\u0435\u0434\u0430\u0433\u0443\u0454\u043c\u0435 \u043f\u043e\u043b\u0435","content-manager.form.Input.filters":"\u0423\u0432\u0456\u043c\u043a\u043d\u0443\u0442\u0438 \u0444\u0456\u043b\u044c\u0442\u0440\u0438","content-manager.form.Input.label":"\u041f\u0456\u0434\u043f\u0438\u0441","content-manager.form.Input.label.inputDescription":"\u0426\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u0437\u043c\u0456\u043d\u0438\u0442\u044c \u043f\u0456\u0434\u043f\u0438\u0441, \u044f\u043a\u0438\u0439 \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0443\u0454\u0442\u044c\u0441\u044f \u0443 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443 \u0442\u0430\u0431\u043b\u0438\u0446\u0456","content-manager.form.Input.pageEntries":"\u0437\u0430\u043f\u0438\u0441\u0456\u0432 \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456","content-manager.form.Input.pageEntries.inputDescription":"\u0417\u0430\u0443\u0432\u0430\u0436\u0442\u0435, \u0449\u043e \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u0446\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f \u043d\u0430 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u044c Collection Type.","content-manager.form.Input.placeholder":"\u041f\u043b\u0435\u0439\u0441\u0445\u043e\u043b\u0434\u0435\u0440","content-manager.form.Input.placeholder.placeholder":"\u041c\u043e\u0454 \u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f","content-manager.form.Input.search":"\u0423\u0432\u0456\u043c\u043a\u043d\u0443\u0442\u0438 \u043f\u043e\u0448\u0443\u043a","content-manager.form.Input.search.field":"\u0414\u043e\u0437\u0432\u043e\u043b\u0438\u0442\u0438 \u0448\u0443\u043a\u0430\u0442\u0438 \u0437\u0430 \u0446\u0438\u043c \u043f\u043e\u043b\u0435\u043c","content-manager.form.Input.sort.field":"\u0414\u043e\u0437\u0432\u043e\u043b\u0438\u0442\u0438 \u0441\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430 \u0446\u0438\u043c \u043f\u043e\u043b\u0435\u043c","content-manager.form.Input.wysiwyg":"\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0443\u0432\u0430\u0442\u0438 \u044f\u043a WYSIWYG","content-manager.global.displayedFields":"\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0456 \u043f\u043e\u043b\u044f","content-manager.groups":"\u0413\u0440\u0443\u043f\u0438","content-manager.groups.numbered":"\u0413\u0440\u0443\u043f\u0438 ({number})","content-manager.models":"Collection Types","content-manager.models.numbered":"Collection Types ({number})","content-manager.notification.error.displayedFields":"\u041f\u043e\u0442\u0440\u0456\u0431\u043d\u0435 \u0445\u043e\u0447\u0430 \u0431 \u043e\u0434\u043d\u0435 \u043f\u043e\u043b\u0435 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f.","content-manager.notification.error.relationship.fetch":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0437\u0432\'\u044f\u0437\u043a\u0456\u0432 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.notification.info.SettingPage.disableSort":"\u041f\u043e\u0442\u0440\u0456\u0435\u043d \u0445\u043e\u0447\u0430 \u0431 \u043e\u0434\u0438\u043d \u0430\u0442\u0440\u0456\u0431\u0443\u0442 \u0434\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u0438\u0439 \u0434\u043b\u044f \u0441\u043e\u0440\u0442\u0443\u0432\u0430\u043d\u043d\u044f.","content-manager.notification.info.minimumFields":"\u041d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u043e \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u0445\u043e\u0447\u0430 \u0431 \u043e\u0434\u043d\u0435 \u043f\u043e\u043b\u0435.","content-manager.notification.upload.error":"\u041f\u0456\u0434 \u0447\u0430\u0441 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0444\u0430\u0439\u043b\u0456\u0432 \u0441\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.","content-manager.pageNotFound":"\u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0430 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u0430","content-manager.plugin.description.long":"\u0428\u0432\u0438\u0434\u043a\u0438\u0439 \u0441\u043f\u043e\u0441\u0456\u0431 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434\u0443, \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0430 \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u0434\u0430\u043d\u0438\u0445 \u0443 \u0432\u0430\u0448\u0456\u0439 \u0431\u0430\u0437\u0456 \u0434\u0430\u043d\u0438\u0445.","content-manager.plugin.description.short":"\u0428\u0432\u0438\u0434\u043a\u0438\u0439 \u0441\u043f\u043e\u0441\u0456\u0431 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434\u0443, \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0430 \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u043d\u044f \u0434\u0430\u043d\u0438\u0445 \u0443 \u0432\u0430\u0448\u0456\u0439 \u0431\u0430\u0437\u0456 \u0434\u0430\u043d\u0438\u0445.","content-manager.popUpWarning.bodyMessage.contentType.delete":"\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0446\u0435\u0439 \u0437\u0430\u043f\u0438\u0441?","content-manager.popUpWarning.bodyMessage.contentType.delete.all":"\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0446\u0456 \u0437\u0430\u043f\u0438\u0441\u0438?","content-manager.popUpWarning.warning.cancelAllSettings":"\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0441\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0441\u0432\u043e\u0457 \u0437\u043c\u0456\u043d\u0438?","content-manager.popUpWarning.warning.updateAllSettings":"\u0426\u0435 \u0437\u043c\u0456\u043d\u0438\u0442\u044c \u0432\u0441\u0456 \u0432\u0430\u0448\u0456 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f","content-manager.success.record.delete":"\u0412\u0438\u0434\u0430\u043b\u0435\u043d\u043e","content-manager.success.record.save":"\u0417\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043e","form.button.done":"\u0413\u043e\u0442\u043e\u0432\u043e","form.button.finish":"\u0417\u0430\u043a\u0456\u043d\u0447\u0438\u0442\u0438","global.prompt.unsaved":"\u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0437\u0430\u043b\u0438\u0448\u0438\u0442\u0438 \u0446\u044e \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0443? \u0412\u0441\u0456 \u0432\u0430\u0448\u0456 \u0437\u043c\u0456\u043d\u0438 \u0431\u0443\u0434\u0443\u0442\u044c \u0432\u0442\u0440\u0430\u0447\u0435\u043d\u0456","notification.contentType.relations.conflict":"Content-Type \u043c\u0430\u0454 \u043a\u043e\u043d\u0444\u043b\u0456\u043a\u0442 \u0437\u0432\'\u044f\u0437\u043a\u0456\u0432","notification.error":"\u0421\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430","notification.error.layout":"\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u043e\u0442\u0440\u0438\u043c\u0430\u0442\u0438 \u043c\u0430\u043a\u0435\u0442","notification.form.error.fields":"\u0424\u043e\u0440\u043c\u0430 \u043c\u0456\u0441\u0442\u0438\u0442\u044c \u0434\u0435\u044f\u043a\u0456 \u043f\u043e\u043c\u0438\u043b\u043a\u0438","notification.form.success.fields":"\u0417\u043c\u0456\u043d\u0438 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043e","notification.success.delete":"\u0426\u0435\u0439 \u0435\u043b\u0435\u043c\u0435\u043d\u0442 \u0431\u0443\u0432 \u0432\u0438\u0434\u0430\u043b\u0435\u043d\u0438\u0439","request.error.model.unknown":"\u0426\u0456\u0454\u0457 \u043c\u043e\u0434\u0435\u043b\u0456 \u0434\u0430\u043d\u043d\u0438\u0445 \u043d\u0435 \u0456\u0441\u043d\u0443\u0454"}')}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[695],{16540:(e,t,n)=>{"use strict";e.exports=n(67468)},67468:function(e,t,n){var r,a;e.exports=(r=n(32735),a=n(19615),function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=109)}({0:function(e,t,n){e.exports=n(17)()},1:function(e,t){e.exports=r},10:function(e,t,n){var r=n(23),a=n(24),o=n(20),i=n(25);e.exports=function(e,t){return r(e)||a(e,t)||o(e,t)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},109:function(e,t,n){"use strict";n.r(t),n.d(t,"Main",(function(){return v})),n.d(t,"SkipToContent",(function(){return _}));var r,a=n(6),o=n.n(a),i=n(5),s=n.n(i),u=n(3),l=n.n(u),c=n(1),d=n.n(c),f=n(0),p=n.n(f),m=n(2),g=n.n(m),b=["labelledBy"],h=g.a.main(r||(r=l()(["\n // To prevent global outline on focus visible to force an outline when Main is focused\n &:focus-visible {\n outline: none;\n }\n"]))),v=function(e){var t=e.labelledBy,n=s()(e,b),r=t||"main-content-title";return d.a.createElement(h,o()({"aria-labelledby":r,id:"main-content",tabIndex:-1},n))};v.defaultProps={labelledBy:void 0},v.propTypes={labelledBy:p.a.string};var y,x=n(4),O=g()(x.Box)(y||(y=l()(["\n text-decoration: none;\n position: absolute;\n z-index: 9999;\n left: -100%;\n top: -100%;\n\n &:focus {\n left: ",";\n top: ",";\n }\n"])),(function(e){return e.theme.spaces[3]}),(function(e){return e.theme.spaces[3]})),_=function(e){var t=e.children;return d.a.createElement(O,{as:"a",href:"#main-content",background:"primary600",color:"neutral0",padding:3,hasRadius:!0},t)};_.propTypes={children:p.a.node.isRequired}},13:function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?(e.exports=n=function(e){return typeof e},e.exports.default=e.exports,e.exports.__esModule=!0):(e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.default=e.exports,e.exports.__esModule=!0),n(t)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},17:function(e,t,n){"use strict";var r=n(18);function a(){}function o(){}o.resetWarningCache=a,e.exports=function(){function e(e,t,n,a,o,i){if(i!==r){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:a};return n.PropTypes=n,n}},18:function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},19:function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r},e.exports.default=e.exports,e.exports.__esModule=!0},2:function(e,t){e.exports=a},20:function(e,t,n){var r=n(19);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!0},22:function(e,t){e.exports=function(e,t){if(null==e)return{};var n,r,a={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(a[n]=e[n]);return a},e.exports.default=e.exports,e.exports.__esModule=!0},23:function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.default=e.exports,e.exports.__esModule=!0},24:function(e,t){e.exports=function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,o=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){s=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw a}}return o}},e.exports.default=e.exports,e.exports.__esModule=!0},25:function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},3:function(e,t){e.exports=function(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))},e.exports.default=e.exports,e.exports.__esModule=!0},4:function(e,t,n){"use strict";n.r(t),n.d(t,"Box",(function(){return f}));var r,a=n(3),o=n.n(a),i=n(0),s=n.n(i),u=n(2),l=n.n(u),c=n(7),d={color:!0},f=l.a.div.withConfig({shouldForwardProp:function(e,t){return!d[e]&&t(e)}})(r||(r=o()(["\n // Font\n font-size: ",";\n\n // Colors\n background: ",";\n color: ",";\n\n // Spaces\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n ","\n\n // Responsive hiding\n ","\n ","\n \n\n // Borders\n border-radius: ",";\n border-style: ",";\n border-width: ",";\n border-color: ",";\n border: ",";\n\n // Shadows\n box-shadow: ",";\n\n // Handlers\n pointer-events: ",";\n &:hover {\n ","\n }\n\n // Display\n display: ",";\n\n // Position\n position: ",";\n left: ",";\n right: ",";\n top: ",";\n bottom: ",";\n z-index: ",";\n overflow: ",";\n cursor: ",";\n\n // Size\n width: ",";\n max-width: ",";\n min-width: ",";\n height: ",";\n max-height: ",";\n min-height: ",";\n\n // Animation\n transition: ",";\n transform: ",";\n animation: ",";\n\n //Flexbox children props\n flex-shrink: ",";\n flex-grow: ",";\n flex-basis: ",";\n flex: ",";\n\n // Text\n text-align: ",";\n text-transform: ",";\n line-height: ",";\n\n // Cursor\n cursor: ",";\n"])),(function(e){var t=e.fontSize;return e.theme.fontSizes[t]||t}),(function(e){var t=e.theme,n=e.background;return t.colors[n]}),(function(e){var t=e.theme,n=e.color;return t.colors[n]}),(function(e){var t=e.theme,n=e.padding;return Object(c.a)("padding",n,t)}),(function(e){var t=e.theme,n=e.paddingTop;return Object(c.a)("padding-top",n,t)}),(function(e){var t=e.theme,n=e.paddingRight;return Object(c.a)("padding-right",n,t)}),(function(e){var t=e.theme,n=e.paddingBottom;return Object(c.a)("padding-bottom",n,t)}),(function(e){var t=e.theme,n=e.paddingLeft;return Object(c.a)("padding-left",n,t)}),(function(e){var t=e.theme,n=e.marginLeft;return Object(c.a)("margin-left",n,t)}),(function(e){var t=e.theme,n=e.marginRight;return Object(c.a)("margin-right",n,t)}),(function(e){var t=e.theme,n=e.marginTop;return Object(c.a)("margin-top",n,t)}),(function(e){var t=e.theme,n=e.marginBottom;return Object(c.a)("margin-bottom",n,t)}),(function(e){var t=e.theme;return e.hiddenS?"".concat(t.mediaQueries.tablet," { display: none; }"):void 0}),(function(e){var t=e.theme;return e.hiddenXS?"".concat(t.mediaQueries.mobile," { display: none; }"):void 0}),(function(e){var t=e.theme,n=e.hasRadius,r=e.borderRadius;return n?t.borderRadius:r}),(function(e){return e.borderStyle}),(function(e){return e.borderWidth}),(function(e){var t=e.borderColor;return e.theme.colors[t]}),(function(e){var t=e.theme,n=e.borderColor,r=e.borderStyle,a=e.borderWidth;if(n&&!r&&!a)return"1px solid ".concat(t.colors[n])}),(function(e){var t=e.theme,n=e.shadow;return t.shadows[n]}),(function(e){return e.pointerEvents}),(function(e){var t=e._hover,n=e.theme;return t?t(n):void 0}),(function(e){return e.display}),(function(e){return e.position}),(function(e){var t=e.left;return e.theme.spaces[t]||t}),(function(e){var t=e.right;return e.theme.spaces[t]||t}),(function(e){var t=e.top;return e.theme.spaces[t]||t}),(function(e){var t=e.bottom;return e.theme.spaces[t]||t}),(function(e){return e.zIndex}),(function(e){return e.overflow}),(function(e){return e.cursor}),(function(e){var t=e.width;return e.theme.spaces[t]||t}),(function(e){var t=e.maxWidth;return e.theme.spaces[t]||t}),(function(e){var t=e.minWidth;return e.theme.spaces[t]||t}),(function(e){var t=e.height;return e.theme.spaces[t]||t}),(function(e){var t=e.maxHeight;return e.theme.spaces[t]||t}),(function(e){var t=e.minHeight;return e.theme.spaces[t]||t}),(function(e){return e.transition}),(function(e){return e.transform}),(function(e){return e.animation}),(function(e){return e.shrink}),(function(e){return e.grow}),(function(e){return e.basis}),(function(e){return e.flex}),(function(e){return e.textAlign}),(function(e){return e.textTransform}),(function(e){return e.lineHeight}),(function(e){return e.cursor}));f.displayName="Box",f.defaultProps={background:void 0,borderColor:void 0,color:void 0,hiddenS:!1,hiddenXS:!1,padding:void 0,paddingTop:void 0,paddingRight:void 0,paddingBottom:void 0,paddingLeft:void 0,hasRadius:!1,shadow:void 0,children:null,shrink:void 0,grow:void 0,basis:void 0,flex:void 0,_hover:function(){}},f.propTypes={_hover:s.a.func,background:s.a.string,basis:s.a.oneOfType([s.a.string,s.a.string]),borderColor:s.a.string,children:s.a.oneOfType([s.a.node,s.a.string]),color:s.a.string,flex:s.a.oneOfType([s.a.string,s.a.string]),grow:s.a.oneOfType([s.a.string,s.a.string]),hasRadius:s.a.bool,hiddenS:s.a.bool,hiddenXS:s.a.bool,padding:s.a.oneOfType([s.a.number,s.a.arrayOf(s.a.number)]),paddingBottom:s.a.oneOfType([s.a.number,s.a.arrayOf(s.a.number)]),paddingLeft:s.a.oneOfType([s.a.number,s.a.arrayOf(s.a.number)]),paddingRight:s.a.oneOfType([s.a.number,s.a.arrayOf(s.a.number)]),paddingTop:s.a.oneOfType([s.a.number,s.a.arrayOf(s.a.number)]),shadow:s.a.string,shrink:s.a.oneOfType([s.a.string,s.a.string])}},5:function(e,t,n){var r=n(22);e.exports=function(e,t){if(null==e)return{};var n,a,o=r(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(a=0;a<i.length;a++)n=i[a],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o},e.exports.default=e.exports,e.exports.__esModule=!0},6:function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},e.exports.default=e.exports,e.exports.__esModule=!0,n.apply(this,arguments)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},7:function(e,t,n){"use strict";var r=n(10),a=n.n(r),o=n(13),i=n.n(o);t.a=function(e,t,n){var r=t;if(Array.isArray(t)||"object"!==i()(t)||(r=[null==t?void 0:t.desktop,null==t?void 0:t.tablet,null==t?void 0:t.mobile]),void 0!==r){if(Array.isArray(r)){var o=r,s=a()(o,3),u=s[0],l=s[1],c=s[2],d="".concat(e,": ").concat(n.spaces[u],";");return void 0!==l&&(d+="".concat(n.mediaQueries.tablet,"{\n ").concat(e,": ").concat(n.spaces[l],";\n }")),void 0!==c&&(d+="".concat(n.mediaQueries.mobile,"{\n ").concat(e,": ").concat(n.spaces[c],";\n }")),d}var f=n.spaces[r]||r;return"".concat(e,": ").concat(f,";")}}}}))},74902:(e,t,n)=>{"use strict";var r=n(98399),a=n(34398),o=n(87002);Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.SettingsPage=void 0;var i=a(n(67945)),s=a(n(85374)),u=a(n(43408)),l=j(n(32735)),c=n(99357),d=n(5636),f=n(10938),p=a(n(88677)),m=n(9808),g=n(19192),b=n(63865),h=n(95602),v=n(44526),y=n(16540),x=n(90662),O=n(78330),_=n(11856),T=a(n(43653)),S=a(n(89793)),k=n(8367),E=a(n(26831)),M=j(n(74445)),w=a(n(95970));function C(e){if("function"!==typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(C=function(e){return e?n:t})(e)}function j(e,t){if(!t&&e&&e.__esModule)return e;if(null===e||"object"!==o(e)&&"function"!==typeof e)return{default:e};var n=C(t);if(n&&n.has(e))return n.get(e);var r={},a=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if("default"!==i&&Object.prototype.hasOwnProperty.call(e,i)){var s=a?Object.getOwnPropertyDescriptor(e,i):null;s&&(s.get||s.set)?Object.defineProperty(r,i,s):r[i]=e[i]}return r.default=e,n&&n.set(e,r),r}var D=function(){var e=(0,d.useIntl)().formatMessage,t=(0,f.useOverlayBlocker)(),n=t.lockApp,a=t.unlockApp,o=(0,f.useNotification)();(0,f.useFocusWhenNavigate)();var w=(0,l.useReducer)(M.default,M.initialState,E.default),C=(0,u.default)(w,2),j=C[0],D=j.initialData,P=j.isLoading,z=j.isSubmiting,I=j.modifiedData,R=C[1],A=(0,l.useRef)(!0);(0,l.useEffect)((function(){var e=T.default.CancelToken.source(),t=function(){var t=(0,s.default)(i.default.mark((function t(){var n,a;return i.default.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,k.axiosInstance.get((0,k.getRequestUrl)("settings"),{cancelToken:e.token});case 3:n=t.sent,a=n.data.data,R({type:"GET_DATA_SUCCEEDED",data:a}),t.next=11;break;case 8:t.prev=8,t.t0=t.catch(0),r.error(t.t0);case 11:case"end":return t.stop()}}),t,null,[[0,8]])})));return function(){return t.apply(this,arguments)}}();return A.current&&t(),function(){e.cancel("Operation canceled by the user."),A.current=!1}}),[]);var L=(0,S.default)(D,I),B=function(){var e=(0,s.default)(i.default.mark((function e(t){return i.default.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(t.preventDefault(),!L){e.next=3;break}return e.abrupt("return");case 3:return n(),R({type:"ON_SUBMIT"}),e.prev=5,e.next=8,k.axiosInstance.put((0,k.getRequestUrl)("settings"),I);case 8:R({type:"SUBMIT_SUCCEEDED"}),o({type:"success",message:{id:"notification.form.success.fields"}}),e.next=16;break;case 12:e.prev=12,e.t0=e.catch(5),r.error(e.t0),R({type:"ON_SUBMIT_ERROR"});case 16:a();case 17:case"end":return e.stop()}}),e,null,[[5,12]])})));return function(t){return e.apply(this,arguments)}}(),U=function(e){var t=e.target,n=t.name,r=t.value;R({type:"ON_CHANGE",keys:n,value:r})};return l.default.createElement(y.Main,{tabIndex:-1},l.default.createElement(c.Helmet,{title:e({id:(0,k.getTrad)("page.title"),defaultMessage:"Settings - Media Libray"})}),l.default.createElement("form",{onSubmit:B},l.default.createElement(_.HeaderLayout,{title:e({id:(0,k.getTrad)("settings.header.label"),defaultMessage:"Media Library"}),primaryAction:l.default.createElement(v.Button,{disabled:L,"data-testid":"save-button",loading:z,type:"submit",startIcon:l.default.createElement(p.default,null),size:"L"},e({id:"app.components.Button.save",defaultMessage:"Save"})),subtitle:e({id:(0,k.getTrad)("settings.sub-header.label"),defaultMessage:"Configure the settings for the Media Library"})}),l.default.createElement(_.ContentLayout,null,P?l.default.createElement(f.LoadingIndicatorPage,null):l.default.createElement(_.Layout,null,l.default.createElement(x.Stack,{spacing:12},l.default.createElement(m.Box,{background:"neutral0",padding:6,shadow:"filterShadow",hasRadius:!0},l.default.createElement(x.Stack,{spacing:4},l.default.createElement(g.Flex,null,l.default.createElement(h.Typography,{variant:"delta",as:"h2"},e({id:(0,k.getTrad)("settings.blockTitle"),defaultMessage:"Asset management"}))),l.default.createElement(O.Grid,{gap:6},l.default.createElement(O.GridItem,{col:6,s:12},l.default.createElement(b.ToggleInput,{"aria-label":"responsiveDimensions","data-testid":"responsiveDimensions",checked:I.responsiveDimensions,hint:e({id:(0,k.getTrad)("settings.form.responsiveDimensions.description"),defaultMessage:"Enabling this option will generate multiple formats (small, medium and large) of the uploaded asset."}),label:e({id:(0,k.getTrad)("settings.form.responsiveDimensions.label"),defaultMessage:"Responsive friendly upload"}),name:"responsiveDimensions",offLabel:e({id:"app.components.ToggleCheckbox.off-label",defaultMessage:"Off"}),onLabel:e({id:"app.components.ToggleCheckbox.on-label",defaultMessage:"On"}),onChange:function(e){U({target:{name:"responsiveDimensions",value:e.target.checked}})}})),l.default.createElement(O.GridItem,{col:6,s:12},l.default.createElement(b.ToggleInput,{"aria-label":"sizeOptimization","data-testid":"sizeOptimization",checked:I.sizeOptimization,hint:e({id:(0,k.getTrad)("settings.form.sizeOptimization.description"),defaultMessage:"Enabling this option will reduce the image size and slightly reduce its quality."}),label:e({id:(0,k.getTrad)("settings.form.sizeOptimization.label"),defaultMessage:"Size optimization"}),name:"sizeOptimization",offLabel:e({id:"app.components.ToggleCheckbox.off-label",defaultMessage:"Off"}),onLabel:e({id:"app.components.ToggleCheckbox.on-label",defaultMessage:"On"}),onChange:function(e){U({target:{name:"sizeOptimization",value:e.target.checked}})}})),l.default.createElement(O.GridItem,{col:6,s:12},l.default.createElement(b.ToggleInput,{"aria-label":"autoOrientation","data-testid":"autoOrientation",checked:I.autoOrientation,hint:e({id:(0,k.getTrad)("settings.form.autoOrientation.description"),defaultMessage:"Enabling this option will automatically rotate the image according to EXIF orientation tag."}),label:e({id:(0,k.getTrad)("settings.form.autoOrientation.label"),defaultMessage:"Auto orientation"}),name:"autoOrientation",offLabel:e({id:"app.components.ToggleCheckbox.off-label",defaultMessage:"Off"}),onLabel:e({id:"app.components.ToggleCheckbox.on-label",defaultMessage:"On"}),onChange:function(e){U({target:{name:"autoOrientation",value:e.target.checked}})}}))))))))))};t.SettingsPage=D;var P=function(){return l.default.createElement(f.CheckPagePermissions,{permissions:w.default.settings},l.default.createElement(D,null))};t.default=P},26831:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=function(e){return e};t.default=n},74445:(e,t,n)=>{"use strict";var r=n(34398);Object.defineProperty(t,"__esModule",{value:!0}),t.initialState=t.default=void 0;var a=r(n(59571)),o=r(n(38317)),i=r(n(3040));t.initialState={isLoading:!0,isSubmiting:!1,initialData:{responsiveDimensions:!0,sizeOptimization:!0,autoOrientation:!1,videoPreview:!1},modifiedData:{responsiveDimensions:!0,sizeOptimization:!0,autoOrientation:!1,videoPreview:!1}};var s=function(e,t){return(0,o.default)(e,(function(n){switch(t.type){case"CANCEL_CHANGES":n.modifiedData=e.initialData;break;case"GET_DATA_SUCCEEDED":n.isLoading=!1,n.initialData=t.data,n.modifiedData=t.data;break;case"ON_CHANGE":(0,i.default)(n,["modifiedData"].concat((0,a.default)(t.keys.split("."))),t.value);break;case"ON_SUBMIT":n.isSubmiting=!0;break;case"SUBMIT_SUCCEEDED":n.initialData=e.modifiedData,n.isSubmiting=!1;break;case"ON_SUBMIT_ERROR":n.isSubmiting=!1;break;default:return e}}))};t.default=s}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[4021],{43755:e=>{e.exports=JSON.parse('{"button.next":"Weiter","checkControl.crop-duplicate":"Duplizieren & zuschneiden","checkControl.crop-original":"Orginal zuschneiden","control-card.add":"Hinzuf\xfcgen","control-card.cancel":"Abbrechen","control-card.copy-link":"Link kopieren","control-card.crop":"Zuschneiden","control-card.delete":"L\xf6schen","control-card.download":"Herunterladen","control-card.edit":"Bearbeiten","control-card.replace-media":"Datei ersetzen","control-card.save":"Speichern","filter.add":"Filter hinzuf\xfcgen","form.button.replace-media":"Datei ersetzen","form.input.decription.file-alt":"Dieser Text wird angezeigt, wenn das Datei nicht angezeigt werden kann.","form.input.label.file-alt":"Alternativtext","form.input.label.file-caption":"Bildtext","form.input.label.file-name":"Dateiname","form.upload-url.error.url.invalid":"Eine URL ist ung\xfcltig","form.upload-url.error.url.invalids":"{number} URLs sind ung\xfcltig","header.actions.upload-assets":"Dateien hochladen","header.content.assets-empty":"Keine Dateien","header.content.assets-multiple":"{number} Dateien","header.content.assets-single":"1 Datei","input.button.label":"Dateien durchsuchen","input.label-bold":"Drag & Drop","input.label-normal":"zum Hochladen oder","input.placeholder":"Klicke hier, um eine Datei auszuw\xe4hlen oder Drag & Drop eine Datei in diesen Bereich.","input.url.description":"Eine URL pro Zeile.","input.url.label":"URL","list.assets-empty.subtitle":"F\xfcge welche der Liste hinzu.","list.assets-empty.title":"Keine Dateien vorhanden.","list.assets-empty.title-withSearch":"Es existieren keine Dateien f\xfcr die gew\xe4hlten Filterkriterien.","list.assets.type-not-allowed":"Dieser Dateityp ist nicht zul\xe4ssig.","modal.file-details.date":"Datum","modal.file-details.dimensions":"Abmessungen","modal.file-details.extension":"Dateityp","modal.file-details.size":"Gr\xf6\xdfe","modal.header.browse":"Dateien hochladen","modal.header.file-detail":"Details","modal.header.pending-assets":"Ausstehende Dateien","modal.header.select-files":"W\xe4hle Dateien","modal.nav.browse":"durchsuchen","modal.nav.computer":"vom Computer","modal.nav.selected":"ausgew\xe4hlt","modal.nav.url":"von einer URL","modal.selected-list.sub-header-subtitle":"Drag & Drop, um die Dateien in diesem Bereich anzuordnen.","modal.upload-list.sub-header-subtitle":"Dateien bearbeiten vor dem Hochladen in die Bibliothek","modal.upload-list.sub-header.button":"Dateien hinzuf\xfcgen","plugin.description.long":"Bilder, Video, PDF Dateiverwaltung.","plugin.description.short":"Dateiverwaltung.","plugin.name":"Medienbibliothek","search.placeholder":"Nach einer Datei suchen...","settings.form.autoOrientation.description":"Automatisch Bilder nach EXIF Richtungstag orientieren","settings.form.autoOrientation.label":"Automatische Bildorientierung aktivieren","settings.form.responsiveDimensions.description":"Generiere automatisch mehrere Formate (klein, mittel, gro\xdf) der hochgeladenen Datei.","settings.form.responsiveDimensions.label":"Automatische Formaterstellung aktivieren.","settings.form.sizeOptimization.label":"Gr\xf6\xdfenoptimierung (ohne Qualit\xe4tsverlust) aktivieren.","settings.form.videoPreview.description":"Generiere eine sechs Sekunden lange Vorschau (GIF) des Videos.","settings.form.videoPreview.label":"Vorschau","settings.header.label":"Medienbibliothek - Einstellungen","settings.section.image.label":"BILD","settings.section.video.label":"VIDEO","settings.sub-header.label":"Einstellungen f\xfcr die Medienbibliothek vornehmen","sort.created_at_asc":"\xc4lteste Uploads","sort.created_at_desc":"Neuste Uploads","sort.label":"Sortieren nach","sort.name_asc":"Alphabetisch absteigend (A bis Z)","sort.name_desc":"Alphabetisch aufsteigend (Z bis A)","sort.updated_at_asc":"\xc4lteste \xc4nderungen","sort.updated_at_desc":"Neuste \xc4nderungen","window.confirm.close-modal.file":"Bist du sicher? Deine \xc4nderungen gehen verloren.","window.confirm.close-modal.files":"Bist du sicher? Es gibt ein paar Dateien, welche noch nicht hochgeladen wurden."}')}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[7465],{71085:e=>{e.exports=JSON.parse('{"bulk.select.label":"V\xe6lg alle medier","button.next":"N\xe6ste","checkControl.crop-duplicate":"Duplik\xe9r og besk\xe6r","checkControl.crop-original":"Besk\xe6r originalen","control-card.add":"Tilf\xf8j","control-card.cancel":"Annuller","control-card.copy-link":"Kopier link","control-card.crop":"Besk\xe6r","control-card.delete":"Slet","control-card.download":"Download","control-card.edit":"Redig\xe9r","control-card.replace-media":"Erstat medie","control-card.save":"Gem","control-card.stop-crop":"Stop besk\xe6ring","filter.add":"Tilf\xf8j filter","form.button.replace-media":"Erstat medie","form.input.decription.file-alt":"Teksten bliver vist hvis mediet ikke kan vises.","form.input.label.file-alt":"Alternativ tekst","form.input.label.file-caption":"Billedeskrift","form.input.label.file-name":"Filnavn","form.upload-url.error.url.invalid":"En URL er ugyldig","form.upload-url.error.url.invalids":"{number} URLer er ugyldige","header.actions.upload-assets":"Upload medier","header.actions.upload-new-asset":"Upload medie","header.content.assets-empty":"Ingen medier","header.content.assets-multiple":"{number} medier","header.content.assets-single":"1 medie","input.button.label":"V\xe6lg filer","input.label":"Drag & Drop her eller","input.label-bold":"Drag & drop","input.label-normal":"at uplaode eller","input.placeholder":"Klik for at v\xe6lge et medie eller drag & drop en fil i dette omr\xe5de","input.placeholder.icon":"Giv slip p\xe5 mediet i dette omr\xe5de","input.url.description":"Adskil dine URL links med enter.","input.url.label":"URL","list.asset.at.finished":"Mediet er f\xe6rdigt med at loade.","list.asset.load":"Henter medieliste","list.assets-empty.search":"Ingen resultater fundet","list.assets-empty.subtitle":"Tilf\xf8j en til listen.","list.assets-empty.title":"Der er ingen medier endnu","list.assets-empty.title-withSearch":"Der er ingen medier med de valgte filtre","list.assets.empty":"Upload dit f\xf8rste medie...","list.assets.empty.no-permissions":"Medielisten er tom.","list.assets.loading-asset":"Henter forh\xe5ndsvisning for mediet: {path}","list.assets.not-supported-content":"Ingen forh\xe5ndsvisning mulig","list.assets.preview-asset":"Forh\xe5ndsvisning af videoen her {path}","list.assets.selected":"{number, plural, =0 {Ingen medier} one {1 medie} other {# medier}} valgt","list.assets.type-not-allowed":"Filtypen er ikke tilladt.","mediaLibraryInput.actions.nextSlide":"N\xe6ste slide","mediaLibraryInput.actions.previousSlide":"Forrige slide","mediaLibraryInput.placeholder":"Klik for at v\xe6lge et medie eller drag & drop et i dette omr\xe5de","mediaLibraryInput.slideCount":"{n} af {m} slides","modal.edit.title":"Detaljer","modal.file-details.date":"Dato","modal.file-details.dimensions":"Dimensioner","modal.file-details.extension":"Endelse","modal.file-details.size":"St\xf8rrelse","modal.header.browse":"Upload medie","modal.header.file-detail":"Detaljer","modal.header.pending-assets":"Afventende medier","modal.header.select-files":"Valgte filer","modal.nav.browse":"v\xe6lg","modal.nav.computer":"fra computer","modal.nav.selected":"valgte","modal.nav.url":"fra url","modal.remove.success-label":"Mediet er blevet slettet.","modal.selected-list.sub-header-subtitle":"Drag & drop for at arrangere medierne i feltet","modal.upload-list.sub-header-subtitle":"Ret mediet inden tilf\xf8jelse til medie biblioteket","modal.upload-list.sub-header.button":"Tilf\xf8j flere medier","modal.upload.cancelled":"Upload annulleret manuelt.","page.title":"Indstillinger - Medier","permissions.not-allowed.update":"Du har ikke tilladelse til at redigere denne fil.","plugin.description.long":"Media filh\xe5ndtering.","plugin.description.short":"Media filh\xe5ndtering.","plugin.name":"Medier","search.clear.label":"Ryd s\xf8gning","search.label":"S\xf8g efter medie","search.placeholder":"S\xf8g efter medier...","settings.blockTitle":"Medieh\xe5ndtering","settings.form.autoOrientation.description":"Automatisk roter billede baseret p\xe5 EXIF orientering","settings.form.autoOrientation.label":"Aktiv\xe9r auto orientering","settings.form.responsiveDimensions.description":"Automatisk generering af st\xf8rrelser (stor, mellem og lille) af oploaded medie","settings.form.responsiveDimensions.label":"Aktiv\xe9r responsiv upload","settings.form.sizeOptimization.label":"Aktiv\xe9r st\xf8rrelsesoptimering (uden kvalitetstab)","settings.form.videoPreview.description":"Genererer et 6 sekund preview af videoen (GIF)","settings.form.videoPreview.label":"Preview","settings.header.label":"Medier - Indstillinger","settings.section.doc.label":"Doc","settings.section.image.label":"BILLEDE","settings.section.video.label":"VIDEO","settings.sub-header.label":"Konfigur\xe9r indstillinger for medie biblioteket","sort.created_at_asc":"\xc6ldste uploads","sort.created_at_desc":"Nyeste uploads","sort.label":"Sorter efter","sort.name_asc":"Alfabetisk (A til Z)","sort.name_desc":"Omvendt alfabetisk (Z til A)","sort.updated_at_asc":"\xc6ldste opdatering","sort.updated_at_desc":"Nyeste opdatering","tabs.title":"Hvordan \xf8nsker du at uploade dine medier?","window.confirm.close-modal.file":"Er du sikker? Dine \xe6ndringer g\xe5r tabt.","window.confirm.close-modal.files":"Er du sikker? Du har filer som ikke er blevet uploaded endnu."}')}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[6434],{53633:e=>{e.exports=JSON.parse('{"bulk.select.label":"Select all assets","button.next":"Next","checkControl.crop-duplicate":"Duplicate & crop the asset","checkControl.crop-original":"Crop the original asset","control-card.add":"Add","control-card.cancel":"Cancel","control-card.copy-link":"Copy link","control-card.crop":"Crop","control-card.delete":"Delete","control-card.download":"Download","control-card.edit":"Edit","control-card.replace-media":"Replace Media","control-card.save":"Save","control-card.stop-crop":"Stop cropping","filter.add":"Add filter","form.button.replace-media":"Replace media","form.input.decription.file-alt":"This text will be displayed if the asset can\u2019t be shown.","form.input.label.file-alt":"Alternative text","form.input.label.file-caption":"Caption","form.input.label.file-name":"File name","form.upload-url.error.url.invalid":"One URL is invalid","form.upload-url.error.url.invalids":"{number} URLs are invalids","header.actions.add-assets":"Add new assets","header.actions.upload-assets":"Upload assets","header.actions.upload-new-asset":"Upload new asset","header.content.assets-empty":"No assets","header.content.assets-multiple":"{number} assets","header.content.assets-single":"1 asset","input.button.label":"Browse files","input.label":"Drag & Drop here or","input.label-bold":"Drag & drop","input.label-normal":"to upload or","input.placeholder":"Click to add an asset or drag & drop a file in this area","input.placeholder.icon":"Drop the asset in this zone","input.url.description":"Separate your URL links by a carriage return.","input.url.label":"URL","list.asset.at.finished":"The assets have finished loading.","list.asset.load":"Loading the asset list.","list.assets-empty.search":"No result found","list.assets-empty.subtitle":"Add one to the list.","list.assets-empty.title":"There are no assets yet","list.assets-empty.title-withSearch":"There are no assets with the applied filters","list.assets.empty":"Upload your first assets...","list.assets.empty.no-permissions":"The asset list is empty.","list.assets.loading-asset":"Loading the preview for the media: {path}","list.assets.not-supported-content":"No preview available","list.assets.preview-asset":"Preview for the video at path {path}","list.assets.selected":"{number, plural, =0 {No asset} one {1 asset} other {# assets}} ready to upload","list.assets.type-not-allowed":"This type of file is not allowed.","mediaLibraryInput.actions.nextSlide":"Next slide","mediaLibraryInput.actions.previousSlide":"Previous slide","mediaLibraryInput.placeholder":"Click to add an asset or drag and drop one in this area","mediaLibraryInput.slideCount":"{n} of {m} slides","modal.edit.title":"Details","modal.file-details.date":"Date","modal.file-details.dimensions":"Dimensions","modal.file-details.extension":"Extension","modal.file-details.size":"Size","modal.header.browse":"Upload assets","modal.header.file-detail":"Details","modal.header.pending-assets":"Pending assets","modal.header.select-files":"Selected files","modal.nav.browse":"browse","modal.nav.computer":"From computer","modal.nav.selected":"selected","modal.nav.url":"From url","modal.remove.success-label":"The asset has been successfully removed.","modal.selected-list.sub-header-subtitle":"Drag & drop to reorder the assets in the field","modal.upload-list.footer.button":"Upload {number, plural, one {# asset} other {# assets}} to the library","modal.upload-list.sub-header-subtitle":"Manage the assets before adding them to the Media Library","modal.upload-list.sub-header.button":"Add more assets","modal.upload.cancelled":"Upload manually aborted.","page.title":"Settings - Media Library","permissions.not-allowed.update":"You are not allowed to edit this file.","plugin.description.long":"Media file management.","plugin.description.short":"Media file management.","plugin.name":"Media Library","search.clear.label":"Clear the search","search.label":"Search for an asset","search.placeholder":"e.g: the first dog on the moon","settings.blockTitle":"Asset Management","settings.form.autoOrientation.description":"Enabling this option will automatically rotate the image according to EXIF orientation tag.","settings.form.autoOrientation.label":"Auto orientation","settings.form.responsiveDimensions.description":"Enabling this option will generate multiple formats (small, medium and large) of the uploaded asset.","settings.form.responsiveDimensions.label":"Responsive friendly upload","settings.form.sizeOptimization.description":"Enabling this option will reduce the image size and slightly reduce its quality.","settings.form.sizeOptimization.label":"Size optimization","settings.form.videoPreview.description":"It will generate a six-second preview of the video (GIF)","settings.form.videoPreview.label":"Preview","settings.header.label":"Media Library","settings.section.doc.label":"Doc","settings.section.image.label":"Image","settings.section.video.label":"Video","settings.sub-header.label":"Configure the settings for the Media Library","sort.created_at_asc":"Oldest uploads","sort.created_at_desc":"Most recent uploads","sort.label":"Sort by","sort.name_asc":"Alphabetical order (A to Z)","sort.name_desc":"Reverse alphabetical order (Z to A)","sort.updated_at_asc":"Oldest updates","sort.updated_at_desc":"Most recent updates","tabs.title":"How do you want to upload your assets?","window.confirm.close-modal.file":"Are you sure? Your changes will be lost.","window.confirm.close-modal.files":"Are you sure? You have some files that have not been uploaded yet."}')}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[1331],{6460:e=>{e.exports=JSON.parse('{"bulk.select.label":"Seleccionar todos los recursos","button.next":"Siguiente","checkControl.crop-duplicate":"Duplicar y cortar el recurso","checkControl.crop-original":"Recortar el recurso original","control-card.add":"A\xf1adir","control-card.cancel":"Cancelar","control-card.copy-link":"Copiar link","control-card.crop":"Cortar","control-card.delete":"Eliminar","control-card.download":"Descargar","control-card.edit":"Editar","control-card.replace-media":"Reemplazar multimedia","control-card.save":"Guardar","control-card.stop-crop":"Deja de recortar","filter.add":"A\xf1adir filtro","form.button.replace-media":"Reemplazar multimedia","form.input.decription.file-alt":"Este texto se mostrar\xe1 si el recurso no se puede mostrar.","form.input.label.file-alt":"Texto alternativo","form.input.label.file-caption":"Subt\xedtulo","form.input.label.file-name":"Nombre del archivo","form.upload-url.error.url.invalid":"Una URL no es v\xe1lida","form.upload-url.error.url.invalids":"{number} URL no son v\xe1lidas","header.actions.upload-assets":"Subir recursos","header.actions.upload-new-asset":"Subir nuevo recurso","header.content.assets-empty":"Sin recursos","header.content.assets-multiple":"{number} recursos","header.content.assets-single":"1 recurso","input.button.label":"Buscar archivos","input.label":"Arrastra y suelta aqu\xed o","input.label-bold":"Arrastrar","input.label-normal":"para subir o","input.placeholder":"Haga clic para seleccionar un recurso o arrastre","input.placeholder.icon":"Suelta el recurso en esta zona","input.url.description":"Separe sus enlaces URL con un salto de l\xednea.","input.url.label":"URL","list.asset.at.finished":"Los recursos han terminado de cargarse.","list.asset.load":"Cargando la lista de recursos.","list.assets-empty.search":"No se han encontrado resultados","list.assets-empty.subtitle":"Agrega uno a la lista.","list.assets-empty.title":"Todav\xeda no hay recursos","list.assets-empty.title-withSearch":"No hay recursos con los filtros aplicados","list.assets.empty":"Sube tus primeros recursos...","list.assets.empty.no-permissions":"La lista de recursos est\xe1 vac\xeda.","list.assets.loading-asset":"Cargando la vista previa de los recursos: {path}","list.assets.not-supported-content":"No hay vista previa disponible","list.assets.preview-asset":"Vista previa del video en la ruta {path}","list.assets.selected":"{number, plural, =0 {Ning\xfan recurso seleccionado} one {1 recurso seleccionado} other {# recursos seleccionados}}","list.assets.type-not-allowed":"Este tipo de archivo no est\xe1 permitido.","mediaLibraryInput.actions.nextSlide":"Siguiente","mediaLibraryInput.actions.previousSlide":"Anterior","mediaLibraryInput.placeholder":"Haga clic para seleccionar un activo o arrastre y suelte uno en esta \xe1rea","mediaLibraryInput.slideCount":"{n} de {m}","modal.edit.title":"Detalles","modal.file-details.date":"Fecha","modal.file-details.dimensions":"Dimensiones","modal.file-details.extension":"Extensi\xf3n","modal.file-details.size":"Tama\xf1o","modal.header.browse":"Subir recursos","modal.header.file-detail":"Detalles","modal.header.pending-assets":"Recursos pendientes","modal.header.select-files":"Archivos seleccionados","modal.nav.browse":"ver","modal.nav.computer":"desde el ordenador","modal.nav.selected":"seleccionado","modal.nav.url":"desde url","modal.remove.success-label":"El recurso se ha eliminado correctamente.","modal.selected-list.sub-header-subtitle":"Arrastra y suelta para reordenar los recursos en el campo","modal.upload-list.sub-header-subtitle":"Administre los activos antes de agregarlos a la Biblioteca de Medios","modal.upload-list.sub-header.button":"Agregar m\xe1s recursos","modal.upload.cancelled":"Subida anulada manualmente.","page.title":"Configuraci\xf3n: biblioteca multimedia","permissions.not-allowed.update":"No se le permite editar este archivo.","plugin.description.long":"Gesti\xf3n de archivos multimedia.","plugin.description.short":"Gesti\xf3n de archivos multimedia.","plugin.name":"Biblioteca de Multimedia","search.clear.label":"Borrar la busqueda","search.label":"Buscar un recurso","search.placeholder":"Buscar un recurso...","settings.blockTitle":"Gesti\xf3n de recursos","settings.form.autoOrientation.description":"Gire la imagen autom\xe1ticamente seg\xfan la etiqueta de orientaci\xf3n EXIF","settings.form.autoOrientation.label":"Habilitar la orientaci\xf3n autom\xe1tica","settings.form.responsiveDimensions.description":"Genera autom\xe1ticamente m\xfaltiples formatos (grande, mediano, peque\xf1o) del recurso subido","settings.form.responsiveDimensions.label":"Habilita la subida amigable","settings.form.sizeOptimization.description":"Habilitar esta opci\xf3n optimizar\xe1 el tama\xf1o del archivo sin comprometer la calidad.","settings.form.sizeOptimization.label":"Habilite la optimizaci\xf3n de tama\xf1o (sin p\xe9rdida de calidad)","settings.form.videoPreview.description":"Generar\xe1 una vista previa de seis segundos del video (GIF)","settings.form.videoPreview.label":"Vista previa","settings.header.label":"Biblioteca de Multimedia - Configuraci\xf3n","settings.section.doc.label":"Documento","settings.section.image.label":"IMAGEN","settings.section.video.label":"V\xcdDEO","settings.sub-header.label":"Configure los ajustes para la biblioteca de multimedia","sort.created_at_asc":"Subidas m\xe1s antiguas","sort.created_at_desc":"Subidas m\xe1s recientes","sort.label":"Ordenar por","sort.name_asc":"Orden alfab\xe9tico (de la A a la Z)","sort.name_desc":"Orden alfab\xe9tico inverso (de la Z a la A)","sort.updated_at_asc":"Actualizaciones m\xe1s antiguas","sort.updated_at_desc":"Actualizaciones mas recientes","tabs.title":"\xbfC\xf3mo desea cargar sus recursos?","window.confirm.close-modal.file":"\xbfEst\xe1s seguro? Tus cambios se perder\xe1n.","window.confirm.close-modal.files":"\xbfEst\xe1s seguro? Tiene algunos archivos que a\xfan no se han subido."}')}}]);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[7833],{49713:e=>{e.exports=JSON.parse('{"button.next":"Suivant","checkControl.crop-duplicate":"Dupliquer & recadrer le m\xe9dia","checkControl.crop-original":"Recadrer le m\xe9dia d\'origine","control-card.add":"Ajouter","control-card.cancel":"Annuler","control-card.copy-link":"Copier le lien","control-card.crop":"Recadrer","control-card.delete":"Supprimer","control-card.download":"T\xe9l\xe9charger","control-card.edit":"\xc9diter","control-card.replace-media":"Remplacer le m\xe9dia","control-card.save":"Sauvegarder","filter.add":"Ajouter un filtre","form.button.replace-media":"Remplacer le m\xe9dia","form.input.decription.file-alt":"Ce texte sera affich\xe9 si le m\xe9dia ne peut pas \xeatre affich\xe9.","form.input.label.file-alt":"Texte alternatif","form.input.label.file-caption":"L\xe9gende","form.input.label.file-name":"Nom du fichier","form.upload-url.error.url.invalid":"Une URL n\'est pas valide","form.upload-url.error.url.invalids":"{number} URLs ne sont pas valides","header.actions.upload-assets":"Importer des m\xe9dias","header.content.assets-empty":"Aucun m\xe9dia","header.content.assets-multiple":"{number} m\xe9dias","header.content.assets-single":"1 m\xe9dia","input.button.label":"Parcourir les fichiers","input.label-bold":"Glissez & d\xe9posez","input.label-normal":"pour importer ou","input.placeholder":"Cliquez pour s\xe9lectionner un m\xe9dia ou glissez & d\xe9posez un fichier dans cette zone","input.placeholder.icon":"Lacher le fichier dans cette zone","input.url.description":"S\xe9parez vos URLs par un retour \xe0 la ligne.","input.url.label":"URL","list.assets-empty.subtitle":"Ajoutez-en un \xe0 la liste.","list.assets-empty.title":"Il n\'y a pas encore de m\xe9dia","list.assets-empty.title-withSearch":"Il n\'y a aucun m\xe9dia avec les filtres appliqu\xe9s","list.assets.loading-asset":"Chargement du contenu pour le media {path}","list.assets.not-supported-content":"Preview non disponible","list.assets.preview-asset":"Preview de la vid\xe9o {path}","list.assets.type-not-allowed":"Ce type de fichier n\'est pas autoris\xe9.","modal.file-details.date":"Date","modal.file-details.dimensions":"Dimensions","modal.file-details.extension":"Extension","modal.file-details.size":"Taille","modal.header.browse":"Importer des m\xe9dias","modal.header.file-detail":"D\xe9tails","modal.header.pending-assets":"M\xe9dias en attente","modal.header.select-files":"Fichiers s\xe9lectionn\xe9s","modal.nav.browse":"parcourir","modal.nav.computer":"depuis l\'ordinateur","modal.nav.selected":"s\xe9lectionn\xe9(s)","modal.nav.url":"depuis une url","modal.selected-list.sub-header-subtitle":"Glissez-d\xe9posez pour r\xe9organiser les m\xe9dias dans le champ","modal.upload-list.sub-header-subtitle":"G\xe9rez les m\xe9dias avant de les ajouter \xe0 la m\xe9diath\xe8que","modal.upload-list.sub-header.button":"Ajouter plus de m\xe9dias","plugin.description.long":"Gestion des fichiers multim\xe9dias.","plugin.description.short":"Gestion des fichiers multim\xe9dias.","plugin.name":"M\xe9diath\xe8que","search.placeholder":"Rechercher un m\xe9dia...","settings.form.autoOrientation.description":"Faire pivoter automatiquement l\'image selon les EXIF d\'orientation","settings.form.autoOrientation.label":"Activer l\'orientation automatique","settings.form.responsiveDimensions.description":"G\xe9n\xe8re automatiquement plusieurs formats (grand, moyen, petit) du m\xe9dia import\xe9","settings.form.responsiveDimensions.label":"Activer le t\xe9l\xe9chargement \\"responsive friendly\\"","settings.form.sizeOptimization.description":"Activer cette option r\xe9duira la taille des images en baissant l\xe9g\xe8rement leur qualit\xe9","settings.form.sizeOptimization.label":"Optimisation de la taille","settings.form.videoPreview.description":"G\xe9n\xe8re un aper\xe7u de six secondes de la vid\xe9o (GIF)","settings.form.videoPreview.label":"Aper\xe7u","settings.header.label":"M\xe9diath\xe8que - R\xe9glages","settings.section.image.label":"IMAGE","settings.section.video.label":"VID\xc9O","settings.sub-header.label":"Configurer les param\xe8tres de la m\xe9diath\xe8que","settings.blockTitle":"Gestion des fichiers","sort.created_at_asc":"Importations les plus anciennes","sort.created_at_desc":"Importations les plus r\xe9centes","sort.label":"Trier par","sort.name_asc":"Ordre alphab\xe9tique (A \xe0 Z)","sort.name_desc":"Ordre alphab\xe9tique invers\xe9 (Z \xe0 A)","sort.updated_at_asc":"Modifications les plus anciennes","sort.updated_at_desc":"Modifications les plus r\xe9centes","window.confirm.close-modal.file":"\xcates-vous s\xfbr ? Vos modifications seront perdues.","window.confirm.close-modal.files":"\xcates-vous s\xfbr ? Certains fichiers n\'ont pas encore \xe9t\xe9 t\xe9l\xe9charg\xe9s."}')}}]);
|