i18n: wrap UI strings with __() (components/pages/modals)

This commit is contained in:
Youssef
2025-08-09 18:56:47 -04:00
parent 9a77b716a1
commit 718657f493
14 changed files with 53 additions and 53 deletions

View File

@@ -116,17 +116,17 @@ const openCourseModal = () => {
const getCoursesColumns = () => {
return [
{
label: 'Title',
label: __('Title'),
key: 'title',
width: 2,
},
{
label: 'Lessons',
label: __('Lessons'),
key: 'lessons',
align: 'right',
},
{
label: 'Enrollments',
label: __('Enrollments'),
align: 'right',
key: 'enrollments',
},