Index: mnet_email.php
===================================================================
RCS file: /cvsroot/moodle/moodle/login/mnet_email.php,v
retrieving revision 1.4
diff -u -r1.4 mnet_email.php
--- mnet_email.php	17 Aug 2007 19:09:20 -0000	1.4
+++ mnet_email.php	2 Dec 2009 05:41:42 -0000
@@ -10,14 +10,15 @@
 if (isloggedin() and !isguestuser()) {
     redirect( $CFG->wwwroot.'/', get_string('loginalready'), 5);
 }
-$navigation = build_navigation(array(array('name' => 'MNET ID Provider', 'link' => null, 'type' => 'misc')));
+$navigation = build_navigation(array(array('name' => get_string('mnetidprovider','mnet'), 'link' => null, 'type' => 'misc')));
 
-print_header('MNET ID Provider', 'MNET ID Provider', $navigation, 'form.email' );
+print_header(get_string('mnetidprovider','mnet'), get_string('mnetidprovider','mnet'), $navigation, 'form.email' );
 
 if ($form = data_submitted() and confirm_sesskey()) {
     if ($user = get_record('user', 'username', $username, 'email', $form->email)) {
         if (!empty($user->mnethostid) and $host = get_record('mnet_host', 'id', $user->mnethostid)) {
-            notice("You should be able to login at your <a href=\"{$host->wwwroot}/login/\">{$host->name}</a> provider.");
+            $link = "<a href=\"{$host->wwwroot}/login/\">{$host->name}</a>";
+            notice(get_string('mnetidprovidermsg','mnet',$link));
         }
     }
 }
@@ -30,7 +31,7 @@
     <input type="hidden" name="sesskey" value="<?php echo $sesskey; ?>">
     <?php echo get_string('email') ?>:
     <input type="text" name="email" size="" maxlength="100" />
-    <input type="submit" value="Find Login" />
+    <input type="submit" value="<?php echo get_string('findlogin','mnet'); ?>" />
   </form>
 <?php
 
