@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
|
@@ -142,6 +142,11 @@ msgstr ""
|
|
|
142
142
|
msgid "Add block"
|
|
143
143
|
msgstr "Afegeix bloc"
|
|
144
144
|
|
|
145
|
+
#: components/manage/Blocks/Container/NewBlockAddButton
|
|
146
|
+
# defaultMessage: Add block in position {index}
|
|
147
|
+
msgid "Add block in position {index}"
|
|
148
|
+
msgstr ""
|
|
149
|
+
|
|
145
150
|
#: helpers/MessageLabels/MessageLabels
|
|
146
151
|
# defaultMessage: Add block…
|
|
147
152
|
msgid "Add block…"
|
|
@@ -167,6 +172,11 @@ msgstr "Afegeix criteri"
|
|
|
167
172
|
msgid "Add date"
|
|
168
173
|
msgstr "Afegeix data"
|
|
169
174
|
|
|
175
|
+
#: components/manage/Blocks/Container/SimpleContainerToolbar
|
|
176
|
+
# defaultMessage: Add element to container
|
|
177
|
+
msgid "Add element to container"
|
|
178
|
+
msgstr ""
|
|
179
|
+
|
|
170
180
|
#: components/manage/Widgets/SchemaWidget
|
|
171
181
|
# defaultMessage: Add field
|
|
172
182
|
msgid "Add field"
|
|
@@ -277,6 +287,16 @@ msgstr ""
|
|
|
277
287
|
msgid "Addon upgraded succesfuly"
|
|
278
288
|
msgstr ""
|
|
279
289
|
|
|
290
|
+
#: components/manage/Blocks/Search/schema
|
|
291
|
+
# defaultMessage: Advanced facet?
|
|
292
|
+
msgid "Advanced facet?"
|
|
293
|
+
msgstr ""
|
|
294
|
+
|
|
295
|
+
#: components/manage/Blocks/Search/schema
|
|
296
|
+
# defaultMessage: Advanced facets are initially hidden and displayed on demand
|
|
297
|
+
msgid "Advanced facets are initially hidden and displayed on demand"
|
|
298
|
+
msgstr ""
|
|
299
|
+
|
|
280
300
|
#: config/Views
|
|
281
301
|
# defaultMessage: Album view
|
|
282
302
|
msgid "Album view"
|
|
@@ -425,6 +445,7 @@ msgstr ""
|
|
|
425
445
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
426
446
|
#: components/manage/Diff/Diff
|
|
427
447
|
#: components/manage/History/History
|
|
448
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
428
449
|
#: components/manage/Multilingual/ManageTranslations
|
|
429
450
|
#: components/manage/Preferences/ChangePassword
|
|
430
451
|
#: components/manage/Preferences/PersonalPreferences
|
|
@@ -464,6 +485,11 @@ msgstr "Tant l'adreça de correu electrònic com la contrasenya són sensibles a
|
|
|
464
485
|
msgid "Breadcrumbs"
|
|
465
486
|
msgstr "Barra de ruta"
|
|
466
487
|
|
|
488
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
489
|
+
# defaultMessage: Broken relations
|
|
490
|
+
msgid "Broken relations"
|
|
491
|
+
msgstr ""
|
|
492
|
+
|
|
467
493
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
468
494
|
#: components/manage/Contents/ContentsUploadModal
|
|
469
495
|
#: components/manage/Sidebar/ObjectBrowserNav
|
|
@@ -481,11 +507,6 @@ msgstr "Navegueu pel lloc, deixeu anar una imatge o escriviu un URL"
|
|
|
481
507
|
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."
|
|
482
508
|
msgstr "Per defecte, els permisos del contenidor d'aquest element són heretats. Si es desactiva, només seran vàlids els permisos de compartició definits explícitament. A la vista general, el símbol ${inherited} indica un valor heretat. De la mateixa manera, el símbol ${global} indica un rol global, que és gestionat per l'administrador del lloc."
|
|
483
509
|
|
|
484
|
-
#: components/manage/Contents/Contents
|
|
485
|
-
# 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.
|
|
486
|
-
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."
|
|
487
|
-
msgstr ""
|
|
488
|
-
|
|
489
510
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
490
511
|
# defaultMessage: Cache Name
|
|
491
512
|
msgid "Cache Name"
|
|
@@ -591,6 +612,7 @@ msgid "Choose Target"
|
|
|
591
612
|
msgstr "Trieu Destí"
|
|
592
613
|
|
|
593
614
|
#: components/manage/Widgets/FileWidget
|
|
615
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
594
616
|
# defaultMessage: Choose a file
|
|
595
617
|
msgid "Choose a file"
|
|
596
618
|
msgstr "Trieu un fitxer"
|
|
@@ -713,6 +735,11 @@ msgstr "Formulari de contacte"
|
|
|
713
735
|
msgid "Contained items"
|
|
714
736
|
msgstr "Elements continguts"
|
|
715
737
|
|
|
738
|
+
#: components/manage/Blocks/Container/SimpleContainerToolbar
|
|
739
|
+
# defaultMessage: Container settings
|
|
740
|
+
msgid "Container settings"
|
|
741
|
+
msgstr ""
|
|
742
|
+
|
|
716
743
|
#: components/manage/Controlpanels/Controlpanels
|
|
717
744
|
# defaultMessage: Content
|
|
718
745
|
msgid "Content"
|
|
@@ -739,6 +766,11 @@ msgstr ""
|
|
|
739
766
|
msgid "Content rules from parent folders"
|
|
740
767
|
msgstr ""
|
|
741
768
|
|
|
769
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
770
|
+
# defaultMessage: Content that links to or references {title}
|
|
771
|
+
msgid "Content that links to or references {title}"
|
|
772
|
+
msgstr ""
|
|
773
|
+
|
|
742
774
|
#: components/manage/Controlpanels/ContentTypes
|
|
743
775
|
# defaultMessage: Content type created
|
|
744
776
|
msgid "Content type created"
|
|
@@ -768,7 +800,7 @@ msgid "Copy"
|
|
|
768
800
|
msgstr "Copia"
|
|
769
801
|
|
|
770
802
|
#: helpers/MessageLabels/MessageLabels
|
|
771
|
-
# defaultMessage:
|
|
803
|
+
# defaultMessage: Copy blocks
|
|
772
804
|
msgid "Copy blocks"
|
|
773
805
|
msgstr "Copiar blocks"
|
|
774
806
|
|
|
@@ -782,6 +814,11 @@ msgstr "Copyright"
|
|
|
782
814
|
msgid "Copyright statement or other rights information on this item."
|
|
783
815
|
msgstr "Declaració de drets d'autor o informació sobre altres drets sobre aquest article."
|
|
784
816
|
|
|
817
|
+
#: helpers/MessageLabels/MessageLabels
|
|
818
|
+
# defaultMessage: Create or delete relations to target
|
|
819
|
+
msgid "Create or delete relations to target"
|
|
820
|
+
msgstr ""
|
|
821
|
+
|
|
785
822
|
#: components/manage/Toolbar/More
|
|
786
823
|
# defaultMessage: Create working copy
|
|
787
824
|
msgid "Create working copy"
|
|
@@ -836,7 +873,7 @@ msgid "Cut"
|
|
|
836
873
|
msgstr "Talla"
|
|
837
874
|
|
|
838
875
|
#: helpers/MessageLabels/MessageLabels
|
|
839
|
-
# defaultMessage:
|
|
876
|
+
# defaultMessage: Cut blocks
|
|
840
877
|
msgid "Cut blocks"
|
|
841
878
|
msgstr "Talla bloc"
|
|
842
879
|
|
|
@@ -943,7 +980,7 @@ msgid "Delete action"
|
|
|
943
980
|
msgstr ""
|
|
944
981
|
|
|
945
982
|
#: helpers/MessageLabels/MessageLabels
|
|
946
|
-
# defaultMessage:
|
|
983
|
+
# defaultMessage: Delete blocks
|
|
947
984
|
msgid "Delete blocks"
|
|
948
985
|
msgstr "Esborra blocs"
|
|
949
986
|
|
|
@@ -962,6 +999,16 @@ msgstr ""
|
|
|
962
999
|
msgid "Delete row"
|
|
963
1000
|
msgstr "Suprimeix la fila"
|
|
964
1001
|
|
|
1002
|
+
#: components/manage/Contents/Contents
|
|
1003
|
+
# defaultMessage: Delete selected items?
|
|
1004
|
+
msgid "Delete selected items?"
|
|
1005
|
+
msgstr ""
|
|
1006
|
+
|
|
1007
|
+
#: components/manage/Contents/Contents
|
|
1008
|
+
# defaultMessage: Delete this item?
|
|
1009
|
+
msgid "Delete this item?"
|
|
1010
|
+
msgstr ""
|
|
1011
|
+
|
|
965
1012
|
#: components/manage/Controlpanels/Rules/Rules
|
|
966
1013
|
# defaultMessage: Deleted
|
|
967
1014
|
msgid "Deleted"
|
|
@@ -1030,11 +1077,6 @@ msgstr "Distribuït sota la {license}."
|
|
|
1030
1077
|
msgid "Divide each row into separate cells"
|
|
1031
1078
|
msgstr "Afegeix una vora a les columnes interiors"
|
|
1032
1079
|
|
|
1033
|
-
#: components/manage/Contents/Contents
|
|
1034
|
-
# defaultMessage: Do you really want to delete the following items?
|
|
1035
|
-
msgid "Do you really want to delete the following items?"
|
|
1036
|
-
msgstr "Realment voleu suprimir els elements següents?"
|
|
1037
|
-
|
|
1038
1080
|
#: components/manage/Controlpanels/Groups/GroupsControlpanel
|
|
1039
1081
|
# defaultMessage: Do you really want to delete the group {groupname}?
|
|
1040
1082
|
msgid "Do you really want to delete the group {groupname}?"
|
|
@@ -1077,16 +1119,19 @@ msgid "Drag and drop files from your computer onto this area or click the “Bro
|
|
|
1077
1119
|
msgstr "Arrossegueu i deixeu anar fitxers des del vostre ordinador a aquesta àrea o feu clic al botó 'Examinar'."
|
|
1078
1120
|
|
|
1079
1121
|
#: components/manage/Widgets/FileWidget
|
|
1122
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1080
1123
|
# defaultMessage: Drop file here to replace the existing file
|
|
1081
1124
|
msgid "Drop file here to replace the existing file"
|
|
1082
1125
|
msgstr "Deixeu anar el fitxer aquí per substituir el fitxer existent"
|
|
1083
1126
|
|
|
1084
1127
|
#: components/manage/Widgets/FileWidget
|
|
1128
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1085
1129
|
# defaultMessage: Drop file here to upload a new file
|
|
1086
1130
|
msgid "Drop file here to upload a new file"
|
|
1087
1131
|
msgstr "Deixeu anar el fitxer aquí per pujar un fitxer nou"
|
|
1088
1132
|
|
|
1089
1133
|
#: components/manage/Widgets/FileWidget
|
|
1134
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
1090
1135
|
# defaultMessage: Drop files here ...
|
|
1091
1136
|
msgid "Drop files here ..."
|
|
1092
1137
|
msgstr "Deixeu fitxers aquí..."
|
|
@@ -1110,6 +1155,7 @@ msgstr "Les adreces de correu electrònic no coincideixen."
|
|
|
1110
1155
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
1111
1156
|
#: components/manage/Controlpanels/ModerateComments
|
|
1112
1157
|
#: components/manage/Controlpanels/Rules/EditRule
|
|
1158
|
+
#: components/manage/Controlpanels/Users/RenderUsers
|
|
1113
1159
|
#: components/manage/Toolbar/Toolbar
|
|
1114
1160
|
#: components/manage/Widgets/FormFieldWrapper
|
|
1115
1161
|
#: components/manage/Widgets/ObjectBrowserWidget
|
|
@@ -1252,15 +1298,20 @@ msgstr ""
|
|
|
1252
1298
|
|
|
1253
1299
|
#: components/manage/Preferences/ChangePassword
|
|
1254
1300
|
#: components/theme/PasswordReset/PasswordReset
|
|
1255
|
-
# defaultMessage: Enter your new password. Minimum
|
|
1256
|
-
msgid "Enter your new password. Minimum
|
|
1257
|
-
msgstr "Introduïu la vostra nova contrasenya. Mínim
|
|
1301
|
+
# defaultMessage: Enter your new password. Minimum 8 characters.
|
|
1302
|
+
msgid "Enter your new password. Minimum 8 characters."
|
|
1303
|
+
msgstr "Introduïu la vostra nova contrasenya. Mínim 8 caràcters."
|
|
1258
1304
|
|
|
1259
1305
|
#: components/theme/PasswordReset/PasswordReset
|
|
1260
1306
|
# defaultMessage: Enter your username for verification.
|
|
1261
1307
|
msgid "Enter your username for verification."
|
|
1262
1308
|
msgstr ""
|
|
1263
1309
|
|
|
1310
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1311
|
+
# defaultMessage: Entries
|
|
1312
|
+
msgid "Entries"
|
|
1313
|
+
msgstr ""
|
|
1314
|
+
|
|
1264
1315
|
#: components/manage/Add/Add
|
|
1265
1316
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1266
1317
|
#: components/manage/Controlpanels/ContentTypeSchema
|
|
@@ -1401,6 +1452,11 @@ msgstr "Arxiu"
|
|
|
1401
1452
|
msgid "Filename"
|
|
1402
1453
|
msgstr "Nom de l'arxiu"
|
|
1403
1454
|
|
|
1455
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1456
|
+
# defaultMessage: Filter
|
|
1457
|
+
msgid "Filter"
|
|
1458
|
+
msgstr ""
|
|
1459
|
+
|
|
1404
1460
|
#: components/manage/Controlpanels/Rules/Rules
|
|
1405
1461
|
# defaultMessage: Filter Rules:
|
|
1406
1462
|
msgid "Filter Rules:"
|
|
@@ -1426,6 +1482,11 @@ msgstr "Filtra..."
|
|
|
1426
1482
|
msgid "First"
|
|
1427
1483
|
msgstr "Primer"
|
|
1428
1484
|
|
|
1485
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1486
|
+
# defaultMessage: Fix relations
|
|
1487
|
+
msgid "Fix relations"
|
|
1488
|
+
msgstr ""
|
|
1489
|
+
|
|
1429
1490
|
#: components/manage/Blocks/Table/Edit
|
|
1430
1491
|
# defaultMessage: Fixed width columns
|
|
1431
1492
|
msgid "Fixed width table cells"
|
|
@@ -1498,6 +1559,11 @@ msgstr "Paper global"
|
|
|
1498
1559
|
msgid "Google Maps Embedded Block"
|
|
1499
1560
|
msgstr "Bloc incrustat de Google Maps"
|
|
1500
1561
|
|
|
1562
|
+
#: components/manage/Blocks/Grid/schema
|
|
1563
|
+
# defaultMessage: Grid
|
|
1564
|
+
msgid "Grid"
|
|
1565
|
+
msgstr ""
|
|
1566
|
+
|
|
1501
1567
|
#: components/manage/Sharing/Sharing
|
|
1502
1568
|
# defaultMessage: Group
|
|
1503
1569
|
msgid "Group"
|
|
@@ -1536,6 +1602,7 @@ msgstr "Els grups són col·leccions lògiques d'usuaris, com ara departaments i
|
|
|
1536
1602
|
msgid "Header cell"
|
|
1537
1603
|
msgstr "Cel·la de capçalera"
|
|
1538
1604
|
|
|
1605
|
+
#: components/manage/Blocks/Grid/schema
|
|
1539
1606
|
#: components/manage/Blocks/Listing/schema
|
|
1540
1607
|
#: components/manage/Blocks/Search/schema
|
|
1541
1608
|
# defaultMessage: Headline
|
|
@@ -1562,6 +1629,16 @@ msgstr "Amaga les respostes"
|
|
|
1562
1629
|
msgid "Hide facet?"
|
|
1563
1630
|
msgstr "Amagar la faceta?"
|
|
1564
1631
|
|
|
1632
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1633
|
+
# defaultMessage: Hide filters
|
|
1634
|
+
msgid "Hide filters"
|
|
1635
|
+
msgstr ""
|
|
1636
|
+
|
|
1637
|
+
#: components/manage/Blocks/ToC/Schema
|
|
1638
|
+
# defaultMessage: Hide title
|
|
1639
|
+
msgid "Hide title"
|
|
1640
|
+
msgstr ""
|
|
1641
|
+
|
|
1565
1642
|
#: components/manage/History/History
|
|
1566
1643
|
#: components/manage/Toolbar/More
|
|
1567
1644
|
# defaultMessage: History
|
|
@@ -1693,6 +1770,11 @@ msgstr "Insereix fila després"
|
|
|
1693
1770
|
msgid "Insert row before"
|
|
1694
1771
|
msgstr "Insereix fila abans"
|
|
1695
1772
|
|
|
1773
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1774
|
+
# defaultMessage: Inspect relations
|
|
1775
|
+
msgid "Inspect relations"
|
|
1776
|
+
msgstr ""
|
|
1777
|
+
|
|
1696
1778
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
1697
1779
|
# defaultMessage: Install
|
|
1698
1780
|
msgid "Install"
|
|
@@ -1739,6 +1821,11 @@ msgstr "Any(s)"
|
|
|
1739
1821
|
msgid "Invalid Block"
|
|
1740
1822
|
msgstr ""
|
|
1741
1823
|
|
|
1824
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1825
|
+
# 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.
|
|
1826
|
+
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."
|
|
1827
|
+
msgstr ""
|
|
1828
|
+
|
|
1742
1829
|
#: components/manage/Widgets/QuerystringWidget
|
|
1743
1830
|
# defaultMessage: Item batch size
|
|
1744
1831
|
msgid "Item batch size"
|
|
@@ -1786,11 +1873,6 @@ msgstr "Articles"
|
|
|
1786
1873
|
msgid "Items must be unique."
|
|
1787
1874
|
msgstr "Els articles han de ser únics."
|
|
1788
1875
|
|
|
1789
|
-
#: components/manage/Contents/Contents
|
|
1790
|
-
# defaultMessage: Items to be deleted:
|
|
1791
|
-
msgid "Items to be deleted:"
|
|
1792
|
-
msgstr ""
|
|
1793
|
-
|
|
1794
1876
|
#: components/manage/Blocks/Search/schema
|
|
1795
1877
|
# defaultMessage: Label
|
|
1796
1878
|
msgid "Label"
|
|
@@ -1853,11 +1935,21 @@ msgstr "Imatge Principal"
|
|
|
1853
1935
|
msgid "Left"
|
|
1854
1936
|
msgstr "A l'esquerra"
|
|
1855
1937
|
|
|
1938
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
1939
|
+
# defaultMessage: Less filters
|
|
1940
|
+
msgid "Less filters"
|
|
1941
|
+
msgstr ""
|
|
1942
|
+
|
|
1856
1943
|
#: components/manage/Toolbar/Toolbar
|
|
1857
1944
|
# defaultMessage: Link
|
|
1858
1945
|
msgid "Link"
|
|
1859
1946
|
msgstr "Enllaç"
|
|
1860
1947
|
|
|
1948
|
+
#: helpers/MessageLabels/MessageLabels
|
|
1949
|
+
# defaultMessage: Anchor link copied to the clipboard
|
|
1950
|
+
msgid "Link copied to clipboard"
|
|
1951
|
+
msgstr ""
|
|
1952
|
+
|
|
1861
1953
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1862
1954
|
#: components/manage/Blocks/Listing/schema
|
|
1863
1955
|
# defaultMessage: Link more
|
|
@@ -1869,6 +1961,11 @@ msgstr "Enllaça més"
|
|
|
1869
1961
|
msgid "Link redirect view"
|
|
1870
1962
|
msgstr "Redirecció d'enllaç"
|
|
1871
1963
|
|
|
1964
|
+
#: components/manage/Blocks/Image/schema
|
|
1965
|
+
# defaultMessage: Link settings
|
|
1966
|
+
msgid "Link settings"
|
|
1967
|
+
msgstr ""
|
|
1968
|
+
|
|
1872
1969
|
#: components/manage/Blocks/HeroImageLeft/schema
|
|
1873
1970
|
#: components/manage/Blocks/Listing/schema
|
|
1874
1971
|
# defaultMessage: Link Title
|
|
@@ -1888,6 +1985,17 @@ msgstr "Enllaç a"
|
|
|
1888
1985
|
msgid "Link translation for"
|
|
1889
1986
|
msgstr "Traducció d'enllaços per"
|
|
1890
1987
|
|
|
1988
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
1989
|
+
# defaultMessage: Linking this item with hyperlink in text
|
|
1990
|
+
msgid "Linking this item with hyperlink in text"
|
|
1991
|
+
msgstr ""
|
|
1992
|
+
|
|
1993
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
1994
|
+
#: components/manage/Toolbar/More
|
|
1995
|
+
# defaultMessage: Links and references
|
|
1996
|
+
msgid "Links and references"
|
|
1997
|
+
msgstr ""
|
|
1998
|
+
|
|
1891
1999
|
#: components/manage/Blocks/Listing/schema
|
|
1892
2000
|
# defaultMessage: Listing
|
|
1893
2001
|
msgid "Listing"
|
|
@@ -1980,6 +2088,11 @@ msgstr ""
|
|
|
1980
2088
|
msgid "Manually or automatically added?"
|
|
1981
2089
|
msgstr ""
|
|
1982
2090
|
|
|
2091
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2092
|
+
# defaultMessage: Many relations found. Please search.
|
|
2093
|
+
msgid "Many relations found. Please search."
|
|
2094
|
+
msgstr ""
|
|
2095
|
+
|
|
1983
2096
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
1984
2097
|
#: components/manage/Blocks/Maps/schema
|
|
1985
2098
|
# defaultMessage: Maps
|
|
@@ -2057,6 +2170,11 @@ msgstr "Mensual"
|
|
|
2057
2170
|
msgid "More"
|
|
2058
2171
|
msgstr "Més"
|
|
2059
2172
|
|
|
2173
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
2174
|
+
# defaultMessage: More filters
|
|
2175
|
+
msgid "More filters"
|
|
2176
|
+
msgstr ""
|
|
2177
|
+
|
|
2060
2178
|
#: components/manage/Controlpanels/UpgradeControlPanel
|
|
2061
2179
|
# defaultMessage: More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide.
|
|
2062
2180
|
msgid "More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide."
|
|
@@ -2098,7 +2216,7 @@ msgid "My email is"
|
|
|
2098
2216
|
msgstr ""
|
|
2099
2217
|
|
|
2100
2218
|
#: components/theme/PasswordReset/PasswordReset
|
|
2101
|
-
# defaultMessage: My
|
|
2219
|
+
# defaultMessage: My user name is
|
|
2102
2220
|
msgid "My username is"
|
|
2103
2221
|
msgstr "El meu nom d'usuari és"
|
|
2104
2222
|
|
|
@@ -2140,7 +2258,6 @@ msgid "News item view"
|
|
|
2140
2258
|
msgstr "Notícia"
|
|
2141
2259
|
|
|
2142
2260
|
#: components/manage/Contents/ContentsItem
|
|
2143
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
2144
2261
|
#: components/manage/Controlpanels/ContentTypes
|
|
2145
2262
|
# defaultMessage: No
|
|
2146
2263
|
msgid "No"
|
|
@@ -2171,6 +2288,11 @@ msgstr ""
|
|
|
2171
2288
|
msgid "No addons found"
|
|
2172
2289
|
msgstr ""
|
|
2173
2290
|
|
|
2291
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
2292
|
+
# defaultMessage: No broken relations found.
|
|
2293
|
+
msgid "No broken relations found."
|
|
2294
|
+
msgstr ""
|
|
2295
|
+
|
|
2174
2296
|
#: components/theme/RequestTimeout/RequestTimeout
|
|
2175
2297
|
# defaultMessage: There is no connection to the server, due to a timeout o no network connection.
|
|
2176
2298
|
msgid "No connection to the server"
|
|
@@ -2206,6 +2328,11 @@ msgstr "No s'han trobat articles en aquest contenidor."
|
|
|
2206
2328
|
msgid "No items selected"
|
|
2207
2329
|
msgstr "No s'ha seleccionat cap element"
|
|
2208
2330
|
|
|
2331
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2332
|
+
# defaultMessage: No links to this item found.
|
|
2333
|
+
msgid "No links to this item found."
|
|
2334
|
+
msgstr ""
|
|
2335
|
+
|
|
2209
2336
|
#: components/manage/Blocks/Maps/MapsSidebar
|
|
2210
2337
|
# defaultMessage: No map selected
|
|
2211
2338
|
msgid "No map selected"
|
|
@@ -2224,6 +2351,11 @@ msgstr "No s'ha establert cap ocurrència"
|
|
|
2224
2351
|
msgid "No options"
|
|
2225
2352
|
msgstr "Sense opcions"
|
|
2226
2353
|
|
|
2354
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2355
|
+
# defaultMessage: No relation found
|
|
2356
|
+
msgid "No relation found"
|
|
2357
|
+
msgstr ""
|
|
2358
|
+
|
|
2227
2359
|
#: components/manage/BlockChooser/BlockChooser
|
|
2228
2360
|
#: components/theme/Search/Search
|
|
2229
2361
|
# defaultMessage: No results found
|
|
@@ -2324,11 +2456,21 @@ msgstr "Obre el menú"
|
|
|
2324
2456
|
msgid "Open object browser"
|
|
2325
2457
|
msgstr "Obre el navegador d'objectes"
|
|
2326
2458
|
|
|
2459
|
+
#: components/manage/Blocks/ToC/Schema
|
|
2460
|
+
# defaultMessage: Ordered
|
|
2461
|
+
msgid "Ordered"
|
|
2462
|
+
msgstr ""
|
|
2463
|
+
|
|
2327
2464
|
#: components/manage/Blocks/LeadImage/LeadImageSidebar
|
|
2328
2465
|
# defaultMessage: Origin
|
|
2329
2466
|
msgid "Origin"
|
|
2330
2467
|
msgstr "Origen"
|
|
2331
2468
|
|
|
2469
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2470
|
+
# defaultMessage: Overview of relations of all content items
|
|
2471
|
+
msgid "Overview of relations of all content items"
|
|
2472
|
+
msgstr ""
|
|
2473
|
+
|
|
2332
2474
|
#: components/manage/Toolbar/Toolbar
|
|
2333
2475
|
# defaultMessage: Page
|
|
2334
2476
|
msgid "Page"
|
|
@@ -2363,7 +2505,7 @@ msgid "Paste"
|
|
|
2363
2505
|
msgstr "Enganxar"
|
|
2364
2506
|
|
|
2365
2507
|
#: helpers/MessageLabels/MessageLabels
|
|
2366
|
-
# defaultMessage:
|
|
2508
|
+
# defaultMessage: Paste blocks
|
|
2367
2509
|
msgid "Paste blocks"
|
|
2368
2510
|
msgstr "Enganxa blocs"
|
|
2369
2511
|
|
|
@@ -2444,16 +2586,16 @@ msgstr ""
|
|
|
2444
2586
|
msgid "Please upgrade to plone.restapi >= 8.24.0."
|
|
2445
2587
|
msgstr ""
|
|
2446
2588
|
|
|
2589
|
+
#: components/manage/Controlpanels/Relations/Relations
|
|
2590
|
+
# defaultMessage: Please upgrade to plone.restapi >= 8.39.0.
|
|
2591
|
+
msgid "Please upgrade to plone.restapi >= 8.39.0."
|
|
2592
|
+
msgstr ""
|
|
2593
|
+
|
|
2447
2594
|
#: components/theme/Footer/Footer
|
|
2448
2595
|
# defaultMessage: Plone Foundation
|
|
2449
2596
|
msgid "Plone Foundation"
|
|
2450
2597
|
msgstr "Fundació Plone"
|
|
2451
2598
|
|
|
2452
|
-
#: components/theme/Logo/Logo
|
|
2453
|
-
# defaultMessage: Plone Site
|
|
2454
|
-
msgid "Plone Site"
|
|
2455
|
-
msgstr "Lloc de Plone"
|
|
2456
|
-
|
|
2457
2599
|
#: components/theme/Footer/Footer
|
|
2458
2600
|
# defaultMessage: Plone{reg} Open Source CMS/WCM
|
|
2459
2601
|
msgid "Plone{reg} Open Source CMS/WCM"
|
|
@@ -2469,11 +2611,6 @@ msgstr ""
|
|
|
2469
2611
|
msgid "Possible values"
|
|
2470
2612
|
msgstr "Valors possibles (introduïu les opcions permeses una per línia)."
|
|
2471
2613
|
|
|
2472
|
-
#: components/manage/Contents/Contents
|
|
2473
|
-
# defaultMessage: Potential link breakage
|
|
2474
|
-
msgid "Potential link breakage"
|
|
2475
|
-
msgstr ""
|
|
2476
|
-
|
|
2477
2614
|
#: components/theme/Footer/Footer
|
|
2478
2615
|
# defaultMessage: Powered by Plone & Python
|
|
2479
2616
|
msgid "Powered by Plone & Python"
|
|
@@ -2538,6 +2675,11 @@ msgstr "Torneu a introduir la contrasenya. Assegureu-vos que les contrasenyes s
|
|
|
2538
2675
|
msgid "Read More…"
|
|
2539
2676
|
msgstr "Llegeix més…"
|
|
2540
2677
|
|
|
2678
|
+
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2679
|
+
# defaultMessage: Read only for this type of relation.
|
|
2680
|
+
msgid "Read only for this type of relation."
|
|
2681
|
+
msgstr ""
|
|
2682
|
+
|
|
2541
2683
|
#: components/manage/Contents/Contents
|
|
2542
2684
|
# defaultMessage: Rearrange items by…
|
|
2543
2685
|
msgid "Rearrange items by…"
|
|
@@ -2568,6 +2710,16 @@ msgstr ""
|
|
|
2568
2710
|
msgid "Reduce complexity"
|
|
2569
2711
|
msgstr "Disseny de taula minimalista"
|
|
2570
2712
|
|
|
2713
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2714
|
+
# defaultMessage: Referencing this item as related item
|
|
2715
|
+
msgid "Referencing this item as related item"
|
|
2716
|
+
msgstr ""
|
|
2717
|
+
|
|
2718
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2719
|
+
# defaultMessage: Referencing this item with {relationship}
|
|
2720
|
+
msgid "Referencing this item with {relationship}"
|
|
2721
|
+
msgstr ""
|
|
2722
|
+
|
|
2571
2723
|
#: components/theme/Anontools/Anontools
|
|
2572
2724
|
#: components/theme/Login/Login
|
|
2573
2725
|
#: components/theme/Register/Register
|
|
@@ -2580,6 +2732,29 @@ msgstr "Registrar-se"
|
|
|
2580
2732
|
msgid "Registration form"
|
|
2581
2733
|
msgstr "Formulari d'inscripció"
|
|
2582
2734
|
|
|
2735
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
2736
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2737
|
+
# defaultMessage: Relation
|
|
2738
|
+
msgid "Relation name"
|
|
2739
|
+
msgstr ""
|
|
2740
|
+
|
|
2741
|
+
#: components/manage/Controlpanels/Controlpanels
|
|
2742
|
+
#: components/manage/Controlpanels/Relations/Relations
|
|
2743
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2744
|
+
# defaultMessage: Relations
|
|
2745
|
+
msgid "Relations"
|
|
2746
|
+
msgstr ""
|
|
2747
|
+
|
|
2748
|
+
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
2749
|
+
# defaultMessage: Relations are editable with plone.api >= 2.0.3.
|
|
2750
|
+
msgid "Relations are editable with plone.api >= 2.0.3."
|
|
2751
|
+
msgstr ""
|
|
2752
|
+
|
|
2753
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2754
|
+
# defaultMessage: Relations updated
|
|
2755
|
+
msgid "Relations updated"
|
|
2756
|
+
msgstr ""
|
|
2757
|
+
|
|
2583
2758
|
#: components/theme/Search/Search
|
|
2584
2759
|
# defaultMessage: Relevance
|
|
2585
2760
|
msgid "Relevance"
|
|
@@ -2590,6 +2765,11 @@ msgstr "Pertinència"
|
|
|
2590
2765
|
msgid "Remove"
|
|
2591
2766
|
msgstr ""
|
|
2592
2767
|
|
|
2768
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2769
|
+
# defaultMessage: Remove element {index}
|
|
2770
|
+
msgid "Remove element {index}"
|
|
2771
|
+
msgstr ""
|
|
2772
|
+
|
|
2593
2773
|
#: components/manage/Widgets/ObjectListWidget
|
|
2594
2774
|
# defaultMessage: Remove item
|
|
2595
2775
|
msgid "Remove item"
|
|
@@ -2652,6 +2832,7 @@ msgid "Repeat on"
|
|
|
2652
2832
|
msgstr "Repetiu"
|
|
2653
2833
|
|
|
2654
2834
|
#: components/manage/Widgets/FileWidget
|
|
2835
|
+
#: components/manage/Widgets/RegistryImageWidget
|
|
2655
2836
|
# defaultMessage: Replace existing file
|
|
2656
2837
|
msgid "Replace existing file"
|
|
2657
2838
|
msgstr "Substitueix el fitxer existent"
|
|
@@ -2674,6 +2855,11 @@ msgstr "Obligatori"
|
|
|
2674
2855
|
msgid "Required input is missing."
|
|
2675
2856
|
msgstr "Falta l'entrada necessària."
|
|
2676
2857
|
|
|
2858
|
+
#: components/manage/Blocks/Container/EditBlockWrapper
|
|
2859
|
+
# defaultMessage: Reset element {index}
|
|
2860
|
+
msgid "Reset element {index}"
|
|
2861
|
+
msgstr ""
|
|
2862
|
+
|
|
2677
2863
|
#: components/manage/Widgets/VocabularyTermsWidget
|
|
2678
2864
|
# defaultMessage: Reset title
|
|
2679
2865
|
msgid "Reset term title"
|
|
@@ -2710,6 +2896,7 @@ msgid "Revert to this revision"
|
|
|
2710
2896
|
msgstr "Torna a aquesta revisió"
|
|
2711
2897
|
|
|
2712
2898
|
#: components/manage/Contents/Contents
|
|
2899
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
2713
2900
|
# defaultMessage: Review state
|
|
2714
2901
|
msgid "Review state"
|
|
2715
2902
|
msgstr "Estat de revisió"
|
|
@@ -2788,6 +2975,11 @@ msgstr "Desa"
|
|
|
2788
2975
|
msgid "Saved"
|
|
2789
2976
|
msgstr ""
|
|
2790
2977
|
|
|
2978
|
+
#: components/manage/Contents/ContentsItem
|
|
2979
|
+
# defaultMessage: Scheduled
|
|
2980
|
+
msgid "Scheduled"
|
|
2981
|
+
msgstr ""
|
|
2982
|
+
|
|
2791
2983
|
#: components/manage/Controlpanels/ContentTypesActions
|
|
2792
2984
|
# defaultMessage: Schema
|
|
2793
2985
|
msgid "Schema"
|
|
@@ -2804,6 +2996,7 @@ msgstr "Actualitzacions d'esquemes"
|
|
|
2804
2996
|
#: components/manage/Blocks/Search/layout/RightColumnFacets
|
|
2805
2997
|
#: components/manage/Blocks/Search/layout/TopSideFacets
|
|
2806
2998
|
#: components/manage/Blocks/Search/schema
|
|
2999
|
+
#: components/manage/Sharing/Sharing
|
|
2807
3000
|
#: components/theme/Search/Search
|
|
2808
3001
|
#: components/theme/SearchWidget/SearchWidget
|
|
2809
3002
|
# defaultMessage: Search
|
|
@@ -2861,6 +3054,16 @@ msgstr "Resultats de la cerca"
|
|
|
2861
3054
|
msgid "Search results for {term}"
|
|
2862
3055
|
msgstr "Resultats de la cerca per a {term}"
|
|
2863
3056
|
|
|
3057
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3058
|
+
# defaultMessage: Search sources by title or path
|
|
3059
|
+
msgid "Search sources by title or path"
|
|
3060
|
+
msgstr ""
|
|
3061
|
+
|
|
3062
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3063
|
+
# defaultMessage: Search targets by title or path
|
|
3064
|
+
msgid "Search targets by title or path"
|
|
3065
|
+
msgstr ""
|
|
3066
|
+
|
|
2864
3067
|
#: helpers/MessageLabels/MessageLabels
|
|
2865
3068
|
# defaultMessage: Search users…
|
|
2866
3069
|
msgid "Search users…"
|
|
@@ -2884,6 +3087,7 @@ msgstr "Títol de la secció"
|
|
|
2884
3087
|
#: components/manage/Controlpanels/Aliases
|
|
2885
3088
|
#: components/manage/Rules/Rules
|
|
2886
3089
|
#: components/manage/Sidebar/ObjectBrowserNav
|
|
3090
|
+
#: helpers/MessageLabels/MessageLabels
|
|
2887
3091
|
# defaultMessage: Select
|
|
2888
3092
|
msgid "Select"
|
|
2889
3093
|
msgstr "Seleccioneu"
|
|
@@ -2898,11 +3102,21 @@ msgstr "Seleccioneu una data per afegir a la recurrència"
|
|
|
2898
3102
|
msgid "Select columns to show"
|
|
2899
3103
|
msgstr "Seleccioneu les columnes per mostrar"
|
|
2900
3104
|
|
|
3105
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3106
|
+
# defaultMessage: Select relation
|
|
3107
|
+
msgid "Select relation"
|
|
3108
|
+
msgstr ""
|
|
3109
|
+
|
|
2901
3110
|
#: components/manage/Contents/ContentsWorkflowModal
|
|
2902
3111
|
# defaultMessage: Select the transition to be used for modifying the items state.
|
|
2903
3112
|
msgid "Select the transition to be used for modifying the items state."
|
|
2904
3113
|
msgstr "Seleccioneu la transició que s'utilitzarà per modificar l'estat dels elements."
|
|
2905
3114
|
|
|
3115
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3116
|
+
# defaultMessage: Selected
|
|
3117
|
+
msgid "Selected"
|
|
3118
|
+
msgstr ""
|
|
3119
|
+
|
|
2906
3120
|
#: components/manage/Widgets/RecurrenceWidget/Occurences
|
|
2907
3121
|
# defaultMessage: Selected dates
|
|
2908
3122
|
msgid "Selected dates"
|
|
@@ -2943,6 +3157,11 @@ msgstr "Enviar"
|
|
|
2943
3157
|
msgid "Send a confirmation mail with a link to set the password."
|
|
2944
3158
|
msgstr ""
|
|
2945
3159
|
|
|
3160
|
+
#: components/theme/Error/ServerError
|
|
3161
|
+
# defaultMessage: Server Error
|
|
3162
|
+
msgid "Server Error"
|
|
3163
|
+
msgstr ""
|
|
3164
|
+
|
|
2946
3165
|
#: components/theme/PasswordReset/PasswordReset
|
|
2947
3166
|
# defaultMessage: Set my password
|
|
2948
3167
|
msgid "Set my password"
|
|
@@ -2997,6 +3216,11 @@ msgstr "Mostrar tots"
|
|
|
2997
3216
|
msgid "Show Replies"
|
|
2998
3217
|
msgstr "Mostra les respostes"
|
|
2999
3218
|
|
|
3219
|
+
#: components/manage/Blocks/Search/components/Facets
|
|
3220
|
+
# defaultMessage: Show filters
|
|
3221
|
+
msgid "Show filters"
|
|
3222
|
+
msgstr ""
|
|
3223
|
+
|
|
3000
3224
|
#: helpers/MessageLabels/MessageLabels
|
|
3001
3225
|
# defaultMessage: Show groups of users below
|
|
3002
3226
|
msgid "Show groups of users below"
|
|
@@ -3007,6 +3231,16 @@ msgstr ""
|
|
|
3007
3231
|
msgid "Show item"
|
|
3008
3232
|
msgstr "Mostra l'element"
|
|
3009
3233
|
|
|
3234
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3235
|
+
# defaultMessage: Show potential sources. Not only objects that are source of some relation.
|
|
3236
|
+
msgid "Show potential sources. Not only objects that are source of some relation."
|
|
3237
|
+
msgstr ""
|
|
3238
|
+
|
|
3239
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3240
|
+
# defaultMessage: Show potential targets. Not only objects that are target of some relation.
|
|
3241
|
+
msgid "Show potential targets. Not only objects that are target of some relation."
|
|
3242
|
+
msgstr ""
|
|
3243
|
+
|
|
3010
3244
|
#: components/manage/Blocks/Search/schema
|
|
3011
3245
|
# defaultMessage: Show search button?
|
|
3012
3246
|
msgid "Show search button?"
|
|
@@ -3042,11 +3276,6 @@ msgstr "Redueix la barra d'eines"
|
|
|
3042
3276
|
msgid "Sign in to start session"
|
|
3043
3277
|
msgstr "Inicieu la sessió per iniciar la sessió"
|
|
3044
3278
|
|
|
3045
|
-
#: components/theme/Logo/Logo
|
|
3046
|
-
# defaultMessage: Site
|
|
3047
|
-
msgid "Site"
|
|
3048
|
-
msgstr "Lloc"
|
|
3049
|
-
|
|
3050
3279
|
#: components/theme/NotFound/NotFound
|
|
3051
3280
|
#: components/theme/Unauthorized/Unauthorized
|
|
3052
3281
|
# defaultMessage: Site Administration
|
|
@@ -3074,6 +3303,21 @@ msgstr "Mida: {size}"
|
|
|
3074
3303
|
msgid "Small"
|
|
3075
3304
|
msgstr ""
|
|
3076
3305
|
|
|
3306
|
+
#: components/manage/Contents/Contents
|
|
3307
|
+
# defaultMessage: Some items are also a folder.
|
|
3308
|
+
msgid "Some items are also a folder."
|
|
3309
|
+
msgstr ""
|
|
3310
|
+
|
|
3311
|
+
#: components/manage/Contents/Contents
|
|
3312
|
+
# defaultMessage: Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken.
|
|
3313
|
+
msgid "Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken."
|
|
3314
|
+
msgstr ""
|
|
3315
|
+
|
|
3316
|
+
#: components/manage/Controlpanels/Relations/Relations
|
|
3317
|
+
# defaultMessage: Some relations are broken. Please fix.
|
|
3318
|
+
msgid "Some relations are broken. Please fix."
|
|
3319
|
+
msgstr ""
|
|
3320
|
+
|
|
3077
3321
|
#: error
|
|
3078
3322
|
# defaultMessage: Sorry, something went wrong with your request
|
|
3079
3323
|
msgid "Sorry, something went wrong with your request"
|
|
@@ -3112,7 +3356,8 @@ msgid "Sorted"
|
|
|
3112
3356
|
msgstr ""
|
|
3113
3357
|
|
|
3114
3358
|
#: components/manage/Blocks/HTML/Edit
|
|
3115
|
-
#: components/manage/
|
|
3359
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3360
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3116
3361
|
# defaultMessage: Source
|
|
3117
3362
|
msgid "Source"
|
|
3118
3363
|
msgstr "Origen"
|
|
@@ -3155,6 +3400,11 @@ msgstr "Estat"
|
|
|
3155
3400
|
msgid "Status"
|
|
3156
3401
|
msgstr ""
|
|
3157
3402
|
|
|
3403
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3404
|
+
# defaultMessage: Sticky
|
|
3405
|
+
msgid "Sticky"
|
|
3406
|
+
msgstr ""
|
|
3407
|
+
|
|
3158
3408
|
#: components/manage/Multilingual/CompareLanguages
|
|
3159
3409
|
# defaultMessage: Stop compare
|
|
3160
3410
|
msgid "Stop compare"
|
|
@@ -3256,6 +3506,8 @@ msgstr "Etiquetes per eliminar"
|
|
|
3256
3506
|
|
|
3257
3507
|
#: components/manage/Blocks/Teaser/schema
|
|
3258
3508
|
#: components/manage/Controlpanels/Aliases
|
|
3509
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
3510
|
+
#: components/manage/Controlpanels/Relations/RelationsMatrix
|
|
3259
3511
|
# defaultMessage: Target
|
|
3260
3512
|
msgid "Target"
|
|
3261
3513
|
msgstr ""
|
|
@@ -3375,6 +3627,16 @@ msgstr "La còpia de treball es va descartar"
|
|
|
3375
3627
|
msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
|
|
3376
3628
|
msgstr "El {plonecms} és {copyright} 2000-{current_year} per {plonefoundation} i amics."
|
|
3377
3629
|
|
|
3630
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3631
|
+
# defaultMessage: There are no groups with the searched criteria
|
|
3632
|
+
msgid "There are no groups with the searched criteria"
|
|
3633
|
+
msgstr ""
|
|
3634
|
+
|
|
3635
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3636
|
+
# defaultMessage: There are no users with the searched criteria
|
|
3637
|
+
msgid "There are no users with the searched criteria"
|
|
3638
|
+
msgstr ""
|
|
3639
|
+
|
|
3378
3640
|
#: components/theme/CorsError/CorsError
|
|
3379
3641
|
# defaultMessage: There is a configuration problem on the backend
|
|
3380
3642
|
msgid "There is a configuration problem on the backend"
|
|
@@ -3401,11 +3663,6 @@ msgstr "Hi va haver alguns errors."
|
|
|
3401
3663
|
msgid "Third"
|
|
3402
3664
|
msgstr "Tercer"
|
|
3403
3665
|
|
|
3404
|
-
#: components/manage/Contents/Contents
|
|
3405
|
-
# defaultMessage: This Page is referenced by the following items:
|
|
3406
|
-
msgid "This Page is referenced by the following items:"
|
|
3407
|
-
msgstr ""
|
|
3408
|
-
|
|
3409
3666
|
#: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
|
|
3410
3667
|
# defaultMessage: This has an ongoing working copy in {title}
|
|
3411
3668
|
msgid "This has an ongoing working copy in {title}"
|
|
@@ -3421,6 +3678,16 @@ msgstr ""
|
|
|
3421
3678
|
msgid "This is a working copy of {title}"
|
|
3422
3679
|
msgstr "Aquesta és una còpia de treball de {title}"
|
|
3423
3680
|
|
|
3681
|
+
#: components/manage/Contents/Contents
|
|
3682
|
+
# defaultMessage: This item is also a folder.
|
|
3683
|
+
msgid "This item is also a folder."
|
|
3684
|
+
msgstr ""
|
|
3685
|
+
|
|
3686
|
+
#: components/manage/Contents/Contents
|
|
3687
|
+
# defaultMessage: This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken.
|
|
3688
|
+
msgid "This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken."
|
|
3689
|
+
msgstr ""
|
|
3690
|
+
|
|
3424
3691
|
#: components/manage/LockingToastsFactory/LockingToastsFactory
|
|
3425
3692
|
# defaultMessage: This item was locked by {creator} on {date}
|
|
3426
3693
|
msgid "This item was locked by {creator} on {date}"
|
|
@@ -3448,6 +3715,7 @@ msgstr "Hora"
|
|
|
3448
3715
|
|
|
3449
3716
|
#: components/manage/Blocks/HeroImageLeft/Edit
|
|
3450
3717
|
#: components/manage/Blocks/Teaser/schema
|
|
3718
|
+
#: components/manage/Blocks/ToC/Schema
|
|
3451
3719
|
#: components/manage/Contents/Contents
|
|
3452
3720
|
#: components/manage/Contents/ContentsRenameModal
|
|
3453
3721
|
#: components/manage/Controlpanels/ContentTypes
|
|
@@ -3476,11 +3744,6 @@ msgstr "Total d'objectes actius i no actius"
|
|
|
3476
3744
|
msgid "Total comments"
|
|
3477
3745
|
msgstr "Total de comentaris"
|
|
3478
3746
|
|
|
3479
|
-
#: components/manage/Contents/Contents
|
|
3480
|
-
# defaultMessage: Total items to be deleted:
|
|
3481
|
-
msgid "Total items to be deleted:"
|
|
3482
|
-
msgstr ""
|
|
3483
|
-
|
|
3484
3747
|
#: components/manage/Controlpanels/DatabaseInformation
|
|
3485
3748
|
# defaultMessage: Total number of objects in each cache
|
|
3486
3749
|
msgid "Total number of objects in each cache"
|
|
@@ -3539,6 +3802,7 @@ msgid "Triggering event field error. Please select a value"
|
|
|
3539
3802
|
msgstr ""
|
|
3540
3803
|
|
|
3541
3804
|
#: components/manage/Controlpanels/ContentTypes
|
|
3805
|
+
#: components/manage/LinksToItem/LinksToItem
|
|
3542
3806
|
#: components/manage/Widgets/SchemaWidget
|
|
3543
3807
|
#: components/theme/View/TabularView
|
|
3544
3808
|
# defaultMessage: Type
|
|
@@ -3658,6 +3922,11 @@ msgstr ""
|
|
|
3658
3922
|
msgid "Update"
|
|
3659
3923
|
msgstr "Actualització"
|
|
3660
3924
|
|
|
3925
|
+
#: helpers/MessageLabels/MessageLabels
|
|
3926
|
+
# defaultMessage: Update User
|
|
3927
|
+
msgid "Update User"
|
|
3928
|
+
msgstr ""
|
|
3929
|
+
|
|
3661
3930
|
#: components/manage/Controlpanels/AddonsControlpanel
|
|
3662
3931
|
# defaultMessage: Update installed addons
|
|
3663
3932
|
msgid "Update installed addons"
|
|
@@ -3773,6 +4042,11 @@ msgstr "Nom d'usuari"
|
|
|
3773
4042
|
msgid "User roles updated"
|
|
3774
4043
|
msgstr "Rols d'usuari actualitzats"
|
|
3775
4044
|
|
|
4045
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4046
|
+
# defaultMessage: User updated successfuly
|
|
4047
|
+
msgid "User updated successfuly"
|
|
4048
|
+
msgstr ""
|
|
4049
|
+
|
|
3776
4050
|
#: helpers/MessageLabels/MessageLabels
|
|
3777
4051
|
# defaultMessage: Username
|
|
3778
4052
|
msgid "Username"
|
|
@@ -3822,6 +4096,11 @@ msgstr "URL del vídeo"
|
|
|
3822
4096
|
msgid "View"
|
|
3823
4097
|
msgstr "veure"
|
|
3824
4098
|
|
|
4099
|
+
#: components/manage/Contents/Contents
|
|
4100
|
+
# defaultMessage: View broken links list
|
|
4101
|
+
msgid "View broken links list"
|
|
4102
|
+
msgstr ""
|
|
4103
|
+
|
|
3825
4104
|
#: components/manage/History/History
|
|
3826
4105
|
# defaultMessage: View changes
|
|
3827
4106
|
msgid "View changes"
|
|
@@ -3872,6 +4151,11 @@ msgstr "Demanem disculpes per les molèsties, però el backend del lloc al qual
|
|
|
3872
4151
|
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."
|
|
3873
4152
|
msgstr "Demanem disculpes per les molèsties, però la pàgina a la qual estàveu intentant accedir no es troba en aquesta adreça. Podeu utilitzar els enllaços següents per ajudar-vos a trobar el que busqueu."
|
|
3874
4153
|
|
|
4154
|
+
#: components/theme/Error/ServerError
|
|
4155
|
+
# defaultMessage: We apologize for the inconvenience, but there was an unexpected error on the server.
|
|
4156
|
+
msgid "We apologize for the inconvenience, but there was an unexpected error on the server."
|
|
4157
|
+
msgstr ""
|
|
4158
|
+
|
|
3875
4159
|
#: components/theme/Forbidden/Forbidden
|
|
3876
4160
|
# defaultMessage: We apologize for the inconvenience, but you don't have permissions on this resource.
|
|
3877
4161
|
msgid "We apologize for the inconvenience, but you don't have permissions on this resource."
|
|
@@ -3955,7 +4239,6 @@ msgid "Yearly"
|
|
|
3955
4239
|
msgstr "Anualment"
|
|
3956
4240
|
|
|
3957
4241
|
#: components/manage/Contents/ContentsItem
|
|
3958
|
-
#: components/manage/Contents/ContentsPropertiesModal
|
|
3959
4242
|
#: components/manage/Controlpanels/ContentTypes
|
|
3960
4243
|
# defaultMessage: Yes
|
|
3961
4244
|
msgid "Yes"
|
|
@@ -4001,6 +4284,11 @@ msgstr "No podeu enganxar aquest contingut aquí"
|
|
|
4001
4284
|
msgid "You have been logged out from the site."
|
|
4002
4285
|
msgstr ""
|
|
4003
4286
|
|
|
4287
|
+
#: components/manage/Controlpanels/Relations/Relations
|
|
4288
|
+
# defaultMessage: You have not the required permission for this control panel.
|
|
4289
|
+
msgid "You have not the required permission for this control panel."
|
|
4290
|
+
msgstr ""
|
|
4291
|
+
|
|
4004
4292
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4005
4293
|
# defaultMessage: Your email is required for reset your password.
|
|
4006
4294
|
msgid "Your email is required for reset your password."
|
|
@@ -4062,6 +4350,16 @@ msgstr "Has oblidat la teva contrasenya?"
|
|
|
4062
4350
|
msgid "checkboxFacet"
|
|
4063
4351
|
msgstr ""
|
|
4064
4352
|
|
|
4353
|
+
#: components/manage/Blocks/Grid/templates
|
|
4354
|
+
# defaultMessage: column
|
|
4355
|
+
msgid "column"
|
|
4356
|
+
msgstr ""
|
|
4357
|
+
|
|
4358
|
+
#: components/manage/Blocks/Grid/templates
|
|
4359
|
+
# defaultMessage: columns
|
|
4360
|
+
msgid "columns"
|
|
4361
|
+
msgstr ""
|
|
4362
|
+
|
|
4065
4363
|
#: config/Blocks
|
|
4066
4364
|
# defaultMessage: Common
|
|
4067
4365
|
msgid "common"
|
|
@@ -4072,6 +4370,11 @@ msgstr "Comú"
|
|
|
4072
4370
|
msgid "compare_to"
|
|
4073
4371
|
msgstr "Compara amb la llengua"
|
|
4074
4372
|
|
|
4373
|
+
#: components/manage/Controlpanels/Relations/BrokenRelations
|
|
4374
|
+
# defaultMessage: {countofrelation} broken {countofrelation, plural, one {relation} other {relations}} of type {typeofrelation}
|
|
4375
|
+
msgid "countBrokenRelations"
|
|
4376
|
+
msgstr ""
|
|
4377
|
+
|
|
4075
4378
|
#: config/Blocks
|
|
4076
4379
|
# defaultMessage: Date Range
|
|
4077
4380
|
msgid "daterangeFacet"
|
|
@@ -4152,6 +4455,21 @@ msgstr "quan"
|
|
|
4152
4455
|
msgid "event_where"
|
|
4153
4456
|
msgstr "On?"
|
|
4154
4457
|
|
|
4458
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4459
|
+
# defaultMessage: This website does not accept files larger than {limit}
|
|
4460
|
+
msgid "fileTooLarge"
|
|
4461
|
+
msgstr ""
|
|
4462
|
+
|
|
4463
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4464
|
+
# defaultMessage: flush intIds and rebuild relations
|
|
4465
|
+
msgid "flush intIds and rebuild relations"
|
|
4466
|
+
msgstr ""
|
|
4467
|
+
|
|
4468
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4469
|
+
# 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>
|
|
4470
|
+
msgid "flushAndRebuildRelationsHints"
|
|
4471
|
+
msgstr ""
|
|
4472
|
+
|
|
4155
4473
|
#: components/manage/Blocks/Teaser/schema
|
|
4156
4474
|
# defaultMessage: Head title
|
|
4157
4475
|
msgid "head_title"
|
|
@@ -4177,6 +4495,16 @@ msgstr "HTML"
|
|
|
4177
4495
|
msgid "image"
|
|
4178
4496
|
msgstr "Imatge"
|
|
4179
4497
|
|
|
4498
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4499
|
+
# defaultMessage: Clear image
|
|
4500
|
+
msgid "image_block_clear"
|
|
4501
|
+
msgstr ""
|
|
4502
|
+
|
|
4503
|
+
#: components/manage/Blocks/Image/ImageSidebar
|
|
4504
|
+
# defaultMessage: Image preview
|
|
4505
|
+
msgid "image_block_preview"
|
|
4506
|
+
msgstr ""
|
|
4507
|
+
|
|
4180
4508
|
#: helpers/MessageLabels/MessageLabels
|
|
4181
4509
|
# defaultMessage: Input must be integer
|
|
4182
4510
|
msgid "integer"
|
|
@@ -4187,13 +4515,23 @@ msgstr "L'entrada ha de ser enter"
|
|
|
4187
4515
|
msgid "intranet"
|
|
4188
4516
|
msgstr "Intranet"
|
|
4189
4517
|
|
|
4518
|
+
#: components/manage/Contents/Contents
|
|
4519
|
+
# defaultMessage: item
|
|
4520
|
+
msgid "item"
|
|
4521
|
+
msgstr ""
|
|
4522
|
+
|
|
4523
|
+
#: components/manage/Contents/Contents
|
|
4524
|
+
# defaultMessage: items
|
|
4525
|
+
msgid "items"
|
|
4526
|
+
msgstr ""
|
|
4527
|
+
|
|
4190
4528
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4191
4529
|
# defaultMessage: My email is
|
|
4192
4530
|
msgid "label_my_email_is"
|
|
4193
4531
|
msgstr ""
|
|
4194
4532
|
|
|
4195
4533
|
#: components/theme/PasswordReset/RequestPasswordReset
|
|
4196
|
-
# defaultMessage: My
|
|
4534
|
+
# defaultMessage: My user name is
|
|
4197
4535
|
msgid "label_my_username_is"
|
|
4198
4536
|
msgstr "El meu nom d'usuari és"
|
|
4199
4537
|
|
|
@@ -4253,6 +4591,11 @@ msgstr "Inici de la gamma"
|
|
|
4253
4591
|
msgid "mostUsed"
|
|
4254
4592
|
msgstr "El més utilitzat"
|
|
4255
4593
|
|
|
4594
|
+
#: components/manage/Controlpanels/Relations/RelationsListing
|
|
4595
|
+
# defaultMessage: Found {sources} sources and {targets} targets. Narrow down to {max}!
|
|
4596
|
+
msgid "narrowDownRelations"
|
|
4597
|
+
msgstr ""
|
|
4598
|
+
|
|
4256
4599
|
#: components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry
|
|
4257
4600
|
#: components/manage/Blocks/Search/components/ToggleFacetFilterListEntry
|
|
4258
4601
|
#: components/theme/Widgets/BooleanWidget
|
|
@@ -4306,6 +4649,21 @@ msgstr "Publicat"
|
|
|
4306
4649
|
msgid "querystring-widget-select"
|
|
4307
4650
|
msgstr "Selecciona ..."
|
|
4308
4651
|
|
|
4652
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4653
|
+
# defaultMessage: rebuild relations
|
|
4654
|
+
msgid "rebuild relations"
|
|
4655
|
+
msgstr ""
|
|
4656
|
+
|
|
4657
|
+
#: components/manage/Contents/Contents
|
|
4658
|
+
# defaultMessage: reference
|
|
4659
|
+
msgid "reference"
|
|
4660
|
+
msgstr ""
|
|
4661
|
+
|
|
4662
|
+
#: components/manage/Contents/Contents
|
|
4663
|
+
# defaultMessage: references
|
|
4664
|
+
msgid "references"
|
|
4665
|
+
msgstr ""
|
|
4666
|
+
|
|
4309
4667
|
#: components/theme/Search/Search
|
|
4310
4668
|
# defaultMessage: results
|
|
4311
4669
|
msgid "results found"
|
|
@@ -4334,7 +4692,7 @@ msgstr "a"
|
|
|
4334
4692
|
#: components/manage/Widgets/RecurrenceWidget/Utils
|
|
4335
4693
|
# defaultMessage: [month] [day], [year]
|
|
4336
4694
|
msgid "rrule_dateFormat"
|
|
4337
|
-
msgstr "[
|
|
4695
|
+
msgstr "[month] [day], [year]"
|
|
4338
4696
|
|
|
4339
4697
|
#: components/manage/Widgets/RecurrenceWidget/Utils
|
|
4340
4698
|
# defaultMessage: day
|
|
@@ -4506,11 +4864,21 @@ msgstr "Saltar a la navegació"
|
|
|
4506
4864
|
msgid "sort"
|
|
4507
4865
|
msgstr "Ordena"
|
|
4508
4866
|
|
|
4867
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4868
|
+
# defaultMessage: sources path
|
|
4869
|
+
msgid "sources path"
|
|
4870
|
+
msgstr ""
|
|
4871
|
+
|
|
4509
4872
|
#: config/Blocks
|
|
4510
4873
|
# defaultMessage: Table
|
|
4511
4874
|
msgid "table"
|
|
4512
4875
|
msgstr "Taula"
|
|
4513
4876
|
|
|
4877
|
+
#: helpers/MessageLabels/MessageLabels
|
|
4878
|
+
# defaultMessage: target path
|
|
4879
|
+
msgid "target path"
|
|
4880
|
+
msgstr ""
|
|
4881
|
+
|
|
4514
4882
|
#: config/Blocks
|
|
4515
4883
|
# defaultMessage: Text
|
|
4516
4884
|
msgid "text"
|
|
@@ -4521,6 +4889,7 @@ msgstr "Text"
|
|
|
4521
4889
|
msgid "title"
|
|
4522
4890
|
msgstr "Títol"
|
|
4523
4891
|
|
|
4892
|
+
#: components/manage/Blocks/ToC/Schema
|
|
4524
4893
|
#: config/Blocks
|
|
4525
4894
|
# defaultMessage: Table of Contents
|
|
4526
4895
|
msgid "toc"
|