@plone/volto 17.0.0-alpha.8 → 17.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +26 -3
- package/CHANGELOG.md +488 -5
- package/CONTRIBUTING.md +5 -1
- package/README.md +12 -9
- package/addon-registry.js +10 -1
- package/create-addons-loader.js +1 -1
- package/cypress/support/commands.js +70 -14
- package/cypress/support/e2e.js +1 -2
- package/cypress/support/volto-slate.js +4 -5
- package/cypress.config.js +1 -0
- package/docker-compose.yml +1 -1
- package/locales/ca/LC_MESSAGES/volto.po +276 -53
- package/locales/ca.json +1 -1
- package/locales/de/LC_MESSAGES/volto.po +284 -61
- package/locales/de.json +1 -1
- package/locales/en/LC_MESSAGES/volto.po +274 -51
- package/locales/en.json +1 -1
- package/locales/es/LC_MESSAGES/volto.po +313 -90
- package/locales/es.json +1 -1
- package/locales/eu/LC_MESSAGES/volto.po +275 -52
- package/locales/eu.json +1 -1
- package/locales/fi/LC_MESSAGES/volto.po +275 -52
- package/locales/fi.json +1 -1
- package/locales/fr/LC_MESSAGES/volto.po +276 -53
- package/locales/fr.json +1 -1
- package/locales/it/LC_MESSAGES/volto.po +469 -246
- package/locales/it.json +1 -1
- package/locales/ja/LC_MESSAGES/volto.po +275 -52
- package/locales/ja.json +1 -1
- package/locales/nl/LC_MESSAGES/volto.po +276 -53
- package/locales/nl.json +1 -1
- package/locales/pt/LC_MESSAGES/volto.po +276 -53
- package/locales/pt.json +1 -1
- package/locales/pt_BR/LC_MESSAGES/volto.po +309 -86
- package/locales/pt_BR.json +1 -1
- package/locales/ro/LC_MESSAGES/volto.po +276 -53
- package/locales/ro.json +1 -1
- package/locales/volto.pot +279 -52
- package/locales/zh_CN/LC_MESSAGES/volto.po +276 -53
- package/locales/zh_CN.json +1 -1
- package/package.json +44 -34
- package/packages/volto-slate/package.json +1 -1
- package/packages/volto-slate/src/actions/index.js +1 -1
- package/packages/volto-slate/src/blocks/Table/TableBlockEdit.jsx +21 -212
- package/packages/volto-slate/src/blocks/Table/schema.js +122 -0
- package/packages/volto-slate/src/blocks/Text/DefaultTextBlockEditor.jsx +8 -3
- package/packages/volto-slate/src/blocks/Text/TextBlockView.jsx +21 -16
- package/packages/volto-slate/src/blocks/Text/extensions/withDeserializers.js +3 -1
- package/packages/volto-slate/src/blocks/Text/index.js +10 -7
- package/packages/volto-slate/src/editor/config.jsx +5 -4
- package/packages/volto-slate/src/editor/index.js +4 -4
- package/packages/volto-slate/src/editor/less/slate.less +28 -0
- package/packages/volto-slate/src/editor/plugins/Link/render.jsx +5 -6
- package/packages/volto-slate/src/editor/plugins/StyleMenu/StyleMenu.jsx +14 -4
- package/packages/volto-slate/src/editor/plugins/StyleMenu/utils.js +14 -5
- package/packages/volto-slate/src/editor/render.jsx +77 -8
- package/packages/volto-slate/src/editor/ui/SlateContextToolbar.jsx +2 -2
- package/packages/volto-slate/src/editor/ui/index.js +15 -15
- package/packages/volto-slate/src/index.js +2 -2
- package/packages/volto-slate/src/utils/blocks.js +7 -0
- package/packages/volto-slate/src/widgets/RichTextWidget.jsx +15 -8
- package/razzle.config.js +4 -6
- package/src/actions/index.js +4 -0
- package/src/actions/navroot/navroot.js +16 -0
- package/src/actions/navroot/navroot.test.js +15 -0
- package/src/actions/relations/rebuild.js +7 -7
- package/src/actions/relations/relations.js +17 -0
- package/src/actions/site/site.js +16 -0
- package/src/actions/site/site.test.js +15 -0
- package/src/actions/userSession/userSession.js +17 -1
- package/src/components/index.js +194 -192
- package/src/components/manage/Actions/Actions.jsx +133 -243
- package/src/components/manage/Add/Add.jsx +7 -8
- package/src/components/manage/AnchorPlugin/index.jsx +2 -2
- package/src/components/manage/AnchorPlugin/utils/EditorUtils.js +3 -1
- package/src/components/manage/Blocks/Block/BlocksForm.jsx +19 -2
- package/src/components/manage/Blocks/Block/Edit.jsx +1 -1
- package/src/components/manage/Blocks/Block/Settings.jsx +2 -0
- package/src/components/manage/Blocks/Block/Settings.test.jsx +92 -0
- package/src/components/manage/Blocks/Block/Style.jsx +2 -2
- package/src/components/manage/Blocks/Container/Data.jsx +32 -0
- package/src/components/manage/Blocks/Container/Edit.jsx +177 -0
- package/src/components/manage/Blocks/Container/EditBlockWrapper.jsx +121 -0
- package/src/components/manage/Blocks/Container/NewBlockAddButton.jsx +84 -0
- package/src/components/manage/Blocks/Container/SimpleContainerToolbar.jsx +54 -0
- package/src/components/manage/Blocks/Grid/Edit.jsx +47 -0
- package/src/components/manage/Blocks/Grid/View.jsx +43 -0
- package/src/components/manage/Blocks/Grid/adapter.js +14 -0
- package/src/components/manage/Blocks/Grid/grid-1.svg +6 -0
- package/src/components/manage/Blocks/Grid/grid-2.svg +9 -0
- package/src/components/manage/Blocks/Grid/grid-3.svg +10 -0
- package/src/components/manage/Blocks/Grid/grid-4.svg +11 -0
- package/src/components/manage/Blocks/Grid/schema.js +35 -0
- package/src/components/manage/Blocks/Grid/templates.js +47 -0
- package/src/components/manage/Blocks/HTML/Edit.jsx +8 -8
- package/src/components/manage/Blocks/HeroImageLeft/Edit.jsx +36 -26
- package/src/components/manage/Blocks/Image/Edit.jsx +51 -12
- package/src/components/manage/Blocks/Image/Edit.test.jsx +2 -0
- package/src/components/manage/Blocks/Image/ImageSidebar.jsx +66 -16
- package/src/components/manage/Blocks/Image/View.jsx +26 -5
- package/src/components/manage/Blocks/Image/View.test.jsx +20 -0
- package/src/components/manage/Blocks/Image/schema.js +17 -10
- package/src/components/manage/Blocks/Image/utils.js +14 -0
- package/src/components/manage/Blocks/LeadImage/Edit.jsx +32 -10
- package/src/components/manage/Blocks/LeadImage/Edit.test.jsx +11 -1
- package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.jsx +28 -9
- package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.test.jsx +8 -2
- package/src/components/manage/Blocks/LeadImage/View.jsx +50 -38
- package/src/components/manage/Blocks/LeadImage/View.test.jsx +11 -1
- package/src/components/manage/Blocks/Listing/DefaultTemplate.jsx +18 -3
- package/src/components/manage/Blocks/Listing/ListingBody.jsx +32 -8
- package/src/components/manage/Blocks/Listing/ListingBody.test.jsx +20 -0
- package/src/components/manage/Blocks/Listing/SummaryTemplate.jsx +1 -1
- package/src/components/manage/Blocks/Listing/getAsyncData.js +3 -5
- package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +27 -17
- package/src/components/manage/Blocks/Maps/Edit.jsx +135 -209
- package/src/components/manage/Blocks/Maps/Edit.test.jsx +1 -2
- package/src/components/manage/Blocks/Maps/View.test.jsx +1 -2
- package/src/components/manage/Blocks/Search/SearchBlockView.jsx +3 -2
- package/src/components/manage/Blocks/Search/components/Facets.jsx +66 -7
- package/src/components/manage/Blocks/Search/components/FilterList.jsx +4 -6
- package/src/components/manage/Blocks/Search/components/SearchInput.jsx +9 -2
- package/src/components/manage/Blocks/Search/components/SelectFacet.jsx +2 -9
- package/src/components/manage/Blocks/Search/components/index.js +13 -13
- package/src/components/manage/Blocks/Search/hocs/index.js +2 -2
- package/src/components/manage/Blocks/Search/hocs/withQueryString.jsx +5 -2
- package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +70 -36
- package/src/components/manage/Blocks/Search/layout/LeftColumnFacets.jsx +17 -5
- package/src/components/manage/Blocks/Search/layout/RightColumnFacets.jsx +17 -5
- package/src/components/manage/Blocks/Search/layout/TopSideFacets.jsx +21 -5
- package/src/components/manage/Blocks/Search/schema.js +29 -14
- package/src/components/manage/Blocks/Table/Cell.jsx +2 -3
- package/src/components/manage/Blocks/Teaser/Body.jsx +0 -1
- package/src/components/manage/Blocks/Teaser/DefaultBody.jsx +5 -10
- package/src/components/manage/Blocks/Teaser/schema.js +5 -0
- package/src/components/manage/Blocks/Text/Edit.jsx +2 -3
- package/src/components/manage/Blocks/Title/View.jsx +0 -23
- package/src/components/manage/Blocks/Title/View.test.jsx +16 -1
- package/src/components/manage/Blocks/ToC/Schema.jsx +40 -7
- package/src/components/manage/Blocks/ToC/View.jsx +84 -14
- package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +8 -3
- package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.test.jsx +44 -0
- package/src/components/manage/Blocks/ToC/variations/HorizontalMenu.jsx +149 -10
- package/src/components/manage/Blocks/ToC/variations/index.js +3 -1
- package/src/components/manage/Contents/Contents.jsx +285 -114
- package/src/components/manage/Contents/ContentsPropertiesModal.jsx +90 -166
- package/src/components/manage/Contents/ContentsRenameModal.jsx +88 -139
- package/src/components/manage/Contents/ContentsRenameModal.stories.jsx +61 -0
- package/src/components/manage/Contents/ContentsTagsModal.jsx +83 -130
- package/src/components/manage/Contents/ContentsTagsModal.stories.jsx +68 -0
- package/src/components/manage/Contents/ContentsUploadModal.jsx +11 -7
- package/src/components/manage/Contents/ContentsWorkflowModal.jsx +87 -154
- package/src/components/manage/Controlpanels/Aliases.jsx +4 -12
- package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.jsx +65 -38
- package/src/components/manage/Controlpanels/Groups/RenderGroups.jsx +2 -2
- package/src/components/manage/Controlpanels/Relations/BrokenRelations.jsx +38 -13
- package/src/components/manage/Controlpanels/Relations/Relations.jsx +5 -5
- package/src/components/manage/Controlpanels/Relations/RelationsListing.jsx +8 -7
- package/src/components/manage/Controlpanels/Relations/RelationsMatrix.jsx +68 -68
- package/src/components/manage/Controlpanels/Rules/AddRule.jsx +3 -10
- package/src/components/manage/Controlpanels/Rules/EditRule.jsx +1 -1
- package/src/components/manage/Controlpanels/UndoControlpanel.jsx +6 -9
- package/src/components/manage/Controlpanels/Users/RenderUsers.jsx +97 -7
- package/src/components/manage/Controlpanels/Users/UsersControlpanel.jsx +127 -99
- package/src/components/manage/Delete/Delete.jsx +96 -171
- package/src/components/manage/Diff/DiffField.jsx +25 -1
- package/src/components/manage/DragDropList/DragDropList.jsx +18 -13
- package/src/components/manage/Form/BlockDataForm.jsx +3 -2
- package/src/components/manage/Form/BlockDataForm.test.jsx +51 -17
- package/src/components/manage/Form/Form.jsx +7 -6
- package/src/components/manage/Form/InlineForm.test.jsx +16 -14
- package/src/components/manage/History/History.jsx +11 -1
- package/src/components/manage/LinksToItem/LinksToItem.jsx +209 -0
- package/src/components/manage/LinksToItem/LinksToItem.test.jsx +100 -0
- package/src/components/manage/LockingToastsFactory/LockingToastsFactory.jsx +1 -2
- package/src/components/manage/Messages/Messages.jsx +32 -99
- package/src/components/manage/Messages/Messages.test.jsx +0 -1
- package/src/components/manage/Preferences/ChangePassword.jsx +2 -2
- package/src/components/manage/Sharing/Sharing.jsx +62 -22
- package/src/components/manage/Sidebar/AlignBlock.jsx +1 -1
- package/src/components/manage/Sidebar/Sidebar.jsx +139 -220
- package/src/components/manage/TemplateChooser/TemplateChooser.jsx +38 -0
- package/src/components/manage/TemplateChooser/TemplateChooser.test.jsx +34 -0
- package/src/components/manage/TemplateChooser/template.svg +10 -0
- package/src/components/manage/Toast/Toast.jsx +1 -1
- package/src/components/manage/Toolbar/More.jsx +17 -2
- package/src/components/manage/Toolbar/PersonalTools.jsx +97 -155
- package/src/components/manage/Toolbar/Toolbar.jsx +2 -2
- package/src/components/manage/UniversalLink/UniversalLink.jsx +6 -12
- package/src/components/manage/UniversalLink/UniversalLink.test.jsx +37 -0
- package/src/components/manage/Widgets/AlignWidget.jsx +2 -4
- package/src/components/manage/Widgets/ArrayWidget.jsx +3 -1
- package/src/components/manage/Widgets/ArrayWidget.test.jsx +45 -1
- package/src/components/manage/Widgets/ColorPickerWidget.jsx +6 -1
- package/src/components/manage/Widgets/ColorPickerWidget.test.jsx +9 -7
- package/src/components/manage/Widgets/DatetimeWidget.jsx +2 -8
- package/src/components/manage/Widgets/FileWidget.jsx +2 -1
- package/src/components/manage/Widgets/FormFieldWrapper.jsx +1 -1
- package/src/components/manage/Widgets/IdWidget.jsx +1 -2
- package/src/components/manage/Widgets/ObjectBrowserWidget.jsx +2 -9
- package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +3 -10
- package/src/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField.jsx +4 -4
- package/src/components/manage/Widgets/RegistryImageWidget.jsx +210 -0
- package/src/components/manage/Widgets/RegistryImageWidget.test.jsx +91 -0
- package/src/components/manage/Widgets/SchemaWidget.jsx +6 -9
- package/src/components/manage/Widgets/SelectUtils.js +1 -1
- package/src/components/manage/Widgets/SelectWidget.jsx +15 -1
- package/src/components/manage/Widgets/SelectWidget.test.jsx +45 -1
- package/src/components/manage/Widgets/WysiwygWidget.jsx +2 -9
- package/src/components/manage/Workflow/Workflow.jsx +75 -184
- package/src/components/theme/Anontools/Anontools.jsx +44 -72
- package/src/components/theme/Anontools/Anontools.stories.jsx +16 -6
- package/src/components/theme/Anontools/Anontools.test.jsx +16 -2
- package/src/components/theme/Breadcrumbs/Breadcrumbs.jsx +52 -99
- package/src/components/theme/Breadcrumbs/Breadcrumbs.stories.jsx +14 -13
- package/src/components/theme/Comments/Comment.stories.jsx +84 -0
- package/src/components/theme/Comments/CommentEditModal.jsx +63 -115
- package/src/components/theme/Comments/Comments.jsx +268 -380
- package/src/components/theme/Component/Component.jsx +1 -1
- package/src/components/theme/ContactForm/ContactForm.jsx +108 -192
- package/src/components/theme/ContactForm/ContactForm.stories.jsx +1 -1
- package/src/components/theme/ContactForm/ContactForm.test.jsx +2 -3
- package/src/components/theme/ContentMetadataTags/ContentMetadataTags.jsx +41 -3
- package/src/components/theme/Error/ServerError.jsx +29 -0
- package/src/components/theme/Header/Header.jsx +37 -63
- package/src/components/theme/Header/Header.test.jsx +18 -0
- package/src/components/theme/Image/Image.jsx +96 -0
- package/src/components/theme/Image/Image.test.jsx +125 -0
- package/src/components/theme/Login/Login.jsx +160 -243
- package/src/components/theme/Logo/Logo.Multilingual.test.jsx +131 -1
- package/src/components/theme/Logo/Logo.jsx +35 -27
- package/src/components/theme/Logo/Logo.test.jsx +135 -1
- package/src/components/theme/Logout/Logout.jsx +36 -83
- package/src/components/theme/Navigation/Navigation.jsx +86 -171
- package/src/components/theme/NotFound/NotFound.jsx +55 -41
- 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 -21
- 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/Api/Api.js +1 -1
- package/src/helpers/Blocks/Blocks.js +52 -6
- package/src/helpers/Blocks/Blocks.test.js +92 -13
- package/src/helpers/Extensions/index.js +2 -1
- package/src/helpers/Extensions/withBlockSchemaEnhancer.js +63 -61
- package/src/helpers/Extensions/withBlockSchemaEnhancer.test.js +145 -0
- package/src/helpers/FormValidation/FormValidation.js +37 -7
- package/src/helpers/FormValidation/FormValidation.test.js +32 -0
- package/src/helpers/Html/Html.jsx +2 -8
- package/src/helpers/Loadable/__mocks__/Loadable.js +18 -18
- package/src/helpers/MessageLabels/MessageLabels.js +39 -4
- package/src/helpers/ScrollToTop/ScrollToTop.jsx +5 -3
- package/src/helpers/Site/index.js +21 -0
- package/src/helpers/Url/Url.js +22 -1
- package/src/helpers/Url/Url.test.js +41 -0
- package/src/helpers/Utils/UseDetectClickOutside.stories.jsx +190 -0
- package/src/helpers/Utils/Utils.js +35 -0
- package/src/helpers/Utils/Utils.test.js +13 -0
- package/src/helpers/Utils/usePagination.js +67 -14
- package/src/helpers/Utils/usePagination.test.js +115 -0
- package/src/helpers/index.js +15 -8
- package/src/hooks/client/useClient.js +11 -0
- package/src/hooks/clipboard/useClipboard.js +26 -0
- package/src/hooks/index.js +2 -0
- package/src/icons/grid-block.svg +11 -0
- package/src/middleware/api.js +203 -173
- package/src/middleware/blacklistRoutes.js +25 -22
- package/src/middleware/index.js +2 -2
- package/src/middleware/storeProtectLoadUtils.js +61 -62
- package/src/middleware/storeProtectLoadUtils.test.js +47 -43
- package/src/reducers/actions/actions.js +7 -5
- package/src/reducers/actions/actions.test.js +70 -0
- package/src/reducers/content/content.test.js +4 -4
- package/src/reducers/index.js +4 -0
- package/src/reducers/navigation/navigation.js +5 -5
- package/src/reducers/navigation/navigation.test.js +30 -0
- package/src/reducers/navroot/navroot.js +79 -0
- package/src/reducers/navroot/navroot.test.js +110 -0
- package/src/reducers/relations/relations.js +74 -46
- package/src/reducers/site/site.js +51 -0
- package/src/reducers/site/site.test.js +67 -0
- package/src/reducers/userSession/userSession.js +15 -1
- package/src/registry.js +2 -2
- package/src/routes.js +9 -0
- package/src/server.jsx +9 -0
- package/src/start-server.js +2 -2
- package/src/storybook.jsx +24 -38
- package/test-setup-config.js +11 -1
- package/theme/themes/pastanaga/collections/form.overrides +46 -0
- package/theme/themes/pastanaga/collections/menu.overrides +3 -2
- package/theme/themes/pastanaga/elements/container.overrides +5 -2
- package/theme/themes/pastanaga/elements/input.overrides +11 -1
- package/theme/themes/pastanaga/elements/label.overrides +10 -0
- package/theme/themes/pastanaga/elements/step.overrides +2 -1
- package/theme/themes/pastanaga/extras/blocks.less +25 -15
- package/theme/themes/pastanaga/extras/color-picker-widget.less +1 -1
- package/theme/themes/pastanaga/extras/contents.less +6 -1
- package/theme/themes/pastanaga/extras/draftjs.less +4 -4
- package/theme/themes/pastanaga/extras/grid.less +427 -0
- package/theme/themes/pastanaga/extras/login.less +3 -0
- package/theme/themes/pastanaga/extras/main.less +14 -7
- package/theme/themes/pastanaga/extras/react-dates-overrides.less +4 -2
- package/theme/themes/pastanaga/extras/search.less +7 -1
- package/theme/themes/pastanaga/extras/sidebar.less +5 -4
- package/theme/themes/pastanaga/extras/time-picker-overrides.less +5 -3
- package/theme/themes/pastanaga/extras/toc.less +29 -0
- package/theme/themes/pastanaga/extras/toolbar.less +6 -2
- package/theme/themes/pastanaga/extras/userscontrolpanel.less +17 -9
- package/theme/themes/pastanaga/extras/widgets.less +1 -1
- package/theme/themes/pastanaga/modules/rating.overrides +2 -1
- package/theme/themes/pastanaga-cms-ui/elements/container.overrides +2 -1
- package/theme/themes/pastanaga-cms-ui/extras/cms-ui.elements.container.less +6 -2
- package/theme/themes/pastanaga-cms-ui/extras/cms-ui.site.less +2 -2
- package/tsconfig.json +33 -0
- package/webpack-plugins/webpack-less-plugin.js +19 -0
- package/.yarn/install-state.gz +0 -0
- package/.yarn/releases/yarn-3.2.3.cjs +0 -783
- package/src/components/manage/Blocks/Teaser/utils.js +0 -44
- package/src/components/manage/Blocks/Teaser/utils.test.jsx +0 -229
- package/src/components/theme/Header/Header.md +0 -27
|
@@ -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"
|
|
@@ -426,6 +446,7 @@ msgstr "Regras de conteúdo disponíveis:"
|
|
|
426
446
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
427
447
|
#: components/manage/Diff/Diff
|
|
428
448
|
#: components/manage/History/History
|
|
449
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
429
450
|
#: components/manage/Multilingual/ManageTranslations
|
|
430
451
|
#: components/manage/Preferences/ChangePassword
|
|
431
452
|
#: components/manage/Preferences/PersonalPreferences
|
|
@@ -468,7 +489,7 @@ msgstr "Navegação estrutural"
|
|
|
468
489
|
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
469
490
|
# defaultMessage: Broken relations
|
|
470
491
|
msgid "Broken relations"
|
|
471
|
-
msgstr ""
|
|
492
|
+
msgstr "Relacionamentos rompidos"
|
|
472
493
|
|
|
473
494
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
474
495
|
#: components/manage/Contents/ContentsUploadModal
|
|
@@ -487,11 +508,6 @@ msgstr "Navegue no site, arraste uma imagem ou digite uma URL"
|
|
|
487
508
|
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
509
|
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
510
|
|
|
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
511
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
496
512
|
# defaultMessage: Cache Name
|
|
497
513
|
msgid "Cache Name"
|
|
@@ -597,6 +613,7 @@ msgid "Choose Target"
|
|
|
597
613
|
msgstr "Escolha Alvo"
|
|
598
614
|
|
|
599
615
|
#: components/manage/Widgets/FileWidget
|
|
616
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
600
617
|
# defaultMessage: Choose a file
|
|
601
618
|
msgid "Choose a file"
|
|
602
619
|
msgstr "Escolha um arquivo"
|
|
@@ -719,6 +736,11 @@ msgstr "Formulário de contato"
|
|
|
719
736
|
msgid "Contained items"
|
|
720
737
|
msgstr "Itens contidos"
|
|
721
738
|
|
|
739
|
+
#: components/manage/Blocks/Container/SimpleContainerToolbar
|
|
740
|
+
# defaultMessage: Container settings
|
|
741
|
+
msgid "Container settings"
|
|
742
|
+
msgstr ""
|
|
743
|
+
|
|
722
744
|
#: components/manage/Controlpanels/Controlpanels
|
|
723
745
|
# defaultMessage: Content
|
|
724
746
|
msgid "Content"
|
|
@@ -745,6 +767,11 @@ msgstr "Regras de conteúdo para {title}"
|
|
|
745
767
|
msgid "Content rules from parent folders"
|
|
746
768
|
msgstr "Regras de conteúdo de pastas pai"
|
|
747
769
|
|
|
770
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
771
|
+
# defaultMessage: Content that links to or references {title}
|
|
772
|
+
msgid "Content that links to or references {title}"
|
|
773
|
+
msgstr ""
|
|
774
|
+
|
|
748
775
|
#: components/manage/Controlpanels/ContentTypes
|
|
749
776
|
# defaultMessage: Content type created
|
|
750
777
|
msgid "Content type created"
|
|
@@ -774,7 +801,7 @@ msgid "Copy"
|
|
|
774
801
|
msgstr "Copiar"
|
|
775
802
|
|
|
776
803
|
#: helpers/MessageLabels/MessageLabels
|
|
777
|
-
# defaultMessage:
|
|
804
|
+
# defaultMessage: Copy blocks
|
|
778
805
|
msgid "Copy blocks"
|
|
779
806
|
msgstr "Copiar blocos"
|
|
780
807
|
|
|
@@ -791,7 +818,7 @@ msgstr "Declaração de copyright ou outras informações de direitos sobre este
|
|
|
791
818
|
#: helpers/MessageLabels/MessageLabels
|
|
792
819
|
# defaultMessage: Create or delete relations to target
|
|
793
820
|
msgid "Create or delete relations to target"
|
|
794
|
-
msgstr ""
|
|
821
|
+
msgstr "Crie ou remova relacionamentos para o destino"
|
|
795
822
|
|
|
796
823
|
#: components/manage/Toolbar/More
|
|
797
824
|
# defaultMessage: Create working copy
|
|
@@ -847,7 +874,7 @@ msgid "Cut"
|
|
|
847
874
|
msgstr "Cortar"
|
|
848
875
|
|
|
849
876
|
#: helpers/MessageLabels/MessageLabels
|
|
850
|
-
# defaultMessage:
|
|
877
|
+
# defaultMessage: Cut blocks
|
|
851
878
|
msgid "Cut blocks"
|
|
852
879
|
msgstr "Recortar blocos"
|
|
853
880
|
|
|
@@ -954,7 +981,7 @@ msgid "Delete action"
|
|
|
954
981
|
msgstr "Remover ação"
|
|
955
982
|
|
|
956
983
|
#: helpers/MessageLabels/MessageLabels
|
|
957
|
-
# defaultMessage:
|
|
984
|
+
# defaultMessage: Delete blocks
|
|
958
985
|
msgid "Delete blocks"
|
|
959
986
|
msgstr "Excluir blocos"
|
|
960
987
|
|
|
@@ -973,6 +1000,16 @@ msgstr "Remover condição"
|
|
|
973
1000
|
msgid "Delete row"
|
|
974
1001
|
msgstr "Excluir linha"
|
|
975
1002
|
|
|
1003
|
+
#: components/manage/Contents/Contents
|
|
1004
|
+
# defaultMessage: Delete selected items?
|
|
1005
|
+
msgid "Delete selected items?"
|
|
1006
|
+
msgstr ""
|
|
1007
|
+
|
|
1008
|
+
#: components/manage/Contents/Contents
|
|
1009
|
+
# defaultMessage: Delete this item?
|
|
1010
|
+
msgid "Delete this item?"
|
|
1011
|
+
msgstr ""
|
|
1012
|
+
|
|
976
1013
|
#: components/manage/Controlpanels/Rules/Rules
|
|
977
1014
|
# defaultMessage: Deleted
|
|
978
1015
|
msgid "Deleted"
|
|
@@ -1041,11 +1078,6 @@ msgstr "Distribuído sob a licença {license}."
|
|
|
1041
1078
|
msgid "Divide each row into separate cells"
|
|
1042
1079
|
msgstr "Dividir cada linha em células separadas"
|
|
1043
1080
|
|
|
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
1081
|
#: components/manage/Controlpanels/Groups/GroupsControlpanel
|
|
1050
1082
|
# defaultMessage: Do you really want to delete the group {groupname}?
|
|
1051
1083
|
msgid "Do you really want to delete the group {groupname}?"
|
|
@@ -1088,16 +1120,19 @@ msgid "Drag and drop files from your computer onto this area or click the “Bro
|
|
|
1088
1120
|
msgstr "Arraste e solte arquivos do seu computador para esta área, ou clique no botão ‘Procurar’."
|
|
1089
1121
|
|
|
1090
1122
|
#: components/manage/Widgets/FileWidget
|
|
1123
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1091
1124
|
# defaultMessage: Drop file here to replace the existing file
|
|
1092
1125
|
msgid "Drop file here to replace the existing file"
|
|
1093
1126
|
msgstr "Solte um arquivo aqui para substituir o arquivo existente"
|
|
1094
1127
|
|
|
1095
1128
|
#: components/manage/Widgets/FileWidget
|
|
1129
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1096
1130
|
# defaultMessage: Drop file here to upload a new file
|
|
1097
1131
|
msgid "Drop file here to upload a new file"
|
|
1098
1132
|
msgstr "Solte um arquivo aqui para enviar um novo arquivo"
|
|
1099
1133
|
|
|
1100
1134
|
#: components/manage/Widgets/FileWidget
|
|
1135
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1101
1136
|
# defaultMessage: Drop files here ...
|
|
1102
1137
|
msgid "Drop files here ..."
|
|
1103
1138
|
msgstr "Soltar aquivos aqui…"
|
|
@@ -1121,6 +1156,7 @@ msgstr "Os endereços de e-mail não coincidem."
|
|
|
1121
1156
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
1122
1157
|
#: components/manage/Controlpanels/ModerateComments
|
|
1123
1158
|
#: components/manage/Controlpanels/Rules/EditRule
|
|
1159
|
+
#: components/manage/Controlpanels/Users/RenderUsers
|
|
1124
1160
|
#: components/manage/Toolbar/Toolbar
|
|
1125
1161
|
#: components/manage/Widgets/FormFieldWrapper
|
|
1126
1162
|
#: components/manage/Widgets/ObjectBrowserWidget
|
|
@@ -1263,15 +1299,20 @@ msgstr "Informe seu e-mail para verificação."
|
|
|
1263
1299
|
|
|
1264
1300
|
#: components/manage/Preferences/ChangePassword
|
|
1265
1301
|
#: 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
|
|
1302
|
+
# defaultMessage: Enter your new password. Minimum 8 characters.
|
|
1303
|
+
msgid "Enter your new password. Minimum 8 characters."
|
|
1304
|
+
msgstr "Digite sua nova senha. Mínimo de 8 caracteres."
|
|
1269
1305
|
|
|
1270
1306
|
#: components/theme/PasswordReset/PasswordReset
|
|
1271
1307
|
# defaultMessage: Enter your username for verification.
|
|
1272
1308
|
msgid "Enter your username for verification."
|
|
1273
1309
|
msgstr "Informe seu nome de usuário para verificação."
|
|
1274
1310
|
|
|
1311
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1312
|
+
# defaultMessage: Entries
|
|
1313
|
+
msgid "Entries"
|
|
1314
|
+
msgstr ""
|
|
1315
|
+
|
|
1275
1316
|
#: components/manage/Add/Add
|
|
1276
1317
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1277
1318
|
#: components/manage/Controlpanels/ContentTypeSchema
|
|
@@ -1415,7 +1456,7 @@ msgstr "Nome do arquivo"
|
|
|
1415
1456
|
#: helpers/MessageLabels/MessageLabels
|
|
1416
1457
|
# defaultMessage: Filter
|
|
1417
1458
|
msgid "Filter"
|
|
1418
|
-
msgstr ""
|
|
1459
|
+
msgstr "Filtrar"
|
|
1419
1460
|
|
|
1420
1461
|
#: components/manage/Controlpanels/Rules/Rules
|
|
1421
1462
|
# defaultMessage: Filter Rules:
|
|
@@ -1445,7 +1486,7 @@ msgstr "Primeiro"
|
|
|
1445
1486
|
#: helpers/MessageLabels/MessageLabels
|
|
1446
1487
|
# defaultMessage: Fix relations
|
|
1447
1488
|
msgid "Fix relations"
|
|
1448
|
-
msgstr ""
|
|
1489
|
+
msgstr "Consertar relacionamentos"
|
|
1449
1490
|
|
|
1450
1491
|
#: components/manage/Blocks/Table/Edit
|
|
1451
1492
|
# defaultMessage: Fixed width columns
|
|
@@ -1519,6 +1560,11 @@ msgstr "Papel global"
|
|
|
1519
1560
|
msgid "Google Maps Embedded Block"
|
|
1520
1561
|
msgstr "Bloco Google Maps"
|
|
1521
1562
|
|
|
1563
|
+
#: components/manage/Blocks/Grid/schema
|
|
1564
|
+
# defaultMessage: Grid
|
|
1565
|
+
msgid "Grid"
|
|
1566
|
+
msgstr ""
|
|
1567
|
+
|
|
1522
1568
|
#: components/manage/Sharing/Sharing
|
|
1523
1569
|
# defaultMessage: Group
|
|
1524
1570
|
msgid "Group"
|
|
@@ -1557,6 +1603,7 @@ msgstr "Grupos são coleções lógicas de usuários, como departamentos e unida
|
|
|
1557
1603
|
msgid "Header cell"
|
|
1558
1604
|
msgstr "Célula de cabeçalho"
|
|
1559
1605
|
|
|
1606
|
+
#: components/manage/Blocks/Grid/schema
|
|
1560
1607
|
#: components/manage/Blocks/Listing/schema
|
|
1561
1608
|
#: components/manage/Blocks/Search/schema
|
|
1562
1609
|
# defaultMessage: Headline
|
|
@@ -1583,6 +1630,16 @@ msgstr "Ocultar respostas"
|
|
|
1583
1630
|
msgid "Hide facet?"
|
|
1584
1631
|
msgstr "Ocultar faceta?"
|
|
1585
1632
|
|
|
1633
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1634
|
+
# defaultMessage: Hide filters
|
|
1635
|
+
msgid "Hide filters"
|
|
1636
|
+
msgstr "Ocultar filtros"
|
|
1637
|
+
|
|
1638
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1639
|
+
# defaultMessage: Hide title
|
|
1640
|
+
msgid "Hide title"
|
|
1641
|
+
msgstr ""
|
|
1642
|
+
|
|
1586
1643
|
#: components/manage/History/History
|
|
1587
1644
|
#: components/manage/Toolbar/More
|
|
1588
1645
|
# defaultMessage: History
|
|
@@ -1654,7 +1711,7 @@ msgstr "Galeria de imagem"
|
|
|
1654
1711
|
#: components/manage/Blocks/Teaser/schema
|
|
1655
1712
|
# defaultMessage: Image override
|
|
1656
1713
|
msgid "Image override"
|
|
1657
|
-
msgstr ""
|
|
1714
|
+
msgstr "Substituir imagem"
|
|
1658
1715
|
|
|
1659
1716
|
#: components/manage/Blocks/Image/schema
|
|
1660
1717
|
# defaultMessage: Image size
|
|
@@ -1717,7 +1774,7 @@ msgstr "Inserir linha antes"
|
|
|
1717
1774
|
#: helpers/MessageLabels/MessageLabels
|
|
1718
1775
|
# defaultMessage: Inspect relations
|
|
1719
1776
|
msgid "Inspect relations"
|
|
1720
|
-
msgstr ""
|
|
1777
|
+
msgstr "Inspecionar relacionamentos"
|
|
1721
1778
|
|
|
1722
1779
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1723
1780
|
# defaultMessage: Install
|
|
@@ -1765,6 +1822,11 @@ msgstr "Intervalo Anual"
|
|
|
1765
1822
|
msgid "Invalid Block"
|
|
1766
1823
|
msgstr "Bloco inválido"
|
|
1767
1824
|
|
|
1825
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1826
|
+
# 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.
|
|
1827
|
+
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."
|
|
1828
|
+
msgstr ""
|
|
1829
|
+
|
|
1768
1830
|
#: components/manage/Widgets/QuerystringWidget
|
|
1769
1831
|
# defaultMessage: Item batch size
|
|
1770
1832
|
msgid "Item batch size"
|
|
@@ -1812,11 +1874,6 @@ msgstr "Itens"
|
|
|
1812
1874
|
msgid "Items must be unique."
|
|
1813
1875
|
msgstr "Os itens devem ser únicos."
|
|
1814
1876
|
|
|
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
1877
|
#: components/manage/Blocks/Search/schema
|
|
1821
1878
|
# defaultMessage: Label
|
|
1822
1879
|
msgid "Label"
|
|
@@ -1879,11 +1936,21 @@ msgstr "Imagem principal"
|
|
|
1879
1936
|
msgid "Left"
|
|
1880
1937
|
msgstr "Esquerda"
|
|
1881
1938
|
|
|
1939
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1940
|
+
# defaultMessage: Less filters
|
|
1941
|
+
msgid "Less filters"
|
|
1942
|
+
msgstr "Menos filtros"
|
|
1943
|
+
|
|
1882
1944
|
#: components/manage/Toolbar/Toolbar
|
|
1883
1945
|
# defaultMessage: Link
|
|
1884
1946
|
msgid "Link"
|
|
1885
1947
|
msgstr "Link"
|
|
1886
1948
|
|
|
1949
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1950
|
+
# defaultMessage: Anchor link copied to the clipboard
|
|
1951
|
+
msgid "Link copied to clipboard"
|
|
1952
|
+
msgstr ""
|
|
1953
|
+
|
|
1887
1954
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1888
1955
|
#: components/manage/Blocks/Listing/schema
|
|
1889
1956
|
# defaultMessage: Link more
|
|
@@ -1895,6 +1962,11 @@ msgstr "Mais"
|
|
|
1895
1962
|
msgid "Link redirect view"
|
|
1896
1963
|
msgstr "Visão de redireção de Link"
|
|
1897
1964
|
|
|
1965
|
+
#: components/manage/Blocks/Image/schema
|
|
1966
|
+
# defaultMessage: Link settings
|
|
1967
|
+
msgid "Link settings"
|
|
1968
|
+
msgstr ""
|
|
1969
|
+
|
|
1898
1970
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1899
1971
|
#: components/manage/Blocks/Listing/schema
|
|
1900
1972
|
# defaultMessage: Link Title
|
|
@@ -1914,6 +1986,17 @@ msgstr "Link para"
|
|
|
1914
1986
|
msgid "Link translation for"
|
|
1915
1987
|
msgstr "Linkar tradução para"
|
|
1916
1988
|
|
|
1989
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
1990
|
+
# defaultMessage: Linking this item with hyperlink in text
|
|
1991
|
+
msgid "Linking this item with hyperlink in text"
|
|
1992
|
+
msgstr ""
|
|
1993
|
+
|
|
1994
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
1995
|
+
#: components/manage/Toolbar/More
|
|
1996
|
+
# defaultMessage: Links and references
|
|
1997
|
+
msgid "Links and references"
|
|
1998
|
+
msgstr ""
|
|
1999
|
+
|
|
1917
2000
|
#: components/manage/Blocks/Listing/schema
|
|
1918
2001
|
# defaultMessage: Listing
|
|
1919
2002
|
msgid "Listing"
|
|
@@ -2009,7 +2092,7 @@ msgstr "Adicionado manual ou automaticamente?"
|
|
|
2009
2092
|
#: helpers/MessageLabels/MessageLabels
|
|
2010
2093
|
# defaultMessage: Many relations found. Please search.
|
|
2011
2094
|
msgid "Many relations found. Please search."
|
|
2012
|
-
msgstr ""
|
|
2095
|
+
msgstr "Muitos relacionamentos foram encontrados. Por favor realize uma busca"
|
|
2013
2096
|
|
|
2014
2097
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2015
2098
|
#: components/manage/Blocks/Maps/schema
|
|
@@ -2040,7 +2123,7 @@ msgstr "Médio"
|
|
|
2040
2123
|
#: helpers/MessageLabels/MessageLabels
|
|
2041
2124
|
# defaultMessage: Membership updated
|
|
2042
2125
|
msgid "Membership updated"
|
|
2043
|
-
msgstr ""
|
|
2126
|
+
msgstr "Participação atualizada"
|
|
2044
2127
|
|
|
2045
2128
|
#: components/theme/ContactForm/ContactForm
|
|
2046
2129
|
# defaultMessage: Message
|
|
@@ -2088,6 +2171,11 @@ msgstr "Mensalmente"
|
|
|
2088
2171
|
msgid "More"
|
|
2089
2172
|
msgstr "Mais"
|
|
2090
2173
|
|
|
2174
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
2175
|
+
# defaultMessage: More filters
|
|
2176
|
+
msgid "More filters"
|
|
2177
|
+
msgstr "Mais filtros"
|
|
2178
|
+
|
|
2091
2179
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
2092
2180
|
# defaultMessage: More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide.
|
|
2093
2181
|
msgid "More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide."
|
|
@@ -2171,7 +2259,6 @@ msgid "News item view"
|
|
|
2171
2259
|
msgstr "Visão de Notícia"
|
|
2172
2260
|
|
|
2173
2261
|
#: components/manage/Contents/ContentsItem
|
|
2174
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
2175
2262
|
#: components/manage/Controlpanels/ContentTypes
|
|
2176
2263
|
# defaultMessage: No
|
|
2177
2264
|
msgid "No"
|
|
@@ -2205,7 +2292,7 @@ msgstr "Nenhum complemento encontrado"
|
|
|
2205
2292
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
2206
2293
|
# defaultMessage: No broken relations found.
|
|
2207
2294
|
msgid "No broken relations found."
|
|
2208
|
-
msgstr ""
|
|
2295
|
+
msgstr "Nenhum relacionamento rompido foi encontrado"
|
|
2209
2296
|
|
|
2210
2297
|
#: components/theme/RequestTimeout/RequestTimeout
|
|
2211
2298
|
# defaultMessage: There is no connection to the server, due to a timeout o no network connection.
|
|
@@ -2230,7 +2317,7 @@ msgstr "Nenhuma imagem definida no campo de imagem"
|
|
|
2230
2317
|
#: components/manage/Blocks/Listing/GalleryNoResultsComponent
|
|
2231
2318
|
# defaultMessage: No images found.
|
|
2232
2319
|
msgid "No images found."
|
|
2233
|
-
msgstr ""
|
|
2320
|
+
msgstr "Nenhuma imagem foi encontrada"
|
|
2234
2321
|
|
|
2235
2322
|
#: components/manage/Blocks/Listing/ListingBody
|
|
2236
2323
|
# defaultMessage: No items found in this container.
|
|
@@ -2242,6 +2329,11 @@ msgstr "Não foram encontrados itens nesta pasta."
|
|
|
2242
2329
|
msgid "No items selected"
|
|
2243
2330
|
msgstr "Nenhum item selecionado"
|
|
2244
2331
|
|
|
2332
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2333
|
+
# defaultMessage: No links to this item found.
|
|
2334
|
+
msgid "No links to this item found."
|
|
2335
|
+
msgstr ""
|
|
2336
|
+
|
|
2245
2337
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2246
2338
|
# defaultMessage: No map selected
|
|
2247
2339
|
msgid "No map selected"
|
|
@@ -2263,7 +2355,7 @@ msgstr "Sem opções"
|
|
|
2263
2355
|
#: helpers/MessageLabels/MessageLabels
|
|
2264
2356
|
# defaultMessage: No relation found
|
|
2265
2357
|
msgid "No relation found"
|
|
2266
|
-
msgstr ""
|
|
2358
|
+
msgstr "Nenhum relacionamento foi encontrado"
|
|
2267
2359
|
|
|
2268
2360
|
#: components/manage/BlockChooser/BlockChooser
|
|
2269
2361
|
#: components/theme/Search/Search
|
|
@@ -2365,11 +2457,21 @@ msgstr "Abrir menu"
|
|
|
2365
2457
|
msgid "Open object browser"
|
|
2366
2458
|
msgstr "Abrir navegador de objetos"
|
|
2367
2459
|
|
|
2460
|
+
#: components/manage/Blocks/ToC/Schema
|
|
2461
|
+
# defaultMessage: Ordered
|
|
2462
|
+
msgid "Ordered"
|
|
2463
|
+
msgstr ""
|
|
2464
|
+
|
|
2368
2465
|
#: components/manage/Blocks/LeadImage/LeadImageSidebar
|
|
2369
2466
|
# defaultMessage: Origin
|
|
2370
2467
|
msgid "Origin"
|
|
2371
2468
|
msgstr "Origem"
|
|
2372
2469
|
|
|
2470
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2471
|
+
# defaultMessage: Overview of relations of all content items
|
|
2472
|
+
msgid "Overview of relations of all content items"
|
|
2473
|
+
msgstr ""
|
|
2474
|
+
|
|
2373
2475
|
#: components/manage/Toolbar/Toolbar
|
|
2374
2476
|
# defaultMessage: Page
|
|
2375
2477
|
msgid "Page"
|
|
@@ -2404,7 +2506,7 @@ msgid "Paste"
|
|
|
2404
2506
|
msgstr "Colar"
|
|
2405
2507
|
|
|
2406
2508
|
#: helpers/MessageLabels/MessageLabels
|
|
2407
|
-
# defaultMessage:
|
|
2509
|
+
# defaultMessage: Paste blocks
|
|
2408
2510
|
msgid "Paste blocks"
|
|
2409
2511
|
msgstr "Colar blocos"
|
|
2410
2512
|
|
|
@@ -2448,7 +2550,7 @@ msgstr "Pessoas responsáveis pela criação do conteúdo deste item. Por favor,
|
|
|
2448
2550
|
#: components/manage/Blocks/Teaser/DefaultBody
|
|
2449
2551
|
# defaultMessage: Please choose an existing content as source for this element
|
|
2450
2552
|
msgid "Please choose an existing content as source for this element"
|
|
2451
|
-
msgstr ""
|
|
2553
|
+
msgstr "Por favor selecione um conteúdo existente como fonte para este elemento"
|
|
2452
2554
|
|
|
2453
2555
|
#: components/manage/Controlpanels/Controlpanels
|
|
2454
2556
|
# defaultMessage: Please continue with the upgrade.
|
|
@@ -2486,20 +2588,15 @@ msgid "Please upgrade to plone.restapi >= 8.24.0."
|
|
|
2486
2588
|
msgstr "Por favor, atualize para plone.restapi >= 8.24.0."
|
|
2487
2589
|
|
|
2488
2590
|
#: components/manage/Controlpanels/Relations/Relations
|
|
2489
|
-
# defaultMessage: Please upgrade to plone.restapi >= 8.
|
|
2490
|
-
msgid "Please upgrade to plone.restapi >= 8.
|
|
2491
|
-
msgstr ""
|
|
2591
|
+
# defaultMessage: Please upgrade to plone.restapi >= 8.39.0.
|
|
2592
|
+
msgid "Please upgrade to plone.restapi >= 8.39.0."
|
|
2593
|
+
msgstr "Por favor atualize a plone.restapi para versão 8.39.0 ou superior."
|
|
2492
2594
|
|
|
2493
2595
|
#: components/theme/Footer/Footer
|
|
2494
2596
|
# defaultMessage: Plone Foundation
|
|
2495
2597
|
msgid "Plone Foundation"
|
|
2496
2598
|
msgstr "Fundação Plone"
|
|
2497
2599
|
|
|
2498
|
-
#: components/theme/Logo/Logo
|
|
2499
|
-
# defaultMessage: Plone Site
|
|
2500
|
-
msgid "Plone Site"
|
|
2501
|
-
msgstr "Site Plone"
|
|
2502
|
-
|
|
2503
2600
|
#: components/theme/Footer/Footer
|
|
2504
2601
|
# defaultMessage: Plone{reg} Open Source CMS/WCM
|
|
2505
2602
|
msgid "Plone{reg} Open Source CMS/WCM"
|
|
@@ -2515,11 +2612,6 @@ msgstr "Posição alterada"
|
|
|
2515
2612
|
msgid "Possible values"
|
|
2516
2613
|
msgstr "Valores possíveis"
|
|
2517
2614
|
|
|
2518
|
-
#: components/manage/Contents/Contents
|
|
2519
|
-
# defaultMessage: Potential link breakage
|
|
2520
|
-
msgid "Potential link breakage"
|
|
2521
|
-
msgstr "Potencial quebra de link"
|
|
2522
|
-
|
|
2523
2615
|
#: components/theme/Footer/Footer
|
|
2524
2616
|
# defaultMessage: Powered by Plone & Python
|
|
2525
2617
|
msgid "Powered by Plone & Python"
|
|
@@ -2587,12 +2679,12 @@ msgstr "Leia Mais…"
|
|
|
2587
2679
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2588
2680
|
# defaultMessage: Read only for this type of relation.
|
|
2589
2681
|
msgid "Read only for this type of relation."
|
|
2590
|
-
msgstr ""
|
|
2682
|
+
msgstr "Apenas leitura para este tipo de relacionamento."
|
|
2591
2683
|
|
|
2592
2684
|
#: components/manage/Contents/Contents
|
|
2593
2685
|
# defaultMessage: Rearrange items by…
|
|
2594
2686
|
msgid "Rearrange items by…"
|
|
2595
|
-
msgstr "
|
|
2687
|
+
msgstr "Reorganizar itens por…"
|
|
2596
2688
|
|
|
2597
2689
|
#: components/manage/Widgets/RecurrenceWidget/EndField
|
|
2598
2690
|
# defaultMessage: Ends
|
|
@@ -2619,6 +2711,16 @@ msgstr "Refazer"
|
|
|
2619
2711
|
msgid "Reduce complexity"
|
|
2620
2712
|
msgstr "Reduzir complexidade"
|
|
2621
2713
|
|
|
2714
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2715
|
+
# defaultMessage: Referencing this item as related item
|
|
2716
|
+
msgid "Referencing this item as related item"
|
|
2717
|
+
msgstr ""
|
|
2718
|
+
|
|
2719
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2720
|
+
# defaultMessage: Referencing this item with {relationship}
|
|
2721
|
+
msgid "Referencing this item with {relationship}"
|
|
2722
|
+
msgstr ""
|
|
2723
|
+
|
|
2622
2724
|
#: components/theme/Anontools/Anontools
|
|
2623
2725
|
#: components/theme/Login/Login
|
|
2624
2726
|
#: components/theme/Register/Register
|
|
@@ -2635,24 +2737,24 @@ msgstr "Formulário de cadastro"
|
|
|
2635
2737
|
#: helpers/MessageLabels/MessageLabels
|
|
2636
2738
|
# defaultMessage: Relation
|
|
2637
2739
|
msgid "Relation name"
|
|
2638
|
-
msgstr ""
|
|
2740
|
+
msgstr "Nome do relacionamento"
|
|
2639
2741
|
|
|
2640
2742
|
#: components/manage/Controlpanels/Controlpanels
|
|
2641
2743
|
#: components/manage/Controlpanels/Relations/Relations
|
|
2642
2744
|
#: helpers/MessageLabels/MessageLabels
|
|
2643
2745
|
# defaultMessage: Relations
|
|
2644
2746
|
msgid "Relations"
|
|
2645
|
-
msgstr ""
|
|
2747
|
+
msgstr "Relacionamentos"
|
|
2646
2748
|
|
|
2647
2749
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2648
2750
|
# defaultMessage: Relations are editable with plone.api >= 2.0.3.
|
|
2649
2751
|
msgid "Relations are editable with plone.api >= 2.0.3."
|
|
2650
|
-
msgstr ""
|
|
2752
|
+
msgstr "Relacionamentos são editáveis com uso da plone.api versão 2.0.3 ou superior."
|
|
2651
2753
|
|
|
2652
2754
|
#: helpers/MessageLabels/MessageLabels
|
|
2653
2755
|
# defaultMessage: Relations updated
|
|
2654
2756
|
msgid "Relations updated"
|
|
2655
|
-
msgstr ""
|
|
2757
|
+
msgstr "Relacionamentos atualizados"
|
|
2656
2758
|
|
|
2657
2759
|
#: components/theme/Search/Search
|
|
2658
2760
|
# defaultMessage: Relevance
|
|
@@ -2664,6 +2766,11 @@ msgstr "Relevância"
|
|
|
2664
2766
|
msgid "Remove"
|
|
2665
2767
|
msgstr "Remover"
|
|
2666
2768
|
|
|
2769
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2770
|
+
# defaultMessage: Remove element {index}
|
|
2771
|
+
msgid "Remove element {index}"
|
|
2772
|
+
msgstr ""
|
|
2773
|
+
|
|
2667
2774
|
#: components/manage/Widgets/ObjectListWidget
|
|
2668
2775
|
# defaultMessage: Remove item
|
|
2669
2776
|
msgid "Remove item"
|
|
@@ -2726,6 +2833,7 @@ msgid "Repeat on"
|
|
|
2726
2833
|
msgstr "Repete em"
|
|
2727
2834
|
|
|
2728
2835
|
#: components/manage/Widgets/FileWidget
|
|
2836
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
2729
2837
|
# defaultMessage: Replace existing file
|
|
2730
2838
|
msgid "Replace existing file"
|
|
2731
2839
|
msgstr "Substituir arquivo existente"
|
|
@@ -2748,6 +2856,11 @@ msgstr "Obrigatório"
|
|
|
2748
2856
|
msgid "Required input is missing."
|
|
2749
2857
|
msgstr "Falta informação obrigatória."
|
|
2750
2858
|
|
|
2859
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2860
|
+
# defaultMessage: Reset element {index}
|
|
2861
|
+
msgid "Reset element {index}"
|
|
2862
|
+
msgstr ""
|
|
2863
|
+
|
|
2751
2864
|
#: components/manage/Widgets/VocabularyTermsWidget
|
|
2752
2865
|
# defaultMessage: Reset title
|
|
2753
2866
|
msgid "Reset term title"
|
|
@@ -2756,7 +2869,7 @@ msgstr "Redefinir o título do termo"
|
|
|
2756
2869
|
#: components/manage/Blocks/Teaser/Data
|
|
2757
2870
|
# defaultMessage: Reset the block
|
|
2758
2871
|
msgid "Reset the block"
|
|
2759
|
-
msgstr ""
|
|
2872
|
+
msgstr "Redefinir o bloco"
|
|
2760
2873
|
|
|
2761
2874
|
#: components/manage/Widgets/QuerystringWidget
|
|
2762
2875
|
# defaultMessage: Results limit
|
|
@@ -2784,6 +2897,7 @@ msgid "Revert to this revision"
|
|
|
2784
2897
|
msgstr "Reverter para esta revisão"
|
|
2785
2898
|
|
|
2786
2899
|
#: components/manage/Contents/Contents
|
|
2900
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2787
2901
|
# defaultMessage: Review state
|
|
2788
2902
|
msgid "Review state"
|
|
2789
2903
|
msgstr "Estado"
|
|
@@ -2865,7 +2979,7 @@ msgstr "Salvo"
|
|
|
2865
2979
|
#: components/manage/Contents/ContentsItem
|
|
2866
2980
|
# defaultMessage: Scheduled
|
|
2867
2981
|
msgid "Scheduled"
|
|
2868
|
-
msgstr ""
|
|
2982
|
+
msgstr "Agendado"
|
|
2869
2983
|
|
|
2870
2984
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2871
2985
|
# defaultMessage: Schema
|
|
@@ -2883,6 +2997,7 @@ msgstr "Atualizações do esquema"
|
|
|
2883
2997
|
#: components/manage/Blocks/Search/layout/RightColumnFacets
|
|
2884
2998
|
#: components/manage/Blocks/Search/layout/TopSideFacets
|
|
2885
2999
|
#: components/manage/Blocks/Search/schema
|
|
3000
|
+
#: components/manage/Sharing/Sharing
|
|
2886
3001
|
#: components/theme/Search/Search
|
|
2887
3002
|
#: components/theme/SearchWidget/SearchWidget
|
|
2888
3003
|
# defaultMessage: Search
|
|
@@ -2943,12 +3058,12 @@ msgstr "Resultados da pesquisa para {term}"
|
|
|
2943
3058
|
#: helpers/MessageLabels/MessageLabels
|
|
2944
3059
|
# defaultMessage: Search sources by title or path
|
|
2945
3060
|
msgid "Search sources by title or path"
|
|
2946
|
-
msgstr ""
|
|
3061
|
+
msgstr "Pesquise fontes por título ou caminho"
|
|
2947
3062
|
|
|
2948
3063
|
#: helpers/MessageLabels/MessageLabels
|
|
2949
3064
|
# defaultMessage: Search targets by title or path
|
|
2950
3065
|
msgid "Search targets by title or path"
|
|
2951
|
-
msgstr ""
|
|
3066
|
+
msgstr "Pesquise destinos por título ou caminho"
|
|
2952
3067
|
|
|
2953
3068
|
#: helpers/MessageLabels/MessageLabels
|
|
2954
3069
|
# defaultMessage: Search users…
|
|
@@ -2991,7 +3106,7 @@ msgstr "Selecione colunas para mostrar"
|
|
|
2991
3106
|
#: helpers/MessageLabels/MessageLabels
|
|
2992
3107
|
# defaultMessage: Select relation
|
|
2993
3108
|
msgid "Select relation"
|
|
2994
|
-
msgstr ""
|
|
3109
|
+
msgstr "Selecione um relacionamento"
|
|
2995
3110
|
|
|
2996
3111
|
#: components/manage/Contents/ContentsWorkflowModal
|
|
2997
3112
|
# defaultMessage: Select the transition to be used for modifying the items state.
|
|
@@ -3001,7 +3116,7 @@ msgstr "Selecione a transição a ser usada para modificar o estado dos itens."
|
|
|
3001
3116
|
#: helpers/MessageLabels/MessageLabels
|
|
3002
3117
|
# defaultMessage: Selected
|
|
3003
3118
|
msgid "Selected"
|
|
3004
|
-
msgstr ""
|
|
3119
|
+
msgstr "Selecionado"
|
|
3005
3120
|
|
|
3006
3121
|
#: components/manage/Widgets/RecurrenceWidget/Occurences
|
|
3007
3122
|
# defaultMessage: Selected dates
|
|
@@ -3043,6 +3158,11 @@ msgstr "Enviar"
|
|
|
3043
3158
|
msgid "Send a confirmation mail with a link to set the password."
|
|
3044
3159
|
msgstr "Envie um e-mail de confirmação com um link para definir a senha."
|
|
3045
3160
|
|
|
3161
|
+
#: components/theme/Error/ServerError
|
|
3162
|
+
# defaultMessage: Server Error
|
|
3163
|
+
msgid "Server Error"
|
|
3164
|
+
msgstr ""
|
|
3165
|
+
|
|
3046
3166
|
#: components/theme/PasswordReset/PasswordReset
|
|
3047
3167
|
# defaultMessage: Set my password
|
|
3048
3168
|
msgid "Set my password"
|
|
@@ -3097,6 +3217,11 @@ msgstr "Mostrar tudo"
|
|
|
3097
3217
|
msgid "Show Replies"
|
|
3098
3218
|
msgstr "Mostrar respostas"
|
|
3099
3219
|
|
|
3220
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
3221
|
+
# defaultMessage: Show filters
|
|
3222
|
+
msgid "Show filters"
|
|
3223
|
+
msgstr "Exibir filtros"
|
|
3224
|
+
|
|
3100
3225
|
#: helpers/MessageLabels/MessageLabels
|
|
3101
3226
|
# defaultMessage: Show groups of users below
|
|
3102
3227
|
msgid "Show groups of users below"
|
|
@@ -3110,12 +3235,12 @@ msgstr "Mostrar item"
|
|
|
3110
3235
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3111
3236
|
# defaultMessage: Show potential sources. Not only objects that are source of some relation.
|
|
3112
3237
|
msgid "Show potential sources. Not only objects that are source of some relation."
|
|
3113
|
-
msgstr ""
|
|
3238
|
+
msgstr "Exibir potenciais fontes. Não apenas os objetos que já são fonte de algum relacionamento."
|
|
3114
3239
|
|
|
3115
3240
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3116
3241
|
# defaultMessage: Show potential targets. Not only objects that are target of some relation.
|
|
3117
3242
|
msgid "Show potential targets. Not only objects that are target of some relation."
|
|
3118
|
-
msgstr ""
|
|
3243
|
+
msgstr "Exibir potenciais destinos. Não apenas os objetos que já são destino de algum relacionamento."
|
|
3119
3244
|
|
|
3120
3245
|
#: components/manage/Blocks/Search/schema
|
|
3121
3246
|
# defaultMessage: Show search button?
|
|
@@ -3152,11 +3277,6 @@ msgstr "Recolher barra de ferramentas"
|
|
|
3152
3277
|
msgid "Sign in to start session"
|
|
3153
3278
|
msgstr "Faça login para iniciar a sessão"
|
|
3154
3279
|
|
|
3155
|
-
#: components/theme/Logo/Logo
|
|
3156
|
-
# defaultMessage: Site
|
|
3157
|
-
msgid "Site"
|
|
3158
|
-
msgstr "Site"
|
|
3159
|
-
|
|
3160
3280
|
#: components/theme/NotFound/NotFound
|
|
3161
3281
|
#: components/theme/Unauthorized/Unauthorized
|
|
3162
3282
|
# defaultMessage: Site Administration
|
|
@@ -3184,10 +3304,20 @@ msgstr "Tamanho: {size}"
|
|
|
3184
3304
|
msgid "Small"
|
|
3185
3305
|
msgstr "Pequeno"
|
|
3186
3306
|
|
|
3307
|
+
#: components/manage/Contents/Contents
|
|
3308
|
+
# defaultMessage: Some items are also a folder.
|
|
3309
|
+
msgid "Some items are also a folder."
|
|
3310
|
+
msgstr ""
|
|
3311
|
+
|
|
3312
|
+
#: components/manage/Contents/Contents
|
|
3313
|
+
# defaultMessage: Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken.
|
|
3314
|
+
msgid "Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken."
|
|
3315
|
+
msgstr ""
|
|
3316
|
+
|
|
3187
3317
|
#: components/manage/Controlpanels/Relations/Relations
|
|
3188
3318
|
# defaultMessage: Some relations are broken. Please fix.
|
|
3189
3319
|
msgid "Some relations are broken. Please fix."
|
|
3190
|
-
msgstr ""
|
|
3320
|
+
msgstr "Alguns relacionamentos estão rompidos. Por favor corrija-os."
|
|
3191
3321
|
|
|
3192
3322
|
#: error
|
|
3193
3323
|
# defaultMessage: Sorry, something went wrong with your request
|
|
@@ -3227,7 +3357,7 @@ msgid "Sorted"
|
|
|
3227
3357
|
msgstr "Ordenado"
|
|
3228
3358
|
|
|
3229
3359
|
#: components/manage/Blocks/HTML/Edit
|
|
3230
|
-
#: components/manage/
|
|
3360
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3231
3361
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3232
3362
|
# defaultMessage: Source
|
|
3233
3363
|
msgid "Source"
|
|
@@ -3271,6 +3401,11 @@ msgstr "Estado"
|
|
|
3271
3401
|
msgid "Status"
|
|
3272
3402
|
msgstr "Situação"
|
|
3273
3403
|
|
|
3404
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3405
|
+
# defaultMessage: Sticky
|
|
3406
|
+
msgid "Sticky"
|
|
3407
|
+
msgstr ""
|
|
3408
|
+
|
|
3274
3409
|
#: components/manage/Multilingual/CompareLanguages
|
|
3275
3410
|
# defaultMessage: Stop compare
|
|
3276
3411
|
msgid "Stop compare"
|
|
@@ -3372,6 +3507,7 @@ msgstr "Tags a serem removidas"
|
|
|
3372
3507
|
|
|
3373
3508
|
#: components/manage/Blocks/Teaser/schema
|
|
3374
3509
|
#: components/manage/Controlpanels/Aliases
|
|
3510
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3375
3511
|
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3376
3512
|
# defaultMessage: Target
|
|
3377
3513
|
msgid "Target"
|
|
@@ -3400,7 +3536,7 @@ msgstr "O caminho da URL de destino deve começar com uma barra."
|
|
|
3400
3536
|
#: components/manage/Blocks/Teaser/schema
|
|
3401
3537
|
# defaultMessage: Teaser
|
|
3402
3538
|
msgid "Teaser"
|
|
3403
|
-
msgstr ""
|
|
3539
|
+
msgstr "Destaque"
|
|
3404
3540
|
|
|
3405
3541
|
#: components/manage/Widgets/SchemaWidget
|
|
3406
3542
|
# defaultMessage: Text
|
|
@@ -3492,6 +3628,16 @@ msgstr "A cópia de trabalho foi descartada."
|
|
|
3492
3628
|
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
3493
3629
|
msgstr "O {plonecms} tem {copyright} de 2000-{current_year} pela {plonefoundation} e amigos."
|
|
3494
3630
|
|
|
3631
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3632
|
+
# defaultMessage: There are no groups with the searched criteria
|
|
3633
|
+
msgid "There are no groups with the searched criteria"
|
|
3634
|
+
msgstr ""
|
|
3635
|
+
|
|
3636
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3637
|
+
# defaultMessage: There are no users with the searched criteria
|
|
3638
|
+
msgid "There are no users with the searched criteria"
|
|
3639
|
+
msgstr ""
|
|
3640
|
+
|
|
3495
3641
|
#: components/theme/CorsError/CorsError
|
|
3496
3642
|
# defaultMessage: There is a configuration problem on the backend
|
|
3497
3643
|
msgid "There is a configuration problem on the backend"
|
|
@@ -3518,11 +3664,6 @@ msgstr "Houve alguns erros."
|
|
|
3518
3664
|
msgid "Third"
|
|
3519
3665
|
msgstr "Terceiro"
|
|
3520
3666
|
|
|
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
3667
|
#: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
|
|
3527
3668
|
# defaultMessage: This has an ongoing working copy in {title}
|
|
3528
3669
|
msgid "This has an ongoing working copy in {title}"
|
|
@@ -3538,6 +3679,16 @@ msgstr "Este é um nome reservado e não pode ser usado"
|
|
|
3538
3679
|
msgid "This is a working copy of {title}"
|
|
3539
3680
|
msgstr "Esta é uma cópia de trabalho de {title}"
|
|
3540
3681
|
|
|
3682
|
+
#: components/manage/Contents/Contents
|
|
3683
|
+
# defaultMessage: This item is also a folder.
|
|
3684
|
+
msgid "This item is also a folder."
|
|
3685
|
+
msgstr ""
|
|
3686
|
+
|
|
3687
|
+
#: components/manage/Contents/Contents
|
|
3688
|
+
# defaultMessage: This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken.
|
|
3689
|
+
msgid "This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken."
|
|
3690
|
+
msgstr ""
|
|
3691
|
+
|
|
3541
3692
|
#: components/manage/LockingToastsFactory/LockingToastsFactory
|
|
3542
3693
|
# defaultMessage: This item was locked by {creator} on {date}
|
|
3543
3694
|
msgid "This item was locked by {creator} on {date}"
|
|
@@ -3565,6 +3716,7 @@ msgstr "Hora"
|
|
|
3565
3716
|
|
|
3566
3717
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
3567
3718
|
#: components/manage/Blocks/Teaser/schema
|
|
3719
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3568
3720
|
#: components/manage/Contents/Contents
|
|
3569
3721
|
#: components/manage/Contents/ContentsRenameModal
|
|
3570
3722
|
#: components/manage/Controlpanels/ContentTypes
|
|
@@ -3593,11 +3745,6 @@ msgstr "Total de objetos ativos e não ativos"
|
|
|
3593
3745
|
msgid "Total comments"
|
|
3594
3746
|
msgstr "Total de comentários"
|
|
3595
3747
|
|
|
3596
|
-
#: components/manage/Contents/Contents
|
|
3597
|
-
# defaultMessage: Total items to be deleted:
|
|
3598
|
-
msgid "Total items to be deleted:"
|
|
3599
|
-
msgstr ""
|
|
3600
|
-
|
|
3601
3748
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
3602
3749
|
# defaultMessage: Total number of objects in each cache
|
|
3603
3750
|
msgid "Total number of objects in each cache"
|
|
@@ -3656,6 +3803,7 @@ msgid "Triggering event field error. Please select a value"
|
|
|
3656
3803
|
msgstr "Erro no campo de gatilho. Selecione um valor"
|
|
3657
3804
|
|
|
3658
3805
|
#: components/manage/Controlpanels/ContentTypes
|
|
3806
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
3659
3807
|
#: components/manage/Widgets/SchemaWidget
|
|
3660
3808
|
#: components/theme/View/TabularView
|
|
3661
3809
|
# defaultMessage: Type
|
|
@@ -3775,6 +3923,11 @@ msgstr "Desordenado"
|
|
|
3775
3923
|
msgid "Update"
|
|
3776
3924
|
msgstr "Atualizar"
|
|
3777
3925
|
|
|
3926
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3927
|
+
# defaultMessage: Update User
|
|
3928
|
+
msgid "Update User"
|
|
3929
|
+
msgstr ""
|
|
3930
|
+
|
|
3778
3931
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
3779
3932
|
# defaultMessage: Update installed addons
|
|
3780
3933
|
msgid "Update installed addons"
|
|
@@ -3890,6 +4043,11 @@ msgstr "Nome de usuário"
|
|
|
3890
4043
|
msgid "User roles updated"
|
|
3891
4044
|
msgstr "Papéis do grupo atualizados"
|
|
3892
4045
|
|
|
4046
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4047
|
+
# defaultMessage: User updated successfuly
|
|
4048
|
+
msgid "User updated successfuly"
|
|
4049
|
+
msgstr ""
|
|
4050
|
+
|
|
3893
4051
|
#: helpers/MessageLabels/MessageLabels
|
|
3894
4052
|
# defaultMessage: Username
|
|
3895
4053
|
msgid "Username"
|
|
@@ -3939,6 +4097,11 @@ msgstr "URL do vídeo"
|
|
|
3939
4097
|
msgid "View"
|
|
3940
4098
|
msgstr "Visão"
|
|
3941
4099
|
|
|
4100
|
+
#: components/manage/Contents/Contents
|
|
4101
|
+
# defaultMessage: View broken links list
|
|
4102
|
+
msgid "View broken links list"
|
|
4103
|
+
msgstr ""
|
|
4104
|
+
|
|
3942
4105
|
#: components/manage/History/History
|
|
3943
4106
|
# defaultMessage: View changes
|
|
3944
4107
|
msgid "View changes"
|
|
@@ -3989,6 +4152,11 @@ msgstr "Pedimos desculpas pelo inconveniente, mas o backend do site que você es
|
|
|
3989
4152
|
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
4153
|
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
4154
|
|
|
4155
|
+
#: components/theme/Error/ServerError
|
|
4156
|
+
# defaultMessage: We apologize for the inconvenience, but there was an unexpected error on the server.
|
|
4157
|
+
msgid "We apologize for the inconvenience, but there was an unexpected error on the server."
|
|
4158
|
+
msgstr ""
|
|
4159
|
+
|
|
3992
4160
|
#: components/theme/Forbidden/Forbidden
|
|
3993
4161
|
# defaultMessage: We apologize for the inconvenience, but you don't have permissions on this resource.
|
|
3994
4162
|
msgid "We apologize for the inconvenience, but you don't have permissions on this resource."
|
|
@@ -4072,7 +4240,6 @@ msgid "Yearly"
|
|
|
4072
4240
|
msgstr "Anualmente"
|
|
4073
4241
|
|
|
4074
4242
|
#: components/manage/Contents/ContentsItem
|
|
4075
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
4076
4243
|
#: components/manage/Controlpanels/ContentTypes
|
|
4077
4244
|
# defaultMessage: Yes
|
|
4078
4245
|
msgid "Yes"
|
|
@@ -4121,7 +4288,7 @@ msgstr "Você foi desconectado do site."
|
|
|
4121
4288
|
#: components/manage/Controlpanels/Relations/Relations
|
|
4122
4289
|
# defaultMessage: You have not the required permission for this control panel.
|
|
4123
4290
|
msgid "You have not the required permission for this control panel."
|
|
4124
|
-
msgstr ""
|
|
4291
|
+
msgstr "Você não possui a permissão necessária para acessar esse painel de controle."
|
|
4125
4292
|
|
|
4126
4293
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4127
4294
|
# defaultMessage: Your email is required for reset your password.
|
|
@@ -4184,6 +4351,16 @@ msgstr "Esqueceu sua senha?"
|
|
|
4184
4351
|
msgid "checkboxFacet"
|
|
4185
4352
|
msgstr "Caixa de seleção"
|
|
4186
4353
|
|
|
4354
|
+
#: components/manage/Blocks/Grid/templates
|
|
4355
|
+
# defaultMessage: column
|
|
4356
|
+
msgid "column"
|
|
4357
|
+
msgstr ""
|
|
4358
|
+
|
|
4359
|
+
#: components/manage/Blocks/Grid/templates
|
|
4360
|
+
# defaultMessage: columns
|
|
4361
|
+
msgid "columns"
|
|
4362
|
+
msgstr ""
|
|
4363
|
+
|
|
4187
4364
|
#: config/Blocks
|
|
4188
4365
|
# defaultMessage: Common
|
|
4189
4366
|
msgid "common"
|
|
@@ -4194,6 +4371,11 @@ msgstr "Padrão"
|
|
|
4194
4371
|
msgid "compare_to"
|
|
4195
4372
|
msgstr "Comparar com"
|
|
4196
4373
|
|
|
4374
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
4375
|
+
# defaultMessage: {countofrelation} broken {countofrelation, plural, one {relation} other {relations}} of type {typeofrelation}
|
|
4376
|
+
msgid "countBrokenRelations"
|
|
4377
|
+
msgstr ""
|
|
4378
|
+
|
|
4197
4379
|
#: config/Blocks
|
|
4198
4380
|
# defaultMessage: Date Range
|
|
4199
4381
|
msgid "daterangeFacet"
|
|
@@ -4274,15 +4456,25 @@ msgstr "Quando"
|
|
|
4274
4456
|
msgid "event_where"
|
|
4275
4457
|
msgstr "Onde"
|
|
4276
4458
|
|
|
4459
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4460
|
+
# defaultMessage: This website does not accept files larger than {limit}
|
|
4461
|
+
msgid "fileTooLarge"
|
|
4462
|
+
msgstr ""
|
|
4463
|
+
|
|
4277
4464
|
#: helpers/MessageLabels/MessageLabels
|
|
4278
4465
|
# defaultMessage: flush intIds and rebuild relations
|
|
4279
4466
|
msgid "flush intIds and rebuild relations"
|
|
4467
|
+
msgstr "descarrega os intIds e recontrua os relacionamentos"
|
|
4468
|
+
|
|
4469
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4470
|
+
# 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>
|
|
4471
|
+
msgid "flushAndRebuildRelationsHints"
|
|
4280
4472
|
msgstr ""
|
|
4281
4473
|
|
|
4282
4474
|
#: components/manage/Blocks/Teaser/schema
|
|
4283
4475
|
# defaultMessage: Head title
|
|
4284
4476
|
msgid "head_title"
|
|
4285
|
-
msgstr ""
|
|
4477
|
+
msgstr "Título principal"
|
|
4286
4478
|
|
|
4287
4479
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4288
4480
|
# defaultMessage: Password reset confirmation sent
|
|
@@ -4304,6 +4496,16 @@ msgstr "HTML"
|
|
|
4304
4496
|
msgid "image"
|
|
4305
4497
|
msgstr "Imagem"
|
|
4306
4498
|
|
|
4499
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4500
|
+
# defaultMessage: Clear image
|
|
4501
|
+
msgid "image_block_clear"
|
|
4502
|
+
msgstr ""
|
|
4503
|
+
|
|
4504
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4505
|
+
# defaultMessage: Image preview
|
|
4506
|
+
msgid "image_block_preview"
|
|
4507
|
+
msgstr ""
|
|
4508
|
+
|
|
4307
4509
|
#: helpers/MessageLabels/MessageLabels
|
|
4308
4510
|
# defaultMessage: Input must be integer
|
|
4309
4511
|
msgid "integer"
|
|
@@ -4314,6 +4516,16 @@ msgstr "Valor deve ser um número inteiro"
|
|
|
4314
4516
|
msgid "intranet"
|
|
4315
4517
|
msgstr "Intranet"
|
|
4316
4518
|
|
|
4519
|
+
#: components/manage/Contents/Contents
|
|
4520
|
+
# defaultMessage: item
|
|
4521
|
+
msgid "item"
|
|
4522
|
+
msgstr ""
|
|
4523
|
+
|
|
4524
|
+
#: components/manage/Contents/Contents
|
|
4525
|
+
# defaultMessage: items
|
|
4526
|
+
msgid "items"
|
|
4527
|
+
msgstr ""
|
|
4528
|
+
|
|
4317
4529
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4318
4530
|
# defaultMessage: My email is
|
|
4319
4531
|
msgid "label_my_email_is"
|
|
@@ -4383,7 +4595,7 @@ msgstr "Mais usados"
|
|
|
4383
4595
|
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
4384
4596
|
# defaultMessage: Found {sources} sources and {targets} targets. Narrow down to {max}!
|
|
4385
4597
|
msgid "narrowDownRelations"
|
|
4386
|
-
msgstr ""
|
|
4598
|
+
msgstr "Encontradas {sources} fontes e {targets} destinos. Por favor, reduza ao máximo de {max}!"
|
|
4387
4599
|
|
|
4388
4600
|
#: components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry
|
|
4389
4601
|
#: components/manage/Blocks/Search/components/ToggleFacetFilterListEntry
|
|
@@ -4441,6 +4653,16 @@ msgstr "Selecionar"
|
|
|
4441
4653
|
#: helpers/MessageLabels/MessageLabels
|
|
4442
4654
|
# defaultMessage: rebuild relations
|
|
4443
4655
|
msgid "rebuild relations"
|
|
4656
|
+
msgstr "reconstruir relacionamentos"
|
|
4657
|
+
|
|
4658
|
+
#: components/manage/Contents/Contents
|
|
4659
|
+
# defaultMessage: reference
|
|
4660
|
+
msgid "reference"
|
|
4661
|
+
msgstr ""
|
|
4662
|
+
|
|
4663
|
+
#: components/manage/Contents/Contents
|
|
4664
|
+
# defaultMessage: references
|
|
4665
|
+
msgid "references"
|
|
4444
4666
|
msgstr ""
|
|
4445
4667
|
|
|
4446
4668
|
#: components/theme/Search/Search
|
|
@@ -4646,7 +4868,7 @@ msgstr "ordenar"
|
|
|
4646
4868
|
#: helpers/MessageLabels/MessageLabels
|
|
4647
4869
|
# defaultMessage: sources path
|
|
4648
4870
|
msgid "sources path"
|
|
4649
|
-
msgstr ""
|
|
4871
|
+
msgstr "caminho da fonte"
|
|
4650
4872
|
|
|
4651
4873
|
#: config/Blocks
|
|
4652
4874
|
# defaultMessage: Table
|
|
@@ -4656,7 +4878,7 @@ msgstr "Tabela"
|
|
|
4656
4878
|
#: helpers/MessageLabels/MessageLabels
|
|
4657
4879
|
# defaultMessage: target path
|
|
4658
4880
|
msgid "target path"
|
|
4659
|
-
msgstr ""
|
|
4881
|
+
msgstr "caminho do destino"
|
|
4660
4882
|
|
|
4661
4883
|
#: config/Blocks
|
|
4662
4884
|
# defaultMessage: Text
|
|
@@ -4668,6 +4890,7 @@ msgstr "Texto"
|
|
|
4668
4890
|
msgid "title"
|
|
4669
4891
|
msgstr "Título"
|
|
4670
4892
|
|
|
4893
|
+
#: components/manage/Blocks/ToC/Schema
|
|
4671
4894
|
#: config/Blocks
|
|
4672
4895
|
# defaultMessage: Table of Contents
|
|
4673
4896
|
msgid "toc"
|