richie-education 2.21.0 → 2.22.0
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/.eslintrc.json +2 -1
- package/.storybook/__mocks__/utils/context.ts +2 -2
- package/.storybook/main.js +21 -11
- package/.storybook/public/course_cover_image.jpg +0 -0
- package/.storybook/public/course_icon.png +0 -0
- package/.storybook/public/organization_cover_image.png +0 -0
- package/i18n/compile-translations.js +1 -1
- package/i18n/locales/ar-SA.json +211 -7
- package/i18n/locales/es-ES.json +211 -7
- package/i18n/locales/fa-IR.json +211 -7
- package/i18n/locales/fr-CA.json +264 -60
- package/i18n/locales/fr-FR.json +212 -8
- package/i18n/locales/ko-KR.json +211 -7
- package/i18n/locales/pt-PT.json +213 -9
- package/i18n/locales/ru-RU.json +211 -7
- package/js/api/joanie.ts +33 -1
- package/js/api/lms/dummy.spec.ts +2 -2
- package/js/api/lms/index.spec.ts +2 -2
- package/js/api/lms/openedx-hawthorn.spec.ts +2 -2
- package/js/api/mocks/joanie/assets/organization_cover_001.jpg +0 -0
- package/js/api/mocks/joanie/assets/organization_cover_002.jpg +0 -0
- package/js/api/mocks/joanie/organizations.ts +47 -0
- package/js/api/web-analytics/google_tag.spec.ts +2 -2
- package/js/api/web-analytics/google_tag_manager.spec.ts +2 -2
- package/js/api/web-analytics/google_universal_analytics.spec.ts +2 -2
- package/js/api/web-analytics/google_universal_analytics_and_tag_manager.spec.ts +2 -2
- package/js/api/web-analytics/no_provider.spec.ts +2 -2
- package/js/api/web-analytics/unknown_provider.spec.ts +2 -2
- package/js/components/AddressesManagement/AddressForm.spec.tsx +3 -4
- package/js/components/AddressesManagement/index.spec.tsx +12 -13
- package/js/components/AddressesManagement/validationSchema.spec.ts +7 -7
- package/js/components/Banner/index.stories.tsx +19 -16
- package/js/components/Button/index.stories.tsx +12 -12
- package/js/{widgets/Search/components → components}/CourseGlimpse/index.spec.tsx +2 -2
- package/js/components/CourseGlimpse/index.stories.tsx +16 -0
- package/js/{widgets/Search/components → components}/CourseGlimpseList/index.spec.tsx +2 -2
- package/js/components/CourseGlimpseList/index.stories.tsx +21 -0
- package/js/{widgets/Search/components → components}/CourseGlimpseList/index.tsx +1 -1
- package/js/components/Form/CheckboxField.stories.tsx +7 -8
- package/js/components/Form/{Field.stories.tsx → Field.stories.config.tsx} +3 -1
- package/js/components/Form/RadioField.stories.tsx +13 -13
- package/js/components/Form/SelectField.stories.tsx +21 -20
- package/js/components/Form/TextAreaField.stories.tsx +7 -8
- package/js/components/Form/TextField.stories.tsx +7 -8
- package/js/components/Icon/index.stories.tsx +8 -5
- package/js/components/Modal/index.stories.tsx +19 -19
- package/js/components/RegisteredAddress/index.spec.tsx +1 -1
- package/js/components/SearchInput/index.spec.tsx +2 -2
- package/js/components/Spinner/_styles.scss +5 -0
- package/js/components/Spinner/index.stories.tsx +11 -11
- package/js/components/Spinner/index.tsx +1 -1
- package/js/contexts/JoanieApiContext/index.spec.tsx +2 -2
- package/js/contexts/SessionContext/JoanieSessionProvider.spec.tsx +5 -2
- package/js/contexts/SessionContext/index.spec.tsx +5 -2
- package/js/contexts/SessionContext/no-authentication.spec.tsx +2 -2
- package/js/hooks/useCertificates/index.tsx +27 -0
- package/js/hooks/useCreditCards/index.spec.tsx +8 -9
- package/js/hooks/useDownloadCertificate/index.spec.tsx +122 -0
- package/js/hooks/useDownloadCertificate/index.tsx +35 -0
- package/js/hooks/useIntersectionObserver.tsx +1 -1
- package/js/hooks/useOrders.ts +3 -9
- package/js/hooks/useOrganizations/index.ts +31 -0
- package/js/hooks/useResources/index.spec.tsx +5 -7
- package/js/index.tsx +9 -0
- package/js/mockServiceWorker.js +302 -0
- package/js/pages/DashboardAddressesManagement/DashboardCreateAddress.spec.tsx +13 -14
- package/js/pages/DashboardAddressesManagement/DashboardCreateAddress.stories.tsx +18 -19
- package/js/pages/DashboardAddressesManagement/DashboardCreateAddressLoader.tsx +2 -2
- package/js/pages/DashboardAddressesManagement/DashboardEditAddress.spec.tsx +12 -13
- package/js/pages/DashboardAddressesManagement/DashboardEditAddress.stories.tsx +21 -20
- package/js/pages/DashboardAddressesManagement/DashboardEditAddressLoader.tsx +2 -2
- package/js/pages/DashboardAddressesManagement/index.spec.tsx +26 -27
- package/js/pages/DashboardAddressesManagement/index.stories.tsx +18 -19
- package/js/pages/DashboardCertificates/_styles.scss +8 -0
- package/js/pages/DashboardCertificates/index.spec.tsx +180 -0
- package/js/pages/DashboardCertificates/index.tsx +72 -0
- package/js/pages/DashboardCourses/_styles.scss +5 -15
- package/js/pages/DashboardCourses/index.spec.tsx +340 -69
- package/js/pages/DashboardCourses/index.tsx +58 -62
- package/js/pages/DashboardCourses/useOrdersEnrollments.tsx +302 -0
- package/js/pages/DashboardCreditCardsManagement/CreditCardBrandLogo.stories.tsx +21 -19
- package/js/pages/DashboardCreditCardsManagement/DashboardEditCreditCard.spec.tsx +21 -22
- package/js/pages/DashboardCreditCardsManagement/DashboardEditCreditCard.stories.tsx +17 -16
- package/js/pages/DashboardCreditCardsManagement/DashboardEditCreditCardLoader.tsx +2 -2
- package/js/pages/DashboardCreditCardsManagement/index.spec.tsx +28 -29
- package/js/pages/DashboardCreditCardsManagement/index.stories.tsx +14 -15
- package/js/pages/DashboardPreferences/index.tsx +4 -4
- package/js/pages/TeacherCoursesDashboardLoader/index.tsx +16 -0
- package/js/pages/TeacherOrganizationCourseDashboardLoader/index.tsx +28 -0
- package/js/pages/TeacherProfileSettingsDashboardLoader/index.tsx +28 -0
- package/js/settings.ts +2 -0
- 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 +29 -4
- package/js/utils/CoursesHelper/index.spec.ts +11 -11
- package/js/utils/CreditCardHelper/index.spec.tsx +1 -1
- package/js/utils/errors/handle.spec.ts +2 -2
- package/js/utils/react-query/useSessionMutation/index.spec.tsx +2 -2
- package/js/utils/react-query/useSessionQuery/index.spec.tsx +2 -2
- package/js/utils/test/LocationDisplay.tsx +9 -0
- package/js/utils/test/createTestQueryClient.ts +5 -4
- package/js/utils/test/expectBanner.ts +21 -0
- package/js/utils/test/{factories.ts → factories/joanie.ts} +76 -172
- package/js/utils/test/factories/reactQuery.ts +59 -0
- package/js/utils/test/factories/richie.ts +93 -0
- package/js/widgets/CourseAddToWishlist/hooks/useUserWishlistCourses/index.spec.tsx +13 -14
- package/js/widgets/CourseAddToWishlist/index.login.spec.tsx +12 -13
- package/js/widgets/CourseAddToWishlist/index.logout.spec.tsx +12 -13
- package/js/widgets/CourseProductItem/components/CourseProductCertificateItem/index.spec.tsx +8 -48
- package/js/widgets/CourseProductItem/components/CourseProductCertificateItem/index.tsx +11 -33
- package/js/widgets/CourseProductItem/components/CourseProductCourseRuns/_styles.scss +2 -3
- package/js/widgets/CourseProductItem/components/CourseProductCourseRuns/index.spec.tsx +13 -19
- package/js/widgets/CourseProductItem/components/CourseRunItem/index.spec.tsx +1 -1
- package/js/widgets/CourseProductItem/components/PaymentButton/index.spec.tsx +3 -3
- package/js/widgets/CourseProductItem/components/PaymentInterfaces/index.spec.tsx +3 -2
- package/js/widgets/CourseProductItem/components/PurchaseButton/index.spec.tsx +3 -2
- package/js/widgets/CourseProductItem/components/RegisteredCreditCard/index.spec.tsx +1 -1
- package/js/widgets/CourseProductItem/components/SaleTunnel/index.spec.tsx +3 -2
- package/js/widgets/CourseProductItem/components/SaleTunnelStepPayment/index.spec.tsx +18 -17
- package/js/widgets/CourseProductItem/components/SaleTunnelStepValidation/index.spec.tsx +1 -1
- package/js/widgets/CourseProductItem/index.spec.tsx +9 -7
- package/js/widgets/CourseProductItem/index.tsx +4 -1
- package/js/widgets/CourseRunEnrollment/hooks/useCourseEnrollment/index.spec.tsx +19 -17
- package/js/widgets/CourseRunEnrollment/index.joanie.spec.tsx +24 -23
- package/js/widgets/CourseRunEnrollment/index.openedx.spec.tsx +23 -22
- package/js/widgets/Dashboard/components/DashboardAvatar/index.spec.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardAvatar/index.stories.tsx +8 -9
- package/js/widgets/Dashboard/components/DashboardBox/index.stories.tsx +52 -49
- package/js/widgets/Dashboard/components/DashboardBreadcrumbs/index.stories.tsx +11 -11
- package/js/widgets/Dashboard/components/DashboardCard/index.stories.tsx +37 -35
- package/js/widgets/Dashboard/components/DashboardItem/Certificate/_styles.scss +25 -0
- package/js/widgets/Dashboard/components/DashboardItem/Certificate/index.spec.tsx +77 -0
- package/js/widgets/Dashboard/components/DashboardItem/Certificate/index.stories.tsx +34 -0
- package/js/widgets/Dashboard/components/DashboardItem/Certificate/index.tsx +114 -0
- package/js/widgets/Dashboard/components/DashboardItem/DashboardItemCourseEnrolling.spec.tsx +2 -2
- package/js/widgets/Dashboard/components/DashboardItem/DashboardItemCourseEnrolling.stories.tsx +47 -50
- package/js/widgets/Dashboard/components/DashboardItem/Enrollment/DashboardItemEnrollment.spec.tsx +8 -11
- package/js/widgets/Dashboard/components/DashboardItem/Enrollment/DashboardItemEnrollment.stories.tsx +19 -19
- package/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrder.spec.tsx +63 -31
- package/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrder.tsx +60 -23
- package/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderReadonly.stories.tsx +49 -51
- package/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderWritable.stories.tsx +49 -53
- package/js/widgets/Dashboard/components/DashboardItem/_styles.scss +25 -19
- package/js/widgets/Dashboard/components/DashboardItem/index.stories.tsx +7 -7
- package/js/widgets/Dashboard/components/DashboardItem/{mock.stories.ts → stories.mock.ts} +2 -1
- package/js/widgets/Dashboard/components/DashboardLayout/index.tsx +11 -8
- package/js/widgets/Dashboard/components/DashboardLayoutRoute/index.spec.tsx +74 -0
- package/js/widgets/Dashboard/components/DashboardLayoutRoute/index.tsx +18 -0
- package/js/widgets/Dashboard/components/DashboardOrderLoader/index.tsx +6 -1
- package/js/widgets/Dashboard/components/DashboardSidebar/index.stories.tsx +24 -18
- package/js/widgets/Dashboard/components/DashboardSidebar/index.tsx +25 -36
- package/js/widgets/Dashboard/components/DashboardTest/index.tsx +1 -1
- package/js/widgets/Dashboard/components/LearnerDashboardSidebar/index.stories.tsx +24 -0
- package/js/widgets/Dashboard/components/LearnerDashboardSidebar/index.tsx +50 -0
- package/js/widgets/Dashboard/components/NavigateWithParams/index.spec.tsx +62 -0
- package/js/widgets/Dashboard/components/NavigateWithParams/index.tsx +13 -0
- package/js/widgets/Dashboard/components/ProtectedOutlet/AuthenticatedOutlet.spec.tsx +2 -2
- package/js/widgets/Dashboard/components/RouteInfo/index.tsx +25 -0
- package/js/widgets/Dashboard/components/TeacherOrganizationDashboardSidebar/index.stories.tsx +28 -0
- package/js/widgets/Dashboard/components/TeacherOrganizationDashboardSidebar/index.tsx +50 -0
- package/js/widgets/Dashboard/components/TeacherProfileDashboardSidebar/components/OrganizationLinks/_styles.scss +42 -0
- package/js/widgets/Dashboard/components/TeacherProfileDashboardSidebar/components/OrganizationLinks/index.tsx +55 -0
- package/js/widgets/Dashboard/components/TeacherProfileDashboardSidebar/index.spec.tsx +134 -0
- package/js/widgets/Dashboard/components/TeacherProfileDashboardSidebar/index.stories.tsx +24 -0
- package/js/widgets/Dashboard/components/TeacherProfileDashboardSidebar/index.tsx +50 -0
- package/js/widgets/Dashboard/hooks/useDashboardRouter/index.tsx +9 -123
- package/js/widgets/Dashboard/hooks/useEnroll/index.spec.tsx +8 -10
- package/js/widgets/Dashboard/index.spec.tsx +34 -22
- package/js/widgets/Dashboard/utils/dashboardRoutes.tsx +97 -0
- package/js/widgets/Dashboard/utils/{routers.tsx → learnerRouteMessages.tsx} +29 -60
- package/js/widgets/Dashboard/utils/learnerRoutes.tsx +100 -0
- package/js/widgets/Dashboard/utils/teacherRouteMessages.tsx +158 -0
- package/js/widgets/Dashboard/utils/teacherRoutes.tsx +142 -0
- package/js/widgets/LanguageSelector/index.spec.tsx +14 -13
- package/js/widgets/LtiConsumer/index.spec.tsx +2 -2
- package/js/widgets/RootSearchSuggestField/index.spec.tsx +2 -2
- package/js/widgets/Search/index.spec.tsx +2 -2
- package/js/widgets/Search/index.tsx +1 -1
- package/js/widgets/SearchSuggestField/index.spec.tsx +2 -2
- package/js/widgets/UserLogin/index.spec.tsx +7 -5
- package/js/widgets/index.spec.tsx +2 -2
- package/mocks/browser.ts +7 -0
- package/mocks/handlers.ts +3 -0
- package/package.json +60 -53
- package/scss/colors/_theme.scss +11 -0
- package/scss/components/_index.scss +3 -0
- package/webpack.config.js +7 -0
- package/js/utils/test/expectBannerError.ts +0 -9
- /package/js/{widgets/Search/components → components}/CourseGlimpse/CourseGlimpseFooter.tsx +0 -0
- /package/js/{widgets/Search/components → components}/CourseGlimpse/index.tsx +0 -0
package/.eslintrc.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RichieContextFactory } from 'utils/test/factories/richie';
|
|
2
2
|
|
|
3
3
|
let context = {
|
|
4
4
|
joanie_backend: {
|
|
@@ -11,5 +11,5 @@ let context = {
|
|
|
11
11
|
};
|
|
12
12
|
|
|
13
13
|
(window as any).__richie_frontend_context__ = {
|
|
14
|
-
context:
|
|
14
|
+
context: RichieContextFactory(context).generate(),
|
|
15
15
|
};
|
package/.storybook/main.js
CHANGED
|
@@ -3,24 +3,34 @@ module.exports = {
|
|
|
3
3
|
stories: [
|
|
4
4
|
'../stories/**/*.stories.mdx',
|
|
5
5
|
'../stories/**/*.stories.@(js|jsx|ts|tsx)',
|
|
6
|
-
'../js/**/*.stories.@(js|jsx|ts|tsx)'
|
|
6
|
+
'../js/**/*.stories.@(js|jsx|ts|tsx)'
|
|
7
7
|
],
|
|
8
8
|
addons: [
|
|
9
9
|
'@storybook/addon-links',
|
|
10
10
|
'@storybook/addon-essentials',
|
|
11
|
-
'@storybook/addon-interactions'
|
|
11
|
+
'@storybook/addon-interactions'
|
|
12
12
|
],
|
|
13
|
-
framework:
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
framework: {
|
|
14
|
+
name: '@storybook/react-webpack5',
|
|
15
|
+
options: {},
|
|
16
16
|
},
|
|
17
|
-
staticDirs: [
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
staticDirs: [{
|
|
18
|
+
from: './public',
|
|
19
|
+
to: '/static',
|
|
20
|
+
}, {
|
|
21
|
+
from: '../../richie/static',
|
|
22
|
+
to: '/static',
|
|
23
|
+
}, {
|
|
24
|
+
from: '../../richie/apps/core/static',
|
|
25
|
+
to: '/static',
|
|
26
|
+
}, '../../richie/apps/core/templates/richie'],
|
|
27
|
+
webpackFinal: async (config, {
|
|
28
|
+
configType,
|
|
29
|
+
}) => {
|
|
23
30
|
config.resolve.plugins = [new TsconfigPathsPlugin()];
|
|
24
31
|
return config;
|
|
25
32
|
},
|
|
33
|
+
docs: {
|
|
34
|
+
autodocs: true,
|
|
35
|
+
},
|
|
26
36
|
};
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/i18n/locales/ar-SA.json
CHANGED
|
@@ -263,6 +263,14 @@
|
|
|
263
263
|
"description": "Help text below the \"Unenroll now\" CTA when an enrollment attempt has already failed.",
|
|
264
264
|
"message": "Unenroll from this course"
|
|
265
265
|
},
|
|
266
|
+
"components.Dashboard.DashboardRoutes.certificates.label": {
|
|
267
|
+
"description": "Label of the certificates view used in navigation components.",
|
|
268
|
+
"message": "My certificates"
|
|
269
|
+
},
|
|
270
|
+
"components.Dashboard.DashboardRoutes.certificates.path": {
|
|
271
|
+
"description": "The path to display the certificates view.",
|
|
272
|
+
"message": "/certificates"
|
|
273
|
+
},
|
|
266
274
|
"components.Dashboard.DashboardRoutes.course.path": {
|
|
267
275
|
"description": "The path to display a course detail view.",
|
|
268
276
|
"message": "/courses/{code}"
|
|
@@ -355,6 +363,42 @@
|
|
|
355
363
|
"description": "The dashboard's breadcrumb back button's label",
|
|
356
364
|
"message": "Back"
|
|
357
365
|
},
|
|
366
|
+
"components.DashboardCertificate.details": {
|
|
367
|
+
"description": "Label for the details button of a certificate",
|
|
368
|
+
"message": "Details"
|
|
369
|
+
},
|
|
370
|
+
"components.DashboardCertificate.download": {
|
|
371
|
+
"description": "Label for the download button of a certificate",
|
|
372
|
+
"message": "Download"
|
|
373
|
+
},
|
|
374
|
+
"components.DashboardCertificate.generatingCertificate": {
|
|
375
|
+
"description": "Accessible label displayed while certificate is being generated on the dashboard.",
|
|
376
|
+
"message": "Certificate is being generated..."
|
|
377
|
+
},
|
|
378
|
+
"components.DashboardCertificate.issuedOn": {
|
|
379
|
+
"description": "Label for the date of issue of a certificate",
|
|
380
|
+
"message": "Issued on {date}"
|
|
381
|
+
},
|
|
382
|
+
"components.DashboardCertificate.noCertificate": {
|
|
383
|
+
"description": "Label displayed when no certificate is available",
|
|
384
|
+
"message": "When all your courses will be passed, you will be able to download your certificate here."
|
|
385
|
+
},
|
|
386
|
+
"components.DashboardCertificates.empty": {
|
|
387
|
+
"description": "Message displayed when there are no certificates",
|
|
388
|
+
"message": "You have no certificates yet."
|
|
389
|
+
},
|
|
390
|
+
"components.DashboardCertificates.loading": {
|
|
391
|
+
"description": "Message displayed while loading certificates",
|
|
392
|
+
"message": "Loading certificates..."
|
|
393
|
+
},
|
|
394
|
+
"components.DashboardCourses.emptyList": {
|
|
395
|
+
"description": "Empty placeholder of the dashboard's list of orders and enrollments",
|
|
396
|
+
"message": "You have no enrollments nor orders yet."
|
|
397
|
+
},
|
|
398
|
+
"components.DashboardCourses.loadMoreResults": {
|
|
399
|
+
"description": "Button to manually load more orders and enrollments",
|
|
400
|
+
"message": "Load more"
|
|
401
|
+
},
|
|
358
402
|
"components.DashboardCourses.loading": {
|
|
359
403
|
"description": "Message displayed while loading orders and enrollments",
|
|
360
404
|
"message": "Loading orders and enrollments..."
|
|
@@ -451,17 +495,13 @@
|
|
|
451
495
|
"description": "Message displayed while loading an order",
|
|
452
496
|
"message": "Loading order ..."
|
|
453
497
|
},
|
|
454
|
-
"components.DashboardSidebar.header": {
|
|
455
|
-
"description": "Title of the dashboard sidebar",
|
|
456
|
-
"message": "Welcome {name}"
|
|
457
|
-
},
|
|
458
498
|
"components.DashboardSidebar.responsiveNavLabel": {
|
|
459
499
|
"description": "a11y related label for select input used to navigate on responsive",
|
|
460
500
|
"message": "Navigate to"
|
|
461
501
|
},
|
|
462
|
-
"components.DashboardSidebar.
|
|
463
|
-
"description": "
|
|
464
|
-
"message": "
|
|
502
|
+
"components.DashboardSidebar.settingsLinkLabel": {
|
|
503
|
+
"description": "label of the settings link",
|
|
504
|
+
"message": "Settings"
|
|
465
505
|
},
|
|
466
506
|
"components.DesktopUserMenu.menuPurpose": {
|
|
467
507
|
"description": "Accessible label for user menu button",
|
|
@@ -779,6 +819,150 @@
|
|
|
779
819
|
"description": "Info about current step, not visible, only announced by screen readers",
|
|
780
820
|
"message": "Step {current, number} of {total, number} {active, select, true {(active)} other {}}"
|
|
781
821
|
},
|
|
822
|
+
"components.StudentDashboardSidebar.header": {
|
|
823
|
+
"description": "Title of the dashboard sidebar",
|
|
824
|
+
"message": "Welcome {name}"
|
|
825
|
+
},
|
|
826
|
+
"components.StudentDashboardSidebar.subHeader": {
|
|
827
|
+
"description": "Sub title of the dashboard sidebar",
|
|
828
|
+
"message": "You are on your dashboard"
|
|
829
|
+
},
|
|
830
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.classrooms.label": {
|
|
831
|
+
"description": "Label of the course classrooms view.",
|
|
832
|
+
"message": "Classrooms"
|
|
833
|
+
},
|
|
834
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.classrooms.path": {
|
|
835
|
+
"description": "The path to display the course classrooms view.",
|
|
836
|
+
"message": "/teacher/course/{courseCode}/classrooms"
|
|
837
|
+
},
|
|
838
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.label": {
|
|
839
|
+
"description": "Label of the course view.",
|
|
840
|
+
"message": "General informations"
|
|
841
|
+
},
|
|
842
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.path": {
|
|
843
|
+
"description": "The path to display the course view.",
|
|
844
|
+
"message": "/teacher/course/{courseCode}"
|
|
845
|
+
},
|
|
846
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.records.label": {
|
|
847
|
+
"description": "Label of the course's records view.",
|
|
848
|
+
"message": "Records"
|
|
849
|
+
},
|
|
850
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.records.path": {
|
|
851
|
+
"description": "The path to display the course's records view.",
|
|
852
|
+
"message": "/teacher/course/{courseCode}/records"
|
|
853
|
+
},
|
|
854
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.settings.label": {
|
|
855
|
+
"description": "Label of the course settings view.",
|
|
856
|
+
"message": "Settings"
|
|
857
|
+
},
|
|
858
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.settings.path": {
|
|
859
|
+
"description": "The path to display the course settings view.",
|
|
860
|
+
"message": "/teacher/course/{courseCode}/settings"
|
|
861
|
+
},
|
|
862
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.courses.label": {
|
|
863
|
+
"description": "Label of the organization courses view.",
|
|
864
|
+
"message": "Courses"
|
|
865
|
+
},
|
|
866
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.courses.path": {
|
|
867
|
+
"description": "The path to display the organization courses view.",
|
|
868
|
+
"message": "/teacher/organization/{organizationId}/courses"
|
|
869
|
+
},
|
|
870
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.label": {
|
|
871
|
+
"description": "Label of the organization view.",
|
|
872
|
+
"message": "General informations"
|
|
873
|
+
},
|
|
874
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.members.label": {
|
|
875
|
+
"description": "Label of the unisersity members view.",
|
|
876
|
+
"message": "Members"
|
|
877
|
+
},
|
|
878
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.members.path": {
|
|
879
|
+
"description": "The path to display the unisersity members view.",
|
|
880
|
+
"message": "/teacher/organization/{organizationId}/members"
|
|
881
|
+
},
|
|
882
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.path": {
|
|
883
|
+
"description": "The path to display the organization view.",
|
|
884
|
+
"message": "/teacher/organization/{organizationId}"
|
|
885
|
+
},
|
|
886
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.settings.label": {
|
|
887
|
+
"description": "Label of the organization settings view.",
|
|
888
|
+
"message": "Settings"
|
|
889
|
+
},
|
|
890
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.settings.path": {
|
|
891
|
+
"description": "The path to display the organization settings view.",
|
|
892
|
+
"message": "/teacher/organization/{organizationId}/settings"
|
|
893
|
+
},
|
|
894
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.courses.label": {
|
|
895
|
+
"description": "Label of the teacher courses liste view.",
|
|
896
|
+
"message": "All my courses"
|
|
897
|
+
},
|
|
898
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.courses.path": {
|
|
899
|
+
"description": "The path to display the teacher courses liste view.",
|
|
900
|
+
"message": "/teacher/profile/courses"
|
|
901
|
+
},
|
|
902
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.label": {
|
|
903
|
+
"description": "Label of the teacher profile view.",
|
|
904
|
+
"message": "Profile"
|
|
905
|
+
},
|
|
906
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.notifications.label": {
|
|
907
|
+
"description": "Label of the teacher notifications view.",
|
|
908
|
+
"message": "Notifications"
|
|
909
|
+
},
|
|
910
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.notifications.path": {
|
|
911
|
+
"description": "The path to display the teacher notifications view.",
|
|
912
|
+
"message": "/teacher/profile/notifications"
|
|
913
|
+
},
|
|
914
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.path": {
|
|
915
|
+
"description": "The path to display the teacher profile view.",
|
|
916
|
+
"message": "/teacher/profile"
|
|
917
|
+
},
|
|
918
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.settings.label": {
|
|
919
|
+
"description": "Label of the teacher profile settings view.",
|
|
920
|
+
"message": "Settings"
|
|
921
|
+
},
|
|
922
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.settings.path": {
|
|
923
|
+
"description": "The path to display the teacher profile settings view.",
|
|
924
|
+
"message": "/teacher/profile/settings"
|
|
925
|
+
},
|
|
926
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.root.label": {
|
|
927
|
+
"description": "Label of the teacher dashboard root view.",
|
|
928
|
+
"message": "Teacher dashboard"
|
|
929
|
+
},
|
|
930
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.root.path": {
|
|
931
|
+
"description": "The path to display the teacher dashboard root view.",
|
|
932
|
+
"message": "/teacher"
|
|
933
|
+
},
|
|
934
|
+
"components.TeacherOrganizationCourseDashboardLoader.loading": {
|
|
935
|
+
"description": "Message displayed while loading courses on the teacher's dashboard'",
|
|
936
|
+
"message": "Loading organization ..."
|
|
937
|
+
},
|
|
938
|
+
"components.TeacherOrganizationDashboardSidebar.header": {
|
|
939
|
+
"description": "Title of the organization dashboard sidebar",
|
|
940
|
+
"message": "{organizationName}"
|
|
941
|
+
},
|
|
942
|
+
"components.TeacherOrganizationDashboardSidebar.subHeader": {
|
|
943
|
+
"description": "Sub title of the organization dashboard sidebar",
|
|
944
|
+
"message": "You are on the organization dashboard"
|
|
945
|
+
},
|
|
946
|
+
"components.TeacherProfileDashboardSidebar.OrganizationLinks.organizationLinkTitle": {
|
|
947
|
+
"description": "Organization link title",
|
|
948
|
+
"message": "Link to organization \"{organizationTitle}\""
|
|
949
|
+
},
|
|
950
|
+
"components.TeacherProfileDashboardSidebar.OrganizationLinks.organizationsTitle": {
|
|
951
|
+
"description": "Title of the organizations section",
|
|
952
|
+
"message": "My universities"
|
|
953
|
+
},
|
|
954
|
+
"components.TeacherProfileDashboardSidebar.header": {
|
|
955
|
+
"description": "Title of the dashboard sidebar",
|
|
956
|
+
"message": "{name}"
|
|
957
|
+
},
|
|
958
|
+
"components.TeacherProfileDashboardSidebar.subHeader": {
|
|
959
|
+
"description": "Sub title of the dashboard sidebar",
|
|
960
|
+
"message": "You are on your teacher dashboard"
|
|
961
|
+
},
|
|
962
|
+
"components.TeacherProfileSettingsDashboardLoader.loading": {
|
|
963
|
+
"description": "Message displayed while loading settings",
|
|
964
|
+
"message": "Loading settings..."
|
|
965
|
+
},
|
|
782
966
|
"components.UserLogin.logIn": {
|
|
783
967
|
"description": "Text for the login button.",
|
|
784
968
|
"message": "تسجيل الدخول"
|
|
@@ -835,6 +1019,14 @@
|
|
|
835
1019
|
"description": "Error shown if a user tries to remove a main address",
|
|
836
1020
|
"message": "Cannot remove main address."
|
|
837
1021
|
},
|
|
1022
|
+
"hooks.useCertificates.errorGet": {
|
|
1023
|
+
"description": "Error message shown to the user when certificates fetch request fails.",
|
|
1024
|
+
"message": "An error occurred while fetching certificates. Please retry later."
|
|
1025
|
+
},
|
|
1026
|
+
"hooks.useCertificates.errorNotFound": {
|
|
1027
|
+
"description": "Error message shown to the user when no certificate matches.",
|
|
1028
|
+
"message": "Cannot find the certificate"
|
|
1029
|
+
},
|
|
838
1030
|
"hooks.useCreditCards.errorCreate": {
|
|
839
1031
|
"description": "Error message shown to the user when credit card creation request fails.",
|
|
840
1032
|
"message": "An error occurred while creating the credit card. Please retry later."
|
|
@@ -895,6 +1087,18 @@
|
|
|
895
1087
|
"description": "Error message shown to the user when no orders matches.",
|
|
896
1088
|
"message": "Cannot find the orders."
|
|
897
1089
|
},
|
|
1090
|
+
"hooks.useOrdersEnrollments.errorGet": {
|
|
1091
|
+
"description": "Error message shown to the user when orders or enrollments fetch request fails.",
|
|
1092
|
+
"message": "An error occurred while fetching orders and enrollments. Please retry later."
|
|
1093
|
+
},
|
|
1094
|
+
"hooks.useOrganizations.errorNotFound": {
|
|
1095
|
+
"description": "Error message shown to the user when no organizations matches.",
|
|
1096
|
+
"message": "Cannot find the organization"
|
|
1097
|
+
},
|
|
1098
|
+
"hooks.useOrganizations.errorSelect": {
|
|
1099
|
+
"description": "Error message shown to the user when organizations fetch request fails.",
|
|
1100
|
+
"message": "An error occurred while fetching organizations. Please retry later."
|
|
1101
|
+
},
|
|
898
1102
|
"hooks.useProduct.errorGet": {
|
|
899
1103
|
"description": "Error message shown to the user when product fetch request fails.",
|
|
900
1104
|
"message": "An error occurred while fetching product. Please retry later."
|
package/i18n/locales/es-ES.json
CHANGED
|
@@ -263,6 +263,14 @@
|
|
|
263
263
|
"description": "Help text below the \"Unenroll now\" CTA when an enrollment attempt has already failed.",
|
|
264
264
|
"message": "Unenroll from this course"
|
|
265
265
|
},
|
|
266
|
+
"components.Dashboard.DashboardRoutes.certificates.label": {
|
|
267
|
+
"description": "Label of the certificates view used in navigation components.",
|
|
268
|
+
"message": "My certificates"
|
|
269
|
+
},
|
|
270
|
+
"components.Dashboard.DashboardRoutes.certificates.path": {
|
|
271
|
+
"description": "The path to display the certificates view.",
|
|
272
|
+
"message": "/certificates"
|
|
273
|
+
},
|
|
266
274
|
"components.Dashboard.DashboardRoutes.course.path": {
|
|
267
275
|
"description": "The path to display a course detail view.",
|
|
268
276
|
"message": "/courses/{code}"
|
|
@@ -355,6 +363,42 @@
|
|
|
355
363
|
"description": "The dashboard's breadcrumb back button's label",
|
|
356
364
|
"message": "Back"
|
|
357
365
|
},
|
|
366
|
+
"components.DashboardCertificate.details": {
|
|
367
|
+
"description": "Label for the details button of a certificate",
|
|
368
|
+
"message": "Details"
|
|
369
|
+
},
|
|
370
|
+
"components.DashboardCertificate.download": {
|
|
371
|
+
"description": "Label for the download button of a certificate",
|
|
372
|
+
"message": "Download"
|
|
373
|
+
},
|
|
374
|
+
"components.DashboardCertificate.generatingCertificate": {
|
|
375
|
+
"description": "Accessible label displayed while certificate is being generated on the dashboard.",
|
|
376
|
+
"message": "Certificate is being generated..."
|
|
377
|
+
},
|
|
378
|
+
"components.DashboardCertificate.issuedOn": {
|
|
379
|
+
"description": "Label for the date of issue of a certificate",
|
|
380
|
+
"message": "Issued on {date}"
|
|
381
|
+
},
|
|
382
|
+
"components.DashboardCertificate.noCertificate": {
|
|
383
|
+
"description": "Label displayed when no certificate is available",
|
|
384
|
+
"message": "When all your courses will be passed, you will be able to download your certificate here."
|
|
385
|
+
},
|
|
386
|
+
"components.DashboardCertificates.empty": {
|
|
387
|
+
"description": "Message displayed when there are no certificates",
|
|
388
|
+
"message": "You have no certificates yet."
|
|
389
|
+
},
|
|
390
|
+
"components.DashboardCertificates.loading": {
|
|
391
|
+
"description": "Message displayed while loading certificates",
|
|
392
|
+
"message": "Loading certificates..."
|
|
393
|
+
},
|
|
394
|
+
"components.DashboardCourses.emptyList": {
|
|
395
|
+
"description": "Empty placeholder of the dashboard's list of orders and enrollments",
|
|
396
|
+
"message": "You have no enrollments nor orders yet."
|
|
397
|
+
},
|
|
398
|
+
"components.DashboardCourses.loadMoreResults": {
|
|
399
|
+
"description": "Button to manually load more orders and enrollments",
|
|
400
|
+
"message": "Load more"
|
|
401
|
+
},
|
|
358
402
|
"components.DashboardCourses.loading": {
|
|
359
403
|
"description": "Message displayed while loading orders and enrollments",
|
|
360
404
|
"message": "Loading orders and enrollments..."
|
|
@@ -451,17 +495,13 @@
|
|
|
451
495
|
"description": "Message displayed while loading an order",
|
|
452
496
|
"message": "Loading order ..."
|
|
453
497
|
},
|
|
454
|
-
"components.DashboardSidebar.header": {
|
|
455
|
-
"description": "Title of the dashboard sidebar",
|
|
456
|
-
"message": "Welcome {name}"
|
|
457
|
-
},
|
|
458
498
|
"components.DashboardSidebar.responsiveNavLabel": {
|
|
459
499
|
"description": "a11y related label for select input used to navigate on responsive",
|
|
460
500
|
"message": "Navigate to"
|
|
461
501
|
},
|
|
462
|
-
"components.DashboardSidebar.
|
|
463
|
-
"description": "
|
|
464
|
-
"message": "
|
|
502
|
+
"components.DashboardSidebar.settingsLinkLabel": {
|
|
503
|
+
"description": "label of the settings link",
|
|
504
|
+
"message": "Settings"
|
|
465
505
|
},
|
|
466
506
|
"components.DesktopUserMenu.menuPurpose": {
|
|
467
507
|
"description": "Accessible label for user menu button",
|
|
@@ -779,6 +819,150 @@
|
|
|
779
819
|
"description": "Info about current step, not visible, only announced by screen readers",
|
|
780
820
|
"message": "Step {current, number} of {total, number} {active, select, true {(active)} other {}}"
|
|
781
821
|
},
|
|
822
|
+
"components.StudentDashboardSidebar.header": {
|
|
823
|
+
"description": "Title of the dashboard sidebar",
|
|
824
|
+
"message": "Welcome {name}"
|
|
825
|
+
},
|
|
826
|
+
"components.StudentDashboardSidebar.subHeader": {
|
|
827
|
+
"description": "Sub title of the dashboard sidebar",
|
|
828
|
+
"message": "You are on your dashboard"
|
|
829
|
+
},
|
|
830
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.classrooms.label": {
|
|
831
|
+
"description": "Label of the course classrooms view.",
|
|
832
|
+
"message": "Classrooms"
|
|
833
|
+
},
|
|
834
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.classrooms.path": {
|
|
835
|
+
"description": "The path to display the course classrooms view.",
|
|
836
|
+
"message": "/teacher/course/{courseCode}/classrooms"
|
|
837
|
+
},
|
|
838
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.label": {
|
|
839
|
+
"description": "Label of the course view.",
|
|
840
|
+
"message": "General informations"
|
|
841
|
+
},
|
|
842
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.path": {
|
|
843
|
+
"description": "The path to display the course view.",
|
|
844
|
+
"message": "/teacher/course/{courseCode}"
|
|
845
|
+
},
|
|
846
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.records.label": {
|
|
847
|
+
"description": "Label of the course's records view.",
|
|
848
|
+
"message": "Records"
|
|
849
|
+
},
|
|
850
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.records.path": {
|
|
851
|
+
"description": "The path to display the course's records view.",
|
|
852
|
+
"message": "/teacher/course/{courseCode}/records"
|
|
853
|
+
},
|
|
854
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.settings.label": {
|
|
855
|
+
"description": "Label of the course settings view.",
|
|
856
|
+
"message": "Settings"
|
|
857
|
+
},
|
|
858
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.course.settings.path": {
|
|
859
|
+
"description": "The path to display the course settings view.",
|
|
860
|
+
"message": "/teacher/course/{courseCode}/settings"
|
|
861
|
+
},
|
|
862
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.courses.label": {
|
|
863
|
+
"description": "Label of the organization courses view.",
|
|
864
|
+
"message": "Courses"
|
|
865
|
+
},
|
|
866
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.courses.path": {
|
|
867
|
+
"description": "The path to display the organization courses view.",
|
|
868
|
+
"message": "/teacher/organization/{organizationId}/courses"
|
|
869
|
+
},
|
|
870
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.label": {
|
|
871
|
+
"description": "Label of the organization view.",
|
|
872
|
+
"message": "General informations"
|
|
873
|
+
},
|
|
874
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.members.label": {
|
|
875
|
+
"description": "Label of the unisersity members view.",
|
|
876
|
+
"message": "Members"
|
|
877
|
+
},
|
|
878
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.members.path": {
|
|
879
|
+
"description": "The path to display the unisersity members view.",
|
|
880
|
+
"message": "/teacher/organization/{organizationId}/members"
|
|
881
|
+
},
|
|
882
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.path": {
|
|
883
|
+
"description": "The path to display the organization view.",
|
|
884
|
+
"message": "/teacher/organization/{organizationId}"
|
|
885
|
+
},
|
|
886
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.settings.label": {
|
|
887
|
+
"description": "Label of the organization settings view.",
|
|
888
|
+
"message": "Settings"
|
|
889
|
+
},
|
|
890
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.organization.settings.path": {
|
|
891
|
+
"description": "The path to display the organization settings view.",
|
|
892
|
+
"message": "/teacher/organization/{organizationId}/settings"
|
|
893
|
+
},
|
|
894
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.courses.label": {
|
|
895
|
+
"description": "Label of the teacher courses liste view.",
|
|
896
|
+
"message": "All my courses"
|
|
897
|
+
},
|
|
898
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.courses.path": {
|
|
899
|
+
"description": "The path to display the teacher courses liste view.",
|
|
900
|
+
"message": "/teacher/profile/courses"
|
|
901
|
+
},
|
|
902
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.label": {
|
|
903
|
+
"description": "Label of the teacher profile view.",
|
|
904
|
+
"message": "Profile"
|
|
905
|
+
},
|
|
906
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.notifications.label": {
|
|
907
|
+
"description": "Label of the teacher notifications view.",
|
|
908
|
+
"message": "Notifications"
|
|
909
|
+
},
|
|
910
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.notifications.path": {
|
|
911
|
+
"description": "The path to display the teacher notifications view.",
|
|
912
|
+
"message": "/teacher/profile/notifications"
|
|
913
|
+
},
|
|
914
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.path": {
|
|
915
|
+
"description": "The path to display the teacher profile view.",
|
|
916
|
+
"message": "/teacher/profile"
|
|
917
|
+
},
|
|
918
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.settings.label": {
|
|
919
|
+
"description": "Label of the teacher profile settings view.",
|
|
920
|
+
"message": "Settings"
|
|
921
|
+
},
|
|
922
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.profile.settings.path": {
|
|
923
|
+
"description": "The path to display the teacher profile settings view.",
|
|
924
|
+
"message": "/teacher/profile/settings"
|
|
925
|
+
},
|
|
926
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.root.label": {
|
|
927
|
+
"description": "Label of the teacher dashboard root view.",
|
|
928
|
+
"message": "Teacher dashboard"
|
|
929
|
+
},
|
|
930
|
+
"components.TeacherDashboard.TeacherDashboardRoutes.root.path": {
|
|
931
|
+
"description": "The path to display the teacher dashboard root view.",
|
|
932
|
+
"message": "/teacher"
|
|
933
|
+
},
|
|
934
|
+
"components.TeacherOrganizationCourseDashboardLoader.loading": {
|
|
935
|
+
"description": "Message displayed while loading courses on the teacher's dashboard'",
|
|
936
|
+
"message": "Loading organization ..."
|
|
937
|
+
},
|
|
938
|
+
"components.TeacherOrganizationDashboardSidebar.header": {
|
|
939
|
+
"description": "Title of the organization dashboard sidebar",
|
|
940
|
+
"message": "{organizationName}"
|
|
941
|
+
},
|
|
942
|
+
"components.TeacherOrganizationDashboardSidebar.subHeader": {
|
|
943
|
+
"description": "Sub title of the organization dashboard sidebar",
|
|
944
|
+
"message": "You are on the organization dashboard"
|
|
945
|
+
},
|
|
946
|
+
"components.TeacherProfileDashboardSidebar.OrganizationLinks.organizationLinkTitle": {
|
|
947
|
+
"description": "Organization link title",
|
|
948
|
+
"message": "Link to organization \"{organizationTitle}\""
|
|
949
|
+
},
|
|
950
|
+
"components.TeacherProfileDashboardSidebar.OrganizationLinks.organizationsTitle": {
|
|
951
|
+
"description": "Title of the organizations section",
|
|
952
|
+
"message": "My universities"
|
|
953
|
+
},
|
|
954
|
+
"components.TeacherProfileDashboardSidebar.header": {
|
|
955
|
+
"description": "Title of the dashboard sidebar",
|
|
956
|
+
"message": "{name}"
|
|
957
|
+
},
|
|
958
|
+
"components.TeacherProfileDashboardSidebar.subHeader": {
|
|
959
|
+
"description": "Sub title of the dashboard sidebar",
|
|
960
|
+
"message": "You are on your teacher dashboard"
|
|
961
|
+
},
|
|
962
|
+
"components.TeacherProfileSettingsDashboardLoader.loading": {
|
|
963
|
+
"description": "Message displayed while loading settings",
|
|
964
|
+
"message": "Loading settings..."
|
|
965
|
+
},
|
|
782
966
|
"components.UserLogin.logIn": {
|
|
783
967
|
"description": "Text for the login button.",
|
|
784
968
|
"message": "Iniciar sesión"
|
|
@@ -835,6 +1019,14 @@
|
|
|
835
1019
|
"description": "Error shown if a user tries to remove a main address",
|
|
836
1020
|
"message": "Cannot remove main address."
|
|
837
1021
|
},
|
|
1022
|
+
"hooks.useCertificates.errorGet": {
|
|
1023
|
+
"description": "Error message shown to the user when certificates fetch request fails.",
|
|
1024
|
+
"message": "An error occurred while fetching certificates. Please retry later."
|
|
1025
|
+
},
|
|
1026
|
+
"hooks.useCertificates.errorNotFound": {
|
|
1027
|
+
"description": "Error message shown to the user when no certificate matches.",
|
|
1028
|
+
"message": "Cannot find the certificate"
|
|
1029
|
+
},
|
|
838
1030
|
"hooks.useCreditCards.errorCreate": {
|
|
839
1031
|
"description": "Error message shown to the user when credit card creation request fails.",
|
|
840
1032
|
"message": "An error occurred while creating the credit card. Please retry later."
|
|
@@ -895,6 +1087,18 @@
|
|
|
895
1087
|
"description": "Error message shown to the user when no orders matches.",
|
|
896
1088
|
"message": "Cannot find the orders."
|
|
897
1089
|
},
|
|
1090
|
+
"hooks.useOrdersEnrollments.errorGet": {
|
|
1091
|
+
"description": "Error message shown to the user when orders or enrollments fetch request fails.",
|
|
1092
|
+
"message": "An error occurred while fetching orders and enrollments. Please retry later."
|
|
1093
|
+
},
|
|
1094
|
+
"hooks.useOrganizations.errorNotFound": {
|
|
1095
|
+
"description": "Error message shown to the user when no organizations matches.",
|
|
1096
|
+
"message": "Cannot find the organization"
|
|
1097
|
+
},
|
|
1098
|
+
"hooks.useOrganizations.errorSelect": {
|
|
1099
|
+
"description": "Error message shown to the user when organizations fetch request fails.",
|
|
1100
|
+
"message": "An error occurred while fetching organizations. Please retry later."
|
|
1101
|
+
},
|
|
898
1102
|
"hooks.useProduct.errorGet": {
|
|
899
1103
|
"description": "Error message shown to the user when product fetch request fails.",
|
|
900
1104
|
"message": "An error occurred while fetching product. Please retry later."
|