Index: wp-admin/includes/media.php
===================================================================
--- wp-admin/includes/media.php	(revision 21157)
+++ wp-admin/includes/media.php	(working copy)
@@ -1152,8 +1152,27 @@
 		'extra_rows' => array(),
 	);
 
-	if ( $send )
-		$send = get_submit_button( __( 'Insert into Post' ), 'button', "send[$attachment_id]", false );
+	if ( $send ) {
+		if ( isset( $_POST ) && isset( $_POST['attachment_id'] ) ) {
+			$attachment_parent_id = wp_get_post_parent_id( $_POST['attachment_id'] );
+			$parent_type = get_post_type_object( get_post_type( $attachment_parent_id ) );
+		}
+		elseif ( isset( $_GET ) && isset( $_GET['post_id'] ) ) {
+			$parent_type = get_post_type_object( get_post_type( $_GET['post_id'] ) );
+		}
+
+		if ( isset( $parent_type ) ) {
+			if ( $parent_type->labels->insert_into_post )
+				$parent_insert_into_post = $parent_type->labels->insert_into_post;
+			else
+				$parent_insert_into_post = sprintf( __( 'Insert Into %1$s' ), $parent_type->labels->singular_name );
+		}
+		else {
+			$parent_insert_into_post = __( 'Insert Into Post' );
+		}
+
+		$send = get_submit_button( $parent_insert_into_post, 'button', "send[$attachment_id]", false );
+	}
 	if ( $delete && current_user_can( 'delete_post', $attachment_id ) ) {
 		if ( !EMPTY_TRASH_DAYS ) {
 			$delete = "<a href='" . wp_nonce_url( "post.php?action=delete&amp;post=$attachment_id", 'delete-attachment_' . $attachment_id ) . "' id='del[$attachment_id]' class='delete'>" . __( 'Delete Permanently' ) . '</a>';
@@ -1929,6 +1948,22 @@
  * @return unknown
  */
 function wp_media_insert_url_form( $default_view = 'image' ) {
+	if( isset( $_GET ) && isset( $_GET['post_id'] ) )
+		$parent_type = get_post_type_object( get_post_type( $_GET['post_id'] ) );
+
+
+	if ( isset( $parent_type ) ) {
+		if ( isset( $parent_type->labels->insert_into_post ) )
+			$parent_insert_into_post = $parent_type->labels->insert_into_post;
+		else
+			$parent_insert_into_post = sprintf( __( 'Insert Into %1$s' ), $parent_type->labels->singular_name );
+	}
+	else {
+		$parent_insert_into_post = __( 'Insert Into Post' );
+	}
+
+
+
 	if ( !apply_filters( 'disable_captions', '' ) ) {
 		$caption = '
 		<tr class="image-only">
@@ -2009,13 +2044,13 @@
 		<tr class="image-only">
 			<td></td>
 			<td>
-				<input type="button" class="button" id="go_button" style="color:#bbb;" onclick="addExtImage.insert()" value="' . esc_attr__('Insert into Post') . '" />
+				<input type="button" class="button" id="go_button" style="color:#bbb;" onclick="addExtImage.insert()" value="' . esc_attr__( $parent_insert_into_post ) . '" />
 			</td>
 		</tr>
 		<tr class="not-image">
 			<td></td>
 			<td>
-				' . get_submit_button( __( 'Insert into Post' ), 'button', 'insertonlybutton', false ) . '
+				' . get_submit_button( $parent_insert_into_post, 'button', 'insertonlybutton', false ) . '
 			</td>
 		</tr>
 	</tbody></table>
Index: wp-includes/post.php
===================================================================
--- wp-includes/post.php	(revision 21157)
+++ wp-includes/post.php	(working copy)
@@ -1222,6 +1222,7 @@
  * - parent_item_colon - This string isn't used on non-hierarchical types. In hierarchical ones the default is Parent Page:
  * - all_items - String for the submenu. Default is All Posts/All Pages
  * - menu_name - Default is the same as <code>name</code>
+ * - insert_into_post - Optional. String for the media uploader screen. Default is null, when it isn't explicitly set the media upload will use Insert Into $object->label->singular_name
  *
  * Above, the first default value is for non-hierarchical post types (like posts) and the second one is for hierarchical post types (like pages).
  *
