--- loncom/interface/lonhelper.pm 2004/04/21 17:29:57 1.71
+++ loncom/interface/lonhelper.pm 2004/04/21 19:03:02 1.73
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# .helper XML handler to implement the LON-CAPA helper
#
-# $Id: lonhelper.pm,v 1.71 2004/04/21 17:29:57 sakharuk Exp $
+# $Id: lonhelper.pm,v 1.73 2004/04/21 19:03:02 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -3126,7 +3126,7 @@ sub render {
# Print the granularity, depending on the action
if ($vars->{GRANULARITY} eq 'whole_course') {
- $resourceString .= '
for all resources in the course';
+ $resourceString .= ''.&mt('for').' '.&mt('all resources in the course').'';
$level = 9; # general course, see lonparmset.pm perldoc
$affectedResourceId = "0.0";
$symb = 'a';
@@ -3157,12 +3157,19 @@ sub render {
$result .= ''.&mt('Confirm that this information is correct, then click "Finish Helper" to complete setting the parameter.').'
';
# Print the type of manipulation:
- $result .= '- '.&mt('Setting the').' ' . &mt($dateTypeHash{$vars->{ACTION_TYPE}}) . '';
+ my $extra;
if ($vars->{ACTION_TYPE} eq 'tries') {
- $result .= ' '.&mt('to').' ' . $vars->{TRIES} . '';
+ $extra = $vars->{TRIES};
}
if ($vars->{ACTION_TYPE} eq 'weight') {
- $result .= ' '.&mt('to').' ' . $vars->{WEIGHT} . '';
+ $extra = $vars->{WEIGHT};
+ }
+ $result .= "
- ";
+ my $what = &mt($dateTypeHash{$vars->{ACTION_TYPE}})
+ if ($extra) {
+ $result .= &mt('Setting the [_1] to [_2]',"$what",$extra);
+ } else {
+ $result .= &mt('Setting the [_1]',"$what");
}
$result .= "
\n";
if ($vars->{ACTION_TYPE} eq 'due_date' ||
@@ -3196,7 +3203,7 @@ sub render {
$result .= '- '.&mt('for').' '.&mt('all students in course').'
';
} elsif ($vars->{TARGETS} eq 'section') {
my $section = $vars->{SECTION_NAME};
- $result .= "- for section $section
";
+ $result .= "- ".&mt('for section')." $section
";
$level -= 3;
$result .= "&"') . "' />\n";
@@ -3207,7 +3214,7 @@ sub render {
# Chop off everything after the last colon (section)
$username = substr($username, 0, rindex($username, ':'));
my $name = $classlist->{$username}->[6];
- $result .= "- for $name
";
+ $result .= "- ".&mt('for')." $name
";
$level -= 6;
my ($uname, $udom) = split /:/, $vars->{USER_NAME};
$result .= "{ACTION_TYPE} ne 'weight') {
- $result .= "- to " . ctime($vars->{PARM_DATE}) . " (" .
+ $result .= "
- ".&mt('to')." " . ctime($vars->{PARM_DATE}) . " (" .
Apache::lonnavmaps::timeToHumanString($vars->{PARM_DATE})
. ")
\n";
}