[LON-CAPA-cvs] cvs: loncom /interface loncreatecourse.pm
bisitz
lon-capa-cvs-allow@mail.lon-capa.org
Tue, 24 Jun 2008 15:51:26 -0000
bisitz Tue Jun 24 11:51:26 2008 EDT
Modified files:
/loncom/interface loncreatecourse.pm
Log:
Localization:
Optimized some &mt() calls
Index: loncom/interface/loncreatecourse.pm
diff -u loncom/interface/loncreatecourse.pm:1.107 loncom/interface/loncreatecourse.pm:1.108
--- loncom/interface/loncreatecourse.pm:1.107 Wed Apr 30 19:23:07 2008
+++ loncom/interface/loncreatecourse.pm Tue Jun 24 11:51:25 2008
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Create a course
#
-# $Id: loncreatecourse.pm,v 1.107 2008/04/30 23:23:07 raeburn Exp $
+# $Id: loncreatecourse.pm,v 1.108 2008/06/24 15:51:25 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -661,23 +661,26 @@
# Check the veracity of the course coordinator
if (&Apache::lonnet::homeserver($ccuname,$ccdomain) eq 'no_host') {
$r->print('<form action="/adm/createuser" method="post" name="crtuser">');
- $r->print(&mt('No such user').' '.$ccuname.' '.&mt('at').' '.$ccdomain.'.<br />');
- $r->print(&mt("Please click Back on your browser and select another user, or "));
- $r->print('
- <input type="hidden" name="phase" value="get_user_info" />
- <input type="hidden" name="ccuname" value="'.$ccuname.'" />
- <input type="hidden" name="ccdomain" value="'.$ccdomain.'" />
- <input name="userrole" type="submit" value="'.
- &mt('Create User').'" />
- </form>'.&Apache::loncommon::end_page());
+ $r->print('<div class="LC_warning">'
+ .&mt('No such user [_1] at domain [_2].','<tt>'.$ccuname.'</tt>','<tt>'.$ccdomain.'</tt>')
+ .'</div>');
+ $r->print(&mt('Please click Back on your browser and select another user, or [_1]Create User[_2]'
+ , '<input type="hidden" name="phase" value="get_user_info" />'
+ .'<input type="hidden" name="ccuname" value="'.$ccuname.'" />'
+ .'<input type="hidden" name="ccdomain" value="'.$ccdomain.'" />'
+ .'<input name="userrole" type="submit" value="'
+ , '" />'
+ )
+ .'</form>'.&Apache::loncommon::end_page()
+ );
return;
}
# Check the proposed home server for the course
my %host_servers =
&Apache::lonnet::get_servers($env{'request.role.domain'},'library');
if (! exists($host_servers{$env{'form.course_home'}})) {
- $r->print(&mt('Invalid home server for course').': '.
- $env{'form.course_home'}.&Apache::loncommon::end_page());
+ $r->print(&mt('Invalid home server for course: [_1]'
+ ,$env{'form.course_home'}.&Apache::loncommon::end_page()));
return;
}
my ($courseid,$crsudom,$crsunum);
@@ -725,14 +728,14 @@
&mt('Create a new course by completing an online form.'),
},
{ internal_name => 'groupone',
- name => &mt('Create a single collaborative group space '),
+ name => &mt('Create a single collaborative group space'),
short_description =>
- &mt('Create a new group space for non-course use by completing an online form .'),
+ &mt('Create a new group space for non-course use by completing an online form.'),
},
{ internal_name => 'batchone',
name => &mt('Create courses/groups by uploading an attributes file'),
short_description =>
- &mt('Upload an attributes file containing specifications for one or more courses or groups in XML format'),
+ &mt('Upload an attributes file containing specifications for one or more courses or groups in XML format.'),
help => 'Batch_Creation',
},
);