design-comuni-plone-theme 11.29.2 → 12.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. package/.github/workflows/main.yml +16 -16
  2. package/.github/workflows/npm.yml +1 -1
  3. package/.github/workflows/withnewsletter.yml +47 -0
  4. package/.release-it.json +1 -0
  5. package/.yarn/cache/@babel-helper-module-imports-npm-7.24.3-edb733448b-c23492189b.zip +0 -0
  6. package/.yarn/cache/@babel-types-npm-7.24.0-a0508cb308-4b574a37d4.zip +0 -0
  7. package/.yarn/cache/babel-plugin-lodash-npm-3.3.4-c7161075b6-044a4261e6.zip +0 -0
  8. package/.yarn/cache/braces-npm-3.0.3-582c14023c-b95aa0b3bd.zip +0 -0
  9. package/.yarn/cache/fill-range-npm-7.1.1-bf491486db-b4abfbca38.zip +0 -0
  10. package/.yarn/cache/micromatch-npm-4.0.8-c9570e4aca-79920eb634.zip +0 -0
  11. package/.yarn/cache/require-package-name-npm-2.0.1-ac9a206b63-00f4e9e467.zip +0 -0
  12. package/.yarn/install-state.gz +0 -0
  13. package/CHANGELOG.md +1728 -1659
  14. package/RELEASE.md +6 -0
  15. package/locales/de/LC_MESSAGES/volto.po +86 -19
  16. package/locales/en/LC_MESSAGES/volto.po +86 -19
  17. package/locales/es/LC_MESSAGES/volto.po +86 -19
  18. package/locales/fr/LC_MESSAGES/volto.po +86 -19
  19. package/locales/it/LC_MESSAGES/volto.po +87 -20
  20. package/locales/volto.pot +87 -20
  21. package/package.json +3 -1
  22. package/publiccode.yml +2 -2
  23. package/src/components/Collapse.jsx +1 -0
  24. package/src/components/ItaliaTheme/AppExtras/SiteSettingsExtras.jsx +0 -6
  25. package/src/components/ItaliaTheme/Blocks/Accordion/Block/EditBlock.jsx +29 -24
  26. package/src/components/ItaliaTheme/Blocks/Accordion/Block/ViewBlock.jsx +4 -12
  27. package/src/components/ItaliaTheme/Blocks/Accordion/Edit.jsx +118 -42
  28. package/src/components/ItaliaTheme/Blocks/Accordion/View.jsx +4 -18
  29. package/src/components/ItaliaTheme/Blocks/Alert/Edit.jsx +60 -113
  30. package/src/components/ItaliaTheme/Blocks/Alert/Sidebar.jsx +1 -0
  31. package/src/components/ItaliaTheme/Blocks/Alert/View.jsx +5 -14
  32. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Block.jsx +16 -11
  33. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Body.jsx +2 -1
  34. package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Edit.jsx +39 -1
  35. package/src/components/ItaliaTheme/Blocks/CTABlock/Block.jsx +35 -95
  36. package/src/components/ItaliaTheme/Blocks/Callout/Edit.jsx +108 -0
  37. package/src/components/ItaliaTheme/Blocks/Callout/Sidebar.jsx +173 -0
  38. package/src/components/ItaliaTheme/Blocks/Callout/View.jsx +45 -0
  39. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Block/EditBlock.jsx +86 -63
  40. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Block/ViewBlock.jsx +19 -39
  41. package/src/components/ItaliaTheme/Blocks/ContactsBlock/Edit.jsx +101 -22
  42. package/src/components/ItaliaTheme/Blocks/ContactsBlock/View.jsx +13 -21
  43. package/src/components/ItaliaTheme/Blocks/CountDown/Edit.jsx +21 -25
  44. package/src/components/ItaliaTheme/Blocks/CountDown/View.jsx +6 -15
  45. package/src/components/ItaliaTheme/Blocks/IconBlocks/Block/EditBlock.jsx +52 -22
  46. package/src/components/ItaliaTheme/Blocks/IconBlocks/Block/ViewBlock.jsx +9 -29
  47. package/src/components/ItaliaTheme/Blocks/IconBlocks/Edit.jsx +108 -21
  48. package/src/components/ItaliaTheme/Blocks/IconBlocks/Sidebar.jsx +1 -9
  49. package/src/components/ItaliaTheme/Blocks/IconBlocks/View.jsx +6 -14
  50. package/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx +0 -1
  51. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Block/EditBlock.jsx +45 -15
  52. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Block/ViewBlock.jsx +2 -18
  53. package/src/components/ItaliaTheme/Blocks/NumbersBlock/Edit.jsx +98 -11
  54. package/src/components/ItaliaTheme/Blocks/NumbersBlock/View.jsx +2 -7
  55. package/src/components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block.jsx +35 -67
  56. package/src/components/ItaliaTheme/Blocks/TextCard/CardWithImage/Edit.jsx +2 -8
  57. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/BodyWrapper.jsx +2 -1
  58. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit.jsx +98 -84
  59. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/View.jsx +20 -3
  60. package/src/components/ItaliaTheme/Blocks/UOSearch/Sidebar.jsx +11 -11
  61. package/src/components/ItaliaTheme/Blocks/__tests__/Accordion.test.jsx +11 -28
  62. package/src/components/ItaliaTheme/Blocks/__tests__/Alert.test.jsx +10 -14
  63. package/src/components/ItaliaTheme/Blocks/__tests__/ArgumentsInEvidence.test.jsx +20 -28
  64. package/src/components/ItaliaTheme/Blocks/__tests__/CTABlock.test.jsx +14 -29
  65. package/src/components/ItaliaTheme/Blocks/__tests__/CardWithImage.test.jsx +11 -28
  66. package/src/components/ItaliaTheme/Blocks/__tests__/ContactsBlock.test.jsx +75 -140
  67. package/src/components/ItaliaTheme/Blocks/__tests__/Countdown.test.jsx +20 -28
  68. package/src/components/ItaliaTheme/Blocks/__tests__/IconBlocks.test.jsx +22 -56
  69. package/src/components/ItaliaTheme/Blocks/__tests__/NumbersBlock.test.jsx +14 -43
  70. package/src/components/ItaliaTheme/Blocks/__tests__/SimpleCard.test.jsx +14 -30
  71. package/src/components/ItaliaTheme/BrandText/BrandText.jsx +8 -14
  72. package/src/components/ItaliaTheme/BrandTextFooter/BrandTextFooter.jsx +31 -2
  73. package/src/components/ItaliaTheme/Footer/FooterInfos.jsx +21 -8
  74. package/src/components/ItaliaTheme/Footer/FooterNavigation.jsx +3 -3
  75. package/src/components/ItaliaTheme/Header/HeaderSlim/HeaderSlim.jsx +0 -7
  76. package/src/components/ItaliaTheme/Icons/Icon.jsx +0 -1
  77. package/src/components/ItaliaTheme/MegaMenu/MegaMenu.jsx +5 -1
  78. package/src/components/ItaliaTheme/View/BandoView/BandoApprofondimenti.jsx +1 -2
  79. package/src/components/ItaliaTheme/View/CartellaModulisticaView/DocRow.jsx +14 -5
  80. package/src/components/ItaliaTheme/View/Commons/Attachment.jsx +19 -3
  81. package/src/components/ItaliaTheme/View/Commons/Attachments.jsx +0 -1
  82. package/src/components/ItaliaTheme/View/Commons/DownloadFileFormat.jsx +11 -7
  83. package/src/components/ItaliaTheme/View/Commons/Gallery.jsx +1 -0
  84. package/src/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderEventDates.jsx +0 -1
  85. package/src/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderLinkServizio.jsx +6 -2
  86. package/src/components/ItaliaTheme/View/Commons/RichTextRender.jsx +8 -6
  87. package/src/components/ItaliaTheme/View/Commons/__tests__/RichText.test.jsx +14 -17
  88. package/src/components/ItaliaTheme/View/EventoView/EventoContattiOrganizzatoreEsterno.jsx +1 -1
  89. package/src/components/ItaliaTheme/View/EventoView/EventoUlterioriInformazioni.jsx +0 -4
  90. package/src/components/ItaliaTheme/View/ServizioView/ServizioAccedi.jsx +10 -7
  91. package/src/components/ItaliaTheme/View/ServizioView/ServizioMetatag.jsx +4 -3
  92. package/src/components/ItaliaTheme/View/__disabled_tests__/IncaricoView.test__disabled.jsx +24 -30
  93. package/src/components/ItaliaTheme/View/__tests__/CartellaModulisticaView.test.jsx +12 -1
  94. package/src/components/ItaliaTheme/View/__tests__/PageView.test.jsx +24 -2
  95. package/src/components/ItaliaTheme/View/__tests__/PersonaView.test.jsx +96 -92
  96. package/src/components/ItaliaTheme/View/__tests__/ServizioAChiSiRivolge.test.jsx +240 -286
  97. package/src/components/ItaliaTheme/View/__tests__/ServizioAccedi.test.jsx +240 -286
  98. package/src/components/ItaliaTheme/View/__tests__/ServizioCasiParticolari.test.jsx +240 -286
  99. package/src/components/ItaliaTheme/View/__tests__/ServizioComeFare.test.jsx +240 -286
  100. package/src/components/ItaliaTheme/View/__tests__/ServizioCondizioni.test.jsx +240 -286
  101. package/src/components/ItaliaTheme/View/__tests__/ServizioContatti.test.jsx +240 -286
  102. package/src/components/ItaliaTheme/View/__tests__/ServizioCosE.test.jsx +240 -286
  103. package/src/components/ItaliaTheme/View/__tests__/ServizioCosaServe.test.jsx +240 -286
  104. package/src/components/ItaliaTheme/View/__tests__/ServizioCosaSiOttiene.test.jsx +240 -286
  105. package/src/components/ItaliaTheme/View/__tests__/ServizioCostiVincoli.test.jsx +240 -286
  106. package/src/components/ItaliaTheme/View/__tests__/ServizioMetadati.test.jsx +240 -286
  107. package/src/components/ItaliaTheme/View/__tests__/ServizioModulistica.test.jsx +240 -286
  108. package/src/components/ItaliaTheme/View/__tests__/ServizioProcedure.test.jsx +240 -286
  109. package/src/components/ItaliaTheme/View/__tests__/ServizioSitiEsterni.test.jsx +240 -286
  110. package/src/components/ItaliaTheme/View/__tests__/ServizioTempiScadenze.test.jsx +240 -286
  111. package/src/components/ItaliaTheme/View/__tests__/ServizioUlterioriInformazioni.test.jsx +240 -286
  112. package/src/components/ItaliaTheme/View/__tests__/ServizioView.test.jsx +470 -560
  113. package/src/components/ItaliaTheme/View/__tests__/TrasparenzaView.test.jsx +12 -1
  114. package/src/components/ItaliaTheme/index.js +0 -1
  115. package/src/components/ItaliaTheme/manage/Widgets/ColorListWidget.jsx +11 -2
  116. package/src/components/ItaliaTheme/manage/Widgets/HtmlSlateWidget.jsx +156 -0
  117. package/src/components/ItaliaTheme/manage/Widgets/RichTextWidget.jsx +88 -0
  118. package/src/components/ItaliaTheme/manage/Widgets/SimpleTextEditorWidget.jsx +158 -0
  119. package/src/components/ItaliaTheme/manage/Widgets/TextEditorWidget.jsx +167 -270
  120. package/src/config/Blocks/ListingOptions/index.js +0 -1
  121. package/src/config/Blocks/ListingOptions/utils.js +0 -7
  122. package/src/config/Blocks/blocks.js +29 -8
  123. package/src/config/Blocks/listingVariations.js +1 -1
  124. package/src/config/Slate/Alignment/AlignMenu.jsx +169 -0
  125. package/src/config/Slate/Alignment/index.js +42 -0
  126. package/src/config/Slate/Blockquote/BlockquoteMenu.jsx +151 -0
  127. package/src/config/Slate/Blockquote/index.js +19 -0
  128. package/src/config/Slate/Headings/HeadingsMenu.jsx +139 -0
  129. package/src/config/Slate/Headings/headingsMenu.scss +44 -0
  130. package/src/config/Slate/Headings/index.js +62 -0
  131. package/src/config/Slate/Link/deserializer.js +25 -0
  132. package/src/config/Slate/Link/index.js +126 -0
  133. package/src/config/Slate/Link/renderer.jsx +99 -0
  134. package/src/config/Slate/LinkButton/index.js +47 -0
  135. package/src/config/Slate/TextLarger/index.js +51 -0
  136. package/src/config/Slate/Underline/index.js +10 -0
  137. package/src/config/Slate/config.js +43 -0
  138. package/src/config/Slate/deserializers.js +66 -0
  139. package/src/config/Slate/dropdownStyle.scss +14 -0
  140. package/src/config/Slate/dropdownUtils.js +422 -0
  141. package/src/config/Slate/extensions/breakList.js +91 -0
  142. package/src/config/Slate/handlers.js +243 -0
  143. package/src/config/Slate/utils.js +73 -0
  144. package/src/config/Widgets/widgets.js +1 -2
  145. package/src/config/italiaConfig.js +5 -53
  146. package/src/customizations/volto/components/manage/AnchorPlugin/components/LinkButton/AddLinkForm.jsx +361 -0
  147. package/src/customizations/volto/components/manage/Blocks/HeroImageLeft/Edit.jsx +75 -200
  148. package/src/customizations/volto/components/manage/Blocks/Video/Body.jsx +0 -1
  149. package/src/customizations/volto/components/manage/Blocks/Video/Edit.jsx +1 -1
  150. package/src/customizations/volto/components/manage/Form/BlocksToolbar.jsx +1 -1
  151. package/src/customizations/volto/components/manage/UniversalLink/UniversalLink.jsx +76 -18
  152. package/src/customizations/volto/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +4 -0
  153. package/src/customizations/volto-form-block/components/Field.jsx +45 -22
  154. package/src/helpers/EnhanceLink.js +44 -0
  155. package/src/helpers/FormValidation/FormValidationHelpers.js +3 -0
  156. package/src/helpers/blocks.js +80 -0
  157. package/src/helpers/files.js +13 -13
  158. package/src/helpers/index.js +4 -3
  159. package/src/helpers/richTextHelper.js +10 -0
  160. package/src/icons/Group.svg +1 -0
  161. package/src/icons/blocco-icone.svg +0 -3
  162. package/src/icons/blockquote-card-dark.svg +1 -0
  163. package/src/icons/blockquote-card.svg +1 -0
  164. package/src/icons/blockquote-simple.svg +1 -0
  165. package/src/icons/text-larger.svg +1 -0
  166. package/src/theme/ItaliaTheme/Blocks/_accordion.scss +2 -22
  167. package/src/theme/ItaliaTheme/Blocks/_alert.scss +51 -4
  168. package/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss +1 -0
  169. package/src/theme/ItaliaTheme/Blocks/_callout.scss +32 -0
  170. package/src/theme/ItaliaTheme/Blocks/_contacts.scss +17 -51
  171. package/src/theme/ItaliaTheme/Blocks/_countdown.scss +10 -1
  172. package/src/theme/ItaliaTheme/Blocks/_ctaBlock.scss +7 -23
  173. package/src/theme/ItaliaTheme/Blocks/_gridBlock.scss +1 -1
  174. package/src/theme/ItaliaTheme/Blocks/_hero.scss +1 -8
  175. package/src/theme/ItaliaTheme/Blocks/_iconBlocks.scss +6 -77
  176. package/src/theme/ItaliaTheme/Blocks/_imageCardTextBlock.scss +3 -2
  177. package/src/theme/ItaliaTheme/Blocks/_numbers.scss +6 -20
  178. package/src/theme/ItaliaTheme/Blocks/_simpleCardTextBlock.scss +8 -2
  179. package/src/theme/ItaliaTheme/Blocks/_subblocks-edit.scss +3 -1
  180. package/src/theme/ItaliaTheme/Blocks/_tableOfContents.scss +1 -0
  181. package/src/theme/ItaliaTheme/Components/_megamenu.scss +0 -4
  182. package/src/theme/ItaliaTheme/Components/_mobileMenu.scss +12 -16
  183. package/src/theme/ItaliaTheme/Print/_page.scss +1 -1
  184. package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_contacts.scss +3 -0
  185. package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_cta.scss +1 -0
  186. package/src/theme/ItaliaTheme/Subsites/ItaliaTheme/Blocks/_searchSections.scss +1 -0
  187. package/src/theme/ItaliaTheme/Subsites/bootstrap-italia/custom/_headercenter.scss +1 -0
  188. package/src/theme/ItaliaTheme/Views/_cartellaModulistica.scss +11 -2
  189. package/src/theme/ItaliaTheme/Views/_servizio.scss +2 -2
  190. package/src/theme/ItaliaTheme/Views/_slider.scss +3 -0
  191. package/src/theme/ItaliaTheme/Widgets/_iconWidget.scss +4 -0
  192. package/src/theme/ItaliaTheme/_common.scss +1 -0
  193. package/src/theme/ItaliaTheme/_home.scss +0 -4
  194. package/src/theme/ItaliaTheme/_main.scss +78 -84
  195. package/src/theme/_cms-ui.scss +63 -160
  196. package/src/theme/_mixins.scss +13 -0
  197. package/src/theme/bootstrap-override/_bootstrap-italia-site.scss +1 -0
  198. package/src/theme/bootstrap-override/bootstrap-italia/_footer.scss +1 -1
  199. package/src/theme/bootstrap-override/bootstrap-italia/_forms.scss +7 -0
  200. package/src/theme/bootstrap-override/bootstrap-italia/_headercenter.scss +8 -3
  201. package/src/theme/extras/_forms.scss +2 -14
  202. package/src/theme/site.scss +1 -1
  203. package/test-setup-config.js +58 -0
  204. package/.yarn/cache/braces-npm-3.0.2-782240b28a-e2a8e769a8.zip +0 -0
  205. package/.yarn/cache/fill-range-npm-7.0.1-b8b1817caa-cc283f4e65.zip +0 -0
  206. package/.yarn/cache/micromatch-npm-4.0.5-cfab5d7669-02a17b671c.zip +0 -0
  207. package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block.jsx +0 -151
  208. package/src/components/ItaliaTheme/RemoveBodyClass/RemoveBodyClass.jsx +0 -84
  209. package/src/config/RichTextEditor/LinkEntity.jsx +0 -27
  210. package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/Link/index.jsx +0 -44
  211. package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm.jsx +0 -349
  212. package/src/config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/index.js +0 -150
  213. package/src/config/RichTextEditor/Plugins/AnchorPlugin/index.js +0 -88
  214. package/src/config/RichTextEditor/ToolbarButtons/AlignButton.jsx +0 -61
  215. package/src/config/RichTextEditor/ToolbarButtons/ButtonsButton.jsx +0 -14
  216. package/src/config/RichTextEditor/ToolbarButtons/CalloutsButton.jsx +0 -38
  217. package/src/config/RichTextEditor/ToolbarButtons/DraftJsDropdownButton.jsx +0 -106
  218. package/src/config/RichTextEditor/ToolbarButtons/HeadingsButton.jsx +0 -57
  219. package/src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx +0 -65
  220. package/src/config/RichTextEditor/ToolbarButtons/UnderlineButton.jsx +0 -14
  221. package/src/config/RichTextEditor/config.js +0 -253
  222. package/src/config/volto-gdpr-privacy-defaultPanelConfig.js +0 -292
  223. package/src/customizations/volto/components/manage/Blocks/ToC/View.jsx +0 -134
  224. package/src/customizations/volto/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +0 -99
  225. package/src/customizations/volto/config/RichTextEditor/Plugins.jsx +0 -63
  226. package/src/helpers/redraftHelper.js +0 -9
  227. package/src/theme/ItaliaTheme/Components/_logo.scss +0 -10
@@ -47,11 +47,42 @@ msgstr ""
47
47
  msgid "Alert"
48
48
  msgstr "Alerte"
49
49
 
50
+ #: config/Slate/Alignment/AlignMenu
51
+ # defaultMessage: Allinea a destra
52
+ msgid "Allinea a destra"
53
+ msgstr ""
54
+
55
+ #: config/Slate/Alignment/AlignMenu
56
+ # defaultMessage: Allinea a sinistra
57
+ msgid "Allinea a sinistra"
58
+ msgstr ""
59
+
60
+ #: config/Slate/Alignment/AlignMenu
61
+ # defaultMessage: Allinea al centro
62
+ msgid "Allinea al centro"
63
+ msgstr ""
64
+
65
+ #: config/Slate/Alignment/AlignMenu
66
+ # defaultMessage: Allinea il testo giustificato
67
+ msgid "Allinea il testo giustificato"
68
+ msgstr ""
69
+
70
+ #: config/Slate/Alignment/AlignMenu
71
+ #: config/Slate/Alignment/index
72
+ # defaultMessage: Allineamento
73
+ msgid "Allineamento"
74
+ msgstr ""
75
+
50
76
  #: components/ItaliaTheme/Blocks/VideoGallery/Sidebar
51
77
  # defaultMessage: Allow Externals
52
78
  msgid "Allow Externals"
53
79
  msgstr "Accepter les URL externes pour l'intégration"
54
80
 
81
+ #: components/ItaliaTheme/manage/Widgets/HtmlSlateWidget
82
+ # defaultMessage: An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator.
83
+ msgid "An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator."
84
+ msgstr ""
85
+
55
86
  #: config/Blocks/ListingOptions/simpleCardTemplate
56
87
  #: config/Blocks/ListingOptions/sliderTemplate
57
88
  # defaultMessage: Aspetto
@@ -78,6 +109,16 @@ msgstr ""
78
109
  msgid "Block style"
79
110
  msgstr ""
80
111
 
112
+ #: config/Slate/Blockquote/BlockquoteMenu
113
+ # defaultMessage: Blockquote
114
+ msgid "Blockquote"
115
+ msgstr ""
116
+
117
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
118
+ # defaultMessage: Callout
119
+ msgid "Callout"
120
+ msgstr ""
121
+
81
122
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
82
123
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
83
124
  # defaultMessage: Vedi
@@ -220,11 +261,6 @@ msgstr ""
220
261
  msgid "Download"
221
262
  msgstr ""
222
263
 
223
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
224
- # defaultMessage: Enter URL or select an item
225
- msgid "Enter URL or select an item"
226
- msgstr ""
227
-
228
264
  #: components/ItaliaTheme/manage/Widgets/LocationFiltersWidget
229
265
  # defaultMessage: Etichetta
230
266
  msgid "Etichetta location filter"
@@ -555,11 +591,6 @@ msgstr ""
555
591
  msgid "Seguici su"
556
592
  msgstr "Suivez-nous sur"
557
593
 
558
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
559
- # defaultMessage: Seleziona un data-element ID
560
- msgid "Select a data-element ID"
561
- msgstr ""
562
-
563
594
  #: components/ItaliaTheme/Search/SearchCTs
564
595
  # defaultMessage: Seleziona tutti i tipi di contenuti o nessuno
565
596
  msgid "Select all content types or none"
@@ -645,6 +676,7 @@ msgstr ""
645
676
 
646
677
  #: components/ItaliaTheme/Blocks/Calendar/ListingSidebar
647
678
  #: config/Blocks/ListingOptions/defaultOptions
679
+ #: config/Slate/Headings/HeadingsMenu
648
680
  # defaultMessage: Titolo
649
681
  msgid "Titolo"
650
682
  msgstr ""
@@ -671,23 +703,26 @@ msgstr ""
671
703
 
672
704
  #: components/ItaliaTheme/Blocks/CTABlock/Block
673
705
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
674
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
706
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
675
707
  # defaultMessage: Digita la descrizione…
676
708
  msgid "Type description…"
677
709
  msgstr ""
678
710
 
679
711
  #: components/ItaliaTheme/Blocks/Alert/Edit
680
712
  #: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Block
713
+ #: components/ItaliaTheme/Blocks/Callout/Edit
681
714
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
682
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
715
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
716
+ #: components/ItaliaTheme/manage/Widgets/SimpleTextEditorWidget
683
717
  #: components/ItaliaTheme/manage/Widgets/TextEditorWidget
684
718
  # defaultMessage: Digita il testo…
685
719
  msgid "Type text…"
686
720
  msgstr ""
687
721
 
722
+ #: components/ItaliaTheme/Blocks/Callout/Edit
688
723
  #: components/ItaliaTheme/Blocks/CTABlock/Block
689
724
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
690
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
725
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
691
726
  # defaultMessage: Type the title…
692
727
  msgid "Type the title…"
693
728
  msgstr ""
@@ -1190,6 +1225,21 @@ msgstr ""
1190
1225
  msgid "calendar_no_results"
1191
1226
  msgstr ""
1192
1227
 
1228
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1229
+ # defaultMessage: Stile
1230
+ msgid "callout_style"
1231
+ msgstr ""
1232
+
1233
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1234
+ # defaultMessage: Base
1235
+ msgid "callout_style_basic"
1236
+ msgstr ""
1237
+
1238
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1239
+ # defaultMessage: In evidenza
1240
+ msgid "callout_style_highlight"
1241
+ msgstr ""
1242
+
1193
1243
  #: components/ItaliaTheme/manage/Widgets/CanaleDigitaleWidget
1194
1244
  # defaultMessage: Accedere al servizio
1195
1245
  msgid "canale_digitale_widget_title"
@@ -1329,11 +1379,27 @@ msgstr "Fermer la recherche"
1329
1379
  msgid "codice_ipa"
1330
1380
  msgstr ""
1331
1381
 
1382
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1383
+ # defaultMessage: Colore
1384
+ msgid "color"
1385
+ msgstr ""
1386
+
1332
1387
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1388
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1333
1389
  # defaultMessage: Rosso
1334
1390
  msgid "color_danger"
1335
1391
  msgstr ""
1336
1392
 
1393
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1394
+ # defaultMessage: Default
1395
+ msgid "color_default"
1396
+ msgstr ""
1397
+
1398
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1399
+ # defaultMessage: Note
1400
+ msgid "color_note"
1401
+ msgstr ""
1402
+
1337
1403
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1338
1404
  # defaultMessage: Arancione
1339
1405
  msgid "color_orange"
@@ -1345,12 +1411,18 @@ msgstr ""
1345
1411
  msgid "color_primary"
1346
1412
  msgstr ""
1347
1413
 
1414
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1415
+ # defaultMessage: Success
1416
+ msgid "color_success"
1417
+ msgstr ""
1418
+
1348
1419
  #: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
1349
1420
  # defaultMessage: Trasparente
1350
1421
  msgid "color_transparent"
1351
1422
  msgstr ""
1352
1423
 
1353
1424
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1425
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1354
1426
  # defaultMessage: Giallo
1355
1427
  msgid "color_warning"
1356
1428
  msgstr ""
@@ -2394,6 +2466,7 @@ msgstr ""
2394
2466
  msgid "html_block"
2395
2467
  msgstr ""
2396
2468
 
2469
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
2397
2470
  #: components/ItaliaTheme/manage/Widgets/IconWidget
2398
2471
  # defaultMessage: Icona
2399
2472
  msgid "icon"
@@ -2971,7 +3044,6 @@ msgid "parteciperanno"
2971
3044
  msgstr "Participants"
2972
3045
 
2973
3046
  #: components/ItaliaTheme/View/EventoView/EventoPatrocinatoDa
2974
- #: components/ItaliaTheme/View/EventoView/EventoUlterioriInformazioni
2975
3047
  # defaultMessage: Patrocinato da
2976
3048
  msgid "patrocinato_da"
2977
3049
  msgstr "Sponsorisé par"
@@ -4144,11 +4216,6 @@ msgstr "terme"
4144
4216
  msgid "termini_del_procedimento"
4145
4217
  msgstr "Termes de la procédure"
4146
4218
 
4147
- #: config/RichTextEditor/ToolbarButtons/TextSizeButton
4148
- # defaultMessage: Dimensione del testo
4149
- msgid "text-size-button"
4150
- msgstr ""
4151
-
4152
4219
  #: components/ItaliaTheme/Blocks/Common/SearchFilters/TextFilter
4153
4220
  # defaultMessage: Inserisci un valore
4154
4221
  msgid "text_filter_placeholder"
@@ -30,11 +30,42 @@ msgstr "Aggiungi un elemento"
30
30
  msgid "Alert"
31
31
  msgstr "Alert"
32
32
 
33
+ #: config/Slate/Alignment/AlignMenu
34
+ # defaultMessage: Allinea a destra
35
+ msgid "Allinea a destra"
36
+ msgstr ""
37
+
38
+ #: config/Slate/Alignment/AlignMenu
39
+ # defaultMessage: Allinea a sinistra
40
+ msgid "Allinea a sinistra"
41
+ msgstr ""
42
+
43
+ #: config/Slate/Alignment/AlignMenu
44
+ # defaultMessage: Allinea al centro
45
+ msgid "Allinea al centro"
46
+ msgstr ""
47
+
48
+ #: config/Slate/Alignment/AlignMenu
49
+ # defaultMessage: Allinea il testo giustificato
50
+ msgid "Allinea il testo giustificato"
51
+ msgstr ""
52
+
53
+ #: config/Slate/Alignment/AlignMenu
54
+ #: config/Slate/Alignment/index
55
+ # defaultMessage: Allineamento
56
+ msgid "Allineamento"
57
+ msgstr ""
58
+
33
59
  #: components/ItaliaTheme/Blocks/VideoGallery/Sidebar
34
60
  # defaultMessage: Allow Externals
35
61
  msgid "Allow Externals"
36
62
  msgstr "Accetta URL esterni per l'embed"
37
63
 
64
+ #: components/ItaliaTheme/manage/Widgets/HtmlSlateWidget
65
+ # defaultMessage: An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator.
66
+ msgid "An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator."
67
+ msgstr ""
68
+
38
69
  #: config/Blocks/ListingOptions/simpleCardTemplate
39
70
  #: config/Blocks/ListingOptions/sliderTemplate
40
71
  # defaultMessage: Aspetto
@@ -61,6 +92,16 @@ msgstr "Titolo del blocco..."
61
92
  msgid "Block style"
62
93
  msgstr "Stile del blocco"
63
94
 
95
+ #: config/Slate/Blockquote/BlockquoteMenu
96
+ # defaultMessage: Blockquote
97
+ msgid "Blockquote"
98
+ msgstr ""
99
+
100
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
101
+ # defaultMessage: Callout
102
+ msgid "Callout"
103
+ msgstr ""
104
+
64
105
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
65
106
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
66
107
  # defaultMessage: Vedi
@@ -203,11 +244,6 @@ msgstr "Mostra i margini delle colonne"
203
244
  msgid "Download"
204
245
  msgstr "Download"
205
246
 
206
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
207
- # defaultMessage: Enter URL or select an item
208
- msgid "Enter URL or select an item"
209
- msgstr "Inserisci un URL o seleziona un elemento"
210
-
211
247
  #: components/ItaliaTheme/manage/Widgets/LocationFiltersWidget
212
248
  # defaultMessage: Etichetta
213
249
  msgid "Etichetta location filter"
@@ -538,11 +574,6 @@ msgstr "Cerca"
538
574
  msgid "Seguici su"
539
575
  msgstr "Seguici su"
540
576
 
541
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
542
- # defaultMessage: Seleziona un data-element ID
543
- msgid "Select a data-element ID"
544
- msgstr "Seleziona un data-element ID"
545
-
546
577
  #: components/ItaliaTheme/Search/SearchCTs
547
578
  # defaultMessage: Seleziona tutti i tipi di contenuti o nessuno
548
579
  msgid "Select all content types or none"
@@ -628,6 +659,7 @@ msgstr "Titolo..."
628
659
 
629
660
  #: components/ItaliaTheme/Blocks/Calendar/ListingSidebar
630
661
  #: config/Blocks/ListingOptions/defaultOptions
662
+ #: config/Slate/Headings/HeadingsMenu
631
663
  # defaultMessage: Titolo
632
664
  msgid "Titolo"
633
665
  msgstr "Titolo"
@@ -654,23 +686,26 @@ msgstr "Trasparenza"
654
686
 
655
687
  #: components/ItaliaTheme/Blocks/CTABlock/Block
656
688
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
657
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
689
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
658
690
  # defaultMessage: Digita la descrizione…
659
691
  msgid "Type description…"
660
692
  msgstr "Digita la descrizione…"
661
693
 
662
694
  #: components/ItaliaTheme/Blocks/Alert/Edit
663
695
  #: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Block
696
+ #: components/ItaliaTheme/Blocks/Callout/Edit
664
697
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
665
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
698
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
699
+ #: components/ItaliaTheme/manage/Widgets/SimpleTextEditorWidget
666
700
  #: components/ItaliaTheme/manage/Widgets/TextEditorWidget
667
701
  # defaultMessage: Digita il testo…
668
702
  msgid "Type text…"
669
703
  msgstr "Digita testo…"
670
704
 
705
+ #: components/ItaliaTheme/Blocks/Callout/Edit
671
706
  #: components/ItaliaTheme/Blocks/CTABlock/Block
672
707
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
673
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
708
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
674
709
  # defaultMessage: Type the title…
675
710
  msgid "Type the title…"
676
711
  msgstr "Digita il titolo…"
@@ -1173,6 +1208,21 @@ msgstr "Calendario"
1173
1208
  msgid "calendar_no_results"
1174
1209
  msgstr "Nessun evento disponibile al momento"
1175
1210
 
1211
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1212
+ # defaultMessage: Stile
1213
+ msgid "callout_style"
1214
+ msgstr ""
1215
+
1216
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1217
+ # defaultMessage: Base
1218
+ msgid "callout_style_basic"
1219
+ msgstr ""
1220
+
1221
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1222
+ # defaultMessage: In evidenza
1223
+ msgid "callout_style_highlight"
1224
+ msgstr ""
1225
+
1176
1226
  #: components/ItaliaTheme/manage/Widgets/CanaleDigitaleWidget
1177
1227
  # defaultMessage: Accedere al servizio
1178
1228
  msgid "canale_digitale_widget_title"
@@ -1312,11 +1362,27 @@ msgstr "Chiudi ricerca"
1312
1362
  msgid "codice_ipa"
1313
1363
  msgstr "Codice dell'ente erogatore (ipa)"
1314
1364
 
1365
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1366
+ # defaultMessage: Colore
1367
+ msgid "color"
1368
+ msgstr ""
1369
+
1315
1370
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1371
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1316
1372
  # defaultMessage: Rosso
1317
1373
  msgid "color_danger"
1318
1374
  msgstr "Rosso"
1319
1375
 
1376
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1377
+ # defaultMessage: Default
1378
+ msgid "color_default"
1379
+ msgstr ""
1380
+
1381
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1382
+ # defaultMessage: Note
1383
+ msgid "color_note"
1384
+ msgstr ""
1385
+
1320
1386
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1321
1387
  # defaultMessage: Arancione
1322
1388
  msgid "color_orange"
@@ -1328,12 +1394,18 @@ msgstr "Arancione"
1328
1394
  msgid "color_primary"
1329
1395
  msgstr "Colore primario"
1330
1396
 
1397
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1398
+ # defaultMessage: Success
1399
+ msgid "color_success"
1400
+ msgstr ""
1401
+
1331
1402
  #: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
1332
1403
  # defaultMessage: Trasparente
1333
1404
  msgid "color_transparent"
1334
1405
  msgstr "Trasparente"
1335
1406
 
1336
1407
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1408
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1337
1409
  # defaultMessage: Giallo
1338
1410
  msgid "color_warning"
1339
1411
  msgstr "Giallo"
@@ -1518,7 +1590,7 @@ msgstr "Data di fine dell'incarico"
1518
1590
  #: components/ItaliaTheme/View/PersonaView/PersonaRuolo
1519
1591
  # defaultMessage: Data di fine dell'incarico
1520
1592
  msgid "data_conclusione_incarico_label"
1521
- msgstr "Data di fine dell'incarico"
1593
+ msgstr "Data di conclusione dell'incarico"
1522
1594
 
1523
1595
  #: components/ItaliaTheme/View/IncaricoView/IncaricoView
1524
1596
  # defaultMessage: Data inizio incarico
@@ -2377,6 +2449,7 @@ msgstr "Mostra lo sfondo a tutta larghezza"
2377
2449
  msgid "html_block"
2378
2450
  msgstr "Blocco HTML"
2379
2451
 
2452
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
2380
2453
  #: components/ItaliaTheme/manage/Widgets/IconWidget
2381
2454
  # defaultMessage: Icona
2382
2455
  msgid "icon"
@@ -2954,7 +3027,6 @@ msgid "parteciperanno"
2954
3027
  msgstr "Parteciperanno"
2955
3028
 
2956
3029
  #: components/ItaliaTheme/View/EventoView/EventoPatrocinatoDa
2957
- #: components/ItaliaTheme/View/EventoView/EventoUlterioriInformazioni
2958
3030
  # defaultMessage: Patrocinato da
2959
3031
  msgid "patrocinato_da"
2960
3032
  msgstr "Patrocinato da"
@@ -4127,11 +4199,6 @@ msgstr "termine"
4127
4199
  msgid "termini_del_procedimento"
4128
4200
  msgstr "Termini del procedimento"
4129
4201
 
4130
- #: config/RichTextEditor/ToolbarButtons/TextSizeButton
4131
- # defaultMessage: Dimensione del testo
4132
- msgid "text-size-button"
4133
- msgstr "Dimensione del testo"
4134
-
4135
4202
  #: components/ItaliaTheme/Blocks/Common/SearchFilters/TextFilter
4136
4203
  # defaultMessage: Inserisci un valore
4137
4204
  msgid "text_filter_placeholder"
package/locales/volto.pot CHANGED
@@ -1,7 +1,7 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: Plone\n"
4
- "POT-Creation-Date: 2025-03-11T15:48:06.811Z\n"
4
+ "POT-Creation-Date: 2025-03-11T16:06:49.599Z\n"
5
5
  "Last-Translator: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
6
6
  "Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
7
7
  "MIME-Version: 1.0\n"
@@ -32,11 +32,42 @@ msgstr ""
32
32
  msgid "Alert"
33
33
  msgstr ""
34
34
 
35
+ #: config/Slate/Alignment/AlignMenu
36
+ # defaultMessage: Allinea a destra
37
+ msgid "Allinea a destra"
38
+ msgstr ""
39
+
40
+ #: config/Slate/Alignment/AlignMenu
41
+ # defaultMessage: Allinea a sinistra
42
+ msgid "Allinea a sinistra"
43
+ msgstr ""
44
+
45
+ #: config/Slate/Alignment/AlignMenu
46
+ # defaultMessage: Allinea al centro
47
+ msgid "Allinea al centro"
48
+ msgstr ""
49
+
50
+ #: config/Slate/Alignment/AlignMenu
51
+ # defaultMessage: Allinea il testo giustificato
52
+ msgid "Allinea il testo giustificato"
53
+ msgstr ""
54
+
55
+ #: config/Slate/Alignment/AlignMenu
56
+ #: config/Slate/Alignment/index
57
+ # defaultMessage: Allineamento
58
+ msgid "Allineamento"
59
+ msgstr ""
60
+
35
61
  #: components/ItaliaTheme/Blocks/VideoGallery/Sidebar
36
62
  # defaultMessage: Allow Externals
37
63
  msgid "Allow Externals"
38
64
  msgstr ""
39
65
 
66
+ #: components/ItaliaTheme/manage/Widgets/HtmlSlateWidget
67
+ # defaultMessage: An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator.
68
+ msgid "An error has occurred while editing "{name}" field. We have been notified and we are looking into it. Please save your work and retry. If the issue persists please contact the site administrator."
69
+ msgstr ""
70
+
40
71
  #: config/Blocks/ListingOptions/simpleCardTemplate
41
72
  #: config/Blocks/ListingOptions/sliderTemplate
42
73
  # defaultMessage: Aspetto
@@ -63,6 +94,16 @@ msgstr ""
63
94
  msgid "Block style"
64
95
  msgstr ""
65
96
 
97
+ #: config/Slate/Blockquote/BlockquoteMenu
98
+ # defaultMessage: Blockquote
99
+ msgid "Blockquote"
100
+ msgstr ""
101
+
102
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
103
+ # defaultMessage: Callout
104
+ msgid "Callout"
105
+ msgstr ""
106
+
66
107
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
67
108
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
68
109
  # defaultMessage: Vedi
@@ -205,11 +246,6 @@ msgstr ""
205
246
  msgid "Download"
206
247
  msgstr ""
207
248
 
208
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
209
- # defaultMessage: Enter URL or select an item
210
- msgid "Enter URL or select an item"
211
- msgstr ""
212
-
213
249
  #: components/ItaliaTheme/manage/Widgets/LocationFiltersWidget
214
250
  # defaultMessage: Etichetta
215
251
  msgid "Etichetta location filter"
@@ -540,11 +576,6 @@ msgstr ""
540
576
  msgid "Seguici su"
541
577
  msgstr ""
542
578
 
543
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
544
- # defaultMessage: Seleziona un data-element ID
545
- msgid "Select a data-element ID"
546
- msgstr ""
547
-
548
579
  #: components/ItaliaTheme/Search/SearchCTs
549
580
  # defaultMessage: Seleziona tutti i tipi di contenuti o nessuno
550
581
  msgid "Select all content types or none"
@@ -630,6 +661,7 @@ msgstr ""
630
661
 
631
662
  #: components/ItaliaTheme/Blocks/Calendar/ListingSidebar
632
663
  #: config/Blocks/ListingOptions/defaultOptions
664
+ #: config/Slate/Headings/HeadingsMenu
633
665
  # defaultMessage: Titolo
634
666
  msgid "Titolo"
635
667
  msgstr ""
@@ -656,23 +688,26 @@ msgstr ""
656
688
 
657
689
  #: components/ItaliaTheme/Blocks/CTABlock/Block
658
690
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
659
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
691
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
660
692
  # defaultMessage: Digita la descrizione…
661
693
  msgid "Type description…"
662
694
  msgstr ""
663
695
 
664
696
  #: components/ItaliaTheme/Blocks/Alert/Edit
665
697
  #: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Block
698
+ #: components/ItaliaTheme/Blocks/Callout/Edit
666
699
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
667
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
700
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
701
+ #: components/ItaliaTheme/manage/Widgets/SimpleTextEditorWidget
668
702
  #: components/ItaliaTheme/manage/Widgets/TextEditorWidget
669
703
  # defaultMessage: Digita il testo…
670
704
  msgid "Type text…"
671
705
  msgstr ""
672
706
 
707
+ #: components/ItaliaTheme/Blocks/Callout/Edit
673
708
  #: components/ItaliaTheme/Blocks/CTABlock/Block
674
709
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
675
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
710
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
676
711
  # defaultMessage: Type the title…
677
712
  msgid "Type the title…"
678
713
  msgstr ""
@@ -1175,6 +1210,21 @@ msgstr ""
1175
1210
  msgid "calendar_no_results"
1176
1211
  msgstr ""
1177
1212
 
1213
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1214
+ # defaultMessage: Stile
1215
+ msgid "callout_style"
1216
+ msgstr ""
1217
+
1218
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1219
+ # defaultMessage: Base
1220
+ msgid "callout_style_basic"
1221
+ msgstr ""
1222
+
1223
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1224
+ # defaultMessage: In evidenza
1225
+ msgid "callout_style_highlight"
1226
+ msgstr ""
1227
+
1178
1228
  #: components/ItaliaTheme/manage/Widgets/CanaleDigitaleWidget
1179
1229
  # defaultMessage: Accedere al servizio
1180
1230
  msgid "canale_digitale_widget_title"
@@ -1314,11 +1364,27 @@ msgstr ""
1314
1364
  msgid "codice_ipa"
1315
1365
  msgstr ""
1316
1366
 
1367
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1368
+ # defaultMessage: Colore
1369
+ msgid "color"
1370
+ msgstr ""
1371
+
1317
1372
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1373
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1318
1374
  # defaultMessage: Rosso
1319
1375
  msgid "color_danger"
1320
1376
  msgstr ""
1321
1377
 
1378
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1379
+ # defaultMessage: Default
1380
+ msgid "color_default"
1381
+ msgstr ""
1382
+
1383
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1384
+ # defaultMessage: Note
1385
+ msgid "color_note"
1386
+ msgstr ""
1387
+
1322
1388
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1323
1389
  # defaultMessage: Arancione
1324
1390
  msgid "color_orange"
@@ -1330,12 +1396,18 @@ msgstr ""
1330
1396
  msgid "color_primary"
1331
1397
  msgstr ""
1332
1398
 
1399
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1400
+ # defaultMessage: Success
1401
+ msgid "color_success"
1402
+ msgstr ""
1403
+
1333
1404
  #: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
1334
1405
  # defaultMessage: Trasparente
1335
1406
  msgid "color_transparent"
1336
1407
  msgstr ""
1337
1408
 
1338
1409
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1410
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1339
1411
  # defaultMessage: Giallo
1340
1412
  msgid "color_warning"
1341
1413
  msgstr ""
@@ -2379,6 +2451,7 @@ msgstr ""
2379
2451
  msgid "html_block"
2380
2452
  msgstr ""
2381
2453
 
2454
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
2382
2455
  #: components/ItaliaTheme/manage/Widgets/IconWidget
2383
2456
  # defaultMessage: Icona
2384
2457
  msgid "icon"
@@ -2956,7 +3029,6 @@ msgid "parteciperanno"
2956
3029
  msgstr ""
2957
3030
 
2958
3031
  #: components/ItaliaTheme/View/EventoView/EventoPatrocinatoDa
2959
- #: components/ItaliaTheme/View/EventoView/EventoUlterioriInformazioni
2960
3032
  # defaultMessage: Patrocinato da
2961
3033
  msgid "patrocinato_da"
2962
3034
  msgstr ""
@@ -4129,11 +4201,6 @@ msgstr ""
4129
4201
  msgid "termini_del_procedimento"
4130
4202
  msgstr ""
4131
4203
 
4132
- #: config/RichTextEditor/ToolbarButtons/TextSizeButton
4133
- # defaultMessage: Dimensione del testo
4134
- msgid "text-size-button"
4135
- msgstr ""
4136
-
4137
4204
  #: components/ItaliaTheme/Blocks/Common/SearchFilters/TextFilter
4138
4205
  # defaultMessage: Inserisci un valore
4139
4206
  msgid "text_filter_placeholder"
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "design-comuni-plone-theme",
3
3
  "description": "Volto Theme for Italia design guidelines",
4
4
  "license": "GPL-v3",
5
- "version": "11.29.2",
5
+ "version": "12.0.0",
6
6
  "main": "src/index.js",
7
7
  "repository": {
8
8
  "type": "git",
@@ -171,10 +171,12 @@
171
171
  "devDependencies": {
172
172
  "@babel/core": "7.19.6",
173
173
  "@babel/eslint-parser": "7.23.3",
174
+ "@babel/plugin-syntax-export-namespace-from": "^7.8.3",
174
175
  "@commitlint/cli": "17.6.6",
175
176
  "@commitlint/config-conventional": "17.6.6",
176
177
  "@plone/scripts": "*",
177
178
  "@release-it/conventional-changelog": "5.1.1",
179
+ "babel-plugin-lodash": "^3.3.4",
178
180
  "eslint": "8.54.0",
179
181
  "eslint-config-prettier": "9.0.0",
180
182
  "eslint-config-react-app": "7.0.1",