@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
|
@@ -143,6 +143,11 @@ msgstr "Adicionar ação"
|
|
|
143
143
|
msgid "Add block"
|
|
144
144
|
msgstr "Adicionar bloco"
|
|
145
145
|
|
|
146
|
+
#: components/manage/Blocks/Container/NewBlockAddButton
|
|
147
|
+
# defaultMessage: Add block in position {index}
|
|
148
|
+
msgid "Add block in position {index}"
|
|
149
|
+
msgstr ""
|
|
150
|
+
|
|
146
151
|
#: helpers/MessageLabels/MessageLabels
|
|
147
152
|
# defaultMessage: Add block…
|
|
148
153
|
msgid "Add block…"
|
|
@@ -168,6 +173,11 @@ msgstr "Adicionar critério"
|
|
|
168
173
|
msgid "Add date"
|
|
169
174
|
msgstr "Adicionar data"
|
|
170
175
|
|
|
176
|
+
#: components/manage/Blocks/Container/SimpleContainerToolbar
|
|
177
|
+
# defaultMessage: Add element to container
|
|
178
|
+
msgid "Add element to container"
|
|
179
|
+
msgstr ""
|
|
180
|
+
|
|
171
181
|
#: components/manage/Widgets/SchemaWidget
|
|
172
182
|
# defaultMessage: Add field
|
|
173
183
|
msgid "Add field"
|
|
@@ -278,6 +288,16 @@ msgstr "Complemento desinstalado com sucesso"
|
|
|
278
288
|
msgid "Addon upgraded succesfuly"
|
|
279
289
|
msgstr "Complemento atualizado com sucesso"
|
|
280
290
|
|
|
291
|
+
#: components/manage/Blocks/Search/schema
|
|
292
|
+
# defaultMessage: Advanced facet?
|
|
293
|
+
msgid "Advanced facet?"
|
|
294
|
+
msgstr "Facetas avançadas?"
|
|
295
|
+
|
|
296
|
+
#: components/manage/Blocks/Search/schema
|
|
297
|
+
# defaultMessage: Advanced facets are initially hidden and displayed on demand
|
|
298
|
+
msgid "Advanced facets are initially hidden and displayed on demand"
|
|
299
|
+
msgstr "Facetas avançadas ficam ocultas inicialmente e exibidas sob demanda"
|
|
300
|
+
|
|
281
301
|
#: config/Views
|
|
282
302
|
# defaultMessage: Album view
|
|
283
303
|
msgid "Album view"
|
|
@@ -392,6 +412,11 @@ msgstr "Você realmente deseja deletar este fieldset com todos os campos?"
|
|
|
392
412
|
msgid "Ascending"
|
|
393
413
|
msgstr "Ascendente"
|
|
394
414
|
|
|
415
|
+
#: components/manage/Sharing/Sharing
|
|
416
|
+
# defaultMessage: Assign the {role} role to {entry}
|
|
417
|
+
msgid "Assign the {role} role to {entry}"
|
|
418
|
+
msgstr "Atribuir o papel de {role} à {entry}"
|
|
419
|
+
|
|
395
420
|
#: components/manage/Controlpanels/Rules/ConfigureRule
|
|
396
421
|
# defaultMessage: Assignments
|
|
397
422
|
msgid "Assignments"
|
|
@@ -426,6 +451,7 @@ msgstr "Regras de conteúdo disponíveis:"
|
|
|
426
451
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
427
452
|
#: components/manage/Diff/Diff
|
|
428
453
|
#: components/manage/History/History
|
|
454
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
429
455
|
#: components/manage/Multilingual/ManageTranslations
|
|
430
456
|
#: components/manage/Preferences/ChangePassword
|
|
431
457
|
#: components/manage/Preferences/PersonalPreferences
|
|
@@ -468,7 +494,7 @@ msgstr "Navegação estrutural"
|
|
|
468
494
|
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
469
495
|
# defaultMessage: Broken relations
|
|
470
496
|
msgid "Broken relations"
|
|
471
|
-
msgstr ""
|
|
497
|
+
msgstr "Relacionamentos rompidos"
|
|
472
498
|
|
|
473
499
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
474
500
|
#: components/manage/Contents/ContentsUploadModal
|
|
@@ -487,11 +513,6 @@ msgstr "Navegue no site, arraste uma imagem ou digite uma URL"
|
|
|
487
513
|
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."
|
|
488
514
|
msgstr "Por padrão, as permissões do container deste item são herdadas. Se você desabilitar isso, apenas as permissões de compartilhamento definidas explicitamente serão válidas. Na visão geral, o símbolo {inherited} indica um valor herdado. Da mesma forma, o símbolo {global} indica uma função global que é gerenciada pelo administrador do site."
|
|
489
515
|
|
|
490
|
-
#: components/manage/Contents/Contents
|
|
491
|
-
# 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.
|
|
492
|
-
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."
|
|
493
|
-
msgstr "Ao excluir esse item, você quebrará os links que existem nos itens listados abaixo. Se isso é realmente o que você deseja fazer, recomendamos que remova essas referências primeiro."
|
|
494
|
-
|
|
495
516
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
496
517
|
# defaultMessage: Cache Name
|
|
497
518
|
msgid "Cache Name"
|
|
@@ -597,6 +618,7 @@ msgid "Choose Target"
|
|
|
597
618
|
msgstr "Escolha Alvo"
|
|
598
619
|
|
|
599
620
|
#: components/manage/Widgets/FileWidget
|
|
621
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
600
622
|
# defaultMessage: Choose a file
|
|
601
623
|
msgid "Choose a file"
|
|
602
624
|
msgstr "Escolha um arquivo"
|
|
@@ -719,6 +741,11 @@ msgstr "Formulário de contato"
|
|
|
719
741
|
msgid "Contained items"
|
|
720
742
|
msgstr "Itens contidos"
|
|
721
743
|
|
|
744
|
+
#: components/manage/Blocks/Container/SimpleContainerToolbar
|
|
745
|
+
# defaultMessage: Container settings
|
|
746
|
+
msgid "Container settings"
|
|
747
|
+
msgstr ""
|
|
748
|
+
|
|
722
749
|
#: components/manage/Controlpanels/Controlpanels
|
|
723
750
|
# defaultMessage: Content
|
|
724
751
|
msgid "Content"
|
|
@@ -745,6 +772,11 @@ msgstr "Regras de conteúdo para {title}"
|
|
|
745
772
|
msgid "Content rules from parent folders"
|
|
746
773
|
msgstr "Regras de conteúdo de pastas pai"
|
|
747
774
|
|
|
775
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
776
|
+
# defaultMessage: Content that links to or references {title}
|
|
777
|
+
msgid "Content that links to or references {title}"
|
|
778
|
+
msgstr ""
|
|
779
|
+
|
|
748
780
|
#: components/manage/Controlpanels/ContentTypes
|
|
749
781
|
# defaultMessage: Content type created
|
|
750
782
|
msgid "Content type created"
|
|
@@ -774,7 +806,7 @@ msgid "Copy"
|
|
|
774
806
|
msgstr "Copiar"
|
|
775
807
|
|
|
776
808
|
#: helpers/MessageLabels/MessageLabels
|
|
777
|
-
# defaultMessage:
|
|
809
|
+
# defaultMessage: Copy blocks
|
|
778
810
|
msgid "Copy blocks"
|
|
779
811
|
msgstr "Copiar blocos"
|
|
780
812
|
|
|
@@ -791,7 +823,7 @@ msgstr "Declaração de copyright ou outras informações de direitos sobre este
|
|
|
791
823
|
#: helpers/MessageLabels/MessageLabels
|
|
792
824
|
# defaultMessage: Create or delete relations to target
|
|
793
825
|
msgid "Create or delete relations to target"
|
|
794
|
-
msgstr ""
|
|
826
|
+
msgstr "Crie ou remova relacionamentos para o destino"
|
|
795
827
|
|
|
796
828
|
#: components/manage/Toolbar/More
|
|
797
829
|
# defaultMessage: Create working copy
|
|
@@ -847,7 +879,7 @@ msgid "Cut"
|
|
|
847
879
|
msgstr "Cortar"
|
|
848
880
|
|
|
849
881
|
#: helpers/MessageLabels/MessageLabels
|
|
850
|
-
# defaultMessage:
|
|
882
|
+
# defaultMessage: Cut blocks
|
|
851
883
|
msgid "Cut blocks"
|
|
852
884
|
msgstr "Recortar blocos"
|
|
853
885
|
|
|
@@ -954,7 +986,7 @@ msgid "Delete action"
|
|
|
954
986
|
msgstr "Remover ação"
|
|
955
987
|
|
|
956
988
|
#: helpers/MessageLabels/MessageLabels
|
|
957
|
-
# defaultMessage:
|
|
989
|
+
# defaultMessage: Delete blocks
|
|
958
990
|
msgid "Delete blocks"
|
|
959
991
|
msgstr "Excluir blocos"
|
|
960
992
|
|
|
@@ -973,6 +1005,16 @@ msgstr "Remover condição"
|
|
|
973
1005
|
msgid "Delete row"
|
|
974
1006
|
msgstr "Excluir linha"
|
|
975
1007
|
|
|
1008
|
+
#: components/manage/Contents/Contents
|
|
1009
|
+
# defaultMessage: Delete selected items?
|
|
1010
|
+
msgid "Delete selected items?"
|
|
1011
|
+
msgstr ""
|
|
1012
|
+
|
|
1013
|
+
#: components/manage/Contents/Contents
|
|
1014
|
+
# defaultMessage: Delete this item?
|
|
1015
|
+
msgid "Delete this item?"
|
|
1016
|
+
msgstr ""
|
|
1017
|
+
|
|
976
1018
|
#: components/manage/Controlpanels/Rules/Rules
|
|
977
1019
|
# defaultMessage: Deleted
|
|
978
1020
|
msgid "Deleted"
|
|
@@ -1041,11 +1083,6 @@ msgstr "Distribuído sob a licença {license}."
|
|
|
1041
1083
|
msgid "Divide each row into separate cells"
|
|
1042
1084
|
msgstr "Dividir cada linha em células separadas"
|
|
1043
1085
|
|
|
1044
|
-
#: components/manage/Contents/Contents
|
|
1045
|
-
# defaultMessage: Do you really want to delete the following items?
|
|
1046
|
-
msgid "Do you really want to delete the following items?"
|
|
1047
|
-
msgstr "Você realmente quer excluir os itens seguintes?"
|
|
1048
|
-
|
|
1049
1086
|
#: components/manage/Controlpanels/Groups/GroupsControlpanel
|
|
1050
1087
|
# defaultMessage: Do you really want to delete the group {groupname}?
|
|
1051
1088
|
msgid "Do you really want to delete the group {groupname}?"
|
|
@@ -1088,16 +1125,19 @@ msgid "Drag and drop files from your computer onto this area or click the “Bro
|
|
|
1088
1125
|
msgstr "Arraste e solte arquivos do seu computador para esta área, ou clique no botão ‘Procurar’."
|
|
1089
1126
|
|
|
1090
1127
|
#: components/manage/Widgets/FileWidget
|
|
1128
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1091
1129
|
# defaultMessage: Drop file here to replace the existing file
|
|
1092
1130
|
msgid "Drop file here to replace the existing file"
|
|
1093
1131
|
msgstr "Solte um arquivo aqui para substituir o arquivo existente"
|
|
1094
1132
|
|
|
1095
1133
|
#: components/manage/Widgets/FileWidget
|
|
1134
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1096
1135
|
# defaultMessage: Drop file here to upload a new file
|
|
1097
1136
|
msgid "Drop file here to upload a new file"
|
|
1098
1137
|
msgstr "Solte um arquivo aqui para enviar um novo arquivo"
|
|
1099
1138
|
|
|
1100
1139
|
#: components/manage/Widgets/FileWidget
|
|
1140
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1101
1141
|
# defaultMessage: Drop files here ...
|
|
1102
1142
|
msgid "Drop files here ..."
|
|
1103
1143
|
msgstr "Soltar aquivos aqui…"
|
|
@@ -1121,6 +1161,7 @@ msgstr "Os endereços de e-mail não coincidem."
|
|
|
1121
1161
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
1122
1162
|
#: components/manage/Controlpanels/ModerateComments
|
|
1123
1163
|
#: components/manage/Controlpanels/Rules/EditRule
|
|
1164
|
+
#: components/manage/Controlpanels/Users/RenderUsers
|
|
1124
1165
|
#: components/manage/Toolbar/Toolbar
|
|
1125
1166
|
#: components/manage/Widgets/FormFieldWrapper
|
|
1126
1167
|
#: components/manage/Widgets/ObjectBrowserWidget
|
|
@@ -1263,15 +1304,20 @@ msgstr "Informe seu e-mail para verificação."
|
|
|
1263
1304
|
|
|
1264
1305
|
#: components/manage/Preferences/ChangePassword
|
|
1265
1306
|
#: components/theme/PasswordReset/PasswordReset
|
|
1266
|
-
# defaultMessage: Enter your new password. Minimum
|
|
1267
|
-
msgid "Enter your new password. Minimum
|
|
1268
|
-
msgstr "Digite sua nova senha. Mínimo de
|
|
1307
|
+
# defaultMessage: Enter your new password. Minimum 8 characters.
|
|
1308
|
+
msgid "Enter your new password. Minimum 8 characters."
|
|
1309
|
+
msgstr "Digite sua nova senha. Mínimo de 8 caracteres."
|
|
1269
1310
|
|
|
1270
1311
|
#: components/theme/PasswordReset/PasswordReset
|
|
1271
1312
|
# defaultMessage: Enter your username for verification.
|
|
1272
1313
|
msgid "Enter your username for verification."
|
|
1273
1314
|
msgstr "Informe seu nome de usuário para verificação."
|
|
1274
1315
|
|
|
1316
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1317
|
+
# defaultMessage: Entries
|
|
1318
|
+
msgid "Entries"
|
|
1319
|
+
msgstr ""
|
|
1320
|
+
|
|
1275
1321
|
#: components/manage/Add/Add
|
|
1276
1322
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1277
1323
|
#: components/manage/Controlpanels/ContentTypeSchema
|
|
@@ -1415,7 +1461,7 @@ msgstr "Nome do arquivo"
|
|
|
1415
1461
|
#: helpers/MessageLabels/MessageLabels
|
|
1416
1462
|
# defaultMessage: Filter
|
|
1417
1463
|
msgid "Filter"
|
|
1418
|
-
msgstr ""
|
|
1464
|
+
msgstr "Filtrar"
|
|
1419
1465
|
|
|
1420
1466
|
#: components/manage/Controlpanels/Rules/Rules
|
|
1421
1467
|
# defaultMessage: Filter Rules:
|
|
@@ -1445,7 +1491,7 @@ msgstr "Primeiro"
|
|
|
1445
1491
|
#: helpers/MessageLabels/MessageLabels
|
|
1446
1492
|
# defaultMessage: Fix relations
|
|
1447
1493
|
msgid "Fix relations"
|
|
1448
|
-
msgstr ""
|
|
1494
|
+
msgstr "Consertar relacionamentos"
|
|
1449
1495
|
|
|
1450
1496
|
#: components/manage/Blocks/Table/Edit
|
|
1451
1497
|
# defaultMessage: Fixed width columns
|
|
@@ -1519,6 +1565,11 @@ msgstr "Papel global"
|
|
|
1519
1565
|
msgid "Google Maps Embedded Block"
|
|
1520
1566
|
msgstr "Bloco Google Maps"
|
|
1521
1567
|
|
|
1568
|
+
#: components/manage/Blocks/Grid/schema
|
|
1569
|
+
# defaultMessage: Grid
|
|
1570
|
+
msgid "Grid"
|
|
1571
|
+
msgstr ""
|
|
1572
|
+
|
|
1522
1573
|
#: components/manage/Sharing/Sharing
|
|
1523
1574
|
# defaultMessage: Group
|
|
1524
1575
|
msgid "Group"
|
|
@@ -1557,6 +1608,7 @@ msgstr "Grupos são coleções lógicas de usuários, como departamentos e unida
|
|
|
1557
1608
|
msgid "Header cell"
|
|
1558
1609
|
msgstr "Célula de cabeçalho"
|
|
1559
1610
|
|
|
1611
|
+
#: components/manage/Blocks/Grid/schema
|
|
1560
1612
|
#: components/manage/Blocks/Listing/schema
|
|
1561
1613
|
#: components/manage/Blocks/Search/schema
|
|
1562
1614
|
# defaultMessage: Headline
|
|
@@ -1583,6 +1635,16 @@ msgstr "Ocultar respostas"
|
|
|
1583
1635
|
msgid "Hide facet?"
|
|
1584
1636
|
msgstr "Ocultar faceta?"
|
|
1585
1637
|
|
|
1638
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1639
|
+
# defaultMessage: Hide filters
|
|
1640
|
+
msgid "Hide filters"
|
|
1641
|
+
msgstr "Ocultar filtros"
|
|
1642
|
+
|
|
1643
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1644
|
+
# defaultMessage: Hide title
|
|
1645
|
+
msgid "Hide title"
|
|
1646
|
+
msgstr ""
|
|
1647
|
+
|
|
1586
1648
|
#: components/manage/History/History
|
|
1587
1649
|
#: components/manage/Toolbar/More
|
|
1588
1650
|
# defaultMessage: History
|
|
@@ -1654,7 +1716,7 @@ msgstr "Galeria de imagem"
|
|
|
1654
1716
|
#: components/manage/Blocks/Teaser/schema
|
|
1655
1717
|
# defaultMessage: Image override
|
|
1656
1718
|
msgid "Image override"
|
|
1657
|
-
msgstr ""
|
|
1719
|
+
msgstr "Substituir imagem"
|
|
1658
1720
|
|
|
1659
1721
|
#: components/manage/Blocks/Image/schema
|
|
1660
1722
|
# defaultMessage: Image size
|
|
@@ -1717,7 +1779,7 @@ msgstr "Inserir linha antes"
|
|
|
1717
1779
|
#: helpers/MessageLabels/MessageLabels
|
|
1718
1780
|
# defaultMessage: Inspect relations
|
|
1719
1781
|
msgid "Inspect relations"
|
|
1720
|
-
msgstr ""
|
|
1782
|
+
msgstr "Inspecionar relacionamentos"
|
|
1721
1783
|
|
|
1722
1784
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1723
1785
|
# defaultMessage: Install
|
|
@@ -1765,6 +1827,11 @@ msgstr "Intervalo Anual"
|
|
|
1765
1827
|
msgid "Invalid Block"
|
|
1766
1828
|
msgstr "Bloco inválido"
|
|
1767
1829
|
|
|
1830
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1831
|
+
# 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.
|
|
1832
|
+
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."
|
|
1833
|
+
msgstr ""
|
|
1834
|
+
|
|
1768
1835
|
#: components/manage/Widgets/QuerystringWidget
|
|
1769
1836
|
# defaultMessage: Item batch size
|
|
1770
1837
|
msgid "Item batch size"
|
|
@@ -1812,11 +1879,6 @@ msgstr "Itens"
|
|
|
1812
1879
|
msgid "Items must be unique."
|
|
1813
1880
|
msgstr "Os itens devem ser únicos."
|
|
1814
1881
|
|
|
1815
|
-
#: components/manage/Contents/Contents
|
|
1816
|
-
# defaultMessage: Items to be deleted:
|
|
1817
|
-
msgid "Items to be deleted:"
|
|
1818
|
-
msgstr "Itens a serem removidos"
|
|
1819
|
-
|
|
1820
1882
|
#: components/manage/Blocks/Search/schema
|
|
1821
1883
|
# defaultMessage: Label
|
|
1822
1884
|
msgid "Label"
|
|
@@ -1879,11 +1941,21 @@ msgstr "Imagem principal"
|
|
|
1879
1941
|
msgid "Left"
|
|
1880
1942
|
msgstr "Esquerda"
|
|
1881
1943
|
|
|
1944
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1945
|
+
# defaultMessage: Less filters
|
|
1946
|
+
msgid "Less filters"
|
|
1947
|
+
msgstr "Menos filtros"
|
|
1948
|
+
|
|
1882
1949
|
#: components/manage/Toolbar/Toolbar
|
|
1883
1950
|
# defaultMessage: Link
|
|
1884
1951
|
msgid "Link"
|
|
1885
1952
|
msgstr "Link"
|
|
1886
1953
|
|
|
1954
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1955
|
+
# defaultMessage: Anchor link copied to the clipboard
|
|
1956
|
+
msgid "Link copied to clipboard"
|
|
1957
|
+
msgstr ""
|
|
1958
|
+
|
|
1887
1959
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1888
1960
|
#: components/manage/Blocks/Listing/schema
|
|
1889
1961
|
# defaultMessage: Link more
|
|
@@ -1895,6 +1967,11 @@ msgstr "Mais"
|
|
|
1895
1967
|
msgid "Link redirect view"
|
|
1896
1968
|
msgstr "Visão de redireção de Link"
|
|
1897
1969
|
|
|
1970
|
+
#: components/manage/Blocks/Image/schema
|
|
1971
|
+
# defaultMessage: Link settings
|
|
1972
|
+
msgid "Link settings"
|
|
1973
|
+
msgstr ""
|
|
1974
|
+
|
|
1898
1975
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1899
1976
|
#: components/manage/Blocks/Listing/schema
|
|
1900
1977
|
# defaultMessage: Link Title
|
|
@@ -1914,6 +1991,17 @@ msgstr "Link para"
|
|
|
1914
1991
|
msgid "Link translation for"
|
|
1915
1992
|
msgstr "Linkar tradução para"
|
|
1916
1993
|
|
|
1994
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
1995
|
+
# defaultMessage: Linking this item with hyperlink in text
|
|
1996
|
+
msgid "Linking this item with hyperlink in text"
|
|
1997
|
+
msgstr ""
|
|
1998
|
+
|
|
1999
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2000
|
+
#: components/manage/Toolbar/More
|
|
2001
|
+
# defaultMessage: Links and references
|
|
2002
|
+
msgid "Links and references"
|
|
2003
|
+
msgstr ""
|
|
2004
|
+
|
|
1917
2005
|
#: components/manage/Blocks/Listing/schema
|
|
1918
2006
|
# defaultMessage: Listing
|
|
1919
2007
|
msgid "Listing"
|
|
@@ -2009,7 +2097,7 @@ msgstr "Adicionado manual ou automaticamente?"
|
|
|
2009
2097
|
#: helpers/MessageLabels/MessageLabels
|
|
2010
2098
|
# defaultMessage: Many relations found. Please search.
|
|
2011
2099
|
msgid "Many relations found. Please search."
|
|
2012
|
-
msgstr ""
|
|
2100
|
+
msgstr "Muitos relacionamentos foram encontrados. Por favor realize uma busca"
|
|
2013
2101
|
|
|
2014
2102
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2015
2103
|
#: components/manage/Blocks/Maps/schema
|
|
@@ -2040,7 +2128,7 @@ msgstr "Médio"
|
|
|
2040
2128
|
#: helpers/MessageLabels/MessageLabels
|
|
2041
2129
|
# defaultMessage: Membership updated
|
|
2042
2130
|
msgid "Membership updated"
|
|
2043
|
-
msgstr ""
|
|
2131
|
+
msgstr "Participação atualizada"
|
|
2044
2132
|
|
|
2045
2133
|
#: components/theme/ContactForm/ContactForm
|
|
2046
2134
|
# defaultMessage: Message
|
|
@@ -2088,6 +2176,11 @@ msgstr "Mensalmente"
|
|
|
2088
2176
|
msgid "More"
|
|
2089
2177
|
msgstr "Mais"
|
|
2090
2178
|
|
|
2179
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
2180
|
+
# defaultMessage: More filters
|
|
2181
|
+
msgid "More filters"
|
|
2182
|
+
msgstr "Mais filtros"
|
|
2183
|
+
|
|
2091
2184
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
2092
2185
|
# defaultMessage: More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide.
|
|
2093
2186
|
msgid "More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide."
|
|
@@ -2171,7 +2264,6 @@ msgid "News item view"
|
|
|
2171
2264
|
msgstr "Visão de Notícia"
|
|
2172
2265
|
|
|
2173
2266
|
#: components/manage/Contents/ContentsItem
|
|
2174
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
2175
2267
|
#: components/manage/Controlpanels/ContentTypes
|
|
2176
2268
|
# defaultMessage: No
|
|
2177
2269
|
msgid "No"
|
|
@@ -2205,7 +2297,7 @@ msgstr "Nenhum complemento encontrado"
|
|
|
2205
2297
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
2206
2298
|
# defaultMessage: No broken relations found.
|
|
2207
2299
|
msgid "No broken relations found."
|
|
2208
|
-
msgstr ""
|
|
2300
|
+
msgstr "Nenhum relacionamento rompido foi encontrado"
|
|
2209
2301
|
|
|
2210
2302
|
#: components/theme/RequestTimeout/RequestTimeout
|
|
2211
2303
|
# defaultMessage: There is no connection to the server, due to a timeout o no network connection.
|
|
@@ -2230,7 +2322,7 @@ msgstr "Nenhuma imagem definida no campo de imagem"
|
|
|
2230
2322
|
#: components/manage/Blocks/Listing/GalleryNoResultsComponent
|
|
2231
2323
|
# defaultMessage: No images found.
|
|
2232
2324
|
msgid "No images found."
|
|
2233
|
-
msgstr ""
|
|
2325
|
+
msgstr "Nenhuma imagem foi encontrada"
|
|
2234
2326
|
|
|
2235
2327
|
#: components/manage/Blocks/Listing/ListingBody
|
|
2236
2328
|
# defaultMessage: No items found in this container.
|
|
@@ -2242,6 +2334,11 @@ msgstr "Não foram encontrados itens nesta pasta."
|
|
|
2242
2334
|
msgid "No items selected"
|
|
2243
2335
|
msgstr "Nenhum item selecionado"
|
|
2244
2336
|
|
|
2337
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2338
|
+
# defaultMessage: No links to this item found.
|
|
2339
|
+
msgid "No links to this item found."
|
|
2340
|
+
msgstr ""
|
|
2341
|
+
|
|
2245
2342
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2246
2343
|
# defaultMessage: No map selected
|
|
2247
2344
|
msgid "No map selected"
|
|
@@ -2263,7 +2360,7 @@ msgstr "Sem opções"
|
|
|
2263
2360
|
#: helpers/MessageLabels/MessageLabels
|
|
2264
2361
|
# defaultMessage: No relation found
|
|
2265
2362
|
msgid "No relation found"
|
|
2266
|
-
msgstr ""
|
|
2363
|
+
msgstr "Nenhum relacionamento foi encontrado"
|
|
2267
2364
|
|
|
2268
2365
|
#: components/manage/BlockChooser/BlockChooser
|
|
2269
2366
|
#: components/theme/Search/Search
|
|
@@ -2365,11 +2462,21 @@ msgstr "Abrir menu"
|
|
|
2365
2462
|
msgid "Open object browser"
|
|
2366
2463
|
msgstr "Abrir navegador de objetos"
|
|
2367
2464
|
|
|
2465
|
+
#: components/manage/Blocks/ToC/Schema
|
|
2466
|
+
# defaultMessage: Ordered
|
|
2467
|
+
msgid "Ordered"
|
|
2468
|
+
msgstr ""
|
|
2469
|
+
|
|
2368
2470
|
#: components/manage/Blocks/LeadImage/LeadImageSidebar
|
|
2369
2471
|
# defaultMessage: Origin
|
|
2370
2472
|
msgid "Origin"
|
|
2371
2473
|
msgstr "Origem"
|
|
2372
2474
|
|
|
2475
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2476
|
+
# defaultMessage: Overview of relations of all content items
|
|
2477
|
+
msgid "Overview of relations of all content items"
|
|
2478
|
+
msgstr ""
|
|
2479
|
+
|
|
2373
2480
|
#: components/manage/Toolbar/Toolbar
|
|
2374
2481
|
# defaultMessage: Page
|
|
2375
2482
|
msgid "Page"
|
|
@@ -2404,7 +2511,7 @@ msgid "Paste"
|
|
|
2404
2511
|
msgstr "Colar"
|
|
2405
2512
|
|
|
2406
2513
|
#: helpers/MessageLabels/MessageLabels
|
|
2407
|
-
# defaultMessage:
|
|
2514
|
+
# defaultMessage: Paste blocks
|
|
2408
2515
|
msgid "Paste blocks"
|
|
2409
2516
|
msgstr "Colar blocos"
|
|
2410
2517
|
|
|
@@ -2448,7 +2555,7 @@ msgstr "Pessoas responsáveis pela criação do conteúdo deste item. Por favor,
|
|
|
2448
2555
|
#: components/manage/Blocks/Teaser/DefaultBody
|
|
2449
2556
|
# defaultMessage: Please choose an existing content as source for this element
|
|
2450
2557
|
msgid "Please choose an existing content as source for this element"
|
|
2451
|
-
msgstr ""
|
|
2558
|
+
msgstr "Por favor selecione um conteúdo existente como fonte para este elemento"
|
|
2452
2559
|
|
|
2453
2560
|
#: components/manage/Controlpanels/Controlpanels
|
|
2454
2561
|
# defaultMessage: Please continue with the upgrade.
|
|
@@ -2486,20 +2593,15 @@ msgid "Please upgrade to plone.restapi >= 8.24.0."
|
|
|
2486
2593
|
msgstr "Por favor, atualize para plone.restapi >= 8.24.0."
|
|
2487
2594
|
|
|
2488
2595
|
#: components/manage/Controlpanels/Relations/Relations
|
|
2489
|
-
# defaultMessage: Please upgrade to plone.restapi >= 8.
|
|
2490
|
-
msgid "Please upgrade to plone.restapi >= 8.
|
|
2491
|
-
msgstr ""
|
|
2596
|
+
# defaultMessage: Please upgrade to plone.restapi >= 8.39.0.
|
|
2597
|
+
msgid "Please upgrade to plone.restapi >= 8.39.0."
|
|
2598
|
+
msgstr "Por favor atualize a plone.restapi para versão 8.39.0 ou superior."
|
|
2492
2599
|
|
|
2493
2600
|
#: components/theme/Footer/Footer
|
|
2494
2601
|
# defaultMessage: Plone Foundation
|
|
2495
2602
|
msgid "Plone Foundation"
|
|
2496
2603
|
msgstr "Fundação Plone"
|
|
2497
2604
|
|
|
2498
|
-
#: components/theme/Logo/Logo
|
|
2499
|
-
# defaultMessage: Plone Site
|
|
2500
|
-
msgid "Plone Site"
|
|
2501
|
-
msgstr "Site Plone"
|
|
2502
|
-
|
|
2503
2605
|
#: components/theme/Footer/Footer
|
|
2504
2606
|
# defaultMessage: Plone{reg} Open Source CMS/WCM
|
|
2505
2607
|
msgid "Plone{reg} Open Source CMS/WCM"
|
|
@@ -2515,11 +2617,6 @@ msgstr "Posição alterada"
|
|
|
2515
2617
|
msgid "Possible values"
|
|
2516
2618
|
msgstr "Valores possíveis"
|
|
2517
2619
|
|
|
2518
|
-
#: components/manage/Contents/Contents
|
|
2519
|
-
# defaultMessage: Potential link breakage
|
|
2520
|
-
msgid "Potential link breakage"
|
|
2521
|
-
msgstr "Potencial quebra de link"
|
|
2522
|
-
|
|
2523
2620
|
#: components/theme/Footer/Footer
|
|
2524
2621
|
# defaultMessage: Powered by Plone & Python
|
|
2525
2622
|
msgid "Powered by Plone & Python"
|
|
@@ -2587,12 +2684,12 @@ msgstr "Leia Mais…"
|
|
|
2587
2684
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2588
2685
|
# defaultMessage: Read only for this type of relation.
|
|
2589
2686
|
msgid "Read only for this type of relation."
|
|
2590
|
-
msgstr ""
|
|
2687
|
+
msgstr "Apenas leitura para este tipo de relacionamento."
|
|
2591
2688
|
|
|
2592
2689
|
#: components/manage/Contents/Contents
|
|
2593
2690
|
# defaultMessage: Rearrange items by…
|
|
2594
2691
|
msgid "Rearrange items by…"
|
|
2595
|
-
msgstr "
|
|
2692
|
+
msgstr "Reorganizar itens por…"
|
|
2596
2693
|
|
|
2597
2694
|
#: components/manage/Widgets/RecurrenceWidget/EndField
|
|
2598
2695
|
# defaultMessage: Ends
|
|
@@ -2619,6 +2716,16 @@ msgstr "Refazer"
|
|
|
2619
2716
|
msgid "Reduce complexity"
|
|
2620
2717
|
msgstr "Reduzir complexidade"
|
|
2621
2718
|
|
|
2719
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2720
|
+
# defaultMessage: Referencing this item as related item
|
|
2721
|
+
msgid "Referencing this item as related item"
|
|
2722
|
+
msgstr ""
|
|
2723
|
+
|
|
2724
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2725
|
+
# defaultMessage: Referencing this item with {relationship}
|
|
2726
|
+
msgid "Referencing this item with {relationship}"
|
|
2727
|
+
msgstr ""
|
|
2728
|
+
|
|
2622
2729
|
#: components/theme/Anontools/Anontools
|
|
2623
2730
|
#: components/theme/Login/Login
|
|
2624
2731
|
#: components/theme/Register/Register
|
|
@@ -2635,24 +2742,24 @@ msgstr "Formulário de cadastro"
|
|
|
2635
2742
|
#: helpers/MessageLabels/MessageLabels
|
|
2636
2743
|
# defaultMessage: Relation
|
|
2637
2744
|
msgid "Relation name"
|
|
2638
|
-
msgstr ""
|
|
2745
|
+
msgstr "Nome do relacionamento"
|
|
2639
2746
|
|
|
2640
2747
|
#: components/manage/Controlpanels/Controlpanels
|
|
2641
2748
|
#: components/manage/Controlpanels/Relations/Relations
|
|
2642
2749
|
#: helpers/MessageLabels/MessageLabels
|
|
2643
2750
|
# defaultMessage: Relations
|
|
2644
2751
|
msgid "Relations"
|
|
2645
|
-
msgstr ""
|
|
2752
|
+
msgstr "Relacionamentos"
|
|
2646
2753
|
|
|
2647
2754
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2648
2755
|
# defaultMessage: Relations are editable with plone.api >= 2.0.3.
|
|
2649
2756
|
msgid "Relations are editable with plone.api >= 2.0.3."
|
|
2650
|
-
msgstr ""
|
|
2757
|
+
msgstr "Relacionamentos são editáveis com uso da plone.api versão 2.0.3 ou superior."
|
|
2651
2758
|
|
|
2652
2759
|
#: helpers/MessageLabels/MessageLabels
|
|
2653
2760
|
# defaultMessage: Relations updated
|
|
2654
2761
|
msgid "Relations updated"
|
|
2655
|
-
msgstr ""
|
|
2762
|
+
msgstr "Relacionamentos atualizados"
|
|
2656
2763
|
|
|
2657
2764
|
#: components/theme/Search/Search
|
|
2658
2765
|
# defaultMessage: Relevance
|
|
@@ -2664,6 +2771,11 @@ msgstr "Relevância"
|
|
|
2664
2771
|
msgid "Remove"
|
|
2665
2772
|
msgstr "Remover"
|
|
2666
2773
|
|
|
2774
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2775
|
+
# defaultMessage: Remove element {index}
|
|
2776
|
+
msgid "Remove element {index}"
|
|
2777
|
+
msgstr ""
|
|
2778
|
+
|
|
2667
2779
|
#: components/manage/Widgets/ObjectListWidget
|
|
2668
2780
|
# defaultMessage: Remove item
|
|
2669
2781
|
msgid "Remove item"
|
|
@@ -2726,6 +2838,7 @@ msgid "Repeat on"
|
|
|
2726
2838
|
msgstr "Repete em"
|
|
2727
2839
|
|
|
2728
2840
|
#: components/manage/Widgets/FileWidget
|
|
2841
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
2729
2842
|
# defaultMessage: Replace existing file
|
|
2730
2843
|
msgid "Replace existing file"
|
|
2731
2844
|
msgstr "Substituir arquivo existente"
|
|
@@ -2748,6 +2861,11 @@ msgstr "Obrigatório"
|
|
|
2748
2861
|
msgid "Required input is missing."
|
|
2749
2862
|
msgstr "Falta informação obrigatória."
|
|
2750
2863
|
|
|
2864
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2865
|
+
# defaultMessage: Reset element {index}
|
|
2866
|
+
msgid "Reset element {index}"
|
|
2867
|
+
msgstr ""
|
|
2868
|
+
|
|
2751
2869
|
#: components/manage/Widgets/VocabularyTermsWidget
|
|
2752
2870
|
# defaultMessage: Reset title
|
|
2753
2871
|
msgid "Reset term title"
|
|
@@ -2756,7 +2874,7 @@ msgstr "Redefinir o título do termo"
|
|
|
2756
2874
|
#: components/manage/Blocks/Teaser/Data
|
|
2757
2875
|
# defaultMessage: Reset the block
|
|
2758
2876
|
msgid "Reset the block"
|
|
2759
|
-
msgstr ""
|
|
2877
|
+
msgstr "Redefinir o bloco"
|
|
2760
2878
|
|
|
2761
2879
|
#: components/manage/Widgets/QuerystringWidget
|
|
2762
2880
|
# defaultMessage: Results limit
|
|
@@ -2784,6 +2902,7 @@ msgid "Revert to this revision"
|
|
|
2784
2902
|
msgstr "Reverter para esta revisão"
|
|
2785
2903
|
|
|
2786
2904
|
#: components/manage/Contents/Contents
|
|
2905
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2787
2906
|
# defaultMessage: Review state
|
|
2788
2907
|
msgid "Review state"
|
|
2789
2908
|
msgstr "Estado"
|
|
@@ -2865,7 +2984,7 @@ msgstr "Salvo"
|
|
|
2865
2984
|
#: components/manage/Contents/ContentsItem
|
|
2866
2985
|
# defaultMessage: Scheduled
|
|
2867
2986
|
msgid "Scheduled"
|
|
2868
|
-
msgstr ""
|
|
2987
|
+
msgstr "Agendado"
|
|
2869
2988
|
|
|
2870
2989
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2871
2990
|
# defaultMessage: Schema
|
|
@@ -2883,6 +3002,7 @@ msgstr "Atualizações do esquema"
|
|
|
2883
3002
|
#: components/manage/Blocks/Search/layout/RightColumnFacets
|
|
2884
3003
|
#: components/manage/Blocks/Search/layout/TopSideFacets
|
|
2885
3004
|
#: components/manage/Blocks/Search/schema
|
|
3005
|
+
#: components/manage/Sharing/Sharing
|
|
2886
3006
|
#: components/theme/Search/Search
|
|
2887
3007
|
#: components/theme/SearchWidget/SearchWidget
|
|
2888
3008
|
# defaultMessage: Search
|
|
@@ -2943,12 +3063,12 @@ msgstr "Resultados da pesquisa para {term}"
|
|
|
2943
3063
|
#: helpers/MessageLabels/MessageLabels
|
|
2944
3064
|
# defaultMessage: Search sources by title or path
|
|
2945
3065
|
msgid "Search sources by title or path"
|
|
2946
|
-
msgstr ""
|
|
3066
|
+
msgstr "Pesquise fontes por título ou caminho"
|
|
2947
3067
|
|
|
2948
3068
|
#: helpers/MessageLabels/MessageLabels
|
|
2949
3069
|
# defaultMessage: Search targets by title or path
|
|
2950
3070
|
msgid "Search targets by title or path"
|
|
2951
|
-
msgstr ""
|
|
3071
|
+
msgstr "Pesquise destinos por título ou caminho"
|
|
2952
3072
|
|
|
2953
3073
|
#: helpers/MessageLabels/MessageLabels
|
|
2954
3074
|
# defaultMessage: Search users…
|
|
@@ -2991,7 +3111,7 @@ msgstr "Selecione colunas para mostrar"
|
|
|
2991
3111
|
#: helpers/MessageLabels/MessageLabels
|
|
2992
3112
|
# defaultMessage: Select relation
|
|
2993
3113
|
msgid "Select relation"
|
|
2994
|
-
msgstr ""
|
|
3114
|
+
msgstr "Selecione um relacionamento"
|
|
2995
3115
|
|
|
2996
3116
|
#: components/manage/Contents/ContentsWorkflowModal
|
|
2997
3117
|
# defaultMessage: Select the transition to be used for modifying the items state.
|
|
@@ -3001,7 +3121,7 @@ msgstr "Selecione a transição a ser usada para modificar o estado dos itens."
|
|
|
3001
3121
|
#: helpers/MessageLabels/MessageLabels
|
|
3002
3122
|
# defaultMessage: Selected
|
|
3003
3123
|
msgid "Selected"
|
|
3004
|
-
msgstr ""
|
|
3124
|
+
msgstr "Selecionado"
|
|
3005
3125
|
|
|
3006
3126
|
#: components/manage/Widgets/RecurrenceWidget/Occurences
|
|
3007
3127
|
# defaultMessage: Selected dates
|
|
@@ -3043,6 +3163,11 @@ msgstr "Enviar"
|
|
|
3043
3163
|
msgid "Send a confirmation mail with a link to set the password."
|
|
3044
3164
|
msgstr "Envie um e-mail de confirmação com um link para definir a senha."
|
|
3045
3165
|
|
|
3166
|
+
#: components/theme/Error/ServerError
|
|
3167
|
+
# defaultMessage: Server Error
|
|
3168
|
+
msgid "Server Error"
|
|
3169
|
+
msgstr ""
|
|
3170
|
+
|
|
3046
3171
|
#: components/theme/PasswordReset/PasswordReset
|
|
3047
3172
|
# defaultMessage: Set my password
|
|
3048
3173
|
msgid "Set my password"
|
|
@@ -3097,6 +3222,11 @@ msgstr "Mostrar tudo"
|
|
|
3097
3222
|
msgid "Show Replies"
|
|
3098
3223
|
msgstr "Mostrar respostas"
|
|
3099
3224
|
|
|
3225
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
3226
|
+
# defaultMessage: Show filters
|
|
3227
|
+
msgid "Show filters"
|
|
3228
|
+
msgstr "Exibir filtros"
|
|
3229
|
+
|
|
3100
3230
|
#: helpers/MessageLabels/MessageLabels
|
|
3101
3231
|
# defaultMessage: Show groups of users below
|
|
3102
3232
|
msgid "Show groups of users below"
|
|
@@ -3110,12 +3240,12 @@ msgstr "Mostrar item"
|
|
|
3110
3240
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3111
3241
|
# defaultMessage: Show potential sources. Not only objects that are source of some relation.
|
|
3112
3242
|
msgid "Show potential sources. Not only objects that are source of some relation."
|
|
3113
|
-
msgstr ""
|
|
3243
|
+
msgstr "Exibir potenciais fontes. Não apenas os objetos que já são fonte de algum relacionamento."
|
|
3114
3244
|
|
|
3115
3245
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3116
3246
|
# defaultMessage: Show potential targets. Not only objects that are target of some relation.
|
|
3117
3247
|
msgid "Show potential targets. Not only objects that are target of some relation."
|
|
3118
|
-
msgstr ""
|
|
3248
|
+
msgstr "Exibir potenciais destinos. Não apenas os objetos que já são destino de algum relacionamento."
|
|
3119
3249
|
|
|
3120
3250
|
#: components/manage/Blocks/Search/schema
|
|
3121
3251
|
# defaultMessage: Show search button?
|
|
@@ -3152,11 +3282,6 @@ msgstr "Recolher barra de ferramentas"
|
|
|
3152
3282
|
msgid "Sign in to start session"
|
|
3153
3283
|
msgstr "Faça login para iniciar a sessão"
|
|
3154
3284
|
|
|
3155
|
-
#: components/theme/Logo/Logo
|
|
3156
|
-
# defaultMessage: Site
|
|
3157
|
-
msgid "Site"
|
|
3158
|
-
msgstr "Site"
|
|
3159
|
-
|
|
3160
3285
|
#: components/theme/NotFound/NotFound
|
|
3161
3286
|
#: components/theme/Unauthorized/Unauthorized
|
|
3162
3287
|
# defaultMessage: Site Administration
|
|
@@ -3184,10 +3309,20 @@ msgstr "Tamanho: {size}"
|
|
|
3184
3309
|
msgid "Small"
|
|
3185
3310
|
msgstr "Pequeno"
|
|
3186
3311
|
|
|
3312
|
+
#: components/manage/Contents/Contents
|
|
3313
|
+
# defaultMessage: Some items are also a folder.
|
|
3314
|
+
msgid "Some items are also a folder."
|
|
3315
|
+
msgstr ""
|
|
3316
|
+
|
|
3317
|
+
#: components/manage/Contents/Contents
|
|
3318
|
+
# defaultMessage: Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken.
|
|
3319
|
+
msgid "Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken."
|
|
3320
|
+
msgstr ""
|
|
3321
|
+
|
|
3187
3322
|
#: components/manage/Controlpanels/Relations/Relations
|
|
3188
3323
|
# defaultMessage: Some relations are broken. Please fix.
|
|
3189
3324
|
msgid "Some relations are broken. Please fix."
|
|
3190
|
-
msgstr ""
|
|
3325
|
+
msgstr "Alguns relacionamentos estão rompidos. Por favor corrija-os."
|
|
3191
3326
|
|
|
3192
3327
|
#: error
|
|
3193
3328
|
# defaultMessage: Sorry, something went wrong with your request
|
|
@@ -3227,7 +3362,7 @@ msgid "Sorted"
|
|
|
3227
3362
|
msgstr "Ordenado"
|
|
3228
3363
|
|
|
3229
3364
|
#: components/manage/Blocks/HTML/Edit
|
|
3230
|
-
#: components/manage/
|
|
3365
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3231
3366
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3232
3367
|
# defaultMessage: Source
|
|
3233
3368
|
msgid "Source"
|
|
@@ -3271,6 +3406,11 @@ msgstr "Estado"
|
|
|
3271
3406
|
msgid "Status"
|
|
3272
3407
|
msgstr "Situação"
|
|
3273
3408
|
|
|
3409
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3410
|
+
# defaultMessage: Sticky
|
|
3411
|
+
msgid "Sticky"
|
|
3412
|
+
msgstr ""
|
|
3413
|
+
|
|
3274
3414
|
#: components/manage/Multilingual/CompareLanguages
|
|
3275
3415
|
# defaultMessage: Stop compare
|
|
3276
3416
|
msgid "Stop compare"
|
|
@@ -3372,6 +3512,7 @@ msgstr "Tags a serem removidas"
|
|
|
3372
3512
|
|
|
3373
3513
|
#: components/manage/Blocks/Teaser/schema
|
|
3374
3514
|
#: components/manage/Controlpanels/Aliases
|
|
3515
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3375
3516
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3376
3517
|
# defaultMessage: Target
|
|
3377
3518
|
msgid "Target"
|
|
@@ -3400,7 +3541,7 @@ msgstr "O caminho da URL de destino deve começar com uma barra."
|
|
|
3400
3541
|
#: components/manage/Blocks/Teaser/schema
|
|
3401
3542
|
# defaultMessage: Teaser
|
|
3402
3543
|
msgid "Teaser"
|
|
3403
|
-
msgstr ""
|
|
3544
|
+
msgstr "Destaque"
|
|
3404
3545
|
|
|
3405
3546
|
#: components/manage/Widgets/SchemaWidget
|
|
3406
3547
|
# defaultMessage: Text
|
|
@@ -3492,6 +3633,16 @@ msgstr "A cópia de trabalho foi descartada."
|
|
|
3492
3633
|
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
3493
3634
|
msgstr "O {plonecms} tem {copyright} de 2000-{current_year} pela {plonefoundation} e amigos."
|
|
3494
3635
|
|
|
3636
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3637
|
+
# defaultMessage: There are no groups with the searched criteria
|
|
3638
|
+
msgid "There are no groups with the searched criteria"
|
|
3639
|
+
msgstr ""
|
|
3640
|
+
|
|
3641
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3642
|
+
# defaultMessage: There are no users with the searched criteria
|
|
3643
|
+
msgid "There are no users with the searched criteria"
|
|
3644
|
+
msgstr ""
|
|
3645
|
+
|
|
3495
3646
|
#: components/theme/CorsError/CorsError
|
|
3496
3647
|
# defaultMessage: There is a configuration problem on the backend
|
|
3497
3648
|
msgid "There is a configuration problem on the backend"
|
|
@@ -3518,11 +3669,6 @@ msgstr "Houve alguns erros."
|
|
|
3518
3669
|
msgid "Third"
|
|
3519
3670
|
msgstr "Terceiro"
|
|
3520
3671
|
|
|
3521
|
-
#: components/manage/Contents/Contents
|
|
3522
|
-
# defaultMessage: This Page is referenced by the following items:
|
|
3523
|
-
msgid "This Page is referenced by the following items:"
|
|
3524
|
-
msgstr "Esta página é referenciada pelos seguintes itens:"
|
|
3525
|
-
|
|
3526
3672
|
#: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
|
|
3527
3673
|
# defaultMessage: This has an ongoing working copy in {title}
|
|
3528
3674
|
msgid "This has an ongoing working copy in {title}"
|
|
@@ -3538,6 +3684,16 @@ msgstr "Este é um nome reservado e não pode ser usado"
|
|
|
3538
3684
|
msgid "This is a working copy of {title}"
|
|
3539
3685
|
msgstr "Esta é uma cópia de trabalho de {title}"
|
|
3540
3686
|
|
|
3687
|
+
#: components/manage/Contents/Contents
|
|
3688
|
+
# defaultMessage: This item is also a folder.
|
|
3689
|
+
msgid "This item is also a folder."
|
|
3690
|
+
msgstr ""
|
|
3691
|
+
|
|
3692
|
+
#: components/manage/Contents/Contents
|
|
3693
|
+
# defaultMessage: This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken.
|
|
3694
|
+
msgid "This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken."
|
|
3695
|
+
msgstr ""
|
|
3696
|
+
|
|
3541
3697
|
#: components/manage/LockingToastsFactory/LockingToastsFactory
|
|
3542
3698
|
# defaultMessage: This item was locked by {creator} on {date}
|
|
3543
3699
|
msgid "This item was locked by {creator} on {date}"
|
|
@@ -3565,6 +3721,7 @@ msgstr "Hora"
|
|
|
3565
3721
|
|
|
3566
3722
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
3567
3723
|
#: components/manage/Blocks/Teaser/schema
|
|
3724
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3568
3725
|
#: components/manage/Contents/Contents
|
|
3569
3726
|
#: components/manage/Contents/ContentsRenameModal
|
|
3570
3727
|
#: components/manage/Controlpanels/ContentTypes
|
|
@@ -3593,11 +3750,6 @@ msgstr "Total de objetos ativos e não ativos"
|
|
|
3593
3750
|
msgid "Total comments"
|
|
3594
3751
|
msgstr "Total de comentários"
|
|
3595
3752
|
|
|
3596
|
-
#: components/manage/Contents/Contents
|
|
3597
|
-
# defaultMessage: Total items to be deleted:
|
|
3598
|
-
msgid "Total items to be deleted:"
|
|
3599
|
-
msgstr ""
|
|
3600
|
-
|
|
3601
3753
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
3602
3754
|
# defaultMessage: Total number of objects in each cache
|
|
3603
3755
|
msgid "Total number of objects in each cache"
|
|
@@ -3656,6 +3808,7 @@ msgid "Triggering event field error. Please select a value"
|
|
|
3656
3808
|
msgstr "Erro no campo de gatilho. Selecione um valor"
|
|
3657
3809
|
|
|
3658
3810
|
#: components/manage/Controlpanels/ContentTypes
|
|
3811
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
3659
3812
|
#: components/manage/Widgets/SchemaWidget
|
|
3660
3813
|
#: components/theme/View/TabularView
|
|
3661
3814
|
# defaultMessage: Type
|
|
@@ -3775,6 +3928,11 @@ msgstr "Desordenado"
|
|
|
3775
3928
|
msgid "Update"
|
|
3776
3929
|
msgstr "Atualizar"
|
|
3777
3930
|
|
|
3931
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3932
|
+
# defaultMessage: Update User
|
|
3933
|
+
msgid "Update User"
|
|
3934
|
+
msgstr ""
|
|
3935
|
+
|
|
3778
3936
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
3779
3937
|
# defaultMessage: Update installed addons
|
|
3780
3938
|
msgid "Update installed addons"
|
|
@@ -3890,6 +4048,11 @@ msgstr "Nome de usuário"
|
|
|
3890
4048
|
msgid "User roles updated"
|
|
3891
4049
|
msgstr "Papéis do grupo atualizados"
|
|
3892
4050
|
|
|
4051
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4052
|
+
# defaultMessage: User updated successfuly
|
|
4053
|
+
msgid "User updated successfuly"
|
|
4054
|
+
msgstr ""
|
|
4055
|
+
|
|
3893
4056
|
#: helpers/MessageLabels/MessageLabels
|
|
3894
4057
|
# defaultMessage: Username
|
|
3895
4058
|
msgid "Username"
|
|
@@ -3939,6 +4102,11 @@ msgstr "URL do vídeo"
|
|
|
3939
4102
|
msgid "View"
|
|
3940
4103
|
msgstr "Visão"
|
|
3941
4104
|
|
|
4105
|
+
#: components/manage/Contents/Contents
|
|
4106
|
+
# defaultMessage: View broken links list
|
|
4107
|
+
msgid "View broken links list"
|
|
4108
|
+
msgstr ""
|
|
4109
|
+
|
|
3942
4110
|
#: components/manage/History/History
|
|
3943
4111
|
# defaultMessage: View changes
|
|
3944
4112
|
msgid "View changes"
|
|
@@ -3989,6 +4157,11 @@ msgstr "Pedimos desculpas pelo inconveniente, mas o backend do site que você es
|
|
|
3989
4157
|
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."
|
|
3990
4158
|
msgstr "Pedimos desculpas pelo inconveniente, mas a página que você estava tentando acessar não está neste endereço. Você pode usar os links abaixo para ajudá-lo a encontrar o que você está procurando."
|
|
3991
4159
|
|
|
4160
|
+
#: components/theme/Error/ServerError
|
|
4161
|
+
# defaultMessage: We apologize for the inconvenience, but there was an unexpected error on the server.
|
|
4162
|
+
msgid "We apologize for the inconvenience, but there was an unexpected error on the server."
|
|
4163
|
+
msgstr ""
|
|
4164
|
+
|
|
3992
4165
|
#: components/theme/Forbidden/Forbidden
|
|
3993
4166
|
# defaultMessage: We apologize for the inconvenience, but you don't have permissions on this resource.
|
|
3994
4167
|
msgid "We apologize for the inconvenience, but you don't have permissions on this resource."
|
|
@@ -4072,7 +4245,6 @@ msgid "Yearly"
|
|
|
4072
4245
|
msgstr "Anualmente"
|
|
4073
4246
|
|
|
4074
4247
|
#: components/manage/Contents/ContentsItem
|
|
4075
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
4076
4248
|
#: components/manage/Controlpanels/ContentTypes
|
|
4077
4249
|
# defaultMessage: Yes
|
|
4078
4250
|
msgid "Yes"
|
|
@@ -4121,7 +4293,7 @@ msgstr "Você foi desconectado do site."
|
|
|
4121
4293
|
#: components/manage/Controlpanels/Relations/Relations
|
|
4122
4294
|
# defaultMessage: You have not the required permission for this control panel.
|
|
4123
4295
|
msgid "You have not the required permission for this control panel."
|
|
4124
|
-
msgstr ""
|
|
4296
|
+
msgstr "Você não possui a permissão necessária para acessar esse painel de controle."
|
|
4125
4297
|
|
|
4126
4298
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4127
4299
|
# defaultMessage: Your email is required for reset your password.
|
|
@@ -4184,6 +4356,16 @@ msgstr "Esqueceu sua senha?"
|
|
|
4184
4356
|
msgid "checkboxFacet"
|
|
4185
4357
|
msgstr "Caixa de seleção"
|
|
4186
4358
|
|
|
4359
|
+
#: components/manage/Blocks/Grid/templates
|
|
4360
|
+
# defaultMessage: column
|
|
4361
|
+
msgid "column"
|
|
4362
|
+
msgstr ""
|
|
4363
|
+
|
|
4364
|
+
#: components/manage/Blocks/Grid/templates
|
|
4365
|
+
# defaultMessage: columns
|
|
4366
|
+
msgid "columns"
|
|
4367
|
+
msgstr ""
|
|
4368
|
+
|
|
4187
4369
|
#: config/Blocks
|
|
4188
4370
|
# defaultMessage: Common
|
|
4189
4371
|
msgid "common"
|
|
@@ -4194,6 +4376,11 @@ msgstr "Padrão"
|
|
|
4194
4376
|
msgid "compare_to"
|
|
4195
4377
|
msgstr "Comparar com"
|
|
4196
4378
|
|
|
4379
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
4380
|
+
# defaultMessage: {countofrelation} broken {countofrelation, plural, one {relation} other {relations}} of type {typeofrelation}
|
|
4381
|
+
msgid "countBrokenRelations"
|
|
4382
|
+
msgstr ""
|
|
4383
|
+
|
|
4197
4384
|
#: config/Blocks
|
|
4198
4385
|
# defaultMessage: Date Range
|
|
4199
4386
|
msgid "daterangeFacet"
|
|
@@ -4274,15 +4461,25 @@ msgstr "Quando"
|
|
|
4274
4461
|
msgid "event_where"
|
|
4275
4462
|
msgstr "Onde"
|
|
4276
4463
|
|
|
4464
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4465
|
+
# defaultMessage: This website does not accept files larger than {limit}
|
|
4466
|
+
msgid "fileTooLarge"
|
|
4467
|
+
msgstr ""
|
|
4468
|
+
|
|
4277
4469
|
#: helpers/MessageLabels/MessageLabels
|
|
4278
4470
|
# defaultMessage: flush intIds and rebuild relations
|
|
4279
4471
|
msgid "flush intIds and rebuild relations"
|
|
4472
|
+
msgstr "descarrega os intIds e recontrua os relacionamentos"
|
|
4473
|
+
|
|
4474
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4475
|
+
# 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>
|
|
4476
|
+
msgid "flushAndRebuildRelationsHints"
|
|
4280
4477
|
msgstr ""
|
|
4281
4478
|
|
|
4282
4479
|
#: components/manage/Blocks/Teaser/schema
|
|
4283
4480
|
# defaultMessage: Head title
|
|
4284
4481
|
msgid "head_title"
|
|
4285
|
-
msgstr ""
|
|
4482
|
+
msgstr "Título principal"
|
|
4286
4483
|
|
|
4287
4484
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4288
4485
|
# defaultMessage: Password reset confirmation sent
|
|
@@ -4304,6 +4501,16 @@ msgstr "HTML"
|
|
|
4304
4501
|
msgid "image"
|
|
4305
4502
|
msgstr "Imagem"
|
|
4306
4503
|
|
|
4504
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4505
|
+
# defaultMessage: Clear image
|
|
4506
|
+
msgid "image_block_clear"
|
|
4507
|
+
msgstr ""
|
|
4508
|
+
|
|
4509
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4510
|
+
# defaultMessage: Image preview
|
|
4511
|
+
msgid "image_block_preview"
|
|
4512
|
+
msgstr ""
|
|
4513
|
+
|
|
4307
4514
|
#: helpers/MessageLabels/MessageLabels
|
|
4308
4515
|
# defaultMessage: Input must be integer
|
|
4309
4516
|
msgid "integer"
|
|
@@ -4314,6 +4521,16 @@ msgstr "Valor deve ser um número inteiro"
|
|
|
4314
4521
|
msgid "intranet"
|
|
4315
4522
|
msgstr "Intranet"
|
|
4316
4523
|
|
|
4524
|
+
#: components/manage/Contents/Contents
|
|
4525
|
+
# defaultMessage: item
|
|
4526
|
+
msgid "item"
|
|
4527
|
+
msgstr ""
|
|
4528
|
+
|
|
4529
|
+
#: components/manage/Contents/Contents
|
|
4530
|
+
# defaultMessage: items
|
|
4531
|
+
msgid "items"
|
|
4532
|
+
msgstr ""
|
|
4533
|
+
|
|
4317
4534
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4318
4535
|
# defaultMessage: My email is
|
|
4319
4536
|
msgid "label_my_email_is"
|
|
@@ -4383,7 +4600,7 @@ msgstr "Mais usados"
|
|
|
4383
4600
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
4384
4601
|
# defaultMessage: Found {sources} sources and {targets} targets. Narrow down to {max}!
|
|
4385
4602
|
msgid "narrowDownRelations"
|
|
4386
|
-
msgstr ""
|
|
4603
|
+
msgstr "Encontradas {sources} fontes e {targets} destinos. Por favor, reduza ao máximo de {max}!"
|
|
4387
4604
|
|
|
4388
4605
|
#: components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry
|
|
4389
4606
|
#: components/manage/Blocks/Search/components/ToggleFacetFilterListEntry
|
|
@@ -4441,6 +4658,16 @@ msgstr "Selecionar"
|
|
|
4441
4658
|
#: helpers/MessageLabels/MessageLabels
|
|
4442
4659
|
# defaultMessage: rebuild relations
|
|
4443
4660
|
msgid "rebuild relations"
|
|
4661
|
+
msgstr "reconstruir relacionamentos"
|
|
4662
|
+
|
|
4663
|
+
#: components/manage/Contents/Contents
|
|
4664
|
+
# defaultMessage: reference
|
|
4665
|
+
msgid "reference"
|
|
4666
|
+
msgstr ""
|
|
4667
|
+
|
|
4668
|
+
#: components/manage/Contents/Contents
|
|
4669
|
+
# defaultMessage: references
|
|
4670
|
+
msgid "references"
|
|
4444
4671
|
msgstr ""
|
|
4445
4672
|
|
|
4446
4673
|
#: components/theme/Search/Search
|
|
@@ -4646,7 +4873,7 @@ msgstr "ordenar"
|
|
|
4646
4873
|
#: helpers/MessageLabels/MessageLabels
|
|
4647
4874
|
# defaultMessage: sources path
|
|
4648
4875
|
msgid "sources path"
|
|
4649
|
-
msgstr ""
|
|
4876
|
+
msgstr "caminho da fonte"
|
|
4650
4877
|
|
|
4651
4878
|
#: config/Blocks
|
|
4652
4879
|
# defaultMessage: Table
|
|
@@ -4656,7 +4883,7 @@ msgstr "Tabela"
|
|
|
4656
4883
|
#: helpers/MessageLabels/MessageLabels
|
|
4657
4884
|
# defaultMessage: target path
|
|
4658
4885
|
msgid "target path"
|
|
4659
|
-
msgstr ""
|
|
4886
|
+
msgstr "caminho do destino"
|
|
4660
4887
|
|
|
4661
4888
|
#: config/Blocks
|
|
4662
4889
|
# defaultMessage: Text
|
|
@@ -4668,6 +4895,7 @@ msgstr "Texto"
|
|
|
4668
4895
|
msgid "title"
|
|
4669
4896
|
msgstr "Título"
|
|
4670
4897
|
|
|
4898
|
+
#: components/manage/Blocks/ToC/Schema
|
|
4671
4899
|
#: config/Blocks
|
|
4672
4900
|
# defaultMessage: Table of Contents
|
|
4673
4901
|
msgid "toc"
|