diff --git a/scheduler.admin.inc b/scheduler.admin.inc
index 839fb8e..8802d32 100644
--- a/scheduler.admin.inc
+++ b/scheduler.admin.inc
@@ -585,7 +585,7 @@ function scheduler_list() {
 
     $rows[] = array(
       ($node->title ? l($node->title, "node/$node->nid") : t('Missing data for node @nid', array('@nid' => $node->nid))),
-      ($node->type ? check_plain(node_type_get_name($node)) : ''),
+      ($node->type ? check_plain(node_get_type_label($node)) : ''),
       ($node->type ? theme('username', array('account' => $node)) : ''),
       ($node->type ? ($node->status ? t('Published') : t('Unpublished')) : ''),
       ($node->publish_on ? format_date($node->publish_on) : '&nbsp;'),
diff --git a/scheduler.rules.inc b/scheduler.rules.inc
index a5b1817..662c1d7 100644
--- a/scheduler.rules.inc
+++ b/scheduler.rules.inc
@@ -134,7 +134,7 @@ function scheduler_set_publish_date_action($node, $date) {
     scheduler_node_update($node);
   }
   else {
-    $type_name = node_type_get_name($node->type);
+    $type_name = node_get_type_label($node);
     watchdog('scheduler', 'Scheduled publishing is not enabled for %type content. To prevent this message add the condition "Scheduled publishing is enabled" to your Rule, or enable the Scheduler options via the %type content type settings.', array('%type' => $type_name), WATCHDOG_WARNING, l(t('@type settings', array('@type' => $type_name)), 'admin/structure/types/manage/' . $node->type));
   }
 }
@@ -154,7 +154,7 @@ function scheduler_set_unpublish_date_action($node, $date) {
     scheduler_node_update($node);
   }
   else {
-    $type_name = node_type_get_name($node->type);
+    $type_name = node_get_type_label($node);
     watchdog('scheduler', 'Scheduled unpublishing is not enabled for %type content. To prevent this message add the condition "Scheduled unpublishing is enabled" to your Rule, or enable the Scheduler options via the %type content type settings.', array('%type' => $type_name), WATCHDOG_WARNING, l(t('@type settings', array('@type' => $type_name)), 'admin/structure/types/manage/' . $node->type));
   }
 }
@@ -172,7 +172,7 @@ function scheduler_remove_publish_date_action($node) {
     scheduler_node_update($node);
   }
   else {
-    $type_name = node_type_get_name($node->type);
+    $type_name = node_get_type_label($node);
     watchdog('scheduler', 'Scheduled publishing is not enabled for %type content. To prevent this message add the condition "Scheduled publishing is enabled" to your Rule, or enable the Scheduler options via the %type content type settings.', array('%type' => $type_name), WATCHDOG_WARNING, l(t('@type settings', array('@type' => $type_name)), 'admin/structure/types/manage/' . $node->type));
   }
 }
@@ -190,7 +190,7 @@ function scheduler_remove_unpublish_date_action($node) {
     scheduler_node_update($node);
   }
   else {
-    $type_name = node_type_get_name($node->type);
+    $type_name = node_get_type_label($node);
     watchdog('scheduler', 'Scheduled unpublishing is not enabled for %type content. To prevent this message add the condition "Scheduled unpublishing is enabled" to your Rule, or enable the Scheduler options via the %type content type settings.', array('%type' => $type_name), WATCHDOG_WARNING, l(t('@type settings', array('@type' => $type_name)), 'admin/structure/types/manage/' . $node->type));
   }
 }
