@paris-ias/list 1.0.4 → 1.0.5
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/example/.env.example +3 -0
- package/example/nuxt.config.ts +19 -0
- package/example/pages/index.vue +27 -0
- package/package.json +3 -3
- package/src/module.ts +119 -0
- package/src/runtime/components/events/Badges.vue +73 -0
- package/src/runtime/components/events/DateTimePlace.vue +77 -0
- package/src/runtime/components/events/DenseItem.vue +40 -0
- package/src/runtime/components/events/ExpandedItem.vue +11 -0
- package/src/runtime/components/events/ListContainer.vue +41 -0
- package/src/runtime/components/events/RegisterModal.vue +51 -0
- package/src/runtime/components/events/RelatedItem.vue +44 -0
- package/src/runtime/components/events/RowsItem.vue +114 -0
- package/src/runtime/components/events/View.vue +333 -0
- package/src/runtime/components/fellowships/Badges.vue +48 -0
- package/src/runtime/components/fellowships/DenseItem.vue +39 -0
- package/src/runtime/components/fellowships/ExpandedItem.vue +7 -0
- package/src/runtime/components/fellowships/RegisterModal.vue +41 -0
- package/src/runtime/components/fellowships/RowsItem.vue +61 -0
- package/src/runtime/components/fellowships/View.vue +210 -0
- package/src/runtime/components/list/atoms/FiltersMenu.vue +46 -0
- package/src/runtime/components/list/atoms/SearchInput.vue +129 -0
- package/src/runtime/components/list/atoms/SearchItem.vue +59 -0
- package/src/runtime/components/list/atoms/SearchString.vue +161 -0
- package/src/runtime/components/list/atoms/SortMenu.vue +97 -0
- package/src/runtime/components/list/atoms/ViewMenu.vue +71 -0
- package/src/runtime/components/list/inputs/AutoComplete.vue +22 -0
- package/src/runtime/components/list/inputs/BooleanSwitch.vue +18 -0
- package/src/runtime/components/list/inputs/Checkbox.vue +21 -0
- package/src/runtime/components/list/inputs/Select.vue +25 -0
- package/src/runtime/components/list/molecules/Filters.vue +97 -0
- package/src/runtime/components/list/molecules/Header.vue +47 -0
- package/src/runtime/components/list/molecules/Pagination.vue +243 -0
- package/src/runtime/components/list/organisms/List.vue +92 -0
- package/src/runtime/components/list/views/Dense.vue +25 -0
- package/src/runtime/components/list/views/Expanded.vue +10 -0
- package/src/runtime/components/list/views/Grid.vue +13 -0
- package/src/runtime/components/list/views/Rows.vue +13 -0
- package/src/runtime/components/list/views/Table.vue +13 -0
- package/src/runtime/components/misc/atoms/CountUp.vue +198 -0
- package/src/runtime/components/misc/atoms/DateStamp.vue +104 -0
- package/src/runtime/components/misc/atoms/ImageContainer.vue +105 -0
- package/src/runtime/components/misc/atoms/ShareMenu.vue +60 -0
- package/src/runtime/components/misc/atoms/Socials.vue +127 -0
- package/src/runtime/components/misc/molecules/ChipContainer.vue +35 -0
- package/src/runtime/components/misc/molecules/Related.vue +41 -0
- package/src/runtime/components/misc/molecules/RelatedItems.vue +29 -0
- package/src/runtime/components/misc/molecules/SearchItem.vue +26 -0
- package/src/runtime/components/news/DenseItem.vue +62 -0
- package/src/runtime/components/news/ExpandedItem.vue +153 -0
- package/src/runtime/components/news/Header.vue +9 -0
- package/src/runtime/components/news/RelatedItem.vue +44 -0
- package/src/runtime/components/news/RowsItem.vue +160 -0
- package/src/runtime/components/news/View.vue +190 -0
- package/src/runtime/components/people/DenseItem.vue +37 -0
- package/src/runtime/components/people/ExpandedItem.vue +16 -0
- package/src/runtime/components/people/GroupBadges.vue +56 -0
- package/src/runtime/components/people/RelatedItem.vue +41 -0
- package/src/runtime/components/people/RowsItem.vue +95 -0
- package/src/runtime/components/people/View.vue +162 -0
- package/src/runtime/components/projects/ExpandedItem.vue +14 -0
- package/src/runtime/components/projects/RelatedItem.vue +44 -0
- package/src/runtime/components/projects/RowsItem.vue +106 -0
- package/src/runtime/components/projects/View.vue +131 -0
- package/src/runtime/components/publications/RelatedItem.vue +44 -0
- package/src/runtime/components/publications/RowsItem.vue +105 -0
- package/src/runtime/components/publications/View.vue +139 -0
- package/src/runtime/composables/useFetchItem.ts +64 -0
- package/src/runtime/composables/useIcons.ts +30 -0
- package/src/runtime/composables/useUtils.ts +75 -0
- package/src/runtime/graphql/queries/buildFiltersValues.gql +35 -0
- package/src/runtime/graphql/queries/item/action.gql +0 -0
- package/src/runtime/graphql/queries/item/apps.gql +0 -0
- package/src/runtime/graphql/queries/item/events.gql +120 -0
- package/src/runtime/graphql/queries/item/fellowships.gql +164 -0
- package/src/runtime/graphql/queries/item/news.gql +129 -0
- package/src/runtime/graphql/queries/item/people.gql +174 -0
- package/src/runtime/graphql/queries/item/projects.gql +171 -0
- package/src/runtime/graphql/queries/item/publications.gql +169 -0
- package/src/runtime/graphql/queries/item/users.gql +0 -0
- package/src/runtime/graphql/queries/list/action.gql +0 -0
- package/src/runtime/graphql/queries/list/apps.gql +32 -0
- package/src/runtime/graphql/queries/list/events.gql +44 -0
- package/src/runtime/graphql/queries/list/fellowships.gql +53 -0
- package/src/runtime/graphql/queries/list/news.gql +39 -0
- package/src/runtime/graphql/queries/list/people.gql +49 -0
- package/src/runtime/graphql/queries/list/projects.gql +37 -0
- package/src/runtime/graphql/queries/list/publications.gql +37 -0
- package/src/runtime/graphql/queries/list/search.gql +148 -0
- package/src/runtime/graphql/queries/list/users.gql +32 -0
- package/src/runtime/graphql/queries/login.gql +0 -0
- package/src/runtime/plugins/pinia.ts +88 -0
- package/src/runtime/plugins/vuetify.js +21 -0
- package/src/runtime/stores/factory.ts +18 -0
- package/src/runtime/stores/root.ts +353 -0
- package/src/runtime/translations/en.json +436 -0
- package/src/runtime/translations/fr.json +429 -0
- package/src/runtime/types/imports.d.ts +13 -0
- package/src/runtime/types/stores.d.ts +11 -0
|
@@ -0,0 +1,429 @@
|
|
|
1
|
+
{
|
|
2
|
+
"disciplines": {
|
|
3
|
+
"ALL": "Toutes les disciplines",
|
|
4
|
+
"SOCIAL_SCIENCES": "Sciences sociales",
|
|
5
|
+
"communication": "Communication",
|
|
6
|
+
"economics": "Économie",
|
|
7
|
+
"education": "Éducation",
|
|
8
|
+
"finance": "Finance",
|
|
9
|
+
"geography": "Géographie",
|
|
10
|
+
"history": "Histoire",
|
|
11
|
+
"law": "Loi",
|
|
12
|
+
"management": "Gestion",
|
|
13
|
+
"marketing": "Commercialisation",
|
|
14
|
+
"philosophy": "Philosophie",
|
|
15
|
+
"political-science": "Sciences politiques",
|
|
16
|
+
"psychology": "Psychologie",
|
|
17
|
+
"sociology": "Sociologie"
|
|
18
|
+
},
|
|
19
|
+
"0-1-found-page-2-of-3": "Aucun {1} trouvé. \n\nPage {2} sur {3} | \n{0} {1} trouvé. \n\nPage {2} sur {3} | \n{0} {1} trouvés. \n\nPage {2} de {3}",
|
|
20
|
+
"0-1-found-page-2-of-3-f": "Aucun {1} trouvée. \n\nPage {2} sur {3} | \n{0} {1} trouvée. \n\nPage {2} sur {3} | \n{0} {1} trouvées. \n\nPage {2} de {3}",
|
|
21
|
+
"MiscAtomsImage": {
|
|
22
|
+
"see-more": "Voir plus"
|
|
23
|
+
},
|
|
24
|
+
"about": "À propos",
|
|
25
|
+
"about-us": "À propos de nous",
|
|
26
|
+
"activities": "Activités",
|
|
27
|
+
"applicationMaterials": "Pièces à fournir",
|
|
28
|
+
"applications-closed-since-0": "Candidatures fermées depuis le {0}",
|
|
29
|
+
"back": "Retour",
|
|
30
|
+
"become-a-patron": "Devenir mécène",
|
|
31
|
+
"biography": "Biographie",
|
|
32
|
+
"board": "Conseil d'administration",
|
|
33
|
+
"browse": "Parcourir",
|
|
34
|
+
"building-bridges": "Construire des ponts",
|
|
35
|
+
"by-author": "Par {0}",
|
|
36
|
+
"by-the-numbers": "Par les chiffres",
|
|
37
|
+
"check-the-wikipedia-page-of-the-author": "Vérifiez la page Wikipedia",
|
|
38
|
+
"check-this-out": "Vérifiez ceci!",
|
|
39
|
+
"close-the-filter-panel": "Fermez les filtres",
|
|
40
|
+
"contact": "Contact",
|
|
41
|
+
"date-and-time": "Date",
|
|
42
|
+
"date-et-heure": "Date et heure",
|
|
43
|
+
"details": "Plus de détails",
|
|
44
|
+
"details-0": "Détails",
|
|
45
|
+
"discover-our-0-fellows": "Découvrez nos résidents {0}",
|
|
46
|
+
"document": "Documents",
|
|
47
|
+
"documents": "Documents",
|
|
48
|
+
"email": "E-mail",
|
|
49
|
+
"english": "Anglais",
|
|
50
|
+
"event-full": "Événement complet",
|
|
51
|
+
"events-organized-at-paris-ias": "Événements organisés à Paris IAS",
|
|
52
|
+
"events": {
|
|
53
|
+
"key": "Événements",
|
|
54
|
+
"register": "Inscrivez-vous à cet événement",
|
|
55
|
+
"register-me": "S'inscrire",
|
|
56
|
+
"see-more": "Voir plus d'événements"
|
|
57
|
+
},
|
|
58
|
+
"fellow_presentation": "Présentation de résident",
|
|
59
|
+
"fellows": "Résidents",
|
|
60
|
+
"fellowship-register": "Candidater à ce programme d'accueil'",
|
|
61
|
+
"fellowships": "Programme d'accueil | Programmes d'accueil",
|
|
62
|
+
"fellowships-programs-and-research-projects-hosted-at-paris-ias": "Programmes d'accueil chercheur et projets de recherche hébergés à Paris IAS",
|
|
63
|
+
"filters": "filtre | filtre | Filtres",
|
|
64
|
+
"follow-us": "Suivez-nous",
|
|
65
|
+
"french": "Français",
|
|
66
|
+
"from {0} to {1}": "de {0} à {1}",
|
|
67
|
+
"funding": "Financement",
|
|
68
|
+
"fundingPeriod": "Période de financement",
|
|
69
|
+
"gallery": "Galerie",
|
|
70
|
+
"get-in-touch-on-linkedin": "Contact sur LinkedIn",
|
|
71
|
+
"hosting-excellence": "Héberger l'excellence",
|
|
72
|
+
"housing": "Hébergement",
|
|
73
|
+
"hybrid-event": "Évènement hybride",
|
|
74
|
+
"in-groups": "En groupe",
|
|
75
|
+
"inscription-gratuite-et-obligatoire": "Enregistrement gratuit et obligatoire",
|
|
76
|
+
"inscription-ouverte": "Inscription ouverte",
|
|
77
|
+
"institute": "Institut",
|
|
78
|
+
"institute_life": "La vie de l'institut",
|
|
79
|
+
"invalid-color-code": "code couleur non valide",
|
|
80
|
+
"invalid-date": "Le format de date n'est pas valide",
|
|
81
|
+
"invalid-doi-code": "DOI invalide",
|
|
82
|
+
"invalid-e-mail": "E-mail non valide",
|
|
83
|
+
"invalid-orcid": "Votre numéro orcide n'est pas valide",
|
|
84
|
+
"invalid-ror-code": "Syntaxe de l'identifiant ROR non valide",
|
|
85
|
+
"items": {
|
|
86
|
+
"events": "événement |événement | événements",
|
|
87
|
+
"fellow": "résident | résident | résidents",
|
|
88
|
+
"fellowships": "programme d'accueil | programme d'accueil | programmes d'accueil",
|
|
89
|
+
"news": "actualité | actualités | actualités",
|
|
90
|
+
"people": "personne | personne | personnes",
|
|
91
|
+
"projects": "projet | projet | projets",
|
|
92
|
+
"publications": "publication | publications | publications"
|
|
93
|
+
},
|
|
94
|
+
"learn-more": "En savoir plus",
|
|
95
|
+
"list": {
|
|
96
|
+
"0-items-found": "Aucun {1} trouvé. | Un seul {1} trouvé. | {0} {1} trouvés.",
|
|
97
|
+
"0-items-found-f": "Aucune {1} trouvée. | Une seule {1} trouvée. | {0} {1} trouvées.",
|
|
98
|
+
"0-items-found-searching-for": "Aucun {1} trouvé pour la recherche de \"{2}\". | Un seul {1} trouvé pour la recherche de \"{2}\".| {0} {1} trouvés pour la recherche de \"{2}\".",
|
|
99
|
+
"0-items-found-searching-for-f": "Aucune {1} trouvée pour la recherche de \"{2}\". | Une seule {1} trouvée pour la recherche de \"{2}\".| {0} {1} trouvées pour la recherche de \"{2}\".",
|
|
100
|
+
"0-items-found-searching-for-with-1-filter": "Aucun {1} trouvé pour la recherche de \"{2}\" avec {3} {4}.| Un seul {1} trouvé pour la recherche de \"{2}\" avec {3} {4}. | {0} {1} trouvés pour la recherche de \"{2}\" avec {3} {4}.",
|
|
101
|
+
"0-items-found-searching-for-with-1-filter-f": "Aucune {1} trouvée pour la recherche de \"{2}\" avec {3} {4}. | Une seule {1} trouvée pour la recherche de \"{2}\" avec {3} {4}. | {0} {1} trouvées pour la recherche de \"{2}\" avec {3} {4}.",
|
|
102
|
+
"0-items-found-with-1-filter": "Aucun {1} trouvé avec {2} {3}. | Un seul {1} trouvé avec {2} {3}. | {0} {1} trouvés avec {2} {3}.",
|
|
103
|
+
"0-items-found-with-1-filter-f": "Aucune {1} trouvée avec {2} {3}. | Une seule {1} trouvée avec {2} {3}. | {0} {1} trouvées avec {2} {3}.",
|
|
104
|
+
"by-date-most-recent-first": "Dernier",
|
|
105
|
+
"by-date-oldest-first": "Le plus ancien",
|
|
106
|
+
"by-name-from-a-to-z": "Par nom, de A à Z",
|
|
107
|
+
"by-name-from-z-to-a": "Par nom, de Z à A",
|
|
108
|
+
"dense": "Dense",
|
|
109
|
+
"expanded": "Étendu",
|
|
110
|
+
"filters": {
|
|
111
|
+
"events": {
|
|
112
|
+
"category": {
|
|
113
|
+
"label": "Catégorie",
|
|
114
|
+
"COLLOQUIUM": "Colloque",
|
|
115
|
+
"CONFERENCE": "Conférence",
|
|
116
|
+
"FELLOW_PRESENTATION": "Présentation de Fellow",
|
|
117
|
+
"FORUM": "Forum",
|
|
118
|
+
"LECTURE": "Conférence",
|
|
119
|
+
"MEETING": "Réunion",
|
|
120
|
+
"OTHER": "Autre",
|
|
121
|
+
"PANEL": "Panneau",
|
|
122
|
+
"ROUND_TABLE": "Table ronde",
|
|
123
|
+
"SEMINAR": "Séminaire",
|
|
124
|
+
"SYMPOSIUM": "Symposium",
|
|
125
|
+
"EXHIBITION": "Exposition",
|
|
126
|
+
"WEBINAR": "Webinaire",
|
|
127
|
+
"WORKSHOP": "Atelier"
|
|
128
|
+
},
|
|
129
|
+
"fellowship": {
|
|
130
|
+
"label": "Programme d'accueil",
|
|
131
|
+
"cat": "Pensée avancée constructive",
|
|
132
|
+
"fias": "Instituts français pour une étude avancée",
|
|
133
|
+
"paris-ias-ideas": "Idées de Paris IAS",
|
|
134
|
+
"pop": "Programme Oxford-Paris"
|
|
135
|
+
},
|
|
136
|
+
"online": {
|
|
137
|
+
"label": "En ligne"
|
|
138
|
+
},
|
|
139
|
+
"tags": {
|
|
140
|
+
"label": "Tags",
|
|
141
|
+
"Socioscope": "Socioscope",
|
|
142
|
+
"WPRN": "WPRN",
|
|
143
|
+
"WPRN-2021": "WPRN 2021"
|
|
144
|
+
},
|
|
145
|
+
"organiserCategory": {
|
|
146
|
+
"label": "Type d'organisateur",
|
|
147
|
+
"IAS": "IEA de Paris",
|
|
148
|
+
"MEMBER": "Membres",
|
|
149
|
+
"FELLOW": "Résidents",
|
|
150
|
+
"EXTERNAL": "Externe"
|
|
151
|
+
},
|
|
152
|
+
"outside": {
|
|
153
|
+
"label": "Hors les murs"
|
|
154
|
+
},
|
|
155
|
+
"past": {
|
|
156
|
+
"label": "Passé"
|
|
157
|
+
},
|
|
158
|
+
"disciplines": {
|
|
159
|
+
"label": "Discipline"
|
|
160
|
+
},
|
|
161
|
+
"status": {
|
|
162
|
+
"label": "Statut",
|
|
163
|
+
"CANCELLED": "Annulé",
|
|
164
|
+
"DONE": "terminé",
|
|
165
|
+
"POSTPONED": "Reporté",
|
|
166
|
+
"PUBLISHED": "Publié",
|
|
167
|
+
"RESCHEDULED": "Reprogrammé"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"fellowships": {
|
|
171
|
+
"affiliation": {
|
|
172
|
+
"label": "Affiliation",
|
|
173
|
+
"paris-1": "Paris 1",
|
|
174
|
+
"paris-2": "Paris 2"
|
|
175
|
+
},
|
|
176
|
+
"fellowshipType": {
|
|
177
|
+
"label": "Type de programme",
|
|
178
|
+
"IN_GROUP": "En groupe",
|
|
179
|
+
"LONG_STAY": "Séjour long",
|
|
180
|
+
"SHORT_STAY": "Séjour court"
|
|
181
|
+
},
|
|
182
|
+
"status": {
|
|
183
|
+
"label": "Statut",
|
|
184
|
+
"CANCELLED": "Annulé",
|
|
185
|
+
"FINISHED": "Fini",
|
|
186
|
+
"ONGOING": "En cours",
|
|
187
|
+
"PLANNED": "Prévu"
|
|
188
|
+
},
|
|
189
|
+
"discipline": {
|
|
190
|
+
"label": "Discipline"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
"news": {
|
|
194
|
+
"category": {
|
|
195
|
+
"label": "Catégorie",
|
|
196
|
+
"ANNOUNCEMENT": "Annonce",
|
|
197
|
+
"ARTICLE": "Article",
|
|
198
|
+
"AUDIO": "Audio",
|
|
199
|
+
"AWARD": "Prix",
|
|
200
|
+
"BLOG": "Blog",
|
|
201
|
+
"DATA": "Données",
|
|
202
|
+
"EVENT": "Événement",
|
|
203
|
+
"FELLOWSHIP": "Programme d'accueil chercheur",
|
|
204
|
+
"GRANT": "Financement",
|
|
205
|
+
"INTERVIEW": "Entretien",
|
|
206
|
+
"JOB": "Emploi",
|
|
207
|
+
"LIFE_AT_THE_INSTITUTE": "La vie à l'institut",
|
|
208
|
+
"OPINION": "Opinion",
|
|
209
|
+
"PRESS_RELEASE": "Communiqué de presse",
|
|
210
|
+
"PROJECT": "Projet",
|
|
211
|
+
"PUBLICATION": "Publication",
|
|
212
|
+
"REPORT": "Rapport",
|
|
213
|
+
"SOFTWARE": "Logiciel",
|
|
214
|
+
"TOOL": "Outil",
|
|
215
|
+
"VIDEO": "Vidéo"
|
|
216
|
+
},
|
|
217
|
+
"tags": {
|
|
218
|
+
"label": "Tags",
|
|
219
|
+
"Socioscope": "Socioscope",
|
|
220
|
+
"WPRN": "WPRN",
|
|
221
|
+
"WPRN-2021": "WPRN 2021"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"people": {
|
|
225
|
+
"groups": {
|
|
226
|
+
"label": "Catégorie",
|
|
227
|
+
"board": "Conseil d'administration",
|
|
228
|
+
"fellows": "Résident",
|
|
229
|
+
"sab": "Conseil scientifique",
|
|
230
|
+
"sponsor": "Mécènes",
|
|
231
|
+
"team": "Équipe"
|
|
232
|
+
},
|
|
233
|
+
"member": {
|
|
234
|
+
"label": "Membre IEA",
|
|
235
|
+
"paris-1": "Paris 1"
|
|
236
|
+
},
|
|
237
|
+
"programs": {
|
|
238
|
+
"label": "Programme d'accueil",
|
|
239
|
+
"cat": "Pensée avancée constructive",
|
|
240
|
+
"fias": "Instituts français pour une étude avancée",
|
|
241
|
+
"paris-ias-ideas": "Idées de Paris IAS",
|
|
242
|
+
"pop": "Programme Oxford-Paris"
|
|
243
|
+
},
|
|
244
|
+
"vintage": {
|
|
245
|
+
"label": "Année"
|
|
246
|
+
},
|
|
247
|
+
"disciplines": {
|
|
248
|
+
"label": "Discipline"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
"projects": {
|
|
252
|
+
"status": {
|
|
253
|
+
"label": "Statut",
|
|
254
|
+
"CANCELLED": "Annulé",
|
|
255
|
+
"FINISHED": "Terminé",
|
|
256
|
+
"IN_PROGRESS": "En cours",
|
|
257
|
+
"PLANNED": "Prévu"
|
|
258
|
+
},
|
|
259
|
+
"tags": {
|
|
260
|
+
"label": "Tags",
|
|
261
|
+
"Socioscope": "Socioscope",
|
|
262
|
+
"WPRN": "WPRN",
|
|
263
|
+
"WPRN-2021": "WPRN 2021"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"publications": {
|
|
267
|
+
"affiliations": {
|
|
268
|
+
"label": "Affiliation",
|
|
269
|
+
"paris-1": "Paris 1"
|
|
270
|
+
},
|
|
271
|
+
"tags": {
|
|
272
|
+
"label": "Tags",
|
|
273
|
+
"Socioscope": "Socioscope",
|
|
274
|
+
"WPRN": "WPRN",
|
|
275
|
+
"WPRN-2021": "WPRN 2021"
|
|
276
|
+
},
|
|
277
|
+
"disciplines": {
|
|
278
|
+
"label": "Disciplines"
|
|
279
|
+
},
|
|
280
|
+
"eventCategories": {
|
|
281
|
+
"label": "Catégorie d'évènement",
|
|
282
|
+
"COLLOQUIUM": "Colloque",
|
|
283
|
+
"CONFERENCE": "Conférence",
|
|
284
|
+
"FELLOW_PRESENTATION": "Présentation de Fellow",
|
|
285
|
+
"FORUM": "Forum",
|
|
286
|
+
"LECTURE": "Conférence",
|
|
287
|
+
"MEETING": "Réunion",
|
|
288
|
+
"OTHER": "Autre",
|
|
289
|
+
"PANEL": "Panneau",
|
|
290
|
+
"ROUND_TABLE": "Table ronde",
|
|
291
|
+
"SEMINAR": "Séminaire",
|
|
292
|
+
"SYMPOSIUM": "Symposium",
|
|
293
|
+
"WEBINAR": "Webinaire",
|
|
294
|
+
"WORKSHOP": "Atelier"
|
|
295
|
+
},
|
|
296
|
+
"type": {
|
|
297
|
+
"label": "Type",
|
|
298
|
+
"ARTICLE": "Article",
|
|
299
|
+
"AUDIO": "Audio",
|
|
300
|
+
"BOOK": "Livre",
|
|
301
|
+
"BOOK_CHAPTER": "Chapitre de livre",
|
|
302
|
+
"CONFERENCE_PAPER": "Actes de conférence",
|
|
303
|
+
"DATA": "Données",
|
|
304
|
+
"PODCAST": "Podcast",
|
|
305
|
+
"REPORT": "Rapport",
|
|
306
|
+
"SOFTWARE": "Logiciel",
|
|
307
|
+
"THESIS": "Thèse",
|
|
308
|
+
"VIDEO": "Vidéo"
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"list": "Liste",
|
|
313
|
+
"page-0-of-1": "Page {0} sur {1}",
|
|
314
|
+
"pls-x-more": "{0} Plus",
|
|
315
|
+
"rows": "Rangées",
|
|
316
|
+
"search-type": "Rechercher un {0}",
|
|
317
|
+
"search-type-f": "Rechercher un {0}",
|
|
318
|
+
"sort-mode": "Mode de tri:",
|
|
319
|
+
"tiles": "Tuiles",
|
|
320
|
+
"view-issues": "Par numéro",
|
|
321
|
+
"view-list": "Liste",
|
|
322
|
+
"view-mode": "Mode d'affichage':",
|
|
323
|
+
"view-text": "Texte",
|
|
324
|
+
"view-tiles": "Tuiles"
|
|
325
|
+
},
|
|
326
|
+
"live-stream-available": "Flux vidéo disponible",
|
|
327
|
+
"location": "Emplacement",
|
|
328
|
+
"meals": "Repas",
|
|
329
|
+
"meet-our-network": "Rencontrez notre réseau",
|
|
330
|
+
"more-info": "Plus d'informations",
|
|
331
|
+
"moto": "Activer l'intelligence collective avec le meilleur de la recherche",
|
|
332
|
+
"network": "Réseau",
|
|
333
|
+
"news": {
|
|
334
|
+
"key": "Actualités"
|
|
335
|
+
},
|
|
336
|
+
"no-result": "Aucun résultat trouvé",
|
|
337
|
+
"online": "En ligne",
|
|
338
|
+
"open-the-filter-panel": "Ouvrez le panneau de filtre",
|
|
339
|
+
"opening-applications-on-0": "Ouvert aux candidatures le {0}",
|
|
340
|
+
"organizers": "Organisateurs",
|
|
341
|
+
"our-members": "Nos membres",
|
|
342
|
+
"our-partners": "Nos partenaires",
|
|
343
|
+
"our-sponsors": "Nos mécènes",
|
|
344
|
+
"outside-event": "Événement extérieur",
|
|
345
|
+
"page-not-found": "Page introuvable",
|
|
346
|
+
"paris-ias": "IEA de Paris",
|
|
347
|
+
"paris-institute-for-advanced-study": "Institut parisien pour les études avancées",
|
|
348
|
+
"people-attending-our-events-since-2011": "Les personnes assistent à nos événements depuis 2011",
|
|
349
|
+
"plus-de-details": "Plus les détails De",
|
|
350
|
+
"positions-and-affiliations": "Postes et affiliations",
|
|
351
|
+
"presentation": "Présentation",
|
|
352
|
+
"presentation-0": "présentation",
|
|
353
|
+
"pressroom": "Salle de presse",
|
|
354
|
+
"privacy": "politique de confidentialité",
|
|
355
|
+
"privacy-policy": "Politique de confidentialité",
|
|
356
|
+
"proceedings": "Actes",
|
|
357
|
+
"profile": "Profil",
|
|
358
|
+
"programme": "Programme",
|
|
359
|
+
"programme-pdf": "Le programme (PDF)",
|
|
360
|
+
"projects": "Projets",
|
|
361
|
+
"publications": "Publications",
|
|
362
|
+
"read-more": "En savoir plus",
|
|
363
|
+
"register": "S'inscrire",
|
|
364
|
+
"register-until-0": "Inscrivez-vous jusqu'au {0}",
|
|
365
|
+
"registration-open": "Inscription ouverte",
|
|
366
|
+
"related": {
|
|
367
|
+
"events": "Événements liés",
|
|
368
|
+
"news": "Actualités en rapport",
|
|
369
|
+
"people": "Personnes impliquées",
|
|
370
|
+
"projects": "Projets connexes",
|
|
371
|
+
"publications": "Publications rattachées"
|
|
372
|
+
},
|
|
373
|
+
"researchSupport": "Soutien à la recherche",
|
|
374
|
+
"resources": "Ressources",
|
|
375
|
+
"resumes-des-presentations": "Résumés de présentation",
|
|
376
|
+
"rules": {
|
|
377
|
+
"at-least-0-characters": "Au moins {0} caractères",
|
|
378
|
+
"invalid-e-mail": "E-mail non valide",
|
|
379
|
+
"invalid-url": "URL non valide",
|
|
380
|
+
"invalid-youtube-url": "URL YouTube non valide",
|
|
381
|
+
"max-0-characters": "Caractères max {0}",
|
|
382
|
+
"numbers-and-special-characters-not-allowed": "Les chiffres et les caractères spéciaux ne sont pas autorisés",
|
|
383
|
+
"only-digits-allowed": "Nombres uniquement",
|
|
384
|
+
"required": "Requis"
|
|
385
|
+
},
|
|
386
|
+
"sab": "Conseil scientifique",
|
|
387
|
+
"scientific-advisory-board": "Conseil scientifique",
|
|
388
|
+
"scientific_policy": "Politique scientifique",
|
|
389
|
+
"see-more": "Voir plus",
|
|
390
|
+
"selectionProcess": "Processus de sélection",
|
|
391
|
+
"seminar": "Séminaire",
|
|
392
|
+
"share-on": "Partagez cela sur {0}",
|
|
393
|
+
"share-this-on": "Jetez un œil à {1}",
|
|
394
|
+
"short-stay": "Séjour court",
|
|
395
|
+
"show-on-map": "Afficher sur la carte",
|
|
396
|
+
"socials": {
|
|
397
|
+
"ROR": "Visitez la page Institution ROR",
|
|
398
|
+
"facebook": "Visitez notre page Facebook",
|
|
399
|
+
"github": "Visitez nos référentiels GitHub",
|
|
400
|
+
"idRef": "Visitez la page de l'auteur IDREF",
|
|
401
|
+
"instagram": "Suivez-nous sur Instagram",
|
|
402
|
+
"linkedin": "Rester en contact sur LinkedIn",
|
|
403
|
+
"orcid": "Visitez la page Orcid de l'auteur",
|
|
404
|
+
"rss": "RSS",
|
|
405
|
+
"scholar": "Visitez la page de l'auteur Google Scholar",
|
|
406
|
+
"twitter": "Suivez-nous sur Twitter",
|
|
407
|
+
"wikipedia": "Vérifiez la page Wikipedia de l'auteur",
|
|
408
|
+
"youtube": "Découvrez notre chaîne YouTube",
|
|
409
|
+
"bluesky": "Visitez notre page BlueSky"
|
|
410
|
+
},
|
|
411
|
+
"subscribe": "S'abonner",
|
|
412
|
+
"subscribe-to-our-newsletter": "Abonnez-vous à notre newsletter",
|
|
413
|
+
"support": "Soutenez-nous",
|
|
414
|
+
"tasks": "Tâches",
|
|
415
|
+
"team": "Équipe",
|
|
416
|
+
"this-fellowship-alumni": "Cet ancien des anciens",
|
|
417
|
+
"tos": "Conditions d'utilisation'",
|
|
418
|
+
"type": "Type",
|
|
419
|
+
"upcoming-events": "Événements à venir",
|
|
420
|
+
"videos": "Vidéos",
|
|
421
|
+
"view-larger-map": "Afficher sur une carte plus grande",
|
|
422
|
+
"vintage": "Année {0}",
|
|
423
|
+
"visit": "Nous rendre visite",
|
|
424
|
+
"visit-the-project-website": "Visiter le site web",
|
|
425
|
+
"groups": "Catégorie",
|
|
426
|
+
"present": "aujourd'hui",
|
|
427
|
+
"visit-this-project-website": "Visitez le site Web du projet",
|
|
428
|
+
"visit-this-publications-website": "Visitez la page Web de cette publication"
|
|
429
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Or use a wildcard if you prefer
|
|
2
|
+
declare module "@paris-ias/data/dist/*" {
|
|
3
|
+
const value: any
|
|
4
|
+
export default value
|
|
5
|
+
}
|
|
6
|
+
declare module "@paris-ias/data/dist/form/*" {
|
|
7
|
+
const value: any
|
|
8
|
+
export default value
|
|
9
|
+
}
|
|
10
|
+
declare module "@paris-ias/data/dist/list/*" {
|
|
11
|
+
const value: any
|
|
12
|
+
export default value
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { events } from "~/stores/factory" // Import your store types
|
|
2
|
+
|
|
3
|
+
declare module "#app" {
|
|
4
|
+
interface NuxtApp {
|
|
5
|
+
$stores: {
|
|
6
|
+
events: ReturnType<typeof createDynamicStore<"events">>
|
|
7
|
+
news: ReturnType<typeof createDynamicStore<"news">>
|
|
8
|
+
// Add other store types...
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|