From: Chris S. <san...@us...> - 2011-01-20 18:17:47
|
Update of /cvsroot/stack/stack-dev/lang/en In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10045 Modified Files: stack.php Log Message: Addition of Grobner packages. Chris Index: stack.php =================================================================== RCS file: /cvsroot/stack/stack-dev/lang/en/stack.php,v retrieving revision 1.161 retrieving revision 1.162 diff -C2 -d -r1.161 -r1.162 *** stack.php 2 Dec 2010 19:25:55 -0000 1.161 --- stack.php 20 Jan 2011 18:17:39 -0000 1.162 *************** *** 190,193 **** --- 190,194 ---- $string['stackOptions_AnsTest_values_RegExp'] = "RegExp"; $string['stackOptions_AnsTest_values_EquationAT'] = "EquationAT"; + $string['stackOptions_AnsTest_values_SysEquiv'] = "SysEquiv"; $string['stackOptions_AssumePos_values_true'] = "true"; *************** *** 354,357 **** --- 355,369 ---- $string['ATNumSigFigs_WrongDigits'] = 'Your answer contains the wrong number of significant digits. '; + $string['ATSysEquiv_SA_not_list'] = 'Your answer should be a list, but it is not!'; + $string['ATSysEquiv_SB_not_list'] = 'The Teacher\'s answer is not a list. Please contact your teacher.'; + $string['ATSysEquiv_SA_not_eq_list'] = 'Your answer should be a list of equations, but it is not!'; + $string['ATSysEquiv_SB_not_eq_list'] = 'Teacher answer is not a list of equations'; + $string['ATSysEquiv_SA_not_poly_eq_list'] = 'One or more of your equations is not a polynomial!'; + $string['ATSysEquiv_SB_not_poly_eq_list'] = 'The Teacher\'s answer should be a list of polynomial equations, but is not. Please contact your teacher.'; + $string['ATSysEquiv_SA_missing_variables'] = 'Your answer is missing one or more variables!'; + $string['ATSysEquiv_SA_extra_variables'] = 'Your answer includes too many variables!'; + $string['ATSysEquiv_SA_system_underdetermined'] = 'The equations in your system appear to be correct, but you need others besides.'; + $string['ATSysEquiv_SA_system_overdetermined'] = 'The entries in red below are those that are incorrect. {$a[0]} '; + *************** *** 1322,1326 **** $string['matrix_noDim'] = 'Could not get matrix dimensions, Please check Teachers answer is a matrix.'; ! $string['list_label'] = 'Label'; $string['list_display'] = 'Displayed'; $string['list_input_type'] = 'Display Type'; --- 1334,1338 ---- $string['matrix_noDim'] = 'Could not get matrix dimensions, Please check Teachers answer is a matrix.'; ! $string['list_label'] = 'Value'; $string['list_display'] = 'Displayed'; $string['list_input_type'] = 'Display Type'; |