richie-education 2.23.0 → 2.24.1
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/i18n/locales/ar-SA.json +28 -16
- package/i18n/locales/es-ES.json +28 -16
- package/i18n/locales/fa-IR.json +28 -16
- package/i18n/locales/fr-CA.json +35 -23
- package/i18n/locales/fr-FR.json +28 -16
- package/i18n/locales/ko-KR.json +28 -16
- package/i18n/locales/pt-PT.json +36 -24
- package/i18n/locales/ru-RU.json +28 -16
- package/js/api/web-analytics/base.ts +11 -1
- package/js/api/web-analytics/index.ts +5 -1
- package/js/components/Icon/index.spec.tsx +36 -0
- package/js/components/Icon/index.tsx +2 -0
- package/js/hooks/useDateFormat.tsx +1 -1
- package/js/translations/ar-SA.json +1 -1
- package/js/translations/es-ES.json +1 -1
- package/js/translations/fa-IR.json +1 -1
- package/js/translations/fr-CA.json +1 -1
- package/js/translations/fr-FR.json +1 -1
- package/js/translations/ko-KR.json +1 -1
- package/js/translations/pt-PT.json +1 -1
- package/js/translations/ru-RU.json +1 -1
- package/js/types/Joanie.ts +1 -0
- package/js/types/index.ts +6 -0
- package/js/types/web-analytics/index.ts +9 -0
- package/js/utils/IntlHelper/index.spec.tsx +9 -1
- package/js/utils/IntlHelper/index.ts +11 -1
- package/js/utils/ProductHelper/index.spec.ts +183 -0
- package/js/utils/ProductHelper/index.ts +44 -0
- package/js/utils/test/factories/joanie.ts +1 -0
- package/js/utils/test/factories/richie.ts +9 -1
- package/js/widgets/CourseProductItem/_styles.scss +35 -5
- package/js/widgets/CourseProductItem/components/CourseProductCertificateItem/_styles.scss +4 -0
- package/js/widgets/CourseProductItem/components/CourseProductCourseRuns/CourseRunList.tsx +19 -13
- package/js/widgets/CourseProductItem/components/CourseProductCourseRuns/EnrollableCourseRunList.tsx +19 -11
- package/js/widgets/CourseProductItem/components/CourseProductCourseRuns/_styles.scss +1 -1
- package/js/widgets/CourseProductItem/components/CourseProductCourseRuns/index.spec.tsx +36 -13
- package/js/widgets/CourseProductItem/components/CourseRunItem/index.tsx +14 -0
- package/js/widgets/CourseProductItem/components/EnrollmentDate/index.tsx +51 -0
- package/js/widgets/CourseProductItem/components/PaymentButton/index.tsx +5 -1
- package/js/widgets/CourseProductItem/components/PurchaseButton/index.spec.tsx +8 -5
- package/js/widgets/CourseProductItem/components/SaleTunnel/index.spec.tsx +8 -5
- package/js/widgets/CourseProductItem/components/SaleTunnel/index.tsx +20 -3
- package/js/widgets/CourseProductItem/components/SaleTunnelStepValidation/CourseRunsList.tsx +26 -13
- package/js/widgets/CourseProductItem/components/SaleTunnelStepValidation/TargetCourseDetail.tsx +32 -0
- package/js/widgets/CourseProductItem/components/SaleTunnelStepValidation/_styles.scss +39 -8
- package/js/widgets/CourseProductItem/components/SaleTunnelStepValidation/index.spec.tsx +15 -6
- package/js/widgets/CourseProductItem/components/SaleTunnelStepValidation/index.tsx +5 -8
- package/js/widgets/CourseProductItem/contexts/CourseProductContext/index.spec.tsx +1 -0
- package/js/widgets/CourseProductItem/contexts/CourseProductContext/index.tsx +5 -1
- package/js/widgets/CourseProductItem/index.spec.tsx +162 -0
- package/js/widgets/CourseProductItem/index.tsx +122 -44
- package/js/widgets/Dashboard/components/DashboardItem/stories.mock.ts +1 -0
- package/js/widgets/SyllabusCourseRunsList/components/CourseRunItemWithEnrollment/index.tsx +9 -4
- package/js/widgets/SyllabusCourseRunsList/components/SyllabusCourseRun/index.tsx +8 -12
- package/js/widgets/SyllabusCourseRunsList/index.spec.tsx +2 -10
- package/package.json +1 -1
- package/scss/colors/_theme.scss +1 -0
package/i18n/locales/ar-SA.json
CHANGED
|
@@ -183,6 +183,14 @@
|
|
|
183
183
|
"description": "Accessible label displayed while certificate is being generated.",
|
|
184
184
|
"message": "Certificate is being generated..."
|
|
185
185
|
},
|
|
186
|
+
"components.CourseProductItem.availableIn": {
|
|
187
|
+
"description": "Course run languages",
|
|
188
|
+
"message": "Available in {languages}"
|
|
189
|
+
},
|
|
190
|
+
"components.CourseProductItem.fromTo": {
|
|
191
|
+
"description": "Course run date range",
|
|
192
|
+
"message": "From {from} to {to}"
|
|
193
|
+
},
|
|
186
194
|
"components.CourseProductItem.loadingInitial": {
|
|
187
195
|
"description": "Accessible text for the initial loading spinner displayed when product is fetching",
|
|
188
196
|
"message": "Loading product information..."
|
|
@@ -203,14 +211,6 @@
|
|
|
203
211
|
"description": "Start label displayed in the header of course run dates section",
|
|
204
212
|
"message": "Start"
|
|
205
213
|
},
|
|
206
|
-
"components.CourseProductsLists.enrollOn": {
|
|
207
|
-
"description": "Text label for the enrollment dates",
|
|
208
|
-
"message": "Enrollment from {start} to {end}"
|
|
209
|
-
},
|
|
210
|
-
"components.CourseProductsLists.noCourseRunAvailable": {
|
|
211
|
-
"description": "Text displayed when no course run are opened for the course",
|
|
212
|
-
"message": "No session available for this course."
|
|
213
|
-
},
|
|
214
214
|
"components.CourseRunEnrollment.enroll": {
|
|
215
215
|
"description": "CTA for users who can enroll in the course run or could enroll if they logged in.",
|
|
216
216
|
"message": "التسجيل الآن"
|
|
@@ -260,6 +260,10 @@
|
|
|
260
260
|
"message": "From {start} to {end}"
|
|
261
261
|
},
|
|
262
262
|
"components.CourseRunItemWithEnrollment.enrolled": {
|
|
263
|
+
"description": "Help text for users are enrolled in the course run.",
|
|
264
|
+
"message": "Enrolled"
|
|
265
|
+
},
|
|
266
|
+
"components.CourseRunItemWithEnrollment.enrolledAriaLabel": {
|
|
263
267
|
"description": "Help text for users are enrolled in the course run.",
|
|
264
268
|
"message": "You are enrolled in this course run"
|
|
265
269
|
},
|
|
@@ -275,10 +279,6 @@
|
|
|
275
279
|
"description": "Message displayed in course run datagrid for course run period",
|
|
276
280
|
"message": "from {from} to {to}"
|
|
277
281
|
},
|
|
278
|
-
"components.CourseRunList.enrollFromTo": {
|
|
279
|
-
"description": "Text label for the enrollment dates",
|
|
280
|
-
"message": "Enrollment from {start} to {end}"
|
|
281
|
-
},
|
|
282
282
|
"components.CourseRunList.noCourseRunAvailable": {
|
|
283
283
|
"description": "Text displayed when no course run are opened for the course",
|
|
284
284
|
"message": "No session available for this course."
|
|
@@ -547,10 +547,6 @@
|
|
|
547
547
|
"description": "Text label for the enroll button",
|
|
548
548
|
"message": "Enroll"
|
|
549
549
|
},
|
|
550
|
-
"components.EnrollableCourseRunList.enrollOn": {
|
|
551
|
-
"description": "Text label for the enrollment dates",
|
|
552
|
-
"message": "Enrollment from {enrollment_start} to {enrollment_end}"
|
|
553
|
-
},
|
|
554
550
|
"components.EnrollableCourseRunList.enrolling": {
|
|
555
551
|
"description": "Label displayed when a request to enroll to a course run is loading",
|
|
556
552
|
"message": "Enrolling..."
|
|
@@ -587,6 +583,14 @@
|
|
|
587
583
|
"description": "Accessible label displayed when user is being unenrolled.",
|
|
588
584
|
"message": "Unenrolling..."
|
|
589
585
|
},
|
|
586
|
+
"components.EnrollmentDate.enrollFrom": {
|
|
587
|
+
"description": "Text label for the enrollment dates when enrollment is not yet opened",
|
|
588
|
+
"message": "Enrollment from {date}"
|
|
589
|
+
},
|
|
590
|
+
"components.EnrollmentDate.enrollUntil": {
|
|
591
|
+
"description": "Text label for the enrollment dates when enrollment is opened",
|
|
592
|
+
"message": "Enrollment until {date}"
|
|
593
|
+
},
|
|
590
594
|
"components.LanguageSelector.currentlySelected": {
|
|
591
595
|
"description": "Accessible hint to mark the currently selected language in the language selector",
|
|
592
596
|
"message": "(المحدد حاليا)"
|
|
@@ -767,6 +771,14 @@
|
|
|
767
771
|
"description": "Text displayed next to the price to mention this is the price including VAT.",
|
|
768
772
|
"message": "including VAT"
|
|
769
773
|
},
|
|
774
|
+
"components.SaleTunnelStepValidation.language": {
|
|
775
|
+
"description": "Label displayed before the list of languages",
|
|
776
|
+
"message": "{ count, plural, one {Language:} other {Languages:} }"
|
|
777
|
+
},
|
|
778
|
+
"components.SaleTunnelStepValidation.noCourseRunAvailable": {
|
|
779
|
+
"description": "Text displayed when no course run are opened for the course",
|
|
780
|
+
"message": "No session available for this course."
|
|
781
|
+
},
|
|
770
782
|
"components.SaleTunnelStepValidation.proceedToPayment": {
|
|
771
783
|
"description": "CTA to go to payment step",
|
|
772
784
|
"message": "Proceed to payment"
|
package/i18n/locales/es-ES.json
CHANGED
|
@@ -183,6 +183,14 @@
|
|
|
183
183
|
"description": "Accessible label displayed while certificate is being generated.",
|
|
184
184
|
"message": "Certificate is being generated..."
|
|
185
185
|
},
|
|
186
|
+
"components.CourseProductItem.availableIn": {
|
|
187
|
+
"description": "Course run languages",
|
|
188
|
+
"message": "Available in {languages}"
|
|
189
|
+
},
|
|
190
|
+
"components.CourseProductItem.fromTo": {
|
|
191
|
+
"description": "Course run date range",
|
|
192
|
+
"message": "From {from} to {to}"
|
|
193
|
+
},
|
|
186
194
|
"components.CourseProductItem.loadingInitial": {
|
|
187
195
|
"description": "Accessible text for the initial loading spinner displayed when product is fetching",
|
|
188
196
|
"message": "Loading product information..."
|
|
@@ -203,14 +211,6 @@
|
|
|
203
211
|
"description": "Start label displayed in the header of course run dates section",
|
|
204
212
|
"message": "Inicio"
|
|
205
213
|
},
|
|
206
|
-
"components.CourseProductsLists.enrollOn": {
|
|
207
|
-
"description": "Text label for the enrollment dates",
|
|
208
|
-
"message": "Enrollment from {start} to {end}"
|
|
209
|
-
},
|
|
210
|
-
"components.CourseProductsLists.noCourseRunAvailable": {
|
|
211
|
-
"description": "Text displayed when no course run are opened for the course",
|
|
212
|
-
"message": "No session available for this course."
|
|
213
|
-
},
|
|
214
214
|
"components.CourseRunEnrollment.enroll": {
|
|
215
215
|
"description": "CTA for users who can enroll in the course run or could enroll if they logged in.",
|
|
216
216
|
"message": "Inscribirse ahora"
|
|
@@ -260,6 +260,10 @@
|
|
|
260
260
|
"message": "From {start} to {end}"
|
|
261
261
|
},
|
|
262
262
|
"components.CourseRunItemWithEnrollment.enrolled": {
|
|
263
|
+
"description": "Help text for users are enrolled in the course run.",
|
|
264
|
+
"message": "Enrolled"
|
|
265
|
+
},
|
|
266
|
+
"components.CourseRunItemWithEnrollment.enrolledAriaLabel": {
|
|
263
267
|
"description": "Help text for users are enrolled in the course run.",
|
|
264
268
|
"message": "You are enrolled in this course run"
|
|
265
269
|
},
|
|
@@ -275,10 +279,6 @@
|
|
|
275
279
|
"description": "Message displayed in course run datagrid for course run period",
|
|
276
280
|
"message": "from {from} to {to}"
|
|
277
281
|
},
|
|
278
|
-
"components.CourseRunList.enrollFromTo": {
|
|
279
|
-
"description": "Text label for the enrollment dates",
|
|
280
|
-
"message": "Inscripción de {start} a {end}"
|
|
281
|
-
},
|
|
282
282
|
"components.CourseRunList.noCourseRunAvailable": {
|
|
283
283
|
"description": "Text displayed when no course run are opened for the course",
|
|
284
284
|
"message": "No session available for this course."
|
|
@@ -547,10 +547,6 @@
|
|
|
547
547
|
"description": "Text label for the enroll button",
|
|
548
548
|
"message": "Inscribirse"
|
|
549
549
|
},
|
|
550
|
-
"components.EnrollableCourseRunList.enrollOn": {
|
|
551
|
-
"description": "Text label for the enrollment dates",
|
|
552
|
-
"message": "Inscripción de {enrollment_start} a {enrollment_end}"
|
|
553
|
-
},
|
|
554
550
|
"components.EnrollableCourseRunList.enrolling": {
|
|
555
551
|
"description": "Label displayed when a request to enroll to a course run is loading",
|
|
556
552
|
"message": "Inscribiendo..."
|
|
@@ -587,6 +583,14 @@
|
|
|
587
583
|
"description": "Accessible label displayed when user is being unenrolled.",
|
|
588
584
|
"message": "Unenrolling..."
|
|
589
585
|
},
|
|
586
|
+
"components.EnrollmentDate.enrollFrom": {
|
|
587
|
+
"description": "Text label for the enrollment dates when enrollment is not yet opened",
|
|
588
|
+
"message": "Enrollment from {date}"
|
|
589
|
+
},
|
|
590
|
+
"components.EnrollmentDate.enrollUntil": {
|
|
591
|
+
"description": "Text label for the enrollment dates when enrollment is opened",
|
|
592
|
+
"message": "Enrollment until {date}"
|
|
593
|
+
},
|
|
590
594
|
"components.LanguageSelector.currentlySelected": {
|
|
591
595
|
"description": "Accessible hint to mark the currently selected language in the language selector",
|
|
592
596
|
"message": "(actualmente seleccionado)"
|
|
@@ -767,6 +771,14 @@
|
|
|
767
771
|
"description": "Text displayed next to the price to mention this is the price including VAT.",
|
|
768
772
|
"message": "including VAT"
|
|
769
773
|
},
|
|
774
|
+
"components.SaleTunnelStepValidation.language": {
|
|
775
|
+
"description": "Label displayed before the list of languages",
|
|
776
|
+
"message": "{ count, plural, one {Language:} other {Languages:} }"
|
|
777
|
+
},
|
|
778
|
+
"components.SaleTunnelStepValidation.noCourseRunAvailable": {
|
|
779
|
+
"description": "Text displayed when no course run are opened for the course",
|
|
780
|
+
"message": "No session available for this course."
|
|
781
|
+
},
|
|
770
782
|
"components.SaleTunnelStepValidation.proceedToPayment": {
|
|
771
783
|
"description": "CTA to go to payment step",
|
|
772
784
|
"message": "Proceed to payment"
|
package/i18n/locales/fa-IR.json
CHANGED
|
@@ -183,6 +183,14 @@
|
|
|
183
183
|
"description": "Accessible label displayed while certificate is being generated.",
|
|
184
184
|
"message": "Certificate is being generated..."
|
|
185
185
|
},
|
|
186
|
+
"components.CourseProductItem.availableIn": {
|
|
187
|
+
"description": "Course run languages",
|
|
188
|
+
"message": "Available in {languages}"
|
|
189
|
+
},
|
|
190
|
+
"components.CourseProductItem.fromTo": {
|
|
191
|
+
"description": "Course run date range",
|
|
192
|
+
"message": "From {from} to {to}"
|
|
193
|
+
},
|
|
186
194
|
"components.CourseProductItem.loadingInitial": {
|
|
187
195
|
"description": "Accessible text for the initial loading spinner displayed when product is fetching",
|
|
188
196
|
"message": "Loading product information..."
|
|
@@ -203,14 +211,6 @@
|
|
|
203
211
|
"description": "Start label displayed in the header of course run dates section",
|
|
204
212
|
"message": "Start"
|
|
205
213
|
},
|
|
206
|
-
"components.CourseProductsLists.enrollOn": {
|
|
207
|
-
"description": "Text label for the enrollment dates",
|
|
208
|
-
"message": "Enrollment from {start} to {end}"
|
|
209
|
-
},
|
|
210
|
-
"components.CourseProductsLists.noCourseRunAvailable": {
|
|
211
|
-
"description": "Text displayed when no course run are opened for the course",
|
|
212
|
-
"message": "No session available for this course."
|
|
213
|
-
},
|
|
214
214
|
"components.CourseRunEnrollment.enroll": {
|
|
215
215
|
"description": "CTA for users who can enroll in the course run or could enroll if they logged in.",
|
|
216
216
|
"message": "Enroll now"
|
|
@@ -260,6 +260,10 @@
|
|
|
260
260
|
"message": "From {start} to {end}"
|
|
261
261
|
},
|
|
262
262
|
"components.CourseRunItemWithEnrollment.enrolled": {
|
|
263
|
+
"description": "Help text for users are enrolled in the course run.",
|
|
264
|
+
"message": "Enrolled"
|
|
265
|
+
},
|
|
266
|
+
"components.CourseRunItemWithEnrollment.enrolledAriaLabel": {
|
|
263
267
|
"description": "Help text for users are enrolled in the course run.",
|
|
264
268
|
"message": "You are enrolled in this course run"
|
|
265
269
|
},
|
|
@@ -275,10 +279,6 @@
|
|
|
275
279
|
"description": "Message displayed in course run datagrid for course run period",
|
|
276
280
|
"message": "from {from} to {to}"
|
|
277
281
|
},
|
|
278
|
-
"components.CourseRunList.enrollFromTo": {
|
|
279
|
-
"description": "Text label for the enrollment dates",
|
|
280
|
-
"message": "Enrollment from {start} to {end}"
|
|
281
|
-
},
|
|
282
282
|
"components.CourseRunList.noCourseRunAvailable": {
|
|
283
283
|
"description": "Text displayed when no course run are opened for the course",
|
|
284
284
|
"message": "No session available for this course."
|
|
@@ -547,10 +547,6 @@
|
|
|
547
547
|
"description": "Text label for the enroll button",
|
|
548
548
|
"message": "Enroll"
|
|
549
549
|
},
|
|
550
|
-
"components.EnrollableCourseRunList.enrollOn": {
|
|
551
|
-
"description": "Text label for the enrollment dates",
|
|
552
|
-
"message": "Enrollment from {enrollment_start} to {enrollment_end}"
|
|
553
|
-
},
|
|
554
550
|
"components.EnrollableCourseRunList.enrolling": {
|
|
555
551
|
"description": "Label displayed when a request to enroll to a course run is loading",
|
|
556
552
|
"message": "Enrolling..."
|
|
@@ -587,6 +583,14 @@
|
|
|
587
583
|
"description": "Accessible label displayed when user is being unenrolled.",
|
|
588
584
|
"message": "Unenrolling..."
|
|
589
585
|
},
|
|
586
|
+
"components.EnrollmentDate.enrollFrom": {
|
|
587
|
+
"description": "Text label for the enrollment dates when enrollment is not yet opened",
|
|
588
|
+
"message": "Enrollment from {date}"
|
|
589
|
+
},
|
|
590
|
+
"components.EnrollmentDate.enrollUntil": {
|
|
591
|
+
"description": "Text label for the enrollment dates when enrollment is opened",
|
|
592
|
+
"message": "Enrollment until {date}"
|
|
593
|
+
},
|
|
590
594
|
"components.LanguageSelector.currentlySelected": {
|
|
591
595
|
"description": "Accessible hint to mark the currently selected language in the language selector",
|
|
592
596
|
"message": "(currently selected)"
|
|
@@ -767,6 +771,14 @@
|
|
|
767
771
|
"description": "Text displayed next to the price to mention this is the price including VAT.",
|
|
768
772
|
"message": "including VAT"
|
|
769
773
|
},
|
|
774
|
+
"components.SaleTunnelStepValidation.language": {
|
|
775
|
+
"description": "Label displayed before the list of languages",
|
|
776
|
+
"message": "{ count, plural, one {Language:} other {Languages:} }"
|
|
777
|
+
},
|
|
778
|
+
"components.SaleTunnelStepValidation.noCourseRunAvailable": {
|
|
779
|
+
"description": "Text displayed when no course run are opened for the course",
|
|
780
|
+
"message": "No session available for this course."
|
|
781
|
+
},
|
|
770
782
|
"components.SaleTunnelStepValidation.proceedToPayment": {
|
|
771
783
|
"description": "CTA to go to payment step",
|
|
772
784
|
"message": "Proceed to payment"
|
package/i18n/locales/fr-CA.json
CHANGED
|
@@ -183,6 +183,14 @@
|
|
|
183
183
|
"description": "Accessible label displayed while certificate is being generated.",
|
|
184
184
|
"message": "Certificat en cours de génération..."
|
|
185
185
|
},
|
|
186
|
+
"components.CourseProductItem.availableIn": {
|
|
187
|
+
"description": "Course run languages",
|
|
188
|
+
"message": "Available in {languages}"
|
|
189
|
+
},
|
|
190
|
+
"components.CourseProductItem.fromTo": {
|
|
191
|
+
"description": "Course run date range",
|
|
192
|
+
"message": "From {from} to {to}"
|
|
193
|
+
},
|
|
186
194
|
"components.CourseProductItem.loadingInitial": {
|
|
187
195
|
"description": "Accessible text for the initial loading spinner displayed when product is fetching",
|
|
188
196
|
"message": "Chargement des informations du produit..."
|
|
@@ -203,14 +211,6 @@
|
|
|
203
211
|
"description": "Start label displayed in the header of course run dates section",
|
|
204
212
|
"message": "Début"
|
|
205
213
|
},
|
|
206
|
-
"components.CourseProductsLists.enrollOn": {
|
|
207
|
-
"description": "Text label for the enrollment dates",
|
|
208
|
-
"message": "Inscription du {start} au {end}"
|
|
209
|
-
},
|
|
210
|
-
"components.CourseProductsLists.noCourseRunAvailable": {
|
|
211
|
-
"description": "Text displayed when no course run are opened for the course",
|
|
212
|
-
"message": "Aucune session disponible pour ce cours."
|
|
213
|
-
},
|
|
214
214
|
"components.CourseRunEnrollment.enroll": {
|
|
215
215
|
"description": "CTA for users who can enroll in the course run or could enroll if they logged in.",
|
|
216
216
|
"message": "S’inscrire maintenant"
|
|
@@ -260,6 +260,10 @@
|
|
|
260
260
|
"message": "From {start} to {end}"
|
|
261
261
|
},
|
|
262
262
|
"components.CourseRunItemWithEnrollment.enrolled": {
|
|
263
|
+
"description": "Help text for users are enrolled in the course run.",
|
|
264
|
+
"message": "Enrolled"
|
|
265
|
+
},
|
|
266
|
+
"components.CourseRunItemWithEnrollment.enrolledAriaLabel": {
|
|
263
267
|
"description": "Help text for users are enrolled in the course run.",
|
|
264
268
|
"message": "You are enrolled in this course run"
|
|
265
269
|
},
|
|
@@ -275,10 +279,6 @@
|
|
|
275
279
|
"description": "Message displayed in course run datagrid for course run period",
|
|
276
280
|
"message": "from {from} to {to}"
|
|
277
281
|
},
|
|
278
|
-
"components.CourseRunList.enrollFromTo": {
|
|
279
|
-
"description": "Text label for the enrollment dates",
|
|
280
|
-
"message": "Inscription du {start} au {end}"
|
|
281
|
-
},
|
|
282
282
|
"components.CourseRunList.noCourseRunAvailable": {
|
|
283
283
|
"description": "Text displayed when no course run are opened for the course",
|
|
284
284
|
"message": "Aucune session disponible pour ce cours."
|
|
@@ -397,15 +397,15 @@
|
|
|
397
397
|
},
|
|
398
398
|
"components.DashboardCertificate.details": {
|
|
399
399
|
"description": "Label for the details button of a certificate",
|
|
400
|
-
"message": "
|
|
400
|
+
"message": "Details"
|
|
401
401
|
},
|
|
402
402
|
"components.DashboardCertificate.download": {
|
|
403
403
|
"description": "Label for the download button of a certificate",
|
|
404
|
-
"message": "
|
|
404
|
+
"message": "Download"
|
|
405
405
|
},
|
|
406
406
|
"components.DashboardCertificate.generatingCertificate": {
|
|
407
407
|
"description": "Accessible label displayed while certificate is being generated on the dashboard.",
|
|
408
|
-
"message": "
|
|
408
|
+
"message": "Certificate is being generated..."
|
|
409
409
|
},
|
|
410
410
|
"components.DashboardCertificate.issuedOn": {
|
|
411
411
|
"description": "Label for the date of issue of a certificate",
|
|
@@ -413,7 +413,7 @@
|
|
|
413
413
|
},
|
|
414
414
|
"components.DashboardCertificate.noCertificate": {
|
|
415
415
|
"description": "Label displayed when no certificate is available",
|
|
416
|
-
"message": "
|
|
416
|
+
"message": "When all your courses will be passed, you will be able to download your certificate here."
|
|
417
417
|
},
|
|
418
418
|
"components.DashboardCertificates.empty": {
|
|
419
419
|
"description": "Message displayed when there are no certificates",
|
|
@@ -547,10 +547,6 @@
|
|
|
547
547
|
"description": "Text label for the enroll button",
|
|
548
548
|
"message": "S'inscrire"
|
|
549
549
|
},
|
|
550
|
-
"components.EnrollableCourseRunList.enrollOn": {
|
|
551
|
-
"description": "Text label for the enrollment dates",
|
|
552
|
-
"message": "Inscription du {enrollment_start} au {enrollment_end}"
|
|
553
|
-
},
|
|
554
550
|
"components.EnrollableCourseRunList.enrolling": {
|
|
555
551
|
"description": "Label displayed when a request to enroll to a course run is loading",
|
|
556
552
|
"message": "Inscription en cours..."
|
|
@@ -587,6 +583,14 @@
|
|
|
587
583
|
"description": "Accessible label displayed when user is being unenrolled.",
|
|
588
584
|
"message": "Désinscription en cours..."
|
|
589
585
|
},
|
|
586
|
+
"components.EnrollmentDate.enrollFrom": {
|
|
587
|
+
"description": "Text label for the enrollment dates when enrollment is not yet opened",
|
|
588
|
+
"message": "Enrollment from {date}"
|
|
589
|
+
},
|
|
590
|
+
"components.EnrollmentDate.enrollUntil": {
|
|
591
|
+
"description": "Text label for the enrollment dates when enrollment is opened",
|
|
592
|
+
"message": "Enrollment until {date}"
|
|
593
|
+
},
|
|
590
594
|
"components.LanguageSelector.currentlySelected": {
|
|
591
595
|
"description": "Accessible hint to mark the currently selected language in the language selector",
|
|
592
596
|
"message": "(actuellement sélectionné)"
|
|
@@ -689,7 +693,7 @@
|
|
|
689
693
|
},
|
|
690
694
|
"components.SaleTunnel.noCourseRunToPurchase": {
|
|
691
695
|
"description": "Label displayed below the product's CTA when there is no courseRun",
|
|
692
|
-
"message": "
|
|
696
|
+
"message": "At least one course has no course runs, this product is not currently available for sale"
|
|
693
697
|
},
|
|
694
698
|
"components.SaleTunnel.noRemainingOrder": {
|
|
695
699
|
"description": "Label displayed below the product's CTA when there is no remaining available seat for the product",
|
|
@@ -767,6 +771,14 @@
|
|
|
767
771
|
"description": "Text displayed next to the price to mention this is the price including VAT.",
|
|
768
772
|
"message": "incluant les taxes"
|
|
769
773
|
},
|
|
774
|
+
"components.SaleTunnelStepValidation.language": {
|
|
775
|
+
"description": "Label displayed before the list of languages",
|
|
776
|
+
"message": "{ count, plural, one {Language:} other {Languages:} }"
|
|
777
|
+
},
|
|
778
|
+
"components.SaleTunnelStepValidation.noCourseRunAvailable": {
|
|
779
|
+
"description": "Text displayed when no course run are opened for the course",
|
|
780
|
+
"message": "No session available for this course."
|
|
781
|
+
},
|
|
770
782
|
"components.SaleTunnelStepValidation.proceedToPayment": {
|
|
771
783
|
"description": "CTA to go to payment step",
|
|
772
784
|
"message": "Procéder au paiement"
|
|
@@ -1269,11 +1281,11 @@
|
|
|
1269
1281
|
},
|
|
1270
1282
|
"hooks.useProduct.errorGet": {
|
|
1271
1283
|
"description": "Error message shown to the user when product fetch request fails.",
|
|
1272
|
-
"message": "
|
|
1284
|
+
"message": "An error occurred while fetching product. Please retry later."
|
|
1273
1285
|
},
|
|
1274
1286
|
"hooks.useProduct.errorNotFound": {
|
|
1275
1287
|
"description": "Error message shown to the user when no product matches.",
|
|
1276
|
-
"message": "
|
|
1288
|
+
"message": "Cannot find the product."
|
|
1277
1289
|
},
|
|
1278
1290
|
"hooks.useResources.errorCreate": {
|
|
1279
1291
|
"description": "Error message shown to the user when resource creation request fails.",
|
package/i18n/locales/fr-FR.json
CHANGED
|
@@ -183,6 +183,14 @@
|
|
|
183
183
|
"description": "Accessible label displayed while certificate is being generated.",
|
|
184
184
|
"message": "Certificat en cours de génération..."
|
|
185
185
|
},
|
|
186
|
+
"components.CourseProductItem.availableIn": {
|
|
187
|
+
"description": "Course run languages",
|
|
188
|
+
"message": "Disponible en {languages}"
|
|
189
|
+
},
|
|
190
|
+
"components.CourseProductItem.fromTo": {
|
|
191
|
+
"description": "Course run date range",
|
|
192
|
+
"message": "Du {from} au {to}"
|
|
193
|
+
},
|
|
186
194
|
"components.CourseProductItem.loadingInitial": {
|
|
187
195
|
"description": "Accessible text for the initial loading spinner displayed when product is fetching",
|
|
188
196
|
"message": "Chargement des informations produit..."
|
|
@@ -203,14 +211,6 @@
|
|
|
203
211
|
"description": "Start label displayed in the header of course run dates section",
|
|
204
212
|
"message": "Début"
|
|
205
213
|
},
|
|
206
|
-
"components.CourseProductsLists.enrollOn": {
|
|
207
|
-
"description": "Text label for the enrollment dates",
|
|
208
|
-
"message": "Inscription du {start} au {end}"
|
|
209
|
-
},
|
|
210
|
-
"components.CourseProductsLists.noCourseRunAvailable": {
|
|
211
|
-
"description": "Text displayed when no course run are opened for the course",
|
|
212
|
-
"message": "Aucune session disponible pour ce cours."
|
|
213
|
-
},
|
|
214
214
|
"components.CourseRunEnrollment.enroll": {
|
|
215
215
|
"description": "CTA for users who can enroll in the course run or could enroll if they logged in.",
|
|
216
216
|
"message": "S’inscrire maintenant"
|
|
@@ -260,6 +260,10 @@
|
|
|
260
260
|
"message": "Du {start} au {end}"
|
|
261
261
|
},
|
|
262
262
|
"components.CourseRunItemWithEnrollment.enrolled": {
|
|
263
|
+
"description": "Help text for users are enrolled in the course run.",
|
|
264
|
+
"message": "Inscrit"
|
|
265
|
+
},
|
|
266
|
+
"components.CourseRunItemWithEnrollment.enrolledAriaLabel": {
|
|
263
267
|
"description": "Help text for users are enrolled in the course run.",
|
|
264
268
|
"message": "Vous êtes inscrit à cette session"
|
|
265
269
|
},
|
|
@@ -275,10 +279,6 @@
|
|
|
275
279
|
"description": "Message displayed in course run datagrid for course run period",
|
|
276
280
|
"message": "du {from} au {to}"
|
|
277
281
|
},
|
|
278
|
-
"components.CourseRunList.enrollFromTo": {
|
|
279
|
-
"description": "Text label for the enrollment dates",
|
|
280
|
-
"message": "Inscription du {start} au {end}"
|
|
281
|
-
},
|
|
282
282
|
"components.CourseRunList.noCourseRunAvailable": {
|
|
283
283
|
"description": "Text displayed when no course run are opened for the course",
|
|
284
284
|
"message": "Aucune session disponible pour ce cours."
|
|
@@ -547,10 +547,6 @@
|
|
|
547
547
|
"description": "Text label for the enroll button",
|
|
548
548
|
"message": "S'inscrire"
|
|
549
549
|
},
|
|
550
|
-
"components.EnrollableCourseRunList.enrollOn": {
|
|
551
|
-
"description": "Text label for the enrollment dates",
|
|
552
|
-
"message": "Inscription du {enrollment_start} au {enrollment_end}"
|
|
553
|
-
},
|
|
554
550
|
"components.EnrollableCourseRunList.enrolling": {
|
|
555
551
|
"description": "Label displayed when a request to enroll to a course run is loading",
|
|
556
552
|
"message": "Inscription en cours..."
|
|
@@ -587,6 +583,14 @@
|
|
|
587
583
|
"description": "Accessible label displayed when user is being unenrolled.",
|
|
588
584
|
"message": "Désinscription en cours..."
|
|
589
585
|
},
|
|
586
|
+
"components.EnrollmentDate.enrollFrom": {
|
|
587
|
+
"description": "Text label for the enrollment dates when enrollment is not yet opened",
|
|
588
|
+
"message": "Inscription à partir du {date}"
|
|
589
|
+
},
|
|
590
|
+
"components.EnrollmentDate.enrollUntil": {
|
|
591
|
+
"description": "Text label for the enrollment dates when enrollment is opened",
|
|
592
|
+
"message": "Inscription jusqu'au {date}"
|
|
593
|
+
},
|
|
590
594
|
"components.LanguageSelector.currentlySelected": {
|
|
591
595
|
"description": "Accessible hint to mark the currently selected language in the language selector",
|
|
592
596
|
"message": "(actuellement sélectionné)"
|
|
@@ -767,6 +771,14 @@
|
|
|
767
771
|
"description": "Text displayed next to the price to mention this is the price including VAT.",
|
|
768
772
|
"message": "TTC"
|
|
769
773
|
},
|
|
774
|
+
"components.SaleTunnelStepValidation.language": {
|
|
775
|
+
"description": "Label displayed before the list of languages",
|
|
776
|
+
"message": "{ count, plural, one {Langue :} other {Langues :} }"
|
|
777
|
+
},
|
|
778
|
+
"components.SaleTunnelStepValidation.noCourseRunAvailable": {
|
|
779
|
+
"description": "Text displayed when no course run are opened for the course",
|
|
780
|
+
"message": "Aucune session disponible pour ce cours."
|
|
781
|
+
},
|
|
770
782
|
"components.SaleTunnelStepValidation.proceedToPayment": {
|
|
771
783
|
"description": "CTA to go to payment step",
|
|
772
784
|
"message": "Procéder au paiement"
|
package/i18n/locales/ko-KR.json
CHANGED
|
@@ -183,6 +183,14 @@
|
|
|
183
183
|
"description": "Accessible label displayed while certificate is being generated.",
|
|
184
184
|
"message": "Certificate is being generated..."
|
|
185
185
|
},
|
|
186
|
+
"components.CourseProductItem.availableIn": {
|
|
187
|
+
"description": "Course run languages",
|
|
188
|
+
"message": "Available in {languages}"
|
|
189
|
+
},
|
|
190
|
+
"components.CourseProductItem.fromTo": {
|
|
191
|
+
"description": "Course run date range",
|
|
192
|
+
"message": "From {from} to {to}"
|
|
193
|
+
},
|
|
186
194
|
"components.CourseProductItem.loadingInitial": {
|
|
187
195
|
"description": "Accessible text for the initial loading spinner displayed when product is fetching",
|
|
188
196
|
"message": "Loading product information..."
|
|
@@ -203,14 +211,6 @@
|
|
|
203
211
|
"description": "Start label displayed in the header of course run dates section",
|
|
204
212
|
"message": "Start"
|
|
205
213
|
},
|
|
206
|
-
"components.CourseProductsLists.enrollOn": {
|
|
207
|
-
"description": "Text label for the enrollment dates",
|
|
208
|
-
"message": "Enrollment from {start} to {end}"
|
|
209
|
-
},
|
|
210
|
-
"components.CourseProductsLists.noCourseRunAvailable": {
|
|
211
|
-
"description": "Text displayed when no course run are opened for the course",
|
|
212
|
-
"message": "No session available for this course."
|
|
213
|
-
},
|
|
214
214
|
"components.CourseRunEnrollment.enroll": {
|
|
215
215
|
"description": "CTA for users who can enroll in the course run or could enroll if they logged in.",
|
|
216
216
|
"message": "Enroll now"
|
|
@@ -260,6 +260,10 @@
|
|
|
260
260
|
"message": "From {start} to {end}"
|
|
261
261
|
},
|
|
262
262
|
"components.CourseRunItemWithEnrollment.enrolled": {
|
|
263
|
+
"description": "Help text for users are enrolled in the course run.",
|
|
264
|
+
"message": "Enrolled"
|
|
265
|
+
},
|
|
266
|
+
"components.CourseRunItemWithEnrollment.enrolledAriaLabel": {
|
|
263
267
|
"description": "Help text for users are enrolled in the course run.",
|
|
264
268
|
"message": "You are enrolled in this course run"
|
|
265
269
|
},
|
|
@@ -275,10 +279,6 @@
|
|
|
275
279
|
"description": "Message displayed in course run datagrid for course run period",
|
|
276
280
|
"message": "from {from} to {to}"
|
|
277
281
|
},
|
|
278
|
-
"components.CourseRunList.enrollFromTo": {
|
|
279
|
-
"description": "Text label for the enrollment dates",
|
|
280
|
-
"message": "Enrollment from {start} to {end}"
|
|
281
|
-
},
|
|
282
282
|
"components.CourseRunList.noCourseRunAvailable": {
|
|
283
283
|
"description": "Text displayed when no course run are opened for the course",
|
|
284
284
|
"message": "No session available for this course."
|
|
@@ -547,10 +547,6 @@
|
|
|
547
547
|
"description": "Text label for the enroll button",
|
|
548
548
|
"message": "Enroll"
|
|
549
549
|
},
|
|
550
|
-
"components.EnrollableCourseRunList.enrollOn": {
|
|
551
|
-
"description": "Text label for the enrollment dates",
|
|
552
|
-
"message": "Enrollment from {enrollment_start} to {enrollment_end}"
|
|
553
|
-
},
|
|
554
550
|
"components.EnrollableCourseRunList.enrolling": {
|
|
555
551
|
"description": "Label displayed when a request to enroll to a course run is loading",
|
|
556
552
|
"message": "Enrolling..."
|
|
@@ -587,6 +583,14 @@
|
|
|
587
583
|
"description": "Accessible label displayed when user is being unenrolled.",
|
|
588
584
|
"message": "Unenrolling..."
|
|
589
585
|
},
|
|
586
|
+
"components.EnrollmentDate.enrollFrom": {
|
|
587
|
+
"description": "Text label for the enrollment dates when enrollment is not yet opened",
|
|
588
|
+
"message": "Enrollment from {date}"
|
|
589
|
+
},
|
|
590
|
+
"components.EnrollmentDate.enrollUntil": {
|
|
591
|
+
"description": "Text label for the enrollment dates when enrollment is opened",
|
|
592
|
+
"message": "Enrollment until {date}"
|
|
593
|
+
},
|
|
590
594
|
"components.LanguageSelector.currentlySelected": {
|
|
591
595
|
"description": "Accessible hint to mark the currently selected language in the language selector",
|
|
592
596
|
"message": "(currently selected)"
|
|
@@ -767,6 +771,14 @@
|
|
|
767
771
|
"description": "Text displayed next to the price to mention this is the price including VAT.",
|
|
768
772
|
"message": "including VAT"
|
|
769
773
|
},
|
|
774
|
+
"components.SaleTunnelStepValidation.language": {
|
|
775
|
+
"description": "Label displayed before the list of languages",
|
|
776
|
+
"message": "{ count, plural, one {Language:} other {Languages:} }"
|
|
777
|
+
},
|
|
778
|
+
"components.SaleTunnelStepValidation.noCourseRunAvailable": {
|
|
779
|
+
"description": "Text displayed when no course run are opened for the course",
|
|
780
|
+
"message": "No session available for this course."
|
|
781
|
+
},
|
|
770
782
|
"components.SaleTunnelStepValidation.proceedToPayment": {
|
|
771
783
|
"description": "CTA to go to payment step",
|
|
772
784
|
"message": "Proceed to payment"
|