Index: wpsc-admin/includes/products.php
===================================================================
--- wpsc-admin/includes/products.php	(revision 277502)
+++ wpsc-admin/includes/products.php	(working copy)
@@ -9,6 +9,22 @@
  */
 
 /**
+ * This function is wishful thinking, that one day WordPress will add a filter into the media gallery so we don't need to do ugly jQuery 
+ * Hacks for Better UI integration : http://core.trac.wordpress.org/ticket/14630
+ *
+ */
+/*
+function wpsc_swap_feature_image_link($args){
+	$title_text = $args['text'];
+	if($args['post-type'] == 'wpsc-product'){
+		$title_text = esc_html__('Use as Product Thumbnail');
+	}
+	return $title_text;
+}
+add_filter('media_feature_image_text','wpsc_swap_feature_image_link');
+*/
+
+/**
  * wpsc_product_rows function, copies the functionality of the wordpress code for displaying posts and pages, but is for products
  * 
  */
