[Jifty-commit] r3153 - jifty/trunk/lib/Jifty/Plugin/Authentication/Password/Action

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Tue Apr 17 16:04:11 EDT 2007


Author: yves
Date: Tue Apr 17 16:04:10 2007
New Revision: 3153

Modified:
   jifty/trunk/lib/Jifty/Plugin/Authentication/Password/Action/Login.pm

Log:
failling test on i18n and T::D authentication plugin


Modified: jifty/trunk/lib/Jifty/Plugin/Authentication/Password/Action/Login.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/Authentication/Password/Action/Login.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/Authentication/Password/Action/Login.pm	Tue Apr 17 16:04:10 2007
@@ -60,7 +60,7 @@
 
     my $u = Jifty->app_class('Model', 'User')->new(current_user => Jifty->app_class('CurrentUser')->superuser);
     $u->load_by_cols( email => $email );
-    return $self->validation_error(email => 'We do not have an account that matches that email.') unless ($u->id);
+    return $self->validation_error(email => _("It doesn't look like there's an account by that name.") unless ($u->id);
 
     return $self->validation_ok('email');
 }


More information about the Jifty-commit mailing list