export const stepTypeLabels = { 'theory': 'Теоретический материал', 'practice': 'Практическое задание', 'lab': 'Лабораторная работа', 'test': 'Тест' }; export function getStepTypeLabel(type) { return stepTypeLabels[type] || type; } export const validationRules = { courseTitle: { minLength: 3, maxLength: 255 }, moduleTitle: { maxLength: 255 }, maxModules: 50 };