@plone/volto 18.0.0-alpha.9 → 18.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +20 -22
- package/.release-it.json +2 -2
- package/CHANGELOG.md +1270 -2
- package/cypress/support/commands.js +68 -14
- package/cypress/support/e2e.js +9 -0
- package/cypress/support/helpers.js +1 -0
- package/cypress/support/volto-slate.js +4 -0
- package/jest-extender-plugin.js +8 -2
- package/jest-setup-afterenv.js +2 -0
- package/locales/ca/LC_MESSAGES/volto.po +239 -78
- package/locales/ca.json +1 -1
- package/locales/de/LC_MESSAGES/volto.po +245 -84
- package/locales/de.json +1 -1
- package/locales/en/LC_MESSAGES/volto.po +236 -75
- package/locales/en.json +1 -1
- package/locales/es/LC_MESSAGES/volto.po +238 -77
- package/locales/es.json +1 -1
- package/locales/eu/LC_MESSAGES/volto.po +238 -77
- package/locales/eu.json +1 -1
- package/locales/fi/LC_MESSAGES/volto.po +241 -80
- package/locales/fi.json +1 -1
- package/locales/fr/LC_MESSAGES/volto.po +238 -77
- package/locales/fr.json +1 -1
- package/locales/hi/LC_MESSAGES/volto.po +5146 -0
- package/locales/hi.json +1 -0
- package/locales/it/LC_MESSAGES/volto.po +259 -98
- package/locales/it.json +1 -1
- package/locales/ja/LC_MESSAGES/volto.po +237 -76
- package/locales/ja.json +1 -1
- package/locales/nl/LC_MESSAGES/volto.po +236 -75
- package/locales/nl.json +1 -1
- package/locales/pt/LC_MESSAGES/volto.po +237 -76
- package/locales/pt.json +1 -1
- package/locales/pt_BR/LC_MESSAGES/volto.po +288 -127
- package/locales/pt_BR.json +1 -1
- package/locales/ro/LC_MESSAGES/volto.po +535 -368
- package/locales/ro.json +1 -1
- package/locales/volto.pot +237 -76
- package/locales/zh_CN/LC_MESSAGES/volto.po +238 -77
- package/locales/zh_CN.json +1 -1
- package/package.json +129 -128
- package/razzle.config.js +92 -9
- package/src/actions/aliases/aliases.js +27 -7
- package/src/actions/aliases/aliases.test.js +1 -1
- package/src/actions/content/content.js +14 -0
- package/src/actions/content/content.test.js +14 -0
- package/src/actions/form/form.js +35 -0
- package/src/actions/form/form.test.js +14 -0
- package/src/actions/index.js +8 -1
- package/src/actions/search/search.js +5 -11
- package/src/actions/search/search.test.js +15 -0
- package/src/actions/sidebar/sidebar.js +45 -1
- package/src/actions/sidebar/sidebar.test.js +42 -2
- package/src/components/index.js +106 -81
- package/src/components/manage/Actions/Actions.jsx +2 -1
- package/src/components/manage/Actions/Actions.stories.jsx +138 -0
- package/src/components/manage/Actions/Actions.test.jsx +1 -3
- package/src/components/manage/Add/Add.jsx +75 -32
- package/src/components/manage/Add/Add.test.jsx +11 -13
- package/src/components/manage/Aliases/Aliases.jsx +14 -8
- package/src/components/manage/Aliases/Aliases.test.jsx +7 -7
- package/src/components/manage/AnchorPlugin/components/LinkButton/AddLinkForm.jsx +78 -72
- package/src/components/manage/AnchorPlugin/useLinkEditor.jsx +79 -0
- package/src/components/manage/BlockChooser/BlockChooser.jsx +9 -1
- package/src/components/manage/BlockChooser/BlockChooser.test.jsx +4 -1
- package/src/components/manage/BlockChooser/BlockChooserButton.jsx +6 -6
- package/src/components/manage/BlockChooser/BlockChooserSearch.test.jsx +0 -1
- package/src/components/manage/Blocks/Block/BlocksForm.jsx +165 -76
- package/src/components/manage/Blocks/Block/BlocksForm.test.jsx +8 -0
- package/src/components/manage/Blocks/Block/DefaultEdit.jsx +1 -1
- package/src/components/manage/Blocks/Block/Edit.jsx +54 -6
- package/src/components/manage/Blocks/Block/EditBlockWrapper.jsx +32 -4
- package/src/components/manage/Blocks/Block/Order/Item.jsx +128 -0
- package/src/components/manage/Blocks/Block/Order/Order.jsx +369 -0
- package/src/components/manage/Blocks/Block/Order/SortableItem.jsx +58 -0
- package/src/components/manage/Blocks/Block/Order/utilities.js +113 -0
- package/src/components/manage/Blocks/Block/Settings.jsx +1 -1
- package/src/components/manage/Blocks/Block/Settings.test.jsx +2 -1
- package/src/components/manage/Blocks/Block/StyleWrapper.jsx +1 -1
- package/src/components/manage/Blocks/Container/Data.jsx +11 -3
- package/src/components/manage/Blocks/Container/Edit.jsx +3 -1
- package/src/components/manage/Blocks/Container/NewBlockAddButton.jsx +20 -19
- package/src/components/manage/Blocks/Grid/Edit.jsx +6 -4
- package/src/components/manage/Blocks/Grid/View.jsx +3 -0
- package/src/components/manage/Blocks/Image/Edit.jsx +44 -373
- package/src/components/manage/Blocks/Image/ImageSidebar.jsx +15 -6
- package/src/components/manage/Blocks/Image/ImageSidebar.test.jsx +2 -0
- package/src/components/manage/Blocks/Image/View.jsx +14 -14
- package/src/components/manage/Blocks/Image/View.test.jsx +0 -1
- package/src/components/manage/Blocks/Image/{schema.js → schema.jsx} +2 -0
- package/src/components/manage/Blocks/LeadImage/Edit.jsx +74 -126
- package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.jsx +2 -3
- package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.test.jsx +2 -0
- package/src/components/manage/Blocks/Listing/ListingData.jsx +11 -3
- package/src/components/manage/Blocks/Listing/getAsyncData.js +31 -8
- package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +6 -6
- package/src/components/manage/Blocks/Maps/MapsSidebar.jsx +4 -2
- package/src/components/manage/Blocks/Maps/MapsSidebar.test.jsx +2 -0
- package/src/components/manage/Blocks/Search/SearchBlockEdit.jsx +12 -3
- package/src/components/manage/Blocks/Search/SearchBlockView.jsx +18 -2
- package/src/components/manage/Blocks/Search/SelectStyling.jsx +2 -2
- package/src/components/manage/Blocks/Search/components/CheckboxFacet.jsx +3 -2
- package/src/components/manage/Blocks/Search/components/Facets.jsx +15 -5
- package/src/components/manage/Blocks/Search/components/Facets.test.jsx +76 -0
- package/src/components/manage/Blocks/Search/components/SelectStyling.jsx +4 -4
- package/src/components/manage/Blocks/Search/components/SortOn.jsx +82 -55
- package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +3 -3
- package/src/components/manage/Blocks/Search/widgets/SelectMetadataField.jsx +108 -177
- package/src/components/manage/Blocks/Teaser/Data.jsx +106 -4
- package/src/components/manage/Blocks/Teaser/DefaultBody.jsx +15 -8
- package/src/components/manage/Blocks/Teaser/schema.js +24 -3
- package/src/components/manage/Blocks/ToC/Edit.jsx +37 -29
- package/src/components/manage/Blocks/ToC/View.jsx +18 -7
- package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +2 -20
- package/src/components/manage/Blocks/ToC/variations/HorizontalMenu.jsx +2 -19
- package/src/components/manage/Blocks/Video/Edit.jsx +105 -172
- package/src/components/manage/Blocks/Video/Edit.stories.jsx +57 -0
- package/src/components/manage/Blocks/Video/VideoSidebar.jsx +4 -2
- package/src/components/manage/Blocks/Video/VideoSidebar.test.jsx +2 -0
- package/src/components/manage/ConditionalLink/ConditionalLink.jsx +1 -1
- package/src/components/manage/Contents/Contents.jsx +32 -20
- package/src/components/manage/Contents/Contents.test.jsx +7 -7
- package/src/components/manage/Contents/ContentsBreadcrumbs.stories.jsx +46 -0
- package/src/components/manage/Contents/ContentsIndexHeader.test.jsx +1 -1
- package/src/components/manage/Contents/ContentsPropertiesModal.jsx +86 -53
- package/src/components/manage/Contents/ContentsPropertiesModal.test.jsx +5 -5
- package/src/components/manage/Contents/ContentsRenameModal.jsx +1 -1
- package/src/components/manage/Contents/ContentsRenameModal.test.jsx +1 -1
- package/src/components/manage/Contents/ContentsTagsModal.jsx +1 -1
- package/src/components/manage/Contents/ContentsTagsModal.test.jsx +1 -1
- package/src/components/manage/Contents/ContentsUploadModal.jsx +247 -267
- package/src/components/manage/Contents/ContentsUploadModal.stories.jsx +56 -0
- package/src/components/manage/Contents/ContentsUploadModal.test.jsx +85 -0
- package/src/components/manage/Contents/ContentsWorkflowModal.jsx +1 -1
- package/src/components/manage/Contents/ContentsWorkflowModal.test.jsx +1 -1
- package/src/components/manage/Contents/__mocks__/index.tsx +5 -0
- package/src/components/manage/Contents/index.tsx +64 -0
- package/src/components/manage/Controlpanels/AddonsControlpanel.jsx +323 -441
- package/src/components/manage/Controlpanels/AddonsControlpanel.test.jsx +6 -7
- package/src/components/manage/Controlpanels/Aliases.jsx +556 -597
- package/src/components/manage/Controlpanels/Aliases.stories.jsx +74 -0
- package/src/components/manage/Controlpanels/Aliases.test.jsx +14 -7
- package/src/components/manage/Controlpanels/ContentType.jsx +8 -7
- package/src/components/manage/Controlpanels/ContentType.test.jsx +8 -8
- package/src/components/manage/Controlpanels/ContentTypeLayout.jsx +95 -93
- package/src/components/manage/Controlpanels/ContentTypeLayout.test.jsx +7 -7
- package/src/components/manage/Controlpanels/ContentTypeSchema.jsx +9 -7
- package/src/components/manage/Controlpanels/ContentTypes.jsx +9 -14
- package/src/components/manage/Controlpanels/ContentTypes.test.jsx +7 -7
- package/src/components/manage/Controlpanels/Controlpanel.jsx +49 -9
- package/src/components/manage/Controlpanels/Controlpanel.test.jsx +60 -30
- package/src/components/manage/Controlpanels/Controlpanels.jsx +18 -55
- package/src/components/manage/Controlpanels/Controlpanels.test.jsx +46 -42
- package/src/components/manage/Controlpanels/DatabaseInformation.jsx +163 -229
- package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.jsx +79 -21
- package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.test.jsx +19 -7
- package/src/components/manage/Controlpanels/Groups/RenderGroups.jsx +68 -105
- package/src/components/manage/Controlpanels/Groups/RenderGroups.test.jsx +21 -0
- package/src/components/manage/Controlpanels/ModerateComments.jsx +8 -12
- package/src/components/manage/Controlpanels/ModerateComments.test.jsx +7 -10
- package/src/components/manage/Controlpanels/Relations/Relations.jsx +13 -7
- package/src/components/manage/Controlpanels/Relations/RelationsListing.jsx +3 -3
- package/src/components/manage/Controlpanels/Relations/RelationsMatrix.jsx +3 -3
- package/src/components/manage/Controlpanels/Rules/AddRule.jsx +8 -8
- package/src/components/manage/Controlpanels/Rules/AddRule.test.jsx +7 -7
- package/src/components/manage/Controlpanels/Rules/ConfigureRule.jsx +6 -6
- package/src/components/manage/Controlpanels/Rules/ConfigureRule.test.jsx +6 -7
- package/src/components/manage/Controlpanels/Rules/EditRule.jsx +8 -8
- package/src/components/manage/Controlpanels/Rules/EditRule.test.jsx +8 -7
- package/src/components/manage/Controlpanels/Rules/Rules.jsx +6 -6
- package/src/components/manage/Controlpanels/Rules/Rules.test.jsx +6 -7
- package/src/components/manage/Controlpanels/Rules/components/VariableModal.jsx +1 -1
- package/src/components/manage/Controlpanels/Rules/components/{VariableModal.test.jsx → VariableModal.test.jsx.removed} +6 -7
- package/src/components/manage/Controlpanels/UndoControlpanel.jsx +11 -10
- package/src/components/manage/Controlpanels/UndoControlpanel.test.jsx +7 -8
- package/src/components/manage/Controlpanels/UpgradeControlPanel.jsx +9 -7
- package/src/components/manage/Controlpanels/Users/RenderUsers.jsx +32 -22
- package/src/components/manage/Controlpanels/Users/RenderUsers.test.jsx +27 -1
- package/src/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.jsx +14 -8
- package/src/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.test.jsx +7 -7
- package/src/components/manage/Controlpanels/Users/UserGroupMembershipListing.jsx +57 -19
- package/src/components/manage/Controlpanels/Users/UserGroupMembershipMatrix.jsx +27 -17
- package/src/components/manage/Controlpanels/Users/UsersControlpanel.jsx +91 -17
- package/src/components/manage/Controlpanels/Users/UsersControlpanel.test.jsx +15 -7
- package/src/components/manage/Controlpanels/index.tsx +181 -0
- package/src/components/manage/Delete/Delete.jsx +6 -6
- package/src/components/manage/Delete/Delete.test.jsx +10 -10
- package/src/components/manage/Diff/Diff.jsx +7 -7
- package/src/components/manage/Diff/Diff.test.jsx +2 -3
- package/src/components/manage/Diff/DiffField.jsx +167 -39
- package/src/components/manage/Display/Display.jsx +93 -148
- package/src/components/manage/Display/Display.stories.jsx +46 -0
- package/src/components/manage/Display/Display.test.jsx +1 -0
- package/src/components/manage/Edit/Edit.jsx +49 -17
- package/src/components/manage/Edit/Edit.test.jsx +14 -11
- package/src/components/manage/Form/BlockDataForm.jsx +1 -1
- package/src/components/manage/Form/BlockDataForm.test.jsx +2 -1
- package/src/components/manage/Form/BlocksToolbar.jsx +8 -7
- package/src/components/manage/Form/Form.jsx +427 -175
- package/src/components/manage/Form/Form.test.jsx +8 -1
- package/src/components/manage/Form/InlineForm.jsx +10 -7
- package/src/components/manage/Form/InlineForm.test.jsx +2 -0
- package/src/components/manage/Form/ModalForm.jsx +6 -3
- package/src/components/manage/Form/ModalForm.test.jsx +1 -2
- package/src/components/manage/Form/__mocks__/index.tsx +74 -0
- package/src/components/manage/Form/index.tsx +50 -0
- package/src/components/manage/History/History.jsx +7 -7
- package/src/components/manage/History/History.test.jsx +14 -13
- package/src/components/manage/LinksToItem/LinksToItem.jsx +80 -51
- package/src/components/manage/LinksToItem/LinksToItem.test.jsx +7 -7
- package/src/components/manage/Multilingual/CreateTranslation.jsx +3 -1
- package/src/components/manage/Multilingual/ManageTranslations.jsx +13 -7
- package/src/components/manage/Multilingual/ManageTranslations.test.jsx +6 -7
- package/src/components/manage/Multilingual/TranslationObject.jsx +5 -3
- package/src/components/manage/Pluggable/Pluggable.test.js +4 -4
- package/src/components/manage/Preferences/ChangePassword.jsx +93 -170
- package/src/components/manage/Preferences/ChangePassword.stories.jsx +41 -0
- package/src/components/manage/Preferences/ChangePassword.test.jsx +14 -7
- package/src/components/manage/Preferences/PersonalInformation.jsx +52 -116
- package/src/components/manage/Preferences/PersonalInformation.test.jsx +15 -3
- package/src/components/manage/Preferences/PersonalPreferences.jsx +52 -103
- package/src/components/manage/Preferences/PersonalPreferences.stories.jsx +48 -0
- package/src/components/manage/Preferences/PersonalPreferences.test.jsx +11 -8
- package/src/components/manage/Rules/Rules.jsx +6 -6
- package/src/components/manage/Rules/Rules.test.jsx +7 -7
- package/src/components/manage/Rules/index.tsx +5 -0
- package/src/components/manage/Sharing/Sharing.jsx +6 -6
- package/src/components/manage/Sharing/Sharing.test.jsx +7 -7
- package/src/components/manage/Sidebar/ObjectBrowser.jsx +1 -1
- package/src/components/manage/Sidebar/ObjectBrowserBody.jsx +198 -84
- package/src/components/manage/Sidebar/ObjectBrowserNav.jsx +128 -71
- package/src/components/manage/Sidebar/Sidebar.jsx +30 -1
- package/src/components/manage/Sidebar/SidebarPopup.jsx +43 -22
- package/src/components/manage/Sidebar/SidebarPortal.jsx +7 -6
- package/src/components/manage/Toast/Toast.jsx +2 -2
- package/src/components/manage/Toolbar/More.jsx +308 -399
- package/src/components/manage/Toolbar/PersonalTools.jsx +8 -8
- package/src/components/manage/Toolbar/PersonalTools.test.jsx +71 -0
- package/src/components/manage/Toolbar/Toolbar.jsx +36 -3
- package/src/components/manage/UniversalLink/{UniversalLink.stories.mdx → UniversalLink.stories.js} +33 -25
- package/src/components/manage/Widgets/ArrayWidget.jsx +28 -25
- package/src/components/manage/Widgets/ButtonsWidget.jsx +1 -1
- package/src/components/manage/Widgets/CheckboxWidget.jsx +1 -1
- package/src/components/manage/Widgets/ColorPickerWidget.tsx +7 -7
- package/src/components/manage/Widgets/DatetimeWidget.jsx +123 -176
- package/src/components/manage/Widgets/EmailWidget.jsx +1 -1
- package/src/components/manage/Widgets/FileWidget.jsx +11 -5
- package/src/components/manage/Widgets/FormFieldWrapper.jsx +24 -4
- package/src/components/manage/Widgets/IdWidget.jsx +139 -204
- package/src/components/manage/Widgets/ImageSizeWidget.jsx +1 -1
- package/src/components/manage/Widgets/ImageWidget.jsx +335 -0
- package/src/components/manage/Widgets/ImageWidget.stories.jsx +46 -0
- package/src/components/manage/Widgets/InternalUrlWidget.jsx +13 -17
- package/src/components/manage/Widgets/NumberWidget.jsx +1 -1
- package/src/components/manage/Widgets/ObjectBrowserWidget.test.jsx +4 -4
- package/src/components/manage/Widgets/ObjectListWidget.jsx +2 -1
- package/src/components/manage/Widgets/ObjectListWidget.test.js +2 -1
- package/src/components/manage/Widgets/ObjectWidget.jsx +1 -2
- package/src/components/manage/Widgets/ObjectWidget.test.jsx +2 -1
- package/src/components/manage/Widgets/PasswordWidget.jsx +1 -1
- package/src/components/manage/Widgets/QuerySortOnWidget.jsx +1 -1
- package/src/components/manage/Widgets/RecurrenceWidget/EndField.jsx +7 -1
- package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +84 -34
- package/src/components/manage/Widgets/RecurrenceWidget/SelectInput.jsx +12 -3
- package/src/components/manage/Widgets/ReferenceWidget.jsx +134 -210
- package/src/components/manage/Widgets/RegistryImageWidget.jsx +2 -1
- package/src/components/manage/Widgets/SchemaWidget.jsx +2 -5
- package/src/components/manage/Widgets/SchemaWidget.test.jsx +4 -4
- package/src/components/manage/Widgets/SchemaWidgetFieldset.test.jsx +5 -5
- package/src/components/manage/Widgets/SelectAutoComplete.jsx +7 -7
- package/src/components/manage/Widgets/SelectStyling.jsx +4 -4
- package/src/components/manage/Widgets/SelectUtils.js +2 -2
- package/src/components/manage/Widgets/SelectWidget.jsx +2 -1
- package/src/components/manage/Widgets/TextWidget.jsx +94 -125
- package/src/components/manage/Widgets/TextWidget.stories.jsx +14 -3
- package/src/components/manage/Widgets/TextareaWidget.jsx +1 -1
- package/src/components/manage/Widgets/TokenWidget.jsx +2 -1
- package/src/components/manage/Widgets/UrlWidget.jsx +3 -3
- package/src/components/manage/Widgets/UrlWidget.test.jsx +4 -4
- package/src/components/manage/Widgets/VocabularyTermsWidget.jsx +5 -8
- package/src/components/manage/Widgets/VocabularyTermsWidget.test.jsx +6 -4
- package/src/components/manage/Widgets/WysiwygWidget.jsx +2 -350
- package/src/components/manage/Widgets/__mocks__/index.tsx +43 -0
- package/src/components/manage/Widgets/index.tsx +232 -0
- package/src/components/manage/Workflow/Workflow.jsx +4 -3
- package/src/components/manage/Workflow/Workflow.test.jsx +2 -3
- package/src/components/theme/App/App.jsx +8 -0
- package/src/components/theme/App/App.test.jsx +4 -3
- package/src/components/theme/AppExtras/AppExtras.jsx +2 -0
- package/src/components/theme/AppExtras/AppExtras.test.jsx +20 -0
- package/src/components/theme/Avatar/Avatar.stories.js +24 -0
- package/src/components/theme/Comments/CommentEditModal.jsx +1 -1
- package/src/components/theme/Comments/CommentEditModal.test.jsx +1 -3
- package/src/components/theme/Comments/Comments.jsx +12 -11
- package/src/components/theme/Comments/Comments.test.jsx +9 -0
- package/src/components/theme/Comments/__mocks__/index.tsx +1 -0
- package/src/components/theme/Comments/index.tsx +5 -0
- package/src/components/theme/Component/Component.test.jsx +0 -1
- package/src/components/theme/ContactForm/ContactForm.jsx +8 -7
- package/src/components/theme/ContactForm/ContactForm.test.jsx +14 -10
- package/src/components/theme/Footer/Footer.jsx +1 -0
- package/src/components/theme/Footer/Footer.test.jsx +0 -1
- package/src/components/theme/FormattedDate/FormattedDate.jsx +13 -1
- package/src/components/theme/Icon/Icon.jsx +4 -4
- package/src/components/theme/Icon/Icon.stories.jsx +1 -0
- package/src/components/theme/Login/Login.jsx +25 -5
- package/src/components/theme/Logo/Logo.Multilingual.test.jsx +3 -1
- package/src/components/theme/Logo/Logo.jsx +19 -13
- package/src/components/theme/Logo/Logo.test.jsx +4 -1
- package/src/components/theme/Logout/Logout.jsx +2 -2
- package/src/components/theme/Logout/Logout.test.jsx +8 -5
- package/src/components/theme/MultilingualRedirector/MultilingualRedirector.jsx +3 -1
- package/src/components/theme/Navigation/Navigation.jsx +1 -1
- package/src/components/theme/PasswordReset/PasswordReset.jsx +1 -1
- package/src/components/theme/PasswordReset/PasswordReset.test.jsx +7 -0
- package/src/components/theme/PasswordReset/RequestPasswordReset.jsx +1 -1
- package/src/components/theme/PasswordReset/RequestPasswordReset.test.jsx +9 -0
- package/src/components/theme/Register/Register.jsx +72 -143
- package/src/components/theme/Register/Register.stories.jsx +49 -0
- package/src/components/theme/Register/Register.test.jsx +9 -0
- package/src/components/theme/RouteAnnouncer/RouteAnnouncer.jsx +64 -0
- package/src/components/theme/Search/Search.jsx +19 -11
- package/src/components/theme/Search/Search.test.jsx +13 -10
- package/src/components/theme/SlotRenderer/SlotRenderer.test.jsx +55 -0
- package/src/components/theme/SlotRenderer/SlotRenderer.tsx +60 -0
- package/src/components/theme/Tags/Tags.jsx +19 -10
- package/src/components/theme/Tags/Tags.test.jsx +9 -11
- package/src/components/theme/Title/Title.stories.js +22 -0
- package/src/components/theme/View/AlbumView.jsx +122 -167
- package/src/components/theme/View/DefaultView.jsx +2 -3
- package/src/components/theme/View/LinkView.jsx +4 -0
- package/src/components/theme/View/LinkView.test.jsx +2 -0
- package/src/components/theme/View/View.jsx +14 -22
- package/src/components/theme/View/View.test.jsx +28 -20
- package/src/components/theme/Widgets/ArrayWidget.jsx +2 -2
- package/src/components/theme/Widgets/BooleanWidget.jsx +2 -2
- package/src/config/Blocks.jsx +63 -67
- package/src/config/ControlPanels.js +50 -37
- package/src/config/Loadables.jsx +18 -22
- package/src/config/NonContentRoutes.jsx +2 -1
- package/src/config/NonContentRoutesPublic.jsx +15 -0
- package/src/config/Views.jsx +2 -2
- package/src/config/Widgets.jsx +36 -48
- package/src/config/config.test.js +233 -0
- package/src/config/index.js +27 -16
- package/src/config/server.js +0 -1
- package/src/config/slots.js +12 -0
- package/src/config/validation.ts +155 -0
- package/src/constants/ActionTypes.js +7 -0
- package/src/constants/{Languages.js → Languages.cjs} +3 -0
- package/src/express-middleware/files.js +1 -0
- package/src/express-middleware/images.js +1 -0
- package/src/express-middleware/static.js +37 -19
- package/src/helpers/Api/Api.js +24 -1
- package/src/helpers/Api/Api.plone.rest.test.js +1 -0
- package/src/helpers/Api/Api.test.js +1 -0
- package/src/helpers/AsyncConnect/AsyncConnect.test.js +0 -2
- package/src/helpers/AsyncConnect/index.js +10 -0
- package/src/helpers/AuthToken/AuthToken.js +1 -1
- package/src/helpers/Blocks/Blocks.js +309 -67
- package/src/helpers/Blocks/Blocks.test.js +410 -27
- package/src/helpers/Blocks/cloneBlocks.test.js +54 -0
- package/src/helpers/Blocks/cloneBlocks.ts +43 -0
- package/src/helpers/Blocks/defaultBlocks.test.js +39 -0
- package/src/helpers/Blocks/defaultBlocks.ts +39 -0
- package/src/helpers/Extensions/{withBlockExtensions.js → withBlockExtensions.jsx} +1 -1
- package/src/helpers/FormValidation/FormValidation.jsx +357 -0
- package/src/helpers/FormValidation/FormValidation.test.js +836 -8
- package/src/helpers/FormValidation/validators.ts +203 -0
- package/src/helpers/Html/Html.jsx +9 -10
- package/src/helpers/MessageLabels/MessageLabels.js +36 -0
- package/src/helpers/Slots/index.tsx +19 -0
- package/src/helpers/Url/Url.js +4 -1
- package/src/helpers/Url/Url.test.js +36 -9
- package/src/helpers/Url/urlRegex.js +1 -1
- package/src/helpers/User/User.js +29 -0
- package/src/helpers/Utils/Date.js +6 -6
- package/src/helpers/Utils/UseDetectClickOutside.stories.jsx +8 -8
- package/src/helpers/Utils/{Utils.js → Utils.jsx} +2 -2
- package/src/helpers/index.js +19 -1
- package/src/hooks/client/useClient.js +1 -1
- package/src/hooks/index.js +1 -0
- package/src/hooks/user/useUser.js +23 -0
- package/src/icons/external-link.svg +4 -0
- package/src/middleware/api.js +21 -9
- package/src/middleware/index.js +1 -0
- package/src/middleware/userSessionReset.js +46 -0
- package/src/reducers/content/content.js +19 -0
- package/src/reducers/content/content.test.js +13 -0
- package/src/reducers/form/form.js +32 -3
- package/src/reducers/form/form.test.js +27 -1
- package/src/reducers/navigation/navigation.js +1 -2
- package/src/reducers/navigation/navigation.test.js +6 -0
- package/src/reducers/sidebar/sidebar.js +26 -1
- package/src/reducers/sidebar/sidebar.test.js +50 -1
- package/src/routes.js +22 -20
- package/src/server.jsx +38 -38
- package/src/start-client.jsx +3 -3
- package/src/start-server.js +2 -5
- package/src/store.js +3 -1
- package/src/storybook.jsx +12 -2
- package/{test-setup-config.js → test-setup-config.jsx} +13 -30
- package/theme/themes/default/elements/step.overrides +2 -2
- package/theme/themes/default/modules/embed.variables +1 -1
- package/theme/themes/pastanaga/collections/form.overrides +41 -2
- package/theme/themes/pastanaga/collections/table.overrides +6 -1
- package/theme/themes/pastanaga/elements/button.overrides +2 -1
- package/theme/themes/pastanaga/elements/input.overrides +2 -0
- package/theme/themes/pastanaga/elements/step.overrides +1 -1
- package/theme/themes/pastanaga/extras/blocks.less +79 -32
- package/theme/themes/pastanaga/extras/contents.less +53 -7
- package/theme/themes/pastanaga/extras/grid.less +3 -3
- package/theme/themes/pastanaga/extras/main.less +3 -2
- package/theme/themes/pastanaga/extras/objectbrowser-widget.less +83 -0
- package/theme/themes/pastanaga/extras/sidebar.less +149 -0
- package/theme/themes/pastanaga/extras/teaser.less +53 -0
- package/theme/themes/pastanaga/extras/toolbar.less +27 -8
- package/theme/themes/pastanaga/extras/widgets.less +139 -0
- package/theme/themes/pastanaga/modules/accordion.variables +3 -3
- package/tsconfig.declarations.json +4 -2
- package/types/actions/aliases/aliases.d.ts +8 -1
- package/types/actions/content/content.d.ts +7 -0
- package/types/actions/form/form.d.ts +14 -0
- package/types/actions/form/form.test.d.ts +1 -0
- package/types/actions/index.d.ts +3 -2
- package/types/actions/sidebar/sidebar.d.ts +21 -0
- package/types/components/index.d.ts +11 -70
- package/types/components/manage/Actions/Actions.d.ts +1 -1
- package/types/components/manage/Actions/Actions.stories.d.ts +8 -0
- package/types/components/manage/Add/Add.d.ts +1 -4
- package/types/components/manage/Aliases/Aliases.d.ts +1 -4
- package/types/components/manage/AnchorPlugin/components/Link/index.d.ts +1 -1
- package/types/components/manage/AnchorPlugin/useLinkEditor.d.ts +7 -0
- package/types/components/manage/BlockChooser/BlockChooserButton.d.ts +2 -2
- package/types/components/manage/BlockChooser/BlockChooserSearch.d.ts +1 -1
- package/types/components/manage/Blocks/Block/BlocksForm.d.ts +1 -1
- package/types/components/manage/Blocks/Block/DefaultEdit.d.ts +1 -1
- package/types/components/manage/Blocks/Block/DefaultView.d.ts +1 -1
- package/types/components/manage/Blocks/Block/Edit.d.ts +1 -3
- package/types/components/manage/Blocks/Block/Order/Item.d.ts +2 -0
- package/types/components/manage/Blocks/Block/Order/Order.d.ts +14 -0
- package/types/components/manage/Blocks/Block/Order/SortableItem.d.ts +9 -0
- package/types/components/manage/Blocks/Block/Order/utilities.d.ts +9 -0
- package/types/components/manage/Blocks/Block/Style.d.ts +1 -1
- package/types/components/manage/Blocks/Container/Data.d.ts +1 -1
- package/types/components/manage/Blocks/Container/Edit.d.ts +1 -1
- package/types/components/manage/Blocks/Container/EditBlockWrapper.d.ts +1 -1
- package/types/components/manage/Blocks/Container/NewBlockAddButton.d.ts +1 -1
- package/types/components/manage/Blocks/Container/SimpleContainerToolbar.d.ts +1 -1
- package/types/components/manage/Blocks/Description/Edit.d.ts +1 -1
- package/types/components/manage/Blocks/Description/View.d.ts +1 -1
- package/types/components/manage/Blocks/Grid/Edit.d.ts +1 -1
- package/types/components/manage/Blocks/Grid/View.d.ts +1 -1
- package/types/components/manage/Blocks/HTML/View.d.ts +1 -1
- package/types/components/manage/Blocks/HeroImageLeft/Data.d.ts +1 -1
- package/types/components/manage/Blocks/HeroImageLeft/Edit.d.ts +1 -4
- package/types/components/manage/Blocks/HeroImageLeft/View.d.ts +1 -1
- package/types/components/manage/Blocks/Image/Edit.d.ts +1 -4
- package/types/components/manage/Blocks/Image/ImageSidebar.d.ts +1 -1
- package/types/components/manage/Blocks/Image/View.d.ts +2 -2
- package/types/components/manage/Blocks/Image/schema.d.ts +3 -1
- package/types/components/manage/Blocks/LeadImage/Edit.d.ts +14 -5
- package/types/components/manage/Blocks/LeadImage/View.d.ts +1 -1
- package/types/components/manage/Blocks/Listing/DefaultNoResultsComponent.d.ts +1 -1
- package/types/components/manage/Blocks/Listing/DefaultTemplate.d.ts +1 -1
- package/types/components/manage/Blocks/Listing/Edit.d.ts +1 -1
- package/types/components/manage/Blocks/Listing/GalleryNoResultsComponent.d.ts +1 -1
- package/types/components/manage/Blocks/Listing/ImageGallery.d.ts +1 -1
- package/types/components/manage/Blocks/Listing/ListingData.d.ts +1 -1
- package/types/components/manage/Blocks/Listing/SummaryTemplate.d.ts +1 -1
- package/types/components/manage/Blocks/Listing/View.d.ts +1 -1
- package/types/components/manage/Blocks/Listing/getAsyncData.d.ts +1 -7
- package/types/components/manage/Blocks/Maps/Edit.d.ts +1 -1
- package/types/components/manage/Blocks/Maps/MapsSidebar.d.ts +1 -1
- package/types/components/manage/Blocks/Search/SearchBlockEdit.d.ts +1 -1
- package/types/components/manage/Blocks/Search/SearchBlockView.d.ts +2 -2
- package/types/components/manage/Blocks/Search/components/CheckboxFacet.d.ts +1 -1
- package/types/components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry.d.ts +1 -1
- package/types/components/manage/Blocks/Search/components/Facets.d.ts +2 -1
- package/types/components/manage/Blocks/Search/components/Facets.test.d.ts +1 -0
- package/types/components/manage/Blocks/Search/components/FilterList.d.ts +1 -1
- package/types/components/manage/Blocks/Search/components/SearchDetails.d.ts +1 -1
- package/types/components/manage/Blocks/Search/components/SearchInput.d.ts +1 -1
- package/types/components/manage/Blocks/Search/components/SelectFacetFilterListEntry.d.ts +1 -1
- package/types/components/manage/Blocks/Search/components/ToggleFacet.d.ts +1 -1
- package/types/components/manage/Blocks/Search/components/ToggleFacetFilterListEntry.d.ts +1 -1
- package/types/components/manage/Blocks/Search/hocs/withQueryString.d.ts +1 -1
- package/types/components/manage/Blocks/Search/hocs/withSearch.d.ts +1 -1
- package/types/components/manage/Blocks/Search/layout/LeftColumnFacets.d.ts +1 -1
- package/types/components/manage/Blocks/Search/layout/RightColumnFacets.d.ts +1 -1
- package/types/components/manage/Blocks/Search/layout/TopSideFacets.d.ts +1 -1
- package/types/components/manage/Blocks/Search/utils.d.ts +2 -2
- package/types/components/manage/Blocks/Search/widgets/SelectMetadataField.d.ts +1 -1
- package/types/components/manage/Blocks/Table/Cell.d.ts +1 -1
- package/types/components/manage/Blocks/Table/View.d.ts +1 -1
- package/types/components/manage/Blocks/Teaser/Body.d.ts +1 -1
- package/types/components/manage/Blocks/Teaser/Data.d.ts +1 -1
- package/types/components/manage/Blocks/Teaser/DefaultBody.d.ts +1 -1
- package/types/components/manage/Blocks/Teaser/Edit.d.ts +1 -1
- package/types/components/manage/Blocks/Teaser/View.d.ts +1 -1
- package/types/components/manage/Blocks/Teaser/schema.d.ts +9 -2
- package/types/components/manage/Blocks/Text/Edit.d.ts +1 -1
- package/types/components/manage/Blocks/Title/Edit.d.ts +1 -1
- package/types/components/manage/Blocks/Title/View.d.ts +1 -1
- package/types/components/manage/Blocks/ToC/Edit.d.ts +1 -6
- package/types/components/manage/Blocks/ToC/View.d.ts +1 -4
- package/types/components/manage/Blocks/ToC/variations/DefaultTocRenderer.d.ts +10 -5
- package/types/components/manage/Blocks/ToC/variations/HorizontalMenu.d.ts +10 -5
- package/types/components/manage/Blocks/ToC/variations/index.d.ts +16 -4
- package/types/components/manage/Blocks/Video/Body.d.ts +1 -1
- package/types/components/manage/Blocks/Video/Edit.d.ts +1 -1
- package/types/components/manage/Blocks/Video/Edit.stories.d.ts +8 -0
- package/types/components/manage/Blocks/Video/VideoSidebar.d.ts +1 -1
- package/types/components/manage/Blocks/Video/View.d.ts +1 -1
- package/types/components/manage/ConditionalLink/ConditionalLink.d.ts +1 -1
- package/types/components/manage/Contents/Contents.d.ts +2 -7
- package/types/components/manage/Contents/ContentsBreadcrumbs.d.ts +1 -1
- package/types/components/manage/Contents/ContentsBreadcrumbs.stories.d.ts +8 -0
- package/types/components/manage/Contents/ContentsBreadcrumbsHomeItem.d.ts +1 -1
- package/types/components/manage/Contents/ContentsBreadcrumbsRootItem.d.ts +1 -1
- package/types/components/manage/Contents/ContentsPropertiesModal.d.ts +1 -1
- package/types/components/manage/Contents/ContentsRenameModal.d.ts +1 -1
- package/types/components/manage/Contents/ContentsRenameModal.stories.d.ts +1 -1
- package/types/components/manage/Contents/ContentsTagsModal.d.ts +1 -1
- package/types/components/manage/Contents/ContentsTagsModal.stories.d.ts +1 -1
- package/types/components/manage/Contents/ContentsUploadModal.d.ts +14 -5
- package/types/components/manage/Contents/ContentsUploadModal.stories.d.ts +8 -0
- package/types/components/manage/Contents/ContentsWorkflowModal.d.ts +1 -1
- package/types/components/manage/Contents/__mocks__/index.d.ts +2 -0
- package/types/components/manage/Contents/circle.d.ts +1 -1
- package/types/components/manage/Contents/index.d.ts +9 -0
- package/types/components/manage/Controlpanels/AddonsControlpanel.d.ts +2 -5
- package/types/components/manage/Controlpanels/Aliases.d.ts +2 -5
- package/types/components/manage/Controlpanels/Aliases.stories.d.ts +8 -0
- package/types/components/manage/Controlpanels/ContentType.d.ts +1 -4
- package/types/components/manage/Controlpanels/ContentTypeLayout.d.ts +1 -4
- package/types/components/manage/Controlpanels/ContentTypeSchema.d.ts +1 -4
- package/types/components/manage/Controlpanels/ContentTypes.d.ts +1 -4
- package/types/components/manage/Controlpanels/Controlpanels.d.ts +6 -2
- package/types/components/manage/Controlpanels/DatabaseInformation.d.ts +2 -5
- package/types/components/manage/Controlpanels/Groups/GroupsControlpanel.d.ts +1 -4
- package/types/components/manage/Controlpanels/Groups/RenderGroups.d.ts +10 -5
- package/types/components/manage/Controlpanels/ModerateComments.d.ts +1 -4
- package/types/components/manage/Controlpanels/Relations/BrokenRelations.d.ts +1 -1
- package/types/components/manage/Controlpanels/Relations/Relations.d.ts +1 -1
- package/types/components/manage/Controlpanels/Relations/RelationsListing.d.ts +3 -3
- package/types/components/manage/Controlpanels/Relations/RelationsMatrix.d.ts +4 -6
- package/types/components/manage/Controlpanels/Rules/AddRule.d.ts +1 -4
- package/types/components/manage/Controlpanels/Rules/ConfigureRule.d.ts +1 -4
- package/types/components/manage/Controlpanels/Rules/EditRule.d.ts +1 -4
- package/types/components/manage/Controlpanels/Rules/Rules.d.ts +1 -4
- package/types/components/manage/Controlpanels/Rules/components/VariableModal.d.ts +1 -4
- package/types/components/manage/Controlpanels/UndoControlpanel.d.ts +1 -4
- package/types/components/manage/Controlpanels/UpgradeControlPanel.d.ts +1 -4
- package/types/components/manage/Controlpanels/Users/RenderUsers.d.ts +1 -4
- package/types/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.d.ts +1 -1
- package/types/components/manage/Controlpanels/Users/UserGroupMembershipListing.d.ts +1 -1
- package/types/components/manage/Controlpanels/Users/UserGroupMembershipMatrix.d.ts +1 -1
- package/types/components/manage/Controlpanels/Users/UsersControlpanel.d.ts +1 -4
- package/types/components/manage/Controlpanels/VersionOverview.d.ts +1 -1
- package/types/components/manage/Controlpanels/index.d.ts +31 -0
- package/types/components/manage/Delete/Delete.d.ts +1 -1
- package/types/components/manage/Display/Display.d.ts +1 -4
- package/types/components/manage/Display/Display.stories.d.ts +8 -0
- package/types/components/manage/Edit/Edit.d.ts +2 -7
- package/types/components/manage/Form/BlockDataForm.d.ts +1 -1
- package/types/components/manage/Form/BlocksToolbar.d.ts +2 -4
- package/types/components/manage/Form/UndoToolbar.d.ts +1 -1
- package/types/components/manage/Form/__mocks__/index.d.ts +8 -0
- package/types/components/manage/Form/index.d.ts +13 -0
- package/types/components/manage/History/History.d.ts +1 -4
- package/types/components/manage/LinkDetectionPlugin/link-detection-plugin.d.ts +1 -1
- package/types/components/manage/LinkMore/LinkMore.d.ts +1 -1
- package/types/components/manage/LinksToItem/LinksToItem.d.ts +1 -1
- package/types/components/manage/Messages/Messages.d.ts +1 -1
- package/types/components/manage/Multilingual/CreateTranslation.d.ts +1 -1
- package/types/components/manage/Multilingual/ManageTranslations.d.ts +4 -6
- package/types/components/manage/Multilingual/TranslationObject.d.ts +1 -1
- package/types/components/manage/Pluggable/Pluggable.stories.d.ts +4 -4
- package/types/components/manage/Pluggable/index.d.ts +21 -3
- package/types/components/manage/Preferences/ChangePassword.d.ts +2 -2
- package/types/components/manage/Preferences/ChangePassword.stories.d.ts +8 -0
- package/types/components/manage/Preferences/PersonalInformation.d.ts +7 -2
- package/types/components/manage/Preferences/PersonalPreferences.d.ts +5 -4
- package/types/components/manage/Preferences/PersonalPreferences.stories.d.ts +8 -0
- package/types/components/manage/Rules/Rules.d.ts +1 -4
- package/types/components/manage/Rules/index.d.ts +1 -0
- package/types/components/manage/Sidebar/AlignBlock.d.ts +1 -1
- package/types/components/manage/Sidebar/ObjectBrowser.d.ts +4 -6
- package/types/components/manage/Sidebar/ObjectBrowserBody.d.ts +1 -4
- package/types/components/manage/Sidebar/ObjectBrowserNav.d.ts +3 -2
- package/types/components/manage/Sidebar/SidebarPopup.d.ts +1 -1
- package/types/components/manage/Sidebar/SidebarPortal.d.ts +2 -1
- package/types/components/manage/TemplateChooser/TemplateChooser.d.ts +1 -1
- package/types/components/manage/TextLineEdit/TextLineEdit.d.ts +1 -1
- package/types/components/manage/TextLineEdit/TextLineEdit.stories.d.ts +1 -1
- package/types/components/manage/Toast/Toast.d.ts +1 -1
- package/types/components/manage/Toolbar/More.d.ts +8 -5
- package/types/components/manage/Toolbar/PersonalTools.d.ts +1 -1
- package/types/components/manage/Toolbar/StandardWrapper.d.ts +1 -1
- package/types/components/manage/Toolbar/Stats.d.ts +1 -1
- package/types/components/manage/Toolbar/Toolbar.d.ts +1 -4
- package/types/components/manage/UniversalLink/UniversalLink.d.ts +1 -1
- package/types/components/manage/UniversalLink/UniversalLink.stories.d.ts +22 -0
- package/types/components/manage/Widgets/AlignWidget.d.ts +1 -1
- package/types/components/manage/Widgets/AlignWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/ArrayWidget.d.ts +1 -3
- package/types/components/manage/Widgets/ArrayWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/ButtonsWidget.d.ts +1 -1
- package/types/components/manage/Widgets/ButtonsWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/CheckboxWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/ColorPickerWidget.d.ts +6 -7
- package/types/components/manage/Widgets/DatetimeWidget.d.ts +0 -85
- package/types/components/manage/Widgets/DatetimeWidget.stories.d.ts +1 -2
- package/types/components/manage/Widgets/EmailWidget.d.ts +1 -1
- package/types/components/manage/Widgets/EmailWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/FileWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/FormFieldWrapper.stories.d.ts +1 -1
- package/types/components/manage/Widgets/IdWidget.d.ts +54 -5
- package/types/components/manage/Widgets/IdWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/ImageSizeWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/ImageWidget.d.ts +10 -0
- package/types/components/manage/Widgets/ImageWidget.stories.d.ts +11 -0
- package/types/components/manage/Widgets/InternalUrlWidget.d.ts +5 -7
- package/types/components/manage/Widgets/InternalUrlWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/NumberWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/ObjectBrowserWidget.d.ts +1 -1
- package/types/components/manage/Widgets/ObjectBrowserWidget.stories.d.ts +7 -7
- package/types/components/manage/Widgets/ObjectListWidget.d.ts +1 -1
- package/types/components/manage/Widgets/ObjectListWidget.stories.d.ts +2 -2
- package/types/components/manage/Widgets/ObjectWidget.d.ts +1 -1
- package/types/components/manage/Widgets/ObjectWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/PasswordWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/QueryWidget.d.ts +1 -3
- package/types/components/manage/Widgets/QueryWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/QuerystringWidget.d.ts +1 -1
- package/types/components/manage/Widgets/RecurrenceWidget/ByMonthDayField.d.ts +16 -2
- package/types/components/manage/Widgets/RecurrenceWidget/ByMonthField.d.ts +20 -2
- package/types/components/manage/Widgets/RecurrenceWidget/ByYearField.d.ts +22 -2
- package/types/components/manage/Widgets/RecurrenceWidget/EndField.d.ts +16 -2
- package/types/components/manage/Widgets/RecurrenceWidget/SelectInput.d.ts +2 -34
- package/types/components/manage/Widgets/ReferenceWidget.d.ts +27 -5
- package/types/components/manage/Widgets/SchemaWidget.d.ts +1 -4
- package/types/components/manage/Widgets/SelectAutoComplete.d.ts +1 -3
- package/types/components/manage/Widgets/SelectAutocompleteWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/SelectStyling.d.ts +1 -1
- package/types/components/manage/Widgets/SelectWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/TextWidget.d.ts +54 -5
- package/types/components/manage/Widgets/TextWidget.stories.d.ts +14 -2
- package/types/components/manage/Widgets/TextareaWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/TokenWidget.d.ts +1 -4
- package/types/components/manage/Widgets/TokenWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/UrlWidget.d.ts +5 -7
- package/types/components/manage/Widgets/UrlWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/VocabularyTermsWidget.d.ts +1 -1
- package/types/components/manage/Widgets/VocabularyTermsWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/WysiwygWidget.d.ts +1 -6
- package/types/components/manage/Widgets/WysiwygWidget.stories.d.ts +1 -1
- package/types/components/manage/Widgets/__mocks__/index.d.ts +33 -0
- package/types/components/manage/Widgets/index.d.ts +119 -0
- package/types/components/manage/Widgets/story.d.ts +1 -1
- package/types/components/theme/Anontools/Anontools.d.ts +1 -1
- package/types/components/theme/AppExtras/AppExtras.d.ts +1 -1
- package/types/components/theme/Avatar/Avatar.d.ts +1 -1
- package/types/components/theme/Avatar/Avatar.stories.d.ts +20 -0
- package/types/components/theme/Breadcrumbs/Breadcrumbs.d.ts +1 -1
- package/types/components/theme/Comments/Comment.stories.d.ts +1 -1
- package/types/components/theme/Comments/CommentEditModal.d.ts +1 -1
- package/types/components/theme/Comments/CommentEditModal.stories.d.ts +1 -1
- package/types/components/theme/Comments/__mocks__/index.d.ts +1 -0
- package/types/components/theme/Comments/index.d.ts +1 -0
- package/types/components/theme/Component/Component.d.ts +1 -1
- package/types/components/theme/ConnectionRefused/ConnectionRefused.d.ts +1 -1
- package/types/components/theme/ContactForm/ContactForm.d.ts +1 -1
- package/types/components/theme/ContactForm/ContactForm.stories.d.ts +1 -1
- package/types/components/theme/ContentMetadataTags/ContentMetadataTags.d.ts +1 -1
- package/types/components/theme/Error/ErrorBoundary.d.ts +1 -0
- package/types/components/theme/Error/ServerError.d.ts +1 -1
- package/types/components/theme/EventDetails/EventDetails.d.ts +1 -1
- package/types/components/theme/EventDetails/EventDetails.stories.d.ts +1 -1
- package/types/components/theme/Forbidden/Forbidden.d.ts +1 -1
- package/types/components/theme/FormattedDate/FormattedDate.d.ts +1 -1
- package/types/components/theme/FormattedDate/FormattedDate.stories.d.ts +1 -1
- package/types/components/theme/FormattedDate/FormattedRelativeDate.d.ts +1 -1
- package/types/components/theme/FormattedDate/FormattedRelativeDate.stories.d.ts +1 -1
- package/types/components/theme/Header/Header.d.ts +1 -1
- package/types/components/theme/Header/Header.stories.d.ts +1 -1
- package/types/components/theme/Icon/Icon.d.ts +8 -8
- package/types/components/theme/Image/Image.d.ts +1 -1
- package/types/components/theme/LanguageSelector/LanguageSelector.d.ts +1 -1
- package/types/components/theme/Login/Login.d.ts +1 -1
- package/types/components/theme/Login/Login.stories.d.ts +1 -1
- package/types/components/theme/Logo/Logo.stories.d.ts +1 -1
- package/types/components/theme/Logout/Logout.d.ts +1 -1
- package/types/components/theme/MultilingualRedirector/MultilingualRedirector.d.ts +1 -1
- package/types/components/theme/Navigation/ContextNavigation.d.ts +1 -1
- package/types/components/theme/Navigation/ContextNavigation.stories.d.ts +2 -2
- package/types/components/theme/Navigation/NavItem.d.ts +1 -1
- package/types/components/theme/Navigation/NavItems.d.ts +1 -1
- package/types/components/theme/Navigation/Navigation.d.ts +1 -1
- package/types/components/theme/Navigation/withContentNavigation.d.ts +1 -1
- package/types/components/theme/NotFound/NotFound.d.ts +1 -1
- package/types/components/theme/OutdatedBrowser/OutdatedBrowser.d.ts +1 -1
- package/types/components/theme/PasswordReset/RequestPasswordReset.d.ts +1 -1
- package/types/components/theme/Popup/Popup.d.ts +1 -1
- package/types/components/theme/PreviewImage/PreviewImage.d.ts +1 -1
- package/types/components/theme/Register/Register.d.ts +2 -2
- package/types/components/theme/Register/Register.stories.d.ts +9 -0
- package/types/components/theme/RouteAnnouncer/RouteAnnouncer.d.ts +2 -0
- package/types/components/theme/Search/Search.d.ts +2 -7
- package/types/components/theme/Search/SearchTags.d.ts +1 -1
- package/types/components/theme/SearchWidget/SearchWidget.d.ts +1 -1
- package/types/components/theme/SearchWidget/SearchWidget.stories.d.ts +1 -1
- package/types/components/theme/Sitemap/Sitemap.d.ts +2 -6
- package/types/components/theme/SkipLinks/SkipLinks.d.ts +1 -1
- package/types/components/theme/SlotRenderer/SlotRenderer.d.ts +7 -0
- package/types/components/theme/SlotRenderer/SlotRenderer.test.d.ts +1 -0
- package/types/components/theme/Tags/Tags.d.ts +15 -7
- package/types/components/theme/Title/Title.stories.d.ts +18 -0
- package/types/components/theme/TsTest/TsTest.d.ts +1 -2
- package/types/components/theme/Unauthorized/Unauthorized.d.ts +1 -1
- package/types/components/theme/View/AlbumView.d.ts +3 -17
- package/types/components/theme/View/DefaultView.d.ts +13 -5
- package/types/components/theme/View/EventDatesInfo.d.ts +1 -1
- package/types/components/theme/View/LinkView.d.ts +1 -1
- package/types/components/theme/View/RenderBlocks.d.ts +1 -1
- package/types/components/theme/View/View.d.ts +1 -4
- package/types/components/theme/Widgets/ArrayWidget.d.ts +1 -1
- package/types/components/theme/Widgets/BooleanWidget.d.ts +14 -2
- package/types/components/theme/Widgets/DateWidget.d.ts +1 -1
- package/types/components/theme/Widgets/DatetimeWidget.d.ts +1 -1
- package/types/components/theme/Widgets/DescriptionWidget.d.ts +1 -1
- package/types/components/theme/Widgets/EmailWidget.d.ts +1 -1
- package/types/components/theme/Widgets/FileWidget.d.ts +1 -1
- package/types/components/theme/Widgets/ImageWidget.d.ts +1 -1
- package/types/components/theme/Widgets/PasswordWidget.d.ts +1 -1
- package/types/components/theme/Widgets/RelationWidget.d.ts +1 -1
- package/types/components/theme/Widgets/RelationsWidget.d.ts +1 -1
- package/types/components/theme/Widgets/RichTextWidget.d.ts +1 -1
- package/types/components/theme/Widgets/SelectWidget.d.ts +1 -1
- package/types/components/theme/Widgets/TextWidget.d.ts +1 -1
- package/types/components/theme/Widgets/TitleWidget.d.ts +1 -1
- package/types/components/theme/Widgets/TokenWidget.d.ts +1 -1
- package/types/components/theme/Widgets/UrlWidget.d.ts +1 -1
- package/types/config/Blocks.d.ts +0 -51
- package/types/config/ControlPanels.d.ts +9 -1
- package/types/config/Loadables.d.ts +15 -30
- package/types/config/NonContentRoutesPublic.d.ts +1 -0
- package/types/config/RichTextEditor/ToHTML.d.ts +11 -11
- package/types/config/Views.d.ts +8 -9
- package/types/config/Widgets.d.ts +36 -44
- package/types/config/config.test.d.ts +1 -0
- package/types/config/server.d.ts +0 -3
- package/types/config/slots.d.ts +21 -0
- package/types/config/validation.d.ts +3 -0
- package/types/constants/ActionTypes.d.ts +7 -0
- package/types/constants/Languages.d.cts +15 -0
- package/types/constants/Languages.d.ts +1 -0
- package/types/helpers/AsyncConnect/AsyncConnect.d.ts +2 -2
- package/types/helpers/AsyncConnect/index.d.ts +11 -1
- package/types/helpers/Blocks/Blocks.d.ts +38 -4
- package/types/helpers/Blocks/cloneBlocks.d.ts +1 -0
- package/types/helpers/Blocks/cloneBlocks.test.d.ts +1 -0
- package/types/helpers/Blocks/defaultBlocks.d.ts +2 -0
- package/types/helpers/Blocks/defaultBlocks.test.d.ts +1 -0
- package/types/helpers/Extensions/withBlockExtensions.d.ts +2 -2
- package/types/helpers/Extensions/withBlockSchemaEnhancer.d.ts +3 -3
- package/types/helpers/FormValidation/FormValidation.d.ts +3 -0
- package/types/helpers/FormValidation/validators.d.ts +29 -0
- package/types/helpers/Helmet/Helmet.d.ts +7 -11
- package/types/helpers/LanguageMap/LanguageMap.d.ts +878 -1
- package/types/helpers/MessageLabels/MessageLabels.d.ts +588 -1
- package/types/helpers/Slots/index.d.ts +9 -0
- package/types/helpers/User/User.d.ts +18 -0
- package/types/helpers/Utils/Date.d.ts +2 -2
- package/types/helpers/Utils/UseDetectClickOutside.stories.d.ts +2 -2
- package/types/helpers/Utils/Utils.d.ts +1 -1
- package/types/helpers/index.d.ts +7 -5
- package/types/hooks/index.d.ts +1 -0
- package/types/hooks/user/useUser.d.ts +2 -0
- package/types/middleware/index.d.ts +1 -0
- package/types/middleware/userSessionReset.d.ts +5 -0
- package/types/reducers/blocksClipboard/blocksClipboard.d.ts +1 -1
- package/types/reducers/form/form.d.ts +1 -1
- package/types/routes.d.ts +3 -3
- package/types/start-client.d.ts +1 -1
- package/types/storybook.d.ts +3 -3
- package/webpack-plugins/webpack-bundle-analyze-plugin.js +1 -1
- package/webpack-plugins/webpack-relative-resolver.js +4 -1
- package/src/components/manage/AnchorPlugin/components/Link/index.jsx +0 -37
- package/src/components/manage/AnchorPlugin/components/LinkButton/index.jsx +0 -126
- package/src/components/manage/AnchorPlugin/index.jsx +0 -82
- package/src/components/manage/AnchorPlugin/linkStrategy.js +0 -21
- package/src/components/manage/AnchorPlugin/utils/EditorUtils.js +0 -47
- package/src/components/manage/Blocks/HeroImageLeft/Data.jsx +0 -29
- package/src/components/manage/Blocks/HeroImageLeft/Edit.jsx +0 -493
- package/src/components/manage/Blocks/HeroImageLeft/Edit.test.jsx +0 -58
- package/src/components/manage/Blocks/HeroImageLeft/View.jsx +0 -37
- package/src/components/manage/Blocks/HeroImageLeft/View.test.jsx +0 -9
- package/src/components/manage/Blocks/HeroImageLeft/schema.js +0 -43
- package/src/components/manage/Blocks/Table/Cell.jsx +0 -206
- package/src/components/manage/Blocks/Table/Cell.test.jsx +0 -19
- package/src/components/manage/Blocks/Table/Edit.jsx +0 -747
- package/src/components/manage/Blocks/Table/Edit.test.jsx +0 -44
- package/src/components/manage/Blocks/Table/Readme.md +0 -5
- package/src/components/manage/Blocks/Table/View.jsx +0 -51
- package/src/components/manage/Blocks/Table/View.test.jsx +0 -41
- package/src/components/manage/Blocks/Text/Edit.jsx +0 -372
- package/src/components/manage/Blocks/Text/Edit.test.jsx +0 -46
- package/src/components/manage/Blocks/Text/Readme.md +0 -5
- package/src/components/manage/Blocks/Text/Schema.jsx +0 -31
- package/src/components/manage/Blocks/Text/View.jsx +0 -26
- package/src/components/manage/Blocks/Text/View.test.jsx +0 -28
- package/src/components/manage/LinkDetectionPlugin/link-detection-plugin.jsx +0 -227
- package/src/components/manage/LinkDetectionPlugin/utils.js +0 -12
- package/src/components/manage/Multilingual/CreateTranslation.test.jsx +0 -46
- package/src/components/manage/Widgets/WysiwygWidget.stories.jsx +0 -24
- package/src/components/manage/Widgets/WysiwygWidget.test.jsx +0 -37
- package/src/components/theme/Avatar/Avatar.stories.mdx +0 -25
- package/src/components/theme/SocialSharing/SocialSharing.jsx +0 -48
- package/src/components/theme/SocialSharing/SocialSharing.test.jsx +0 -14
- package/src/components/theme/Title/Title.stories.mdx +0 -25
- package/src/config/RichTextEditor/Blocks.jsx +0 -29
- package/src/config/RichTextEditor/FromHTML.jsx +0 -8
- package/src/config/RichTextEditor/Plugins.jsx +0 -59
- package/src/config/RichTextEditor/Styles.jsx +0 -69
- package/src/config/RichTextEditor/ToHTML.jsx +0 -262
- package/src/config/RichTextEditor/index.js +0 -25
- package/src/helpers/FormValidation/FormValidation.js +0 -401
- package/src/helpers/Utils/usePagination.test.js +0 -115
- /package/src/components/theme/LanguageSelector/{LanguageSelector.js → LanguageSelector.jsx} +0 -0
- /package/src/helpers/Extensions/{withBlockSchemaEnhancer.js → withBlockSchemaEnhancer.jsx} +0 -0
- /package/src/helpers/Helmet/{Helmet.js → Helmet.jsx} +0 -0
- /package/src/helpers/Loadable/{Loadable.js → Loadable.jsx} +0 -0
- /package/src/helpers/Loadable/__mocks__/{Loadable.js → Loadable.jsx} +0 -0
|
@@ -75,7 +75,6 @@ msgstr "Reglas de contenido activas en esta página"
|
|
|
75
75
|
|
|
76
76
|
#. Default: "Add"
|
|
77
77
|
#: components/manage/Aliases/Aliases
|
|
78
|
-
#: components/manage/Controlpanels/Aliases
|
|
79
78
|
#: components/manage/Controlpanels/ContentTypes
|
|
80
79
|
#: components/manage/Controlpanels/Rules/ConfigureRule
|
|
81
80
|
#: components/manage/Rules/Rules
|
|
@@ -95,6 +94,11 @@ msgstr "Añadir"
|
|
|
95
94
|
msgid "Add Addons"
|
|
96
95
|
msgstr "Añadir complementos"
|
|
97
96
|
|
|
97
|
+
#. Default: "Add Alternative URL"
|
|
98
|
+
#: components/manage/Controlpanels/Aliases
|
|
99
|
+
msgid "Add Alternative URL"
|
|
100
|
+
msgstr ""
|
|
101
|
+
|
|
98
102
|
#. Default: "Add Content…"
|
|
99
103
|
#: components/manage/Toolbar/Types
|
|
100
104
|
msgid "Add Content"
|
|
@@ -311,6 +315,16 @@ msgstr "Alias"
|
|
|
311
315
|
msgid "Alias has been added"
|
|
312
316
|
msgstr "Alias añadido correctamente"
|
|
313
317
|
|
|
318
|
+
#. Default: "Aliases have been removed."
|
|
319
|
+
#: components/manage/Controlpanels/Aliases
|
|
320
|
+
msgid "Aliases have been removed."
|
|
321
|
+
msgstr ""
|
|
322
|
+
|
|
323
|
+
#. Default: "Aliases have been uploaded."
|
|
324
|
+
#: components/manage/Controlpanels/Aliases
|
|
325
|
+
msgid "Aliases have been uploaded."
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
314
328
|
#. Default: "Alignment"
|
|
315
329
|
#: components/manage/Blocks/Image/schema
|
|
316
330
|
#: components/manage/Blocks/LeadImage/LeadImageSidebar
|
|
@@ -330,7 +344,7 @@ msgstr "Todo"
|
|
|
330
344
|
msgid "All content"
|
|
331
345
|
msgstr "Todo el contenido"
|
|
332
346
|
|
|
333
|
-
#. Default: "
|
|
347
|
+
#. Default: "Existing alternative URLs for this site"
|
|
334
348
|
#: components/manage/Controlpanels/Aliases
|
|
335
349
|
msgid "All existing alternative urls for this site"
|
|
336
350
|
msgstr "Todas los alias disponibles para este sitio"
|
|
@@ -357,7 +371,7 @@ msgstr "Dejar vacío si la imagen es puramente decorativa"
|
|
|
357
371
|
msgid "Alt text hint link text"
|
|
358
372
|
msgstr "Describir el propósito de la imagen"
|
|
359
373
|
|
|
360
|
-
#. Default: "Alternative
|
|
374
|
+
#. Default: "Alternative URL path (Required)"
|
|
361
375
|
#: components/manage/Controlpanels/Aliases
|
|
362
376
|
msgid "Alternative url path (Required)"
|
|
363
377
|
msgstr "Ruta de url alternativa (obligatorio)"
|
|
@@ -368,7 +382,7 @@ msgstr "Ruta de url alternativa (obligatorio)"
|
|
|
368
382
|
msgid "Alternative url path must start with a slash."
|
|
369
383
|
msgstr "La url alternativa debe comenzar con un carácter especial '/'."
|
|
370
384
|
|
|
371
|
-
#. Default: "Alternative
|
|
385
|
+
#. Default: "Alternative URL path → target URL path (date and time of creation, manually created yes/no)"
|
|
372
386
|
#: components/manage/Controlpanels/Aliases
|
|
373
387
|
msgid "Alternative url path → target url path (date and time of creation, manually created yes/no)"
|
|
374
388
|
msgstr "Url alternativa → url destino (fecha y hora de creación, creado de forma manual si/no)"
|
|
@@ -419,6 +433,11 @@ msgstr ""
|
|
|
419
433
|
msgid "Assignments"
|
|
420
434
|
msgstr "Tareas"
|
|
421
435
|
|
|
436
|
+
#. Default: "Automatically"
|
|
437
|
+
#: components/manage/Controlpanels/Aliases
|
|
438
|
+
msgid "Automatically"
|
|
439
|
+
msgstr ""
|
|
440
|
+
|
|
422
441
|
#. Default: "Available"
|
|
423
442
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
424
443
|
msgid "Available"
|
|
@@ -478,6 +497,11 @@ msgstr "Consulta base de la búsqueda"
|
|
|
478
497
|
msgid "Block"
|
|
479
498
|
msgstr "Bloque"
|
|
480
499
|
|
|
500
|
+
#. Default: "Both"
|
|
501
|
+
#: components/manage/Controlpanels/Aliases
|
|
502
|
+
msgid "Both"
|
|
503
|
+
msgstr ""
|
|
504
|
+
|
|
481
505
|
#. Default: "Both email address and password are case sensitive, check that caps lock is not enabled."
|
|
482
506
|
#: components/theme/Login/Login
|
|
483
507
|
msgid "Both email address and password are case sensitive, check that caps lock is not enabled."
|
|
@@ -494,22 +518,31 @@ msgid "Broken relations"
|
|
|
494
518
|
msgstr "Relaciones rotas"
|
|
495
519
|
|
|
496
520
|
#. Default: "Browse"
|
|
497
|
-
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
498
521
|
#: components/manage/Contents/ContentsUploadModal
|
|
499
522
|
#: components/manage/Sidebar/ObjectBrowserNav
|
|
500
523
|
msgid "Browse"
|
|
501
524
|
msgstr "Navegue"
|
|
502
525
|
|
|
503
|
-
#. Default: "Browse the site, drop an image, or
|
|
504
|
-
#: components/manage/
|
|
505
|
-
msgid "Browse the site, drop an image, or type
|
|
526
|
+
#. Default: "Browse the site, drop an image, or use a URL"
|
|
527
|
+
#: components/manage/Widgets/ImageWidget
|
|
528
|
+
msgid "Browse the site, drop an image, or type a URL"
|
|
506
529
|
msgstr "Navegue el contenido, arrastre un imagen o ingrese una dirección URL"
|
|
507
530
|
|
|
531
|
+
#. Default: "Bulk upload CSV"
|
|
532
|
+
#: components/manage/Controlpanels/Aliases
|
|
533
|
+
msgid "BulkUploadAltUrls"
|
|
534
|
+
msgstr ""
|
|
535
|
+
|
|
508
536
|
#. Default: "By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator."
|
|
509
537
|
#: components/manage/Sharing/Sharing
|
|
510
538
|
msgid "By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator."
|
|
511
539
|
msgstr "Por defecto, los permisos desde el contenedor de este elemento son heredados. Si usted deshabilita esta opción, solamente los permisos compartidos definidos explícitamente serán validos. En la vista general, el símbolo {inherited} indica un valor heredado. Similarmente, el símbolo {global} indica un rol global, el cual es administrado por el administrador del sitio."
|
|
512
540
|
|
|
541
|
+
#. Default: "CSV file"
|
|
542
|
+
#: components/manage/Controlpanels/Aliases
|
|
543
|
+
msgid "CSVFile"
|
|
544
|
+
msgstr ""
|
|
545
|
+
|
|
513
546
|
#. Default: "Cache Name"
|
|
514
547
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
515
548
|
msgid "Cache Name"
|
|
@@ -544,7 +577,7 @@ msgid "Cancel"
|
|
|
544
577
|
msgstr "Cancelar"
|
|
545
578
|
|
|
546
579
|
#. Default: "Cell"
|
|
547
|
-
#:
|
|
580
|
+
#: config/Blocks
|
|
548
581
|
msgid "Cell"
|
|
549
582
|
msgstr "Celda"
|
|
550
583
|
|
|
@@ -594,6 +627,11 @@ msgstr "Cambios guardados"
|
|
|
594
627
|
msgid "Changes saved."
|
|
595
628
|
msgstr "Cambios guardados."
|
|
596
629
|
|
|
630
|
+
#. Default: "Check this box to customize the title, description, or image of the target content item for this teaser. Leave it unchecked to show updates to the target content item if it is edited later."
|
|
631
|
+
#: components/manage/Blocks/Teaser/schema
|
|
632
|
+
msgid "Check this box to customize the title, description, or image of the target content item for this teaser. Leave it unchecked to show updates to the target content item if it is edited later."
|
|
633
|
+
msgstr ""
|
|
634
|
+
|
|
597
635
|
#. Default: "Checkbox"
|
|
598
636
|
#: components/manage/Widgets/SchemaWidget
|
|
599
637
|
msgid "Checkbox"
|
|
@@ -621,6 +659,7 @@ msgid "Choose a file"
|
|
|
621
659
|
msgstr "Seleccionar Archivo"
|
|
622
660
|
|
|
623
661
|
#. Default: "Clear"
|
|
662
|
+
#: components/manage/AnchorPlugin/components/LinkButton/AddLinkForm
|
|
624
663
|
#: components/manage/Blocks/HTML/Edit
|
|
625
664
|
msgid "Clear"
|
|
626
665
|
msgstr "Limpiar"
|
|
@@ -832,6 +871,16 @@ msgstr "Crear o eliminar relaciones con el destino"
|
|
|
832
871
|
msgid "Create working copy"
|
|
833
872
|
msgstr "Crear copia de trabajo"
|
|
834
873
|
|
|
874
|
+
#. Default: "Created after"
|
|
875
|
+
#: components/manage/Controlpanels/Aliases
|
|
876
|
+
msgid "Created after"
|
|
877
|
+
msgstr ""
|
|
878
|
+
|
|
879
|
+
#. Default: "Created before"
|
|
880
|
+
#: components/manage/Controlpanels/Aliases
|
|
881
|
+
msgid "Created before"
|
|
882
|
+
msgstr ""
|
|
883
|
+
|
|
835
884
|
#. Default: "Created by {creator} on {date}"
|
|
836
885
|
#: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
|
|
837
886
|
msgid "Created by {creator} on {date}"
|
|
@@ -873,6 +922,11 @@ msgstr "Filtros aplicados"
|
|
|
873
922
|
msgid "Current password"
|
|
874
923
|
msgstr "Actual contraseña"
|
|
875
924
|
|
|
925
|
+
#. Default: "Customize teaser content"
|
|
926
|
+
#: components/manage/Blocks/Teaser/schema
|
|
927
|
+
msgid "Customize teaser content"
|
|
928
|
+
msgstr ""
|
|
929
|
+
|
|
876
930
|
#. Default: "Cut"
|
|
877
931
|
#: components/manage/Actions/Actions
|
|
878
932
|
#: components/manage/Contents/Contents
|
|
@@ -937,7 +991,6 @@ msgstr "Fecha (primero los más recientes)"
|
|
|
937
991
|
#: components/manage/Preferences/PersonalPreferences
|
|
938
992
|
#: components/manage/Widgets/SchemaWidget
|
|
939
993
|
#: components/manage/Widgets/SelectWidget
|
|
940
|
-
#: components/manage/Widgets/WysiwygWidget
|
|
941
994
|
#: components/theme/Comments/CommentEditModal
|
|
942
995
|
#: components/theme/Comments/Comments
|
|
943
996
|
#: components/theme/ContactForm/ContactForm
|
|
@@ -962,7 +1015,6 @@ msgstr "Vista por defecto"
|
|
|
962
1015
|
#: components/manage/Delete/Delete
|
|
963
1016
|
#: components/manage/Widgets/FormFieldWrapper
|
|
964
1017
|
#: components/manage/Widgets/ObjectBrowserWidget
|
|
965
|
-
#: components/manage/Widgets/WysiwygWidget
|
|
966
1018
|
#: components/theme/Comments/Comments
|
|
967
1019
|
msgid "Delete"
|
|
968
1020
|
msgstr "Eliminar"
|
|
@@ -993,7 +1045,7 @@ msgid "Delete blocks"
|
|
|
993
1045
|
msgstr "Eliminar bloques"
|
|
994
1046
|
|
|
995
1047
|
#. Default: "Delete col"
|
|
996
|
-
#:
|
|
1048
|
+
#: config/Blocks
|
|
997
1049
|
msgid "Delete col"
|
|
998
1050
|
msgstr "Eliminar columna"
|
|
999
1051
|
|
|
@@ -1003,7 +1055,7 @@ msgid "Delete condition"
|
|
|
1003
1055
|
msgstr "Eliminar condición"
|
|
1004
1056
|
|
|
1005
1057
|
#. Default: "Delete row"
|
|
1006
|
-
#:
|
|
1058
|
+
#: config/Blocks
|
|
1007
1059
|
msgid "Delete row"
|
|
1008
1060
|
msgstr "Eliminar fila"
|
|
1009
1061
|
|
|
@@ -1039,12 +1091,10 @@ msgid "Descending"
|
|
|
1039
1091
|
msgstr "Descendente"
|
|
1040
1092
|
|
|
1041
1093
|
#. Default: "Description"
|
|
1042
|
-
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
1043
1094
|
#: components/manage/Blocks/Teaser/schema
|
|
1044
1095
|
#: components/manage/Controlpanels/ContentTypes
|
|
1045
1096
|
#: components/manage/Widgets/SchemaWidget
|
|
1046
1097
|
#: components/manage/Widgets/SelectWidget
|
|
1047
|
-
#: components/manage/Widgets/WysiwygWidget
|
|
1048
1098
|
#: components/theme/View/TabularView
|
|
1049
1099
|
#: helpers/MessageLabels/MessageLabels
|
|
1050
1100
|
msgid "Description"
|
|
@@ -1086,7 +1136,7 @@ msgid "Distributed under the {license}."
|
|
|
1086
1136
|
msgstr "Distribuido bajo la {license}."
|
|
1087
1137
|
|
|
1088
1138
|
#. Default: "Add border to inner columns"
|
|
1089
|
-
#:
|
|
1139
|
+
#: config/Blocks
|
|
1090
1140
|
msgid "Divide each row into separate cells"
|
|
1091
1141
|
msgstr "Divide cada fila en celdas separadas"
|
|
1092
1142
|
|
|
@@ -1177,6 +1227,11 @@ msgstr "La dirección de correo electrónico no coincide."
|
|
|
1177
1227
|
msgid "Edit"
|
|
1178
1228
|
msgstr "Editar"
|
|
1179
1229
|
|
|
1230
|
+
#. Default: "Edit Alternative URL"
|
|
1231
|
+
#: components/manage/Controlpanels/Aliases
|
|
1232
|
+
msgid "Edit Alternative URL"
|
|
1233
|
+
msgstr ""
|
|
1234
|
+
|
|
1180
1235
|
#. Default: "Edit Rule"
|
|
1181
1236
|
#: components/manage/Controlpanels/Rules/EditRule
|
|
1182
1237
|
msgid "Edit Rule"
|
|
@@ -1288,14 +1343,18 @@ msgstr "Introduzca el nombre completo, por ejemplo Leonardo Caballero."
|
|
|
1288
1343
|
msgid "Enter map Embed Code"
|
|
1289
1344
|
msgstr "Introduzca el código embebido de un mapa"
|
|
1290
1345
|
|
|
1291
|
-
#. Default: "Enter the absolute path of the target.
|
|
1346
|
+
#. Default: "Enter the absolute path of the target. Target must exist or be an existing alternative URL path to the target."
|
|
1347
|
+
#: components/manage/Controlpanels/Aliases
|
|
1348
|
+
msgid "Enter the absolute path of the target. Target must exist or be an existing alternative url path to the target."
|
|
1349
|
+
msgstr "Introduzca la ruta absoluta del destino. El destino debe existir o ser una url alternativa de otro destino."
|
|
1350
|
+
|
|
1351
|
+
#. Default: "Enter the absolute path where the alternative URL should exist. The path must start with '/'. Only URLs that result in a 404 not found page will result in a redirect occurring."
|
|
1292
1352
|
#: components/manage/Controlpanels/Aliases
|
|
1293
|
-
msgid "Enter the absolute path
|
|
1294
|
-
msgstr "
|
|
1353
|
+
msgid "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only URLs that result in a 404 not found page will result in a redirect occurring."
|
|
1354
|
+
msgstr ""
|
|
1295
1355
|
|
|
1296
1356
|
#. Default: "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring."
|
|
1297
1357
|
#: components/manage/Aliases/Aliases
|
|
1298
|
-
#: components/manage/Controlpanels/Aliases
|
|
1299
1358
|
msgid "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring."
|
|
1300
1359
|
msgstr "Introduzca la ruta de la url alternativa. La ruta debe comenzar por '/'. Solo tendrán redirección aquellas urls que creen errores 404 No encontrado."
|
|
1301
1360
|
|
|
@@ -1329,6 +1388,7 @@ msgstr "Entradas"
|
|
|
1329
1388
|
#: components/manage/Add/Add
|
|
1330
1389
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1331
1390
|
#: components/manage/Controlpanels/ContentTypeSchema
|
|
1391
|
+
#: components/manage/Controlpanels/Controlpanel
|
|
1332
1392
|
#: components/manage/Controlpanels/UndoControlpanel
|
|
1333
1393
|
#: components/manage/Edit/Edit
|
|
1334
1394
|
#: components/manage/Form/InlineForm
|
|
@@ -1340,26 +1400,36 @@ msgstr "Entradas"
|
|
|
1340
1400
|
msgid "Error"
|
|
1341
1401
|
msgstr "Error"
|
|
1342
1402
|
|
|
1343
|
-
#. Default: "Error"
|
|
1344
|
-
#: components/manage/Controlpanels/Aliases
|
|
1345
|
-
msgid "ErrorHeader"
|
|
1346
|
-
msgstr "Error"
|
|
1347
|
-
|
|
1348
1403
|
#. Default: "Event"
|
|
1349
1404
|
#: components/manage/Controlpanels/Rules/Rules
|
|
1350
1405
|
msgid "Event"
|
|
1351
1406
|
msgstr "Evento"
|
|
1352
1407
|
|
|
1408
|
+
#. Default: "Event end date must be on or after {startDateValueOrStartFieldName}"
|
|
1409
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1410
|
+
msgid "Event end date must be on or after {startDateValueOrStartFieldName}"
|
|
1411
|
+
msgstr ""
|
|
1412
|
+
|
|
1353
1413
|
#. Default: "Event listing"
|
|
1354
1414
|
#: config/Views
|
|
1355
1415
|
msgid "Event listing"
|
|
1356
1416
|
msgstr "Listado de eventos"
|
|
1357
1417
|
|
|
1418
|
+
#. Default: "Event start date must be on or before {endDateValueOrEndFieldName}"
|
|
1419
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1420
|
+
msgid "Event start date must be on or before {endDateValueOrEndFieldName}"
|
|
1421
|
+
msgstr ""
|
|
1422
|
+
|
|
1358
1423
|
#. Default: "Event view"
|
|
1359
1424
|
#: config/Views
|
|
1360
1425
|
msgid "Event view"
|
|
1361
1426
|
msgstr "Vista de evento"
|
|
1362
1427
|
|
|
1428
|
+
#. Default: "Example"
|
|
1429
|
+
#: components/manage/Controlpanels/Aliases
|
|
1430
|
+
msgid "Example"
|
|
1431
|
+
msgstr ""
|
|
1432
|
+
|
|
1363
1433
|
#. Default: "Exclude from navigation"
|
|
1364
1434
|
#: components/manage/Contents/ContentsPropertiesModal
|
|
1365
1435
|
msgid "Exclude from navigation"
|
|
@@ -1465,7 +1535,13 @@ msgstr "Vista de archivo"
|
|
|
1465
1535
|
msgid "Filename"
|
|
1466
1536
|
msgstr "Nombre del archivo"
|
|
1467
1537
|
|
|
1538
|
+
#. Default: "Files uploaded: {uploadedFiles}"
|
|
1539
|
+
#: components/manage/Contents/ContentsUploadModal
|
|
1540
|
+
msgid "Files uploaded: {uploadedFiles}"
|
|
1541
|
+
msgstr "Archivos subidos: {uploadedFiles}"
|
|
1542
|
+
|
|
1468
1543
|
#. Default: "Filter"
|
|
1544
|
+
#: components/manage/Controlpanels/Aliases
|
|
1469
1545
|
#: helpers/MessageLabels/MessageLabels
|
|
1470
1546
|
msgid "Filter"
|
|
1471
1547
|
msgstr "Filtrar"
|
|
@@ -1475,7 +1551,7 @@ msgstr "Filtrar"
|
|
|
1475
1551
|
msgid "Filter Rules:"
|
|
1476
1552
|
msgstr "Reglas de filtrado:"
|
|
1477
1553
|
|
|
1478
|
-
#. Default: "Filter by
|
|
1554
|
+
#. Default: "Filter by path"
|
|
1479
1555
|
#: components/manage/Controlpanels/Aliases
|
|
1480
1556
|
msgid "Filter by prefix"
|
|
1481
1557
|
msgstr "Filtrar por prefijo"
|
|
@@ -1501,7 +1577,7 @@ msgid "Fix relations"
|
|
|
1501
1577
|
msgstr "Corregir relaciones"
|
|
1502
1578
|
|
|
1503
1579
|
#. Default: "Fixed width columns"
|
|
1504
|
-
#:
|
|
1580
|
+
#: config/Blocks
|
|
1505
1581
|
msgid "Fixed width table cells"
|
|
1506
1582
|
msgstr "Celdas de tabla de ancho fijo"
|
|
1507
1583
|
|
|
@@ -1587,6 +1663,11 @@ msgstr "Grupo"
|
|
|
1587
1663
|
msgid "Group created"
|
|
1588
1664
|
msgstr "Grupo creado"
|
|
1589
1665
|
|
|
1666
|
+
#. Default: "Group deleted"
|
|
1667
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1668
|
+
msgid "Group deleted"
|
|
1669
|
+
msgstr ""
|
|
1670
|
+
|
|
1590
1671
|
#. Default: "Group roles updated"
|
|
1591
1672
|
#: helpers/MessageLabels/MessageLabels
|
|
1592
1673
|
msgid "Group roles updated"
|
|
@@ -1611,7 +1692,7 @@ msgid "Groups are logical collections of users, such as departments and business
|
|
|
1611
1692
|
msgstr "Los grupos son colecciones lógicas de usuarios, como departamentos o unidades de negocio. Los grupos no están asociados a permisos, para ello se utilizan los roles y algunos grupos tienen un rol determinado. El símbolo {plone_svg} indica que el rol se adquiere por ser miembro de otro grupo."
|
|
1612
1693
|
|
|
1613
1694
|
#. Default: "Header cell"
|
|
1614
|
-
#:
|
|
1695
|
+
#: config/Blocks
|
|
1615
1696
|
msgid "Header cell"
|
|
1616
1697
|
msgstr "Celda de cabecera"
|
|
1617
1698
|
|
|
@@ -1672,7 +1753,9 @@ msgstr "Historial de {title}"
|
|
|
1672
1753
|
#: components/manage/Contents/Contents
|
|
1673
1754
|
#: components/manage/Contents/ContentsBreadcrumbs
|
|
1674
1755
|
#: components/manage/Contents/ContentsBreadcrumbsHomeItem
|
|
1756
|
+
#: components/manage/Sidebar/ObjectBrowserBody
|
|
1675
1757
|
#: components/theme/Breadcrumbs/Breadcrumbs
|
|
1758
|
+
#: components/theme/Logo/Logo
|
|
1676
1759
|
msgid "Home"
|
|
1677
1760
|
msgstr "Inicio"
|
|
1678
1761
|
|
|
@@ -1681,6 +1764,11 @@ msgstr "Inicio"
|
|
|
1681
1764
|
msgid "ID"
|
|
1682
1765
|
msgstr "ID"
|
|
1683
1766
|
|
|
1767
|
+
#. Default: "Icon View"
|
|
1768
|
+
#: components/manage/Sidebar/ObjectBrowserBody
|
|
1769
|
+
msgid "Icon View"
|
|
1770
|
+
msgstr ""
|
|
1771
|
+
|
|
1684
1772
|
#. Default: "If all of the following conditions are met:"
|
|
1685
1773
|
#: components/manage/Controlpanels/Rules/ConfigureRule
|
|
1686
1774
|
msgid "If all of the following conditions are met:"
|
|
@@ -1708,7 +1796,6 @@ msgid "If you are certain you have the correct web address but are encountering
|
|
|
1708
1796
|
msgstr "Si está seguro de haber introducido una dirección correcta pero recibe un error, contacte con el {site_admin}."
|
|
1709
1797
|
|
|
1710
1798
|
#. Default: "Image"
|
|
1711
|
-
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
1712
1799
|
#: components/manage/Blocks/Image/ImageSidebar
|
|
1713
1800
|
#: components/manage/Blocks/Image/schema
|
|
1714
1801
|
#: components/manage/Blocks/LeadImage/LeadImageSidebar
|
|
@@ -1764,22 +1851,22 @@ msgid "Inherited value"
|
|
|
1764
1851
|
msgstr "Valor heredado"
|
|
1765
1852
|
|
|
1766
1853
|
#. Default: "Insert col after"
|
|
1767
|
-
#:
|
|
1854
|
+
#: config/Blocks
|
|
1768
1855
|
msgid "Insert col after"
|
|
1769
1856
|
msgstr "Insertar columna después"
|
|
1770
1857
|
|
|
1771
1858
|
#. Default: "Insert col before"
|
|
1772
|
-
#:
|
|
1859
|
+
#: config/Blocks
|
|
1773
1860
|
msgid "Insert col before"
|
|
1774
1861
|
msgstr "Insertar columna antes"
|
|
1775
1862
|
|
|
1776
1863
|
#. Default: "Insert row after"
|
|
1777
|
-
#:
|
|
1864
|
+
#: config/Blocks
|
|
1778
1865
|
msgid "Insert row after"
|
|
1779
1866
|
msgstr "Insertar fila después"
|
|
1780
1867
|
|
|
1781
1868
|
#. Default: "Insert row before"
|
|
1782
|
-
#:
|
|
1869
|
+
#: config/Blocks
|
|
1783
1870
|
msgid "Insert row before"
|
|
1784
1871
|
msgstr "Insertar fila antes"
|
|
1785
1872
|
|
|
@@ -1834,6 +1921,11 @@ msgstr "Intervalo anual"
|
|
|
1834
1921
|
msgid "Invalid Block"
|
|
1835
1922
|
msgstr "Bloque no válido: se eliminará al guardar"
|
|
1836
1923
|
|
|
1924
|
+
#. Default: "Invalid teaser source"
|
|
1925
|
+
#: components/manage/Blocks/Teaser/Data
|
|
1926
|
+
msgid "Invalid teaser source"
|
|
1927
|
+
msgstr ""
|
|
1928
|
+
|
|
1837
1929
|
#. Default: "It is not allowed to define both the password and to request sending the password reset message by e-mail. You need to select one of them."
|
|
1838
1930
|
#: helpers/MessageLabels/MessageLabels
|
|
1839
1931
|
msgid "It is not allowed to define both the password and to request sending the password reset message by e-mail. You need to select one of them."
|
|
@@ -1846,7 +1938,7 @@ msgstr "Número de elementos"
|
|
|
1846
1938
|
|
|
1847
1939
|
#. Default: "Item successfully moved."
|
|
1848
1940
|
#: components/manage/Contents/Contents
|
|
1849
|
-
msgid "Item
|
|
1941
|
+
msgid "Item successfully moved."
|
|
1850
1942
|
msgstr "Elemento movido correctamente."
|
|
1851
1943
|
|
|
1852
1944
|
#. Default: "Item(s) copied."
|
|
@@ -1901,6 +1993,11 @@ msgstr "Idioma"
|
|
|
1901
1993
|
msgid "Language independent field."
|
|
1902
1994
|
msgstr "Campo independiente de idioma."
|
|
1903
1995
|
|
|
1996
|
+
#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form."
|
|
1997
|
+
#: components/manage/Widgets/FormFieldWrapper
|
|
1998
|
+
msgid "Language independent icon title"
|
|
1999
|
+
msgstr ""
|
|
2000
|
+
|
|
1904
2001
|
#. Default: "Large"
|
|
1905
2002
|
#: components/manage/Widgets/ImageSizeWidget
|
|
1906
2003
|
msgid "Large"
|
|
@@ -1964,7 +2061,6 @@ msgid "Link copied to clipboard"
|
|
|
1964
2061
|
msgstr "Enlace copiado al portapapeles"
|
|
1965
2062
|
|
|
1966
2063
|
#. Default: "Link more"
|
|
1967
|
-
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1968
2064
|
#: components/manage/Blocks/Listing/schema
|
|
1969
2065
|
msgid "Link more"
|
|
1970
2066
|
msgstr "Enlace más"
|
|
@@ -1980,13 +2076,11 @@ msgid "Link settings"
|
|
|
1980
2076
|
msgstr "Configuración de enlace"
|
|
1981
2077
|
|
|
1982
2078
|
#. Default: "Link Title"
|
|
1983
|
-
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1984
2079
|
#: components/manage/Blocks/Listing/schema
|
|
1985
2080
|
msgid "Link title"
|
|
1986
2081
|
msgstr "Enlazar título"
|
|
1987
2082
|
|
|
1988
2083
|
#. Default: "Link to"
|
|
1989
|
-
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1990
2084
|
#: components/manage/Blocks/Image/schema
|
|
1991
2085
|
#: components/manage/Blocks/LeadImage/LeadImageSidebar
|
|
1992
2086
|
#: components/manage/Blocks/Listing/schema
|
|
@@ -2009,6 +2103,11 @@ msgstr "Vincular este elemento con un hipervínculo en el texto"
|
|
|
2009
2103
|
msgid "Links and references"
|
|
2010
2104
|
msgstr "Enlaces y referencias"
|
|
2011
2105
|
|
|
2106
|
+
#. Default: "List View"
|
|
2107
|
+
#: components/manage/Sidebar/ObjectBrowserBody
|
|
2108
|
+
msgid "List View"
|
|
2109
|
+
msgstr ""
|
|
2110
|
+
|
|
2012
2111
|
#. Default: "Listing"
|
|
2013
2112
|
#: components/manage/Blocks/Listing/schema
|
|
2014
2113
|
msgid "Listing"
|
|
@@ -2025,6 +2124,8 @@ msgid "Load more"
|
|
|
2025
2124
|
msgstr "Cargar más"
|
|
2026
2125
|
|
|
2027
2126
|
#. Default: "Loading."
|
|
2127
|
+
#: components/manage/Controlpanels/Groups/GroupsControlpanel
|
|
2128
|
+
#: components/manage/Controlpanels/Users/UsersControlpanel
|
|
2028
2129
|
#: components/manage/Form/ModalForm
|
|
2029
2130
|
msgid "Loading"
|
|
2030
2131
|
msgstr "Cargando"
|
|
@@ -2060,6 +2161,11 @@ msgstr "Inicio de Sesión fallo"
|
|
|
2060
2161
|
msgid "Login Name"
|
|
2061
2162
|
msgstr "Nombre de usuario"
|
|
2062
2163
|
|
|
2164
|
+
#. Default: "Logo of"
|
|
2165
|
+
#: components/theme/Logo/Logo
|
|
2166
|
+
msgid "Logo of"
|
|
2167
|
+
msgstr ""
|
|
2168
|
+
|
|
2063
2169
|
#. Default: "Logout"
|
|
2064
2170
|
#: components/manage/Toolbar/PersonalTools
|
|
2065
2171
|
msgid "Logout"
|
|
@@ -2071,7 +2177,7 @@ msgid "Made by {creator} on {date}. This is not a working copy anymore, but the
|
|
|
2071
2177
|
msgstr "Hecho por {creator} el {date}. Esta no es una copia de trabajo, sino el contenido principal."
|
|
2072
2178
|
|
|
2073
2179
|
#. Default: "Reduce cell padding"
|
|
2074
|
-
#:
|
|
2180
|
+
#: config/Blocks
|
|
2075
2181
|
msgid "Make the table compact"
|
|
2076
2182
|
msgstr "Hacer la tabla compacta"
|
|
2077
2183
|
|
|
@@ -2096,6 +2202,11 @@ msgstr "Administrar traducciones de {title}"
|
|
|
2096
2202
|
msgid "Manual"
|
|
2097
2203
|
msgstr "Manual"
|
|
2098
2204
|
|
|
2205
|
+
#. Default: "Manually"
|
|
2206
|
+
#: components/manage/Controlpanels/Aliases
|
|
2207
|
+
msgid "Manually"
|
|
2208
|
+
msgstr ""
|
|
2209
|
+
|
|
2099
2210
|
#. Default: "Manually or automatically added?"
|
|
2100
2211
|
#: components/manage/Controlpanels/Aliases
|
|
2101
2212
|
msgid "Manually or automatically added?"
|
|
@@ -2465,10 +2576,16 @@ msgid "Open menu"
|
|
|
2465
2576
|
msgstr "Abrir menú"
|
|
2466
2577
|
|
|
2467
2578
|
#. Default: "Open object browser"
|
|
2579
|
+
#: components/manage/AnchorPlugin/components/LinkButton/AddLinkForm
|
|
2468
2580
|
#: components/manage/Widgets/ObjectBrowserWidget
|
|
2469
2581
|
msgid "Open object browser"
|
|
2470
2582
|
msgstr "Abrir buscador de objetos"
|
|
2471
2583
|
|
|
2584
|
+
#. Default: "Order"
|
|
2585
|
+
#: components/manage/Sidebar/Sidebar
|
|
2586
|
+
msgid "Order"
|
|
2587
|
+
msgstr ""
|
|
2588
|
+
|
|
2472
2589
|
#. Default: "Ordered"
|
|
2473
2590
|
#: components/manage/Blocks/ToC/Schema
|
|
2474
2591
|
msgid "Ordered"
|
|
@@ -2719,7 +2836,7 @@ msgid "Redo"
|
|
|
2719
2836
|
msgstr "Rehacer"
|
|
2720
2837
|
|
|
2721
2838
|
#. Default: "Minimalistic table design"
|
|
2722
|
-
#:
|
|
2839
|
+
#: config/Blocks
|
|
2723
2840
|
msgid "Reduce complexity"
|
|
2724
2841
|
msgstr "Reducir complejidad"
|
|
2725
2842
|
|
|
@@ -2733,6 +2850,11 @@ msgstr "Hacer referencia a este elemento como elemento relacionado"
|
|
|
2733
2850
|
msgid "Referencing this item with {relationship}"
|
|
2734
2851
|
msgstr "Hacer referencia a este elemento con {relationship}"
|
|
2735
2852
|
|
|
2853
|
+
#. Default: "Refresh source content"
|
|
2854
|
+
#: components/manage/Blocks/Teaser/Data
|
|
2855
|
+
msgid "Refresh source content"
|
|
2856
|
+
msgstr ""
|
|
2857
|
+
|
|
2736
2858
|
#. Default: "Register"
|
|
2737
2859
|
#: components/theme/Anontools/Anontools
|
|
2738
2860
|
#: components/theme/Login/Login
|
|
@@ -2858,7 +2980,6 @@ msgstr "Responder"
|
|
|
2858
2980
|
#. Default: "Required"
|
|
2859
2981
|
#: components/manage/Widgets/SchemaWidget
|
|
2860
2982
|
#: components/manage/Widgets/SelectWidget
|
|
2861
|
-
#: components/manage/Widgets/WysiwygWidget
|
|
2862
2983
|
msgid "Required"
|
|
2863
2984
|
msgstr "Obligatorio"
|
|
2864
2985
|
|
|
@@ -3058,6 +3179,7 @@ msgstr "Etiqueta del campo de búsqueda"
|
|
|
3058
3179
|
|
|
3059
3180
|
#. Default: "Search results"
|
|
3060
3181
|
#: components/manage/Blocks/Search/components/SearchDetails
|
|
3182
|
+
#: components/manage/Sidebar/ObjectBrowserBody
|
|
3061
3183
|
#: components/theme/Search/Search
|
|
3062
3184
|
msgid "Search results"
|
|
3063
3185
|
msgstr "Resultado de la búsqueda"
|
|
@@ -3204,7 +3326,6 @@ msgstr "Compartir para {title}"
|
|
|
3204
3326
|
#. Default: "Short Name"
|
|
3205
3327
|
#: components/manage/Widgets/SchemaWidget
|
|
3206
3328
|
#: components/manage/Widgets/SelectWidget
|
|
3207
|
-
#: components/manage/Widgets/WysiwygWidget
|
|
3208
3329
|
msgid "Short Name"
|
|
3209
3330
|
msgstr "Nombre Corto"
|
|
3210
3331
|
|
|
@@ -3369,6 +3490,11 @@ msgstr "Ordenar transacciones por nombre de usuario, ruta o fecha"
|
|
|
3369
3490
|
msgid "Sorted"
|
|
3370
3491
|
msgstr "Ordenado"
|
|
3371
3492
|
|
|
3493
|
+
#. Default: "Sorted on"
|
|
3494
|
+
#: components/manage/Blocks/Search/components/SortOn
|
|
3495
|
+
msgid "Sorted on"
|
|
3496
|
+
msgstr ""
|
|
3497
|
+
|
|
3372
3498
|
#. Default: "Source"
|
|
3373
3499
|
#: components/manage/Blocks/HTML/Edit
|
|
3374
3500
|
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
@@ -3430,7 +3556,7 @@ msgid "String"
|
|
|
3430
3556
|
msgstr "Cadena de texto"
|
|
3431
3557
|
|
|
3432
3558
|
#. Default: "Alternate row background color"
|
|
3433
|
-
#:
|
|
3559
|
+
#: config/Blocks
|
|
3434
3560
|
msgid "Stripe alternate rows with color"
|
|
3435
3561
|
msgstr "Raya las filas alternas con color"
|
|
3436
3562
|
|
|
@@ -3444,6 +3570,11 @@ msgstr "Estilos"
|
|
|
3444
3570
|
msgid "Subject"
|
|
3445
3571
|
msgstr "Asunto"
|
|
3446
3572
|
|
|
3573
|
+
#. Default: "Submit"
|
|
3574
|
+
#: components/manage/AnchorPlugin/components/LinkButton/AddLinkForm
|
|
3575
|
+
msgid "Submit"
|
|
3576
|
+
msgstr ""
|
|
3577
|
+
|
|
3447
3578
|
#. Default: "Success"
|
|
3448
3579
|
#: components/manage/Actions/Actions
|
|
3449
3580
|
#: components/manage/Aliases/Aliases
|
|
@@ -3487,13 +3618,12 @@ msgid "Switch to"
|
|
|
3487
3618
|
msgstr "Cambiar a"
|
|
3488
3619
|
|
|
3489
3620
|
#. Default: "Table"
|
|
3490
|
-
#:
|
|
3621
|
+
#: config/Blocks
|
|
3491
3622
|
msgid "Table"
|
|
3492
3623
|
msgstr "Tabla"
|
|
3493
3624
|
|
|
3494
3625
|
#. Default: "Table of Contents"
|
|
3495
|
-
#: components/manage/Blocks/ToC/
|
|
3496
|
-
#: components/manage/Blocks/ToC/variations/HorizontalMenu
|
|
3626
|
+
#: components/manage/Blocks/ToC/View
|
|
3497
3627
|
msgid "Table of Contents"
|
|
3498
3628
|
msgstr "Tabla de contenidos"
|
|
3499
3629
|
|
|
@@ -3520,7 +3650,6 @@ msgstr "Categoría a remover"
|
|
|
3520
3650
|
|
|
3521
3651
|
#. Default: "Target"
|
|
3522
3652
|
#: components/manage/Blocks/Teaser/schema
|
|
3523
|
-
#: components/manage/Controlpanels/Aliases
|
|
3524
3653
|
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3525
3654
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3526
3655
|
msgid "Target"
|
|
@@ -3541,11 +3670,6 @@ msgstr "Número objetivo del tamaño de la memoria por caché en bytes"
|
|
|
3541
3670
|
msgid "Target number of objects in memory per cache"
|
|
3542
3671
|
msgstr "Número objetivo de elementos en la memoria por caché"
|
|
3543
3672
|
|
|
3544
|
-
#. Default: "Target url path must start with a slash."
|
|
3545
|
-
#: components/manage/Controlpanels/Aliases
|
|
3546
|
-
msgid "Target url path must start with a slash."
|
|
3547
|
-
msgstr "El camino de destino debe comenzar con /."
|
|
3548
|
-
|
|
3549
3673
|
#. Default: "Teaser"
|
|
3550
3674
|
#: components/manage/Blocks/Teaser/schema
|
|
3551
3675
|
msgid "Teaser"
|
|
@@ -3565,11 +3689,6 @@ msgstr "Texto"
|
|
|
3565
3689
|
msgid "Thank you."
|
|
3566
3690
|
msgstr "Gracias."
|
|
3567
3691
|
|
|
3568
|
-
#. Default: "The Database Manager allow you to view database status information"
|
|
3569
|
-
#: components/manage/Controlpanels/DatabaseInformation
|
|
3570
|
-
msgid "The Database Manager allow you to view database status information"
|
|
3571
|
-
msgstr "El Gestor de la Base de Datos permite ver la información del estado de la base de datos"
|
|
3572
|
-
|
|
3573
3692
|
#. Default: "The backend is not responding, due to a server timeout or a connection problem of your device. Please check your connection and try again."
|
|
3574
3693
|
#: components/theme/RequestTimeout/RequestTimeout
|
|
3575
3694
|
msgid "The backend is not responding, due to a server timeout or a connection problem of your device. Please check your connection and try again."
|
|
@@ -3615,6 +3734,16 @@ msgstr "El elemento no se ha podido eliminar."
|
|
|
3615
3734
|
msgid "The link address is:"
|
|
3616
3735
|
msgstr "La dirección del enlace es:"
|
|
3617
3736
|
|
|
3737
|
+
#. Default: "The number of items must be greater than or equal to {minItems}"
|
|
3738
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3739
|
+
msgid "The number of items must be greater than or equal to {minItems}"
|
|
3740
|
+
msgstr ""
|
|
3741
|
+
|
|
3742
|
+
#. Default: "The number of items must be less than or equal to {maxItems}"
|
|
3743
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3744
|
+
msgid "The number of items must be less than or equal to {maxItems}"
|
|
3745
|
+
msgstr ""
|
|
3746
|
+
|
|
3618
3747
|
#. Default: "The provided alternative url already exists!"
|
|
3619
3748
|
#: components/manage/Aliases/Aliases
|
|
3620
3749
|
msgid "The provided alternative url already exists!"
|
|
@@ -3631,6 +3760,11 @@ msgstr "El registro fue exitoso. Por favor, verifique su bandeja de entrada para
|
|
|
3631
3760
|
msgid "The site configuration is outdated and needs to be upgraded."
|
|
3632
3761
|
msgstr "La configuración del sitio está anticuada y debe ser actualizada."
|
|
3633
3762
|
|
|
3763
|
+
#. Default: "The value does not match the pattern {pattern}"
|
|
3764
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3765
|
+
msgid "The value does not match the pattern {pattern}"
|
|
3766
|
+
msgstr ""
|
|
3767
|
+
|
|
3634
3768
|
#. Default: "The working copy was discarded"
|
|
3635
3769
|
#: components/manage/Toolbar/More
|
|
3636
3770
|
msgid "The working copy was discarded"
|
|
@@ -3651,6 +3785,12 @@ msgstr "No hay grupos con los criterios buscados."
|
|
|
3651
3785
|
msgid "There are no users with the searched criteria"
|
|
3652
3786
|
msgstr "No hay usuarios con los criterios buscados"
|
|
3653
3787
|
|
|
3788
|
+
#. Default: "There are some errors."
|
|
3789
|
+
#: components/manage/Add/Add
|
|
3790
|
+
#: components/manage/Edit/Edit
|
|
3791
|
+
msgid "There are some errors."
|
|
3792
|
+
msgstr ""
|
|
3793
|
+
|
|
3654
3794
|
#. Default: "There is a configuration problem on the backend"
|
|
3655
3795
|
#: components/theme/CorsError/CorsError
|
|
3656
3796
|
msgid "There is a configuration problem on the backend"
|
|
@@ -3723,7 +3863,6 @@ msgid "Time"
|
|
|
3723
3863
|
msgstr "Hora"
|
|
3724
3864
|
|
|
3725
3865
|
#. Default: "Title"
|
|
3726
|
-
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
3727
3866
|
#: components/manage/Blocks/Teaser/schema
|
|
3728
3867
|
#: components/manage/Blocks/ToC/Schema
|
|
3729
3868
|
#: components/manage/Contents/Contents
|
|
@@ -3731,7 +3870,6 @@ msgstr "Hora"
|
|
|
3731
3870
|
#: components/manage/Controlpanels/ContentTypes
|
|
3732
3871
|
#: components/manage/Widgets/SchemaWidget
|
|
3733
3872
|
#: components/manage/Widgets/SelectWidget
|
|
3734
|
-
#: components/manage/Widgets/WysiwygWidget
|
|
3735
3873
|
#: components/theme/View/TabularView
|
|
3736
3874
|
#: helpers/MessageLabels/MessageLabels
|
|
3737
3875
|
msgid "Title"
|
|
@@ -3753,6 +3891,11 @@ msgstr "Número de objetos activos y no activos"
|
|
|
3753
3891
|
msgid "Total comments"
|
|
3754
3892
|
msgstr "Comentarios totales"
|
|
3755
3893
|
|
|
3894
|
+
#. Default: "Total files to upload: {totalFiles}"
|
|
3895
|
+
#: components/manage/Contents/ContentsUploadModal
|
|
3896
|
+
msgid "Total files to upload: {totalFiles}"
|
|
3897
|
+
msgstr "Total de archivos para cargar: {totalFiles}"
|
|
3898
|
+
|
|
3756
3899
|
#. Default: "Total number of objects in each cache"
|
|
3757
3900
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
3758
3901
|
msgid "Total number of objects in each cache"
|
|
@@ -3828,11 +3971,6 @@ msgstr "Escriba la URL de un vídeo (YouTube, Vimeo o mp4)"
|
|
|
3828
3971
|
msgid "Type text..."
|
|
3829
3972
|
msgstr "Escribir texto..."
|
|
3830
3973
|
|
|
3831
|
-
#. Default: "Type text…"
|
|
3832
|
-
#: components/manage/Blocks/Text/Edit
|
|
3833
|
-
msgid "Type text…"
|
|
3834
|
-
msgstr "Ingrese texto..."
|
|
3835
|
-
|
|
3836
3974
|
#. Default: "Type the heading…"
|
|
3837
3975
|
#: components/manage/TextLineEdit/TextLineEdit
|
|
3838
3976
|
msgid "Type the heading…"
|
|
@@ -3981,24 +4119,13 @@ msgstr "Cargar"
|
|
|
3981
4119
|
msgid "Upload a lead image in the 'Lead Image' content field."
|
|
3982
4120
|
msgstr "Cargar una imagen principal en el campo 'Imagen Principal'."
|
|
3983
4121
|
|
|
3984
|
-
#. Default: "Upload a new image"
|
|
3985
|
-
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
3986
|
-
msgid "Upload a new image"
|
|
3987
|
-
msgstr "Cargar nueva imagen"
|
|
3988
|
-
|
|
3989
4122
|
#. Default: "Upload files"
|
|
3990
4123
|
#: components/manage/Contents/ContentsUploadModal
|
|
3991
4124
|
msgid "Upload files"
|
|
3992
4125
|
msgstr "Cargar archivos"
|
|
3993
4126
|
|
|
3994
|
-
#. Default: "Uploading files"
|
|
3995
|
-
#: components/manage/Contents/ContentsUploadModal
|
|
3996
|
-
msgid "Uploading files"
|
|
3997
|
-
msgstr "Cargando archivos"
|
|
3998
|
-
|
|
3999
4127
|
#. Default: "Uploading image"
|
|
4000
|
-
#: components/manage/
|
|
4001
|
-
#: components/manage/Blocks/Image/Edit
|
|
4128
|
+
#: components/manage/Widgets/ImageWidget
|
|
4002
4129
|
msgid "Uploading image"
|
|
4003
4130
|
msgstr "Cargando imagen"
|
|
4004
4131
|
|
|
@@ -4016,7 +4143,6 @@ msgstr "Utilice el siguiente formulario para definir, cambiar o eliminar reglas
|
|
|
4016
4143
|
#. Default: "Used for programmatic access to the fieldset."
|
|
4017
4144
|
#: components/manage/Widgets/SchemaWidget
|
|
4018
4145
|
#: components/manage/Widgets/SelectWidget
|
|
4019
|
-
#: components/manage/Widgets/WysiwygWidget
|
|
4020
4146
|
msgid "Used for programmatic access to the fieldset."
|
|
4021
4147
|
msgstr "Usado para acceso programático al conjunto de campos."
|
|
4022
4148
|
|
|
@@ -4041,6 +4167,11 @@ msgstr "Configuración de usuarios y grupos"
|
|
|
4041
4167
|
msgid "User created"
|
|
4042
4168
|
msgstr "Usuario creado"
|
|
4043
4169
|
|
|
4170
|
+
#. Default: "User deleted"
|
|
4171
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4172
|
+
msgid "User deleted"
|
|
4173
|
+
msgstr ""
|
|
4174
|
+
|
|
4044
4175
|
#. Default: "User name"
|
|
4045
4176
|
#: components/manage/Controlpanels/Users/UsersControlpanel
|
|
4046
4177
|
msgid "User name"
|
|
@@ -4348,12 +4479,22 @@ msgstr "Introduzca el nombre de usuario que desee utilizar. Generalmente algo co
|
|
|
4348
4479
|
msgid "availableViews"
|
|
4349
4480
|
msgstr "Vistas disponibles"
|
|
4350
4481
|
|
|
4482
|
+
#. Default: "Error in the block field {errorField}."
|
|
4483
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4484
|
+
msgid "blocksFieldsErrorTitle"
|
|
4485
|
+
msgstr ""
|
|
4486
|
+
|
|
4351
4487
|
#. Default: "Forgot your password?"
|
|
4352
4488
|
#: components/theme/Login/Login
|
|
4353
4489
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4354
4490
|
msgid "box_forgot_password_option"
|
|
4355
4491
|
msgstr "¿Olvidaste tu contraseña?"
|
|
4356
4492
|
|
|
4493
|
+
#. Default: "Add many alternative URLs at once by uploading a CSV file. The first column should be the path to redirect from; the second, the path to redirect to. Both paths must be Plone-site-relative, starting with a slash (/). An optional third column can contain a date and time. An optional fourth column can contain a boolean to mark as a manual redirect (default true)."
|
|
4494
|
+
#: components/manage/Controlpanels/Aliases
|
|
4495
|
+
msgid "bulkUploadUrlsHelp"
|
|
4496
|
+
msgstr ""
|
|
4497
|
+
|
|
4357
4498
|
#. Default: "Checkbox"
|
|
4358
4499
|
#: config/Blocks
|
|
4359
4500
|
msgid "checkboxFacet"
|
|
@@ -4464,6 +4605,11 @@ msgstr "Cuándo"
|
|
|
4464
4605
|
msgid "event_where"
|
|
4465
4606
|
msgstr "Dónde"
|
|
4466
4607
|
|
|
4608
|
+
#. Default: "/example"
|
|
4609
|
+
#: components/manage/Controlpanels/Aliases
|
|
4610
|
+
msgid "examplePath"
|
|
4611
|
+
msgstr ""
|
|
4612
|
+
|
|
4467
4613
|
#. Default: "This website does not accept files larger than {limit}"
|
|
4468
4614
|
#: helpers/MessageLabels/MessageLabels
|
|
4469
4615
|
msgid "fileTooLarge"
|
|
@@ -4549,6 +4695,11 @@ msgstr "Mi nombre de usuario es"
|
|
|
4549
4695
|
msgid "leadimage"
|
|
4550
4696
|
msgstr "Imagen Principal"
|
|
4551
4697
|
|
|
4698
|
+
#. Default: "Enter a URL to an image"
|
|
4699
|
+
#: components/manage/Widgets/ImageWidget
|
|
4700
|
+
msgid "linkAnImage"
|
|
4701
|
+
msgstr ""
|
|
4702
|
+
|
|
4552
4703
|
#. Default: "Listing"
|
|
4553
4704
|
#: config/Blocks
|
|
4554
4705
|
msgid "listing"
|
|
@@ -4643,6 +4794,11 @@ msgstr "Otros"
|
|
|
4643
4794
|
msgid "pending"
|
|
4644
4795
|
msgstr "Pendiente"
|
|
4645
4796
|
|
|
4797
|
+
#. Default: "Pick an existing image"
|
|
4798
|
+
#: components/manage/Widgets/ImageWidget
|
|
4799
|
+
msgid "pickAnImage"
|
|
4800
|
+
msgstr ""
|
|
4801
|
+
|
|
4646
4802
|
#. Default: "Private"
|
|
4647
4803
|
#: components/manage/Contents/ContentsItem
|
|
4648
4804
|
msgid "private"
|
|
@@ -4891,7 +5047,7 @@ msgstr "ruta de destino"
|
|
|
4891
5047
|
#. Default: "Text"
|
|
4892
5048
|
#: config/Blocks
|
|
4893
5049
|
msgid "text"
|
|
4894
|
-
msgstr "
|
|
5050
|
+
msgstr ""
|
|
4895
5051
|
|
|
4896
5052
|
#. Default: "Title"
|
|
4897
5053
|
#: config/Blocks
|
|
@@ -4914,6 +5070,11 @@ msgstr "Activar/Desactivar"
|
|
|
4914
5070
|
msgid "upgradeVersions"
|
|
4915
5071
|
msgstr "Actualizar de la versión {origin} a {destination}"
|
|
4916
5072
|
|
|
5073
|
+
#. Default: "Upload an image from your computer"
|
|
5074
|
+
#: components/manage/Widgets/ImageWidget
|
|
5075
|
+
msgid "uploadAnImage"
|
|
5076
|
+
msgstr ""
|
|
5077
|
+
|
|
4917
5078
|
#. Default: "Input must be valid url (www.something.com or http(s)://www.something.com)"
|
|
4918
5079
|
#: helpers/MessageLabels/MessageLabels
|
|
4919
5080
|
msgid "url"
|