[LON-CAPA-cvs] cvs: loncom /auth lonauth.pm
raeburn
raeburn@source.lon-capa.org
Fri, 13 May 2011 01:33:02 -0000
raeburn Fri May 13 01:33:02 2011 EDT
Modified files:
/loncom/auth lonauth.pm
Log:
- Remove HTML tags from phrases to translate.
Index: loncom/auth/lonauth.pm
diff -u loncom/auth/lonauth.pm:1.111 loncom/auth/lonauth.pm:1.112
--- loncom/auth/lonauth.pm:1.111 Thu Feb 24 23:37:50 2011
+++ loncom/auth/lonauth.pm Fri May 13 01:33:02 2011
@@ -1,7 +1,7 @@
# The LearningOnline Network
# User Authentication Module
#
-# $Id: lonauth.pm,v 1.111 2011/02/24 23:37:50 raeburn Exp $
+# $Id: lonauth.pm,v 1.112 2011/05/13 01:33:02 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -138,15 +138,15 @@
my %lt=&Apache::lonlocal::texthash(
'wel' => 'Welcome',
- 'mes' => 'Welcome to the Learning<i>Online</i> Network with CAPA. Please wait while your session is being set up.',
'pro' => 'Login problems?',
'log' => 'loginproblems.html',
);
+ my $welcome = &mt('Welcome to the Learning[_1]Online[_2] Network with CAPA. Please wait while your session is being set up.','<i>','</i>');
$r->print(<<ENDSUCCESS);
$start_page
$windowinfo
<h1>$lt{'wel'}</h1>
-$lt{'mes'}<p>
+$welcome<p>
<a href="/adm/$lt{'log'}">$lt{'pro'}</a></p>
$continuelink
$end_page