diff --git a/clone.install b/clone.install
index c0c78a8..b2853df 100644
--- a/clone.install
+++ b/clone.install
@@ -8,6 +8,7 @@ function clone_uninstall() {
   variable_del('clone_omitted');
   variable_del('clone_nodes_without_confirm');
   variable_del('clone_menu_links');
+  variable_del('clone_use_node_type_name');
   $types = node_get_types('names');
   foreach ($types as $type => $name) {
     variable_del('clone_reset_'. $type);
diff --git a/clone.module b/clone.module
index a546723..b600577 100644
--- a/clone.module
+++ b/clone.module
@@ -41,14 +41,29 @@ function clone_menu() {
     'access arguments' => array(1),
     'page callback' => 'clone_node_check',
     'page arguments' => array(1),
-    'title' => 'Clone',
+    'title' => 'Clone content',
+    'title callback' => 'clone_link_title_callback',
+    'title arguments' => array(1),
     'weight' => 5,
     'file' => 'clone.pages.inc',
-    'type' => MENU_LOCAL_TASK,
+    'type' => MENU_LOCAL_ACTION,
   );
   return $items;
 }
 
+/**
+ * Callback to determine the title of the link to clone a node
+ * 
+ * @param $node
+ *   The node being viewed
+ */
+function clone_link_title_callback($node) {
+  if (variable_get('clone_use_node_type_name', 0)) {
+    return t('Clone !type', array('!type' => drupal_strtolower(node_type_get_name($node))));
+  }
+  return t('Clone content');
+}
+
 function clone_access_cloning($node) {
   global $user;
   // Check basic permissions first.
diff --git a/clone.pages.inc b/clone.pages.inc
index d872211..4c46139 100644
--- a/clone.pages.inc
+++ b/clone.pages.inc
@@ -29,6 +29,12 @@ function clone_settings() {
     '#default_value' => (int) variable_get('clone_menu_links', 0),
     '#description' => t('Should any menu link for a node also be cloned?'),
   ); 
+  $form['basic']['clone_use_node_type_name'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Use node type name in clone link'),
+    '#default_value' => (int) variable_get('clone_use_node_type_name', 0),
+    '#description' => t('If checked, the link to clone the node will contain the node type name, for example, "Clone article", otherwise it will read "Clone content".'),
+  ); 
 
   $form['publishing'] = array(
     '#type' => 'fieldset',
