diff --git sites/all/modules/i18n/CHANGELOG.txt sites/all/modules/i18n/CHANGELOG.txt
index 1fe4e8c..b9900d4 100644
--- sites/all/modules/i18n/CHANGELOG.txt
+++ sites/all/modules/i18n/CHANGELOG.txt
@@ -8,6 +8,7 @@
 - Fixed: Access denied to database query (LOCK TABLES) on i18n_variable_set(), #769260
 - Reworked variable initialization to fix multiple issues (front page, etc), #826774
 - Some changes to variables API, added new function: i18n_variable_get()
+- Fixed: Node type help not translated, by NaX, #685788
 
 6.x-1.4 to 6.x-1.5
 ------------------
diff --git sites/all/modules/i18n/i18ncontent/i18ncontent.module sites/all/modules/i18n/i18ncontent/i18ncontent.module
index a1339cb..340d787 100644
--- sites/all/modules/i18n/i18ncontent/i18ncontent.module
+++ sites/all/modules/i18n/i18ncontent/i18ncontent.module
@@ -32,7 +32,9 @@ function i18ncontent_help($path, $arg) {
   // Add translated help text for node add pages
   if (!menu_get_object() && $arg[1] == 'add' && $arg[2]) {
     $type = str_replace('-', '_', $arg[2]);
-    if ($help = i18nstrings_ts("nodetype:type:$type:help")) {
+    // Fetch default language node type help
+    $source = i18ncontent_node_help_source($type);
+    if ($help = i18nstrings("nodetype:type:$type:help", $source->source)) {
       return '<p>'. filter_xss_admin($help) .'</p>';
     }
   }
@@ -79,10 +81,11 @@ function i18ncontent_form_alter(&$form, $form_state, $form_id) {
       // Replace the help text default value in the node type form with data from
       // i18nstrings. Help text is handled in hook_node_type() and hook_help().
       $type = $form['#node_type']->type;
-      // Use the default language for this.
-      $language = language_default('language');
       if ($type) {
-        $form['submission']['help']['#default_value'] = i18nstrings_ts("nodetype:type:$type:help", $form['submission']['help']['#default_value'], $language);
+        // Fetch default language node type help
+        $source = i18ncontent_node_help_source($type);
+        // We dont need to pass the value through i18nstrings_ts()
+        $form['submission']['help']['#default_value'] = $source->source;
       }
       break;
 
@@ -204,4 +207,13 @@ function i18ncontent_node_add($type) {
   }
 
   return $output;
-}
\ No newline at end of file
+}
+
+/**
+ * Fetch default source for node type help
+ */
+function i18ncontent_node_help_source($type) {
+  $context = i18nstrings_context("nodetype:type:$type:help");
+  $source = i18nstrings_get_source($context);
+  return $source;
+}
