Index: src/wp-admin/network/site-settings.php
===================================================================
--- src/wp-admin/network/site-settings.php	(revision 27190)
+++ src/wp-admin/network/site-settings.php	(working copy)
@@ -128,17 +128,26 @@
 					$class = 'all-options disabled';
 				}
 			}
+			$optnames = array(
+				'siteurl' => __( 'Siteurl (WordPress Address)' ),
+				'home'    => __( 'Home (Site Address)' ),
+			);
+			if ( isset( $optnames[$option->option_name] ) ) {
+				$display_name = $optnames[$option->option_name];
+			} else {
+				$display_name = ucwords( str_replace( "_", " ", $option->option_name ) );
+			}
 			if ( strpos( $option->option_value, "\n" ) !== false ) {
 			?>
 				<tr class="form-field">
-					<th scope="row"><?php echo ucwords( str_replace( "_", " ", $option->option_name ) ) ?></th>
+					<th scope="row"><?php echo $display_name; ?></th>
 					<td><textarea class="<?php echo $class; ?>" rows="5" cols="40" name="option[<?php echo esc_attr( $option->option_name ) ?>]" id="<?php echo esc_attr( $option->option_name ) ?>"<?php disabled( $disabled ) ?>><?php echo esc_textarea( $option->option_value ) ?></textarea></td>
 				</tr>
 			<?php
 			} else {
 			?>
 				<tr class="form-field">
-					<th scope="row"><?php echo esc_html( ucwords( str_replace( "_", " ", $option->option_name ) ) ); ?></th>
+					<th scope="row"><?php echo $display_name; ?></th>
 					<?php if ( $is_main_site && in_array( $option->option_name, array( 'siteurl', 'home' ) ) ) { ?>
 					<td><code><?php echo esc_html( $option->option_value ) ?></code></td>
 					<?php } else { ?>
