Index: modules/block/block.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.admin.inc,v
retrieving revision 1.9
diff -u -p -r1.9 block.admin.inc
--- modules/block/block.admin.inc	5 Oct 2007 09:35:09 -0000	1.9
+++ modules/block/block.admin.inc	18 Oct 2007 13:16:15 -0000
@@ -319,7 +319,7 @@ function block_admin_configure(&$form_st
   }
   else {
     $options = array(t('Show on every page except the listed pages.'), t('Show on only the listed pages.'));
-    $description = t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '<front>'));
+    $description = t("Enter one page per line as system paths. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '<front>'));
 
     if ($access) {
       $options[] = t('Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only).');
Index: modules/locale/locale.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/locale/locale.install,v
retrieving revision 1.19
diff -u -p -r1.19 locale.install
--- modules/locale/locale.install	12 Oct 2007 14:10:17 -0000	1.19
+++ modules/locale/locale.install	18 Oct 2007 13:16:15 -0000
@@ -231,7 +231,7 @@ function locale_schema() {
         'length' => 255,
         'not null' => TRUE,
         'default' => '',
-        'description' => t('Drupal path in case of online discovered translations or file path in case of imported strings.'),
+        'description' => t('System path in case of online discovered translations or file path in case of imported strings.'),
       ),
       'textgroup' => array(
         'type' => 'varchar',
Index: modules/locale/locale.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/locale/locale.module,v
retrieving revision 1.195
diff -u -p -r1.195 locale.module
--- modules/locale/locale.module	15 Oct 2007 19:51:06 -0000	1.195
+++ modules/locale/locale.module	18 Oct 2007 13:16:16 -0000
@@ -236,7 +236,7 @@ function locale_form_alter(&$form, $form
         '#options' => array('' => t('All languages')) + locale_language_list('name'),
         '#default_value' => $form['language']['#value'],
         '#weight' => -10,
-        '#description' => t('Path aliases added for languages take precedence over path aliases added for all languages for the same Drupal path.'),
+        '#description' => t('Path aliases added for languages take precedence over path aliases added for all languages for the same system path.'),
       );
       break;
 
Index: modules/menu/menu.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/menu/menu.admin.inc,v
retrieving revision 1.3
diff -u -p -r1.3 menu.admin.inc
--- modules/menu/menu.admin.inc	27 Sep 2007 16:59:54 -0000	1.3
+++ modules/menu/menu.admin.inc	18 Oct 2007 13:16:16 -0000
@@ -150,7 +150,7 @@ function menu_edit_item(&$form_state, $t
       '#type' => 'textfield',
       '#title' => t('Path'),
       '#default_value' => $path,
-      '#description' => t('The path this menu item links to. This can be an internal Drupal path such as %add-node or an external URL such as %drupal. Enter %front to link to the front page.', array('%front' => '<front>', '%add-node' => 'node/add', '%drupal' => 'http://drupal.org')),
+      '#description' => t('The path this menu item links to. This can be a system path such as %add-node or an external URL such as %drupal. Enter %front to link to the front page.', array('%front' => '<front>', '%add-node' => 'node/add', '%drupal' => 'http://drupal.org')),
       '#required' => TRUE,
     );
     $form['delete'] = array(
Index: modules/statistics/statistics.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/statistics/statistics.install,v
retrieving revision 1.11
diff -u -p -r1.11 statistics.install
--- modules/statistics/statistics.install	12 Oct 2007 14:10:18 -0000	1.11
+++ modules/statistics/statistics.install	18 Oct 2007 13:16:16 -0000
@@ -73,7 +73,7 @@ function statistics_schema() {
         'type' => 'varchar',
         'length' => 255,
         'not null' => FALSE,
-        'description' => t('Internal path to page visited (relative to Drupal root.)'),
+        'description' => t('System path to page visited (relative to Drupal root.)'),
       ),
       'url' => array(
         'type' => 'varchar',
Index: modules/system/system.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.install,v
retrieving revision 1.162
diff -u -p -r1.162 system.install
--- modules/system/system.install	12 Oct 2007 10:41:47 -0000	1.162
+++ modules/system/system.install	18 Oct 2007 13:16:16 -0000
@@ -555,7 +555,7 @@ function system_schema() {
     'description' => t('Maps paths to various callbacks (access, page and title)'),
     'fields' => array(
       'path' => array(
-        'description' => t('Primary Key: the Drupal path this entry describes'),
+        'description' => t('Primary Key: the system path this entry describes'),
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
@@ -692,13 +692,13 @@ function system_schema() {
         'not null' => TRUE,
         'default' => 0),
       'link_path' => array(
-        'description' => t('The Drupal path or external path this link point to.'),
+        'description' => t('The system path or external path this link point to.'),
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
         'default' => ''),
       'router_path' => array(
-        'description' => t('For links corresponding to a Drupal path (external = 0), this connects the link to a {menu_router}.path for joins.'),
+        'description' => t('For links corresponding to a system path (external = 0), this connects the link to a {menu_router}.path for joins.'),
         'type' => 'varchar',
         'length' => 255,
         'not null' => TRUE,
@@ -939,7 +939,7 @@ function system_schema() {
     );
 
   $schema['url_alias'] = array(
-    'description' => t('A list of URL aliases for Drupal paths; a user may visit either the source or destination path.'),
+    'description' => t('A list of URL aliases for system paths; a user may visit either the source or destination path.'),
     'fields' => array(
       'pid' => array(
         'description' => t('A unique path alias identifier.'),
@@ -947,7 +947,7 @@ function system_schema() {
         'unsigned' => TRUE,
         'not null' => TRUE),
       'src' => array(
-        'description' => t('The Drupal path this alias is for; e.g. node/12.'),
+        'description' => t('The system path this alias is for; e.g. node/12.'),
         'type' => 'varchar',
         'length' => 128,
         'not null' => TRUE,
@@ -959,7 +959,7 @@ function system_schema() {
         'not null' => TRUE,
         'default' => ''),
       'language' => array(
-        'description' => t('The language this alias is for; if blank, the alias will be used for unknown languages.  Each Drupal path can have an alias for each supported language.'),
+        'description' => t('The language this alias is for; if blank, the alias will be used for unknown languages.  Each system path can have an alias for each supported language.'),
         'type' => 'varchar',
         'length' => 12,
         'not null' => TRUE,
