design-comuni-plone-theme 11.33.1 → 11.34.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 (51) hide show
  1. package/.yarn/cache/@tanstack-react-table-npm-8.21.2-f809795b71-3cda97794c.zip +0 -0
  2. package/.yarn/cache/@tanstack-table-core-npm-8.21.2-0f1fa83089-21573388b2.zip +0 -0
  3. package/.yarn/cache/{tar-fs-npm-2.1.3-32d6d6fb31-8dd66c2077.zip → tar-fs-npm-2.1.4-90a454735f-a9e18e2e61.zip} +0 -0
  4. package/.yarn/cache/volto-blocks-widget-npm-3.4.7-1bc2eeb4b5-4350a9c54b.zip +0 -0
  5. package/.yarn/cache/{volto-form-block-npm-3.12.0-0e050cb6bf-878c6f6af8.zip → volto-form-block-npm-3.13.0-f978a02e9c-0ce41843f5.zip} +0 -0
  6. package/.yarn/install-state.gz +0 -0
  7. package/CHANGELOG.md +31 -0
  8. package/RELEASE.md +20 -0
  9. package/locales/de/LC_MESSAGES/volto.po +82 -2
  10. package/locales/en/LC_MESSAGES/volto.po +84 -4
  11. package/locales/es/LC_MESSAGES/volto.po +82 -2
  12. package/locales/fr/LC_MESSAGES/volto.po +82 -2
  13. package/locales/it/LC_MESSAGES/volto.po +84 -4
  14. package/locales/volto.pot +83 -3
  15. package/package.json +3 -3
  16. package/publiccode.yml +2 -2
  17. package/src/actions/contacts.js +13 -0
  18. package/src/actions/index.js +3 -0
  19. package/src/components/ItaliaTheme/Blocks/Common/SearchFilters/DateFilter.jsx +50 -44
  20. package/src/components/ItaliaTheme/Blocks/Common/SearchFilters/SelectFilter.jsx +3 -2
  21. package/src/components/ItaliaTheme/Blocks/Common/SearchFilters/TextFilter.jsx +44 -16
  22. package/src/components/ItaliaTheme/Blocks/Listing/BandiInEvidenceTemplate.jsx +2 -0
  23. package/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx +4 -1
  24. package/src/components/ItaliaTheme/Blocks/Listing/RibbonCardTemplate.jsx +1 -0
  25. package/src/components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault.jsx +1 -0
  26. package/src/components/ItaliaTheme/Blocks/Listing/TemplatesSkeletons/BandiInEvidenceTemplateSkeleton.jsx +2 -0
  27. package/src/components/ItaliaTheme/ContactsBlock/ContactsBlock.jsx +77 -0
  28. package/src/components/ItaliaTheme/View/Commons/PageHeader/PageHeaderTassonomiaArgomenti.jsx +2 -2
  29. package/src/components/ItaliaTheme/index.js +4 -0
  30. package/src/components/ItaliaTheme/manage/Widgets/ConditionallyRequiredDateWidget.jsx +25 -0
  31. package/src/components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm.jsx +90 -0
  32. package/src/components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget.jsx +394 -0
  33. package/src/components/SelectInput/SelectInput.jsx +7 -2
  34. package/src/config/Widgets/widgets.js +11 -0
  35. package/src/config/italiaConfig.js +3 -1
  36. package/src/customizations/volto/components/theme/Footer/Footer.jsx +8 -1
  37. package/src/customizations/volto-form-block/components/Edit.jsx +100 -49
  38. package/src/customizations/volto-form-block/components/Field.jsx +71 -62
  39. package/src/customizations/volto-form-block/components/FormResult.jsx +25 -18
  40. package/src/customizations/volto-form-block/components/FormView.jsx +192 -194
  41. package/src/customizations/volto-form-block/components/Sidebar.jsx +7 -172
  42. package/src/customizations/volto-form-block/components/View.jsx +9 -5
  43. package/src/overrideTranslations.jsx +7 -2
  44. package/src/reducers/contacts.js +38 -0
  45. package/src/reducers/index.js +2 -0
  46. package/src/theme/ItaliaTheme/Blocks/_form.scss +20 -1
  47. package/src/theme/ItaliaTheme/Blocks/common/_searchBlockFilters.scss +56 -0
  48. package/src/theme/ItaliaTheme/Components/_contactsBlock.scss +40 -0
  49. package/src/theme/ItaliaTheme/Widgets/_contactsConfigWidget.scss +39 -0
  50. package/src/theme/site.scss +2 -0
  51. package/.yarn/cache/volto-blocks-widget-npm-3.4.1-c4d451e2c2-4f5c183698.zip +0 -0
Binary file
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
 
2
2
 
3
+ ## [11.34.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.33.1...v11.34.0) (2025-10-03)
4
+
5
+
6
+ ### Features
7
+
8
+ * contacts block control panel widget ([#1000](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1000)) ([18486b0](https://github.com/RedTurtle/design-comuni-plone-theme/commit/18486b049dd6272b108ae86f5e73ed284183a190))
9
+ * made data_inizio_incarico conditional ([#1007](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1007)) ([b85a44f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b85a44f7107bbca595eeaa9497ee8b4d406344b7))
10
+ * updated volto-blocks-widget v3.4.7 ([#1012](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1012)) ([19c672d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/19c672d4d9a27715c1444cd4546353f6b5526a96))
11
+ * updated volto-form-block with datatable new feature ([#949](https://github.com/RedTurtle/design-comuni-plone-theme/issues/949)) ([0614797](https://github.com/RedTurtle/design-comuni-plone-theme/commit/06147977bce44cc50a02722e975e3615f852223f))
12
+ * updated warning form block message and configured alert with thank-you message ([#1010](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1010)) ([a0da5ae](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a0da5ae7831e1af1a6afb9ebcd587df45933df6f))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **a11y:** radio and checkbox fieldset, select label of form block ([#1009](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1009)) ([2e5625f](https://github.com/RedTurtle/design-comuni-plone-theme/commit/2e5625f8b1f7713999fc59e2c5ef12a9218144a7))
18
+ * **a11y:** updated heading from H5 to H2 for improved hierarchy ([#1014](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1014)) ([1b4d5b7](https://github.com/RedTurtle/design-comuni-plone-theme/commit/1b4d5b7762e505445b20a7af479a3e6c01ec4028))
19
+ * add aria-hidden and tabindex -1 to read-more links for better accessibility ([#1002](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1002)) ([296e4e6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/296e4e60e4dbc28a5ab9fcbc580a4747b94978ab))
20
+ * disabled contacts block by default ([fb443fd](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fb443fdad7aabdb1d3f4ec1a2b2ed8e8c03fe1dd))
21
+ * tabindex and aria-hidden add to CardWithSlideUpTextTemplate for better a11y ([#1003](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1003)) ([82a27a2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/82a27a25bbba91ee99a67cf2a36f54b4a2ee6fb0))
22
+ * updated text, select and date input filter with label props ([#994](https://github.com/RedTurtle/design-comuni-plone-theme/issues/994)) ([a6f2575](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a6f2575bcc87f9d36909451c841302f2a557160f))
23
+
24
+
25
+ ### Maintenance
26
+
27
+ * **deps:** bump tar-fs from 2.1.3 to 2.1.4 ([#1008](https://github.com/RedTurtle/design-comuni-plone-theme/issues/1008)) ([07bbfe2](https://github.com/RedTurtle/design-comuni-plone-theme/commit/07bbfe2cd409f999f01b1232f207663041050193))
28
+
29
+
30
+ ### Documentation
31
+
32
+ * updated publiccode and release log ([ff70aae](https://github.com/RedTurtle/design-comuni-plone-theme/commit/ff70aae270b0362de7c55c8b2801eb75301ace58))
33
+
3
34
  ## [11.33.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v11.33.0...v11.33.1) (2025-09-01)
4
35
 
5
36
 
package/RELEASE.md CHANGED
@@ -41,6 +41,26 @@
41
41
  - ...
42
42
  -->
43
43
 
44
+ ## Versione 11.34.0 (03/10/2025)
45
+
46
+ ### Migliorie
47
+
48
+ - Migliorata l'accessibilità sui campi di input quando vengono applicate delle label ai campi.
49
+ - Migliorata l'accessibilità per gli input di tipo radio button, checkbox e select all'interno del blocco form.
50
+ - Blocco form aggiornato con la possibilità di aggiungere il Messaggio di conferma invio insieme all'alert del Limite di iscrizioni superato.
51
+ - Il campo "data di inizio incarico" nel CT Incarico non è più obbligatorio se la tipologia di incarico è impostata come "Amministrativo".
52
+
53
+ ### Novità
54
+
55
+ - Nel blocco form è stata aggiunta la possibilità di consultare i dati compilati di ogni singolo form nella tab "Dati" all'interno del blocco, è possibile inoltre scaricare il file CSV o pulire i dati sempre dalla stessa sezione.
56
+
57
+ ### Fix
58
+
59
+ - Blocco Elenco Card con testo animato: rimosso il focus dal card e dal pulsante “Vedi/Read More”, lasciando la navigazione solo sul titolo.
60
+ - Blocco Elenco Card con testo animato: aggiunto aria-hidden a “Vedi/Read More” per escluderlo dai lettori di schermo.
61
+ - Migliorato la gestione del link "Vedi" nelle card: ora il titolo è sempre cliccabile e il link "Vedi" non viene più raggiunto dai lettori di schermo o dalla tastiera, garantendo un'esperienza più chiara e accessibile.
62
+ - Aggiornata intestazione della sezione Argomento da H5 a H2 all'interno di una pagina per migliorare la gerarchia.
63
+
44
64
  ## Versione 11.33.0 (22/08/2025)
45
65
 
46
66
  ### Novità
@@ -813,6 +813,16 @@ msgstr ""
813
813
  msgid "active_filters"
814
814
  msgstr ""
815
815
 
816
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
817
+ # defaultMessage: Add contacts item
818
+ msgid "add_contacts_item"
819
+ msgstr ""
820
+
821
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
822
+ # defaultMessage: Add contacts path
823
+ msgid "add_contacts_path"
824
+ msgstr ""
825
+
816
826
  #: components/ItaliaTheme/Header/HeaderSearch/SearchModal
817
827
  # defaultMessage: Vai alla ricerca per sezioni avanzata
818
828
  msgid "advandedSectionsFilters"
@@ -1438,11 +1448,41 @@ msgstr ""
1438
1448
  msgid "condition_not_contains"
1439
1449
  msgstr ""
1440
1450
 
1451
+ #: components/ItaliaTheme/ContactsBlock/ContactsBlock
1452
+ # defaultMessage: Contatta il comune
1453
+ msgid "contact_block_title"
1454
+ msgstr ""
1455
+
1456
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
1457
+ # defaultMessage: Contact items
1458
+ msgid "contact_items_header"
1459
+ msgstr ""
1460
+
1441
1461
  #: components/ItaliaTheme/View/PersonaView/PersonaContatti
1442
1462
  # defaultMessage: Contatti
1443
1463
  msgid "contacts"
1444
1464
  msgstr ""
1445
1465
 
1466
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1467
+ # defaultMessage: Contact
1468
+ msgid "contacts-config-contact"
1469
+ msgstr ""
1470
+
1471
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1472
+ # defaultMessage: Delete contact
1473
+ msgid "contacts-config-delete-item"
1474
+ msgstr ""
1475
+
1476
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1477
+ # defaultMessage: Icon name
1478
+ msgid "contacts-config-icon"
1479
+ msgstr ""
1480
+
1481
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1482
+ # defaultMessage: Contact title
1483
+ msgid "contacts-config-title"
1484
+ msgstr ""
1485
+
1446
1486
  #: components/ItaliaTheme/Blocks/ContactsBlock/Sidebar
1447
1487
  # defaultMessage: Contatti
1448
1488
  msgid "contacts_block"
@@ -1810,6 +1850,11 @@ msgstr ""
1810
1850
  msgid "deleghe"
1811
1851
  msgstr ""
1812
1852
 
1853
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
1854
+ # defaultMessage: Delete
1855
+ msgid "delete_button"
1856
+ msgstr ""
1857
+
1813
1858
  #: components/ItaliaTheme/Blocks/SearchSections/SideBar
1814
1859
  # defaultMessage: Link rapidi
1815
1860
  msgid "desc"
@@ -2087,6 +2132,16 @@ msgstr ""
2087
2132
  msgid "emptySelection"
2088
2133
  msgstr ""
2089
2134
 
2135
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2136
+ # defaultMessage: Add a contact item
2137
+ msgid "empty_active_contacts_item"
2138
+ msgstr ""
2139
+
2140
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2141
+ # defaultMessage: Add a contacts path
2142
+ msgid "empty_active_contacts_path"
2143
+ msgstr ""
2144
+
2090
2145
  #: components/ItaliaTheme/View/Commons/Dates
2091
2146
  # defaultMessage: Fine evento
2092
2147
  msgid "end"
@@ -2387,12 +2442,12 @@ msgid "form_set_limit"
2387
2442
  msgstr ""
2388
2443
 
2389
2444
  #: overrideTranslations
2390
- # defaultMessage: Sei stato inserito in lista d'attesa
2445
+ # defaultMessage: La tua iscrizione è in lista d'attesa
2391
2446
  msgid "form_submit_success_warning"
2392
2447
  msgstr ""
2393
2448
 
2394
2449
  #: overrideTranslations
2395
- # defaultMessage: I tuoi dati sono stati inviati, ma è già stato raggiunto il limite di iscrizioni, sei stato inserito in lista d'attesa.
2450
+ # defaultMessage: I tuoi dati sono stati inviati correttamente. Tuttavia, è stato raggiunto il limite massimo di iscrizioni: la tua richiesta è stata inserita in lista dattesa.
2396
2451
  msgid "form_submit_success_warning_description"
2397
2452
  msgstr ""
2398
2453
 
@@ -2494,6 +2549,11 @@ msgstr ""
2494
2549
  msgid "iconDescription"
2495
2550
  msgstr ""
2496
2551
 
2552
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2553
+ # defaultMessage: For a complete list of icon names, see:
2554
+ msgid "icon_list_help_text"
2555
+ msgstr ""
2556
+
2497
2557
  #: components/ItaliaTheme/View/Commons/Argument/ArgumentIcon
2498
2558
  # defaultMessage: Icona per l'argomento {topic_title}
2499
2559
  msgid "icon_title"
@@ -2845,6 +2905,16 @@ msgstr ""
2845
2905
  msgid "modulo_formati_alternativi"
2846
2906
  msgstr ""
2847
2907
 
2908
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2909
+ # defaultMessage: Move menu item down
2910
+ msgid "move_menu_item_down"
2911
+ msgstr ""
2912
+
2913
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2914
+ # defaultMessage: Move menu item up
2915
+ msgid "move_menu_item_up"
2916
+ msgstr ""
2917
+
2848
2918
  #: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
2849
2919
  #: components/ItaliaTheme/Blocks/Teaser/schema
2850
2920
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Sidebar
@@ -3249,6 +3319,11 @@ msgstr ""
3249
3319
  msgid "risultati_indagini_customer_satisfaction"
3250
3320
  msgstr ""
3251
3321
 
3322
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
3323
+ # defaultMessage: Root path
3324
+ msgid "root_path"
3325
+ msgstr ""
3326
+
3252
3327
  #: overrideTranslations
3253
3328
  # defaultMessage: il giorno
3254
3329
  msgid "rrule_in"
@@ -4511,6 +4586,11 @@ msgstr ""
4511
4586
  msgid "vincoli"
4512
4587
  msgstr ""
4513
4588
 
4589
+ #: overrideTranslations
4590
+ # defaultMessage: Selezionare la voce "Salva i dati compilati" nella barra laterale per abilitare il salvataggio e la visualizzazione dei dati
4591
+ msgid "warning_enable_save"
4592
+ msgstr ""
4593
+
4514
4594
  #: components/ItaliaTheme/View/PuntoDiContattoView/PuntoDiContattoView
4515
4595
  #: helpers/contentHelper
4516
4596
  # defaultMessage: Whatsapp
@@ -798,6 +798,16 @@ msgstr "View actions"
798
798
  msgid "active_filters"
799
799
  msgstr "{filterNumber} active filters"
800
800
 
801
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
802
+ # defaultMessage: Add contacts item
803
+ msgid "add_contacts_item"
804
+ msgstr ""
805
+
806
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
807
+ # defaultMessage: Add contacts path
808
+ msgid "add_contacts_path"
809
+ msgstr ""
810
+
801
811
  #: components/ItaliaTheme/Header/HeaderSearch/SearchModal
802
812
  # defaultMessage: Vai alla ricerca per sezioni avanzata
803
813
  msgid "advandedSectionsFilters"
@@ -1423,11 +1433,41 @@ msgstr "Less than"
1423
1433
  msgid "condition_not_contains"
1424
1434
  msgstr "Not contains"
1425
1435
 
1436
+ #: components/ItaliaTheme/ContactsBlock/ContactsBlock
1437
+ # defaultMessage: Contatta il comune
1438
+ msgid "contact_block_title"
1439
+ msgstr ""
1440
+
1441
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
1442
+ # defaultMessage: Contact items
1443
+ msgid "contact_items_header"
1444
+ msgstr ""
1445
+
1426
1446
  #: components/ItaliaTheme/View/PersonaView/PersonaContatti
1427
1447
  # defaultMessage: Contatti
1428
1448
  msgid "contacts"
1429
1449
  msgstr "Contacts"
1430
1450
 
1451
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1452
+ # defaultMessage: Contact
1453
+ msgid "contacts-config-contact"
1454
+ msgstr ""
1455
+
1456
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1457
+ # defaultMessage: Delete contact
1458
+ msgid "contacts-config-delete-item"
1459
+ msgstr ""
1460
+
1461
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1462
+ # defaultMessage: Icon name
1463
+ msgid "contacts-config-icon"
1464
+ msgstr ""
1465
+
1466
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1467
+ # defaultMessage: Contact title
1468
+ msgid "contacts-config-title"
1469
+ msgstr ""
1470
+
1431
1471
  #: components/ItaliaTheme/Blocks/ContactsBlock/Sidebar
1432
1472
  # defaultMessage: Contatti
1433
1473
  msgid "contacts_block"
@@ -1795,6 +1835,11 @@ msgstr "Term effective date"
1795
1835
  msgid "deleghe"
1796
1836
  msgstr "Delegations"
1797
1837
 
1838
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
1839
+ # defaultMessage: Delete
1840
+ msgid "delete_button"
1841
+ msgstr ""
1842
+
1798
1843
  #: components/ItaliaTheme/Blocks/SearchSections/SideBar
1799
1844
  # defaultMessage: Link rapidi
1800
1845
  msgid "desc"
@@ -2072,6 +2117,16 @@ msgstr "Remuneration Charged to Public Finances"
2072
2117
  msgid "emptySelection"
2073
2118
  msgstr ""
2074
2119
 
2120
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2121
+ # defaultMessage: Add a contact item
2122
+ msgid "empty_active_contacts_item"
2123
+ msgstr ""
2124
+
2125
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2126
+ # defaultMessage: Add a contacts path
2127
+ msgid "empty_active_contacts_path"
2128
+ msgstr ""
2129
+
2075
2130
  #: components/ItaliaTheme/View/Commons/Dates
2076
2131
  # defaultMessage: Fine evento
2077
2132
  msgid "end"
@@ -2372,14 +2427,14 @@ msgid "form_set_limit"
2372
2427
  msgstr "Set a submission limit"
2373
2428
 
2374
2429
  #: overrideTranslations
2375
- # defaultMessage: Sei stato inserito in lista d'attesa
2430
+ # defaultMessage: La tua iscrizione è in lista d'attesa
2376
2431
  msgid "form_submit_success_warning"
2377
- msgstr "You've been added to the waiting list"
2432
+ msgstr "Your registration is on the waiting list."
2378
2433
 
2379
2434
  #: overrideTranslations
2380
- # defaultMessage: I tuoi dati sono stati inviati, ma è già stato raggiunto il limite di iscrizioni, sei stato inserito in lista d'attesa.
2435
+ # defaultMessage: I tuoi dati sono stati inviati correttamente. Tuttavia, è stato raggiunto il limite massimo di iscrizioni: la tua richiesta è stata inserita in lista dattesa.
2381
2436
  msgid "form_submit_success_warning_description"
2382
- msgstr "Your data has been submitted, but the subscription limit has been reached and you've been added to the waiting list."
2437
+ msgstr "Your data has been submitted successfully. However, the maximum number of registrations has been reached: your request has been placed on the waiting list."
2383
2438
 
2384
2439
  #: components/ItaliaTheme/View/PersonaView/PersonaRuolo
2385
2440
  # defaultMessage: Foto dell'attività politica
@@ -2479,6 +2534,11 @@ msgstr ""
2479
2534
  msgid "iconDescription"
2480
2535
  msgstr ""
2481
2536
 
2537
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2538
+ # defaultMessage: For a complete list of icon names, see:
2539
+ msgid "icon_list_help_text"
2540
+ msgstr ""
2541
+
2482
2542
  #: components/ItaliaTheme/View/Commons/Argument/ArgumentIcon
2483
2543
  # defaultMessage: Icona per l'argomento {topic_title}
2484
2544
  msgid "icon_title"
@@ -2830,6 +2890,16 @@ msgstr "Main file"
2830
2890
  msgid "modulo_formati_alternativi"
2831
2891
  msgstr "Alternative formats"
2832
2892
 
2893
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2894
+ # defaultMessage: Move menu item down
2895
+ msgid "move_menu_item_down"
2896
+ msgstr ""
2897
+
2898
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2899
+ # defaultMessage: Move menu item up
2900
+ msgid "move_menu_item_up"
2901
+ msgstr ""
2902
+
2833
2903
  #: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
2834
2904
  #: components/ItaliaTheme/Blocks/Teaser/schema
2835
2905
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Sidebar
@@ -3234,6 +3304,11 @@ msgstr "Rights"
3234
3304
  msgid "risultati_indagini_customer_satisfaction"
3235
3305
  msgstr "Customer satisfaction survey results"
3236
3306
 
3307
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
3308
+ # defaultMessage: Root path
3309
+ msgid "root_path"
3310
+ msgstr ""
3311
+
3237
3312
  #: overrideTranslations
3238
3313
  # defaultMessage: il giorno
3239
3314
  msgid "rrule_in"
@@ -4496,6 +4571,11 @@ msgstr "View on Google Maps"
4496
4571
  msgid "vincoli"
4497
4572
  msgstr "Constraints"
4498
4573
 
4574
+ #: overrideTranslations
4575
+ # defaultMessage: Selezionare la voce "Salva i dati compilati" nella barra laterale per abilitare il salvataggio e la visualizzazione dei dati
4576
+ msgid "warning_enable_save"
4577
+ msgstr "Select the 'Save Filled Data' item in the sidebar to enable saving and viewing of data"
4578
+
4499
4579
  #: components/ItaliaTheme/View/PuntoDiContattoView/PuntoDiContattoView
4500
4580
  #: helpers/contentHelper
4501
4581
  # defaultMessage: Whatsapp
@@ -807,6 +807,16 @@ msgstr "Ver acciones"
807
807
  msgid "active_filters"
808
808
  msgstr ""
809
809
 
810
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
811
+ # defaultMessage: Add contacts item
812
+ msgid "add_contacts_item"
813
+ msgstr ""
814
+
815
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
816
+ # defaultMessage: Add contacts path
817
+ msgid "add_contacts_path"
818
+ msgstr ""
819
+
810
820
  #: components/ItaliaTheme/Header/HeaderSearch/SearchModal
811
821
  # defaultMessage: Vai alla ricerca per sezioni avanzata
812
822
  msgid "advandedSectionsFilters"
@@ -1432,11 +1442,41 @@ msgstr "Es menos que"
1432
1442
  msgid "condition_not_contains"
1433
1443
  msgstr "No contiene"
1434
1444
 
1445
+ #: components/ItaliaTheme/ContactsBlock/ContactsBlock
1446
+ # defaultMessage: Contatta il comune
1447
+ msgid "contact_block_title"
1448
+ msgstr ""
1449
+
1450
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
1451
+ # defaultMessage: Contact items
1452
+ msgid "contact_items_header"
1453
+ msgstr ""
1454
+
1435
1455
  #: components/ItaliaTheme/View/PersonaView/PersonaContatti
1436
1456
  # defaultMessage: Contatti
1437
1457
  msgid "contacts"
1438
1458
  msgstr "Contactos"
1439
1459
 
1460
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1461
+ # defaultMessage: Contact
1462
+ msgid "contacts-config-contact"
1463
+ msgstr ""
1464
+
1465
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1466
+ # defaultMessage: Delete contact
1467
+ msgid "contacts-config-delete-item"
1468
+ msgstr ""
1469
+
1470
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1471
+ # defaultMessage: Icon name
1472
+ msgid "contacts-config-icon"
1473
+ msgstr ""
1474
+
1475
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigForm
1476
+ # defaultMessage: Contact title
1477
+ msgid "contacts-config-title"
1478
+ msgstr ""
1479
+
1440
1480
  #: components/ItaliaTheme/Blocks/ContactsBlock/Sidebar
1441
1481
  # defaultMessage: Contatti
1442
1482
  msgid "contacts_block"
@@ -1804,6 +1844,11 @@ msgstr "Fecha límite"
1804
1844
  msgid "deleghe"
1805
1845
  msgstr "Delegaciones"
1806
1846
 
1847
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
1848
+ # defaultMessage: Delete
1849
+ msgid "delete_button"
1850
+ msgstr ""
1851
+
1807
1852
  #: components/ItaliaTheme/Blocks/SearchSections/SideBar
1808
1853
  # defaultMessage: Link rapidi
1809
1854
  msgid "desc"
@@ -2081,6 +2126,16 @@ msgstr ""
2081
2126
  msgid "emptySelection"
2082
2127
  msgstr "Seleccione un elemento en la barra lateral en para mostrarlo aquí"
2083
2128
 
2129
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2130
+ # defaultMessage: Add a contact item
2131
+ msgid "empty_active_contacts_item"
2132
+ msgstr ""
2133
+
2134
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2135
+ # defaultMessage: Add a contacts path
2136
+ msgid "empty_active_contacts_path"
2137
+ msgstr ""
2138
+
2084
2139
  #: components/ItaliaTheme/View/Commons/Dates
2085
2140
  # defaultMessage: Fine evento
2086
2141
  msgid "end"
@@ -2381,12 +2436,12 @@ msgid "form_set_limit"
2381
2436
  msgstr ""
2382
2437
 
2383
2438
  #: overrideTranslations
2384
- # defaultMessage: Sei stato inserito in lista d'attesa
2439
+ # defaultMessage: La tua iscrizione è in lista d'attesa
2385
2440
  msgid "form_submit_success_warning"
2386
2441
  msgstr ""
2387
2442
 
2388
2443
  #: overrideTranslations
2389
- # defaultMessage: I tuoi dati sono stati inviati, ma è già stato raggiunto il limite di iscrizioni, sei stato inserito in lista d'attesa.
2444
+ # defaultMessage: I tuoi dati sono stati inviati correttamente. Tuttavia, è stato raggiunto il limite massimo di iscrizioni: la tua richiesta è stata inserita in lista dattesa.
2390
2445
  msgid "form_submit_success_warning_description"
2391
2446
  msgstr ""
2392
2447
 
@@ -2488,6 +2543,11 @@ msgstr "Icono"
2488
2543
  msgid "iconDescription"
2489
2544
  msgstr "Puede seleccionar un icono de los propuestos en el menú desplegable o puede escribir/pegar el nombre de un icono 'fontawesome 5' en el campo de texto"
2490
2545
 
2546
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2547
+ # defaultMessage: For a complete list of icon names, see:
2548
+ msgid "icon_list_help_text"
2549
+ msgstr ""
2550
+
2491
2551
  #: components/ItaliaTheme/View/Commons/Argument/ArgumentIcon
2492
2552
  # defaultMessage: Icona per l'argomento {topic_title}
2493
2553
  msgid "icon_title"
@@ -2839,6 +2899,16 @@ msgstr "Archivo principal"
2839
2899
  msgid "modulo_formati_alternativi"
2840
2900
  msgstr "Formatos alternativos"
2841
2901
 
2902
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2903
+ # defaultMessage: Move menu item down
2904
+ msgid "move_menu_item_down"
2905
+ msgstr ""
2906
+
2907
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
2908
+ # defaultMessage: Move menu item up
2909
+ msgid "move_menu_item_up"
2910
+ msgstr ""
2911
+
2842
2912
  #: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
2843
2913
  #: components/ItaliaTheme/Blocks/Teaser/schema
2844
2914
  #: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Sidebar
@@ -3243,6 +3313,11 @@ msgstr "Derechos"
3243
3313
  msgid "risultati_indagini_customer_satisfaction"
3244
3314
  msgstr "Resultados de la encuesta de satisfacción del cliente"
3245
3315
 
3316
+ #: components/ItaliaTheme/manage/Widgets/ContactsWidget/ContactsConfigWidget
3317
+ # defaultMessage: Root path
3318
+ msgid "root_path"
3319
+ msgstr ""
3320
+
3246
3321
  #: overrideTranslations
3247
3322
  # defaultMessage: il giorno
3248
3323
  msgid "rrule_in"
@@ -4505,6 +4580,11 @@ msgstr "Ver en Google Maps"
4505
4580
  msgid "vincoli"
4506
4581
  msgstr "Restricciones"
4507
4582
 
4583
+ #: overrideTranslations
4584
+ # defaultMessage: Selezionare la voce "Salva i dati compilati" nella barra laterale per abilitare il salvataggio e la visualizzazione dei dati
4585
+ msgid "warning_enable_save"
4586
+ msgstr "Seleccione el elemento 'Guardar datos completados' en la barra lateral para habilitar el guardado y la visualización de datos."
4587
+
4508
4588
  #: components/ItaliaTheme/View/PuntoDiContattoView/PuntoDiContattoView
4509
4589
  #: helpers/contentHelper
4510
4590
  # defaultMessage: Whatsapp