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
package/RELEASE.md CHANGED
@@ -41,6 +41,12 @@
41
41
  - ...
42
42
  -->
43
43
 
44
+ ## Versione 12.0.0 (31/03/2025)
45
+
46
+ ### Migliorie
47
+
48
+ - Aggiornato l'editor predefinito del sito, ora usa un motore più performante.
49
+
44
50
  ## Versione 11.29.2 (26/03/2025)
45
51
 
46
52
  ### Fix
@@ -45,11 +45,42 @@ msgstr ""
45
45
  msgid "Alert"
46
46
  msgstr ""
47
47
 
48
+ #: config/Slate/Alignment/AlignMenu
49
+ # defaultMessage: Allinea a destra
50
+ msgid "Allinea a destra"
51
+ msgstr ""
52
+
53
+ #: config/Slate/Alignment/AlignMenu
54
+ # defaultMessage: Allinea a sinistra
55
+ msgid "Allinea a sinistra"
56
+ msgstr ""
57
+
58
+ #: config/Slate/Alignment/AlignMenu
59
+ # defaultMessage: Allinea al centro
60
+ msgid "Allinea al centro"
61
+ msgstr ""
62
+
63
+ #: config/Slate/Alignment/AlignMenu
64
+ # defaultMessage: Allinea il testo giustificato
65
+ msgid "Allinea il testo giustificato"
66
+ msgstr ""
67
+
68
+ #: config/Slate/Alignment/AlignMenu
69
+ #: config/Slate/Alignment/index
70
+ # defaultMessage: Allineamento
71
+ msgid "Allineamento"
72
+ msgstr ""
73
+
48
74
  #: components/ItaliaTheme/Blocks/VideoGallery/Sidebar
49
75
  # defaultMessage: Allow Externals
50
76
  msgid "Allow Externals"
51
77
  msgstr ""
52
78
 
79
+ #: components/ItaliaTheme/manage/Widgets/HtmlSlateWidget
80
+ # 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.
81
+ 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."
82
+ msgstr ""
83
+
53
84
  #: config/Blocks/ListingOptions/simpleCardTemplate
54
85
  #: config/Blocks/ListingOptions/sliderTemplate
55
86
  # defaultMessage: Aspetto
@@ -76,6 +107,16 @@ msgstr ""
76
107
  msgid "Block style"
77
108
  msgstr ""
78
109
 
110
+ #: config/Slate/Blockquote/BlockquoteMenu
111
+ # defaultMessage: Blockquote
112
+ msgid "Blockquote"
113
+ msgstr ""
114
+
115
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
116
+ # defaultMessage: Callout
117
+ msgid "Callout"
118
+ msgstr ""
119
+
79
120
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
80
121
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
81
122
  # defaultMessage: Vedi
@@ -218,11 +259,6 @@ msgstr ""
218
259
  msgid "Download"
219
260
  msgstr ""
220
261
 
221
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
222
- # defaultMessage: Enter URL or select an item
223
- msgid "Enter URL or select an item"
224
- msgstr ""
225
-
226
262
  #: components/ItaliaTheme/manage/Widgets/LocationFiltersWidget
227
263
  # defaultMessage: Etichetta
228
264
  msgid "Etichetta location filter"
@@ -553,11 +589,6 @@ msgstr ""
553
589
  msgid "Seguici su"
554
590
  msgstr ""
555
591
 
556
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
557
- # defaultMessage: Seleziona un data-element ID
558
- msgid "Select a data-element ID"
559
- msgstr ""
560
-
561
592
  #: components/ItaliaTheme/Search/SearchCTs
562
593
  # defaultMessage: Seleziona tutti i tipi di contenuti o nessuno
563
594
  msgid "Select all content types or none"
@@ -643,6 +674,7 @@ msgstr ""
643
674
 
644
675
  #: components/ItaliaTheme/Blocks/Calendar/ListingSidebar
645
676
  #: config/Blocks/ListingOptions/defaultOptions
677
+ #: config/Slate/Headings/HeadingsMenu
646
678
  # defaultMessage: Titolo
647
679
  msgid "Titolo"
648
680
  msgstr ""
@@ -669,23 +701,26 @@ msgstr ""
669
701
 
670
702
  #: components/ItaliaTheme/Blocks/CTABlock/Block
671
703
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
672
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
704
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
673
705
  # defaultMessage: Digita la descrizione…
674
706
  msgid "Type description…"
675
707
  msgstr ""
676
708
 
677
709
  #: components/ItaliaTheme/Blocks/Alert/Edit
678
710
  #: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Block
711
+ #: components/ItaliaTheme/Blocks/Callout/Edit
679
712
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
680
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
713
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
714
+ #: components/ItaliaTheme/manage/Widgets/SimpleTextEditorWidget
681
715
  #: components/ItaliaTheme/manage/Widgets/TextEditorWidget
682
716
  # defaultMessage: Digita il testo…
683
717
  msgid "Type text…"
684
718
  msgstr ""
685
719
 
720
+ #: components/ItaliaTheme/Blocks/Callout/Edit
686
721
  #: components/ItaliaTheme/Blocks/CTABlock/Block
687
722
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
688
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
723
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
689
724
  # defaultMessage: Type the title…
690
725
  msgid "Type the title…"
691
726
  msgstr ""
@@ -1188,6 +1223,21 @@ msgstr ""
1188
1223
  msgid "calendar_no_results"
1189
1224
  msgstr ""
1190
1225
 
1226
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1227
+ # defaultMessage: Stile
1228
+ msgid "callout_style"
1229
+ msgstr ""
1230
+
1231
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1232
+ # defaultMessage: Base
1233
+ msgid "callout_style_basic"
1234
+ msgstr ""
1235
+
1236
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1237
+ # defaultMessage: In evidenza
1238
+ msgid "callout_style_highlight"
1239
+ msgstr ""
1240
+
1191
1241
  #: components/ItaliaTheme/manage/Widgets/CanaleDigitaleWidget
1192
1242
  # defaultMessage: Accedere al servizio
1193
1243
  msgid "canale_digitale_widget_title"
@@ -1327,11 +1377,27 @@ msgstr ""
1327
1377
  msgid "codice_ipa"
1328
1378
  msgstr ""
1329
1379
 
1380
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1381
+ # defaultMessage: Colore
1382
+ msgid "color"
1383
+ msgstr ""
1384
+
1330
1385
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1386
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1331
1387
  # defaultMessage: Rosso
1332
1388
  msgid "color_danger"
1333
1389
  msgstr ""
1334
1390
 
1391
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1392
+ # defaultMessage: Default
1393
+ msgid "color_default"
1394
+ msgstr ""
1395
+
1396
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1397
+ # defaultMessage: Note
1398
+ msgid "color_note"
1399
+ msgstr ""
1400
+
1335
1401
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1336
1402
  # defaultMessage: Arancione
1337
1403
  msgid "color_orange"
@@ -1343,12 +1409,18 @@ msgstr ""
1343
1409
  msgid "color_primary"
1344
1410
  msgstr ""
1345
1411
 
1412
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1413
+ # defaultMessage: Success
1414
+ msgid "color_success"
1415
+ msgstr ""
1416
+
1346
1417
  #: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
1347
1418
  # defaultMessage: Trasparente
1348
1419
  msgid "color_transparent"
1349
1420
  msgstr ""
1350
1421
 
1351
1422
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1423
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1352
1424
  # defaultMessage: Giallo
1353
1425
  msgid "color_warning"
1354
1426
  msgstr ""
@@ -2392,6 +2464,7 @@ msgstr ""
2392
2464
  msgid "html_block"
2393
2465
  msgstr ""
2394
2466
 
2467
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
2395
2468
  #: components/ItaliaTheme/manage/Widgets/IconWidget
2396
2469
  # defaultMessage: Icona
2397
2470
  msgid "icon"
@@ -2969,7 +3042,6 @@ msgid "parteciperanno"
2969
3042
  msgstr ""
2970
3043
 
2971
3044
  #: components/ItaliaTheme/View/EventoView/EventoPatrocinatoDa
2972
- #: components/ItaliaTheme/View/EventoView/EventoUlterioriInformazioni
2973
3045
  # defaultMessage: Patrocinato da
2974
3046
  msgid "patrocinato_da"
2975
3047
  msgstr ""
@@ -4142,11 +4214,6 @@ msgstr ""
4142
4214
  msgid "termini_del_procedimento"
4143
4215
  msgstr ""
4144
4216
 
4145
- #: config/RichTextEditor/ToolbarButtons/TextSizeButton
4146
- # defaultMessage: Dimensione del testo
4147
- msgid "text-size-button"
4148
- msgstr ""
4149
-
4150
4217
  #: components/ItaliaTheme/Blocks/Common/SearchFilters/TextFilter
4151
4218
  # defaultMessage: Inserisci un valore
4152
4219
  msgid "text_filter_placeholder"
@@ -30,11 +30,42 @@ msgstr ""
30
30
  msgid "Alert"
31
31
  msgstr ""
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 "Accept external URL to 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 ""
61
92
  msgid "Block style"
62
93
  msgstr ""
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 ""
203
244
  msgid "Download"
204
245
  msgstr ""
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 ""
210
-
211
247
  #: components/ItaliaTheme/manage/Widgets/LocationFiltersWidget
212
248
  # defaultMessage: Etichetta
213
249
  msgid "Etichetta location filter"
@@ -538,11 +574,6 @@ msgstr ""
538
574
  msgid "Seguici su"
539
575
  msgstr "Follow us on"
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 "Select a 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 "Title..."
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 ""
@@ -654,23 +686,26 @@ msgstr ""
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 ""
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 ""
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 ""
@@ -1173,6 +1208,21 @@ msgstr ""
1173
1208
  msgid "calendar_no_results"
1174
1209
  msgstr "There are no events available at the moment"
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 "Close search"
1312
1362
  msgid "codice_ipa"
1313
1363
  msgstr "Provider code (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 ""
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 ""
1328
1394
  msgid "color_primary"
1329
1395
  msgstr ""
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 ""
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 ""
@@ -2377,6 +2449,7 @@ msgstr ""
2377
2449
  msgid "html_block"
2378
2450
  msgstr ""
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 "Will participate"
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 "Sponsored by"
@@ -4127,11 +4199,6 @@ msgstr "end"
4127
4199
  msgid "termini_del_procedimento"
4128
4200
  msgstr "Terms of the procedure"
4129
4201
 
4130
- #: config/RichTextEditor/ToolbarButtons/TextSizeButton
4131
- # defaultMessage: Dimensione del testo
4132
- msgid "text-size-button"
4133
- msgstr ""
4134
-
4135
4202
  #: components/ItaliaTheme/Blocks/Common/SearchFilters/TextFilter
4136
4203
  # defaultMessage: Inserisci un valore
4137
4204
  msgid "text_filter_placeholder"
@@ -39,11 +39,42 @@ msgstr "Añadir elemento"
39
39
  msgid "Alert"
40
40
  msgstr ""
41
41
 
42
+ #: config/Slate/Alignment/AlignMenu
43
+ # defaultMessage: Allinea a destra
44
+ msgid "Allinea a destra"
45
+ msgstr ""
46
+
47
+ #: config/Slate/Alignment/AlignMenu
48
+ # defaultMessage: Allinea a sinistra
49
+ msgid "Allinea a sinistra"
50
+ msgstr ""
51
+
52
+ #: config/Slate/Alignment/AlignMenu
53
+ # defaultMessage: Allinea al centro
54
+ msgid "Allinea al centro"
55
+ msgstr ""
56
+
57
+ #: config/Slate/Alignment/AlignMenu
58
+ # defaultMessage: Allinea il testo giustificato
59
+ msgid "Allinea il testo giustificato"
60
+ msgstr ""
61
+
62
+ #: config/Slate/Alignment/AlignMenu
63
+ #: config/Slate/Alignment/index
64
+ # defaultMessage: Allineamento
65
+ msgid "Allineamento"
66
+ msgstr ""
67
+
42
68
  #: components/ItaliaTheme/Blocks/VideoGallery/Sidebar
43
69
  # defaultMessage: Allow Externals
44
70
  msgid "Allow Externals"
45
71
  msgstr "Aceptar URL externa para incrustar"
46
72
 
73
+ #: components/ItaliaTheme/manage/Widgets/HtmlSlateWidget
74
+ # 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.
75
+ 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."
76
+ msgstr ""
77
+
47
78
  #: config/Blocks/ListingOptions/simpleCardTemplate
48
79
  #: config/Blocks/ListingOptions/sliderTemplate
49
80
  # defaultMessage: Aspetto
@@ -70,6 +101,16 @@ msgstr "Título del bloque..."
70
101
  msgid "Block style"
71
102
  msgstr "Estilo de Bloque"
72
103
 
104
+ #: config/Slate/Blockquote/BlockquoteMenu
105
+ # defaultMessage: Blockquote
106
+ msgid "Blockquote"
107
+ msgstr ""
108
+
109
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
110
+ # defaultMessage: Callout
111
+ msgid "Callout"
112
+ msgstr ""
113
+
73
114
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
74
115
  #: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
75
116
  # defaultMessage: Vedi
@@ -212,11 +253,6 @@ msgstr ""
212
253
  msgid "Download"
213
254
  msgstr ""
214
255
 
215
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
216
- # defaultMessage: Enter URL or select an item
217
- msgid "Enter URL or select an item"
218
- msgstr "Introduzca una URL o seleccione un elemento"
219
-
220
256
  #: components/ItaliaTheme/manage/Widgets/LocationFiltersWidget
221
257
  # defaultMessage: Etichetta
222
258
  msgid "Etichetta location filter"
@@ -547,11 +583,6 @@ msgstr ""
547
583
  msgid "Seguici su"
548
584
  msgstr "Siga con nosotros"
549
585
 
550
- #: config/RichTextEditor/Plugins/AnchorPlugin/components/LinkButton/AddLinkForm
551
- # defaultMessage: Seleziona un data-element ID
552
- msgid "Select a data-element ID"
553
- msgstr "Seleccione un ID de elemento de datos"
554
-
555
586
  #: components/ItaliaTheme/Search/SearchCTs
556
587
  # defaultMessage: Seleziona tutti i tipi di contenuti o nessuno
557
588
  msgid "Select all content types or none"
@@ -637,6 +668,7 @@ msgstr "Título..."
637
668
 
638
669
  #: components/ItaliaTheme/Blocks/Calendar/ListingSidebar
639
670
  #: config/Blocks/ListingOptions/defaultOptions
671
+ #: config/Slate/Headings/HeadingsMenu
640
672
  # defaultMessage: Titolo
641
673
  msgid "Titolo"
642
674
  msgstr "Título"
@@ -663,23 +695,26 @@ msgstr "Transparencia"
663
695
 
664
696
  #: components/ItaliaTheme/Blocks/CTABlock/Block
665
697
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
666
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
698
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
667
699
  # defaultMessage: Digita la descrizione…
668
700
  msgid "Type description…"
669
701
  msgstr "Escribe la descripción..."
670
702
 
671
703
  #: components/ItaliaTheme/Blocks/Alert/Edit
672
704
  #: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Block
705
+ #: components/ItaliaTheme/Blocks/Callout/Edit
673
706
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
674
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
707
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
708
+ #: components/ItaliaTheme/manage/Widgets/SimpleTextEditorWidget
675
709
  #: components/ItaliaTheme/manage/Widgets/TextEditorWidget
676
710
  # defaultMessage: Digita il testo…
677
711
  msgid "Type text…"
678
712
  msgstr "Ingrese texto..."
679
713
 
714
+ #: components/ItaliaTheme/Blocks/Callout/Edit
680
715
  #: components/ItaliaTheme/Blocks/CTABlock/Block
681
716
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Block
682
- #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block
717
+ #: components/ItaliaTheme/Blocks/TextCard/SimpleCard/Edit
683
718
  # defaultMessage: Type the title…
684
719
  msgid "Type the title…"
685
720
  msgstr "Ingrese el título..."
@@ -1182,6 +1217,21 @@ msgstr "Calendario"
1182
1217
  msgid "calendar_no_results"
1183
1218
  msgstr "No hay eventos disponibles en este momento"
1184
1219
 
1220
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1221
+ # defaultMessage: Stile
1222
+ msgid "callout_style"
1223
+ msgstr ""
1224
+
1225
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1226
+ # defaultMessage: Base
1227
+ msgid "callout_style_basic"
1228
+ msgstr ""
1229
+
1230
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1231
+ # defaultMessage: In evidenza
1232
+ msgid "callout_style_highlight"
1233
+ msgstr ""
1234
+
1185
1235
  #: components/ItaliaTheme/manage/Widgets/CanaleDigitaleWidget
1186
1236
  # defaultMessage: Accedere al servizio
1187
1237
  msgid "canale_digitale_widget_title"
@@ -1321,11 +1371,27 @@ msgstr "Cerrar búsqueda"
1321
1371
  msgid "codice_ipa"
1322
1372
  msgstr ""
1323
1373
 
1374
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1375
+ # defaultMessage: Colore
1376
+ msgid "color"
1377
+ msgstr ""
1378
+
1324
1379
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1380
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1325
1381
  # defaultMessage: Rosso
1326
1382
  msgid "color_danger"
1327
1383
  msgstr ""
1328
1384
 
1385
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1386
+ # defaultMessage: Default
1387
+ msgid "color_default"
1388
+ msgstr ""
1389
+
1390
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1391
+ # defaultMessage: Note
1392
+ msgid "color_note"
1393
+ msgstr ""
1394
+
1329
1395
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1330
1396
  # defaultMessage: Arancione
1331
1397
  msgid "color_orange"
@@ -1337,12 +1403,18 @@ msgstr ""
1337
1403
  msgid "color_primary"
1338
1404
  msgstr "Primario"
1339
1405
 
1406
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1407
+ # defaultMessage: Success
1408
+ msgid "color_success"
1409
+ msgstr ""
1410
+
1340
1411
  #: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
1341
1412
  # defaultMessage: Trasparente
1342
1413
  msgid "color_transparent"
1343
1414
  msgstr "Transparente"
1344
1415
 
1345
1416
  #: components/ItaliaTheme/Blocks/Alert/Sidebar
1417
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
1346
1418
  # defaultMessage: Giallo
1347
1419
  msgid "color_warning"
1348
1420
  msgstr ""
@@ -2386,6 +2458,7 @@ msgstr "Mostrar fondo de ancho completo"
2386
2458
  msgid "html_block"
2387
2459
  msgstr "Bloque HTML"
2388
2460
 
2461
+ #: components/ItaliaTheme/Blocks/Callout/Sidebar
2389
2462
  #: components/ItaliaTheme/manage/Widgets/IconWidget
2390
2463
  # defaultMessage: Icona
2391
2464
  msgid "icon"
@@ -2963,7 +3036,6 @@ msgid "parteciperanno"
2963
3036
  msgstr "Participara"
2964
3037
 
2965
3038
  #: components/ItaliaTheme/View/EventoView/EventoPatrocinatoDa
2966
- #: components/ItaliaTheme/View/EventoView/EventoUlterioriInformazioni
2967
3039
  # defaultMessage: Patrocinato da
2968
3040
  msgid "patrocinato_da"
2969
3041
  msgstr "Patrocinado por"
@@ -4136,11 +4208,6 @@ msgstr "fin"
4136
4208
  msgid "termini_del_procedimento"
4137
4209
  msgstr "Condiciones del procedimiento"
4138
4210
 
4139
- #: config/RichTextEditor/ToolbarButtons/TextSizeButton
4140
- # defaultMessage: Dimensione del testo
4141
- msgid "text-size-button"
4142
- msgstr ""
4143
-
4144
4211
  #: components/ItaliaTheme/Blocks/Common/SearchFilters/TextFilter
4145
4212
  # defaultMessage: Inserisci un valore
4146
4213
  msgid "text_filter_placeholder"