[LON-CAPA-cvs] cvs: loncom /auth lonroles.pm
raeburn
lon-capa-cvs-allow@mail.lon-capa.org
Tue, 04 Mar 2008 22:44:21 -0000
raeburn Tue Mar 4 17:44:21 2008 EDT
Modified files:
/loncom/auth lonroles.pm
Log:
- Typo and some localization for alert messages.
Index: loncom/auth/lonroles.pm
diff -u loncom/auth/lonroles.pm:1.183 loncom/auth/lonroles.pm:1.184
--- loncom/auth/lonroles.pm:1.183 Tue Jan 29 20:18:58 2008
+++ loncom/auth/lonroles.pm Tue Mar 4 17:44:21 2008
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# User Roles Screen
#
-# $Id: lonroles.pm,v 1.183 2008/01/30 01:18:58 www Exp $
+# $Id: lonroles.pm,v 1.184 2008/03/04 22:44:21 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -389,7 +389,7 @@
my $start_page=&Apache::loncommon::start_page('User Roles');
my $standby=&mt('Role selected. Please stand by.');
$standby=~s/\n/\\n/g;
- my $noscript='<span class="LC_error">'.&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.').'<br />'.&mt('As this is not the case, most functionality in the system will ba unavailable.').'</span><br />';
+ my $noscript='<span class="LC_error">'.&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.').'<br />'.&mt('As this is not the case, most functionality in the system will be unavailable.').'</span><br />';
$r->print(<<ENDHEADER);
$start_page
@@ -970,6 +970,10 @@
}
sub coursepick_jscript {
+ my %lt = &Apache::lonlocal::texthash(
+ plsu => "Please use the 'Select Course' link to open a separate pick course window where you may select the course you wish to enter.",
+ youc => 'You can only use this screen to select courses in the current domain.',
+ );
my $verify_script = <<"END";
<script type="text/javascript">
function verifyCoursePick(caller) {
@@ -985,11 +989,11 @@
}
}
else {
- alert("Please use the 'Select Course' link to open a separate pick course window where you may select the course you wish to enter.");
+ alert("$lt{'plsu'}");
}
}
else {
- alert("You can only use this screen to select courses in the current domain")
+ alert("$lt{'youc'}")
}
}
function getIndex(caller) {
@@ -1079,6 +1083,7 @@
&Apache::lonnet::standard_roleprivs(\%ccrole,$role,$dcdom,$spec,$pickedcourse,$area);
my ($author,$adv)= &Apache::lonnet::set_userprivs(\%userroles,\%ccrole);
&Apache::lonnet::appenv(%userroles);
+
&Apache::lonnet::log($env{'user.domain'},
$env{'user.name'},
$env{'user.home'},