design-comuni-plone-theme 10.3.0 → 10.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +48 -0
- package/RELEASE.md +23 -0
- package/error-503.html +52 -50
- package/locales/de/LC_MESSAGES/volto.po +23 -22
- package/locales/en/LC_MESSAGES/volto.po +23 -22
- package/locales/es/LC_MESSAGES/volto.po +23 -22
- package/locales/fr/LC_MESSAGES/volto.po +23 -22
- package/locales/it/LC_MESSAGES/volto.po +23 -22
- package/locales/volto.pot +24 -23
- package/package.json +1 -1
- package/publiccode.yml +2 -2
- package/src/components/ItaliaTheme/Blocks/Alert/Edit.jsx +9 -5
- package/src/components/ItaliaTheme/Blocks/Alert/Sidebar.jsx +51 -76
- package/src/components/ItaliaTheme/Blocks/Alert/View.jsx +4 -2
- package/src/components/ItaliaTheme/Blocks/Listing/BandiInEvidenceTemplate.jsx +110 -104
- package/src/components/ItaliaTheme/Blocks/NumbersBlock/Edit.jsx +1 -0
- package/src/components/ItaliaTheme/Blocks/TextCard/SimpleCard/Block.jsx +1 -7
- package/src/components/ItaliaTheme/Blocks/__tests__/Alert.test.jsx +1 -1
- package/src/components/ItaliaTheme/GalleryPreview/GalleryPreview.jsx +11 -24
- package/src/components/ItaliaTheme/Header/ParentSiteMenu.jsx +2 -1
- package/src/components/ItaliaTheme/Icons/FontAwesomeIcon.jsx +42 -20
- package/src/components/ItaliaTheme/View/BandoView/BandoText.jsx +7 -37
- package/src/components/ItaliaTheme/View/BandoView/BandoTextDestinatari.jsx +36 -0
- package/src/components/ItaliaTheme/View/BandoView/BandoTextEnte.jsx +34 -0
- package/src/components/ItaliaTheme/View/BandoView/BandoTextTipologia.jsx +32 -0
- package/src/components/ItaliaTheme/View/Commons/SearchSectionForm.jsx +24 -3
- package/src/components/ItaliaTheme/View/VenueView/VenueDescription.jsx +9 -65
- package/src/components/ItaliaTheme/View/VenueView/VenueElementiDiInteresse.jsx +26 -0
- package/src/components/ItaliaTheme/View/VenueView/VenueLuoghiCorrelati.jsx +37 -0
- package/src/components/ItaliaTheme/View/VenueView/VenueMultimedia.jsx +25 -0
- package/src/components/ItaliaTheme/View/VenueView/VenueTipologia.jsx +27 -0
- package/src/components/ItaliaTheme/View/index.js +4 -0
- package/src/components/ItaliaTheme/manage/Widgets/IconPreviewWidget.jsx +1 -1
- package/src/theme/ItaliaTheme/Blocks/_alert.scss +26 -65
- package/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss +1 -0
- package/src/theme/ItaliaTheme/Blocks/_search.scss +5 -0
- package/src/theme/ItaliaTheme/Components/_galleryPreview.scss +9 -13
- package/src/theme/ItaliaTheme/Subsites/_common.scss +0 -1
- package/src/theme/ItaliaTheme/Views/_common.scss +10 -0
- package/src/theme/ItaliaTheme/_home.scss +10 -0
- package/src/theme/_cms-ui.scss +14 -0
- package/src/theme/_site-variables.scss +5 -0
- package/src/theme/ItaliaTheme/Subsites/_homepage.scss +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [10.4.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.0...v10.4.1) (2023-11-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* BandiInEvidenceTemplate layout to space bando dati when titles have different lengths ([#410](https://github.com/RedTurtle/design-comuni-plone-theme/issues/410)) ([4780b12](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4780b127497e247df7dd59ffcba274537b2bc5a5))
|
|
9
|
+
* class no-after added to simple card text block ([#413](https://github.com/RedTurtle/design-comuni-plone-theme/issues/413)) ([10073e8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/10073e8bdf50c9e4b8d4245c05ad38bdac8423e3))
|
|
10
|
+
* search block column template + button text color ([#408](https://github.com/RedTurtle/design-comuni-plone-theme/issues/408)) ([72f7eae](https://github.com/RedTurtle/design-comuni-plone-theme/commit/72f7eae3bac35aaaa01e725a89a65de8a2b02b60))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Maintenance
|
|
14
|
+
|
|
15
|
+
* how to customize the 503 file ([#405](https://github.com/RedTurtle/design-comuni-plone-theme/issues/405)) ([b444ba8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/b444ba84de9a31edffb01f778b66677ac72971cb))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Documentation
|
|
19
|
+
|
|
20
|
+
* updated publiccode and release log ([5be0543](https://github.com/RedTurtle/design-comuni-plone-theme/commit/5be054313163816dd764149e8f7cb1717c52eab2))
|
|
21
|
+
|
|
22
|
+
## [10.4.0](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.3.0...v10.4.0) (2023-11-14)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* added image size and colorListWidget in Alert block ([#396](https://github.com/RedTurtle/design-comuni-plone-theme/issues/396)) ([63f3b5b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/63f3b5b60364e650de5123cf8b8108dd86eab9f9))
|
|
28
|
+
* split VenueDescription component ([#399](https://github.com/RedTurtle/design-comuni-plone-theme/issues/399)) ([68c3ca5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/68c3ca5338f27f4e64ea257f679ae91dc1842491))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* documentFirstHeading in subsites without style ([#400](https://github.com/RedTurtle/design-comuni-plone-theme/issues/400)) ([9588073](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9588073d4a2a72e4eb3664c5741b0368f59781fb))
|
|
34
|
+
* icons in NumbersBlock and Sidebar Widget not updating ([#402](https://github.com/RedTurtle/design-comuni-plone-theme/issues/402)) ([0df93a5](https://github.com/RedTurtle/design-comuni-plone-theme/commit/0df93a59c100df69085db83b4ade85101601ed35))
|
|
35
|
+
* locales ([c4bdc14](https://github.com/RedTurtle/design-comuni-plone-theme/commit/c4bdc148aa76ad7ee81945185f22b2eeead3feeb))
|
|
36
|
+
* mark section filters correctly when navigating to search page from page header ([#401](https://github.com/RedTurtle/design-comuni-plone-theme/issues/401)) ([fdc6207](https://github.com/RedTurtle/design-comuni-plone-theme/commit/fdc62074fa2b92292b128a31f7d227ed5e97c074))
|
|
37
|
+
* ParentSiteMenu now draws only Visible site menu elements in subsites ([#403](https://github.com/RedTurtle/design-comuni-plone-theme/issues/403)) ([9fc0a24](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9fc0a2456030d1480fbe5b76cf4f9c29eab0d10e))
|
|
38
|
+
* Photogallery popup image ([#395](https://github.com/RedTurtle/design-comuni-plone-theme/issues/395)) ([4fce154](https://github.com/RedTurtle/design-comuni-plone-theme/commit/4fce154045e2cbc710fed9d975842edb1af7e85a))
|
|
39
|
+
* scroll position on h2 .visually-hidden ([#397](https://github.com/RedTurtle/design-comuni-plone-theme/issues/397)) ([9356e6a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9356e6af8a3273ebb1d51c80d84ae0cce7c7dd3a))
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Maintenance
|
|
43
|
+
|
|
44
|
+
* split BandoView Text in different components ([#391](https://github.com/RedTurtle/design-comuni-plone-theme/issues/391)) ([e787f38](https://github.com/RedTurtle/design-comuni-plone-theme/commit/e787f38899519daa2e6743e896e5f8d53fc8bf8a))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Documentation
|
|
48
|
+
|
|
49
|
+
* updated publiccode and release log ([f95133b](https://github.com/RedTurtle/design-comuni-plone-theme/commit/f95133b0ddaa5ac27a07dfa772f48dfb1b59c067))
|
|
50
|
+
|
|
3
51
|
## [10.3.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v10.2.2...v10.3.0) (2023-11-08)
|
|
4
52
|
|
|
5
53
|
|
package/RELEASE.md
CHANGED
|
@@ -41,11 +41,34 @@
|
|
|
41
41
|
- ...
|
|
42
42
|
-->
|
|
43
43
|
|
|
44
|
+
## Versione 10.4.1 (21/11/2023)
|
|
45
|
+
|
|
46
|
+
### Migliorie
|
|
47
|
+
|
|
48
|
+
- Migliorato l'allineamento delle informazioni dei bandi nelle card dei blocchi elenco
|
|
49
|
+
|
|
50
|
+
### Fix
|
|
51
|
+
|
|
52
|
+
- Nel blocco Cerca, quando viene selezionata la variazione "Colonna a destra" o "Colonna a sinistra" i blocchi si allineano correttamente, e i bottoni nella testata si vedono correttamente in modalità Edit.
|
|
53
|
+
|
|
54
|
+
## Versione 10.4.0 (14/11/2023)
|
|
55
|
+
|
|
56
|
+
### Novità
|
|
57
|
+
|
|
58
|
+
- Aggiunta la possibilità di selezionare la dimensione dell'immagine nel blocco Alert, inoltre è stato aggiornato anche il widget per la selezione del colore di sfondo.
|
|
59
|
+
|
|
60
|
+
### Fix
|
|
61
|
+
|
|
62
|
+
- Quando viene effettuata una ricerca dalla barra di ricerca nelle sezioni Amministrazione, Servizi, Novità, o Documenti e Dati, viene automaticamente impostato il filtro sulla sezione stessa così da mostrare solo i contenuti corrispondenti.
|
|
63
|
+
- Le icone del Blocco Numeri, del Blocco Icone e della Sidebar si aggiornano istantaneamente quando vengono cambiate
|
|
64
|
+
- Sistemato un bug nell'header dei sottositi che mostrava le voci del menu del sito padre anche se queste erano indicate come non visibili nella configurazione del menu.
|
|
65
|
+
|
|
44
66
|
## Versione 10.3.0 (08/11/2023)
|
|
45
67
|
|
|
46
68
|
### Fix
|
|
47
69
|
|
|
48
70
|
- Sistemata la visualizzazione della tipologia del bando nel template del blocco elenco 'Bandi'
|
|
71
|
+
- Rimosso titolo della pagina nei sottositi senza nessuno stile applicato
|
|
49
72
|
|
|
50
73
|
## Versione 10.2.0 (06/11/2023)
|
|
51
74
|
|
package/error-503.html
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
WHAT YOU NEED TO CHANGE IN THIS FILE:
|
|
3
|
+
|
|
4
|
+
[ ] - Base64 favicon (~LINE 29)
|
|
5
|
+
[ ] - Root variable colors (~LINE 110)
|
|
6
|
+
[ ] - Slim header region (href and content) (~LINE 581)
|
|
7
|
+
[ ] - Header brand Base64 image and alt title (~LINE 596)
|
|
8
|
+
[ ] - Header brand title (~LINE 603)
|
|
9
|
+
[ ] - Header brand tagline (~LINE 605)
|
|
10
|
+
[ ] - Footer Base64 image and alt title (~LINE 635)
|
|
11
|
+
[ ] - Footer brand title (~LINE 638)
|
|
12
|
+
[ ] - Footer brand tagline (~LINE 640)
|
|
13
|
+
[ ] - Footer column "Contatti" - one item per <p> - Pay attention to href links (~LINE 662)
|
|
14
|
+
-->
|
|
15
|
+
|
|
1
16
|
<!DOCTYPE html>
|
|
2
17
|
<html lang="it">
|
|
3
18
|
<head>
|
|
@@ -207,11 +222,7 @@
|
|
|
207
222
|
padding-right: 6px;
|
|
208
223
|
padding-left: 6px;
|
|
209
224
|
}
|
|
210
|
-
|
|
211
|
-
width: 32px;
|
|
212
|
-
height: 32px;
|
|
213
|
-
vertical-align: middle;
|
|
214
|
-
}
|
|
225
|
+
|
|
215
226
|
@media (min-width: 576px) {
|
|
216
227
|
body,
|
|
217
228
|
html {
|
|
@@ -335,8 +346,7 @@
|
|
|
335
346
|
|
|
336
347
|
.it-header-center-wrapper
|
|
337
348
|
.it-header-center-content-wrapper
|
|
338
|
-
.it-brand-wrapper
|
|
339
|
-
a {
|
|
349
|
+
.it-brand-wrapper {
|
|
340
350
|
display: flex;
|
|
341
351
|
color: var(--header-text);
|
|
342
352
|
align-items: center;
|
|
@@ -347,7 +357,6 @@
|
|
|
347
357
|
.it-header-center-wrapper
|
|
348
358
|
.it-header-center-content-wrapper
|
|
349
359
|
.it-brand-wrapper
|
|
350
|
-
a
|
|
351
360
|
.icon {
|
|
352
361
|
/********** if is a image, delete the "fill" prop above ***********/
|
|
353
362
|
fill: #fff;
|
|
@@ -365,12 +374,10 @@
|
|
|
365
374
|
.it-header-center-wrapper
|
|
366
375
|
.it-header-center-content-wrapper
|
|
367
376
|
.it-brand-wrapper
|
|
368
|
-
a
|
|
369
377
|
.it-brand-title,
|
|
370
378
|
.it-header-center-wrapper
|
|
371
379
|
.it-header-center-content-wrapper
|
|
372
380
|
.it-brand-wrapper
|
|
373
|
-
a
|
|
374
381
|
h2 {
|
|
375
382
|
font-size: 1.25em;
|
|
376
383
|
margin-bottom: 0;
|
|
@@ -386,7 +393,6 @@
|
|
|
386
393
|
.it-header-center-wrapper
|
|
387
394
|
.it-header-center-content-wrapper
|
|
388
395
|
.it-brand-wrapper
|
|
389
|
-
a
|
|
390
396
|
h3 {
|
|
391
397
|
font-size: 0.889em;
|
|
392
398
|
font-weight: 400;
|
|
@@ -427,7 +433,6 @@
|
|
|
427
433
|
.it-header-center-wrapper
|
|
428
434
|
.it-header-center-content-wrapper
|
|
429
435
|
.it-brand-wrapper
|
|
430
|
-
a
|
|
431
436
|
.icon {
|
|
432
437
|
width: auto;
|
|
433
438
|
height: 82px;
|
|
@@ -436,12 +441,10 @@
|
|
|
436
441
|
.it-header-center-wrapper
|
|
437
442
|
.it-header-center-content-wrapper
|
|
438
443
|
.it-brand-wrapper
|
|
439
|
-
a
|
|
440
444
|
.it-brand-title,
|
|
441
445
|
.it-header-center-wrapper
|
|
442
446
|
.it-header-center-content-wrapper
|
|
443
447
|
.it-brand-wrapper
|
|
444
|
-
a
|
|
445
448
|
h2 {
|
|
446
449
|
font-size: 1.778em;
|
|
447
450
|
margin-bottom: 0;
|
|
@@ -450,12 +453,10 @@
|
|
|
450
453
|
.it-header-center-wrapper
|
|
451
454
|
.it-header-center-content-wrapper
|
|
452
455
|
.it-brand-wrapper
|
|
453
|
-
a
|
|
454
456
|
.it-brand-tagline,
|
|
455
457
|
.it-header-center-wrapper
|
|
456
458
|
.it-header-center-content-wrapper
|
|
457
459
|
.it-brand-wrapper
|
|
458
|
-
a
|
|
459
460
|
h3 {
|
|
460
461
|
font-size: 0.889em;
|
|
461
462
|
font-weight: 400;
|
|
@@ -502,7 +503,7 @@
|
|
|
502
503
|
.it-footer-main .it-brand-wrapper {
|
|
503
504
|
padding: 32px 0;
|
|
504
505
|
}
|
|
505
|
-
.it-footer-main .it-brand-wrapper
|
|
506
|
+
.it-footer-main .it-brand-wrapper {
|
|
506
507
|
display: flex;
|
|
507
508
|
color: var(--footer-text);
|
|
508
509
|
align-items: center;
|
|
@@ -510,7 +511,7 @@
|
|
|
510
511
|
}
|
|
511
512
|
|
|
512
513
|
/******** Logo footer ***********/
|
|
513
|
-
.it-footer-main .it-brand-wrapper
|
|
514
|
+
.it-footer-main .it-brand-wrapper .icon {
|
|
514
515
|
/* if is a image, delete the "fill" prop above */
|
|
515
516
|
fill: var(--logo);
|
|
516
517
|
width: auto;
|
|
@@ -518,14 +519,14 @@
|
|
|
518
519
|
margin-right: 8px;
|
|
519
520
|
flex-shrink: 0;
|
|
520
521
|
}
|
|
521
|
-
.it-footer-main .it-brand-wrapper
|
|
522
|
+
.it-footer-main .it-brand-wrapper h2 {
|
|
522
523
|
font-size: 1.25em;
|
|
523
524
|
margin-bottom: 0;
|
|
524
525
|
font-weight: 600;
|
|
525
526
|
letter-spacing: unset;
|
|
526
527
|
line-height: 1.1;
|
|
527
528
|
}
|
|
528
|
-
.it-footer-main .it-brand-wrapper
|
|
529
|
+
.it-footer-main .it-brand-wrapper h3 {
|
|
529
530
|
font-size: 0.889em;
|
|
530
531
|
font-weight: 400;
|
|
531
532
|
margin-bottom: 0;
|
|
@@ -547,7 +548,7 @@
|
|
|
547
548
|
padding-bottom: 8px !important;
|
|
548
549
|
}
|
|
549
550
|
|
|
550
|
-
.it-footer-main h4
|
|
551
|
+
.it-footer-main h4 {
|
|
551
552
|
color: var(--footer-text);
|
|
552
553
|
text-decoration: none;
|
|
553
554
|
text-transform: uppercase;
|
|
@@ -577,7 +578,9 @@
|
|
|
577
578
|
<div class="row">
|
|
578
579
|
<div class="col-12">
|
|
579
580
|
<div class="it-header-slim-wrapper-content">
|
|
580
|
-
<a class="d-lg-block navbar-brand"
|
|
581
|
+
<a href="#" target="_blank" class="d-lg-block navbar-brand"
|
|
582
|
+
>Nome della Regione</a
|
|
583
|
+
>
|
|
581
584
|
</div>
|
|
582
585
|
</div>
|
|
583
586
|
</div>
|
|
@@ -590,20 +593,18 @@
|
|
|
590
593
|
<div class="col-12">
|
|
591
594
|
<div class="it-header-center-content-wrapper">
|
|
592
595
|
<div class="it-brand-wrapper">
|
|
593
|
-
<
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
<div class="it-brand-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
Uno dei tanti Comuni d'Italia
|
|
604
|
-
</div>
|
|
596
|
+
<img
|
|
597
|
+
class="icon"
|
|
598
|
+
alt="Logo io-Comune"
|
|
599
|
+
src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIKICAgICB2aWV3Qm94PSIwIDAgMjQgMjQiPgogIDx0aXRsZT5QQTwvdGl0bGU+CiAgPGc+CiAgICA8cGF0aAogICAgZmlsbD0iI2ZmZiIKICAgICAgZD0iTTMsMjFIMjF2MUgzWm0wLTFIMjFWMTlIM1pNMjIsOUgyTDEyLDJaTTUuMiw4SDE4LjhMMTIsMy4yWk02LDE4VjEwSDV2OFptNCwwVjEwSDl2OFptNSwwVjEwSDE0djhabTQsMFYxMEgxOHY4WiIKICAgICAgLz4KICA8L2c+CiAgPGc+CiAgICA8cmVjdCB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiLz4KICA8L2c+Cjwvc3ZnPgo="
|
|
600
|
+
/>
|
|
601
|
+
|
|
602
|
+
<div class="it-brand-text">
|
|
603
|
+
<div class="it-brand-title">Nome del Comune</div>
|
|
604
|
+
<div class="it-brand-tagline d-none d-md-block">
|
|
605
|
+
Uno dei tanti Comuni d'Italia
|
|
605
606
|
</div>
|
|
606
|
-
</
|
|
607
|
+
</div>
|
|
607
608
|
</div>
|
|
608
609
|
</div>
|
|
609
610
|
</div>
|
|
@@ -628,19 +629,17 @@
|
|
|
628
629
|
<div class="row clearfix">
|
|
629
630
|
<div class="col-sm-12">
|
|
630
631
|
<div class="it-brand-wrapper">
|
|
631
|
-
<
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
<
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
</div>
|
|
643
|
-
</a>
|
|
632
|
+
<img
|
|
633
|
+
class="icon"
|
|
634
|
+
alt="Logo io-Comune"
|
|
635
|
+
src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIKICAgICB2aWV3Qm94PSIwIDAgMjQgMjQiPgogIDx0aXRsZT5QQTwvdGl0bGU+CiAgPGc+CiAgICA8cGF0aAogICAgZmlsbD0iI2ZmZiIKICAgICAgZD0iTTMsMjFIMjF2MUgzWm0wLTFIMjFWMTlIM1pNMjIsOUgyTDEyLDJaTTUuMiw4SDE4LjhMMTIsMy4yWk02LDE4VjEwSDV2OFptNCwwVjEwSDl2OFptNSwwVjEwSDE0djhabTQsMFYxMEgxOHY4WiIKICAgICAgLz4KICA8L2c+CiAgPGc+CiAgICA8cmVjdCB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiLz4KICA8L2c+Cjwvc3ZnPgo="
|
|
636
|
+
/>
|
|
637
|
+
<div class="it-brand-text">
|
|
638
|
+
<h2 class="no_toc">Nome del Comune</h2>
|
|
639
|
+
<h3 class="no_toc d-none d-md-block">
|
|
640
|
+
Uno dei tanti Comuni d'Italia
|
|
641
|
+
</h3>
|
|
642
|
+
</div>
|
|
644
643
|
</div>
|
|
645
644
|
</div>
|
|
646
645
|
</div>
|
|
@@ -650,7 +649,7 @@
|
|
|
650
649
|
<div class="row">
|
|
651
650
|
<div class="col-lg-3 col-md-3 pb-2">
|
|
652
651
|
<h4>
|
|
653
|
-
|
|
652
|
+
Amministrazione trasparente
|
|
654
653
|
</h4>
|
|
655
654
|
<p>
|
|
656
655
|
I dati personali pubblicati sono riutilizzabili solo alle
|
|
@@ -660,13 +659,16 @@
|
|
|
660
659
|
</div>
|
|
661
660
|
<div class="col-lg-3 col-md-3 pb-2">
|
|
662
661
|
<h4>
|
|
663
|
-
|
|
662
|
+
Contatti
|
|
664
663
|
</h4>
|
|
665
664
|
<p>
|
|
666
665
|
<strong>Nome del Comune</strong><br />
|
|
667
666
|
Via Roma 0 - 00000 Lorem Ipsum Codice fiscale / P. IVA:
|
|
668
667
|
000000000
|
|
669
668
|
</p>
|
|
669
|
+
<p>
|
|
670
|
+
<a href="#">info@io-comune.it</a>
|
|
671
|
+
</p>
|
|
670
672
|
</div>
|
|
671
673
|
</div>
|
|
672
674
|
</section>
|
|
@@ -86,6 +86,7 @@ msgstr ""
|
|
|
86
86
|
msgid "CardImageRight"
|
|
87
87
|
msgstr ""
|
|
88
88
|
|
|
89
|
+
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
89
90
|
#: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Sidebar
|
|
90
91
|
# defaultMessage: Dimensione immagine
|
|
91
92
|
msgid "CardImageSize"
|
|
@@ -133,21 +134,6 @@ msgstr ""
|
|
|
133
134
|
msgid "Color"
|
|
134
135
|
msgstr ""
|
|
135
136
|
|
|
136
|
-
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
137
|
-
# defaultMessage: Rosso
|
|
138
|
-
msgid "Color_danger"
|
|
139
|
-
msgstr ""
|
|
140
|
-
|
|
141
|
-
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
142
|
-
# defaultMessage: Giallo
|
|
143
|
-
msgid "Color_warning"
|
|
144
|
-
msgstr ""
|
|
145
|
-
|
|
146
|
-
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
147
|
-
# defaultMessage: Arancione
|
|
148
|
-
msgid "Color_warning_orange"
|
|
149
|
-
msgstr ""
|
|
150
|
-
|
|
151
137
|
#: components/ItaliaTheme/View/EventoView/EventoContatti
|
|
152
138
|
# defaultMessage: Contatti
|
|
153
139
|
msgid "Contatti"
|
|
@@ -711,7 +697,7 @@ msgstr ""
|
|
|
711
697
|
msgid "VenuesSmall"
|
|
712
698
|
msgstr ""
|
|
713
699
|
|
|
714
|
-
#: components/ItaliaTheme/View/VenueView/
|
|
700
|
+
#: components/ItaliaTheme/View/VenueView/VenueMultimedia
|
|
715
701
|
# defaultMessage: Video
|
|
716
702
|
msgid "Video"
|
|
717
703
|
msgstr ""
|
|
@@ -1021,7 +1007,7 @@ msgstr ""
|
|
|
1021
1007
|
msgid "bando_data_pubblicazione"
|
|
1022
1008
|
msgstr ""
|
|
1023
1009
|
|
|
1024
|
-
#: components/ItaliaTheme/View/BandoView/
|
|
1010
|
+
#: components/ItaliaTheme/View/BandoView/BandoTextDestinatari
|
|
1025
1011
|
# defaultMessage: Destinatari del bando
|
|
1026
1012
|
msgid "bando_destinatari"
|
|
1027
1013
|
msgstr ""
|
|
@@ -1032,7 +1018,7 @@ msgid "bando_effective"
|
|
|
1032
1018
|
msgstr ""
|
|
1033
1019
|
|
|
1034
1020
|
#: components/ItaliaTheme/Blocks/Listing/BandiInEvidenceTemplate
|
|
1035
|
-
#: components/ItaliaTheme/View/BandoView/
|
|
1021
|
+
#: components/ItaliaTheme/View/BandoView/BandoTextEnte
|
|
1036
1022
|
# defaultMessage: Ente
|
|
1037
1023
|
msgid "bando_ente"
|
|
1038
1024
|
msgstr ""
|
|
@@ -1217,6 +1203,16 @@ msgstr ""
|
|
|
1217
1203
|
msgid "codice_ipa"
|
|
1218
1204
|
msgstr ""
|
|
1219
1205
|
|
|
1206
|
+
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
1207
|
+
# defaultMessage: Rosso
|
|
1208
|
+
msgid "color_danger"
|
|
1209
|
+
msgstr ""
|
|
1210
|
+
|
|
1211
|
+
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
1212
|
+
# defaultMessage: Arancione
|
|
1213
|
+
msgid "color_orange"
|
|
1214
|
+
msgstr ""
|
|
1215
|
+
|
|
1220
1216
|
#: components/ItaliaTheme/Blocks/ContactsBlock/Sidebar
|
|
1221
1217
|
#: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
|
|
1222
1218
|
# defaultMessage: Primario
|
|
@@ -1228,6 +1224,11 @@ msgstr ""
|
|
|
1228
1224
|
msgid "color_transparent"
|
|
1229
1225
|
msgstr ""
|
|
1230
1226
|
|
|
1227
|
+
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
1228
|
+
# defaultMessage: Giallo
|
|
1229
|
+
msgid "color_warning"
|
|
1230
|
+
msgstr ""
|
|
1231
|
+
|
|
1231
1232
|
#: components/ItaliaTheme/View/IncaricoView/IncaricoView
|
|
1232
1233
|
#: components/ItaliaTheme/View/PersonaView/PersonaDocumenti
|
|
1233
1234
|
#: components/ItaliaTheme/View/PersonaView/PersonaRuolo
|
|
@@ -1812,7 +1813,7 @@ msgstr ""
|
|
|
1812
1813
|
msgid "edit_social_links"
|
|
1813
1814
|
msgstr ""
|
|
1814
1815
|
|
|
1815
|
-
#: components/ItaliaTheme/View/VenueView/
|
|
1816
|
+
#: components/ItaliaTheme/View/VenueView/VenueElementiDiInteresse
|
|
1816
1817
|
# defaultMessage: Elementi di interesse
|
|
1817
1818
|
msgid "elementi_di_interesse"
|
|
1818
1819
|
msgstr ""
|
|
@@ -2368,7 +2369,7 @@ msgid "logo-subsite-alt"
|
|
|
2368
2369
|
msgstr ""
|
|
2369
2370
|
|
|
2370
2371
|
#: components/ItaliaTheme/View/PuntoDiContattoView/RelatedItemsChipsPDC
|
|
2371
|
-
#: components/ItaliaTheme/View/VenueView/
|
|
2372
|
+
#: components/ItaliaTheme/View/VenueView/VenueLuoghiCorrelati
|
|
2372
2373
|
# defaultMessage: Luoghi correlati
|
|
2373
2374
|
msgid "luoghi_correlati"
|
|
2374
2375
|
msgstr ""
|
|
@@ -3749,7 +3750,7 @@ msgstr ""
|
|
|
3749
3750
|
msgid "timeline_tempi_scadenze_validation_error"
|
|
3750
3751
|
msgstr ""
|
|
3751
3752
|
|
|
3752
|
-
#: components/ItaliaTheme/View/BandoView/
|
|
3753
|
+
#: components/ItaliaTheme/View/BandoView/BandoTextTipologia
|
|
3753
3754
|
# defaultMessage: Tipologia del bando
|
|
3754
3755
|
msgid "tipologia_bando"
|
|
3755
3756
|
msgstr ""
|
|
@@ -3760,7 +3761,7 @@ msgstr ""
|
|
|
3760
3761
|
msgid "tipologia_incarico"
|
|
3761
3762
|
msgstr ""
|
|
3762
3763
|
|
|
3763
|
-
#: components/ItaliaTheme/View/VenueView/
|
|
3764
|
+
#: components/ItaliaTheme/View/VenueView/VenueTipologia
|
|
3764
3765
|
# defaultMessage: Tipo di luogo
|
|
3765
3766
|
msgid "tipologia_luogo"
|
|
3766
3767
|
msgstr ""
|
|
@@ -71,6 +71,7 @@ msgstr "Show"
|
|
|
71
71
|
msgid "CardImageRight"
|
|
72
72
|
msgstr ""
|
|
73
73
|
|
|
74
|
+
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
74
75
|
#: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Sidebar
|
|
75
76
|
# defaultMessage: Dimensione immagine
|
|
76
77
|
msgid "CardImageSize"
|
|
@@ -118,21 +119,6 @@ msgstr "Click here to replace file"
|
|
|
118
119
|
msgid "Color"
|
|
119
120
|
msgstr ""
|
|
120
121
|
|
|
121
|
-
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
122
|
-
# defaultMessage: Rosso
|
|
123
|
-
msgid "Color_danger"
|
|
124
|
-
msgstr ""
|
|
125
|
-
|
|
126
|
-
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
127
|
-
# defaultMessage: Giallo
|
|
128
|
-
msgid "Color_warning"
|
|
129
|
-
msgstr ""
|
|
130
|
-
|
|
131
|
-
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
132
|
-
# defaultMessage: Arancione
|
|
133
|
-
msgid "Color_warning_orange"
|
|
134
|
-
msgstr ""
|
|
135
|
-
|
|
136
122
|
#: components/ItaliaTheme/View/EventoView/EventoContatti
|
|
137
123
|
# defaultMessage: Contatti
|
|
138
124
|
msgid "Contatti"
|
|
@@ -696,7 +682,7 @@ msgstr "View all"
|
|
|
696
682
|
msgid "VenuesSmall"
|
|
697
683
|
msgstr "Venues"
|
|
698
684
|
|
|
699
|
-
#: components/ItaliaTheme/View/VenueView/
|
|
685
|
+
#: components/ItaliaTheme/View/VenueView/VenueMultimedia
|
|
700
686
|
# defaultMessage: Video
|
|
701
687
|
msgid "Video"
|
|
702
688
|
msgstr "Video"
|
|
@@ -1006,7 +992,7 @@ msgstr "Expired"
|
|
|
1006
992
|
msgid "bando_data_pubblicazione"
|
|
1007
993
|
msgstr "Publication date"
|
|
1008
994
|
|
|
1009
|
-
#: components/ItaliaTheme/View/BandoView/
|
|
995
|
+
#: components/ItaliaTheme/View/BandoView/BandoTextDestinatari
|
|
1010
996
|
# defaultMessage: Destinatari del bando
|
|
1011
997
|
msgid "bando_destinatari"
|
|
1012
998
|
msgstr "Recipients of the competition notice"
|
|
@@ -1017,7 +1003,7 @@ msgid "bando_effective"
|
|
|
1017
1003
|
msgstr "Publication date"
|
|
1018
1004
|
|
|
1019
1005
|
#: components/ItaliaTheme/Blocks/Listing/BandiInEvidenceTemplate
|
|
1020
|
-
#: components/ItaliaTheme/View/BandoView/
|
|
1006
|
+
#: components/ItaliaTheme/View/BandoView/BandoTextEnte
|
|
1021
1007
|
# defaultMessage: Ente
|
|
1022
1008
|
msgid "bando_ente"
|
|
1023
1009
|
msgstr "Supplying authority"
|
|
@@ -1202,6 +1188,16 @@ msgstr "Close search"
|
|
|
1202
1188
|
msgid "codice_ipa"
|
|
1203
1189
|
msgstr ""
|
|
1204
1190
|
|
|
1191
|
+
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
1192
|
+
# defaultMessage: Rosso
|
|
1193
|
+
msgid "color_danger"
|
|
1194
|
+
msgstr ""
|
|
1195
|
+
|
|
1196
|
+
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
1197
|
+
# defaultMessage: Arancione
|
|
1198
|
+
msgid "color_orange"
|
|
1199
|
+
msgstr ""
|
|
1200
|
+
|
|
1205
1201
|
#: components/ItaliaTheme/Blocks/ContactsBlock/Sidebar
|
|
1206
1202
|
#: components/ItaliaTheme/Blocks/HighlightedContent/Sidebar
|
|
1207
1203
|
# defaultMessage: Primario
|
|
@@ -1213,6 +1209,11 @@ msgstr ""
|
|
|
1213
1209
|
msgid "color_transparent"
|
|
1214
1210
|
msgstr ""
|
|
1215
1211
|
|
|
1212
|
+
#: components/ItaliaTheme/Blocks/Alert/Sidebar
|
|
1213
|
+
# defaultMessage: Giallo
|
|
1214
|
+
msgid "color_warning"
|
|
1215
|
+
msgstr ""
|
|
1216
|
+
|
|
1216
1217
|
#: components/ItaliaTheme/View/IncaricoView/IncaricoView
|
|
1217
1218
|
#: components/ItaliaTheme/View/PersonaView/PersonaDocumenti
|
|
1218
1219
|
#: components/ItaliaTheme/View/PersonaView/PersonaRuolo
|
|
@@ -1797,7 +1798,7 @@ msgstr "Visibile"
|
|
|
1797
1798
|
msgid "edit_social_links"
|
|
1798
1799
|
msgstr ""
|
|
1799
1800
|
|
|
1800
|
-
#: components/ItaliaTheme/View/VenueView/
|
|
1801
|
+
#: components/ItaliaTheme/View/VenueView/VenueElementiDiInteresse
|
|
1801
1802
|
# defaultMessage: Elementi di interesse
|
|
1802
1803
|
msgid "elementi_di_interesse"
|
|
1803
1804
|
msgstr "Elements of interest"
|
|
@@ -2353,7 +2354,7 @@ msgid "logo-subsite-alt"
|
|
|
2353
2354
|
msgstr ""
|
|
2354
2355
|
|
|
2355
2356
|
#: components/ItaliaTheme/View/PuntoDiContattoView/RelatedItemsChipsPDC
|
|
2356
|
-
#: components/ItaliaTheme/View/VenueView/
|
|
2357
|
+
#: components/ItaliaTheme/View/VenueView/VenueLuoghiCorrelati
|
|
2357
2358
|
# defaultMessage: Luoghi correlati
|
|
2358
2359
|
msgid "luoghi_correlati"
|
|
2359
2360
|
msgstr ""
|
|
@@ -3734,7 +3735,7 @@ msgstr "Insert a value"
|
|
|
3734
3735
|
msgid "timeline_tempi_scadenze_validation_error"
|
|
3735
3736
|
msgstr ""
|
|
3736
3737
|
|
|
3737
|
-
#: components/ItaliaTheme/View/BandoView/
|
|
3738
|
+
#: components/ItaliaTheme/View/BandoView/BandoTextTipologia
|
|
3738
3739
|
# defaultMessage: Tipologia del bando
|
|
3739
3740
|
msgid "tipologia_bando"
|
|
3740
3741
|
msgstr "Type of call"
|
|
@@ -3745,7 +3746,7 @@ msgstr "Type of call"
|
|
|
3745
3746
|
msgid "tipologia_incarico"
|
|
3746
3747
|
msgstr ""
|
|
3747
3748
|
|
|
3748
|
-
#: components/ItaliaTheme/View/VenueView/
|
|
3749
|
+
#: components/ItaliaTheme/View/VenueView/VenueTipologia
|
|
3749
3750
|
# defaultMessage: Tipo di luogo
|
|
3750
3751
|
msgid "tipologia_luogo"
|
|
3751
3752
|
msgstr ""
|