Browse Source

[svn r20142] Updated language terms (see FS#4055) by fcedillo

Julio Montoya 16 years ago
parent
commit
1aabbcf5e3
3 changed files with 5 additions and 5 deletions
  1. 2 2
      main/newscorm/learnpath.class.php
  2. 1 1
      main/newscorm/lp_add.php
  3. 2 2
      main/newscorm/lp_list.php

+ 2 - 2
main/newscorm/learnpath.class.php

@@ -6700,7 +6700,7 @@ class learnpath {
 								$text=get_lang('LPCreateDocument');
 							} else if ($_GET['action']=='edit_item'){
 								$class='save';
-								$text=get_lang('LPModifyDocument');
+								$text=get_lang('SaveDocument');
 							}	
 							
 							$form->addElement('style_submit_button', 'submit_button', $text,'class="'.$class.'"');
@@ -6738,7 +6738,7 @@ class learnpath {
 			}
 			elseif(is_array($extra_info))
 			{
-				$form->addElement('style_submit_button', 'submit_button', get_lang('TitleManipulateDocument'), 'class="save"');
+				$form->addElement('style_submit_button', 'submit_button', get_lang('SaveDocument'), 'class="save"');
 				$form->addElement('hidden', 'path', $extra_info['path']);
 			}
 			

+ 1 - 1
main/newscorm/lp_add.php

@@ -126,7 +126,7 @@ echo '<div class="row"><div class="form_header">'.get_lang('AddLpToStart').'</di
 // title field
 echo '<div class="row">';
 echo '<div class="label">';
-echo '<label for="idTitle">'.get_lang('Title').' : </label>';
+echo '<label for="idTitle">'.get_lang('LPName').' : </label>';
 echo '</div>';
 echo '<div class="formw">';
 echo '<input id="idTitle" name="learnpath_name" type="text" size="50" />';

+ 2 - 2
main/newscorm/lp_list.php

@@ -169,10 +169,10 @@ echo	'<th>'.get_lang('Name').'</th>'."\n" .
 		'<th>'.get_lang('Progress')."</th>\n";
 if (api_is_allowed_to_edit())
 {
-  echo '<th>'.get_lang('Description')."</th>\n" .
+  echo '<th>'.get_lang('CourseSettings')."</th>\n" .
   		//xport now is inside "Edit"
   		//'<th>'.get_lang('ExportShort')."</th>\n" .
-		'<th>'.get_lang('Modify')."</th>\n" .
+		'<th>'.get_lang('AuthoringOptions')."</th>\n" .
 		'<th>'.get_lang('Move')."</th>\n";
 }