@paris-ias/list 1.0.111 → 1.0.113
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/dist/module.json +1 -1
- package/dist/runtime/components/events/DenseItem.vue +24 -15
- package/dist/runtime/components/fellowships/DenseItem.vue +1 -1
- package/dist/runtime/components/list/atoms/SearchInput.vue +4 -2
- package/dist/runtime/components/list/molecules/Pagination.vue +2 -0
- package/dist/runtime/components/list/organisms/List.vue +16 -2
- package/dist/runtime/components/list/views/Dense.vue +0 -1
- package/dist/runtime/components/news/DenseItem.vue +24 -23
- package/dist/runtime/components/people/Badges.vue +74 -0
- package/dist/runtime/components/people/DenseItem.vue +11 -8
- package/dist/runtime/components/people/RowsItem.vue +2 -2
- package/dist/runtime/components/people/View.vue +1 -1
- package/dist/runtime/components/publications/DenseItem.vue +14 -7
- package/dist/runtime/graphql/list/publications.gql +2 -0
- package/dist/runtime/runtime/components/actions/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/actions/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/actions/View.vue +20 -0
- package/dist/runtime/runtime/components/affiliations/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/affiliations/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/affiliations/View.vue +20 -0
- package/dist/runtime/runtime/components/apps/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/apps/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/apps/View.vue +20 -0
- package/dist/runtime/runtime/components/disciplines/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/disciplines/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/disciplines/View.vue +20 -0
- package/dist/runtime/runtime/components/events/Badges.vue +73 -0
- package/dist/runtime/runtime/components/events/DateTimePlace.vue +77 -0
- package/dist/runtime/runtime/components/events/DenseItem.vue +60 -0
- package/dist/runtime/runtime/components/events/ExpandedItem.vue +9 -0
- package/dist/runtime/runtime/components/events/RegisterModal.vue +50 -0
- package/dist/runtime/runtime/components/events/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/events/RowsItem.vue +118 -0
- package/dist/runtime/runtime/components/events/SlidingItem.vue +63 -0
- package/dist/runtime/runtime/components/events/View.vue +333 -0
- package/dist/runtime/runtime/components/fellowships/Badges.vue +47 -0
- package/dist/runtime/runtime/components/fellowships/DenseItem.vue +42 -0
- package/dist/runtime/runtime/components/fellowships/ExpandedItem.vue +7 -0
- package/dist/runtime/runtime/components/fellowships/RegisterModal.vue +41 -0
- package/dist/runtime/runtime/components/fellowships/RowsItem.vue +58 -0
- package/dist/runtime/runtime/components/fellowships/View.vue +203 -0
- package/dist/runtime/runtime/components/files/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/files/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/files/View.vue +20 -0
- package/dist/runtime/runtime/components/list/atoms/FiltersMenu.vue +44 -0
- package/dist/runtime/runtime/components/list/atoms/ResetButton.vue +33 -0
- package/dist/runtime/runtime/components/list/atoms/ResultsList.vue +27 -0
- package/dist/runtime/runtime/components/list/atoms/SearchInput.vue +59 -0
- package/dist/runtime/runtime/components/list/atoms/SearchItem.vue +65 -0
- package/dist/runtime/runtime/components/list/atoms/SearchString.vue +160 -0
- package/dist/runtime/runtime/components/list/atoms/SortMenu.vue +80 -0
- package/dist/runtime/runtime/components/list/atoms/ViewMenu.vue +63 -0
- package/dist/runtime/runtime/components/list/atoms/itemsPerPage.vue +33 -0
- package/dist/runtime/runtime/components/list/inputs/AutoComplete.vue +24 -0
- package/dist/runtime/runtime/components/list/inputs/BooleanSwitch.vue +20 -0
- package/dist/runtime/runtime/components/list/inputs/Checkbox.vue +20 -0
- package/dist/runtime/runtime/components/list/inputs/Select.vue +28 -0
- package/dist/runtime/runtime/components/list/molecules/Filters.vue +98 -0
- package/dist/runtime/runtime/components/list/molecules/GlobalSearchInput.vue +131 -0
- package/dist/runtime/runtime/components/list/molecules/Header.vue +51 -0
- package/dist/runtime/runtime/components/list/molecules/Pagination.vue +194 -0
- package/dist/runtime/runtime/components/list/molecules/ResultsContainer.vue +78 -0
- package/dist/runtime/runtime/components/list/organisms/List.vue +110 -0
- package/dist/runtime/runtime/components/list/organisms/Results.vue +72 -0
- package/dist/runtime/runtime/components/list/organisms/Slider.vue +180 -0
- package/dist/runtime/runtime/components/list/views/Dense.vue +12 -0
- package/dist/runtime/runtime/components/list/views/Expanded.vue +10 -0
- package/dist/runtime/runtime/components/list/views/Grid.vue +13 -0
- package/dist/runtime/runtime/components/list/views/Rows.vue +12 -0
- package/dist/runtime/runtime/components/list/views/Slider.vue +147 -0
- package/dist/runtime/runtime/components/list/views/Table.vue +13 -0
- package/dist/runtime/runtime/components/mailing/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/mailing/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/mailing/View.vue +20 -0
- package/dist/runtime/runtime/components/misc/atoms/DateStamp.vue +101 -0
- package/dist/runtime/runtime/components/misc/atoms/ImageContainer.vue +127 -0
- package/dist/runtime/runtime/components/misc/atoms/ShareMenu.vue +61 -0
- package/dist/runtime/runtime/components/misc/atoms/Socials.vue +120 -0
- package/dist/runtime/runtime/components/misc/molecules/ChipContainer.vue +31 -0
- package/dist/runtime/runtime/components/misc/molecules/Related.vue +28 -0
- package/dist/runtime/runtime/components/misc/molecules/RelatedItems.vue +27 -0
- package/dist/runtime/runtime/components/misc/molecules/SearchItem.vue +26 -0
- package/dist/runtime/runtime/components/news/DenseItem.vue +73 -0
- package/dist/runtime/runtime/components/news/ExpandedItem.vue +145 -0
- package/dist/runtime/runtime/components/news/Header.vue +7 -0
- package/dist/runtime/runtime/components/news/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/news/RowsItem.vue +182 -0
- package/dist/runtime/runtime/components/news/View.vue +174 -0
- package/dist/runtime/runtime/components/people/DenseItem.vue +60 -0
- package/dist/runtime/runtime/components/people/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/people/RelatedItem.vue +41 -0
- package/dist/runtime/runtime/components/people/RowsItem.vue +93 -0
- package/dist/runtime/runtime/components/people/View.vue +172 -0
- package/dist/runtime/runtime/components/projects/DenseItem.vue +77 -0
- package/dist/runtime/runtime/components/projects/ExpandedItem.vue +12 -0
- package/dist/runtime/runtime/components/projects/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/projects/RowsItem.vue +103 -0
- package/dist/runtime/runtime/components/projects/View.vue +130 -0
- package/dist/runtime/runtime/components/publications/DenseItem.vue +89 -0
- package/dist/runtime/runtime/components/publications/RelatedItem.vue +44 -0
- package/dist/runtime/runtime/components/publications/RowsItem.vue +105 -0
- package/dist/runtime/runtime/components/publications/View.vue +132 -0
- package/dist/runtime/runtime/components/tags/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/tags/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/tags/View.vue +20 -0
- package/dist/runtime/runtime/components/users/ExpandedItem.vue +14 -0
- package/dist/runtime/runtime/components/users/RowsItem.vue +12 -0
- package/dist/runtime/runtime/components/users/View.vue +20 -0
- package/dist/runtime/runtime/composables/useFetchItem.d.ts +6 -0
- package/dist/runtime/runtime/composables/useFetchItem.js +49 -0
- package/dist/runtime/runtime/composables/useIcons.d.ts +1 -0
- package/dist/runtime/runtime/composables/useIcons.js +30 -0
- package/dist/runtime/runtime/composables/useUtils.d.ts +12 -0
- package/dist/runtime/runtime/composables/useUtils.js +48 -0
- package/dist/runtime/runtime/graphql/buildFiltersValues.gql +35 -0
- package/dist/runtime/runtime/graphql/item/action.gql +22 -0
- package/dist/runtime/runtime/graphql/item/affiliations.gql +37 -0
- package/dist/runtime/runtime/graphql/item/apps.gql +34 -0
- package/dist/runtime/runtime/graphql/item/disciplines.gql +17 -0
- package/dist/runtime/runtime/graphql/item/events.gql +120 -0
- package/dist/runtime/runtime/graphql/item/fellowships.gql +164 -0
- package/dist/runtime/runtime/graphql/item/files.gql +25 -0
- package/dist/runtime/runtime/graphql/item/mailing.gql +10 -0
- package/dist/runtime/runtime/graphql/item/news.gql +129 -0
- package/dist/runtime/runtime/graphql/item/people.gql +174 -0
- package/dist/runtime/runtime/graphql/item/projects.gql +171 -0
- package/dist/runtime/runtime/graphql/item/publications.gql +169 -0
- package/dist/runtime/runtime/graphql/item/tags.gql +13 -0
- package/dist/runtime/runtime/graphql/item/users.gql +14 -0
- package/dist/runtime/runtime/graphql/list/action.gql +31 -0
- package/dist/runtime/runtime/graphql/list/affiliations.gql +42 -0
- package/dist/runtime/runtime/graphql/list/apps.gql +42 -0
- package/dist/runtime/runtime/graphql/list/disciplines.gql +22 -0
- package/dist/runtime/runtime/graphql/list/events.gql +44 -0
- package/dist/runtime/runtime/graphql/list/fellowships.gql +53 -0
- package/dist/runtime/runtime/graphql/list/files.gql +37 -0
- package/dist/runtime/runtime/graphql/list/mailing.gql +22 -0
- package/dist/runtime/runtime/graphql/list/news.gql +40 -0
- package/dist/runtime/runtime/graphql/list/people.gql +50 -0
- package/dist/runtime/runtime/graphql/list/projects.gql +37 -0
- package/dist/runtime/runtime/graphql/list/publications.gql +38 -0
- package/dist/runtime/runtime/graphql/list/search.gql +161 -0
- package/dist/runtime/runtime/graphql/list/tags.gql +22 -0
- package/dist/runtime/runtime/graphql/list/users.gql +38 -0
- package/dist/runtime/runtime/graphql/login.gql +0 -0
- package/dist/runtime/runtime/plugins/pinia.d.ts +2 -0
- package/dist/runtime/runtime/plugins/pinia.js +134 -0
- package/dist/runtime/runtime/plugins/vuetify.d.ts +2 -0
- package/dist/runtime/runtime/plugins/vuetify.js +21 -0
- package/dist/runtime/runtime/public/default.png +0 -0
- package/dist/runtime/runtime/public/filters.json +72 -0
- package/dist/runtime/runtime/server/tsconfig.json +3 -0
- package/dist/runtime/runtime/stores/factory.d.ts +25 -0
- package/dist/runtime/runtime/stores/factory.js +19 -0
- package/dist/runtime/runtime/stores/root.d.ts +60 -0
- package/dist/runtime/runtime/stores/root.js +315 -0
- package/dist/runtime/runtime/translations/en.json +350 -0
- package/dist/runtime/runtime/translations/fr.json +349 -0
- package/dist/runtime/runtime/types/imports.d.ts +13 -0
- package/dist/runtime/runtime/types/stores.d.ts +11 -0
- package/dist/runtime/translations/en.json +1 -1
- package/package.json +2 -2
- /package/dist/runtime/{components → runtime/components}/people/GroupBadges.vue +0 -0
|
@@ -0,0 +1,350 @@
|
|
|
1
|
+
{
|
|
2
|
+
"applications-closed-since-0": "Applications closed since {0}",
|
|
3
|
+
"back": "Back",
|
|
4
|
+
"biography": "Biography",
|
|
5
|
+
"date-et-heure": "Date and Time",
|
|
6
|
+
"details": "More details",
|
|
7
|
+
"details-0": "Details",
|
|
8
|
+
"document": "Documents",
|
|
9
|
+
"events": {
|
|
10
|
+
"key": "Events",
|
|
11
|
+
"register": "Register to this event",
|
|
12
|
+
"register-me": "Register",
|
|
13
|
+
"see-more": "See more events"
|
|
14
|
+
},
|
|
15
|
+
"filters": "Filters",
|
|
16
|
+
"from {0} to {1}": "From {0} to {1}",
|
|
17
|
+
"gallery": "Gallery",
|
|
18
|
+
"hybrid-event": "Hybrid event",
|
|
19
|
+
"inscription-gratuite-et-obligatoire": " Free and mandatory registration",
|
|
20
|
+
"inscription-ouverte": "Registration Open",
|
|
21
|
+
"items": {
|
|
22
|
+
"all": "all | all | all",
|
|
23
|
+
"activities": "activity | activity | activities",
|
|
24
|
+
"about": "about | about | about",
|
|
25
|
+
"events": "event | event | events",
|
|
26
|
+
"fellow": "fellow | fellow | fellows",
|
|
27
|
+
"fellowships": "fellowship | fellowship | fellowships",
|
|
28
|
+
"news": "news | news | news",
|
|
29
|
+
"people": "one | person | people",
|
|
30
|
+
"projects": "project | project | projects",
|
|
31
|
+
"publications": "publication | publication | publications"
|
|
32
|
+
},
|
|
33
|
+
"learn-more": "read more",
|
|
34
|
+
"list": {
|
|
35
|
+
"reset-filters": "Reset filters",
|
|
36
|
+
"0-items-found": "No {1} found. | One {1} found. | {0} {1} found. ",
|
|
37
|
+
"0-items-found-f": "No {1} found. | One {1} found. | {0} {1} found. ",
|
|
38
|
+
"0-items-found-searching-for": "No {1} found for \"{2}\". | One {1} found for \"{2}\". | {0} {1} found for \"{2}\". ",
|
|
39
|
+
"0-items-found-searching-for-f": "No {1} found for \"{2}\". | One {1} found for \"{2}\". | {0} {1} found for \"{2}\". ",
|
|
40
|
+
"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}. ",
|
|
41
|
+
"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}. ",
|
|
42
|
+
"0-items-found-with-1-filter": "No {1} found with {2} {3}. | One {1} found with {2} {3}. | {0} {1} found with {2} {3}. ",
|
|
43
|
+
"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}. ",
|
|
44
|
+
"by-date-most-recent-first": "Latest",
|
|
45
|
+
"by-date-oldest-first": "Oldest",
|
|
46
|
+
"by-name-from-a-to-z": "By Name, from A to Z",
|
|
47
|
+
"by-name-from-z-to-a": "By Name, from Z to A",
|
|
48
|
+
"dense": "Dense",
|
|
49
|
+
"expanded": "Expanded",
|
|
50
|
+
"filters": {
|
|
51
|
+
"events": {
|
|
52
|
+
"category": {
|
|
53
|
+
"label": "Category",
|
|
54
|
+
"COLLOQUIUM": "Colloquium",
|
|
55
|
+
"CONFERENCE": "Conference",
|
|
56
|
+
"FELLOW_PRESENTATION": "Fellow's presentation",
|
|
57
|
+
"FORUM": "Forum",
|
|
58
|
+
"LECTURE": "Lecture",
|
|
59
|
+
"MEETING": "Meeting",
|
|
60
|
+
"OTHER": "Other",
|
|
61
|
+
"PANEL": "Panel",
|
|
62
|
+
"ROUND_TABLE": "Round table",
|
|
63
|
+
"SEMINAR": "Seminar",
|
|
64
|
+
"SYMPOSIUM": "Symposium",
|
|
65
|
+
"EXHIBITION": "Exhibition",
|
|
66
|
+
"WEBINAR": "Webinar",
|
|
67
|
+
"WORKSHOP": "Workshop",
|
|
68
|
+
"CALL": "Call to propositions"
|
|
69
|
+
},
|
|
70
|
+
"fellowship": {
|
|
71
|
+
"cat": "Constructive Advanced Thinking",
|
|
72
|
+
"fias": "French Institutes for Advanced Study",
|
|
73
|
+
"paris-ias-ideas": "Paris IAS Ideas",
|
|
74
|
+
"pop": "Program Oxford-Paris",
|
|
75
|
+
"label": "Fellowship"
|
|
76
|
+
},
|
|
77
|
+
"online": {
|
|
78
|
+
"label": "Online"
|
|
79
|
+
},
|
|
80
|
+
"organiserCategory": {
|
|
81
|
+
"IAS": "PARIS IAS",
|
|
82
|
+
"MEMBER": "Our Members",
|
|
83
|
+
"FELLOW": "Our Fellows",
|
|
84
|
+
"EXTERNAL": "External",
|
|
85
|
+
"label": "Organizer type"
|
|
86
|
+
},
|
|
87
|
+
"tags": {
|
|
88
|
+
"label": "Tags",
|
|
89
|
+
"Socioscope": "Socioscope",
|
|
90
|
+
"WPRN": "WPRN",
|
|
91
|
+
"WPRN-2021": "WPRN 2021"
|
|
92
|
+
},
|
|
93
|
+
"outside": {
|
|
94
|
+
"label": "Outside"
|
|
95
|
+
},
|
|
96
|
+
"disciplines": {
|
|
97
|
+
"label": "Discipline"
|
|
98
|
+
},
|
|
99
|
+
"past": {
|
|
100
|
+
"label": "Past"
|
|
101
|
+
},
|
|
102
|
+
"status": {
|
|
103
|
+
"label": "Status",
|
|
104
|
+
"CANCELLED": "Cancelled",
|
|
105
|
+
"POSTPONED": "Postponed to {0}",
|
|
106
|
+
"PUBLISHED": "Published",
|
|
107
|
+
"RESCHEDULED": "Rescheduled"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"fellowships": {
|
|
111
|
+
"affiliation": {
|
|
112
|
+
"label": "Affiliation",
|
|
113
|
+
"paris-1": "Paris 1",
|
|
114
|
+
"paris-2": "Paris 2"
|
|
115
|
+
},
|
|
116
|
+
"fellowshipType": {
|
|
117
|
+
"label": "Type of fellowship",
|
|
118
|
+
"IN_GROUP": "In group",
|
|
119
|
+
"LONG_STAY": "Long stay",
|
|
120
|
+
"SHORT_STAY": "Short stay"
|
|
121
|
+
},
|
|
122
|
+
"status": {
|
|
123
|
+
"label": "Status",
|
|
124
|
+
"CANCELLED": "Cancelled",
|
|
125
|
+
"FINISHED": "Finished",
|
|
126
|
+
"ONGOING": "Ongoing",
|
|
127
|
+
"PLANNED": "Planned"
|
|
128
|
+
},
|
|
129
|
+
"discipline": {
|
|
130
|
+
"label": "Discipline"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"news": {
|
|
134
|
+
"category": {
|
|
135
|
+
"label": "Category",
|
|
136
|
+
"ANNOUNCEMENT": "Announcement",
|
|
137
|
+
"ARTICLE": "Article",
|
|
138
|
+
"AUDIO": "Audio",
|
|
139
|
+
"AWARD": "Award",
|
|
140
|
+
"BLOG": "Blog",
|
|
141
|
+
"DATA": "Data",
|
|
142
|
+
"EVENT": "Event",
|
|
143
|
+
"FELLOWSHIP": "Fellowship",
|
|
144
|
+
"GRANT": "Grant",
|
|
145
|
+
"INTERVIEW": "Interview",
|
|
146
|
+
"JOB": "Job",
|
|
147
|
+
"LIFE_AT_THE_INSTITUTE": "Life at the institute",
|
|
148
|
+
"OPINION": "Opinion",
|
|
149
|
+
"PRESS_RELEASE": "Press release",
|
|
150
|
+
"PROJECT": "Project",
|
|
151
|
+
"PUBLICATION": "Publication",
|
|
152
|
+
"REPORT": "Report",
|
|
153
|
+
"SOFTWARE": "Software",
|
|
154
|
+
"TOOL": "Tool",
|
|
155
|
+
"VIDEO": "Video",
|
|
156
|
+
"OTHER": "Other"
|
|
157
|
+
},
|
|
158
|
+
"tags": {
|
|
159
|
+
"label": "Tags",
|
|
160
|
+
"Socioscope": "Socioscope",
|
|
161
|
+
"WPRN": "WPRN",
|
|
162
|
+
"WPRN-2021": "WPRN 2021"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"people": {
|
|
166
|
+
"groups": {
|
|
167
|
+
"label": "Group",
|
|
168
|
+
"board": "Board of directors",
|
|
169
|
+
"fellows": "Fellows",
|
|
170
|
+
"sab": "Scientific Advisory Board",
|
|
171
|
+
"sponsor": "Sponsor",
|
|
172
|
+
"team": "Team"
|
|
173
|
+
},
|
|
174
|
+
"member": {
|
|
175
|
+
"label": "Member",
|
|
176
|
+
"paris-1": "Paris 1"
|
|
177
|
+
},
|
|
178
|
+
"programs": {
|
|
179
|
+
"label": "Program",
|
|
180
|
+
"cat": "Constructive Advanced Thinking",
|
|
181
|
+
"fias": "French Institutes for Advanced Study",
|
|
182
|
+
"paris-ias-ideas": "Paris IAS Ideas",
|
|
183
|
+
"pop": "Program Oxford-Paris"
|
|
184
|
+
},
|
|
185
|
+
"vintage": {
|
|
186
|
+
"label": "Vintage"
|
|
187
|
+
},
|
|
188
|
+
"disciplines": {
|
|
189
|
+
"label": "Discipline"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
"projects": {
|
|
193
|
+
"status": {
|
|
194
|
+
"label": "Status",
|
|
195
|
+
"CANCELLED": "Cancelled",
|
|
196
|
+
"FINISHED": "Finished",
|
|
197
|
+
"IN_PROGRESS": "Ongoing",
|
|
198
|
+
"PLANNED": "Planned"
|
|
199
|
+
},
|
|
200
|
+
"tags": {
|
|
201
|
+
"label": "Tags",
|
|
202
|
+
"Socioscope": "Socioscope",
|
|
203
|
+
"WPRN": "WPRN",
|
|
204
|
+
"WPRN-2021": "WPRN 2021"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"publications": {
|
|
208
|
+
"affiliations": {
|
|
209
|
+
"label": "Affiliation",
|
|
210
|
+
"paris-1": "Paris 1"
|
|
211
|
+
},
|
|
212
|
+
"tags": {
|
|
213
|
+
"label": "Tags",
|
|
214
|
+
"Socioscope": "Socioscope",
|
|
215
|
+
"WPRN": "WPRN",
|
|
216
|
+
"WPRN-2021": "WPRN 2021"
|
|
217
|
+
},
|
|
218
|
+
"disciplines": {
|
|
219
|
+
"label": "Disciplines"
|
|
220
|
+
},
|
|
221
|
+
"eventCategories": {
|
|
222
|
+
"label": "Event category",
|
|
223
|
+
"COLLOQUIUM": "Colloquium",
|
|
224
|
+
"CONFERENCE": "Conference",
|
|
225
|
+
"FELLOW_PRESENTATION": "Fellow's presentation",
|
|
226
|
+
"FORUM": "Forum",
|
|
227
|
+
"LECTURE": "Lecture",
|
|
228
|
+
"MEETING": "Meeting",
|
|
229
|
+
"OTHER": "Other",
|
|
230
|
+
"PANEL": "Panel",
|
|
231
|
+
"ROUND_TABLE": "Round table",
|
|
232
|
+
"SEMINAR": "Seminar",
|
|
233
|
+
"SYMPOSIUM": "Symposium",
|
|
234
|
+
"WEBINAR": "Webinar",
|
|
235
|
+
"WORKSHOP": "Workshop",
|
|
236
|
+
"OTHERS": "Others"
|
|
237
|
+
},
|
|
238
|
+
"type": {
|
|
239
|
+
"label": "Type",
|
|
240
|
+
"ARTICLE": "Article",
|
|
241
|
+
"AUDIO": "Audio",
|
|
242
|
+
"BOOK": "Book",
|
|
243
|
+
"BOOK_CHAPTER": "Book chapter",
|
|
244
|
+
"CONFERENCE_PAPER": "Conference paper",
|
|
245
|
+
"DATA": "Data",
|
|
246
|
+
"PODCAST": "Podcast",
|
|
247
|
+
"REPORT": "Report",
|
|
248
|
+
"SOFTWARE": "Software",
|
|
249
|
+
"THESIS": "Thesis",
|
|
250
|
+
"VIDEO": "Video",
|
|
251
|
+
"OTHERS": "Others"
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"list": "List",
|
|
256
|
+
"page-0-of-1": "Page {0} of {1}",
|
|
257
|
+
"pls-x-more": "+ {0} more",
|
|
258
|
+
"rows": "Rows",
|
|
259
|
+
"search-type": "Search {0}",
|
|
260
|
+
"sort-mode": "Sort mode: ",
|
|
261
|
+
"tiles": "Tiles",
|
|
262
|
+
"view-issues": "By issue",
|
|
263
|
+
"view-list": "List",
|
|
264
|
+
"view-mode": "View mode: ",
|
|
265
|
+
"view-text": "Text",
|
|
266
|
+
"view-tiles": "Quilted"
|
|
267
|
+
},
|
|
268
|
+
"live-stream-available": "Live stream available",
|
|
269
|
+
"location": "Location",
|
|
270
|
+
"no-result": "No result found",
|
|
271
|
+
"online": "Online",
|
|
272
|
+
"open-the-filter-panel": "Open the filter panel",
|
|
273
|
+
"organizers": "Organizers",
|
|
274
|
+
"our-members": "Our members",
|
|
275
|
+
"our-sponsors": "Our patrons",
|
|
276
|
+
"outside-event": "Outside event",
|
|
277
|
+
"page-not-found": "Page not found",
|
|
278
|
+
"paris-ias": "PARIS IAS",
|
|
279
|
+
"people": "People",
|
|
280
|
+
"positions-and-affiliations": "Positions and Affiliations",
|
|
281
|
+
"presentation": "Presentation",
|
|
282
|
+
"privacy-policy": "Privacy policy",
|
|
283
|
+
"projects": "Projects",
|
|
284
|
+
"publications": "Publications",
|
|
285
|
+
"read-more": "Read more",
|
|
286
|
+
"register": "Register",
|
|
287
|
+
"register-until-0": "Register until {0}",
|
|
288
|
+
"related": {
|
|
289
|
+
"events": "Related events",
|
|
290
|
+
"news": "Related news",
|
|
291
|
+
"people": "Related people",
|
|
292
|
+
"projects": "Related projects",
|
|
293
|
+
"publications": "Related publications"
|
|
294
|
+
},
|
|
295
|
+
"rules": {
|
|
296
|
+
"at-least-0-characters": "At least {0} characters",
|
|
297
|
+
"invalid-e-mail": "Invalid e-mail",
|
|
298
|
+
"invalid-url": "Invalid URL",
|
|
299
|
+
"invalid-youtube-url": "Invalid Youtube URL",
|
|
300
|
+
"max-0-characters": "Max {0} characters",
|
|
301
|
+
"numbers-and-special-characters-not-allowed": "Numbers and special characters not allowed",
|
|
302
|
+
"only-digits-allowed": "Numbers only",
|
|
303
|
+
"required": "Required"
|
|
304
|
+
},
|
|
305
|
+
"sab": "Scientific Advisory Board",
|
|
306
|
+
"scientific_policy": "Scientific Policy",
|
|
307
|
+
"scientific-advisory-board": "Scientific advisory board",
|
|
308
|
+
"see-more": "See more",
|
|
309
|
+
"share-on": "Share this on {network}",
|
|
310
|
+
"share-this-on": "Have a look at {1}",
|
|
311
|
+
"show-on-map": "Show on map",
|
|
312
|
+
"socials": {
|
|
313
|
+
"facebook": "Visit our Facebook page",
|
|
314
|
+
"github": "Visit our Github repositories",
|
|
315
|
+
"idRef": "Visit the author IdRef page",
|
|
316
|
+
"instagram": "Follow us on Instagram",
|
|
317
|
+
"researchgate": "Visit the author ResearchGate page",
|
|
318
|
+
"linkedin": "Get in touch on linkedin",
|
|
319
|
+
"orcid": "Visit the author Orcid page",
|
|
320
|
+
"ROR": "Visit the institution ROR page",
|
|
321
|
+
"rss": "RSS",
|
|
322
|
+
"scholar": "Visit the author google scholar page",
|
|
323
|
+
"twitter": "Follow us on Twitter",
|
|
324
|
+
"wikipedia": "Check the wikipedia page of the author",
|
|
325
|
+
"youtube": "Check out our Youtube channel",
|
|
326
|
+
"bluesky": "Visit our BlueSky page"
|
|
327
|
+
},
|
|
328
|
+
"subscribe": "Subscribe",
|
|
329
|
+
"subscribe-to-our-newsletter": "Subscribe to our newsletter",
|
|
330
|
+
"support": "Support us",
|
|
331
|
+
"tasks": "Tasks",
|
|
332
|
+
"team": "Team",
|
|
333
|
+
"this-fellowship-alumni": "This fellowship alumni",
|
|
334
|
+
"type": "Type",
|
|
335
|
+
"upcoming-events": "Upcoming events",
|
|
336
|
+
"videos": "Videos",
|
|
337
|
+
"view-larger-map": "View on a larger map",
|
|
338
|
+
"vintage": "{0} Fellow",
|
|
339
|
+
"visit": "Visit us",
|
|
340
|
+
"visit-the-project-website": "Visit the project website",
|
|
341
|
+
"watch-the-replay": "Watch the replay",
|
|
342
|
+
"present": "present",
|
|
343
|
+
"visit-this-project-website": "Visit this project website",
|
|
344
|
+
"visit-this-publications-website": "Visit this publication webpage",
|
|
345
|
+
"close-the-filter-panel": "Close the filter panel",
|
|
346
|
+
"list.by-vintage-from-recent-to-old": "By Year, from recent to old",
|
|
347
|
+
"list.by-vintage-from-old-to-recent": "By Year, from old to recent",
|
|
348
|
+
"no-biography": "No biography available",
|
|
349
|
+
"search": "Search"
|
|
350
|
+
}
|