Parcourir la source

Feature #2099 - Language related changes (4).

Ivan Tcholakov il y a 14 ans
Parent
commit
3c1bf12b0b

+ 3 - 3
main/admin/course_request_accepted.php

@@ -83,7 +83,7 @@ function modify_filter($id) {
 }
 
 $interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
-$tool_name = get_lang('cesga_AdminCursosValid');
+$tool_name = get_lang('AcceptedCourseRequests');
 Display :: display_header($tool_name);
 
 //api_display_tool_title($tool_name);
@@ -99,9 +99,9 @@ $table->set_header(0, get_lang('Code'));
 $table->set_header(1, get_lang('Title'));
 $table->set_header(2, get_lang('Category'));
 //$table->set_header(3, get_lang('Teacher'), false);
-//$table->set_header(4, get_lang('cesga_AdminFechaSolic'), false);
+//$table->set_header(4, get_lang('CourseRequestDate'), false);
 $table->set_header(3, get_lang('Teacher'));
-$table->set_header(4, get_lang('cesga_AdminFechaSolic'));
+$table->set_header(4, get_lang('CourseRequestDate'));
 $table->set_header(5, '', false);
 $table->set_column_filter(5, 'modify_filter');
 //$table->set_form_actions(array('delete_courses' => get_lang('DeleteCourse')), 'course');

+ 3 - 3
main/admin/course_request_rejected.php

@@ -111,7 +111,7 @@ function modify_filter($id) {
 }
 
 $interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
-$tool_name = get_lang('cesga_AdminCursosRexeit'); //nombre que aparece en la barra de navegación
+$tool_name = get_lang('RejectedCourseRequests');
 Display :: display_header($tool_name);
 
 //api_display_tool_title($tool_name);
@@ -127,9 +127,9 @@ $table->set_header(0, get_lang('Code'));
 $table->set_header(1, get_lang('Title'));
 $table->set_header(2, get_lang('Category'));
 //$table->set_header(3, get_lang('Teacher'), false);
-//$table->set_header(4, get_lang('cesga_AdminFechaSolic'), false);
+//$table->set_header(4, get_lang('CourseRequestDate'), false);
 $table->set_header(3, get_lang('Teacher'));
-$table->set_header(4, get_lang('cesga_AdminFechaSolic'));
+$table->set_header(4, get_lang('CourseRequestDate'));
 $table->set_header(5, '', false);
 $table->set_column_filter(5, 'modify_filter');
 //$table->set_form_actions(array('delete_courses' => get_lang('DeleteCourse')), 'course');

+ 3 - 3
main/admin/course_request_review.php

@@ -167,7 +167,7 @@ if (isset ($_POST['action'])) {
 }
 
 $interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
-$tool_name = get_lang('cesga_AdminValidCursos'); //nombre que aparece en la barra de navegación
+$tool_name = get_lang('ReviewCourseRequests');
 Display :: display_header($tool_name);
 
 //api_display_tool_title($tool_name);
@@ -183,9 +183,9 @@ $table->set_header(1, get_lang('Code'));
 $table->set_header(2, get_lang('Title'));
 $table->set_header(3, get_lang('Category'));
 //$table->set_header(4, get_lang('Teacher'), false);
-//$table->set_header(5, get_lang('cesga_AdminFechaSolic'), false);
+//$table->set_header(5, get_lang('CourseRequestDate'), false);
 $table->set_header(4, get_lang('Teacher'));
-$table->set_header(5, get_lang('cesga_AdminFechaSolic'));
+$table->set_header(5, get_lang('CourseRequestDate'));
 $table->set_header(6, '', false);
 $table->set_column_filter(4,'email_filter');
 $table->set_column_filter(6,'modify_filter');

+ 1 - 1
main/create_course/add_course.php

@@ -141,7 +141,7 @@ if ($course_validation_feature) {
 
 }
 
-$form->addElement('style_submit_button', null, $course_validation_feature ? get_lang('CreateCourseRequest') : get_lang('CreateCourseArea'), 'class="add"');
+$form->addElement('style_submit_button', null, $course_validation_feature ? get_lang('CreateThisCourseRequest') : get_lang('CreateCourseArea'), 'class="add"');
 $form->add_progress_bar();
 
 // Set default values.

+ 2 - 0
main/lang/bulgarian/create_course.inc.php

@@ -110,4 +110,6 @@ $Objectives = "Цели на курса";
 $TargetAudience = "Целева аудитория";
 $YouHaveToAcceptTermsAndConditions = "Трабва да приемете нашите Условия за ползване, за да заявите нов курс.";
 $CourseRequestCreated = "Вашата заявка за нов курс е изпратена. Може да получите отговор по нея скоро, в рамките на 1-2 дена.";
+$CreateThisCourseRequest = "Създаване на заявката";
+$CourseRequestDate = "Дата на заявката";
 ?>

+ 2 - 0
main/lang/english/create_course.inc.php

@@ -110,4 +110,6 @@ $Objectives = "Objectives";
 $TargetAudience = "Target audience";
 $YouHaveToAcceptTermsAndConditions = "You have to accept our Terms and Conditions in order to request a new training.";
 $CourseRequestCreated = "Your request for a new training has been sent successfully. You may receive a reply soon, within one or two days.";
+$CreateThisCourseRequest = "Create this course request";
+$CourseRequestDate = "Request date";
 ?>

+ 2 - 0
main/lang/spanish/create_course.inc.php

@@ -110,4 +110,6 @@ $Objectives = "Objetivos";
 $TargetAudience = "Destinatarios";
 $YouHaveToAcceptTermsAndConditions = "Debe aceptar las condiciones del servicio para poder solicitar un curso.";
 $CourseRequestCreated = "Se recibió correctamente su solicitud de curso. En breve (uno o dos días laborables) recibirá respuesta sobre la misma.";
+$CreateThisCourseRequest = "Solicitud de nuevo curso";
+$CourseRequestDate = "Fecha Solicitud";
 ?>