@paris-ias/list 1.3.2 → 1.3.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@paris-ias/list",
3
3
  "configKey": "list",
4
- "version": "1.3.2",
4
+ "version": "1.3.3",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
@@ -51,8 +51,9 @@
51
51
  $t(
52
52
  'list.filters.fellowships.fellowshipType.' + item.fellowshipType,
53
53
  ),
54
- ...(props.item?.disciplines?.map((discipline) => discipline.name) ??
55
- []),
54
+ ...(props.item?.disciplines?.map((discipline) =>
55
+ $t('list.filters.disciplines.' + discipline),
56
+ ) ?? []),
56
57
  ]"
57
58
  />
58
59
  </template>
@@ -133,19 +133,18 @@
133
133
  "paris-1": "Paris 1",
134
134
  "paris-2": "Paris 2"
135
135
  },
136
+ "status": {
137
+ "label": "Status",
138
+ "PLANNED": "Upcoming",
139
+ "ONGOING": "Ongoing",
140
+ "FINISHED": "Finished"
141
+ },
136
142
  "fellowshipType": {
137
143
  "label": "Type of fellowship",
138
144
  "IN_GROUP": "Collective",
139
145
  "LONG_STAY": "Long stay",
140
146
  "SHORT_STAY": "Short stay"
141
147
  },
142
- "status": {
143
- "label": "Status",
144
- "CANCELLED": "Cancelled",
145
- "FINISHED": "Finished",
146
- "ONGOING": "Ongoing",
147
- "PLANNED": "Upcoming"
148
- },
149
148
  "disciplines": {
150
149
  "label": "Disciplines"
151
150
  }
@@ -113,7 +113,7 @@
113
113
  "status": {
114
114
  "label": "Statut",
115
115
  "CANCELLED": "Annulé",
116
- "DONE": "terminé",
116
+ "DONE": "Terminé",
117
117
  "POSTPONED": "Reporté",
118
118
  "PUBLISHED": "Publié",
119
119
  "RESCHEDULED": "Reprogrammé"
@@ -133,10 +133,9 @@
133
133
  },
134
134
  "status": {
135
135
  "label": "Statut",
136
- "CANCELLED": "Annulé",
137
- "PAST": "Terminé",
138
- "IN_PROGRESS": "En cours",
139
- "UPCOMING": "À venir"
136
+ "PLANNED": "À venir",
137
+ "ONGOING": "En cours",
138
+ "FINISHED": "Terminé"
140
139
  },
141
140
  "disciplines": {
142
141
  "label": "Discipline"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "license": "AGPL-3.0-only",
3
3
  "main": "./dist/module.mjs",
4
- "version": "1.3.2",
4
+ "version": "1.3.3",
5
5
  "name": "@paris-ias/list",
6
6
  "repository": {
7
7
  "url": "git+https://github.com/IEA-Paris/list.git",