=== modified file 'modules/comment/comment.module'
--- modules/comment/comment.module	2009-06-27 10:13:28 +0000
+++ modules/comment/comment.module	2009-06-28 21:29:26 +0000
@@ -159,6 +159,13 @@ function comment_theme() {
  * Implement hook_menu().
  */
 function comment_menu() {
+  $items['admin/content/%comment_admin'] = array(
+    'title callback' => 'comment_admin_title',
+    // This works because both every string (but '0') is == TRUE.
+    'access callback' => 'comment_admin_to_arg',
+    'options' => array('alter' => TRUE),
+    'description' => "View, edit, and delete your site's content and comments.",
+  );
   $items['admin/content/content/comment'] = array(
     'title' => 'Comments',
     'description' => 'List and edit site comments and the comment approval queue.',
@@ -217,6 +224,43 @@ function comment_menu() {
 }
 
 /**
+ * Title callback for admin/content/%.
+ */
+function comment_admin_title() {
+  return comment_admin_to_arg() == 'content' ? t('Content') : t('Comments');
+}
+
+/**
+ * To_arg and access callback for admin/content/%.
+ */
+function comment_admin_to_arg() {
+  $item = menu_get_item('admin/content/content');
+  if ($item && $item['access']) {
+    return 'content';
+  }
+  $item = menu_get_item('admin/content/content/comment');
+  if ($item && $item['access']) {
+    return 'content/comment';
+  }
+}
+
+/**
+ * Implement hook_translated_menu_link_alter.
+ */
+function comment_translated_menu_link_alter($link) {
+  if ($link['link_path'] == 'admin/content/%' && comment_admin_to_arg() == 'content/comment') {
+    $link['description'] = t('List and edit site comments and the comment approval queue.');
+  }
+}
+
+/**
+ * Implement hook_menu_alter().
+ */
+function comment_menu_alter(&$items) {
+  $items['admin/content/content']['type'] = MENU_CALLBACK;
+}
+
+/**
  * Implement hook_node_type().
  */
 function comment_node_type($op, $info) {
@@ -2410,11 +2454,3 @@ function comment_ranking() {
     ),
   );
 }
-
-/**
- * Implement hook_menu_alter().
- */
-function comment_menu_alter(&$items) {
-  // Add comments to the description for admin/content/content.
-  $items['admin/content/content']['description'] = "View, edit, and delete your site's content and comments.";
-}

