[Jifty-commit] r2050 - jifty/trunk/lib/Jifty

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sun Oct 22 18:08:05 EDT 2006


Author: audreyt
Date: Sun Oct 22 18:08:05 2006
New Revision: 2050

Modified:
   jifty/trunk/lib/Jifty/Action.pm

Log:
* "You need to fill in this field" needs to be localized.

Modified: jifty/trunk/lib/Jifty/Action.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Action.pm	(original)
+++ jifty/trunk/lib/Jifty/Action.pm	Sun Oct 22 18:08:05 2006
@@ -817,7 +817,7 @@
     if ( !defined $value || !length $value ) {
 
         if ( $field_info->{mandatory} ) {
-            return $self->validation_error( $field => "You need to fill in this field" );
+            return $self->validation_error( $field => _("You need to fill in this field") );
         }
     }
 


More information about the Jifty-commit mailing list