@hed-hog/lms 0.0.266 → 0.0.268
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/hedhog/data/menu.yaml +32 -0
- package/hedhog/frontend/app/classes/page.tsx.ejs +1267 -0
- package/hedhog/frontend/app/reports/page.tsx.ejs +910 -0
- package/hedhog/frontend/messages/en.json +310 -0
- package/hedhog/frontend/messages/pt.json +310 -0
- package/hedhog/table/classes.yaml +3 -0
- package/hedhog/table/reports.yaml +3 -0
- package/package.json +4 -4
|
@@ -474,5 +474,315 @@
|
|
|
474
474
|
"openingFormacao": "Opening \"{{nome}}\"...",
|
|
475
475
|
"openingDetails": "Opening training..."
|
|
476
476
|
}
|
|
477
|
+
},
|
|
478
|
+
"ReportsPage": {
|
|
479
|
+
"title": "Reports",
|
|
480
|
+
"description": "Detailed platform performance analysis",
|
|
481
|
+
"breadcrumbs": {
|
|
482
|
+
"home": "Home",
|
|
483
|
+
"reports": "Reports"
|
|
484
|
+
},
|
|
485
|
+
"actions": {
|
|
486
|
+
"export": "Export"
|
|
487
|
+
},
|
|
488
|
+
"toasts": {
|
|
489
|
+
"exported": "Report exported!"
|
|
490
|
+
},
|
|
491
|
+
"period": {
|
|
492
|
+
"7d": "7 days",
|
|
493
|
+
"30d": "30 days",
|
|
494
|
+
"6m": "6 months",
|
|
495
|
+
"12m": "12 months"
|
|
496
|
+
},
|
|
497
|
+
"kpis": {
|
|
498
|
+
"totalRevenue": {
|
|
499
|
+
"title": "Total Revenue"
|
|
500
|
+
},
|
|
501
|
+
"enrollments": {
|
|
502
|
+
"title": "Enrollments"
|
|
503
|
+
},
|
|
504
|
+
"completionRate": {
|
|
505
|
+
"title": "Completion Rate"
|
|
506
|
+
},
|
|
507
|
+
"churnRate": {
|
|
508
|
+
"title": "Churn Rate"
|
|
509
|
+
},
|
|
510
|
+
"vsPreviousPeriod": "vs. previous period"
|
|
511
|
+
},
|
|
512
|
+
"tabs": {
|
|
513
|
+
"overview": "Overview",
|
|
514
|
+
"courses": "Courses",
|
|
515
|
+
"students": "Students"
|
|
516
|
+
},
|
|
517
|
+
"months": {
|
|
518
|
+
"jan": "Jan",
|
|
519
|
+
"feb": "Feb",
|
|
520
|
+
"mar": "Mar",
|
|
521
|
+
"apr": "Apr",
|
|
522
|
+
"may": "May",
|
|
523
|
+
"jun": "Jun",
|
|
524
|
+
"jul": "Jul",
|
|
525
|
+
"aug": "Aug",
|
|
526
|
+
"sep": "Sep",
|
|
527
|
+
"oct": "Oct",
|
|
528
|
+
"nov": "Nov",
|
|
529
|
+
"dec": "Dec"
|
|
530
|
+
},
|
|
531
|
+
"weekdays": {
|
|
532
|
+
"mon": "Mon",
|
|
533
|
+
"tue": "Tue",
|
|
534
|
+
"wed": "Wed",
|
|
535
|
+
"thu": "Thu",
|
|
536
|
+
"fri": "Fri",
|
|
537
|
+
"sat": "Sat",
|
|
538
|
+
"sun": "Sun"
|
|
539
|
+
},
|
|
540
|
+
"areas": {
|
|
541
|
+
"technology": "Technology",
|
|
542
|
+
"design": "Design",
|
|
543
|
+
"management": "Management",
|
|
544
|
+
"marketing": "Marketing"
|
|
545
|
+
},
|
|
546
|
+
"statusDistribution": {
|
|
547
|
+
"active": "Active",
|
|
548
|
+
"completed": "Completed",
|
|
549
|
+
"inactive": "Inactive"
|
|
550
|
+
},
|
|
551
|
+
"radar": {
|
|
552
|
+
"engagement": "Engagement",
|
|
553
|
+
"completion": "Completion",
|
|
554
|
+
"satisfaction": "Satisfaction",
|
|
555
|
+
"recommendation": "Recommendation",
|
|
556
|
+
"retention": "Retention",
|
|
557
|
+
"performance": "Performance"
|
|
558
|
+
},
|
|
559
|
+
"charts": {
|
|
560
|
+
"monthlyEnrollments": {
|
|
561
|
+
"title": "Monthly Enrollments",
|
|
562
|
+
"description": "Enrollment and cancellation trends",
|
|
563
|
+
"enrollments": "Enrollments",
|
|
564
|
+
"cancellations": "Cancellations"
|
|
565
|
+
},
|
|
566
|
+
"monthlyRevenue": {
|
|
567
|
+
"title": "Monthly Revenue",
|
|
568
|
+
"description": "Revenue in BRL per month",
|
|
569
|
+
"revenue": "Revenue"
|
|
570
|
+
},
|
|
571
|
+
"studentStatus": {
|
|
572
|
+
"title": "Student Status",
|
|
573
|
+
"description": "Distribution by status"
|
|
574
|
+
},
|
|
575
|
+
"qualityIndicators": {
|
|
576
|
+
"title": "Quality Indicators",
|
|
577
|
+
"description": "Key platform metrics",
|
|
578
|
+
"score": "Score"
|
|
579
|
+
},
|
|
580
|
+
"courseRanking": {
|
|
581
|
+
"title": "Course Ranking",
|
|
582
|
+
"description": "By number of enrolled students"
|
|
583
|
+
},
|
|
584
|
+
"performanceByArea": {
|
|
585
|
+
"title": "Performance by Area",
|
|
586
|
+
"description": "Average score and completion rate",
|
|
587
|
+
"completion": "Completion %"
|
|
588
|
+
},
|
|
589
|
+
"weeklyActivity": {
|
|
590
|
+
"title": "Weekly Activity",
|
|
591
|
+
"description": "Accesses, classes watched, and exercises",
|
|
592
|
+
"accesses": "Accesses",
|
|
593
|
+
"classes": "Classes",
|
|
594
|
+
"exercises": "Exercises"
|
|
595
|
+
},
|
|
596
|
+
"performanceEvolution": {
|
|
597
|
+
"title": "Performance Evolution",
|
|
598
|
+
"description": "Average score in the last 12 months",
|
|
599
|
+
"averageScore": "Average Score"
|
|
600
|
+
},
|
|
601
|
+
"metricsByArea": {
|
|
602
|
+
"title": "Knowledge Area Metrics",
|
|
603
|
+
"description": "Detailed comparison across areas"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"table": {
|
|
607
|
+
"course": "Course",
|
|
608
|
+
"students": "Students",
|
|
609
|
+
"completion": "Completion",
|
|
610
|
+
"score": "Score",
|
|
611
|
+
"area": "Area",
|
|
612
|
+
"averageScore": "Average Score",
|
|
613
|
+
"completionRate": "Completion Rate",
|
|
614
|
+
"trend": "Trend",
|
|
615
|
+
"growing": "Growing"
|
|
616
|
+
},
|
|
617
|
+
"courseRanking": {
|
|
618
|
+
"reactAdvanced": "Advanced React",
|
|
619
|
+
"excelBusiness": "Excel for Business",
|
|
620
|
+
"agileProjectManagement": "Agile Project Management",
|
|
621
|
+
"pythonDataScience": "Python for Data Science",
|
|
622
|
+
"uxDesignFundamentals": "UX Design Fundamentals",
|
|
623
|
+
"typescriptPractice": "TypeScript in Practice",
|
|
624
|
+
"nodeComplete": "Complete Node.js",
|
|
625
|
+
"designSystem": "Design System"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"ClassesPage": {
|
|
629
|
+
"title": "Classes",
|
|
630
|
+
"description": "Manage classes, students, and schedules",
|
|
631
|
+
"breadcrumbs": {
|
|
632
|
+
"home": "Home",
|
|
633
|
+
"classes": "Classes"
|
|
634
|
+
},
|
|
635
|
+
"actions": {
|
|
636
|
+
"createClass": "New Class"
|
|
637
|
+
},
|
|
638
|
+
"kpis": {
|
|
639
|
+
"totalClasses": {
|
|
640
|
+
"label": "Total Classes",
|
|
641
|
+
"sub": "registered"
|
|
642
|
+
},
|
|
643
|
+
"inProgress": {
|
|
644
|
+
"label": "In Progress",
|
|
645
|
+
"sub": "active classes now"
|
|
646
|
+
},
|
|
647
|
+
"openVacancies": {
|
|
648
|
+
"label": "Open Vacancies",
|
|
649
|
+
"sub": "available for enrollment"
|
|
650
|
+
},
|
|
651
|
+
"occupancyRate": {
|
|
652
|
+
"label": "Occupancy Rate",
|
|
653
|
+
"sub": "overall average"
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
"filters": {
|
|
657
|
+
"searchPlaceholder": "Search by code, course, or professor...",
|
|
658
|
+
"status": "Status",
|
|
659
|
+
"allStatuses": "All statuses",
|
|
660
|
+
"type": "Type",
|
|
661
|
+
"allTypes": "All types",
|
|
662
|
+
"course": "Course",
|
|
663
|
+
"allCourses": "All courses",
|
|
664
|
+
"clear": "Clear",
|
|
665
|
+
"search": "Search"
|
|
666
|
+
},
|
|
667
|
+
"status": {
|
|
668
|
+
"open": "Open",
|
|
669
|
+
"inProgress": "In Progress",
|
|
670
|
+
"completed": "Completed",
|
|
671
|
+
"cancelled": "Cancelled",
|
|
672
|
+
"aberta": "Open",
|
|
673
|
+
"em_andamento": "In Progress",
|
|
674
|
+
"concluida": "Completed",
|
|
675
|
+
"cancelada": "Cancelled"
|
|
676
|
+
},
|
|
677
|
+
"type": {
|
|
678
|
+
"inPerson": "In-Person",
|
|
679
|
+
"online": "Online",
|
|
680
|
+
"hybrid": "Hybrid",
|
|
681
|
+
"presencial": "In-Person",
|
|
682
|
+
"hibrida": "Hybrid"
|
|
683
|
+
},
|
|
684
|
+
"empty": {
|
|
685
|
+
"title": "No classes found",
|
|
686
|
+
"description": "Adjust the filters or create a new class.",
|
|
687
|
+
"action": "New Class"
|
|
688
|
+
},
|
|
689
|
+
"cards": {
|
|
690
|
+
"tooltip": "Double-click to open",
|
|
691
|
+
"actions": {
|
|
692
|
+
"label": "Actions",
|
|
693
|
+
"viewDetails": "View details",
|
|
694
|
+
"edit": "Edit",
|
|
695
|
+
"delete": "Delete"
|
|
696
|
+
},
|
|
697
|
+
"occupancy": "Occupancy",
|
|
698
|
+
"occupied": "occupied",
|
|
699
|
+
"freeVacancies": "free spots",
|
|
700
|
+
"period": "Period",
|
|
701
|
+
"until": "until",
|
|
702
|
+
"schedule": "Schedule",
|
|
703
|
+
"enrolled": "enrolled"
|
|
704
|
+
},
|
|
705
|
+
"pagination": {
|
|
706
|
+
"class": "class",
|
|
707
|
+
"classes": "classes",
|
|
708
|
+
"found": "found",
|
|
709
|
+
"foundPlural": "found",
|
|
710
|
+
"page": "Page",
|
|
711
|
+
"of": "of",
|
|
712
|
+
"firstPage": "First",
|
|
713
|
+
"previousPage": "Previous",
|
|
714
|
+
"nextPage": "Next",
|
|
715
|
+
"lastPage": "Last",
|
|
716
|
+
"itemsPerPage": "Items per page"
|
|
717
|
+
},
|
|
718
|
+
"form": {
|
|
719
|
+
"title": {
|
|
720
|
+
"create": "New Class",
|
|
721
|
+
"edit": "Edit Class"
|
|
722
|
+
},
|
|
723
|
+
"description": "Fill in the class details below.",
|
|
724
|
+
"fields": {
|
|
725
|
+
"code": {
|
|
726
|
+
"label": "Code",
|
|
727
|
+
"placeholder": "C-2024-001"
|
|
728
|
+
},
|
|
729
|
+
"course": {
|
|
730
|
+
"label": "Course",
|
|
731
|
+
"placeholder": "Select course"
|
|
732
|
+
},
|
|
733
|
+
"type": {
|
|
734
|
+
"label": "Type"
|
|
735
|
+
},
|
|
736
|
+
"status": {
|
|
737
|
+
"label": "Status"
|
|
738
|
+
},
|
|
739
|
+
"professor": {
|
|
740
|
+
"label": "Professor",
|
|
741
|
+
"placeholder": "Professor's name"
|
|
742
|
+
},
|
|
743
|
+
"vacancies": {
|
|
744
|
+
"label": "Vacancies"
|
|
745
|
+
},
|
|
746
|
+
"startDate": {
|
|
747
|
+
"label": "Start Date"
|
|
748
|
+
},
|
|
749
|
+
"endDate": {
|
|
750
|
+
"label": "End Date"
|
|
751
|
+
},
|
|
752
|
+
"schedule": {
|
|
753
|
+
"label": "Schedule",
|
|
754
|
+
"placeholder": "7:00 PM - 10:00 PM"
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"validation": {
|
|
758
|
+
"codigoMinLength": "Minimum 3 characters",
|
|
759
|
+
"cursoRequired": "Select a course",
|
|
760
|
+
"tipoRequired": "Select a type",
|
|
761
|
+
"professorMinLength": "Name required",
|
|
762
|
+
"vagasMin": "Minimum 1 vacancy",
|
|
763
|
+
"dataInicioRequired": "Date required",
|
|
764
|
+
"dataFimRequired": "Date required",
|
|
765
|
+
"horarioRequired": "Schedule required",
|
|
766
|
+
"statusRequired": "Select a status"
|
|
767
|
+
},
|
|
768
|
+
"actions": {
|
|
769
|
+
"save": "Save",
|
|
770
|
+
"create": "Create Class"
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
"deleteDialog": {
|
|
774
|
+
"title": "Delete Class",
|
|
775
|
+
"description": "Are you sure you want to delete the class",
|
|
776
|
+
"warning": "This class has {{count}} enrolled student(s). This action cannot be undone.",
|
|
777
|
+
"actions": {
|
|
778
|
+
"cancel": "Cancel",
|
|
779
|
+
"delete": "Delete"
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"toasts": {
|
|
783
|
+
"turmaUpdated": "Class updated successfully!",
|
|
784
|
+
"turmaCreated": "Class created! Redirecting...",
|
|
785
|
+
"turmaRemoved": "Class removed!"
|
|
786
|
+
}
|
|
477
787
|
}
|
|
478
788
|
}
|
|
@@ -474,5 +474,315 @@
|
|
|
474
474
|
"openingFormacao": "Abrindo \"{{nome}}\"...",
|
|
475
475
|
"openingDetails": "Abrindo formacao..."
|
|
476
476
|
}
|
|
477
|
+
},
|
|
478
|
+
"ReportsPage": {
|
|
479
|
+
"title": "Relatorios",
|
|
480
|
+
"description": "Analise detalhada do desempenho da plataforma",
|
|
481
|
+
"breadcrumbs": {
|
|
482
|
+
"home": "Home",
|
|
483
|
+
"reports": "Relatorios"
|
|
484
|
+
},
|
|
485
|
+
"actions": {
|
|
486
|
+
"export": "Exportar"
|
|
487
|
+
},
|
|
488
|
+
"toasts": {
|
|
489
|
+
"exported": "Relatorio exportado!"
|
|
490
|
+
},
|
|
491
|
+
"period": {
|
|
492
|
+
"7d": "7 dias",
|
|
493
|
+
"30d": "30 dias",
|
|
494
|
+
"6m": "6 meses",
|
|
495
|
+
"12m": "12 meses"
|
|
496
|
+
},
|
|
497
|
+
"kpis": {
|
|
498
|
+
"totalRevenue": {
|
|
499
|
+
"title": "Receita Total"
|
|
500
|
+
},
|
|
501
|
+
"enrollments": {
|
|
502
|
+
"title": "Matriculas"
|
|
503
|
+
},
|
|
504
|
+
"completionRate": {
|
|
505
|
+
"title": "Taxa de Conclusao"
|
|
506
|
+
},
|
|
507
|
+
"churnRate": {
|
|
508
|
+
"title": "Taxa de Cancelamento"
|
|
509
|
+
},
|
|
510
|
+
"vsPreviousPeriod": "vs. periodo anterior"
|
|
511
|
+
},
|
|
512
|
+
"tabs": {
|
|
513
|
+
"overview": "Visao Geral",
|
|
514
|
+
"courses": "Cursos",
|
|
515
|
+
"students": "Alunos"
|
|
516
|
+
},
|
|
517
|
+
"months": {
|
|
518
|
+
"jan": "Jan",
|
|
519
|
+
"feb": "Fev",
|
|
520
|
+
"mar": "Mar",
|
|
521
|
+
"apr": "Abr",
|
|
522
|
+
"may": "Mai",
|
|
523
|
+
"jun": "Jun",
|
|
524
|
+
"jul": "Jul",
|
|
525
|
+
"aug": "Ago",
|
|
526
|
+
"sep": "Set",
|
|
527
|
+
"oct": "Out",
|
|
528
|
+
"nov": "Nov",
|
|
529
|
+
"dec": "Dez"
|
|
530
|
+
},
|
|
531
|
+
"weekdays": {
|
|
532
|
+
"mon": "Seg",
|
|
533
|
+
"tue": "Ter",
|
|
534
|
+
"wed": "Qua",
|
|
535
|
+
"thu": "Qui",
|
|
536
|
+
"fri": "Sex",
|
|
537
|
+
"sat": "Sab",
|
|
538
|
+
"sun": "Dom"
|
|
539
|
+
},
|
|
540
|
+
"areas": {
|
|
541
|
+
"technology": "Tecnologia",
|
|
542
|
+
"design": "Design",
|
|
543
|
+
"management": "Gestao",
|
|
544
|
+
"marketing": "Marketing"
|
|
545
|
+
},
|
|
546
|
+
"statusDistribution": {
|
|
547
|
+
"active": "Ativos",
|
|
548
|
+
"completed": "Concluidos",
|
|
549
|
+
"inactive": "Inativos"
|
|
550
|
+
},
|
|
551
|
+
"radar": {
|
|
552
|
+
"engagement": "Engajamento",
|
|
553
|
+
"completion": "Conclusao",
|
|
554
|
+
"satisfaction": "Satisfacao",
|
|
555
|
+
"recommendation": "Recomendacao",
|
|
556
|
+
"retention": "Retencao",
|
|
557
|
+
"performance": "Desempenho"
|
|
558
|
+
},
|
|
559
|
+
"charts": {
|
|
560
|
+
"monthlyEnrollments": {
|
|
561
|
+
"title": "Matriculas Mensais",
|
|
562
|
+
"description": "Evolucao de matriculas e cancelamentos",
|
|
563
|
+
"enrollments": "Matriculas",
|
|
564
|
+
"cancellations": "Cancelamentos"
|
|
565
|
+
},
|
|
566
|
+
"monthlyRevenue": {
|
|
567
|
+
"title": "Receita Mensal",
|
|
568
|
+
"description": "Faturamento em R$ por mes",
|
|
569
|
+
"revenue": "Receita"
|
|
570
|
+
},
|
|
571
|
+
"studentStatus": {
|
|
572
|
+
"title": "Status dos Alunos",
|
|
573
|
+
"description": "Distribuicao por situacao"
|
|
574
|
+
},
|
|
575
|
+
"qualityIndicators": {
|
|
576
|
+
"title": "Indicadores de Qualidade",
|
|
577
|
+
"description": "Metricas-chave da plataforma",
|
|
578
|
+
"score": "Score"
|
|
579
|
+
},
|
|
580
|
+
"courseRanking": {
|
|
581
|
+
"title": "Ranking de Cursos",
|
|
582
|
+
"description": "Por numero de alunos matriculados"
|
|
583
|
+
},
|
|
584
|
+
"performanceByArea": {
|
|
585
|
+
"title": "Desempenho por Area",
|
|
586
|
+
"description": "Nota media e taxa de conclusao",
|
|
587
|
+
"completion": "Conclusao %"
|
|
588
|
+
},
|
|
589
|
+
"weeklyActivity": {
|
|
590
|
+
"title": "Atividade Semanal",
|
|
591
|
+
"description": "Acessos, aulas assistidas e exercicios",
|
|
592
|
+
"accesses": "Acessos",
|
|
593
|
+
"classes": "Aulas",
|
|
594
|
+
"exercises": "Exercicios"
|
|
595
|
+
},
|
|
596
|
+
"performanceEvolution": {
|
|
597
|
+
"title": "Evolucao de Desempenho",
|
|
598
|
+
"description": "Media de notas nos ultimos 12 meses",
|
|
599
|
+
"averageScore": "Nota Media"
|
|
600
|
+
},
|
|
601
|
+
"metricsByArea": {
|
|
602
|
+
"title": "Metricas por Area de Conhecimento",
|
|
603
|
+
"description": "Comparativo detalhado entre as areas"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
"table": {
|
|
607
|
+
"course": "Curso",
|
|
608
|
+
"students": "Alunos",
|
|
609
|
+
"completion": "Conclusao",
|
|
610
|
+
"score": "Nota",
|
|
611
|
+
"area": "Area",
|
|
612
|
+
"averageScore": "Media de Nota",
|
|
613
|
+
"completionRate": "Taxa de Conclusao",
|
|
614
|
+
"trend": "Tendencia",
|
|
615
|
+
"growing": "Crescendo"
|
|
616
|
+
},
|
|
617
|
+
"courseRanking": {
|
|
618
|
+
"reactAdvanced": "React Avancado",
|
|
619
|
+
"excelBusiness": "Excel para Negocios",
|
|
620
|
+
"agileProjectManagement": "Gestao de Projetos Ageis",
|
|
621
|
+
"pythonDataScience": "Python para Data Science",
|
|
622
|
+
"uxDesignFundamentals": "UX Design Fundamentals",
|
|
623
|
+
"typescriptPractice": "TypeScript na Pratica",
|
|
624
|
+
"nodeComplete": "Node.js Completo",
|
|
625
|
+
"designSystem": "Design System"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"ClassesPage": {
|
|
629
|
+
"title": "Turmas",
|
|
630
|
+
"description": "Gerencie turmas, alunos e calendarios",
|
|
631
|
+
"breadcrumbs": {
|
|
632
|
+
"home": "Home",
|
|
633
|
+
"classes": "Turmas"
|
|
634
|
+
},
|
|
635
|
+
"actions": {
|
|
636
|
+
"createClass": "Nova Turma"
|
|
637
|
+
},
|
|
638
|
+
"kpis": {
|
|
639
|
+
"totalClasses": {
|
|
640
|
+
"label": "Total de Turmas",
|
|
641
|
+
"sub": "cadastradas"
|
|
642
|
+
},
|
|
643
|
+
"inProgress": {
|
|
644
|
+
"label": "Em Andamento",
|
|
645
|
+
"sub": "turmas ativas agora"
|
|
646
|
+
},
|
|
647
|
+
"openVacancies": {
|
|
648
|
+
"label": "Vagas Abertas",
|
|
649
|
+
"sub": "disponiveis para matricula"
|
|
650
|
+
},
|
|
651
|
+
"occupancyRate": {
|
|
652
|
+
"label": "Taxa de Ocupacao",
|
|
653
|
+
"sub": "media geral"
|
|
654
|
+
}
|
|
655
|
+
},
|
|
656
|
+
"filters": {
|
|
657
|
+
"searchPlaceholder": "Buscar por codigo, curso ou professor...",
|
|
658
|
+
"status": "Status",
|
|
659
|
+
"allStatuses": "Todos status",
|
|
660
|
+
"type": "Tipo",
|
|
661
|
+
"allTypes": "Todos tipos",
|
|
662
|
+
"course": "Curso",
|
|
663
|
+
"allCourses": "Todos cursos",
|
|
664
|
+
"clear": "Limpar",
|
|
665
|
+
"search": "Buscar"
|
|
666
|
+
},
|
|
667
|
+
"status": {
|
|
668
|
+
"open": "Aberta",
|
|
669
|
+
"inProgress": "Em Andamento",
|
|
670
|
+
"completed": "Concluida",
|
|
671
|
+
"cancelled": "Cancelada",
|
|
672
|
+
"aberta": "Aberta",
|
|
673
|
+
"em_andamento": "Em Andamento",
|
|
674
|
+
"concluida": "Concluida",
|
|
675
|
+
"cancelada": "Cancelada"
|
|
676
|
+
},
|
|
677
|
+
"type": {
|
|
678
|
+
"inPerson": "Presencial",
|
|
679
|
+
"online": "Online",
|
|
680
|
+
"hybrid": "Hibrida",
|
|
681
|
+
"presencial": "Presencial",
|
|
682
|
+
"hibrida": "Hibrida"
|
|
683
|
+
},
|
|
684
|
+
"empty": {
|
|
685
|
+
"title": "Nenhuma turma encontrada",
|
|
686
|
+
"description": "Ajuste os filtros ou crie uma nova turma.",
|
|
687
|
+
"action": "Nova Turma"
|
|
688
|
+
},
|
|
689
|
+
"cards": {
|
|
690
|
+
"tooltip": "Clique duplo para abrir",
|
|
691
|
+
"actions": {
|
|
692
|
+
"label": "Acoes",
|
|
693
|
+
"viewDetails": "Ver detalhes",
|
|
694
|
+
"edit": "Editar",
|
|
695
|
+
"delete": "Excluir"
|
|
696
|
+
},
|
|
697
|
+
"occupancy": "Ocupacao",
|
|
698
|
+
"occupied": "ocupado",
|
|
699
|
+
"freeVacancies": "vagas livres",
|
|
700
|
+
"period": "Periodo",
|
|
701
|
+
"until": "ate",
|
|
702
|
+
"schedule": "Horario",
|
|
703
|
+
"enrolled": "matriculados"
|
|
704
|
+
},
|
|
705
|
+
"pagination": {
|
|
706
|
+
"class": "turma",
|
|
707
|
+
"classes": "turmas",
|
|
708
|
+
"found": "encontrada",
|
|
709
|
+
"foundPlural": "encontradas",
|
|
710
|
+
"page": "Pagina",
|
|
711
|
+
"of": "de",
|
|
712
|
+
"firstPage": "Primeira",
|
|
713
|
+
"previousPage": "Anterior",
|
|
714
|
+
"nextPage": "Proxima",
|
|
715
|
+
"lastPage": "Ultima",
|
|
716
|
+
"itemsPerPage": "Itens por pagina"
|
|
717
|
+
},
|
|
718
|
+
"form": {
|
|
719
|
+
"title": {
|
|
720
|
+
"create": "Nova Turma",
|
|
721
|
+
"edit": "Editar Turma"
|
|
722
|
+
},
|
|
723
|
+
"description": "Preencha os dados da turma abaixo.",
|
|
724
|
+
"fields": {
|
|
725
|
+
"code": {
|
|
726
|
+
"label": "Codigo",
|
|
727
|
+
"placeholder": "T-2024-001"
|
|
728
|
+
},
|
|
729
|
+
"course": {
|
|
730
|
+
"label": "Curso",
|
|
731
|
+
"placeholder": "Selecione o curso"
|
|
732
|
+
},
|
|
733
|
+
"type": {
|
|
734
|
+
"label": "Tipo"
|
|
735
|
+
},
|
|
736
|
+
"status": {
|
|
737
|
+
"label": "Status"
|
|
738
|
+
},
|
|
739
|
+
"professor": {
|
|
740
|
+
"label": "Professor",
|
|
741
|
+
"placeholder": "Nome do professor"
|
|
742
|
+
},
|
|
743
|
+
"vacancies": {
|
|
744
|
+
"label": "Vagas"
|
|
745
|
+
},
|
|
746
|
+
"startDate": {
|
|
747
|
+
"label": "Data Inicio"
|
|
748
|
+
},
|
|
749
|
+
"endDate": {
|
|
750
|
+
"label": "Data Fim"
|
|
751
|
+
},
|
|
752
|
+
"schedule": {
|
|
753
|
+
"label": "Horario",
|
|
754
|
+
"placeholder": "19:00 - 22:00"
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"validation": {
|
|
758
|
+
"codigoMinLength": "Minimo 3 caracteres",
|
|
759
|
+
"cursoRequired": "Selecione um curso",
|
|
760
|
+
"tipoRequired": "Selecione um tipo",
|
|
761
|
+
"professorMinLength": "Nome obrigatorio",
|
|
762
|
+
"vagasMin": "Minimo 1 vaga",
|
|
763
|
+
"dataInicioRequired": "Data obrigatoria",
|
|
764
|
+
"dataFimRequired": "Data obrigatoria",
|
|
765
|
+
"horarioRequired": "Horario obrigatorio",
|
|
766
|
+
"statusRequired": "Selecione um status"
|
|
767
|
+
},
|
|
768
|
+
"actions": {
|
|
769
|
+
"save": "Salvar",
|
|
770
|
+
"create": "Criar Turma"
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
"deleteDialog": {
|
|
774
|
+
"title": "Excluir Turma",
|
|
775
|
+
"description": "Tem certeza que deseja excluir a turma",
|
|
776
|
+
"warning": "Esta turma possui {{count}} aluno(s) matriculado(s). Esta acao nao pode ser desfeita.",
|
|
777
|
+
"actions": {
|
|
778
|
+
"cancel": "Cancelar",
|
|
779
|
+
"delete": "Excluir"
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"toasts": {
|
|
783
|
+
"turmaUpdated": "Turma atualizada com sucesso!",
|
|
784
|
+
"turmaCreated": "Turma criada! Redirecionando...",
|
|
785
|
+
"turmaRemoved": "Turma removida!"
|
|
786
|
+
}
|
|
477
787
|
}
|
|
478
788
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hed-hog/lms",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.268",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"@nestjs/jwt": "^11",
|
|
11
11
|
"@nestjs/mapped-types": "*",
|
|
12
12
|
"@hed-hog/api-locale": "0.0.11",
|
|
13
|
+
"@hed-hog/core": "0.0.262",
|
|
14
|
+
"@hed-hog/api": "0.0.3",
|
|
13
15
|
"@hed-hog/api-pagination": "0.0.5",
|
|
14
|
-
"@hed-hog/api-prisma": "0.0.4",
|
|
15
|
-
"@hed-hog/core": "0.0.261",
|
|
16
16
|
"@hed-hog/api-types": "0.0.1",
|
|
17
|
-
"@hed-hog/api": "0.0.
|
|
17
|
+
"@hed-hog/api-prisma": "0.0.4"
|
|
18
18
|
},
|
|
19
19
|
"exports": {
|
|
20
20
|
".": {
|