imio.smartweb.core 1.2.90__py3-none-any.whl → 1.3__py3-none-any.whl

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 (96) hide show
  1. imio/smartweb/core/browser/controlpanel.py +42 -5
  2. imio/smartweb/core/browser/utils.py +4 -1
  3. imio/smartweb/core/configure.zcml +5 -1
  4. imio/smartweb/core/contents/__init__.py +2 -0
  5. imio/smartweb/core/contents/rest/campaign/__init__.py +0 -0
  6. imio/smartweb/core/contents/rest/campaign/configure.zcml +80 -0
  7. imio/smartweb/core/contents/rest/campaign/content.py +83 -0
  8. imio/smartweb/core/contents/rest/campaign/endpoint.py +211 -0
  9. imio/smartweb/core/contents/rest/campaign/view.pt +19 -0
  10. imio/smartweb/core/contents/rest/campaign/view.py +29 -0
  11. imio/smartweb/core/contents/rest/configure.zcml +1 -0
  12. imio/smartweb/core/interfaces.py +4 -0
  13. imio/smartweb/core/overrides.zcml +10 -0
  14. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  15. imio/smartweb/core/profiles/ideabox/browserlayer.xml +7 -0
  16. imio/smartweb/core/profiles/ideabox/metadata.xml +5 -0
  17. imio/smartweb/core/profiles/ideabox/registry/iaideabox.xml +9 -0
  18. imio/smartweb/core/profiles/ideabox/types/imio.smartweb.CampaignView.xml +40 -0
  19. imio/smartweb/core/profiles/ideabox/types/imio.smartweb.Folder.xml +71 -0
  20. imio/smartweb/core/profiles/ideabox/types.xml +17 -0
  21. imio/smartweb/core/profiles/ideabox_uninstall/browserlayer.xml +7 -0
  22. imio/smartweb/core/profiles/ideabox_uninstall/types/imio.smartweb.Folder.xml +25 -0
  23. imio/smartweb/core/profiles/ideabox_uninstall/types.xml +4 -0
  24. imio/smartweb/core/profiles/testing/metadata.xml +1 -0
  25. imio/smartweb/core/profiles/testing/registry.xml +2 -2
  26. imio/smartweb/core/profiles.zcml +18 -0
  27. imio/smartweb/core/subscribers.py +27 -1
  28. imio/smartweb/core/subscribers.zcml +8 -0
  29. imio/smartweb/core/tests/resources/json_ideabox_campaign.json +222 -0
  30. imio/smartweb/core/tests/resources/json_ideabox_campaigns.json +425 -0
  31. imio/smartweb/core/tests/resources/json_ideabox_projects.json +1871 -0
  32. imio/smartweb/core/tests/test_iadeliberations.py +38 -40
  33. imio/smartweb/core/tests/test_ideabox.py +120 -0
  34. imio/smartweb/core/tests/test_procedure.py +7 -3
  35. imio/smartweb/core/tests/test_rest.py +7 -0
  36. imio/smartweb/core/tests/test_vocabularies.py +8 -10
  37. imio/smartweb/core/upgrades/configure.zcml +16 -1
  38. imio/smartweb/core/upgrades/upgrades.py +64 -0
  39. imio/smartweb/core/utils.py +33 -0
  40. imio/smartweb/core/viewlets/actions.py +10 -0
  41. imio/smartweb/core/viewlets/header_actions.pt +2 -0
  42. imio/smartweb/core/viewlets/offcanvas.pt +31 -6
  43. imio/smartweb/core/viewlets/ogptags.py +9 -0
  44. imio/smartweb/core/viewlets/subsite_logo.pt +1 -1
  45. imio/smartweb/core/vocabularies.py +35 -4
  46. imio/smartweb/core/vocabularies.zcml +6 -0
  47. imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -1
  48. imio/smartweb/core/webcomponents/build/css/420.smartweb-webcomponents-compiled.css +1 -0
  49. imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +1 -1
  50. imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.css +1 -0
  51. imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +1 -1
  52. imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
  53. imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js +2 -0
  54. imio/smartweb/core/webcomponents/build/js/{828.smartweb-webcomponents-compiled.js.LICENSE.txt → 141.smartweb-webcomponents-compiled.js.LICENSE.txt} +3 -3
  55. imio/smartweb/core/webcomponents/build/js/15.smartweb-webcomponents-compiled.js +2 -0
  56. imio/smartweb/core/webcomponents/build/js/21.smartweb-webcomponents-compiled.js +1 -0
  57. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
  58. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -5
  59. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
  60. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  61. imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js +1 -0
  62. imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +1 -1
  63. imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +1 -1
  64. imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
  65. imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
  66. imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js +1 -0
  67. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  68. imio/smartweb/core/webcomponents/package.json +80 -80
  69. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +1 -0
  70. imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx +306 -0
  71. imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss +672 -0
  72. imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx +79 -0
  73. imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx +193 -0
  74. imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx +67 -0
  75. imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx +259 -0
  76. imio/smartweb/core/webcomponents/src/components/Campaign/index.js +2 -0
  77. imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +1 -0
  78. imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +0 -1
  79. imio/smartweb/core/webcomponents/src/hooks/useAxios.js +45 -9
  80. imio/smartweb/core/webcomponents/src/index.jsx +2 -0
  81. imio/smartweb/core/webcomponents/src/index.scss +2 -2
  82. imio/smartweb/core/webcomponents/src/utils/CampaignMap.jsx +177 -0
  83. imio/smartweb/core/webcomponents/src/utils/Map.jsx +1 -1
  84. imio/smartweb/core/webcomponents/src/utils/Map.scss +15 -1
  85. imio/smartweb/core/webcomponents/src/utils/translation.js +235 -199
  86. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/METADATA +18 -1
  87. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/RECORD +94 -61
  88. imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +0 -2
  89. imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js +0 -2
  90. /imio/smartweb/core/webcomponents/build/js/{499.smartweb-webcomponents-compiled.js.LICENSE.txt → 15.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  91. /imio.smartweb.core-1.2.90-py3.12-nspkg.pth → /imio.smartweb.core-1.3-py3.12-nspkg.pth +0 -0
  92. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/LICENSE.GPL +0 -0
  93. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/LICENSE.rst +0 -0
  94. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/WHEEL +0 -0
  95. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/namespace_packages.txt +0 -0
  96. {imio.smartweb.core-1.2.90.dist-info → imio.smartweb.core-1.3.dist-info}/top_level.txt +0 -0
@@ -1,250 +1,286 @@
1
1
  export default {
2
2
  // common
3
- 'Publié': {
4
- en: 'Published',
5
- fr: 'Publié',
6
- de: 'Veröffentlicht',
7
- nl: 'Gepubliceerd',
8
- },
9
- 'Actualisé': {
10
- en: 'Updated',
11
- fr: 'Actualisé',
12
- de: 'Aktualisiert',
13
- nl: 'Bijgewerkt',
14
- },
15
- 'Événements': {
16
- en: 'Events',
17
- fr: 'Événements',
18
- de: 'Veranstaltungen',
19
- nl: 'Evenementen',
20
- },
21
- 'Actualités': {
22
- en: 'News',
23
- fr: 'Actualités',
24
- de: 'Nachrichten',
25
- nl: 'Nieuws',
26
- },
27
- 'Contacts': {
28
- en: 'Contacts',
29
- fr: 'Contacts',
30
- de: 'Kontakte',
31
- nl: 'Contacten',
32
- },
33
- 'Infos pratiques': {
34
- en: 'Practical information',
35
- fr: 'Infos pratiques',
36
- de: 'Praktische Informationen',
37
- nl: 'Praktische informatie',
38
- },
39
- 'Chargement...': {
40
- en: 'Loading',
41
- fr: 'Chargement...',
42
- de: 'Laden',
43
- nl: 'Laden...',
44
- },
45
- "Recherche": {
46
- en: 'Search',
3
+ Publié: {
4
+ en: "Published",
5
+ fr: "Publié",
6
+ de: "Veröffentlicht",
7
+ nl: "Gepubliceerd",
8
+ },
9
+ Actualisé: {
10
+ en: "Updated",
11
+ fr: "Actualisé",
12
+ de: "Aktualisiert",
13
+ nl: "Bijgewerkt",
14
+ },
15
+ Événements: {
16
+ en: "Events",
17
+ fr: "Événements",
18
+ de: "Veranstaltungen",
19
+ nl: "Evenementen",
20
+ },
21
+ Actualités: {
22
+ en: "News",
23
+ fr: "Actualités",
24
+ de: "Nachrichten",
25
+ nl: "Nieuws",
26
+ },
27
+ Contacts: {
28
+ en: "Contacts",
29
+ fr: "Contacts",
30
+ de: "Kontakte",
31
+ nl: "Contacten",
32
+ },
33
+ "Infos pratiques": {
34
+ en: "Practical information",
35
+ fr: "Infos pratiques",
36
+ de: "Praktische Informationen",
37
+ nl: "Praktische informatie",
38
+ },
39
+ "Chargement...": {
40
+ en: "Loading",
41
+ fr: "Chargement...",
42
+ de: "Laden",
43
+ nl: "Laden...",
44
+ },
45
+ Recherche: {
46
+ en: "Search",
47
47
  fr: "Recherche",
48
48
  de: "Suche",
49
49
  nl: "Zoeken",
50
50
  },
51
- "Thématiques": {
52
- en: 'Themes',
51
+ Thématiques: {
52
+ en: "Themes",
53
53
  fr: "Thématiques",
54
54
  de: "Themen",
55
55
  nl: "Thema's",
56
56
  },
57
- 'Je suis': {
58
- en: 'I am',
59
- fr: 'Je suis',
60
- de: 'Ich bin',
61
- nl: 'Ik ben',
57
+ "Je suis": {
58
+ en: "I am",
59
+ fr: "Je suis",
60
+ de: "Ich bin",
61
+ nl: "Ik ben",
62
62
  },
63
- "Catégories": {
64
- en: 'Categories',
63
+ Catégories: {
64
+ en: "Categories",
65
65
  fr: "Catégories",
66
66
  de: "Kategorien",
67
67
  nl: "Categorieën",
68
68
  },
69
69
  "Catégories locale": {
70
- en: 'Local categories',
70
+ en: "Local categories",
71
71
  fr: "Catégories locale",
72
72
  de: "Lokale Kategorien",
73
73
  nl: "Lokale categorieën",
74
74
  },
75
75
  "Catégories spécifiques": {
76
- en: 'Specific categories',
76
+ en: "Specific categories",
77
77
  fr: "Catégories spécifiques",
78
78
  de: "Spezifische Kategorien",
79
79
  nl: "Specifieke categorieën",
80
80
  },
81
- "Quoi": {
82
- en: 'What',
81
+ Quoi: {
82
+ en: "What",
83
83
  fr: "Quoi",
84
84
  de: "Was",
85
85
  nl: "Wat",
86
86
  },
87
- "Facilités": {
88
- en: 'Facilities',
87
+ Facilités: {
88
+ en: "Facilities",
89
89
  fr: "Facilités",
90
90
  de: "Einrichtungen",
91
91
  nl: "Faciliteiten",
92
92
  },
93
- 'Plus de résultats': {
94
- en: 'More results',
95
- fr: 'Plus de résultats',
96
- de: 'Mehr Ergebnisse',
97
- nl: 'Meer resultaten',
98
- },
99
- 'Aucun résultat': {
100
- en: 'No result',
101
- fr: 'Aucun résultat',
102
- de: 'Kein Ergebnis',
103
- nl: 'Geen resultaat',
104
- },
105
- 'Résultats': {
106
- en: 'Results',
107
- fr: 'Résultats',
108
- de: 'Ergebnisse',
109
- nl: 'Resultaten',
110
- },
111
- 'Retour': {
112
- en: 'Return',
113
- fr: 'Retour',
114
- de: 'Zurück',
115
- nl: 'Terug',
116
- },
117
- 'Téléchargements': {
118
- en: 'Downloads',
119
- fr: 'Téléchargements',
120
- de: 'Downloads',
121
- nl: 'Downloads',
122
- },
123
- 'Billetterie': {
124
- en: 'Ticketing',
125
- fr: 'Billetterie',
126
- de: 'Tickets',
127
- nl: 'Ticketverkoop',
128
- },
129
- 'Lien vers la vidéo': {
130
- en: 'Link to video',
131
- fr: 'Lien vers la vidéo',
132
- de: 'Link zum Video',
133
- nl: 'Link naar video',
134
- },
135
- 'Participation en ligne': {
136
- en: 'Join online',
137
- fr: 'Participation en ligne',
138
- de: 'Online teilnehmen',
139
- nl: 'Doe online mee',
140
- },
141
- 'Actualités trouvées': {
142
- en: ' News found',
143
- fr: ' Actualités trouvées',
144
- de: ' Nachrichten gefunden',
145
- nl: ' Nieuws gevonden',
146
- },
147
- 'Actualité trouvée': {
148
- en: ' News found',
149
- fr: ' Actualité trouvée',
150
- de: ' Nachricht gefunden',
151
- nl: ' Nieuws gevonden',
93
+ "Plus de résultats": {
94
+ en: "More results",
95
+ fr: "Plus de résultats",
96
+ de: "Mehr Ergebnisse",
97
+ nl: "Meer resultaten",
98
+ },
99
+ "Aucun résultat": {
100
+ en: "No result",
101
+ fr: "Aucun résultat",
102
+ de: "Kein Ergebnis",
103
+ nl: "Geen resultaat",
104
+ },
105
+ Résultats: {
106
+ en: "Results",
107
+ fr: "Résultats",
108
+ de: "Ergebnisse",
109
+ nl: "Resultaten",
110
+ },
111
+ Retour: {
112
+ en: "Return",
113
+ fr: "Retour",
114
+ de: "Zurück",
115
+ nl: "Terug",
116
+ },
117
+ Téléchargements: {
118
+ en: "Downloads",
119
+ fr: "Téléchargements",
120
+ de: "Downloads",
121
+ nl: "Downloads",
122
+ },
123
+ Billetterie: {
124
+ en: "Ticketing",
125
+ fr: "Billetterie",
126
+ de: "Tickets",
127
+ nl: "Ticketverkoop",
128
+ },
129
+ "Lien vers la vidéo": {
130
+ en: "Link to video",
131
+ fr: "Lien vers la vidéo",
132
+ de: "Link zum Video",
133
+ nl: "Link naar video",
134
+ },
135
+ "Participation en ligne": {
136
+ en: "Join online",
137
+ fr: "Participation en ligne",
138
+ de: "Online teilnehmen",
139
+ nl: "Doe online mee",
140
+ },
141
+ "Actualités trouvées": {
142
+ en: " News found",
143
+ fr: " Actualités trouvées",
144
+ de: " Nachrichten gefunden",
145
+ nl: " Nieuws gevonden",
146
+ },
147
+ "Actualité trouvée": {
148
+ en: " News found",
149
+ fr: " Actualité trouvée",
150
+ de: " Nachricht gefunden",
151
+ nl: " Nieuws gevonden",
152
152
  },
153
153
  "Aucune actualité n'a été trouvée": {
154
- en: 'No news was found',
154
+ en: "No news was found",
155
155
  fr: "Aucune actualité n'a été trouvée",
156
- de: 'Keine Nachrichten gefunden',
157
- nl: 'Geen nieuws gevonden',
156
+ de: "Keine Nachrichten gefunden",
157
+ nl: "Geen nieuws gevonden",
158
158
  },
159
159
  "Proposer une actualité": {
160
- en: 'Suggest a news',
160
+ en: "Suggest a news",
161
161
  fr: "Proposer une actualité",
162
- de: 'Nachricht vorschlagen',
163
- nl: 'Nieuws voorstellen',
164
- },
165
- 'événements trouvés': {
166
- en: ' Events found',
167
- fr: ' Événements trouvés',
168
- de: ' Veranstaltungen gefunden',
169
- nl: ' Evenementen gevonden',
170
- },
171
- 'événement trouvé': {
172
- en: ' Event found',
173
- fr: ' Événement trouvé',
174
- de: ' Veranstaltung gefunden',
175
- nl: ' Evenement gevonden',
176
- },
177
- 'Gratuit': {
178
- en: 'Free',
179
- fr: 'Gratuit',
180
- de: 'Kostenlos',
181
- nl: 'Gratis',
162
+ de: "Nachricht vorschlagen",
163
+ nl: "Nieuws voorstellen",
164
+ },
165
+ "événements trouvés": {
166
+ en: " Events found",
167
+ fr: " Événements trouvés",
168
+ de: " Veranstaltungen gefunden",
169
+ nl: " Evenementen gevonden",
170
+ },
171
+ "projets trouvés": {
172
+ en: " Projects found",
173
+ fr: " Projets trouvés",
174
+ de: " Projekte gefunden",
175
+ nl: " Projecten gevonden",
176
+ },
177
+ "projet trouvé": {
178
+ en: " Project found",
179
+ fr: " Projet trouvé",
180
+ de: " Projekt gefunden",
181
+ nl: " Project gevonden",
182
+ },
183
+ "événement trouvé": {
184
+ en: " Event found",
185
+ fr: " Événement trouvé",
186
+ de: " Veranstaltung gefunden",
187
+ nl: " Evenement gevonden",
188
+ },
189
+ Gratuit: {
190
+ en: "Free",
191
+ fr: "Gratuit",
192
+ de: "Kostenlos",
193
+ nl: "Gratis",
182
194
  },
183
195
  "Aucun événement n'a été trouvé": {
184
- en: 'No event was found',
196
+ en: "No event was found",
185
197
  fr: "Aucun événement n'a été trouvé",
186
- de: 'Keine Veranstaltungen gefunden',
187
- nl: 'Geen evenement gevonden',
198
+ de: "Keine Veranstaltungen gefunden",
199
+ nl: "Geen evenement gevonden",
188
200
  },
189
201
  "Proposer un événement": {
190
- en: 'Suggest a event',
202
+ en: "Suggest a event",
191
203
  fr: "Proposer un événement",
192
- de: 'Veranstaltung vorschlagen',
193
- nl: 'Evenement voorstellen',
204
+ de: "Veranstaltung vorschlagen",
205
+ nl: "Evenement voorstellen",
194
206
  },
195
207
  "Infos pratiques": {
196
- en: 'Practical information',
208
+ en: "Practical information",
197
209
  fr: "Infos pratiques",
198
- de: 'Praktische Informationen',
199
- nl: 'Praktische informatie',
210
+ de: "Praktische Informationen",
211
+ nl: "Praktische informatie",
200
212
  },
201
213
  "Accessible aux PMR": {
202
- en: 'Accessibility for PRM',
214
+ en: "Accessibility for PRM",
203
215
  fr: "Accessible aux PMR",
204
- de: 'Barrierefreiheit für PMR',
205
- nl: 'Toegankelijk voor PRM',
216
+ de: "Barrierefreiheit für PMR",
217
+ nl: "Toegankelijk voor PRM",
206
218
  },
207
219
  "Lien de l'événement": {
208
- en: 'Event link',
220
+ en: "Event link",
209
221
  fr: "Lien de l'événement",
210
- de: 'Veranstaltungslink',
211
- nl: 'Evenement link',
222
+ de: "Veranstaltungslink",
223
+ nl: "Evenement link",
212
224
  },
213
- 'contacts trouvés': {
214
- en: ' Contact found',
215
- fr: ' Contacts trouvés',
216
- de: ' Kontakt gefunden',
217
- nl: ' Contact gevonden',
225
+ "contacts trouvés": {
226
+ en: " Contact found",
227
+ fr: " Contacts trouvés",
228
+ de: " Kontakt gefunden",
229
+ nl: " Contact gevonden",
218
230
  },
219
- 'contact trouvé': {
220
- en: ' Contact found',
221
- fr: ' Contact trouvé',
222
- de: ' Kontakt gefunden',
223
- nl: ' Contact gevonden',
231
+ "contact trouvé": {
232
+ en: " Contact found",
233
+ fr: " Contact trouvé",
234
+ de: " Kontakt gefunden",
235
+ nl: " Contact gevonden",
224
236
  },
225
237
  "Aucun contact n'a été trouvé": {
226
- en: 'No contact was found',
238
+ en: "No contact was found",
227
239
  fr: "Aucun contact n'a été trouvé",
228
- de: 'Kein Kontakt gefunden',
229
- nl: 'Geen contact gevonden',
240
+ de: "Kein Kontakt gefunden",
241
+ nl: "Geen contact gevonden",
230
242
  },
231
243
  "Proposer un contact": {
232
- en: 'Suggest a contact',
244
+ en: "Suggest a contact",
233
245
  fr: "Proposer un contact",
234
- de: 'Kontakt vorschlagen',
235
- nl: 'Contact voorstellen',
236
- },
237
- "Quand": {
238
- en: 'When',
246
+ de: "Kontakt vorschlagen",
247
+ nl: "Contact voorstellen",
248
+ },
249
+ "projets trouvés": {
250
+ en: " Projects found",
251
+ fr: " Projets trouvés",
252
+ de: " Projekte gefunden",
253
+ nl: " Projecten gevonden",
254
+ },
255
+ "projet trouvé": {
256
+ en: " Project found",
257
+ fr: " Projet trouvé",
258
+ de: " Projekt gefunden",
259
+ nl: " Project gevonden",
260
+ },
261
+ "Aucun projet n'a été trouvé": {
262
+ en: "No project was found",
263
+ fr: "Aucun projet n'a été trouvé",
264
+ de: "Kein Projekt gefunden",
265
+ nl: "Geen project gevonden",
266
+ },
267
+ "Proposer un projet": {
268
+ en: "Suggest a project",
269
+ fr: "Proposer un projet",
270
+ de: "Projekt vorschlagen",
271
+ nl: "Project voorstellen",
272
+ },
273
+ Quand: {
274
+ en: "When",
239
275
  fr: "Quand",
240
- de: 'Wann',
241
- nl: 'Wanneer',
276
+ de: "Wann",
277
+ nl: "Wanneer",
242
278
  },
243
279
  "Toutes les dates": {
244
- en: 'All dates',
280
+ en: "All dates",
245
281
  fr: "Toutes les dates",
246
- de: 'Alle Daten',
247
- nl: 'Alle data',
282
+ de: "Alle Daten",
283
+ nl: "Alle data",
248
284
  },
249
285
  "Aujourd'hui": {
250
286
  en: "Today",
@@ -252,7 +288,7 @@ export default {
252
288
  de: "Heute",
253
289
  nl: "Vandaag",
254
290
  },
255
- "Demain": {
291
+ Demain: {
256
292
  en: "Tomorrow",
257
293
  fr: "Demain",
258
294
  de: "Morgen",
@@ -282,100 +318,100 @@ export default {
282
318
  de: "Benutzerdefiniert (Von ... bis ...)",
283
319
  nl: "Aangepast (Van ... tot ...)",
284
320
  },
285
- "Le": {
321
+ Le: {
286
322
  en: "On",
287
323
  fr: "Le",
288
324
  de: "Am",
289
325
  nl: "Op",
290
326
  },
291
- "de": {
327
+ de: {
292
328
  en: "of",
293
329
  fr: "de",
294
330
  de: "von",
295
331
  nl: "van",
296
332
  },
297
- "à": {
333
+ à: {
298
334
  en: "at",
299
335
  fr: "à",
300
336
  de: "um",
301
337
  nl: "om",
302
338
  },
303
- "Du": {
339
+ Du: {
304
340
  en: "From",
305
341
  fr: "Du",
306
342
  de: "Von",
307
343
  nl: "Van",
308
344
  },
309
- "au": {
345
+ au: {
310
346
  en: "to",
311
347
  fr: "au",
312
348
  de: "bis",
313
349
  nl: "tot",
314
350
  },
315
- "Personnalisé": {
351
+ Personnalisé: {
316
352
  en: "Custom",
317
353
  fr: "Personnalisé",
318
354
  de: "Benutzerdefiniert",
319
355
  nl: "Aangepast",
320
356
  },
321
- "Monday": {
357
+ Monday: {
322
358
  en: "Monday",
323
359
  fr: "Lundi",
324
360
  de: "Montag",
325
361
  nl: "Maandag",
326
362
  },
327
- "Tuesday": {
363
+ Tuesday: {
328
364
  en: "Tuesday",
329
365
  fr: "Mardi",
330
366
  de: "Dienstag",
331
367
  nl: "Dinsdag",
332
368
  },
333
- "Wednesday": {
369
+ Wednesday: {
334
370
  en: "Wednesday",
335
371
  fr: "Mercredi",
336
372
  de: "Mittwoch",
337
373
  nl: "Woensdag",
338
374
  },
339
- "Thursday": {
375
+ Thursday: {
340
376
  en: "Thursday",
341
377
  fr: "Jeudi",
342
378
  de: "Donnerstag",
343
379
  nl: "Donderdag",
344
380
  },
345
- "Friday": {
381
+ Friday: {
346
382
  en: "Friday",
347
383
  fr: "Vendredi",
348
384
  de: "Freitag",
349
385
  nl: "Vrijdag",
350
386
  },
351
- "Saturday": {
387
+ Saturday: {
352
388
  en: "Saturday",
353
389
  fr: "Samedi",
354
390
  de: "Samstag",
355
391
  nl: "Zaterdag",
356
392
  },
357
- "Sunday": {
393
+ Sunday: {
358
394
  en: "Sunday",
359
395
  fr: "Dimanche",
360
396
  de: "Sonntag",
361
397
  nl: "Zondag",
362
398
  },
363
- "Fermé": {
399
+ Fermé: {
364
400
  en: "Closed",
365
401
  fr: "Fermé",
366
402
  de: "Geschlossen",
367
403
  nl: "Gesloten",
368
404
  },
369
- "Ouvert": {
405
+ Ouvert: {
370
406
  en: "Open",
371
407
  fr: "Ouvert",
372
408
  de: "Geöffnet",
373
409
  nl: "Open",
374
410
  },
375
- "Itinéraire": {
411
+ Itinéraire: {
376
412
  en: "Itinerary",
377
413
  fr: "Itinéraire",
378
414
  de: "Route",
379
415
  nl: "Route",
380
416
  },
381
- }
417
+ };
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: imio.smartweb.core
3
- Version: 1.2.90
3
+ Version: 1.3
4
4
  Summary: Core product for iMio websites
5
5
  Home-page: https://github.com/imio/imio.smartweb.core
6
6
  Author: Christophe Boulanger
@@ -203,6 +203,23 @@ Changelog
203
203
  =========
204
204
 
205
205
 
206
+ 1.3 (2025-03-04)
207
+ ----------------
208
+
209
+ - TELE-1975 : IDEABOX. Add specific profile, add campaign view content type
210
+ [boulch, thomlamb]
211
+
212
+
213
+ 1.2.91 (2025-03-03)
214
+ -------------------
215
+
216
+ - Accessibility : Added aria-label to subsite-logo link
217
+ [thomlamb]
218
+
219
+ - Accessibility : Add title / target attributes to "my account" action link
220
+ [boulch]
221
+
222
+
206
223
  1.2.90 (2025-02-24)
207
224
  -------------------
208
225