Index: i18ncontent/i18ncontent.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18ncontent/i18ncontent.install,v
retrieving revision 1.1.2.11
diff -u -p -r1.1.2.11 i18ncontent.install
--- i18ncontent/i18ncontent.install	3 Jan 2009 18:23:04 -0000	1.1.2.11
+++ i18ncontent/i18ncontent.install	8 Jan 2009 19:32:59 -0000
@@ -27,7 +27,7 @@ function i18ncontent_disable() {
   // Remove and restore help texts.
   $langcode = language_default('language');
   foreach (node_get_types() as $type) {
-    if (!$type->help && ($help = ts("nodetype:type:$type->type:help", $langcode))) {
+    if (!$type->help && ($help = i18nstrings_ts("nodetype:type:$type->type:help", $langcode))) {
       $type->help = $help;
       node_type_save($type);
     }
@@ -48,4 +48,4 @@ function i18ncontent_update_6001() {
   $ret[] = update_sql("DELETE FROM {i18n_strings} WHERE lid IN (SELECT lid FROM {locales_source} WHERE textgroup = 'nodetype')");
   i18ncontent_locale_refresh();
   return $ret;
-}
\ No newline at end of file
+}
Index: i18ncontent/i18ncontent.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18ncontent/i18ncontent.module,v
retrieving revision 1.1.2.9
diff -u -p -r1.1.2.9 i18ncontent.module
--- i18ncontent/i18ncontent.module	3 Jan 2009 18:23:04 -0000	1.1.2.9
+++ i18ncontent/i18ncontent.module	8 Jan 2009 19:32:59 -0000
@@ -32,7 +32,7 @@ function i18ncontent_help($path, $arg) {
 
   if ($arg[0] == 'node' && $arg[1] == 'add' && $arg[2]) {
     $type = str_replace('-', '_', $arg[2]);
-    if ($help = ts("nodetype:type:$type:help")) {
+    if ($help = i18nstrings_ts("nodetype:type:$type:help")) {
       return '<p>'. filter_xss_admin($help) .'</p>';
     }
   }
@@ -62,7 +62,7 @@ function i18ncontent_locale_refresh() {
     tt("nodetype:type:$type->type:title", $type->title_label, NULL, TRUE);
     tt("nodetype:type:$type->type:body", $type->body_label, NULL, TRUE);
     if ($type->help) {
-      ts("nodetype:type:$type->type:help", $type->help, NULL, TRUE);
+      i18nstrings_ts("nodetype:type:$type->type:help", $type->help, NULL, TRUE);
       $type->help = '';
       node_type_save($type);
     }
@@ -90,8 +90,8 @@ function i18ncontent_form_alter(&$form, 
     $language = language_default('language');
     // If we are creating a new one, just add the submission hook.
     if ($type) {
-      //$form['description']['#default_value'] = ts("nodetype:$type:description");
-      $form['submission']['help']['#default_value'] = ts("nodetype:type:$type:help", $form['submission']['help']['#default_value'], $language);
+      //$form['description']['#default_value'] = i18nstrings_ts("nodetype:$type:description");
+      $form['submission']['help']['#default_value'] = i18nstrings_ts("nodetype:type:$type:help", $form['submission']['help']['#default_value'], $language);
     }
     $form['#submit'] = array_merge(array('i18ncontent_form_submit'), $form['#submit']);
   }
@@ -119,7 +119,7 @@ function i18ncontent_form_submit($form, 
       i18nstrings_update_context("nodetype:type:$old_type:*", "nodetype:type:$type:*");
     }
     tt("nodetype:type:$type:name", $form_state['values']['name'], $language, TRUE);
-    ts("nodetype:type:$type:help", $form_state['values']['help'], $language, TRUE);
+    i18nstrings_ts("nodetype:type:$type:help", $form_state['values']['help'], $language, TRUE);
     // We remove help text so it's not produced later by node module.
     $form_state['values']['help'] = '';
   }
Index: i18nstrings/i18nstrings.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nstrings/i18nstrings.module,v
retrieving revision 1.8.2.26
diff -u -p -r1.8.2.26 i18nstrings.module
--- i18nstrings/i18nstrings.module	3 Jan 2009 19:07:52 -0000	1.8.2.26
+++ i18nstrings/i18nstrings.module	8 Jan 2009 19:32:59 -0000
@@ -125,7 +125,7 @@ function tt($name, $string, $langcode = 
  *
  * As the original language string will be stored in locales too so it should be only used when updating.
  */
-function ts($name, $string = '', $langcode = NULL, $update = FALSE) {
+function i18nstrings_ts($name, $string = '', $langcode = NULL, $update = FALSE) {
   global $language;
 
   $langcode = $langcode ? $langcode : $language->language;
