--- loncom/homework/imagechoice.pm 2007/05/02 01:33:02 1.13 +++ loncom/homework/imagechoice.pm 2009/02/18 07:06:12 1.16 @@ -1,4 +1,4 @@ -# $Id: imagechoice.pm,v 1.13 2007/05/02 01:33:02 albertel Exp $ +# $Id: imagechoice.pm,v 1.16 2009/02/18 07:06:12 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -26,12 +26,13 @@ package Apache::imagechoice; use strict; use Apache::Constants qw(:common :http); use Apache::lonnet; +use Apache::lonlocal; use LONCAPA; sub deletedata { my ($id)=@_; - &Apache::lonnet::delenv("imagechoice\\.$id\\.coords"); + &Apache::lonnet::delenv('imagechoice.'.$id.'.coords'); } sub closewindow { @@ -112,27 +113,27 @@ sub storedata { sub getcoord { my ($r,$type,$filename,$id)=@_; - my $heading='Select Position on Image'; + my $heading=&mt('Select Position on Image'); my $nextstage=''; if ($type eq 'box') { my (undef,@coords)=split(':',$env{"imagechoice.$id.coords"}); my $step=scalar(@coords)/2; if ($step == 0) { - $heading='Select First Coordinate on Image'; + $heading=&mt('Select First Coordinate on Image'); #$nextstage=''; } elsif ($step == 1) { - $heading='Select Second Coordinate on Image'; + $heading=&mt('Select Second Coordinate on Image'); #$nextstage=''; } else { - $heading='Select Finish to save selection.'; - $nextstage=''; + $heading=&mt('Select Finish to save selection'); + $nextstage=''; } } elsif ($type eq 'polygon') { - $heading='Enter Coordinate or click finish to close Polygon'; - $nextstage=''; + $heading=&mt('Enter Coordinate or click finish to close Polygon'); + $nextstage=''; } elsif ($type eq 'point') { - $heading='Click to select a Coordinate or click Finish to save current selection.'; - $nextstage=''; + $heading=&mt('Click to select a Coordinate or click Finish to save current selection'); + $nextstage=''; } my $start_page = @@ -142,12 +143,13 @@ sub getcoord { my $end_page = &Apache::loncommon::end_page(); + my $canceltext=&mt('Cancel'); $r->print(<<"END"); $start_page