@plone/volto 17.0.0-alpha.9 → 17.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 +26 -3
- package/CHANGELOG.md +774 -5
- package/CONTRIBUTING.md +5 -1
- package/README.md +12 -9
- package/RELEASING.md +5 -5
- 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 +281 -53
- package/locales/ca.json +1 -1
- package/locales/de/LC_MESSAGES/volto.po +289 -61
- package/locales/de.json +1 -1
- package/locales/en/LC_MESSAGES/volto.po +279 -51
- package/locales/en.json +1 -1
- package/locales/es/LC_MESSAGES/volto.po +318 -90
- package/locales/es.json +1 -1
- package/locales/eu/LC_MESSAGES/volto.po +280 -52
- package/locales/eu.json +1 -1
- package/locales/fi/LC_MESSAGES/volto.po +280 -52
- package/locales/fi.json +1 -1
- package/locales/fr/LC_MESSAGES/volto.po +281 -53
- package/locales/fr.json +1 -1
- package/locales/it/LC_MESSAGES/volto.po +474 -246
- package/locales/it.json +1 -1
- package/locales/ja/LC_MESSAGES/volto.po +280 -52
- package/locales/ja.json +1 -1
- package/locales/nl/LC_MESSAGES/volto.po +281 -53
- package/locales/nl.json +1 -1
- package/locales/pt/LC_MESSAGES/volto.po +281 -53
- package/locales/pt.json +1 -1
- package/locales/pt_BR/LC_MESSAGES/volto.po +314 -86
- package/locales/pt_BR.json +1 -1
- package/locales/ro/LC_MESSAGES/volto.po +281 -53
- package/locales/ro.json +1 -1
- package/locales/volto.pot +284 -52
- package/locales/zh_CN/LC_MESSAGES/volto.po +281 -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/Blocks/Video/View.test.jsx +1 -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 +80 -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 +6 -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"
|
|
@@ -393,6 +413,11 @@ msgstr "¿Esta seguro de querer eliminar este conjunto de campo incluyendo todos
|
|
|
393
413
|
msgid "Ascending"
|
|
394
414
|
msgstr "Ascendente"
|
|
395
415
|
|
|
416
|
+
#: components/manage/Sharing/Sharing
|
|
417
|
+
# defaultMessage: Assign the {role} role to {entry}
|
|
418
|
+
msgid "Assign the {role} role to {entry}"
|
|
419
|
+
msgstr ""
|
|
420
|
+
|
|
396
421
|
#: components/manage/Controlpanels/Rules/ConfigureRule
|
|
397
422
|
# defaultMessage: Assignments
|
|
398
423
|
msgid "Assignments"
|
|
@@ -427,6 +452,7 @@ msgstr "Reglas de contenido disponibles:"
|
|
|
427
452
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
428
453
|
#: components/manage/Diff/Diff
|
|
429
454
|
#: components/manage/History/History
|
|
455
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
430
456
|
#: components/manage/Multilingual/ManageTranslations
|
|
431
457
|
#: components/manage/Preferences/ChangePassword
|
|
432
458
|
#: components/manage/Preferences/PersonalPreferences
|
|
@@ -469,7 +495,7 @@ msgstr "Barra de ruta"
|
|
|
469
495
|
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
470
496
|
# defaultMessage: Broken relations
|
|
471
497
|
msgid "Broken relations"
|
|
472
|
-
msgstr ""
|
|
498
|
+
msgstr "Relaciones rotas"
|
|
473
499
|
|
|
474
500
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
475
501
|
#: components/manage/Contents/ContentsUploadModal
|
|
@@ -488,11 +514,6 @@ msgstr "Navegue el contenido, arrastre un imagen o ingrese una dirección URL"
|
|
|
488
514
|
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
515
|
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
516
|
|
|
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
517
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
497
518
|
# defaultMessage: Cache Name
|
|
498
519
|
msgid "Cache Name"
|
|
@@ -598,6 +619,7 @@ msgid "Choose Target"
|
|
|
598
619
|
msgstr "Seleccione destino"
|
|
599
620
|
|
|
600
621
|
#: components/manage/Widgets/FileWidget
|
|
622
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
601
623
|
# defaultMessage: Choose a file
|
|
602
624
|
msgid "Choose a file"
|
|
603
625
|
msgstr "Seleccionar Archivo"
|
|
@@ -720,6 +742,11 @@ msgstr "Formulario de contacto"
|
|
|
720
742
|
msgid "Contained items"
|
|
721
743
|
msgstr "Elementos contenidos"
|
|
722
744
|
|
|
745
|
+
#: components/manage/Blocks/Container/SimpleContainerToolbar
|
|
746
|
+
# defaultMessage: Container settings
|
|
747
|
+
msgid "Container settings"
|
|
748
|
+
msgstr "Ajustes del contenedor"
|
|
749
|
+
|
|
723
750
|
#: components/manage/Controlpanels/Controlpanels
|
|
724
751
|
# defaultMessage: Content
|
|
725
752
|
msgid "Content"
|
|
@@ -746,6 +773,11 @@ msgstr "Reglas de contenido para {title}"
|
|
|
746
773
|
msgid "Content rules from parent folders"
|
|
747
774
|
msgstr "Reglas de contenido de las carpetas principales"
|
|
748
775
|
|
|
776
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
777
|
+
# defaultMessage: Content that links to or references {title}
|
|
778
|
+
msgid "Content that links to or references {title}"
|
|
779
|
+
msgstr "Contenido que enlaza o hace referencia a {title}"
|
|
780
|
+
|
|
749
781
|
#: components/manage/Controlpanels/ContentTypes
|
|
750
782
|
# defaultMessage: Content type created
|
|
751
783
|
msgid "Content type created"
|
|
@@ -775,7 +807,7 @@ msgid "Copy"
|
|
|
775
807
|
msgstr "Copia"
|
|
776
808
|
|
|
777
809
|
#: helpers/MessageLabels/MessageLabels
|
|
778
|
-
# defaultMessage:
|
|
810
|
+
# defaultMessage: Copy blocks
|
|
779
811
|
msgid "Copy blocks"
|
|
780
812
|
msgstr "Copiar bloques"
|
|
781
813
|
|
|
@@ -792,7 +824,7 @@ msgstr "Información del copyright o otros derechos en este elemento."
|
|
|
792
824
|
#: helpers/MessageLabels/MessageLabels
|
|
793
825
|
# defaultMessage: Create or delete relations to target
|
|
794
826
|
msgid "Create or delete relations to target"
|
|
795
|
-
msgstr ""
|
|
827
|
+
msgstr "Crear o eliminar relaciones con el destino"
|
|
796
828
|
|
|
797
829
|
#: components/manage/Toolbar/More
|
|
798
830
|
# defaultMessage: Create working copy
|
|
@@ -848,7 +880,7 @@ msgid "Cut"
|
|
|
848
880
|
msgstr "Cortar"
|
|
849
881
|
|
|
850
882
|
#: helpers/MessageLabels/MessageLabels
|
|
851
|
-
# defaultMessage:
|
|
883
|
+
# defaultMessage: Cut blocks
|
|
852
884
|
msgid "Cut blocks"
|
|
853
885
|
msgstr "Cortar bloques"
|
|
854
886
|
|
|
@@ -955,7 +987,7 @@ msgid "Delete action"
|
|
|
955
987
|
msgstr "Eliminar acción"
|
|
956
988
|
|
|
957
989
|
#: helpers/MessageLabels/MessageLabels
|
|
958
|
-
# defaultMessage:
|
|
990
|
+
# defaultMessage: Delete blocks
|
|
959
991
|
msgid "Delete blocks"
|
|
960
992
|
msgstr "Eliminar bloques"
|
|
961
993
|
|
|
@@ -974,6 +1006,16 @@ msgstr "Eliminar condición"
|
|
|
974
1006
|
msgid "Delete row"
|
|
975
1007
|
msgstr "Eliminar fila"
|
|
976
1008
|
|
|
1009
|
+
#: components/manage/Contents/Contents
|
|
1010
|
+
# defaultMessage: Delete selected items?
|
|
1011
|
+
msgid "Delete selected items?"
|
|
1012
|
+
msgstr "¿Eliminar elementos seleccionados?"
|
|
1013
|
+
|
|
1014
|
+
#: components/manage/Contents/Contents
|
|
1015
|
+
# defaultMessage: Delete this item?
|
|
1016
|
+
msgid "Delete this item?"
|
|
1017
|
+
msgstr "¿Eliminar este elemento?"
|
|
1018
|
+
|
|
977
1019
|
#: components/manage/Controlpanels/Rules/Rules
|
|
978
1020
|
# defaultMessage: Deleted
|
|
979
1021
|
msgid "Deleted"
|
|
@@ -1042,11 +1084,6 @@ msgstr "Distribuido bajo la {license}."
|
|
|
1042
1084
|
msgid "Divide each row into separate cells"
|
|
1043
1085
|
msgstr "Divide cada fila en celdas separadas"
|
|
1044
1086
|
|
|
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
1087
|
#: components/manage/Controlpanels/Groups/GroupsControlpanel
|
|
1051
1088
|
# defaultMessage: Do you really want to delete the group {groupname}?
|
|
1052
1089
|
msgid "Do you really want to delete the group {groupname}?"
|
|
@@ -1089,16 +1126,19 @@ msgid "Drag and drop files from your computer onto this area or click the “Bro
|
|
|
1089
1126
|
msgstr "Arrastre y suelte los archivos desde su computador en esta área o haga clic al botón “Seleccionar”."
|
|
1090
1127
|
|
|
1091
1128
|
#: components/manage/Widgets/FileWidget
|
|
1129
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1092
1130
|
# defaultMessage: Drop file here to replace the existing file
|
|
1093
1131
|
msgid "Drop file here to replace the existing file"
|
|
1094
1132
|
msgstr "Arrastre aquí el archivo para reemplazar el actual"
|
|
1095
1133
|
|
|
1096
1134
|
#: components/manage/Widgets/FileWidget
|
|
1135
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1097
1136
|
# defaultMessage: Drop file here to upload a new file
|
|
1098
1137
|
msgid "Drop file here to upload a new file"
|
|
1099
1138
|
msgstr "Arrastre aquí el archivo para añadir un nuevo"
|
|
1100
1139
|
|
|
1101
1140
|
#: components/manage/Widgets/FileWidget
|
|
1141
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1102
1142
|
# defaultMessage: Drop files here ...
|
|
1103
1143
|
msgid "Drop files here ..."
|
|
1104
1144
|
msgstr "Arrastrar archivos aquí..."
|
|
@@ -1122,6 +1162,7 @@ msgstr "La dirección de correo electrónico no coincide."
|
|
|
1122
1162
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
1123
1163
|
#: components/manage/Controlpanels/ModerateComments
|
|
1124
1164
|
#: components/manage/Controlpanels/Rules/EditRule
|
|
1165
|
+
#: components/manage/Controlpanels/Users/RenderUsers
|
|
1125
1166
|
#: components/manage/Toolbar/Toolbar
|
|
1126
1167
|
#: components/manage/Widgets/FormFieldWrapper
|
|
1127
1168
|
#: components/manage/Widgets/ObjectBrowserWidget
|
|
@@ -1264,15 +1305,20 @@ msgstr "Introduzca su correo electrónico para verificar."
|
|
|
1264
1305
|
|
|
1265
1306
|
#: components/manage/Preferences/ChangePassword
|
|
1266
1307
|
#: 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
|
|
1308
|
+
# defaultMessage: Enter your new password. Minimum 8 characters.
|
|
1309
|
+
msgid "Enter your new password. Minimum 8 characters."
|
|
1310
|
+
msgstr "Introduzca su nueva contraseña. Mínimo 8 caracteres."
|
|
1270
1311
|
|
|
1271
1312
|
#: components/theme/PasswordReset/PasswordReset
|
|
1272
1313
|
# defaultMessage: Enter your username for verification.
|
|
1273
1314
|
msgid "Enter your username for verification."
|
|
1274
1315
|
msgstr "Introduzca su nombre de usuario para verificar."
|
|
1275
1316
|
|
|
1317
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1318
|
+
# defaultMessage: Entries
|
|
1319
|
+
msgid "Entries"
|
|
1320
|
+
msgstr "Entradas"
|
|
1321
|
+
|
|
1276
1322
|
#: components/manage/Add/Add
|
|
1277
1323
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1278
1324
|
#: components/manage/Controlpanels/ContentTypeSchema
|
|
@@ -1416,7 +1462,7 @@ msgstr "Nombre del archivo"
|
|
|
1416
1462
|
#: helpers/MessageLabels/MessageLabels
|
|
1417
1463
|
# defaultMessage: Filter
|
|
1418
1464
|
msgid "Filter"
|
|
1419
|
-
msgstr ""
|
|
1465
|
+
msgstr "Filtrar"
|
|
1420
1466
|
|
|
1421
1467
|
#: components/manage/Controlpanels/Rules/Rules
|
|
1422
1468
|
# defaultMessage: Filter Rules:
|
|
@@ -1446,7 +1492,7 @@ msgstr "Primero"
|
|
|
1446
1492
|
#: helpers/MessageLabels/MessageLabels
|
|
1447
1493
|
# defaultMessage: Fix relations
|
|
1448
1494
|
msgid "Fix relations"
|
|
1449
|
-
msgstr ""
|
|
1495
|
+
msgstr "Corregir relaciones"
|
|
1450
1496
|
|
|
1451
1497
|
#: components/manage/Blocks/Table/Edit
|
|
1452
1498
|
# defaultMessage: Fixed width columns
|
|
@@ -1520,6 +1566,11 @@ msgstr "Rol global"
|
|
|
1520
1566
|
msgid "Google Maps Embedded Block"
|
|
1521
1567
|
msgstr "Bloque embebido de Google Maps"
|
|
1522
1568
|
|
|
1569
|
+
#: components/manage/Blocks/Grid/schema
|
|
1570
|
+
# defaultMessage: Grid
|
|
1571
|
+
msgid "Grid"
|
|
1572
|
+
msgstr "Grid"
|
|
1573
|
+
|
|
1523
1574
|
#: components/manage/Sharing/Sharing
|
|
1524
1575
|
# defaultMessage: Group
|
|
1525
1576
|
msgid "Group"
|
|
@@ -1558,6 +1609,7 @@ msgstr "Los grupos son colecciones lógicas de usuarios, como departamentos o un
|
|
|
1558
1609
|
msgid "Header cell"
|
|
1559
1610
|
msgstr "Celda de cabecera"
|
|
1560
1611
|
|
|
1612
|
+
#: components/manage/Blocks/Grid/schema
|
|
1561
1613
|
#: components/manage/Blocks/Listing/schema
|
|
1562
1614
|
#: components/manage/Blocks/Search/schema
|
|
1563
1615
|
# defaultMessage: Headline
|
|
@@ -1584,6 +1636,16 @@ msgstr "Ocultar respuestas"
|
|
|
1584
1636
|
msgid "Hide facet?"
|
|
1585
1637
|
msgstr "¿Ocultar la faceta?"
|
|
1586
1638
|
|
|
1639
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1640
|
+
# defaultMessage: Hide filters
|
|
1641
|
+
msgid "Hide filters"
|
|
1642
|
+
msgstr "Ocultar filtros"
|
|
1643
|
+
|
|
1644
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1645
|
+
# defaultMessage: Hide title
|
|
1646
|
+
msgid "Hide title"
|
|
1647
|
+
msgstr "Ocultar título"
|
|
1648
|
+
|
|
1587
1649
|
#: components/manage/History/History
|
|
1588
1650
|
#: components/manage/Toolbar/More
|
|
1589
1651
|
# defaultMessage: History
|
|
@@ -1655,7 +1717,7 @@ msgstr "Galería de imágenes"
|
|
|
1655
1717
|
#: components/manage/Blocks/Teaser/schema
|
|
1656
1718
|
# defaultMessage: Image override
|
|
1657
1719
|
msgid "Image override"
|
|
1658
|
-
msgstr ""
|
|
1720
|
+
msgstr "Reemplazar imagen"
|
|
1659
1721
|
|
|
1660
1722
|
#: components/manage/Blocks/Image/schema
|
|
1661
1723
|
# defaultMessage: Image size
|
|
@@ -1718,7 +1780,7 @@ msgstr "Insertar fila antes"
|
|
|
1718
1780
|
#: helpers/MessageLabels/MessageLabels
|
|
1719
1781
|
# defaultMessage: Inspect relations
|
|
1720
1782
|
msgid "Inspect relations"
|
|
1721
|
-
msgstr ""
|
|
1783
|
+
msgstr "Inspeccionar relaciones"
|
|
1722
1784
|
|
|
1723
1785
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1724
1786
|
# defaultMessage: Install
|
|
@@ -1764,7 +1826,12 @@ msgstr "Intervalo anual"
|
|
|
1764
1826
|
#: components/theme/View/RenderBlocks
|
|
1765
1827
|
# defaultMessage: Invalid block - Will be removed on saving
|
|
1766
1828
|
msgid "Invalid Block"
|
|
1767
|
-
msgstr "Bloque no válido"
|
|
1829
|
+
msgstr "Bloque no válido: se eliminará al guardar"
|
|
1830
|
+
|
|
1831
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1832
|
+
# 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.
|
|
1833
|
+
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."
|
|
1834
|
+
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
1835
|
|
|
1769
1836
|
#: components/manage/Widgets/QuerystringWidget
|
|
1770
1837
|
# defaultMessage: Item batch size
|
|
@@ -1813,11 +1880,6 @@ msgstr "Elementos"
|
|
|
1813
1880
|
msgid "Items must be unique."
|
|
1814
1881
|
msgstr "Los elementos deben ser únicos."
|
|
1815
1882
|
|
|
1816
|
-
#: components/manage/Contents/Contents
|
|
1817
|
-
# defaultMessage: Items to be deleted:
|
|
1818
|
-
msgid "Items to be deleted:"
|
|
1819
|
-
msgstr "Elementos a eliminar:"
|
|
1820
|
-
|
|
1821
1883
|
#: components/manage/Blocks/Search/schema
|
|
1822
1884
|
# defaultMessage: Label
|
|
1823
1885
|
msgid "Label"
|
|
@@ -1880,11 +1942,21 @@ msgstr "Imagen principal"
|
|
|
1880
1942
|
msgid "Left"
|
|
1881
1943
|
msgstr "Izquierda"
|
|
1882
1944
|
|
|
1945
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1946
|
+
# defaultMessage: Less filters
|
|
1947
|
+
msgid "Less filters"
|
|
1948
|
+
msgstr "Menos filtros"
|
|
1949
|
+
|
|
1883
1950
|
#: components/manage/Toolbar/Toolbar
|
|
1884
1951
|
# defaultMessage: Link
|
|
1885
1952
|
msgid "Link"
|
|
1886
1953
|
msgstr "Enlace"
|
|
1887
1954
|
|
|
1955
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1956
|
+
# defaultMessage: Anchor link copied to the clipboard
|
|
1957
|
+
msgid "Link copied to clipboard"
|
|
1958
|
+
msgstr "Enlace copiado al portapapeles"
|
|
1959
|
+
|
|
1888
1960
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1889
1961
|
#: components/manage/Blocks/Listing/schema
|
|
1890
1962
|
# defaultMessage: Link more
|
|
@@ -1896,6 +1968,11 @@ msgstr "Enlace más"
|
|
|
1896
1968
|
msgid "Link redirect view"
|
|
1897
1969
|
msgstr "Vista de redirección del enlace"
|
|
1898
1970
|
|
|
1971
|
+
#: components/manage/Blocks/Image/schema
|
|
1972
|
+
# defaultMessage: Link settings
|
|
1973
|
+
msgid "Link settings"
|
|
1974
|
+
msgstr "Configuración de enlace"
|
|
1975
|
+
|
|
1899
1976
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1900
1977
|
#: components/manage/Blocks/Listing/schema
|
|
1901
1978
|
# defaultMessage: Link Title
|
|
@@ -1915,6 +1992,17 @@ msgstr "Enlazar a"
|
|
|
1915
1992
|
msgid "Link translation for"
|
|
1916
1993
|
msgstr "Enlazar traducción de"
|
|
1917
1994
|
|
|
1995
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
1996
|
+
# defaultMessage: Linking this item with hyperlink in text
|
|
1997
|
+
msgid "Linking this item with hyperlink in text"
|
|
1998
|
+
msgstr "Vincular este elemento con un hipervínculo en el texto"
|
|
1999
|
+
|
|
2000
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2001
|
+
#: components/manage/Toolbar/More
|
|
2002
|
+
# defaultMessage: Links and references
|
|
2003
|
+
msgid "Links and references"
|
|
2004
|
+
msgstr "Enlaces y referencias"
|
|
2005
|
+
|
|
1918
2006
|
#: components/manage/Blocks/Listing/schema
|
|
1919
2007
|
# defaultMessage: Listing
|
|
1920
2008
|
msgid "Listing"
|
|
@@ -2010,7 +2098,7 @@ msgstr "¿Añadidos de forma manual o automática?"
|
|
|
2010
2098
|
#: helpers/MessageLabels/MessageLabels
|
|
2011
2099
|
# defaultMessage: Many relations found. Please search.
|
|
2012
2100
|
msgid "Many relations found. Please search."
|
|
2013
|
-
msgstr ""
|
|
2101
|
+
msgstr "Muchas relaciones encontradas. Por favor, busque."
|
|
2014
2102
|
|
|
2015
2103
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2016
2104
|
#: components/manage/Blocks/Maps/schema
|
|
@@ -2089,6 +2177,11 @@ msgstr "Mensualmente"
|
|
|
2089
2177
|
msgid "More"
|
|
2090
2178
|
msgstr "Más"
|
|
2091
2179
|
|
|
2180
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
2181
|
+
# defaultMessage: More filters
|
|
2182
|
+
msgid "More filters"
|
|
2183
|
+
msgstr "Más filtros"
|
|
2184
|
+
|
|
2092
2185
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
2093
2186
|
# defaultMessage: More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide.
|
|
2094
2187
|
msgid "More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide."
|
|
@@ -2172,7 +2265,6 @@ msgid "News item view"
|
|
|
2172
2265
|
msgstr "Vista de noticia"
|
|
2173
2266
|
|
|
2174
2267
|
#: components/manage/Contents/ContentsItem
|
|
2175
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
2176
2268
|
#: components/manage/Controlpanels/ContentTypes
|
|
2177
2269
|
# defaultMessage: No
|
|
2178
2270
|
msgid "No"
|
|
@@ -2206,7 +2298,7 @@ msgstr "No se han encontrado complementos"
|
|
|
2206
2298
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
2207
2299
|
# defaultMessage: No broken relations found.
|
|
2208
2300
|
msgid "No broken relations found."
|
|
2209
|
-
msgstr ""
|
|
2301
|
+
msgstr "No se encontraron relaciones rotas."
|
|
2210
2302
|
|
|
2211
2303
|
#: components/theme/RequestTimeout/RequestTimeout
|
|
2212
2304
|
# defaultMessage: There is no connection to the server, due to a timeout o no network connection.
|
|
@@ -2243,6 +2335,11 @@ msgstr "No hay elementos en esta carpeta."
|
|
|
2243
2335
|
msgid "No items selected"
|
|
2244
2336
|
msgstr "No se han seleccionado elementos"
|
|
2245
2337
|
|
|
2338
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2339
|
+
# defaultMessage: No links to this item found.
|
|
2340
|
+
msgid "No links to this item found."
|
|
2341
|
+
msgstr "No se encontraron enlaces a este elemento."
|
|
2342
|
+
|
|
2246
2343
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2247
2344
|
# defaultMessage: No map selected
|
|
2248
2345
|
msgid "No map selected"
|
|
@@ -2264,7 +2361,7 @@ msgstr "No hay opciones"
|
|
|
2264
2361
|
#: helpers/MessageLabels/MessageLabels
|
|
2265
2362
|
# defaultMessage: No relation found
|
|
2266
2363
|
msgid "No relation found"
|
|
2267
|
-
msgstr ""
|
|
2364
|
+
msgstr "No se encontró relación"
|
|
2268
2365
|
|
|
2269
2366
|
#: components/manage/BlockChooser/BlockChooser
|
|
2270
2367
|
#: components/theme/Search/Search
|
|
@@ -2366,11 +2463,21 @@ msgstr "Abrir menú"
|
|
|
2366
2463
|
msgid "Open object browser"
|
|
2367
2464
|
msgstr "Abrir buscador de objetos"
|
|
2368
2465
|
|
|
2466
|
+
#: components/manage/Blocks/ToC/Schema
|
|
2467
|
+
# defaultMessage: Ordered
|
|
2468
|
+
msgid "Ordered"
|
|
2469
|
+
msgstr "Ordenado"
|
|
2470
|
+
|
|
2369
2471
|
#: components/manage/Blocks/LeadImage/LeadImageSidebar
|
|
2370
2472
|
# defaultMessage: Origin
|
|
2371
2473
|
msgid "Origin"
|
|
2372
2474
|
msgstr "Origen"
|
|
2373
2475
|
|
|
2476
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2477
|
+
# defaultMessage: Overview of relations of all content items
|
|
2478
|
+
msgid "Overview of relations of all content items"
|
|
2479
|
+
msgstr "Descripción general de las relaciones de todos los elementos de contenido."
|
|
2480
|
+
|
|
2374
2481
|
#: components/manage/Toolbar/Toolbar
|
|
2375
2482
|
# defaultMessage: Page
|
|
2376
2483
|
msgid "Page"
|
|
@@ -2405,7 +2512,7 @@ msgid "Paste"
|
|
|
2405
2512
|
msgstr "Pegar"
|
|
2406
2513
|
|
|
2407
2514
|
#: helpers/MessageLabels/MessageLabels
|
|
2408
|
-
# defaultMessage:
|
|
2515
|
+
# defaultMessage: Paste blocks
|
|
2409
2516
|
msgid "Paste blocks"
|
|
2410
2517
|
msgstr "Pegar bloques"
|
|
2411
2518
|
|
|
@@ -2449,7 +2556,7 @@ msgstr "Las personas responsables de la creación del contenido de este elemento
|
|
|
2449
2556
|
#: components/manage/Blocks/Teaser/DefaultBody
|
|
2450
2557
|
# defaultMessage: Please choose an existing content as source for this element
|
|
2451
2558
|
msgid "Please choose an existing content as source for this element"
|
|
2452
|
-
msgstr ""
|
|
2559
|
+
msgstr "Elija un contenido existente como origen para este elemento"
|
|
2453
2560
|
|
|
2454
2561
|
#: components/manage/Controlpanels/Controlpanels
|
|
2455
2562
|
# defaultMessage: Please continue with the upgrade.
|
|
@@ -2487,20 +2594,15 @@ msgid "Please upgrade to plone.restapi >= 8.24.0."
|
|
|
2487
2594
|
msgstr "Actualice plone.restapi a la versión 8.24.0 o superior."
|
|
2488
2595
|
|
|
2489
2596
|
#: components/manage/Controlpanels/Relations/Relations
|
|
2490
|
-
# defaultMessage: Please upgrade to plone.restapi >= 8.
|
|
2491
|
-
msgid "Please upgrade to plone.restapi >= 8.
|
|
2492
|
-
msgstr ""
|
|
2597
|
+
# defaultMessage: Please upgrade to plone.restapi >= 8.39.0.
|
|
2598
|
+
msgid "Please upgrade to plone.restapi >= 8.39.0."
|
|
2599
|
+
msgstr "Por favor, actualice a plone.restapi >= 8.39.0."
|
|
2493
2600
|
|
|
2494
2601
|
#: components/theme/Footer/Footer
|
|
2495
2602
|
# defaultMessage: Plone Foundation
|
|
2496
2603
|
msgid "Plone Foundation"
|
|
2497
2604
|
msgstr "Fundación Plone"
|
|
2498
2605
|
|
|
2499
|
-
#: components/theme/Logo/Logo
|
|
2500
|
-
# defaultMessage: Plone Site
|
|
2501
|
-
msgid "Plone Site"
|
|
2502
|
-
msgstr "Sitio Plone"
|
|
2503
|
-
|
|
2504
2606
|
#: components/theme/Footer/Footer
|
|
2505
2607
|
# defaultMessage: Plone{reg} Open Source CMS/WCM
|
|
2506
2608
|
msgid "Plone{reg} Open Source CMS/WCM"
|
|
@@ -2516,11 +2618,6 @@ msgstr "Posición cambiada"
|
|
|
2516
2618
|
msgid "Possible values"
|
|
2517
2619
|
msgstr "Valores posibles"
|
|
2518
2620
|
|
|
2519
|
-
#: components/manage/Contents/Contents
|
|
2520
|
-
# defaultMessage: Potential link breakage
|
|
2521
|
-
msgid "Potential link breakage"
|
|
2522
|
-
msgstr "Posible ruptura de enlace"
|
|
2523
|
-
|
|
2524
2621
|
#: components/theme/Footer/Footer
|
|
2525
2622
|
# defaultMessage: Powered by Plone & Python
|
|
2526
2623
|
msgid "Powered by Plone & Python"
|
|
@@ -2588,7 +2685,7 @@ msgstr "Leer Más..."
|
|
|
2588
2685
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2589
2686
|
# defaultMessage: Read only for this type of relation.
|
|
2590
2687
|
msgid "Read only for this type of relation."
|
|
2591
|
-
msgstr ""
|
|
2688
|
+
msgstr "Solo lectura para este tipo de relación."
|
|
2592
2689
|
|
|
2593
2690
|
#: components/manage/Contents/Contents
|
|
2594
2691
|
# defaultMessage: Rearrange items by…
|
|
@@ -2620,6 +2717,16 @@ msgstr "Rehacer"
|
|
|
2620
2717
|
msgid "Reduce complexity"
|
|
2621
2718
|
msgstr "Reducir complejidad"
|
|
2622
2719
|
|
|
2720
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2721
|
+
# defaultMessage: Referencing this item as related item
|
|
2722
|
+
msgid "Referencing this item as related item"
|
|
2723
|
+
msgstr "Hacer referencia a este elemento como elemento relacionado"
|
|
2724
|
+
|
|
2725
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2726
|
+
# defaultMessage: Referencing this item with {relationship}
|
|
2727
|
+
msgid "Referencing this item with {relationship}"
|
|
2728
|
+
msgstr "Hacer referencia a este elemento con {relationship}"
|
|
2729
|
+
|
|
2623
2730
|
#: components/theme/Anontools/Anontools
|
|
2624
2731
|
#: components/theme/Login/Login
|
|
2625
2732
|
#: components/theme/Register/Register
|
|
@@ -2636,24 +2743,24 @@ msgstr "Formulario de registro"
|
|
|
2636
2743
|
#: helpers/MessageLabels/MessageLabels
|
|
2637
2744
|
# defaultMessage: Relation
|
|
2638
2745
|
msgid "Relation name"
|
|
2639
|
-
msgstr ""
|
|
2746
|
+
msgstr "Relación"
|
|
2640
2747
|
|
|
2641
2748
|
#: components/manage/Controlpanels/Controlpanels
|
|
2642
2749
|
#: components/manage/Controlpanels/Relations/Relations
|
|
2643
2750
|
#: helpers/MessageLabels/MessageLabels
|
|
2644
2751
|
# defaultMessage: Relations
|
|
2645
2752
|
msgid "Relations"
|
|
2646
|
-
msgstr ""
|
|
2753
|
+
msgstr "Relaciones"
|
|
2647
2754
|
|
|
2648
2755
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2649
2756
|
# defaultMessage: Relations are editable with plone.api >= 2.0.3.
|
|
2650
2757
|
msgid "Relations are editable with plone.api >= 2.0.3."
|
|
2651
|
-
msgstr ""
|
|
2758
|
+
msgstr "Las relaciones son editables con plone.api >= 2.0.3."
|
|
2652
2759
|
|
|
2653
2760
|
#: helpers/MessageLabels/MessageLabels
|
|
2654
2761
|
# defaultMessage: Relations updated
|
|
2655
2762
|
msgid "Relations updated"
|
|
2656
|
-
msgstr ""
|
|
2763
|
+
msgstr "Relaciones actualizadas"
|
|
2657
2764
|
|
|
2658
2765
|
#: components/theme/Search/Search
|
|
2659
2766
|
# defaultMessage: Relevance
|
|
@@ -2665,6 +2772,11 @@ msgstr "Relevancia"
|
|
|
2665
2772
|
msgid "Remove"
|
|
2666
2773
|
msgstr "Eliminar"
|
|
2667
2774
|
|
|
2775
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2776
|
+
# defaultMessage: Remove element {index}
|
|
2777
|
+
msgid "Remove element {index}"
|
|
2778
|
+
msgstr "Eliminar elemento {index}"
|
|
2779
|
+
|
|
2668
2780
|
#: components/manage/Widgets/ObjectListWidget
|
|
2669
2781
|
# defaultMessage: Remove item
|
|
2670
2782
|
msgid "Remove item"
|
|
@@ -2727,6 +2839,7 @@ msgid "Repeat on"
|
|
|
2727
2839
|
msgstr "Repetir el"
|
|
2728
2840
|
|
|
2729
2841
|
#: components/manage/Widgets/FileWidget
|
|
2842
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
2730
2843
|
# defaultMessage: Replace existing file
|
|
2731
2844
|
msgid "Replace existing file"
|
|
2732
2845
|
msgstr "Sustituir el archivo actual"
|
|
@@ -2749,6 +2862,11 @@ msgstr "Obligatorio"
|
|
|
2749
2862
|
msgid "Required input is missing."
|
|
2750
2863
|
msgstr "Un campo requerido esta sin tomar en cuenta."
|
|
2751
2864
|
|
|
2865
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2866
|
+
# defaultMessage: Reset element {index}
|
|
2867
|
+
msgid "Reset element {index}"
|
|
2868
|
+
msgstr "Restablecer elemento {index}"
|
|
2869
|
+
|
|
2752
2870
|
#: components/manage/Widgets/VocabularyTermsWidget
|
|
2753
2871
|
# defaultMessage: Reset title
|
|
2754
2872
|
msgid "Reset term title"
|
|
@@ -2757,7 +2875,7 @@ msgstr "Limpiar el título del término"
|
|
|
2757
2875
|
#: components/manage/Blocks/Teaser/Data
|
|
2758
2876
|
# defaultMessage: Reset the block
|
|
2759
2877
|
msgid "Reset the block"
|
|
2760
|
-
msgstr ""
|
|
2878
|
+
msgstr "Restablecer el bloque"
|
|
2761
2879
|
|
|
2762
2880
|
#: components/manage/Widgets/QuerystringWidget
|
|
2763
2881
|
# defaultMessage: Results limit
|
|
@@ -2785,6 +2903,7 @@ msgid "Revert to this revision"
|
|
|
2785
2903
|
msgstr "Revertir a esta revisión"
|
|
2786
2904
|
|
|
2787
2905
|
#: components/manage/Contents/Contents
|
|
2906
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2788
2907
|
# defaultMessage: Review state
|
|
2789
2908
|
msgid "Review state"
|
|
2790
2909
|
msgstr "Estado"
|
|
@@ -2866,7 +2985,7 @@ msgstr "Guardado"
|
|
|
2866
2985
|
#: components/manage/Contents/ContentsItem
|
|
2867
2986
|
# defaultMessage: Scheduled
|
|
2868
2987
|
msgid "Scheduled"
|
|
2869
|
-
msgstr ""
|
|
2988
|
+
msgstr "Programado"
|
|
2870
2989
|
|
|
2871
2990
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2872
2991
|
# defaultMessage: Schema
|
|
@@ -2884,6 +3003,7 @@ msgstr "Actualización de esquema"
|
|
|
2884
3003
|
#: components/manage/Blocks/Search/layout/RightColumnFacets
|
|
2885
3004
|
#: components/manage/Blocks/Search/layout/TopSideFacets
|
|
2886
3005
|
#: components/manage/Blocks/Search/schema
|
|
3006
|
+
#: components/manage/Sharing/Sharing
|
|
2887
3007
|
#: components/theme/Search/Search
|
|
2888
3008
|
#: components/theme/SearchWidget/SearchWidget
|
|
2889
3009
|
# defaultMessage: Search
|
|
@@ -2944,12 +3064,12 @@ msgstr "Resultados de búsqueda para {term}"
|
|
|
2944
3064
|
#: helpers/MessageLabels/MessageLabels
|
|
2945
3065
|
# defaultMessage: Search sources by title or path
|
|
2946
3066
|
msgid "Search sources by title or path"
|
|
2947
|
-
msgstr ""
|
|
3067
|
+
msgstr "Buscar orígenes por título o ruta"
|
|
2948
3068
|
|
|
2949
3069
|
#: helpers/MessageLabels/MessageLabels
|
|
2950
3070
|
# defaultMessage: Search targets by title or path
|
|
2951
3071
|
msgid "Search targets by title or path"
|
|
2952
|
-
msgstr ""
|
|
3072
|
+
msgstr "Buscar destinos por título o ruta"
|
|
2953
3073
|
|
|
2954
3074
|
#: helpers/MessageLabels/MessageLabels
|
|
2955
3075
|
# defaultMessage: Search users…
|
|
@@ -2992,7 +3112,7 @@ msgstr "Seleccionar columnas a mostrar"
|
|
|
2992
3112
|
#: helpers/MessageLabels/MessageLabels
|
|
2993
3113
|
# defaultMessage: Select relation
|
|
2994
3114
|
msgid "Select relation"
|
|
2995
|
-
msgstr ""
|
|
3115
|
+
msgstr "Seleccionar relación"
|
|
2996
3116
|
|
|
2997
3117
|
#: components/manage/Contents/ContentsWorkflowModal
|
|
2998
3118
|
# defaultMessage: Select the transition to be used for modifying the items state.
|
|
@@ -3002,7 +3122,7 @@ msgstr "Seleccione la transición a ser efectuada al cambiar el estado del conte
|
|
|
3002
3122
|
#: helpers/MessageLabels/MessageLabels
|
|
3003
3123
|
# defaultMessage: Selected
|
|
3004
3124
|
msgid "Selected"
|
|
3005
|
-
msgstr ""
|
|
3125
|
+
msgstr "Seleccionado"
|
|
3006
3126
|
|
|
3007
3127
|
#: components/manage/Widgets/RecurrenceWidget/Occurences
|
|
3008
3128
|
# defaultMessage: Selected dates
|
|
@@ -3044,6 +3164,11 @@ msgstr "Enviar"
|
|
|
3044
3164
|
msgid "Send a confirmation mail with a link to set the password."
|
|
3045
3165
|
msgstr "Enviar un correo de confirmación con un enlace para establecer la contraseña."
|
|
3046
3166
|
|
|
3167
|
+
#: components/theme/Error/ServerError
|
|
3168
|
+
# defaultMessage: Server Error
|
|
3169
|
+
msgid "Server Error"
|
|
3170
|
+
msgstr "Error del Servidor"
|
|
3171
|
+
|
|
3047
3172
|
#: components/theme/PasswordReset/PasswordReset
|
|
3048
3173
|
# defaultMessage: Set my password
|
|
3049
3174
|
msgid "Set my password"
|
|
@@ -3098,6 +3223,11 @@ msgstr "Mostrar todos"
|
|
|
3098
3223
|
msgid "Show Replies"
|
|
3099
3224
|
msgstr "Mostrar respuestas"
|
|
3100
3225
|
|
|
3226
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
3227
|
+
# defaultMessage: Show filters
|
|
3228
|
+
msgid "Show filters"
|
|
3229
|
+
msgstr "Mostrar filtros"
|
|
3230
|
+
|
|
3101
3231
|
#: helpers/MessageLabels/MessageLabels
|
|
3102
3232
|
# defaultMessage: Show groups of users below
|
|
3103
3233
|
msgid "Show groups of users below"
|
|
@@ -3111,12 +3241,12 @@ msgstr "Mostrar elemento"
|
|
|
3111
3241
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3112
3242
|
# defaultMessage: Show potential sources. Not only objects that are source of some relation.
|
|
3113
3243
|
msgid "Show potential sources. Not only objects that are source of some relation."
|
|
3114
|
-
msgstr ""
|
|
3244
|
+
msgstr "Mostrar orígenes potenciales. No solo objetos que son orígenes de alguna relación."
|
|
3115
3245
|
|
|
3116
3246
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3117
3247
|
# defaultMessage: Show potential targets. Not only objects that are target of some relation.
|
|
3118
3248
|
msgid "Show potential targets. Not only objects that are target of some relation."
|
|
3119
|
-
msgstr ""
|
|
3249
|
+
msgstr "Mostrar destinos potenciales. No solo objetos que son destino de alguna relación."
|
|
3120
3250
|
|
|
3121
3251
|
#: components/manage/Blocks/Search/schema
|
|
3122
3252
|
# defaultMessage: Show search button?
|
|
@@ -3153,11 +3283,6 @@ msgstr "Contraer barra de herramientas"
|
|
|
3153
3283
|
msgid "Sign in to start session"
|
|
3154
3284
|
msgstr "Acceda para iniciar sesión"
|
|
3155
3285
|
|
|
3156
|
-
#: components/theme/Logo/Logo
|
|
3157
|
-
# defaultMessage: Site
|
|
3158
|
-
msgid "Site"
|
|
3159
|
-
msgstr "Sitio"
|
|
3160
|
-
|
|
3161
3286
|
#: components/theme/NotFound/NotFound
|
|
3162
3287
|
#: components/theme/Unauthorized/Unauthorized
|
|
3163
3288
|
# defaultMessage: Site Administration
|
|
@@ -3185,10 +3310,20 @@ msgstr "Tamaño: {size}"
|
|
|
3185
3310
|
msgid "Small"
|
|
3186
3311
|
msgstr "Pequeño"
|
|
3187
3312
|
|
|
3313
|
+
#: components/manage/Contents/Contents
|
|
3314
|
+
# defaultMessage: Some items are also a folder.
|
|
3315
|
+
msgid "Some items are also a folder."
|
|
3316
|
+
msgstr "Algunos elementos también son una carpeta."
|
|
3317
|
+
|
|
3318
|
+
#: components/manage/Contents/Contents
|
|
3319
|
+
# defaultMessage: Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken.
|
|
3320
|
+
msgid "Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken."
|
|
3321
|
+
msgstr "Algunos elementos están referenciados por otros contenidos. Al eliminarlos, {brokenReferences} {variation} se romperá."
|
|
3322
|
+
|
|
3188
3323
|
#: components/manage/Controlpanels/Relations/Relations
|
|
3189
3324
|
# defaultMessage: Some relations are broken. Please fix.
|
|
3190
3325
|
msgid "Some relations are broken. Please fix."
|
|
3191
|
-
msgstr ""
|
|
3326
|
+
msgstr "Algunas relaciones están rotas. Por favor, arréglelas."
|
|
3192
3327
|
|
|
3193
3328
|
#: error
|
|
3194
3329
|
# defaultMessage: Sorry, something went wrong with your request
|
|
@@ -3228,7 +3363,7 @@ msgid "Sorted"
|
|
|
3228
3363
|
msgstr "Ordenado"
|
|
3229
3364
|
|
|
3230
3365
|
#: components/manage/Blocks/HTML/Edit
|
|
3231
|
-
#: components/manage/
|
|
3366
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3232
3367
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3233
3368
|
# defaultMessage: Source
|
|
3234
3369
|
msgid "Source"
|
|
@@ -3272,6 +3407,11 @@ msgstr "Estado"
|
|
|
3272
3407
|
msgid "Status"
|
|
3273
3408
|
msgstr "Estado"
|
|
3274
3409
|
|
|
3410
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3411
|
+
# defaultMessage: Sticky
|
|
3412
|
+
msgid "Sticky"
|
|
3413
|
+
msgstr "Fija"
|
|
3414
|
+
|
|
3275
3415
|
#: components/manage/Multilingual/CompareLanguages
|
|
3276
3416
|
# defaultMessage: Stop compare
|
|
3277
3417
|
msgid "Stop compare"
|
|
@@ -3373,6 +3513,7 @@ msgstr "Categoría a remover"
|
|
|
3373
3513
|
|
|
3374
3514
|
#: components/manage/Blocks/Teaser/schema
|
|
3375
3515
|
#: components/manage/Controlpanels/Aliases
|
|
3516
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3376
3517
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3377
3518
|
# defaultMessage: Target
|
|
3378
3519
|
msgid "Target"
|
|
@@ -3401,7 +3542,7 @@ msgstr "El camino de destino debe comenzar con /."
|
|
|
3401
3542
|
#: components/manage/Blocks/Teaser/schema
|
|
3402
3543
|
# defaultMessage: Teaser
|
|
3403
3544
|
msgid "Teaser"
|
|
3404
|
-
msgstr ""
|
|
3545
|
+
msgstr "Destacado"
|
|
3405
3546
|
|
|
3406
3547
|
#: components/manage/Widgets/SchemaWidget
|
|
3407
3548
|
# defaultMessage: Text
|
|
@@ -3493,6 +3634,16 @@ msgstr "La copia de trabajo se ha descartado"
|
|
|
3493
3634
|
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
3494
3635
|
msgstr "El {plonecms} es {copyright} 2000-{current_year} por la {plonefoundation} y amigos."
|
|
3495
3636
|
|
|
3637
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3638
|
+
# defaultMessage: There are no groups with the searched criteria
|
|
3639
|
+
msgid "There are no groups with the searched criteria"
|
|
3640
|
+
msgstr "No hay grupos con los criterios buscados."
|
|
3641
|
+
|
|
3642
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3643
|
+
# defaultMessage: There are no users with the searched criteria
|
|
3644
|
+
msgid "There are no users with the searched criteria"
|
|
3645
|
+
msgstr "No hay usuarios con los criterios buscados"
|
|
3646
|
+
|
|
3496
3647
|
#: components/theme/CorsError/CorsError
|
|
3497
3648
|
# defaultMessage: There is a configuration problem on the backend
|
|
3498
3649
|
msgid "There is a configuration problem on the backend"
|
|
@@ -3519,11 +3670,6 @@ msgstr "Hay algunos errores."
|
|
|
3519
3670
|
msgid "Third"
|
|
3520
3671
|
msgstr "Tercero"
|
|
3521
3672
|
|
|
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
3673
|
#: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
|
|
3528
3674
|
# defaultMessage: This has an ongoing working copy in {title}
|
|
3529
3675
|
msgid "This has an ongoing working copy in {title}"
|
|
@@ -3539,6 +3685,16 @@ msgstr "Es un nombre reservado y no se puede utilizar"
|
|
|
3539
3685
|
msgid "This is a working copy of {title}"
|
|
3540
3686
|
msgstr "Es una copia de trabajo de {title}"
|
|
3541
3687
|
|
|
3688
|
+
#: components/manage/Contents/Contents
|
|
3689
|
+
# defaultMessage: This item is also a folder.
|
|
3690
|
+
msgid "This item is also a folder."
|
|
3691
|
+
msgstr "Este elemento también es una carpeta."
|
|
3692
|
+
|
|
3693
|
+
#: components/manage/Contents/Contents
|
|
3694
|
+
# defaultMessage: This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken.
|
|
3695
|
+
msgid "This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken."
|
|
3696
|
+
msgstr "Este elemento está referenciado por otros elementos. Al eliminarlo, {brokenReferences} {variation} se romperá."
|
|
3697
|
+
|
|
3542
3698
|
#: components/manage/LockingToastsFactory/LockingToastsFactory
|
|
3543
3699
|
# defaultMessage: This item was locked by {creator} on {date}
|
|
3544
3700
|
msgid "This item was locked by {creator} on {date}"
|
|
@@ -3566,6 +3722,7 @@ msgstr "Hora"
|
|
|
3566
3722
|
|
|
3567
3723
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
3568
3724
|
#: components/manage/Blocks/Teaser/schema
|
|
3725
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3569
3726
|
#: components/manage/Contents/Contents
|
|
3570
3727
|
#: components/manage/Contents/ContentsRenameModal
|
|
3571
3728
|
#: components/manage/Controlpanels/ContentTypes
|
|
@@ -3594,11 +3751,6 @@ msgstr "Número de objetos activos y no activos"
|
|
|
3594
3751
|
msgid "Total comments"
|
|
3595
3752
|
msgstr "Comentarios totales"
|
|
3596
3753
|
|
|
3597
|
-
#: components/manage/Contents/Contents
|
|
3598
|
-
# defaultMessage: Total items to be deleted:
|
|
3599
|
-
msgid "Total items to be deleted:"
|
|
3600
|
-
msgstr ""
|
|
3601
|
-
|
|
3602
3754
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
3603
3755
|
# defaultMessage: Total number of objects in each cache
|
|
3604
3756
|
msgid "Total number of objects in each cache"
|
|
@@ -3657,6 +3809,7 @@ msgid "Triggering event field error. Please select a value"
|
|
|
3657
3809
|
msgstr "Error de campo de evento desencadenante. Por favor seleccione un valor"
|
|
3658
3810
|
|
|
3659
3811
|
#: components/manage/Controlpanels/ContentTypes
|
|
3812
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
3660
3813
|
#: components/manage/Widgets/SchemaWidget
|
|
3661
3814
|
#: components/theme/View/TabularView
|
|
3662
3815
|
# defaultMessage: Type
|
|
@@ -3776,6 +3929,11 @@ msgstr "Desordenadas"
|
|
|
3776
3929
|
msgid "Update"
|
|
3777
3930
|
msgstr "Actualizar"
|
|
3778
3931
|
|
|
3932
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3933
|
+
# defaultMessage: Update User
|
|
3934
|
+
msgid "Update User"
|
|
3935
|
+
msgstr "Actualizar Usuario"
|
|
3936
|
+
|
|
3779
3937
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
3780
3938
|
# defaultMessage: Update installed addons
|
|
3781
3939
|
msgid "Update installed addons"
|
|
@@ -3891,6 +4049,11 @@ msgstr "Nombre de usuario"
|
|
|
3891
4049
|
msgid "User roles updated"
|
|
3892
4050
|
msgstr "Roles de usuario actualizados"
|
|
3893
4051
|
|
|
4052
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4053
|
+
# defaultMessage: User updated successfuly
|
|
4054
|
+
msgid "User updated successfuly"
|
|
4055
|
+
msgstr "Usuario actualizado correctamente"
|
|
4056
|
+
|
|
3894
4057
|
#: helpers/MessageLabels/MessageLabels
|
|
3895
4058
|
# defaultMessage: Username
|
|
3896
4059
|
msgid "Username"
|
|
@@ -3940,6 +4103,11 @@ msgstr "URL del vídeo"
|
|
|
3940
4103
|
msgid "View"
|
|
3941
4104
|
msgstr "Ver"
|
|
3942
4105
|
|
|
4106
|
+
#: components/manage/Contents/Contents
|
|
4107
|
+
# defaultMessage: View broken links list
|
|
4108
|
+
msgid "View broken links list"
|
|
4109
|
+
msgstr "Ver la lista de enlaces rotos"
|
|
4110
|
+
|
|
3943
4111
|
#: components/manage/History/History
|
|
3944
4112
|
# defaultMessage: View changes
|
|
3945
4113
|
msgid "View changes"
|
|
@@ -3990,6 +4158,11 @@ msgstr "Disculpe las molestias, pero la base de datos no está disponible en est
|
|
|
3990
4158
|
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
4159
|
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
4160
|
|
|
4161
|
+
#: components/theme/Error/ServerError
|
|
4162
|
+
# defaultMessage: We apologize for the inconvenience, but there was an unexpected error on the server.
|
|
4163
|
+
msgid "We apologize for the inconvenience, but there was an unexpected error on the server."
|
|
4164
|
+
msgstr "Disculpe las molestias, pero se ha producido un error inesperado en el servidor."
|
|
4165
|
+
|
|
3993
4166
|
#: components/theme/Forbidden/Forbidden
|
|
3994
4167
|
# defaultMessage: We apologize for the inconvenience, but you don't have permissions on this resource.
|
|
3995
4168
|
msgid "We apologize for the inconvenience, but you don't have permissions on this resource."
|
|
@@ -4073,7 +4246,6 @@ msgid "Yearly"
|
|
|
4073
4246
|
msgstr "Anualmente"
|
|
4074
4247
|
|
|
4075
4248
|
#: components/manage/Contents/ContentsItem
|
|
4076
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
4077
4249
|
#: components/manage/Controlpanels/ContentTypes
|
|
4078
4250
|
# defaultMessage: Yes
|
|
4079
4251
|
msgid "Yes"
|
|
@@ -4122,7 +4294,7 @@ msgstr "Ha sido salido del sitio."
|
|
|
4122
4294
|
#: components/manage/Controlpanels/Relations/Relations
|
|
4123
4295
|
# defaultMessage: You have not the required permission for this control panel.
|
|
4124
4296
|
msgid "You have not the required permission for this control panel."
|
|
4125
|
-
msgstr ""
|
|
4297
|
+
msgstr "No tiene el permiso requerido para este panel de control."
|
|
4126
4298
|
|
|
4127
4299
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4128
4300
|
# defaultMessage: Your email is required for reset your password.
|
|
@@ -4185,6 +4357,16 @@ msgstr "¿Olvidaste tu contraseña?"
|
|
|
4185
4357
|
msgid "checkboxFacet"
|
|
4186
4358
|
msgstr "Casilla de verificación"
|
|
4187
4359
|
|
|
4360
|
+
#: components/manage/Blocks/Grid/templates
|
|
4361
|
+
# defaultMessage: column
|
|
4362
|
+
msgid "column"
|
|
4363
|
+
msgstr "columna"
|
|
4364
|
+
|
|
4365
|
+
#: components/manage/Blocks/Grid/templates
|
|
4366
|
+
# defaultMessage: columns
|
|
4367
|
+
msgid "columns"
|
|
4368
|
+
msgstr "columnas"
|
|
4369
|
+
|
|
4188
4370
|
#: config/Blocks
|
|
4189
4371
|
# defaultMessage: Common
|
|
4190
4372
|
msgid "common"
|
|
@@ -4195,6 +4377,11 @@ msgstr "Común"
|
|
|
4195
4377
|
msgid "compare_to"
|
|
4196
4378
|
msgstr "Comparar con el idioma"
|
|
4197
4379
|
|
|
4380
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
4381
|
+
# defaultMessage: {countofrelation} broken {countofrelation, plural, one {relation} other {relations}} of type {typeofrelation}
|
|
4382
|
+
msgid "countBrokenRelations"
|
|
4383
|
+
msgstr "{countofrelation} roto {countofrelation, plural, one {relation} other {relations}} de tipo {typeofrelation}"
|
|
4384
|
+
|
|
4198
4385
|
#: config/Blocks
|
|
4199
4386
|
# defaultMessage: Date Range
|
|
4200
4387
|
msgid "daterangeFacet"
|
|
@@ -4275,15 +4462,25 @@ msgstr "Cuándo"
|
|
|
4275
4462
|
msgid "event_where"
|
|
4276
4463
|
msgstr "Dónde"
|
|
4277
4464
|
|
|
4465
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4466
|
+
# defaultMessage: This website does not accept files larger than {limit}
|
|
4467
|
+
msgid "fileTooLarge"
|
|
4468
|
+
msgstr "Este sitio web no acepta archivos de más de {limit}"
|
|
4469
|
+
|
|
4278
4470
|
#: helpers/MessageLabels/MessageLabels
|
|
4279
4471
|
# defaultMessage: flush intIds and rebuild relations
|
|
4280
4472
|
msgid "flush intIds and rebuild relations"
|
|
4281
|
-
msgstr ""
|
|
4473
|
+
msgstr "vaciar intIds y reconstruir relaciones"
|
|
4474
|
+
|
|
4475
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4476
|
+
# 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>
|
|
4477
|
+
msgid "flushAndRebuildRelationsHints"
|
|
4478
|
+
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
4479
|
|
|
4283
4480
|
#: components/manage/Blocks/Teaser/schema
|
|
4284
4481
|
# defaultMessage: Head title
|
|
4285
4482
|
msgid "head_title"
|
|
4286
|
-
msgstr ""
|
|
4483
|
+
msgstr "Encabezado"
|
|
4287
4484
|
|
|
4288
4485
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4289
4486
|
# defaultMessage: Password reset confirmation sent
|
|
@@ -4305,6 +4502,16 @@ msgstr "HTML"
|
|
|
4305
4502
|
msgid "image"
|
|
4306
4503
|
msgstr "Imagen"
|
|
4307
4504
|
|
|
4505
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4506
|
+
# defaultMessage: Clear image
|
|
4507
|
+
msgid "image_block_clear"
|
|
4508
|
+
msgstr "Limpiar imagen"
|
|
4509
|
+
|
|
4510
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4511
|
+
# defaultMessage: Image preview
|
|
4512
|
+
msgid "image_block_preview"
|
|
4513
|
+
msgstr "Vista previa de la imagen"
|
|
4514
|
+
|
|
4308
4515
|
#: helpers/MessageLabels/MessageLabels
|
|
4309
4516
|
# defaultMessage: Input must be integer
|
|
4310
4517
|
msgid "integer"
|
|
@@ -4315,6 +4522,16 @@ msgstr "El valor introducido debe ser un número entero"
|
|
|
4315
4522
|
msgid "intranet"
|
|
4316
4523
|
msgstr "Intranet"
|
|
4317
4524
|
|
|
4525
|
+
#: components/manage/Contents/Contents
|
|
4526
|
+
# defaultMessage: item
|
|
4527
|
+
msgid "item"
|
|
4528
|
+
msgstr "elemento"
|
|
4529
|
+
|
|
4530
|
+
#: components/manage/Contents/Contents
|
|
4531
|
+
# defaultMessage: items
|
|
4532
|
+
msgid "items"
|
|
4533
|
+
msgstr "elementos"
|
|
4534
|
+
|
|
4318
4535
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4319
4536
|
# defaultMessage: My email is
|
|
4320
4537
|
msgid "label_my_email_is"
|
|
@@ -4384,7 +4601,7 @@ msgstr "Más usado"
|
|
|
4384
4601
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
4385
4602
|
# defaultMessage: Found {sources} sources and {targets} targets. Narrow down to {max}!
|
|
4386
4603
|
msgid "narrowDownRelations"
|
|
4387
|
-
msgstr ""
|
|
4604
|
+
msgstr "Se encontraron {sources} orígenes y {targets} destinos. ¡Reduzca a {max}!"
|
|
4388
4605
|
|
|
4389
4606
|
#: components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry
|
|
4390
4607
|
#: components/manage/Blocks/Search/components/ToggleFacetFilterListEntry
|
|
@@ -4442,7 +4659,17 @@ msgstr "Seleccione..."
|
|
|
4442
4659
|
#: helpers/MessageLabels/MessageLabels
|
|
4443
4660
|
# defaultMessage: rebuild relations
|
|
4444
4661
|
msgid "rebuild relations"
|
|
4445
|
-
msgstr ""
|
|
4662
|
+
msgstr "reconstruir relaciones"
|
|
4663
|
+
|
|
4664
|
+
#: components/manage/Contents/Contents
|
|
4665
|
+
# defaultMessage: reference
|
|
4666
|
+
msgid "reference"
|
|
4667
|
+
msgstr "referencia"
|
|
4668
|
+
|
|
4669
|
+
#: components/manage/Contents/Contents
|
|
4670
|
+
# defaultMessage: references
|
|
4671
|
+
msgid "references"
|
|
4672
|
+
msgstr "referencias"
|
|
4446
4673
|
|
|
4447
4674
|
#: components/theme/Search/Search
|
|
4448
4675
|
# defaultMessage: results
|
|
@@ -4472,7 +4699,7 @@ msgstr "a las"
|
|
|
4472
4699
|
#: components/manage/Widgets/RecurrenceWidget/Utils
|
|
4473
4700
|
# defaultMessage: [month] [day], [year]
|
|
4474
4701
|
msgid "rrule_dateFormat"
|
|
4475
|
-
msgstr "
|
|
4702
|
+
msgstr "[day]/[month]/[year]"
|
|
4476
4703
|
|
|
4477
4704
|
#: components/manage/Widgets/RecurrenceWidget/Utils
|
|
4478
4705
|
# defaultMessage: day
|
|
@@ -4647,7 +4874,7 @@ msgstr "Ordenar"
|
|
|
4647
4874
|
#: helpers/MessageLabels/MessageLabels
|
|
4648
4875
|
# defaultMessage: sources path
|
|
4649
4876
|
msgid "sources path"
|
|
4650
|
-
msgstr ""
|
|
4877
|
+
msgstr "ruta de origen"
|
|
4651
4878
|
|
|
4652
4879
|
#: config/Blocks
|
|
4653
4880
|
# defaultMessage: Table
|
|
@@ -4657,7 +4884,7 @@ msgstr "Tabla"
|
|
|
4657
4884
|
#: helpers/MessageLabels/MessageLabels
|
|
4658
4885
|
# defaultMessage: target path
|
|
4659
4886
|
msgid "target path"
|
|
4660
|
-
msgstr ""
|
|
4887
|
+
msgstr "ruta de destino"
|
|
4661
4888
|
|
|
4662
4889
|
#: config/Blocks
|
|
4663
4890
|
# defaultMessage: Text
|
|
@@ -4669,6 +4896,7 @@ msgstr "Texto"
|
|
|
4669
4896
|
msgid "title"
|
|
4670
4897
|
msgstr "Título"
|
|
4671
4898
|
|
|
4899
|
+
#: components/manage/Blocks/ToC/Schema
|
|
4672
4900
|
#: config/Blocks
|
|
4673
4901
|
# defaultMessage: Table of Contents
|
|
4674
4902
|
msgid "toc"
|