minor - changed lang variables for some dashboard plugins

skala
Cristian Fasanando 16 years ago
parent 8a21c69da2
commit a39b2cdff5
  1. 2
      plugin/dashboard/block_course/block_course.class.php
  2. 2
      plugin/dashboard/block_session/block_session.class.php
  3. 4
      plugin/dashboard/block_student/block_student.class.php
  4. 4
      plugin/dashboard/block_teacher/block_teacher.class.php

@ -98,7 +98,7 @@ class BlockCourse extends Block {
}
$data_table .= '</table>';
} else {
$data_table .= get_lang('ThereAreNoInformationsAboutYoursCourses');
$data_table .= get_lang('ThereIsNoInformationAboutYourCourses');
}
$content .= $data_table;
if (!empty($course_data)) {

@ -115,7 +115,7 @@ class BlockSession extends Block {
$sessions_table .= '</table>';
$content .= $sessions_table;
} else {
$content .= get_lang('ThereAreNoInformationsAboutYoursSessions');
$content .= get_lang('ThereIsNoInformationAboutYourSessions');
}
if (count($sessions) > 0) {

@ -139,7 +139,7 @@ class BlockStudent extends Block {
}
$students_table .= '</table>';
} else {
$students_table .= get_lang('ThereAreNoInformationsAboutYourStudents');
$students_table .= get_lang('ThereIsNoInformationAboutYourStudents');
}
$content .= $students_table;
@ -220,7 +220,7 @@ class BlockStudent extends Block {
}
$students_table .= '</table>';
} else {
$students_table .= get_lang('ThereAreNoInformationsAboutYourStudents');
$students_table .= get_lang('ThereIsNoInformationAboutYourStudents');
}
$content .= $students_table;

@ -120,7 +120,7 @@ class BlockTeacher extends Block {
}
$teachers_table .= '</table>';
} else {
$teachers_table .= get_lang('ThereAreNoInformationsAboutYourTeachers');
$teachers_table .= get_lang('ThereIsNoInformationAboutYourTeachers');
}
@ -177,7 +177,7 @@ class BlockTeacher extends Block {
}
$teachers_table .= '</table>';
} else {
$teachers_table .= get_lang('ThereAreNoInformationsAboutYourTeachers');
$teachers_table .= get_lang('ThereIsNoInformationAboutYourTeachers');
}
$content .= $teachers_table;

Loading…
Cancel
Save