@hed-hog/lms 0.0.261 → 0.0.265
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 +16 -0
- package/hedhog/frontend/app/courses/page.tsx.ejs +220 -176
- package/hedhog/frontend/app/exams/page.tsx.ejs +1130 -0
- package/hedhog/frontend/messages/en.json +382 -1
- package/hedhog/frontend/messages/pt.json +382 -1
- package/hedhog/table/exams.yaml +3 -0
- package/package.json +1 -1
|
@@ -1,10 +1,391 @@
|
|
|
1
1
|
{
|
|
2
2
|
"DashboardPage": {
|
|
3
|
-
"title": "
|
|
3
|
+
"title": "Painel de Controle",
|
|
4
4
|
"description": "Gerencie suas integrações e configurações do LMS.",
|
|
5
5
|
"breadcrumbs": {
|
|
6
6
|
"home": "Início",
|
|
7
7
|
"lms": "LMS"
|
|
8
8
|
}
|
|
9
|
+
},
|
|
10
|
+
"CoursesPage": {
|
|
11
|
+
"title": "Cursos",
|
|
12
|
+
"description": "Gerencie seus cursos, categorias e niveis de forma facil e rapida.",
|
|
13
|
+
"breadcrumbs": {
|
|
14
|
+
"home": "Home",
|
|
15
|
+
"courses": "Cursos"
|
|
16
|
+
},
|
|
17
|
+
"actions": {
|
|
18
|
+
"createCourse": "Criar Curso"
|
|
19
|
+
},
|
|
20
|
+
"filters": {
|
|
21
|
+
"searchPlaceholder": "Buscar por codigo, titulo ou nome interno...",
|
|
22
|
+
"filtersLabel": "Filtros:",
|
|
23
|
+
"allStatuses": "Todos Status",
|
|
24
|
+
"allLevels": "Todos Niveis",
|
|
25
|
+
"allCategories": "Todas Categorias",
|
|
26
|
+
"clear": "Limpar"
|
|
27
|
+
},
|
|
28
|
+
"bulkActions": {
|
|
29
|
+
"selected": "{{count}} selecionado(s)",
|
|
30
|
+
"archive": "Arquivar",
|
|
31
|
+
"delete": "Excluir",
|
|
32
|
+
"clearSelection": "Limpar selecao"
|
|
33
|
+
},
|
|
34
|
+
"categories": {
|
|
35
|
+
"technology": "Tecnologia",
|
|
36
|
+
"design": "Design",
|
|
37
|
+
"management": "Gestao",
|
|
38
|
+
"marketing": "Marketing",
|
|
39
|
+
"finance": "Financas",
|
|
40
|
+
"health": "Saude",
|
|
41
|
+
"languages": "Idiomas",
|
|
42
|
+
"law": "Direito"
|
|
43
|
+
},
|
|
44
|
+
"levels": {
|
|
45
|
+
"beginner": "Iniciante",
|
|
46
|
+
"intermediate": "Intermediario",
|
|
47
|
+
"advanced": "Avancado"
|
|
48
|
+
},
|
|
49
|
+
"status": {
|
|
50
|
+
"active": "Ativo",
|
|
51
|
+
"draft": "Rascunho",
|
|
52
|
+
"archived": "Arquivado"
|
|
53
|
+
},
|
|
54
|
+
"table": {
|
|
55
|
+
"headers": {
|
|
56
|
+
"code": "Codigo",
|
|
57
|
+
"title": "Titulo",
|
|
58
|
+
"level": "Nivel",
|
|
59
|
+
"status": "Status",
|
|
60
|
+
"categories": "Categorias",
|
|
61
|
+
"students": "Alunos"
|
|
62
|
+
},
|
|
63
|
+
"empty": {
|
|
64
|
+
"title": "Nenhum curso encontrado",
|
|
65
|
+
"description": "Tente ajustar os filtros ou criar um novo curso."
|
|
66
|
+
},
|
|
67
|
+
"actions": {
|
|
68
|
+
"label": "Acoes",
|
|
69
|
+
"viewDetails": "Ver detalhes",
|
|
70
|
+
"edit": "Editar",
|
|
71
|
+
"copyCode": "Copiar codigo",
|
|
72
|
+
"delete": "Excluir"
|
|
73
|
+
},
|
|
74
|
+
"selectAll": "Selecionar todos",
|
|
75
|
+
"selectCourse": "Selecionar {{title}}"
|
|
76
|
+
},
|
|
77
|
+
"pagination": {
|
|
78
|
+
"showing": "Mostrando",
|
|
79
|
+
"to": "a",
|
|
80
|
+
"of": "de",
|
|
81
|
+
"results": "resultados",
|
|
82
|
+
"previousPage": "Pagina anterior",
|
|
83
|
+
"nextPage": "Proxima pagina"
|
|
84
|
+
},
|
|
85
|
+
"form": {
|
|
86
|
+
"title": {
|
|
87
|
+
"create": "Criar Novo Curso",
|
|
88
|
+
"edit": "Editar Curso"
|
|
89
|
+
},
|
|
90
|
+
"description": {
|
|
91
|
+
"create": "Preencha os dados para criar um novo curso. Apos criar, voce sera redirecionado para a pagina do curso.",
|
|
92
|
+
"edit": "Atualize as informacoes do curso abaixo."
|
|
93
|
+
},
|
|
94
|
+
"fields": {
|
|
95
|
+
"code": {
|
|
96
|
+
"label": "Codigo do Curso",
|
|
97
|
+
"placeholder": "Ex: REACT-ADV",
|
|
98
|
+
"description": "Identificador unico do curso (ex: REACT-ADV)"
|
|
99
|
+
},
|
|
100
|
+
"internalName": {
|
|
101
|
+
"label": "Nome Interno",
|
|
102
|
+
"placeholder": "Ex: react-avancado",
|
|
103
|
+
"description": "Slug interno para uso do sistema"
|
|
104
|
+
},
|
|
105
|
+
"commercialTitle": {
|
|
106
|
+
"label": "Titulo Comercial",
|
|
107
|
+
"placeholder": "Ex: React Avancado"
|
|
108
|
+
},
|
|
109
|
+
"description": {
|
|
110
|
+
"label": "Descricao",
|
|
111
|
+
"placeholder": "Descreva o conteudo e objetivos do curso..."
|
|
112
|
+
},
|
|
113
|
+
"level": {
|
|
114
|
+
"label": "Nivel",
|
|
115
|
+
"placeholder": "Selecione"
|
|
116
|
+
},
|
|
117
|
+
"status": {
|
|
118
|
+
"label": "Status",
|
|
119
|
+
"placeholder": "Selecione"
|
|
120
|
+
},
|
|
121
|
+
"categories": {
|
|
122
|
+
"label": "Categorias",
|
|
123
|
+
"description": "Selecione uma ou mais categorias"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"flags": {
|
|
127
|
+
"title": "Flags Principais",
|
|
128
|
+
"featured": {
|
|
129
|
+
"label": "Destaque",
|
|
130
|
+
"description": "Exibir como curso em destaque na vitrine"
|
|
131
|
+
},
|
|
132
|
+
"certificate": {
|
|
133
|
+
"label": "Certificado",
|
|
134
|
+
"description": "Emitir certificado ao concluir o curso"
|
|
135
|
+
},
|
|
136
|
+
"listed": {
|
|
137
|
+
"label": "Listado",
|
|
138
|
+
"description": "Visivel no catalogo publico de cursos"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"actions": {
|
|
142
|
+
"cancel": "Cancelar",
|
|
143
|
+
"save": "Salvar Alteracoes",
|
|
144
|
+
"create": "Criar Curso"
|
|
145
|
+
},
|
|
146
|
+
"validation": {
|
|
147
|
+
"codeMinLength": "Codigo deve ter pelo menos 2 caracteres",
|
|
148
|
+
"codeMaxLength": "Codigo deve ter no maximo 16 caracteres",
|
|
149
|
+
"codePattern": "Apenas letras, numeros e hifens",
|
|
150
|
+
"internalNameMinLength": "Nome interno deve ter pelo menos 3 caracteres",
|
|
151
|
+
"commercialTitleMinLength": "Titulo comercial deve ter pelo menos 3 caracteres",
|
|
152
|
+
"descriptionMinLength": "Descricao deve ter pelo menos 10 caracteres",
|
|
153
|
+
"levelRequired": "Selecione um nivel",
|
|
154
|
+
"statusRequired": "Selecione um status",
|
|
155
|
+
"categoriesRequired": "Selecione pelo menos uma categoria"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"deleteDialog": {
|
|
159
|
+
"title": "Confirmar Exclusao",
|
|
160
|
+
"description": "Tem certeza que deseja excluir o curso",
|
|
161
|
+
"warning": "Este curso possui {{count}} aluno(s) matriculado(s). A exclusao e irreversivel.",
|
|
162
|
+
"actions": {
|
|
163
|
+
"cancel": "Cancelar",
|
|
164
|
+
"delete": "Excluir Curso"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"toasts": {
|
|
168
|
+
"courseUpdated": "Curso atualizado com sucesso!",
|
|
169
|
+
"courseCreated": "Curso criado com sucesso! Redirecionando...",
|
|
170
|
+
"courseRemoved": "Curso \"{{title}}\" removido.",
|
|
171
|
+
"coursesRemoved": "{{count}} curso(s) removido(s).",
|
|
172
|
+
"coursesArchived": "{{count}} curso(s) arquivado(s).",
|
|
173
|
+
"codeCopied": "Codigo \"{{code}}\" copiado."
|
|
174
|
+
},
|
|
175
|
+
"seedCourses": {
|
|
176
|
+
"1": {
|
|
177
|
+
"title": "React Avancado",
|
|
178
|
+
"description": "Curso completo de React com hooks, context e padroes avancados para aplicacoes modernas"
|
|
179
|
+
},
|
|
180
|
+
"2": {
|
|
181
|
+
"title": "Fundamentos de UX Design",
|
|
182
|
+
"description": "Fundamentos de design de experiencia do usuario com ferramentas modernas e pesquisa"
|
|
183
|
+
},
|
|
184
|
+
"3": {
|
|
185
|
+
"title": "Gestao de Projetos Agil",
|
|
186
|
+
"description": "Metodologias ageis para gestao de projetos incluindo Scrum, Kanban e SAFe em equipes"
|
|
187
|
+
},
|
|
188
|
+
"4": {
|
|
189
|
+
"title": "Marketing Digital Completo",
|
|
190
|
+
"description": "Estrategias de marketing digital para negocios modernos incluindo SEO, SEM e midias sociais"
|
|
191
|
+
},
|
|
192
|
+
"5": {
|
|
193
|
+
"title": "Python para Data Science",
|
|
194
|
+
"description": "Introducao a Python focado em ciencia de dados, analise estatistica e machine learning basico"
|
|
195
|
+
},
|
|
196
|
+
"6": {
|
|
197
|
+
"title": "Node.js Completo",
|
|
198
|
+
"description": "Backend com Node.js, Express e bancos relacionais e NoSQL para APIs robustas"
|
|
199
|
+
},
|
|
200
|
+
"7": {
|
|
201
|
+
"title": "Figma para Iniciantes",
|
|
202
|
+
"description": "Aprenda a usar Figma do zero para criar interfaces profissionais e prototipos interativos"
|
|
203
|
+
},
|
|
204
|
+
"8": {
|
|
205
|
+
"title": "Lideranca e Comunicacao",
|
|
206
|
+
"description": "Desenvolva habilidades de lideranca e comunicacao assertiva para ambientes corporativos"
|
|
207
|
+
},
|
|
208
|
+
"9": {
|
|
209
|
+
"title": "SEO Avancado",
|
|
210
|
+
"description": "Tecnicas avancadas de otimizacao para motores de busca, conteudo web e performance de sites"
|
|
211
|
+
},
|
|
212
|
+
"10": {
|
|
213
|
+
"title": "TypeScript na Pratica",
|
|
214
|
+
"description": "TypeScript aplicado em projetos reais com boas praticas, padroes de design e testes"
|
|
215
|
+
},
|
|
216
|
+
"11": {
|
|
217
|
+
"title": "Design System Completo",
|
|
218
|
+
"description": "Como criar e manter um design system escalavel para grandes times de produto e engenharia"
|
|
219
|
+
},
|
|
220
|
+
"12": {
|
|
221
|
+
"title": "Excel para Negocios",
|
|
222
|
+
"description": "Domine Excel com formulas avancadas, dashboards profissionais e analise de dados empresariais"
|
|
223
|
+
},
|
|
224
|
+
"13": {
|
|
225
|
+
"title": "Financas Pessoais",
|
|
226
|
+
"description": "Aprenda a gerenciar suas financas, investir e planejar sua aposentadoria de forma inteligente"
|
|
227
|
+
},
|
|
228
|
+
"14": {
|
|
229
|
+
"title": "Flutter para Mobile",
|
|
230
|
+
"description": "Desenvolvimento de aplicativos moveis multiplataforma com Flutter e Dart do zero ao deploy"
|
|
231
|
+
},
|
|
232
|
+
"15": {
|
|
233
|
+
"title": "Direito Trabalhista Essencial",
|
|
234
|
+
"description": "Conceitos essenciais de direito trabalhista para gestores de RH e empreendedores"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
"ExamsPage": {
|
|
239
|
+
"title": "Exames",
|
|
240
|
+
"description": "Gerencie provas, quizzes e avaliacoes",
|
|
241
|
+
"breadcrumbs": {
|
|
242
|
+
"home": "Home",
|
|
243
|
+
"exams": "Exames"
|
|
244
|
+
},
|
|
245
|
+
"actions": {
|
|
246
|
+
"createExam": "Novo Exame"
|
|
247
|
+
},
|
|
248
|
+
"filters": {
|
|
249
|
+
"searchPlaceholder": "Buscar por titulo ou codigo...",
|
|
250
|
+
"allStatuses": "Todos status",
|
|
251
|
+
"clear": "Limpar",
|
|
252
|
+
"search": "Buscar"
|
|
253
|
+
},
|
|
254
|
+
"status": {
|
|
255
|
+
"published": "Publicado",
|
|
256
|
+
"draft": "Rascunho",
|
|
257
|
+
"closed": "Encerrado"
|
|
258
|
+
},
|
|
259
|
+
"kpis": {
|
|
260
|
+
"totalExams": {
|
|
261
|
+
"label": "Total de Exames",
|
|
262
|
+
"sub": "cadastrados"
|
|
263
|
+
},
|
|
264
|
+
"published": {
|
|
265
|
+
"label": "Publicados",
|
|
266
|
+
"sub": "disponiveis"
|
|
267
|
+
},
|
|
268
|
+
"totalQuestions": {
|
|
269
|
+
"label": "Total Questoes",
|
|
270
|
+
"sub": "entre todos os exames"
|
|
271
|
+
},
|
|
272
|
+
"avgScore": {
|
|
273
|
+
"label": "Media Geral",
|
|
274
|
+
"sub": "nota media de conclusao"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
"cards": {
|
|
278
|
+
"tooltip": "Clique duplo para gerenciar questoes",
|
|
279
|
+
"actions": {
|
|
280
|
+
"label": "Acoes",
|
|
281
|
+
"manageQuestions": "Gerenciar Questoes",
|
|
282
|
+
"testExam": "Testar Exame",
|
|
283
|
+
"edit": "Editar",
|
|
284
|
+
"delete": "Excluir"
|
|
285
|
+
},
|
|
286
|
+
"randomLabel": "Aleatorio",
|
|
287
|
+
"questionsLabel": "Questoes",
|
|
288
|
+
"completionsLabel": "Realizacoes",
|
|
289
|
+
"durationLabel": "Duracao",
|
|
290
|
+
"minScoreLabel": "Nota minima",
|
|
291
|
+
"avgScoreLabel": "Media das notas"
|
|
292
|
+
},
|
|
293
|
+
"empty": {
|
|
294
|
+
"title": "Nenhum exame encontrado",
|
|
295
|
+
"description": "Ajuste os filtros ou crie um novo exame.",
|
|
296
|
+
"action": "Novo Exame"
|
|
297
|
+
},
|
|
298
|
+
"pagination": {
|
|
299
|
+
"exams": "exame",
|
|
300
|
+
"examsPlural": "exames",
|
|
301
|
+
"found": "encontrado",
|
|
302
|
+
"foundPlural": "encontrados",
|
|
303
|
+
"page": "Pagina",
|
|
304
|
+
"of": "de",
|
|
305
|
+
"firstPage": "Primeira",
|
|
306
|
+
"previousPage": "Anterior",
|
|
307
|
+
"nextPage": "Proxima",
|
|
308
|
+
"lastPage": "Ultima",
|
|
309
|
+
"itemsPerPage": "Itens por pagina"
|
|
310
|
+
},
|
|
311
|
+
"form": {
|
|
312
|
+
"title": {
|
|
313
|
+
"create": "Novo Exame",
|
|
314
|
+
"edit": "Editar Exame"
|
|
315
|
+
},
|
|
316
|
+
"description": {
|
|
317
|
+
"create": "Preencha os dados basicos do exame. Questoes sao gerenciadas na pagina dedicada.",
|
|
318
|
+
"edit": "Preencha os dados basicos do exame. Questoes sao gerenciadas na pagina dedicada."
|
|
319
|
+
},
|
|
320
|
+
"fields": {
|
|
321
|
+
"code": {
|
|
322
|
+
"label": "Codigo",
|
|
323
|
+
"placeholder": "EX-001",
|
|
324
|
+
"required": true
|
|
325
|
+
},
|
|
326
|
+
"title": {
|
|
327
|
+
"label": "Titulo",
|
|
328
|
+
"placeholder": "Prova Final - React Avancado",
|
|
329
|
+
"required": true
|
|
330
|
+
},
|
|
331
|
+
"minScore": {
|
|
332
|
+
"label": "Nota Minima",
|
|
333
|
+
"description": "De 0 a 10",
|
|
334
|
+
"required": true
|
|
335
|
+
},
|
|
336
|
+
"timeLimit": {
|
|
337
|
+
"label": "Limite (min)",
|
|
338
|
+
"description": "Em minutos",
|
|
339
|
+
"required": true
|
|
340
|
+
},
|
|
341
|
+
"status": {
|
|
342
|
+
"label": "Status",
|
|
343
|
+
"required": true
|
|
344
|
+
},
|
|
345
|
+
"shuffle": {
|
|
346
|
+
"label": "Embaralhar questoes",
|
|
347
|
+
"description": "Ordem aleatoria para cada tentativa"
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
"actions": {
|
|
351
|
+
"cancel": "Cancelar",
|
|
352
|
+
"save": "Salvar",
|
|
353
|
+
"create": "Criar Exame"
|
|
354
|
+
},
|
|
355
|
+
"validation": {
|
|
356
|
+
"codeMinLength": "Minimo 2 caracteres",
|
|
357
|
+
"titleMinLength": "Minimo 3 caracteres",
|
|
358
|
+
"minScoreMin": "Min 0",
|
|
359
|
+
"minScoreMax": "Max 10",
|
|
360
|
+
"timeLimitMin": "Minimo 1 minuto",
|
|
361
|
+
"statusRequired": "Selecione um status"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"deleteDialog": {
|
|
365
|
+
"title": "Excluir Exame",
|
|
366
|
+
"description": "Tem certeza que deseja excluir",
|
|
367
|
+
"warning": "Este exame possui {{count}} realizacao(oes). Esta acao nao pode ser desfeita.",
|
|
368
|
+
"actions": {
|
|
369
|
+
"cancel": "Cancelar",
|
|
370
|
+
"delete": "Excluir"
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
"toasts": {
|
|
374
|
+
"examUpdated": "Exame atualizado!",
|
|
375
|
+
"examCreated": "Exame criado! Redirecionando para questoes...",
|
|
376
|
+
"examRemoved": "Exame removido!"
|
|
377
|
+
},
|
|
378
|
+
"seedExams": {
|
|
379
|
+
"1": "Prova Final - React Avancado",
|
|
380
|
+
"2": "Quiz - Fundamentos de UX",
|
|
381
|
+
"3": "Simulado - Scrum Master",
|
|
382
|
+
"4": "Trabalho Pratico - Python",
|
|
383
|
+
"5": "Prova Intermediaria - Node.js",
|
|
384
|
+
"6": "Quiz - Marketing de Conteudo",
|
|
385
|
+
"7": "Prova Final - TypeScript",
|
|
386
|
+
"8": "Trabalho - Design System",
|
|
387
|
+
"9": "Simulado - Excel Avancado",
|
|
388
|
+
"10": "Quiz - Lideranca Situacional"
|
|
389
|
+
}
|
|
9
390
|
}
|
|
10
391
|
}
|