Index: src/wp-includes/media-template.php
===================================================================
--- src/wp-includes/media-template.php	(revision 56661)
+++ src/wp-includes/media-template.php	(working copy)
@@ -557,7 +557,10 @@
 
 			<div class="actions">
 				<# if ( data.link ) { #>
-					<a class="view-attachment" href="{{ data.link }}"><?php _e( 'View attachment page' ); ?></a>
+					<?php
+					$view_media_text = ( '1' === get_option( 'wp_media_use_attachment_pages' ) ) ? __( 'View attachment page' ) : __( 'View media file' );
+					?>
+					<a class="view-attachment" href="{{ data.link }}"><?php echo $view_media_text; ?></a>
 				<# } #>
 				<# if ( data.can.save ) { #>
 					<# if ( data.link ) { #>
Index: src/wp-includes/post.php
===================================================================
--- src/wp-includes/post.php	(revision 56661)
+++ src/wp-includes/post.php	(working copy)
@@ -77,7 +77,7 @@
 				'name_admin_bar' => _x( 'Media', 'add new from admin bar' ),
 				'add_new'        => __( 'Add New Media File' ),
 				'edit_item'      => __( 'Edit Media' ),
-				'view_item'      => __( 'View Attachment Page' ),
+				'view_item'      => ( '1' === get_option( 'wp_media_use_attachment_pages' ) ) ? __( 'View attachment page' ) : __( 'View media file' ),
 				'attributes'     => __( 'Attachment Attributes' ),
 			),
 			'public'                => true,
