[Jifty-commit] r2266 - jifty/branches/template-declare/lib/Jifty/View/Declare

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sat Dec 2 20:37:57 EST 2006


Author: audreyt
Date: Sat Dec  2 20:37:57 2006
New Revision: 2266

Modified:
   jifty/branches/template-declare/lib/Jifty/View/Declare/Base.pm

Log:
* Bring the previous commit's I18N into t-d.

Modified: jifty/branches/template-declare/lib/Jifty/View/Declare/Base.pm
==============================================================================
--- jifty/branches/template-declare/lib/Jifty/View/Declare/Base.pm	(original)
+++ jifty/branches/template-declare/lib/Jifty/View/Declare/Base.pm	Sat Dec  2 20:37:57 2006
@@ -152,7 +152,7 @@
             _( 'Hiya, %1.', $u->$method() );
         }
         else {
-            _(q{You're not currently signed in.});
+            _( "You're not currently signed in." );
         }
     };
     with( id => "navigation" ), div {
@@ -564,9 +564,7 @@
         };
 
         p {
-            _(
-q{To disable this administrative console, add "framework: AdminMode: 0" to your application's configuration file.}
-            );
+            _('To disable this administrative console, add "AdminMode: 0" under the "framework:" settings in the config file (etc/config.yml).');
         };
 
         h2 { _('Models') };
@@ -1678,7 +1676,7 @@
 };
 
 template 'index.html' => page {
-    { title is 'Welcome to your new Jifty application' }
+    { title is _('Welcome to your new Jifty application') }
     img {
         src is "/static/images/pony.jpg", alt is _(
             'You said you wanted a pony. (Source %1)',


More information about the Jifty-commit mailing list