@paris-ias/list 1.0.3 → 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.
Files changed (99) hide show
  1. package/example/.env.example +3 -0
  2. package/example/nuxt.config.ts +19 -0
  3. package/example/pages/index.vue +27 -0
  4. package/package.json +3 -3
  5. package/src/module.ts +119 -0
  6. package/src/runtime/components/events/Badges.vue +73 -0
  7. package/src/runtime/components/events/DateTimePlace.vue +77 -0
  8. package/src/runtime/components/events/DenseItem.vue +40 -0
  9. package/src/runtime/components/events/ExpandedItem.vue +11 -0
  10. package/src/runtime/components/events/ListContainer.vue +41 -0
  11. package/src/runtime/components/events/RegisterModal.vue +51 -0
  12. package/src/runtime/components/events/RelatedItem.vue +44 -0
  13. package/src/runtime/components/events/RowsItem.vue +114 -0
  14. package/src/runtime/components/events/View.vue +333 -0
  15. package/src/runtime/components/fellowships/Badges.vue +48 -0
  16. package/src/runtime/components/fellowships/DenseItem.vue +39 -0
  17. package/src/runtime/components/fellowships/ExpandedItem.vue +7 -0
  18. package/src/runtime/components/fellowships/RegisterModal.vue +41 -0
  19. package/src/runtime/components/fellowships/RowsItem.vue +61 -0
  20. package/src/runtime/components/fellowships/View.vue +210 -0
  21. package/src/runtime/components/list/atoms/FiltersMenu.vue +46 -0
  22. package/src/runtime/components/list/atoms/SearchInput.vue +129 -0
  23. package/src/runtime/components/list/atoms/SearchItem.vue +59 -0
  24. package/src/runtime/components/list/atoms/SearchString.vue +161 -0
  25. package/src/runtime/components/list/atoms/SortMenu.vue +97 -0
  26. package/src/runtime/components/list/atoms/ViewMenu.vue +71 -0
  27. package/src/runtime/components/list/inputs/AutoComplete.vue +22 -0
  28. package/src/runtime/components/list/inputs/BooleanSwitch.vue +18 -0
  29. package/src/runtime/components/list/inputs/Checkbox.vue +21 -0
  30. package/src/runtime/components/list/inputs/Select.vue +25 -0
  31. package/src/runtime/components/list/molecules/Filters.vue +97 -0
  32. package/src/runtime/components/list/molecules/Header.vue +47 -0
  33. package/src/runtime/components/list/molecules/Pagination.vue +243 -0
  34. package/src/runtime/components/list/organisms/List.vue +92 -0
  35. package/src/runtime/components/list/views/Dense.vue +25 -0
  36. package/src/runtime/components/list/views/Expanded.vue +10 -0
  37. package/src/runtime/components/list/views/Grid.vue +13 -0
  38. package/src/runtime/components/list/views/Rows.vue +13 -0
  39. package/src/runtime/components/list/views/Table.vue +13 -0
  40. package/src/runtime/components/misc/atoms/CountUp.vue +198 -0
  41. package/src/runtime/components/misc/atoms/DateStamp.vue +104 -0
  42. package/src/runtime/components/misc/atoms/ImageContainer.vue +105 -0
  43. package/src/runtime/components/misc/atoms/ShareMenu.vue +60 -0
  44. package/src/runtime/components/misc/atoms/Socials.vue +127 -0
  45. package/src/runtime/components/misc/molecules/ChipContainer.vue +35 -0
  46. package/src/runtime/components/misc/molecules/Related.vue +41 -0
  47. package/src/runtime/components/misc/molecules/RelatedItems.vue +29 -0
  48. package/src/runtime/components/misc/molecules/SearchItem.vue +26 -0
  49. package/src/runtime/components/news/DenseItem.vue +62 -0
  50. package/src/runtime/components/news/ExpandedItem.vue +153 -0
  51. package/src/runtime/components/news/Header.vue +9 -0
  52. package/src/runtime/components/news/RelatedItem.vue +44 -0
  53. package/src/runtime/components/news/RowsItem.vue +160 -0
  54. package/src/runtime/components/news/View.vue +190 -0
  55. package/src/runtime/components/people/DenseItem.vue +37 -0
  56. package/src/runtime/components/people/ExpandedItem.vue +16 -0
  57. package/src/runtime/components/people/GroupBadges.vue +56 -0
  58. package/src/runtime/components/people/RelatedItem.vue +41 -0
  59. package/src/runtime/components/people/RowsItem.vue +95 -0
  60. package/src/runtime/components/people/View.vue +162 -0
  61. package/src/runtime/components/projects/ExpandedItem.vue +14 -0
  62. package/src/runtime/components/projects/RelatedItem.vue +44 -0
  63. package/src/runtime/components/projects/RowsItem.vue +106 -0
  64. package/src/runtime/components/projects/View.vue +131 -0
  65. package/src/runtime/components/publications/RelatedItem.vue +44 -0
  66. package/src/runtime/components/publications/RowsItem.vue +105 -0
  67. package/src/runtime/components/publications/View.vue +139 -0
  68. package/src/runtime/composables/useFetchItem.ts +64 -0
  69. package/src/runtime/composables/useIcons.ts +30 -0
  70. package/src/runtime/composables/useUtils.ts +75 -0
  71. package/src/runtime/graphql/queries/buildFiltersValues.gql +35 -0
  72. package/src/runtime/graphql/queries/item/action.gql +0 -0
  73. package/src/runtime/graphql/queries/item/apps.gql +0 -0
  74. package/src/runtime/graphql/queries/item/events.gql +120 -0
  75. package/src/runtime/graphql/queries/item/fellowships.gql +164 -0
  76. package/src/runtime/graphql/queries/item/news.gql +129 -0
  77. package/src/runtime/graphql/queries/item/people.gql +174 -0
  78. package/src/runtime/graphql/queries/item/projects.gql +171 -0
  79. package/src/runtime/graphql/queries/item/publications.gql +169 -0
  80. package/src/runtime/graphql/queries/item/users.gql +0 -0
  81. package/src/runtime/graphql/queries/list/action.gql +0 -0
  82. package/src/runtime/graphql/queries/list/apps.gql +32 -0
  83. package/src/runtime/graphql/queries/list/events.gql +44 -0
  84. package/src/runtime/graphql/queries/list/fellowships.gql +53 -0
  85. package/src/runtime/graphql/queries/list/news.gql +39 -0
  86. package/src/runtime/graphql/queries/list/people.gql +49 -0
  87. package/src/runtime/graphql/queries/list/projects.gql +37 -0
  88. package/src/runtime/graphql/queries/list/publications.gql +37 -0
  89. package/src/runtime/graphql/queries/list/search.gql +148 -0
  90. package/src/runtime/graphql/queries/list/users.gql +32 -0
  91. package/src/runtime/graphql/queries/login.gql +0 -0
  92. package/src/runtime/plugins/pinia.ts +88 -0
  93. package/src/runtime/plugins/vuetify.js +21 -0
  94. package/src/runtime/stores/factory.ts +18 -0
  95. package/src/runtime/stores/root.ts +353 -0
  96. package/src/runtime/translations/en.json +436 -0
  97. package/src/runtime/translations/fr.json +429 -0
  98. package/src/runtime/types/imports.d.ts +13 -0
  99. package/src/runtime/types/stores.d.ts +11 -0
@@ -0,0 +1,436 @@
1
+ {
2
+ "0-1-found-page-2-of-3": "No {1} found. \nPage {2} of {3} | {0} {1} found. \nPage {2} of {3} | {0} {1} found. \nPage {2} of {3} ",
3
+ "about": "About",
4
+ "about-us": "About us",
5
+ "activities": "Activities",
6
+ "applicationMaterials": "Application materials",
7
+ "applications-closed-since-0": "Applications closed since {0}",
8
+ "back": "Back",
9
+ "become-a-patron": "Become a patron",
10
+ "biography": "Biography",
11
+ "board": "Board of Directors",
12
+ "browse": "Browse",
13
+ "building-bridges": "Building bridges",
14
+ "by-author": "By {0}",
15
+ "by-the-numbers": "By the numbers",
16
+ "check-the-wikipedia-page-of-the-author": "Check the wikipedia page",
17
+ "check-this-out": "Check this out!",
18
+ "close-the-filter-panel": "Close the filter panel",
19
+ "contact": "Contact",
20
+ "date-and-time": "Date & Time",
21
+ "date-et-heure": "Date and Time",
22
+ "details": "More details",
23
+ "details-0": "Details",
24
+ "discover-our-0-fellows": "Discover our {0} Fellows",
25
+ "document": "Documents",
26
+ "documents": "Documents",
27
+ "email": "Email",
28
+ "english": "English",
29
+ "event-full": "Event full",
30
+ "events": {
31
+ "key": "Events",
32
+ "register": "Register to this event",
33
+ "register-me": "Register",
34
+ "see-more": "See more events"
35
+ },
36
+ "events-organized-at-paris-ias": "Events organized at Paris IAS",
37
+ "fellow_presentation": "Fellow's presentation",
38
+ "fellows": "Fellows",
39
+ "fellowship": "Fellowship | Fellowships",
40
+ "fellowship-register": "Candidate to this fellowship program",
41
+ "fellowships": "Fellowships",
42
+ "fellowships-programs-and-research-projects-hosted-at-paris-ias": "Fellowships programs and research projects hosted at Paris IAS",
43
+ "filters": "Filters",
44
+ "follow-us": "Follow us",
45
+ "french": "French",
46
+ "from {0} to {1}": "from {0} to {1}",
47
+ "funding": "Funding",
48
+ "fundingPeriod": "Funding period",
49
+ "gallery": "Gallery",
50
+ "get-in-touch-on-linkedin": "Contact on Linkedin",
51
+ "groups": {
52
+ "board": "Advisory board",
53
+ "fellow": "Fellow",
54
+ "sab": "Scientific Advisory Board",
55
+ "sponsor": "Patron",
56
+ "team": "Team"
57
+ },
58
+ "hosting-excellence": "Hosting excellence",
59
+ "housing": "Housing",
60
+ "hybrid-event": "Hybrid event",
61
+ "in-groups": "In group",
62
+ "inscription-gratuite-et-obligatoire": " Free and mandatory registration",
63
+ "inscription-ouverte": "Registration Open",
64
+ "institute": "Institute",
65
+ "institute_life": "Institute Life",
66
+ "invalid-color-code": "invalid color code",
67
+ "invalid-date": "The date format is invalid",
68
+ "invalid-doi-code": "Invalid DOI",
69
+ "invalid-e-mail": "Invalid Email",
70
+ "invalid-orcid": "Your ORCID number is invalid",
71
+ "invalid-ror-code": "Invalid ROR identifier syntax",
72
+ "items": {
73
+ "events": "event | event | events",
74
+ "fellow": "fellow | fellow | fellows",
75
+ "fellowships": "fellowship | fellowship | fellowships",
76
+ "news": "news | news | news",
77
+ "people": "one | person | people",
78
+ "projects": "project | project | projects",
79
+ "publications": "publication | publication | publications"
80
+ },
81
+ "learn-more": "read more",
82
+ "list": {
83
+ "0-items-found": "No {1} found. | One {1} found. | {0} {1} found.",
84
+ "0-items-found-f": "No {1} found. | One {1} found. | {0} {1} found.",
85
+ "0-items-found-searching-for": "No {1} found for \"{2}\". | One {1} found for \"{2}\". | {0} {1} found for \"{2}\".",
86
+ "0-items-found-searching-for-f": "No {1} found for \"{2}\". | One {1} found for \"{2}\". | {0} {1} found for \"{2}\".",
87
+ "0-items-found-searching-for-with-1-filter": "No {1} found for \"{2}\" with {3} {4}. | One {1} found for \"{2}\" with {3} {4}. | {0} {1} found for \"{2}\" with {3} {4}.",
88
+ "0-items-found-searching-for-with-1-filter-f": "No {1} found for \"{2}\" with {3} {4}. | One {1} found for \"{2}\" with {3} {4}. | {0} {1} found for \"{2}\" with {3} {4}.",
89
+ "0-items-found-with-1-filter": "No {1} found with {2} {3}. | One {1} found with {2} {3}. | {0} {1} found with {2} {3}.",
90
+ "0-items-found-with-1-filter-f": "No {1} found with {2} {3}. | One {1} found with {2} {3}. | {0} {1} found with {2} {3}.",
91
+ "by-date-most-recent-first": "Latest",
92
+ "by-date-oldest-first": "Oldest",
93
+ "by-name-from-a-to-z": "By Name, from A to Z",
94
+ "by-name-from-z-to-a": "By Name, from Z to A",
95
+ "dense": "Dense",
96
+ "expanded": "Expanded",
97
+ "filters": {
98
+ "events": {
99
+ "category": {
100
+ "label": "Category",
101
+ "COLLOQUIUM": "Colloquium",
102
+ "CONFERENCE": "Conference",
103
+ "FELLOW_PRESENTATION": "Fellow's presentation",
104
+ "FORUM": "Forum",
105
+ "LECTURE": "Lecture",
106
+ "MEETING": "Meeting",
107
+ "OTHER": "Other",
108
+ "PANEL": "Panel",
109
+ "ROUND_TABLE": "Round table",
110
+ "SEMINAR": "Seminar",
111
+ "SYMPOSIUM": "Symposium",
112
+ "EXHIBITION": "Exhibition",
113
+ "WEBINAR": "Webinar",
114
+ "WORKSHOP": "Workshop"
115
+ },
116
+ "fellowship": {
117
+ "cat": "Constructive Advanced Thinking",
118
+ "fias": "French Institutes for Advanced Study",
119
+ "paris-ias-ideas": "Paris IAS Ideas",
120
+ "pop": "Program Oxford-Paris",
121
+ "label": "Fellowship"
122
+ },
123
+ "online": {
124
+ "label": "Online"
125
+ },
126
+ "organiserCategory": {
127
+ "IAS": "PARIS IAS",
128
+ "MEMBER": "Our Members",
129
+ "FELLOW": "Our Fellows",
130
+ "EXTERNAL": "External",
131
+ "label": "Organizer type"
132
+ },
133
+ "tags": {
134
+ "label": "Tags",
135
+ "Socioscope": "Socioscope",
136
+ "WPRN": "WPRN",
137
+ "WPRN-2021": "WPRN 2021"
138
+ },
139
+ "outside": {
140
+ "label": "Outside"
141
+ },
142
+ "disciplines": {
143
+ "label": "Discipline"
144
+ },
145
+ "past": {
146
+ "label": "Past"
147
+ },
148
+ "status": {
149
+ "label": "Status",
150
+ "CANCELLED": "Cancelled",
151
+ "POSTPONED": "Postponed to {0}",
152
+ "PUBLISHED": "Published",
153
+ "RESCHEDULED": "Rescheduled"
154
+ }
155
+ },
156
+ "fellowships": {
157
+ "affiliation": {
158
+ "label": "Affiliation",
159
+ "paris-1": "Paris 1",
160
+ "paris-2": "Paris 2"
161
+ },
162
+ "fellowshipType": {
163
+ "label": "Type of fellowship",
164
+ "IN_GROUP": "In group",
165
+ "LONG_STAY": "Long stay",
166
+ "SHORT_STAY": "Short stay"
167
+ },
168
+ "status": {
169
+ "label": "Status",
170
+ "CANCELLED": "Cancelled",
171
+ "FINISHED": "Finished",
172
+ "ONGOING": "Ongoing",
173
+ "PLANNED": "Planned"
174
+ },
175
+ "discipline": {
176
+ "label": "Discipline"
177
+ }
178
+ },
179
+ "news": {
180
+ "category": {
181
+ "label": "Category",
182
+ "ANNOUNCEMENT": "Announcement",
183
+ "ARTICLE": "Article",
184
+ "AUDIO": "Audio",
185
+ "AWARD": "Award",
186
+ "BLOG": "Blog",
187
+ "DATA": "Data",
188
+ "EVENT": "Event",
189
+ "FELLOWSHIP": "Fellowship",
190
+ "GRANT": "Grant",
191
+ "INTERVIEW": "Interview",
192
+ "JOB": "Job",
193
+ "LIFE_AT_THE_INSTITUTE": "Life at the institute",
194
+ "OPINION": "Opinion",
195
+ "PRESS_RELEASE": "Press release",
196
+ "PROJECT": "Project",
197
+ "PUBLICATION": "Publication",
198
+ "REPORT": "Report",
199
+ "SOFTWARE": "Software",
200
+ "TOOL": "Tool",
201
+ "VIDEO": "Video"
202
+ },
203
+ "tags": {
204
+ "label": "Tags",
205
+ "Socioscope": "Socioscope",
206
+ "WPRN": "WPRN",
207
+ "WPRN-2021": "WPRN 2021"
208
+ }
209
+ },
210
+ "people": {
211
+ "groups": {
212
+ "label": "Group",
213
+ "board": "Board of directors",
214
+ "fellows": "Fellows",
215
+ "sab": "Scientific Advisory Board",
216
+ "sponsor": "Sponsor",
217
+ "team": "Team"
218
+ },
219
+ "member": {
220
+ "label": "Member",
221
+ "paris-1": "Paris 1"
222
+ },
223
+ "programs": {
224
+ "label": "Program",
225
+ "cat": "Constructive Advanced Thinking",
226
+ "fias": "French Institutes for Advanced Study",
227
+ "paris-ias-ideas": "Paris IAS Ideas",
228
+ "pop": "Program Oxford-Paris"
229
+ },
230
+ "vintage": {
231
+ "label": "Vintage"
232
+ },
233
+ "disciplines": {
234
+ "label": "Discipline"
235
+ }
236
+ },
237
+ "projects": {
238
+ "status": {
239
+ "label": "Status",
240
+ "CANCELLED": "Cancelled",
241
+ "FINISHED": "Finished",
242
+ "IN_PROGRESS": "Ongoing",
243
+ "PLANNED": "Planned"
244
+ },
245
+ "tags": {
246
+ "label": "Tags",
247
+ "Socioscope": "Socioscope",
248
+ "WPRN": "WPRN",
249
+ "WPRN-2021": "WPRN 2021"
250
+ }
251
+ },
252
+ "publications": {
253
+ "affiliations": {
254
+ "label": "Affiliation",
255
+ "paris-1": "Paris 1"
256
+ },
257
+ "tags": {
258
+ "label": "Tags",
259
+ "Socioscope": "Socioscope",
260
+ "WPRN": "WPRN",
261
+ "WPRN-2021": "WPRN 2021"
262
+ },
263
+ "disciplines": {
264
+ "label": "Disciplines"
265
+ },
266
+ "eventCategories": {
267
+ "label": "Event category",
268
+ "COLLOQUIUM": "Colloquium",
269
+ "CONFERENCE": "Conference",
270
+ "FELLOW_PRESENTATION": "Fellow's presentation",
271
+ "FORUM": "Forum",
272
+ "LECTURE": "Lecture",
273
+ "MEETING": "Meeting",
274
+ "OTHER": "Other",
275
+ "PANEL": "Panel",
276
+ "ROUND_TABLE": "Round table",
277
+ "SEMINAR": "Seminar",
278
+ "SYMPOSIUM": "Symposium",
279
+ "WEBINAR": "Webinar",
280
+ "WORKSHOP": "Workshop"
281
+ },
282
+ "type": {
283
+ "label": "Type",
284
+ "ARTICLE": "Article",
285
+ "AUDIO": "Audio",
286
+ "BOOK": "Book",
287
+ "BOOK_CHAPTER": "Book chapter",
288
+ "CONFERENCE_PAPER": "Conference paper",
289
+ "DATA": "Data",
290
+ "PODCAST": "Podcast",
291
+ "REPORT": "Report",
292
+ "SOFTWARE": "Software",
293
+ "THESIS": "Thesis",
294
+ "VIDEO": "Video"
295
+ }
296
+ }
297
+ },
298
+ "list": "List",
299
+ "page-0-of-1": "Page {0} of {1}",
300
+ "pls-x-more": "+ {0} more",
301
+ "rows": "Rows",
302
+ "search-type": "Search {0}",
303
+ "sort-mode": "Sort mode: ",
304
+ "tiles": "Tiles",
305
+ "view-issues": "By issue",
306
+ "view-list": "List",
307
+ "view-mode": "View mode: ",
308
+ "view-text": "Text",
309
+ "view-tiles": "Quilted"
310
+ },
311
+ "live-stream-available": "Live stream available",
312
+ "location": "Location",
313
+ "long-stay": "Long stay",
314
+ "meals": "Meals",
315
+ "meet-our-network": "Meet our network",
316
+ "MiscAtomsImage": {
317
+ "see-more": "See more"
318
+ },
319
+ "more-info": "More info",
320
+ "moto": "Activating collective intelligence with the best of research",
321
+ "network": "Network",
322
+ "news": {
323
+ "key": "News"
324
+ },
325
+ "disciplines": {
326
+ "ALL": "All disciplines",
327
+ "SOCIAL_SCIENCES": "Sciences sociales",
328
+ "communication": "Communication",
329
+ "economics": "Economics",
330
+ "education": "Education",
331
+ "finance": "Finance",
332
+ "geography": "Geography",
333
+ "history": "History",
334
+ "law": "Law",
335
+ "management": "Management",
336
+ "marketing": "Marketing",
337
+ "philosophy": "Philosophy",
338
+ "political-science": "Political Science",
339
+ "psychology": "Psychology",
340
+ "sociology": "Sociology"
341
+ },
342
+ "no-result": "No result found",
343
+ "online": "Online",
344
+ "open-the-filter-panel": "Open the filter panel",
345
+ "opening-applications-on-0": "Open to applications on {0}",
346
+ "organizers": "Organizers",
347
+ "our-members": "Our members",
348
+ "our-partners": "Our partners",
349
+ "our-sponsors": "Our patrons",
350
+ "outside-event": "Outside event",
351
+ "page-not-found": "Page not found",
352
+ "paris-ias": "PARIS IAS",
353
+ "paris-institute-for-advanced-study": "Paris Institute for Advanced Study",
354
+ "people": "People",
355
+ "people-attending-our-events-since-2011": "People attending our events since 2011",
356
+ "plus-de-details": "Plus de details",
357
+ "positions-and-affiliations": "Positions and Affiliations",
358
+ "presentation": "Presentation",
359
+ "presentation-0": "presentation",
360
+ "pressroom": "Pressroom",
361
+ "privacy": "Privacy Policy",
362
+ "privacy-policy": "Privacy policy",
363
+ "proceedings": "Proceedings",
364
+ "profile": "Profile",
365
+ "programme": "Programme",
366
+ "programme-pdf": "The Programm (PDF)",
367
+ "projects": "Projects",
368
+ "publications": "Publications",
369
+ "read-more": "Read more",
370
+ "register": "Register",
371
+ "register-until-0": "Register until {0}",
372
+ "registration-open": "Registration open",
373
+ "related": {
374
+ "events": "Related events",
375
+ "news": "Related news",
376
+ "people": "Related people",
377
+ "projects": "Related projects",
378
+ "publications": "Related publications"
379
+ },
380
+ "researchSupport": "Research Support",
381
+ "resources": "Resources",
382
+ "resumes-des-presentations": "Presentation summaries",
383
+ "rules": {
384
+ "at-least-0-characters": "At least {0} characters",
385
+ "invalid-e-mail": "Invalid e-mail",
386
+ "invalid-url": "Invalid URL",
387
+ "invalid-youtube-url": "Invalid Youtube URL",
388
+ "max-0-characters": "Max {0} characters",
389
+ "numbers-and-special-characters-not-allowed": "Numbers and special characters not allowed",
390
+ "only-digits-allowed": "Numbers only",
391
+ "required": "Required"
392
+ },
393
+ "sab": "Scientific Advisory Board",
394
+ "scientific_policy": "Scientific Policy",
395
+ "scientific-advisory-board": "Scientific advisory board",
396
+ "see-more": "See more",
397
+ "selectionProcess": "Selection process",
398
+ "seminar": "Seminar",
399
+ "share-on": "Share this on {network}",
400
+ "share-this-on": "Have a look at {1}",
401
+ "short-stay": "Short stay",
402
+ "show-on-map": "Show on map",
403
+ "socials": {
404
+ "facebook": "Visit our Facebook page",
405
+ "github": "Visit our Github repositories",
406
+ "idRef": "Visit the author IdRef page",
407
+ "instagram": "Follow us on Instagram",
408
+ "linkedin": "Get in touch on linkedin",
409
+ "orcid": "Visit the author Orcid page",
410
+ "ROR": "Visit the institution ROR page",
411
+ "rss": "RSS",
412
+ "scholar": "Visit the author google scholar page",
413
+ "twitter": "Follow us on Twitter",
414
+ "wikipedia": "Check the wikipedia page of the author",
415
+ "youtube": "Check out our Youtube channel",
416
+ "bluesky": "Visit our BlueSky page"
417
+ },
418
+ "subscribe": "Subscribe",
419
+ "subscribe-to-our-newsletter": "Subscribe to our newsletter",
420
+ "support": "Support us",
421
+ "tasks": "Tasks",
422
+ "team": "Team",
423
+ "this-fellowship-alumni": "This fellowship alumni",
424
+ "tos": "Terms of Service",
425
+ "type": "Type",
426
+ "upcoming-events": "Upcoming events",
427
+ "videos": "Videos",
428
+ "view-larger-map": "View on a larger map",
429
+ "vintage": "Year {0}",
430
+ "visit": "Visit us",
431
+ "visit-the-project-website": "Visit the project website",
432
+ "watch-the-replay": "Watch the replay",
433
+ "present": "present",
434
+ "visit-this-project-website": "Visit this project website",
435
+ "visit-this-publications-website": "Visit this publication webpage"
436
+ }