--- loncom/html/adm/helper/parameter.helper 2004/04/27 15:14:56 1.11 +++ loncom/html/adm/helper/parameter.helper 2004/04/27 17:58:35 1.12 @@ -102,7 +102,7 @@ if ($val !~ /^[1234567890]+(\.[1234567890]+)?$/) { - return '"'.$element->getValue().'" '.&mt('is not an acceptable weight. Weight must be a positive number.'); + return &mt('" [_1] " is not an acceptable weight. Weight must be a positive number.',$element->getValue()); } return undef; @@ -116,7 +116,7 @@ if ($val !~ /^[1234567890]+$/) { - return '"' . $element->getValue() . '" '.&mt('is not an acceptable number of tries. Tries must be a positive number with no decimal point.');} + return &mt('" [_1] " is not an acceptable number of tries. Tries must be a positive number with no decimal point.',$element->getValue());} return undef;