design-comuni-plone-theme 11.9.1 → 11.10.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.
- package/.github/workflows/performance.yml +47 -0
- package/.yarn/cache/minipass-npm-5.0.0-c64fb63c92-425dab2887.zip +0 -0
- package/.yarn/cache/tar-npm-6.2.1-237800bb20-f1322768c9.zip +0 -0
- package/.yarn/cache/{volto-gdpr-privacy-npm-2.1.1-414b7e6a62-2246b94027.zip → volto-gdpr-privacy-npm-2.2.0-6be0f74d53-8a93254251.zip} +0 -0
- package/.yarn/cache/volto-slimheader-npm-0.1.1-6c4a32fae4-94bafa197c.zip +0 -0
- package/.yarn/install-state.gz +0 -0
- package/CHANGELOG.md +48 -0
- package/RELEASE.md +27 -0
- package/locales/de/LC_MESSAGES/volto.po +61 -36
- package/locales/en/LC_MESSAGES/volto.po +63 -38
- package/locales/es/LC_MESSAGES/volto.po +61 -36
- package/locales/fr/LC_MESSAGES/volto.po +62 -37
- package/locales/it/LC_MESSAGES/volto.po +61 -36
- package/locales/volto.pot +62 -37
- package/package.json +5 -3
- package/publiccode.yml +2 -2
- package/src/components/ItaliaTheme/AppExtras/TrackFocus.jsx +47 -0
- package/src/components/ItaliaTheme/Blocks/Accordion/View.jsx +1 -1
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/BodyWrapper.jsx +8 -3
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/BottomBody.jsx +25 -16
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Edit.jsx +10 -2
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/Sidebar.jsx +39 -3
- package/src/components/ItaliaTheme/Blocks/ArgumentsInEvidence/View.jsx +31 -16
- package/src/components/ItaliaTheme/Blocks/Calendar/Body.jsx +23 -59
- package/src/components/ItaliaTheme/Blocks/Common/SearchFilters/SelectFilter.jsx +9 -1
- package/src/components/ItaliaTheme/Blocks/EventSearch/DefaultFilters.js +5 -0
- package/src/components/ItaliaTheme/Blocks/IconBlocks/Block/ViewBlock.jsx +17 -0
- package/src/components/ItaliaTheme/Blocks/Listing/CardWithImage/CardWithImageDefault.jsx +182 -0
- package/src/components/ItaliaTheme/Blocks/Listing/CardWithImageTemplate.jsx +7 -173
- package/src/components/ItaliaTheme/Blocks/Listing/Commons/utils.js +0 -70
- package/src/components/ItaliaTheme/Blocks/Listing/PhotogalleryTemplate.jsx +24 -36
- package/src/components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault.jsx +177 -0
- package/src/components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateDefault.jsx +8 -170
- package/src/components/ItaliaTheme/Blocks/Listing/Slider/SlideItemDefault.jsx +65 -0
- package/src/components/ItaliaTheme/Blocks/Listing/SliderTemplate.jsx +62 -212
- package/src/components/ItaliaTheme/Blocks/VideoGallery/Body.jsx +10 -48
- package/src/components/ItaliaTheme/Blocks/VideoGallery/Edit.jsx +3 -2
- package/src/components/ItaliaTheme/Blocks/VideoGallery/View.jsx +3 -2
- package/src/components/ItaliaTheme/Footer/FooterNavigation.jsx +6 -0
- package/src/components/ItaliaTheme/Header/HeaderSlim/TertiaryMenu.jsx +34 -5
- package/src/components/ItaliaTheme/Icons/FontAwesomeIcon.jsx +2 -0
- package/src/components/ItaliaTheme/MegaMenu/MegaMenu.jsx +8 -2
- package/src/components/ItaliaTheme/MenuSecondary/MenuSecondary.jsx +3 -0
- package/src/components/ItaliaTheme/Slider/ButtonPlayPause.jsx +48 -0
- package/src/components/ItaliaTheme/Slider/CarouselWrapper.jsx +23 -0
- package/src/components/ItaliaTheme/Slider/NextArrow.jsx +31 -0
- package/src/components/ItaliaTheme/Slider/PrevArrow.jsx +33 -0
- package/src/components/ItaliaTheme/Slider/SingleSlideWrapper.jsx +39 -0
- package/src/components/ItaliaTheme/Slider/slider.js +203 -0
- package/src/components/ItaliaTheme/View/Commons/ContactLink.jsx +3 -2
- package/src/components/ItaliaTheme/View/Commons/Dates.jsx +12 -4
- package/src/components/ItaliaTheme/View/Commons/Gallery.jsx +13 -9
- package/src/components/ItaliaTheme/View/Commons/Metadata.jsx +1 -1
- package/src/components/ItaliaTheme/View/Commons/RenderBlocks.jsx +20 -7
- package/src/components/ItaliaTheme/View/DocumentoView/DocumentoDescrizione.jsx +15 -7
- package/src/components/ItaliaTheme/View/EventoView/EventoContattiOrganizzatoreEsterno.jsx +12 -1
- package/src/components/ItaliaTheme/View/EventoView/EventoLuoghi.jsx +7 -7
- package/src/components/ItaliaTheme/View/UOView/UOServices.jsx +1 -1
- package/src/components/ItaliaTheme/View/__tests__/ServizioMetadati.test.jsx +1 -1
- package/src/components/ItaliaTheme/index.js +7 -2
- package/src/config/Blocks/ListingOptions/cardWithImageTemplate.js +18 -2
- package/src/config/Blocks/ListingOptions/simpleCardTemplate.js +34 -17
- package/src/config/Blocks/ListingOptions/sliderTemplate.js +68 -11
- package/src/config/Blocks/listingVariations.js +8 -0
- package/src/config/italiaConfig.js +13 -2
- package/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx +5 -0
- package/src/customizations/volto/components/manage/Blocks/Search/components/SelectFacetFilterListEntry.jsx +43 -36
- package/src/customizations/volto/components/manage/UniversalLink/UniversalLink.jsx +8 -3
- package/src/customizations/volto/components/manage/Widgets/FileWidget.jsx +2 -2
- package/src/customizations/volto/components/theme/Sitemap/Sitemap.jsx +126 -0
- package/src/helpers/config.js +1 -1
- package/src/theme/ItaliaTheme/Blocks/_argumentsInEvidence.scss +4 -4
- package/src/theme/ItaliaTheme/Blocks/{_cardWithImageAndInEvidence.scss → _cardWithImage.scss} +63 -38
- package/src/theme/ItaliaTheme/Blocks/_iconBlocks.scss +7 -6
- package/src/theme/ItaliaTheme/Blocks/_inEvidenceTemplate.scss +123 -0
- package/src/theme/ItaliaTheme/Blocks/_simpleCardTemplate.scss +65 -67
- package/src/theme/ItaliaTheme/Blocks/_sliderTemplate.scss +81 -0
- package/src/theme/ItaliaTheme/Blocks/common/_searchBlockFilters.scss +16 -0
- package/src/theme/ItaliaTheme/Components/_cardPersona.scss +1 -1
- package/src/theme/ItaliaTheme/Components/_mobileMenu.scss +1 -1
- package/src/theme/ItaliaTheme/Components/_navigation.scss +15 -0
- package/src/theme/ItaliaTheme/Components/_tertiaryMenu.scss +6 -0
- package/src/theme/ItaliaTheme/Print/_all_pages.scss +33 -0
- package/src/theme/ItaliaTheme/Print/_page.scss +21 -0
- package/src/theme/ItaliaTheme/Print/_uo.scss +7 -2
- package/src/theme/ItaliaTheme/Views/_common.scss +4 -0
- package/src/theme/bootstrap-override/bootstrap-italia/_chips.scss +16 -1
- package/src/theme/bootstrap-override/bootstrap-italia/_footer.scss +2 -0
- package/src/theme/site.scss +4 -2
- package/.yarn/cache/nanoid-npm-3.3.4-3d250377d6-2fddd6dee9.zip +0 -0
- package/.yarn/cache/postcss-npm-8.4.16-7367383579-10eee25efd.zip +0 -0
- package/.yarn/cache/tar-npm-6.1.11-e6ac3cba9c-a04c07bb9e.zip +0 -0
- package/src/components/ItaliaTheme/Blocks/Listing/Commons/NextArrow.jsx +0 -10
- package/src/components/ItaliaTheme/Blocks/Listing/Commons/PrevArrow.jsx +0 -10
- package/src/theme/ItaliaTheme/Blocks/_inevidencetemplate.scss +0 -34
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: Docker build for latest performance test version
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches: [performance]
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build_develop:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
steps:
|
|
10
|
+
- uses: actions/checkout@v3
|
|
11
|
+
|
|
12
|
+
- name: Set up Docker Buildx
|
|
13
|
+
uses: docker/setup-buildx-action@v2
|
|
14
|
+
|
|
15
|
+
- name: Login to DockerHub
|
|
16
|
+
uses: docker/login-action@v2
|
|
17
|
+
with:
|
|
18
|
+
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
19
|
+
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
20
|
+
|
|
21
|
+
- name: Build and push Docker images
|
|
22
|
+
uses: docker/build-push-action@v4
|
|
23
|
+
with:
|
|
24
|
+
context: .
|
|
25
|
+
file: ./dockerfiles/Dockerfile
|
|
26
|
+
tags: redturtletech/io-comune-base:perf
|
|
27
|
+
pull: true
|
|
28
|
+
push: true
|
|
29
|
+
cache-from: type=registry,ref=redturtletech/io-comune-base:perf
|
|
30
|
+
cache-to: type=inline
|
|
31
|
+
build-args: |
|
|
32
|
+
ADDON_NAME=design-comuni-plone-theme
|
|
33
|
+
ADDON_PATH=design-comuni-plone-theme
|
|
34
|
+
VOLTO_VERSION=17.7.0
|
|
35
|
+
|
|
36
|
+
- name: Deploy to rancher
|
|
37
|
+
uses: redturtle/rancher-deploy-action@v0.2.0
|
|
38
|
+
with:
|
|
39
|
+
host: ${{ secrets.RANCHER_HOST }}
|
|
40
|
+
api-username: ${{ secrets.RANCHER_API_USERNAME }}
|
|
41
|
+
api-password: ${{ secrets.RANCHER_API_PASSWORD }}
|
|
42
|
+
cluster-id: ${{ secrets.RANCHER_CLUSTER_ID }}
|
|
43
|
+
project-id: ${{ secrets.RANCHER_PROJECT_ID }}
|
|
44
|
+
namespace: ${{ secrets.RANCHER_NAMESPACE_DEVELOP }}
|
|
45
|
+
workload: ${{ secrets.RANCHER_WORKLOAD_PERF }}
|
|
46
|
+
image: redturtletech/io-comune-base:perf
|
|
47
|
+
slack-hook-url: ${{ secrets.RANCHER_SLACK_HOOK_URL }}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [11.10.0](https://github.com/redturtle/design-comuni-plone-theme/compare/v11.9.1...v11.10.0) (2024-04-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* added appearance SimpleCard and ImageCard to listing slider template ([#512](https://github.com/redturtle/design-comuni-plone-theme/issues/512)) ([a37e985](https://github.com/redturtle/design-comuni-plone-theme/commit/a37e98590cd31b2c6be20865af614cef1e99bc24))
|
|
9
|
+
* added control panel to manage cookie banner ([#604](https://github.com/redturtle/design-comuni-plone-theme/issues/604)) ([47b9c70](https://github.com/redturtle/design-comuni-plone-theme/commit/47b9c70ac59f66a16b2cc9c435c1daf80c5661df))
|
|
10
|
+
* argomenti in Evidenza - Gestione sfondo, testo e sidebar ([#590](https://github.com/redturtle/design-comuni-plone-theme/issues/590)) ([0215448](https://github.com/redturtle/design-comuni-plone-theme/commit/0215448f7f16f27c83dc5547a8cff8f9db6097cd))
|
|
11
|
+
* configurable Slim header from control panel ([#598](https://github.com/redturtle/design-comuni-plone-theme/issues/598)) ([3edde55](https://github.com/redturtle/design-comuni-plone-theme/commit/3edde55d828bf2b50d59013f3d94b61e490e4561))
|
|
12
|
+
* new trackMouse component ([#568](https://github.com/redturtle/design-comuni-plone-theme/issues/568)) ([3db432a](https://github.com/redturtle/design-comuni-plone-theme/commit/3db432ad8ce74233446713fffcc6721a403ee6e9))
|
|
13
|
+
* selectFilter is now searchable for venue search in EventSearch ([#631](https://github.com/redturtle/design-comuni-plone-theme/issues/631)) ([93ecc0b](https://github.com/redturtle/design-comuni-plone-theme/commit/93ecc0b73b109f604a439c907d369a279dda4608))
|
|
14
|
+
* use config.settings.openExternalLinkInNewTab in UniversalLink ([#645](https://github.com/redturtle/design-comuni-plone-theme/issues/645)) ([7dd5bb1](https://github.com/redturtle/design-comuni-plone-theme/commit/7dd5bb181f3049be1152de2246f328917b4a105b))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* added aria-label for cardReadMore component in iconBlock ([#618](https://github.com/redturtle/design-comuni-plone-theme/issues/618)) ([77cfb05](https://github.com/redturtle/design-comuni-plone-theme/commit/77cfb059a1f1b03954a8637e319277d97263e3ef))
|
|
20
|
+
* added arrow icon to links in footerNavigation ([#641](https://github.com/redturtle/design-comuni-plone-theme/issues/641)) ([a957571](https://github.com/redturtle/design-comuni-plone-theme/commit/a957571a1b7a8fb028d218e0b9b4e25e24d2a485))
|
|
21
|
+
* added cursor pointer on chips that have links ([#643](https://github.com/redturtle/design-comuni-plone-theme/issues/643)) ([581f1b6](https://github.com/redturtle/design-comuni-plone-theme/commit/581f1b62129f6c2d128cb2ce5347481c1ba45b2a))
|
|
22
|
+
* added label for organizzatore esterno field ([#629](https://github.com/redturtle/design-comuni-plone-theme/issues/629)) ([b2c4e2d](https://github.com/redturtle/design-comuni-plone-theme/commit/b2c4e2d333082b27648dd9484a0dab61a57d4dba))
|
|
23
|
+
* added parameter to show footer links marker ([#658](https://github.com/redturtle/design-comuni-plone-theme/issues/658)) ([f5dc57d](https://github.com/redturtle/design-comuni-plone-theme/commit/f5dc57d28e3bfa43ecc3513d41be7a87cb21a2a1))
|
|
24
|
+
* calculation of prefix of fontawesome icon if prefix is in icon string ([#650](https://github.com/redturtle/design-comuni-plone-theme/issues/650)) ([10f5b69](https://github.com/redturtle/design-comuni-plone-theme/commit/10f5b69a3b36f87b4553e3db67c0f60809615af7))
|
|
25
|
+
* card servizi same height in ct UO ([#637](https://github.com/redturtle/design-comuni-plone-theme/issues/637)) ([d3d8689](https://github.com/redturtle/design-comuni-plone-theme/commit/d3d8689c96fa44201868b400c74dd561022beaee))
|
|
26
|
+
* changed aria-hidden to false in slider listing template ([#653](https://github.com/redturtle/design-comuni-plone-theme/issues/653)) ([62c93b6](https://github.com/redturtle/design-comuni-plone-theme/commit/62c93b6634704aae0554eaf804eca1b5496e18de))
|
|
27
|
+
* conditions for showing fields in ct documento ([a765cb9](https://github.com/redturtle/design-comuni-plone-theme/commit/a765cb9b21430fdaf939212862a4618e7ca93eb1))
|
|
28
|
+
* display item in evidence in tertiary-menu ([#644](https://github.com/redturtle/design-comuni-plone-theme/issues/644)) ([413e309](https://github.com/redturtle/design-comuni-plone-theme/commit/413e309683dde21cd93f012f68383492a4778b76))
|
|
29
|
+
* error generating contact link ([#657](https://github.com/redturtle/design-comuni-plone-theme/issues/657)) ([b9ef297](https://github.com/redturtle/design-comuni-plone-theme/commit/b9ef2977124b925dd0cfd527bcb151b9d1a86a1f))
|
|
30
|
+
* print minutes instead month in last modified info ([#633](https://github.com/redturtle/design-comuni-plone-theme/issues/633)) ([c77afc6](https://github.com/redturtle/design-comuni-plone-theme/commit/c77afc679c8e3fbb0fdedb0f68bda8af40b6f27d))
|
|
31
|
+
* print styles for page ct and text editor ([#630](https://github.com/redturtle/design-comuni-plone-theme/issues/630)) ([c051454](https://github.com/redturtle/design-comuni-plone-theme/commit/c051454fb4caebc3a35fa5130247c1edd6c9acb2))
|
|
32
|
+
* remove exdates from additionalDates in recurrences for ct Event ([#638](https://github.com/redturtle/design-comuni-plone-theme/issues/638)) ([266bc3d](https://github.com/redturtle/design-comuni-plone-theme/commit/266bc3d081210c9b41db50348d5c9e86c4428d76))
|
|
33
|
+
* removed bottom line in accordion block ([#655](https://github.com/redturtle/design-comuni-plone-theme/issues/655)) ([9c9882d](https://github.com/redturtle/design-comuni-plone-theme/commit/9c9882d8a6ce62537fa60b346a9c9944ffdf3a2c))
|
|
34
|
+
* removed cursor pointer from service status chip ([#640](https://github.com/redturtle/design-comuni-plone-theme/issues/640)) ([0c5ed55](https://github.com/redturtle/design-comuni-plone-theme/commit/0c5ed55df8723b5959072f78db07f2fed22bbaf5))
|
|
35
|
+
* sitemap in multilingual sites was erroring ([#639](https://github.com/redturtle/design-comuni-plone-theme/issues/639)) ([c86add5](https://github.com/redturtle/design-comuni-plone-theme/commit/c86add5490350d96645c813a3b8ba76589775470))
|
|
36
|
+
* slideItemDefault translations ([e4c128e](https://github.com/redturtle/design-comuni-plone-theme/commit/e4c128eddbaaa005f9694e8a53cdffcb8630cf2b))
|
|
37
|
+
* view luoghi se c'è solo il nome della sede ([#649](https://github.com/redturtle/design-comuni-plone-theme/issues/649)) ([ba4eef4](https://github.com/redturtle/design-comuni-plone-theme/commit/ba4eef480ea01a9d4c1fda746014366cefa32aa3))
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Maintenance
|
|
41
|
+
|
|
42
|
+
* **deps:** bump postcss from 7.0.39 to 8.4.31 ([#656](https://github.com/redturtle/design-comuni-plone-theme/issues/656)) ([4ad67ad](https://github.com/redturtle/design-comuni-plone-theme/commit/4ad67ad9b0e973cce88a883d49e20f63ac91c9a3))
|
|
43
|
+
* **deps:** bump tar from 6.1.11 to 6.2.1 ([#648](https://github.com/redturtle/design-comuni-plone-theme/issues/648)) ([cd782d9](https://github.com/redturtle/design-comuni-plone-theme/commit/cd782d9431eac9b71dbc8b1d4b45de85ee1e19a3))
|
|
44
|
+
* updated volto-slim-header to fix bug in controlpanel ([be44a36](https://github.com/redturtle/design-comuni-plone-theme/commit/be44a36e494020acf7b05bbdbe54d8a4641d3911))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Documentation
|
|
48
|
+
|
|
49
|
+
* updated publiccode and release log ([7569df7](https://github.com/redturtle/design-comuni-plone-theme/commit/7569df73437af05bad97855157119ae988ccfced))
|
|
50
|
+
|
|
3
51
|
## [11.9.1](https://github.com/redturtle/design-comuni-plone-theme/compare/v11.9.0...v11.9.1) (2024-04-03)
|
|
4
52
|
|
|
5
53
|
|
package/RELEASE.md
CHANGED
|
@@ -41,6 +41,33 @@
|
|
|
41
41
|
- ...
|
|
42
42
|
-->
|
|
43
43
|
|
|
44
|
+
## Versione 11.10.0 (17/04/2024)
|
|
45
|
+
|
|
46
|
+
### Migliorie
|
|
47
|
+
|
|
48
|
+
- Nel blocco Argomenti in Evidenza, è stata rimossa l'obbligatorietà di aggiungere una card argomento, ora si possono inserire anche solo le etichette.
|
|
49
|
+
- Aggiunta la possibilità di inserire testo nel filtro luogo nel blocco Ricerca Eventi.
|
|
50
|
+
- Le opzioni del menu a tendina per il filtro luogo nel blocco Ricerca Eventi sono ordinate alfabeticamente.
|
|
51
|
+
- Il focus quando un elemento (link o pulsante) è cliccato con il mouse non ha più il bordo giallo/arancione.
|
|
52
|
+
- Migliorati gli stili per la stampa del CT pagina.
|
|
53
|
+
|
|
54
|
+
### Novità
|
|
55
|
+
|
|
56
|
+
- Ora i link in testata nell'header slim sono configurabili da pannello di controllo.
|
|
57
|
+
- Nel template Slider del blocco elenco, ora è possibile scegliere l'aspetto degli elementi dello slider (default: slide semplice con immagine e titolo cliccabile, Card semplice, Card con immagine).
|
|
58
|
+
- Nel blocco Argomenti in Evidenza sono state aggiunte due nuove proprietà, una permette di allineare gli "Altri argomenti" al centro e la seconda serve a nascondere o meno il bottone "Vedi tutti" che punta alla pagina argomenti.
|
|
59
|
+
|
|
60
|
+
### Fix
|
|
61
|
+
|
|
62
|
+
- Nel blocco Argomenti in Evidenza se non ci sono card ma etichette argomento, il blocco non renderizza più lo sfondo per un maggiore contrasto con le etichette, di conseguenza il titolo del blocco rimane nero e non bianco.
|
|
63
|
+
- Aggiunto il titolo per la sezione "Organizzatore esterno" quando il campo è compilato nel tipo di contenuto Evento.
|
|
64
|
+
- I chip che non hanno collegamenti non si comportano più come link al posizionamento del mouse.
|
|
65
|
+
- Sistemato un problema nella vista del CT Evento, che mostrava tra le date aggiuntive della ricorrenza anche le date escluse.
|
|
66
|
+
- Sistemato un problema per cui la visualizzazione della sitemap in presenza di un sito multilingua generava errore.
|
|
67
|
+
- Migliorata l'accessibilità dei link nel footer.
|
|
68
|
+
- Migliorata l'accessibilità del blocco elenco nella variazione Slider.
|
|
69
|
+
- Migliorati gli stili del blocco accordion.
|
|
70
|
+
|
|
44
71
|
## Versione 11.9.1 (03/04/2024)
|
|
45
72
|
|
|
46
73
|
### Fix
|
|
@@ -51,6 +51,7 @@ msgid "Allow Externals"
|
|
|
51
51
|
msgstr ""
|
|
52
52
|
|
|
53
53
|
#: config/Blocks/ListingOptions/simpleCardTemplate
|
|
54
|
+
#: config/Blocks/ListingOptions/sliderTemplate
|
|
54
55
|
# defaultMessage: Aspetto
|
|
55
56
|
msgid "Aspetto"
|
|
56
57
|
msgstr ""
|
|
@@ -75,7 +76,7 @@ msgstr ""
|
|
|
75
76
|
msgid "Block style"
|
|
76
77
|
msgstr ""
|
|
77
78
|
|
|
78
|
-
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/
|
|
79
|
+
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
|
|
79
80
|
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
|
|
80
81
|
# defaultMessage: Vedi
|
|
81
82
|
msgid "Card detail label"
|
|
@@ -459,9 +460,8 @@ msgstr ""
|
|
|
459
460
|
msgid "Path filter filtro"
|
|
460
461
|
msgstr ""
|
|
461
462
|
|
|
462
|
-
#: components/ItaliaTheme/
|
|
463
|
-
|
|
464
|
-
# defaultMessage: Metti in pausa
|
|
463
|
+
#: components/ItaliaTheme/Slider/ButtonPlayPause
|
|
464
|
+
# defaultMessage: Seleziona per mettere in pausa lo slider
|
|
465
465
|
msgid "Pause slider"
|
|
466
466
|
msgstr "Pause"
|
|
467
467
|
|
|
@@ -476,9 +476,8 @@ msgstr ""
|
|
|
476
476
|
msgid "Piccolo"
|
|
477
477
|
msgstr ""
|
|
478
478
|
|
|
479
|
-
#: components/ItaliaTheme/
|
|
480
|
-
|
|
481
|
-
# defaultMessage: Play
|
|
479
|
+
#: components/ItaliaTheme/Slider/ButtonPlayPause
|
|
480
|
+
# defaultMessage: Seleziona per riprodurre lo slider
|
|
482
481
|
msgid "Play slider"
|
|
483
482
|
msgstr ""
|
|
484
483
|
|
|
@@ -1112,26 +1111,21 @@ msgstr ""
|
|
|
1112
1111
|
msgid "calendarBlockSidebarTitle"
|
|
1113
1112
|
msgstr ""
|
|
1114
1113
|
|
|
1115
|
-
#: components/ItaliaTheme/Blocks/Calendar/Body
|
|
1116
|
-
# defaultMessage: Prossimi eventi
|
|
1117
|
-
msgid "calendar_next_arrow"
|
|
1118
|
-
msgstr ""
|
|
1119
|
-
|
|
1120
1114
|
#: components/ItaliaTheme/Blocks/Calendar/Body
|
|
1121
1115
|
# defaultMessage: Nessun evento disponibile al momento
|
|
1122
1116
|
msgid "calendar_no_results"
|
|
1123
1117
|
msgstr ""
|
|
1124
1118
|
|
|
1125
|
-
#: components/ItaliaTheme/Blocks/Calendar/Body
|
|
1126
|
-
# defaultMessage: Eventi precedenti
|
|
1127
|
-
msgid "calendar_prev_arrow"
|
|
1128
|
-
msgstr ""
|
|
1129
|
-
|
|
1130
1119
|
#: components/ItaliaTheme/manage/Widgets/CanaleDigitaleWidget
|
|
1131
1120
|
# defaultMessage: Accedere al servizio
|
|
1132
1121
|
msgid "canale_digitale_widget_title"
|
|
1133
1122
|
msgstr ""
|
|
1134
1123
|
|
|
1124
|
+
#: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Sidebar
|
|
1125
|
+
# defaultMessage: Aggiungi un argomento da visualizzare sulla card.
|
|
1126
|
+
msgid "cardDescription"
|
|
1127
|
+
msgstr ""
|
|
1128
|
+
|
|
1135
1129
|
#: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Sidebar
|
|
1136
1130
|
# defaultMessage: Seleziona l'immagine da mostrare
|
|
1137
1131
|
msgid "cardImage"
|
|
@@ -1153,6 +1147,21 @@ msgstr ""
|
|
|
1153
1147
|
msgid "card_width_image"
|
|
1154
1148
|
msgstr ""
|
|
1155
1149
|
|
|
1150
|
+
#: components/ItaliaTheme/Slider/CarouselWrapper
|
|
1151
|
+
# defaultMessage: Carosello
|
|
1152
|
+
msgid "carousel"
|
|
1153
|
+
msgstr ""
|
|
1154
|
+
|
|
1155
|
+
#: components/ItaliaTheme/Blocks/Listing/SliderTemplate
|
|
1156
|
+
# defaultMessage: Sei attualmente in un carosello, per navigare usa le frecce sinistra e destra
|
|
1157
|
+
msgid "carousel-item-aria-label"
|
|
1158
|
+
msgstr ""
|
|
1159
|
+
|
|
1160
|
+
#: components/ItaliaTheme/Slider/SingleSlideWrapper
|
|
1161
|
+
# defaultMessage: Slide
|
|
1162
|
+
msgid "carouselSlide"
|
|
1163
|
+
msgstr ""
|
|
1164
|
+
|
|
1156
1165
|
#: components/ItaliaTheme/View/CartellaModulisticaView/CartellaModulisticaView
|
|
1157
1166
|
# defaultMessage: Formati scaricabili
|
|
1158
1167
|
msgid "cartellamodulistica_formati_scaricabili"
|
|
@@ -1168,6 +1177,11 @@ msgstr ""
|
|
|
1168
1177
|
msgid "category_icon"
|
|
1169
1178
|
msgstr ""
|
|
1170
1179
|
|
|
1180
|
+
#: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Sidebar
|
|
1181
|
+
# defaultMessage: Allinea gli argomenti al centro
|
|
1182
|
+
msgid "centerAlignment"
|
|
1183
|
+
msgstr ""
|
|
1184
|
+
|
|
1171
1185
|
#: components/ItaliaTheme/Blocks/VideoGallery/Sidebar
|
|
1172
1186
|
# defaultMessage: Link al canale
|
|
1173
1187
|
msgid "channel_link"
|
|
@@ -2220,6 +2234,11 @@ msgstr ""
|
|
|
2220
2234
|
msgid "grid-gallery-max-items-exceeded"
|
|
2221
2235
|
msgstr ""
|
|
2222
2236
|
|
|
2237
|
+
#: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Sidebar
|
|
2238
|
+
# defaultMessage: Nascondi pulsante "Vedi tutti"
|
|
2239
|
+
msgid "hideButtonShowAll"
|
|
2240
|
+
msgstr ""
|
|
2241
|
+
|
|
2223
2242
|
#: config/Blocks/ListingOptions/utils
|
|
2224
2243
|
# defaultMessage: Nascondi le date
|
|
2225
2244
|
msgid "hide_dates"
|
|
@@ -2652,6 +2671,7 @@ msgstr ""
|
|
|
2652
2671
|
msgid "openAccordion"
|
|
2653
2672
|
msgstr ""
|
|
2654
2673
|
|
|
2674
|
+
#: components/ItaliaTheme/Blocks/Listing/Slider/SlideItemDefault
|
|
2655
2675
|
#: components/ItaliaTheme/Blocks/Listing/SliderTemplate
|
|
2656
2676
|
# defaultMessage: Apri il link
|
|
2657
2677
|
msgid "openLink"
|
|
@@ -2743,6 +2763,11 @@ msgstr ""
|
|
|
2743
2763
|
msgid "organizzato_da"
|
|
2744
2764
|
msgstr ""
|
|
2745
2765
|
|
|
2766
|
+
#: components/ItaliaTheme/View/EventoView/EventoContattiOrganizzatoreEsterno
|
|
2767
|
+
# defaultMessage: Organizzatore
|
|
2768
|
+
msgid "organizzatore"
|
|
2769
|
+
msgstr ""
|
|
2770
|
+
|
|
2746
2771
|
#: components/ItaliaTheme/View/Commons/TrasparenzaFields
|
|
2747
2772
|
#: components/ItaliaTheme/View/TrasparenzaView/DettagliProcedimentiView
|
|
2748
2773
|
# defaultMessage: Organo competente adozione provvedimento finale
|
|
@@ -2836,7 +2861,7 @@ msgstr ""
|
|
|
2836
2861
|
msgid "playStoreLink"
|
|
2837
2862
|
msgstr ""
|
|
2838
2863
|
|
|
2839
|
-
#: components/ItaliaTheme/
|
|
2864
|
+
#: components/ItaliaTheme/Slider/PrevArrow
|
|
2840
2865
|
# defaultMessage: Precedente
|
|
2841
2866
|
msgid "precedente"
|
|
2842
2867
|
msgstr ""
|
|
@@ -2862,7 +2887,7 @@ msgstr ""
|
|
|
2862
2887
|
msgid "provvedimento_finale"
|
|
2863
2888
|
msgstr ""
|
|
2864
2889
|
|
|
2865
|
-
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/
|
|
2890
|
+
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
|
|
2866
2891
|
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
|
|
2867
2892
|
# defaultMessage: Data di pubblicazione
|
|
2868
2893
|
msgid "publication_date"
|
|
@@ -3696,6 +3721,21 @@ msgstr ""
|
|
|
3696
3721
|
msgid "slideDot"
|
|
3697
3722
|
msgstr ""
|
|
3698
3723
|
|
|
3724
|
+
#: config/Blocks/ListingOptions/sliderTemplate
|
|
3725
|
+
# defaultMessage: Qui puoi selezionare, per il template 'Slider', un aspetto diverso da quello di default per gli elementi mostrati nello slider.
|
|
3726
|
+
msgid "slider_listing_appearance_description"
|
|
3727
|
+
msgstr ""
|
|
3728
|
+
|
|
3729
|
+
#: config/Blocks/ListingOptions/sliderTemplate
|
|
3730
|
+
# defaultMessage: Card con immagine
|
|
3731
|
+
msgid "slider_listing_appearance_imagecard"
|
|
3732
|
+
msgstr ""
|
|
3733
|
+
|
|
3734
|
+
#: config/Blocks/ListingOptions/sliderTemplate
|
|
3735
|
+
# defaultMessage: Card semplice
|
|
3736
|
+
msgid "slider_listing_appearance_simplecard"
|
|
3737
|
+
msgstr ""
|
|
3738
|
+
|
|
3699
3739
|
#: config/Blocks/ListingOptions/sliderTemplate
|
|
3700
3740
|
# defaultMessage: N° slide da mostrare
|
|
3701
3741
|
msgid "slidesToShow"
|
|
@@ -3837,7 +3877,7 @@ msgstr ""
|
|
|
3837
3877
|
msgid "subjects"
|
|
3838
3878
|
msgstr ""
|
|
3839
3879
|
|
|
3840
|
-
#: components/ItaliaTheme/
|
|
3880
|
+
#: components/ItaliaTheme/Slider/NextArrow
|
|
3841
3881
|
# defaultMessage: Successivo
|
|
3842
3882
|
msgid "successivo"
|
|
3843
3883
|
msgstr ""
|
|
@@ -4054,7 +4094,7 @@ msgstr ""
|
|
|
4054
4094
|
msgid "uo_type"
|
|
4055
4095
|
msgstr ""
|
|
4056
4096
|
|
|
4057
|
-
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/
|
|
4097
|
+
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
|
|
4058
4098
|
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
|
|
4059
4099
|
# defaultMessage: Data di aggiornamento
|
|
4060
4100
|
msgid "update_date"
|
|
@@ -4080,21 +4120,6 @@ msgstr ""
|
|
|
4080
4120
|
msgid "venues"
|
|
4081
4121
|
msgstr ""
|
|
4082
4122
|
|
|
4083
|
-
#: components/ItaliaTheme/Blocks/VideoGallery/Body
|
|
4084
|
-
# defaultMessage: Prossimo video
|
|
4085
|
-
msgid "videogallery_next_arrow"
|
|
4086
|
-
msgstr ""
|
|
4087
|
-
|
|
4088
|
-
#: components/ItaliaTheme/Blocks/VideoGallery/Body
|
|
4089
|
-
# defaultMessage: Video precedente
|
|
4090
|
-
msgid "videogallery_prev_arrow"
|
|
4091
|
-
msgstr ""
|
|
4092
|
-
|
|
4093
|
-
#: components/ItaliaTheme/Blocks/Listing/SliderTemplate
|
|
4094
|
-
# defaultMessage: Sei attualmente in un carosello, per navigare usa le frecce sinistra e destra
|
|
4095
|
-
msgid "viewImage"
|
|
4096
|
-
msgstr ""
|
|
4097
|
-
|
|
4098
4123
|
#: components/ItaliaTheme/Blocks/ArgumentsInEvidence/BottomBody
|
|
4099
4124
|
# defaultMessage: Vedi tutti
|
|
4100
4125
|
msgid "view_all"
|
|
@@ -36,6 +36,7 @@ msgid "Allow Externals"
|
|
|
36
36
|
msgstr "Accept external URL to embed"
|
|
37
37
|
|
|
38
38
|
#: config/Blocks/ListingOptions/simpleCardTemplate
|
|
39
|
+
#: config/Blocks/ListingOptions/sliderTemplate
|
|
39
40
|
# defaultMessage: Aspetto
|
|
40
41
|
msgid "Aspetto"
|
|
41
42
|
msgstr ""
|
|
@@ -60,7 +61,7 @@ msgstr ""
|
|
|
60
61
|
msgid "Block style"
|
|
61
62
|
msgstr ""
|
|
62
63
|
|
|
63
|
-
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/
|
|
64
|
+
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
|
|
64
65
|
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
|
|
65
66
|
# defaultMessage: Vedi
|
|
66
67
|
msgid "Card detail label"
|
|
@@ -444,9 +445,8 @@ msgstr "Page"
|
|
|
444
445
|
msgid "Path filter filtro"
|
|
445
446
|
msgstr ""
|
|
446
447
|
|
|
447
|
-
#: components/ItaliaTheme/
|
|
448
|
-
|
|
449
|
-
# defaultMessage: Metti in pausa
|
|
448
|
+
#: components/ItaliaTheme/Slider/ButtonPlayPause
|
|
449
|
+
# defaultMessage: Seleziona per mettere in pausa lo slider
|
|
450
450
|
msgid "Pause slider"
|
|
451
451
|
msgstr "Pause"
|
|
452
452
|
|
|
@@ -461,9 +461,8 @@ msgstr ""
|
|
|
461
461
|
msgid "Piccolo"
|
|
462
462
|
msgstr ""
|
|
463
463
|
|
|
464
|
-
#: components/ItaliaTheme/
|
|
465
|
-
|
|
466
|
-
# defaultMessage: Play
|
|
464
|
+
#: components/ItaliaTheme/Slider/ButtonPlayPause
|
|
465
|
+
# defaultMessage: Seleziona per riprodurre lo slider
|
|
467
466
|
msgid "Play slider"
|
|
468
467
|
msgstr "Play"
|
|
469
468
|
|
|
@@ -1097,26 +1096,21 @@ msgstr "Navigation path"
|
|
|
1097
1096
|
msgid "calendarBlockSidebarTitle"
|
|
1098
1097
|
msgstr ""
|
|
1099
1098
|
|
|
1100
|
-
#: components/ItaliaTheme/Blocks/Calendar/Body
|
|
1101
|
-
# defaultMessage: Prossimi eventi
|
|
1102
|
-
msgid "calendar_next_arrow"
|
|
1103
|
-
msgstr ""
|
|
1104
|
-
|
|
1105
1099
|
#: components/ItaliaTheme/Blocks/Calendar/Body
|
|
1106
1100
|
# defaultMessage: Nessun evento disponibile al momento
|
|
1107
1101
|
msgid "calendar_no_results"
|
|
1108
1102
|
msgstr ""
|
|
1109
1103
|
|
|
1110
|
-
#: components/ItaliaTheme/Blocks/Calendar/Body
|
|
1111
|
-
# defaultMessage: Eventi precedenti
|
|
1112
|
-
msgid "calendar_prev_arrow"
|
|
1113
|
-
msgstr ""
|
|
1114
|
-
|
|
1115
1104
|
#: components/ItaliaTheme/manage/Widgets/CanaleDigitaleWidget
|
|
1116
1105
|
# defaultMessage: Accedere al servizio
|
|
1117
1106
|
msgid "canale_digitale_widget_title"
|
|
1118
1107
|
msgstr ""
|
|
1119
1108
|
|
|
1109
|
+
#: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Sidebar
|
|
1110
|
+
# defaultMessage: Aggiungi un argomento da visualizzare sulla card.
|
|
1111
|
+
msgid "cardDescription"
|
|
1112
|
+
msgstr "Add a argument to display on the card."
|
|
1113
|
+
|
|
1120
1114
|
#: components/ItaliaTheme/Blocks/TextCard/CardWithImage/Sidebar
|
|
1121
1115
|
# defaultMessage: Seleziona l'immagine da mostrare
|
|
1122
1116
|
msgid "cardImage"
|
|
@@ -1138,6 +1132,21 @@ msgstr "Read more"
|
|
|
1138
1132
|
msgid "card_width_image"
|
|
1139
1133
|
msgstr ""
|
|
1140
1134
|
|
|
1135
|
+
#: components/ItaliaTheme/Slider/CarouselWrapper
|
|
1136
|
+
# defaultMessage: Carosello
|
|
1137
|
+
msgid "carousel"
|
|
1138
|
+
msgstr ""
|
|
1139
|
+
|
|
1140
|
+
#: components/ItaliaTheme/Blocks/Listing/SliderTemplate
|
|
1141
|
+
# defaultMessage: Sei attualmente in un carosello, per navigare usa le frecce sinistra e destra
|
|
1142
|
+
msgid "carousel-item-aria-label"
|
|
1143
|
+
msgstr ""
|
|
1144
|
+
|
|
1145
|
+
#: components/ItaliaTheme/Slider/SingleSlideWrapper
|
|
1146
|
+
# defaultMessage: Slide
|
|
1147
|
+
msgid "carouselSlide"
|
|
1148
|
+
msgstr ""
|
|
1149
|
+
|
|
1141
1150
|
#: components/ItaliaTheme/View/CartellaModulisticaView/CartellaModulisticaView
|
|
1142
1151
|
# defaultMessage: Formati scaricabili
|
|
1143
1152
|
msgid "cartellamodulistica_formati_scaricabili"
|
|
@@ -1153,6 +1162,11 @@ msgstr "Special cases"
|
|
|
1153
1162
|
msgid "category_icon"
|
|
1154
1163
|
msgstr "Category icon"
|
|
1155
1164
|
|
|
1165
|
+
#: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Sidebar
|
|
1166
|
+
# defaultMessage: Allinea gli argomenti al centro
|
|
1167
|
+
msgid "centerAlignment"
|
|
1168
|
+
msgstr "Align topics in the center"
|
|
1169
|
+
|
|
1156
1170
|
#: components/ItaliaTheme/Blocks/VideoGallery/Sidebar
|
|
1157
1171
|
# defaultMessage: Link al canale
|
|
1158
1172
|
msgid "channel_link"
|
|
@@ -2205,6 +2219,11 @@ msgstr "View previous image"
|
|
|
2205
2219
|
msgid "grid-gallery-max-items-exceeded"
|
|
2206
2220
|
msgstr ""
|
|
2207
2221
|
|
|
2222
|
+
#: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Sidebar
|
|
2223
|
+
# defaultMessage: Nascondi pulsante "Vedi tutti"
|
|
2224
|
+
msgid "hideButtonShowAll"
|
|
2225
|
+
msgstr "Hide "See all" button"
|
|
2226
|
+
|
|
2208
2227
|
#: config/Blocks/ListingOptions/utils
|
|
2209
2228
|
# defaultMessage: Nascondi le date
|
|
2210
2229
|
msgid "hide_dates"
|
|
@@ -2637,6 +2656,7 @@ msgstr "Press release number"
|
|
|
2637
2656
|
msgid "openAccordion"
|
|
2638
2657
|
msgstr "Open the accordion"
|
|
2639
2658
|
|
|
2659
|
+
#: components/ItaliaTheme/Blocks/Listing/Slider/SlideItemDefault
|
|
2640
2660
|
#: components/ItaliaTheme/Blocks/Listing/SliderTemplate
|
|
2641
2661
|
# defaultMessage: Apri il link
|
|
2642
2662
|
msgid "openLink"
|
|
@@ -2726,7 +2746,12 @@ msgstr "Order by"
|
|
|
2726
2746
|
#: components/ItaliaTheme/View/EventoView/EventoContattiOrganizzatoreInterno
|
|
2727
2747
|
# defaultMessage: Organizzato da
|
|
2728
2748
|
msgid "organizzato_da"
|
|
2729
|
-
msgstr ""
|
|
2749
|
+
msgstr "Organized by"
|
|
2750
|
+
|
|
2751
|
+
#: components/ItaliaTheme/View/EventoView/EventoContattiOrganizzatoreEsterno
|
|
2752
|
+
# defaultMessage: Organizzatore
|
|
2753
|
+
msgid "organizzatore"
|
|
2754
|
+
msgstr "Organizer"
|
|
2730
2755
|
|
|
2731
2756
|
#: components/ItaliaTheme/View/Commons/TrasparenzaFields
|
|
2732
2757
|
#: components/ItaliaTheme/View/TrasparenzaView/DettagliProcedimentiView
|
|
@@ -2821,7 +2846,7 @@ msgstr "Help text"
|
|
|
2821
2846
|
msgid "playStoreLink"
|
|
2822
2847
|
msgstr ""
|
|
2823
2848
|
|
|
2824
|
-
#: components/ItaliaTheme/
|
|
2849
|
+
#: components/ItaliaTheme/Slider/PrevArrow
|
|
2825
2850
|
# defaultMessage: Precedente
|
|
2826
2851
|
msgid "precedente"
|
|
2827
2852
|
msgstr ""
|
|
@@ -2847,7 +2872,7 @@ msgstr "Online procedure"
|
|
|
2847
2872
|
msgid "provvedimento_finale"
|
|
2848
2873
|
msgstr "Final provision"
|
|
2849
2874
|
|
|
2850
|
-
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/
|
|
2875
|
+
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
|
|
2851
2876
|
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
|
|
2852
2877
|
# defaultMessage: Data di pubblicazione
|
|
2853
2878
|
msgid "publication_date"
|
|
@@ -3396,7 +3421,7 @@ msgstr "Headquarters of"
|
|
|
3396
3421
|
#: components/ItaliaTheme/Blocks/ArgumentsInEvidence/Sidebar
|
|
3397
3422
|
# defaultMessage: Seleziona gli altri argomenti
|
|
3398
3423
|
msgid "selectOtherArguments"
|
|
3399
|
-
msgstr ""
|
|
3424
|
+
msgstr "Select other topics"
|
|
3400
3425
|
|
|
3401
3426
|
#: components/ItaliaTheme/Header/HeaderSearch/SearchModal
|
|
3402
3427
|
# defaultMessage: Seleziona gli argomenti che vuoi cercare
|
|
@@ -3681,6 +3706,21 @@ msgstr ""
|
|
|
3681
3706
|
msgid "slideDot"
|
|
3682
3707
|
msgstr ""
|
|
3683
3708
|
|
|
3709
|
+
#: config/Blocks/ListingOptions/sliderTemplate
|
|
3710
|
+
# defaultMessage: Qui puoi selezionare, per il template 'Slider', un aspetto diverso da quello di default per gli elementi mostrati nello slider.
|
|
3711
|
+
msgid "slider_listing_appearance_description"
|
|
3712
|
+
msgstr ""
|
|
3713
|
+
|
|
3714
|
+
#: config/Blocks/ListingOptions/sliderTemplate
|
|
3715
|
+
# defaultMessage: Card con immagine
|
|
3716
|
+
msgid "slider_listing_appearance_imagecard"
|
|
3717
|
+
msgstr ""
|
|
3718
|
+
|
|
3719
|
+
#: config/Blocks/ListingOptions/sliderTemplate
|
|
3720
|
+
# defaultMessage: Card semplice
|
|
3721
|
+
msgid "slider_listing_appearance_simplecard"
|
|
3722
|
+
msgstr ""
|
|
3723
|
+
|
|
3684
3724
|
#: config/Blocks/ListingOptions/sliderTemplate
|
|
3685
3725
|
# defaultMessage: N° slide da mostrare
|
|
3686
3726
|
msgid "slidesToShow"
|
|
@@ -3822,7 +3862,7 @@ msgstr ""
|
|
|
3822
3862
|
msgid "subjects"
|
|
3823
3863
|
msgstr "Tags"
|
|
3824
3864
|
|
|
3825
|
-
#: components/ItaliaTheme/
|
|
3865
|
+
#: components/ItaliaTheme/Slider/NextArrow
|
|
3826
3866
|
# defaultMessage: Successivo
|
|
3827
3867
|
msgid "successivo"
|
|
3828
3868
|
msgstr ""
|
|
@@ -4039,7 +4079,7 @@ msgstr "Search for a structure"
|
|
|
4039
4079
|
msgid "uo_type"
|
|
4040
4080
|
msgstr "Type"
|
|
4041
4081
|
|
|
4042
|
-
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/
|
|
4082
|
+
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/Card/SimpleCardDefault
|
|
4043
4083
|
#: components/ItaliaTheme/Blocks/Listing/SimpleCard/SimpleCardTemplateOneForRow
|
|
4044
4084
|
# defaultMessage: Data di aggiornamento
|
|
4045
4085
|
msgid "update_date"
|
|
@@ -4065,21 +4105,6 @@ msgstr "Change in balance sheet"
|
|
|
4065
4105
|
msgid "venues"
|
|
4066
4106
|
msgstr "Venues"
|
|
4067
4107
|
|
|
4068
|
-
#: components/ItaliaTheme/Blocks/VideoGallery/Body
|
|
4069
|
-
# defaultMessage: Prossimo video
|
|
4070
|
-
msgid "videogallery_next_arrow"
|
|
4071
|
-
msgstr "Next video"
|
|
4072
|
-
|
|
4073
|
-
#: components/ItaliaTheme/Blocks/VideoGallery/Body
|
|
4074
|
-
# defaultMessage: Video precedente
|
|
4075
|
-
msgid "videogallery_prev_arrow"
|
|
4076
|
-
msgstr "Previous video"
|
|
4077
|
-
|
|
4078
|
-
#: components/ItaliaTheme/Blocks/Listing/SliderTemplate
|
|
4079
|
-
# defaultMessage: Sei attualmente in un carosello, per navigare usa le frecce sinistra e destra
|
|
4080
|
-
msgid "viewImage"
|
|
4081
|
-
msgstr "You are currently in a carousel, use left and right arrows to navigate"
|
|
4082
|
-
|
|
4083
4108
|
#: components/ItaliaTheme/Blocks/ArgumentsInEvidence/BottomBody
|
|
4084
4109
|
# defaultMessage: Vedi tutti
|
|
4085
4110
|
msgid "view_all"
|