? promoted-to-front-text.patch
? sites/default/files
? sites/default/settings.php
Index: modules/node/content_types.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/content_types.inc,v
retrieving revision 1.64
diff -u -p -r1.64 content_types.inc
--- modules/node/content_types.inc	26 Jan 2009 14:08:43 -0000	1.64
+++ modules/node/content_types.inc	17 Mar 2009 02:39:30 -0000
@@ -153,7 +153,7 @@ function node_type_form(&$form_state, $t
     '#default_value' => variable_get('node_options_' . $type->type, array('status', 'promote')),
     '#options' => array(
       'status' => t('Published'),
-      'promote' => t('Promoted to front page'),
+      'promote' => t('Added to <a href="!main">main content listing</a>', array('!main' => url('node'))),
       'sticky' => t('Sticky at top of lists'),
       'revision' => t('Create new revision'),
     ),
Index: modules/node/node.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.pages.inc,v
retrieving revision 1.57
diff -u -p -r1.57 node.pages.inc
--- modules/node/node.pages.inc	14 Mar 2009 23:01:36 -0000	1.57
+++ modules/node/node.pages.inc	17 Mar 2009 02:39:30 -0000
@@ -216,7 +216,7 @@ function node_form(&$form_state, $node) 
   );
   $form['options']['promote'] = array(
     '#type' => 'checkbox',
-    '#title' => t('Promoted to front page'),
+    '#title' => t('Added to <a href="!main">main content listing</a>', array('!main' => url('node'))),
     '#default_value' => $node->promote,
   );
   $form['options']['sticky'] = array(
