@plone/volto 17.0.0-alpha.9 → 17.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +26 -3
- package/CHANGELOG.md +457 -5
- package/CONTRIBUTING.md +5 -1
- package/README.md +12 -9
- package/addon-registry.js +10 -1
- package/create-addons-loader.js +1 -1
- package/cypress/support/commands.js +70 -14
- package/cypress/support/e2e.js +1 -2
- package/cypress/support/volto-slate.js +4 -5
- package/cypress.config.js +1 -0
- package/docker-compose.yml +1 -1
- package/locales/ca/LC_MESSAGES/volto.po +276 -53
- package/locales/ca.json +1 -1
- package/locales/de/LC_MESSAGES/volto.po +284 -61
- package/locales/de.json +1 -1
- package/locales/en/LC_MESSAGES/volto.po +274 -51
- package/locales/en.json +1 -1
- package/locales/es/LC_MESSAGES/volto.po +313 -90
- package/locales/es.json +1 -1
- package/locales/eu/LC_MESSAGES/volto.po +275 -52
- package/locales/eu.json +1 -1
- package/locales/fi/LC_MESSAGES/volto.po +275 -52
- package/locales/fi.json +1 -1
- package/locales/fr/LC_MESSAGES/volto.po +276 -53
- package/locales/fr.json +1 -1
- package/locales/it/LC_MESSAGES/volto.po +469 -246
- package/locales/it.json +1 -1
- package/locales/ja/LC_MESSAGES/volto.po +275 -52
- package/locales/ja.json +1 -1
- package/locales/nl/LC_MESSAGES/volto.po +276 -53
- package/locales/nl.json +1 -1
- package/locales/pt/LC_MESSAGES/volto.po +276 -53
- package/locales/pt.json +1 -1
- package/locales/pt_BR/LC_MESSAGES/volto.po +309 -86
- package/locales/pt_BR.json +1 -1
- package/locales/ro/LC_MESSAGES/volto.po +276 -53
- package/locales/ro.json +1 -1
- package/locales/volto.pot +279 -52
- package/locales/zh_CN/LC_MESSAGES/volto.po +276 -53
- package/locales/zh_CN.json +1 -1
- package/package.json +44 -34
- package/packages/volto-slate/package.json +1 -1
- package/packages/volto-slate/src/actions/index.js +1 -1
- package/packages/volto-slate/src/blocks/Table/TableBlockEdit.jsx +21 -212
- package/packages/volto-slate/src/blocks/Table/schema.js +122 -0
- package/packages/volto-slate/src/blocks/Text/DefaultTextBlockEditor.jsx +8 -3
- package/packages/volto-slate/src/blocks/Text/TextBlockView.jsx +21 -16
- package/packages/volto-slate/src/blocks/Text/extensions/withDeserializers.js +3 -1
- package/packages/volto-slate/src/blocks/Text/index.js +10 -7
- package/packages/volto-slate/src/editor/config.jsx +5 -4
- package/packages/volto-slate/src/editor/index.js +4 -4
- package/packages/volto-slate/src/editor/less/slate.less +28 -0
- package/packages/volto-slate/src/editor/plugins/Link/render.jsx +5 -6
- package/packages/volto-slate/src/editor/plugins/StyleMenu/StyleMenu.jsx +14 -4
- package/packages/volto-slate/src/editor/plugins/StyleMenu/utils.js +14 -5
- package/packages/volto-slate/src/editor/render.jsx +77 -8
- package/packages/volto-slate/src/editor/ui/SlateContextToolbar.jsx +2 -2
- package/packages/volto-slate/src/editor/ui/index.js +15 -15
- package/packages/volto-slate/src/index.js +2 -2
- package/packages/volto-slate/src/utils/blocks.js +7 -0
- package/packages/volto-slate/src/widgets/RichTextWidget.jsx +15 -8
- package/razzle.config.js +4 -6
- package/src/actions/index.js +4 -0
- package/src/actions/navroot/navroot.js +16 -0
- package/src/actions/navroot/navroot.test.js +15 -0
- package/src/actions/relations/rebuild.js +7 -7
- package/src/actions/relations/relations.js +17 -0
- package/src/actions/site/site.js +16 -0
- package/src/actions/site/site.test.js +15 -0
- package/src/actions/userSession/userSession.js +17 -1
- package/src/components/index.js +194 -192
- package/src/components/manage/Actions/Actions.jsx +133 -243
- package/src/components/manage/Add/Add.jsx +7 -8
- package/src/components/manage/AnchorPlugin/index.jsx +2 -2
- package/src/components/manage/AnchorPlugin/utils/EditorUtils.js +3 -1
- package/src/components/manage/Blocks/Block/BlocksForm.jsx +19 -2
- package/src/components/manage/Blocks/Block/Edit.jsx +1 -1
- package/src/components/manage/Blocks/Block/Settings.jsx +2 -0
- package/src/components/manage/Blocks/Block/Settings.test.jsx +92 -0
- package/src/components/manage/Blocks/Block/Style.jsx +2 -2
- package/src/components/manage/Blocks/Container/Data.jsx +32 -0
- package/src/components/manage/Blocks/Container/Edit.jsx +177 -0
- package/src/components/manage/Blocks/Container/EditBlockWrapper.jsx +121 -0
- package/src/components/manage/Blocks/Container/NewBlockAddButton.jsx +84 -0
- package/src/components/manage/Blocks/Container/SimpleContainerToolbar.jsx +54 -0
- package/src/components/manage/Blocks/Grid/Edit.jsx +47 -0
- package/src/components/manage/Blocks/Grid/View.jsx +43 -0
- package/src/components/manage/Blocks/Grid/adapter.js +14 -0
- package/src/components/manage/Blocks/Grid/grid-1.svg +6 -0
- package/src/components/manage/Blocks/Grid/grid-2.svg +9 -0
- package/src/components/manage/Blocks/Grid/grid-3.svg +10 -0
- package/src/components/manage/Blocks/Grid/grid-4.svg +11 -0
- package/src/components/manage/Blocks/Grid/schema.js +35 -0
- package/src/components/manage/Blocks/Grid/templates.js +47 -0
- package/src/components/manage/Blocks/HTML/Edit.jsx +8 -8
- package/src/components/manage/Blocks/HeroImageLeft/Edit.jsx +36 -26
- package/src/components/manage/Blocks/Image/Edit.jsx +51 -12
- package/src/components/manage/Blocks/Image/Edit.test.jsx +2 -0
- package/src/components/manage/Blocks/Image/ImageSidebar.jsx +66 -16
- package/src/components/manage/Blocks/Image/View.jsx +26 -5
- package/src/components/manage/Blocks/Image/View.test.jsx +20 -0
- package/src/components/manage/Blocks/Image/schema.js +17 -10
- package/src/components/manage/Blocks/Image/utils.js +14 -0
- package/src/components/manage/Blocks/LeadImage/Edit.jsx +32 -10
- package/src/components/manage/Blocks/LeadImage/Edit.test.jsx +11 -1
- package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.jsx +28 -9
- package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.test.jsx +8 -2
- package/src/components/manage/Blocks/LeadImage/View.jsx +50 -38
- package/src/components/manage/Blocks/LeadImage/View.test.jsx +11 -1
- package/src/components/manage/Blocks/Listing/DefaultTemplate.jsx +18 -3
- package/src/components/manage/Blocks/Listing/ListingBody.jsx +32 -8
- package/src/components/manage/Blocks/Listing/ListingBody.test.jsx +20 -0
- package/src/components/manage/Blocks/Listing/SummaryTemplate.jsx +1 -1
- package/src/components/manage/Blocks/Listing/getAsyncData.js +3 -5
- package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +27 -17
- package/src/components/manage/Blocks/Maps/Edit.jsx +135 -209
- package/src/components/manage/Blocks/Maps/Edit.test.jsx +1 -2
- package/src/components/manage/Blocks/Maps/View.test.jsx +1 -2
- package/src/components/manage/Blocks/Search/SearchBlockView.jsx +3 -2
- package/src/components/manage/Blocks/Search/components/Facets.jsx +66 -7
- package/src/components/manage/Blocks/Search/components/FilterList.jsx +4 -6
- package/src/components/manage/Blocks/Search/components/SearchInput.jsx +9 -2
- package/src/components/manage/Blocks/Search/components/SelectFacet.jsx +2 -9
- package/src/components/manage/Blocks/Search/components/index.js +13 -13
- package/src/components/manage/Blocks/Search/hocs/index.js +2 -2
- package/src/components/manage/Blocks/Search/hocs/withQueryString.jsx +5 -2
- package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +70 -36
- package/src/components/manage/Blocks/Search/layout/LeftColumnFacets.jsx +17 -5
- package/src/components/manage/Blocks/Search/layout/RightColumnFacets.jsx +17 -5
- package/src/components/manage/Blocks/Search/layout/TopSideFacets.jsx +21 -5
- package/src/components/manage/Blocks/Search/schema.js +29 -14
- package/src/components/manage/Blocks/Table/Cell.jsx +2 -3
- package/src/components/manage/Blocks/Teaser/Body.jsx +0 -1
- package/src/components/manage/Blocks/Teaser/DefaultBody.jsx +5 -10
- package/src/components/manage/Blocks/Teaser/schema.js +5 -0
- package/src/components/manage/Blocks/Text/Edit.jsx +2 -3
- package/src/components/manage/Blocks/Title/View.jsx +0 -23
- package/src/components/manage/Blocks/Title/View.test.jsx +16 -1
- package/src/components/manage/Blocks/ToC/Schema.jsx +40 -7
- package/src/components/manage/Blocks/ToC/View.jsx +84 -14
- package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +8 -3
- package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.test.jsx +44 -0
- package/src/components/manage/Blocks/ToC/variations/HorizontalMenu.jsx +149 -10
- package/src/components/manage/Blocks/ToC/variations/index.js +3 -1
- package/src/components/manage/Contents/Contents.jsx +285 -114
- package/src/components/manage/Contents/ContentsPropertiesModal.jsx +90 -166
- package/src/components/manage/Contents/ContentsRenameModal.jsx +88 -139
- package/src/components/manage/Contents/ContentsRenameModal.stories.jsx +61 -0
- package/src/components/manage/Contents/ContentsTagsModal.jsx +83 -130
- package/src/components/manage/Contents/ContentsTagsModal.stories.jsx +68 -0
- package/src/components/manage/Contents/ContentsUploadModal.jsx +11 -7
- package/src/components/manage/Contents/ContentsWorkflowModal.jsx +87 -154
- package/src/components/manage/Controlpanels/Aliases.jsx +4 -12
- package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.jsx +65 -38
- package/src/components/manage/Controlpanels/Groups/RenderGroups.jsx +2 -2
- package/src/components/manage/Controlpanels/Relations/BrokenRelations.jsx +38 -13
- package/src/components/manage/Controlpanels/Relations/Relations.jsx +5 -5
- package/src/components/manage/Controlpanels/Relations/RelationsListing.jsx +8 -7
- package/src/components/manage/Controlpanels/Relations/RelationsMatrix.jsx +68 -68
- package/src/components/manage/Controlpanels/Rules/AddRule.jsx +3 -10
- package/src/components/manage/Controlpanels/Rules/EditRule.jsx +1 -1
- package/src/components/manage/Controlpanels/UndoControlpanel.jsx +6 -9
- package/src/components/manage/Controlpanels/Users/RenderUsers.jsx +97 -7
- package/src/components/manage/Controlpanels/Users/UsersControlpanel.jsx +127 -99
- package/src/components/manage/Delete/Delete.jsx +96 -171
- package/src/components/manage/Diff/DiffField.jsx +25 -1
- package/src/components/manage/DragDropList/DragDropList.jsx +18 -13
- package/src/components/manage/Form/BlockDataForm.jsx +3 -2
- package/src/components/manage/Form/BlockDataForm.test.jsx +51 -17
- package/src/components/manage/Form/Form.jsx +7 -6
- package/src/components/manage/Form/InlineForm.test.jsx +16 -14
- package/src/components/manage/History/History.jsx +11 -1
- package/src/components/manage/LinksToItem/LinksToItem.jsx +209 -0
- package/src/components/manage/LinksToItem/LinksToItem.test.jsx +100 -0
- package/src/components/manage/LockingToastsFactory/LockingToastsFactory.jsx +1 -2
- package/src/components/manage/Messages/Messages.jsx +32 -99
- package/src/components/manage/Messages/Messages.test.jsx +0 -1
- package/src/components/manage/Preferences/ChangePassword.jsx +2 -2
- package/src/components/manage/Sharing/Sharing.jsx +62 -22
- package/src/components/manage/Sidebar/AlignBlock.jsx +1 -1
- package/src/components/manage/Sidebar/Sidebar.jsx +139 -220
- package/src/components/manage/TemplateChooser/TemplateChooser.jsx +38 -0
- package/src/components/manage/TemplateChooser/TemplateChooser.test.jsx +34 -0
- package/src/components/manage/TemplateChooser/template.svg +10 -0
- package/src/components/manage/Toast/Toast.jsx +1 -1
- package/src/components/manage/Toolbar/More.jsx +17 -2
- package/src/components/manage/Toolbar/PersonalTools.jsx +97 -155
- package/src/components/manage/Toolbar/Toolbar.jsx +2 -2
- package/src/components/manage/UniversalLink/UniversalLink.jsx +6 -12
- package/src/components/manage/UniversalLink/UniversalLink.test.jsx +37 -0
- package/src/components/manage/Widgets/AlignWidget.jsx +2 -4
- package/src/components/manage/Widgets/ArrayWidget.jsx +3 -1
- package/src/components/manage/Widgets/ArrayWidget.test.jsx +45 -1
- package/src/components/manage/Widgets/ColorPickerWidget.jsx +6 -1
- package/src/components/manage/Widgets/ColorPickerWidget.test.jsx +9 -7
- package/src/components/manage/Widgets/DatetimeWidget.jsx +2 -8
- package/src/components/manage/Widgets/FileWidget.jsx +2 -1
- package/src/components/manage/Widgets/FormFieldWrapper.jsx +1 -1
- package/src/components/manage/Widgets/IdWidget.jsx +1 -2
- package/src/components/manage/Widgets/ObjectBrowserWidget.jsx +2 -9
- package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +3 -10
- package/src/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField.jsx +4 -4
- package/src/components/manage/Widgets/RegistryImageWidget.jsx +210 -0
- package/src/components/manage/Widgets/RegistryImageWidget.test.jsx +91 -0
- package/src/components/manage/Widgets/SchemaWidget.jsx +6 -9
- package/src/components/manage/Widgets/SelectUtils.js +1 -1
- package/src/components/manage/Widgets/SelectWidget.jsx +15 -1
- package/src/components/manage/Widgets/SelectWidget.test.jsx +45 -1
- package/src/components/manage/Widgets/WysiwygWidget.jsx +2 -9
- package/src/components/manage/Workflow/Workflow.jsx +75 -184
- package/src/components/theme/Anontools/Anontools.jsx +44 -72
- package/src/components/theme/Anontools/Anontools.stories.jsx +16 -6
- package/src/components/theme/Anontools/Anontools.test.jsx +16 -2
- package/src/components/theme/Breadcrumbs/Breadcrumbs.jsx +52 -99
- package/src/components/theme/Breadcrumbs/Breadcrumbs.stories.jsx +14 -13
- package/src/components/theme/Comments/Comment.stories.jsx +84 -0
- package/src/components/theme/Comments/CommentEditModal.jsx +63 -115
- package/src/components/theme/Comments/Comments.jsx +268 -380
- package/src/components/theme/Component/Component.jsx +1 -1
- package/src/components/theme/ContactForm/ContactForm.jsx +108 -192
- package/src/components/theme/ContactForm/ContactForm.stories.jsx +1 -1
- package/src/components/theme/ContactForm/ContactForm.test.jsx +2 -3
- package/src/components/theme/ContentMetadataTags/ContentMetadataTags.jsx +41 -3
- package/src/components/theme/Error/ServerError.jsx +29 -0
- package/src/components/theme/Header/Header.jsx +37 -63
- package/src/components/theme/Header/Header.test.jsx +18 -0
- package/src/components/theme/Image/Image.jsx +96 -0
- package/src/components/theme/Image/Image.test.jsx +125 -0
- package/src/components/theme/Login/Login.jsx +160 -243
- package/src/components/theme/Logo/Logo.Multilingual.test.jsx +131 -1
- package/src/components/theme/Logo/Logo.jsx +35 -27
- package/src/components/theme/Logo/Logo.test.jsx +135 -1
- package/src/components/theme/Logout/Logout.jsx +36 -83
- package/src/components/theme/Navigation/Navigation.jsx +86 -171
- package/src/components/theme/PasswordReset/PasswordReset.jsx +7 -5
- package/src/components/theme/PasswordReset/RequestPasswordReset.jsx +95 -170
- package/src/components/theme/PreviewImage/PreviewImage.jsx +31 -15
- package/src/components/theme/PreviewImage/PreviewImage.test.js +53 -13
- package/src/components/theme/Register/Register.jsx +2 -4
- package/src/components/theme/Search/SearchTags.jsx +30 -60
- package/src/components/theme/SearchWidget/SearchWidget.jsx +49 -97
- package/src/components/theme/SearchWidget/SearchWidget.test.jsx +8 -0
- package/src/components/theme/Sitemap/Sitemap.jsx +24 -13
- package/src/components/theme/Sitemap/Sitemap.test.jsx +23 -2
- package/src/components/theme/TsTest/TsTest.test.tsx +11 -0
- package/src/components/theme/TsTest/TsTest.tsx +15 -0
- package/src/components/theme/View/AlbumView.jsx +21 -16
- package/src/components/theme/View/EventView.jsx +36 -25
- package/src/components/theme/View/FileView.jsx +23 -18
- package/src/components/theme/View/ImageView.jsx +40 -32
- package/src/components/theme/View/ImageView.test.jsx +4 -0
- package/src/components/theme/View/LinkView.jsx +53 -78
- package/src/components/theme/View/ListingView.jsx +36 -28
- package/src/components/theme/View/NewsItemView.jsx +16 -17
- package/src/components/theme/View/RenderBlocks.jsx +56 -27
- package/src/components/theme/View/RenderEmptyBlock.jsx +5 -0
- package/src/components/theme/View/SummaryView.jsx +49 -39
- package/src/components/theme/View/TabularView.jsx +59 -53
- package/src/components/theme/View/View.jsx +2 -0
- package/src/components/theme/Widgets/ImageWidget.stories.jsx +1 -2
- package/src/config/Blocks.jsx +46 -0
- package/src/config/Components.jsx +3 -1
- package/src/config/ControlPanels.js +0 -1
- package/src/config/Loadables.jsx +1 -1
- package/src/config/NonContentRoutes.jsx +1 -0
- package/src/config/RichTextEditor/Blocks.jsx +4 -5
- package/src/config/RichTextEditor/FromHTML.jsx +2 -2
- package/src/config/RichTextEditor/Plugins.jsx +2 -3
- package/src/config/RichTextEditor/Styles.jsx +1 -1
- package/src/config/RichTextEditor/ToHTML.jsx +12 -10
- package/src/config/RichTextEditor/index.js +2 -3
- package/src/config/Views.jsx +6 -4
- package/src/config/Widgets.jsx +3 -0
- package/src/config/index.js +36 -2
- package/src/config/server.js +2 -0
- package/src/constants/ActionTypes.js +4 -0
- package/src/constants/Indexes.js +3 -1
- package/src/express-middleware/devproxy.js +1 -1
- package/src/express-middleware/files.js +11 -9
- package/src/express-middleware/images.js +12 -5
- package/src/express-middleware/ok.js +16 -0
- package/src/express-middleware/robotstxt.js +1 -1
- package/src/express-middleware/sitemap.js +1 -1
- package/src/express-middleware/static.js +3 -3
- package/src/helpers/Blocks/Blocks.js +52 -6
- package/src/helpers/Blocks/Blocks.test.js +92 -13
- package/src/helpers/Extensions/index.js +2 -1
- package/src/helpers/Extensions/withBlockSchemaEnhancer.js +63 -61
- package/src/helpers/Extensions/withBlockSchemaEnhancer.test.js +145 -0
- package/src/helpers/FormValidation/FormValidation.js +37 -7
- package/src/helpers/FormValidation/FormValidation.test.js +32 -0
- package/src/helpers/Html/Html.jsx +2 -8
- package/src/helpers/Loadable/__mocks__/Loadable.js +18 -18
- package/src/helpers/MessageLabels/MessageLabels.js +39 -4
- package/src/helpers/ScrollToTop/ScrollToTop.jsx +5 -3
- package/src/helpers/Site/index.js +21 -0
- package/src/helpers/Url/Url.js +22 -1
- package/src/helpers/Url/Url.test.js +41 -0
- package/src/helpers/Utils/UseDetectClickOutside.stories.jsx +190 -0
- package/src/helpers/Utils/Utils.js +35 -0
- package/src/helpers/Utils/Utils.test.js +13 -0
- package/src/helpers/Utils/usePagination.js +67 -14
- package/src/helpers/Utils/usePagination.test.js +115 -0
- package/src/helpers/index.js +15 -8
- package/src/hooks/client/useClient.js +11 -0
- package/src/hooks/clipboard/useClipboard.js +26 -0
- package/src/hooks/index.js +2 -0
- package/src/icons/grid-block.svg +11 -0
- package/src/middleware/api.js +203 -173
- package/src/middleware/blacklistRoutes.js +25 -22
- package/src/middleware/index.js +2 -2
- package/src/middleware/storeProtectLoadUtils.js +61 -62
- package/src/middleware/storeProtectLoadUtils.test.js +47 -43
- package/src/reducers/actions/actions.js +7 -5
- package/src/reducers/actions/actions.test.js +70 -0
- package/src/reducers/content/content.test.js +4 -4
- package/src/reducers/index.js +4 -0
- package/src/reducers/navigation/navigation.js +5 -5
- package/src/reducers/navigation/navigation.test.js +30 -0
- package/src/reducers/navroot/navroot.js +79 -0
- package/src/reducers/navroot/navroot.test.js +110 -0
- package/src/reducers/relations/relations.js +74 -46
- package/src/reducers/site/site.js +51 -0
- package/src/reducers/site/site.test.js +67 -0
- package/src/reducers/userSession/userSession.js +15 -1
- package/src/registry.js +2 -2
- package/src/routes.js +9 -0
- package/src/server.jsx +9 -0
- package/src/start-server.js +2 -2
- package/src/storybook.jsx +24 -38
- package/test-setup-config.js +11 -1
- package/theme/themes/pastanaga/collections/form.overrides +46 -0
- package/theme/themes/pastanaga/collections/menu.overrides +3 -2
- package/theme/themes/pastanaga/elements/container.overrides +5 -2
- package/theme/themes/pastanaga/elements/input.overrides +11 -1
- package/theme/themes/pastanaga/elements/label.overrides +10 -0
- package/theme/themes/pastanaga/elements/step.overrides +2 -1
- package/theme/themes/pastanaga/extras/blocks.less +25 -15
- package/theme/themes/pastanaga/extras/color-picker-widget.less +1 -1
- package/theme/themes/pastanaga/extras/contents.less +6 -1
- package/theme/themes/pastanaga/extras/draftjs.less +4 -4
- package/theme/themes/pastanaga/extras/grid.less +427 -0
- package/theme/themes/pastanaga/extras/login.less +3 -0
- package/theme/themes/pastanaga/extras/main.less +14 -7
- package/theme/themes/pastanaga/extras/react-dates-overrides.less +4 -2
- package/theme/themes/pastanaga/extras/search.less +7 -1
- package/theme/themes/pastanaga/extras/sidebar.less +5 -4
- package/theme/themes/pastanaga/extras/time-picker-overrides.less +5 -3
- package/theme/themes/pastanaga/extras/toc.less +29 -0
- package/theme/themes/pastanaga/extras/toolbar.less +6 -2
- package/theme/themes/pastanaga/extras/userscontrolpanel.less +17 -9
- package/theme/themes/pastanaga/extras/widgets.less +1 -1
- package/theme/themes/pastanaga/modules/rating.overrides +2 -1
- package/theme/themes/pastanaga-cms-ui/elements/container.overrides +2 -1
- package/theme/themes/pastanaga-cms-ui/extras/cms-ui.elements.container.less +6 -2
- package/theme/themes/pastanaga-cms-ui/extras/cms-ui.site.less +2 -2
- package/tsconfig.json +33 -0
- package/webpack-plugins/webpack-less-plugin.js +19 -0
- package/.yarn/install-state.gz +0 -0
- package/.yarn/releases/yarn-3.2.3.cjs +0 -783
- package/src/components/manage/Blocks/Teaser/utils.js +0 -44
- package/src/components/manage/Blocks/Teaser/utils.test.jsx +0 -229
- package/src/components/theme/Header/Header.md +0 -27
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# Gettext Message File for Plone
|
|
2
2
|
# Translators:
|
|
3
|
-
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2019, 2022.
|
|
3
|
+
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2019, 2022, 2023.
|
|
4
4
|
# Mikel Larreategi <mlarreategi@codesyntax.com>, 2021, 2022.
|
|
5
5
|
msgid ""
|
|
6
6
|
msgstr ""
|
|
7
7
|
"Project-Id-Version: Plone\n"
|
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
|
9
9
|
"POT-Creation-Date: 2019-12-03 03:20-0400\n"
|
|
10
|
-
"PO-Revision-Date:
|
|
10
|
+
"PO-Revision-Date: 2023-09-20 00:35-0400\n"
|
|
11
11
|
"Last-Translator: Leonardo J. Caballero G. <leonardocaballero@gmail.com>\n"
|
|
12
12
|
"Language: es\n"
|
|
13
13
|
"Language-Team: ES <LL@li.org>\n"
|
|
@@ -15,7 +15,7 @@ msgstr ""
|
|
|
15
15
|
"Content-Transfer-Encoding: 8bit\n"
|
|
16
16
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
17
17
|
"MIME-Version: 1.0\n"
|
|
18
|
-
"X-Generator: Poedit
|
|
18
|
+
"X-Generator: Poedit 3.3.2\n"
|
|
19
19
|
"Language-Code: es\n"
|
|
20
20
|
"Language-Name: Español\n"
|
|
21
21
|
"Preferred-Encodings: utf-8\n"
|
|
@@ -144,6 +144,11 @@ msgstr "Añadir acción"
|
|
|
144
144
|
msgid "Add block"
|
|
145
145
|
msgstr "Añadir bloque"
|
|
146
146
|
|
|
147
|
+
#: components/manage/Blocks/Container/NewBlockAddButton
|
|
148
|
+
# defaultMessage: Add block in position {index}
|
|
149
|
+
msgid "Add block in position {index}"
|
|
150
|
+
msgstr "Añadir bloque en posición {index}"
|
|
151
|
+
|
|
147
152
|
#: helpers/MessageLabels/MessageLabels
|
|
148
153
|
# defaultMessage: Add block…
|
|
149
154
|
msgid "Add block…"
|
|
@@ -169,6 +174,11 @@ msgstr "Añadir criterio"
|
|
|
169
174
|
msgid "Add date"
|
|
170
175
|
msgstr "Añadir fecha"
|
|
171
176
|
|
|
177
|
+
#: components/manage/Blocks/Container/SimpleContainerToolbar
|
|
178
|
+
# defaultMessage: Add element to container
|
|
179
|
+
msgid "Add element to container"
|
|
180
|
+
msgstr "Añadir elemento al contenedor"
|
|
181
|
+
|
|
172
182
|
#: components/manage/Widgets/SchemaWidget
|
|
173
183
|
# defaultMessage: Add field
|
|
174
184
|
msgid "Add field"
|
|
@@ -279,6 +289,16 @@ msgstr "Complemento desinstalado con éxito"
|
|
|
279
289
|
msgid "Addon upgraded succesfuly"
|
|
280
290
|
msgstr "Complemento actualizado con éxito"
|
|
281
291
|
|
|
292
|
+
#: components/manage/Blocks/Search/schema
|
|
293
|
+
# defaultMessage: Advanced facet?
|
|
294
|
+
msgid "Advanced facet?"
|
|
295
|
+
msgstr "¿Faceta avanzada?"
|
|
296
|
+
|
|
297
|
+
#: components/manage/Blocks/Search/schema
|
|
298
|
+
# defaultMessage: Advanced facets are initially hidden and displayed on demand
|
|
299
|
+
msgid "Advanced facets are initially hidden and displayed on demand"
|
|
300
|
+
msgstr "Las facetas avanzadas se ocultan inicialmente y se muestran cuando se solicitan"
|
|
301
|
+
|
|
282
302
|
#: config/Views
|
|
283
303
|
# defaultMessage: Album view
|
|
284
304
|
msgid "Album view"
|
|
@@ -427,6 +447,7 @@ msgstr "Reglas de contenido disponibles:"
|
|
|
427
447
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
428
448
|
#: components/manage/Diff/Diff
|
|
429
449
|
#: components/manage/History/History
|
|
450
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
430
451
|
#: components/manage/Multilingual/ManageTranslations
|
|
431
452
|
#: components/manage/Preferences/ChangePassword
|
|
432
453
|
#: components/manage/Preferences/PersonalPreferences
|
|
@@ -469,7 +490,7 @@ msgstr "Barra de ruta"
|
|
|
469
490
|
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
470
491
|
# defaultMessage: Broken relations
|
|
471
492
|
msgid "Broken relations"
|
|
472
|
-
msgstr ""
|
|
493
|
+
msgstr "Relaciones rotas"
|
|
473
494
|
|
|
474
495
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
475
496
|
#: components/manage/Contents/ContentsUploadModal
|
|
@@ -488,11 +509,6 @@ msgstr "Navegue el contenido, arrastre un imagen o ingrese una dirección URL"
|
|
|
488
509
|
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."
|
|
489
510
|
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."
|
|
490
511
|
|
|
491
|
-
#: components/manage/Contents/Contents
|
|
492
|
-
# defaultMessage: By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first.
|
|
493
|
-
msgid "By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first."
|
|
494
|
-
msgstr "Al eliminar este elemento, romperá los enlaces que existen en los elementos que se enumeran a continuación. Si esto es realmente lo que desea hacer, le recomendamos que primero elimine estas referencias."
|
|
495
|
-
|
|
496
512
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
497
513
|
# defaultMessage: Cache Name
|
|
498
514
|
msgid "Cache Name"
|
|
@@ -598,6 +614,7 @@ msgid "Choose Target"
|
|
|
598
614
|
msgstr "Seleccione destino"
|
|
599
615
|
|
|
600
616
|
#: components/manage/Widgets/FileWidget
|
|
617
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
601
618
|
# defaultMessage: Choose a file
|
|
602
619
|
msgid "Choose a file"
|
|
603
620
|
msgstr "Seleccionar Archivo"
|
|
@@ -720,6 +737,11 @@ msgstr "Formulario de contacto"
|
|
|
720
737
|
msgid "Contained items"
|
|
721
738
|
msgstr "Elementos contenidos"
|
|
722
739
|
|
|
740
|
+
#: components/manage/Blocks/Container/SimpleContainerToolbar
|
|
741
|
+
# defaultMessage: Container settings
|
|
742
|
+
msgid "Container settings"
|
|
743
|
+
msgstr "Ajustes del contenedor"
|
|
744
|
+
|
|
723
745
|
#: components/manage/Controlpanels/Controlpanels
|
|
724
746
|
# defaultMessage: Content
|
|
725
747
|
msgid "Content"
|
|
@@ -746,6 +768,11 @@ msgstr "Reglas de contenido para {title}"
|
|
|
746
768
|
msgid "Content rules from parent folders"
|
|
747
769
|
msgstr "Reglas de contenido de las carpetas principales"
|
|
748
770
|
|
|
771
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
772
|
+
# defaultMessage: Content that links to or references {title}
|
|
773
|
+
msgid "Content that links to or references {title}"
|
|
774
|
+
msgstr "Contenido que enlaza o hace referencia a {title}"
|
|
775
|
+
|
|
749
776
|
#: components/manage/Controlpanels/ContentTypes
|
|
750
777
|
# defaultMessage: Content type created
|
|
751
778
|
msgid "Content type created"
|
|
@@ -775,7 +802,7 @@ msgid "Copy"
|
|
|
775
802
|
msgstr "Copia"
|
|
776
803
|
|
|
777
804
|
#: helpers/MessageLabels/MessageLabels
|
|
778
|
-
# defaultMessage:
|
|
805
|
+
# defaultMessage: Copy blocks
|
|
779
806
|
msgid "Copy blocks"
|
|
780
807
|
msgstr "Copiar bloques"
|
|
781
808
|
|
|
@@ -792,7 +819,7 @@ msgstr "Información del copyright o otros derechos en este elemento."
|
|
|
792
819
|
#: helpers/MessageLabels/MessageLabels
|
|
793
820
|
# defaultMessage: Create or delete relations to target
|
|
794
821
|
msgid "Create or delete relations to target"
|
|
795
|
-
msgstr ""
|
|
822
|
+
msgstr "Crear o eliminar relaciones con el destino"
|
|
796
823
|
|
|
797
824
|
#: components/manage/Toolbar/More
|
|
798
825
|
# defaultMessage: Create working copy
|
|
@@ -848,7 +875,7 @@ msgid "Cut"
|
|
|
848
875
|
msgstr "Cortar"
|
|
849
876
|
|
|
850
877
|
#: helpers/MessageLabels/MessageLabels
|
|
851
|
-
# defaultMessage:
|
|
878
|
+
# defaultMessage: Cut blocks
|
|
852
879
|
msgid "Cut blocks"
|
|
853
880
|
msgstr "Cortar bloques"
|
|
854
881
|
|
|
@@ -955,7 +982,7 @@ msgid "Delete action"
|
|
|
955
982
|
msgstr "Eliminar acción"
|
|
956
983
|
|
|
957
984
|
#: helpers/MessageLabels/MessageLabels
|
|
958
|
-
# defaultMessage:
|
|
985
|
+
# defaultMessage: Delete blocks
|
|
959
986
|
msgid "Delete blocks"
|
|
960
987
|
msgstr "Eliminar bloques"
|
|
961
988
|
|
|
@@ -974,6 +1001,16 @@ msgstr "Eliminar condición"
|
|
|
974
1001
|
msgid "Delete row"
|
|
975
1002
|
msgstr "Eliminar fila"
|
|
976
1003
|
|
|
1004
|
+
#: components/manage/Contents/Contents
|
|
1005
|
+
# defaultMessage: Delete selected items?
|
|
1006
|
+
msgid "Delete selected items?"
|
|
1007
|
+
msgstr "¿Eliminar elementos seleccionados?"
|
|
1008
|
+
|
|
1009
|
+
#: components/manage/Contents/Contents
|
|
1010
|
+
# defaultMessage: Delete this item?
|
|
1011
|
+
msgid "Delete this item?"
|
|
1012
|
+
msgstr "¿Eliminar este elemento?"
|
|
1013
|
+
|
|
977
1014
|
#: components/manage/Controlpanels/Rules/Rules
|
|
978
1015
|
# defaultMessage: Deleted
|
|
979
1016
|
msgid "Deleted"
|
|
@@ -1042,11 +1079,6 @@ msgstr "Distribuido bajo la {license}."
|
|
|
1042
1079
|
msgid "Divide each row into separate cells"
|
|
1043
1080
|
msgstr "Divide cada fila en celdas separadas"
|
|
1044
1081
|
|
|
1045
|
-
#: components/manage/Contents/Contents
|
|
1046
|
-
# defaultMessage: Do you really want to delete the following items?
|
|
1047
|
-
msgid "Do you really want to delete the following items?"
|
|
1048
|
-
msgstr "¿Usted realmente quiere eliminar los siguientes elementos?"
|
|
1049
|
-
|
|
1050
1082
|
#: components/manage/Controlpanels/Groups/GroupsControlpanel
|
|
1051
1083
|
# defaultMessage: Do you really want to delete the group {groupname}?
|
|
1052
1084
|
msgid "Do you really want to delete the group {groupname}?"
|
|
@@ -1089,16 +1121,19 @@ msgid "Drag and drop files from your computer onto this area or click the “Bro
|
|
|
1089
1121
|
msgstr "Arrastre y suelte los archivos desde su computador en esta área o haga clic al botón “Seleccionar”."
|
|
1090
1122
|
|
|
1091
1123
|
#: components/manage/Widgets/FileWidget
|
|
1124
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1092
1125
|
# defaultMessage: Drop file here to replace the existing file
|
|
1093
1126
|
msgid "Drop file here to replace the existing file"
|
|
1094
1127
|
msgstr "Arrastre aquí el archivo para reemplazar el actual"
|
|
1095
1128
|
|
|
1096
1129
|
#: components/manage/Widgets/FileWidget
|
|
1130
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1097
1131
|
# defaultMessage: Drop file here to upload a new file
|
|
1098
1132
|
msgid "Drop file here to upload a new file"
|
|
1099
1133
|
msgstr "Arrastre aquí el archivo para añadir un nuevo"
|
|
1100
1134
|
|
|
1101
1135
|
#: components/manage/Widgets/FileWidget
|
|
1136
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1102
1137
|
# defaultMessage: Drop files here ...
|
|
1103
1138
|
msgid "Drop files here ..."
|
|
1104
1139
|
msgstr "Arrastrar archivos aquí..."
|
|
@@ -1122,6 +1157,7 @@ msgstr "La dirección de correo electrónico no coincide."
|
|
|
1122
1157
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
1123
1158
|
#: components/manage/Controlpanels/ModerateComments
|
|
1124
1159
|
#: components/manage/Controlpanels/Rules/EditRule
|
|
1160
|
+
#: components/manage/Controlpanels/Users/RenderUsers
|
|
1125
1161
|
#: components/manage/Toolbar/Toolbar
|
|
1126
1162
|
#: components/manage/Widgets/FormFieldWrapper
|
|
1127
1163
|
#: components/manage/Widgets/ObjectBrowserWidget
|
|
@@ -1264,15 +1300,20 @@ msgstr "Introduzca su correo electrónico para verificar."
|
|
|
1264
1300
|
|
|
1265
1301
|
#: components/manage/Preferences/ChangePassword
|
|
1266
1302
|
#: components/theme/PasswordReset/PasswordReset
|
|
1267
|
-
# defaultMessage: Enter your new password. Minimum
|
|
1268
|
-
msgid "Enter your new password. Minimum
|
|
1269
|
-
msgstr "Introduzca su nueva contraseña. Mínimo
|
|
1303
|
+
# defaultMessage: Enter your new password. Minimum 8 characters.
|
|
1304
|
+
msgid "Enter your new password. Minimum 8 characters."
|
|
1305
|
+
msgstr "Introduzca su nueva contraseña. Mínimo 8 caracteres."
|
|
1270
1306
|
|
|
1271
1307
|
#: components/theme/PasswordReset/PasswordReset
|
|
1272
1308
|
# defaultMessage: Enter your username for verification.
|
|
1273
1309
|
msgid "Enter your username for verification."
|
|
1274
1310
|
msgstr "Introduzca su nombre de usuario para verificar."
|
|
1275
1311
|
|
|
1312
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1313
|
+
# defaultMessage: Entries
|
|
1314
|
+
msgid "Entries"
|
|
1315
|
+
msgstr "Entradas"
|
|
1316
|
+
|
|
1276
1317
|
#: components/manage/Add/Add
|
|
1277
1318
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1278
1319
|
#: components/manage/Controlpanels/ContentTypeSchema
|
|
@@ -1416,7 +1457,7 @@ msgstr "Nombre del archivo"
|
|
|
1416
1457
|
#: helpers/MessageLabels/MessageLabels
|
|
1417
1458
|
# defaultMessage: Filter
|
|
1418
1459
|
msgid "Filter"
|
|
1419
|
-
msgstr ""
|
|
1460
|
+
msgstr "Filtrar"
|
|
1420
1461
|
|
|
1421
1462
|
#: components/manage/Controlpanels/Rules/Rules
|
|
1422
1463
|
# defaultMessage: Filter Rules:
|
|
@@ -1446,7 +1487,7 @@ msgstr "Primero"
|
|
|
1446
1487
|
#: helpers/MessageLabels/MessageLabels
|
|
1447
1488
|
# defaultMessage: Fix relations
|
|
1448
1489
|
msgid "Fix relations"
|
|
1449
|
-
msgstr ""
|
|
1490
|
+
msgstr "Corregir relaciones"
|
|
1450
1491
|
|
|
1451
1492
|
#: components/manage/Blocks/Table/Edit
|
|
1452
1493
|
# defaultMessage: Fixed width columns
|
|
@@ -1520,6 +1561,11 @@ msgstr "Rol global"
|
|
|
1520
1561
|
msgid "Google Maps Embedded Block"
|
|
1521
1562
|
msgstr "Bloque embebido de Google Maps"
|
|
1522
1563
|
|
|
1564
|
+
#: components/manage/Blocks/Grid/schema
|
|
1565
|
+
# defaultMessage: Grid
|
|
1566
|
+
msgid "Grid"
|
|
1567
|
+
msgstr "Grid"
|
|
1568
|
+
|
|
1523
1569
|
#: components/manage/Sharing/Sharing
|
|
1524
1570
|
# defaultMessage: Group
|
|
1525
1571
|
msgid "Group"
|
|
@@ -1558,6 +1604,7 @@ msgstr "Los grupos son colecciones lógicas de usuarios, como departamentos o un
|
|
|
1558
1604
|
msgid "Header cell"
|
|
1559
1605
|
msgstr "Celda de cabecera"
|
|
1560
1606
|
|
|
1607
|
+
#: components/manage/Blocks/Grid/schema
|
|
1561
1608
|
#: components/manage/Blocks/Listing/schema
|
|
1562
1609
|
#: components/manage/Blocks/Search/schema
|
|
1563
1610
|
# defaultMessage: Headline
|
|
@@ -1584,6 +1631,16 @@ msgstr "Ocultar respuestas"
|
|
|
1584
1631
|
msgid "Hide facet?"
|
|
1585
1632
|
msgstr "¿Ocultar la faceta?"
|
|
1586
1633
|
|
|
1634
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1635
|
+
# defaultMessage: Hide filters
|
|
1636
|
+
msgid "Hide filters"
|
|
1637
|
+
msgstr "Ocultar filtros"
|
|
1638
|
+
|
|
1639
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1640
|
+
# defaultMessage: Hide title
|
|
1641
|
+
msgid "Hide title"
|
|
1642
|
+
msgstr "Ocultar título"
|
|
1643
|
+
|
|
1587
1644
|
#: components/manage/History/History
|
|
1588
1645
|
#: components/manage/Toolbar/More
|
|
1589
1646
|
# defaultMessage: History
|
|
@@ -1655,7 +1712,7 @@ msgstr "Galería de imágenes"
|
|
|
1655
1712
|
#: components/manage/Blocks/Teaser/schema
|
|
1656
1713
|
# defaultMessage: Image override
|
|
1657
1714
|
msgid "Image override"
|
|
1658
|
-
msgstr ""
|
|
1715
|
+
msgstr "Reemplazar imagen"
|
|
1659
1716
|
|
|
1660
1717
|
#: components/manage/Blocks/Image/schema
|
|
1661
1718
|
# defaultMessage: Image size
|
|
@@ -1718,7 +1775,7 @@ msgstr "Insertar fila antes"
|
|
|
1718
1775
|
#: helpers/MessageLabels/MessageLabels
|
|
1719
1776
|
# defaultMessage: Inspect relations
|
|
1720
1777
|
msgid "Inspect relations"
|
|
1721
|
-
msgstr ""
|
|
1778
|
+
msgstr "Inspeccionar relaciones"
|
|
1722
1779
|
|
|
1723
1780
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1724
1781
|
# defaultMessage: Install
|
|
@@ -1764,7 +1821,12 @@ msgstr "Intervalo anual"
|
|
|
1764
1821
|
#: components/theme/View/RenderBlocks
|
|
1765
1822
|
# defaultMessage: Invalid block - Will be removed on saving
|
|
1766
1823
|
msgid "Invalid Block"
|
|
1767
|
-
msgstr "Bloque no válido"
|
|
1824
|
+
msgstr "Bloque no válido: se eliminará al guardar"
|
|
1825
|
+
|
|
1826
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1827
|
+
# defaultMessage: 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.
|
|
1828
|
+
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."
|
|
1829
|
+
msgstr "No está permitido definir la contraseña y solicitar el envío del mensaje de restablecimiento de contraseña por correo electrónico. Debes seleccionar uno de ellos."
|
|
1768
1830
|
|
|
1769
1831
|
#: components/manage/Widgets/QuerystringWidget
|
|
1770
1832
|
# defaultMessage: Item batch size
|
|
@@ -1813,11 +1875,6 @@ msgstr "Elementos"
|
|
|
1813
1875
|
msgid "Items must be unique."
|
|
1814
1876
|
msgstr "Los elementos deben ser únicos."
|
|
1815
1877
|
|
|
1816
|
-
#: components/manage/Contents/Contents
|
|
1817
|
-
# defaultMessage: Items to be deleted:
|
|
1818
|
-
msgid "Items to be deleted:"
|
|
1819
|
-
msgstr "Elementos a eliminar:"
|
|
1820
|
-
|
|
1821
1878
|
#: components/manage/Blocks/Search/schema
|
|
1822
1879
|
# defaultMessage: Label
|
|
1823
1880
|
msgid "Label"
|
|
@@ -1880,11 +1937,21 @@ msgstr "Imagen principal"
|
|
|
1880
1937
|
msgid "Left"
|
|
1881
1938
|
msgstr "Izquierda"
|
|
1882
1939
|
|
|
1940
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1941
|
+
# defaultMessage: Less filters
|
|
1942
|
+
msgid "Less filters"
|
|
1943
|
+
msgstr "Menos filtros"
|
|
1944
|
+
|
|
1883
1945
|
#: components/manage/Toolbar/Toolbar
|
|
1884
1946
|
# defaultMessage: Link
|
|
1885
1947
|
msgid "Link"
|
|
1886
1948
|
msgstr "Enlace"
|
|
1887
1949
|
|
|
1950
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1951
|
+
# defaultMessage: Anchor link copied to the clipboard
|
|
1952
|
+
msgid "Link copied to clipboard"
|
|
1953
|
+
msgstr "Enlace copiado al portapapeles"
|
|
1954
|
+
|
|
1888
1955
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1889
1956
|
#: components/manage/Blocks/Listing/schema
|
|
1890
1957
|
# defaultMessage: Link more
|
|
@@ -1896,6 +1963,11 @@ msgstr "Enlace más"
|
|
|
1896
1963
|
msgid "Link redirect view"
|
|
1897
1964
|
msgstr "Vista de redirección del enlace"
|
|
1898
1965
|
|
|
1966
|
+
#: components/manage/Blocks/Image/schema
|
|
1967
|
+
# defaultMessage: Link settings
|
|
1968
|
+
msgid "Link settings"
|
|
1969
|
+
msgstr "Configuración de enlace"
|
|
1970
|
+
|
|
1899
1971
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1900
1972
|
#: components/manage/Blocks/Listing/schema
|
|
1901
1973
|
# defaultMessage: Link Title
|
|
@@ -1915,6 +1987,17 @@ msgstr "Enlazar a"
|
|
|
1915
1987
|
msgid "Link translation for"
|
|
1916
1988
|
msgstr "Enlazar traducción de"
|
|
1917
1989
|
|
|
1990
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
1991
|
+
# defaultMessage: Linking this item with hyperlink in text
|
|
1992
|
+
msgid "Linking this item with hyperlink in text"
|
|
1993
|
+
msgstr "Vincular este elemento con un hipervínculo en el texto"
|
|
1994
|
+
|
|
1995
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
1996
|
+
#: components/manage/Toolbar/More
|
|
1997
|
+
# defaultMessage: Links and references
|
|
1998
|
+
msgid "Links and references"
|
|
1999
|
+
msgstr "Enlaces y referencias"
|
|
2000
|
+
|
|
1918
2001
|
#: components/manage/Blocks/Listing/schema
|
|
1919
2002
|
# defaultMessage: Listing
|
|
1920
2003
|
msgid "Listing"
|
|
@@ -2010,7 +2093,7 @@ msgstr "¿Añadidos de forma manual o automática?"
|
|
|
2010
2093
|
#: helpers/MessageLabels/MessageLabels
|
|
2011
2094
|
# defaultMessage: Many relations found. Please search.
|
|
2012
2095
|
msgid "Many relations found. Please search."
|
|
2013
|
-
msgstr ""
|
|
2096
|
+
msgstr "Muchas relaciones encontradas. Por favor, busque."
|
|
2014
2097
|
|
|
2015
2098
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2016
2099
|
#: components/manage/Blocks/Maps/schema
|
|
@@ -2089,6 +2172,11 @@ msgstr "Mensualmente"
|
|
|
2089
2172
|
msgid "More"
|
|
2090
2173
|
msgstr "Más"
|
|
2091
2174
|
|
|
2175
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
2176
|
+
# defaultMessage: More filters
|
|
2177
|
+
msgid "More filters"
|
|
2178
|
+
msgstr "Más filtros"
|
|
2179
|
+
|
|
2092
2180
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
2093
2181
|
# defaultMessage: More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide.
|
|
2094
2182
|
msgid "More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide."
|
|
@@ -2172,7 +2260,6 @@ msgid "News item view"
|
|
|
2172
2260
|
msgstr "Vista de noticia"
|
|
2173
2261
|
|
|
2174
2262
|
#: components/manage/Contents/ContentsItem
|
|
2175
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
2176
2263
|
#: components/manage/Controlpanels/ContentTypes
|
|
2177
2264
|
# defaultMessage: No
|
|
2178
2265
|
msgid "No"
|
|
@@ -2206,7 +2293,7 @@ msgstr "No se han encontrado complementos"
|
|
|
2206
2293
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
2207
2294
|
# defaultMessage: No broken relations found.
|
|
2208
2295
|
msgid "No broken relations found."
|
|
2209
|
-
msgstr ""
|
|
2296
|
+
msgstr "No se encontraron relaciones rotas."
|
|
2210
2297
|
|
|
2211
2298
|
#: components/theme/RequestTimeout/RequestTimeout
|
|
2212
2299
|
# defaultMessage: There is no connection to the server, due to a timeout o no network connection.
|
|
@@ -2243,6 +2330,11 @@ msgstr "No hay elementos en esta carpeta."
|
|
|
2243
2330
|
msgid "No items selected"
|
|
2244
2331
|
msgstr "No se han seleccionado elementos"
|
|
2245
2332
|
|
|
2333
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2334
|
+
# defaultMessage: No links to this item found.
|
|
2335
|
+
msgid "No links to this item found."
|
|
2336
|
+
msgstr "No se encontraron enlaces a este elemento."
|
|
2337
|
+
|
|
2246
2338
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2247
2339
|
# defaultMessage: No map selected
|
|
2248
2340
|
msgid "No map selected"
|
|
@@ -2264,7 +2356,7 @@ msgstr "No hay opciones"
|
|
|
2264
2356
|
#: helpers/MessageLabels/MessageLabels
|
|
2265
2357
|
# defaultMessage: No relation found
|
|
2266
2358
|
msgid "No relation found"
|
|
2267
|
-
msgstr ""
|
|
2359
|
+
msgstr "No se encontró relación"
|
|
2268
2360
|
|
|
2269
2361
|
#: components/manage/BlockChooser/BlockChooser
|
|
2270
2362
|
#: components/theme/Search/Search
|
|
@@ -2366,11 +2458,21 @@ msgstr "Abrir menú"
|
|
|
2366
2458
|
msgid "Open object browser"
|
|
2367
2459
|
msgstr "Abrir buscador de objetos"
|
|
2368
2460
|
|
|
2461
|
+
#: components/manage/Blocks/ToC/Schema
|
|
2462
|
+
# defaultMessage: Ordered
|
|
2463
|
+
msgid "Ordered"
|
|
2464
|
+
msgstr "Ordenado"
|
|
2465
|
+
|
|
2369
2466
|
#: components/manage/Blocks/LeadImage/LeadImageSidebar
|
|
2370
2467
|
# defaultMessage: Origin
|
|
2371
2468
|
msgid "Origin"
|
|
2372
2469
|
msgstr "Origen"
|
|
2373
2470
|
|
|
2471
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2472
|
+
# defaultMessage: Overview of relations of all content items
|
|
2473
|
+
msgid "Overview of relations of all content items"
|
|
2474
|
+
msgstr "Descripción general de las relaciones de todos los elementos de contenido."
|
|
2475
|
+
|
|
2374
2476
|
#: components/manage/Toolbar/Toolbar
|
|
2375
2477
|
# defaultMessage: Page
|
|
2376
2478
|
msgid "Page"
|
|
@@ -2405,7 +2507,7 @@ msgid "Paste"
|
|
|
2405
2507
|
msgstr "Pegar"
|
|
2406
2508
|
|
|
2407
2509
|
#: helpers/MessageLabels/MessageLabels
|
|
2408
|
-
# defaultMessage:
|
|
2510
|
+
# defaultMessage: Paste blocks
|
|
2409
2511
|
msgid "Paste blocks"
|
|
2410
2512
|
msgstr "Pegar bloques"
|
|
2411
2513
|
|
|
@@ -2449,7 +2551,7 @@ msgstr "Las personas responsables de la creación del contenido de este elemento
|
|
|
2449
2551
|
#: components/manage/Blocks/Teaser/DefaultBody
|
|
2450
2552
|
# defaultMessage: Please choose an existing content as source for this element
|
|
2451
2553
|
msgid "Please choose an existing content as source for this element"
|
|
2452
|
-
msgstr ""
|
|
2554
|
+
msgstr "Elija un contenido existente como origen para este elemento"
|
|
2453
2555
|
|
|
2454
2556
|
#: components/manage/Controlpanels/Controlpanels
|
|
2455
2557
|
# defaultMessage: Please continue with the upgrade.
|
|
@@ -2487,20 +2589,15 @@ msgid "Please upgrade to plone.restapi >= 8.24.0."
|
|
|
2487
2589
|
msgstr "Actualice plone.restapi a la versión 8.24.0 o superior."
|
|
2488
2590
|
|
|
2489
2591
|
#: components/manage/Controlpanels/Relations/Relations
|
|
2490
|
-
# defaultMessage: Please upgrade to plone.restapi >= 8.
|
|
2491
|
-
msgid "Please upgrade to plone.restapi >= 8.
|
|
2492
|
-
msgstr ""
|
|
2592
|
+
# defaultMessage: Please upgrade to plone.restapi >= 8.39.0.
|
|
2593
|
+
msgid "Please upgrade to plone.restapi >= 8.39.0."
|
|
2594
|
+
msgstr "Por favor, actualice a plone.restapi >= 8.39.0."
|
|
2493
2595
|
|
|
2494
2596
|
#: components/theme/Footer/Footer
|
|
2495
2597
|
# defaultMessage: Plone Foundation
|
|
2496
2598
|
msgid "Plone Foundation"
|
|
2497
2599
|
msgstr "Fundación Plone"
|
|
2498
2600
|
|
|
2499
|
-
#: components/theme/Logo/Logo
|
|
2500
|
-
# defaultMessage: Plone Site
|
|
2501
|
-
msgid "Plone Site"
|
|
2502
|
-
msgstr "Sitio Plone"
|
|
2503
|
-
|
|
2504
2601
|
#: components/theme/Footer/Footer
|
|
2505
2602
|
# defaultMessage: Plone{reg} Open Source CMS/WCM
|
|
2506
2603
|
msgid "Plone{reg} Open Source CMS/WCM"
|
|
@@ -2516,11 +2613,6 @@ msgstr "Posición cambiada"
|
|
|
2516
2613
|
msgid "Possible values"
|
|
2517
2614
|
msgstr "Valores posibles"
|
|
2518
2615
|
|
|
2519
|
-
#: components/manage/Contents/Contents
|
|
2520
|
-
# defaultMessage: Potential link breakage
|
|
2521
|
-
msgid "Potential link breakage"
|
|
2522
|
-
msgstr "Posible ruptura de enlace"
|
|
2523
|
-
|
|
2524
2616
|
#: components/theme/Footer/Footer
|
|
2525
2617
|
# defaultMessage: Powered by Plone & Python
|
|
2526
2618
|
msgid "Powered by Plone & Python"
|
|
@@ -2588,7 +2680,7 @@ msgstr "Leer Más..."
|
|
|
2588
2680
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2589
2681
|
# defaultMessage: Read only for this type of relation.
|
|
2590
2682
|
msgid "Read only for this type of relation."
|
|
2591
|
-
msgstr ""
|
|
2683
|
+
msgstr "Solo lectura para este tipo de relación."
|
|
2592
2684
|
|
|
2593
2685
|
#: components/manage/Contents/Contents
|
|
2594
2686
|
# defaultMessage: Rearrange items by…
|
|
@@ -2620,6 +2712,16 @@ msgstr "Rehacer"
|
|
|
2620
2712
|
msgid "Reduce complexity"
|
|
2621
2713
|
msgstr "Reducir complejidad"
|
|
2622
2714
|
|
|
2715
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2716
|
+
# defaultMessage: Referencing this item as related item
|
|
2717
|
+
msgid "Referencing this item as related item"
|
|
2718
|
+
msgstr "Hacer referencia a este elemento como elemento relacionado"
|
|
2719
|
+
|
|
2720
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2721
|
+
# defaultMessage: Referencing this item with {relationship}
|
|
2722
|
+
msgid "Referencing this item with {relationship}"
|
|
2723
|
+
msgstr "Hacer referencia a este elemento con {relationship}"
|
|
2724
|
+
|
|
2623
2725
|
#: components/theme/Anontools/Anontools
|
|
2624
2726
|
#: components/theme/Login/Login
|
|
2625
2727
|
#: components/theme/Register/Register
|
|
@@ -2636,24 +2738,24 @@ msgstr "Formulario de registro"
|
|
|
2636
2738
|
#: helpers/MessageLabels/MessageLabels
|
|
2637
2739
|
# defaultMessage: Relation
|
|
2638
2740
|
msgid "Relation name"
|
|
2639
|
-
msgstr ""
|
|
2741
|
+
msgstr "Relación"
|
|
2640
2742
|
|
|
2641
2743
|
#: components/manage/Controlpanels/Controlpanels
|
|
2642
2744
|
#: components/manage/Controlpanels/Relations/Relations
|
|
2643
2745
|
#: helpers/MessageLabels/MessageLabels
|
|
2644
2746
|
# defaultMessage: Relations
|
|
2645
2747
|
msgid "Relations"
|
|
2646
|
-
msgstr ""
|
|
2748
|
+
msgstr "Relaciones"
|
|
2647
2749
|
|
|
2648
2750
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2649
2751
|
# defaultMessage: Relations are editable with plone.api >= 2.0.3.
|
|
2650
2752
|
msgid "Relations are editable with plone.api >= 2.0.3."
|
|
2651
|
-
msgstr ""
|
|
2753
|
+
msgstr "Las relaciones son editables con plone.api >= 2.0.3."
|
|
2652
2754
|
|
|
2653
2755
|
#: helpers/MessageLabels/MessageLabels
|
|
2654
2756
|
# defaultMessage: Relations updated
|
|
2655
2757
|
msgid "Relations updated"
|
|
2656
|
-
msgstr ""
|
|
2758
|
+
msgstr "Relaciones actualizadas"
|
|
2657
2759
|
|
|
2658
2760
|
#: components/theme/Search/Search
|
|
2659
2761
|
# defaultMessage: Relevance
|
|
@@ -2665,6 +2767,11 @@ msgstr "Relevancia"
|
|
|
2665
2767
|
msgid "Remove"
|
|
2666
2768
|
msgstr "Eliminar"
|
|
2667
2769
|
|
|
2770
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2771
|
+
# defaultMessage: Remove element {index}
|
|
2772
|
+
msgid "Remove element {index}"
|
|
2773
|
+
msgstr "Eliminar elemento {index}"
|
|
2774
|
+
|
|
2668
2775
|
#: components/manage/Widgets/ObjectListWidget
|
|
2669
2776
|
# defaultMessage: Remove item
|
|
2670
2777
|
msgid "Remove item"
|
|
@@ -2727,6 +2834,7 @@ msgid "Repeat on"
|
|
|
2727
2834
|
msgstr "Repetir el"
|
|
2728
2835
|
|
|
2729
2836
|
#: components/manage/Widgets/FileWidget
|
|
2837
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
2730
2838
|
# defaultMessage: Replace existing file
|
|
2731
2839
|
msgid "Replace existing file"
|
|
2732
2840
|
msgstr "Sustituir el archivo actual"
|
|
@@ -2749,6 +2857,11 @@ msgstr "Obligatorio"
|
|
|
2749
2857
|
msgid "Required input is missing."
|
|
2750
2858
|
msgstr "Un campo requerido esta sin tomar en cuenta."
|
|
2751
2859
|
|
|
2860
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2861
|
+
# defaultMessage: Reset element {index}
|
|
2862
|
+
msgid "Reset element {index}"
|
|
2863
|
+
msgstr "Restablecer elemento {index}"
|
|
2864
|
+
|
|
2752
2865
|
#: components/manage/Widgets/VocabularyTermsWidget
|
|
2753
2866
|
# defaultMessage: Reset title
|
|
2754
2867
|
msgid "Reset term title"
|
|
@@ -2757,7 +2870,7 @@ msgstr "Limpiar el título del término"
|
|
|
2757
2870
|
#: components/manage/Blocks/Teaser/Data
|
|
2758
2871
|
# defaultMessage: Reset the block
|
|
2759
2872
|
msgid "Reset the block"
|
|
2760
|
-
msgstr ""
|
|
2873
|
+
msgstr "Restablecer el bloque"
|
|
2761
2874
|
|
|
2762
2875
|
#: components/manage/Widgets/QuerystringWidget
|
|
2763
2876
|
# defaultMessage: Results limit
|
|
@@ -2785,6 +2898,7 @@ msgid "Revert to this revision"
|
|
|
2785
2898
|
msgstr "Revertir a esta revisión"
|
|
2786
2899
|
|
|
2787
2900
|
#: components/manage/Contents/Contents
|
|
2901
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2788
2902
|
# defaultMessage: Review state
|
|
2789
2903
|
msgid "Review state"
|
|
2790
2904
|
msgstr "Estado"
|
|
@@ -2866,7 +2980,7 @@ msgstr "Guardado"
|
|
|
2866
2980
|
#: components/manage/Contents/ContentsItem
|
|
2867
2981
|
# defaultMessage: Scheduled
|
|
2868
2982
|
msgid "Scheduled"
|
|
2869
|
-
msgstr ""
|
|
2983
|
+
msgstr "Programado"
|
|
2870
2984
|
|
|
2871
2985
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2872
2986
|
# defaultMessage: Schema
|
|
@@ -2884,6 +2998,7 @@ msgstr "Actualización de esquema"
|
|
|
2884
2998
|
#: components/manage/Blocks/Search/layout/RightColumnFacets
|
|
2885
2999
|
#: components/manage/Blocks/Search/layout/TopSideFacets
|
|
2886
3000
|
#: components/manage/Blocks/Search/schema
|
|
3001
|
+
#: components/manage/Sharing/Sharing
|
|
2887
3002
|
#: components/theme/Search/Search
|
|
2888
3003
|
#: components/theme/SearchWidget/SearchWidget
|
|
2889
3004
|
# defaultMessage: Search
|
|
@@ -2944,12 +3059,12 @@ msgstr "Resultados de búsqueda para {term}"
|
|
|
2944
3059
|
#: helpers/MessageLabels/MessageLabels
|
|
2945
3060
|
# defaultMessage: Search sources by title or path
|
|
2946
3061
|
msgid "Search sources by title or path"
|
|
2947
|
-
msgstr ""
|
|
3062
|
+
msgstr "Buscar orígenes por título o ruta"
|
|
2948
3063
|
|
|
2949
3064
|
#: helpers/MessageLabels/MessageLabels
|
|
2950
3065
|
# defaultMessage: Search targets by title or path
|
|
2951
3066
|
msgid "Search targets by title or path"
|
|
2952
|
-
msgstr ""
|
|
3067
|
+
msgstr "Buscar destinos por título o ruta"
|
|
2953
3068
|
|
|
2954
3069
|
#: helpers/MessageLabels/MessageLabels
|
|
2955
3070
|
# defaultMessage: Search users…
|
|
@@ -2992,7 +3107,7 @@ msgstr "Seleccionar columnas a mostrar"
|
|
|
2992
3107
|
#: helpers/MessageLabels/MessageLabels
|
|
2993
3108
|
# defaultMessage: Select relation
|
|
2994
3109
|
msgid "Select relation"
|
|
2995
|
-
msgstr ""
|
|
3110
|
+
msgstr "Seleccionar relación"
|
|
2996
3111
|
|
|
2997
3112
|
#: components/manage/Contents/ContentsWorkflowModal
|
|
2998
3113
|
# defaultMessage: Select the transition to be used for modifying the items state.
|
|
@@ -3002,7 +3117,7 @@ msgstr "Seleccione la transición a ser efectuada al cambiar el estado del conte
|
|
|
3002
3117
|
#: helpers/MessageLabels/MessageLabels
|
|
3003
3118
|
# defaultMessage: Selected
|
|
3004
3119
|
msgid "Selected"
|
|
3005
|
-
msgstr ""
|
|
3120
|
+
msgstr "Seleccionado"
|
|
3006
3121
|
|
|
3007
3122
|
#: components/manage/Widgets/RecurrenceWidget/Occurences
|
|
3008
3123
|
# defaultMessage: Selected dates
|
|
@@ -3044,6 +3159,11 @@ msgstr "Enviar"
|
|
|
3044
3159
|
msgid "Send a confirmation mail with a link to set the password."
|
|
3045
3160
|
msgstr "Enviar un correo de confirmación con un enlace para establecer la contraseña."
|
|
3046
3161
|
|
|
3162
|
+
#: components/theme/Error/ServerError
|
|
3163
|
+
# defaultMessage: Server Error
|
|
3164
|
+
msgid "Server Error"
|
|
3165
|
+
msgstr "Error del Servidor"
|
|
3166
|
+
|
|
3047
3167
|
#: components/theme/PasswordReset/PasswordReset
|
|
3048
3168
|
# defaultMessage: Set my password
|
|
3049
3169
|
msgid "Set my password"
|
|
@@ -3098,6 +3218,11 @@ msgstr "Mostrar todos"
|
|
|
3098
3218
|
msgid "Show Replies"
|
|
3099
3219
|
msgstr "Mostrar respuestas"
|
|
3100
3220
|
|
|
3221
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
3222
|
+
# defaultMessage: Show filters
|
|
3223
|
+
msgid "Show filters"
|
|
3224
|
+
msgstr "Mostrar filtros"
|
|
3225
|
+
|
|
3101
3226
|
#: helpers/MessageLabels/MessageLabels
|
|
3102
3227
|
# defaultMessage: Show groups of users below
|
|
3103
3228
|
msgid "Show groups of users below"
|
|
@@ -3111,12 +3236,12 @@ msgstr "Mostrar elemento"
|
|
|
3111
3236
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3112
3237
|
# defaultMessage: Show potential sources. Not only objects that are source of some relation.
|
|
3113
3238
|
msgid "Show potential sources. Not only objects that are source of some relation."
|
|
3114
|
-
msgstr ""
|
|
3239
|
+
msgstr "Mostrar orígenes potenciales. No solo objetos que son orígenes de alguna relación."
|
|
3115
3240
|
|
|
3116
3241
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3117
3242
|
# defaultMessage: Show potential targets. Not only objects that are target of some relation.
|
|
3118
3243
|
msgid "Show potential targets. Not only objects that are target of some relation."
|
|
3119
|
-
msgstr ""
|
|
3244
|
+
msgstr "Mostrar destinos potenciales. No solo objetos que son destino de alguna relación."
|
|
3120
3245
|
|
|
3121
3246
|
#: components/manage/Blocks/Search/schema
|
|
3122
3247
|
# defaultMessage: Show search button?
|
|
@@ -3153,11 +3278,6 @@ msgstr "Contraer barra de herramientas"
|
|
|
3153
3278
|
msgid "Sign in to start session"
|
|
3154
3279
|
msgstr "Acceda para iniciar sesión"
|
|
3155
3280
|
|
|
3156
|
-
#: components/theme/Logo/Logo
|
|
3157
|
-
# defaultMessage: Site
|
|
3158
|
-
msgid "Site"
|
|
3159
|
-
msgstr "Sitio"
|
|
3160
|
-
|
|
3161
3281
|
#: components/theme/NotFound/NotFound
|
|
3162
3282
|
#: components/theme/Unauthorized/Unauthorized
|
|
3163
3283
|
# defaultMessage: Site Administration
|
|
@@ -3185,10 +3305,20 @@ msgstr "Tamaño: {size}"
|
|
|
3185
3305
|
msgid "Small"
|
|
3186
3306
|
msgstr "Pequeño"
|
|
3187
3307
|
|
|
3308
|
+
#: components/manage/Contents/Contents
|
|
3309
|
+
# defaultMessage: Some items are also a folder.
|
|
3310
|
+
msgid "Some items are also a folder."
|
|
3311
|
+
msgstr "Algunos elementos también son una carpeta."
|
|
3312
|
+
|
|
3313
|
+
#: components/manage/Contents/Contents
|
|
3314
|
+
# defaultMessage: Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken.
|
|
3315
|
+
msgid "Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken."
|
|
3316
|
+
msgstr "Algunos elementos están referenciados por otros contenidos. Al eliminarlos, {brokenReferences} {variation} se romperá."
|
|
3317
|
+
|
|
3188
3318
|
#: components/manage/Controlpanels/Relations/Relations
|
|
3189
3319
|
# defaultMessage: Some relations are broken. Please fix.
|
|
3190
3320
|
msgid "Some relations are broken. Please fix."
|
|
3191
|
-
msgstr ""
|
|
3321
|
+
msgstr "Algunas relaciones están rotas. Por favor, arréglelas."
|
|
3192
3322
|
|
|
3193
3323
|
#: error
|
|
3194
3324
|
# defaultMessage: Sorry, something went wrong with your request
|
|
@@ -3228,7 +3358,7 @@ msgid "Sorted"
|
|
|
3228
3358
|
msgstr "Ordenado"
|
|
3229
3359
|
|
|
3230
3360
|
#: components/manage/Blocks/HTML/Edit
|
|
3231
|
-
#: components/manage/
|
|
3361
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3232
3362
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3233
3363
|
# defaultMessage: Source
|
|
3234
3364
|
msgid "Source"
|
|
@@ -3272,6 +3402,11 @@ msgstr "Estado"
|
|
|
3272
3402
|
msgid "Status"
|
|
3273
3403
|
msgstr "Estado"
|
|
3274
3404
|
|
|
3405
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3406
|
+
# defaultMessage: Sticky
|
|
3407
|
+
msgid "Sticky"
|
|
3408
|
+
msgstr "Fija"
|
|
3409
|
+
|
|
3275
3410
|
#: components/manage/Multilingual/CompareLanguages
|
|
3276
3411
|
# defaultMessage: Stop compare
|
|
3277
3412
|
msgid "Stop compare"
|
|
@@ -3373,6 +3508,7 @@ msgstr "Categoría a remover"
|
|
|
3373
3508
|
|
|
3374
3509
|
#: components/manage/Blocks/Teaser/schema
|
|
3375
3510
|
#: components/manage/Controlpanels/Aliases
|
|
3511
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3376
3512
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3377
3513
|
# defaultMessage: Target
|
|
3378
3514
|
msgid "Target"
|
|
@@ -3401,7 +3537,7 @@ msgstr "El camino de destino debe comenzar con /."
|
|
|
3401
3537
|
#: components/manage/Blocks/Teaser/schema
|
|
3402
3538
|
# defaultMessage: Teaser
|
|
3403
3539
|
msgid "Teaser"
|
|
3404
|
-
msgstr ""
|
|
3540
|
+
msgstr "Destacado"
|
|
3405
3541
|
|
|
3406
3542
|
#: components/manage/Widgets/SchemaWidget
|
|
3407
3543
|
# defaultMessage: Text
|
|
@@ -3493,6 +3629,16 @@ msgstr "La copia de trabajo se ha descartado"
|
|
|
3493
3629
|
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
3494
3630
|
msgstr "El {plonecms} es {copyright} 2000-{current_year} por la {plonefoundation} y amigos."
|
|
3495
3631
|
|
|
3632
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3633
|
+
# defaultMessage: There are no groups with the searched criteria
|
|
3634
|
+
msgid "There are no groups with the searched criteria"
|
|
3635
|
+
msgstr "No hay grupos con los criterios buscados."
|
|
3636
|
+
|
|
3637
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3638
|
+
# defaultMessage: There are no users with the searched criteria
|
|
3639
|
+
msgid "There are no users with the searched criteria"
|
|
3640
|
+
msgstr "No hay usuarios con los criterios buscados"
|
|
3641
|
+
|
|
3496
3642
|
#: components/theme/CorsError/CorsError
|
|
3497
3643
|
# defaultMessage: There is a configuration problem on the backend
|
|
3498
3644
|
msgid "There is a configuration problem on the backend"
|
|
@@ -3519,11 +3665,6 @@ msgstr "Hay algunos errores."
|
|
|
3519
3665
|
msgid "Third"
|
|
3520
3666
|
msgstr "Tercero"
|
|
3521
3667
|
|
|
3522
|
-
#: components/manage/Contents/Contents
|
|
3523
|
-
# defaultMessage: This Page is referenced by the following items:
|
|
3524
|
-
msgid "This Page is referenced by the following items:"
|
|
3525
|
-
msgstr "Esta página está referenciada por los siguientes elementos:"
|
|
3526
|
-
|
|
3527
3668
|
#: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
|
|
3528
3669
|
# defaultMessage: This has an ongoing working copy in {title}
|
|
3529
3670
|
msgid "This has an ongoing working copy in {title}"
|
|
@@ -3539,6 +3680,16 @@ msgstr "Es un nombre reservado y no se puede utilizar"
|
|
|
3539
3680
|
msgid "This is a working copy of {title}"
|
|
3540
3681
|
msgstr "Es una copia de trabajo de {title}"
|
|
3541
3682
|
|
|
3683
|
+
#: components/manage/Contents/Contents
|
|
3684
|
+
# defaultMessage: This item is also a folder.
|
|
3685
|
+
msgid "This item is also a folder."
|
|
3686
|
+
msgstr "Este elemento también es una carpeta."
|
|
3687
|
+
|
|
3688
|
+
#: components/manage/Contents/Contents
|
|
3689
|
+
# defaultMessage: This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken.
|
|
3690
|
+
msgid "This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken."
|
|
3691
|
+
msgstr "Este elemento está referenciado por otros elementos. Al eliminarlo, {brokenReferences} {variation} se romperá."
|
|
3692
|
+
|
|
3542
3693
|
#: components/manage/LockingToastsFactory/LockingToastsFactory
|
|
3543
3694
|
# defaultMessage: This item was locked by {creator} on {date}
|
|
3544
3695
|
msgid "This item was locked by {creator} on {date}"
|
|
@@ -3566,6 +3717,7 @@ msgstr "Hora"
|
|
|
3566
3717
|
|
|
3567
3718
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
3568
3719
|
#: components/manage/Blocks/Teaser/schema
|
|
3720
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3569
3721
|
#: components/manage/Contents/Contents
|
|
3570
3722
|
#: components/manage/Contents/ContentsRenameModal
|
|
3571
3723
|
#: components/manage/Controlpanels/ContentTypes
|
|
@@ -3594,11 +3746,6 @@ msgstr "Número de objetos activos y no activos"
|
|
|
3594
3746
|
msgid "Total comments"
|
|
3595
3747
|
msgstr "Comentarios totales"
|
|
3596
3748
|
|
|
3597
|
-
#: components/manage/Contents/Contents
|
|
3598
|
-
# defaultMessage: Total items to be deleted:
|
|
3599
|
-
msgid "Total items to be deleted:"
|
|
3600
|
-
msgstr ""
|
|
3601
|
-
|
|
3602
3749
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
3603
3750
|
# defaultMessage: Total number of objects in each cache
|
|
3604
3751
|
msgid "Total number of objects in each cache"
|
|
@@ -3657,6 +3804,7 @@ msgid "Triggering event field error. Please select a value"
|
|
|
3657
3804
|
msgstr "Error de campo de evento desencadenante. Por favor seleccione un valor"
|
|
3658
3805
|
|
|
3659
3806
|
#: components/manage/Controlpanels/ContentTypes
|
|
3807
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
3660
3808
|
#: components/manage/Widgets/SchemaWidget
|
|
3661
3809
|
#: components/theme/View/TabularView
|
|
3662
3810
|
# defaultMessage: Type
|
|
@@ -3776,6 +3924,11 @@ msgstr "Desordenadas"
|
|
|
3776
3924
|
msgid "Update"
|
|
3777
3925
|
msgstr "Actualizar"
|
|
3778
3926
|
|
|
3927
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3928
|
+
# defaultMessage: Update User
|
|
3929
|
+
msgid "Update User"
|
|
3930
|
+
msgstr "Actualizar Usuario"
|
|
3931
|
+
|
|
3779
3932
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
3780
3933
|
# defaultMessage: Update installed addons
|
|
3781
3934
|
msgid "Update installed addons"
|
|
@@ -3891,6 +4044,11 @@ msgstr "Nombre de usuario"
|
|
|
3891
4044
|
msgid "User roles updated"
|
|
3892
4045
|
msgstr "Roles de usuario actualizados"
|
|
3893
4046
|
|
|
4047
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4048
|
+
# defaultMessage: User updated successfuly
|
|
4049
|
+
msgid "User updated successfuly"
|
|
4050
|
+
msgstr "Usuario actualizado correctamente"
|
|
4051
|
+
|
|
3894
4052
|
#: helpers/MessageLabels/MessageLabels
|
|
3895
4053
|
# defaultMessage: Username
|
|
3896
4054
|
msgid "Username"
|
|
@@ -3940,6 +4098,11 @@ msgstr "URL del vídeo"
|
|
|
3940
4098
|
msgid "View"
|
|
3941
4099
|
msgstr "Ver"
|
|
3942
4100
|
|
|
4101
|
+
#: components/manage/Contents/Contents
|
|
4102
|
+
# defaultMessage: View broken links list
|
|
4103
|
+
msgid "View broken links list"
|
|
4104
|
+
msgstr "Ver la lista de enlaces rotos"
|
|
4105
|
+
|
|
3943
4106
|
#: components/manage/History/History
|
|
3944
4107
|
# defaultMessage: View changes
|
|
3945
4108
|
msgid "View changes"
|
|
@@ -3990,6 +4153,11 @@ msgstr "Disculpe las molestias, pero la base de datos no está disponible en est
|
|
|
3990
4153
|
msgid "We apologize for the inconvenience, but the page you were trying to access is not at this address. You can use the links below to help you find what you are looking for."
|
|
3991
4154
|
msgstr "Disculpe las molestias, la página a la que está intentando acceder no existe en esta dirección. Puede usar el siguiente enlace para encontrar lo que estaba buscando."
|
|
3992
4155
|
|
|
4156
|
+
#: components/theme/Error/ServerError
|
|
4157
|
+
# defaultMessage: We apologize for the inconvenience, but there was an unexpected error on the server.
|
|
4158
|
+
msgid "We apologize for the inconvenience, but there was an unexpected error on the server."
|
|
4159
|
+
msgstr "Disculpe las molestias, pero se ha producido un error inesperado en el servidor."
|
|
4160
|
+
|
|
3993
4161
|
#: components/theme/Forbidden/Forbidden
|
|
3994
4162
|
# defaultMessage: We apologize for the inconvenience, but you don't have permissions on this resource.
|
|
3995
4163
|
msgid "We apologize for the inconvenience, but you don't have permissions on this resource."
|
|
@@ -4073,7 +4241,6 @@ msgid "Yearly"
|
|
|
4073
4241
|
msgstr "Anualmente"
|
|
4074
4242
|
|
|
4075
4243
|
#: components/manage/Contents/ContentsItem
|
|
4076
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
4077
4244
|
#: components/manage/Controlpanels/ContentTypes
|
|
4078
4245
|
# defaultMessage: Yes
|
|
4079
4246
|
msgid "Yes"
|
|
@@ -4122,7 +4289,7 @@ msgstr "Ha sido salido del sitio."
|
|
|
4122
4289
|
#: components/manage/Controlpanels/Relations/Relations
|
|
4123
4290
|
# defaultMessage: You have not the required permission for this control panel.
|
|
4124
4291
|
msgid "You have not the required permission for this control panel."
|
|
4125
|
-
msgstr ""
|
|
4292
|
+
msgstr "No tiene el permiso requerido para este panel de control."
|
|
4126
4293
|
|
|
4127
4294
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4128
4295
|
# defaultMessage: Your email is required for reset your password.
|
|
@@ -4185,6 +4352,16 @@ msgstr "¿Olvidaste tu contraseña?"
|
|
|
4185
4352
|
msgid "checkboxFacet"
|
|
4186
4353
|
msgstr "Casilla de verificación"
|
|
4187
4354
|
|
|
4355
|
+
#: components/manage/Blocks/Grid/templates
|
|
4356
|
+
# defaultMessage: column
|
|
4357
|
+
msgid "column"
|
|
4358
|
+
msgstr "columna"
|
|
4359
|
+
|
|
4360
|
+
#: components/manage/Blocks/Grid/templates
|
|
4361
|
+
# defaultMessage: columns
|
|
4362
|
+
msgid "columns"
|
|
4363
|
+
msgstr "columnas"
|
|
4364
|
+
|
|
4188
4365
|
#: config/Blocks
|
|
4189
4366
|
# defaultMessage: Common
|
|
4190
4367
|
msgid "common"
|
|
@@ -4195,6 +4372,11 @@ msgstr "Común"
|
|
|
4195
4372
|
msgid "compare_to"
|
|
4196
4373
|
msgstr "Comparar con el idioma"
|
|
4197
4374
|
|
|
4375
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
4376
|
+
# defaultMessage: {countofrelation} broken {countofrelation, plural, one {relation} other {relations}} of type {typeofrelation}
|
|
4377
|
+
msgid "countBrokenRelations"
|
|
4378
|
+
msgstr "{countofrelation} roto {countofrelation, plural, one {relation} other {relations}} de tipo {typeofrelation}"
|
|
4379
|
+
|
|
4198
4380
|
#: config/Blocks
|
|
4199
4381
|
# defaultMessage: Date Range
|
|
4200
4382
|
msgid "daterangeFacet"
|
|
@@ -4275,15 +4457,25 @@ msgstr "Cuándo"
|
|
|
4275
4457
|
msgid "event_where"
|
|
4276
4458
|
msgstr "Dónde"
|
|
4277
4459
|
|
|
4460
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4461
|
+
# defaultMessage: This website does not accept files larger than {limit}
|
|
4462
|
+
msgid "fileTooLarge"
|
|
4463
|
+
msgstr "Este sitio web no acepta archivos de más de {limit}"
|
|
4464
|
+
|
|
4278
4465
|
#: helpers/MessageLabels/MessageLabels
|
|
4279
4466
|
# defaultMessage: flush intIds and rebuild relations
|
|
4280
4467
|
msgid "flush intIds and rebuild relations"
|
|
4281
|
-
msgstr ""
|
|
4468
|
+
msgstr "vaciar intIds y reconstruir relaciones"
|
|
4469
|
+
|
|
4470
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4471
|
+
# defaultMessage: <ul><li>Regenerate intIds (tokens of relations in relation catalog)</li><li>Rebuild relations</li></ul><p>Check the log for details!</p><p><b>Warning</b>: If you have add-ons relying on intIds, you should not flush them.</p>
|
|
4472
|
+
msgid "flushAndRebuildRelationsHints"
|
|
4473
|
+
msgstr "<ul><li>Regenerar intIds (tokens de relaciones en el catálogo de relaciones)</li><li>Reconstruir relaciones</li></ul><p>¡Consulte el registro para obtener más detalles!</p><p><b>Advertencia</b>: Si tiene complementos que dependen de intIds, no debería eliminarlos.</p>"
|
|
4282
4474
|
|
|
4283
4475
|
#: components/manage/Blocks/Teaser/schema
|
|
4284
4476
|
# defaultMessage: Head title
|
|
4285
4477
|
msgid "head_title"
|
|
4286
|
-
msgstr ""
|
|
4478
|
+
msgstr "Encabezado"
|
|
4287
4479
|
|
|
4288
4480
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4289
4481
|
# defaultMessage: Password reset confirmation sent
|
|
@@ -4305,6 +4497,16 @@ msgstr "HTML"
|
|
|
4305
4497
|
msgid "image"
|
|
4306
4498
|
msgstr "Imagen"
|
|
4307
4499
|
|
|
4500
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4501
|
+
# defaultMessage: Clear image
|
|
4502
|
+
msgid "image_block_clear"
|
|
4503
|
+
msgstr "Limpiar imagen"
|
|
4504
|
+
|
|
4505
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4506
|
+
# defaultMessage: Image preview
|
|
4507
|
+
msgid "image_block_preview"
|
|
4508
|
+
msgstr "Vista previa de la imagen"
|
|
4509
|
+
|
|
4308
4510
|
#: helpers/MessageLabels/MessageLabels
|
|
4309
4511
|
# defaultMessage: Input must be integer
|
|
4310
4512
|
msgid "integer"
|
|
@@ -4315,6 +4517,16 @@ msgstr "El valor introducido debe ser un número entero"
|
|
|
4315
4517
|
msgid "intranet"
|
|
4316
4518
|
msgstr "Intranet"
|
|
4317
4519
|
|
|
4520
|
+
#: components/manage/Contents/Contents
|
|
4521
|
+
# defaultMessage: item
|
|
4522
|
+
msgid "item"
|
|
4523
|
+
msgstr "elemento"
|
|
4524
|
+
|
|
4525
|
+
#: components/manage/Contents/Contents
|
|
4526
|
+
# defaultMessage: items
|
|
4527
|
+
msgid "items"
|
|
4528
|
+
msgstr "elementos"
|
|
4529
|
+
|
|
4318
4530
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4319
4531
|
# defaultMessage: My email is
|
|
4320
4532
|
msgid "label_my_email_is"
|
|
@@ -4384,7 +4596,7 @@ msgstr "Más usado"
|
|
|
4384
4596
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
4385
4597
|
# defaultMessage: Found {sources} sources and {targets} targets. Narrow down to {max}!
|
|
4386
4598
|
msgid "narrowDownRelations"
|
|
4387
|
-
msgstr ""
|
|
4599
|
+
msgstr "Se encontraron {sources} orígenes y {targets} destinos. ¡Reduzca a {max}!"
|
|
4388
4600
|
|
|
4389
4601
|
#: components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry
|
|
4390
4602
|
#: components/manage/Blocks/Search/components/ToggleFacetFilterListEntry
|
|
@@ -4442,7 +4654,17 @@ msgstr "Seleccione..."
|
|
|
4442
4654
|
#: helpers/MessageLabels/MessageLabels
|
|
4443
4655
|
# defaultMessage: rebuild relations
|
|
4444
4656
|
msgid "rebuild relations"
|
|
4445
|
-
msgstr ""
|
|
4657
|
+
msgstr "reconstruir relaciones"
|
|
4658
|
+
|
|
4659
|
+
#: components/manage/Contents/Contents
|
|
4660
|
+
# defaultMessage: reference
|
|
4661
|
+
msgid "reference"
|
|
4662
|
+
msgstr "referencia"
|
|
4663
|
+
|
|
4664
|
+
#: components/manage/Contents/Contents
|
|
4665
|
+
# defaultMessage: references
|
|
4666
|
+
msgid "references"
|
|
4667
|
+
msgstr "referencias"
|
|
4446
4668
|
|
|
4447
4669
|
#: components/theme/Search/Search
|
|
4448
4670
|
# defaultMessage: results
|
|
@@ -4472,7 +4694,7 @@ msgstr "a las"
|
|
|
4472
4694
|
#: components/manage/Widgets/RecurrenceWidget/Utils
|
|
4473
4695
|
# defaultMessage: [month] [day], [year]
|
|
4474
4696
|
msgid "rrule_dateFormat"
|
|
4475
|
-
msgstr "
|
|
4697
|
+
msgstr "[day]/[month]/[year]"
|
|
4476
4698
|
|
|
4477
4699
|
#: components/manage/Widgets/RecurrenceWidget/Utils
|
|
4478
4700
|
# defaultMessage: day
|
|
@@ -4647,7 +4869,7 @@ msgstr "Ordenar"
|
|
|
4647
4869
|
#: helpers/MessageLabels/MessageLabels
|
|
4648
4870
|
# defaultMessage: sources path
|
|
4649
4871
|
msgid "sources path"
|
|
4650
|
-
msgstr ""
|
|
4872
|
+
msgstr "ruta de origen"
|
|
4651
4873
|
|
|
4652
4874
|
#: config/Blocks
|
|
4653
4875
|
# defaultMessage: Table
|
|
@@ -4657,7 +4879,7 @@ msgstr "Tabla"
|
|
|
4657
4879
|
#: helpers/MessageLabels/MessageLabels
|
|
4658
4880
|
# defaultMessage: target path
|
|
4659
4881
|
msgid "target path"
|
|
4660
|
-
msgstr ""
|
|
4882
|
+
msgstr "ruta de destino"
|
|
4661
4883
|
|
|
4662
4884
|
#: config/Blocks
|
|
4663
4885
|
# defaultMessage: Text
|
|
@@ -4669,6 +4891,7 @@ msgstr "Texto"
|
|
|
4669
4891
|
msgid "title"
|
|
4670
4892
|
msgstr "Título"
|
|
4671
4893
|
|
|
4894
|
+
#: components/manage/Blocks/ToC/Schema
|
|
4672
4895
|
#: config/Blocks
|
|
4673
4896
|
# defaultMessage: Table of Contents
|
|
4674
4897
|
msgid "toc"
|