# This patch file was generated by NetBeans IDE
# This patch can be applied using context Tools: Apply Diff Patch action on respective folder.
# It uses platform neutral UTF-8 encoding.
# Above lines and this line are ignored by the patching process.
Index: contributions/modules/form_builder/examples/form_builder_examples.module
--- contributions/modules/form_builder/examples/form_builder_examples.module Base (1.10)
+++ contributions/modules/form_builder/examples/form_builder_examples.module Locally Modified (Based On 1.10)
@@ -434,15 +434,19 @@
         if (is_array($form[$property])) {
           $output .= "  '". $property . "' => array(\n";
           foreach ($form[$property] as $key => $value) {
-            $output .= "    '" . $key . "' => '". $value ."',\n";
+            $output .= "    '" . $key . "' => t('". $value ."'),\n";
           }
           $output .= "  ),\n";
         }
         else {
+          if (($property == '#title') || ($property == '#description')) {
+            $output .= "  '". $property . "' => t('" . $form[$property] ."'),\n";
+          } else {
           $output .= "  '". $property . "' => '" . $form[$property] ."',\n";
         }
       }
     }
+    }
\ No newline at end of file
     $output .= ");\n";
   }
   else {
