From 8c652842a77428bf62a0b1cabc9a3fe45ee51d1b Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sun, 31 Jul 2011 22:44:09 -0400 Subject: [PATCH] - Patch #789176 by yoroy: change 'Type' to 'Content type' for improve usability. --- modules/node/node.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/node/node.admin.inc b/modules/node/node.admin.inc index a6ea1b5e5b6d..43e0ecd2823a 100644 --- a/modules/node/node.admin.inc +++ b/modules/node/node.admin.inc @@ -394,7 +394,7 @@ function node_admin_nodes() { // Build the sortable table header. $header = array( 'title' => array('data' => t('Title'), 'field' => 'n.title'), - 'type' => array('data' => t('Type'), 'field' => 'n.type'), + 'type' => array('data' => t('Content type'), 'field' => 'n.type'), 'author' => t('Author'), 'status' => array('data' => t('Status'), 'field' => 'n.status'), 'changed' => array('data' => t('Updated'), 'field' => 'n.changed', 'sort' => 'desc') -- GitLab