Index: menu.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/menu.module,v
retrieving revision 1.15
diff -u -r1.15 menu.module
--- menu.module 16 Aug 2004 18:02:48 -0000      1.15
+++ menu.module 18 Aug 2004 23:01:24 -0000
@@ -258,7 +258,7 @@
   else {
     $form .= form_textfield(t('Description'), 'description', $edit['description'], 60, 128, t('The description displayed when hovering over a menu item.'));
 
-    $path_description = t('The Drupal path this menu item links to.');
+    $path_description = t('The URL for this link.  It may be a Drupal path to a page on this site or a complete URL for a page on another site.');
     if (array_key_exists($edit['path'], $menu['path index']) && $menu['path index'][$edit['path']] != $edit['mid']) {
       $old_mid = $menu['path index'][$edit['path']];
       $old_item = $menu['items'][$old_mid];
@@ -266,10 +266,10 @@
     }
 
     if ($edit['type'] & MENU_CREATED_BY_ADMIN) {
-      $form .= form_textfield(t('Path'), 'path', $edit['path'], 60, 128, $path_description, NULL, TRUE);
+      $form .= form_textfield(t('URL'), 'path', $edit['path'], 60, 128, $path_description, NULL, TRUE);
     }
     else {
-      $form .= form_item(t('Path'), l($edit['path'], $edit['path']));
+      $form .= form_item(t('URL'), l($edit['path'], $edit['path']));
       $form .= form_hidden('path', $edit['path']);
     }
