@selfcommunity/react-i18n 0.7.4-courses.186 → 0.7.4-courses.188
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/lib/cjs/index.d.ts +10 -0
- package/lib/cjs/locales/en.json +6 -1
- package/lib/cjs/locales/it.json +6 -1
- package/lib/esm/index.d.ts +10 -0
- package/lib/esm/locales/en.json +6 -1
- package/lib/esm/locales/it.json +6 -1
- package/lib/types/index.d.ts +10 -0
- package/lib/types/locales/en.json +6 -1
- package/lib/types/locales/it.json +6 -1
- package/lib/types/tsconfig.build.tsbuildinfo +1 -1
- package/lib/umd/react-i18n.js +1 -1
- package/package.json +2 -2
package/lib/cjs/index.d.ts
CHANGED
|
@@ -283,6 +283,7 @@ declare const locales: {
|
|
|
283
283
|
"ui.contributionActionMenu.vulgar": string;
|
|
284
284
|
"ui.createEvent.title": string;
|
|
285
285
|
"ui.createEvent.description": string;
|
|
286
|
+
"ui.course.accordionLessons.date": string;
|
|
286
287
|
"ui.course.accordionLessons.empty": string;
|
|
287
288
|
"ui.course.completedDialog.btn.label": string;
|
|
288
289
|
"ui.course.completedDialog.description.pt1": string;
|
|
@@ -386,6 +387,7 @@ declare const locales: {
|
|
|
386
387
|
"ui.editCourse.tab.users.title": string;
|
|
387
388
|
"ui.event.see": string;
|
|
388
389
|
"ui.event.inProgress": string;
|
|
390
|
+
"ui.event.finished": string;
|
|
389
391
|
"ui.eventHeader.visibility.private": string;
|
|
390
392
|
"ui.eventHeader.visibility.public": string;
|
|
391
393
|
"ui.eventHeader.location.live": string;
|
|
@@ -396,6 +398,8 @@ declare const locales: {
|
|
|
396
398
|
"ui.eventHeader.user.manager": string;
|
|
397
399
|
"ui.eventHeader.inProgress": string;
|
|
398
400
|
"ui.eventHeader.finished": string;
|
|
401
|
+
"ui.events.myEvents.title": string;
|
|
402
|
+
"ui.events.allEvents.title": string;
|
|
399
403
|
"ui.events.filterByName": string;
|
|
400
404
|
"ui.events.filterByDate": string;
|
|
401
405
|
"ui.events.select.any": string;
|
|
@@ -410,6 +414,7 @@ declare const locales: {
|
|
|
410
414
|
"ui.events.filterByFollowedInterest": string;
|
|
411
415
|
"ui.events.filterByCreatedByMe": string;
|
|
412
416
|
"ui.events.filterByPastEvents": string;
|
|
417
|
+
"ui.events.filterByOngoingEvents": string;
|
|
413
418
|
"ui.events.button.seeMore": string;
|
|
414
419
|
"ui.events.noEvents.title.personal": string;
|
|
415
420
|
"ui.events.noEvents.title": string;
|
|
@@ -1592,6 +1597,7 @@ declare const locales: {
|
|
|
1592
1597
|
"ui.contributionActionMenu.vulgar": string;
|
|
1593
1598
|
"ui.createEvent.title": string;
|
|
1594
1599
|
"ui.createEvent.description": string;
|
|
1600
|
+
"ui.course.accordionLessons.date": string;
|
|
1595
1601
|
"ui.course.accordionLessons.empty": string;
|
|
1596
1602
|
"ui.course.completedDialog.btn.label": string;
|
|
1597
1603
|
"ui.course.completedDialog.description.pt1": string;
|
|
@@ -1695,6 +1701,7 @@ declare const locales: {
|
|
|
1695
1701
|
"ui.editCourse.tab.users.title": string;
|
|
1696
1702
|
"ui.event.see": string;
|
|
1697
1703
|
"ui.event.inProgress": string;
|
|
1704
|
+
"ui.event.finished": string;
|
|
1698
1705
|
"ui.eventHeader.visibility.private": string;
|
|
1699
1706
|
"ui.eventHeader.visibility.public": string;
|
|
1700
1707
|
"ui.eventHeader.location.live": string;
|
|
@@ -1705,6 +1712,8 @@ declare const locales: {
|
|
|
1705
1712
|
"ui.eventHeader.user.manager": string;
|
|
1706
1713
|
"ui.eventHeader.inProgress": string;
|
|
1707
1714
|
"ui.eventHeader.finished": string;
|
|
1715
|
+
"ui.events.myEvents.title": string;
|
|
1716
|
+
"ui.events.allEvents.title": string;
|
|
1708
1717
|
"ui.events.filterByName": string;
|
|
1709
1718
|
"ui.events.filterByDate": string;
|
|
1710
1719
|
"ui.events.select.any": string;
|
|
@@ -1719,6 +1728,7 @@ declare const locales: {
|
|
|
1719
1728
|
"ui.events.filterByFollowedInterest": string;
|
|
1720
1729
|
"ui.events.filterByCreatedByMe": string;
|
|
1721
1730
|
"ui.events.filterByPastEvents": string;
|
|
1731
|
+
"ui.events.filterByOngoingEvents": string;
|
|
1722
1732
|
"ui.events.button.seeMore": string;
|
|
1723
1733
|
"ui.events.noEvents.title.personal": string;
|
|
1724
1734
|
"ui.events.noEvents.title": string;
|
package/lib/cjs/locales/en.json
CHANGED
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
"ui.contributionActionMenu.vulgar": "Vulgar",
|
|
283
283
|
"ui.createEvent.title": "Create your Event now!",
|
|
284
284
|
"ui.createEvent.description": "Engage your Community with an Event: whether it’s a link for a virtual Event or an address to meet in person. Decide if it will be open to everyone or accessible by invitation only. Discover how easy it is to engage your Community!",
|
|
285
|
+
"ui.course.accordionLessons.date": "Available from {date} hour {hour}",
|
|
285
286
|
"ui.course.accordionLessons.empty": "No content present",
|
|
286
287
|
"ui.course.completedDialog.btn.label": "Back to Courses",
|
|
287
288
|
"ui.course.completedDialog.description.pt1": "Congratulations!",
|
|
@@ -385,6 +386,7 @@
|
|
|
385
386
|
"ui.editCourse.tab.users.title": "{usersNumber, plural, =0 {# Course Users} one {# Course User} other {# Course Users}}",
|
|
386
387
|
"ui.event.see": "See",
|
|
387
388
|
"ui.event.inProgress": "In progress",
|
|
389
|
+
"ui.event.finished": "Finished",
|
|
388
390
|
"ui.eventHeader.visibility.private": "Private Event",
|
|
389
391
|
"ui.eventHeader.visibility.public": "Public Event",
|
|
390
392
|
"ui.eventHeader.location.live": "Live",
|
|
@@ -395,6 +397,8 @@
|
|
|
395
397
|
"ui.eventHeader.user.manager": "Manager",
|
|
396
398
|
"ui.eventHeader.inProgress": "In progress",
|
|
397
399
|
"ui.eventHeader.finished": "Finished",
|
|
400
|
+
"ui.events.myEvents.title": "My Events",
|
|
401
|
+
"ui.events.allEvents.title": "All events",
|
|
398
402
|
"ui.events.filterByName": "Search Event",
|
|
399
403
|
"ui.events.filterByDate": "Event Date",
|
|
400
404
|
"ui.events.select.any": "Any Date",
|
|
@@ -409,8 +413,9 @@
|
|
|
409
413
|
"ui.events.filterByFollowedInterest": "People I Follow",
|
|
410
414
|
"ui.events.filterByCreatedByMe": "Created by me",
|
|
411
415
|
"ui.events.filterByPastEvents": "Past Events",
|
|
416
|
+
"ui.events.filterByOngoingEvents": "Scheduled events",
|
|
412
417
|
"ui.events.button.seeMore": "See More",
|
|
413
|
-
"ui.events.noEvents.title.personal": "
|
|
418
|
+
"ui.events.noEvents.title.personal": "No matching events.",
|
|
414
419
|
"ui.events.noEvents.title": "All events will be visible here.",
|
|
415
420
|
"ui.events.skeleton.action.add": "Add Event",
|
|
416
421
|
"ui.eventForm.title": "Create Event",
|
package/lib/cjs/locales/it.json
CHANGED
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
"ui.contributionActionMenu.vulgar": "Volgare",
|
|
283
283
|
"ui.createEvent.title": "Crea il tuo Evento adesso!",
|
|
284
284
|
"ui.createEvent.description": "Coinvolgi la tua Community con un Evento: sia che si tratti di un link per un Evento virtuale o di un indirizzo per incontrarsi di persona. Decidi se renderlo aperto a tutti o accessibile solo su invito. Scopri quanto è semplice coinvolgere la tua Community!",
|
|
285
|
+
"ui.course.accordionLessons.date": "Disponibile dal {date} ore {hour}",
|
|
285
286
|
"ui.course.accordionLessons.empty": "Nessun contenuto presente",
|
|
286
287
|
"ui.course.completedDialog.btn.label": "Torna ai Corsi",
|
|
287
288
|
"ui.course.completedDialog.description.pt1": "Congratulazioni!",
|
|
@@ -385,6 +386,7 @@
|
|
|
385
386
|
"ui.editCourse.tab.users.title": "{usersNumber, plural, =0 {# Utenti} one {# Utente} other {# Utenti}} del Corso",
|
|
386
387
|
"ui.event.see": "Vedi",
|
|
387
388
|
"ui.event.inProgress": "In corso",
|
|
389
|
+
"ui.event.finished": "Terminato",
|
|
388
390
|
"ui.eventHeader.visibility.private": "Evento Privato",
|
|
389
391
|
"ui.eventHeader.visibility.public": "Evento Pubblico",
|
|
390
392
|
"ui.eventHeader.location.live": "Di persona",
|
|
@@ -395,6 +397,8 @@
|
|
|
395
397
|
"ui.eventHeader.user.manager": "Organizzatore",
|
|
396
398
|
"ui.eventHeader.inProgress": "In corso",
|
|
397
399
|
"ui.eventHeader.finished": "Terminato",
|
|
400
|
+
"ui.events.myEvents.title": "I miei eventi",
|
|
401
|
+
"ui.events.allEvents.title": "Tutti gli eventi",
|
|
398
402
|
"ui.events.filterByName": "Cerca Evento",
|
|
399
403
|
"ui.events.filterByDate": "Data Evento",
|
|
400
404
|
"ui.events.select.any": "Qualsiasi data",
|
|
@@ -409,8 +413,9 @@
|
|
|
409
413
|
"ui.events.filterByFollowedInterest": "Persone che seguo",
|
|
410
414
|
"ui.events.filterByCreatedByMe": "Creati da me",
|
|
411
415
|
"ui.events.filterByPastEvents": "Eventi passati",
|
|
416
|
+
"ui.events.filterByOngoingEvents": "Eventi in programma",
|
|
412
417
|
"ui.events.button.seeMore": "Vedi di più",
|
|
413
|
-
"ui.events.noEvents.title.personal": "
|
|
418
|
+
"ui.events.noEvents.title.personal": "Nessun evento corrispondente.",
|
|
414
419
|
"ui.events.noEvents.title": "Tutti gli eventi saranno visibili qui.",
|
|
415
420
|
"ui.events.skeleton.action.add": "Aggiungi Evento",
|
|
416
421
|
"ui.eventForm.title": "Crea Evento",
|
package/lib/esm/index.d.ts
CHANGED
|
@@ -283,6 +283,7 @@ declare const locales: {
|
|
|
283
283
|
"ui.contributionActionMenu.vulgar": string;
|
|
284
284
|
"ui.createEvent.title": string;
|
|
285
285
|
"ui.createEvent.description": string;
|
|
286
|
+
"ui.course.accordionLessons.date": string;
|
|
286
287
|
"ui.course.accordionLessons.empty": string;
|
|
287
288
|
"ui.course.completedDialog.btn.label": string;
|
|
288
289
|
"ui.course.completedDialog.description.pt1": string;
|
|
@@ -386,6 +387,7 @@ declare const locales: {
|
|
|
386
387
|
"ui.editCourse.tab.users.title": string;
|
|
387
388
|
"ui.event.see": string;
|
|
388
389
|
"ui.event.inProgress": string;
|
|
390
|
+
"ui.event.finished": string;
|
|
389
391
|
"ui.eventHeader.visibility.private": string;
|
|
390
392
|
"ui.eventHeader.visibility.public": string;
|
|
391
393
|
"ui.eventHeader.location.live": string;
|
|
@@ -396,6 +398,8 @@ declare const locales: {
|
|
|
396
398
|
"ui.eventHeader.user.manager": string;
|
|
397
399
|
"ui.eventHeader.inProgress": string;
|
|
398
400
|
"ui.eventHeader.finished": string;
|
|
401
|
+
"ui.events.myEvents.title": string;
|
|
402
|
+
"ui.events.allEvents.title": string;
|
|
399
403
|
"ui.events.filterByName": string;
|
|
400
404
|
"ui.events.filterByDate": string;
|
|
401
405
|
"ui.events.select.any": string;
|
|
@@ -410,6 +414,7 @@ declare const locales: {
|
|
|
410
414
|
"ui.events.filterByFollowedInterest": string;
|
|
411
415
|
"ui.events.filterByCreatedByMe": string;
|
|
412
416
|
"ui.events.filterByPastEvents": string;
|
|
417
|
+
"ui.events.filterByOngoingEvents": string;
|
|
413
418
|
"ui.events.button.seeMore": string;
|
|
414
419
|
"ui.events.noEvents.title.personal": string;
|
|
415
420
|
"ui.events.noEvents.title": string;
|
|
@@ -1592,6 +1597,7 @@ declare const locales: {
|
|
|
1592
1597
|
"ui.contributionActionMenu.vulgar": string;
|
|
1593
1598
|
"ui.createEvent.title": string;
|
|
1594
1599
|
"ui.createEvent.description": string;
|
|
1600
|
+
"ui.course.accordionLessons.date": string;
|
|
1595
1601
|
"ui.course.accordionLessons.empty": string;
|
|
1596
1602
|
"ui.course.completedDialog.btn.label": string;
|
|
1597
1603
|
"ui.course.completedDialog.description.pt1": string;
|
|
@@ -1695,6 +1701,7 @@ declare const locales: {
|
|
|
1695
1701
|
"ui.editCourse.tab.users.title": string;
|
|
1696
1702
|
"ui.event.see": string;
|
|
1697
1703
|
"ui.event.inProgress": string;
|
|
1704
|
+
"ui.event.finished": string;
|
|
1698
1705
|
"ui.eventHeader.visibility.private": string;
|
|
1699
1706
|
"ui.eventHeader.visibility.public": string;
|
|
1700
1707
|
"ui.eventHeader.location.live": string;
|
|
@@ -1705,6 +1712,8 @@ declare const locales: {
|
|
|
1705
1712
|
"ui.eventHeader.user.manager": string;
|
|
1706
1713
|
"ui.eventHeader.inProgress": string;
|
|
1707
1714
|
"ui.eventHeader.finished": string;
|
|
1715
|
+
"ui.events.myEvents.title": string;
|
|
1716
|
+
"ui.events.allEvents.title": string;
|
|
1708
1717
|
"ui.events.filterByName": string;
|
|
1709
1718
|
"ui.events.filterByDate": string;
|
|
1710
1719
|
"ui.events.select.any": string;
|
|
@@ -1719,6 +1728,7 @@ declare const locales: {
|
|
|
1719
1728
|
"ui.events.filterByFollowedInterest": string;
|
|
1720
1729
|
"ui.events.filterByCreatedByMe": string;
|
|
1721
1730
|
"ui.events.filterByPastEvents": string;
|
|
1731
|
+
"ui.events.filterByOngoingEvents": string;
|
|
1722
1732
|
"ui.events.button.seeMore": string;
|
|
1723
1733
|
"ui.events.noEvents.title.personal": string;
|
|
1724
1734
|
"ui.events.noEvents.title": string;
|
package/lib/esm/locales/en.json
CHANGED
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
"ui.contributionActionMenu.vulgar": "Vulgar",
|
|
283
283
|
"ui.createEvent.title": "Create your Event now!",
|
|
284
284
|
"ui.createEvent.description": "Engage your Community with an Event: whether it’s a link for a virtual Event or an address to meet in person. Decide if it will be open to everyone or accessible by invitation only. Discover how easy it is to engage your Community!",
|
|
285
|
+
"ui.course.accordionLessons.date": "Available from {date} hour {hour}",
|
|
285
286
|
"ui.course.accordionLessons.empty": "No content present",
|
|
286
287
|
"ui.course.completedDialog.btn.label": "Back to Courses",
|
|
287
288
|
"ui.course.completedDialog.description.pt1": "Congratulations!",
|
|
@@ -385,6 +386,7 @@
|
|
|
385
386
|
"ui.editCourse.tab.users.title": "{usersNumber, plural, =0 {# Course Users} one {# Course User} other {# Course Users}}",
|
|
386
387
|
"ui.event.see": "See",
|
|
387
388
|
"ui.event.inProgress": "In progress",
|
|
389
|
+
"ui.event.finished": "Finished",
|
|
388
390
|
"ui.eventHeader.visibility.private": "Private Event",
|
|
389
391
|
"ui.eventHeader.visibility.public": "Public Event",
|
|
390
392
|
"ui.eventHeader.location.live": "Live",
|
|
@@ -395,6 +397,8 @@
|
|
|
395
397
|
"ui.eventHeader.user.manager": "Manager",
|
|
396
398
|
"ui.eventHeader.inProgress": "In progress",
|
|
397
399
|
"ui.eventHeader.finished": "Finished",
|
|
400
|
+
"ui.events.myEvents.title": "My Events",
|
|
401
|
+
"ui.events.allEvents.title": "All events",
|
|
398
402
|
"ui.events.filterByName": "Search Event",
|
|
399
403
|
"ui.events.filterByDate": "Event Date",
|
|
400
404
|
"ui.events.select.any": "Any Date",
|
|
@@ -409,8 +413,9 @@
|
|
|
409
413
|
"ui.events.filterByFollowedInterest": "People I Follow",
|
|
410
414
|
"ui.events.filterByCreatedByMe": "Created by me",
|
|
411
415
|
"ui.events.filterByPastEvents": "Past Events",
|
|
416
|
+
"ui.events.filterByOngoingEvents": "Scheduled events",
|
|
412
417
|
"ui.events.button.seeMore": "See More",
|
|
413
|
-
"ui.events.noEvents.title.personal": "
|
|
418
|
+
"ui.events.noEvents.title.personal": "No matching events.",
|
|
414
419
|
"ui.events.noEvents.title": "All events will be visible here.",
|
|
415
420
|
"ui.events.skeleton.action.add": "Add Event",
|
|
416
421
|
"ui.eventForm.title": "Create Event",
|
package/lib/esm/locales/it.json
CHANGED
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
"ui.contributionActionMenu.vulgar": "Volgare",
|
|
283
283
|
"ui.createEvent.title": "Crea il tuo Evento adesso!",
|
|
284
284
|
"ui.createEvent.description": "Coinvolgi la tua Community con un Evento: sia che si tratti di un link per un Evento virtuale o di un indirizzo per incontrarsi di persona. Decidi se renderlo aperto a tutti o accessibile solo su invito. Scopri quanto è semplice coinvolgere la tua Community!",
|
|
285
|
+
"ui.course.accordionLessons.date": "Disponibile dal {date} ore {hour}",
|
|
285
286
|
"ui.course.accordionLessons.empty": "Nessun contenuto presente",
|
|
286
287
|
"ui.course.completedDialog.btn.label": "Torna ai Corsi",
|
|
287
288
|
"ui.course.completedDialog.description.pt1": "Congratulazioni!",
|
|
@@ -385,6 +386,7 @@
|
|
|
385
386
|
"ui.editCourse.tab.users.title": "{usersNumber, plural, =0 {# Utenti} one {# Utente} other {# Utenti}} del Corso",
|
|
386
387
|
"ui.event.see": "Vedi",
|
|
387
388
|
"ui.event.inProgress": "In corso",
|
|
389
|
+
"ui.event.finished": "Terminato",
|
|
388
390
|
"ui.eventHeader.visibility.private": "Evento Privato",
|
|
389
391
|
"ui.eventHeader.visibility.public": "Evento Pubblico",
|
|
390
392
|
"ui.eventHeader.location.live": "Di persona",
|
|
@@ -395,6 +397,8 @@
|
|
|
395
397
|
"ui.eventHeader.user.manager": "Organizzatore",
|
|
396
398
|
"ui.eventHeader.inProgress": "In corso",
|
|
397
399
|
"ui.eventHeader.finished": "Terminato",
|
|
400
|
+
"ui.events.myEvents.title": "I miei eventi",
|
|
401
|
+
"ui.events.allEvents.title": "Tutti gli eventi",
|
|
398
402
|
"ui.events.filterByName": "Cerca Evento",
|
|
399
403
|
"ui.events.filterByDate": "Data Evento",
|
|
400
404
|
"ui.events.select.any": "Qualsiasi data",
|
|
@@ -409,8 +413,9 @@
|
|
|
409
413
|
"ui.events.filterByFollowedInterest": "Persone che seguo",
|
|
410
414
|
"ui.events.filterByCreatedByMe": "Creati da me",
|
|
411
415
|
"ui.events.filterByPastEvents": "Eventi passati",
|
|
416
|
+
"ui.events.filterByOngoingEvents": "Eventi in programma",
|
|
412
417
|
"ui.events.button.seeMore": "Vedi di più",
|
|
413
|
-
"ui.events.noEvents.title.personal": "
|
|
418
|
+
"ui.events.noEvents.title.personal": "Nessun evento corrispondente.",
|
|
414
419
|
"ui.events.noEvents.title": "Tutti gli eventi saranno visibili qui.",
|
|
415
420
|
"ui.events.skeleton.action.add": "Aggiungi Evento",
|
|
416
421
|
"ui.eventForm.title": "Crea Evento",
|
package/lib/types/index.d.ts
CHANGED
|
@@ -283,6 +283,7 @@ declare const locales: {
|
|
|
283
283
|
"ui.contributionActionMenu.vulgar": string;
|
|
284
284
|
"ui.createEvent.title": string;
|
|
285
285
|
"ui.createEvent.description": string;
|
|
286
|
+
"ui.course.accordionLessons.date": string;
|
|
286
287
|
"ui.course.accordionLessons.empty": string;
|
|
287
288
|
"ui.course.completedDialog.btn.label": string;
|
|
288
289
|
"ui.course.completedDialog.description.pt1": string;
|
|
@@ -386,6 +387,7 @@ declare const locales: {
|
|
|
386
387
|
"ui.editCourse.tab.users.title": string;
|
|
387
388
|
"ui.event.see": string;
|
|
388
389
|
"ui.event.inProgress": string;
|
|
390
|
+
"ui.event.finished": string;
|
|
389
391
|
"ui.eventHeader.visibility.private": string;
|
|
390
392
|
"ui.eventHeader.visibility.public": string;
|
|
391
393
|
"ui.eventHeader.location.live": string;
|
|
@@ -396,6 +398,8 @@ declare const locales: {
|
|
|
396
398
|
"ui.eventHeader.user.manager": string;
|
|
397
399
|
"ui.eventHeader.inProgress": string;
|
|
398
400
|
"ui.eventHeader.finished": string;
|
|
401
|
+
"ui.events.myEvents.title": string;
|
|
402
|
+
"ui.events.allEvents.title": string;
|
|
399
403
|
"ui.events.filterByName": string;
|
|
400
404
|
"ui.events.filterByDate": string;
|
|
401
405
|
"ui.events.select.any": string;
|
|
@@ -410,6 +414,7 @@ declare const locales: {
|
|
|
410
414
|
"ui.events.filterByFollowedInterest": string;
|
|
411
415
|
"ui.events.filterByCreatedByMe": string;
|
|
412
416
|
"ui.events.filterByPastEvents": string;
|
|
417
|
+
"ui.events.filterByOngoingEvents": string;
|
|
413
418
|
"ui.events.button.seeMore": string;
|
|
414
419
|
"ui.events.noEvents.title.personal": string;
|
|
415
420
|
"ui.events.noEvents.title": string;
|
|
@@ -1592,6 +1597,7 @@ declare const locales: {
|
|
|
1592
1597
|
"ui.contributionActionMenu.vulgar": string;
|
|
1593
1598
|
"ui.createEvent.title": string;
|
|
1594
1599
|
"ui.createEvent.description": string;
|
|
1600
|
+
"ui.course.accordionLessons.date": string;
|
|
1595
1601
|
"ui.course.accordionLessons.empty": string;
|
|
1596
1602
|
"ui.course.completedDialog.btn.label": string;
|
|
1597
1603
|
"ui.course.completedDialog.description.pt1": string;
|
|
@@ -1695,6 +1701,7 @@ declare const locales: {
|
|
|
1695
1701
|
"ui.editCourse.tab.users.title": string;
|
|
1696
1702
|
"ui.event.see": string;
|
|
1697
1703
|
"ui.event.inProgress": string;
|
|
1704
|
+
"ui.event.finished": string;
|
|
1698
1705
|
"ui.eventHeader.visibility.private": string;
|
|
1699
1706
|
"ui.eventHeader.visibility.public": string;
|
|
1700
1707
|
"ui.eventHeader.location.live": string;
|
|
@@ -1705,6 +1712,8 @@ declare const locales: {
|
|
|
1705
1712
|
"ui.eventHeader.user.manager": string;
|
|
1706
1713
|
"ui.eventHeader.inProgress": string;
|
|
1707
1714
|
"ui.eventHeader.finished": string;
|
|
1715
|
+
"ui.events.myEvents.title": string;
|
|
1716
|
+
"ui.events.allEvents.title": string;
|
|
1708
1717
|
"ui.events.filterByName": string;
|
|
1709
1718
|
"ui.events.filterByDate": string;
|
|
1710
1719
|
"ui.events.select.any": string;
|
|
@@ -1719,6 +1728,7 @@ declare const locales: {
|
|
|
1719
1728
|
"ui.events.filterByFollowedInterest": string;
|
|
1720
1729
|
"ui.events.filterByCreatedByMe": string;
|
|
1721
1730
|
"ui.events.filterByPastEvents": string;
|
|
1731
|
+
"ui.events.filterByOngoingEvents": string;
|
|
1722
1732
|
"ui.events.button.seeMore": string;
|
|
1723
1733
|
"ui.events.noEvents.title.personal": string;
|
|
1724
1734
|
"ui.events.noEvents.title": string;
|
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
"ui.contributionActionMenu.vulgar": "Vulgar",
|
|
283
283
|
"ui.createEvent.title": "Create your Event now!",
|
|
284
284
|
"ui.createEvent.description": "Engage your Community with an Event: whether it’s a link for a virtual Event or an address to meet in person. Decide if it will be open to everyone or accessible by invitation only. Discover how easy it is to engage your Community!",
|
|
285
|
+
"ui.course.accordionLessons.date": "Available from {date} hour {hour}",
|
|
285
286
|
"ui.course.accordionLessons.empty": "No content present",
|
|
286
287
|
"ui.course.completedDialog.btn.label": "Back to Courses",
|
|
287
288
|
"ui.course.completedDialog.description.pt1": "Congratulations!",
|
|
@@ -385,6 +386,7 @@
|
|
|
385
386
|
"ui.editCourse.tab.users.title": "{usersNumber, plural, =0 {# Course Users} one {# Course User} other {# Course Users}}",
|
|
386
387
|
"ui.event.see": "See",
|
|
387
388
|
"ui.event.inProgress": "In progress",
|
|
389
|
+
"ui.event.finished": "Finished",
|
|
388
390
|
"ui.eventHeader.visibility.private": "Private Event",
|
|
389
391
|
"ui.eventHeader.visibility.public": "Public Event",
|
|
390
392
|
"ui.eventHeader.location.live": "Live",
|
|
@@ -395,6 +397,8 @@
|
|
|
395
397
|
"ui.eventHeader.user.manager": "Manager",
|
|
396
398
|
"ui.eventHeader.inProgress": "In progress",
|
|
397
399
|
"ui.eventHeader.finished": "Finished",
|
|
400
|
+
"ui.events.myEvents.title": "My Events",
|
|
401
|
+
"ui.events.allEvents.title": "All events",
|
|
398
402
|
"ui.events.filterByName": "Search Event",
|
|
399
403
|
"ui.events.filterByDate": "Event Date",
|
|
400
404
|
"ui.events.select.any": "Any Date",
|
|
@@ -409,8 +413,9 @@
|
|
|
409
413
|
"ui.events.filterByFollowedInterest": "People I Follow",
|
|
410
414
|
"ui.events.filterByCreatedByMe": "Created by me",
|
|
411
415
|
"ui.events.filterByPastEvents": "Past Events",
|
|
416
|
+
"ui.events.filterByOngoingEvents": "Scheduled events",
|
|
412
417
|
"ui.events.button.seeMore": "See More",
|
|
413
|
-
"ui.events.noEvents.title.personal": "
|
|
418
|
+
"ui.events.noEvents.title.personal": "No matching events.",
|
|
414
419
|
"ui.events.noEvents.title": "All events will be visible here.",
|
|
415
420
|
"ui.events.skeleton.action.add": "Add Event",
|
|
416
421
|
"ui.eventForm.title": "Create Event",
|
|
@@ -282,6 +282,7 @@
|
|
|
282
282
|
"ui.contributionActionMenu.vulgar": "Volgare",
|
|
283
283
|
"ui.createEvent.title": "Crea il tuo Evento adesso!",
|
|
284
284
|
"ui.createEvent.description": "Coinvolgi la tua Community con un Evento: sia che si tratti di un link per un Evento virtuale o di un indirizzo per incontrarsi di persona. Decidi se renderlo aperto a tutti o accessibile solo su invito. Scopri quanto è semplice coinvolgere la tua Community!",
|
|
285
|
+
"ui.course.accordionLessons.date": "Disponibile dal {date} ore {hour}",
|
|
285
286
|
"ui.course.accordionLessons.empty": "Nessun contenuto presente",
|
|
286
287
|
"ui.course.completedDialog.btn.label": "Torna ai Corsi",
|
|
287
288
|
"ui.course.completedDialog.description.pt1": "Congratulazioni!",
|
|
@@ -385,6 +386,7 @@
|
|
|
385
386
|
"ui.editCourse.tab.users.title": "{usersNumber, plural, =0 {# Utenti} one {# Utente} other {# Utenti}} del Corso",
|
|
386
387
|
"ui.event.see": "Vedi",
|
|
387
388
|
"ui.event.inProgress": "In corso",
|
|
389
|
+
"ui.event.finished": "Terminato",
|
|
388
390
|
"ui.eventHeader.visibility.private": "Evento Privato",
|
|
389
391
|
"ui.eventHeader.visibility.public": "Evento Pubblico",
|
|
390
392
|
"ui.eventHeader.location.live": "Di persona",
|
|
@@ -395,6 +397,8 @@
|
|
|
395
397
|
"ui.eventHeader.user.manager": "Organizzatore",
|
|
396
398
|
"ui.eventHeader.inProgress": "In corso",
|
|
397
399
|
"ui.eventHeader.finished": "Terminato",
|
|
400
|
+
"ui.events.myEvents.title": "I miei eventi",
|
|
401
|
+
"ui.events.allEvents.title": "Tutti gli eventi",
|
|
398
402
|
"ui.events.filterByName": "Cerca Evento",
|
|
399
403
|
"ui.events.filterByDate": "Data Evento",
|
|
400
404
|
"ui.events.select.any": "Qualsiasi data",
|
|
@@ -409,8 +413,9 @@
|
|
|
409
413
|
"ui.events.filterByFollowedInterest": "Persone che seguo",
|
|
410
414
|
"ui.events.filterByCreatedByMe": "Creati da me",
|
|
411
415
|
"ui.events.filterByPastEvents": "Eventi passati",
|
|
416
|
+
"ui.events.filterByOngoingEvents": "Eventi in programma",
|
|
412
417
|
"ui.events.button.seeMore": "Vedi di più",
|
|
413
|
-
"ui.events.noEvents.title.personal": "
|
|
418
|
+
"ui.events.noEvents.title.personal": "Nessun evento corrispondente.",
|
|
414
419
|
"ui.events.noEvents.title": "Tutti gli eventi saranno visibili qui.",
|
|
415
420
|
"ui.events.skeleton.action.add": "Aggiungi Evento",
|
|
416
421
|
"ui.eventForm.title": "Crea Evento",
|