From 11aa9abfcb65d60ff4614fb6cf903a324a570879 Mon Sep 17 00:00:00 2001 From: Cretu Mihaela Date: Thu, 29 Jun 2023 17:46:11 +0300 Subject: [PATCH 01/10] feat: add selected tab id in query params --- src/components/View.jsx | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/src/components/View.jsx b/src/components/View.jsx index 075f852d..828464b1 100644 --- a/src/components/View.jsx +++ b/src/components/View.jsx @@ -15,7 +15,7 @@ import '@eeacms/volto-tabs-block/less/tabs.less'; const View = (props) => { const view = React.useRef(null); - const { data = {}, uiContainer = '' } = props; + const { data = {}, uiContainer = '', location, history } = props; const metadata = props.metadata || props.properties; const template = data.template || 'default'; const tabsData = data.data || {}; @@ -31,7 +31,33 @@ const View = (props) => { config.blocks.blocksConfig[TABS_BLOCK].templates?.[template]?.view || DefaultView; + const useQuery = () => { + const { search } = location; + return React.useMemo(() => new URLSearchParams(search), [search]); + }; + + const query = useQuery(); + const activeTabId = query.get('activeTab'); + + const addQueryParam = (key, value) => { + const searchParams = new URLSearchParams(location.search); + searchParams.set(key, value); + + history.push({ + pathname: location.pathname, + search: searchParams.toString(), + }); + }; + + const handleActiveTabChange = (id) => { + setActiveTab(id); + addQueryParam('activeTab', id); + }; + React.useEffect(() => { + if (tabsList.includes(activeTabId)) { + setActiveTab(activeTabId); + } const urlHash = props.location.hash.substring(1) || ''; const parentTabId = getParentTabFromHash(data, urlHash); const id = parentTabId; @@ -87,7 +113,7 @@ const View = (props) => { tabsList={tabsList} template={template} uiContainer={uiContainer} - setActiveTab={setActiveTab} + setActiveTab={handleActiveTabChange} /> From 219aea57a3789b56278d6c7acedf30df52e3465f Mon Sep 17 00:00:00 2001 From: Cretu Mihaela Date: Fri, 30 Jun 2023 16:29:09 +0300 Subject: [PATCH 02/10] feat: add contition to use linking feature if the field 'Allow linking' is selected --- src/components/View.jsx | 4 +++- src/components/schema.js | 7 +++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/View.jsx b/src/components/View.jsx index 828464b1..3d3a8c09 100644 --- a/src/components/View.jsx +++ b/src/components/View.jsx @@ -113,7 +113,9 @@ const View = (props) => { tabsList={tabsList} template={template} uiContainer={uiContainer} - setActiveTab={handleActiveTabChange} + setActiveTab={ + data.allow_linking ? handleActiveTabChange : setActiveTab + } /> diff --git a/src/components/schema.js b/src/components/schema.js index 67b5778f..f51e6b1e 100644 --- a/src/components/schema.js +++ b/src/components/schema.js @@ -22,6 +22,7 @@ export const schema = (config, templateSchema = {}) => { 'title', 'template', 'verticalAlign', + 'allow_linking', ...(defaultFieldset?.fields || []), ], }, @@ -52,6 +53,12 @@ export const schema = (config, templateSchema = {}) => { ], default: 'flex-start', }, + allow_linking: { + title: 'Allow linking', + description: 'Allow linking to the selected tab', + type: 'boolean', + default: true, + }, ...(templateSchema?.properties || {}), }, required: [...(templateSchema?.required || [])], From f414fdf754d1c63bf097b3eb018eb1d6504810cf Mon Sep 17 00:00:00 2001 From: Cretu Mihaela Date: Mon, 3 Jul 2023 15:21:33 +0300 Subject: [PATCH 03/10] remove 'allow linking' checkbox --- src/components/View.jsx | 4 +--- src/components/schema.js | 7 ------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/components/View.jsx b/src/components/View.jsx index 3d3a8c09..828464b1 100644 --- a/src/components/View.jsx +++ b/src/components/View.jsx @@ -113,9 +113,7 @@ const View = (props) => { tabsList={tabsList} template={template} uiContainer={uiContainer} - setActiveTab={ - data.allow_linking ? handleActiveTabChange : setActiveTab - } + setActiveTab={handleActiveTabChange} /> diff --git a/src/components/schema.js b/src/components/schema.js index f51e6b1e..67b5778f 100644 --- a/src/components/schema.js +++ b/src/components/schema.js @@ -22,7 +22,6 @@ export const schema = (config, templateSchema = {}) => { 'title', 'template', 'verticalAlign', - 'allow_linking', ...(defaultFieldset?.fields || []), ], }, @@ -53,12 +52,6 @@ export const schema = (config, templateSchema = {}) => { ], default: 'flex-start', }, - allow_linking: { - title: 'Allow linking', - description: 'Allow linking to the selected tab', - type: 'boolean', - default: true, - }, ...(templateSchema?.properties || {}), }, required: [...(templateSchema?.required || [])], From 352b810625978afb3a550caca58faeaea6832de4 Mon Sep 17 00:00:00 2001 From: Alin Voinea Date: Tue, 29 Aug 2023 20:15:15 +0300 Subject: [PATCH 04/10] i18n: Add en --- locales/de/LC_MESSAGES/volto.po | 395 ++++++++++++++++++++++++++++ locales/en/LC_MESSAGES/volto.po | 409 +++++++++++++++++++++++++++++ locales/es/LC_MESSAGES/volto.po | 164 ++++++------ locales/it/LC_MESSAGES/volto.po | 395 ++++++++++++++++++++++++++++ locales/pt_BR/LC_MESSAGES/volto.po | 2 +- locales/ro/LC_MESSAGES/volto.po | 395 ++++++++++++++++++++++++++++ locales/volto.pot | 4 +- 7 files changed, 1683 insertions(+), 81 deletions(-) create mode 100644 locales/en/LC_MESSAGES/volto.po diff --git a/locales/de/LC_MESSAGES/volto.po b/locales/de/LC_MESSAGES/volto.po index 12b9a476..52c0ccd0 100644 --- a/locales/de/LC_MESSAGES/volto.po +++ b/locales/de/LC_MESSAGES/volto.po @@ -11,4 +11,399 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#: index +# defaultMessage: Accordion responsive +msgid "Accordion responsive" +msgstr "" + +#: index +# defaultMessage: Default +msgid "Default" +msgstr "" + +#: components/EditBlockWrapper +# defaultMessage: Unknown Block {block} +msgid "Unknown Block" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Accordion tabs block +msgid "accordion-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Accordion responsive +msgid "accordionResponsive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Alignment +msgid "alignment" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Black +msgid "black" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Blue +msgid "blue" +msgstr "" + +#: components/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Bottom +msgid "bottom" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Brown +msgid "brown" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Carousel block +msgid "carousel-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Carousel horizontal +msgid "carouselHorizontal" +msgstr "" + +#: components/schema +# defaultMessage: Carousel vertical (prototype) +msgid "carouselVerticalPrototype" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Center +msgid "center" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Color +msgid "color" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Dark +msgid "dark" +msgstr "" + +#: components/schema +#: components/templates/accordion/schema +#: components/templates/carousel/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Default +msgid "default" +msgstr "" + +#: components/templates/default/schema +# defaultMessage: Default tabs block +msgid "default-tabs-block" +msgstr "" + +#: components/EditBlockWrapper +# defaultMessage: delete +msgid "delete" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Description +msgid "description" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Green +msgid "green" +msgstr "" + +#: components/templates/carousel/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Grey +msgid "grey" +msgstr "" + +#: components/templates/horizontal-responsive/schema +# defaultMessage: Horizontal tabs block +msgid "horizontal-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Horizontal responsive +msgid "horizontalResponsive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Huge +msgid "huge" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Icon position on the right +msgid "icon-position-on-the-right" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Inverted +msgid "inverted" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Large +msgid "large" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Left +msgid "left" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Left side +msgid "left-side" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Light +msgid "light" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Massive +msgid "massive" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Menu +msgid "menu" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Borderless +msgid "menu-border-less" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Compact +msgid "menu-compact" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Fluid +msgid "menu-fluid" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Inverted +msgid "menu-inverted" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Pointing +msgid "menu-pointing" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Secondary +msgid "menu-secondary" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Stackable +msgid "menu-stackable" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Tabular +msgid "menu-tabular" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Text +msgid "menu-text" +msgstr "" + +#: components/schema +# defaultMessage: Middle +msgid "middle" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Mini +msgid "mini" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Olive +msgid "olive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Orange +msgid "orange" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Pink +msgid "pink" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Position +msgid "position" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Position left/right of the icon in the accordion tab +msgid "position-left-right-of-the-icon-in-the-accordion-tab" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Purple +msgid "purple" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Red +msgid "red" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Right +msgid "right" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Right side +msgid "right-side" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Set the theme for the accordion tabs block +msgid "set-the-theme-for-the-accordion-tabs-block" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Size +msgid "size" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Small +msgid "small" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Space between +msgid "space-between" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Style +msgid "style" +msgstr "" + +#: components/schema +# defaultMessage: Tabs +msgid "tabs" +msgstr "" + +#: components/schema +# defaultMessage: Tabs block +msgid "tabs-block" +msgstr "" +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Teal +msgid "teal" +msgstr "" + +#: components/schema +# defaultMessage: Template +msgid "template" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/carousel/schema +# defaultMessage: Theme +msgid "theme" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Tiny +msgid "tiny" +msgstr "" + +#: components/schema +# defaultMessage: Title +msgid "title" +msgstr "" + +#: components/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Top +msgid "top" +msgstr "" + +#: components/schema +# defaultMessage: Vertical align +msgid "vertical-align" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Violet +msgid "violet" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Yellow +msgid "yellow" +msgstr "" diff --git a/locales/en/LC_MESSAGES/volto.po b/locales/en/LC_MESSAGES/volto.po new file mode 100644 index 00000000..52c0ccd0 --- /dev/null +++ b/locales/en/LC_MESSAGES/volto.po @@ -0,0 +1,409 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language: \n" +"Language-Team: \n" +"Content-Type: \n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#: index +# defaultMessage: Accordion responsive +msgid "Accordion responsive" +msgstr "" + +#: index +# defaultMessage: Default +msgid "Default" +msgstr "" + +#: components/EditBlockWrapper +# defaultMessage: Unknown Block {block} +msgid "Unknown Block" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Accordion tabs block +msgid "accordion-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Accordion responsive +msgid "accordionResponsive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Alignment +msgid "alignment" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Black +msgid "black" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Blue +msgid "blue" +msgstr "" + +#: components/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Bottom +msgid "bottom" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Brown +msgid "brown" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Carousel block +msgid "carousel-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Carousel horizontal +msgid "carouselHorizontal" +msgstr "" + +#: components/schema +# defaultMessage: Carousel vertical (prototype) +msgid "carouselVerticalPrototype" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Center +msgid "center" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Color +msgid "color" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Dark +msgid "dark" +msgstr "" + +#: components/schema +#: components/templates/accordion/schema +#: components/templates/carousel/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Default +msgid "default" +msgstr "" + +#: components/templates/default/schema +# defaultMessage: Default tabs block +msgid "default-tabs-block" +msgstr "" + +#: components/EditBlockWrapper +# defaultMessage: delete +msgid "delete" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Description +msgid "description" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Green +msgid "green" +msgstr "" + +#: components/templates/carousel/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Grey +msgid "grey" +msgstr "" + +#: components/templates/horizontal-responsive/schema +# defaultMessage: Horizontal tabs block +msgid "horizontal-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Horizontal responsive +msgid "horizontalResponsive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Huge +msgid "huge" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Icon position on the right +msgid "icon-position-on-the-right" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Inverted +msgid "inverted" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Large +msgid "large" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Left +msgid "left" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Left side +msgid "left-side" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Light +msgid "light" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Massive +msgid "massive" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Menu +msgid "menu" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Borderless +msgid "menu-border-less" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Compact +msgid "menu-compact" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Fluid +msgid "menu-fluid" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Inverted +msgid "menu-inverted" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Pointing +msgid "menu-pointing" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Secondary +msgid "menu-secondary" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Stackable +msgid "menu-stackable" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Tabular +msgid "menu-tabular" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Text +msgid "menu-text" +msgstr "" + +#: components/schema +# defaultMessage: Middle +msgid "middle" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Mini +msgid "mini" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Olive +msgid "olive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Orange +msgid "orange" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Pink +msgid "pink" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Position +msgid "position" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Position left/right of the icon in the accordion tab +msgid "position-left-right-of-the-icon-in-the-accordion-tab" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Purple +msgid "purple" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Red +msgid "red" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Right +msgid "right" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Right side +msgid "right-side" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Set the theme for the accordion tabs block +msgid "set-the-theme-for-the-accordion-tabs-block" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Size +msgid "size" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Small +msgid "small" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Space between +msgid "space-between" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Style +msgid "style" +msgstr "" + +#: components/schema +# defaultMessage: Tabs +msgid "tabs" +msgstr "" + +#: components/schema +# defaultMessage: Tabs block +msgid "tabs-block" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Teal +msgid "teal" +msgstr "" + +#: components/schema +# defaultMessage: Template +msgid "template" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/carousel/schema +# defaultMessage: Theme +msgid "theme" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Tiny +msgid "tiny" +msgstr "" + +#: components/schema +# defaultMessage: Title +msgid "title" +msgstr "" + +#: components/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Top +msgid "top" +msgstr "" + +#: components/schema +# defaultMessage: Vertical align +msgid "vertical-align" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Violet +msgid "violet" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Yellow +msgid "yellow" +msgstr "" diff --git a/locales/es/LC_MESSAGES/volto.po b/locales/es/LC_MESSAGES/volto.po index ae793d96..5052d3ee 100644 --- a/locales/es/LC_MESSAGES/volto.po +++ b/locales/es/LC_MESSAGES/volto.po @@ -7,12 +7,12 @@ msgstr "" "POT-Creation-Date: 2023-05-15 09:19-0400\n" "PO-Revision-Date: 2023-07-26 17:59-0300\n" "Last-Translator: André Clímaco \n" -"Language-Team: ES \n" "Language: es\n" -"MIME-Version: 1.0\n" +"Language-Team: ES \n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" "Preferred-Encodings: utf-8\n" "Language-Code: es\n" "Language-Name: Español\n" @@ -20,391 +20,399 @@ msgstr "" "X-Is-Fallback-For: es-ar es-bo es-cl es-co es-cr es-do es-ec es-es es-sv es-gt es-hn es-mx es-ni es-pa es-py es-pe es-pr es-us es-uy es-ve\n" "X-Generator: Poedit 3.0.1\n" -# defaultMessage: Accordion responsive #: index +# defaultMessage: Accordion responsive msgid "Accordion responsive" msgstr "" -# defaultMessage: Default #: index +# defaultMessage: Default msgid "Default" msgstr "" -# defaultMessage: Unknown Block {block} #: components/EditBlockWrapper +# defaultMessage: Unknown Block {block} msgid "Unknown Block" msgstr "Bloque desconocido" -# defaultMessage: Accordion tabs block #: components/templates/accordion/schema +# defaultMessage: Accordion tabs block msgid "accordion-tabs-block" msgstr "Bloque de pestañas de acordeón" -# defaultMessage: Accordion responsive #: components/schema +# defaultMessage: Accordion responsive msgid "accordionResponsive" msgstr "" -# defaultMessage: Alignment #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Alignment msgid "alignment" msgstr "Alineación" -# defaultMessage: Black #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Black msgid "black" msgstr "Negro" -# defaultMessage: Blue #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Blue msgid "blue" msgstr "Azul" -# defaultMessage: Bottom -#: components/schema components/templates/default/schema +#: components/schema +#: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Bottom msgid "bottom" msgstr "abajo" -# defaultMessage: Brown #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Brown msgid "brown" msgstr "Marrón" -# defaultMessage: Carousel block #: components/templates/carousel/schema +# defaultMessage: Carousel block msgid "carousel-tabs-block" msgstr "" -# defaultMessage: Carousel horizontal #: components/schema +# defaultMessage: Carousel horizontal msgid "carouselHorizontal" msgstr "" -# defaultMessage: Carousel vertical (prototype) #: components/schema +# defaultMessage: Carousel vertical (prototype) msgid "carouselVerticalPrototype" msgstr "" -# defaultMessage: Center #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Center msgid "center" msgstr "Centro" -# defaultMessage: Color #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Color msgid "color" msgstr "Color" -# defaultMessage: Dark #: components/templates/carousel/schema +# defaultMessage: Dark msgid "dark" msgstr "Oscuro" -# defaultMessage: Default -#: components/schema components/templates/accordion/schema -#: components/templates/carousel/schema components/templates/default/schema +#: components/schema +#: components/templates/accordion/schema +#: components/templates/carousel/schema +#: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Default msgid "default" msgstr "Por defecto" -# defaultMessage: Default tabs block #: components/templates/default/schema +# defaultMessage: Default tabs block msgid "default-tabs-block" msgstr "Bloque de pestañas predeterminado" -# defaultMessage: delete #: components/EditBlockWrapper +# defaultMessage: delete msgid "delete" msgstr "eliminar" -# defaultMessage: Description -#: components/templates/accordion/schema components/templates/default/schema +#: components/templates/accordion/schema +#: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Description msgid "description" msgstr "descripción" -# defaultMessage: Green #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Green msgid "green" msgstr "Verde" -# defaultMessage: Grey -#: components/templates/carousel/schema components/templates/default/schema +#: components/templates/carousel/schema +#: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Grey msgid "grey" msgstr "Gris" -# defaultMessage: Horizontal tabs block #: components/templates/horizontal-responsive/schema +# defaultMessage: Horizontal tabs block msgid "horizontal-tabs-block" msgstr "" -# defaultMessage: Horizontal responsive #: components/schema +# defaultMessage: Horizontal responsive msgid "horizontalResponsive" msgstr "" -# defaultMessage: Huge #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Huge msgid "huge" msgstr "Enorme" -# defaultMessage: Icon position on the right #: components/templates/accordion/schema +# defaultMessage: Icon position on the right msgid "icon-position-on-the-right" msgstr "Posición del icono a la derecha" -# defaultMessage: Inverted #: components/templates/accordion/schema +# defaultMessage: Inverted msgid "inverted" msgstr "Invertido" -# defaultMessage: Large #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Large msgid "large" msgstr "Grande" -# defaultMessage: Left #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Left msgid "left" msgstr "izquierda" -# defaultMessage: Left side #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Left side msgid "left-side" msgstr "Lado izquierdo" -# defaultMessage: Light #: components/templates/carousel/schema +# defaultMessage: Light msgid "light" msgstr "Claro" -# defaultMessage: Masive #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Massive msgid "massive" msgstr "Masivo" -# defaultMessage: Menu -#: components/templates/accordion/schema components/templates/default/schema +#: components/templates/accordion/schema +#: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Menu msgid "menu" msgstr "Menú" -# defaultMessage: Borderless #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Borderless msgid "menu-border-less" msgstr "Sin bordes" -# defaultMessage: Compact #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Compact msgid "menu-compact" msgstr "Compacto" -# defaultMessage: Fluid #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Fluid msgid "menu-fluid" msgstr "Líquido" -# defaultMessage: Inverted #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Inverted msgid "menu-inverted" msgstr "Invertido" -# defaultMessage: Pointing #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Pointing msgid "menu-pointing" msgstr "Señalando" -# defaultMessage: Secondary #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Secondary msgid "menu-secondary" msgstr "Secundario" -# defaultMessage: Stackable #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Stackable msgid "menu-stackable" msgstr "Apilable" -# defaultMessage: Tabular #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Tabular msgid "menu-tabular" msgstr "Tabular" -# defaultMessage: Text #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Text msgid "menu-text" msgstr "Texto" -# defaultMessage: Middle #: components/schema +# defaultMessage: Middle msgid "middle" msgstr "Medio" -# defaultMessage: Mini #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Mini msgid "mini" msgstr "Mini" -# defaultMessage: Olive #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Olive msgid "olive" msgstr "Oliva" -# defaultMessage: Orange #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Orange msgid "orange" msgstr "Naranja" -# defaultMessage: Pink #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Pink msgid "pink" msgstr "Rosado" -# defaultMessage: Position #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Position msgid "position" msgstr "Posición" -# defaultMessage: Position left/right of the icon in the accordion tab #: components/templates/accordion/schema +# defaultMessage: Position left/right of the icon in the accordion tab msgid "position-left-right-of-the-icon-in-the-accordion-tab" msgstr "Posición izquierda/derecha del icono en la pestaña de acordeón" -# defaultMessage: Purple #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Purple msgid "purple" msgstr "Morado" -# defaultMessage: Red #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Red msgid "red" msgstr "Rojo" -# defaultMessage: Right #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Right msgid "right" msgstr "derecha" -# defaultMessage: Right side #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Right side msgid "right-side" msgstr "Lado derecho" -# defaultMessage: Set the theme for the accordion tabs block #: components/templates/accordion/schema +# defaultMessage: Set the theme for the accordion tabs block msgid "set-the-theme-for-the-accordion-tabs-block" msgstr "Establecer el tema para el bloque de pestañas de acordeón" -# defaultMessage: Size #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Size msgid "size" msgstr "Tamaño" -# defaultMessage: Small #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Small msgid "small" msgstr "Pequeño" -# defaultMessage: Space between #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Space between msgid "space-between" msgstr "Espacio entre" -# defaultMessage: Style #: components/templates/accordion/schema +# defaultMessage: Style msgid "style" msgstr "Estilo" -# defaultMessage: Tabs #: components/schema +# defaultMessage: Tabs msgid "tabs" msgstr "Pestañas" -# defaultMessage: Tabs block #: components/schema +# defaultMessage: Tabs block msgid "tabs-block" msgstr "Bloque Pestañas" -# defaultMessage: Teal #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Teal msgid "teal" msgstr "Verde azulado" -# defaultMessage: Template #: components/schema +# defaultMessage: Template msgid "template" msgstr "plantilla" +#: components/templates/accordion/schema +#: components/templates/carousel/schema # defaultMessage: Theme -#: components/templates/accordion/schema components/templates/carousel/schema msgid "theme" msgstr "tema" -# defaultMessage: Tiny #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Tiny msgid "tiny" msgstr "Diminuto" -# defaultMessage: Title #: components/schema +# defaultMessage: Title msgid "title" msgstr "título" -# defaultMessage: Top -#: components/schema components/templates/default/schema +#: components/schema +#: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Top msgid "top" msgstr "arriba" -# defaultMessage: Vertical align #: components/schema +# defaultMessage: Vertical align msgid "vertical-align" msgstr "Alineación vertical" -# defaultMessage: Violet #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Violet msgid "violet" msgstr "Violeta" -# defaultMessage: Yellow #: components/templates/default/schema #: components/templates/horizontal-responsive/schema +# defaultMessage: Yellow msgid "yellow" msgstr "Amarillo" diff --git a/locales/it/LC_MESSAGES/volto.po b/locales/it/LC_MESSAGES/volto.po index 12b9a476..52c0ccd0 100644 --- a/locales/it/LC_MESSAGES/volto.po +++ b/locales/it/LC_MESSAGES/volto.po @@ -11,4 +11,399 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#: index +# defaultMessage: Accordion responsive +msgid "Accordion responsive" +msgstr "" + +#: index +# defaultMessage: Default +msgid "Default" +msgstr "" + +#: components/EditBlockWrapper +# defaultMessage: Unknown Block {block} +msgid "Unknown Block" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Accordion tabs block +msgid "accordion-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Accordion responsive +msgid "accordionResponsive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Alignment +msgid "alignment" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Black +msgid "black" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Blue +msgid "blue" +msgstr "" + +#: components/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Bottom +msgid "bottom" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Brown +msgid "brown" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Carousel block +msgid "carousel-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Carousel horizontal +msgid "carouselHorizontal" +msgstr "" + +#: components/schema +# defaultMessage: Carousel vertical (prototype) +msgid "carouselVerticalPrototype" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Center +msgid "center" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Color +msgid "color" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Dark +msgid "dark" +msgstr "" + +#: components/schema +#: components/templates/accordion/schema +#: components/templates/carousel/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Default +msgid "default" +msgstr "" + +#: components/templates/default/schema +# defaultMessage: Default tabs block +msgid "default-tabs-block" +msgstr "" + +#: components/EditBlockWrapper +# defaultMessage: delete +msgid "delete" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Description +msgid "description" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Green +msgid "green" +msgstr "" + +#: components/templates/carousel/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Grey +msgid "grey" +msgstr "" + +#: components/templates/horizontal-responsive/schema +# defaultMessage: Horizontal tabs block +msgid "horizontal-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Horizontal responsive +msgid "horizontalResponsive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Huge +msgid "huge" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Icon position on the right +msgid "icon-position-on-the-right" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Inverted +msgid "inverted" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Large +msgid "large" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Left +msgid "left" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Left side +msgid "left-side" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Light +msgid "light" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Massive +msgid "massive" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Menu +msgid "menu" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Borderless +msgid "menu-border-less" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Compact +msgid "menu-compact" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Fluid +msgid "menu-fluid" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Inverted +msgid "menu-inverted" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Pointing +msgid "menu-pointing" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Secondary +msgid "menu-secondary" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Stackable +msgid "menu-stackable" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Tabular +msgid "menu-tabular" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Text +msgid "menu-text" +msgstr "" + +#: components/schema +# defaultMessage: Middle +msgid "middle" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Mini +msgid "mini" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Olive +msgid "olive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Orange +msgid "orange" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Pink +msgid "pink" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Position +msgid "position" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Position left/right of the icon in the accordion tab +msgid "position-left-right-of-the-icon-in-the-accordion-tab" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Purple +msgid "purple" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Red +msgid "red" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Right +msgid "right" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Right side +msgid "right-side" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Set the theme for the accordion tabs block +msgid "set-the-theme-for-the-accordion-tabs-block" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Size +msgid "size" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Small +msgid "small" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Space between +msgid "space-between" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Style +msgid "style" +msgstr "" + +#: components/schema +# defaultMessage: Tabs +msgid "tabs" +msgstr "" + +#: components/schema +# defaultMessage: Tabs block +msgid "tabs-block" +msgstr "" +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Teal +msgid "teal" +msgstr "" + +#: components/schema +# defaultMessage: Template +msgid "template" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/carousel/schema +# defaultMessage: Theme +msgid "theme" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Tiny +msgid "tiny" +msgstr "" + +#: components/schema +# defaultMessage: Title +msgid "title" +msgstr "" + +#: components/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Top +msgid "top" +msgstr "" + +#: components/schema +# defaultMessage: Vertical align +msgid "vertical-align" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Violet +msgid "violet" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Yellow +msgid "yellow" +msgstr "" diff --git a/locales/pt_BR/LC_MESSAGES/volto.po b/locales/pt_BR/LC_MESSAGES/volto.po index 4d4a7ab1..a3cd9246 100644 --- a/locales/pt_BR/LC_MESSAGES/volto.po +++ b/locales/pt_BR/LC_MESSAGES/volto.po @@ -195,7 +195,7 @@ msgstr "Claro" #: components/templates/default/schema #: components/templates/horizontal-responsive/schema -# defaultMessage: Masive +# defaultMessage: Massive msgid "massive" msgstr "Gigante" diff --git a/locales/ro/LC_MESSAGES/volto.po b/locales/ro/LC_MESSAGES/volto.po index 12b9a476..52c0ccd0 100644 --- a/locales/ro/LC_MESSAGES/volto.po +++ b/locales/ro/LC_MESSAGES/volto.po @@ -11,4 +11,399 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#: index +# defaultMessage: Accordion responsive +msgid "Accordion responsive" +msgstr "" + +#: index +# defaultMessage: Default +msgid "Default" +msgstr "" + +#: components/EditBlockWrapper +# defaultMessage: Unknown Block {block} +msgid "Unknown Block" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Accordion tabs block +msgid "accordion-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Accordion responsive +msgid "accordionResponsive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Alignment +msgid "alignment" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Black +msgid "black" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Blue +msgid "blue" +msgstr "" + +#: components/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Bottom +msgid "bottom" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Brown +msgid "brown" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Carousel block +msgid "carousel-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Carousel horizontal +msgid "carouselHorizontal" +msgstr "" + +#: components/schema +# defaultMessage: Carousel vertical (prototype) +msgid "carouselVerticalPrototype" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Center +msgid "center" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Color +msgid "color" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Dark +msgid "dark" +msgstr "" + +#: components/schema +#: components/templates/accordion/schema +#: components/templates/carousel/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Default +msgid "default" +msgstr "" + +#: components/templates/default/schema +# defaultMessage: Default tabs block +msgid "default-tabs-block" +msgstr "" + +#: components/EditBlockWrapper +# defaultMessage: delete +msgid "delete" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Description +msgid "description" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Green +msgid "green" +msgstr "" + +#: components/templates/carousel/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Grey +msgid "grey" +msgstr "" + +#: components/templates/horizontal-responsive/schema +# defaultMessage: Horizontal tabs block +msgid "horizontal-tabs-block" +msgstr "" + +#: components/schema +# defaultMessage: Horizontal responsive +msgid "horizontalResponsive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Huge +msgid "huge" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Icon position on the right +msgid "icon-position-on-the-right" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Inverted +msgid "inverted" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Large +msgid "large" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Left +msgid "left" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Left side +msgid "left-side" +msgstr "" + +#: components/templates/carousel/schema +# defaultMessage: Light +msgid "light" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Massive +msgid "massive" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Menu +msgid "menu" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Borderless +msgid "menu-border-less" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Compact +msgid "menu-compact" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Fluid +msgid "menu-fluid" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Inverted +msgid "menu-inverted" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Pointing +msgid "menu-pointing" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Secondary +msgid "menu-secondary" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Stackable +msgid "menu-stackable" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Tabular +msgid "menu-tabular" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Text +msgid "menu-text" +msgstr "" + +#: components/schema +# defaultMessage: Middle +msgid "middle" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Mini +msgid "mini" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Olive +msgid "olive" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Orange +msgid "orange" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Pink +msgid "pink" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Position +msgid "position" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Position left/right of the icon in the accordion tab +msgid "position-left-right-of-the-icon-in-the-accordion-tab" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Purple +msgid "purple" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Red +msgid "red" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Right +msgid "right" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Right side +msgid "right-side" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Set the theme for the accordion tabs block +msgid "set-the-theme-for-the-accordion-tabs-block" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Size +msgid "size" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Small +msgid "small" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Space between +msgid "space-between" +msgstr "" + +#: components/templates/accordion/schema +# defaultMessage: Style +msgid "style" +msgstr "" + +#: components/schema +# defaultMessage: Tabs +msgid "tabs" +msgstr "" + +#: components/schema +# defaultMessage: Tabs block +msgid "tabs-block" +msgstr "" +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Teal +msgid "teal" +msgstr "" + +#: components/schema +# defaultMessage: Template +msgid "template" +msgstr "" + +#: components/templates/accordion/schema +#: components/templates/carousel/schema +# defaultMessage: Theme +msgid "theme" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Tiny +msgid "tiny" +msgstr "" + +#: components/schema +# defaultMessage: Title +msgid "title" +msgstr "" + +#: components/schema +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Top +msgid "top" +msgstr "" + +#: components/schema +# defaultMessage: Vertical align +msgid "vertical-align" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Violet +msgid "violet" +msgstr "" + +#: components/templates/default/schema +#: components/templates/horizontal-responsive/schema +# defaultMessage: Yellow +msgid "yellow" +msgstr "" diff --git a/locales/volto.pot b/locales/volto.pot index 090fa9b3..4081fd90 100644 --- a/locales/volto.pot +++ b/locales/volto.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Plone\n" -"POT-Creation-Date: 2023-07-26T20:41:22.374Z\n" +"POT-Creation-Date: 2023-08-29T17:15:15.520Z\n" "Last-Translator: Plone i18n \n" "Language-Team: Plone i18n \n" "MIME-Version: 1.0\n" @@ -191,7 +191,7 @@ msgstr "" #: components/templates/default/schema #: components/templates/horizontal-responsive/schema -# defaultMessage: Masive +# defaultMessage: Massive msgid "massive" msgstr "" From df9b88d8cf31d6090ab20cc536558d7d734cc0ef Mon Sep 17 00:00:00 2001 From: valentinab25 Date: Wed, 6 Sep 2023 01:15:42 +0300 Subject: [PATCH 05/10] test: EN locales, pre-commit fix, feature PRs checks Refs #257193 --- .husky/pre-commit | 2 ++ Jenkinsfile | 66 ++++++++++++++++++++++++++++++++--------------- cypress.config.js | 4 +-- package.json | 28 ++++++++++++++++++-- 4 files changed, 75 insertions(+), 25 deletions(-) create mode 100755 .husky/pre-commit diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 00000000..9183f9d3 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,2 @@ +[ -n "$CI" ] && exit 0 +yarn lint-staged diff --git a/Jenkinsfile b/Jenkinsfile index 691bc1e1..949f04b1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -62,11 +62,17 @@ pipeline { stage('Tests') { when { - allOf { - environment name: 'CHANGE_ID', value: '' - anyOf { - not { changelog '.*^Automated release [0-9\\.]+$' } - branch 'master' + anyOf { + allOf { + not { environment name: 'CHANGE_ID', value: '' } + environment name: 'CHANGE_TARGET', value: 'develop' + } + allOf { + environment name: 'CHANGE_ID', value: '' + anyOf { + not { changelog '.*^Automated release [0-9\\.]+$' } + branch 'master' + } } } } @@ -110,11 +116,17 @@ pipeline { stage('Integration tests') { when { - allOf { - environment name: 'CHANGE_ID', value: '' - anyOf { - not { changelog '.*^Automated release [0-9\\.]+$' } - branch 'master' + anyOf { + allOf { + not { environment name: 'CHANGE_ID', value: '' } + environment name: 'CHANGE_TARGET', value: 'develop' + } + allOf { + environment name: 'CHANGE_ID', value: '' + anyOf { + not { changelog '.*^Automated release [0-9\\.]+$' } + branch 'master' + } } } } @@ -167,13 +179,19 @@ pipeline { stage('Report to SonarQube') { when { - allOf { - environment name: 'CHANGE_ID', value: '' - anyOf { - branch 'master' - allOf { - branch 'develop' - not { changelog '.*^Automated release [0-9\\.]+$' } + anyOf { + allOf { + not { environment name: 'CHANGE_ID', value: '' } + environment name: 'CHANGE_TARGET', value: 'develop' + } + allOf { + environment name: 'CHANGE_ID', value: '' + anyOf { + allOf { + branch 'develop' + not { changelog '.*^Automated release [0-9\\.]+$' } + } + branch 'master' } } } @@ -199,10 +217,16 @@ pipeline { stage('SonarQube compare to master') { when { - allOf { - environment name: 'CHANGE_ID', value: '' - branch 'develop' - not { changelog '.*^Automated release [0-9\\.]+$' } + anyOf { + allOf { + not { environment name: 'CHANGE_ID', value: '' } + environment name: 'CHANGE_TARGET', value: 'develop' + } + allOf { + environment name: 'CHANGE_ID', value: '' + branch 'develop' + not { changelog '.*^Automated release [0-9\\.]+$' } + } } } steps { diff --git a/cypress.config.js b/cypress.config.js index 30be8ac3..4846ce98 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -2,12 +2,12 @@ const { defineConfig } = require('cypress'); module.exports = defineConfig({ viewportWidth: 1280, - defaultCommandTimeout: 8888, + defaultCommandTimeout: 5000, chromeWebSecurity: false, reporter: 'junit', video: true, retries: { - runMode: 8, + runMode: 1, openMode: 0, }, reporterOptions: { diff --git a/package.json b/package.json index abfbdeab..7ceb2e82 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,30 @@ "@cypress/code-coverage": "^3.10.0", "@plone/scripts": "*", "babel-plugin-transform-class-properties": "^6.24.1", - "md5": "^2.3.0" + "md5": "^2.3.0", + "husky": "*", + "lint-staged": "*" + }, + "lint-staged": { + "src/**/*.{js,jsx,ts,tsx,json}": [ + "make lint-fix", + "make prettier-fix" + ], + "src/**/*.{jsx}": [ + "make i18n" + ], + "theme/**/*.{css,less}": [ + "make stylelint-fix" + ], + "src/**/*.{css,less}": [ + "make stylelint-fix" + ], + "theme/**/*.overrides": [ + "make stylelint-fix" + ], + "src/**/*.overrides": [ + "make stylelint-fix" + ] }, "scripts": { "release": "release-it", @@ -50,6 +73,7 @@ "lint:fix": "make lint-fix", "i18n": "make i18n", "cypress:run": "make cypress-run", - "cypress:open": "make cypress-open" + "cypress:open": "make cypress-open", + "prepare": "husky install" } } From 2b42a623c51edad9fd80266ab1caed310467882f Mon Sep 17 00:00:00 2001 From: Alin Voinea Date: Thu, 14 Sep 2023 14:38:57 +0300 Subject: [PATCH 06/10] style: lint-staged reorder in package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7ceb2e82..a01d653b 100644 --- a/package.json +++ b/package.json @@ -31,9 +31,9 @@ "@cypress/code-coverage": "^3.10.0", "@plone/scripts": "*", "babel-plugin-transform-class-properties": "^6.24.1", - "md5": "^2.3.0", "husky": "*", - "lint-staged": "*" + "lint-staged": "*", + "md5": "^2.3.0" }, "lint-staged": { "src/**/*.{js,jsx,ts,tsx,json}": [ From ae3ae663b83fcdf9fe453f4fae169548475d13b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cre=C8=9Bu=20Mihaela?= <68827085+MihaelaCretu11@users.noreply.github.com> Date: Tue, 26 Sep 2023 13:37:22 +0300 Subject: [PATCH 07/10] test: Add cypress tests to increase coverage --- cypress/e2e/01-block-tabs.cy.js | 72 +++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/cypress/e2e/01-block-tabs.cy.js b/cypress/e2e/01-block-tabs.cy.js index 542e548d..4b482bff 100644 --- a/cypress/e2e/01-block-tabs.cy.js +++ b/cypress/e2e/01-block-tabs.cy.js @@ -72,4 +72,76 @@ describe('Blocks Tests', () => { cy.get('.slick-arrow').click(); cy.get('.block.image'); }); + + it('Add Tabs Block Horizontal', () => { + // Change page title + cy.clearSlateTitle(); + cy.getSlateTitle().type('My Add-on Page'); + + cy.get('.documentFirstHeading').contains('My Add-on Page'); + cy.getSlate().click(); + + cy.get('.ui.basic.icon.button.block-add-button').first().click(); + cy.get('.blocks-chooser .title').contains('Common').click(); + cy.get('.content.active.common .button.tabs_block') + .contains('Tabs') + .click({ force: true }); + + cy.get('.field-wrapper-title input').last().type('Tab 1'); + cy.get('.field-wrapper-template #field-template').click(); + cy.get('.react-select__menu').contains('Horizontal responsive').click(); + + cy.get('.tabs-block [contenteditable=true]').first().type('Horizontal First Item'); + cy.get('.tabs-block .horizontal-responsive .ui.text.menu .item').last().click({force: true}); + cy.get('.tabs-block').contains('Tab 2').click(); + cy.get('.tabs-block.edit [contenteditable=true]').first().type('Horizontal Second Item'); + + // Save + cy.get('#toolbar-save').click(); + cy.url().should('eq', Cypress.config().baseUrl + '/cypress/my-page'); + + // then the page view should contain our changes + cy.contains('My Add-on Page'); + cy.get('.tabs-block .horizontal-responsive.tabs').should('exist'); + cy.contains('Horizontal First Item'); + + cy.get('.tabs-block p').contains('Tab 2').click(); + cy.contains('Horizontal Second Item'); + }); + + it('Add Tabs Block Accordion', () => { + // Change page title + cy.clearSlateTitle(); + cy.getSlateTitle().type('My Add-on Page'); + + cy.get('.documentFirstHeading').contains('My Add-on Page'); + cy.getSlate().click(); + + cy.get('.ui.basic.icon.button.block-add-button').first().click(); + cy.get('.blocks-chooser .title').contains('Common').click(); + cy.get('.content.active.common .button.tabs_block') + .contains('Tabs') + .click({ force: true }); + + cy.get('.field-wrapper-title input').last().type('Tab 1'); + cy.get('.field-wrapper-template #field-template').click(); + cy.get('.react-select__menu').contains('Accordion responsive').click(); + + cy.get('.tabs-block [contenteditable=true]').first().type('Accordion First Item'); + cy.get('.tabs-block .menu-item-text').last().click({force: true}); + cy.get('.tabs-block').contains('Tab 2').click(); + cy.get('.tabs-block.edit [contenteditable=true]').first().type('Accordion Second Item'); + + // Save + cy.get('#toolbar-save').click(); + cy.url().should('eq', Cypress.config().baseUrl + '/cypress/my-page'); + + // then the page view should contain our changes + cy.contains('My Add-on Page'); + cy.get('.tabs-block.accordion').should('exist'); + cy.contains('Accordion First Item'); + + cy.get('.tabs-block').contains('Tab 2').click(); + cy.contains('Accordion Second Item'); + }); }); From f097cea2736656fc87b5c815e3bd02f08f56497b Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Tue, 26 Sep 2023 10:53:57 +0000 Subject: [PATCH 08/10] Automated release 5.1.1 --- CHANGELOG.md | 40 +++++++++++++++++++++++++++++++++++++++- package.json | 2 +- 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e304fac2..120d4229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,24 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [5.1.0](https://github.com/eea/volto-tabs-block/compare/5.0.8...5.1.0) - 25 August 2023 +### [5.1.1](https://github.com/eea/volto-tabs-block/compare/5.1.0...5.1.1) - 26 September 2023 + +#### :rocket: New Features + +- feat: add contition to use linking feature if the field 'Allow linking' is selected [Cretu Mihaela - [`219aea5`](https://github.com/eea/volto-tabs-block/commit/219aea57a3789b56278d6c7acedf30df52e3465f)] +- feat: add selected tab id in query params [Cretu Mihaela - [`11aa9ab`](https://github.com/eea/volto-tabs-block/commit/11aa9abfcb65d60ff4614fb6cf903a324a570879)] + +#### :house: Internal changes + +- style: lint-staged reorder in package.json [Alin Voinea - [`2b42a62`](https://github.com/eea/volto-tabs-block/commit/2b42a623c51edad9fd80266ab1caed310467882f)] + +#### :hammer_and_wrench: Others + +- test: Add cypress tests to increase coverage [Crețu Mihaela - [`ae3ae66`](https://github.com/eea/volto-tabs-block/commit/ae3ae663b83fcdf9fe453f4fae169548475d13b5)] +- test: EN locales, pre-commit fix, feature PRs checks Refs #257193 [valentinab25 - [`df9b88d`](https://github.com/eea/volto-tabs-block/commit/df9b88d8cf31d6090ab20cc536558d7d734cc0ef)] +- i18n: Add en [Alin Voinea - [`352b810`](https://github.com/eea/volto-tabs-block/commit/352b810625978afb3a550caca58faeaea6832de4)] +- remove 'allow linking' checkbox [Cretu Mihaela - [`f414fdf`](https://github.com/eea/volto-tabs-block/commit/f414fdf754d1c63bf097b3eb018eb1d6504810cf)] +### [5.1.0](https://github.com/eea/volto-tabs-block/compare/5.0.8...5.1.0) - 28 August 2023 #### :rocket: New Features @@ -66,6 +83,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :house: Internal changes +- chore: [JENKINS] Deprecate circularity website [valentinab25 - [`820aaa9`](https://github.com/eea/volto-tabs-block/commit/820aaa963e978a893a23b77f694bb011f3d768c1)] #### :hammer_and_wrench: Others @@ -156,6 +174,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others +- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`52bc1b0`](https://github.com/eea/volto-tabs-block/commit/52bc1b0fbd4611173b8ca9dc2cf4033b31474420)] ## [4.0.0](https://github.com/eea/volto-tabs-block/compare/3.0.1...4.0.0) - 10 March 2023 #### :house: Internal changes @@ -166,7 +185,13 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Release 4.0.0 [Alin Voinea - [`8fc4cc9`](https://github.com/eea/volto-tabs-block/commit/8fc4cc9d8dc71e623e6586b95871cb3b98dc385f)] +- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`22d5bdc`](https://github.com/eea/volto-tabs-block/commit/22d5bdc1b3579cc46c73ce855041ca09154eb502)] +- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`fde4324`](https://github.com/eea/volto-tabs-block/commit/fde4324f962cde8e8de0d76a44bee4b67d216bf8)] +- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`9175e47`](https://github.com/eea/volto-tabs-block/commit/9175e470d793edc63b62a99940aed25dd45f3713)] - test(Jenkins): Run tests and cypress with latest canary @plone/volto [Alin Voinea - [`3348950`](https://github.com/eea/volto-tabs-block/commit/334895036f8e367281abb35a20879c32dfbfc292)] +- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`39bfb39`](https://github.com/eea/volto-tabs-block/commit/39bfb39fa6e8483e639491ff998293e758ac6384)] +- yarn 3 [Alin Voinea - [`7e98df5`](https://github.com/eea/volto-tabs-block/commit/7e98df59669d71945be461e86e282b913538b805)] +- Add Sonarqube tag using demo-kitkat-frontend addons list [EEA Jenkins - [`079d7a4`](https://github.com/eea/volto-tabs-block/commit/079d7a43480e92fe280a9372399ff2d4d28537ae)] ### [3.0.1](https://github.com/eea/volto-tabs-block/compare/3.0.0...3.0.1) - 16 November 2022 #### :hammer_and_wrench: Others @@ -190,7 +215,9 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others +- Add Sonarqube tag using marine-frontend addons list [EEA Jenkins - [`a00e419`](https://github.com/eea/volto-tabs-block/commit/a00e419aef4c82a25f277f5e25e3d512c7838264)] - lint fix [David Ichim - [`c0a898c`](https://github.com/eea/volto-tabs-block/commit/c0a898c54461478baed2ac2f149ae580d4c89aeb)] +- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`3b284e6`](https://github.com/eea/volto-tabs-block/commit/3b284e65e0eafa9b5ad8c92b4cb77628ffcc8103)] ### [2.2.0](https://github.com/eea/volto-tabs-block/compare/2.1.0...2.2.0) - 25 August 2022 #### :hammer_and_wrench: Others @@ -206,6 +233,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Release 2.1.0 [Alin Voinea - [`3cdfa30`](https://github.com/eea/volto-tabs-block/commit/3cdfa30d4d03d864be8ad63f0648b4717298734a)] - Squashed commit of the following: [Alin Voinea - [`ca241f5`](https://github.com/eea/volto-tabs-block/commit/ca241f56a96817679a1948154e2a8cc0e17b96fe)] +- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`68ea5a6`](https://github.com/eea/volto-tabs-block/commit/68ea5a6b971fc36840cf5716a04f68316b229b2b)] ### [2.0.2](https://github.com/eea/volto-tabs-block/compare/2.0.1...2.0.2) - 16 June 2022 ### [2.0.1](https://github.com/eea/volto-tabs-block/compare/2.0.0...2.0.1) - 10 June 2022 @@ -249,6 +277,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Let theme addon to set default values for default template schema [Miu Razvan - [`55f148d`](https://github.com/eea/volto-tabs-block/commit/55f148d1a95417f8a0b55681ce250acde8463c1c)] - Render pane as container if tabs-block has full-width class [Miu Razvan - [`bbffb96`](https://github.com/eea/volto-tabs-block/commit/bbffb96b908476ddee447af3ce79bafb1a12f9a8)] - Refactor default template [Miu Razvan - [`58eff52`](https://github.com/eea/volto-tabs-block/commit/58eff5281adb08a5f8fe6d21fd43330252012277)] +- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`72a6735`](https://github.com/eea/volto-tabs-block/commit/72a6735cbbc0e7d57b4bb7ea83fea9becc317018)] +- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`e928da1`](https://github.com/eea/volto-tabs-block/commit/e928da1df7e4680bd4be9b5d46406800d721b8c5)] ### [1.2.12](https://github.com/eea/volto-tabs-block/compare/1.2.11...1.2.12) - 21 January 2022 ### [1.2.11](https://github.com/eea/volto-tabs-block/compare/1.2.10...1.2.11) - 4 January 2022 @@ -263,11 +293,17 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others +- Add Sonarqube tag using freshwater-frontend addons list [EEA Jenkins - [`cd2e2ac`](https://github.com/eea/volto-tabs-block/commit/cd2e2ac1d127bfc688ecf16e17734603ab727a34)] ### [1.2.8](https://github.com/eea/volto-tabs-block/compare/1.2.7...1.2.8) - 10 December 2021 #### :hammer_and_wrench: Others - Refs #142010 - Optimize Volto-addons gitflow pipelines [valentinab25 - [`d10c0b3`](https://github.com/eea/volto-tabs-block/commit/d10c0b3d35d25c530d19eebde38dfe5da8fda01b)] +- Add Sonarqube tag using industry-frontend addons list [EEA Jenkins - [`1a7187f`](https://github.com/eea/volto-tabs-block/commit/1a7187f10b2bd9e1307dabf51823f63ccd766864)] +- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`72a7550`](https://github.com/eea/volto-tabs-block/commit/72a755025b38e1d8dd7fe206273a70585e4b9ac8)] +- Add Sonarqube tag using forests-frontend addons list [EEA Jenkins - [`022b277`](https://github.com/eea/volto-tabs-block/commit/022b2779a5d7fd7217c2d8a559eafab0bd86ce23)] +- Add Sonarqube tag using sustainability-frontend addons list [EEA Jenkins - [`84c9bea`](https://github.com/eea/volto-tabs-block/commit/84c9bea7a0aba2fe9ef9713e7131de6da6e0bcce)] +- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`020aa97`](https://github.com/eea/volto-tabs-block/commit/020aa97bc70a643ea3857566c5a1dc3a5200c2be)] ### [1.2.7](https://github.com/eea/volto-tabs-block/compare/1.2.6...1.2.7) - 27 August 2021 #### :hammer_and_wrench: Others @@ -284,6 +320,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Move less import in View instead of Edit [Tiberiu Ichim - [`84aeff0`](https://github.com/eea/volto-tabs-block/commit/84aeff04a980076f54687c546691d37b6e790478)] - gitignore tweaks [Tiberiu Ichim - [`f4c993d`](https://github.com/eea/volto-tabs-block/commit/f4c993d004b126f08f16651ab9460546fa9e9cad)] +- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`865906a`](https://github.com/eea/volto-tabs-block/commit/865906a0deb261d44cc23e26bfd2d1dd0e319640)] +- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`5383861`](https://github.com/eea/volto-tabs-block/commit/538386100adbc868e693c1c2a5ba13461307ffee)] - Style update [razvanMiu - [`323aaaf`](https://github.com/eea/volto-tabs-block/commit/323aaafcad01d8fdf0e713a1fc254ae9fe319f43)] - Fix 'scroll to' feature on carousel [razvanMiu - [`16c6a08`](https://github.com/eea/volto-tabs-block/commit/16c6a08f6db687542ea38e07a92b265e592f6173)] - Better accesibility [razvanMiu - [`3511611`](https://github.com/eea/volto-tabs-block/commit/351161197270a4807f01d85a7055cbaadae72f8e)] diff --git a/package.json b/package.json index a01d653b..ece87a05 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eeacms/volto-tabs-block", - "version": "5.1.0", + "version": "5.1.1", "description": "volto-tabs-block: Volto add-on", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", From 3d883276924f50011b09d36646a1914b3164ccb1 Mon Sep 17 00:00:00 2001 From: Alin Voinea Date: Tue, 26 Sep 2023 14:57:46 +0300 Subject: [PATCH 09/10] Release 6.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ece87a05..2fea4e76 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eeacms/volto-tabs-block", - "version": "5.1.1", + "version": "6.0.0", "description": "volto-tabs-block: Volto add-on", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", From 5295ccfe2ccab941daa2522d696a09b2b8e66f87 Mon Sep 17 00:00:00 2001 From: EEA Jenkins <@users.noreply.github.com> Date: Tue, 26 Sep 2023 12:14:57 +0000 Subject: [PATCH 10/10] Automated release 6.0.0 --- CHANGELOG.md | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 120d4229..6304cf17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -### [5.1.1](https://github.com/eea/volto-tabs-block/compare/5.1.0...5.1.1) - 26 September 2023 +### [6.0.0](https://github.com/eea/volto-tabs-block/compare/5.1.0...6.0.0) - 26 September 2023 #### :rocket: New Features @@ -17,6 +17,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others +- Release 6.0.0 [Alin Voinea - [`3d88327`](https://github.com/eea/volto-tabs-block/commit/3d883276924f50011b09d36646a1914b3164ccb1)] - test: Add cypress tests to increase coverage [Crețu Mihaela - [`ae3ae66`](https://github.com/eea/volto-tabs-block/commit/ae3ae663b83fcdf9fe453f4fae169548475d13b5)] - test: EN locales, pre-commit fix, feature PRs checks Refs #257193 [valentinab25 - [`df9b88d`](https://github.com/eea/volto-tabs-block/commit/df9b88d8cf31d6090ab20cc536558d7d734cc0ef)] - i18n: Add en [Alin Voinea - [`352b810`](https://github.com/eea/volto-tabs-block/commit/352b810625978afb3a550caca58faeaea6832de4)] @@ -83,7 +84,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :house: Internal changes -- chore: [JENKINS] Deprecate circularity website [valentinab25 - [`820aaa9`](https://github.com/eea/volto-tabs-block/commit/820aaa963e978a893a23b77f694bb011f3d768c1)] #### :hammer_and_wrench: Others @@ -174,7 +174,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`52bc1b0`](https://github.com/eea/volto-tabs-block/commit/52bc1b0fbd4611173b8ca9dc2cf4033b31474420)] ## [4.0.0](https://github.com/eea/volto-tabs-block/compare/3.0.1...4.0.0) - 10 March 2023 #### :house: Internal changes @@ -185,13 +184,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others - Release 4.0.0 [Alin Voinea - [`8fc4cc9`](https://github.com/eea/volto-tabs-block/commit/8fc4cc9d8dc71e623e6586b95871cb3b98dc385f)] -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`22d5bdc`](https://github.com/eea/volto-tabs-block/commit/22d5bdc1b3579cc46c73ce855041ca09154eb502)] -- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`fde4324`](https://github.com/eea/volto-tabs-block/commit/fde4324f962cde8e8de0d76a44bee4b67d216bf8)] -- Add Sonarqube tag using advisory-board-frontend addons list [EEA Jenkins - [`9175e47`](https://github.com/eea/volto-tabs-block/commit/9175e470d793edc63b62a99940aed25dd45f3713)] - test(Jenkins): Run tests and cypress with latest canary @plone/volto [Alin Voinea - [`3348950`](https://github.com/eea/volto-tabs-block/commit/334895036f8e367281abb35a20879c32dfbfc292)] -- Add Sonarqube tag using cca-frontend addons list [EEA Jenkins - [`39bfb39`](https://github.com/eea/volto-tabs-block/commit/39bfb39fa6e8483e639491ff998293e758ac6384)] -- yarn 3 [Alin Voinea - [`7e98df5`](https://github.com/eea/volto-tabs-block/commit/7e98df59669d71945be461e86e282b913538b805)] -- Add Sonarqube tag using demo-kitkat-frontend addons list [EEA Jenkins - [`079d7a4`](https://github.com/eea/volto-tabs-block/commit/079d7a43480e92fe280a9372399ff2d4d28537ae)] ### [3.0.1](https://github.com/eea/volto-tabs-block/compare/3.0.0...3.0.1) - 16 November 2022 #### :hammer_and_wrench: Others @@ -215,9 +208,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Add Sonarqube tag using marine-frontend addons list [EEA Jenkins - [`a00e419`](https://github.com/eea/volto-tabs-block/commit/a00e419aef4c82a25f277f5e25e3d512c7838264)] - lint fix [David Ichim - [`c0a898c`](https://github.com/eea/volto-tabs-block/commit/c0a898c54461478baed2ac2f149ae580d4c89aeb)] -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`3b284e6`](https://github.com/eea/volto-tabs-block/commit/3b284e65e0eafa9b5ad8c92b4cb77628ffcc8103)] ### [2.2.0](https://github.com/eea/volto-tabs-block/compare/2.1.0...2.2.0) - 25 August 2022 #### :hammer_and_wrench: Others @@ -233,7 +224,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Release 2.1.0 [Alin Voinea - [`3cdfa30`](https://github.com/eea/volto-tabs-block/commit/3cdfa30d4d03d864be8ad63f0648b4717298734a)] - Squashed commit of the following: [Alin Voinea - [`ca241f5`](https://github.com/eea/volto-tabs-block/commit/ca241f56a96817679a1948154e2a8cc0e17b96fe)] -- Add Sonarqube tag using circularity-frontend addons list [EEA Jenkins - [`68ea5a6`](https://github.com/eea/volto-tabs-block/commit/68ea5a6b971fc36840cf5716a04f68316b229b2b)] ### [2.0.2](https://github.com/eea/volto-tabs-block/compare/2.0.1...2.0.2) - 16 June 2022 ### [2.0.1](https://github.com/eea/volto-tabs-block/compare/2.0.0...2.0.1) - 10 June 2022 @@ -277,8 +267,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Let theme addon to set default values for default template schema [Miu Razvan - [`55f148d`](https://github.com/eea/volto-tabs-block/commit/55f148d1a95417f8a0b55681ce250acde8463c1c)] - Render pane as container if tabs-block has full-width class [Miu Razvan - [`bbffb96`](https://github.com/eea/volto-tabs-block/commit/bbffb96b908476ddee447af3ce79bafb1a12f9a8)] - Refactor default template [Miu Razvan - [`58eff52`](https://github.com/eea/volto-tabs-block/commit/58eff5281adb08a5f8fe6d21fd43330252012277)] -- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`72a6735`](https://github.com/eea/volto-tabs-block/commit/72a6735cbbc0e7d57b4bb7ea83fea9becc317018)] -- Add Sonarqube tag using eea-website-frontend addons list [EEA Jenkins - [`e928da1`](https://github.com/eea/volto-tabs-block/commit/e928da1df7e4680bd4be9b5d46406800d721b8c5)] ### [1.2.12](https://github.com/eea/volto-tabs-block/compare/1.2.11...1.2.12) - 21 January 2022 ### [1.2.11](https://github.com/eea/volto-tabs-block/compare/1.2.10...1.2.11) - 4 January 2022 @@ -293,17 +281,11 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### :hammer_and_wrench: Others -- Add Sonarqube tag using freshwater-frontend addons list [EEA Jenkins - [`cd2e2ac`](https://github.com/eea/volto-tabs-block/commit/cd2e2ac1d127bfc688ecf16e17734603ab727a34)] ### [1.2.8](https://github.com/eea/volto-tabs-block/compare/1.2.7...1.2.8) - 10 December 2021 #### :hammer_and_wrench: Others - Refs #142010 - Optimize Volto-addons gitflow pipelines [valentinab25 - [`d10c0b3`](https://github.com/eea/volto-tabs-block/commit/d10c0b3d35d25c530d19eebde38dfe5da8fda01b)] -- Add Sonarqube tag using industry-frontend addons list [EEA Jenkins - [`1a7187f`](https://github.com/eea/volto-tabs-block/commit/1a7187f10b2bd9e1307dabf51823f63ccd766864)] -- Add Sonarqube tag using clms-frontend addons list [EEA Jenkins - [`72a7550`](https://github.com/eea/volto-tabs-block/commit/72a755025b38e1d8dd7fe206273a70585e4b9ac8)] -- Add Sonarqube tag using forests-frontend addons list [EEA Jenkins - [`022b277`](https://github.com/eea/volto-tabs-block/commit/022b2779a5d7fd7217c2d8a559eafab0bd86ce23)] -- Add Sonarqube tag using sustainability-frontend addons list [EEA Jenkins - [`84c9bea`](https://github.com/eea/volto-tabs-block/commit/84c9bea7a0aba2fe9ef9713e7131de6da6e0bcce)] -- Add Sonarqube tag using ims-frontend addons list [EEA Jenkins - [`020aa97`](https://github.com/eea/volto-tabs-block/commit/020aa97bc70a643ea3857566c5a1dc3a5200c2be)] ### [1.2.7](https://github.com/eea/volto-tabs-block/compare/1.2.6...1.2.7) - 27 August 2021 #### :hammer_and_wrench: Others @@ -320,8 +302,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Move less import in View instead of Edit [Tiberiu Ichim - [`84aeff0`](https://github.com/eea/volto-tabs-block/commit/84aeff04a980076f54687c546691d37b6e790478)] - gitignore tweaks [Tiberiu Ichim - [`f4c993d`](https://github.com/eea/volto-tabs-block/commit/f4c993d004b126f08f16651ab9460546fa9e9cad)] -- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`865906a`](https://github.com/eea/volto-tabs-block/commit/865906a0deb261d44cc23e26bfd2d1dd0e319640)] -- Add Sonarqube tag using frontend addons list [EEA Jenkins - [`5383861`](https://github.com/eea/volto-tabs-block/commit/538386100adbc868e693c1c2a5ba13461307ffee)] - Style update [razvanMiu - [`323aaaf`](https://github.com/eea/volto-tabs-block/commit/323aaafcad01d8fdf0e713a1fc254ae9fe319f43)] - Fix 'scroll to' feature on carousel [razvanMiu - [`16c6a08`](https://github.com/eea/volto-tabs-block/commit/16c6a08f6db687542ea38e07a92b265e592f6173)] - Better accesibility [razvanMiu - [`3511611`](https://github.com/eea/volto-tabs-block/commit/351161197270a4807f01d85a7055cbaadae72f8e)]