imio.smartweb.core 1.2.91__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.
- imio/smartweb/core/browser/controlpanel.py +42 -5
- imio/smartweb/core/browser/utils.py +4 -1
- imio/smartweb/core/configure.zcml +5 -1
- imio/smartweb/core/contents/__init__.py +2 -0
- imio/smartweb/core/contents/rest/campaign/__init__.py +0 -0
- imio/smartweb/core/contents/rest/campaign/configure.zcml +80 -0
- imio/smartweb/core/contents/rest/campaign/content.py +83 -0
- imio/smartweb/core/contents/rest/campaign/endpoint.py +211 -0
- imio/smartweb/core/contents/rest/campaign/view.pt +19 -0
- imio/smartweb/core/contents/rest/campaign/view.py +29 -0
- imio/smartweb/core/contents/rest/configure.zcml +1 -0
- imio/smartweb/core/interfaces.py +4 -0
- imio/smartweb/core/overrides.zcml +10 -0
- imio/smartweb/core/profiles/default/metadata.xml +1 -1
- imio/smartweb/core/profiles/ideabox/browserlayer.xml +7 -0
- imio/smartweb/core/profiles/ideabox/metadata.xml +5 -0
- imio/smartweb/core/profiles/ideabox/registry/iaideabox.xml +9 -0
- imio/smartweb/core/profiles/ideabox/types/imio.smartweb.CampaignView.xml +40 -0
- imio/smartweb/core/profiles/ideabox/types/imio.smartweb.Folder.xml +71 -0
- imio/smartweb/core/profiles/ideabox/types.xml +17 -0
- imio/smartweb/core/profiles/ideabox_uninstall/browserlayer.xml +7 -0
- imio/smartweb/core/profiles/ideabox_uninstall/types/imio.smartweb.Folder.xml +25 -0
- imio/smartweb/core/profiles/ideabox_uninstall/types.xml +4 -0
- imio/smartweb/core/profiles/testing/metadata.xml +1 -0
- imio/smartweb/core/profiles/testing/registry.xml +2 -2
- imio/smartweb/core/profiles.zcml +18 -0
- imio/smartweb/core/subscribers.py +27 -1
- imio/smartweb/core/subscribers.zcml +8 -0
- imio/smartweb/core/tests/resources/json_ideabox_campaign.json +222 -0
- imio/smartweb/core/tests/resources/json_ideabox_campaigns.json +425 -0
- imio/smartweb/core/tests/resources/json_ideabox_projects.json +1871 -0
- imio/smartweb/core/tests/test_iadeliberations.py +38 -40
- imio/smartweb/core/tests/test_ideabox.py +120 -0
- imio/smartweb/core/tests/test_procedure.py +7 -3
- imio/smartweb/core/tests/test_rest.py +7 -0
- imio/smartweb/core/tests/test_vocabularies.py +8 -10
- imio/smartweb/core/upgrades/configure.zcml +16 -1
- imio/smartweb/core/upgrades/upgrades.py +64 -0
- imio/smartweb/core/utils.py +33 -0
- imio/smartweb/core/viewlets/ogptags.py +9 -0
- imio/smartweb/core/vocabularies.py +35 -4
- imio/smartweb/core/vocabularies.zcml +6 -0
- imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/css/420.smartweb-webcomponents-compiled.css +1 -0
- imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/css/666.smartweb-webcomponents-compiled.css +1 -0
- imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
- imio/smartweb/core/webcomponents/build/js/141.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/{828.smartweb-webcomponents-compiled.js.LICENSE.txt → 141.smartweb-webcomponents-compiled.js.LICENSE.txt} +3 -3
- imio/smartweb/core/webcomponents/build/js/15.smartweb-webcomponents-compiled.js +2 -0
- imio/smartweb/core/webcomponents/build/js/21.smartweb-webcomponents-compiled.js +1 -0
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +0 -5
- imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/666.smartweb-webcomponents-compiled.js +1 -0
- imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/build/js/922.smartweb-webcomponents-compiled.js +1 -0
- imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
- imio/smartweb/core/webcomponents/package.json +80 -80
- imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +1 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.jsx +306 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/Campaign.scss +672 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignCard/CampaignCard.jsx +79 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignContent/CampaignContent.jsx +193 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/CampaignList/CampaignList.jsx +67 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/Filters/Filter.jsx +259 -0
- imio/smartweb/core/webcomponents/src/components/Campaign/index.js +2 -0
- imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +1 -0
- imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +0 -1
- imio/smartweb/core/webcomponents/src/hooks/useAxios.js +45 -9
- imio/smartweb/core/webcomponents/src/index.jsx +2 -0
- imio/smartweb/core/webcomponents/src/index.scss +2 -2
- imio/smartweb/core/webcomponents/src/utils/CampaignMap.jsx +177 -0
- imio/smartweb/core/webcomponents/src/utils/Map.jsx +1 -1
- imio/smartweb/core/webcomponents/src/utils/Map.scss +15 -1
- imio/smartweb/core/webcomponents/src/utils/translation.js +235 -199
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/METADATA +8 -1
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/RECORD +90 -57
- imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +0 -2
- imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js +0 -2
- /imio/smartweb/core/webcomponents/build/js/{499.smartweb-webcomponents-compiled.js.LICENSE.txt → 15.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
- /imio.smartweb.core-1.2.91-py3.12-nspkg.pth → /imio.smartweb.core-1.3-py3.12-nspkg.pth +0 -0
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/WHEEL +0 -0
- {imio.smartweb.core-1.2.91.dist-info → imio.smartweb.core-1.3.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.core-1.2.91.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
|
-
|
4
|
-
en:
|
5
|
-
fr:
|
6
|
-
de:
|
7
|
-
nl:
|
8
|
-
},
|
9
|
-
|
10
|
-
en:
|
11
|
-
fr:
|
12
|
-
de:
|
13
|
-
nl:
|
14
|
-
},
|
15
|
-
|
16
|
-
en:
|
17
|
-
fr:
|
18
|
-
de:
|
19
|
-
nl:
|
20
|
-
},
|
21
|
-
|
22
|
-
en:
|
23
|
-
fr:
|
24
|
-
de:
|
25
|
-
nl:
|
26
|
-
},
|
27
|
-
|
28
|
-
en:
|
29
|
-
fr:
|
30
|
-
de:
|
31
|
-
nl:
|
32
|
-
},
|
33
|
-
|
34
|
-
en:
|
35
|
-
fr:
|
36
|
-
de:
|
37
|
-
nl:
|
38
|
-
},
|
39
|
-
|
40
|
-
en:
|
41
|
-
fr:
|
42
|
-
de:
|
43
|
-
nl:
|
44
|
-
},
|
45
|
-
|
46
|
-
en:
|
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
|
-
|
52
|
-
en:
|
51
|
+
Thématiques: {
|
52
|
+
en: "Themes",
|
53
53
|
fr: "Thématiques",
|
54
54
|
de: "Themen",
|
55
55
|
nl: "Thema's",
|
56
56
|
},
|
57
|
-
|
58
|
-
en:
|
59
|
-
fr:
|
60
|
-
de:
|
61
|
-
nl:
|
57
|
+
"Je suis": {
|
58
|
+
en: "I am",
|
59
|
+
fr: "Je suis",
|
60
|
+
de: "Ich bin",
|
61
|
+
nl: "Ik ben",
|
62
62
|
},
|
63
|
-
|
64
|
-
en:
|
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:
|
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:
|
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
|
-
|
82
|
-
en:
|
81
|
+
Quoi: {
|
82
|
+
en: "What",
|
83
83
|
fr: "Quoi",
|
84
84
|
de: "Was",
|
85
85
|
nl: "Wat",
|
86
86
|
},
|
87
|
-
|
88
|
-
en:
|
87
|
+
Facilités: {
|
88
|
+
en: "Facilities",
|
89
89
|
fr: "Facilités",
|
90
90
|
de: "Einrichtungen",
|
91
91
|
nl: "Faciliteiten",
|
92
92
|
},
|
93
|
-
|
94
|
-
en:
|
95
|
-
fr:
|
96
|
-
de:
|
97
|
-
nl:
|
98
|
-
},
|
99
|
-
|
100
|
-
en:
|
101
|
-
fr:
|
102
|
-
de:
|
103
|
-
nl:
|
104
|
-
},
|
105
|
-
|
106
|
-
en:
|
107
|
-
fr:
|
108
|
-
de:
|
109
|
-
nl:
|
110
|
-
},
|
111
|
-
|
112
|
-
en:
|
113
|
-
fr:
|
114
|
-
de:
|
115
|
-
nl:
|
116
|
-
},
|
117
|
-
|
118
|
-
en:
|
119
|
-
fr:
|
120
|
-
de:
|
121
|
-
nl:
|
122
|
-
},
|
123
|
-
|
124
|
-
en:
|
125
|
-
fr:
|
126
|
-
de:
|
127
|
-
nl:
|
128
|
-
},
|
129
|
-
|
130
|
-
en:
|
131
|
-
fr:
|
132
|
-
de:
|
133
|
-
nl:
|
134
|
-
},
|
135
|
-
|
136
|
-
en:
|
137
|
-
fr:
|
138
|
-
de:
|
139
|
-
nl:
|
140
|
-
},
|
141
|
-
|
142
|
-
en:
|
143
|
-
fr:
|
144
|
-
de:
|
145
|
-
nl:
|
146
|
-
},
|
147
|
-
|
148
|
-
en:
|
149
|
-
fr:
|
150
|
-
de:
|
151
|
-
nl:
|
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:
|
154
|
+
en: "No news was found",
|
155
155
|
fr: "Aucune actualité n'a été trouvée",
|
156
|
-
de:
|
157
|
-
nl:
|
156
|
+
de: "Keine Nachrichten gefunden",
|
157
|
+
nl: "Geen nieuws gevonden",
|
158
158
|
},
|
159
159
|
"Proposer une actualité": {
|
160
|
-
en:
|
160
|
+
en: "Suggest a news",
|
161
161
|
fr: "Proposer une actualité",
|
162
|
-
de:
|
163
|
-
nl:
|
164
|
-
},
|
165
|
-
|
166
|
-
en:
|
167
|
-
fr:
|
168
|
-
de:
|
169
|
-
nl:
|
170
|
-
},
|
171
|
-
|
172
|
-
en:
|
173
|
-
fr:
|
174
|
-
de:
|
175
|
-
nl:
|
176
|
-
},
|
177
|
-
|
178
|
-
en:
|
179
|
-
fr:
|
180
|
-
de:
|
181
|
-
nl:
|
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:
|
196
|
+
en: "No event was found",
|
185
197
|
fr: "Aucun événement n'a été trouvé",
|
186
|
-
de:
|
187
|
-
nl:
|
198
|
+
de: "Keine Veranstaltungen gefunden",
|
199
|
+
nl: "Geen evenement gevonden",
|
188
200
|
},
|
189
201
|
"Proposer un événement": {
|
190
|
-
en:
|
202
|
+
en: "Suggest a event",
|
191
203
|
fr: "Proposer un événement",
|
192
|
-
de:
|
193
|
-
nl:
|
204
|
+
de: "Veranstaltung vorschlagen",
|
205
|
+
nl: "Evenement voorstellen",
|
194
206
|
},
|
195
207
|
"Infos pratiques": {
|
196
|
-
en:
|
208
|
+
en: "Practical information",
|
197
209
|
fr: "Infos pratiques",
|
198
|
-
de:
|
199
|
-
nl:
|
210
|
+
de: "Praktische Informationen",
|
211
|
+
nl: "Praktische informatie",
|
200
212
|
},
|
201
213
|
"Accessible aux PMR": {
|
202
|
-
en:
|
214
|
+
en: "Accessibility for PRM",
|
203
215
|
fr: "Accessible aux PMR",
|
204
|
-
de:
|
205
|
-
nl:
|
216
|
+
de: "Barrierefreiheit für PMR",
|
217
|
+
nl: "Toegankelijk voor PRM",
|
206
218
|
},
|
207
219
|
"Lien de l'événement": {
|
208
|
-
en:
|
220
|
+
en: "Event link",
|
209
221
|
fr: "Lien de l'événement",
|
210
|
-
de:
|
211
|
-
nl:
|
222
|
+
de: "Veranstaltungslink",
|
223
|
+
nl: "Evenement link",
|
212
224
|
},
|
213
|
-
|
214
|
-
en:
|
215
|
-
fr:
|
216
|
-
de:
|
217
|
-
nl:
|
225
|
+
"contacts trouvés": {
|
226
|
+
en: " Contact found",
|
227
|
+
fr: " Contacts trouvés",
|
228
|
+
de: " Kontakt gefunden",
|
229
|
+
nl: " Contact gevonden",
|
218
230
|
},
|
219
|
-
|
220
|
-
en:
|
221
|
-
fr:
|
222
|
-
de:
|
223
|
-
nl:
|
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:
|
238
|
+
en: "No contact was found",
|
227
239
|
fr: "Aucun contact n'a été trouvé",
|
228
|
-
de:
|
229
|
-
nl:
|
240
|
+
de: "Kein Kontakt gefunden",
|
241
|
+
nl: "Geen contact gevonden",
|
230
242
|
},
|
231
243
|
"Proposer un contact": {
|
232
|
-
en:
|
244
|
+
en: "Suggest a contact",
|
233
245
|
fr: "Proposer un contact",
|
234
|
-
de:
|
235
|
-
nl:
|
236
|
-
},
|
237
|
-
"
|
238
|
-
en:
|
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:
|
241
|
-
nl:
|
276
|
+
de: "Wann",
|
277
|
+
nl: "Wanneer",
|
242
278
|
},
|
243
279
|
"Toutes les dates": {
|
244
|
-
en:
|
280
|
+
en: "All dates",
|
245
281
|
fr: "Toutes les dates",
|
246
|
-
de:
|
247
|
-
nl:
|
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
|
-
|
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
|
-
|
321
|
+
Le: {
|
286
322
|
en: "On",
|
287
323
|
fr: "Le",
|
288
324
|
de: "Am",
|
289
325
|
nl: "Op",
|
290
326
|
},
|
291
|
-
|
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
|
-
|
339
|
+
Du: {
|
304
340
|
en: "From",
|
305
341
|
fr: "Du",
|
306
342
|
de: "Von",
|
307
343
|
nl: "Van",
|
308
344
|
},
|
309
|
-
|
345
|
+
au: {
|
310
346
|
en: "to",
|
311
347
|
fr: "au",
|
312
348
|
de: "bis",
|
313
349
|
nl: "tot",
|
314
350
|
},
|
315
|
-
|
351
|
+
Personnalisé: {
|
316
352
|
en: "Custom",
|
317
353
|
fr: "Personnalisé",
|
318
354
|
de: "Benutzerdefiniert",
|
319
355
|
nl: "Aangepast",
|
320
356
|
},
|
321
|
-
|
357
|
+
Monday: {
|
322
358
|
en: "Monday",
|
323
359
|
fr: "Lundi",
|
324
360
|
de: "Montag",
|
325
361
|
nl: "Maandag",
|
326
362
|
},
|
327
|
-
|
363
|
+
Tuesday: {
|
328
364
|
en: "Tuesday",
|
329
365
|
fr: "Mardi",
|
330
366
|
de: "Dienstag",
|
331
367
|
nl: "Dinsdag",
|
332
368
|
},
|
333
|
-
|
369
|
+
Wednesday: {
|
334
370
|
en: "Wednesday",
|
335
371
|
fr: "Mercredi",
|
336
372
|
de: "Mittwoch",
|
337
373
|
nl: "Woensdag",
|
338
374
|
},
|
339
|
-
|
375
|
+
Thursday: {
|
340
376
|
en: "Thursday",
|
341
377
|
fr: "Jeudi",
|
342
378
|
de: "Donnerstag",
|
343
379
|
nl: "Donderdag",
|
344
380
|
},
|
345
|
-
|
381
|
+
Friday: {
|
346
382
|
en: "Friday",
|
347
383
|
fr: "Vendredi",
|
348
384
|
de: "Freitag",
|
349
385
|
nl: "Vrijdag",
|
350
386
|
},
|
351
|
-
|
387
|
+
Saturday: {
|
352
388
|
en: "Saturday",
|
353
389
|
fr: "Samedi",
|
354
390
|
de: "Samstag",
|
355
391
|
nl: "Zaterdag",
|
356
392
|
},
|
357
|
-
|
393
|
+
Sunday: {
|
358
394
|
en: "Sunday",
|
359
395
|
fr: "Dimanche",
|
360
396
|
de: "Sonntag",
|
361
397
|
nl: "Zondag",
|
362
398
|
},
|
363
|
-
|
399
|
+
Fermé: {
|
364
400
|
en: "Closed",
|
365
401
|
fr: "Fermé",
|
366
402
|
de: "Geschlossen",
|
367
403
|
nl: "Gesloten",
|
368
404
|
},
|
369
|
-
|
405
|
+
Ouvert: {
|
370
406
|
en: "Open",
|
371
407
|
fr: "Ouvert",
|
372
408
|
de: "Geöffnet",
|
373
409
|
nl: "Open",
|
374
410
|
},
|
375
|
-
|
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.
|
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,13 @@ 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
|
+
|
206
213
|
1.2.91 (2025-03-03)
|
207
214
|
-------------------
|
208
215
|
|