[Jifty-commit] r7189 - jifty/trunk/lib/Jifty/Plugin/SetupWizard

Jifty commits jifty-commit at lists.jifty.org
Thu Jun 4 20:03:17 EDT 2009


Author: sartak
Date: Thu Jun  4 20:03:16 2009
New Revision: 7189

Modified:
   jifty/trunk/lib/Jifty/Plugin/SetupWizard/View.pm

Log:
More i18n

Modified: jifty/trunk/lib/Jifty/Plugin/SetupWizard/View.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/SetupWizard/View.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/SetupWizard/View.pm	Thu Jun  4 20:03:16 2009
@@ -162,7 +162,7 @@
         field      => 'Driver',
         context    => '/framework/Database',
         value_args => {
-            label            => 'Database Engine',
+            label            => _('Database Engine'),
             render_as        => 'select',
             available_values => \@available_drivers,
             onchange         => [$onchange],
@@ -173,7 +173,7 @@
         field      => 'Database',
         context    => '/framework/Database',
         value_args => {
-            label => 'Database Name',
+            label => _('Database Name'),
         },
     );
 
@@ -192,7 +192,7 @@
         field   => 'Host',
         context => '/framework/Database',
         value_args => {
-            hints => "The domain name of your database server (for example, db.example.com)",
+            hints => _('The domain name of your database server (for example, db.example.com)'),
         },
     );
 
@@ -200,7 +200,7 @@
         field   => 'Port',
         context => '/framework/Database',
         value_args => {
-            hints => "Leave blank to use the default value for your database",
+            hints => _('Leave blank to use the default value for your database'),
         },
     );
 
@@ -229,7 +229,7 @@
         field   => 'RequireSSL',
         context => '/framework/Database',
         value_args => {
-            label     => 'Use SSL?',
+            label     => _('Use SSL?'),
             render_as => 'checkbox',
         },
     );


More information about the Jifty-commit mailing list