@strapi/admin 4.15.0-alpha.0 → 4.15.0
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/.eslintrc.js +4 -1
- package/admin/.eslintrc.js +28 -0
- package/admin/custom.d.ts +28 -0
- package/admin/src/StrapiApp.js +27 -28
- package/admin/src/components/AuthenticatedApp.tsx +187 -0
- package/admin/src/components/ConfigurationProvider.tsx +68 -0
- package/admin/src/components/{DragLayer/DragLayer.js → DragLayer.tsx} +18 -10
- package/admin/src/components/GuidedTour/Homepage.tsx +111 -0
- package/admin/src/components/GuidedTour/Modal.tsx +303 -0
- package/admin/src/components/GuidedTour/Ornaments.tsx +74 -0
- package/admin/src/components/GuidedTour/Provider.tsx +253 -0
- package/admin/src/components/GuidedTour/{layout.js → constants.ts} +13 -3
- package/admin/src/components/LanguageProvider.tsx +130 -0
- package/admin/src/components/{LeftMenu/index.js → LeftMenu.tsx} +23 -18
- package/admin/src/components/{NpsSurvey/index.js → NpsSurvey.tsx} +68 -21
- package/admin/src/components/PluginsInitializer.tsx +124 -0
- package/admin/src/components/PrivateRoute.tsx +42 -0
- package/admin/src/components/Providers.tsx +125 -0
- package/admin/src/components/RBACProvider.tsx +124 -0
- package/admin/src/components/Theme.tsx +41 -0
- package/admin/src/components/ThemeToggleProvider.tsx +64 -0
- package/admin/src/components/{UnauthenticatedLogo/index.js → UnauthenticatedLogo.tsx} +3 -5
- package/admin/src/components/{LocalesProvider/__mocks__/useLocalesProvider.js → __mocks__/LanguageProvider.ts} +3 -1
- package/admin/src/{constants.js → constants.ts} +48 -0
- package/admin/src/content-manager/components/BlocksEditor/BlocksInput/index.js +68 -9
- package/admin/src/content-manager/components/BlocksEditor/Toolbar/index.js +433 -202
- package/admin/src/content-manager/components/BlocksEditor/hooks/useBlocksStore.js +463 -135
- package/admin/src/content-manager/components/BlocksEditor/hooks/useModifiersStore.js +23 -6
- package/admin/src/content-manager/components/BlocksEditor/index.js +97 -20
- package/admin/src/content-manager/components/BlocksEditor/plugins/index.js +4 -0
- package/admin/src/content-manager/components/BlocksEditor/plugins/withLinks.js +61 -0
- package/admin/src/content-manager/components/BlocksEditor/plugins/withStrapiSchema.js +33 -0
- package/admin/src/content-manager/components/BlocksEditor/utils/links.js +90 -0
- package/admin/src/content-manager/components/InputUID/index.js +1 -1
- package/admin/src/content-manager/hooks/useAllowedAttributes.js +9 -1
- package/admin/src/content-manager/pages/App/selectors.js +1 -1
- package/admin/src/content-manager/pages/App/useContentManagerInitData.js +3 -1
- package/admin/src/content-manager/pages/EditSettingsView/index.js +1 -0
- package/admin/src/content-manager/pages/EditSettingsView/utils/createPossibleMainFieldsForModelsAndComponents.js +1 -0
- package/admin/src/content-manager/pages/EditView/selectors.js +1 -1
- package/admin/src/content-manager/pages/EditViewLayoutManager/index.js +3 -1
- package/admin/src/content-manager/pages/ListSettingsView/constants.js +1 -0
- package/admin/src/content-manager/pages/ListView/components/Body/index.js +53 -56
- package/admin/src/content-manager/pages/ListView/components/BulkActionButtons/SelectedEntriesModal/index.js +5 -3
- package/admin/src/content-manager/pages/ListView/components/TableRows/index.js +1 -1
- package/admin/src/content-manager/pages/ListView/index.js +35 -51
- package/admin/src/content-manager/pages/ListView/selectors.js +1 -1
- package/admin/src/content-manager/utils/checkIfAttributeIsDisplayable.js +1 -1
- package/admin/src/content-manager/utils/schema.js +2 -2
- package/admin/src/contexts/admin.ts +19 -0
- package/admin/src/contexts/apiTokenPermissions.tsx +64 -0
- package/admin/src/contexts/configuration.ts +25 -0
- package/admin/src/contexts/themeToggle.ts +18 -0
- package/admin/src/core/store/configure.ts +91 -0
- package/admin/src/core/store/hooks.ts +15 -0
- package/admin/src/hooks/{useConfigurations/__mocks__/index.js → __mocks__/useConfigurations.ts} +4 -2
- package/admin/src/hooks/index.js +0 -8
- package/admin/src/hooks/{useAdminRoles/index.js → useAdminRoles.ts} +26 -10
- package/admin/src/hooks/useAdminUsers.ts +64 -0
- package/admin/src/hooks/useConfiguration.ts +5 -0
- package/admin/src/hooks/{useContentTypes/useContentTypes.js → useContentTypes.ts} +39 -16
- package/admin/src/hooks/useDebounce.ts +17 -0
- package/admin/src/hooks/{useEnterprise/useEnterprise.js → useEnterprise.ts} +15 -5
- package/admin/src/hooks/useLicenseLimitNotification.ts +3 -0
- package/admin/src/hooks/useMenu.ts +153 -0
- package/admin/src/hooks/useSettingsForm/index.js +14 -2
- package/admin/src/hooks/useSettingsMenu/constants.js +39 -0
- package/admin/src/hooks/useThemeToggle.ts +9 -0
- package/admin/src/index.js +7 -6
- package/admin/src/layouts/{AppLayout/index.js → AppLayout.tsx} +7 -10
- package/admin/src/layouts/UnauthenticatedLayout.tsx +77 -0
- package/admin/src/pages/Admin/index.js +15 -8
- package/admin/src/pages/App/index.js +13 -8
- package/admin/src/pages/App/selectors.js +1 -1
- package/admin/src/pages/AuthPage/components/ForgotPassword/index.js +3 -2
- package/admin/src/pages/AuthPage/components/ForgotPasswordSuccess/index.js +3 -2
- package/admin/src/pages/AuthPage/components/Login/BaseLogin.js +1 -1
- package/admin/src/pages/AuthPage/components/Login/index.js +1 -1
- package/admin/src/pages/AuthPage/components/Oops/index.js +3 -2
- package/admin/src/pages/AuthPage/components/Register/index.js +30 -35
- package/admin/src/pages/AuthPage/components/ResetPassword/index.js +3 -2
- package/admin/src/pages/AuthPage/index.js +4 -5
- package/admin/src/pages/HomePage/index.js +6 -3
- package/admin/src/pages/{InternalErrorPage/index.js → InternalErrorPage.tsx} +10 -6
- package/admin/src/pages/MarketplacePage/components/NpmPackageCard/index.js +0 -2
- package/admin/src/pages/MarketplacePage/hooks/__mocks__/useNavigatorOnline.ts +1 -0
- package/admin/src/{hooks/useNavigatorOnLine/index.js → pages/MarketplacePage/hooks/useNavigatorOnline.ts} +4 -6
- package/admin/src/pages/MarketplacePage/index.js +3 -3
- package/admin/src/pages/{NotFoundPage/index.js → NotFoundPage.tsx} +9 -7
- package/admin/src/pages/ProfilePage/components/Preferences/index.js +23 -9
- package/admin/src/pages/ProfilePage/index.js +4 -4
- package/admin/src/pages/SettingsPage/components/SettingsNav/index.js +20 -0
- package/admin/src/pages/SettingsPage/components/Tokens/Regenerate/index.js +1 -1
- package/admin/src/pages/SettingsPage/components/Tokens/Table/index.js +119 -87
- package/admin/src/pages/SettingsPage/constants.js +33 -0
- package/admin/src/{hooks/useRegenerate/index.js → pages/SettingsPage/hooks/useRegenerate.ts} +13 -7
- package/admin/src/pages/SettingsPage/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/ActionBoundRoutes/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/CollapsableContentType/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/Permissions/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/Regenerate/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/components/CustomizationInfos/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/ApplicationInfosPage/index.js +2 -2
- package/admin/src/pages/SettingsPage/pages/AuditLogs/SalesPage.js +50 -0
- package/admin/src/pages/SettingsPage/pages/ReviewWorkflows/SalesPage.js +53 -0
- package/admin/src/pages/SettingsPage/pages/Roles/CreatePage/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ConditionsModal/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ContentTypeCollapse/Collapse/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ContentTypeCollapse/CollapsePropertyMatrix/ActionRow/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/ContentTypeCollapse/CollapsePropertyMatrix/SubActionRow/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/GlobalActions/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/PermissionsDataManagerProvider/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/components/PluginsAndSettings/SubCategory/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/hooks/usePermissionsDataManager.ts +28 -0
- package/admin/src/pages/SettingsPage/pages/Roles/EditPage/index.js +1 -1
- package/admin/src/{hooks/useAdminRolePermissions/index.js → pages/SettingsPage/pages/Roles/hooks/useAdminRolePermissions.ts} +13 -6
- package/admin/src/pages/SettingsPage/pages/SingleSignOn/SalesPage.js +53 -0
- package/admin/src/pages/SettingsPage/pages/TransferTokens/EditView/index.js +1 -1
- package/admin/src/pages/SettingsPage/pages/TransferTokens/ListView/index.js +3 -5
- package/admin/src/pages/SettingsPage/pages/Users/EditPage/index.js +2 -1
- package/admin/src/pages/SettingsPage/pages/Users/ListPage/DynamicTable/TableRows/index.js +1 -1
- package/admin/src/pages/{UseCasePage/index.js → UseCasePage.tsx} +10 -12
- package/admin/src/shared/hooks/index.js +0 -1
- package/admin/src/shared/hooks/useInjectionZone/index.js +2 -2
- package/admin/src/translations/en.json +13 -0
- package/admin/src/types/adminAPI.ts +29 -0
- package/admin/src/utils/createRoute.tsx +54 -0
- package/admin/src/utils/formatAPIErrors.ts +18 -0
- package/admin/src/utils/getFullName.ts +3 -0
- package/admin/src/utils/{uniqueAdminHash.js → hashAdminUserEmail.ts} +6 -3
- package/admin/src/utils/makeUniqueRoutes.ts +11 -0
- package/admin/tsconfig.build.json +4 -0
- package/admin/tsconfig.json +11 -0
- package/build/0cd5f8915b265d5b1856.png +0 -0
- package/build/1049.ecc10c97.chunk.js +1 -0
- package/build/1217.96155682.chunk.js +35 -0
- package/build/1227.947ceaf9.chunk.js +1 -0
- package/build/1306.2699df52.chunk.js +79 -0
- package/build/135.ad267b59.chunk.js +1 -0
- package/build/1386.eabd8a1e.chunk.js +7 -0
- package/build/1727.b49f0713.chunk.js +1 -0
- package/build/1835.eaa696ba.chunk.js +1 -0
- package/build/19eb2dfcf2603eb55733.png +0 -0
- package/build/2325.d705b39a.chunk.js +1 -0
- package/build/2379.7ce8e110.chunk.js +1 -0
- package/build/2395.acb961a8.chunk.js +26 -0
- package/build/2421.79e5b3d0.chunk.js +1 -0
- package/build/267.073a3bcb.chunk.js +1 -0
- package/build/27d16aefee06412db90a.png +0 -0
- package/build/2801.4711ea5a.chunk.js +1 -0
- package/build/2878.145ebf7c.chunk.js +1 -0
- package/build/2950.216f2e89.chunk.js +1 -0
- package/build/2953.284a63c0.chunk.js +1 -0
- package/build/3019.fde2e1be.chunk.js +181 -0
- package/build/3100.2ba4df95.chunk.js +1 -0
- package/build/311.cb0884bb.chunk.js +1 -0
- package/build/3460.8644e608.chunk.js +146 -0
- package/build/3483.db8c1520.chunk.js +1 -0
- package/build/3911.488fbde3.chunk.js +95 -0
- package/build/4174.49cedb6a.chunk.js +1 -0
- package/build/4429.7f044dc7.chunk.js +1 -0
- package/build/4555.c883d697.chunk.js +1 -0
- package/build/4663.b906cc10.chunk.js +1 -0
- package/build/4732.149f5f8f.chunk.js +1 -0
- package/build/4916.480053a6.chunk.js +1 -0
- package/build/4996.d285c30b.chunk.js +1 -0
- package/build/502.f536f78b.chunk.js +1 -0
- package/build/570.2f3b4c56.chunk.js +1 -0
- package/build/5858.493b31ec.chunk.js +1 -0
- package/build/6158.c3c13c20.chunk.js +1 -0
- package/build/6345.334e7678.chunk.js +1 -0
- package/build/6453.4160b5b7.chunk.js +1 -0
- package/build/7030.b98dcedf.chunk.js +1 -0
- package/build/70674f63fc3904c20de0.svg +7 -0
- package/build/7448.6fd14dd3.chunk.js +1 -0
- package/build/7464.579564ac.chunk.js +1 -0
- package/build/7735.9e7c9fdd.chunk.js +10 -0
- package/build/78.dcc6df5c.chunk.js +1 -0
- package/build/7811.fdbe09af.chunk.js +103 -0
- package/build/782.7243b183.chunk.js +1 -0
- package/build/7849.2a500ed8.chunk.js +1 -0
- package/build/7897.63ba0a00.chunk.js +6 -0
- package/build/7e9af4fb7e723fcebf1f.svg +48 -0
- package/build/8162.7d1100a0.chunk.js +1 -0
- package/build/8276.9abe4679.chunk.js +26 -0
- package/build/8773.ee67141c.chunk.js +48 -0
- package/build/8980.f0045cc1.chunk.js +1 -0
- package/build/9077.2cc01ac8.chunk.js +105 -0
- package/build/9153.42c1428a.chunk.js +1 -0
- package/build/918.54414509.chunk.js +1 -0
- package/build/9218.b2d367f8.chunk.js +1 -0
- package/build/9285.5f174057.chunk.js +1 -0
- package/build/9547.62987774.chunk.js +1 -0
- package/build/9754.b4e73779.chunk.js +1 -0
- package/build/9d5d788027e86620c234.svg +5 -0
- package/build/Admin-authenticatedApp.059dc48f.chunk.js +79 -0
- package/build/Admin_InternalErrorPage.06eeef20.chunk.js +1 -0
- package/build/Admin_homePage.56b9eb3f.chunk.js +81 -0
- package/build/Admin_marketplace.d693a435.chunk.js +44 -0
- package/build/Admin_pluginsPage.ae2c872a.chunk.js +6 -0
- package/build/Admin_profilePage.89099d5b.chunk.js +13 -0
- package/build/Admin_settingsPage.88c45586.chunk.js +12 -0
- package/build/Upload_ConfigureTheView.44f28145.chunk.js +1 -0
- package/build/admin-app.990e112f.chunk.js +69 -0
- package/build/admin-edit-roles-page.4e1eb4a9.chunk.js +267 -0
- package/build/admin-edit-users.5b91404e.chunk.js +10 -0
- package/build/admin-roles-list.89dd94fe.chunk.js +22 -0
- package/build/admin-users.7be4fc5f.chunk.js +11 -0
- package/build/api-tokens-create-page.571920e5.chunk.js +1 -0
- package/build/api-tokens-edit-page.cbdc81b1.chunk.js +1 -0
- package/build/api-tokens-list-page.de0c49e8.chunk.js +16 -0
- package/build/ar-json.74e40bc7.chunk.js +1 -0
- package/build/audit-logs-sales-page.2955db88.chunk.js +1 -0
- package/build/audit-logs-settings-page.b0cb5164.chunk.js +1 -0
- package/build/bb3108f7fd1e6179bde1.svg +1 -0
- package/build/bb4d0d527bdfb161bc5a.svg +1 -0
- package/build/ca-json.fc6001d3.chunk.js +1 -0
- package/build/content-manager.de7ae330.chunk.js +1241 -0
- package/build/content-type-builder-list-view.6c8d3213.chunk.js +211 -0
- package/build/content-type-builder-translation-ar-json.3e808e2f.chunk.js +1 -0
- package/build/content-type-builder-translation-cs-json.1ef9e106.chunk.js +1 -0
- package/build/content-type-builder-translation-de-json.63fcff7b.chunk.js +1 -0
- package/build/content-type-builder-translation-dk-json.fd626b67.chunk.js +1 -0
- package/build/content-type-builder-translation-en-json.74d80f18.chunk.js +1 -0
- package/build/content-type-builder-translation-es-json.a4a361a9.chunk.js +1 -0
- package/build/content-type-builder-translation-fr-json.499c3a46.chunk.js +1 -0
- package/build/content-type-builder-translation-id-json.65255f93.chunk.js +1 -0
- package/build/content-type-builder-translation-it-json.e268ab74.chunk.js +1 -0
- package/build/content-type-builder-translation-ja-json.9be0d5b2.chunk.js +1 -0
- package/build/content-type-builder-translation-ko-json.04cb309d.chunk.js +1 -0
- package/build/content-type-builder-translation-ms-json.f6b743b9.chunk.js +1 -0
- package/build/content-type-builder-translation-nl-json.997fe8cc.chunk.js +1 -0
- package/build/content-type-builder-translation-pl-json.634f638b.chunk.js +1 -0
- package/build/content-type-builder-translation-pt-BR-json.6a95dc71.chunk.js +1 -0
- package/build/content-type-builder-translation-pt-json.ddb44f8c.chunk.js +1 -0
- package/build/content-type-builder-translation-ru-json.3af65503.chunk.js +1 -0
- package/build/content-type-builder-translation-sk-json.c6078082.chunk.js +1 -0
- package/build/content-type-builder-translation-sv-json.a6df2462.chunk.js +1 -0
- package/build/content-type-builder-translation-th-json.122277cc.chunk.js +1 -0
- package/build/content-type-builder-translation-tr-json.41f44f77.chunk.js +1 -0
- package/build/content-type-builder-translation-uk-json.e1315acd.chunk.js +1 -0
- package/build/content-type-builder-translation-zh-Hans-json.6ff57db6.chunk.js +1 -0
- package/build/content-type-builder-translation-zh-json.3532b962.chunk.js +1 -0
- package/build/content-type-builder.0bc97051.chunk.js +136 -0
- package/build/cs-json.4b44411c.chunk.js +1 -0
- package/build/de-json.e72545cf.chunk.js +1 -0
- package/build/dk-json.e77140ef.chunk.js +1 -0
- package/build/email-settings-page.07712efc.chunk.js +11 -0
- package/build/en-json.5b907f67.chunk.js +1 -0
- package/build/es-json.b1f2284b.chunk.js +1 -0
- package/build/eu-json.63d0a898.chunk.js +1 -0
- package/build/fr-json.33c6428b.chunk.js +1 -0
- package/build/gu-json.7efe8cc2.chunk.js +1 -0
- package/build/he-json.3cf0b48a.chunk.js +1 -0
- package/build/hi-json.0d633692.chunk.js +1 -0
- package/build/highlight.js.28a1547e.chunk.js +85 -0
- package/build/hu-json.c74b6a1e.chunk.js +1 -0
- package/build/i18n-settings-page.5c34f012.chunk.js +9 -0
- package/build/i18n-translation-de-json.362384a6.chunk.js +1 -0
- package/build/i18n-translation-dk-json.89401417.chunk.js +1 -0
- package/build/i18n-translation-en-json.1ec7becf.chunk.js +1 -0
- package/build/i18n-translation-es-json.87b494d1.chunk.js +1 -0
- package/build/i18n-translation-fr-json.57ddc77e.chunk.js +1 -0
- package/build/i18n-translation-ko-json.ef4f9471.chunk.js +1 -0
- package/build/i18n-translation-pl-json.dfac513d.chunk.js +1 -0
- package/build/i18n-translation-ru-json.a3dbc125.chunk.js +1 -0
- package/build/i18n-translation-tr-json.3bfc812f.chunk.js +1 -0
- package/build/i18n-translation-zh-Hans-json.757ce62d.chunk.js +1 -0
- package/build/i18n-translation-zh-json.bef2dc07.chunk.js +1 -0
- package/build/id-json.41e07c46.chunk.js +1 -0
- package/build/index.html +1 -0
- package/build/it-json.bfe27ed8.chunk.js +1 -0
- package/build/ja-json.e1959a1c.chunk.js +1 -0
- package/build/ko-json.ce5d6d94.chunk.js +1 -0
- package/build/main.f84563f1.js +2665 -0
- package/build/ml-json.940d7ace.chunk.js +1 -0
- package/build/ms-json.0eddffd9.chunk.js +1 -0
- package/build/nl-json.fe38f0fb.chunk.js +1 -0
- package/build/no-json.19a2dbfa.chunk.js +1 -0
- package/build/pl-json.d55e8e78.chunk.js +1 -0
- package/build/pt-BR-json.ae0a0d2e.chunk.js +1 -0
- package/build/pt-json.ee554a41.chunk.js +1 -0
- package/build/review-workflows-sales-page.f46a8f00.chunk.js +1 -0
- package/build/review-workflows-settings-create-view.d0544fb0.chunk.js +1 -0
- package/build/review-workflows-settings-edit-view.aabf49ef.chunk.js +1 -0
- package/build/review-workflows-settings-list-view.8b0525ab.chunk.js +56 -0
- package/build/ru-json.1c976644.chunk.js +1 -0
- package/build/runtime~main.270fd45f.js +2 -0
- package/build/sa-json.2c03ef4e.chunk.js +1 -0
- package/build/sk-json.b41847e8.chunk.js +1 -0
- package/build/sso-sales-page.ef22e469.chunk.js +1 -0
- package/build/sso-settings-page.21e16ae4.chunk.js +1 -0
- package/build/sv-json.568cb7ae.chunk.js +1 -0
- package/build/th-json.5f659396.chunk.js +1 -0
- package/build/tr-json.c9f22432.chunk.js +1 -0
- package/build/transfer-tokens-create-page.3366204d.chunk.js +1 -0
- package/build/transfer-tokens-edit-page.15cf0f73.chunk.js +1 -0
- package/build/transfer-tokens-list-page.0bc0e682.chunk.js +16 -0
- package/build/uk-json.b7e38370.chunk.js +1 -0
- package/build/upload-settings.1319dca0.chunk.js +14 -0
- package/build/upload-translation-ca-json.57954414.chunk.js +1 -0
- package/build/upload-translation-de-json.420c943b.chunk.js +1 -0
- package/build/upload-translation-dk-json.bbb2fa05.chunk.js +1 -0
- package/build/upload-translation-en-json.8b7573ce.chunk.js +1 -0
- package/build/upload-translation-es-json.ba2eb03a.chunk.js +1 -0
- package/build/upload-translation-fr-json.baab9911.chunk.js +1 -0
- package/build/upload-translation-he-json.0a830937.chunk.js +1 -0
- package/build/upload-translation-it-json.e87d7966.chunk.js +1 -0
- package/build/upload-translation-ja-json.44b88e7a.chunk.js +1 -0
- package/build/upload-translation-ko-json.a52eab64.chunk.js +1 -0
- package/build/upload-translation-ms-json.74f6d746.chunk.js +1 -0
- package/build/upload-translation-pl-json.426f31c9.chunk.js +1 -0
- package/build/upload-translation-pt-BR-json.d1704f0b.chunk.js +1 -0
- package/build/upload-translation-pt-json.6b937fdf.chunk.js +1 -0
- package/build/upload-translation-ru-json.675f6b93.chunk.js +1 -0
- package/build/upload-translation-sk-json.483a18f6.chunk.js +1 -0
- package/build/upload-translation-th-json.98d35574.chunk.js +1 -0
- package/build/upload-translation-tr-json.74117e5c.chunk.js +1 -0
- package/build/upload-translation-uk-json.9950466a.chunk.js +1 -0
- package/build/upload-translation-zh-Hans-json.db163b6b.chunk.js +1 -0
- package/build/upload-translation-zh-json.e1dd6eb2.chunk.js +1 -0
- package/build/upload.1ced11be.chunk.js +58 -0
- package/build/users-advanced-settings-page.8e657084.chunk.js +9 -0
- package/build/users-email-settings-page.e57745e5.chunk.js +9 -0
- package/build/users-permissions-translation-ar-json.7d87d54d.chunk.js +1 -0
- package/build/users-permissions-translation-cs-json.7e23424a.chunk.js +1 -0
- package/build/users-permissions-translation-de-json.a6fb670f.chunk.js +1 -0
- package/build/users-permissions-translation-dk-json.60e50f48.chunk.js +1 -0
- package/build/users-permissions-translation-en-json.4b302272.chunk.js +1 -0
- package/build/users-permissions-translation-es-json.35007573.chunk.js +1 -0
- package/build/users-permissions-translation-fr-json.7e55bbbb.chunk.js +1 -0
- package/build/users-permissions-translation-id-json.a5a0fb59.chunk.js +1 -0
- package/build/users-permissions-translation-it-json.0705465d.chunk.js +1 -0
- package/build/users-permissions-translation-ja-json.891fe76e.chunk.js +1 -0
- package/build/users-permissions-translation-ko-json.357d7a33.chunk.js +1 -0
- package/build/users-permissions-translation-ms-json.c83f87c4.chunk.js +1 -0
- package/build/users-permissions-translation-nl-json.c9f92a3c.chunk.js +1 -0
- package/build/users-permissions-translation-pl-json.0a7287d1.chunk.js +1 -0
- package/build/users-permissions-translation-pt-BR-json.1b6d2920.chunk.js +1 -0
- package/build/users-permissions-translation-pt-json.a7eda429.chunk.js +1 -0
- package/build/users-permissions-translation-ru-json.8e883c67.chunk.js +1 -0
- package/build/users-permissions-translation-sk-json.7f37180f.chunk.js +1 -0
- package/build/users-permissions-translation-sv-json.17187818.chunk.js +1 -0
- package/build/users-permissions-translation-th-json.1e9c0247.chunk.js +1 -0
- package/build/users-permissions-translation-tr-json.2bd7ff98.chunk.js +1 -0
- package/build/users-permissions-translation-uk-json.6a0a1572.chunk.js +1 -0
- package/build/users-permissions-translation-vi-json.6722a8a2.chunk.js +1 -0
- package/build/users-permissions-translation-zh-Hans-json.8d82c809.chunk.js +1 -0
- package/build/users-permissions-translation-zh-json.7978eaa6.chunk.js +1 -0
- package/build/users-providers-settings-page.55796d13.chunk.js +14 -0
- package/build/users-roles-settings-page.57079245.chunk.js +55 -0
- package/build/vi-json.ee4c5537.chunk.js +1 -0
- package/build/webhook-edit-page.3a28b2e7.chunk.js +33 -0
- package/build/webhook-list-page.ee80767b.chunk.js +63 -0
- package/build/zh-Hans-json.97efd015.chunk.js +1 -0
- package/build/zh-json.bfc2e036.chunk.js +1 -0
- package/ee/admin/hooks/{useLicenseLimitNotification.js → useLicenseLimitNotification.ts} +4 -4
- package/ee/admin/pages/AuthPage/components/Login/index.js +1 -1
- package/ee/admin/pages/AuthPage/components/Providers/index.js +3 -2
- package/ee/admin/pages/SettingsPage/pages/ReviewWorkflows/selectors.js +1 -1
- package/ee/admin/pages/SettingsPage/pages/Users/ListPage/index.js +1 -3
- package/ee/server/bootstrap.js +1 -1
- package/ee/server/controllers/admin.js +1 -1
- package/ee/server/controllers/user.js +1 -1
- package/ee/server/destroy.js +1 -1
- package/ee/server/register.js +1 -1
- package/ee/server/routes/utils.js +1 -1
- package/ee/server/services/audit-logs.js +1 -1
- package/ee/server/services/passport/sso.js +1 -1
- package/ee/server/services/passport.js +1 -1
- package/ee/server/services/seat-enforcement.js +1 -1
- package/ee/server/utils/sso-lock.js +1 -1
- package/ee/server/validation/role.js +1 -1
- package/ee/server/validation/user.js +1 -1
- package/jest.config.front.js +4 -0
- package/package.json +28 -22
- package/scripts/build.js +6 -2
- package/server/controllers/admin.js +4 -3
- package/shared/entities.ts +33 -0
- package/shared/permissions.ts +52 -0
- package/shared/schema.ts +9 -0
- package/webpack.config.js +1 -0
- package/admin/src/components/AuthenticatedApp/index.js +0 -120
- package/admin/src/components/AuthenticatedApp/utils/api.js +0 -85
- package/admin/src/components/AuthenticatedApp/utils/checkLatestStrapiVersion.js +0 -11
- package/admin/src/components/ConfigurationsProvider/index.js +0 -66
- package/admin/src/components/ConfigurationsProvider/reducer.js +0 -29
- package/admin/src/components/DragLayer/index.js +0 -1
- package/admin/src/components/GlobalStyle/index.js +0 -9
- package/admin/src/components/GuidedTour/Homepage/components/Step.js +0 -61
- package/admin/src/components/GuidedTour/Homepage/components/Stepper.js +0 -61
- package/admin/src/components/GuidedTour/Homepage/index.js +0 -71
- package/admin/src/components/GuidedTour/Modal/components/Content.js +0 -66
- package/admin/src/components/GuidedTour/Modal/components/Modal.js +0 -72
- package/admin/src/components/GuidedTour/Modal/components/StepNumberWithPadding.js +0 -26
- package/admin/src/components/GuidedTour/Modal/components/Stepper.js +0 -118
- package/admin/src/components/GuidedTour/Modal/index.js +0 -94
- package/admin/src/components/GuidedTour/Modal/reducer.js +0 -29
- package/admin/src/components/GuidedTour/Stepper/StepLine.js +0 -29
- package/admin/src/components/GuidedTour/Stepper/StepNumber.js +0 -71
- package/admin/src/components/GuidedTour/constants.js +0 -3
- package/admin/src/components/GuidedTour/index.js +0 -102
- package/admin/src/components/GuidedTour/init.js +0 -37
- package/admin/src/components/GuidedTour/reducer.js +0 -50
- package/admin/src/components/GuidedTour/utils/arePreviousSectionsDone.js +0 -13
- package/admin/src/components/GuidedTour/utils/arePreviousStepsDone.js +0 -12
- package/admin/src/components/GuidedTour/utils/isGuidedTourCompleted.js +0 -6
- package/admin/src/components/GuidedTour/utils/persistStateToLocaleStorage.js +0 -34
- package/admin/src/components/LanguageProvider/index.js +0 -54
- package/admin/src/components/LanguageProvider/init.js +0 -13
- package/admin/src/components/LanguageProvider/reducer.js +0 -30
- package/admin/src/components/LanguageProvider/utils/localStorageKey.js +0 -3
- package/admin/src/components/LocalesProvider/context.js +0 -5
- package/admin/src/components/LocalesProvider/index.js +0 -21
- package/admin/src/components/LocalesProvider/useLocalesProvider.js +0 -11
- package/admin/src/components/NpsSurvey/hooks/useNpsSurveySettings.js +0 -17
- package/admin/src/components/PluginsInitializer/index.js +0 -68
- package/admin/src/components/PluginsInitializer/init.js +0 -11
- package/admin/src/components/PluginsInitializer/reducer.js +0 -22
- package/admin/src/components/PrivateRoute/index.js +0 -46
- package/admin/src/components/Providers/index.js +0 -156
- package/admin/src/components/RBACProvider/actions.js +0 -10
- package/admin/src/components/RBACProvider/constants.js +0 -2
- package/admin/src/components/RBACProvider/index.js +0 -39
- package/admin/src/components/RBACProvider/reducer.js +0 -51
- package/admin/src/components/Theme/index.js +0 -26
- package/admin/src/components/ThemeToggleProvider/index.js +0 -79
- package/admin/src/contexts/Admin/index.js +0 -5
- package/admin/src/contexts/ApiTokenPermissions/index.js +0 -25
- package/admin/src/contexts/Configurations/index.js +0 -5
- package/admin/src/contexts/MarketPlace/index.js +0 -18
- package/admin/src/contexts/PermisssionsDataManagerContext/index.js +0 -5
- package/admin/src/contexts/ThemeToggle/index.js +0 -5
- package/admin/src/contexts/index.js +0 -4
- package/admin/src/core/store/configureStore.js +0 -47
- package/admin/src/exposedHooks.js +0 -27
- package/admin/src/hooks/useAdminRoles/__mocks__/index.js +0 -5
- package/admin/src/hooks/useAdminUsers/index.js +0 -1
- package/admin/src/hooks/useAdminUsers/useAdminUsers.js +0 -47
- package/admin/src/hooks/useConfigurations/index.js +0 -11
- package/admin/src/hooks/useContentTypes/index.js +0 -1
- package/admin/src/hooks/useDebounce/index.js +0 -19
- package/admin/src/hooks/useEnterprise/index.js +0 -1
- package/admin/src/hooks/useLicenseLimitNotification/index.js +0 -5
- package/admin/src/hooks/useMenu/index.js +0 -86
- package/admin/src/hooks/useMenu/utils/checkPermissions.js +0 -13
- package/admin/src/hooks/useMenu/utils/getGeneralLinks.js +0 -31
- package/admin/src/hooks/useMenu/utils/getPluginSectionLinks.js +0 -17
- package/admin/src/hooks/usePermissionsDataManager/index.js +0 -7
- package/admin/src/hooks/useReleaseNotification/index.js +0 -31
- package/admin/src/hooks/useReleaseNotification/utils/api.js +0 -20
- package/admin/src/hooks/useReleaseNotification/utils/checkLatestStrapiVersion.js +0 -11
- package/admin/src/hooks/useThemeToggle/index.js +0 -11
- package/admin/src/injectionZones.js +0 -25
- package/admin/src/layouts/UnauthenticatedLayout/LocaleToggle/index.js +0 -29
- package/admin/src/layouts/UnauthenticatedLayout/index.js +0 -55
- package/admin/src/reducers.js +0 -23
- package/admin/src/shared/hooks/useAdminProvider/index.js +0 -11
- package/admin/src/tsconfig.json +0 -10
- package/admin/src/utils/checkFormValidity.js +0 -15
- package/admin/src/utils/createRoute.js +0 -47
- package/admin/src/utils/formatAPIErrors.js +0 -17
- package/admin/src/utils/getAttributesToDisplay.js +0 -19
- package/admin/src/utils/getExistingActions.js +0 -32
- package/admin/src/utils/getFullName.js +0 -9
- package/admin/src/utils/index.js +0 -9
- package/admin/src/utils/makeUniqueRoutes.js +0 -6
- package/admin/src/utils/sortLinks.js +0 -5
- /package/admin/src/hooks/{useAdminUsers/__mocks__/index.js → __mocks__/useAdminUsers.ts} +0 -0
- /package/admin/src/hooks/{useContentTypes/__mocks__/index.js → __mocks__/useContentTypes.ts} +0 -0
- /package/admin/src/{hooks/useAdminRolePermissions/__mocks__/index.js → pages/SettingsPage/pages/Roles/hooks/__mocks__/useAdminRolePermissions.ts} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[2567],{92329:function(t){t.exports=JSON.parse('{"attribute.boolean":"\uBD88\uB9AC\uC5B8(Boolean)","attribute.boolean.description":"\uC608 \uC544\uB2C8\uC624, 1 \uB610\uB294 0, \uCC38 \uB610\uB294 \uAC70\uC9D3","attribute.component":"\uCEF4\uD3EC\uB10C\uD2B8","attribute.component.description":"\uBC18\uBCF5\uD558\uAC70\uB098 \uC7AC\uC0AC\uC6A9\uD560 \uC218 \uC788\uB294 \uD544\uB4DC \uADF8\uB8F9","attribute.date":"\uB0A0\uC9DC(Date)","attribute.date.description":"\uC2DC\uAC04, \uBD84, \uCD08\uAC00 \uC788\uB294 \uB370\uC774\uD2B8 \uD53C\uCEE4","attribute.datetime":"Datetime","attribute.dynamiczone":"\uB2E4\uC774\uB098\uBBF9 \uC874","attribute.dynamiczone.description":"\uB0B4\uC6A9\uC744 \uD3B8\uC9D1\uD560 \uB54C \uB3D9\uC801\uC73C\uB85C \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uC120\uD0DD\uD569\uB2C8\uB2E4.","attribute.email":"\uC774\uBA54\uC77C(Email)","attribute.email.description":"\uC720\uD6A8\uC131 \uAC80\uC0AC\uAC00 \uAC00\uB2A5\uD55C \uC774\uBA54\uC77C \uD544\uB4DC","attribute.enumeration":"\uC5F4\uAC70(Enumeration)","attribute.enumeration.description":"\uAC12\uC744 \uB098\uC5F4\uD558\uACE0 \uC120\uD0DD\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","attribute.json":"JSON","attribute.json.description":"JSON \uD615\uC2DD\uC758 \uB370\uC774\uD130","attribute.media":"\uBBF8\uB514\uC5B4(Media)","attribute.media.description":"\uC774\uBBF8\uC9C0, \uBE44\uB514\uC624 \uB4F1\uC758 \uD30C\uC77C","attribute.null":" ","attribute.number":"\uC22B\uC790(Number)","attribute.number.description":"\uC22B\uC790 (integer, float, decimal)","attribute.password":"\uD328\uC2A4\uC6CC\uB4DC(Password)","attribute.password.description":"\uC554\uD638\uD654\uB41C \uBE44\uBC00\uBC88\uD638 \uD544\uB4DC","attribute.relation":"\uAD00\uACC4(Relation)","attribute.relation.description":"\uCF5C\uB809\uC158 \uD0C0\uC785\uC744 \uCC38\uC870\uD558\uB294 \uD544\uB4DC","attribute.richtext":"\uC11C\uC2DD\uC788\uB294 \uD14D\uC2A4\uD2B8(Rich text)","attribute.richtext.description":"\uC11C\uC2DD \uC635\uC158\uC774 \uC788\uB294 \uB9AC\uCE58 \uD14D\uC2A4\uD2B8 \uC5D0\uB514\uD130","attribute.text":"\uD14D\uC2A4\uD2B8(Text)","attribute.text.description":"\uC81C\uBAA9 \uB610\uB294 \uC124\uBA85\uACFC \uAC19\uC774 \uC9E7\uAC70\uB098 \uAE34 \uD14D\uC2A4\uD2B8","attribute.time":"Time","attribute.timestamp":"\uD0C0\uC784\uC2A4\uD0EC\uD504","attribute.uid":"UID","attribute.uid.description":"Unique identifier","button.attributes.add.another":"\uC0C8 \uD544\uB4DC \uCD94\uAC00","button.component.add":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uCD94\uAC00","button.component.create":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uC0DD\uC131","button.model.create":"\uC0C8 \uCF5C\uB809\uC158 \uD0C0\uC785 \uC0DD\uC131","button.single-types.create":"\uC0C8 \uC2F1\uAE00 \uD0C0\uC785 \uC0DD\uC131","component.repeatable":"(repeatable)","components.SelectComponents.displayed-value":"{number, plural, =0 {# \uAC1C} one {# \uAC1C} other {# \uAC1C}}\uC758 \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uC120\uD0DD\uB428","components.componentSelect.no-component-available":"\uC774\uBBF8 \uBAA8\uB4E0 \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uCD94\uAC00\uB418\uC5C8\uC2B5\uB2C8\uB2E4.","components.componentSelect.no-component-available.with-search":"\uAC80\uC0C9\uACFC \uC77C\uCE58\uD558\uB294 \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uC5C6\uC2B5\uB2C8\uB2E4.","components.componentSelect.value-component":"{number} component selected (type to search for a component)","components.componentSelect.value-components":"{number} \uAC1C\uC758 \uCEF4\uD3EC\uB10C\uD2B8 \uC120\uD0DD\uB428","configurations":"\uC124\uC815","contentType.apiId-plural.description":"\uBCF5\uC218 \uD615\uC2DD\uC758 API ID","contentType.apiId-plural.label":"API ID (\uBCF5\uC218)","contentType.apiId-singular.description":"UID\uB294 API \uACBD\uB85C \uBC0F \uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uD14C\uC774\uBE14/ \uCEEC\uB809\uC158\uC744 \uC0DD\uC131\uD558\uB294 \uB370 \uC0AC\uC6A9\uB429\uB2C8\uB2E4.","contentType.apiId-singular.label":"API ID (\uB2E8\uC218)","contentType.collectionName.description":"\uCF58\uD150\uCE20 \uD0C0\uC785\uACFC \uD14C\uC774\uBE14 \uC774\uB984\uC774 \uB2E4\uB97C \uB54C \uC720\uC6A9\uD569\uB2C8\uB2E4.","contentType.collectionName.label":"\uCF5C\uB809\uC158 \uC774\uB984","contentType.displayName.label":"\uD45C\uC2DC \uC774\uB984","contentType.draftAndPublish.description":"\uAC01 \uD56D\uBAA9\uC744 \uBC1C\uD589\uD558\uAE30 \uC804\uC5D0 \uCD08\uC548 \uBC84\uC804\uC744 \uC791\uC131\uD569\uB2C8\uB2E4.","contentType.draftAndPublish.label":"\uCD08\uC548/\uBC1C\uD589 \uC2DC\uC2A4\uD15C","contentType.kind.change.warning":"\uCF58\uD150\uCE20 \uD0C0\uC785\uC744 \uC218\uC815\uD588\uC2B5\uB2C8\uB2E4. API\uAC00 \uB9AC\uC14B\uB429\uB2C8\uB2E4(\uB77C\uC6B0\uD2B8, \uCEE8\uD2B8\uB864\uB7EC, \uC11C\uBE44\uC2A4\uAC00 \uB36E\uC5B4\uC50C\uC6CC\uC9D1\uB2C8\uB2E4.)","error.attributeName.reserved-name":"\uC774 \uC774\uB984\uC740 \uB2E4\uB978 \uAE30\uB2A5\uC744 \uC190\uC0C1\uC2DC\uD0AC \uC218 \uC788\uC73C\uBBC0\uB85C \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.contentType.pluralName-used":"\uC774 \uAC12\uC740 \uB2E8\uC218 \uC774\uB984\uACFC \uAC19\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.contentType.singularName-used":"\uC774 \uAC12\uC740 \uBCF5\uC218 \uC774\uB984\uACFC \uAC19\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.contentTypeName.reserved-name":"\uC774 \uC774\uB984\uC740 \uB2E4\uB978 \uAE30\uB2A5\uC744 \uC190\uC0C1\uC2DC\uD0AC \uC218 \uC788\uC73C\uBBC0\uB85C \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.validation.enum-duplicate":"\uC911\uBCF5\uB41C \uAC12\uC740 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.validation.enum-empty-string":"\uBE48 \uBB38\uC790\uC5F4\uC740 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","error.validation.minSupMax":"Can\'t be superior","error.validation.positive":"\uC591\uC218\uB97C \uC785\uB825\uD574\uC8FC\uC138\uC694.","error.validation.regex":"\uC720\uD6A8\uD558\uC9C0 \uC54A\uC740 \uC815\uADDC\uC2DD \uD328\uD134\uC785\uB2C8\uB2E4.","error.validation.relation.targetAttribute-taken":"\uB300\uC0C1 \uB9B4\uB808\uC774\uC158\uC5D0\uC11C \uC0AC\uC6A9\uC911\uC778 \uC774\uB984\uC785\uB2C8\uB2E4.","form.attribute.component.option.add":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uCD94\uAC00","form.attribute.component.option.create":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uC0DD\uC131","form.attribute.component.option.create.description":"\uCEF4\uD3EC\uB10C\uD2B8\uB294 \uCF58\uD150\uCE20 \uD0C0\uC785\uACFC \uCEF4\uD3EC\uB10C\uD2B8\uB4E4 \uC0AC\uC774\uC5D0 \uACF5\uC720\uB418\uBA70, \uC5B4\uB514\uC11C\uB098 \uC0AC\uC6A9\uACFC \uC811\uADFC\uC774 \uAC00\uB2A5\uD569\uB2C8\uB2E4.","form.attribute.component.option.repeatable":"\uBC18\uBCF5 \uCEF4\uD3EC\uB10C\uD2B8","form.attribute.component.option.repeatable.description":"\uC7AC\uB8CC, \uBA54\uD0C0 \uD0DC\uADF8 \uB4F1 \uC5EC\uB7EC \uC778\uC2A4\uD134\uC2A4(\uBC30\uC5F4) \uAD6C\uC131\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","form.attribute.component.option.reuse-existing":"\uAE30\uC874 \uCEF4\uD3EC\uB10C\uD2B8 \uC0AC\uC6A9","form.attribute.component.option.reuse-existing.description":"\uC0DD\uC131\uB41C \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uC7AC\uC0AC\uC6A9\uD569\uB2C8\uB2E4. \uCF58\uD150\uCE20 \uD0C0\uC785\uAC04\uC5D0 \uB370\uC774\uD130\uB97C \uC77C\uAD00\uB418\uAC8C \uC720\uC9C0\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.","form.attribute.component.option.single":"\uB2E8\uC77C \uCEF4\uD3EC\uB10C\uD2B8","form.attribute.component.option.single.description":"\uC804\uCCB4 \uC8FC\uC18C\uC9C0, \uAE30\uBCF8 \uC815\uBCF4 \uB4F1\uACFC \uAC19\uC740 \uD544\uB4DC\uB97C \uADF8\uB8F9\uD654\uD558\uB294 \uB370 \uC801\uD569\uD569\uB2C8\uB2E4.","form.attribute.item.customColumnName":"\uCEE4\uC2A4\uD140 \uCEEC\uB7FC \uC774\uB984","form.attribute.item.customColumnName.description":"API \uC751\uB2F5\uC744 \uC704\uD574 \uB370\uC774\uD130\uBCA0\uC774\uC2A4 \uCEEC\uB7FC \uC774\uB984\uC744 \uD3EC\uAD04\uC801\uC778 \uD615\uC2DD\uC73C\uB85C \uBCC0\uACBD\uD558\uB294\uB370 \uC720\uC6A9\uD569\uB2C8\uB2E4.","form.attribute.item.defineRelation.fieldName":"\uD544\uB4DC \uC774\uB984","form.attribute.item.enumeration.graphql":"GraphQL\uC5D0\uC11C \uC0AC\uC6A9\uD560 \uC774\uB984","form.attribute.item.enumeration.graphql.description":"\uAE30\uBCF8 \uC0DD\uC131\uB41C \uC774\uB984\uC744 GraphQL\uC5D0\uC11C \uC0AC\uC6A9\uD569\uB2C8\uB2E4.","form.attribute.item.enumeration.placeholder":"Ex:\\nmorning\\nnoon\\nevening","form.attribute.item.enumeration.rules":"\uAC12 (\uD55C \uC904\uC5D0 \uD558\uB098\uC529 \uC785\uB825)","form.attribute.item.maximum":"\uCD5C\uB300 \uAC12","form.attribute.item.maximumLength":"\uCD5C\uB300 \uAE38\uC774","form.attribute.item.minimum":"\uCD5C\uC18C \uAC12","form.attribute.item.minimumLength":"\uCD5C\uC18C \uAE38\uC774","form.attribute.item.number.type":"\uC22B\uC790 \uD615\uC2DD","form.attribute.item.number.type.biginteger":"big integer (ex: 123456789)","form.attribute.item.number.type.decimal":"\uC18C\uC218 (ex: 2.22)","form.attribute.item.number.type.float":"\uC2E4\uC218 (ex: 3.33333333)","form.attribute.item.number.type.integer":"\uC815\uC218 (ex: 10)","form.attribute.item.privateField":"Private field","form.attribute.item.privateField.description":"\uC774 \uD544\uB4DC\uB294 API \uC751\uB2F5\uC5D0 \uD45C\uC2DC\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.","form.attribute.item.requiredField":"\uD544\uC218 \uD56D\uBAA9","form.attribute.item.requiredField.description":"\uD544\uC218 \uD56D\uBAA9\uC77C \uACBD\uC6B0 \uCCB4\uD06C\uD558\uC138\uC694.","form.attribute.item.text.regex":"\uC815\uADDC\uC2DD \uD328\uD134","form.attribute.item.text.regex.description":"\uC815\uADDC\uC2DD \uD14D\uC2A4\uD2B8","form.attribute.item.uniqueField":"\uC720\uB2C8\uD06C \uD56D\uBAA9","form.attribute.item.uniqueField.description":"\uC720\uC77C\uD55C \uAC12\uB9CC \uD5C8\uC6A9 \uD560 \uACBD\uC6B0 \uCCB4\uD06C\uD558\uC138\uC694.","form.attribute.media.allowed-types":"\uD5C8\uC6A9\uD560 \uBBF8\uB514\uC5B4 \uD0C0\uC785\uC744 \uC120\uD0DD\uD569\uB2C8\uB2E4.","form.attribute.media.allowed-types.option-files":"\uD30C\uC77C","form.attribute.media.allowed-types.option-images":"\uC774\uBBF8\uC9C0","form.attribute.media.allowed-types.option-videos":"\uC601\uC0C1","form.attribute.media.option.multiple":"\uBCF5\uC218 \uBBF8\uB514\uC5B4","form.attribute.media.option.multiple.description":"\uC2AC\uB77C\uC774\uB354, \uCE90\uB85C\uC140(carousels), \uD639\uC740 \uC5EC\uB7EC \uD30C\uC77C \uB2E4\uC6B4\uB85C\uB4DC\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","form.attribute.media.option.single":"\uB2E8\uC77C \uBBF8\uB514\uC5B4","form.attribute.media.option.single.description":"\uC544\uBC14\uD0C0, \uD504\uB85C\uD544 \uC0AC\uC9C4 \uB610\uB294 \uCEE4\uBC84\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","form.attribute.settings.default":"\uAE30\uBCF8\uAC12","form.attribute.text.option.long-text":"\uAE34 \uD14D\uC2A4\uD2B8","form.attribute.text.option.long-text.description":"\uC124\uBA85, \uC774\uC57C\uAE30\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4. \uC815\uD655\uD55C \uAC80\uC0C9(Exact search)\uC740 \uBD88\uAC00\uB2A5\uD569\uB2C8\uB2E4.","form.attribute.text.option.short-text":"\uC9E7\uC740 \uD14D\uC2A4\uD2B8","form.attribute.text.option.short-text.description":"\uC81C\uBAA9, \uC774\uB984, \uB9C1\uD06C(URL)\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4. \uB610\uD55C \uD544\uB4DC\uC5D0\uC11C \uC815\uD655\uD55C \uAC80\uC0C9(Exact search)\uC774 \uAC00\uB2A5\uD569\uB2C8\uB2E4.","form.button.add-components-to-dynamiczone":"\uB2E4\uC774\uB098\uBBF9 \uC874\uC5D0 \uCEF4\uD3EC\uB10C\uD2B8 \uCD94\uAC00","form.button.add-field":"\uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00","form.button.add-first-field-to-created-component":"\uCEF4\uD3EC\uB10C\uD2B8\uC5D0 \uCCAB \uD544\uB4DC \uB9CC\uB4E4\uAE30","form.button.add.field.to.collectionType":"\uC774 \uCF5C\uB809\uC158 \uD0C0\uC785\uC5D0 \uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00\uD558\uAE30","form.button.add.field.to.component":"\uC774 \uCEF4\uD3EC\uB10C\uD2B8\uC5D0 \uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00\uD558\uAE30","form.button.add.field.to.contentType":"\uC774 \uCF58\uD150\uCE20 \uD0C0\uC785\uC5D0 \uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00\uD558\uAE30","form.button.add.field.to.singleType":"\uC774 \uC2F1\uAE00 \uD0C0\uC785\uC5D0 \uB2E4\uB978 \uD544\uB4DC \uCD94\uAC00\uD558\uAE30","form.button.cancel":"\uCDE8\uC18C","form.button.collection-type.description":"\uAE30\uC0AC(Article), \uC81C\uD488(Product) \uB4F1 \uC5EC\uB7EC\uAC1C\uC758 \uCF58\uD150\uCE20\uAC00 \uD544\uC694\uD55C \uACBD\uC6B0\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","form.button.configure-component":"\uCEF4\uD3EC\uB10C\uD2B8 \uC124\uC815","form.button.configure-view":"\uBCF4\uAE30 \uC124\uC815","form.button.select-component":"\uCEF4\uD3EC\uB10C\uD2B8 \uC120\uD0DD","form.button.single-type.description":"About us, \uD648\uD398\uC774\uC9C0 \uB4F1 \uB2E8\uC77C \uCF58\uD150\uCE20\uAC00 \uD544\uC694\uD55C \uACBD\uC6B0\uC5D0 \uC801\uD569\uD569\uB2C8\uB2E4.","from":"from","listView.headerLayout.description":"\uCF58\uD150\uCE20 \uAD6C\uC870\uB97C \uB9CC\uB4ED\uB2C8\uB2E4.","modalForm.attribute.form.base.name.description":"\uC18D\uC131 \uC774\uB984\uC5D0\uB294 \uACF5\uBC31\uC744 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","modalForm.attribute.form.base.name.placeholder":"\uC608: slug, seoUrl, \uD45C\uC900Url","modalForm.attribute.target-field":"Attached field","modalForm.attributes.select-component":"\uCEF4\uD3EC\uB10C\uD2B8 \uC120\uD0DD","modalForm.attributes.select-components":"\uCEF4\uD3EC\uB10C\uD2B8 \uC5EC\uB7EC\uAC1C \uC120\uD0DD","modalForm.collectionType.header-create":"\uCF5C\uB809\uC158 \uD0C0\uC785 \uC0DD\uC131","modalForm.component.header-create":"\uCEF4\uD3EC\uB10C\uD2B8 \uC0DD\uC131","modalForm.components.create-component.category.label":"\uCE74\uD14C\uACE0\uB9AC\uB97C \uC120\uD0DD\uD558\uAC70\uB098 \uC0C8 \uCE74\uD14C\uACE0\uB9AC \uC774\uB984\uC744 \uC785\uB825\uD574\uC8FC\uC138\uC694.","modalForm.components.icon.label":"\uC544\uC774\uCF58","modalForm.editCategory.base.name.description":"\uCE74\uD14C\uACE0\uB9AC \uC774\uB984\uC5D0 \uACF5\uBC31\uC744 \uC0AC\uC6A9\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.","modalForm.header-edit":"{name} \uC218\uC815","modalForm.header.categories":"\uCE74\uD14C\uACE0\uB9AC","modalForm.header.back":"\uB4A4\uCABD\uC5D0","modalForm.singleType.header-create":"\uC2F1\uAE00 \uD0C0\uC785 \uC0DD\uC131","modalForm.sub-header.addComponentToDynamicZone":"\uB2E4\uC774\uB098\uBBF9 \uC874\uC5D0 \uC0C8 \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uCD94\uAC00\uD569\uB2C8\uB2E4.","modalForm.sub-header.attribute.create":"\uC0C8 {type} \uD544\uB4DC \uCD94\uAC00","modalForm.sub-header.attribute.create.step":"\uC0C8 \uCEF4\uD3EC\uB10C\uD2B8 \uCD94\uAC00 ({step}/2)","modalForm.sub-header.attribute.edit":"{name} \uC218\uC815","modalForm.sub-header.chooseAttribute.collectionType":"\uCF5C\uB809\uC158 \uD0C0\uC785\uC5D0 \uCD94\uAC00\uD560 \uD544\uB4DC\uB97C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.","modalForm.sub-header.chooseAttribute.component":"\uCEF4\uD3EC\uB10C\uD2B8\uC5D0 \uCD94\uAC00\uD560 \uD544\uB4DC\uB97C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.","modalForm.sub-header.chooseAttribute.singleType":"\uC2F1\uAE00 \uD0C0\uC785\uC5D0 \uCD94\uAC00\uD560 \uD544\uB4DC\uB97C \uC120\uD0DD\uD574\uC8FC\uC138\uC694.","modelPage.attribute.relation-polymorphic":"\uB9B4\uB808\uC774\uC158 (polymorphic)","modelPage.attribute.relationWith":"\uAD00\uACC4","notification.info.autoreaload-disable":"\uC774 \uD50C\uB7EC\uADF8\uC778\uC744 \uC0AC\uC6A9\uD558\uB824\uBA74 autoReload \uAE30\uB2A5\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. `strapi develop`\uB85C \uC11C\uBC84\uB97C \uC2DC\uC791\uD574\uC8FC\uC138\uC694.","notification.info.creating.notSaved":"\uC0C8 \uCF5C\uB809\uC158 \uD0C0\uC785 \uB610\uB294 \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uB9CC\uB4E4\uAE30 \uC804\uC5D0 \uC791\uC5C5\uC744 \uC800\uC7A5\uD574\uC8FC\uC138\uC694.","plugin.description.long":"API\uB97C \uC704\uD55C \uB370\uC774\uD130 \uAD6C\uC870\uB97C \uBAA8\uB378\uB9C1 \uD569\uB2C8\uB2E4. \uC0C8\uB85C\uC6B4 \uD544\uB4DC\uC640 \uB9B4\uB808\uC774\uC158\uC744 \uAC04\uB2E8\uD788 \uB9CC\uB4DC\uC138\uC694. \uC790\uB3D9\uC73C\uB85C \uC124\uC815 \uD30C\uC77C\uC774 \uB9CC\uB4E4\uC5B4 \uC9C0\uACE0 \uD504\uB85C\uC81D\uD2B8\uC5D0 \uCD94\uAC00\uB429\uB2C8\uB2E4.","plugin.description.short":"API\uB97C \uC704\uD55C \uB370\uC774\uD130 \uAD6C\uC870\uB97C \uBAA8\uB378\uB9C1 \uD569\uB2C8\uB2E4.","plugin.name":"\uCF58\uD150\uCE20 \uD0C0\uC785 \uBE4C\uB354","popUpForm.navContainer.advanced":"\uACE0\uAE09 \uC124\uC815","popUpForm.navContainer.base":"\uAE30\uBCF8 \uC124\uC815","popUpWarning.bodyMessage.cancel-modifications":"\uC218\uC815 \uB0B4\uC6A9\uC744 \uCDE8\uC18C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\uC218\uC815 \uB0B4\uC6A9\uC744 \uCDE8\uC18C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? \uC0DD\uC131 \uD639\uC740 \uC218\uC815\uB41C \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uC788\uC2B5\uB2C8\uB2E4.","popUpWarning.bodyMessage.category.delete":"\uC774 \uCE74\uD14C\uACE0\uB9AC\uB97C \uC0AD\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? \uBAA8\uB4E0 \uCEF4\uD3EC\uB10C\uD2B8\uAC00 \uD568\uAED8 \uC0AD\uC81C\uB429\uB2C8\uB2E4.","popUpWarning.bodyMessage.component.delete":"\uC774 \uCEF4\uD3EC\uB10C\uD2B8\uB97C \uC0AD\uC81C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","popUpWarning.bodyMessage.contentType.delete":"\uC774 \uCF58\uD150\uCE20 \uD0C0\uC785\uC744 \uC0AD\uC81C \uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","popUpWarning.draft-publish.button.confirm":"\uB124, \uBE44\uD65C\uC131\uD654\uD569\uB2C8\uB2E4.","popUpWarning.draft-publish.message":"\uCD08\uC548/\uBC1C\uD589 \uC2DC\uC2A4\uD15C\uC744 \uBE44\uD65C\uC131\uD654\uD558\uBA74 \uCD08\uC548\uC774 \uC0AD\uC81C\uB429\uB2C8\uB2E4.","popUpWarning.draft-publish.second-message":"\uC0AC\uC6A9 \uC548 \uD568\uC73C\uB85C \uC124\uC815\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?","prompt.unsaved":"\uC774 \uD398\uC774\uC9C0\uB97C \uB5A0\uB098\uC2DC\uACA0\uC2B5\uB2C8\uAE4C? \uBAA8\uB4E0 \uBCC0\uACBD \uC0AC\uD56D\uC774 \uC5C6\uC5B4\uC9D1\uB2C8\uB2E4.","relation.attributeName.placeholder":"\uC608: author, category, tag","relation.manyToMany":"N : N","relation.manyToOne":"has many","relation.manyWay":"has many","relation.oneToMany":"1 : N","relation.oneToOne":"1 : 1","relation.oneWay":"has one","table.button.no-fields":"\uC0C8 \uD544\uB4DC \uCD94\uAC00","table.content.create-first-content-type":"\uCCAB \uCF5C\uB809\uC158 \uD0C0\uC785\uC744 \uB9CC\uB4E4\uC5B4\uBCF4\uC138\uC694.","table.content.no-fields.collection-type":"\uCF5C\uB809\uC158 \uD0C0\uC785\uC5D0 \uCCAB \uD544\uB4DC\uB97C \uCD94\uAC00\uD574\uBCF4\uC138\uC694.","table.content.no-fields.component":"\uCEF4\uD3EC\uB10C\uD2B8\uC5D0 \uCCAB \uD544\uB4DC\uB97C \uCD94\uAC00\uD574\uBCF4\uC138\uC694."}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3964],{35296:function(a){a.exports=JSON.parse('{"attribute.boolean":"Boolean","attribute.boolean.description":"Ya atau tidak, 1 atau 0, benar atau salah","attribute.component":"Komponen","attribute.component.description":"Ruang yang boleh diulang atau digunakan semula","attribute.date":"Tarikh","attribute.date.description":"Pemilih tarikh dengan jam, minit dan saat","attribute.datetime":"Masa tarikh","attribute.dynamiczone":"Zon dinamik","attribute.dynamiczone.description":"Memilih komponen secara dinamik semasa mengedit kandungan","attribute.email":"E-mel","attribute.email.description":"Ruang e-mel dengan pengesahan format","attribute.enumeration":"Pilihan","attribute.enumeration.description":"Senarai untuk dipilih","attribute.json":"JSON","attribute.json.description":"Data dalam format JSON","attribute.media":"Media","attribute.media.description":"Fail seperti gambar, video, dll","attribute.number":"Nombor","attribute.number.description":"Nombor (nombor bulat, apungan, perpuluhan)","attribute.password":"Kata Laluan","attribute.password.description":"Ruang kata laluan dengan penyulitan","attribute.relation":"Perhubung","attribute.relation.description":"Menghubungkan Jenis Koleksi","attribute.richtext":"Teks beraneka","attribute.richtext.description":"Penyunting teks beraneka dengan pilihan format","attribute.text":"Teks","attribute.text.description":"Teks kecil atau panjang seperti tajuk atau penerangan","attribute.time":"Masa","attribute.timestamp":"Cap waktu","attribute.uid":"UID","attribute.uid.description":"Pengecam unik","button.attributes.add.another":"Tambah ruang baru","button.component.add":"Tambah komponen","button.component.create":"Tambah komponen","button.model.create":"Tambah jenis koleksi","button.single-types.create":"Tambah jenis tunggal","component.repeatable":"(boleh diulang)","components.componentSelect.no-component-available":"Anda telah tambah semua komponen anda","components.componentSelect.no-component-available.with-search":"Tidak ada komponen dijumpai dengan carian anda","components.componentSelect.value-component":"{number} komponen dipilih (taip untuk mencari komponen)","components.componentSelect.value-components":"{number} komponen dipilih","configurations":"konfigurasi","contentType.collectionName.description":"Berguna apabila nama Jenis Kandungan dan nama jadual anda berbeza","contentType.collectionName.label":"Nama koleksi","contentType.displayName.label":"Nama paparan","contentType.kind.change.warning":"Anda baru sahaja menukar sesuatu jenis kandungan: API akan diset semula (laluan, pengawal, dan perkhidmatan akan ditulis semula) .","error.attributeName.reserved-name":"Nama ini tidak boleh digunakan dalam jenis kandungan anda kerana ia boleh merosakkan fungsi lain","error.contentTypeName.reserved-name":"Nama ini tidak boleh digunakan dalam projek anda kerana ia boleh merosakkan fungsi lain","error.validation.enum-duplicate":"dua data yang sama tidak dibenarkan","error.validation.minSupMax":"Tidak boleh lebih dari maksimum","error.validation.regex":"Corak regex tidak sah","error.validation.relation.targetAttribute-taken":"Nama ini telah wujud dalam sasaran","form.attribute.component.option.add":"Tambah komponen","form.attribute.component.option.create":"Cip komponen baru","form.attribute.component.option.create.description":"Komponen dikongsi antara pelbagai jenis dan komponen, ia akan tersedia dan dapat diakses di mana sahaja .","form.attribute.component.option.repeatable":"Komponen yang boleh diulang","form.attribute.component.option.repeatable.description":"Sesuai untuk pelbagai pengganti (array) ramuan, tag meta, dan lain-lain ..","form.attribute.component.option.reuse-existing":"Gunakan komponen yang ada","form.attribute.component.option.reuse-existing.description":"Gunakan semula komponen yang telah dibuat untuk memastikan data anda tetap konsisten di semua jenis kandungan","form.attribute.component.option.single":"Komponen tunggal","form.attribute.component.option.single.description":"Sesuai untuk ruang kumpulan seperti alamat penuh, maklumat utama dan lain-lain ...","form.attribute.item.customColumnName":"Gubah nama lajur","form.attribute.item.customColumnName.description":"Ini berguna untuk menamakan semula nama lajur didalam pangkalan data dengan format yang lebih komprehensif untuk respons API","form.attribute.item.defineRelation.fieldName":"Nama ruang","form.attribute.item.enumeration.graphql":"Ganti nama untuk GraphQL","form.attribute.item.enumeration.graphql.description":"Membolehkan anda menggantikan nama yang dihasilkan secara lalai untuk GraphQL","form.attribute.item.enumeration.placeholder":"Cth: \\nmalam \\nnoon \\nevening","form.attribute.item.enumeration.rules":"Pilihan (satu baris setiap pilihan)","form.attribute.item.maximum":"Nilai maksimum","form.attribute.item.maximumLength":"Panjang maksimum","form.attribute.item.minimum":"Nilai minimum","form.attribute.item.minimumLength":"Panjang minimum","form.attribute.item.number.type":"Format nombor","form.attribute.item.number.type.biginteger":"nombor bulat besar (cth: 123456789)","form.attribute.item.number.type.decimal":"perpuluhan (cth: 2.22)","form.attribute.item.number.type.float":"apungan (cth: 3.33333333)","form.attribute.item.number.type.integer":"integer (cth: 10)","form.attribute.item.privateField":"Ruang bersifat persendirian","form.attribute.item.privateField.description":"Ruang ini tidak akan muncul dalam respons API","form.attribute.item.requiredField":"Ruang yang wajib","form.attribute.item.requiredField.description":"Anda tidak akan dapat membuat entri jika ruang ini kosong","form.attribute.item.text.regex":"Corak RegExp","form.attribute.item.text.regex.description":"Teks regular expression","form.attribute.item.uniqueField":"Ruang yang unik","form.attribute.item.uniqueField.description":"Anda tidak boleh buat entri jika ada entri yang sama dengan yang kandungan","form.attribute.media.allowed-types":"Pilih jenis media yang dibenarkan","form.attribute.media.allowed-types.option-files":"Fail","form.attribute.media.allowed-types.option-images":"Gambar","form.attribute.media.allowed-types.option-videos":"Video","form.attribute.media.option.multiple":"Pelbagai media","form.attribute.media.option.multiple.description":"Sesuai untuk slaid, karusel atau muat turun fail yang banyak","form.attribute.media.option.single":"Media tunggal","form.attribute.media.option.single.description":"Sesuai untuk avatar, gambar profil atau sampul","form.attribute.settings.default":"Isi yang asal","form.attribute.text.option.long-text":"Teks panjang","form.attribute.text.option.long-text.description":"Sesuai untuk penerangan, biografi. Pencarian yang tepat dinyahaktifkan.","form.attribute.text.option.short-text":"Teks pendek","form.attribute.text.option.short-text.description":"Sesuai untuk tajuk, nama, pautan (URL). Ia juga membenarkan carian yang tepat .","form.button.add-components-to-dynamiczone":"Tambah komponen ke zon","form.button.add-field":"Tambah ruang lain","form.button.add-first-field-to-created-component":"Tambah ruang pertama ke komponen","form.button.add.field.to.collectionType":"Tambah ruang lain ke jenis koleksi ini","form.button.add.field.to.component":"Tambah ruang lain ke komponen ini","form.button.add.field.to.contentType":"Tambah ruang lain ke jenis kandungan ini","form.button.add.field.to.singleType":"Tambah ruang lain untuk jenis tunggal ini","form.button.cancel":"Batal","form.button.collection-type.description":"Sesuai untuk data yang banyak seperti artikel, produk, komen dan lain-lain","form.button.configure-component":"Tetapkan komponen","form.button.configure-view":"Susun paparan","form.button.select-component":"Pilih komponen","form.button.single-type.description":"Sesuai untuk data tunggal seperti mengenai kami, laman utama dan lain-lain","from":"dari","modalForm.attribute.form.base.name.description":"Tidak boleh ada jarak dalam nama","modalForm.attribute.form.base.name.placeholder":"cth. slug, urlSeo, urlCanonical","modalForm.attribute.target-field":"Ruang terpasang","modalForm.attributes.select-component":"Pilih komponen","modalForm.attributes.select-components":"Pilih komponen","modalForm.component.header-create":"Cipta komponen","modalForm.components.create-component.category.label":"Pilih kategori atau masukkan nama untuk buat yang baru","modalForm.components.icon.label":"Ikon","modalForm.editCategory.base.name.description":"Tidak boleh ada jarak dalam nama kategori","modalForm.header-edit":"Edit {name}","modalForm.header.categories":"Kategori","modalForm.header.back":"belakang","modalForm.singleType.header-create":"Cipta jenis tunggal","modalForm.sub-header.addComponentToDynamicZone":"Tambah komponen baru ke zon dinamik","modalForm.sub-header.attribute.create":"Tambah {type} baru","modalForm.sub-header.attribute.create.step":"Tambah komponen baru ({step} / 2)","modalForm.sub-header.attribute.edit":"Edit {name}","modalForm.sub-header.chooseAttribute.collectionType":"Pilih ruang untuk jenis koleksi anda","modalForm.sub-header.chooseAttribute.component":"Pilih ruang untuk komponen anda","modalForm.sub-header.chooseAttribute.singleType":"Pilih ruang untuk jenis tunggal anda","modelPage.attribute.relation-polymorphic":"Perhubung (polimorfik)","modelPage.attribute.relationWith":"Terhubung dengan","notification.info.autoreaload-disable":"Ciri autoReload diperlukan untuk menggunakan plugin ini. Mulakan pelayan anda dengan `strapi Develop`","notification.info.creating.notSaved":"Sila simpan kerja anda sebelum tambah jenis koleksi atau komponen baru","plugin.description.long":"Memodelkan struktur data API anda. Buat ruang dan hubungan baru hanya dalam satu minit. Fail dibuat dan dikemas kini secara automatik dalam projek anda .","plugin.description.short":"Memodelkan struktur data API anda .","popUpForm.navContainer.advanced":"Tetapan lanjut","popUpForm.navContainer.base":"Tetapan asas","popUpWarning.bodyMessage.cancel-modifications":"Adakah anda pasti mahu membatalkan pengubahsuaian anda ?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Adakah anda pasti mahu membatalkan pengubahsuaian anda? Beberapa komponen telah ditambah atau diubah suai ...","popUpWarning.bodyMessage.category.delete":"Adakah anda pasti mahu memadamkan kategori ini? Semua komponen juga akan dihapuskan .","popUpWarning.bodyMessage.component.delete":"Adakah anda pasti mahu memadamkan komponen ini ?","popUpWarning.bodyMessage.contentType.delete":"Adakah anda pasti mahu memadamkan jenis koleksi ini ?","prompt.unsaved":"Adakah anda pasti mahu keluar? Semua pengubahsuaian anda akan hilang .","relation.attributeName.placeholder":"Cth: pengarang, kategori, teg","relation.manyToMany":"mempunyai dan dimiliki oleh banyak","relation.manyToOne":"ada banyak","relation.manyWay":"ada banyak","relation.oneToMany":"dimiliki oleh banyak","relation.oneToOne":"mempunyai dan dimiliki oleh satu","relation.oneWay":"mempunyai satu"}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[1001],{41219:function(e){e.exports=JSON.parse('{"attribute.boolean":"Boolean","attribute.boolean.description":"Ja of nee, 1 of 0, waar of onwaar","attribute.component":"Component","attribute.component.description":"Groep van herbruikbare en herhaalbare velden","attribute.date":"Datum","attribute.date.description":"Een datumkiezer met uren, minuten en seconden","attribute.datetime":"Datum-tijd","attribute.dynamiczone":"Dynamische zone","attribute.dynamiczone.description":"Kies dynamisch componenten bij het bewerken van content","attribute.email":"E-mail","attribute.email.description":"E-mailveld met formaat validatie","attribute.enumeration":"Opsomming","attribute.enumeration.description":"Lijst met waarden, kies er een","attribute.json":"JSON","attribute.json.description":"Gegevens in JSON formaat","attribute.media":"Media","attribute.media.description":"Bestanden zoals afbeeldingen, video\'s, enz","attribute.null":" ","attribute.number":"Getal","attribute.number.description":"Getallen (integer, float, decimal)","attribute.password":"Wachtwoord","attribute.password.description":"Wachtwoordveld met versleuteling","attribute.relation":"Relatie","attribute.relation.description":"Verwijst naar een collectie type","attribute.richtext":"Rijk tekst","attribute.richtext.description":"Een rijk tekst-editor met opmaakopties","attribute.text":"Tekst","attribute.text.description":"Kleine of lange tekst zoals een titel of beschrijving","attribute.time":"Tijd","attribute.timestamp":"Tijdstempel","attribute.uid":"UID","attribute.uid.description":"Unieke identificatie","button.attributes.add.another":"Voeg een veld toe","button.component.add":"Voeg een component toe","button.component.create":"Maak een nieuw component","button.model.create":"Maak een nieuw collectie type","button.single-types.create":"Maak een nieuw enkel type","component.repeatable":"(herhaalbaar)","components.componentSelect.no-component-available":"Alle componenten zijn al toegevoegd","components.componentSelect.no-component-available.with-search":"Er komt geen component overeen met de zoekopdracht","components.componentSelect.value-component":"{number} componenten geselecteerd (typ om een component te zoeken)","components.componentSelect.value-components":"{number} componenten geselecteerd","configurations":"configuraties","contentType.collectionName.description":"Handig wanneer de naam van het collectie type en de tabelnaam verschillen","contentType.collectionName.label":"Collectienaam","contentType.displayName.label":"Weergavenaam","contentType.kind.change.warning":"Je hebt zojuist het soort content type gewijzigd. De API wordt gereset (routes, controllers en services worden overschreven).","error.contentTypeName.reserved-name":"Deze naam kan niet worden gebruikt in het project, omdat andere functionaliteiten zou kunnen breken","error.validation.enum-duplicate":"Dubbele waarden zijn niet toegestaan","error.validation.minSupMax":"Kan niet superieur zijn","error.validation.relation.targetAttribute-taken":"Deze naam bestaat al","form.attribute.component.option.add":"Voeg een component toe","form.attribute.component.option.create":"Maak een nieuw component","form.attribute.component.option.create.description":"Een component wordt gedeeld tussen types en componenten, het zal overal beschikbaar zijn.","form.attribute.component.option.repeatable":"Herhaalbaar component","form.attribute.component.option.repeatable.description":"Het beste voor meerdere instanties (array) van ingredi\xEBnten, metatags, enz","form.attribute.component.option.reuse-existing":"Gebruik een bestaand component","form.attribute.component.option.reuse-existing.description":"Hergebruik een reeds gemaakt component om de gegevens consistent te houden voor alle Content types.","form.attribute.component.option.single":"Enkel component","form.attribute.component.option.single.description":"het beste voor het groeperen van velden zoals volledig adres, hoofdinformatie, enz","form.attribute.item.customColumnName":"Aangepaste kolom namen","form.attribute.item.customColumnName.description":"Dit is handig om database kolom namen te hernoemen in een meer uitgebreid formaat voor de API responses","form.attribute.item.defineRelation.fieldName":"Veld naam","form.attribute.item.enumeration.graphql":"Naam overschreven voor GraphQL","form.attribute.item.enumeration.graphql.description":"Zorgt ervoor dat je de standaard gegenereerde naam voor GraphQL kan overschrijven","form.attribute.item.enumeration.placeholder":"Bijv.:\\nochtend\\nmiddag\\navond","form.attribute.item.enumeration.rules":"Waardes (\xE9\xE9n regel per waarde)","form.attribute.item.maximum":"Maximale waarde","form.attribute.item.maximumLength":"Maximale lengte","form.attribute.item.minimum":"Minimale waarde","form.attribute.item.minimumLength":"Minimale lengte","form.attribute.item.number.type":"Nummer formaat","form.attribute.item.number.type.biginteger":"big integer (bijv.: 123456789)","form.attribute.item.number.type.decimal":"decimaal (bijv.: 2.22)","form.attribute.item.number.type.float":"float (bijv.: 3.33333333)","form.attribute.item.number.type.integer":"integer (bijv.: 10)","form.attribute.item.privateField":"Priv\xE9veld","form.attribute.item.privateField.description":"Dit veld wordt niet weergegeven in de API response","form.attribute.item.requiredField":"Verplicht veld","form.attribute.item.requiredField.description":"Je kan geen item aanmaken als dit veld leeg is","form.attribute.item.uniqueField":"Uniek veld","form.attribute.item.uniqueField.description":"Je kan geen item aanmaken als er een item is met gelijke inhoud","form.attribute.media.option.multiple":"Meerdere media","form.attribute.media.option.multiple.description":"Het beste voor sliders, carrousels of het downloaden van meerdere bestanden","form.attribute.media.option.single":"Enkel media","form.attribute.media.option.single.description":"het beste voor avatar, profielfoto of omslag","form.attribute.settings.default":"Standaard waarde","form.attribute.text.option.long-text":"Lange tekst","form.attribute.text.option.long-text.description":"Het beste voor beschrijvingen of een biografie. Exact zoeken is uitgeschakeld.","form.attribute.text.option.short-text":"Korte tekst","form.attribute.text.option.short-text.description":"Het beste voor titels, namen, linken (URL). Exact zoeken op het veld is mogelijk.","form.button.add-components-to-dynamiczone":"Voeg componenten toe aan de zone","form.button.add-field":"Voeg een veld toe","form.button.add-first-field-to-created-component":"Voeg een eerste veld toe aan het component","form.button.add.field.to.collectionType":"Voeg een veld toe aan dit collectie type","form.button.add.field.to.component":"Voeg een veld toe aan dit component","form.button.add.field.to.contentType":"Voeg een veld toe aan dit content type","form.button.add.field.to.singleType":"Voeg een veld toe aan dit enkel type","form.button.cancel":"Annuleren","form.button.collection-type.description":"Het beste voor meerdere instanties zoals artikelen, producten, opmerkingen, enz.","form.button.configure-component":"Configureer het component","form.button.configure-view":"Configureer de weergave","form.button.select-component":"Selecteer een component","form.button.single-type.description":"Het beste voor een enkele instantie zoals over ons, homepage, enz.","from":"van","modalForm.attribute.form.base.name.description":"Er is geen ruimte toegestaan voor de naam van het attribuut","modalForm.attribute.form.base.name.placeholder":"Bijv.: slug, seoUrl, canonicalUrl","modalForm.attribute.target-field":"Gekoppeld veld","modalForm.attributes.select-component":"Selecteer een component","modalForm.attributes.select-components":"Selecteer de componenten","modalForm.component.header-create":"Maak een component","modalForm.components.create-component.category.label":"Selecteer een categorie of voer een naam in om een nieuwe te maken","modalForm.components.icon.label":"Icoon","modalForm.editCategory.base.name.description":"Er is geen spatie toegestaan in de naam van een categorie","modalForm.header-edit":"Bewerk {name}","modalForm.header.categories":"Categorie\xEBn","modalForm.header.back":"Rug","modalForm.singleType.header-create":"Maak een enkel type","modalForm.sub-header.addComponentToDynamicZone":"Voeg een nieuw component toe aan de dynamische zone","modalForm.sub-header.attribute.create":"Voeg een nieuw {type} veld toe","modalForm.sub-header.attribute.create.step":"Nieuw component toevoegen ({step}/2)","modalForm.sub-header.attribute.edit":"Bewerk {name}","modalForm.sub-header.chooseAttribute.collectionType":"Selecteer een veld voor het collectie type","modalForm.sub-header.chooseAttribute.component":"Selecteer een veld voor het component","modalForm.sub-header.chooseAttribute.singleType":"Selecteer een veld voor het enkel type","modelPage.attribute.relation-polymorphic":"Relatie (polymorf)","modelPage.attribute.relationWith":"Relatie met","notification.info.autoreaload-disable":"De autoReload-functie is vereist om deze plug-in te gebruiken. Herstart de server met `strapi develop`","notification.info.creating.notSaved":"Sla het werk op voordat je een nieuw collectie type of component aanmaakt","plugin.description.long":"Modelleer de gegevensstructuur van de API. Maak nieuwe velden en relaties in slechts een minuut. De bestanden worden automatisch aangemaakt en bijgewerkt in jouw project.","plugin.description.short":"Modelleer de gegevensstructuur van de API","popUpForm.navContainer.advanced":"Geavanceerde instellingen","popUpForm.navContainer.base":"Standaard instellingen","popUpWarning.bodyMessage.cancel-modifications":"Weet je zeker dat je de wijzigingen wilt annuleren?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Are you sure you want to cancel your modifications? Some components have been created or modified...","popUpWarning.bodyMessage.category.delete":"Are you sure you want to delete this category? All the components will also be deleted.","popUpWarning.bodyMessage.component.delete":"Are you sure you want to delete this component?","popUpWarning.bodyMessage.contentType.delete":"Weet je zeker dat je dit collectie type wilt verwijderen?","prompt.unsaved":"Weet je zeker dat je wilt stoppen? Al uw wijzigingen gaan verloren.","relation.attributeName.placeholder":"Bijv.: auteur, categorie, tag","relation.manyToMany":"heeft en behoort tot veel","relation.manyToOne":"heeft veel en behoort tot \xE9\xE9n","relation.manyWay":"heeft veel","relation.oneToMany":"behoort tot vele","relation.oneToOne":"heeft en behoort tot \xE9\xE9n","relation.oneWay":"heeft \xE9\xE9n"}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3948],{68630:function(e){e.exports=JSON.parse('{"attribute.boolean":"Typ logiczny","attribute.boolean.description":"Tak lub nie, 1 lub 0, true lub false","attribute.component":"Komponent","attribute.component.description":"Grupa p\xF3l do powtarzania lub ponownego u\u017Cywania","attribute.date":"Data","attribute.date.description":"Wyb\xF3r daty z godzinami, minutami i sekundami","attribute.datetime":"Data i godzina","attribute.dynamiczone":"Strefa dynamiczna","attribute.dynamiczone.description":"Dynamicznie wybierz komponent podczas edycji tre\u015Bci","attribute.email":"Email","attribute.email.description":"Pole email ze sprawdzaniem poprawno\u015Bci","attribute.enumeration":"Wyliczenie","attribute.enumeration.description":"Lista warto\u015Bci do jednokrotnego wyboru","attribute.json":"JSON","attribute.json.description":"Dane w formacie JSON","attribute.media":"Media","attribute.media.description":"Pliki takie jak obrazki, filmy, itp.","attribute.null":" ","attribute.number":"Liczba","attribute.number.description":"Liczby (ca\u0142kowita, zmiennoprzecinkowa, dziesi\u0119tna)","attribute.password":"Has\u0142o","attribute.password.description":"Pole has\u0142a z szyfrowaniem","attribute.relation":"Relacja","attribute.relation.description":"Odno\u015Bnik do innego modelu","attribute.richtext":"Tekst sformatowany","attribute.richtext.description":"Edytor tekstu z mo\u017Cliwo\u015Bci\u0105 formatowania","attribute.text":"Tekst","attribute.text.description":"Kr\xF3tki lub d\u0142ugi tekst jak tytu\u0142 lub opis","attribute.time":"Czas","attribute.timestamp":"Znacznik czasu","attribute.uid":"UID","attribute.uid.description":"Unikalny identyfikator","button.attributes.add.another":"Dodaj kolejne pole","button.component.add":"Dodaj komponent","button.component.create":"Nowy komponent","button.model.create":"Nowa kolekcja","button.single-types.create":"Nowy pojedynczy typ","component.repeatable":"(powtarzalne)","components.SelectComponents.displayed-value":"{number, plural, =0 {# } one {# } other {# }} wybrano","components.componentSelect.no-component-available":"Doda\u0142e\u015B ju\u017C wszystkie swoje komponenty","components.componentSelect.no-component-available.with-search":"Brak element\xF3w pasuj\u0105cych do twojego wyszukiwania","components.componentSelect.value-component":"{number} wybrany komponent (wpisz, aby wyszuka\u0107 komponent)","components.componentSelect.value-components":"{number} wybranych komponent\xF3w","configurations":"Ustawienia","contentType.apiId-plural.description":"API ID w liczbie mnogiej","contentType.apiId-plural.label":"API ID (liczba mnoga)","contentType.apiId-singular.description":"UID jest u\u017Cywane do generowania \u015Bcie\u017Cek API i tabel/kolekcji w bazie danych","contentType.apiId-singular.label":"API ID (liczba pojedyncza)","contentType.collectionName.description":"Przydatne, gdy nazwa typu zawarto\u015Bci i nazwa tabeli r\xF3\u017Cni\u0105 si\u0119","contentType.collectionName.label":"Nazwa kolekcji","contentType.displayName.label":"Nazwa","contentType.draftAndPublish.description":"Napisz szkic ka\u017Cdego wpisu przed publikacj\u0105","contentType.draftAndPublish.label":"System szkicu/publikacji","contentType.kind.change.warning":"W\u0142a\u015Bnie zmieni\u0142e\u015B rodzaj typu tre\u015Bci: API zostanie zresetowane (\u015Bcie\u017Cki, kontrolery i us\u0142ugi zostan\u0105 nadpisane).","error.attributeName.reserved-name":"Ta nazwa nie mo\u017Ce by\u0107 u\u017Cywana w tym typie tre\u015Bci, poniewa\u017C mo\u017Ce uszkodzi\u0107 inne funkcje","error.contentType.pluralName-used":"Ta warto\u015B\u0107 nie mo\u017Ce by\u0107 taka sama jak pojedyncza","error.contentType.singularName-used":"Ta warto\u015B\u0107 nie mo\u017Ce by\u0107 taka sama jak mnoga","error.contentTypeName.reserved-name":"Ta nazwa nie mo\u017Ce by\u0107 u\u017Cywana w tym typie tre\u015Bci, poniewa\u017C mo\u017Ce uszkodzi\u0107 inne funkcje","error.validation.enum-duplicate":"Zduplikowane warto\u015Bci nie s\u0105 dozwolone","error.validation.enum-empty-string":"Puste pola nie s\u0105 dozwolone","error.validation.enum-number":"Warto\u015B\u0107 nie mo\u017Ce zaczyna\u0107 si\u0119 liczb\u0105","error.validation.minSupMax":"Nie mo\u017Ce by\u0107 wy\u017Cszy","error.validation.positive":"Musi by\u0107 liczb\u0105 dodatni\u0105","error.validation.regex":"Regex jest niepoprawny","error.validation.relation.targetAttribute-taken":"Ta nazwa ju\u017C istnieje","form.attribute.component.option.add":"Dodaj komponent","form.attribute.component.option.create":"Utw\xF3rz nowy komponent","form.attribute.component.option.create.description":"Komponent jest wsp\xF3\u0142u\u017Cytkowany przez typy i komponenty, b\u0119dzie dost\u0119pny wsz\u0119dzie.","form.attribute.component.option.repeatable":"Powtarzalny komponent","form.attribute.component.option.repeatable.description":"Najlepsze dla wielu wyst\u0105pie\u0144 (tablicy) np. sk\u0142adnik\xF3w, metatag\xF3w itp.","form.attribute.component.option.reuse-existing":"U\u017Cyj istniej\u0105cego komponentu","form.attribute.component.option.reuse-existing.description":"Ponownie u\u017Cyj utworzonego ju\u017C komponentu, aby zachowa\u0107 sp\xF3jno\u015B\u0107 danych mi\u0119dzy typami tre\u015Bci.","form.attribute.component.option.single":"Pojedynczy komponent","form.attribute.component.option.single.description":"Najlepsze do grupowania p\xF3l takich jak adres, g\u0142\xF3wne informacje itp.","form.attribute.item.customColumnName":"W\u0142asne nazwy tabel","form.attribute.item.customColumnName.description":"Jest to przydatne do zmiany nazwy tabel bazy danych w bardziej wszechstronnym formacie odpowiedzi API","form.attribute.item.date.type.date":"data (np: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"data i czas (np: 01/01/{currentYear} 00:00 AM)","form.attribute.item.date.type.time":"czas (np: 00:00 AM)","form.attribute.item.defineRelation.fieldName":"Nazwa pola","form.attribute.item.enumeration.graphql":"Nadpisanie nazwy dla GraphQL","form.attribute.item.enumeration.graphql.description":"Pozwalaj na nadpisanie domy\u015Blnie wygenerowanej nazwy dla GraphQL.","form.attribute.item.enumeration.placeholder":"Przyk\u0142ad:\\nrano\\npo\u0142udnie\\nwiecz\xF3r","form.attribute.item.enumeration.rules":"Warto\u015Bci (ka\u017Cda w osobnej linii)","form.attribute.item.maximum":"Maksymalna warto\u015B\u0107","form.attribute.item.maximumLength":"Maksymalna d\u0142ugo\u015B\u0107","form.attribute.item.minimum":"Minimalna warto\u015B\u0107","form.attribute.item.minimumLength":"Minimalna d\u0142ugo\u015B\u0107","form.attribute.item.number.type":"Format liczby","form.attribute.item.number.type.biginteger":"du\u017Ca liczba ca\u0142kowita (np. 123456789)","form.attribute.item.number.type.decimal":"dziesi\u0119tna (np: 2.22)","form.attribute.item.number.type.float":"zmiennoprzecinkowa (np: 3.33333333)","form.attribute.item.number.type.integer":"ca\u0142kowita (np: 10)","form.attribute.item.privateField":"Pole prywatne","form.attribute.item.privateField.description":"To pole nie pojawi si\u0119 w odpowiedzi API","form.attribute.item.requiredField":"Wymagany","form.attribute.item.requiredField.description":"Nie b\u0119dziesz w stanie stworzy\u0107 wpisu je\u017Celi atrybut b\u0119dzie pusty","form.attribute.item.text.regex":"RegExp","form.attribute.item.text.regex.description":"Wyra\u017Cenie regularne","form.attribute.item.uniqueField":"Pole unikalne","form.attribute.item.uniqueField.description":"Nie b\u0119dziesz w stanie stworzy\u0107 wpisu je\u017Celi b\u0119dzie istnia\u0142 element z tak\u0105 sam\u0105 zawarto\u015Bci\u0105","form.attribute.media.allowed-types":"Wybierz dozwolone media","form.attribute.media.allowed-types.option-files":"Pliki","form.attribute.media.allowed-types.option-images":"Obrazki","form.attribute.media.allowed-types.option-videos":"Filmy","form.attribute.media.option.multiple":"Wiele medi\xF3w","form.attribute.media.option.multiple.description":"Najlepsze dla slajder\xF3w, karuzeli lub pobierania wielu plik\xF3w","form.attribute.media.option.single":"Pojedyncze media","form.attribute.media.option.single.description":"Najlepsze dla awatara, zdj\u0119cia profilowego lub ok\u0142adki","form.attribute.settings.default":"Domy\u015Blna warto\u015B\u0107","form.attribute.text.option.long-text":"D\u0142ugi tekst","form.attribute.text.option.long-text.description":"Najlepszy dla opis\xF3w, biografii. Dok\u0142adne wyszukiwanie jest wy\u0142\u0105czone.","form.attribute.text.option.short-text":"Kr\xF3tki tekst","form.attribute.text.option.short-text.description":"Najlepszy dla tytu\u0142\xF3w, nazw, link\xF3w (URL). Umo\u017Cliwia tak\u017Ce dok\u0142adne wyszukiwanie dla pola.","form.button.add-components-to-dynamiczone":"Dodaj komponenty do strefy","form.button.add-field":"Dodaj kolejne pole","form.button.add-first-field-to-created-component":"Dodaj pierwsze pole do komponentu","form.button.add.field.to.collectionType":"Dodaj kolejne pole","form.button.add.field.to.component":"Dodaj kolejne pole","form.button.add.field.to.contentType":"Dodaj kolejne pole","form.button.add.field.to.singleType":"Dodaj kolejne pole","form.button.cancel":"Anuluj","form.button.collection-type.description":"Najlepsze rozwi\u0105zanie dla wielu wyst\u0105pie\u0144 typu artyku\u0142y, produkty, komentarze itd.","form.button.collection-type.name":"Kolekcja","form.button.configure-component":"Skonfiguruj komponent","form.button.configure-view":"Skonfiguruj widok","form.button.select-component":"Wybierz komponent","form.button.single-type.description":"Najlepsze rozwi\u0105zanie dla pojedynczych wyst\u0105pie\u0144 typu strona g\u0142\xF3wna, strona o nas itd","form.button.single-type.name":"Pojedynczy typ","from":"z","listView.headerLayout.description":"Stw\xF3rz struktur\u0119 danych dla twoich tre\u015Bci","menu.section.components.name":"Komponenty","menu.section.models.name":"Kolekcje","menu.section.single-types.name":"Pojedyncze typy","modalForm.attribute.form.base.name.description":"Spacja nie jest dozwolona dla nazwy","modalForm.attribute.form.base.name.placeholder":"np. slug, seoUrl, canonicalUrl","modalForm.attribute.target-field":"Do\u0142\u0105czone pole","modalForm.attributes.select-component":"Wybierz komponent","modalForm.attributes.select-components":"Wybierz komponenty","modalForm.collectionType.header-create":"Nowa kolekcja","modalForm.component.header-create":"Nowy komponent","modalForm.components.create-component.category.label":"Wybierz kategori\u0119 lub wprowad\u017A nazw\u0119, aby utworzy\u0107 now\u0105","modalForm.components.icon.label":"Ikona","modalForm.editCategory.base.name.description":"Spacja nie jest dozwolona dla nazwy kategorii","modalForm.header-edit":"Edytuj {name}","modalForm.header.categories":"Kategorie","modalForm.header.back":"Z powrotem","modalForm.singleType.header-create":"Nowy pojedynczy typ","modalForm.sub-header.addComponentToDynamicZone":"Dodaj nowy komponent do strefy dynamicznej","modalForm.sub-header.attribute.create":"Dodaj nowe pole {type}","modalForm.sub-header.attribute.create.step":"Dodaj nowy komponent ({step}/2)","modalForm.sub-header.attribute.edit":"Edytuj {name}","modalForm.sub-header.chooseAttribute.collectionType":"Wybierz pole dla kolekcji","modalForm.sub-header.chooseAttribute.component":"Wybierz pole dla komponentu","modalForm.sub-header.chooseAttribute.singleType":"Wybierz pole dla pojedynczego typu","modelPage.attribute.relation-polymorphic":"Relacja","modelPage.attribute.relationWith":"Relacja z","notification.error.dynamiczone-min.validation":"Co najmniej jeden komponent jest wymagany","notification.info.autoreaload-disable":"Funkcja autoReload jest wymagana by u\u017Cy\u0107 tego pluginu. Uruchom serwer u\u017Cywaj\u0105c `strapi develop`","notification.info.creating.notSaved":"Zapisz swoj\u0105 prac\u0119 przed utworzeniem nowego typu tre\u015Bci lub komponentu","plugin.description.long":"Modeluj struktur\u0119 danych swojego API. Tw\xF3rz atrybuty i relacje w minut\u0119. Pliki s\u0105 automatycznie tworzone i aktualizowane w twoim projekcie.","plugin.description.short":"Modeluj struktur\u0119 danych swojego API.","plugin.name":"Kreator typu tre\u015Bci","popUpForm.navContainer.advanced":"Zaawansowane","popUpForm.navContainer.base":"Podstawowe","popUpWarning.bodyMessage.cancel-modifications":"Czy na pewno chcesz anulowa\u0107 swoje zmiany?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Czy na pewno chcesz anulowa\u0107 swoje zmiany? Niekt\xF3re komponenty zosta\u0142y utworzone lub zmodyfikowane ...","popUpWarning.bodyMessage.category.delete":"Czy na pewno chcesz usun\u0105\u0107 t\u0119 kategori\u0119? Wszystkie komponenty r\xF3wnie\u017C zostan\u0105 usuni\u0119te.","popUpWarning.bodyMessage.component.delete":"Czy na pewno chcesz usun\u0105\u0107 ten komponent?","popUpWarning.bodyMessage.contentType.delete":"Czy na pewno chcesz usun\u0105\u0107 t\u0119 kolekcj\u0119?","popUpWarning.draft-publish.button.confirm":"Tak, wy\u0142\u0105cz","popUpWarning.draft-publish.message":"Je\u015Bli wy\u0142\u0105czysz system szkicu/publikacji, wszystkie twoje szkice zostan\u0105 usuni\u0119te.","popUpWarning.draft-publish.second-message":"Czy na pewno chcesz to wy\u0142\u0105czy\u0107?","prompt.unsaved":"Jeste\u015B pewny, \u017Ce chcesz wyj\u015B\u0107? Wszystkie twoje zmiany zostan\u0105 utracone.","relation.attributeName.placeholder":"Np: autor, kategoria, tag","relation.manyToMany":"zawiera i nale\u017Cy do wielu","relation.manyToOne":"zawiera wiele","relation.manyWay":"ma wiele","relation.oneToMany":"nale\u017Cy do wielu","relation.oneToOne":"zawiera i nale\u017Cy do","relation.oneWay":"zawiera","table.button.no-fields":"Dodaj nowe pole","table.content.create-first-content-type":"Stw\xF3rz pierwszy typ tre\u015Bci","table.content.no-fields.collection-type":"Dodaj pierwsze pole do tego typu tre\u015Bci","table.content.no-fields.component":"Dodaj pierwsze pole do tego komponentu"}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[5906],{52805:function(e){e.exports=JSON.parse('{"attribute.boolean":"Booleano","attribute.boolean.description":"Sim ou n\xE3o, 1 ou 0, verdadeiro ou falso","attribute.component":"Componente","attribute.component.description":"Grupo de campos que voc\xEA pode repetir ou reutilizar","attribute.date":"Data","attribute.date.description":"Seleciona datas com horas, minutos e segundos","attribute.datetime":"Data e hora","attribute.dynamiczone":"Zona din\xE2mica","attribute.dynamiczone.description":"Escolha um componente dinamicamente quando estiver editando um conte\xFAdo","attribute.email":"E-mail","attribute.email.description":"Campo de email com valida\xE7\xE3o de formato","attribute.enumeration":"Enumera\xE7\xE3o","attribute.enumeration.description":"Lista de valores, escolha um","attribute.json":"JSON","attribute.json.description":"Dados no formato de JSON","attribute.media":"M\xEDdia","attribute.media.description":"Arquivos como imagens, v\xEDdeos, etc","attribute.null":" ","attribute.number":"N\xFAmero","attribute.number.description":"N\xFAmeros (inteiro, flutuante, decimal)","attribute.password":"Senha","attribute.password.description":"Campo de senha com criptografia","attribute.relation":"Rela\xE7\xE3o","attribute.relation.description":"Refere-se a um Tipo de Cole\xE7\xE3o","attribute.richtext":"Texto avan\xE7ado","attribute.richtext.description":"Um editor de texto avan\xE7ado com op\xE7\xF5es de formata\xE7\xE3o","attribute.text":"Texto","attribute.text.description":"Texto curto ou longo como t\xEDtulo ou descri\xE7\xE3o","attribute.time":"Time","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"Identificador \xFAnico","button.attributes.add.another":"Adicionar outro campo","button.component.add":"Adicionar um componente","button.component.create":"Criar novo componente","button.model.create":"Criar novo tipo de cole\xE7\xE3o","button.single-types.create":"Criar novo tipo \xFAnico","component.repeatable":"(repet\xEDvel)","components.SelectComponents.displayed-value":"{number, plural, =0 {# componentes} one {# componente} other {# componentes}} selecionados","components.componentSelect.no-component-available":"Voc\xEA j\xE1 adicionou todos os seus componentes","components.componentSelect.no-component-available.with-search":"N\xE3o h\xE1 nenhum componente que corresponda \xE0 sua pesquisa","components.componentSelect.value-component":"{number} componente selecionado (digite para pesquisar por um componente)","components.componentSelect.value-components":"{number} componentes selecionados","configurations":"Configura\xE7\xF5es","contentType.apiId-plural.description":"ID de API pluralizado","contentType.apiId-plural.label":"ID da API (plural)","contentType.apiId-singular.description":"O UID \xE9 usado para gerar as rotas de API e tabelas/cole\xE7\xF5es de bancos de dados","contentType.apiId-singular.label":"ID da API (Singular)","contentType.collectionName.description":"\xDAtil quando o nome do seu Tipo de Conte\xFAdo e o nome da sua tabela diferem","contentType.collectionName.label":"Nome da cole\xE7\xE3o","contentType.displayName.label":"Mostrar nome","contentType.draftAndPublish.description":"Escreva uma vers\xE3o de rascunho de cada entrada antes de public\xE1-la","contentType.draftAndPublish.label":"Sistema de rascunho/publica\xE7\xE3o","contentType.kind.change.warning":"Voc\xEA acabou de alterar o tipo de um tipo de conte\xFAdo: a API ser\xE1 redefinida (rotas, controladores e servi\xE7os ser\xE3o substitu\xEDdos).","error.attributeName.reserved-name":"Este nome n\xE3o pode ser usado em seu tipo de conte\xFAdo, pois pode quebrar outras funcionalidades","error.contentType.pluralName-used":"Este valor n\xE3o pode ser igual ao singular","error.contentType.singularName-used":"Este valor n\xE3o pode ser igual ao plural","error.contentTypeName.reserved-name":"Este nome n\xE3o pode ser usado em seu projeto, pois pode quebrar outras funcionalidades","error.validation.enum-duplicate":"Valores duplicados n\xE3o s\xE3o permitidos (somente os caracteres alfanum\xE9ricos s\xE3o considerados).","error.validation.enum-empty-string":"Strings vazias n\xE3o s\xE3o permitidas","error.validation.enum-regex":"Pelo menos um valor \xE9 inv\xE1lido. Os valores devem ter pelo menos um caractere alfab\xE9tico antes da primeira ocorr\xEAncia de um n\xFAmero.","error.validation.minSupMax":"N\xE3o pode ser superior","error.validation.positive":"Valor deve ser positivo","error.validation.regex":"O padr\xE3o Regex \xE9 inv\xE1lido","error.validation.relation.targetAttribute-taken":"Este atributo j\xE1 est\xE1 sendo usado","form.attribute.component.option.add":"Adicionar componente","form.attribute.component.option.create":"Criar novo componente","form.attribute.component.option.create.description":"Um componente \xE9 compartilhado entre tipos e componentes, ele estar\xE1 dispon\xEDvel e acess\xEDvel em qualquer lugar.","form.attribute.component.option.repeatable":"Componente repet\xEDvel","form.attribute.component.option.repeatable.description":"Melhor para v\xE1rias inst\xE2ncias (array) de ingredientes, meta tags, etc.","form.attribute.component.option.reuse-existing":"Reutilizar componente existente","form.attribute.component.option.reuse-existing.description":"Reutilize um componente j\xE1 criado para manter seus dados consistentes em todos os tipos de conte\xFAdo.","form.attribute.component.option.single":"Componente \xFAnico","form.attribute.component.option.single.description":"Melhor para agrupar campos como endere\xE7o completo, informa\xE7\xF5es principais, etc...","form.attribute.item.customColumnName":"Nomes de coluna personalizados","form.attribute.item.customColumnName.description":"Isso \xE9 \xFAtil para renomear os nomes das colunas do banco de dados em um formato mais abrangente para as respostas da API","form.attribute.item.date.type.date":"data (ex: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"data e hora (ex: 01/01/{currentYear} 00:00 AM)","form.attribute.item.date.type.time":"hora (ex: 00:00 AM)","form.attribute.item.defineRelation.fieldName":"Nome do campo","form.attribute.item.enumeration.graphql":"Substitui\xE7\xE3o de nome para GraphQL","form.attribute.item.enumeration.graphql.description":"Permite que voc\xEA substitua o nome padr\xE3o gerado para GraphQL","form.attribute.item.enumeration.placeholder":"Ex:\\nmanh\xE3\\ntarde\\nnoite","form.attribute.item.enumeration.rules":"Valores (uma linha por valor)","form.attribute.item.maximum":"Valor m\xE1ximo","form.attribute.item.maximumLength":"Tamanho m\xE1ximo","form.attribute.item.minimum":"Valor m\xEDnimo","form.attribute.item.minimumLength":"Tamanho m\xEDnimo","form.attribute.item.number.type":"Formato de n\xFAmero","form.attribute.item.number.type.biginteger":"inteiro grande (ex: 123456789)","form.attribute.item.number.type.decimal":"decimal (ex: 2.22)","form.attribute.item.number.type.float":"float (ex: 3.33333333)","form.attribute.item.number.type.integer":"inteiro (ex: 10)","form.attribute.item.privateField":"Campo privado","form.attribute.item.privateField.description":"Este campo n\xE3o aparecer\xE1 na resposta da API","form.attribute.item.requiredField":"Campo obrigat\xF3rio","form.attribute.item.requiredField.description":"Voc\xEA n\xE3o poder\xE1 criar uma entrada se este campo estiver vazio","form.attribute.item.text.regex":"Padr\xE3o Regex","form.attribute.item.text.regex.description":"O texto da express\xE3o regular","form.attribute.item.uniqueField":"Campo \xFAnico","form.attribute.item.uniqueField.description":"Voc\xEA n\xE3o poder\xE1 criar uma entrada se houver uma entrada existente com conte\xFAdo id\xEAntico","form.attribute.media.allowed-types":"Selecione os tipos de m\xEDdia permitidos","form.attribute.media.allowed-types.option-files":"Arquivos","form.attribute.media.allowed-types.option-images":"Imagens","form.attribute.media.allowed-types.option-videos":"V\xEDdeos","form.attribute.media.option.multiple":"M\xFAltiplos","form.attribute.media.option.multiple.description":"Melhor para sliders, carross\xE9is ou download de v\xE1rios arquivos","form.attribute.media.option.single":"\xDAnico","form.attribute.media.option.single.description":"Melhor para avatar, foto de perfil ou capa","form.attribute.settings.default":"Valor Padr\xE3o","form.attribute.text.option.long-text":"Texto longo","form.attribute.text.option.long-text.description":"Melhor para descri\xE7\xF5es, biografia. A pesquisa exata est\xE1 desativada.","form.attribute.text.option.short-text":"Texto curto","form.attribute.text.option.short-text.description":"Melhor para t\xEDtulos, nomes, links (URL). Tamb\xE9m permite a pesquisa exata no campo.","form.button.add-components-to-dynamiczone":"Adicionar componentes \xE0 zona","form.button.add-field":"Adicionar campo","form.button.add-first-field-to-created-component":"Adicionar primeiro campo ao componente criado","form.button.add.field.to.collectionType":"Adicionar outro campo a este tipo de cole\xE7\xE3o","form.button.add.field.to.component":"Adicionar outro campo a este componente","form.button.add.field.to.contentType":"Adicionar outro campo a este tipo de conte\xFAdo","form.button.add.field.to.singleType":"Adicionar outro campo a este \xFAnico tipo","form.button.cancel":"Cancelar","form.button.collection-type.description":"Melhor para v\xE1rias inst\xE2ncias, como artigos, produtos, coment\xE1rios etc.","form.button.collection-type.name":"Tipo de Cole\xE7\xE3o","form.button.configure-component":"Configurar componente","form.button.configure-view":"Configurar visualiza\xE7\xE3o","form.button.select-component":"Selecionar componente","form.button.single-type.description":"Melhor para inst\xE2ncia \xFAnica, como sobre n\xF3s, p\xE1gina inicial etc.","form.button.single-type.name":"Tipo \xDAnico","from":"de","listView.headerLayout.description":"Crie a arquitetura de dados do seu conte\xFAdo","menu.section.components.name":"Componentes","menu.section.models.name":"Tipos de Cole\xE7\xE3o","menu.section.single-types.name":"Tipos \xDAnicos","modalForm.attribute.form.base.name.description":"Nenhum espa\xE7o \xE9 permitido para o nome do atributo","modalForm.attribute.form.base.name.placeholder":"por exemplo. slug, urlDeSeo, urlCan\xF4nica","modalForm.attribute.target-field":"Campo anexado","modalForm.attributes.select-component":"Selecione um componente","modalForm.attributes.select-components":"Selecione os componentes","modalForm.collectionType.header-create":"Criar modelo","modalForm.component.header-create":"Criar componente","modalForm.components.create-component.category.label":"Selecione uma categoria ou insira um nome para criar uma nova","modalForm.components.icon.label":"\xCDcone","modalForm.editCategory.base.name.description":"N\xE3o \xE9 permitido espa\xE7o para o nome da categoria","modalForm.header-edit":"Editar {name}","modalForm.header.categories":"Categorias","modalForm.header.back":"Voltar","modalForm.singleType.header-create":"Criar tipo \xFAnico","modalForm.sub-header.addComponentToDynamicZone":"Adicionar novo componente \xE0 zona din\xE2mica","modalForm.sub-header.attribute.create":"Adicionar novo campo {type}","modalForm.sub-header.attribute.create.step":"Adicionar novo componente ({step}/2)","modalForm.sub-header.attribute.edit":"Editar {name}","modalForm.sub-header.chooseAttribute.collectionType":"Selecione um campo para seu tipo de cole\xE7\xE3o","modalForm.sub-header.chooseAttribute.component":"Selecione um campo para seu componente","modalForm.sub-header.chooseAttribute.singleType":"Selecione um campo para seu tipo \xFAnico","modelPage.attribute.relation-polymorphic":"Rela\xE7\xE3o (polim\xF3rfica)","modelPage.attribute.relationWith":"Rela\xE7\xE3o com","notification.error.dynamiczone-min.validation":"Pelo menos um componente \xE9 necess\xE1rio em uma zona din\xE2mica para poder salvar um tipo de conte\xFAdo","notification.info.autoreaload-disable":"O recurso autoReload \xE9 necess\xE1rio para usar este plugin. Inicie seu servidor com `strapi develop`","notification.info.creating.notSaved":"Por favor, salve seu trabalho antes de criar um novo tipo de cole\xE7\xE3o ou componente","plugin.description.long":"Modele a estrutura de dados da sua API. Crie novos campos e rela\xE7\xF5es em apenas um minuto. Os arquivos s\xE3o criados e atualizados automaticamente em seu projeto.","plugin.description.short":"Modele a estrutura de dados da sua API.","plugin.name":"Criador de tipo de conte\xFAdo","popUpForm.navContainer.advanced":"Configura\xE7\xF5es avan\xE7adas","popUpForm.navContainer.base":"Configura\xE7\xF5es b\xE1sicas","popUpWarning.bodyMessage.cancel-modifications":"Tem certeza de que deseja cancelar suas modifica\xE7\xF5es?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Tem certeza de que deseja cancelar suas modifica\xE7\xF5es? Alguns componentes foram criados ou modificados...","popUpWarning.bodyMessage.category.delete":"Tem certeza de que deseja excluir esta categoria? Todos os componentes tamb\xE9m ser\xE3o exclu\xEDdos.","popUpWarning.bodyMessage.component.delete":"Tem certeza de que deseja excluir este componente?","popUpWarning.bodyMessage.contentType.delete":"Tem certeza de que deseja excluir este tipo de cole\xE7\xE3o?","popUpWarning.draft-publish.button.confirm":"Sim, desabilitar ","popUpWarning.draft-publish.message":"Se voc\xEA desativar o sistema Rascunho/Publicar, seus rascunhos ser\xE3o exclu\xEDdos.","popUpWarning.draft-publish.second-message":"Tem certeza de que deseja desativ\xE1-lo?","prompt.unsaved":"Voc\xEA tem certeza de que quer sair? Todas as suas modifica\xE7\xF5es ser\xE3o perdidas.","relation.attributeName.placeholder":"Ex: autor, categoria, tag","relation.manyToMany":"tem e pertence a muitos","relation.manyToOne":"tem e pertence a um","relation.manyWay":"tem e pertence a muitos","relation.oneToMany":"pertence a muitos","relation.oneToOne":"tem e pertence a um","relation.oneWay":"pertence a um","table.button.no-fields":"Adicionar novo campo","table.content.create-first-content-type":"Crie seu primeiro tipo de cole\xE7\xE3o","table.content.no-fields.collection-type":"Adicione seu primeiro campo a este Tipo de Cole\xE7\xE3o","table.content.no-fields.component":"Adicione seu primeiro campo a este Componente"}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[7934],{47036:function(e){e.exports=JSON.parse('{"attribute.boolean":"Booleano","attribute.date":"Data","attribute.email":"Email","attribute.enumeration":"Enumera\xE7\xE3o","attribute.json":"JSON","attribute.media":"Media","attribute.password":"Palavra-passe","attribute.relation":"Rela\xE7\xE3o","attribute.text":"Texto","form.attribute.item.customColumnName":"Nomes de colunas personalizadas","form.attribute.item.customColumnName.description":"Isto \xE9 \xFAtil para renomear os nomes das colunas da base de dados num formato mais abrangente para as respostas da API","form.attribute.item.defineRelation.fieldName":"Nome do campo","form.attribute.item.enumeration.graphql":"Substitui\xE7\xE3o de nome para o GraphQL","form.attribute.item.enumeration.graphql.description":"Permite-lhe a substitui\xE7\xE3o do nome predefinido para o GraphQL","form.attribute.item.enumeration.placeholder":"Ex:\\nmanh\xE3\\ntarde\\nnoite","form.attribute.item.enumeration.rules":"Valores (um valor por linha)","form.attribute.item.maximum":"Valor m\xE1ximo","form.attribute.item.maximumLength":"Comprimento m\xE1ximo","form.attribute.item.minimum":"Valor m\xEDnimo","form.attribute.item.minimumLength":"Comprimento m\xEDnimo","form.attribute.item.number.type":"Formato num\xE9rico","form.attribute.item.number.type.decimal":"decimal (ex: 2.22)","form.attribute.item.number.type.float":"real (ex: 3.33333333)","form.attribute.item.number.type.integer":"inteiro (ex: 10)","form.attribute.item.requiredField":"Campo obrigat\xF3rio","form.attribute.item.requiredField.description":"N\xE3o ser\xE1 capaz de criar uma entrada se este campo estiver vazio","form.attribute.item.uniqueField":"Campo \xFAnico","form.attribute.item.uniqueField.description":"N\xE3o ser\xE1 capaz de criar uma entrada se houver uma entrada existente com conte\xFAdo id\xEAntico","form.attribute.settings.default":"Valor predefinido","form.button.cancel":"Cancelar","from":"de","modelPage.attribute.relationWith":"Rela\xE7\xE3o com","plugin.description.long":"Modele a estrutura de dados da sua API. Crie novos campos e rela\xE7\xF5es em apenas um minuto. Os ficheiros s\xE3o automaticamente criados e actualizados no seu projecto.","plugin.description.short":"Modele a estrutura de dados da sua API.","popUpForm.navContainer.advanced":"Defini\xE7\xF5es Avan\xE7adas","popUpForm.navContainer.base":"Defini\xE7\xF5es B\xE1sicas","popUpWarning.bodyMessage.contentType.delete":"Tem a certeza que pretende apagar este Tipo de Conte\xFAdo?","relation.attributeName.placeholder":"Ex: autor, categoria, tag","relation.manyToMany":"tem e pertence a v\xE1rios","relation.manyToOne":"tem v\xE1rios","relation.oneToMany":"pertence a v\xE1rios","relation.oneToOne":"tem e pertence a um","relation.oneWay":"tem um"}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[7186],{72379:function(t){t.exports=JSON.parse('{"attribute.boolean":"Boolean","attribute.boolean.description":"\u0414\u0430 \u0438\u043B\u0438 \u043D\u0435\u0442, 1 \u0438\u043B\u0438 0, \u0418\u0441\u0442\u0438\u043D\u0430 \u0438\u043B\u0438 \u041B\u043E\u0436\u044C","attribute.component":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","attribute.component.description":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 - \u0433\u0440\u0443\u043F\u043F\u0430 \u043F\u043E\u043B\u0435\u0439, \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u044B\u0445 \u0434\u043B\u044F \u043F\u043E\u0432\u0442\u043E\u0440\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E\u0433\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F","attribute.date":"Date","attribute.date.description":"\u042D\u043B\u0435\u043C\u0435\u043D\u0442 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0434\u0430\u0442\u043E\u0439 \u0438 \u0432\u0440\u0435\u043C\u0435\u043D\u0435\u043C","attribute.datetime":"Datetime","attribute.dynamiczone":"Dynamic zone","attribute.dynamiczone.description":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0441 \u0434\u0438\u043D\u0430\u043C\u0438\u0447\u0435\u0441\u043A\u0438\u043C \u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435\u043C","attribute.email":"Email","attribute.email.description":"\u041F\u043E\u043B\u0435 \u044D\u043B\u0435\u043A\u0442\u0440\u043E\u043D\u043D\u043E\u0439 \u043F\u043E\u0447\u0442\u044B \u0441 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u043E\u0439 \u0444\u043E\u0440\u043C\u0430\u0442\u0430","attribute.enumeration":"Enumeration","attribute.enumeration.description":"\u041F\u0435\u0440\u0435\u0447\u0435\u043D\u044C \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0439, \u0432\u044B\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F \u043E\u0434\u043D\u043E","attribute.json":"JSON","attribute.json.description":"\u0414\u0430\u043D\u043D\u044B\u0435 \u0432 \u0444\u043E\u0440\u043C\u0430\u0442\u0435 JSON","attribute.media":"Media","attribute.media.description":"\u0410\u0443\u0434\u0438\u043E- \u0432\u0438\u0434\u0435\u043E- \u0438 \u043F\u0440\u043E\u0447\u0438\u0435 \u043C\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043B\u044B","attribute.null":" ","attribute.number":"Number","attribute.number.description":"\u0427\u0438\u0441\u043B\u0430 (integer, float, decimal)","attribute.password":"Password","attribute.password.description":"\u041F\u043E\u043B\u0435 \u043F\u0430\u0440\u043E\u043B\u044F \u0441 \u0448\u0438\u0444\u0440\u043E\u0432\u0430\u043D\u0438\u0435\u043C","attribute.relation":"Relation","attribute.relation.description":"\u0421\u0441\u044B\u043B\u043A\u0430 \u043D\u0430 \u043A\u0430\u043A\u043E\u0439-\u043B\u0438\u0431\u043E \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","attribute.richtext":"Rich text","attribute.richtext.description":"\u042D\u043B\u0435\u043C\u0435\u043D\u0442 \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0434\u043B\u044F \u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u044F \u0442\u0435\u043A\u0441\u0442\u0430 \u0441 \u0444\u043E\u0440\u043C\u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435\u043C","attribute.text":"Text","attribute.text.description":"\u041C\u0430\u043B\u0435\u043D\u044C\u043A\u0438\u0439 \u0438\u043B\u0438 \u0434\u043B\u0438\u043D\u043D\u044B\u0439 \u0442\u0435\u043A\u0441\u0442, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440 \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A \u0438\u043B\u0438 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435","attribute.time":"Time","attribute.timestamp":"Timestamp","attribute.uid":"UID","attribute.uid.description":"\u0423\u043D\u0438\u043A\u0430\u043B\u044C\u043D\u044B\u0439 \u0438\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440","button.attributes.add.another":"\u0415\u0449\u0451 \u043F\u043E\u043B\u0435","button.component.add":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","button.component.create":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","button.model.create":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","button.single-types.create":"\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u0435\u0434\u0438\u043D\u0438\u0447\u043D\u044B\u0439 \u0442\u0438\u043F","component.repeatable":"(\u043F\u043E\u0432\u0442\u043E\u0440\u044F\u0435\u0442\u0441\u044F)","components.componentSelect.no-component-available":"\u0412\u044B \u0443\u0436\u0435 \u0434\u043E\u0431\u0430\u0432\u0438\u043B\u0438 \u0432\u0441\u0435 \u0438\u043C\u0435\u044E\u0449\u0438\u0435\u0441\u044F \u0433\u0440\u0443\u043F\u043F\u044B \u043F\u043E\u043B\u0435\u0439","components.componentSelect.no-component-available.with-search":"\u041F\u043E\u0434\u0445\u043E\u0434\u044F\u0449\u0438\u0445 \u0433\u0440\u0443\u043F\u043F \u043F\u043E\u043B\u0435\u0439 \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E","components.componentSelect.value-component":"\u0412\u044B\u0431\u0440\u0430\u043D\u043E \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u043E\u0432 - {number} (\u043D\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u043B\u044F \u043F\u043E\u0438\u0441\u043A\u0430)","components.componentSelect.value-components":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u043E\u0432 \u0432\u044B\u0431\u0440\u0430\u043D\u043E - {number}","configurations":"\u043A\u043E\u043D\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438","contentType.collectionName.description":"\u041F\u043E\u043B\u0435\u0437\u043D\u043E, \u043A\u043E\u0433\u0434\u0430 \u0438\u043C\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430 \u0438 \u0438\u043C\u044F \u0432\u0430\u0448\u0435\u0439 \u0442\u0430\u0431\u043B\u0438\u0446\u044B \u0440\u0430\u0437\u043B\u0438\u0447\u0430\u044E\u0442\u0441\u044F","contentType.collectionName.label":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u0438","contentType.displayName.label":"\u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0435\u043C\u043E\u0435 \u0438\u043C\u044F","contentType.draftAndPublish.description":"\u041D\u0430\u043F\u0438\u0448\u0438\u0442\u0435 \u0447\u0435\u0440\u043D\u043E\u0432\u0443\u044E \u0432\u0435\u0440\u0441\u0438\u044E \u043A\u0430\u0436\u0434\u043E\u0439 \u0437\u0430\u043F\u0438\u0441\u0438 \u043F\u0435\u0440\u0435\u0434 \u043F\u0443\u0431\u043B\u0438\u043A\u0430\u0446\u0438\u0435\u0439","contentType.draftAndPublish.label":"\u0421\u0438\u0441\u0442\u0435\u043C\u0430 \u0447\u0435\u0440\u043D\u043E\u0432\u0438\u043A\u043E\u0432/\u043F\u0443\u0431\u043B\u0438\u043A\u0430\u0446\u0438\u0439","contentType.kind.change.warning":"\u0412\u044B \u0442\u043E\u043B\u044C\u043A\u043E \u0447\u0442\u043E \u0438\u0437\u043C\u0435\u043D\u0438\u043B\u0438 \u0442\u0438\u043F \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430: API \u0431\u0443\u0434\u0435\u0442 \u0441\u0431\u0440\u043E\u0448\u0435\u043D (\u043C\u0430\u0440\u0448\u0440\u0443\u0442\u044B, \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043B\u0435\u0440\u044B \u0438 \u0441\u0435\u0440\u0432\u0438\u0441\u044B \u0431\u0443\u0434\u0443\u0442 \u043F\u0435\u0440\u0435\u0437\u0430\u043F\u0438\u0441\u0430\u043D\u044B).","error.attributeName.reserved-name":"\u042D\u0442\u043E \u0438\u043C\u044F \u043D\u0435\u043B\u044C\u0437\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0432 \u0432\u0430\u0448\u0435\u043C \u0442\u0438\u043F\u0435 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430, \u0442\u0430\u043A \u043A\u0430\u043A \u044D\u0442\u043E \u043C\u043E\u0436\u0435\u0442 \u043D\u0430\u0440\u0443\u0448\u0438\u0442\u044C \u0434\u0440\u0443\u0433\u0438\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u0438.","error.contentTypeName.reserved-name":"\u042D\u0442\u043E \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u0437\u0430\u0440\u0435\u0437\u0435\u0440\u0432\u0438\u0440\u043E\u0432\u0430\u043D\u043E \u0438 \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u043E \u0432 \u043F\u0440\u043E\u0435\u043A\u0442\u0435","error.validation.enum-duplicate":"\u041F\u043E\u0432\u0442\u043E\u0440\u044F\u044E\u0449\u0438\u0435\u0441\u044F \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F \u043D\u0435 \u0434\u043E\u043F\u0443\u0441\u043A\u0430\u044E\u0442\u0441\u044F","error.validation.enum-empty-string":"\u041D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u043F\u0443\u0441\u0442\u043E\u0439 \u0441\u0442\u0440\u043E\u043A\u043E\u0439","error.validation.minSupMax":"\u041D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0432\u044B\u0445\u043E\u0434\u0438\u0442\u044C \u0437\u0430 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u044F","error.validation.regex":"\u0428\u0430\u0431\u043B\u043E\u043D \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0433\u043E \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u044F \u043D\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043B\u0435\u043D","error.validation.relation.targetAttribute-taken":"\u042D\u0442\u043E \u0438\u043C\u044F \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u0446\u0435\u043B\u0435\u0432\u043E\u043C \u043E\u0431\u044A\u0435\u043A\u0442\u0435","form.attribute.component.option.add":"\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","form.attribute.component.option.create":"\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u043D\u043E\u0432\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","form.attribute.component.option.create.description":"\u041A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 \u043F\u0440\u0435\u0434\u043E\u0441\u0442\u0430\u0432\u043B\u044F\u0435\u0442\u0441\u044F \u0432 \u0440\u0430\u0437\u043D\u044B\u0445 \u0442\u0438\u043F\u0430\u0445 \u0438 \u0433\u0440\u0443\u043F\u043F\u0430\u0445 \u0438 \u0431\u0443\u0434\u0435\u0442 \u0434\u043E\u0441\u0442\u0443\u043F\u0435\u043D \u043E\u0442\u043E\u0432\u0441\u044E\u0434\u0443","form.attribute.component.option.repeatable":"\u041F\u043E\u0432\u0442\u043E\u0440\u044F\u044E\u0449\u0438\u0439\u0441\u044F \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.attribute.component.option.repeatable.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u043C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0445 \u0432\u0445\u043E\u0436\u0434\u0435\u043D\u0438\u0439 (\u043C\u0430\u0441\u0441\u0438\u0432\u043E\u0432) \u0438\u043D\u0433\u0440\u0435\u0434\u0438\u0435\u043D\u0442\u043E\u0432, \u043C\u0435\u0442\u0430-\u0442\u0435\u0433\u043E\u0432 \u0438 \u0442.\u0434.","form.attribute.component.option.reuse-existing":"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0439 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.attribute.component.option.reuse-existing.description":"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u0441\u043E\u0437\u0434\u0430\u043D\u043D\u044B\u0439 \u0440\u0430\u043D\u0435\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442, \u0447\u0442\u043E\u0431\u044B \u043E\u0431\u0435\u0441\u043F\u0435\u0447\u0438\u0442\u044C \u0441\u043E\u0433\u043B\u0430\u0441\u043E\u0432\u0430\u043D\u043D\u043E\u0441\u0442\u044C \u0434\u0430\u043D\u043D\u044B\u0445 \u0432 \u0440\u0430\u0437\u043D\u044B\u0445 \u0442\u0438\u043F\u0430\u0445 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430.","form.attribute.component.option.single":"\u041E\u0434\u0438\u043D\u043E\u0447\u043D\u044B\u0439 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.attribute.component.option.single.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u0433\u0440\u0443\u043F\u043F\u0438\u0440\u043E\u0432\u043A\u0438 \u043F\u043E\u043B\u0435\u0439, \u0442\u0430\u043A\u0438\u0445 \u043A\u0430\u043A \u043F\u043E\u043B\u043D\u044B\u0439 \u0430\u0434\u0440\u0435\u0441, \u043E\u0441\u043D\u043E\u0432\u043D\u0430\u044F \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u0438 \u0442.\u0434.","form.attribute.item.customColumnName":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u044F \u0441\u0442\u043E\u043B\u0431\u0446\u043E\u0432","form.attribute.item.customColumnName.description":"\u041C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u043F\u043E\u043B\u0435\u0437\u043D\u043E \u043F\u0435\u0440\u0435\u0438\u043C\u0435\u043D\u043E\u0432\u0430\u0442\u044C \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u044F \u0441\u0442\u043E\u043B\u0431\u0446\u043E\u0432 \u0434\u043B\u044F \u0431\u043E\u043B\u0435\u0435 \u0447\u0438\u0442\u0430\u0435\u043C\u044B\u0445 \u043E\u0442\u0432\u0435\u0442\u043E\u0432 API.","form.attribute.item.defineRelation.fieldName":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u043E\u043B\u044F","form.attribute.item.enumeration.graphql":"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u043E\u043B\u044F \u0432 GraphQL","form.attribute.item.enumeration.graphql.description":"\u041F\u043E\u0437\u0432\u043E\u043B\u044F\u0435\u0442 \u043F\u0435\u0440\u0435\u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0438\u0442\u044C \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043F\u043E\u043B\u044F \u0432 GraphQL, \u0441\u0433\u0435\u043D\u0435\u0440\u0438\u0440\u043E\u0432\u0430\u043D\u043D\u043E\u0435 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E","form.attribute.item.enumeration.placeholder":"\u041D\u0430\u043F\u0440\u0438\u043C\u0435\u0440:\\n\u0443\u0442\u0440\u043E\\n\u043F\u043E\u043B\u0434\u0435\u043D\u044C\\n\u0432\u0435\u0447\u0435\u0440","form.attribute.item.enumeration.rules":"\u0417\u043D\u0430\u0447\u0435\u043D\u0438\u044F (\u043E\u0434\u043D\u0430 \u043B\u0438\u043D\u0438\u044F \u043D\u0430 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435)","form.attribute.item.maximum":"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435","form.attribute.item.maximumLength":"\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u0430\u044F \u0434\u043B\u0438\u043D\u0430","form.attribute.item.minimum":"\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435","form.attribute.item.minimumLength":"\u041C\u0438\u043D\u0438\u043C\u0430\u043B\u044C\u043D\u0430\u044F \u0434\u043B\u0438\u043D\u0430","form.attribute.item.number.type":"\u0427\u0438\u0441\u043B\u043E\u0432\u043E\u0439 \u0444\u043E\u0440\u043C\u0430\u0442","form.attribute.item.number.type.biginteger":"\u0411\u043E\u043B\u044C\u0448\u043E\u0435 \u0446\u0435\u043B\u043E\u0435 (ex: 123456789)","form.attribute.item.number.type.decimal":"\u0414\u0435\u0441\u044F\u0442\u0438\u0447\u043D\u043E\u0435 (ex: 2.22)","form.attribute.item.number.type.float":"\u0421 \u043F\u043B\u0430\u0432\u0430\u044E\u0449\u0435\u0439 \u0442\u043E\u0447\u043A\u043E\u0439 (ex: 3.33333333)","form.attribute.item.number.type.integer":"\u0426\u0435\u043B\u043E\u0435 (ex: 10)","form.attribute.item.privateField":"\u0417\u0430\u043A\u0440\u044B\u0442\u043E\u0435 \u043F\u043E\u043B\u0435","form.attribute.item.privateField.description":"\u042D\u0442\u043E \u043F\u043E\u043B\u0435 \u043D\u0435 \u0431\u0443\u0434\u0435\u0442 \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0430\u0442\u044C\u0441\u044F \u0432 \u043E\u0442\u0432\u0435\u0442\u0435 API","form.attribute.item.requiredField":"\u041E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E\u0435 \u043F\u043E\u043B\u0435","form.attribute.item.requiredField.description":"\u0412\u044B \u043D\u0435 \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u044C, \u0435\u0441\u043B\u0438 \u044D\u0442\u043E \u043F\u043E\u043B\u0435 \u043D\u0435 \u0437\u0430\u043F\u043E\u043B\u043D\u0435\u043D\u043E","form.attribute.item.text.regex":"\u0428\u0430\u0431\u043B\u043E\u043D \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0433\u043E \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u044F","form.attribute.item.text.regex.description":"\u0422\u0435\u043A\u0441\u0442 \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E\u0433\u043E \u0432\u044B\u0440\u0430\u0436\u0435\u043D\u0438\u044F","form.attribute.item.uniqueField":"\u0423\u043D\u0438\u043A\u0430\u043B\u044C\u043D\u043E\u0435 \u043F\u043E\u043B\u0435","form.attribute.item.uniqueField.description":"\u0412\u044B \u043D\u0435 \u0441\u043C\u043E\u0436\u0435\u0442\u0435 \u0441\u043E\u0437\u0434\u0430\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u044C, \u0435\u0441\u043B\u0438 \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0437\u0430\u043F\u0438\u0441\u044C \u0441 \u0442\u0430\u043A\u0438\u043C \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435\u043C","form.attribute.media.allowed-types":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043D\u043D\u044B\u0435 \u0442\u0438\u043F\u044B \u043C\u0435\u0434\u0438\u0430","form.attribute.media.allowed-types.option-files":"\u0424\u0430\u0439\u043B\u044B","form.attribute.media.allowed-types.option-images":"\u0418\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u044F","form.attribute.media.allowed-types.option-videos":"\u0412\u0438\u0434\u0435\u043E","form.attribute.media.option.multiple":"\u041C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0435 \u043C\u0435\u0434\u0438\u0430","form.attribute.media.option.multiple.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u0441\u043B\u0430\u0439\u0434\u0435\u0440\u043E\u0432 \u0438 \u043A\u0430\u0440\u0443\u0441\u0435\u043B\u0435\u0439","form.attribute.media.option.single":"\u041E\u0434\u0438\u043D\u043E\u0447\u043D\u043E\u0435 \u043C\u0435\u0434\u0438\u0430","form.attribute.media.option.single.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u0430\u0432\u0430\u0442\u0430\u0440\u043E\u0432, \u043A\u0430\u0440\u0442\u0438\u043D\u043E\u043A \u043F\u0440\u043E\u0444\u0438\u043B\u044F \u0438 \u043F\u0440.","form.attribute.settings.default":"\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435","form.attribute.text.option.long-text":"\u0411\u043E\u043B\u044C\u0448\u043E\u0439 \u0442\u0435\u043A\u0441\u0442","form.attribute.text.option.long-text.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u044F, \u0431\u0438\u043E\u0433\u0440\u0430\u0444\u0438\u0438... (\u043D\u0435 \u0443\u0447\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u043F\u043E\u0438\u0441\u043A\u0435)","form.attribute.text.option.short-text":"\u041A\u043E\u0440\u043E\u0442\u043A\u0438\u0439 \u0442\u0435\u043A\u0441\u0442","form.attribute.text.option.short-text.description":"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u043C\u043E \u0434\u043B\u044F \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0439, \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043A\u043E\u0432, \u0441\u0441\u044B\u043B\u043E\u043A... (\u0443\u0447\u0430\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 \u043F\u043E\u0438\u0441\u043A\u0435)","form.button.add-components-to-dynamiczone":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0432 \u0437\u043E\u043D\u0443","form.button.add-field":"\u0415\u0449\u0435 \u043F\u043E\u043B\u0435","form.button.add-first-field-to-created-component":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0435\u0440\u0432\u043E\u0435 \u043F\u043E\u043B\u0435 \u0432 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.add.field.to.collectionType":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u043A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u044E","form.button.add.field.to.component":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.add.field.to.contentType":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","form.button.add.field.to.singleType":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u043E\u043B\u0435 \u0432 \u0442\u0438\u043F","form.button.cancel":"\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C","form.button.collection-type.description":"\u041B\u0443\u0447\u0448\u0435 \u0432\u0441\u0435\u0433\u043E \u043F\u043E\u0434\u0445\u043E\u0434\u0438\u0442 \u0434\u043B\u044F \u043D\u0435\u0441\u043A\u043E\u043B\u044C\u043A\u0438\u0445 \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u043E\u0432, \u0442\u0430\u043A\u0438\u0445 \u043A\u0430\u043A \u0441\u0442\u0430\u0442\u044C\u0438, \u0442\u043E\u0432\u0430\u0440\u044B, \u043A\u043E\u043C\u043C\u0435\u043D\u0442\u0430\u0440\u0438\u0438 \u0438 \u0442.\u0434.","form.button.configure-component":"\u043D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.configure-view":"\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u043E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435","form.button.select-component":"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442","form.button.single-type.description":"\u041B\u0443\u0447\u0448\u0435 \u0432\u0441\u0435\u0433\u043E \u043F\u043E\u0434\u0445\u043E\u0434\u0438\u0442 \u0434\u043B\u044F \u043E\u0434\u043D\u043E\u0433\u043E \u044D\u043A\u0437\u0435\u043C\u043F\u043B\u044F\u0440\u0430, \u043D\u0430\u043F\u0440\u0438\u043C\u0435\u0440, \u043E \u043D\u0430\u0441, \u0434\u043E\u043C\u0430\u0448\u043D\u044F\u044F \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u0438 \u0442.\u0434.","from":"\u0438\u0437","modalForm.attribute.form.base.name.description":"\u041F\u0440\u043E\u0431\u0435\u043B\u044B \u0432 \u0438\u043C\u0435\u043D\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B","modalForm.attribute.form.base.name.placeholder":"e.g. slug, seoUrl, canonicalUrl","modalForm.attribute.target-field":"\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043D\u044B\u0435 \u043F\u043E\u043B\u044F","modalForm.attributes.select-component":"\u0412\u044B\u0431\u043E\u0440 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","modalForm.attributes.select-components":"\u0412\u044B\u0431\u043E\u0440 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u043E\u0432","modalForm.component.header-create":"\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","modalForm.components.create-component.category.label":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044E \u0438\u043B\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043C\u044F \u043D\u043E\u0432\u043E\u0439","modalForm.components.icon.label":"\u0418\u043A\u043E\u043D\u043A\u0430","modalForm.editCategory.base.name.description":"\u041F\u0440\u043E\u0431\u0435\u043B\u044B \u0432 \u0438\u043C\u0435\u043D\u0438 \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0438 \u043D\u0435\u0434\u043E\u043F\u0443\u0441\u0442\u0438\u043C\u044B","modalForm.header-edit":"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 {name}","modalForm.header.categories":"\u041A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u0438","modalForm.header.back":"\u041D\u0430\u0437\u0430\u0434","modalForm.singleType.header-create":"\u0421\u043E\u0437\u0434\u0430\u043D\u0438\u0435 \u043E\u0434\u0438\u043D\u043E\u0447\u043D\u043E\u0433\u043E \u0442\u0438\u043F\u0430","modalForm.sub-header.addComponentToDynamicZone":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 \u0432 \u0434\u0438\u043D\u0430\u043C\u0438\u0447\u0435\u0441\u043A\u0443\u044E \u0437\u043E\u043D\u0443","modalForm.sub-header.attribute.create":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043D\u043E\u0432\u043E\u0435 \u043F\u043E\u043B\u0435 \u0442\u0438\u043F\u0430 {type}","modalForm.sub-header.attribute.create.step":"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043D\u043E\u0432\u044B\u0439 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 ({step}/2)","modalForm.sub-header.attribute.edit":"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0435 {name}","modalForm.sub-header.chooseAttribute.collectionType":"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u0438\u043C\u044F \u043F\u043E\u043B\u044F \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430","modalForm.sub-header.chooseAttribute.component":"\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u0438\u043C\u044F \u043F\u043E\u043B\u044F \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430","modalForm.sub-header.chooseAttribute.singleType":"\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u043F\u043E\u043B\u0435 \u0434\u043B\u044F \u0432\u0430\u0448\u0435\u0433\u043E \u043E\u0442\u0434\u0435\u043B\u044C\u043D\u043E\u0433\u043E \u0442\u0438\u043F\u0430","modelPage.attribute.relation-polymorphic":"\u0421\u0432\u044F\u0437\u044C (\u043F\u043E\u043B\u0438\u043C\u043E\u0440\u0444\u043D\u0430\u044F)","modelPage.attribute.relationWith":"\u0421\u0432\u044F\u0437\u044C \u0441","notification.info.autoreaload-disable":"\u0414\u043B\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u043D\u0438\u044F \u044D\u0442\u043E\u0433\u043E \u043F\u043B\u0430\u0433\u0438\u043D\u0430 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u0444\u0443\u043D\u043A\u0446\u0438\u044F \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u043E\u0439 \u0437\u0430\u0433\u0440\u0443\u0437\u043A\u0438. \u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u0432\u043E\u0439 \u0441\u0435\u0440\u0432\u0435\u0440 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E `strapi develop`","notification.info.creating.notSaved":"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u0441\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u043F\u0435\u0440\u0435\u0434 \u0441\u043E\u0437\u0434\u0430\u043D\u0438\u0435\u043C \u043D\u043E\u0432\u043E\u0433\u043E \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u0430 \u0442\u0438\u043F\u0430 \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430 ","plugin.description.long":"\u041C\u043E\u0434\u0435\u043B\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0443 \u0434\u0430\u043D\u043D\u044B\u0445 \u0432\u0430\u0448\u0435\u0433\u043E API. \u0421\u043E\u0437\u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u043D\u043E\u0432\u044B\u0435 \u043F\u043E\u043B\u044F \u0438 \u0441\u0432\u044F\u0437\u0438 \u0432\u0441\u0435\u0433\u043E \u0437\u0430 \u043C\u0438\u043D\u0443\u0442\u0443. \u0424\u0430\u0439\u043B\u044B \u0432 \u0432\u0430\u0448\u0435\u043C \u043F\u0440\u043E\u0435\u043A\u0442\u0435 \u0441\u043E\u0437\u0434\u0430\u044E\u0442\u0441\u044F \u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u044F\u044E\u0442\u0441\u044F \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0438.","plugin.description.short":"\u041C\u043E\u0434\u0435\u043B\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0442\u0440\u0443\u043A\u0442\u0443\u0440\u0443 \u0434\u0430\u043D\u043D\u044B\u0445 \u0432\u0430\u0448\u0435\u0433\u043E API.","popUpForm.navContainer.advanced":"\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043D\u043D\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","popUpForm.navContainer.base":"\u0411\u0430\u0437\u043E\u0432\u044B\u0435 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438","popUpWarning.bodyMessage.cancel-modifications":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0434\u0435\u043B\u0430\u043D\u043D\u044B\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F? \u041D\u0435\u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0431\u044B\u043B\u0438 \u0441\u043E\u0437\u0434\u0430\u043D\u044B \u0438\u043B\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u044B...","popUpWarning.bodyMessage.category.delete":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044E? \u0412\u0441\u0435 \u0432\u0445\u043E\u0434\u044F\u0449\u0438\u0435 \u0432 \u043D\u0435\u0435 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442\u044B \u0431\u0443\u0434\u0443\u0442 \u0442\u0430\u043A\u0436\u0435 \u0443\u0434\u0430\u043B\u0435\u043D\u044B.","popUpWarning.bodyMessage.component.delete":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442?","popUpWarning.bodyMessage.contentType.delete":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043B\u0438\u0442\u044C \u044D\u0442\u043E\u0442 \u0442\u0438\u043F \u043A\u043E\u043D\u0442\u0435\u043D\u0442\u0430?","popUpWarning.draft-publish.button.confirm":"\u0414\u0430, \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C","popUpWarning.draft-publish.message":"\u0415\u0441\u043B\u0438 \u0432\u044B \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043C\u0443 \u0447\u0435\u0440\u043D\u043E\u0432\u0438\u043A\u043E\u0432/\u043F\u0443\u0431\u043B\u0438\u043A\u0430\u0446\u0438\u0439, \u0432\u0430\u0448\u0438 \u0447\u0435\u0440\u043D\u043E\u0432\u0438\u043A\u0438 \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043B\u0435\u043D\u044B.","popUpWarning.draft-publish.second-message":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u0435\u0433\u043E?","prompt.unsaved":"\u0412\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B, \u0447\u0442\u043E \u0445\u043E\u0442\u0438\u0442\u0435 \u0432\u044B\u0439\u0442\u0438? \u0412\u0441\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0431\u0443\u0434\u0443\u0442 \u043F\u043E\u0442\u0435\u0440\u044F\u043D\u044B.","relation.attributeName.placeholder":"\u041F\u0440\u0438\u043C\u0435\u0440: \u0430\u0432\u0442\u043E\u0440, \u043A\u0430\u0442\u0435\u0433\u043E\u0440\u0438\u044F, \u0442\u0435\u0433","relation.manyToMany":"\u0438\u043C\u0435\u0435\u0442 \u0438 \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0438\u0442 \u043C\u043D\u043E\u0433\u0438\u043C","relation.manyToOne":"\u0438\u043C\u0435\u0435\u0442 \u043C\u043D\u043E\u0433\u043E","relation.manyWay":"\u0438\u043C\u0435\u0435\u0442 \u043C\u043D\u043E\u0433\u043E","relation.oneToMany":"\u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0438\u0442 \u043C\u043D\u043E\u0433\u0438\u043C","relation.oneToOne":"\u0438\u043C\u0435\u0435\u0442 \u043E\u0434\u0438\u043D \u0438 \u043F\u0440\u0438\u043D\u0430\u0434\u043B\u0435\u0436\u0438\u0442 \u043E\u0434\u043D\u043E\u043C\u0443","relation.oneWay":"\u0438\u043C\u0435\u0435\u0442 \u043E\u0434\u0438\u043D"}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[7997],{38298:function(e){e.exports=JSON.parse('{"attribute.boolean":"Logick\xE1 hodnota","attribute.boolean.description":"\xE1no/nie, 1/0, pravda/lo\u017E","attribute.component":"Komponent","attribute.component.description":"Skupina pol\xED\u010Dok, ktor\xE9 je mo\u017En\xE9 opakovane pou\u017E\xEDva\u0165","attribute.date":"D\xE1tum a \u010Das","attribute.date.description":"Dial\xF3g pre v\xFDber d\xE1tumu a \u010Dasu","attribute.datetime":"D\xE1tum a \u010Das","attribute.dynamiczone":"Dynamick\xE1 z\xF3na","attribute.dynamiczone.description":"Umo\u017E\u0148uje dynamicky zvoli\u0165 komponenty po\u010Das \xFApravy obsahu","attribute.email":"E-mailov\xE1 adresa","attribute.email.description":"Pol\xED\u010Dko s automatickou valid\xE1ciou form\xE1tu e-mailovej adresy","attribute.enumeration":"Vymenovanie","attribute.enumeration.description":"Zoznam preddefinovan\xFDch hodn\xF4t s v\xFDberom jednej mo\u017Enosti","attribute.json":"JSON","attribute.json.description":"D\xE1ta vo form\xE1te JSON","attribute.media":"S\xFAbory","attribute.media.description":"Napr. obr\xE1zky, vide\xE1, at\u010F.","attribute.null":" ","attribute.number":"\u010C\xEDslo","attribute.number.description":"\u010C\xEDsla (cel\xE9, desatinn\xE9)","attribute.password":"Heslo","attribute.password.description":"Pol\xED\u010Dko pre zadanie hesla","attribute.relation":"Rel\xE1cia","attribute.relation.description":"Ur\u010Duje vz\u0165ah k in\xE9mu Typu obsahu","attribute.richtext":"Textov\xFD editor","attribute.richtext.description":"Textov\xE9 pole s mo\u017Enos\u0165ami form\xE1tovania","attribute.text":"Text","attribute.text.description":"Kr\xE1tky alebo dlh\u0161\xED text","attribute.time":"\u010Cas","attribute.timestamp":"Timestamp - \u010Casov\xFD odtla\u010Dok","attribute.uid":"UID","attribute.uid.description":"Unik\xE1tny identifik\xE1tor","button.attributes.add.another":"Prida\u0165 \u010Fal\u0161ie pol\xED\u010Dko","button.component.add":"Prida\u0165 komponent","button.component.create":"Vytvori\u0165 nov\xFD komponent","button.model.create":"Vytvori\u0165 nov\xFD Typ obsahu","button.single-types.create":"Vytvori\u0165 nov\xFD jednorazov\xFD typ","component.repeatable":"(opakuj\xFAce)","components.componentSelect.no-component-available":"U\u017E ste pridali v\u0161etky komponenty","components.componentSelect.no-component-available.with-search":"Nena\u0161iel sa \u017Eiaden komponent spl\u0148uj\xFAci v\xFDraz","components.componentSelect.value-component":"Ozna\u010Den\xE9 komponenty: {number} (zadajte h\u013Eadan\xFD text)","components.componentSelect.value-components":"Ozna\u010Den\xE9 komponenty: {number}","configurations":"nastavenia","contentType.collectionName.description":"U\u017Eito\u010Dn\xE9, ak m\xE1 by\u0165 n\xE1zov kolekcie (v dashboard) in\xFD ako meno tabu\u013Eky","contentType.collectionName.label":"Meno kolekcie","contentType.displayName.label":"N\xE1zov kolekcie","contentType.draftAndPublish.description":"Pred zverejnen\xEDm vytv\xE1ra\u0165 verziu n\xE1vrhu ka\u017Edej polo\u017Eky","contentType.draftAndPublish.label":"Draft/publish syst\xE9m","contentType.kind.change.warning":"Pr\xE1ve ste zmenili druh typu obsahu: API bude obnoven\xE9 (routes, controllers a services bud\xFA prep\xEDsan\xE9)","error.attributeName.reserved-name":"Tento n\xE1zov je vyhraden\xFD a nem\xF4\u017Ee by\u0165 pou\u017Eit\xFD (hroz\xED po\u0161kodenie in\xFDch funkcional\xEDt syst\xE9mu)","error.contentTypeName.reserved-name":"Tento n\xE1zov je vyhraden\xFD a nem\xF4\u017Ee by\u0165 pou\u017Eit\xFD (hroz\xED po\u0161kodenie in\xFDch funkcional\xEDt syst\xE9mu)","error.validation.enum-duplicate":"Duplicitn\xE9 hodnoty nie s\xFA povolen\xE9","error.validation.minSupMax":"Nem\xF4\u017Ee by\u0165 nadraden\xFD","error.validation.regex":"Vzor regul\xE1rneho v\xFDrazu (regex) je neplatn\xFD","error.validation.relation.targetAttribute-taken":"Tento n\xE1zov u\u017E v cie\u013Eovom objekte existuje","form.attribute.component.option.add":"Prida\u0165 komponent","form.attribute.component.option.create":"Vytvori\u0165 nov\xFD komponent","form.attribute.component.option.create.description":"Komponent je dostupn\xFD medzi v\u0161etk\xFDmi typmi a komponentami.","form.attribute.component.option.repeatable":"Znovu pou\u017Eite\u013En\xFD komponent","form.attribute.component.option.repeatable.description":"Ide\xE1lne pre viacpolo\u017Ekov\xE9 (polia) in\u0161tancie ako napr\xEDklad meta tagy, ingrediencie, at\u010F..","form.attribute.component.option.reuse-existing":"Pou\u017Ei\u0165 existuj\xFAci komponent","form.attribute.component.option.reuse-existing.description":"Pou\u017E\xEDvajte u\u017E vytvoren\xE9 komponenty pre uchovanie konzistentn\xFDch d\xE1t medzi Typmi obsahu.","form.attribute.component.option.single":"Jednorazov\xFD komponent","form.attribute.component.option.single.description":"Vhodn\xE9 pre zosk\xFApenie pol\xED\u010Dok, napr. cel\xE1 adresa","form.attribute.item.customColumnName":"Vlastn\xE9 n\xE1zvy st\u013Apcov","form.attribute.item.customColumnName.description":"Umo\u017E\u0148uje premenova\u0165 datab\xE1zov\xFD st\u013Ap\u010Dek pre potreby API","form.attribute.item.defineRelation.fieldName":"N\xE1zov pol\xED\u010Dka","form.attribute.item.enumeration.graphql":"N\xE1zov pol\xED\u010Dka pre GraphQL","form.attribute.item.enumeration.graphql.description":"Umo\u017E\u0148uje prep\xEDsa\u0165 predvolen\xE9 n\xE1zvy pre GraphQL","form.attribute.item.enumeration.placeholder":"Napr.:\\nr\xE1no\\nde\u0148\\nve\u010Der","form.attribute.item.enumeration.rules":"Hodnoty (jedna na riadok)","form.attribute.item.maximum":"Maxim\xE1lna hodnota","form.attribute.item.maximumLength":"Maxim\xE1lna d\u013A\u017Eka","form.attribute.item.minimum":"Minim\xE1lna hodnota","form.attribute.item.minimumLength":"Minim\xE1lna d\u013A\u017Eka","form.attribute.item.number.type":"\u010C\xEDseln\xFD form\xE1t","form.attribute.item.number.type.biginteger":"ve\u013Ek\xE9 \u010D\xEDslo (napr.: 123456789)","form.attribute.item.number.type.decimal":"desatinn\xE9 \u010D\xEDslo (napr.: 2.22)","form.attribute.item.number.type.float":"desatinn\xE9 \u010D\xEDslo (napr.: 3.33333333)","form.attribute.item.number.type.integer":"cel\xE9 \u010D\xEDslo (napr.: 10)","form.attribute.item.privateField":"Skryt\xE9 pol\xED\u010Dko","form.attribute.item.privateField.description":"Toto pol\xED\u010Dko sa nebude zobrazova\u0165 v API","form.attribute.item.requiredField":"Povinn\xE9 pol\xED\u010Dko","form.attribute.item.requiredField.description":"Nedovol\xED vytvori\u0165 z\xE1znam ak ostane toto pol\xED\u010Dko pr\xE1zdne","form.attribute.item.text.regex":"Vzor regul\xE1rneho v\xFDrazu (RegExp)","form.attribute.item.text.regex.description":"Text regul\xE1rneho v\xFDrazu","form.attribute.item.uniqueField":"Unik\xE1tne pol\xED\u010Dko","form.attribute.item.uniqueField.description":"Nedovol\xED vytvori\u0165 z\xE1znam ak u\u017E existuje in\xFD z\xE1znam s rovnakou hodnotou","form.attribute.media.allowed-types":"Zvoli\u0165 povolen\xE9 typy s\xFAborov","form.attribute.media.allowed-types.option-files":"S\xFAbory","form.attribute.media.allowed-types.option-images":"Obr\xE1zky","form.attribute.media.allowed-types.option-videos":"Vide\xE1","form.attribute.media.option.multiple":"Viacero s\xFAborov","form.attribute.media.option.multiple.description":"Vhodn\xE9 pre gal\xE9riu, zoznam s\xFAborov na stiahnutie","form.attribute.media.option.single":"Jeden s\xFAbor","form.attribute.media.option.single.description":"Vhodn\xE9 pre profilov\xFA fotku alebo hlavn\xFD obr\xE1zok","form.attribute.settings.default":"Predvolen\xE1 hodnota","form.attribute.text.option.long-text":"Dlh\xFD text","form.attribute.text.option.long-text.description":"Vhodn\xE9 pre dlh\u0161ie popisy. Presn\xE9 vyh\u013Ead\xE1vanie je vypnut\xE9.","form.attribute.text.option.short-text":"Kr\xE1tky text","form.attribute.text.option.short-text.description":"Vhodn\xE9 pre nadpisy, n\xE1zvy, URL adresy. Presn\xE9 vyh\u013Ead\xE1vanie je zapnut\xE9.","form.button.add-components-to-dynamiczone":"Prida\u0165 komponenty do z\xF3ny","form.button.add-field":"Prida\u0165 \u010Fal\u0161ie pol\xED\u010Dko","form.button.add-first-field-to-created-component":"Prida\u0165 prv\xE9 pol\xED\u010Dko do komponentu","form.button.add.field.to.collectionType":"Prida\u0165 \u010Fal\u0161ie pol\xED\u010Dko do tejto kolekcie","form.button.add.field.to.component":"Prida\u0165 \u010Fal\u0161ie pol\xED\u010Dko do komponentu","form.button.add.field.to.contentType":"Prida\u0165 \u010Fal\u0161ie pol\xED\u010Dko do tohto typu obsahu","form.button.add.field.to.singleType":"Prida\u0165 \u010Fal\u0161ie pol\xED\u010Dko do tohto jednorazov\xE9ho typu","form.button.cancel":"Zru\u0161i\u0165","form.button.collection-type.description":"Ide\xE1lne pre viacn\xE1sobn\xE9 in\u0161tancie ako s\xFA napr\xEDklad \u010Dl\xE1nky, produkty, koment\xE1re, at\u010F.","form.button.configure-component":"Nastavi\u0165 komponent","form.button.configure-view":"Upravi\u0165 vzh\u013Ead","form.button.select-component":"Vybra\u0165 komponent","form.button.single-type.description":"Ide\xE1lne pre jednorazov\xE9 in\u0161tancie ako s\xFA napr\xEDklad domovsk\xE1 str\xE1nka, at\u010F.","from":"od","modalForm.attribute.form.base.name.description":"Medzery nie s\xFA povolen\xE9 v n\xE1zve pol\xED\u010Dka","modalForm.attribute.form.base.name.placeholder":"napr. slug, seoUrl, kanonick\xE1Url","modalForm.attribute.target-field":"Prilo\u017Een\xE9 pol\xED\u010Dko","modalForm.attributes.select-component":"Vyberte komponent","modalForm.attributes.select-components":"Vyberte komponenty","modalForm.component.header-create":"Vytvorte komponent","modalForm.components.create-component.category.label":"Vyberte kateg\xF3riu alebo zadajte n\xE1zov pre vytvorenie novej","modalForm.components.icon.label":"Ikona","modalForm.editCategory.base.name.description":"Medzery nie s\xFA povolen\xE9 v n\xE1zve kateg\xF3rie","modalForm.header-edit":"Upravi\u0165 {name}","modalForm.header.categories":"Kateg\xF3rie","modalForm.header.back":"sp\xE4\u0165","modalForm.singleType.header-create":"Vytvori\u0165 jednorazov\xFD typ","modalForm.sub-header.addComponentToDynamicZone":"Prida\u0165 nov\xFD komponent do dynamickej z\xF3ny","modalForm.sub-header.attribute.create":"Prida\u0165 nov\xE9 pol\xED\u010Dko {type}","modalForm.sub-header.attribute.create.step":"Prida\u0165 nov\xFD komponent ({step}/2)","modalForm.sub-header.attribute.edit":"Upravi\u0165 {name}","modalForm.sub-header.chooseAttribute.collectionType":"Vyberte typ pol\xED\u010Dka pre Typ obsahu","modalForm.sub-header.chooseAttribute.component":"Vyberte typ pol\xED\u010Dka pre komponent","modalForm.sub-header.chooseAttribute.singleType":"Vyberte typ pol\xED\u010Dka pre jednorazov\xFD typ","modelPage.attribute.relation-polymorphic":"Prepojenie (polymorfn\xE9)","modelPage.attribute.relationWith":"Prepojenie s","notification.info.autoreaload-disable":"Funkcionalita AutoReload je povinn\xE1 pre pou\u017Eitie tohto pluginu. Spustite V\xE1\u0161 server pomocou pr\xEDkazu `strapi develop`","notification.info.creating.notSaved":"Ulo\u017Ete zmeny pred vytvoren\xEDm nov\xE9ho Typu obsahu alebo komponentu","plugin.description.long":"Navrhnite \u0161trukt\xFAru webu jednoducho. Vytvorte nov\xE9 pol\xED\u010Dka a prepojenia behom p\xE1r sek\xFAnd. S\xFAbory sa automaticky vytvoria a upravia v r\xE1mci projektu.","plugin.description.short":"Navrhnite \u0161trukt\xFAru webu jednoducho.","popUpForm.navContainer.advanced":"Pokro\u010Dil\xE9 nastavenia","popUpForm.navContainer.base":"Z\xE1kladn\xE9 nastavenia","popUpWarning.bodyMessage.cancel-modifications":"Ste si ist\xFD, \u017Ee chcete zru\u0161i\u0165 \xFApravy?","popUpWarning.bodyMessage.cancel-modifications.with-components":"Ste si ist\xFD, \u017Ee chcete zru\u0161i\u0165 \xFApravy? Niektor\xE9 komponenty boli vytvoren\xE9 alebo upraven\xE9...","popUpWarning.bodyMessage.category.delete":"Ste si ist\xFD, \u017Ee chcete odstr\xE1ni\u0165 t\xFAto kateg\xF3riu? V\u0161etky komponentu bud\xFA takisto vymazan\xE9.","popUpWarning.bodyMessage.component.delete":"Ste si ist\xFD, \u017Ee chcete odstr\xE1ni\u0165 tento komponent?","popUpWarning.bodyMessage.contentType.delete":"Ste si ist\xFD, \u017Ee chcete odstr\xE1ni\u0165 tento Typ obsahu?","popUpWarning.draft-publish.button.confirm":"\xC1no, deaktivova\u0165","popUpWarning.draft-publish.message":"Ak deaktivujete Draft/Publish syst\xE9m, v\u0161etky Va\u0161e n\xE1vrhy (drafts) bud\xFA zmazan\xE9","popUpWarning.draft-publish.second-message":"Ste si ist\xFD, \u017Ee to chcete deaktivova\u0165?","prompt.unsaved":"Ste si ist\xFD, \u017Ee chcete od\xEDs\u0165? V\u0161etky \xFApravy bud\xFA straten\xE9.","relation.attributeName.placeholder":"Napr: autor, kategoria, tag","relation.manyToMany":"m\xE1 viacero a patr\xED viacer\xFDm","relation.manyToOne":"m\xE1 viacero","relation.manyWay":"m\xE1 viacero","relation.oneToMany":"patr\xED viacer\xFDm","relation.oneToOne":"m\xE1 jeden a patr\xED jedn\xE9mu","relation.oneWay":"m\xE1 jeden"}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[8329],{34357:function(t){t.exports=JSON.parse('{"attribute.boolean":"Booleskt v\xE4rde","attribute.boolean.description":"Ja eller nej, 1 eller 0, sant eller falskt","attribute.component":"Komponent","attribute.component.description":"Grupp av f\xE4lt du kan \xE5teranv\xE4nda och repetera","attribute.customField":"Anpassat f\xE4lt","attribute.date":"Datum","attribute.date.description":"En datumv\xE4ljare med sekunder, minuter och timmar","attribute.datetime":"Datum och tid","attribute.dynamiczone":"Dynamisk zon","attribute.dynamiczone.description":"Dynamiskt v\xE4lj mellan f\xF6rutbest\xE4mda komponenter n\xE4r du skapar inneh\xE5ll","attribute.email":"E-post","attribute.email.description":"E-postadressf\xE4lt med validering","attribute.enumeration":"Enumeration","attribute.enumeration.description":"F\xF6rutbest\xE4mda v\xE4rden som man kan v\xE4lja mellan","attribute.json":"JSON","attribute.json.description":"Data i JSON-format","attribute.media":"Media","attribute.media.description":"Filer s\xE5som bilder, videos, m.m","attribute.null":" ","attribute.number":"Nummer","attribute.number.description":"Nummer (heltal och decimaltal)","attribute.password":"L\xF6senord","attribute.password.description":"L\xF6senordsf\xE4lt med kryptering","attribute.relation":"Relation","attribute.relation.description":"Refererar till en samlingstyp","attribute.richtext":"Formaterad text","attribute.richtext.description":"En textredigerare med formatalternativ","attribute.text":"Text","attribute.text.description":"Kort och l\xE5ng text s\xE5som titel eller beskrivning","attribute.time":"Tid","attribute.timestamp":"Tidst\xE4mpel","attribute.uid":"UID","attribute.uid.description":"Unik identifierare","button.attributes.add.another":"L\xE4gg till nytt f\xE4lt","button.component.add":"L\xE4gg till en komponent","button.component.create":"Skapa komponent","button.model.create":"Skapa samlingstyp","button.single-types.create":"Skapa eng\xE5ngstyp","component.repeatable":"(repeterbar)","components.SelectComponents.displayed-value":"{number, plural, =0 {# komponenter} one {# komponent} other {# komponenter}} valda","components.componentSelect.no-component-available":"Du har redan lagt till alla dina komponenter","components.componentSelect.no-component-available.with-search":"Det finns inga komponenter matchande s\xF6kningen","components.componentSelect.value-component":"{number} komponenter valda (skriv f\xF6r att s\xF6ka efter en komponent)","components.componentSelect.value-components":"{number} komponenter valda","configurations":"Konfigurationer","contentType.apiId-plural.description":"Pluraliserat API-ID","contentType.apiId-plural.label":"API ID (Plural)","contentType.apiId-singular.description":"UID:t anv\xE4nds f\xF6r att generera API-rutterna och databastabellerna","contentType.apiId-singular.label":"API ID (Singular)","contentType.collectionName.description":"Anv\xE4ndbart n\xE4r namnet p\xE5 din inneh\xE5llstyp och din tabell \xE4r olika","contentType.collectionName.label":"Samlingsnamn","contentType.displayName.label":"Visningsnamn","contentType.draftAndPublish.description":"Skapa ett utkast av varje inl\xE4gg innan det publiceras","contentType.draftAndPublish.label":"Utkast/publiceringssystem","contentType.kind.change.warning":"Du \xE4ndrade typen p\xE5 en inneh\xE5llstyp: API:n kommer \xE5terskapas (rutter, kontroller, och tj\xE4nster kommer bli \xF6verskrivna).","error.attributeName.reserved-name":"Namnet kan inte anv\xE4ndas f\xF6r att det kan p\xE5verka annan funktionalitet","error.contentType.pluralName-used":"V\xE4rdet kan inte vara samma som namnet i singular","error.contentType.singularName-used":"V\xE4rdet kan inte vara samma som det pluraliserade namnet","error.contentTypeName.reserved-name":"Namnet kan inte anv\xE4ndas i ditt projekt f\xF6r att det kan p\xE5verka annan funktionalitet","error.validation.enum-duplicate":"Dubblettv\xE4rden \xE4r inte till\xE5tna (endast alfanumeriska tecken kontrolleras).","error.validation.enum-empty-string":"Tomma str\xE4ngar \xE4r inte till\xE5tna","error.validation.enum-regex":"Minst ett v\xE4rde \xE4r ogiltigt. V\xE4rden ska ha minst ett alfabetiskt tecken f\xF6re det f\xF6rsta talet.","error.validation.minSupMax":"Can\'t be superior","error.validation.positive":"M\xE5ste vara ett positivt tal","error.validation.regex":"Regex-m\xF6nstret \xE4r ogiltigt","error.validation.relation.targetAttribute-taken":"Detta namn existerar i m\xE5let","form.attribute.component.option.add":"L\xE4gg till en komponent","form.attribute.component.option.create":"Skapa en komponent","form.attribute.component.option.create.description":"En komponent delas mellan inneh\xE5llstyper och komponenter, och \xE4r tillg\xE4nglig \xF6verallt.","form.attribute.component.option.repeatable":"Repeterbar komponent","form.attribute.component.option.repeatable.description":"B\xE4st f\xF6r flera t.ex ingredienser, metataggar m.m. (listor)","form.attribute.component.option.reuse-existing":"Anv\xE4nd en befintlig komponent","form.attribute.component.option.reuse-existing.description":"\xC5teranv\xE4nd en komponent som redan har skapats f\xF6r att h\xE5lla datastrukturen samma \xF6ver flera inneh\xE5llstyper.","form.attribute.component.option.single":"Eng\xE5ngskomponent","form.attribute.component.option.single.description":"B\xE4st f\xF6r att gruppera f\xE4lt som adress, huvudinneh\xE5ll, etc...","form.attribute.item.customColumnName":"Anpassade kolumnnamn","form.attribute.item.customColumnName.description":"Kan anv\xE4ndas f\xF6r att anpassa hur datan ser ut i API-svar","form.attribute.item.date.type.date":"datum (t.ex: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"datum och tid (t.ex: 01/01/{currentYear} 00:00)","form.attribute.item.date.type.time":"tid (t.ex: 00:00)","form.attribute.item.defineRelation.fieldName":"F\xE4ltnamn","form.attribute.item.enumeration.graphql":"Namn\xE4ndring f\xF6r GraphQL","form.attribute.item.enumeration.graphql.description":"L\xE5ter dig \xE4ndra det genererade namnet i GraphQL","form.attribute.item.enumeration.placeholder":"Ex:\\nmorgon\\nmiddag\\nkv\xE4ll","form.attribute.item.enumeration.rules":"V\xE4rden (ett v\xE4rde per rad)","form.attribute.item.maximum":"St\xF6rsta v\xE4rde","form.attribute.item.maximumLength":"L\xE4ngsta l\xE4ngd","form.attribute.item.minimum":"Minsta v\xE4rde","form.attribute.item.minimumLength":"Kortaste l\xE4ngd","form.attribute.item.number.type":"Nummerformat","form.attribute.item.number.type.biginteger":"stort heltal (t.ex: 123456789)","form.attribute.item.number.type.decimal":"decimaltal (t.ex: 2.22)","form.attribute.item.number.type.float":"flyttal (t.ex: 3.33333333)","form.attribute.item.number.type.integer":"heltal (t.ex: 10)","form.attribute.item.privateField":"Privat f\xE4lt","form.attribute.item.privateField.description":"Detta f\xE4lt kommer inte att visas i API-svar","form.attribute.item.requiredField":"Obligatoriskt f\xE4lt","form.attribute.item.requiredField.description":"Du kommer inte kunna skapa posten om detta f\xE4ltet \xE4r tomt","form.attribute.item.text.regex":"RegEx-m\xF6nster","form.attribute.item.text.regex.description":"Texten f\xF6r RegEx-m\xF6nstret","form.attribute.item.uniqueField":"Unikt f\xE4lt","form.attribute.item.uniqueField.description":"Du kommer inte kunna skapa posten om det redan finns en annan post med samma v\xE4rde","form.attribute.media.allowed-types":"V\xE4lj till\xE5tna typer av medier","form.attribute.media.allowed-types.option-files":"Filer","form.attribute.media.allowed-types.option-images":"Bilder","form.attribute.media.allowed-types.option-videos":"Videos","form.attribute.media.option.multiple":"Flera medier","form.attribute.media.option.multiple.description":"Till\xE5ter flera medier att v\xE4ljas i samma f\xE4lt, passar bra f\xF6r t.ex bildgallerier","form.attribute.media.option.single":"En media","form.attribute.media.option.single.description":"B\xE4st f\xF6r profilbilder eller andra bilder som bara f\xF6rekommer en g\xE5ng per post","form.attribute.settings.default":"Standardv\xE4rde","form.attribute.text.option.long-text":"L\xE5ng text","form.attribute.text.option.long-text.description":"B\xE4st f\xF6r beskrivningar eller andra l\xE4ngre texter. Fulltexts\xF6kning \xE4r inaktiverat.","form.attribute.text.option.short-text":"Kort text","form.attribute.text.option.short-text.description":"B\xE4st f\xF6r titlar, namn, l\xE4nkar (URL:er). Aktiverar fulltexts\xF6kning s\xF6kning f\xF6r f\xE4ltet.","form.button.add-components-to-dynamiczone":"L\xE4gg till komponenter till dynamiska zonen","form.button.add-field":"L\xE4gg till nytt f\xE4lt","form.button.add-first-field-to-created-component":"L\xE4gg till f\xF6rsta f\xE4ltet i komponenten","form.button.add.field.to.collectionType":"L\xE4gg till ett nytt f\xE4lt i samlingstypen","form.button.add.field.to.component":"L\xE4gg till ett nytt f\xE4lt i komponenten","form.button.add.field.to.contentType":"L\xE4gg till ett nytt f\xE4lt i inneh\xE5llstypen","form.button.add.field.to.singleType":"L\xE4gg till ett nytt f\xE4lt i eng\xE5ngstypen","form.button.cancel":"Avbryt","form.button.collection-type.description":"B\xE4st f\xF6r flera poster s\xE5som artiklar, produkter och kommentarer.","form.button.collection-type.name":"Samlingstyper","form.button.configure-component":"Konfigurera komponenten","form.button.configure-view":"Konfigurera visningen","form.button.select-component":"V\xE4lj en komponent","form.button.single-type.description":"B\xE4st f\xF6r poster som bara f\xF6rekommer en g\xE5ng s\xE5som startsida, om oss, m.m.","form.button.single-type.name":"Eng\xE5ngstyper","from":"fr\xE5n","listView.headerLayout.description":"Skapa datastrukturen f\xF6r ditt inneh\xE5ll","menu.section.components.name":"Komponenter","menu.section.models.name":"Samlingstyper","menu.section.single-types.name":"Eng\xE5ngstyper","modalForm.attribute.form.base.name.description":"Mellanslag till\xE5ts inte i namnet p\xE5 attributet","modalForm.attribute.form.base.name.placeholder":"t.ex titel, slug, canonicalUrl","modalForm.attribute.target-field":"Kopplat f\xE4lt","modalForm.attributes.select-component":"V\xE4lj komponent","modalForm.attributes.select-components":"V\xE4lj komponenter","modalForm.collectionType.header-create":"Skapa samlingstyp","modalForm.component.header-create":"Skapa komponent","modalForm.components.create-component.category.label":"V\xE4lj kategori eller ange namn p\xE5 ny kategori","modalForm.components.icon.label":"Ikon","modalForm.empty.button":"L\xE4gg till anpassade f\xE4lt","modalForm.empty.heading":"Inget h\xE4r \xE4nnu.","modalForm.empty.sub-heading":"Hitta det du letar efter genom ett brett utbud av till\xE4gg.","modalForm.editCategory.base.name.description":"Inget mellanslag f\xE5r finnas i namnet p\xE5 kategorin","modalForm.header-edit":"Redigera {name}","modalForm.header.categories":"Kategorier","modalForm.header.back":"Tillbaka","modalForm.singleType.header-create":"Skapa eng\xE5ngstyp","modalForm.sub-header.addComponentToDynamicZone":"L\xE4gg till ny komponent till dynamisk zon","modalForm.sub-header.attribute.create":"L\xE4gg till {type}-f\xE4lt","modalForm.sub-header.attribute.create.step":"L\xE4gg till ny komponent ({step}/2)","modalForm.sub-header.attribute.edit":"Redigera {name}","modalForm.sub-header.chooseAttribute.collectionType":"V\xE4lj ett f\xE4lt f\xF6r samlingstypen","modalForm.sub-header.chooseAttribute.component":"V\xE4lj ett f\xE4lt f\xF6r komponenten","modalForm.sub-header.chooseAttribute.singleType":"V\xE4lj ett f\xE4lt f\xF6r eng\xE5ngstypen","modalForm.custom-fields.advanced.settings.extended":"Ut\xF6kade inst\xE4llningar","modalForm.tabs.custom":"Anpassat","modalForm.tabs.custom.howToLink":"Hur du l\xE4gger till anpassade f\xE4lt","modalForm.tabs.default":"Standard","modalForm.tabs.label":"Standard/anpassade-flikar","modelPage.attribute.relation-polymorphic":"Relation (polymorfisk)","modelPage.attribute.relationWith":"Relation med","notification.error.dynamiczone-min.validation":"Minst en komponent m\xE5ste vara vald f\xF6r en dynamisk zon f\xF6r att kunna spara inneh\xE5llstypen","notification.info.autoreaload-disable":"autoReload-funktionen kr\xE4vs f\xF6r att anv\xE4nda detta plugin. Starta servern med `strapi develop`","notification.info.creating.notSaved":"Spara ditt arbete innan du skapar en ny samlingstyp eller komponent","plugin.description.long":"Modellera datastrukturen f\xF6r ditt API. Skapa nya f\xE4lt och relationer p\xE5 bara en minut. Filerna skapas och uppdateras automatiskt i ditt projekt.","plugin.description.short":"Modellera datastrukturen f\xF6r ditt API.","plugin.name":"Inneh\xE5llstyps-skapare","popUpForm.navContainer.advanced":"Avancerade inst\xE4llningar","popUpForm.navContainer.base":"Grundl\xE4ggande inst\xE4llningar","popUpWarning.bodyMessage.cancel-modifications":"\xC4r du s\xE4ker p\xE5 att du vill avbryta dina \xE4ndringar?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\xC4r du s\xE4ker p\xE5 att du vill avbryta dina \xE4ndringar? Vissa komponenter har skapats eller modifierats...","popUpWarning.bodyMessage.category.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r kategorin? Alla komponenter i den kommer ocks\xE5 att raderas.","popUpWarning.bodyMessage.component.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r komponenten?","popUpWarning.bodyMessage.contentType.delete":"\xC4r du s\xE4ker p\xE5 att du vill ta bort den h\xE4r samlingstypen?","popUpWarning.draft-publish.button.confirm":"Ja, inaktiverar","popUpWarning.draft-publish.message":"Om du inaktiverar Utkast/Publicera-systemet kommer dina utkast att raderas.","popUpWarning.draft-publish.second-message":"\xC4r du s\xE4ker p\xE5 att du vill inaktivera det?","prompt.unsaved":"\xC4r du s\xE4ker p\xE5 att du vill l\xE4mna? Dina \xE4ndringar kommer att f\xF6rsvinna.","relation.attributeName.placeholder":"Ex: f\xF6rfattare, kategori, tagg","relation.manyToMany":"har och tillh\xF6r m\xE5nga","relation.manyToOne":"har m\xE5nga","relation.manyWay":"har m\xE5nga","relation.oneToMany":"tillh\xF6r m\xE5nga","relation.oneToOne":"har och tillh\xF6r en","relation.oneWay":"har en","table.button.no-fields":"L\xE4gg till nytt f\xE4lt","table.content.create-first-content-type":"Skapa din f\xF6rsta samlingstyp","table.content.no-fields.collection-type":"L\xE4gg till ett f\xF6rsta f\xE4lt till samlingstypen","table.content.no-fields.component":"L\xE4gg till ett f\xF6rsta f\xE4lt i komponenten"}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[742],{30744:function(t){t.exports=JSON.parse('{"attribute.boolean":"\u0E1A\u0E39\u0E25\u0E35\u0E19","attribute.boolean.description":"Yes \u0E2B\u0E23\u0E37\u0E2D no, 1 \u0E2B\u0E23\u0E37\u0E2D 0, true \u0E2B\u0E23\u0E37\u0E2D false","attribute.component":"\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C","attribute.component.description":"\u0E01\u0E25\u0E38\u0E48\u0E21\u0E02\u0E2D\u0E07\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E0B\u0E49\u0E33\u0E2B\u0E23\u0E37\u0E2D\u0E19\u0E33\u0E01\u0E25\u0E31\u0E1A\u0E21\u0E32\u0E43\u0E0A\u0E49\u0E43\u0E2B\u0E21\u0E48","attribute.date":"\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48","attribute.date.description":"\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E21\u0E37\u0E2D\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E17\u0E35\u0E48\u0E21\u0E35\u0E0A\u0E31\u0E48\u0E27\u0E42\u0E21\u0E07\u0E19\u0E32\u0E17\u0E35\u0E41\u0E25\u0E30\u0E27\u0E34\u0E19\u0E32\u0E17\u0E35","attribute.datetime":"\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E40\u0E27\u0E25\u0E32","attribute.dynamiczone":"\u0E44\u0E14\u0E19\u0E32\u0E21\u0E34\u0E01\u0E42\u0E0B\u0E19","attribute.dynamiczone.description":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E41\u0E1A\u0E1A\u0E44\u0E14\u0E19\u0E32\u0E21\u0E34\u0E01\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E41\u0E01\u0E49\u0E44\u0E02\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32","attribute.email":"\u0E2D\u0E35\u0E40\u0E21\u0E25","attribute.email.description":"\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E2D\u0E35\u0E40\u0E21\u0E25\u0E17\u0E35\u0E48\u0E21\u0E35\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E01\u0E32\u0E23\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E04\u0E27\u0E32\u0E21\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","attribute.enumeration":"\u0E01\u0E32\u0E23\u0E41\u0E08\u0E07\u0E19\u0E31\u0E1A","attribute.enumeration.description":"\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E04\u0E48\u0E32\u0E08\u0E32\u0E01\u0E19\u0E31\u0E49\u0E19\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E04\u0E48\u0E32\u0E2B\u0E19\u0E36\u0E48\u0E07","attribute.json":"JSON","attribute.json.description":"\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A JSON","attribute.media":"\u0E2A\u0E37\u0E48\u0E2D","attribute.media.description":"\u0E44\u0E1F\u0E25\u0E4C\u0E40\u0E0A\u0E48\u0E19\u0E2D\u0E34\u0E21\u0E40\u0E21\u0E08, \u0E27\u0E34\u0E14\u0E35\u0E42\u0E2D, \u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E19","attribute.null":" ","attribute.number":"\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02","attribute.number.description":"\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02 (integer, float, decimal)","attribute.password":"\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19","attribute.password.description":"\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E17\u0E35\u0E48\u0E21\u0E35\u0E01\u0E32\u0E23\u0E40\u0E02\u0E49\u0E32\u0E23\u0E2B\u0E31\u0E2A","attribute.relation":"\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E31\u0E21\u0E1E\u0E31\u0E19\u0E18\u0E4C","attribute.relation.description":"\u0E2D\u0E49\u0E32\u0E07\u0E16\u0E36\u0E07\u0E0A\u0E19\u0E34\u0E14\u0E04\u0E2D\u0E25\u0E40\u0E25\u0E47\u0E01\u0E0A\u0E31\u0E19","attribute.richtext":"\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E41\u0E1A\u0E1A Rich","attribute.richtext.description":"\u0E40\u0E04\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E21\u0E37\u0E2D\u0E41\u0E01\u0E49\u0E44\u0E02\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21 \u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E47\u0E2D\u0E1E\u0E0A\u0E31\u0E19\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A","attribute.text":"\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21","attribute.text.description":"\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E40\u0E25\u0E47\u0E01\u0E2B\u0E23\u0E37\u0E2D\u0E22\u0E32\u0E27\u0E40\u0E0A\u0E48\u0E19\u0E2B\u0E31\u0E27\u0E40\u0E23\u0E37\u0E48\u0E2D\u0E07\u0E2B\u0E23\u0E37\u0E2D\u0E04\u0E33\u0E2D\u0E18\u0E34\u0E1A\u0E32\u0E22","attribute.time":"\u0E40\u0E27\u0E25\u0E32","attribute.timestamp":"\u0E01\u0E32\u0E23\u0E1B\u0E23\u0E30\u0E17\u0E31\u0E1A\u0E40\u0E27\u0E25\u0E32","attribute.uid":"UID","attribute.uid.description":"\u0E15\u0E31\u0E27\u0E23\u0E30\u0E1A\u0E38\u0E40\u0E09\u0E1E\u0E32\u0E30","button.attributes.add.another":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E2D\u0E37\u0E48\u0E19","button.component.add":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C","button.component.create":"\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E43\u0E2B\u0E21\u0E48","button.model.create":"\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E0A\u0E19\u0E34\u0E14\u0E01\u0E32\u0E23\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E43\u0E2B\u0E21\u0E48","button.single-types.create":"\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E0A\u0E19\u0E34\u0E14\u0E40\u0E14\u0E35\u0E48\u0E22\u0E27\u0E43\u0E2B\u0E21\u0E48","component.repeatable":"(\u0E17\u0E33\u0E0B\u0E49\u0E33\u0E44\u0E14\u0E49)","components.componentSelect.no-component-available":"\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E2A\u0E48\u0E27\u0E19\u0E1B\u0E23\u0E30\u0E01\u0E2D\u0E1A\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E41\u0E25\u0E49\u0E27","components.componentSelect.no-component-available.with-search":"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E17\u0E35\u0E48\u0E15\u0E23\u0E07\u0E01\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13","components.componentSelect.value-component":"{number} \u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E17\u0E35\u0E48\u0E40\u0E25\u0E37\u0E2D\u0E01 (\u0E0A\u0E19\u0E34\u0E14\u0E17\u0E35\u0E48\u0E08\u0E30\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C)","components.componentSelect.value-components":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C {number} \u0E41\u0E25\u0E49\u0E27","configurations":"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32","contentType.collectionName.description":"\u0E21\u0E35\u0E1B\u0E23\u0E30\u0E42\u0E22\u0E0A\u0E19\u0E4C\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E0A\u0E37\u0E48\u0E2D\u0E02\u0E2D\u0E07\u0E0A\u0E19\u0E34\u0E14\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E41\u0E25\u0E30\u0E0A\u0E37\u0E48\u0E2D\u0E15\u0E32\u0E23\u0E32\u0E07\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E41\u0E15\u0E01\u0E15\u0E48\u0E32\u0E07\u0E01\u0E31\u0E19","contentType.collectionName.label":"\u0E0A\u0E37\u0E48\u0E2D\u0E04\u0E2D\u0E25\u0E40\u0E25\u0E47\u0E01\u0E0A\u0E31\u0E19","contentType.displayName.label":"\u0E0A\u0E37\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E41\u0E2A\u0E14\u0E07","contentType.kind.change.warning":"\u0E04\u0E38\u0E13\u0E40\u0E1E\u0E35\u0E22\u0E07\u0E41\u0E04\u0E48\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E19\u0E34\u0E14\u0E02\u0E2D\u0E07\u0E0A\u0E19\u0E34\u0E14\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32: API \u0E08\u0E30\u0E16\u0E39\u0E01\u0E23\u0E35\u0E40\u0E0B\u0E47\u0E15 (\u0E40\u0E2A\u0E49\u0E19\u0E17\u0E32\u0E07\u0E15\u0E31\u0E27\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E41\u0E25\u0E30\u0E40\u0E0B\u0E2D\u0E23\u0E4C\u0E27\u0E34\u0E2A\u0E08\u0E30\u0E16\u0E39\u0E01\u0E40\u0E02\u0E35\u0E22\u0E19\u0E17\u0E31\u0E1A)","error.attributeName.reserved-name":"\u0E0A\u0E37\u0E48\u0E2D\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E43\u0E19\u0E0A\u0E19\u0E34\u0E14\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49 \u0E40\u0E19\u0E37\u0E48\u0E2D\u0E07\u0E08\u0E32\u0E01\u0E2D\u0E32\u0E08\u0E17\u0E33\u0E43\u0E2B\u0E49\u0E1F\u0E31\u0E07\u0E01\u0E4C\u0E0A\u0E31\u0E19\u0E2D\u0E37\u0E48\u0E19\u0E40\u0E2A\u0E35\u0E22\u0E2B\u0E32\u0E22\u0E44\u0E14\u0E49","error.contentTypeName.reserved-name":"\u0E0A\u0E37\u0E48\u0E2D\u0E19\u0E35\u0E49\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E43\u0E0A\u0E49\u0E43\u0E19\u0E42\u0E1B\u0E23\u0E40\u0E08\u0E47\u0E01\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E40\u0E19\u0E37\u0E48\u0E2D\u0E07\u0E08\u0E32\u0E01\u0E2D\u0E32\u0E08\u0E2B\u0E22\u0E38\u0E14\u0E01\u0E32\u0E23\u0E17\u0E33\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07\u0E1F\u0E31\u0E07\u0E01\u0E4C\u0E0A\u0E31\u0E19\u0E2D\u0E37\u0E48\u0E19","error.validation.enum-duplicate":"\u0E44\u0E21\u0E48\u0E2D\u0E19\u0E38\u0E0D\u0E32\u0E15\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E04\u0E48\u0E32\u0E0B\u0E49\u0E33","error.validation.minSupMax":"\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E2B\u0E19\u0E37\u0E2D\u0E01\u0E27\u0E48\u0E32","error.validation.regex":"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A Regex \u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07","error.validation.relation.targetAttribute-taken":"\u0E0A\u0E37\u0E48\u0E2D\u0E19\u0E35\u0E49\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48\u0E43\u0E19\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22","form.attribute.component.option.add":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C","form.attribute.component.option.create":"\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E43\u0E2B\u0E21\u0E48","form.attribute.component.option.create.description":"\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E17\u0E35\u0E48\u0E41\u0E1A\u0E48\u0E07\u0E43\u0E0A\u0E49\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E0A\u0E19\u0E34\u0E14\u0E41\u0E25\u0E30\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E08\u0E30\u0E1E\u0E23\u0E49\u0E2D\u0E21\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E41\u0E25\u0E30\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E02\u0E49\u0E32\u0E16\u0E36\u0E07\u0E44\u0E14\u0E49\u0E17\u0E38\u0E01\u0E17\u0E35\u0E48","form.attribute.component.option.repeatable":"\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E17\u0E35\u0E48\u0E17\u0E33\u0E0B\u0E49\u0E33\u0E44\u0E14\u0E49","form.attribute.component.option.repeatable.description":"\u0E14\u0E35\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E2B\u0E25\u0E32\u0E22\u0E2D\u0E34\u0E19\u0E2A\u0E41\u0E15\u0E19\u0E0B\u0E4C (\u0E0A\u0E38\u0E14\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25) \u0E02\u0E2D\u0E07\u0E2A\u0E48\u0E27\u0E19\u0E1C\u0E2A\u0E21\u0E40\u0E21\u0E15\u0E32\u0E41\u0E17\u0E47\u0E01\u0E41\u0E25\u0E30\u0E2D\u0E37\u0E48\u0E19\u0E46","form.attribute.component.option.reuse-existing":"\u0E43\u0E0A\u0E49\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E17\u0E35\u0E48\u0E21\u0E35\u0E2D\u0E22\u0E39\u0E48","form.attribute.component.option.reuse-existing.description":"\u0E43\u0E0A\u0E49\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E17\u0E35\u0E48\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E44\u0E27\u0E49\u0E41\u0E25\u0E49\u0E27\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E17\u0E33\u0E43\u0E2B\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2A\u0E2D\u0E14\u0E04\u0E25\u0E49\u0E2D\u0E07\u0E01\u0E31\u0E19\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E0A\u0E19\u0E34\u0E14\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32","form.attribute.component.option.single":"\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E40\u0E14\u0E35\u0E22\u0E27","form.attribute.component.option.single.description":"\u0E14\u0E35\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E01\u0E25\u0E38\u0E48\u0E21\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E40\u0E0A\u0E48\u0E19\u0E41\u0E2D\u0E14\u0E40\u0E14\u0E23\u0E2A\u0E41\u0E1A\u0E1A\u0E40\u0E15\u0E47\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2B\u0E25\u0E31\u0E01\u0E41\u0E25\u0E30\u0E2D\u0E37\u0E48\u0E19\u0E46","form.attribute.item.customColumnName":"\u0E0A\u0E37\u0E48\u0E2D\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E41\u0E1A\u0E1A\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E40\u0E2D\u0E07","form.attribute.item.customColumnName.description":"\u0E2A\u0E34\u0E48\u0E07\u0E19\u0E35\u0E49\u0E21\u0E35\u0E1B\u0E23\u0E30\u0E42\u0E22\u0E0A\u0E19\u0E4C\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E10\u0E32\u0E19\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E04\u0E23\u0E2D\u0E1A\u0E04\u0E25\u0E38\u0E21\u0E21\u0E32\u0E01\u0E02\u0E36\u0E49\u0E19\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E15\u0E2D\u0E1A\u0E01\u0E25\u0E31\u0E1A\u0E02\u0E2D\u0E07 API","form.attribute.item.defineRelation.fieldName":"\u0E0A\u0E37\u0E48\u0E2D\u0E1F\u0E34\u0E25\u0E14\u0E4C","form.attribute.item.enumeration.graphql":"\u0E01\u0E32\u0E23\u0E40\u0E02\u0E35\u0E22\u0E19\u0E17\u0E31\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A GraphQL","form.attribute.item.enumeration.graphql.description":"\u0E2D\u0E19\u0E38\u0E0D\u0E32\u0E15\u0E43\u0E2B\u0E49\u0E04\u0E38\u0E13\u0E40\u0E02\u0E35\u0E22\u0E19\u0E17\u0E31\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E02\u0E36\u0E49\u0E19\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A GraphQL","form.attribute.item.enumeration.placeholder":"\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07:\\n\u0E40\u0E0A\u0E49\u0E32\\n\u0E40\u0E17\u0E35\u0E48\u0E22\u0E07\\n\u0E40\u0E22\u0E47\u0E19","form.attribute.item.enumeration.rules":"\u0E04\u0E48\u0E32 (\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E1A\u0E23\u0E23\u0E17\u0E31\u0E14\u0E15\u0E48\u0E2D\u0E04\u0E48\u0E32)","form.attribute.item.maximum":"\u0E04\u0E48\u0E32\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14","form.attribute.item.maximumLength":"\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14","form.attribute.item.minimum":"\u0E04\u0E48\u0E32\u0E15\u0E48\u0E33\u0E2A\u0E38\u0E14","form.attribute.item.minimumLength":"\u0E04\u0E27\u0E32\u0E21\u0E22\u0E32\u0E27\u0E15\u0E48\u0E33\u0E2A\u0E38\u0E14","form.attribute.item.number.type":"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02","form.attribute.item.number.type.biginteger":"\u0E08\u0E33\u0E19\u0E27\u0E19\u0E40\u0E15\u0E47\u0E21\u0E02\u0E19\u0E32\u0E14\u0E43\u0E2B\u0E0D\u0E48 (\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07: 1 2 3 4 5 6 7 8 9)","form.attribute.item.number.type.decimal":"\u0E40\u0E25\u0E02\u0E10\u0E32\u0E19\u0E2A\u0E34\u0E1A (\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07: 2.22)","form.attribute.item.number.type.float":"\u0E08\u0E33\u0E19\u0E27\u0E19\u0E08\u0E23\u0E34\u0E07 (\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07: 3.33333333)","form.attribute.item.number.type.integer":"\u0E08\u0E33\u0E19\u0E27\u0E19\u0E40\u0E15\u0E47\u0E21 (\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07: 10)","form.attribute.item.privateField":"\u0E44\u0E1E\u0E23\u0E40\u0E27\u0E15\u0E1F\u0E34\u0E25\u0E14\u0E4C","form.attribute.item.privateField.description":"\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E19\u0E35\u0E49\u0E08\u0E30\u0E44\u0E21\u0E48\u0E41\u0E2A\u0E14\u0E07\u0E02\u0E36\u0E49\u0E19\u0E43\u0E19\u0E01\u0E32\u0E23\u0E15\u0E2D\u0E1A\u0E01\u0E25\u0E31\u0E1A API","form.attribute.item.requiredField":"\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E17\u0E35\u0E48\u0E08\u0E33\u0E40\u0E1B\u0E47\u0E19","form.attribute.item.requiredField.description":"\u0E04\u0E38\u0E13\u0E08\u0E30\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E44\u0E14\u0E49\u0E2B\u0E32\u0E01\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E19\u0E35\u0E49\u0E27\u0E48\u0E32\u0E07\u0E2D\u0E22\u0E39\u0E48","form.attribute.item.text.regex":"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A RegExp","form.attribute.item.text.regex.description":"\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E02\u0E2D\u0E07\u0E19\u0E34\u0E1E\u0E08\u0E19\u0E4C\u0E1B\u0E01\u0E15\u0E34","form.attribute.item.uniqueField":"\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E40\u0E09\u0E1E\u0E32\u0E30","form.attribute.item.uniqueField.description":"\u0E04\u0E38\u0E13\u0E08\u0E30\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E44\u0E14\u0E49\u0E16\u0E49\u0E32\u0E21\u0E35\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E17\u0E35\u0E48\u0E21\u0E35\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E17\u0E35\u0E48\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E01\u0E31\u0E19\u0E2D\u0E22\u0E39\u0E48\u0E41\u0E25\u0E49\u0E27","form.attribute.media.allowed-types":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E0A\u0E19\u0E34\u0E14\u0E02\u0E2D\u0E07\u0E2A\u0E37\u0E48\u0E2D\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E17\u0E35\u0E48\u0E2D\u0E19\u0E38\u0E0D\u0E32\u0E15","form.attribute.media.allowed-types.option-files":"\u0E44\u0E1F\u0E25\u0E4C","form.attribute.media.allowed-types.option-images":"\u0E23\u0E39\u0E1B\u0E20\u0E32\u0E1E","form.attribute.media.allowed-types.option-videos":"\u0E27\u0E34\u0E14\u0E35\u0E42\u0E2D","form.attribute.media.option.multiple":"\u0E2A\u0E37\u0E48\u0E2D\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E2B\u0E25\u0E32\u0E22\u0E2A\u0E37\u0E48\u0E2D","form.attribute.media.option.multiple.description":"\u0E14\u0E35\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E2A\u0E44\u0E25\u0E40\u0E14\u0E2D\u0E23\u0E4C, \u0E01\u0E32\u0E23\u0E2B\u0E21\u0E38\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E01\u0E32\u0E23\u0E14\u0E32\u0E27\u0E19\u0E4C\u0E42\u0E2B\u0E25\u0E14\u0E2B\u0E25\u0E32\u0E22\u0E44\u0E1F\u0E25\u0E4C","form.attribute.media.option.single":"\u0E2A\u0E37\u0E48\u0E2D\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E40\u0E14\u0E35\u0E48\u0E22\u0E27","form.attribute.media.option.single.description":"\u0E14\u0E35\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A \u0E23\u0E39\u0E1B\u0E20\u0E32\u0E1E\u0E02\u0E2D\u0E07\u0E42\u0E1B\u0E23\u0E44\u0E1F\u0E25\u0E4C\u0E2B\u0E23\u0E37\u0E2D\u0E23\u0E39\u0E1B\u0E20\u0E32\u0E1E\u0E1B\u0E01","form.attribute.settings.default":"\u0E04\u0E48\u0E32\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19","form.attribute.text.option.long-text":"\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E41\u0E1A\u0E1A\u0E22\u0E32\u0E27","form.attribute.text.option.long-text.description":"\u0E14\u0E35\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E04\u0E33\u0E2D\u0E18\u0E34\u0E1A\u0E32\u0E22\u0E0A\u0E35\u0E27\u0E1B\u0E23\u0E30\u0E27\u0E31\u0E15\u0E34 \u0E01\u0E32\u0E23\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E17\u0E35\u0E48\u0E41\u0E17\u0E49\u0E08\u0E23\u0E34\u0E07\u0E16\u0E39\u0E01\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19","form.attribute.text.option.short-text":"\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E41\u0E1A\u0E1A\u0E2A\u0E31\u0E49\u0E19","form.attribute.text.option.short-text.description":"\u0E14\u0E35\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E2B\u0E31\u0E27\u0E40\u0E23\u0E37\u0E48\u0E2D\u0E07, \u0E0A\u0E37\u0E48\u0E2D, \u0E25\u0E34\u0E07\u0E01\u0E4C (URL) \u0E41\u0E25\u0E30\u0E22\u0E31\u0E07\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E01\u0E32\u0E23\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E17\u0E35\u0E48\u0E41\u0E19\u0E48\u0E19\u0E2D\u0E19\u0E1A\u0E19\u0E1F\u0E34\u0E25\u0E14\u0E4C","form.button.add-components-to-dynamiczone":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E25\u0E07\u0E43\u0E19\u0E42\u0E0B\u0E19","form.button.add-field":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E2D\u0E37\u0E48\u0E19","form.button.add-first-field-to-created-component":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E41\u0E23\u0E01\u0E43\u0E19\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C","form.button.add.field.to.collectionType":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E2D\u0E37\u0E48\u0E19\u0E43\u0E2B\u0E49\u0E01\u0E31\u0E1A\u0E0A\u0E19\u0E34\u0E14\u0E04\u0E2D\u0E25\u0E40\u0E25\u0E47\u0E01\u0E0A\u0E31\u0E19\u0E19\u0E35\u0E49","form.button.add.field.to.component":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E2D\u0E37\u0E48\u0E19\u0E25\u0E07\u0E43\u0E19\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E19\u0E35\u0E49","form.button.add.field.to.contentType":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E2D\u0E37\u0E48\u0E19\u0E25\u0E07\u0E43\u0E19\u0E0A\u0E19\u0E34\u0E14\u0E40\u0E19\u0E37\u0E49\u0E2D\u0E2B\u0E32\u0E19\u0E35\u0E49","form.button.add.field.to.singleType":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E2D\u0E37\u0E48\u0E19\u0E43\u0E2B\u0E49\u0E01\u0E31\u0E1A\u0E0A\u0E19\u0E34\u0E14\u0E40\u0E14\u0E35\u0E48\u0E22\u0E27\u0E19\u0E35\u0E49","form.button.cancel":"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01","form.button.collection-type.description":"\u0E14\u0E35\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E2B\u0E25\u0E32\u0E22\u0E2D\u0E34\u0E19\u0E2A\u0E41\u0E15\u0E19\u0E0B\u0E4C\u0E40\u0E0A\u0E48\u0E19 \u0E1A\u0E17\u0E04\u0E27\u0E32\u0E21, \u0E1C\u0E25\u0E34\u0E15\u0E20\u0E31\u0E13\u0E11\u0E4C, \u0E02\u0E49\u0E2D\u0E04\u0E34\u0E14\u0E40\u0E2B\u0E47\u0E19 \u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E19","form.button.configure-component":"\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C","form.button.configure-view":"\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E2D\u0E19\u0E1F\u0E34\u0E01\u0E21\u0E38\u0E21\u0E21\u0E2D\u0E07","form.button.select-component":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C","form.button.single-type.description":"\u0E17\u0E35\u0E48\u0E14\u0E35\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E2D\u0E34\u0E19\u0E2A\u0E41\u0E15\u0E19\u0E0B\u0E4C\u0E40\u0E14\u0E35\u0E48\u0E22\u0E27\u0E40\u0E0A\u0E48\u0E19 \u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E01\u0E31\u0E1A\u0E40\u0E23\u0E32, \u0E42\u0E2E\u0E21\u0E40\u0E1E\u0E08, \u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E19","from":"\u0E08\u0E32\u0E01","modalForm.attribute.form.base.name.description":"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E1E\u0E37\u0E49\u0E19\u0E17\u0E35\u0E48\u0E27\u0E48\u0E32\u0E07\u0E17\u0E35\u0E48\u0E2D\u0E19\u0E38\u0E0D\u0E32\u0E15\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E02\u0E2D\u0E07\u0E41\u0E2D\u0E47\u0E15\u0E17\u0E23\u0E34\u0E1A\u0E34\u0E27\u0E15\u0E4C","modalForm.attribute.form.base.name.placeholder":"\u0E40\u0E0A\u0E48\u0E19 slug, seoUrl, canonicalUrl","modalForm.attribute.target-field":"\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E17\u0E35\u0E48\u0E41\u0E19\u0E1A","modalForm.attributes.select-component":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C","modalForm.attributes.select-components":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C","modalForm.component.header-create":"\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C","modalForm.components.create-component.category.label":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E2B\u0E21\u0E27\u0E14\u0E2B\u0E21\u0E39\u0E48\u0E2B\u0E23\u0E37\u0E2D\u0E1B\u0E49\u0E2D\u0E19\u0E0A\u0E37\u0E48\u0E2D\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E2B\u0E21\u0E27\u0E14\u0E2B\u0E21\u0E39\u0E48\u0E43\u0E2B\u0E21\u0E48\u0E2B\u0E23\u0E37\u0E2D\u0E1B\u0E49\u0E2D\u0E19\u0E0A\u0E37\u0E48\u0E2D","modalForm.components.icon.label":"\u0E44\u0E2D\u0E04\u0E2D\u0E19","modalForm.editCategory.base.name.description":"\u0E44\u0E21\u0E48\u0E2D\u0E19\u0E38\u0E0D\u0E32\u0E15\u0E43\u0E2B\u0E49\u0E21\u0E35\u0E0A\u0E48\u0E2D\u0E07\u0E27\u0E48\u0E32\u0E07\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E0A\u0E37\u0E48\u0E2D\u0E02\u0E2D\u0E07\u0E2B\u0E21\u0E27\u0E14\u0E2B\u0E21\u0E39\u0E48","modalForm.header-edit":"\u0E41\u0E01\u0E49\u0E44\u0E02 {name}","modalForm.header.categories":"\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17","modalForm.header.back":"\u0E01\u0E25\u0E31\u0E1A","modalForm.singleType.header-create":"\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E0A\u0E19\u0E34\u0E14\u0E40\u0E14\u0E35\u0E48\u0E22\u0E27","modalForm.sub-header.addComponentToDynamicZone":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E43\u0E2B\u0E21\u0E48\u0E43\u0E2B\u0E49\u0E01\u0E31\u0E1A\u0E44\u0E14\u0E19\u0E32\u0E21\u0E34\u0E01\u0E42\u0E0B\u0E19","modalForm.sub-header.attribute.create":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E1F\u0E34\u0E25\u0E14\u0E4C {type} \u0E43\u0E2B\u0E21\u0E48","modalForm.sub-header.attribute.create.step":"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E43\u0E2B\u0E21\u0E48 ({step}/2)","modalForm.sub-header.attribute.edit":"\u0E41\u0E01\u0E49\u0E44\u0E02 {name}","modalForm.sub-header.chooseAttribute.collectionType":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E1F\u0E34\u0E25\u0E14\u0E4C\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","modalForm.sub-header.chooseAttribute.component":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13","modalForm.sub-header.chooseAttribute.singleType":"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E0A\u0E19\u0E34\u0E14\u0E40\u0E14\u0E35\u0E48\u0E22\u0E27\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13","modelPage.attribute.relation-polymorphic":"\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E31\u0E21\u0E1E\u0E31\u0E19\u0E18\u0E4C (polymorphic)","modelPage.attribute.relationWith":"\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E31\u0E21\u0E1E\u0E31\u0E19\u0E18\u0E4C\u0E01\u0E31\u0E1A","notification.info.autoreaload-disable":"\u0E04\u0E38\u0E13\u0E25\u0E31\u0E01\u0E29\u0E13\u0E30 autoReload \u0E08\u0E33\u0E40\u0E1B\u0E47\u0E19\u0E15\u0E49\u0E2D\u0E07\u0E21\u0E35\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E0A\u0E49\u0E1B\u0E25\u0E31\u0E4A\u0E01\u0E2D\u0E34\u0E19\u0E19\u0E35\u0E49 \u0E40\u0E23\u0E34\u0E48\u0E21\u0E17\u0E33\u0E07\u0E32\u0E19\u0E40\u0E0B\u0E34\u0E23\u0E4C\u0E1F\u0E40\u0E27\u0E2D\u0E23\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E14\u0E49\u0E27\u0E22 `strapi develop`","notification.info.creating.notSaved":"\u0E42\u0E1B\u0E23\u0E14\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01\u0E07\u0E32\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E01\u0E48\u0E2D\u0E19\u0E01\u0E32\u0E23\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E0A\u0E19\u0E34\u0E14\u0E04\u0E2D\u0E25\u0E40\u0E25\u0E47\u0E01\u0E0A\u0E31\u0E19\u0E2B\u0E23\u0E37\u0E2D\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E43\u0E2B\u0E21\u0E48","plugin.description.long":"\u0E42\u0E21\u0E40\u0E14\u0E25\u0E42\u0E04\u0E23\u0E07\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07 API \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E2A\u0E23\u0E49\u0E32\u0E07\u0E1F\u0E34\u0E25\u0E14\u0E4C\u0E43\u0E2B\u0E21\u0E48\u0E41\u0E25\u0E30\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E31\u0E21\u0E1E\u0E31\u0E19\u0E18\u0E4C\u0E43\u0E19\u0E40\u0E27\u0E25\u0E32\u0E40\u0E1E\u0E35\u0E22\u0E07\u0E2B\u0E19\u0E36\u0E48\u0E07\u0E19\u0E32\u0E17\u0E35 \u0E44\u0E1F\u0E25\u0E4C\u0E08\u0E30\u0E16\u0E39\u0E01\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E41\u0E25\u0E30\u0E2D\u0E31\u0E1E\u0E40\u0E14\u0E15\u0E42\u0E14\u0E22\u0E2D\u0E31\u0E15\u0E42\u0E19\u0E21\u0E31\u0E15\u0E34\u0E43\u0E19\u0E42\u0E1B\u0E23\u0E40\u0E08\u0E47\u0E01\u0E15\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13","plugin.description.short":"\u0E42\u0E21\u0E40\u0E14\u0E25\u0E42\u0E04\u0E23\u0E07\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07 API \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13","popUpForm.navContainer.advanced":"\u0E01\u0E32\u0E23\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07","popUpForm.navContainer.base":"\u0E04\u0E48\u0E32\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19","popUpWarning.bodyMessage.cancel-modifications":"\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?","popUpWarning.bodyMessage.cancel-modifications.with-components":"\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? \u0E1A\u0E32\u0E07\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E16\u0E39\u0E01\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E2B\u0E23\u0E37\u0E2D\u0E41\u0E01\u0E49\u0E44\u0E02...","popUpWarning.bodyMessage.category.delete":"\u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E25\u0E1A\u0E2B\u0E21\u0E27\u0E14\u0E2B\u0E21\u0E39\u0E48\u0E19\u0E35\u0E49\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48? \u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E08\u0E30\u0E16\u0E39\u0E01\u0E25\u0E1A\u0E2D\u0E2D\u0E01\u0E14\u0E49\u0E27\u0E22","popUpWarning.bodyMessage.component.delete":"\u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E25\u0E1A\u0E04\u0E2D\u0E21\u0E42\u0E1E\u0E40\u0E19\u0E19\u0E15\u0E4C\u0E19\u0E35\u0E49\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48?","popUpWarning.bodyMessage.contentType.delete":"\u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E25\u0E1A\u0E0A\u0E19\u0E34\u0E14\u0E04\u0E2D\u0E25\u0E40\u0E25\u0E47\u0E01\u0E0A\u0E31\u0E19\u0E19\u0E35\u0E49\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48?","prompt.unsaved":"\u0E04\u0E38\u0E13\u0E41\u0E19\u0E48\u0E43\u0E08\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E2D\u0E2D\u0E01\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48? \u0E01\u0E32\u0E23\u0E1B\u0E23\u0E31\u0E1A\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E08\u0E30\u0E2B\u0E32\u0E22\u0E44\u0E1B","relation.attributeName.placeholder":"\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07: author, category, tag","relation.manyToMany":"\u0E21\u0E35\u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E02\u0E2D\u0E07\u0E2B\u0E25\u0E32\u0E22","relation.manyToOne":"\u0E21\u0E35\u0E08\u0E33\u0E19\u0E27\u0E19\u0E21\u0E32\u0E01","relation.manyWay":"\u0E21\u0E35\u0E08\u0E33\u0E19\u0E27\u0E19\u0E21\u0E32\u0E01","relation.oneToMany":"\u0E40\u0E1B\u0E47\u0E19\u0E02\u0E2D\u0E07\u0E2B\u0E25\u0E32\u0E22","relation.oneToOne":"\u0E21\u0E35\u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E02\u0E2D\u0E07\u0E2B\u0E19\u0E36\u0E48\u0E07","relation.oneWay":"\u0E21\u0E35\u0E2B\u0E19\u0E36\u0E48\u0E07"}')}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3304],{16260:function(e){e.exports=JSON.parse('{"ComponentIconPicker.search.placeholder":"Bir ikon ara","attribute.boolean":"Mant\u0131ksal","attribute.component":"Bile\u015Fen","attribute.component.description":"Tekrarlayabilece\u011Fin alanlar grubu","attribute.customField":"\xD6zel alan","attribute.date":"Tarih","attribute.dynamiczone":"Dinamik b\xF6lge","attribute.dynamiczone.description":"\u0130\xE7eri\u011Fi d\xFCzenlerken bile\u015Fenleri dinamik olarak se\xE7","attribute.email":"E-posta","attribute.enumeration":"Enumeration","attribute.json":"JSON","attribute.media":"Medya","attribute.null":" ","attribute.number":"Say\u0131","attribute.number.description":"Say\u0131lar (tamsay\u0131, kayan, ondal\u0131kl\u0131)","attribute.password":"Parola","attribute.relation":"\u0130li\u015Fki","attribute.richtext":"Zengin metin","attribute.richtext.description":"Bi\xE7imlendirme se\xE7enekleri olan bir zengin metin d\xFCzenleyici","attribute.text":"Yaz\u0131","attribute.time":"Zaman","attribute.timestamp":"Zaman damgas\u0131","attribute.uid":"UID","attribute.uid.description":"Benzersiz kimlik numaras\u0131","button.attributes.add.another":"Ba\u015Fka bir alan ekle","button.component.add":"Bir bile\u015Fen ekle","button.component.create":"Yeni bile\u015Fen olu\u015Ftur","button.model.create":"Yeni koleksiyon tipi olu\u015Ftur","button.single-types.create":"Yeni tekil tip olu\u015Ftur","component.repeatable":"(tekrarlayabilen)","components.SelectComponents.displayed-value":"{number} bile\u015Fen se\xE7ildi","components.componentSelect.no-component-available":"T\xFCm bile\u015Fenleri ekledin","components.componentSelect.no-component-available.with-search":"Araman\u0131zla e\u015Fle\u015Fen bile\u015Fen bulunamad\u0131","components.componentSelect.value-component":"{number} bile\u015Fen se\xE7ildi (aramak istedi\u011Fin bile\u015Feni yaz)","components.componentSelect.value-components":"{number} bile\u015Fen se\xE7ildi","configurations":"Kurulumlar","contentType.apiId-plural.description":"\xC7o\u011Ful API Kimli\u011Fi","contentType.apiId-plural.label":"API Kimli\u011Fi (\xC7o\u011Ful)","contentType.apiId-singular.description":"UID API yollar\u0131 ve veritaban\u0131 tablolar\u0131n\u0131 olu\u015Fturmak i\xE7in kullan\u0131l\u0131r","contentType.apiId-singular.label":"API Kimli\u011Fi (Tekil)","contentType.collectionName.description":"\u0130\xE7erik tipin ve tablo ad\u0131n farkl\u0131 oldu\u011Fu durumlarda kullan\u0131\u015Fl\u0131d\u0131r","contentType.collectionName.label":"Koleksiyon ad\u0131","contentType.displayName.label":"G\xF6r\xFCnt\xFClenme ad\u0131","contentType.draftAndPublish.description":"Yay\u0131nlamadan \xF6nce girdilerin taslak halini yaz","contentType.draftAndPublish.label":"Taslak/Yay\u0131n sistemi","contentType.kind.change.warning":"\u0130\xE7erik tipinin \xE7e\u015Fidini de\u011Fi\u015Ftirdiniz. API s\u0131f\u0131rlanacak (routes, controllers, services).","error.attributeName.reserved-name":"Bu isim, di\u011Fer \xF6zellikleri bozabilece\u011Finden, i\xE7erik tipi i\xE7in kullan\u0131lamaz","error.contentType.pluralName-used":"Bu de\u011Fer tekil olanla ayn\u0131 olamaz","error.contentType.singularName-used":"Bu de\u011Fer \xE7o\u011Ful olanla ayn\u0131 olamaz","error.contentTypeName.reserved-name":"Bu isim, di\u011Fer \xF6zellikleri bozabilece\u011Finden, projede kullan\u0131lamaz","error.validation.enum-duplicate":"M\xFCkerrer de\u011Ferlere izin verilmez (yaln\u0131zca alfan\xFCmerik karakterler hesaba kat\u0131lm\u0131\u015Ft\u0131r).","error.validation.enum-empty-string":"Kelime bo\u015F olamaz","error.validation.enum-regex":"En az bir de\u011Fer ge\xE7ersiz. De\u011Ferlerin i\xE7inde say\u0131lardan \xF6nce en az bir alfabetik karakter olmal\u0131d\u0131r.","error.validation.minSupMax":"\xDCst olamaz","error.validation.positive":"Pozitif say\u0131 olmal\u0131d\u0131r","error.validation.regex":"Regex ifadesi ge\xE7ersiz","error.validation.relation.targetAttribute-taken":"Bu isim hedefte yer al\u0131yor","form.attribute.component.option.add":"Bir bile\u015Fen ekle","form.attribute.component.option.create":"Yeni bir bile\u015Fen olu\u015Ftur","form.attribute.component.option.create.description":"Bile\u015Fen tipler ve bile\u015Fenler aras\u0131nda payla\u015F\u0131l\u0131r ve her yerden eri\u015Filebilir.","form.attribute.component.option.repeatable":"Tekrarlanabilir bile\u015Fen","form.attribute.component.option.repeatable.description":"\xC7ok kay\u0131tl\u0131 (diziler) i\xE7erikler, meta etiketleri, v.b. i\xE7in ideal","form.attribute.component.option.reuse-existing":"Mevcut bir bile\u015Feni kullan","form.attribute.component.option.reuse-existing.description":"Verilerini i\xE7erik tipleri aras\u0131nda tutarl\u0131 k\u0131lmak i\xE7in daha \xF6nceden olu\u015Fturulmu\u015F bir bile\u015Feni kullan.","form.attribute.component.option.single":"Tekil bile\u015Fen","form.attribute.component.option.single.description":"Gruplama alanlar\u0131 (adres, temel bilgiler, v.b. i\xE7in ideal","form.attribute.item.customColumnName":"\xD6zel kolon isimleri","form.attribute.item.customColumnName.description":"Bu veritaban\u0131 s\xFCtun isimleri servis yan\u0131tlar\u0131 i\xE7in daha kapsaml\u0131 bir bi\xE7imde yeniden adland\u0131rmak i\xE7in kullan\u0131\u015Fl\u0131d\u0131r","form.attribute.item.date.type.date":"tarih (\xF6r: 01/01/{currentYear})","form.attribute.item.date.type.datetime":"tarih saat (\xF6r: 01/01/{currentYear} 00:00)","form.attribute.item.date.type.time":"saat (\xF6r: 00:00)","form.attribute.item.defineRelation.fieldName":"Alan ad\u0131","form.attribute.item.enumeration.graphql":"GraphQL i\xE7in isim ge\xE7ersiz k\u0131l","form.attribute.item.enumeration.graphql.description":"GraphQL i\xE7in varsay\u0131lan olu\u015Fturulan ad\u0131 ge\xE7ersiz k\u0131lman\u0131za izin verir.","form.attribute.item.enumeration.placeholder":"\xD6rn:\\nsabah\\n\xF6\u011Flen\\nak\u015Fam","form.attribute.item.enumeration.rules":"Values (one line per value)","form.attribute.item.maximum":"En y\xFCksek de\u011Fer","form.attribute.item.maximumLength":"En y\xFCksek uzunluk","form.attribute.item.minimum":"En d\xFC\u015F\xFCk de\u011Fer","form.attribute.item.minimumLength":"En d\xFC\u015F\xFCk uzunluk","form.attribute.item.number.type":"Say\u0131 bi\xE7imi","form.attribute.item.number.type.decimal":"ondal\u0131k (ex: 2.22)","form.attribute.item.number.type.float":"float (ex: 3.33333333)","form.attribute.item.number.type.integer":"tamsay\u0131 (ex: 10)","form.attribute.item.privateField":"Gizli alan","form.attribute.item.privateField.description":"Bu alan API yan\u0131t\u0131nda g\xF6r\xFCnmez","form.attribute.item.requiredField":"Zorunlu alan","form.attribute.item.requiredField.description":"Bu alan bo\u015Fsa kay\u0131t olu\u015Fturamazs\u0131n\u0131z","form.attribute.item.text.regex":"RegExp ifadesi","form.attribute.item.text.regex.description":"RegExp ifadesi","form.attribute.item.uniqueField":"Benzersiz alan","form.attribute.item.uniqueField.description":"Ayn\u0131 i\xE7eri\u011Fe sahip bir kay\u0131t varsa kay\u0131t olu\u015Fturamazs\u0131n\u0131z.","form.attribute.settings.default":"Varsay\u0131lan de\u011Fer","form.button.add-components-to-dynamiczone":"B\xF6lgeye bile\u015Fenleri ekle","form.button.add-field":"Ba\u015Fka bir alan ekle","form.button.add-first-field-to-created-component":"\u0130lk alan\u0131 bile\u015Fene ekle","form.button.add.field.to.collectionType":"Bu koleksiyon tipine ba\u015Fka bir alan ekle","form.button.add.field.to.component":"Bu bile\u015Fene ba\u015Fka bir alan ekle","form.button.add.field.to.contentType":"Bu i\xE7erik tipine ba\u015Fka bir alan ekle","form.button.add.field.to.singleType":"Bu tekil tipe ba\u015Fka bir alan ekle","form.button.cancel":"\u0130ptal","form.button.collection-type.description":"\xC7oklu kay\u0131tlar (makaleler, \xFCr\xFCnler, yorumlar, v.b.) i\xE7in ideal","form.button.collection-type.name":"Koleksiyon Tipi","form.button.configure-component":"Bile\u015Feni ayarla","form.button.configure-view":"G\xF6r\xFCn\xFCm\xFC ayarla","form.button.select-component":"Bir bile\u015Fen se\xE7","form.button.single-type.description":"Tekil kay\u0131tlar (hakk\u0131m\u0131zda, ana sayfa, v.b.) i\xE7in ideal","form.button.single-type.name":"Tekil Tip","from":"kimden","listView.headerLayout.description":"\u0130\xE7eri\u011Finin veri mimarisini kur","menu.section.components.name":"Bile\u015Fenler","menu.section.models.name":"Koleksiyon Tipleri","menu.section.single-types.name":"Tekil Tipler","modalForm.attribute.form.base.name.description":"Nitelik ad\u0131nda bo\u015Fluk olamaz","modalForm.attribute.form.base.name.placeholder":"\xF6r. slug, seoUrl, canonicalUrl","modalForm.attribute.target-field":"\u0130li\u015Ftirilmi\u015F alan","modalForm.attributes.select-component":"Bir bile\u015Fen se\xE7","modalForm.attributes.select-components":"Bile\u015Fenleri se\xE7","modalForm.collectionType.header-create":"Bir koleksiyon tipi olu\u015Ftur","modalForm.component.header-create":"Bir bile\u015Fen olu\u015Ftur","modalForm.components.create-component.category.label":"Kategori se\xE7 ya da yeni bir tane olu\u015Fturmak i\xE7in isim gir","modalForm.components.icon.label":"\u0130kon","modalForm.custom-fields.advanced.settings.extended":"Geli\u015Fmi\u015F ayarlar","modalForm.editCategory.base.name.description":"Kategori ad\u0131nda bo\u015Fluk olamaz","modalForm.empty.button":"\xD6zel alanlar ekle","modalForm.empty.heading":"Burada hen\xFCz bir \u015Fey yok.","modalForm.empty.sub-heading":"Geni\u015F yelpazedeki uzant\u0131lar ile arad\u0131\u011F\u0131n\u0131 bul.","modalForm.header-edit":"D\xFCzenle: {name}","modalForm.header.categories":"Kategoriler","modalForm.header.back":"Geri","modalForm.singleType.header-create":"Bir tekil tip olu\u015Ftur","modalForm.sub-header.addComponentToDynamicZone":"Dinamik b\xF6lgeye yeni bile\u015Fen ekle","modalForm.sub-header.attribute.create":"Yeni {type} alan\u0131 ekle","modalForm.sub-header.attribute.create.step":"Yeni bile\u015Fen ekle ({step}/2)","modalForm.sub-header.attribute.edit":"D\xFCzenle: {name}","modalForm.sub-header.chooseAttribute.collectionType":"Koleksiyon tipin i\xE7in bir alan se\xE7","modalForm.sub-header.chooseAttribute.component":"Bile\u015Fenin i\xE7in bir alan se\xE7","modalForm.sub-header.chooseAttribute.singleType":"Tekil tipin i\xE7in bir alan se\xE7","modalForm.tabs.custom":"\xD6zel","modalForm.tabs.custom.howToLink":"Nas\u0131l \xF6zel alan eklenir","modalForm.tabs.default":"Varsay\u0131lan","modalForm.tabs.label":"Varsay\u0131lan ve \xD6zel tip sekmeleri","modelPage.attribute.relationWith":"\u0130li\u015Fkili","notification.error.dynamiczone-min.validation":"Bir i\xE7erik tipini kaydetmek i\xE7in dinamik b\xF6lgede en az bir bile\u015Fen olmas\u0131 gereklidir","notification.info.autoreaload-disable":"Bu eklentinin kullan\u0131labilmesi i\xE7in otomatik yeniden y\xFCkleme (autoReload) \xF6zelli\u011Fi gereklidir. Sunucunu `strapi develop` ile ba\u015Flat","notification.info.creating.notSaved":"Yeni bir koleksiyon tipi ya da bile\u015Fen olu\u015Fturmadan \xF6nce yapt\u0131klar\u0131n\u0131 kaydet","plugin.description.long":"APInin veri yap\u0131s\u0131n\u0131 modelle. Sadece bir iki dakikada yeni alanlar ve ili\u015Fkiler olu\u015Ftur. Projendeki dosyalar otomatik olarak olu\u015Fturulur ve g\xFCncellenir.","plugin.description.short":"APInin veri yap\u0131s\u0131n\u0131 modelle.","plugin.name":"\u0130\xE7erik Tipi Kurucusu","popUpForm.navContainer.advanced":"Geli\u015Fmi\u015F Ayarlar","popUpForm.navContainer.base":"Temel ayarlar","popUpWarning.bodyMessage.cancel-modifications":"De\u011Fi\u015Fikliklerini iptal etmek istedi\u011Finden emin misin?","popUpWarning.bodyMessage.cancel-modifications.with-components":"De\u011Fi\u015Fikliklerini iptal etmek istedi\u011Finden emin misin? Baz\u0131 bile\u015Fenler olu\u015Fturuldu ya da de\u011Fi\u015Ftirildi.","popUpWarning.bodyMessage.category.delete":"Bu kategoriyi silmek istedi\u011Finden emin misin? T\xFCm bile\u015Fenler de silinecek.","popUpWarning.bodyMessage.component.delete":"Bu bile\u015Feni silmek istedi\u011Finden emin misin?","popUpWarning.bodyMessage.contentType.delete":"Bu \u0130\xE7erik T\xFCr\xFCn\xFC silmek istedi\u011Finizden emin misiniz?","popUpWarning.draft-publish.button.confirm":"Evet, devred\u0131\u015F\u0131 b\u0131rak","popUpWarning.draft-publish.message":"Taslak/Yay\u0131nla sistemini devred\u0131\u015F\u0131 b\u0131rak\u0131rsan taslaklar\u0131n silinecek.","popUpWarning.draft-publish.second-message":"Devred\u0131\u015F\u0131 b\u0131rakmak istedi\u011Finden emin misin?","prompt.unsaved":"\xC7\u0131kmak istedi\u011Finden emin misin? T\xFCm de\u011Fi\u015Fikliklerin kaybolacak.","relation.attributeName.placeholder":"\xD6rnek: yazar, katagori, etiket","relation.manyToMany":"bir\xE7ok ki\u015Fiye ait ve ait","relation.manyToOne":"Bir\xE7ok var","relation.manyWay":"\xE7ok y\xF6nl\xFC","relation.oneToMany":"Bir\xE7o\u011Funa ait","relation.oneToOne":"biri var","relation.oneWay":"tek y\xF6nl\xFC","table.button.no-fields":"Yeni alan ekle","table.content.create-first-content-type":"\u0130lk Koleksiyon-Tipini olu\u015Ftur","table.content.no-fields.collection-type":"Bu Koleksiyon-Tipine ile alan\u0131n\u0131 ekle","table.content.no-fields.component":"Bu bile\u015Fene ilk alan\u0131n\u0131 ekle"}')}}]);
|