Index: modules/locale/locale.module
===================================================================
--- modules/locale/locale.module	(revision 53b38d7b7b3fbee2080b068c4d7999d36842144a)
+++ modules/locale/locale.module	(revision )
@@ -415,6 +415,29 @@
 }
 
 /**
+ * Implements hook_field_extra_fields().
+ */
+function locale_field_extra_fields() {
+  $extra = array();
+
+  foreach (node_type_get_types() as $type) {
+    if (isset($type->type) && locale_multilingual_node_type($type->type)) {
+      $extra['node'][$type->type] = array(
+        'form' => array(
+          'language' => array(
+            'label' => t('Language'),
+            'description' => t('Locale module element'),
+            'weight' => 10,
+          ),
+        ),
+      );
+    };
+  }
+
+  return $extra;
+}
+
+/**
  * Implements hook_theme().
  */
 function locale_theme() {
