diff --git a/includes/option_nfs_title_create.inc b/includes/option_nfs_title_create.inc
index 59425eb..b20249b 100644
--- a/includes/option_nfs_title_create.inc
+++ b/includes/option_nfs_title_create.inc
@@ -6,10 +6,10 @@
 function _option_nfs_title_create($form, &$form_state, $settings, $node) {		
   if(empty($node->nid)) {
     $replace_pairs = array(
-      '!node_type' => node_get_types('name', $node),
+      '!node_type' => strtolower(t(node_get_types('name', $node))),
     );
-    $title = strtr($settings['nfs_title_create'], $replace_pairs);
-    drupal_set_title(check_plain($title));
+    $title = t(check_plain($settings['nfs_title_create']), $replace_pairs);
+    drupal_set_title($title);
   }
 	
 	return $form;
diff --git a/includes/option_nfs_title_edit.inc b/includes/option_nfs_title_edit.inc
index f086a5b..32797a5 100644
--- a/includes/option_nfs_title_edit.inc
+++ b/includes/option_nfs_title_edit.inc
@@ -7,10 +7,10 @@ function _option_nfs_title_edit($form, &$form_state, $settings, $node) {
   if(!empty($node->nid)) {
     $replace_pairs = array(
       '!node_title' => $node->title,
-      '!node_type' => node_get_types('name', $node),
+      '!node_type' => t(node_get_types('name', $node)),
     );
-    $title = strtr($settings['nfs_title_edit'], $replace_pairs);
-    drupal_set_title(check_plain($title));
+    $title = t(check_plain($settings['nfs_title_edit']), $replace_pairs);
+    drupal_set_title(($title));
   }
 	
 	return $form;
