Update of /cvsroot/stack/stack-1-0/lang/en
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31035/lang/en
Modified Files:
stack.php
Log Message:
Added "equation" and "inequality" input types to the AlgEquiv Answer test.
Index: stack.php
===================================================================
RCS file: /cvsroot/stack/stack-1-0/lang/en/stack.php,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** stack.php 29 Aug 2005 18:41:03 -0000 1.24
--- stack.php 1 Sep 2005 08:13:57 -0000 1.25
***************
*** 112,115 ****
--- 112,116 ----
$string['MissingStars'] = 'You seem to be missing *\'s.<br /> Perhaps you meant to type ';
$string['BadAmps'] = 'You should not have any @\'s. ';
+ $string['BadIneqs'] = 'Your (non-strict) inequalities are not correct. You either have space between your symbols, or the symbols in the wrong order, or both.';
$string['BadAbsFun'] = 'You should not have any |\'s. You may need to use the <tt>abs()</tt> CAS function instead.';
$string['UnknownFun'] = 'The string <tt><font color=\'orange\'>{$a[\'key\']}</font></tt> does not occur in the list of permitted functions. It could be that you have missed off some multiplication signs, or brackets. If you are in doubt about this, please contact the administrator.';
***************
*** 330,336 ****
$string['AT_NOTIMPLEMENTED'] = 'This answer test has not been implemented.';
! $string['ATAlgEquiv_SA_notmatrix'] = 'Your answer should be a matrix, but is not.';
! $string['ATAlgEquiv_SA_notlist'] = 'Your answer should be a list, but is not. Note that the syntax to enter a list is to enclose the comma separated values with square brackets.';
! $string['ATAlgEquiv_SA_notset'] = 'Your answer should be a set, but is not. Note that the syntax to enter a set is to enclose the comma separated values with curly brackets.';
$string['ATList_wronglen'] = 'Your list should have {$a[0]} elements, but it is actually has {$a[1]}. ';
--- 331,339 ----
$string['AT_NOTIMPLEMENTED'] = 'This answer test has not been implemented.';
! $string['ATAlgEquiv_SA_not_matrix'] = 'Your answer should be a matrix, but is not.';
! $string['ATAlgEquiv_SA_not_list'] = 'Your answer should be a list, but is not. Note that the syntax to enter a list is to enclose the comma separated values with square brackets.';
! $string['ATAlgEquiv_SA_not_set'] = 'Your answer should be a set, but is not. Note that the syntax to enter a set is to enclose the comma separated values with curly brackets.';
! $string['ATAlgEquiv_SA_not_equation'] = 'Your answer should be an equation, but is not.';
! $string['ATAlgEquiv_SA_not_inequality'] = 'Your answer should be an inequality, but is not.';
$string['ATList_wronglen'] = 'Your list should have {$a[0]} elements, but it is actually has {$a[1]}. ';
|