@plone/volto 17.0.0-alpha.3 → 17.0.0-alpha.30
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/.yarn/install-state.gz +0 -0
- package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +541 -0
- package/.yarn/releases/yarn-3.6.3.cjs +874 -0
- package/CHANGELOG.md +716 -20
- package/CONTRIBUTING.md +5 -1
- package/README.md +20 -21
- package/addon-registry.js +44 -1
- package/create-addons-loader.js +1 -1
- package/create-theme-addons-loader.js +79 -0
- 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 +422 -53
- package/locales/ca.json +1 -1
- package/locales/de/LC_MESSAGES/volto.po +442 -73
- package/locales/de.json +1 -1
- package/locales/en/LC_MESSAGES/volto.po +420 -51
- package/locales/en.json +1 -1
- package/locales/es/LC_MESSAGES/volto.po +431 -62
- package/locales/es.json +1 -1
- package/locales/eu/LC_MESSAGES/volto.po +421 -52
- package/locales/eu.json +1 -1
- package/locales/fi/LC_MESSAGES/volto.po +4985 -0
- package/locales/fi.json +1 -1
- package/locales/fr/LC_MESSAGES/volto.po +422 -53
- package/locales/fr.json +1 -1
- package/locales/it/LC_MESSAGES/volto.po +589 -220
- package/locales/it.json +1 -1
- package/locales/ja/LC_MESSAGES/volto.po +421 -52
- package/locales/ja.json +1 -1
- package/locales/nl/LC_MESSAGES/volto.po +1072 -691
- package/locales/nl.json +1 -1
- package/locales/pt/LC_MESSAGES/volto.po +422 -53
- package/locales/pt.json +1 -1
- package/locales/pt_BR/LC_MESSAGES/volto.po +429 -60
- package/locales/pt_BR.json +1 -1
- package/locales/ro/LC_MESSAGES/volto.po +422 -53
- package/locales/ro.json +1 -1
- package/locales/volto.pot +425 -52
- package/locales/zh_CN/LC_MESSAGES/volto.po +422 -53
- package/locales/zh_CN.json +1 -1
- package/package.json +46 -35
- package/packages/volto-slate/build/messages/src/blocks/Table/TableBlockEdit.json +1 -1
- package/packages/volto-slate/build/messages/src/blocks/Text/DefaultTextBlockEditor.json +1 -1
- package/packages/volto-slate/build/messages/src/blocks/Text/DetachedTextBlockEditor.json +1 -1
- package/packages/volto-slate/build/messages/src/blocks/Text/SlashMenu.json +1 -1
- package/packages/volto-slate/build/messages/src/editor/plugins/AdvancedLink/index.json +1 -1
- package/packages/volto-slate/build/messages/src/editor/plugins/Link/index.json +1 -1
- package/packages/volto-slate/build/messages/src/editor/plugins/Table/index.json +1 -1
- package/packages/volto-slate/build/messages/src/elementEditor/messages.json +1 -1
- package/packages/volto-slate/build/messages/src/widgets/HtmlSlateWidget.json +1 -1
- package/packages/volto-slate/build/messages/src/widgets/RichTextWidgetView.json +1 -1
- 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/SlashMenu.jsx +4 -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/deserialize.js +0 -1
- 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 +32 -6
- package/src/actions/index.js +10 -0
- package/src/actions/language/language.js +9 -8
- package/src/actions/navroot/navroot.js +16 -0
- package/src/actions/navroot/navroot.test.js +15 -0
- package/src/actions/querystringsearch/querystringsearch.js +20 -14
- package/src/actions/relations/rebuild.js +25 -0
- package/src/actions/relations/relations.js +103 -0
- package/src/actions/relations/relations.test.js +15 -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 -191
- package/src/components/manage/Actions/Actions.jsx +133 -243
- package/src/components/manage/Add/Add.jsx +9 -10
- package/src/components/manage/AnchorPlugin/index.jsx +2 -2
- package/src/components/manage/AnchorPlugin/utils/EditorUtils.js +3 -1
- package/src/components/manage/BlockChooser/BlockChooser.jsx +8 -3
- package/src/components/manage/BlockChooser/BlockChooser.test.jsx +5 -0
- 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/Edit.jsx +0 -14
- 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 +9 -3
- package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +34 -19
- 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/SearchBlockEdit.jsx +5 -4
- package/src/components/manage/Blocks/Search/SearchBlockView.jsx +4 -2
- package/src/components/manage/Blocks/Search/components/DateRangeFacet.jsx +4 -1
- 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 +93 -46
- 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 +319 -139
- package/src/components/manage/Contents/ContentsItem.jsx +6 -0
- 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/Controlpanels.jsx +199 -224
- package/src/components/manage/Controlpanels/Controlpanels.test.jsx +46 -7
- 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 +91 -0
- package/src/components/manage/Controlpanels/Relations/Relations.jsx +114 -0
- package/src/components/manage/Controlpanels/Relations/RelationsListing.jsx +480 -0
- package/src/components/manage/Controlpanels/Relations/RelationsMatrix.jsx +531 -0
- 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/UserGroupMembershipControlPanel.jsx +3 -3
- package/src/components/manage/Controlpanels/Users/UserGroupMembershipListing.jsx +51 -82
- package/src/components/manage/Controlpanels/Users/UserGroupMembershipMatrix.jsx +79 -75
- 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.jsx +39 -9
- package/src/components/manage/Form/InlineForm.test.jsx +16 -14
- package/src/components/manage/Form/InlineFormState.js +8 -0
- 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/Multilingual/CreateTranslation.jsx +2 -2
- package/src/components/manage/Multilingual/TranslationObject.jsx +4 -3
- package/src/components/manage/Preferences/ChangePassword.jsx +2 -2
- package/src/components/manage/Preferences/PersonalPreferences.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 +2 -2
- 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/Toolbar/Types.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 +11 -13
- 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/ObjectListWidget.jsx +3 -8
- package/src/components/manage/Widgets/RecurrenceWidget/ByDayField.jsx +2 -1
- package/src/components/manage/Widgets/RecurrenceWidget/MonthOfTheYearField.jsx +2 -1
- package/src/components/manage/Widgets/RecurrenceWidget/Occurences.jsx +2 -1
- package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +10 -12
- package/src/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthField.jsx +2 -1
- 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 +2 -2
- package/src/components/manage/Widgets/SelectWidget.jsx +16 -2
- 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/Footer/Footer.jsx +2 -13
- package/src/components/theme/Header/Header.jsx +37 -63
- package/src/components/theme/Header/Header.test.jsx +18 -0
- package/src/components/theme/Icon/Icon.jsx +2 -2
- package/src/components/theme/Image/Image.jsx +96 -0
- package/src/components/theme/Image/Image.test.jsx +125 -0
- package/src/components/theme/LanguageSelector/LanguageSelector.js +8 -3
- package/src/components/theme/Login/Login.jsx +160 -242
- package/src/components/theme/Logo/Logo.Multilingual.test.jsx +131 -1
- package/src/components/theme/Logo/Logo.jsx +35 -26
- package/src/components/theme/Logo/Logo.test.jsx +135 -1
- package/src/components/theme/Logout/Logout.jsx +36 -83
- package/src/components/theme/MultilingualRedirector/MultilingualRedirector.jsx +2 -2
- package/src/components/theme/Navigation/NavItem.jsx +4 -2
- 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 +8 -6
- package/src/components/theme/PasswordReset/RequestPasswordReset.jsx +96 -171
- 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 +25 -12
- 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/DefaultView.jsx +1 -1
- package/src/components/theme/View/EventDatesInfo.jsx +2 -1
- 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/DateWidget.jsx +2 -1
- package/src/components/theme/Widgets/DatetimeWidget.jsx +2 -1
- package/src/components/theme/Widgets/ImageWidget.stories.jsx +1 -2
- package/src/components/theme/Widgets/RelationsWidget.jsx +13 -11
- package/src/config/Blocks.jsx +46 -0
- package/src/config/Components.jsx +3 -1
- package/src/config/ControlPanels.js +2 -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 +4 -0
- package/src/config/index.js +38 -2
- package/src/config/server.js +2 -0
- package/src/constants/ActionTypes.js +8 -0
- package/src/constants/Indexes.js +3 -1
- package/src/constants/Languages.js +8 -4
- 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 +37 -5
- 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 +42 -3
- package/src/helpers/FormValidation/FormValidation.test.js +73 -0
- package/src/helpers/Html/Html.jsx +5 -9
- package/src/helpers/Html/Html.test.jsx +5 -0
- package/src/helpers/Loadable/__mocks__/Loadable.js +18 -18
- package/src/helpers/MessageLabels/MessageLabels.js +111 -4
- package/src/helpers/Robots/Robots.js +24 -6
- package/src/helpers/ScrollToTop/ScrollToTop.jsx +5 -3
- package/src/helpers/Site/index.js +21 -0
- package/src/helpers/Sitemap/Sitemap.js +44 -2
- package/src/helpers/Url/Url.js +30 -4
- package/src/helpers/Url/Url.test.js +55 -0
- package/src/helpers/Utils/UseDetectClickOutside.stories.jsx +190 -0
- package/src/helpers/Utils/Utils.js +73 -13
- package/src/helpers/Utils/Utils.test.js +17 -4
- package/src/helpers/Utils/usePagination.js +67 -14
- package/src/helpers/Utils/usePagination.test.js +115 -0
- package/src/helpers/index.js +22 -10
- 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.test.js +54 -0
- package/src/middleware/api.js +209 -175
- 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 +8 -6
- package/src/reducers/actions/actions.test.js +70 -0
- package/src/reducers/breadcrumbs/breadcrumbs.js +1 -1
- package/src/reducers/content/content.test.js +4 -4
- package/src/reducers/index.js +6 -0
- package/src/reducers/navigation/navigation.js +6 -6
- 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 +201 -0
- package/src/reducers/site/site.js +51 -0
- package/src/reducers/site/site.test.js +67 -0
- package/src/reducers/types/types.js +1 -1
- package/src/reducers/userSession/userSession.js +15 -1
- package/src/registry.js +2 -2
- package/src/routes.js +14 -0
- package/src/server.jsx +37 -23
- package/src/start-server.js +2 -2
- package/src/storybook.jsx +24 -38
- package/test-setup-config.js +12 -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 +9 -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 +104 -73
- 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/.changelog.draft +0 -19
- package/.editorconfig +0 -36
- package/.storybook/main.js +0 -127
- package/.storybook/manager.js +0 -15
- package/.storybook/preview.js +0 -21
- package/.storybook/static/previewImage.svg +0 -48
- package/.vale.ini +0 -10
- package/.yarnrc.yml +0 -5
- package/jsdoc.json +0 -16
- package/netlify.toml +0 -5
- package/pyvenv.cfg +0 -3
- package/share/man/man1/ttx.1 +0 -225
- 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
- package/styles/Vocab/Base/accept.txt +0 -0
- package/styles/Vocab/Base/reject.txt +0 -0
- package/styles/Vocab/Plone/accept.txt +0 -8
- package/styles/Vocab/Plone/reject.txt +0 -0
- package/towncrier.toml +0 -33
|
@@ -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
|
|
@@ -465,6 +486,11 @@ msgstr "O endereço de e-mail e a senha diferenciam maiúsculas de minúsculas.
|
|
|
465
486
|
msgid "Breadcrumbs"
|
|
466
487
|
msgstr "Navegação estrutural"
|
|
467
488
|
|
|
489
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
490
|
+
# defaultMessage: Broken relations
|
|
491
|
+
msgid "Broken relations"
|
|
492
|
+
msgstr "Relacionamentos rompidos"
|
|
493
|
+
|
|
468
494
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
469
495
|
#: components/manage/Contents/ContentsUploadModal
|
|
470
496
|
#: components/manage/Sidebar/ObjectBrowserNav
|
|
@@ -482,11 +508,6 @@ msgstr "Navegue no site, arraste uma imagem ou digite uma URL"
|
|
|
482
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."
|
|
483
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."
|
|
484
510
|
|
|
485
|
-
#: components/manage/Contents/Contents
|
|
486
|
-
# 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.
|
|
487
|
-
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."
|
|
488
|
-
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."
|
|
489
|
-
|
|
490
511
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
491
512
|
# defaultMessage: Cache Name
|
|
492
513
|
msgid "Cache Name"
|
|
@@ -592,6 +613,7 @@ msgid "Choose Target"
|
|
|
592
613
|
msgstr "Escolha Alvo"
|
|
593
614
|
|
|
594
615
|
#: components/manage/Widgets/FileWidget
|
|
616
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
595
617
|
# defaultMessage: Choose a file
|
|
596
618
|
msgid "Choose a file"
|
|
597
619
|
msgstr "Escolha um arquivo"
|
|
@@ -714,6 +736,11 @@ msgstr "Formulário de contato"
|
|
|
714
736
|
msgid "Contained items"
|
|
715
737
|
msgstr "Itens contidos"
|
|
716
738
|
|
|
739
|
+
#: components/manage/Blocks/Container/SimpleContainerToolbar
|
|
740
|
+
# defaultMessage: Container settings
|
|
741
|
+
msgid "Container settings"
|
|
742
|
+
msgstr ""
|
|
743
|
+
|
|
717
744
|
#: components/manage/Controlpanels/Controlpanels
|
|
718
745
|
# defaultMessage: Content
|
|
719
746
|
msgid "Content"
|
|
@@ -740,6 +767,11 @@ msgstr "Regras de conteúdo para {title}"
|
|
|
740
767
|
msgid "Content rules from parent folders"
|
|
741
768
|
msgstr "Regras de conteúdo de pastas pai"
|
|
742
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
|
+
|
|
743
775
|
#: components/manage/Controlpanels/ContentTypes
|
|
744
776
|
# defaultMessage: Content type created
|
|
745
777
|
msgid "Content type created"
|
|
@@ -769,7 +801,7 @@ msgid "Copy"
|
|
|
769
801
|
msgstr "Copiar"
|
|
770
802
|
|
|
771
803
|
#: helpers/MessageLabels/MessageLabels
|
|
772
|
-
# defaultMessage:
|
|
804
|
+
# defaultMessage: Copy blocks
|
|
773
805
|
msgid "Copy blocks"
|
|
774
806
|
msgstr "Copiar blocos"
|
|
775
807
|
|
|
@@ -783,6 +815,11 @@ msgstr "Copyright"
|
|
|
783
815
|
msgid "Copyright statement or other rights information on this item."
|
|
784
816
|
msgstr "Declaração de copyright ou outras informações de direitos sobre este item."
|
|
785
817
|
|
|
818
|
+
#: helpers/MessageLabels/MessageLabels
|
|
819
|
+
# defaultMessage: Create or delete relations to target
|
|
820
|
+
msgid "Create or delete relations to target"
|
|
821
|
+
msgstr "Crie ou remova relacionamentos para o destino"
|
|
822
|
+
|
|
786
823
|
#: components/manage/Toolbar/More
|
|
787
824
|
# defaultMessage: Create working copy
|
|
788
825
|
msgid "Create working copy"
|
|
@@ -837,7 +874,7 @@ msgid "Cut"
|
|
|
837
874
|
msgstr "Cortar"
|
|
838
875
|
|
|
839
876
|
#: helpers/MessageLabels/MessageLabels
|
|
840
|
-
# defaultMessage:
|
|
877
|
+
# defaultMessage: Cut blocks
|
|
841
878
|
msgid "Cut blocks"
|
|
842
879
|
msgstr "Recortar blocos"
|
|
843
880
|
|
|
@@ -944,7 +981,7 @@ msgid "Delete action"
|
|
|
944
981
|
msgstr "Remover ação"
|
|
945
982
|
|
|
946
983
|
#: helpers/MessageLabels/MessageLabels
|
|
947
|
-
# defaultMessage:
|
|
984
|
+
# defaultMessage: Delete blocks
|
|
948
985
|
msgid "Delete blocks"
|
|
949
986
|
msgstr "Excluir blocos"
|
|
950
987
|
|
|
@@ -963,6 +1000,16 @@ msgstr "Remover condição"
|
|
|
963
1000
|
msgid "Delete row"
|
|
964
1001
|
msgstr "Excluir linha"
|
|
965
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
|
+
|
|
966
1013
|
#: components/manage/Controlpanels/Rules/Rules
|
|
967
1014
|
# defaultMessage: Deleted
|
|
968
1015
|
msgid "Deleted"
|
|
@@ -1031,11 +1078,6 @@ msgstr "Distribuído sob a licença {license}."
|
|
|
1031
1078
|
msgid "Divide each row into separate cells"
|
|
1032
1079
|
msgstr "Dividir cada linha em células separadas"
|
|
1033
1080
|
|
|
1034
|
-
#: components/manage/Contents/Contents
|
|
1035
|
-
# defaultMessage: Do you really want to delete the following items?
|
|
1036
|
-
msgid "Do you really want to delete the following items?"
|
|
1037
|
-
msgstr "Você realmente quer excluir os itens seguintes?"
|
|
1038
|
-
|
|
1039
1081
|
#: components/manage/Controlpanels/Groups/GroupsControlpanel
|
|
1040
1082
|
# defaultMessage: Do you really want to delete the group {groupname}?
|
|
1041
1083
|
msgid "Do you really want to delete the group {groupname}?"
|
|
@@ -1078,16 +1120,19 @@ msgid "Drag and drop files from your computer onto this area or click the “Bro
|
|
|
1078
1120
|
msgstr "Arraste e solte arquivos do seu computador para esta área, ou clique no botão ‘Procurar’."
|
|
1079
1121
|
|
|
1080
1122
|
#: components/manage/Widgets/FileWidget
|
|
1123
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1081
1124
|
# defaultMessage: Drop file here to replace the existing file
|
|
1082
1125
|
msgid "Drop file here to replace the existing file"
|
|
1083
1126
|
msgstr "Solte um arquivo aqui para substituir o arquivo existente"
|
|
1084
1127
|
|
|
1085
1128
|
#: components/manage/Widgets/FileWidget
|
|
1129
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1086
1130
|
# defaultMessage: Drop file here to upload a new file
|
|
1087
1131
|
msgid "Drop file here to upload a new file"
|
|
1088
1132
|
msgstr "Solte um arquivo aqui para enviar um novo arquivo"
|
|
1089
1133
|
|
|
1090
1134
|
#: components/manage/Widgets/FileWidget
|
|
1135
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1091
1136
|
# defaultMessage: Drop files here ...
|
|
1092
1137
|
msgid "Drop files here ..."
|
|
1093
1138
|
msgstr "Soltar aquivos aqui…"
|
|
@@ -1111,6 +1156,7 @@ msgstr "Os endereços de e-mail não coincidem."
|
|
|
1111
1156
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
1112
1157
|
#: components/manage/Controlpanels/ModerateComments
|
|
1113
1158
|
#: components/manage/Controlpanels/Rules/EditRule
|
|
1159
|
+
#: components/manage/Controlpanels/Users/RenderUsers
|
|
1114
1160
|
#: components/manage/Toolbar/Toolbar
|
|
1115
1161
|
#: components/manage/Widgets/FormFieldWrapper
|
|
1116
1162
|
#: components/manage/Widgets/ObjectBrowserWidget
|
|
@@ -1253,15 +1299,20 @@ msgstr "Informe seu e-mail para verificação."
|
|
|
1253
1299
|
|
|
1254
1300
|
#: components/manage/Preferences/ChangePassword
|
|
1255
1301
|
#: components/theme/PasswordReset/PasswordReset
|
|
1256
|
-
# defaultMessage: Enter your new password. Minimum
|
|
1257
|
-
msgid "Enter your new password. Minimum
|
|
1258
|
-
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."
|
|
1259
1305
|
|
|
1260
1306
|
#: components/theme/PasswordReset/PasswordReset
|
|
1261
1307
|
# defaultMessage: Enter your username for verification.
|
|
1262
1308
|
msgid "Enter your username for verification."
|
|
1263
1309
|
msgstr "Informe seu nome de usuário para verificação."
|
|
1264
1310
|
|
|
1311
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1312
|
+
# defaultMessage: Entries
|
|
1313
|
+
msgid "Entries"
|
|
1314
|
+
msgstr ""
|
|
1315
|
+
|
|
1265
1316
|
#: components/manage/Add/Add
|
|
1266
1317
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1267
1318
|
#: components/manage/Controlpanels/ContentTypeSchema
|
|
@@ -1402,6 +1453,11 @@ msgstr "Visão de Arquivo"
|
|
|
1402
1453
|
msgid "Filename"
|
|
1403
1454
|
msgstr "Nome do arquivo"
|
|
1404
1455
|
|
|
1456
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1457
|
+
# defaultMessage: Filter
|
|
1458
|
+
msgid "Filter"
|
|
1459
|
+
msgstr "Filtrar"
|
|
1460
|
+
|
|
1405
1461
|
#: components/manage/Controlpanels/Rules/Rules
|
|
1406
1462
|
# defaultMessage: Filter Rules:
|
|
1407
1463
|
msgid "Filter Rules:"
|
|
@@ -1427,6 +1483,11 @@ msgstr "Filtrar…"
|
|
|
1427
1483
|
msgid "First"
|
|
1428
1484
|
msgstr "Primeiro"
|
|
1429
1485
|
|
|
1486
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1487
|
+
# defaultMessage: Fix relations
|
|
1488
|
+
msgid "Fix relations"
|
|
1489
|
+
msgstr "Consertar relacionamentos"
|
|
1490
|
+
|
|
1430
1491
|
#: components/manage/Blocks/Table/Edit
|
|
1431
1492
|
# defaultMessage: Fixed width columns
|
|
1432
1493
|
msgid "Fixed width table cells"
|
|
@@ -1499,6 +1560,11 @@ msgstr "Papel global"
|
|
|
1499
1560
|
msgid "Google Maps Embedded Block"
|
|
1500
1561
|
msgstr "Bloco Google Maps"
|
|
1501
1562
|
|
|
1563
|
+
#: components/manage/Blocks/Grid/schema
|
|
1564
|
+
# defaultMessage: Grid
|
|
1565
|
+
msgid "Grid"
|
|
1566
|
+
msgstr ""
|
|
1567
|
+
|
|
1502
1568
|
#: components/manage/Sharing/Sharing
|
|
1503
1569
|
# defaultMessage: Group
|
|
1504
1570
|
msgid "Group"
|
|
@@ -1537,6 +1603,7 @@ msgstr "Grupos são coleções lógicas de usuários, como departamentos e unida
|
|
|
1537
1603
|
msgid "Header cell"
|
|
1538
1604
|
msgstr "Célula de cabeçalho"
|
|
1539
1605
|
|
|
1606
|
+
#: components/manage/Blocks/Grid/schema
|
|
1540
1607
|
#: components/manage/Blocks/Listing/schema
|
|
1541
1608
|
#: components/manage/Blocks/Search/schema
|
|
1542
1609
|
# defaultMessage: Headline
|
|
@@ -1563,6 +1630,16 @@ msgstr "Ocultar respostas"
|
|
|
1563
1630
|
msgid "Hide facet?"
|
|
1564
1631
|
msgstr "Ocultar faceta?"
|
|
1565
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
|
+
|
|
1566
1643
|
#: components/manage/History/History
|
|
1567
1644
|
#: components/manage/Toolbar/More
|
|
1568
1645
|
# defaultMessage: History
|
|
@@ -1634,7 +1711,7 @@ msgstr "Galeria de imagem"
|
|
|
1634
1711
|
#: components/manage/Blocks/Teaser/schema
|
|
1635
1712
|
# defaultMessage: Image override
|
|
1636
1713
|
msgid "Image override"
|
|
1637
|
-
msgstr ""
|
|
1714
|
+
msgstr "Substituir imagem"
|
|
1638
1715
|
|
|
1639
1716
|
#: components/manage/Blocks/Image/schema
|
|
1640
1717
|
# defaultMessage: Image size
|
|
@@ -1694,6 +1771,11 @@ msgstr "Inserir linha após"
|
|
|
1694
1771
|
msgid "Insert row before"
|
|
1695
1772
|
msgstr "Inserir linha antes"
|
|
1696
1773
|
|
|
1774
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1775
|
+
# defaultMessage: Inspect relations
|
|
1776
|
+
msgid "Inspect relations"
|
|
1777
|
+
msgstr "Inspecionar relacionamentos"
|
|
1778
|
+
|
|
1697
1779
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1698
1780
|
# defaultMessage: Install
|
|
1699
1781
|
msgid "Install"
|
|
@@ -1740,6 +1822,11 @@ msgstr "Intervalo Anual"
|
|
|
1740
1822
|
msgid "Invalid Block"
|
|
1741
1823
|
msgstr "Bloco inválido"
|
|
1742
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
|
+
|
|
1743
1830
|
#: components/manage/Widgets/QuerystringWidget
|
|
1744
1831
|
# defaultMessage: Item batch size
|
|
1745
1832
|
msgid "Item batch size"
|
|
@@ -1787,11 +1874,6 @@ msgstr "Itens"
|
|
|
1787
1874
|
msgid "Items must be unique."
|
|
1788
1875
|
msgstr "Os itens devem ser únicos."
|
|
1789
1876
|
|
|
1790
|
-
#: components/manage/Contents/Contents
|
|
1791
|
-
# defaultMessage: Items to be deleted:
|
|
1792
|
-
msgid "Items to be deleted:"
|
|
1793
|
-
msgstr "Itens a serem removidos"
|
|
1794
|
-
|
|
1795
1877
|
#: components/manage/Blocks/Search/schema
|
|
1796
1878
|
# defaultMessage: Label
|
|
1797
1879
|
msgid "Label"
|
|
@@ -1854,11 +1936,21 @@ msgstr "Imagem principal"
|
|
|
1854
1936
|
msgid "Left"
|
|
1855
1937
|
msgstr "Esquerda"
|
|
1856
1938
|
|
|
1939
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1940
|
+
# defaultMessage: Less filters
|
|
1941
|
+
msgid "Less filters"
|
|
1942
|
+
msgstr "Menos filtros"
|
|
1943
|
+
|
|
1857
1944
|
#: components/manage/Toolbar/Toolbar
|
|
1858
1945
|
# defaultMessage: Link
|
|
1859
1946
|
msgid "Link"
|
|
1860
1947
|
msgstr "Link"
|
|
1861
1948
|
|
|
1949
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1950
|
+
# defaultMessage: Anchor link copied to the clipboard
|
|
1951
|
+
msgid "Link copied to clipboard"
|
|
1952
|
+
msgstr ""
|
|
1953
|
+
|
|
1862
1954
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1863
1955
|
#: components/manage/Blocks/Listing/schema
|
|
1864
1956
|
# defaultMessage: Link more
|
|
@@ -1870,6 +1962,11 @@ msgstr "Mais"
|
|
|
1870
1962
|
msgid "Link redirect view"
|
|
1871
1963
|
msgstr "Visão de redireção de Link"
|
|
1872
1964
|
|
|
1965
|
+
#: components/manage/Blocks/Image/schema
|
|
1966
|
+
# defaultMessage: Link settings
|
|
1967
|
+
msgid "Link settings"
|
|
1968
|
+
msgstr ""
|
|
1969
|
+
|
|
1873
1970
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1874
1971
|
#: components/manage/Blocks/Listing/schema
|
|
1875
1972
|
# defaultMessage: Link Title
|
|
@@ -1889,6 +1986,17 @@ msgstr "Link para"
|
|
|
1889
1986
|
msgid "Link translation for"
|
|
1890
1987
|
msgstr "Linkar tradução para"
|
|
1891
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
|
+
|
|
1892
2000
|
#: components/manage/Blocks/Listing/schema
|
|
1893
2001
|
# defaultMessage: Listing
|
|
1894
2002
|
msgid "Listing"
|
|
@@ -1981,6 +2089,11 @@ msgstr "Manual"
|
|
|
1981
2089
|
msgid "Manually or automatically added?"
|
|
1982
2090
|
msgstr "Adicionado manual ou automaticamente?"
|
|
1983
2091
|
|
|
2092
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2093
|
+
# defaultMessage: Many relations found. Please search.
|
|
2094
|
+
msgid "Many relations found. Please search."
|
|
2095
|
+
msgstr "Muitos relacionamentos foram encontrados. Por favor realize uma busca"
|
|
2096
|
+
|
|
1984
2097
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
1985
2098
|
#: components/manage/Blocks/Maps/schema
|
|
1986
2099
|
# defaultMessage: Maps
|
|
@@ -2010,7 +2123,7 @@ msgstr "Médio"
|
|
|
2010
2123
|
#: helpers/MessageLabels/MessageLabels
|
|
2011
2124
|
# defaultMessage: Membership updated
|
|
2012
2125
|
msgid "Membership updated"
|
|
2013
|
-
msgstr ""
|
|
2126
|
+
msgstr "Participação atualizada"
|
|
2014
2127
|
|
|
2015
2128
|
#: components/theme/ContactForm/ContactForm
|
|
2016
2129
|
# defaultMessage: Message
|
|
@@ -2058,6 +2171,11 @@ msgstr "Mensalmente"
|
|
|
2058
2171
|
msgid "More"
|
|
2059
2172
|
msgstr "Mais"
|
|
2060
2173
|
|
|
2174
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
2175
|
+
# defaultMessage: More filters
|
|
2176
|
+
msgid "More filters"
|
|
2177
|
+
msgstr "Mais filtros"
|
|
2178
|
+
|
|
2061
2179
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
2062
2180
|
# defaultMessage: More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide.
|
|
2063
2181
|
msgid "More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide."
|
|
@@ -2099,7 +2217,7 @@ msgid "My email is"
|
|
|
2099
2217
|
msgstr "Meu e-mail é"
|
|
2100
2218
|
|
|
2101
2219
|
#: components/theme/PasswordReset/PasswordReset
|
|
2102
|
-
# defaultMessage: My
|
|
2220
|
+
# defaultMessage: My user name is
|
|
2103
2221
|
msgid "My username is"
|
|
2104
2222
|
msgstr "Meu nome de usuário é"
|
|
2105
2223
|
|
|
@@ -2141,7 +2259,6 @@ msgid "News item view"
|
|
|
2141
2259
|
msgstr "Visão de Notícia"
|
|
2142
2260
|
|
|
2143
2261
|
#: components/manage/Contents/ContentsItem
|
|
2144
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
2145
2262
|
#: components/manage/Controlpanels/ContentTypes
|
|
2146
2263
|
# defaultMessage: No
|
|
2147
2264
|
msgid "No"
|
|
@@ -2172,6 +2289,11 @@ msgstr "Nenhum vídeo selecionado"
|
|
|
2172
2289
|
msgid "No addons found"
|
|
2173
2290
|
msgstr "Nenhum complemento encontrado"
|
|
2174
2291
|
|
|
2292
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
2293
|
+
# defaultMessage: No broken relations found.
|
|
2294
|
+
msgid "No broken relations found."
|
|
2295
|
+
msgstr "Nenhum relacionamento rompido foi encontrado"
|
|
2296
|
+
|
|
2175
2297
|
#: components/theme/RequestTimeout/RequestTimeout
|
|
2176
2298
|
# defaultMessage: There is no connection to the server, due to a timeout o no network connection.
|
|
2177
2299
|
msgid "No connection to the server"
|
|
@@ -2195,7 +2317,7 @@ msgstr "Nenhuma imagem definida no campo de imagem"
|
|
|
2195
2317
|
#: components/manage/Blocks/Listing/GalleryNoResultsComponent
|
|
2196
2318
|
# defaultMessage: No images found.
|
|
2197
2319
|
msgid "No images found."
|
|
2198
|
-
msgstr ""
|
|
2320
|
+
msgstr "Nenhuma imagem foi encontrada"
|
|
2199
2321
|
|
|
2200
2322
|
#: components/manage/Blocks/Listing/ListingBody
|
|
2201
2323
|
# defaultMessage: No items found in this container.
|
|
@@ -2207,6 +2329,11 @@ msgstr "Não foram encontrados itens nesta pasta."
|
|
|
2207
2329
|
msgid "No items selected"
|
|
2208
2330
|
msgstr "Nenhum item selecionado"
|
|
2209
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
|
+
|
|
2210
2337
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2211
2338
|
# defaultMessage: No map selected
|
|
2212
2339
|
msgid "No map selected"
|
|
@@ -2225,6 +2352,11 @@ msgstr "Sem ocorrências definidas"
|
|
|
2225
2352
|
msgid "No options"
|
|
2226
2353
|
msgstr "Sem opções"
|
|
2227
2354
|
|
|
2355
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2356
|
+
# defaultMessage: No relation found
|
|
2357
|
+
msgid "No relation found"
|
|
2358
|
+
msgstr "Nenhum relacionamento foi encontrado"
|
|
2359
|
+
|
|
2228
2360
|
#: components/manage/BlockChooser/BlockChooser
|
|
2229
2361
|
#: components/theme/Search/Search
|
|
2230
2362
|
# defaultMessage: No results found
|
|
@@ -2325,11 +2457,21 @@ msgstr "Abrir menu"
|
|
|
2325
2457
|
msgid "Open object browser"
|
|
2326
2458
|
msgstr "Abrir navegador de objetos"
|
|
2327
2459
|
|
|
2460
|
+
#: components/manage/Blocks/ToC/Schema
|
|
2461
|
+
# defaultMessage: Ordered
|
|
2462
|
+
msgid "Ordered"
|
|
2463
|
+
msgstr ""
|
|
2464
|
+
|
|
2328
2465
|
#: components/manage/Blocks/LeadImage/LeadImageSidebar
|
|
2329
2466
|
# defaultMessage: Origin
|
|
2330
2467
|
msgid "Origin"
|
|
2331
2468
|
msgstr "Origem"
|
|
2332
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
|
+
|
|
2333
2475
|
#: components/manage/Toolbar/Toolbar
|
|
2334
2476
|
# defaultMessage: Page
|
|
2335
2477
|
msgid "Page"
|
|
@@ -2364,7 +2506,7 @@ msgid "Paste"
|
|
|
2364
2506
|
msgstr "Colar"
|
|
2365
2507
|
|
|
2366
2508
|
#: helpers/MessageLabels/MessageLabels
|
|
2367
|
-
# defaultMessage:
|
|
2509
|
+
# defaultMessage: Paste blocks
|
|
2368
2510
|
msgid "Paste blocks"
|
|
2369
2511
|
msgstr "Colar blocos"
|
|
2370
2512
|
|
|
@@ -2408,7 +2550,7 @@ msgstr "Pessoas responsáveis pela criação do conteúdo deste item. Por favor,
|
|
|
2408
2550
|
#: components/manage/Blocks/Teaser/DefaultBody
|
|
2409
2551
|
# defaultMessage: Please choose an existing content as source for this element
|
|
2410
2552
|
msgid "Please choose an existing content as source for this element"
|
|
2411
|
-
msgstr ""
|
|
2553
|
+
msgstr "Por favor selecione um conteúdo existente como fonte para este elemento"
|
|
2412
2554
|
|
|
2413
2555
|
#: components/manage/Controlpanels/Controlpanels
|
|
2414
2556
|
# defaultMessage: Please continue with the upgrade.
|
|
@@ -2445,16 +2587,16 @@ msgstr "Procure por usuários ou use os filtros na lateral."
|
|
|
2445
2587
|
msgid "Please upgrade to plone.restapi >= 8.24.0."
|
|
2446
2588
|
msgstr "Por favor, atualize para plone.restapi >= 8.24.0."
|
|
2447
2589
|
|
|
2590
|
+
#: components/manage/Controlpanels/Relations/Relations
|
|
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."
|
|
2594
|
+
|
|
2448
2595
|
#: components/theme/Footer/Footer
|
|
2449
2596
|
# defaultMessage: Plone Foundation
|
|
2450
2597
|
msgid "Plone Foundation"
|
|
2451
2598
|
msgstr "Fundação Plone"
|
|
2452
2599
|
|
|
2453
|
-
#: components/theme/Logo/Logo
|
|
2454
|
-
# defaultMessage: Plone Site
|
|
2455
|
-
msgid "Plone Site"
|
|
2456
|
-
msgstr "Site Plone"
|
|
2457
|
-
|
|
2458
2600
|
#: components/theme/Footer/Footer
|
|
2459
2601
|
# defaultMessage: Plone{reg} Open Source CMS/WCM
|
|
2460
2602
|
msgid "Plone{reg} Open Source CMS/WCM"
|
|
@@ -2470,11 +2612,6 @@ msgstr "Posição alterada"
|
|
|
2470
2612
|
msgid "Possible values"
|
|
2471
2613
|
msgstr "Valores possíveis"
|
|
2472
2614
|
|
|
2473
|
-
#: components/manage/Contents/Contents
|
|
2474
|
-
# defaultMessage: Potential link breakage
|
|
2475
|
-
msgid "Potential link breakage"
|
|
2476
|
-
msgstr "Potencial quebra de link"
|
|
2477
|
-
|
|
2478
2615
|
#: components/theme/Footer/Footer
|
|
2479
2616
|
# defaultMessage: Powered by Plone & Python
|
|
2480
2617
|
msgid "Powered by Plone & Python"
|
|
@@ -2539,10 +2676,15 @@ msgstr "Reinsira a senha. Certifique-se de que as senhas são idênticas."
|
|
|
2539
2676
|
msgid "Read More…"
|
|
2540
2677
|
msgstr "Leia Mais…"
|
|
2541
2678
|
|
|
2679
|
+
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2680
|
+
# defaultMessage: Read only for this type of relation.
|
|
2681
|
+
msgid "Read only for this type of relation."
|
|
2682
|
+
msgstr "Apenas leitura para este tipo de relacionamento."
|
|
2683
|
+
|
|
2542
2684
|
#: components/manage/Contents/Contents
|
|
2543
2685
|
# defaultMessage: Rearrange items by…
|
|
2544
2686
|
msgid "Rearrange items by…"
|
|
2545
|
-
msgstr "
|
|
2687
|
+
msgstr "Reorganizar itens por…"
|
|
2546
2688
|
|
|
2547
2689
|
#: components/manage/Widgets/RecurrenceWidget/EndField
|
|
2548
2690
|
# defaultMessage: Ends
|
|
@@ -2569,6 +2711,16 @@ msgstr "Refazer"
|
|
|
2569
2711
|
msgid "Reduce complexity"
|
|
2570
2712
|
msgstr "Reduzir complexidade"
|
|
2571
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
|
+
|
|
2572
2724
|
#: components/theme/Anontools/Anontools
|
|
2573
2725
|
#: components/theme/Login/Login
|
|
2574
2726
|
#: components/theme/Register/Register
|
|
@@ -2581,6 +2733,29 @@ msgstr "Cadastro"
|
|
|
2581
2733
|
msgid "Registration form"
|
|
2582
2734
|
msgstr "Formulário de cadastro"
|
|
2583
2735
|
|
|
2736
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
2737
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2738
|
+
# defaultMessage: Relation
|
|
2739
|
+
msgid "Relation name"
|
|
2740
|
+
msgstr "Nome do relacionamento"
|
|
2741
|
+
|
|
2742
|
+
#: components/manage/Controlpanels/Controlpanels
|
|
2743
|
+
#: components/manage/Controlpanels/Relations/Relations
|
|
2744
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2745
|
+
# defaultMessage: Relations
|
|
2746
|
+
msgid "Relations"
|
|
2747
|
+
msgstr "Relacionamentos"
|
|
2748
|
+
|
|
2749
|
+
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2750
|
+
# defaultMessage: Relations are editable with plone.api >= 2.0.3.
|
|
2751
|
+
msgid "Relations are editable with plone.api >= 2.0.3."
|
|
2752
|
+
msgstr "Relacionamentos são editáveis com uso da plone.api versão 2.0.3 ou superior."
|
|
2753
|
+
|
|
2754
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2755
|
+
# defaultMessage: Relations updated
|
|
2756
|
+
msgid "Relations updated"
|
|
2757
|
+
msgstr "Relacionamentos atualizados"
|
|
2758
|
+
|
|
2584
2759
|
#: components/theme/Search/Search
|
|
2585
2760
|
# defaultMessage: Relevance
|
|
2586
2761
|
msgid "Relevance"
|
|
@@ -2591,6 +2766,11 @@ msgstr "Relevância"
|
|
|
2591
2766
|
msgid "Remove"
|
|
2592
2767
|
msgstr "Remover"
|
|
2593
2768
|
|
|
2769
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2770
|
+
# defaultMessage: Remove element {index}
|
|
2771
|
+
msgid "Remove element {index}"
|
|
2772
|
+
msgstr ""
|
|
2773
|
+
|
|
2594
2774
|
#: components/manage/Widgets/ObjectListWidget
|
|
2595
2775
|
# defaultMessage: Remove item
|
|
2596
2776
|
msgid "Remove item"
|
|
@@ -2653,6 +2833,7 @@ msgid "Repeat on"
|
|
|
2653
2833
|
msgstr "Repete em"
|
|
2654
2834
|
|
|
2655
2835
|
#: components/manage/Widgets/FileWidget
|
|
2836
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
2656
2837
|
# defaultMessage: Replace existing file
|
|
2657
2838
|
msgid "Replace existing file"
|
|
2658
2839
|
msgstr "Substituir arquivo existente"
|
|
@@ -2675,6 +2856,11 @@ msgstr "Obrigatório"
|
|
|
2675
2856
|
msgid "Required input is missing."
|
|
2676
2857
|
msgstr "Falta informação obrigatória."
|
|
2677
2858
|
|
|
2859
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2860
|
+
# defaultMessage: Reset element {index}
|
|
2861
|
+
msgid "Reset element {index}"
|
|
2862
|
+
msgstr ""
|
|
2863
|
+
|
|
2678
2864
|
#: components/manage/Widgets/VocabularyTermsWidget
|
|
2679
2865
|
# defaultMessage: Reset title
|
|
2680
2866
|
msgid "Reset term title"
|
|
@@ -2683,7 +2869,7 @@ msgstr "Redefinir o título do termo"
|
|
|
2683
2869
|
#: components/manage/Blocks/Teaser/Data
|
|
2684
2870
|
# defaultMessage: Reset the block
|
|
2685
2871
|
msgid "Reset the block"
|
|
2686
|
-
msgstr ""
|
|
2872
|
+
msgstr "Redefinir o bloco"
|
|
2687
2873
|
|
|
2688
2874
|
#: components/manage/Widgets/QuerystringWidget
|
|
2689
2875
|
# defaultMessage: Results limit
|
|
@@ -2711,6 +2897,7 @@ msgid "Revert to this revision"
|
|
|
2711
2897
|
msgstr "Reverter para esta revisão"
|
|
2712
2898
|
|
|
2713
2899
|
#: components/manage/Contents/Contents
|
|
2900
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2714
2901
|
# defaultMessage: Review state
|
|
2715
2902
|
msgid "Review state"
|
|
2716
2903
|
msgstr "Estado"
|
|
@@ -2789,6 +2976,11 @@ msgstr "Salvar a recorrência"
|
|
|
2789
2976
|
msgid "Saved"
|
|
2790
2977
|
msgstr "Salvo"
|
|
2791
2978
|
|
|
2979
|
+
#: components/manage/Contents/ContentsItem
|
|
2980
|
+
# defaultMessage: Scheduled
|
|
2981
|
+
msgid "Scheduled"
|
|
2982
|
+
msgstr "Agendado"
|
|
2983
|
+
|
|
2792
2984
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2793
2985
|
# defaultMessage: Schema
|
|
2794
2986
|
msgid "Schema"
|
|
@@ -2805,6 +2997,7 @@ msgstr "Atualizações do esquema"
|
|
|
2805
2997
|
#: components/manage/Blocks/Search/layout/RightColumnFacets
|
|
2806
2998
|
#: components/manage/Blocks/Search/layout/TopSideFacets
|
|
2807
2999
|
#: components/manage/Blocks/Search/schema
|
|
3000
|
+
#: components/manage/Sharing/Sharing
|
|
2808
3001
|
#: components/theme/Search/Search
|
|
2809
3002
|
#: components/theme/SearchWidget/SearchWidget
|
|
2810
3003
|
# defaultMessage: Search
|
|
@@ -2862,6 +3055,16 @@ msgstr "Resultados da pesquisa"
|
|
|
2862
3055
|
msgid "Search results for {term}"
|
|
2863
3056
|
msgstr "Resultados da pesquisa para {term}"
|
|
2864
3057
|
|
|
3058
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3059
|
+
# defaultMessage: Search sources by title or path
|
|
3060
|
+
msgid "Search sources by title or path"
|
|
3061
|
+
msgstr "Pesquise fontes por título ou caminho"
|
|
3062
|
+
|
|
3063
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3064
|
+
# defaultMessage: Search targets by title or path
|
|
3065
|
+
msgid "Search targets by title or path"
|
|
3066
|
+
msgstr "Pesquise destinos por título ou caminho"
|
|
3067
|
+
|
|
2865
3068
|
#: helpers/MessageLabels/MessageLabels
|
|
2866
3069
|
# defaultMessage: Search users…
|
|
2867
3070
|
msgid "Search users…"
|
|
@@ -2885,6 +3088,7 @@ msgstr "Título da Seção"
|
|
|
2885
3088
|
#: components/manage/Controlpanels/Aliases
|
|
2886
3089
|
#: components/manage/Rules/Rules
|
|
2887
3090
|
#: components/manage/Sidebar/ObjectBrowserNav
|
|
3091
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2888
3092
|
# defaultMessage: Select
|
|
2889
3093
|
msgid "Select"
|
|
2890
3094
|
msgstr "Selecionar"
|
|
@@ -2899,11 +3103,21 @@ msgstr "Selecione uma data para adicionar à recorrência"
|
|
|
2899
3103
|
msgid "Select columns to show"
|
|
2900
3104
|
msgstr "Selecione colunas para mostrar"
|
|
2901
3105
|
|
|
3106
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3107
|
+
# defaultMessage: Select relation
|
|
3108
|
+
msgid "Select relation"
|
|
3109
|
+
msgstr "Selecione um relacionamento"
|
|
3110
|
+
|
|
2902
3111
|
#: components/manage/Contents/ContentsWorkflowModal
|
|
2903
3112
|
# defaultMessage: Select the transition to be used for modifying the items state.
|
|
2904
3113
|
msgid "Select the transition to be used for modifying the items state."
|
|
2905
3114
|
msgstr "Selecione a transição a ser usada para modificar o estado dos itens."
|
|
2906
3115
|
|
|
3116
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3117
|
+
# defaultMessage: Selected
|
|
3118
|
+
msgid "Selected"
|
|
3119
|
+
msgstr "Selecionado"
|
|
3120
|
+
|
|
2907
3121
|
#: components/manage/Widgets/RecurrenceWidget/Occurences
|
|
2908
3122
|
# defaultMessage: Selected dates
|
|
2909
3123
|
msgid "Selected dates"
|
|
@@ -2944,6 +3158,11 @@ msgstr "Enviar"
|
|
|
2944
3158
|
msgid "Send a confirmation mail with a link to set the password."
|
|
2945
3159
|
msgstr "Envie um e-mail de confirmação com um link para definir a senha."
|
|
2946
3160
|
|
|
3161
|
+
#: components/theme/Error/ServerError
|
|
3162
|
+
# defaultMessage: Server Error
|
|
3163
|
+
msgid "Server Error"
|
|
3164
|
+
msgstr ""
|
|
3165
|
+
|
|
2947
3166
|
#: components/theme/PasswordReset/PasswordReset
|
|
2948
3167
|
# defaultMessage: Set my password
|
|
2949
3168
|
msgid "Set my password"
|
|
@@ -2998,6 +3217,11 @@ msgstr "Mostrar tudo"
|
|
|
2998
3217
|
msgid "Show Replies"
|
|
2999
3218
|
msgstr "Mostrar respostas"
|
|
3000
3219
|
|
|
3220
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
3221
|
+
# defaultMessage: Show filters
|
|
3222
|
+
msgid "Show filters"
|
|
3223
|
+
msgstr "Exibir filtros"
|
|
3224
|
+
|
|
3001
3225
|
#: helpers/MessageLabels/MessageLabels
|
|
3002
3226
|
# defaultMessage: Show groups of users below
|
|
3003
3227
|
msgid "Show groups of users below"
|
|
@@ -3008,6 +3232,16 @@ msgstr "Mostrar grupos de usuários abaixo"
|
|
|
3008
3232
|
msgid "Show item"
|
|
3009
3233
|
msgstr "Mostrar item"
|
|
3010
3234
|
|
|
3235
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3236
|
+
# defaultMessage: Show potential sources. Not only objects that are source of some relation.
|
|
3237
|
+
msgid "Show potential sources. Not only objects that are source of some relation."
|
|
3238
|
+
msgstr "Exibir potenciais fontes. Não apenas os objetos que já são fonte de algum relacionamento."
|
|
3239
|
+
|
|
3240
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3241
|
+
# defaultMessage: Show potential targets. Not only objects that are target of some relation.
|
|
3242
|
+
msgid "Show potential targets. Not only objects that are target of some relation."
|
|
3243
|
+
msgstr "Exibir potenciais destinos. Não apenas os objetos que já são destino de algum relacionamento."
|
|
3244
|
+
|
|
3011
3245
|
#: components/manage/Blocks/Search/schema
|
|
3012
3246
|
# defaultMessage: Show search button?
|
|
3013
3247
|
msgid "Show search button?"
|
|
@@ -3043,11 +3277,6 @@ msgstr "Recolher barra de ferramentas"
|
|
|
3043
3277
|
msgid "Sign in to start session"
|
|
3044
3278
|
msgstr "Faça login para iniciar a sessão"
|
|
3045
3279
|
|
|
3046
|
-
#: components/theme/Logo/Logo
|
|
3047
|
-
# defaultMessage: Site
|
|
3048
|
-
msgid "Site"
|
|
3049
|
-
msgstr "Site"
|
|
3050
|
-
|
|
3051
3280
|
#: components/theme/NotFound/NotFound
|
|
3052
3281
|
#: components/theme/Unauthorized/Unauthorized
|
|
3053
3282
|
# defaultMessage: Site Administration
|
|
@@ -3075,6 +3304,21 @@ msgstr "Tamanho: {size}"
|
|
|
3075
3304
|
msgid "Small"
|
|
3076
3305
|
msgstr "Pequeno"
|
|
3077
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
|
+
|
|
3317
|
+
#: components/manage/Controlpanels/Relations/Relations
|
|
3318
|
+
# defaultMessage: Some relations are broken. Please fix.
|
|
3319
|
+
msgid "Some relations are broken. Please fix."
|
|
3320
|
+
msgstr "Alguns relacionamentos estão rompidos. Por favor corrija-os."
|
|
3321
|
+
|
|
3078
3322
|
#: error
|
|
3079
3323
|
# defaultMessage: Sorry, something went wrong with your request
|
|
3080
3324
|
msgid "Sorry, something went wrong with your request"
|
|
@@ -3113,7 +3357,8 @@ msgid "Sorted"
|
|
|
3113
3357
|
msgstr "Ordenado"
|
|
3114
3358
|
|
|
3115
3359
|
#: components/manage/Blocks/HTML/Edit
|
|
3116
|
-
#: components/manage/
|
|
3360
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3361
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3117
3362
|
# defaultMessage: Source
|
|
3118
3363
|
msgid "Source"
|
|
3119
3364
|
msgstr "Fonte"
|
|
@@ -3156,6 +3401,11 @@ msgstr "Estado"
|
|
|
3156
3401
|
msgid "Status"
|
|
3157
3402
|
msgstr "Situação"
|
|
3158
3403
|
|
|
3404
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3405
|
+
# defaultMessage: Sticky
|
|
3406
|
+
msgid "Sticky"
|
|
3407
|
+
msgstr ""
|
|
3408
|
+
|
|
3159
3409
|
#: components/manage/Multilingual/CompareLanguages
|
|
3160
3410
|
# defaultMessage: Stop compare
|
|
3161
3411
|
msgid "Stop compare"
|
|
@@ -3257,6 +3507,8 @@ msgstr "Tags a serem removidas"
|
|
|
3257
3507
|
|
|
3258
3508
|
#: components/manage/Blocks/Teaser/schema
|
|
3259
3509
|
#: components/manage/Controlpanels/Aliases
|
|
3510
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3511
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3260
3512
|
# defaultMessage: Target
|
|
3261
3513
|
msgid "Target"
|
|
3262
3514
|
msgstr "Destino"
|
|
@@ -3284,7 +3536,7 @@ msgstr "O caminho da URL de destino deve começar com uma barra."
|
|
|
3284
3536
|
#: components/manage/Blocks/Teaser/schema
|
|
3285
3537
|
# defaultMessage: Teaser
|
|
3286
3538
|
msgid "Teaser"
|
|
3287
|
-
msgstr ""
|
|
3539
|
+
msgstr "Destaque"
|
|
3288
3540
|
|
|
3289
3541
|
#: components/manage/Widgets/SchemaWidget
|
|
3290
3542
|
# defaultMessage: Text
|
|
@@ -3376,6 +3628,16 @@ msgstr "A cópia de trabalho foi descartada."
|
|
|
3376
3628
|
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
3377
3629
|
msgstr "O {plonecms} tem {copyright} de 2000-{current_year} pela {plonefoundation} e amigos."
|
|
3378
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
|
+
|
|
3379
3641
|
#: components/theme/CorsError/CorsError
|
|
3380
3642
|
# defaultMessage: There is a configuration problem on the backend
|
|
3381
3643
|
msgid "There is a configuration problem on the backend"
|
|
@@ -3402,11 +3664,6 @@ msgstr "Houve alguns erros."
|
|
|
3402
3664
|
msgid "Third"
|
|
3403
3665
|
msgstr "Terceiro"
|
|
3404
3666
|
|
|
3405
|
-
#: components/manage/Contents/Contents
|
|
3406
|
-
# defaultMessage: This Page is referenced by the following items:
|
|
3407
|
-
msgid "This Page is referenced by the following items:"
|
|
3408
|
-
msgstr "Esta página é referenciada pelos seguintes itens:"
|
|
3409
|
-
|
|
3410
3667
|
#: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
|
|
3411
3668
|
# defaultMessage: This has an ongoing working copy in {title}
|
|
3412
3669
|
msgid "This has an ongoing working copy in {title}"
|
|
@@ -3422,6 +3679,16 @@ msgstr "Este é um nome reservado e não pode ser usado"
|
|
|
3422
3679
|
msgid "This is a working copy of {title}"
|
|
3423
3680
|
msgstr "Esta é uma cópia de trabalho de {title}"
|
|
3424
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
|
+
|
|
3425
3692
|
#: components/manage/LockingToastsFactory/LockingToastsFactory
|
|
3426
3693
|
# defaultMessage: This item was locked by {creator} on {date}
|
|
3427
3694
|
msgid "This item was locked by {creator} on {date}"
|
|
@@ -3449,6 +3716,7 @@ msgstr "Hora"
|
|
|
3449
3716
|
|
|
3450
3717
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
3451
3718
|
#: components/manage/Blocks/Teaser/schema
|
|
3719
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3452
3720
|
#: components/manage/Contents/Contents
|
|
3453
3721
|
#: components/manage/Contents/ContentsRenameModal
|
|
3454
3722
|
#: components/manage/Controlpanels/ContentTypes
|
|
@@ -3477,11 +3745,6 @@ msgstr "Total de objetos ativos e não ativos"
|
|
|
3477
3745
|
msgid "Total comments"
|
|
3478
3746
|
msgstr "Total de comentários"
|
|
3479
3747
|
|
|
3480
|
-
#: components/manage/Contents/Contents
|
|
3481
|
-
# defaultMessage: Total items to be deleted:
|
|
3482
|
-
msgid "Total items to be deleted:"
|
|
3483
|
-
msgstr ""
|
|
3484
|
-
|
|
3485
3748
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
3486
3749
|
# defaultMessage: Total number of objects in each cache
|
|
3487
3750
|
msgid "Total number of objects in each cache"
|
|
@@ -3540,6 +3803,7 @@ msgid "Triggering event field error. Please select a value"
|
|
|
3540
3803
|
msgstr "Erro no campo de gatilho. Selecione um valor"
|
|
3541
3804
|
|
|
3542
3805
|
#: components/manage/Controlpanels/ContentTypes
|
|
3806
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
3543
3807
|
#: components/manage/Widgets/SchemaWidget
|
|
3544
3808
|
#: components/theme/View/TabularView
|
|
3545
3809
|
# defaultMessage: Type
|
|
@@ -3659,6 +3923,11 @@ msgstr "Desordenado"
|
|
|
3659
3923
|
msgid "Update"
|
|
3660
3924
|
msgstr "Atualizar"
|
|
3661
3925
|
|
|
3926
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3927
|
+
# defaultMessage: Update User
|
|
3928
|
+
msgid "Update User"
|
|
3929
|
+
msgstr ""
|
|
3930
|
+
|
|
3662
3931
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
3663
3932
|
# defaultMessage: Update installed addons
|
|
3664
3933
|
msgid "Update installed addons"
|
|
@@ -3774,6 +4043,11 @@ msgstr "Nome de usuário"
|
|
|
3774
4043
|
msgid "User roles updated"
|
|
3775
4044
|
msgstr "Papéis do grupo atualizados"
|
|
3776
4045
|
|
|
4046
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4047
|
+
# defaultMessage: User updated successfuly
|
|
4048
|
+
msgid "User updated successfuly"
|
|
4049
|
+
msgstr ""
|
|
4050
|
+
|
|
3777
4051
|
#: helpers/MessageLabels/MessageLabels
|
|
3778
4052
|
# defaultMessage: Username
|
|
3779
4053
|
msgid "Username"
|
|
@@ -3823,6 +4097,11 @@ msgstr "URL do vídeo"
|
|
|
3823
4097
|
msgid "View"
|
|
3824
4098
|
msgstr "Visão"
|
|
3825
4099
|
|
|
4100
|
+
#: components/manage/Contents/Contents
|
|
4101
|
+
# defaultMessage: View broken links list
|
|
4102
|
+
msgid "View broken links list"
|
|
4103
|
+
msgstr ""
|
|
4104
|
+
|
|
3826
4105
|
#: components/manage/History/History
|
|
3827
4106
|
# defaultMessage: View changes
|
|
3828
4107
|
msgid "View changes"
|
|
@@ -3873,6 +4152,11 @@ msgstr "Pedimos desculpas pelo inconveniente, mas o backend do site que você es
|
|
|
3873
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."
|
|
3874
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."
|
|
3875
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
|
+
|
|
3876
4160
|
#: components/theme/Forbidden/Forbidden
|
|
3877
4161
|
# defaultMessage: We apologize for the inconvenience, but you don't have permissions on this resource.
|
|
3878
4162
|
msgid "We apologize for the inconvenience, but you don't have permissions on this resource."
|
|
@@ -3956,7 +4240,6 @@ msgid "Yearly"
|
|
|
3956
4240
|
msgstr "Anualmente"
|
|
3957
4241
|
|
|
3958
4242
|
#: components/manage/Contents/ContentsItem
|
|
3959
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
3960
4243
|
#: components/manage/Controlpanels/ContentTypes
|
|
3961
4244
|
# defaultMessage: Yes
|
|
3962
4245
|
msgid "Yes"
|
|
@@ -4002,6 +4285,11 @@ msgstr "Você não pode colar este conteúdo aqui"
|
|
|
4002
4285
|
msgid "You have been logged out from the site."
|
|
4003
4286
|
msgstr "Você foi desconectado do site."
|
|
4004
4287
|
|
|
4288
|
+
#: components/manage/Controlpanels/Relations/Relations
|
|
4289
|
+
# defaultMessage: You have not the required permission for this control panel.
|
|
4290
|
+
msgid "You have not the required permission for this control panel."
|
|
4291
|
+
msgstr "Você não possui a permissão necessária para acessar esse painel de controle."
|
|
4292
|
+
|
|
4005
4293
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4006
4294
|
# defaultMessage: Your email is required for reset your password.
|
|
4007
4295
|
msgid "Your email is required for reset your password."
|
|
@@ -4063,6 +4351,16 @@ msgstr "Esqueceu sua senha?"
|
|
|
4063
4351
|
msgid "checkboxFacet"
|
|
4064
4352
|
msgstr "Caixa de seleção"
|
|
4065
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
|
+
|
|
4066
4364
|
#: config/Blocks
|
|
4067
4365
|
# defaultMessage: Common
|
|
4068
4366
|
msgid "common"
|
|
@@ -4073,6 +4371,11 @@ msgstr "Padrão"
|
|
|
4073
4371
|
msgid "compare_to"
|
|
4074
4372
|
msgstr "Comparar com"
|
|
4075
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
|
+
|
|
4076
4379
|
#: config/Blocks
|
|
4077
4380
|
# defaultMessage: Date Range
|
|
4078
4381
|
msgid "daterangeFacet"
|
|
@@ -4153,10 +4456,25 @@ msgstr "Quando"
|
|
|
4153
4456
|
msgid "event_where"
|
|
4154
4457
|
msgstr "Onde"
|
|
4155
4458
|
|
|
4459
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4460
|
+
# defaultMessage: This website does not accept files larger than {limit}
|
|
4461
|
+
msgid "fileTooLarge"
|
|
4462
|
+
msgstr ""
|
|
4463
|
+
|
|
4464
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4465
|
+
# defaultMessage: flush intIds and rebuild relations
|
|
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"
|
|
4472
|
+
msgstr ""
|
|
4473
|
+
|
|
4156
4474
|
#: components/manage/Blocks/Teaser/schema
|
|
4157
4475
|
# defaultMessage: Head title
|
|
4158
4476
|
msgid "head_title"
|
|
4159
|
-
msgstr ""
|
|
4477
|
+
msgstr "Título principal"
|
|
4160
4478
|
|
|
4161
4479
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4162
4480
|
# defaultMessage: Password reset confirmation sent
|
|
@@ -4178,6 +4496,16 @@ msgstr "HTML"
|
|
|
4178
4496
|
msgid "image"
|
|
4179
4497
|
msgstr "Imagem"
|
|
4180
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
|
+
|
|
4181
4509
|
#: helpers/MessageLabels/MessageLabels
|
|
4182
4510
|
# defaultMessage: Input must be integer
|
|
4183
4511
|
msgid "integer"
|
|
@@ -4188,13 +4516,23 @@ msgstr "Valor deve ser um número inteiro"
|
|
|
4188
4516
|
msgid "intranet"
|
|
4189
4517
|
msgstr "Intranet"
|
|
4190
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
|
+
|
|
4191
4529
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4192
4530
|
# defaultMessage: My email is
|
|
4193
4531
|
msgid "label_my_email_is"
|
|
4194
4532
|
msgstr "Meu endereço de e-mail é"
|
|
4195
4533
|
|
|
4196
4534
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4197
|
-
# defaultMessage: My
|
|
4535
|
+
# defaultMessage: My user name is
|
|
4198
4536
|
msgid "label_my_username_is"
|
|
4199
4537
|
msgstr "Meu nome de usuário é<<<<<<< HEAD"
|
|
4200
4538
|
|
|
@@ -4254,6 +4592,11 @@ msgstr "Valor mínimo"
|
|
|
4254
4592
|
msgid "mostUsed"
|
|
4255
4593
|
msgstr "Mais usados"
|
|
4256
4594
|
|
|
4595
|
+
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
4596
|
+
# defaultMessage: Found {sources} sources and {targets} targets. Narrow down to {max}!
|
|
4597
|
+
msgid "narrowDownRelations"
|
|
4598
|
+
msgstr "Encontradas {sources} fontes e {targets} destinos. Por favor, reduza ao máximo de {max}!"
|
|
4599
|
+
|
|
4257
4600
|
#: components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry
|
|
4258
4601
|
#: components/manage/Blocks/Search/components/ToggleFacetFilterListEntry
|
|
4259
4602
|
#: components/theme/Widgets/BooleanWidget
|
|
@@ -4307,6 +4650,21 @@ msgstr "Publicado"
|
|
|
4307
4650
|
msgid "querystring-widget-select"
|
|
4308
4651
|
msgstr "Selecionar"
|
|
4309
4652
|
|
|
4653
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4654
|
+
# defaultMessage: rebuild relations
|
|
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"
|
|
4666
|
+
msgstr ""
|
|
4667
|
+
|
|
4310
4668
|
#: components/theme/Search/Search
|
|
4311
4669
|
# defaultMessage: results
|
|
4312
4670
|
msgid "results found"
|
|
@@ -4507,11 +4865,21 @@ msgstr "Ir para a navegação"
|
|
|
4507
4865
|
msgid "sort"
|
|
4508
4866
|
msgstr "ordenar"
|
|
4509
4867
|
|
|
4868
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4869
|
+
# defaultMessage: sources path
|
|
4870
|
+
msgid "sources path"
|
|
4871
|
+
msgstr "caminho da fonte"
|
|
4872
|
+
|
|
4510
4873
|
#: config/Blocks
|
|
4511
4874
|
# defaultMessage: Table
|
|
4512
4875
|
msgid "table"
|
|
4513
4876
|
msgstr "Tabela"
|
|
4514
4877
|
|
|
4878
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4879
|
+
# defaultMessage: target path
|
|
4880
|
+
msgid "target path"
|
|
4881
|
+
msgstr "caminho do destino"
|
|
4882
|
+
|
|
4515
4883
|
#: config/Blocks
|
|
4516
4884
|
# defaultMessage: Text
|
|
4517
4885
|
msgid "text"
|
|
@@ -4522,6 +4890,7 @@ msgstr "Texto"
|
|
|
4522
4890
|
msgid "title"
|
|
4523
4891
|
msgstr "Título"
|
|
4524
4892
|
|
|
4893
|
+
#: components/manage/Blocks/ToC/Schema
|
|
4525
4894
|
#: config/Blocks
|
|
4526
4895
|
# defaultMessage: Table of Contents
|
|
4527
4896
|
msgid "toc"
|