WP eCommerce - Version 3.8.RC.4

Version Description

Download this release

Release Info

Developer valentinas
Plugin Icon 128x128 WP eCommerce
Version 3.8.RC.4
Comparing to
See all releases

Code changes from version 3.8.RC.3 to 3.8.RC.4

Files changed (38) hide show
  1. wp-shopping-cart.php +5 -1
  2. wpsc-admin/admin-form-functions.php +2 -1
  3. wpsc-admin/admin.php +25 -41
  4. wpsc-admin/ajax-and-init.php +9 -30
  5. wpsc-admin/css/admin.css +5 -3
  6. wpsc-admin/display-debug.page.php +14 -0
  7. wpsc-admin/display-items.page.php +14 -23
  8. wpsc-admin/display-options-settings.page.php +2 -2
  9. wpsc-admin/display-sales-logs.php +2 -1
  10. wpsc-admin/includes/display-items-functions.php +7 -10
  11. wpsc-admin/includes/products.php +10 -8
  12. wpsc-admin/includes/updating-functions.php +0 -1
  13. wpsc-admin/js/admin.js +11 -11
  14. wpsc-core/js/wp-e-commerce.js +2 -2
  15. wpsc-core/wpsc-constants.php +2 -4
  16. wpsc-core/wpsc-deprecated.php +65 -1
  17. wpsc-core/wpsc-functions.php +4 -17
  18. wpsc-core/wpsc-includes.php +0 -4
  19. wpsc-core/wpsc-installer.php +7 -6
  20. wpsc-includes/ajax.functions.php +5 -19
  21. wpsc-includes/cart.class.php +1 -1
  22. wpsc-includes/category.functions.php +1 -1
  23. wpsc-includes/display.functions.php +1 -1
  24. wpsc-includes/misc.functions.php +1 -12
  25. wpsc-includes/processing.functions.php +23 -16
  26. wpsc-includes/product-template.php +9 -19
  27. wpsc-includes/purchaselogs.class.php +4 -4
  28. wpsc-includes/share-this.php +0 -676
  29. wpsc-includes/theme.functions.php +4 -2
  30. wpsc-languages/wpsc.pot +2833 -2878
  31. wpsc-shipping/flatrate.php +1 -1
  32. wpsc-taxes/models/taxes.class.php +15 -13
  33. wpsc-theme/functions/wpsc-transaction_results_functions.php +6 -6
  34. wpsc-theme/functions/wpsc-user_log_functions.php +1 -3
  35. wpsc-theme/wpsc-featured_product.php +7 -2
  36. wpsc-theme/wpsc-single_product.php +5 -5
  37. wpsc-theme/wpsc-user-log.php +2 -1
  38. wpsc-widgets/specials_widget.php +0 -1
wp-shopping-cart.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: WP e-Commerce
5
  Plugin URI: http://getshopped.org/
6
  Description: A plugin that provides a WordPress Shopping Cart. See also: <a href="http://getshopped.org" target="_blank">GetShopped.org</a> | <a href="http://getshopped.org/forums/" target="_blank">Support Forum</a> | <a href="http://getshopped.org/resources/docs/" target="_blank">Documentation</a>
7
- Version: 3.8.RC.3
8
  Author: Instinct Entertainment
9
  Author URI: http://getshopped.org/
10
  */
@@ -55,6 +55,10 @@ class WP_eCommerce {
55
  // Define the URL to the plugin folder
56
  define( 'WPSC_FOLDER', dirname( plugin_basename( __FILE__ ) ) );
57
  define( 'WPSC_URL', plugins_url( '', __FILE__ ) );
 
 
 
 
58
 
59
  // Finished starting
60
  do_action( 'wpsc_started' );
4
  Plugin Name: WP e-Commerce
5
  Plugin URI: http://getshopped.org/
6
  Description: A plugin that provides a WordPress Shopping Cart. See also: <a href="http://getshopped.org" target="_blank">GetShopped.org</a> | <a href="http://getshopped.org/forums/" target="_blank">Support Forum</a> | <a href="http://getshopped.org/resources/docs/" target="_blank">Documentation</a>
7
+ Version: 3.8.RC.4
8
  Author: Instinct Entertainment
9
  Author URI: http://getshopped.org/
10
  */
55
  // Define the URL to the plugin folder
56
  define( 'WPSC_FOLDER', dirname( plugin_basename( __FILE__ ) ) );
57
  define( 'WPSC_URL', plugins_url( '', __FILE__ ) );
58
+
59
+ //load text domain
60
+ if( !load_plugin_textdomain( 'wpsc', false, '../languages/' ) )
61
+ load_plugin_textdomain( 'wpsc', false, dirname( plugin_basename( __FILE__ ) ) . '/wpsc-languages/' );
62
 
63
  // Finished starting
64
  do_action( 'wpsc_started' );
wpsc-admin/admin-form-functions.php CHANGED
@@ -248,6 +248,7 @@ function wpsc_right_now() {
248
 
249
 
250
  function wpsc_packing_slip($purchase_id) {
 
251
  global $wpdb;
252
  $purch_sql = "SELECT * FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `id`='".$purchase_id."'";
253
  $purch_data = $wpdb->get_row($purch_sql,ARRAY_A) ;
@@ -433,7 +434,7 @@ function wpsc_packing_slip($purchase_id) {
433
 
434
  echo '<td>';
435
  echo wpsc_currency_display( $cart_row['tax_charged'] );
436
- echo '<td>';
437
  echo '</tr>';
438
  }
439
  echo "</table>";
248
 
249
 
250
  function wpsc_packing_slip($purchase_id) {
251
+ echo "<!DOCTYPE html><html><head><title>" . __( 'Packing Slip', 'wpsc' ) . "</title></head><body id='wpsc-packing-slip'>";
252
  global $wpdb;
253
  $purch_sql = "SELECT * FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `id`='".$purchase_id."'";
254
  $purch_data = $wpdb->get_row($purch_sql,ARRAY_A) ;
434
 
435
  echo '<td>';
436
  echo wpsc_currency_display( $cart_row['tax_charged'] );
437
+ echo '</td>';
438
  echo '</tr>';
439
  }
440
  echo "</table>";
wpsc-admin/admin.php CHANGED
@@ -141,7 +141,6 @@ function wpsc_show_update_link() {
141
  * or bypass the normal download system.
142
  */
143
  function wpsc_admin_pages() {
144
- global $userdata, $show_update_page, $post_type, $typenow, $current_screen; // set in /wpsc-admin/display-update.page.php
145
 
146
  // Code to enable or disable the debug page
147
  if ( isset( $_GET['wpsc_activate_debug_page'] ) ) {
@@ -152,46 +151,40 @@ function wpsc_admin_pages() {
152
  }
153
  }
154
 
155
- // Only add pages if the function exists to do so?
156
- if ( function_exists( 'add_options_page' ) ) {
157
 
158
- // Add to Dashboard
159
- $page_hooks[] = $purchase_log_page = add_submenu_page( 'index.php', __( 'Store Sales', 'wpsc' ), __( 'Store Sales', 'wpsc' ), 'administrator', 'wpsc-sales-logs', 'wpsc_display_sales_logs' );
160
 
161
- if ( wpsc_show_update_link() )
162
- $page_hooks[] = add_submenu_page( 'index.php', __( 'Update Store', 'wpsc' ), __( 'Store Update', 'wpsc' ), 'administrator', 'wpsc-update', 'wpsc_display_update_page' );
163
 
164
- $page_hooks[] = add_submenu_page( 'index.php', __( 'Store Upgrades', 'wpsc' ), __( 'Store Upgrades', 'wpsc' ), 'administrator', 'wpsc-upgrades', 'wpsc_display_upgrades_page' );
 
165
 
166
- // Set the base page for Products
167
- $products_page = 'edit.php?post_type=wpsc-product';
168
 
169
- $page_hooks[] = $edit_coupons_page = add_submenu_page( $products_page , __( 'Coupons', 'wpsc' ), __( 'Coupons', 'wpsc' ), 'administrator', 'wpsc-edit-coupons', 'wpsc_display_coupons_page' );
 
 
170
 
171
- // Add Settings pages
172
- $page_hooks[] = $edit_options_page = add_options_page( __( 'Store Settings', 'wpsc' ), __( 'Store', 'wpsc' ), 'administrator', 'wpsc-settings', 'wpsc_display_settings_page' );
173
- add_action( 'admin_print_scripts-' . $edit_options_page , 'wpsc_print_admin_scripts' );
174
 
175
- // Debug Page
176
- if ( ( defined( 'WPSC_ADD_DEBUG_PAGE' ) && ( WPSC_ADD_DEBUG_PAGE == true ) ) || ( isset( $_SESSION['wpsc_activate_debug_page'] ) && ( true == $_SESSION['wpsc_activate_debug_page'] ) ) )
177
- $page_hooks[] = add_options_page( __( 'Store Debug', 'wpsc' ), __( 'Store Debug', 'wpsc' ), 'administrator', 'wpsc-debug', 'wpsc_debug_page' );
178
 
179
- // Contextual help
180
- if ( function_exists( 'add_contextual_help' ) ) {
181
- $header = '<p><strong>' . __( 'For More Information', 'wpsc' ) . '</strong></p>';
182
 
183
- add_contextual_help( 'toplevel_page_wpsc-sales-logs', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/sales/'>About the Sales Page</a>", 'wpsc' ) );
184
- add_contextual_help( 'toplevel_page_wpsc-edit-products', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/products'>About the Products Page</a>", 'wpsc' ) );
185
- add_contextual_help( 'products_page_wpsc-edit-groups', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/categories/'>About the Categories Page</a>", 'wpsc' ) );
186
- add_contextual_help( 'products_page_edit-tags', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/variations/'>About the Variations Page</a>", 'wpsc' ) );
187
- add_contextual_help( 'settings_page_wpsc-settings', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/store-settings/general/'>General Settings</a><br /> <a target='_blank' href='http://getshopped.org/resources/docs/store-settings/checkout/'>Checkout Options</a> <br />", 'wpsc' ) );
188
- add_contextual_help( 'products_page_wpsc-edit-coupons', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/marketing'>Marketing Options</a><br />", 'wpsc' ) );
189
- }
190
 
191
- $page_hooks = apply_filters( 'wpsc_additional_pages', $page_hooks, $products_page );
192
 
193
- do_action( 'wpsc_add_submenu' );
194
- };
195
 
196
  // Include the javascript and CSS for this page
197
  // This is so important that I can't even express it in one line
@@ -562,8 +555,6 @@ add_action( 'wpsc_admin_pre_activity', 'wpsc_admin_latest_activity' );
562
  */
563
 
564
  function wpsc_dashboard_widget_setup() {
565
- global $current_user;
566
-
567
  if ( is_admin() && current_user_can( 'manage_options' ) ) {
568
  $version_identifier = WPSC_VERSION . "." . WPSC_MINOR_VERSION;
569
  // Enqueue the styles and scripts necessary
@@ -613,7 +604,6 @@ function wpsc_dashboard_news() {
613
  }
614
 
615
  function wpsc_get_quarterly_summary() {
616
- global $wpdb;
617
  (int)$firstquarter = get_option( 'wpsc_first_quart' );
618
  (int)$secondquarter = get_option( 'wpsc_second_quart' );
619
  (int)$thirdquarter = get_option( 'wpsc_third_quart' );
@@ -714,9 +704,7 @@ function wpsc_quarterly_dashboard_widget() {
714
 
715
 
716
  function wpsc_dashboard_widget() {
717
- global $current_user;
718
- get_currentuserinfo();
719
- if ( $current_user->user_level > 9 ) {
720
  do_action( 'wpsc_admin_pre_activity' );
721
  do_action( 'wpsc_admin_post_activity' );
722
  }
@@ -829,8 +817,7 @@ function wpsc_fav_action( $actions ) {
829
  add_filter( 'favorite_actions', 'wpsc_fav_action' );
830
 
831
  function wpsc_print_admin_scripts() {
832
- global $version_identifier;
833
- wp_enqueue_script( 'wp-e-commerce-dynamic', get_bloginfo( 'url' ) . "/index.php?wpsc_user_dynamic_js=true", false, $version_identifier );
834
  }
835
 
836
  /**
@@ -863,8 +850,6 @@ function wpsc_ajax_ie_save() {
863
  die();
864
  }
865
 
866
- global $wpdb;
867
-
868
  $product = array(
869
  'ID' => $_POST['id'],
870
  'post_title' => $_POST['title']
@@ -908,7 +893,6 @@ function wpsc_ajax_ie_save() {
908
  }
909
 
910
  function wpsc_add_meta_boxes(){
911
- global $wp_current_screen_options;
912
  add_meta_box( 'dashboard_right_now', __('Current Month', 'wpsc'), 'wpsc_right_now', 'dashboard_page_wpsc-sales-logs', 'top' );
913
  }
914
 
141
  * or bypass the normal download system.
142
  */
143
  function wpsc_admin_pages() {
 
144
 
145
  // Code to enable or disable the debug page
146
  if ( isset( $_GET['wpsc_activate_debug_page'] ) ) {
151
  }
152
  }
153
 
154
+ // Add to Dashboard
155
+ $page_hooks[] = $purchase_log_page = add_submenu_page( 'index.php', __( 'Store Sales', 'wpsc' ), __( 'Store Sales', 'wpsc' ), 'administrator', 'wpsc-sales-logs', 'wpsc_display_sales_logs' );
156
 
157
+ if ( wpsc_show_update_link() )
158
+ $page_hooks[] = add_submenu_page( 'index.php', __( 'Update Store', 'wpsc' ), __( 'Store Update', 'wpsc' ), 'administrator', 'wpsc-update', 'wpsc_display_update_page' );
159
 
160
+ $page_hooks[] = add_submenu_page( 'index.php', __( 'Store Upgrades', 'wpsc' ), __( 'Store Upgrades', 'wpsc' ), 'administrator', 'wpsc-upgrades', 'wpsc_display_upgrades_page' );
 
161
 
162
+ // Set the base page for Products
163
+ $products_page = 'edit.php?post_type=wpsc-product';
164
 
165
+ $page_hooks[] = $edit_coupons_page = add_submenu_page( $products_page , __( 'Coupons', 'wpsc' ), __( 'Coupons', 'wpsc' ), 'administrator', 'wpsc-edit-coupons', 'wpsc_display_coupons_page' );
 
166
 
167
+ // Add Settings pages
168
+ $page_hooks[] = $edit_options_page = add_options_page( __( 'Store Settings', 'wpsc' ), __( 'Store', 'wpsc' ), 'administrator', 'wpsc-settings', 'wpsc_display_settings_page' );
169
+ add_action( 'admin_print_scripts-' . $edit_options_page , 'wpsc_print_admin_scripts' );
170
 
171
+ // Debug Page
172
+ if ( ( defined( 'WPSC_ADD_DEBUG_PAGE' ) && ( WPSC_ADD_DEBUG_PAGE == true ) ) || ( isset( $_SESSION['wpsc_activate_debug_page'] ) && ( true == $_SESSION['wpsc_activate_debug_page'] ) ) )
173
+ $page_hooks[] = add_options_page( __( 'Store Debug', 'wpsc' ), __( 'Store Debug', 'wpsc' ), 'administrator', 'wpsc-debug', 'wpsc_debug_page' );
174
 
 
 
 
175
 
176
+ $header = '<p><strong>' . __( 'For More Information', 'wpsc' ) . '</strong></p>';
 
 
177
 
178
+ add_contextual_help( 'toplevel_page_wpsc-sales-logs', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/sales/'>About the Sales Page</a>", 'wpsc' ) );
179
+ add_contextual_help( 'toplevel_page_wpsc-edit-products', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/products'>About the Products Page</a>", 'wpsc' ) );
180
+ add_contextual_help( 'products_page_wpsc-edit-groups', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/categories/'>About the Categories Page</a>", 'wpsc' ) );
181
+ add_contextual_help( 'products_page_edit-tags', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/variations/'>About the Variations Page</a>", 'wpsc' ) );
182
+ add_contextual_help( 'settings_page_wpsc-settings', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/store-settings/general/'>General Settings</a><br /> <a target='_blank' href='http://getshopped.org/resources/docs/store-settings/checkout/'>Checkout Options</a> <br />", 'wpsc' ) );
183
+ add_contextual_help( 'products_page_wpsc-edit-coupons', $header . __( "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-store/marketing'>Marketing Options</a><br />", 'wpsc' ) );
 
184
 
185
+ $page_hooks = apply_filters( 'wpsc_additional_pages', $page_hooks, $products_page );
186
 
187
+ do_action( 'wpsc_add_submenu' );
 
188
 
189
  // Include the javascript and CSS for this page
190
  // This is so important that I can't even express it in one line
555
  */
556
 
557
  function wpsc_dashboard_widget_setup() {
 
 
558
  if ( is_admin() && current_user_can( 'manage_options' ) ) {
559
  $version_identifier = WPSC_VERSION . "." . WPSC_MINOR_VERSION;
560
  // Enqueue the styles and scripts necessary
604
  }
605
 
606
  function wpsc_get_quarterly_summary() {
 
607
  (int)$firstquarter = get_option( 'wpsc_first_quart' );
608
  (int)$secondquarter = get_option( 'wpsc_second_quart' );
609
  (int)$thirdquarter = get_option( 'wpsc_third_quart' );
704
 
705
 
706
  function wpsc_dashboard_widget() {
707
+ if ( current_user_can( 'manage_options' ) ) {
 
 
708
  do_action( 'wpsc_admin_pre_activity' );
709
  do_action( 'wpsc_admin_post_activity' );
710
  }
817
  add_filter( 'favorite_actions', 'wpsc_fav_action' );
818
 
819
  function wpsc_print_admin_scripts() {
820
+ wp_enqueue_script( 'wp-e-commerce-dynamic', get_bloginfo( 'url' ) . "/index.php?wpsc_user_dynamic_js=true" );
 
821
  }
822
 
823
  /**
850
  die();
851
  }
852
 
 
 
853
  $product = array(
854
  'ID' => $_POST['id'],
855
  'post_title' => $_POST['title']
893
  }
894
 
895
  function wpsc_add_meta_boxes(){
 
896
  add_meta_box( 'dashboard_right_now', __('Current Month', 'wpsc'), 'wpsc_right_now', 'dashboard_page_wpsc-sales-logs', 'top' );
897
  }
898
 
wpsc-admin/ajax-and-init.php CHANGED
@@ -26,17 +26,6 @@ if ( isset( $_REQUEST['submit'] ) && ($_REQUEST['submit'] == 'Add Tracking ID')
26
  add_action( 'admin_init', 'wpsc_ajax_add_tracking' );
27
  }
28
 
29
- function wpsc_delete_currency_layer() {
30
- global $wpdb;
31
- $meta_key = 'currency[' . $_POST['currSymbol'] . ']';
32
- $sql = "DELETE FROM `" . WPSC_TABLE_PRODUCTMETA . "` WHERE `meta_key`='" . $meta_key . "' LIMIT 1";
33
- $wpdb->query( $sql );
34
- }
35
-
36
- if ( isset( $_REQUEST['wpsc_admin_action'] ) && ($_REQUEST['wpsc_admin_action'] == 'delete_currency_layer') ) {
37
- add_action( 'admin_init', 'wpsc_delete_currency_layer' );
38
- }
39
-
40
  function wpsc_purchlog_email_trackid() {
41
  global $wpdb;
42
  $id = absint( $_POST['purchlog_id'] );
@@ -176,9 +165,6 @@ function wpsc_duplicate_this_dangit( $id ) {
176
  }
177
 
178
  function wpsc_duplicate_product_process( $post ) {
179
- global $current_user;
180
- wp_get_current_user();
181
- $user_ID = $current_user->ID;
182
 
183
  $new_post_date = $post->post_date;
184
  $new_post_date_gmt = get_gmt_from_date( $new_post_date );
@@ -195,7 +181,6 @@ function wpsc_duplicate_product_process( $post ) {
195
  $defaults = array(
196
  'post_status' => $post->post_status,
197
  'post_type' => $new_post_type,
198
- 'post_author' => $user_ID,
199
  'ping_status' => $ping_status,
200
  'post_parent' => $post->post_parent,
201
  'menu_order' => $post->menu_order,
@@ -306,7 +291,7 @@ function wpsc_purchase_log_csv() {
306
  global $wpdb, $wpsc_gateways;
307
  get_currentuserinfo();
308
  $count = 0;
309
- if ( ($_GET['rss_key'] == 'key') && is_numeric( $_GET['start_timestamp'] ) && is_numeric( $_GET['end_timestamp'] ) && (current_user_can('edit_post')) ) {
310
  $form_sql = "SELECT * FROM `" . WPSC_TABLE_CHECKOUT_FORMS . "` WHERE `active` = '1' AND `type` != 'heading' ORDER BY `checkout_order` DESC;";
311
  $form_data = $wpdb->get_results( $form_sql, ARRAY_A );
312
 
@@ -405,7 +390,7 @@ function wpsc_admin_ajax() {
405
  }
406
 
407
  if ( ($_POST['remove_form_field'] == "true") && is_numeric( $_POST['form_id'] ) ) {
408
- if ( current_user_can( 'level_7' ) ) {
409
  $wpdb->query( $wpdb->prepare( "UPDATE `" . WPSC_TABLE_CHECKOUT_FORMS . "` SET `active` = '0' WHERE `id` = %d LIMIT 1 ;", $_POST['form_id'] ) );
410
  exit( ' ' );
411
  }
@@ -503,14 +488,10 @@ function wpsc_admin_sale_rss() {
503
  }
504
 
505
  function wpsc_display_invoice() {
506
-
507
- global $body_id;
508
-
509
- $body_id = 'wpsc-packing-slip';
510
  $purchase_id = (int)$_GET['purchaselog_id'];
511
- include_once(WPSC_FILE_PATH . "/wpsc-admin/admin-form-functions.php");
512
- require_once(ABSPATH . 'wp-admin/includes/media.php');
513
- wp_iframe( 'wpsc_packing_slip', $purchase_id );
514
  exit();
515
  }
516
  //other actions are here
@@ -648,15 +629,13 @@ function wpsc_purchlog_edit_status( $purchlog_id='', $purchlog_status='' ) {
648
  $wpdb->query( "UPDATE `" . WPSC_TABLE_PURCHASE_LOGS . "` SET processed='{$purchlog_status}' WHERE id='{$purchlog_id}'" );
649
 
650
  wpsc_clear_stock_claims();
 
651
 
652
- if ( ($purchlog_id > $log_data['processed']) && ($log_data['processed'] <= 2) && $log_data['email_sent'] == 0 ) {
653
  transaction_results($log_data['sessionid'],false,null);
654
- }
655
  }
656
 
657
- if ( isset( $_REQUEST['wpsc_admin_action'] ) && ($_REQUEST['wpsc_admin_action'] == 'purchlog_edit_status') ) {
658
- add_action( 'admin_init', 'wpsc_purchlog_edit_status' );
659
- }
660
 
661
  function wpsc_save_product_order() {
662
  global $wpdb;
@@ -1010,7 +989,7 @@ function wpsc_update_page_urls($auto = false) {
1010
  $changes_made = false;
1011
  foreach ( $wpsc_pageurl_option as $option_key => $page_string ) {
1012
  $post_id = $wpdb->get_var( "SELECT `ID` FROM `{$wpdb->posts}` WHERE `post_type` IN('page','post') AND `post_content` LIKE '%$page_string%' LIMIT 1" );
1013
- $the_new_link = get_permalink( $post_id );
1014
  if ( stristr( get_option( $option_key ), "https://" ) ) {
1015
  $the_new_link = str_replace( 'http://', "https://", $the_new_link );
1016
  }
26
  add_action( 'admin_init', 'wpsc_ajax_add_tracking' );
27
  }
28
 
 
 
 
 
 
 
 
 
 
 
 
29
  function wpsc_purchlog_email_trackid() {
30
  global $wpdb;
31
  $id = absint( $_POST['purchlog_id'] );
165
  }
166
 
167
  function wpsc_duplicate_product_process( $post ) {
 
 
 
168
 
169
  $new_post_date = $post->post_date;
170
  $new_post_date_gmt = get_gmt_from_date( $new_post_date );
181
  $defaults = array(
182
  'post_status' => $post->post_status,
183
  'post_type' => $new_post_type,
 
184
  'ping_status' => $ping_status,
185
  'post_parent' => $post->post_parent,
186
  'menu_order' => $post->menu_order,
291
  global $wpdb, $wpsc_gateways;
292
  get_currentuserinfo();
293
  $count = 0;
294
+ if ( ($_GET['rss_key'] == 'key') && is_numeric( $_GET['start_timestamp'] ) && is_numeric( $_GET['end_timestamp'] ) && current_user_can( 'manage_options' ) ) {
295
  $form_sql = "SELECT * FROM `" . WPSC_TABLE_CHECKOUT_FORMS . "` WHERE `active` = '1' AND `type` != 'heading' ORDER BY `checkout_order` DESC;";
296
  $form_data = $wpdb->get_results( $form_sql, ARRAY_A );
297
 
390
  }
391
 
392
  if ( ($_POST['remove_form_field'] == "true") && is_numeric( $_POST['form_id'] ) ) {
393
+ if ( current_user_can( 'manage_options' ) ) {
394
  $wpdb->query( $wpdb->prepare( "UPDATE `" . WPSC_TABLE_CHECKOUT_FORMS . "` SET `active` = '0' WHERE `id` = %d LIMIT 1 ;", $_POST['form_id'] ) );
395
  exit( ' ' );
396
  }
488
  }
489
 
490
  function wpsc_display_invoice() {
 
 
 
 
491
  $purchase_id = (int)$_GET['purchaselog_id'];
492
+ add_action('wpsc_packing_slip', 'wpsc_packing_slip');
493
+ do_action('wpsc_before_packing_slip', $purchase_id);
494
+ do_action('wpsc_packing_slip', $purchase_id);
495
  exit();
496
  }
497
  //other actions are here
629
  $wpdb->query( "UPDATE `" . WPSC_TABLE_PURCHASE_LOGS . "` SET processed='{$purchlog_status}' WHERE id='{$purchlog_id}'" );
630
 
631
  wpsc_clear_stock_claims();
632
+ wpsc_decrement_claimed_stock($purchlog_id);
633
 
634
+ if ( $purchlog_status == 3 )
635
  transaction_results($log_data['sessionid'],false,null);
 
636
  }
637
 
638
+ add_action( 'wp_ajax_purchlog_edit_status', 'wpsc_purchlog_edit_status' );
 
 
639
 
640
  function wpsc_save_product_order() {
641
  global $wpdb;
989
  $changes_made = false;
990
  foreach ( $wpsc_pageurl_option as $option_key => $page_string ) {
991
  $post_id = $wpdb->get_var( "SELECT `ID` FROM `{$wpdb->posts}` WHERE `post_type` IN('page','post') AND `post_content` LIKE '%$page_string%' LIMIT 1" );
992
+ $the_new_link = _get_page_link( $post_id );
993
  if ( stristr( get_option( $option_key ), "https://" ) ) {
994
  $the_new_link = str_replace( 'http://', "https://", $the_new_link );
995
  }
wpsc-admin/css/admin.css CHANGED
@@ -110,7 +110,7 @@ th#delete{
110
  width:60px;
111
  }
112
  th#status{
113
- width:150px;
114
  }
115
  .google_checkout_logo{
116
  padding-right:10px;
@@ -1751,6 +1751,8 @@ float: left;
1751
  .wpsc_var_description{
1752
  margin:20px 0 0 20px !important;
1753
  color:red;
1754
-
1755
-
 
 
1756
  }
110
  width:60px;
111
  }
112
  th#status{
113
+ width:200px;
114
  }
115
  .google_checkout_logo{
116
  padding-right:10px;
1751
  .wpsc_var_description{
1752
  margin:20px 0 0 20px !important;
1753
  color:red;
1754
+ }
1755
+
1756
+ .ajax-loading {
1757
+ visibility: hidden;
1758
  }
wpsc-admin/display-debug.page.php CHANGED
@@ -10,6 +10,8 @@
10
  * @since 3.7
11
  */
12
  function wpsc_debug_page() {
 
 
13
  global $wpdb;
14
  $fixpage = get_option( 'siteurl' ) . '/wp-admin/admin.php?page=wpsc-sales-logs&amp;subpage=upgrade-purchase-logs';
15
  ?>
@@ -150,6 +152,8 @@ function wpsc_debug_page() {
150
  }
151
 
152
  function wpsc_test_copying_themes() {
 
 
153
 
154
  $new_dir = @opendir( WPSC_THEMES_PATH );
155
  $num = 0;
@@ -175,6 +179,8 @@ function wpsc_test_copying_themes() {
175
  }
176
 
177
  function wpsc_group_and_update_download_links() {
 
 
178
  global $wpdb;
179
  $unique_file_names = $wpdb->get_col( "SELECT DISTINCT `filename` FROM `" . WPSC_TABLE_PRODUCT_FILES . "`" );
180
  foreach ( (array)$unique_file_names as $filename ) {
@@ -200,6 +206,8 @@ function wpsc_group_and_update_download_links() {
200
  * wpsc_clean_product_url_names, cleans dupicates
201
  */
202
  function wpsc_clean_product_url_names() {
 
 
203
  global $wpdb;
204
 
205
  $duplicated_meta_data = $wpdb->get_col( "SELECT `meta_value` FROM `" . WPSC_TABLE_PRODUCTMETA . "` WHERE `meta_key` IN('url_name') GROUP BY `meta_value` HAVING COUNT(`meta_value`) > 1 " );
@@ -226,6 +234,8 @@ function wpsc_clean_product_url_names() {
226
  * wpsc_redo_product_url_names, deletes all product URL names, then remakes then
227
  */
228
  function wpsc_redo_product_url_names() {
 
 
229
  global $wpdb;
230
 
231
  $product_data = $wpdb->get_results( "SELECT DISTINCT `products`.* FROM `" . WPSC_TABLE_PRODUCTMETA . "` AS `meta` LEFT JOIN `" . WPSC_TABLE_PRODUCT_LIST . "` AS `products` ON `meta`.`product_id` = `products`.`id` WHERE `products`.`active` = '1' ORDER BY `meta`.`meta_value` DESC", ARRAY_A );
@@ -267,6 +277,8 @@ function wpsc_redo_product_url_names() {
267
  }
268
 
269
  function wpsc_recreate_product_url_names() {
 
 
270
  global $wpdb;
271
 
272
  $product_data = $wpdb->get_results( "SELECT `id`, `name` FROM `" . WPSC_TABLE_PRODUCT_LIST . "` WHERE `active` IN ('1')", ARRAY_A );
@@ -310,6 +322,8 @@ function wpsc_recreate_product_url_names() {
310
  }
311
 
312
  function wpsc_mass_resize_thumbnails_and_clean_images() {
 
 
313
  global $wpdb;
314
 
315
  $height = get_option( 'product_image_height' );
10
  * @since 3.7
11
  */
12
  function wpsc_debug_page() {
13
+ if ( !current_user_can('manage_options') )
14
+ wp_die("You don't look like an administrator.");
15
  global $wpdb;
16
  $fixpage = get_option( 'siteurl' ) . '/wp-admin/admin.php?page=wpsc-sales-logs&amp;subpage=upgrade-purchase-logs';
17
  ?>
152
  }
153
 
154
  function wpsc_test_copying_themes() {
155
+ if ( !current_user_can('manage_options') )
156
+ wp_die("You don't look like an administrator.");
157
 
158
  $new_dir = @opendir( WPSC_THEMES_PATH );
159
  $num = 0;
179
  }
180
 
181
  function wpsc_group_and_update_download_links() {
182
+ if ( !current_user_can('manage_options') )
183
+ wp_die("You don't look like an administrator.");
184
  global $wpdb;
185
  $unique_file_names = $wpdb->get_col( "SELECT DISTINCT `filename` FROM `" . WPSC_TABLE_PRODUCT_FILES . "`" );
186
  foreach ( (array)$unique_file_names as $filename ) {
206
  * wpsc_clean_product_url_names, cleans dupicates
207
  */
208
  function wpsc_clean_product_url_names() {
209
+ if ( !current_user_can('manage_options') )
210
+ wp_die("You don't look like an administrator.");
211
  global $wpdb;
212
 
213
  $duplicated_meta_data = $wpdb->get_col( "SELECT `meta_value` FROM `" . WPSC_TABLE_PRODUCTMETA . "` WHERE `meta_key` IN('url_name') GROUP BY `meta_value` HAVING COUNT(`meta_value`) > 1 " );
234
  * wpsc_redo_product_url_names, deletes all product URL names, then remakes then
235
  */
236
  function wpsc_redo_product_url_names() {
237
+ if ( !current_user_can('manage_options') )
238
+ wp_die("You don't look like an administrator.");
239
  global $wpdb;
240
 
241
  $product_data = $wpdb->get_results( "SELECT DISTINCT `products`.* FROM `" . WPSC_TABLE_PRODUCTMETA . "` AS `meta` LEFT JOIN `" . WPSC_TABLE_PRODUCT_LIST . "` AS `products` ON `meta`.`product_id` = `products`.`id` WHERE `products`.`active` = '1' ORDER BY `meta`.`meta_value` DESC", ARRAY_A );
277
  }
278
 
279
  function wpsc_recreate_product_url_names() {
280
+ if ( !current_user_can('manage_options') )
281
+ wp_die("You don't look like an administrator.");
282
  global $wpdb;
283
 
284
  $product_data = $wpdb->get_results( "SELECT `id`, `name` FROM `" . WPSC_TABLE_PRODUCT_LIST . "` WHERE `active` IN ('1')", ARRAY_A );
322
  }
323
 
324
  function wpsc_mass_resize_thumbnails_and_clean_images() {
325
+ if ( !current_user_can('manage_options') )
326
+ wp_die("You don't look like an administrator.");
327
  global $wpdb;
328
 
329
  $height = get_option( 'product_image_height' );
wpsc-admin/display-items.page.php CHANGED
@@ -9,24 +9,8 @@
9
  */
10
 
11
 
12
- /**
13
- * wpsc_is_admin function.
14
- *
15
- * @access public
16
- * @return void
17
- * General use function for checking if user is on WPSC admin pages
18
- */
19
-
20
  require_once(WPSC_FILE_PATH . '/wpsc-admin/includes/products.php');
21
 
22
- function wpsc_is_admin() {
23
- global $pagenow, $current_screen;
24
-
25
- if( 'post.php' == $pagenow && 'wpsc-product' == $current_screen->post_type ) return true;
26
-
27
- return false;
28
-
29
- }
30
 
31
  /**
32
  * wpsc_additional_column_names function.
@@ -95,7 +79,7 @@ function wpsc_additional_column_name_variations( $columns ){
95
  *
96
  */
97
  function wpsc_additional_column_data( $column ) {
98
- global $post, $wpdb;
99
 
100
  $is_parent = ( bool )wpsc_product_has_children($post->ID);
101
  switch ( $column ) :
@@ -117,13 +101,13 @@ function wpsc_additional_column_data( $column ) {
117
  $src = wp_get_attachment_url( $attached_image->ID );
118
  ?>
119
  <div style='width:38px; height:38px; overflow:hidden;'>
120
- <img title='<?php _e( 'Drag to a new position', 'wpsc' ); ?>' src='<?php echo $src; ?>' alt='<?php echo $title; ?>' width='38' height='38' />
121
  </div>
122
  <?php
123
  } else {
124
  $image_url = WPSC_CORE_IMAGES_URL . "/no-image-uploaded.gif";
125
  ?>
126
- <img title='<?php _e( 'Drag to a new position', 'wpsc' ); ?>' src='<?php echo $image_url; ?>' alt='<?php echo $title; ?>' width='38' height='38' />
127
  <?php
128
  }
129
  break;
@@ -289,17 +273,25 @@ function wpsc_cats_restrict_manage_posts() {
289
  $tax_obj = get_taxonomy( $tax_slug );
290
  $tax_name = $tax_obj->labels->name;
291
  // retrieve array of term objects per taxonomy
292
- $terms = get_terms( $tax_slug );
293
  // output html for taxonomy dropdown filter
294
  echo "<select name='$tax_slug' id='$tax_slug' class='postform'>";
295
  echo "<option value=''>" . sprintf(_x('Show All %s', 'Show all [category name]', 'wpsc'), $tax_name) . "</option>";
296
- foreach ( $terms as $term )
297
- echo '<option value='. $term->slug, ( isset($_GET[$tax_slug]) && $_GET[$tax_slug] == $term->slug) ? ' selected="selected"' : '','>' . $term->name .' (' . $term->count .')</option>';
298
  echo "</select>";
299
  }
300
  }
301
  }
302
 
 
 
 
 
 
 
 
 
 
 
303
  /**
304
  * wpsc no minors allowed
305
  * Restrict the products page to showing only parent products and not variations.
@@ -334,7 +326,6 @@ add_filter( 'posts_orderby', 'wpsc_column_sql_orderby', 10, 2 );
334
  * @return void
335
  */
336
  function wpsc_update_featured_products() {
337
- global $wpdb;
338
  $is_ajax = (int)(bool)$_POST['ajax'];
339
  $product_id = absint( $_GET['product_id'] );
340
  check_admin_referer( 'feature_product_' . $product_id );
9
  */
10
 
11
 
 
 
 
 
 
 
 
 
12
  require_once(WPSC_FILE_PATH . '/wpsc-admin/includes/products.php');
13
 
 
 
 
 
 
 
 
 
14
 
15
  /**
16
  * wpsc_additional_column_names function.
79
  *
80
  */
81
  function wpsc_additional_column_data( $column ) {
82
+ global $post;
83
 
84
  $is_parent = ( bool )wpsc_product_has_children($post->ID);
85
  switch ( $column ) :
101
  $src = wp_get_attachment_url( $attached_image->ID );
102
  ?>
103
  <div style='width:38px; height:38px; overflow:hidden;'>
104
+ <img src='<?php echo $src; ?>' alt='<?php _e( 'Drag to a new position', 'wpsc' ); ?>' width='38' height='38' />
105
  </div>
106
  <?php
107
  } else {
108
  $image_url = WPSC_CORE_IMAGES_URL . "/no-image-uploaded.gif";
109
  ?>
110
+ <img src='<?php echo $image_url; ?>' alt='<?php _e( 'Drag to a new position', 'wpsc' ); ?>' width='38' height='38' />
111
  <?php
112
  }
113
  break;
273
  $tax_obj = get_taxonomy( $tax_slug );
274
  $tax_name = $tax_obj->labels->name;
275
  // retrieve array of term objects per taxonomy
 
276
  // output html for taxonomy dropdown filter
277
  echo "<select name='$tax_slug' id='$tax_slug' class='postform'>";
278
  echo "<option value=''>" . sprintf(_x('Show All %s', 'Show all [category name]', 'wpsc'), $tax_name) . "</option>";
279
+ wpsc_cats_restrict_manage_posts_print_terms($tax_slug);
 
280
  echo "</select>";
281
  }
282
  }
283
  }
284
 
285
+ function wpsc_cats_restrict_manage_posts_print_terms($taxonomy, $parent = 0, $level = 0){
286
+ $prefix = str_repeat( '&nbsp;&nbsp;&nbsp;' , $level );
287
+ $terms = get_terms( $taxonomy, array( 'parent' => $parent ) );
288
+ if( !($terms instanceof WP_Error) && !empty($terms) )
289
+ foreach ( $terms as $term ){
290
+ echo '<option value='. $term->slug, ( isset($_GET[$term->taxonomy]) && $_GET[$term->taxonomy] == $term->slug) ? ' selected="selected"' : '','>' . $prefix . $term->name .' (' . $term->count .')</option>';
291
+ wpsc_cats_restrict_manage_posts_print_terms($taxonomy, $term->term_id, $level+1);
292
+ }
293
+ }
294
+
295
  /**
296
  * wpsc no minors allowed
297
  * Restrict the products page to showing only parent products and not variations.
326
  * @return void
327
  */
328
  function wpsc_update_featured_products() {
 
329
  $is_ajax = (int)(bool)$_POST['ajax'];
330
  $product_id = absint( $_GET['product_id'] );
331
  check_admin_referer( 'feature_product_' . $product_id );
wpsc-admin/display-options-settings.page.php CHANGED
@@ -185,7 +185,7 @@ function country_list( $selected_country = null ) {
185
  * Get Shipping Form for wp-admin
186
  */
187
  function wpsc_get_shipping_form( $shippingname ) {
188
- global $wpdb, $wpsc_shipping_modules;
189
 
190
  if ( array_key_exists( $shippingname, $wpsc_shipping_modules ) ) {
191
  $shipping_forms = $wpsc_shipping_modules[$shippingname]->getForm();
@@ -202,7 +202,7 @@ function wpsc_get_shipping_form( $shippingname ) {
202
  * Get Payment Form for wp-admin
203
  */
204
  function wpsc_get_payment_form( $paymentname ,$selected_gateway_data='') {
205
- global $wpdb, $nzshpcrt_gateways;
206
 
207
  $payment_gateway_names = get_option('payment_gateway_names');
208
  $form = array();
185
  * Get Shipping Form for wp-admin
186
  */
187
  function wpsc_get_shipping_form( $shippingname ) {
188
+ global $wpsc_shipping_modules;
189
 
190
  if ( array_key_exists( $shippingname, $wpsc_shipping_modules ) ) {
191
  $shipping_forms = $wpsc_shipping_modules[$shippingname]->getForm();
202
  * Get Payment Form for wp-admin
203
  */
204
  function wpsc_get_payment_form( $paymentname ,$selected_gateway_data='') {
205
+ global $nzshpcrt_gateways;
206
 
207
  $payment_gateway_names = get_option('payment_gateway_names');
208
  $form = array();
wpsc-admin/display-sales-logs.php CHANGED
@@ -402,7 +402,6 @@ function wpsc_display_sales_logs() {
402
  }
403
 
404
  function get_purchaselogs_content(){
405
- global $purchlogs,$wpsc_purchase_log_statuses;
406
  while(wpsc_have_purch_items()) : wpsc_the_purch_item();
407
  ?>
408
  <tr>
@@ -417,6 +416,7 @@ function wpsc_display_sales_logs() {
417
  ?></a></td><!-- Details -->
418
  <td>
419
  <?php if(!wpsc_purchlogs_is_google_checkout()){ ?>
 
420
  <select class='selector' name='<?php echo wpsc_the_purch_item_id(); ?>' title='<?php echo wpsc_the_purch_item_id(); ?>' >
421
  <?php while(wpsc_have_purch_items_statuses()) : wpsc_the_purch_status(); ?>
422
  <option value='<?php echo wpsc_the_purch_status_id(); ?>' <?php echo wpsc_is_checked_status(); ?> ><?php echo wpsc_the_purch_status_name(); ?> </option>
@@ -441,6 +441,7 @@ function wpsc_display_sales_logs() {
441
  <input type='submit' name='submit' class='button' value='Add Tracking ID' />
442
  </td>
443
  <td colspan='4'>
 
444
  <a href='' title='<?php echo wpsc_the_purch_item_id(); ?>' class='sendTrackingEmail'><?php _e( 'Send Custom Message', 'wpsc' ); ?></a>
445
  </td>
446
  </tr>
402
  }
403
 
404
  function get_purchaselogs_content(){
 
405
  while(wpsc_have_purch_items()) : wpsc_the_purch_item();
406
  ?>
407
  <tr>
416
  ?></a></td><!-- Details -->
417
  <td>
418
  <?php if(!wpsc_purchlogs_is_google_checkout()){ ?>
419
+ <img src="<?php echo admin_url('images/wpspin_light.gif'); ?>" class="ajax-loading" alt="" style="position:relative; top:3px;" />
420
  <select class='selector' name='<?php echo wpsc_the_purch_item_id(); ?>' title='<?php echo wpsc_the_purch_item_id(); ?>' >
421
  <?php while(wpsc_have_purch_items_statuses()) : wpsc_the_purch_status(); ?>
422
  <option value='<?php echo wpsc_the_purch_status_id(); ?>' <?php echo wpsc_is_checked_status(); ?> ><?php echo wpsc_the_purch_status_name(); ?> </option>
441
  <input type='submit' name='submit' class='button' value='Add Tracking ID' />
442
  </td>
443
  <td colspan='4'>
444
+ <img src="<?php echo admin_url('images/wpspin_light.gif'); ?>" class="ajax-loading" alt="" style="position:relative; top:3px;" />
445
  <a href='' title='<?php echo wpsc_the_purch_item_id(); ?>' class='sendTrackingEmail'><?php _e( 'Send Custom Message', 'wpsc' ); ?></a>
446
  </td>
447
  </tr>
wpsc-admin/includes/display-items-functions.php CHANGED
@@ -161,7 +161,7 @@ function wpsc_price_control_forms() {
161
  </select>
162
  <?php _e( 'Price', 'wpsc' ); ?> :
163
  <input type='text' class='text' size='8' name='newCurrPrice[]' value='0.00' style='display:inline' />
164
- <a href='' class='deletelayer' rel='<?php echo $isocode; ?>'><img src='<?php echo WPSC_CORE_IMAGES_URL; ?>/cross.png' /></a>
165
 
166
  </div> <!-- close new_layer -->
167
  <?php
@@ -676,7 +676,7 @@ function wpsc_product_advanced_forms() {
676
  $product_meta['engraved'] = '';
677
 
678
  if( !isset( $product_meta['can_have_uploaded_image'] ) )
679
- $product_meta['can_have_uploaded_image '] = '';
680
 
681
  ?>
682
 
@@ -714,11 +714,10 @@ function wpsc_product_advanced_forms() {
714
  <tr>
715
  <td class='itemfirstcol' colspan='2'><br /> <strong><?php _e( 'Merchant Notes:', 'wpsc' ); ?></strong><br />
716
 
717
- <textarea cols='40' rows='3' name='meta[_wpsc_product_metadata][merchant_notes]' id='merchant_notes'>
718
- <?php if ( isset( $product_meta['merchant_notes'] ) )
719
- echo stripslashes( trim( $product_meta['merchant_notes'] ) );
720
- ?>
721
- </textarea>
722
  <small><?php _e( 'These notes are only available here.', 'wpsc' ); ?></small>
723
  </td>
724
  </tr>
@@ -970,7 +969,7 @@ function wpsc_filter_feature_image_text( $translation, $text, $domain ) {
970
  $translations = &get_translations_for_domain( $domain );
971
  return $translations->translate( 'The name is how it appears on your site. <br><div class="error"><strong>Please read this carefully before starting to work with variations:</strong><br />Variations in WP e-Commerce are divided into sets. For example set <strong>Color</strong> could have variations <strong>Red, Green,</strong> and <strong>Blue</strong>. To create a variation set simply enter the <strong>name</strong> and push Enter key on your keyboard or click <strong>Add New Variation/Set</strong> button in the bottom of this page. Then you will be able to select it from <strong>Variation set</strong> drop-down menu and add some variations to it. To add a new variation set just select <strong>None</strong> in <strong>Variation set</strong> drop-down menu.</div>', 'wpsc' );
972
  //this will never happen, this is here only for gettex to pick up the translation
973
- return __( 'The name is how it appears on your site. <br><div class="error"><strong>Please read this carefully before starting to work with variations:</strong><br />Variations in WP e-Commerce are divided into sets. For example set <strong>Color</strong> could have variations <strong>Red, Green,</strong> and <strong>Blue</strong>. To create a set simply enter <stron>Name</strong> and push Enter key on your keyboard or click <strong>Add New Variation/Set</strong> button in the bottom of this page. Now you can select the variation set that you\'ve just created from <strong>Variation set</strong> drop-down menu and add some variations to it.</div>', 'wpsc' );
974
  }
975
 
976
  return $translation;
@@ -1280,8 +1279,6 @@ case 'sale_price' :
1280
  </fieldset>
1281
  <?php
1282
  }
1283
- // TODO: this causes problems with wiping prices for now
1284
- add_action( 'bulk_edit_custom_box', 'wpsc_quick_edit_boxes', 10 );
1285
  add_action( 'quick_edit_custom_box', 'wpsc_quick_edit_boxes', 10, 2 );
1286
  add_action( 'save_post', 'wpsc_save_quickedit_box' );
1287
 
161
  </select>
162
  <?php _e( 'Price', 'wpsc' ); ?> :
163
  <input type='text' class='text' size='8' name='newCurrPrice[]' value='0.00' style='display:inline' />
164
+ <a href='' class='wpsc_delete_currency_layer'><img src='<?php echo WPSC_CORE_IMAGES_URL; ?>/cross.png' /></a>
165
 
166
  </div> <!-- close new_layer -->
167
  <?php
676
  $product_meta['engraved'] = '';
677
 
678
  if( !isset( $product_meta['can_have_uploaded_image'] ) )
679
+ $product_meta['can_have_uploaded_image'] = '';
680
 
681
  ?>
682
 
714
  <tr>
715
  <td class='itemfirstcol' colspan='2'><br /> <strong><?php _e( 'Merchant Notes:', 'wpsc' ); ?></strong><br />
716
 
717
+ <textarea cols='40' rows='3' name='meta[_wpsc_product_metadata][merchant_notes]' id='merchant_notes'><?php
718
+ if ( isset( $product_meta['merchant_notes'] ) )
719
+ echo stripslashes( trim( $product_meta['merchant_notes'] ) );
720
+ ?></textarea>
 
721
  <small><?php _e( 'These notes are only available here.', 'wpsc' ); ?></small>
722
  </td>
723
  </tr>
969
  $translations = &get_translations_for_domain( $domain );
970
  return $translations->translate( 'The name is how it appears on your site. <br><div class="error"><strong>Please read this carefully before starting to work with variations:</strong><br />Variations in WP e-Commerce are divided into sets. For example set <strong>Color</strong> could have variations <strong>Red, Green,</strong> and <strong>Blue</strong>. To create a variation set simply enter the <strong>name</strong> and push Enter key on your keyboard or click <strong>Add New Variation/Set</strong> button in the bottom of this page. Then you will be able to select it from <strong>Variation set</strong> drop-down menu and add some variations to it. To add a new variation set just select <strong>None</strong> in <strong>Variation set</strong> drop-down menu.</div>', 'wpsc' );
971
  //this will never happen, this is here only for gettex to pick up the translation
972
+ return __( 'The name is how it appears on your site. <br><div class="error"><strong>Please read this carefully before starting to work with variations:</strong><br />Variations in WP e-Commerce are divided into sets. For example set <strong>Color</strong> could have variations <strong>Red, Green,</strong> and <strong>Blue</strong>. To create a set simply enter <strong>Name</strong> and push Enter key on your keyboard or click <strong>Add New Variation/Set</strong> button in the bottom of this page. Now you can select the variation set that you\'ve just created from <strong>Variation set</strong> drop-down menu and add some variations to it.</div>', 'wpsc' );
973
  }
974
 
975
  return $translation;
1279
  </fieldset>
1280
  <?php
1281
  }
 
 
1282
  add_action( 'quick_edit_custom_box', 'wpsc_quick_edit_boxes', 10, 2 );
1283
  add_action( 'save_post', 'wpsc_save_quickedit_box' );
1284
 
wpsc-admin/includes/products.php CHANGED
@@ -36,7 +36,7 @@ function wpsc_admin_product_listing($parent_product = null) {
36
  */
37
  function wpsc_trashed_post_status($post_status){
38
  $post = get_post(get_the_ID());
39
- if('wpsc-product' == $post->post_type && 'trash' == $post->post_status && !in_array('trash', $post_status))
40
  $post_status[] = 'Trash';
41
 
42
  return $post_status;
@@ -58,6 +58,8 @@ function wpsc_product_row(&$product, $parent_product = null) {
58
 
59
  $global_product = $product;
60
  setup_postdata($product);
 
 
61
 
62
  $rowclass = 'alternate' == $rowclass ? '' : 'alternate';
63
  $post_owner = ( $current_user->ID == $product->post_author ? 'self' : 'other' );
@@ -80,7 +82,7 @@ function wpsc_product_row(&$product, $parent_product = null) {
80
  foreach ( $posts_columns as $column_name=>$column_display_name ) {
81
  $class = "class=\"$column_name column-$column_name\"";
82
 
83
- $attributes = "$class$style";
84
 
85
  switch ($column_name) {
86
 
@@ -121,13 +123,13 @@ function wpsc_product_row(&$product, $parent_product = null) {
121
  break;
122
 
123
  case 'title': /* !title case */
124
- $attributes = 'class="post-title column-title"' . $style;
125
 
126
  $edit_link = wp_nonce_url( $edit_link, 'edit-product_'.$product->ID );
127
  ?>
128
  <td <?php echo $attributes ?>>
129
  <strong>
130
- <?php if ( current_user_can('edit_post', $product->ID) && $product->post_status != 'trash' ) { ?>
131
  <a class="row-title" href="<?php echo $edit_link; ?>" title="<?php echo esc_attr(sprintf(__('Edit &#8220;%s&#8221;', 'wpsc'), $title)); ?>"><?php echo $title ?></a>
132
  <?php if($parent_product): ?>
133
  <input type="hidden" class="wpsc_ie_id wpsc_ie_field" value="<?php echo $product->ID ?>">
@@ -162,13 +164,13 @@ function wpsc_product_row(&$product, $parent_product = null) {
162
  if(wpsc_product_has_children($product->ID))
163
  $has_var = 'wpsc_has_variation';
164
  $actions = array();
165
- if ( current_user_can('edit_post', $product->ID) && 'trash' != $product->post_status ) {
166
  $actions['edit'] = '<a class="edit-product" href="'.$edit_link.'" title="' . esc_attr(__('Edit this product', 'wpsc')) . '">'. __('Edit', 'wpsc') . '</a>';
167
  $actions['quick_edit'] = "<a class='wpsc_editinline ".$has_var."' title='".esc_attr(__('Quick Edit', 'wpsc'))."' href='#'>".__('Quick Edit', 'wpsc')."</a>";
168
  }
169
 
170
  if ( in_array($product->post_status, array('pending', 'draft')) ) {
171
- if ( current_user_can('edit_product', $product->ID) ) {
172
  $actions['view'] = '<a href="'.get_permalink($product->ID).'" title="'.esc_attr(sprintf(__('Preview &#8220;%s&#8221;', 'wpsc'), $title)) . '" rel="permalink">'.__('Preview', 'wpsc').'</a>';
173
  }
174
  } else if ( 'trash' != $product->post_status ) {
@@ -374,7 +376,7 @@ function wpsc_product_row(&$product, $parent_product = null) {
374
 
375
  case 'control_edit': /* !control edit case */
376
  ?>
377
- <td><?php if ( current_user_can('edit_post', $product->ID) ) { echo "<a href='$edit_link' class='edit'>" . __('Edit', 'wpsc') . "</a>"; } ?></td>
378
  <?php
379
  break;
380
 
@@ -382,7 +384,7 @@ function wpsc_product_row(&$product, $parent_product = null) {
382
 
383
  case 'control_delete': /* !control delete case */
384
  ?>
385
- <td><?php if ( current_user_can('delete_post', $product->ID) ) { echo "<a href='" . wp_nonce_url("post.php?action=delete&amp;post=$id", 'delete-post_' . $product->ID) . "' class='delete'>" . __('Delete', 'wpsc') . "</a>"; } ?></td>
386
  <?php
387
  break;
388
 
36
  */
37
  function wpsc_trashed_post_status($post_status){
38
  $post = get_post(get_the_ID());
39
+ if( !empty($post) && 'wpsc-product' == $post->post_type && 'trash' == $post->post_status && !in_array('trash', $post_status))
40
  $post_status[] = 'Trash';
41
 
42
  return $post_status;
58
 
59
  $global_product = $product;
60
  setup_postdata($product);
61
+ $product_post_type_object = get_post_type_object('wpsc-product');
62
+ $current_user_can_edit_this_product = current_user_can( $product_post_type_object->cap->edit_post, $product->ID );
63
 
64
  $rowclass = 'alternate' == $rowclass ? '' : 'alternate';
65
  $post_owner = ( $current_user->ID == $product->post_author ? 'self' : 'other' );
82
  foreach ( $posts_columns as $column_name=>$column_display_name ) {
83
  $class = "class=\"$column_name column-$column_name\"";
84
 
85
+ $attributes = "$class";
86
 
87
  switch ($column_name) {
88
 
123
  break;
124
 
125
  case 'title': /* !title case */
126
+ $attributes = 'class="post-title column-title"';
127
 
128
  $edit_link = wp_nonce_url( $edit_link, 'edit-product_'.$product->ID );
129
  ?>
130
  <td <?php echo $attributes ?>>
131
  <strong>
132
+ <?php if ( $current_user_can_edit_this_product && $product->post_status != 'trash' ) { ?>
133
  <a class="row-title" href="<?php echo $edit_link; ?>" title="<?php echo esc_attr(sprintf(__('Edit &#8220;%s&#8221;', 'wpsc'), $title)); ?>"><?php echo $title ?></a>
134
  <?php if($parent_product): ?>
135
  <input type="hidden" class="wpsc_ie_id wpsc_ie_field" value="<?php echo $product->ID ?>">
164
  if(wpsc_product_has_children($product->ID))
165
  $has_var = 'wpsc_has_variation';
166
  $actions = array();
167
+ if ( $current_user_can_edit_this_product && 'trash' != $product->post_status ) {
168
  $actions['edit'] = '<a class="edit-product" href="'.$edit_link.'" title="' . esc_attr(__('Edit this product', 'wpsc')) . '">'. __('Edit', 'wpsc') . '</a>';
169
  $actions['quick_edit'] = "<a class='wpsc_editinline ".$has_var."' title='".esc_attr(__('Quick Edit', 'wpsc'))."' href='#'>".__('Quick Edit', 'wpsc')."</a>";
170
  }
171
 
172
  if ( in_array($product->post_status, array('pending', 'draft')) ) {
173
+ if ( $current_user_can_edit_this_product ) {
174
  $actions['view'] = '<a href="'.get_permalink($product->ID).'" title="'.esc_attr(sprintf(__('Preview &#8220;%s&#8221;', 'wpsc'), $title)) . '" rel="permalink">'.__('Preview', 'wpsc').'</a>';
175
  }
176
  } else if ( 'trash' != $product->post_status ) {
376
 
377
  case 'control_edit': /* !control edit case */
378
  ?>
379
+ <td><?php if ( $current_user_can_edit_this_product ) { echo "<a href='$edit_link' class='edit'>" . __('Edit', 'wpsc') . "</a>"; } ?></td>
380
  <?php
381
  break;
382
 
384
 
385
  case 'control_delete': /* !control delete case */
386
  ?>
387
+ <td><?php if ( $current_user_can_edit_this_product ) { echo "<a href='" . wp_nonce_url("post.php?action=delete&amp;post=$id", 'delete-post_' . $product->ID) . "' class='delete'>" . __('Delete', 'wpsc') . "</a>"; } ?></td>
388
  <?php
389
  break;
390
 
wpsc-admin/includes/updating-functions.php CHANGED
@@ -371,7 +371,6 @@ function wpsc_convert_variation_combinations() {
371
 
372
  // select the variation set associations
373
  $variation_set_associations = $wpdb->get_col("SELECT `variation_id` FROM ".WPSC_TABLE_VARIATION_ASSOC." WHERE `associated_id` = '{$original_id}'");
374
- //echo '$variation_set_associations<pre>'.print_r($variation_set_associations,1).'</pre>';
375
  // select the variation associations if the count of variation sets is greater than zero
376
  if(($original_id > 0) && (count($variation_set_associations) > 0)) {
377
  $variation_associations = $wpdb->get_col("SELECT `value_id` FROM ".WPSC_TABLE_VARIATION_VALUES_ASSOC." WHERE `product_id` = '{$original_id}' AND `variation_id` IN(".implode(", ", $variation_set_associations).") AND `visible` IN ('1')");
371
 
372
  // select the variation set associations
373
  $variation_set_associations = $wpdb->get_col("SELECT `variation_id` FROM ".WPSC_TABLE_VARIATION_ASSOC." WHERE `associated_id` = '{$original_id}'");
 
374
  // select the variation associations if the count of variation sets is greater than zero
375
  if(($original_id > 0) && (count($variation_set_associations) > 0)) {
376
  $variation_associations = $wpdb->get_col("SELECT `value_id` FROM ".WPSC_TABLE_VARIATION_VALUES_ASSOC." WHERE `product_id` = '{$original_id}' AND `variation_id` IN(".implode(", ", $variation_set_associations).") AND `visible` IN ('1')");
wpsc-admin/js/admin.js CHANGED
@@ -203,15 +203,9 @@ jQuery(document).ready(function(){
203
  //delete currency layer in admin product page
204
  jQuery('a.wpsc_delete_currency_layer').livequery(function(){
205
  jQuery(this).click(function(event){
206
- var currencySymbol = jQuery(this).attr('rel');
207
  jQuery(this).prev('input').val('');
208
  jQuery(this).prev('select').val('');
209
- jQuery(this).parent('.wpsc_additional_currency').hide();
210
-
211
- post_values = "currSymbol="+currencySymbol;
212
- jQuery.post('index.php?wpsc_admin_action=delete_currency_layer',post_values, function(returned_data){});
213
- //alert(currencySymbol);
214
-
215
  event.preventDefault();
216
  });
217
  });
@@ -432,9 +426,13 @@ jQuery(document).ready(function(){
432
  jQuery('.selector').change(function(){
433
  purchlog_id = jQuery(this).attr('title');
434
  purchlog_status = jQuery(this).val();
435
- post_values = "purchlog_id="+purchlog_id+"&purchlog_status="+purchlog_status;
436
- jQuery.post( 'index.php?ajax=true&wpsc_admin_action=purchlog_edit_status', post_values, function(returned_data) { });
437
-
 
 
 
 
438
  if(purchlog_status == 4){
439
  jQuery('tr.log'+purchlog_id).show();
440
 
@@ -444,7 +442,9 @@ jQuery(document).ready(function(){
444
  jQuery('.sendTrackingEmail').click(function(event){
445
  purchlog_id = jQuery(this).attr('title');
446
  post_values = "purchlog_id="+purchlog_id;
447
- jQuery.post( 'index.php?wpsc_admin_action=purchlog_email_trackid', post_values, function(returned_data) { });
 
 
448
  event.preventDefault();
449
  });
450
 
203
  //delete currency layer in admin product page
204
  jQuery('a.wpsc_delete_currency_layer').livequery(function(){
205
  jQuery(this).click(function(event){
 
206
  jQuery(this).prev('input').val('');
207
  jQuery(this).prev('select').val('');
208
+ jQuery(this).parent('div:first').hide();
 
 
 
 
 
209
  event.preventDefault();
210
  });
211
  });
426
  jQuery('.selector').change(function(){
427
  purchlog_id = jQuery(this).attr('title');
428
  purchlog_status = jQuery(this).val();
429
+ post_values = "action=purchlog_edit_status&purchlog_id="+purchlog_id+"&purchlog_status="+purchlog_status;
430
+ var ajax_loading = jQuery(this).prev('.ajax-loading');
431
+ ajax_loading.css('visibility', 'visible');
432
+ jQuery.post( ajaxurl, post_values, function(returned_data) {
433
+ ajax_loading.css('visibility', 'hidden');
434
+ });
435
+
436
  if(purchlog_status == 4){
437
  jQuery('tr.log'+purchlog_id).show();
438
 
442
  jQuery('.sendTrackingEmail').click(function(event){
443
  purchlog_id = jQuery(this).attr('title');
444
  post_values = "purchlog_id="+purchlog_id;
445
+ var ajax_loader = jQuery(this).prev('.ajax-loading');
446
+ ajax_loader.css('visibility', 'visible');
447
+ jQuery.post( 'index.php?wpsc_admin_action=purchlog_email_trackid', post_values, function(returned_data) { ajax_loader.css('visibility', 'hidden'); });
448
  event.preventDefault();
449
  });
450
 
wpsc-core/js/wp-e-commerce.js CHANGED
@@ -213,7 +213,7 @@ jQuery(document).ready(function () {
213
  wpsc_shipping_same_as_billing: true
214
  };
215
 
216
- jQuery.post(ajaxurl, data, function(response) {
217
  });
218
  wpsc_shipping_same_as_billing();
219
  } else {
@@ -221,7 +221,7 @@ jQuery(document).ready(function () {
221
  action: 'wpsc_shipping_same_as_billing',
222
  wpsc_shipping_same_as_billing: false
223
  };
224
- jQuery.post(ajaxurl, data, function(response) {
225
  });
226
  jQuery(this).parents('table:first').find('tr').show();
227
  jQuery('.shipping_country_name').show();
213
  wpsc_shipping_same_as_billing: true
214
  };
215
 
216
+ jQuery.post(wpsc_ajax.ajaxurl, data, function(response) {
217
  });
218
  wpsc_shipping_same_as_billing();
219
  } else {
221
  action: 'wpsc_shipping_same_as_billing',
222
  wpsc_shipping_same_as_billing: false
223
  };
224
+ jQuery.post(wpsc_ajax.ajaxurl, data, function(response) {
225
  });
226
  jQuery(this).parents('table:first').find('tr').show();
227
  jQuery('.shipping_country_name').show();
wpsc-core/wpsc-constants.php CHANGED
@@ -28,7 +28,7 @@ function wpsc_core_constants() {
28
  // Define Plugin version
29
  define( 'WPSC_VERSION', '3.8' );
30
  define( 'WPSC_MINOR_VERSION', ( '00000' . microtime( true ) ) );
31
- define( 'WPSC_PRESENTABLE_VERSION', '3.8 RC3' );
32
 
33
  // Define Debug Variables for developers
34
  define( 'WPSC_DEBUG', false );
@@ -309,6 +309,4 @@ function wpsc_core_setup_globals() {
309
  if ( !empty( $selected_theme ) && file_exists( WPSC_THEMES_PATH . $selected_theme . '/' . $selected_theme . '.php' ) )
310
  include_once( WPSC_THEMES_PATH . $selected_theme . '/' . $selected_theme . '.php' );
311
 
312
- }
313
-
314
- ?>
28
  // Define Plugin version
29
  define( 'WPSC_VERSION', '3.8' );
30
  define( 'WPSC_MINOR_VERSION', ( '00000' . microtime( true ) ) );
31
+ define( 'WPSC_PRESENTABLE_VERSION', '3.8 RC4' );
32
 
33
  // Define Debug Variables for developers
34
  define( 'WPSC_DEBUG', false );
309
  if ( !empty( $selected_theme ) && file_exists( WPSC_THEMES_PATH . $selected_theme . '/' . $selected_theme . '.php' ) )
310
  include_once( WPSC_THEMES_PATH . $selected_theme . '/' . $selected_theme . '.php' );
311
 
312
+ }
 
 
wpsc-core/wpsc-deprecated.php CHANGED
@@ -63,6 +63,15 @@ function nzshpcrt_shopping_basket( $input = null, $override_state = null ) {
63
  return wpsc_shopping_cart( $input, $override_state );
64
  }
65
 
 
 
 
 
 
 
 
 
 
66
  /**
67
  * Filter: wpsc-purchlogitem-links-start
68
  *
@@ -374,4 +383,59 @@ function wpsc_product_image_html( $image_name, $product_id ) {
374
  return false;
375
  }
376
 
377
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  return wpsc_shopping_cart( $input, $override_state );
64
  }
65
 
66
+
67
+ /**
68
+ * Function show_cats_brands
69
+ * deprecated as we do not have brands anymore...
70
+ *
71
+ */
72
+ function show_cats_brands($category_group = null , $display_method = null, $order_by = 'name', $image = null) {
73
+ _deprecated_function( __FUNCTION__, '3.8', 'wpsc_shopping_cart');
74
+ }
75
  /**
76
  * Filter: wpsc-purchlogitem-links-start
77
  *
383
  return false;
384
  }
385
 
386
+ function wpsc_delete_currency_layer() {
387
+ _deprecated_function( __FUNCTION__, '3.8');
388
+ return false;
389
+ }
390
+
391
+ function wpsc_akst_send_mail() {
392
+ _deprecated_function( __FUNCTION__, '3.8');
393
+ return false;
394
+ }
395
+
396
+ function wpsc_akst_hide_pop() {
397
+ _deprecated_function( __FUNCTION__, '3.8');
398
+ return false;
399
+ }
400
+
401
+ function wpsc_akst_page() {
402
+ _deprecated_function( __FUNCTION__, '3.8');
403
+ return false;
404
+ }
405
+
406
+ function wpsc_akst_share_link($action = 'print') {
407
+ _deprecated_function( __FUNCTION__, '3.8');
408
+ if($action == 'print')
409
+ echo '<div class="st_sharethis" displayText="ShareThis"></div>';
410
+ else
411
+ return '<div class="st_sharethis" displayText="ShareThis"></div>';
412
+ return false;
413
+ }
414
+
415
+ function wpsc_akst_share_form() {
416
+ _deprecated_function( __FUNCTION__, '3.8');
417
+ return false;
418
+ }
419
+
420
+ function wpsc_has_shipping_form() {
421
+ _deprecated_function( __FUNCTION__, '3.8');
422
+ return false;
423
+ }
424
+
425
+ /**
426
+ * wpsc_is_admin function.
427
+ *
428
+ * @access public
429
+ * @return void
430
+ * General use function for checking if user is on WPSC admin pages
431
+ */
432
+
433
+ function wpsc_is_admin() {
434
+ _deprecated_function( __FUNCTION__, '3.8');
435
+ global $pagenow, $current_screen;
436
+
437
+ if( 'post.php' == $pagenow && 'wpsc-product' == $current_screen->post_type ) return true;
438
+
439
+ return false;
440
+
441
+ }
wpsc-core/wpsc-functions.php CHANGED
@@ -10,19 +10,6 @@
10
  * @since 3.8
11
  */
12
 
13
- /**
14
- * wpsc_core_load_textdomain()
15
- *
16
- * Load up the WPEC textdomain
17
- */
18
- function wpsc_core_load_textdomain() {
19
- //if there is a translation file in wp-content/langauges then load it, else load from default location
20
- //this is to alow users modify translations and don't loose modifications when upgrading
21
- if( !load_plugin_textdomain( 'wpsc', false, '../languages/' ) )
22
- load_plugin_textdomain( 'wpsc', false, dirname( plugin_basename( __FILE__ ) ) . '/../wpsc-languages/' );
23
- }
24
- add_action( 'plugins_loaded', 'wpsc_core_load_textdomain' );
25
-
26
  add_filter( 'intermediate_image_sizes_advanced', 'wpsc_intermediate_image_sizes_advanced', 10, 1 );
27
 
28
  function wpsc_intermediate_image_sizes_advanced($sizes){
@@ -250,12 +237,12 @@ function wpsc_core_load_shipping_modules() {
250
  * @since 3.7.6.1
251
  */
252
  function wpsc_update_notice() {
253
- $info_title = __( 'Please Note', 'wpsc' );
254
- $info_text = sprintf( __( 'Before upgrading you should check the <a %s>upgrade information</a> and changelog as you may need to make updates to your template files.', 'wpsc' ), 'href="http://getshopped.org/resources/docs/upgrades/staying-current/" target="_blank"' );
255
- echo '<div style="border-top:1px solid #CCC; margin-top:3px; padding-top:3px; font-weight:normal;"><strong style="color:#CC0000">' . strip_tags( $info_title ) . '</strong>: ' . strip_tags( $info_text, '<br><a><strong><em><span>' ) . '</div>';
256
  }
257
  if ( is_admin() )
258
- add_action( 'in_plugin_update_message-' . plugin_basename( __FILE__ ), 'wpsc_update_notice' );
259
 
260
  function wpsc_add_product_price_to_rss() {
261
  global $post;
10
  * @since 3.8
11
  */
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  add_filter( 'intermediate_image_sizes_advanced', 'wpsc_intermediate_image_sizes_advanced', 10, 1 );
14
 
15
  function wpsc_intermediate_image_sizes_advanced($sizes){
237
  * @since 3.7.6.1
238
  */
239
  function wpsc_update_notice() {
240
+ $info_title = __( 'Please backup your website before updating!', 'wpsc' );
241
+ $info_text = __( 'Lots of things have changed in this version. Before updating please backup your database and files in case anything goes wrong.', 'wpsc' );
242
+ echo '<div style="border-top:1px solid #CCC; margin-top:3px; padding-top:3px; font-weight:normal;"><strong style="color:#CC0000">' . strip_tags( $info_title ) . '</strong> ' . strip_tags( $info_text, '<br><a><strong><em><span>' ) . '</div>';
243
  }
244
  if ( is_admin() )
245
+ add_action( 'in_plugin_update_message-' . WPSC_DIR_NAME . '/wp-shopping-cart.php', 'wpsc_update_notice' );
246
 
247
  function wpsc_add_product_price_to_rss() {
248
  global $post;
wpsc-core/wpsc-includes.php CHANGED
@@ -31,10 +31,6 @@ require_once( WPSC_FILE_PATH . '/wpsc-includes/upgrades.php' );
31
  // Editor
32
  require_once( WPSC_CORE_JS_PATH . '/tinymce3/tinymce.php' );
33
 
34
- // Share This
35
- if ( ( get_option( 'wpsc_share_this' ) == 1 ) && ( get_option( 'product_list_url' ) != '' ) )
36
- include_once( WPSC_FILE_PATH . '/wpsc-includes/share-this.php' );
37
-
38
  require_once( WPSC_FILE_PATH . '/wpsc-includes/currency_converter.inc.php' );
39
  require_once( WPSC_FILE_PATH . '/wpsc-includes/shopping_cart_functions.php' );
40
 
31
  // Editor
32
  require_once( WPSC_CORE_JS_PATH . '/tinymce3/tinymce.php' );
33
 
 
 
 
 
34
  require_once( WPSC_FILE_PATH . '/wpsc-includes/currency_converter.inc.php' );
35
  require_once( WPSC_FILE_PATH . '/wpsc-includes/shopping_cart_functions.php' );
36
 
wpsc-core/wpsc-installer.php CHANGED
@@ -244,7 +244,7 @@ function wpsc_install() {
244
  ));
245
  $newpages = true;
246
  }
247
- update_option( $pages['products-page']['option'], get_permalink( $products_page_id ) );
248
  //done. products page created. no we can unset products page data and create all other pages.
249
 
250
  //unset products page
@@ -524,12 +524,13 @@ function wpsc_create_or_update_tables( $debug = false ) {
524
  $wpdb->query( "ALTER TABLE `$table_name` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci" );
525
  }
526
  }
527
- //get the column list
528
- $existing_table_column_data = $wpdb->get_results( "SHOW FULL COLUMNS FROM `$table_name`", ARRAY_A );
529
-
530
  if ( isset( $table_data['actions']['before']['all'] ) && is_callable( $table_data['actions']['before']['all'] ) ) {
531
  $table_data['actions']['before']['all']();
532
  }
 
 
 
533
 
534
  foreach ( (array)$existing_table_column_data as $existing_table_column ) {
535
  $column_name = $existing_table_column['Field'];
@@ -765,8 +766,8 @@ function wpsc_add_checkout_fields() {
765
  }
766
  function wpsc_rename_checkout_column(){
767
  global $wpdb;
768
- $sql = "SELECT `checkout_order` FROM `" . WPSC_TABLE_CHECKOUT_FORMS . "`";
769
- $col = $wpdb->get_col($sql);
770
  if(empty($col)){
771
  $sql = "ALTER TABLE `" . WPSC_TABLE_CHECKOUT_FORMS . "` CHANGE `order` `checkout_order` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0'";
772
  $wpdb->query($sql);
244
  ));
245
  $newpages = true;
246
  }
247
+ update_option( $pages['products-page']['option'], _get_page_link($products_page_id) );
248
  //done. products page created. no we can unset products page data and create all other pages.
249
 
250
  //unset products page
524
  $wpdb->query( "ALTER TABLE `$table_name` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci" );
525
  }
526
  }
527
+
 
 
528
  if ( isset( $table_data['actions']['before']['all'] ) && is_callable( $table_data['actions']['before']['all'] ) ) {
529
  $table_data['actions']['before']['all']();
530
  }
531
+
532
+ //get the column list
533
+ $existing_table_column_data = $wpdb->get_results( "SHOW FULL COLUMNS FROM `$table_name`", ARRAY_A );
534
 
535
  foreach ( (array)$existing_table_column_data as $existing_table_column ) {
536
  $column_name = $existing_table_column['Field'];
766
  }
767
  function wpsc_rename_checkout_column(){
768
  global $wpdb;
769
+ $sql = "SHOW COLUMNS FROM `" . WPSC_TABLE_CHECKOUT_FORMS . "` LIKE 'checkout_order'";
770
+ $col = $wpdb->get_results($sql);
771
  if(empty($col)){
772
  $sql = "ALTER TABLE `" . WPSC_TABLE_CHECKOUT_FORMS . "` CHANGE `order` `checkout_order` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0'";
773
  $wpdb->query($sql);
wpsc-includes/ajax.functions.php CHANGED
@@ -88,7 +88,7 @@ function wpsc_add_to_cart() {
88
  }
89
  }
90
 
91
- if ( $_GET['ajax'] == 'true' ) {
92
  if ( ($product_id != null) && (get_option( 'fancy_notifications' ) == 1) ) {
93
  echo "if(jQuery('#fancy_notification_content')) {\n\r";
94
  echo " jQuery('#fancy_notification_content').html(\"" . str_replace( array( "\n", "\r" ), array( '\n', '\r' ), addslashes( fancy_notification_content( $cart_messages ) ) ) . "\");\n\r";
@@ -978,16 +978,7 @@ function wpsc_download_file() {
978
  }
979
 
980
  $file_id = $download_data['fileid'];
981
- $file_data = wpsc_get_downloadable_files($download_data['product_id']);
982
- if(($count =count($file_data)) >= 1){
983
- $file_data = $file_data[$count-1];
984
- }else{
985
- $prod_id = $download_data['product_id'];
986
- $file_data = wpsc_get_downloadable_files($prod_id);
987
-
988
- if(($count =count($file_data)) >= 1)
989
- $file_data = $file_data[$count-1];
990
- }
991
 
992
  if ( $file_data == null ) {
993
  exit( _e( 'This download is no longer valid, Please contact the site administrator for more information.', 'wpsc' ) );
@@ -1026,14 +1017,7 @@ function wpsc_download_file() {
1026
 
1027
  $file_path = WPSC_FILE_DIR . basename( $file_data->post_title );
1028
  $file_name = basename( $file_data->post_title );
1029
- if(!is_file( $file_path )){
1030
- $sql = 'SELECT `idhash` FROM `'.WPSC_TABLE_PRODUCT_FILES.'` WHERE filename = "'.$file_name.'"';
1031
- $file_hash = $wpdb->get_var($sql);
1032
- if(!empty($file_name))
1033
- $file_path = WPSC_FILE_DIR . basename( $file_hash );
1034
- $file_path = WPSC_FILE_DIR . $file_data->post_name;
1035
- }
1036
-
1037
  if ( is_file( $file_path ) ) {
1038
  if( !ini_get('safe_mode') ) set_time_limit(0);
1039
  header( 'Content-Type: ' . $file_data->post_mime_type );
@@ -1061,6 +1045,8 @@ function wpsc_download_file() {
1061
  session_destroy();
1062
  wpsc_readfile_chunked( $file_path );
1063
  exit();
 
 
1064
  }
1065
  } else {
1066
  exit( _e( 'This download is no longer valid, Please contact the site administrator for more information.', 'wpsc' ) );
88
  }
89
  }
90
 
91
+ if ( isset($_GET['ajax']) && $_GET['ajax'] == 'true' ) {
92
  if ( ($product_id != null) && (get_option( 'fancy_notifications' ) == 1) ) {
93
  echo "if(jQuery('#fancy_notification_content')) {\n\r";
94
  echo " jQuery('#fancy_notification_content').html(\"" . str_replace( array( "\n", "\r" ), array( '\n', '\r' ), addslashes( fancy_notification_content( $cart_messages ) ) ) . "\");\n\r";
978
  }
979
 
980
  $file_id = $download_data['fileid'];
981
+ $file_data = wpsc_get_downloadable_file($file_id);
 
 
 
 
 
 
 
 
 
982
 
983
  if ( $file_data == null ) {
984
  exit( _e( 'This download is no longer valid, Please contact the site administrator for more information.', 'wpsc' ) );
1017
 
1018
  $file_path = WPSC_FILE_DIR . basename( $file_data->post_title );
1019
  $file_name = basename( $file_data->post_title );
1020
+
 
 
 
 
 
 
 
1021
  if ( is_file( $file_path ) ) {
1022
  if( !ini_get('safe_mode') ) set_time_limit(0);
1023
  header( 'Content-Type: ' . $file_data->post_mime_type );
1045
  session_destroy();
1046
  wpsc_readfile_chunked( $file_path );
1047
  exit();
1048
+ }else{
1049
+ wp_die(__('Double complete file fail - sorry something has gone wrong!', 'wpsc'));
1050
  }
1051
  } else {
1052
  exit( _e( 'This download is no longer valid, Please contact the site administrator for more information.', 'wpsc' ) );
wpsc-includes/cart.class.php CHANGED
@@ -1825,7 +1825,7 @@ class wpsc_cart_item {
1825
 
1826
  $method = $this->cart->selected_shipping_method;
1827
  $shipping = 0;
1828
- if(method_exists( $wpsc_shipping_modules[$method], "get_item_shipping" )) {
1829
  $shipping = $wpsc_shipping_modules[$this->cart->selected_shipping_method]->get_item_shipping($this);
1830
  }
1831
  if($this->cart->has_total_shipping_discount()) {
1825
 
1826
  $method = $this->cart->selected_shipping_method;
1827
  $shipping = 0;
1828
+ if( !empty($method) && method_exists( $wpsc_shipping_modules[$method], "get_item_shipping" )) {
1829
  $shipping = $wpsc_shipping_modules[$this->cart->selected_shipping_method]->get_item_shipping($this);
1830
  }
1831
  if($this->cart->has_total_shipping_discount()) {
wpsc-includes/category.functions.php CHANGED
@@ -140,7 +140,7 @@ function wpsc_print_category_classes($category_to_print = false, $echo = true) {
140
  if( $category_to_print['term_id'] == $curr_cat->term_id )
141
  $result = ' wpsc-current-cat ';
142
  //else check if the category that we are printing is parent of current category
143
- elseif ( in_array($category_to_print[term_id], $curr_cat_parents) )
144
  $result = ' wpsc-cat-ancestor ';
145
  }
146
  if( isset($result) )
140
  if( $category_to_print['term_id'] == $curr_cat->term_id )
141
  $result = ' wpsc-current-cat ';
142
  //else check if the category that we are printing is parent of current category
143
+ elseif ( in_array($category_to_print['term_id'], $curr_cat_parents) )
144
  $result = ' wpsc-cat-ancestor ';
145
  }
146
  if( isset($result) )
wpsc-includes/display.functions.php CHANGED
@@ -250,7 +250,7 @@ function wpsc_refresh_page_urls( $content ) {
250
  $changes_made = false;
251
  foreach ( $wpsc_pageurl_option as $option_key => $page_string ) {
252
  $post_id = $wpdb->get_var( "SELECT `ID` FROM `{$wpdb->posts}` WHERE `post_type` IN('page','post') AND `post_content` LIKE '%$page_string%' AND `post_type` NOT IN('revision') LIMIT 1" );
253
- $the_new_link = get_permalink( $post_id );
254
 
255
  if ( stristr( get_option( $option_key ), "https://" ) )
256
  $the_new_link = str_replace( 'http://', "https://", $the_new_link );
250
  $changes_made = false;
251
  foreach ( $wpsc_pageurl_option as $option_key => $page_string ) {
252
  $post_id = $wpdb->get_var( "SELECT `ID` FROM `{$wpdb->posts}` WHERE `post_type` IN('page','post') AND `post_content` LIKE '%$page_string%' AND `post_type` NOT IN('revision') LIMIT 1" );
253
+ $the_new_link = _get_page_link( $post_id );
254
 
255
  if ( stristr( get_option( $option_key ), "https://" ) )
256
  $the_new_link = str_replace( 'http://', "https://", $the_new_link );
wpsc-includes/misc.functions.php CHANGED
@@ -604,21 +604,10 @@ function wpsc_readfile_chunked( $filename, $retbytes = true ) {
604
  function wpsc_clear_stock_claims() {
605
  global $wpdb;
606
  //time
607
- $old_claimed_stock_timestamp = mktime( (date( 'H' ) - 1 ), date( 'i' ), date( 's' ), date( 'm' ), date( 'd' ), date( 'Y' ) );
608
  $old_claimed_stock_datetime = date( "Y-m-d H:i:s", $old_claimed_stock_timestamp );
609
  /// Delete the old claims on stock (only those that weren't sold)
610
  $wpdb->query( "DELETE FROM `" . WPSC_TABLE_CLAIMED_STOCK . "` WHERE `last_activity` < '{$old_claimed_stock_datetime}' AND `cart_submitted` = '0'" );
611
- // get the number of items that has been actually sold
612
- $sold = $wpdb->get_results( "SELECT product_id, variation_stock_id, cart_id, stock_claimed FROM `" . WPSC_TABLE_CLAIMED_STOCK . "` WHERE `last_activity` < '{$old_claimed_stock_datetime}' AND `cart_submitted` = '1'" );
613
-
614
- //decrement stock
615
- foreach((array)$sold as $sold_product){
616
- $stock = get_product_meta( $sold_product->product_id, 'stock', true );
617
- //decrement product stock
618
- update_product_meta( $sold_product->product_id, 'stock', $stock - $sold_product->stock_claimed );
619
- //delete from claimed stock
620
- $wpdb->query( "DELETE FROM `" . WPSC_TABLE_CLAIMED_STOCK . "` WHERE `product_id` = '" . $sold_product->product_id . "' AND `cart_id` = '" . $sold_product->cart_id . "'" );
621
- }
622
  }
623
 
624
  add_action( 'wpsc_daily_cron_tasks', 'wpsc_clear_stock_claims' );
604
  function wpsc_clear_stock_claims() {
605
  global $wpdb;
606
  //time
607
+ $old_claimed_stock_timestamp = mktime( date( 'H' ), date( 'i' ), date( 's' ), date( 'm' ), date( 'd' ) - 7, date( 'Y' ) );
608
  $old_claimed_stock_datetime = date( "Y-m-d H:i:s", $old_claimed_stock_timestamp );
609
  /// Delete the old claims on stock (only those that weren't sold)
610
  $wpdb->query( "DELETE FROM `" . WPSC_TABLE_CLAIMED_STOCK . "` WHERE `last_activity` < '{$old_claimed_stock_datetime}' AND `cart_submitted` = '0'" );
 
 
 
 
 
 
 
 
 
 
 
611
  }
612
 
613
  add_action( 'wpsc_daily_cron_tasks', 'wpsc_clear_stock_claims' );
wpsc-includes/processing.functions.php CHANGED
@@ -106,25 +106,32 @@ function wpsc_currency_display( $price_in, $args = null ) {
106
  * @return string a price with a currency sign
107
  */
108
  function wpsc_decrement_claimed_stock($purchase_log_id) {
109
- global $wpdb;
110
- $all_claimed_stock = $wpdb->get_results($wpdb->prepare("SELECT * FROM `".WPSC_TABLE_CLAIMED_STOCK."` WHERE `cart_id` IN('%s') AND `cart_submitted` IN('1')", $purchase_log_id), ARRAY_A);
 
 
111
 
112
- foreach((array)$all_claimed_stock as $claimed_stock) {
113
- // for people to have claimed stock, it must have been available to take, no need to look at the existing stock, just subtract from it
114
- // If this is ever wrong, and you get negative stock, do not fix it here, go find the real cause of the problem
115
- $product_id = absint($claimed_stock['product_id']);
116
- $product = get_post($product_id);
117
- $current_stock = get_post_meta($product_id, '_wpsc_stock', true);
118
- $remaining_stock = $current_stock - $claimed_stock['stock_claimed'];
119
- update_post_meta($product_id, '_wpsc_stock', $remaining_stock);
120
-
121
- $remaining_stock = $wpdb->get_row($sql_query, ARRAY_A);
122
- if($remaining_stock == 0 && get_product_meta($product_id,'unpublish_when_none_left',true) == 1){
123
- wp_mail(get_option('admin_email'), sprintf(__('%s is out of stock', 'wpsc'), $product->post_title), sprintf(__('Remaining stock of %s is 0. Product was unpublished.', 'wpsc'), $product->post_title) );
124
- $wpdb->query("UPDATE `".$wpdb->posts."` SET `post_status` = 'draft' WHERE `ID` = '{$product_id}'");
 
 
 
 
 
 
125
  }
126
  }
127
- $wpdb->query($wpdb->prepare("DELETE FROM `".WPSC_TABLE_CLAIMED_STOCK."` WHERE `cart_id` IN ('%s')", $purchase_log_id));
128
  }
129
 
130
  /**
106
  * @return string a price with a currency sign
107
  */
108
  function wpsc_decrement_claimed_stock($purchase_log_id) {
109
+ global $wpdb;
110
+
111
+ //processed
112
+ $all_claimed_stock = $wpdb->get_results($wpdb->prepare("SELECT `cs`.`product_id`, `cs`.`stock_claimed`, `pl`.`id`, `pl`.`processed` FROM `" . WPSC_TABLE_CLAIMED_STOCK . "` `cs` JOIN `" . WPSC_TABLE_PURCHASE_LOGS . "` `pl` ON `cs`.`cart_id` = `pl`.`id` WHERE `cs`.`cart_id` = '%s'", $purchase_log_id));
113
 
114
+ if( !empty( $all_claimed_stock ) ){
115
+ switch($all_claimed_stock[0]->processed){
116
+ case 3:
117
+ case 4:
118
+ case 5:
119
+ foreach((array)$all_claimed_stock as $claimed_stock) {
120
+ $product = get_post($claimed_stock->product_id);
121
+ $current_stock = get_post_meta($product->ID, '_wpsc_stock', true);
122
+ $remaining_stock = $current_stock - $claimed_stock->stock_claimed;
123
+ update_product_meta($product->ID, 'stock', $remaining_stock);
124
+ $product_meta = get_product_meta($product->ID,'product_metadata',true);
125
+ if( $remaining_stock < 1 && $product_meta["unpublish_when_none_left"] == 1){
126
+ wp_mail(get_option('admin_email'), sprintf(__('%s is out of stock', 'wpsc'), $product->post_title), sprintf(__('Remaining stock of %s is 0. Product was unpublished.', 'wpsc'), $product->post_title) );
127
+ $wpdb->query("UPDATE `".$wpdb->posts."` SET `post_status` = 'draft' WHERE `ID` = '{$product->ID}'");
128
+ }
129
+ }
130
+ case 6:
131
+ $wpdb->query($wpdb->prepare("DELETE FROM `".WPSC_TABLE_CLAIMED_STOCK."` WHERE `cart_id` IN ('%s')", $purchase_log_id));
132
+ break;
133
  }
134
  }
 
135
  }
136
 
137
  /**
wpsc-includes/product-template.php CHANGED
@@ -38,7 +38,6 @@ function wpsc_a_page_url($page=null) {
38
  $curpage = $wp_query->query_vars['paged'];
39
  if($page != '')
40
  $wp_query->query_vars['paged'] = $page;
41
-
42
  if($wp_query->is_single === true) {
43
  $wp_query->query_vars['paged'] = $curpage;
44
  return wpsc_product_url($wp_query->post->ID);
@@ -66,7 +65,7 @@ function wpsc_a_page_url($page=null) {
66
  * @return
67
  */
68
  function wpsc_pagination($totalpages = '', $per_page = '', $current_page = '', $page_link = '') {
69
- global $wp_query,$wpsc_query;
70
  $num_paged_links = 4; //amount of links to show on either side of current page
71
 
72
  $additional_links = '';
@@ -103,9 +102,9 @@ function wpsc_pagination($totalpages = '', $per_page = '', $current_page = '', $
103
  //if there is no pagination
104
  if(!get_option('permalink_structure')) {
105
  $category = '?';
106
- if(isset($wpsc_query->query_vars['wpsc_product_category']))
107
  $category = '?wpsc_product_category='.$wp_query->query_vars['wpsc_product_category'];
108
- if(isset($wpsc_query->query_vars['wpsc_product_category']) && is_string($wpsc_query->query_vars['wpsc_product_category'])){
109
 
110
  $page_link = get_option('blogurl').$category.'&amp;paged';
111
  }else{
@@ -115,8 +114,8 @@ function wpsc_pagination($totalpages = '', $per_page = '', $current_page = '', $
115
  $separator = '=';
116
  }else{
117
  // This will need changing when we get product categories sorted
118
- if(isset($wpsc_query->query_vars['wpsc_product_category']))
119
- $page_link = trailingslashit(get_option('product_list_url')).$wpsc_query->query_vars['wpsc_product_category'].'/';
120
  else
121
  $page_link = trailingslashit(get_option('product_list_url'));
122
 
@@ -1345,7 +1344,7 @@ function wpsc_display_product_multicurrency() {
1345
  $currency_sign = $currency_data['code'];
1346
 
1347
  if ( !empty( $currency_sign ) )
1348
- return '<span class="wpscsmall pricefloatright pricedisplay">' . $isocode . ' ' . wpsc_currency_display( $curr["meta_value"] ) . '</span><br />';
1349
  }
1350
  }
1351
 
@@ -1764,17 +1763,8 @@ function wpsc_you_save($args = null){
1764
  }
1765
  }
1766
 
1767
-
1768
- function wpsc_get_downloadable_files($product_id){
1769
- $args = array(
1770
- 'post_type' => 'wpsc-product-file',
1771
- 'post_parent' => $product_id,
1772
- 'numberposts' => -1,
1773
- 'post_status' => 'all',
1774
-
1775
- );
1776
-
1777
- $attached_files = (array)get_posts( $args );
1778
- return $attached_files;
1779
  }
 
1780
  ?>
38
  $curpage = $wp_query->query_vars['paged'];
39
  if($page != '')
40
  $wp_query->query_vars['paged'] = $page;
 
41
  if($wp_query->is_single === true) {
42
  $wp_query->query_vars['paged'] = $curpage;
43
  return wpsc_product_url($wp_query->post->ID);
65
  * @return
66
  */
67
  function wpsc_pagination($totalpages = '', $per_page = '', $current_page = '', $page_link = '') {
68
+ global $wp_query;
69
  $num_paged_links = 4; //amount of links to show on either side of current page
70
 
71
  $additional_links = '';
102
  //if there is no pagination
103
  if(!get_option('permalink_structure')) {
104
  $category = '?';
105
+ if(isset($wp_query->query_vars['wpsc_product_category']))
106
  $category = '?wpsc_product_category='.$wp_query->query_vars['wpsc_product_category'];
107
+ if(isset($wp_query->query_vars['wpsc_product_category']) && is_string($wp_query->query_vars['wpsc_product_category'])){
108
 
109
  $page_link = get_option('blogurl').$category.'&amp;paged';
110
  }else{
114
  $separator = '=';
115
  }else{
116
  // This will need changing when we get product categories sorted
117
+ if(isset($wp_query->query_vars['wpsc_product_category']))
118
+ $page_link = trailingslashit(get_option('product_list_url')).$wp_query->query_vars['wpsc_product_category'].'/';
119
  else
120
  $page_link = trailingslashit(get_option('product_list_url'));
121
 
1344
  $currency_sign = $currency_data['code'];
1345
 
1346
  if ( !empty( $currency_sign ) )
1347
+ echo '<span class="wpscsmall pricefloatright pricedisplay">' . $isocode . ' ' . wpsc_currency_display( $curr["meta_value"] ) . '</span><br />';
1348
  }
1349
  }
1350
 
1763
  }
1764
  }
1765
 
1766
+ function wpsc_get_downloadable_file($file_id){
1767
+ return get_post( $file_id );
 
 
 
 
 
 
 
 
 
 
1768
  }
1769
+
1770
  ?>
wpsc-includes/purchaselogs.class.php CHANGED
@@ -265,9 +265,8 @@ function wpsc_change_purchlog_view( $viewby, $status='' ) {
265
  $purchlogs->allpurchaselogs = $purchaselogs;
266
  } elseif ( $viewby == '3mnths' ) {
267
  $dates = $purchlogs->getdates();
268
-
269
  $dates = array_slice( $dates, 0, 3 );
270
- $purchlogs->current_start_timestamp = $dates[2]['start'];
271
  $purchlogs->current_end_timestamp = $dates[0]['end'];
272
  $newlogs = $purchlogs->get_purchlogs( $dates, $status );
273
  $_SESSION['newlogs'] = $newlogs;
@@ -641,7 +640,7 @@ class wpsc_purchaselogs {
641
  $dates = $this->getdates();
642
 
643
  $dates = array_slice( $dates, 0, 3 );
644
- $this->current_start_timestamp = $dates[2]['start'];
645
  $this->current_end_timestamp = $dates[0]['end'];
646
  $newlogs = $this->get_purchlogs( $dates, $status );
647
  $_SESSION['newlogs'] = $newlogs;
@@ -724,7 +723,8 @@ class wpsc_purchaselogs {
724
  $earliest_record = $wpdb->get_results( $earliest_record_sql, ARRAY_A );
725
 
726
  $this->current_timestamp = time();
727
- $this->earliest_timestamp = $earliest_record[0]['date'];
 
728
 
729
  $this->current_year = date( "Y" );
730
  $this->earliest_year = date( "Y", $this->earliest_timestamp );
265
  $purchlogs->allpurchaselogs = $purchaselogs;
266
  } elseif ( $viewby == '3mnths' ) {
267
  $dates = $purchlogs->getdates();
 
268
  $dates = array_slice( $dates, 0, 3 );
269
+ $purchlogs->current_start_timestamp = $dates[count($dates)-1]['start'];
270
  $purchlogs->current_end_timestamp = $dates[0]['end'];
271
  $newlogs = $purchlogs->get_purchlogs( $dates, $status );
272
  $_SESSION['newlogs'] = $newlogs;
640
  $dates = $this->getdates();
641
 
642
  $dates = array_slice( $dates, 0, 3 );
643
+ $this->current_start_timestamp = $dates[count($dates)-1]['start'];
644
  $this->current_end_timestamp = $dates[0]['end'];
645
  $newlogs = $this->get_purchlogs( $dates, $status );
646
  $_SESSION['newlogs'] = $newlogs;
723
  $earliest_record = $wpdb->get_results( $earliest_record_sql, ARRAY_A );
724
 
725
  $this->current_timestamp = time();
726
+ //if there are no reccords set the date to now.
727
+ $this->earliest_timestamp = ($earliest_record[0]['date'])?$earliest_record[0]['date']:time();
728
 
729
  $this->current_year = date( "Y" );
730
  $this->earliest_year = date( "Y", $this->earliest_timestamp );
wpsc-includes/share-this.php DELETED
@@ -1,676 +0,0 @@
1
- <?php
2
- global $social_sites;
3
- @define('wpsc_akst_ADDTOCONTENT', true);
4
- // set this to false if you do not want to automatically add the Share This link to your content
5
-
6
-
7
- @define('wpsc_akst_ADDTOFOOTER', true);
8
- // set this to false if you do not want to automatically add the Share This form to the page in your footer
9
-
10
-
11
- @define('wpsc_akst_ADDTOFEED', true);
12
- // set this to false if you do not want to automatically add the Share This link to items in your feed
13
-
14
-
15
- @define('wpsc_akst_SHOWICON', true);
16
- // set this to false if you do not want to show the Share This icon next to the Share This link
17
-
18
-
19
- // Find more URLs here:
20
- // http://3spots.blogspot.com/2006/02/30-social-bookmarks-add-to-footer.html
21
-
22
- $social_sites = array(
23
- 'delicious' => array(
24
- 'name' => 'del.icio.us'
25
- , 'url' => 'http://del.icio.us/post?url={url}&title={title}'
26
- )
27
- , 'digg' => array(
28
- 'name' => 'Digg'
29
- , 'url' => 'http://digg.com/submit?phase=2&url={url}&title={title}'
30
- )
31
- , 'furl' => array(
32
- 'name' => 'Furl'
33
- , 'url' => 'http://furl.net/storeIt.jsp?u={url}&t={title}'
34
- )
35
- , 'netscape' => array(
36
- 'name' => 'Netscape'
37
- , 'url' => ' http://www.netscape.com/submit/?U={url}&T={title}'
38
- )
39
- , 'yahoo_myweb' => array(
40
- 'name' => 'Yahoo! My Web'
41
- , 'url' => 'http://myweb2.search.yahoo.com/myresults/bookmarklet?u={url}&t={title}'
42
- )
43
- , 'stumbleupon' => array(
44
- 'name' => 'StumbleUpon'
45
- , 'url' => 'http://www.stumbleupon.com/submit?url={url}&title={title}'
46
- )
47
- , 'google_bmarks' => array(
48
- 'name' => 'Google Bookmarks'
49
- , 'url' => ' http://www.google.com/bookmarks/mark?op=edit&bkmk={url}&title={title}'
50
- )
51
- , 'technorati' => array(
52
- 'name' => 'Technorati'
53
- , 'url' => 'http://www.technorati.com/faves?add={url}'
54
- )
55
- , 'blinklist' => array(
56
- 'name' => 'BlinkList'
57
- , 'url' => 'http://blinklist.com/index.php?Action=Blink/addblink.php&Url={url}&Title={title}'
58
- )
59
- , 'newsvine' => array(
60
- 'name' => 'Newsvine'
61
- , 'url' => 'http://www.newsvine.com/_wine/save?u={url}&h={title}'
62
- )
63
- , 'magnolia' => array(
64
- 'name' => 'ma.gnolia'
65
- , 'url' => 'http://ma.gnolia.com/bookmarklet/add?url={url}&title={title}'
66
- )
67
- , 'reddit' => array(
68
- 'name' => 'reddit'
69
- , 'url' => 'http://reddit.com/submit?url={url}&title={title}'
70
- )
71
- , 'windows_live' => array(
72
- 'name' => 'Windows Live'
73
- , 'url' => 'https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url={url}&title={title}&top=1'
74
- )
75
- , 'tailrank' => array(
76
- 'name' => 'Tailrank'
77
- , 'url' => 'http://tailrank.com/share/?link_href={url}&title={title}'
78
- )
79
- );
80
-
81
- /*
82
-
83
- // Additional sites
84
-
85
- , 'blogmarks' => array(
86
- 'name' => 'Blogmarks'
87
- , 'url' => 'http://blogmarks.net/my/new.php?mini=1&url={url}&title={title}'
88
- )
89
-
90
- , 'favoriting' => array(
91
- 'name' => 'Favoriting'
92
- , 'url' => 'http://www.favoriting.com/nuevoFavorito.asp?qs_origen=3&qs_url={url}&qs_title={title}'
93
- )
94
-
95
- */
96
-
97
-
98
- // NO NEED TO EDIT BELOW THIS LINE
99
- // ============================================================
100
-
101
- @define('AK_WPROOT', '../../../');
102
- @define('wpsc_akst_FILEPATH', WPSC_URL.'/wpsc-includes/share-this.php');
103
-
104
-
105
- $akst_action = '';
106
-
107
- if (!function_exists('ak_check_email_address')) {
108
- function ak_check_email_address($email) {
109
- // From: http://www.ilovejackdaniels.com/php/email-address-validation/
110
- // First, we check that there's one @ symbol, and that the lengths are right
111
- if (!ereg("^[^@]{1,64}@[^@]{1,255}$", $email)) {
112
- // Email invalid because wrong number of characters in one section, or wrong number of @ symbols.
113
- return false;
114
- }
115
- // Split it into sections to make life easier
116
- $email_array = explode("@", $email);
117
- $local_array = explode(".", $email_array[0]);
118
- for ($i = 0; $i < sizeof($local_array); $i++) {
119
- if (!ereg("^(([A-Za-z0-9!#$%&'*+/=?^_`{|}~-][A-Za-z0-9!#$%&'*+/=?^_`{|}~\.-]{0,63})|(\"[^(\\|\")]{0,62}\"))$", $local_array[$i])) {
120
- return false;
121
- }
122
- }
123
- if (!ereg("^\[?[0-9\.]+\]?$", $email_array[1])) { // Check if domain is IP. If not, it should be valid domain name
124
- $domain_array = explode(".", $email_array[1]);
125
- if (sizeof($domain_array) < 2) {
126
- return false; // Not enough parts to domain
127
- }
128
- for ($i = 0; $i < sizeof($domain_array); $i++) {
129
- if (!ereg("^(([A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9])|([A-Za-z0-9]+))$", $domain_array[$i])) {
130
- return false;
131
- }
132
- }
133
- }
134
- return true;
135
- }
136
- }
137
-
138
- if (!function_exists('ak_decode_entities')) {
139
- function ak_decode_entities($text, $quote_style = ENT_COMPAT) {
140
- // From: http://us2.php.net/manual/en/function.html-entity-decode.php#68536
141
- if (function_exists('html_entity_decode')) {
142
- $text = html_entity_decode($text, $quote_style, 'ISO-8859-1'); // NOTE: UTF-8 does not work!
143
- }
144
- else {
145
- $trans_tbl = get_html_translation_table(HTML_ENTITIES, $quote_style);
146
- $trans_tbl = array_flip($trans_tbl);
147
- $text = strtr($text, $trans_tbl);
148
- }
149
- $text = preg_replace('~&#x([0-9a-f]+);~ei', 'chr(hexdec("\\1"))', $text);
150
- $text = preg_replace('~&#([0-9]+);~e', 'chr("\\1")', $text);
151
- return $text;
152
- }
153
- }
154
-
155
- if (!function_exists('ak_jquery')) {
156
- function ak_jquery() {
157
- if (!function_exists('wp_enqueue_script')) {
158
- global $ak_jquery;
159
- if (!isset($ak_jquery) || !$ak_jquery) {
160
- print('
161
- <script type="text/javascript" src="'.get_bloginfo('wpurl').'/wp-includes/js/jquery.js"></script>
162
- ');
163
- }
164
- $ak_jquery = true;
165
- }
166
- }
167
- }
168
-
169
- function wpsc_akst_share_link($action = 'print') {
170
- global $wpdb, $wpsc_akst_action, $post, $wp_query;
171
- if (in_array($wpsc_akst_action, array('page'))) {
172
- return '';
173
- }
174
- if (is_feed() || (function_exists('akm_check_mobile') && akm_check_mobile())) {
175
- $onclick = '';
176
- } else {
177
- $permalink = get_permalink($post->ID);
178
- $product_link = '';
179
- if (isset($wp_query->query_vars['product_url_name']) && $wp_query->query_vars['product_url_name'] != null){
180
- $product_id = $wpdb->get_var("SELECT `product_id` FROM `".WPSC_TABLE_PRODUCTMETA."` WHERE `meta_key` IN ( 'url_name' ) AND `meta_value` IN ( '".$wp_query->query_vars['product_url_name']."' ) ORDER BY `product_id` DESC LIMIT 1");
181
- $product_link = get_permalink(absint($product_id));
182
- } else if (isset($_REQUEST['product_id'])) {
183
- $product_link = get_permalink(absint($_REQUEST['product_id']));
184
- }else{
185
- $product_link = $permalink;
186
- }
187
- $onclick = 'onclick="wpsc_akst_share(\''.$post->ID.'\', \''.urlencode($product_link).'\', \''.urlencode(get_the_title()).'\'); return false;"';
188
- }
189
- global $post;
190
- ob_start();
191
- ?>
192
- <a href="#" <?php print($onclick); ?> title="<?php _e('E-mail this, post to del.icio.us, etc.', 'wpsc'); ?>" id="wpsc_akst_link_<?php print($post->ID); ?>" class="wpsc_akst_share_link" rel="nofollow"><img src="<?php echo WPSC_CORE_IMAGES_URL; ?>/social_networking/share-this-product.gif" title="Share This" alt="Share This" /></a>
193
- <?php
194
- $link = ob_get_contents();
195
- ob_end_clean();
196
- switch ($action) {
197
- case 'print':
198
- print($link);
199
- break;
200
- case 'return':
201
- return $link;
202
- break;
203
- }
204
- }
205
-
206
- function wpsc_akst_add_share_link_to_content($content) {
207
- $doit = false;
208
- if (is_feed() && wpsc_akst_ADDTOFEED) {
209
- $doit = true;
210
- }
211
- else if (wpsc_akst_ADDTOCONTENT) {
212
- $doit = true;
213
- }
214
- if ($doit) {
215
- $content .= '<p class="wpsc_akst_link">'.wpsc_akst_share_link('return').'</p>';
216
- }
217
- return $content;
218
- }
219
-
220
- function wpsc_akst_share_form() {
221
- global $post, $social_sites, $current_user, $wp_query, $wpdb;
222
-
223
- if (!empty($_GET['p'])) {
224
- $id = intval($_GET['p']);
225
- } else if(!empty($_GET['page_id']))
226
- {
227
- $id = $_GET['page_id'];
228
- }
229
-
230
- if (isset($current_user)) {
231
- $user = get_currentuserinfo();
232
- if (!isset($current_user->user_nicename)) $current_user->user_nicename = '';
233
- if (!isset($current_user->user_email)) $current_user->user_email = '';
234
- $name = $current_user->user_nicename;
235
- $email = $current_user->user_email;
236
- }
237
- else {
238
- $user = wp_get_current_commenter();
239
- $name = $user['comment_author'];
240
- $email = $user['comment_author_email'];
241
- }
242
- ?>
243
- <!-- Share This BEGIN -->
244
- <div id="wpsc_akst_form" class='Centered'>
245
- <a href="#" onclick="jQuery('#wpsc_akst_form').css('display','none'); return false;" class="wpsc_akst_close"><?php _e('Close', 'wpsc'); ?></a>
246
- <ul class="tabs">
247
- <li id="wpsc_akst_tab1" class="selected" onclick="wpsc_akst_share_tab('1');"><?php _e('Social Web', 'wpsc'); ?></li>
248
- <li id="wpsc_akst_tab2" onclick="wpsc_akst_share_tab('2');"><?php _e('E-mail', 'wpsc'); ?></li>
249
- </ul>
250
- <div class="clear"></div>
251
- <div id="wpsc_akst_social">
252
- <ul>
253
- <?php
254
- foreach ((array)$social_sites as $key => $data) {
255
- print(' <li><a href="#" id="wpsc_akst_'.$key.'">'.$data['name'].'</a></li>'."\n");
256
- }
257
- ?>
258
- </ul>
259
- <div class="clear"></div>
260
- </div>
261
- <div id="wpsc_akst_email">
262
- <form action="<?php bloginfo('wpurl'); ?>/index.php" method="post">
263
- <fieldset>
264
- <legend><?php _e('E-mail It', 'wpsc'); ?></legend>
265
- <ul>
266
- <li>
267
- <label><?php _e('To Address:', 'wpsc'); ?></label>
268
- <input type="text" name="wpsc_akst_to" value="" class="wpsc_akst_text" />
269
- </li>
270
- <li>
271
- <label><?php _e('Your Name:', 'wpsc'); ?></label>
272
- <input type="text" name="wpsc_akst_name" value="<?php print(htmlspecialchars($name)); ?>" class="wpsc_akst_text" />
273
- </li>
274
- <li>
275
- <label><?php _e('Your Address:', 'wpsc'); ?></label>
276
- <input type="text" name="wpsc_akst_email" value="<?php print(htmlspecialchars($email)); ?>" class="wpsc_akst_text" />
277
- </li>
278
- <li>
279
- <input type="submit" name="wpsc_akst_submit" value="<?php _e('Send It', 'wpsc'); ?>" />
280
- </li>
281
- </ul>
282
- <input type="hidden" name="wpsc_akst_action" value="send_mail" />
283
- <input type="hidden" name="wpsc_akst_post_id" id="wpsc_akst_post_id" value="<?php if (isset($id)) print($id); ?>" />
284
- <?php
285
- if (!isset($wp_query->query_vars['product_url_name'])) $wp_query->query_vars['product_url_name'] = '';
286
- if($wp_query->query_vars['product_url_name'] != '') {
287
- $product_id = $wpdb->get_var("SELECT `product_id` FROM `".WPSC_TABLE_PRODUCTMETA."` WHERE `meta_key` IN ( 'url_name' ) AND `meta_value` IN ( '".$wp_query->query_vars['product_url_name']."' ) ORDER BY `product_id` DESC LIMIT 1");
288
- } else if( isset($_GET['product_id']) && is_numeric($_GET['product_id'])){
289
- $product_id = (int)$_GET['product_id'];
290
- } else {
291
- $product_id = '';
292
- }
293
- echo "<input type=\"hidden\" name=\"wpsc_akst_product_id\" id=\"wpsc_akst_product_id\" value=\"".$product_id."\" />\n\r";
294
- ?>
295
- </fieldset>
296
- </form>
297
- </div>
298
- </div>
299
- <!-- Share This END -->
300
- <?php
301
- }
302
- if (wpsc_akst_ADDTOFOOTER) {
303
- add_action('wp_footer', 'wpsc_akst_share_form');
304
- }
305
- function wpsc_akst_send_mail() {
306
- global $wpdb, $wp_query;
307
- $post_id = '';
308
- $to = '';
309
- $name = '';
310
- $email = '';
311
-
312
- if (!empty($_REQUEST['wpsc_akst_to'])) {
313
- $to = stripslashes($_REQUEST['wpsc_akst_to']);
314
- $to = strip_tags($to);
315
- $to = str_replace(
316
- array(
317
- ','
318
- ,"\n"
319
- ,"\t"
320
- ,"\r"
321
- )
322
- , array()
323
- , $to
324
- );
325
- }
326
-
327
- if (!empty($_REQUEST['wpsc_akst_name'])) {
328
- $name = stripslashes($_REQUEST['wpsc_akst_name']);
329
- $name = strip_tags($name);
330
- $name = str_replace(
331
- array(
332
- '"'
333
- ,"\n"
334
- ,"\t"
335
- ,"\r"
336
- )
337
- , array()
338
- , $name
339
- );
340
- }
341
-
342
- if (!empty($_REQUEST['wpsc_akst_email'])) {
343
- $email = stripslashes($_REQUEST['wpsc_akst_email']);
344
- $email = strip_tags($email);
345
- $email = str_replace(
346
- array(
347
- ','
348
- ,"\n"
349
- ,"\t"
350
- ,"\r"
351
- )
352
- , array()
353
- , $email
354
- );
355
- }
356
-
357
- if (!empty($_REQUEST['wpsc_akst_post_id'])) {
358
- $post_id = intval($_REQUEST['wpsc_akst_post_id']);
359
- }
360
-
361
- if (empty($to) || !ak_check_email_address($to) || empty($email) || !ak_check_email_address($email)) {
362
- wp_die(__('Click your <strong>back button</strong> and make sure those e-mail addresses are valid then try again.', 'wpsc'));
363
- }
364
-
365
- $headers = "MIME-Version: 1.0\n" .
366
- 'From: "'.$name.'" <'.$email.'>'."\n"
367
- .'Reply-To: "'.$name.'" <'.$email.'>'."\n"
368
- .'Return-Path: "'.$name.'" <'.$email.'>'."\n"
369
- ."Content-Type: text/plain; charset=\"" . get_option('blog_charset') ."\"\n";
370
-
371
- $subject = __('Check out this product on ', 'wpsc').get_bloginfo('name');
372
-
373
- if(is_numeric($_REQUEST['wpsc_akst_product_id']))
374
- {
375
- $permalink = get_option('product_list_url');
376
- $message .= __('Greetings--', 'wpsc')."\n\n";
377
- $message .= $name.__(' thinks this will be of interest to you:', 'wpsc')."\n\n";
378
- if($wp_query->query_vars['product_url_name'] != '') {
379
- $product_id = $wpdb->get_var("SELECT `product_id` FROM `".WPSC_TABLE_PRODUCTMETA."` WHERE `meta_key` IN ( 'url_name' ) AND `meta_value` IN ( '".$wp_query->query_vars['product_url_name']."' ) ORDER BY `product_id` DESC LIMIT 1");
380
- $message .= get_permalink($product_id);
381
- } else {
382
- $message .= get_permalink((int)$_REQUEST['wpsc_akst_product_id']);
383
- }
384
- $message .= __('Enjoy.', 'wpsc')."\n\n";
385
- $message .= '--'."\n";
386
- $message .= get_bloginfo('home')."\n";
387
- }
388
- else
389
- {
390
- $message = __('Greetings--', 'wpsc')."\n\n"
391
- .$name.__(' thinks this will be of interest to you:', 'wpsc')."\n\n"
392
- .ak_decode_entities(get_the_title($post_id))."\n\n"
393
- .get_permalink($post_id)."\n\n"
394
- .__('Enjoy.', 'wpsc')."\n\n"
395
- .'--'."\n"
396
- .get_bloginfo('home')."\n";
397
- }
398
- @wp_mail($to, $subject, $message, $headers);
399
-
400
- if (!empty($_SERVER['HTTP_REFERER'])) {
401
- $url = $_SERVER['HTTP_REFERER'];
402
- }
403
-
404
- header("Location: $url");
405
- status_header('302');
406
- die();
407
- }
408
-
409
- function wpsc_akst_hide_pop() {
410
- return false;
411
- }
412
-
413
- function wpsc_akst_page() {
414
- global $social_sites, $wpsc_akst_action, $current_user, $post, $wp_query, $wpdb;
415
-
416
- $wpsc_akst_action = 'page';
417
-
418
- add_action('akpc_display_popularity', 'wpsc_akst_hide_pop');
419
-
420
- $id = 0;
421
- if (!empty($_GET['p'])) {
422
- $id = intval($_GET['p']);
423
- } else if(!empty($_GET['page_id']))
424
- {
425
- $id = $_GET['page_id'];
426
- }
427
-
428
- if ($id <= 0) {
429
- header("Location: ".get_bloginfo('siteurl'));
430
- die();
431
- }
432
- if (isset($current_user)) {
433
- $user = get_currentuserinfo();
434
- $name = $current_user->user_nicename;
435
- $email = $current_user->user_email;
436
- }
437
- else {
438
- $user = wp_get_current_commenter();
439
- $name = $user['comment_author'];
440
- $email = $user['comment_author_email'];
441
- }
442
- query_posts('p='.$id);
443
- if (have_posts()) :
444
- while (have_posts()) :
445
- the_post();
446
- header('Content-Type: '.get_bloginfo('html_type').'; charset='.get_bloginfo('charset'));
447
- ?>
448
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
449
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
450
- <html xmlns="http://www.w3.org/1999/xhtml">
451
- <head>
452
- <title><?php _e('Share This : ', 'wpsc'); the_title(); ?></title>
453
- <meta name="robots" content="noindex, noarchive" />
454
- <link rel="stylesheet" type="text/css" href="<?php print(wpsc_akst_FILEPATH); ?>?wpsc_akst_action=css" />
455
- <style type="text/css">
456
-
457
- #wpsc_akst_social ul li {
458
- width: 48%;
459
- }
460
- #wpsc_akst_social ul li a {
461
- background-position: 0px 4px;
462
- }
463
- #wpsc_akst_email {
464
- display: block;
465
- }
466
- #wpsc_akst_email ul li {
467
- margin-bottom: 10px;
468
- }
469
- #wpsc_akst_email ul li input.wpsc_akst_text {
470
- width: 220px;
471
- }
472
-
473
- body {
474
- background: #fff url(<?php bloginfo('wpurl'); ?>/wp-content/plugins/share-this/page_back.gif) repeat-x;
475
- font: 11px Verdana, sans-serif;
476
- padding: 20px;
477
- text-align: center;
478
- }
479
- #body {
480
- background: #fff;
481
- border: 1px solid #ccc;
482
- border-width: 5px 1px 2px 1px;
483
- margin: 0 auto;
484
- text-align: left;
485
- width: 700px;
486
- }
487
- #info {
488
- border-bottom: 1px solid #ddd;
489
- line-height: 150%;
490
- padding: 10px;
491
- }
492
- #info p {
493
- margin: 0;
494
- padding: 0;
495
- }
496
- #social {
497
- float: left;
498
- padding: 10px 0 10px 10px;
499
- width: 350px;
500
- }
501
- #email {
502
- float: left;
503
- padding: 10px;
504
- width: 300px;
505
- }
506
- #content {
507
- border-top: 1px solid #ddd;
508
- padding: 20px 50px;
509
- }
510
- #content .wpsc_akst_date {
511
- color: #666;
512
- float: right;
513
- padding-top: 4px;
514
- }
515
- #content .wpsc_akst_title {
516
- font: bold 18px "Lucida Sans Unicode", "Lucida Grande", "Trebuchet MS", sans-serif;
517
- margin: 0 150px 10px 0;
518
- padding: 0;
519
- }
520
- #content .wpsc_akst_category {
521
- color: #333;
522
- }
523
- #content .wpsc_akst_entry {
524
- font-size: 12px;
525
- line-height: 150%;
526
- margin-bottom: 20px;
527
- }
528
- #content .wpsc_akst_entry p, #content .wpsc_akst_entry li, #content .wpsc_akst_entry dt, #content .wpsc_akst_entry dd, #content .wpsc_akst_entry div, #content .wpsc_akst_entry blockquote {
529
- margin-bottom: 10px;
530
- padding: 0;
531
- }
532
- #content .wpsc_akst_entry blockquote {
533
- background: #eee;
534
- border-left: 2px solid #ccc;
535
- padding: 10px;
536
- }
537
- #content .wpsc_akst_entry blockquote p {
538
- margin: 0 0 10px 0;
539
- }
540
- #content .wpsc_akst_entry p, #content .wpsc_akst_entry li, #content .wpsc_akst_entry dt, #content .wpsc_akst_entry dd, #content .wpsc_akst_entry td, #content .wpsc_akst_entry blockquote, #content .wpsc_akst_entry blockquote p {
541
- line-height: 150%;
542
- }
543
- #content .wpsc_akst_return {
544
- font-size: 11px;
545
- margin: 0;
546
- padding: 20px;
547
- text-align: center;
548
- }
549
- #footer {
550
- background: #eee;
551
- border-top: 1px solid #ddd;
552
- padding: 10px;
553
- }
554
- #footer p {
555
- color: #555;
556
- margin: 0;
557
- padding: 0;
558
- text-align: center;
559
- }
560
- #footer p a, #footer p a:visited {
561
- color: #444;
562
- }
563
- h2 {
564
- color: #333;
565
- font: bold 14px "Lucida Sans Unicode", "Lucida Grande", "Trebuchet MS", sans-serif;
566
- margin: 0 0;
567
- padding: 0;
568
- }
569
- div.clear {
570
- float: none;
571
- clear: both;
572
- }
573
- hr {
574
- border: 0;
575
- border-bottom: 1px solid #ccc;
576
- }
577
-
578
- </style>
579
-
580
- <?php do_action('wpsc_akst_head'); ?>
581
-
582
- </head>
583
- <body>
584
-
585
- <div id="body">
586
-
587
- <div id="info">
588
- <p><?php printf(__('<strong>What is this?</strong> From this page you can use the <em>Social Web</em> links to save %s to a social bookmarking site, or the <em>E-mail</em> form to send a link via e-mail.', 'wpsc'), '<a href="'.get_permalink($id).'">'.get_the_title().'</a>'); ?></p>
589
- </div>
590
-
591
- <div id="social">
592
- <h2><?php _e('Social Web', 'wpsc'); ?></h2>
593
- <div id="wpsc_akst_social">
594
- <ul>
595
- <?php
596
- foreach ($social_sites as $key => $data) {
597
- $link = str_replace(
598
- array(
599
- '{url}'
600
- , '{title}'
601
- )
602
- , array(
603
- urlencode(get_permalink($id))
604
- , urlencode(get_the_title())
605
- )
606
- , $data['url']
607
- );
608
- print(' <li><a href="'.$link.'" id="wpsc_akst_'.$key.'">'.$data['name'].'</a></li>'."\n");
609
- }
610
- ?>
611
- </ul>
612
- <div class="clear"></div>
613
- </div>
614
- </div>
615
-
616
- <div id="email">
617
- <h2><?php _e('E-mail', 'wpsc'); ?></h2>
618
- <div id="wpsc_akst_email">
619
- <form action="<?php bloginfo('wpurl'); ?>/index.php" method="post">
620
- <fieldset>
621
- <legend><?php _e('E-mail It', 'wpsc'); ?></legend>
622
- <ul>
623
- <li>
624
- <label><?php _e('To Address:', 'wpsc'); ?></label>
625
- <input type="text" name="wpsc_akst_to" value="" class="wpsc_akst_text" />
626
- </li>
627
- <li>
628
- <label><?php _e('Your Name:', 'wpsc'); ?></label>
629
- <input type="text" name="wpsc_akst_name" value="<?php print(htmlspecialchars($name)); ?>" class="wpsc_akst_text" />
630
- </li>
631
- <li>
632
- <label><?php _e('Your Address:', 'wpsc'); ?></label>
633
- <input type="text" name="wpsc_akst_email" value="<?php print(htmlspecialchars($email)); ?>" class="wpsc_akst_text" />
634
- </li>
635
- <li>
636
- <input type="submit" name="wpsc_akst_submit" value="<?php _e('Send It', 'wpsc'); ?>" />
637
- </li>
638
- </ul>
639
- <input type="hidden" name="wpsc_akst_action" value="send_mail" />
640
- <input type="hidden" name="wpsc_akst_post_id" id="wpsc_akst_post_id" value="<?php print($id); ?>" />
641
- <?php
642
- if($wp_query->query_vars['product_url_name'] != '') {
643
- $product_id = $wpdb->get_var("SELECT `product_id` FROM `".WPSC_TABLE_PRODUCTMETA."` WHERE `meta_key` IN ( 'url_name' ) AND `meta_value` IN ( '".$wp_query->query_vars['product_url_name']."' ) ORDER BY `product_id` DESC LIMIT 1");
644
- } else if(is_numeric($_GET['product_id'])){
645
- $product_id = (int)$_GET['product_id'];
646
- }
647
- echo "<input type=\"hidden\" name=\"wpsc_akst_product_id\" id=\"wpsc_akst_product_id\" value=\"".$product_id."\" />\n\r";
648
- ?>
649
- </fieldset>
650
- </form>
651
- </div>
652
- </div>
653
-
654
- <div class="clear"></div>
655
-
656
- <div id="content">
657
- <span class="wpsc_akst_date"><?php the_time('F d, Y'); ?></span>
658
- <h1 class="wpsc_akst_title"><?php the_title(); ?></h1>
659
- <p class="wpsc_akst_category"><?php _e('Posted in: ', 'wpsc'); the_category(','); ?></p>
660
- <div class="wpsc_akst_entry"><?php the_content(); ?></div>
661
- <hr />
662
- <p class="wpsc_akst_return"><?php _e('Return to:', 'wpsc'); ?> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
663
- <div class="clear"></div>
664
- </div>
665
-
666
-
667
- </div>
668
-
669
- </body>
670
- </html>
671
- <?php
672
- endwhile;
673
- endif;
674
- die();
675
- }
676
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
wpsc-includes/theme.functions.php CHANGED
@@ -50,7 +50,7 @@ function wpsc_register_core_theme_files() {
50
  wpsc_register_theme_file( 'wpsc-products_page.php' );
51
  wpsc_register_theme_file( 'wpsc-shopping_cart_page.php' );
52
  wpsc_register_theme_file( 'wpsc-transaction_results.php' );
53
- wpsc_register_theme_file( 'wpsc-user_log.php' );
54
  wpsc_register_theme_file( 'wpsc-cart_widget.php' );
55
  wpsc_register_theme_file( 'wpsc-featured_product.php' );
56
  wpsc_register_theme_file( 'wpsc-category-list.php' );
@@ -614,12 +614,14 @@ function wpsc_enqueue_user_script_and_css() {
614
 
615
  if ( is_ssl() )
616
  $siteurl = str_replace( "http://", "https://", $siteurl );
617
-
 
618
  wp_enqueue_script( 'jQuery' );
619
  wp_enqueue_script( 'wp-e-commerce', WPSC_CORE_JS_URL . '/wp-e-commerce.js', array( 'jquery' ), $version_identifier );
620
  wp_enqueue_script( 'infieldlabel', WPSC_CORE_JS_URL . '/jquery.infieldlabel.min.js', array( 'jquery' ), $version_identifier );
621
  wp_enqueue_script( 'wp-e-commerce-ajax-legacy', WPSC_CORE_JS_URL . '/ajax.js', false, $version_identifier );
622
  wp_enqueue_script( 'wp-e-commerce-dynamic', $siteurl . "/index.php?wpsc_user_dynamic_js=true", false, $version_identifier );
 
623
  wp_enqueue_script( 'livequery', WPSC_URL . '/wpsc-admin/js/jquery.livequery.js', array( 'jquery' ), '1.0.3' );
624
  wp_enqueue_script( 'jquery-rating', WPSC_CORE_JS_URL . '/jquery.rating.js', array( 'jquery' ), $version_identifier );
625
  wp_enqueue_script( 'wp-e-commerce-legacy', WPSC_CORE_JS_URL . '/user.js', array( 'jquery' ), WPSC_VERSION . WPSC_MINOR_VERSION );
50
  wpsc_register_theme_file( 'wpsc-products_page.php' );
51
  wpsc_register_theme_file( 'wpsc-shopping_cart_page.php' );
52
  wpsc_register_theme_file( 'wpsc-transaction_results.php' );
53
+ wpsc_register_theme_file( 'wpsc-user-log.php' );
54
  wpsc_register_theme_file( 'wpsc-cart_widget.php' );
55
  wpsc_register_theme_file( 'wpsc-featured_product.php' );
56
  wpsc_register_theme_file( 'wpsc-category-list.php' );
614
 
615
  if ( is_ssl() )
616
  $siteurl = str_replace( "http://", "https://", $siteurl );
617
+ if( get_option( 'wpsc_share_this' ) == 1 )
618
+ wp_enqueue_script( 'sharethis', 'http://w.sharethis.com/button/buttons.js', array(), false, true );
619
  wp_enqueue_script( 'jQuery' );
620
  wp_enqueue_script( 'wp-e-commerce', WPSC_CORE_JS_URL . '/wp-e-commerce.js', array( 'jquery' ), $version_identifier );
621
  wp_enqueue_script( 'infieldlabel', WPSC_CORE_JS_URL . '/jquery.infieldlabel.min.js', array( 'jquery' ), $version_identifier );
622
  wp_enqueue_script( 'wp-e-commerce-ajax-legacy', WPSC_CORE_JS_URL . '/ajax.js', false, $version_identifier );
623
  wp_enqueue_script( 'wp-e-commerce-dynamic', $siteurl . "/index.php?wpsc_user_dynamic_js=true", false, $version_identifier );
624
+ wp_localize_script( 'wp-e-commerce-dynamic', 'wpsc_ajax', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ) ) );
625
  wp_enqueue_script( 'livequery', WPSC_URL . '/wpsc-admin/js/jquery.livequery.js', array( 'jquery' ), '1.0.3' );
626
  wp_enqueue_script( 'jquery-rating', WPSC_CORE_JS_URL . '/jquery.rating.js', array( 'jquery' ), $version_identifier );
627
  wp_enqueue_script( 'wp-e-commerce-legacy', WPSC_CORE_JS_URL . '/user.js', array( 'jquery' ), WPSC_VERSION . WPSC_MINOR_VERSION );
wpsc-languages/wpsc.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-e-commerce\n"
7
- "POT-Creation-Date: 2011-02-24 23:04:41+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,2738 +12,2673 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: wpsc-theme/wpsc-list_view.php:81 wpsc-theme/wpsc-single_product.php:130
16
- #: wpsc-theme/wpsc-products_page.php:166 wpsc-includes/ajax.functions.php:411
17
- msgid "Product in stock"
18
  msgstr ""
19
 
20
- #: wpsc-theme/wpsc-list_view.php:83 wpsc-theme/wpsc-single_product.php:132
21
- #: wpsc-theme/wpsc-products_page.php:168
22
- msgid "Product not in stock"
23
  msgstr ""
24
 
25
- #: wpsc-theme/wpsc-list_view.php:108 wpsc-theme/wpsc-single_product.php:119
26
- #: wpsc-theme/functions/wpsc-user_log_functions.php:471
27
- #: wpsc-theme/wpsc-products_page.php:153
28
- #: wpsc-theme/wpsc-shopping_cart_page.php:19
29
- #: wpsc-admin/admin-form-functions.php:399
30
- #: wpsc-admin/display-sales-logs.php:136
31
- #: wpsc-includes/display.functions.php:44
32
- msgid "Quantity"
33
  msgstr ""
34
 
35
- #: wpsc-theme/wpsc-list_view.php:122 wpsc-theme/wpsc-single_product.php:177
36
- #: wpsc-theme/wpsc-products_page.php:208
37
- #: wpsc-admin/includes/settings-pages/presentation.php:254
38
- #: wpsc-includes/product-template.php:689
39
- #: wpsc-includes/display.functions.php:182
40
- msgid "Buy Now"
41
  msgstr ""
42
 
43
- #: wpsc-theme/wpsc-list_view.php:124 wpsc-theme/wpsc-single_product.php:179
44
- #: wpsc-theme/wpsc-grid_view.php:129 wpsc-theme/wpsc-products_page.php:210
45
- #: wpsc-widgets/donations_widget.php:165
46
- #: wpsc-admin/includes/settings-pages/presentation.php:245
47
- #: wpsc-includes/display.functions.php:270
48
- msgid "Add To Cart"
 
 
 
49
  msgstr ""
50
 
51
- #: wpsc-theme/wpsc-list_view.php:128 wpsc-theme/wpsc-single_product.php:183
52
- #: wpsc-theme/wpsc-grid_view.php:138 wpsc-theme/wpsc-products_page.php:204
53
- msgid "Updating cart..."
54
  msgstr ""
55
 
56
- #: wpsc-theme/wpsc-list_view.php:132 wpsc-theme/wpsc-single_product.php:187
57
- msgid "This product has sold out."
58
  msgstr ""
59
 
60
- #: wpsc-theme/wpsc-list_view.php:145 wpsc-theme/wpsc-grid_view.php:158
61
- #: wpsc-theme/wpsc-products_page.php:235
62
- msgid "There are no products in this group."
63
  msgstr ""
64
 
65
- #: wpsc-theme/wpsc-transaction_results.php:24
66
- #: wpsc-theme/wpsc-shopping_cart_page.php:10
67
- msgid "Oops, there is nothing in your cart."
68
  msgstr ""
69
 
70
- #: wpsc-theme/wpsc-transaction_results.php:24
71
- #: wpsc-theme/wpsc-shopping_cart_page.php:10
72
- msgid "Please visit our shop"
73
  msgstr ""
74
 
75
- #: wpsc-theme/wpsc-single_product.php:79
76
- msgid "Personalize Your Product"
77
  msgstr ""
78
 
79
- #: wpsc-theme/wpsc-single_product.php:80
80
- msgid ""
81
- "Complete this form to include a personalized message with your purchase."
82
  msgstr ""
83
 
84
- #: wpsc-theme/wpsc-single_product.php:88
85
- msgid "Upload a File"
86
  msgstr ""
87
 
88
- #: wpsc-theme/wpsc-single_product.php:89
89
- msgid "Select a file from your computer to include with this purchase."
90
  msgstr ""
91
 
92
- #: wpsc-theme/wpsc-single_product.php:95 wpsc-theme/wpsc-grid_view.php:109
93
- #: wpsc-theme/wpsc-products_page.php:133
94
- msgid "Product Options"
95
  msgstr ""
96
 
97
- #: wpsc-theme/wpsc-single_product.php:136
98
- #: wpsc-theme/wpsc-products_page.php:172 wpsc-widgets/donations_widget.php:164
99
- msgid "Donation"
100
  msgstr ""
101
 
102
- #: wpsc-theme/wpsc-single_product.php:140 wpsc-theme/wpsc-grid_view.php:89
103
- #: wpsc-theme/wpsc-products_page.php:177
104
- msgid "Old Price"
105
  msgstr ""
106
 
107
- #: wpsc-theme/wpsc-single_product.php:142
108
- #: wpsc-theme/functions/wpsc-user_log_functions.php:475
109
- #: wpsc-theme/wpsc-grid_view.php:91 wpsc-theme/wpsc-products_page.php:179
110
- #: wpsc-theme/wpsc-user-log.php:104 wpsc-theme/wpsc-cart_widget.php:14
111
- #: wpsc-theme/wpsc-shopping_cart_page.php:20
112
- #: wpsc-admin/includes/settings-pages/presentation.php:595
113
- #: wpsc-admin/includes/settings-pages/import.php:81
114
- #: wpsc-admin/includes/display-items-functions.php:137
115
- #: wpsc-admin/includes/display-items-functions.php:162
116
- #: wpsc-admin/includes/products.php:78 wpsc-admin/display-items.page.php:47
117
- #: wpsc-admin/display-items.page.php:60 wpsc-admin/display-items.page.php:76
118
- #: wpsc-admin/admin-form-functions.php:404
119
- #: wpsc-admin/display-sales-logs.php:137
120
- msgid "Price"
121
  msgstr ""
122
 
123
- #: wpsc-theme/wpsc-single_product.php:144
124
- #: wpsc-theme/wpsc-products_page.php:181
125
- msgid "You save"
126
  msgstr ""
127
 
128
- #: wpsc-theme/wpsc-single_product.php:151
129
- #: wpsc-theme/functions/wpsc-user_log_functions.php:483
130
- #: wpsc-theme/wpsc-grid_view.php:93 wpsc-theme/wpsc-products_page.php:190
131
- #: wpsc-theme/wpsc-cart_widget.php:38 wpsc-admin/admin.php:309
132
- #: wpsc-admin/admin-form-functions.php:406
133
- #: wpsc-admin/display-sales-logs.php:138 wpsc-admin/display-sales-logs.php:228
134
- msgid "Shipping"
135
  msgstr ""
136
 
137
- #: wpsc-theme/functions/wpsc-user_log_functions.php:65
138
- #: wpsc-core/wpsc-installer.php:745 wpsc-core/wpsc-installer.php:754
139
- msgid "First Name"
140
  msgstr ""
141
 
142
- #: wpsc-theme/functions/wpsc-user_log_functions.php:66
143
- msgid "Please enter a valid name"
144
  msgstr ""
145
 
146
- #: wpsc-theme/functions/wpsc-user_log_functions.php:69
147
- #: wpsc-core/wpsc-installer.php:746 wpsc-core/wpsc-installer.php:755
148
- msgid "Last Name"
149
  msgstr ""
150
 
151
- #: wpsc-theme/functions/wpsc-user_log_functions.php:70
152
- msgid "Please enter a valid surname"
153
  msgstr ""
154
 
155
- #: wpsc-theme/functions/wpsc-user_log_functions.php:73
156
- #: wpsc-core/wpsc-installer.php:752 wpsc-admin/admin.php:398
157
- #: wpsc-admin/admin-form-functions.php:373
158
- msgid "Email"
159
  msgstr ""
160
 
161
- #: wpsc-theme/functions/wpsc-user_log_functions.php:74
162
- msgid "Please enter a valid email address"
163
  msgstr ""
164
 
165
- #: wpsc-theme/functions/wpsc-user_log_functions.php:77
166
- msgid "Address 1"
167
  msgstr ""
168
 
169
- #: wpsc-theme/functions/wpsc-user_log_functions.php:78
170
- msgid "Address 2"
171
  msgstr ""
172
 
173
- #: wpsc-theme/functions/wpsc-user_log_functions.php:79
174
- msgid "Please enter a valid address"
175
  msgstr ""
176
 
177
- #: wpsc-theme/functions/wpsc-user_log_functions.php:82
178
- #: wpsc-core/wpsc-installer.php:748 wpsc-core/wpsc-installer.php:757
179
- msgid "City"
180
  msgstr ""
181
 
182
- #: wpsc-theme/functions/wpsc-user_log_functions.php:83
183
- msgid "Please enter your town or city."
184
  msgstr ""
185
 
186
- #: wpsc-theme/functions/wpsc-user_log_functions.php:86
187
- #: wpsc-core/wpsc-installer.php:763 wpsc-admin/admin-form-functions.php:372
188
- msgid "Phone"
189
  msgstr ""
190
 
191
- #: wpsc-theme/functions/wpsc-user_log_functions.php:87
192
- msgid "Please enter a valid phone number"
193
  msgstr ""
194
 
195
- #: wpsc-theme/functions/wpsc-user_log_functions.php:90
196
- #: wpsc-core/wpsc-installer.php:750 wpsc-core/wpsc-installer.php:759
197
- #: wpsc-admin/admin.php:399
198
- msgid "Country"
199
  msgstr ""
200
 
201
- #: wpsc-theme/functions/wpsc-user_log_functions.php:91
202
- msgid "Please select your country from the list."
 
 
 
 
203
  msgstr ""
204
 
205
- #: wpsc-theme/functions/wpsc-user_log_functions.php:95
206
- msgid "Please enter a valid"
207
  msgstr ""
208
 
209
- #: wpsc-theme/functions/wpsc-user_log_functions.php:109
210
- msgid "Thanks, your changes have been saved."
211
  msgstr ""
212
 
213
- #: wpsc-theme/functions/wpsc-user_log_functions.php:371
214
- #: wpsc-admin/display-sales-logs.php:53
215
- msgid "Details"
216
  msgstr ""
217
 
218
- #: wpsc-theme/functions/wpsc-user_log_functions.php:420
219
- msgid "Order Status"
220
  msgstr ""
221
 
222
- #: wpsc-theme/functions/wpsc-user_log_functions.php:440
223
- #: wpsc-core/wpsc-installer.php:753
224
- #: wpsc-admin/includes/purchlogs_upgrade.php:47
225
- #: wpsc-admin/display-sales-logs.php:153
226
- msgid "Shipping Address"
227
  msgstr ""
228
 
229
- #: wpsc-theme/functions/wpsc-user_log_functions.php:457
230
- msgid "Order Details"
 
 
231
  msgstr ""
232
 
233
- #: wpsc-theme/functions/wpsc-user_log_functions.php:467
234
- #: wpsc-admin/includes/settings-pages/presentation.php:593
235
- #: wpsc-admin/includes/settings-pages/checkout.php:10
236
- #: wpsc-admin/includes/display-items-functions.php:695
237
- #: wpsc-admin/includes/display-items-functions.php:706
238
- #: wpsc-admin/includes/products.php:78 wpsc-admin/display-items.page.php:44
239
- #: wpsc-admin/display-items.page.php:73
240
- #: wpsc-admin/admin-form-functions.php:370
241
- #: wpsc-admin/admin-form-functions.php:401
242
- #: wpsc-admin/display-sales-logs.php:134
243
- #: wpsc-taxes/controllers/taxes_controller.class.php:520
244
- msgid "Name"
245
  msgstr ""
246
 
247
- #: wpsc-theme/functions/wpsc-user_log_functions.php:479
248
- msgid "GST"
249
  msgstr ""
250
 
251
- #: wpsc-theme/functions/wpsc-user_log_functions.php:487
252
- #: wpsc-theme/wpsc-cart_widget.php:52
253
- #: wpsc-theme/wpsc-shopping_cart_page.php:21
254
- #: wpsc-admin/display-sales-logs.php:140 wpsc-admin/display-sales-logs.php:233
255
- msgid "Total"
256
  msgstr ""
257
 
258
- #: wpsc-theme/functions/wpsc-user_log_functions.php:559
259
- #: wpsc-theme/wpsc-shopping_cart_page.php:460
260
- msgid "Total Shipping"
261
  msgstr ""
262
 
263
- #: wpsc-theme/functions/wpsc-user_log_functions.php:560
264
- msgid "Final Total"
265
  msgstr ""
266
 
267
- #: wpsc-theme/functions/wpsc-user_log_functions.php:575
268
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:313
269
- msgid "Customer Details"
 
270
  msgstr ""
271
 
272
- #: wpsc-theme/functions/wpsc-user_log_functions.php:630
273
- #: wpsc-theme/wpsc-user-log.php:108
274
- msgid "Payment Method"
275
  msgstr ""
276
 
277
- #: wpsc-theme/functions/wpsc-user_log_functions.php:631
278
- msgid "Purchase #"
279
  msgstr ""
280
 
281
- #: wpsc-theme/functions/wpsc-user_log_functions.php:633
282
- msgid "Transaction Id"
283
  msgstr ""
284
 
285
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:103
286
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:104
287
- msgid "The Transaction was successful"
288
  msgstr ""
289
 
290
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:183
291
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:184
292
- msgid "Click to download"
293
  msgstr ""
294
 
295
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:195
296
- msgid " - Shipping: %s\n"
297
  msgstr ""
298
 
299
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:199
300
- msgid " &nbsp; Shipping: %s\n"
 
 
301
  msgstr ""
302
 
303
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:206
304
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:207
305
- #: wpsc-admin/display-sales-logs.php:145 wpsc-includes/checkout.class.php:143
306
- msgid "Tax Included"
307
  msgstr ""
308
 
309
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:237
310
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:255
311
- msgid "Total Shipping: %s\n"
312
  msgstr ""
313
 
314
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:239
315
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:257
316
- msgid "Total: %s\n"
317
  msgstr ""
318
 
319
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:242
320
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:247
321
- #: wpsc-theme/wpsc-shopping_cart_page.php:471
322
- #: wpsc-admin/display-coupons.php:153 wpsc-admin/display-coupons.php:297
323
- #: wpsc-admin/admin-form-functions.php:14
324
- #: wpsc-admin/display-sales-logs.php:214
325
- msgid "Discount"
326
  msgstr ""
327
 
328
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:252
329
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:253
330
- msgid "Total Tax"
331
- msgstr ""
332
-
333
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:259
334
- msgid "Purchase # %s\n"
335
  msgstr ""
336
 
337
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:263
338
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:264
339
- msgid "Your Transaction ID"
 
340
  msgstr ""
341
 
342
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:265
343
- msgid "Transaction ID"
 
 
 
344
  msgstr ""
345
 
346
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:301
347
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:302
348
  msgid ""
349
- "Thank you, your purchase is pending, you will be sent an email once the "
350
- "order clears."
351
  msgstr ""
352
 
353
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:304
354
- msgid "Order Pending: Payment Required"
355
- msgstr ""
 
 
356
 
357
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:306
358
- #: wpsc-admin/includes/settings-pages/admin.php:123
359
- msgid "Purchase Receipt"
360
  msgstr ""
361
 
362
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:328
363
- #: wpsc-admin/includes/purchlogs_upgrade.php:40
364
- msgid "Billing State"
365
  msgstr ""
366
 
367
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:337
368
- msgid "Delivery State"
 
 
369
  msgstr ""
370
 
371
- #: wpsc-theme/functions/wpsc-transaction_results_functions.php:352
372
- msgid "Purchase Report"
 
 
373
  msgstr ""
374
 
375
- #: wpsc-theme/wpsc-grid_view.php:79 wpsc-theme/wpsc-products_page.php:229
376
- #: wpsc-admin/admin-form-functions.php:221
377
- msgid "Sale"
 
 
 
 
 
 
 
 
378
  msgstr ""
379
 
380
- #: wpsc-theme/wpsc-grid_view.php:131
381
- msgid "Sorry, sold out!"
382
  msgstr ""
383
 
384
- #: wpsc-theme/wpsc-products_page.php:117
385
- msgid "More Details"
386
  msgstr ""
387
 
388
- #: wpsc-theme/wpsc-products_page.php:216 wpsc-admin/includes/products.php:166
389
- #: wpsc-admin/includes/products.php:377 wpsc-admin/display-coupons.php:302
390
- #: wpsc-admin/display-coupons.php:382 wpsc-includes/product-template.php:603
391
- msgid "Edit"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  msgstr ""
393
 
394
- #: wpsc-theme/wpsc-user-log.php:16
395
- msgid "Purchase History"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396
  msgstr ""
397
 
398
- #: wpsc-theme/wpsc-user-log.php:17
399
- msgid "Your Details"
 
 
 
 
 
 
 
 
 
 
400
  msgstr ""
401
 
402
- #: wpsc-theme/wpsc-user-log.php:18
403
- msgid "Your Downloads"
404
  msgstr ""
405
 
406
- #: wpsc-theme/wpsc-user-log.php:38
407
- msgid "Save Profile"
408
  msgstr ""
409
 
410
- #: wpsc-theme/wpsc-user-log.php:50
411
- msgid "File Names"
412
  msgstr ""
413
 
414
- #: wpsc-theme/wpsc-user-log.php:51
415
- msgid "Downloads Left"
416
  msgstr ""
417
 
418
- #: wpsc-theme/wpsc-user-log.php:52 wpsc-theme/wpsc-user-log.php:103
419
- #: wpsc-admin/display-items.page.php:53
420
- msgid "Date"
421
  msgstr ""
422
 
423
- #: wpsc-theme/wpsc-user-log.php:87
424
- msgid "You have not purchased any downloadable products yet."
425
  msgstr ""
426
 
427
- #: wpsc-theme/wpsc-user-log.php:102 wpsc-admin/display-sales-logs.php:54
428
- msgid "Status"
429
  msgstr ""
430
 
431
- #: wpsc-theme/wpsc-user-log.php:121
432
- msgid "No transactions for this month."
433
  msgstr ""
434
 
435
- #: wpsc-theme/wpsc-user-log.php:134
436
- msgid "There have not been any purchases yet."
 
437
  msgstr ""
438
 
439
- #: wpsc-theme/wpsc-user-log.php:142
440
  msgid ""
441
- "You must be logged in to use this page. Please use the form below to login "
442
- "to your account."
 
 
443
  msgstr ""
444
 
445
- #: wpsc-theme/wpsc-user-log.php:146
446
- msgid "Username:"
447
  msgstr ""
448
 
449
- #: wpsc-theme/wpsc-user-log.php:150
450
- msgid "Password:"
451
  msgstr ""
452
 
453
- #: wpsc-theme/wpsc-user-log.php:156
454
- msgid "Remember me"
 
455
  msgstr ""
456
 
457
- #: wpsc-theme/wpsc-cart_widget.php:12
458
- #: wpsc-theme/wpsc-shopping_cart_page.php:18
459
- msgid "Product"
460
  msgstr ""
461
 
462
- #: wpsc-theme/wpsc-cart_widget.php:13
463
- msgid "Qty"
464
  msgstr ""
465
 
466
- #: wpsc-theme/wpsc-cart_widget.php:49
467
- msgid "%d item"
468
- msgid_plural "%d items"
469
- msgstr[0] ""
470
- msgstr[1] ""
471
 
472
- #: wpsc-theme/wpsc-cart_widget.php:58
473
- msgid "Postage &amp; Tax "
474
  msgstr ""
475
 
476
- #: wpsc-theme/wpsc-cart_widget.php:64 wpsc-core/wpsc-installer.php:210
477
- msgid "Checkout"
478
  msgstr ""
479
 
480
- #: wpsc-theme/wpsc-cart_widget.php:67
481
- msgid "Empty Your Cart"
482
  msgstr ""
483
 
484
- #: wpsc-theme/wpsc-cart_widget.php:67
485
- msgid "Clear cart"
486
  msgstr ""
487
 
488
- #: wpsc-theme/wpsc-cart_widget.php:76
489
- msgid "Your shopping cart is empty"
490
  msgstr ""
491
 
492
- #: wpsc-theme/wpsc-cart_widget.php:77
493
- msgid "Visit the shop"
494
  msgstr ""
495
 
496
- #: wpsc-theme/wpsc-shopping_cart_page.php:15
497
- msgid "Please review your order"
498
  msgstr ""
499
 
500
- #: wpsc-theme/wpsc-shopping_cart_page.php:44
501
- msgid "No Image"
502
  msgstr ""
503
 
504
- #: wpsc-theme/wpsc-shopping_cart_page.php:60
505
- #: wpsc-theme/wpsc-shopping_cart_page.php:92
506
- msgid "Update"
 
 
 
507
  msgstr ""
508
 
509
- #: wpsc-theme/wpsc-shopping_cart_page.php:73
510
- msgid "Remove"
511
  msgstr ""
512
 
513
- #: wpsc-theme/wpsc-shopping_cart_page.php:85
514
- msgid "Coupon is not valid."
 
 
515
  msgstr ""
516
 
517
- #: wpsc-theme/wpsc-shopping_cart_page.php:88
518
- msgid "Enter coupon code"
519
  msgstr ""
520
 
521
- #: wpsc-theme/wpsc-shopping_cart_page.php:97
522
- msgid "Cost before shipping:"
 
 
523
  msgstr ""
524
 
525
- #: wpsc-theme/wpsc-shopping_cart_page.php:123
526
- msgid "Calculate Shipping Price"
527
  msgstr ""
528
 
529
- #: wpsc-theme/wpsc-shopping_cart_page.php:127
530
- msgid "Please choose a country below to calculate your shipping costs"
531
  msgstr ""
532
 
533
- #: wpsc-theme/wpsc-shopping_cart_page.php:135
534
- msgid "Please provide a Zipcode and click Calculate in order to continue."
535
  msgstr ""
536
 
537
- #: wpsc-theme/wpsc-shopping_cart_page.php:141
538
- msgid ""
539
- "Sorry, online ordering is unavailable to this destination and/or weight. "
540
- "Please double check your destination details."
541
  msgstr ""
542
 
543
- #: wpsc-theme/wpsc-shopping_cart_page.php:159
544
- msgid " - Choose a Shipping Rate"
545
  msgstr ""
546
 
547
- #: wpsc-theme/wpsc-shopping_cart_page.php:221
548
- msgid "You must sign in or register with us to continue with your purchase"
549
  msgstr ""
550
 
551
- #: wpsc-theme/wpsc-shopping_cart_page.php:225
552
- msgid "Sign in"
553
  msgstr ""
554
 
555
- #: wpsc-theme/wpsc-shopping_cart_page.php:231
556
- msgid "If you have bought from us before please sign in here to purchase"
557
  msgstr ""
558
 
559
- #: wpsc-theme/wpsc-shopping_cart_page.php:250
560
- msgid "Join up now"
561
  msgstr ""
562
 
563
- #: wpsc-theme/wpsc-shopping_cart_page.php:252
564
- msgid "Username"
565
  msgstr ""
566
 
567
- #: wpsc-theme/wpsc-shopping_cart_page.php:255
568
- msgid "Password"
569
  msgstr ""
570
 
571
- #: wpsc-theme/wpsc-shopping_cart_page.php:258 wpsc-includes/share-this.php:248
572
- #: wpsc-includes/share-this.php:617
573
- msgid "E-mail"
574
  msgstr ""
575
 
576
- #: wpsc-theme/wpsc-shopping_cart_page.php:261
577
  msgid ""
578
- "Signing up is free and easy! please fill out your details your registration "
579
- "will happen automatically as you checkout. Don't forget to use your details "
580
- "to login with next time!"
581
  msgstr ""
582
 
583
- #: wpsc-theme/wpsc-shopping_cart_page.php:309
584
- msgid "Same as billing address:"
 
 
585
  msgstr ""
586
 
587
- #: wpsc-theme/wpsc-shopping_cart_page.php:311
588
- msgid "Your order will be shipped to the billing address"
589
  msgstr ""
590
 
591
- #: wpsc-theme/wpsc-shopping_cart_page.php:354
592
- msgid "Enter your email address"
593
  msgstr ""
594
 
595
- #: wpsc-theme/wpsc-shopping_cart_page.php:392
596
- msgid "How did you find us"
597
  msgstr ""
598
 
599
- #: wpsc-theme/wpsc-shopping_cart_page.php:395
600
- msgid "Word of mouth"
601
  msgstr ""
602
 
603
- #: wpsc-theme/wpsc-shopping_cart_page.php:396
604
- msgid "Advertising"
605
  msgstr ""
606
 
607
- #: wpsc-theme/wpsc-shopping_cart_page.php:397
608
- msgid "Internet"
609
  msgstr ""
610
 
611
- #: wpsc-theme/wpsc-shopping_cart_page.php:398
612
- msgid "Existing Customer"
613
  msgstr ""
614
 
615
- #: wpsc-theme/wpsc-shopping_cart_page.php:409
616
- msgid "Payment Type"
617
  msgstr ""
618
 
619
- #: wpsc-theme/wpsc-shopping_cart_page.php:444
620
- msgid ""
621
- "I agree to The <a class='thickbox' target='_blank' href='%s' "
622
- "class='termsandconds'>Terms and Conditions</a>"
623
  msgstr ""
624
 
625
- #: wpsc-theme/wpsc-shopping_cart_page.php:454
626
- msgid "Review and purchase"
 
 
627
  msgstr ""
628
 
629
- #: wpsc-theme/wpsc-shopping_cart_page.php:483 wpsc-shipping/tablerate.php:50
630
- msgid "Total Price"
 
 
631
  msgstr ""
632
 
633
- #: wpsc-theme/wpsc-shopping_cart_page.php:498
634
- msgid "Purchase"
 
 
635
  msgstr ""
636
 
637
- #: wpsc-core/wpsc-installer.php:159
638
  msgid ""
639
- "Thank you for purchasing with %shop_name%, any items to be shipped will be "
640
- "processed as soon as possible, any items that can be downloaded can be "
641
- "downloaded using the links on this page.All prices include tax and postage "
642
- "and packaging where applicable.\n"
643
- "\tYou ordered these items: \n"
644
- "\t%product_list%%total_shipping%%total_price%"
645
  msgstr ""
646
 
647
- #: wpsc-core/wpsc-installer.php:162 wpsc-updates/updating_tasks.php:391
648
- #: wpsc-updates/updating_tasks.php:404
649
- msgid "%product_list%%total_shipping%%total_price%"
 
 
 
650
  msgstr ""
651
 
652
- #: wpsc-core/wpsc-installer.php:204
653
- msgid "Products Page"
 
 
654
  msgstr ""
655
 
656
- #: wpsc-core/wpsc-installer.php:216
657
- msgid "Transaction Results"
658
  msgstr ""
659
 
660
- #: wpsc-core/wpsc-installer.php:222
661
- msgid "Your Account"
 
 
 
 
 
662
  msgstr ""
663
 
664
- #: wpsc-core/wpsc-installer.php:293
665
- msgid "Product Category"
 
 
666
  msgstr ""
667
 
668
- #: wpsc-core/wpsc-installer.php:300
669
- msgid "This is a description"
670
  msgstr ""
671
 
672
- #: wpsc-core/wpsc-installer.php:744
673
- msgid "Your billing/contact details"
674
  msgstr ""
675
 
676
- #: wpsc-core/wpsc-installer.php:747 wpsc-core/wpsc-installer.php:756
677
- #: wpsc-admin/admin-form-functions.php:371
678
- msgid "Address"
679
  msgstr ""
680
 
681
- #: wpsc-core/wpsc-installer.php:749 wpsc-core/wpsc-installer.php:758
682
- #: wpsc-admin/admin-form-functions.php:320
683
- #: wpsc-admin/admin-form-functions.php:328
684
- msgid "State"
685
  msgstr ""
686
 
687
- #: wpsc-core/wpsc-installer.php:751 wpsc-core/wpsc-installer.php:760
688
- msgid "Postal Code"
689
  msgstr ""
690
 
691
- #: wpsc-core/js/tinymce3/window.php:9
692
- msgid "You don't have permission to be doing that!"
693
  msgstr ""
694
 
695
- #: wpsc-core/js/tinymce3/window.php:43 wpsc-admin/admin-form-functions.php:229
696
- msgid "Category"
697
  msgstr ""
698
 
699
- #: wpsc-core/js/tinymce3/window.php:44 wpsc-core/wpsc-functions.php:291
700
- msgid "Products"
701
  msgstr ""
702
 
703
- #: wpsc-core/js/tinymce3/window.php:45
704
- msgid "Premium Upgrades"
 
 
 
 
 
705
  msgstr ""
706
 
707
- #: wpsc-core/js/tinymce3/window.php:55
708
- msgid "Select Category: "
 
709
  msgstr ""
710
 
711
- #: wpsc-core/js/tinymce3/window.php:58 wpsc-core/js/tinymce3/window.php:111
712
- msgid "No Category"
 
713
  msgstr ""
714
 
715
- #: wpsc-core/js/tinymce3/window.php:64 wpsc-core/js/tinymce3/window.php:118
716
- msgid "Select the category you would like to display with a Shortcode."
717
  msgstr ""
718
 
719
- #: wpsc-core/js/tinymce3/window.php:69
720
- msgid "Number of products per Page: "
 
 
721
  msgstr ""
722
 
723
- #: wpsc-core/js/tinymce3/window.php:72
724
- msgid "Select the number of products you would like to display per page."
 
 
725
  msgstr ""
726
 
727
- #: wpsc-core/js/tinymce3/window.php:77
728
- msgid "Sale Products:"
729
  msgstr ""
730
 
731
- #: wpsc-core/js/tinymce3/window.php:82
732
- msgid "Add ALL sale products"
733
  msgstr ""
734
 
735
- #: wpsc-core/js/tinymce3/window.php:83
736
- msgid "This will add all your products you have on sale to the page"
737
  msgstr ""
738
 
739
- #: wpsc-core/js/tinymce3/window.php:89
740
- msgid "Add sale products by category"
741
  msgstr ""
742
 
743
- #: wpsc-core/js/tinymce3/window.php:90
744
- msgid ""
745
- "This will add all your products you have on sale from the selected category"
746
  msgstr ""
747
 
748
- #: wpsc-core/js/tinymce3/window.php:102
749
- #: wpsc-admin/display-upgrades.page.php:43
750
- msgid "Product Slider"
751
  msgstr ""
752
 
753
- #: wpsc-core/js/tinymce3/window.php:108
754
- msgid "Select Category"
755
  msgstr ""
756
 
757
- #: wpsc-core/js/tinymce3/window.php:112
758
- msgid "All Categories"
759
  msgstr ""
760
 
761
- #: wpsc-core/js/tinymce3/window.php:123
762
- msgid "Number of Products"
763
  msgstr ""
764
 
765
- #: wpsc-core/js/tinymce3/window.php:126
766
- msgid "Number of Products to be displayed in the slider."
767
  msgstr ""
768
 
769
- #: wpsc-core/js/tinymce3/window.php:132
770
- msgid ""
771
- "You don't have the product slider installed, for a cool way to display your "
772
- "shop check out the <a href=\"http://getshopped.org/extend/premium-upgrades/"
773
- "premium-upgrades/product-slider-2010/\" target=\"_blank\">Product Slider</a>"
774
  msgstr ""
775
 
776
- #: wpsc-core/js/tinymce3/window.php:139
777
- msgid "Members and Capabilities"
 
 
 
 
 
 
 
778
  msgstr ""
779
 
780
- #: wpsc-core/js/tinymce3/window.php:144
781
- msgid ""
782
- "<p> To create a preview on your restricted page put this shortcode at the "
783
- "top of your page. you can include html within this short code to display "
784
- "things like images "
785
  msgstr ""
786
 
787
- #: wpsc-core/js/tinymce3/window.php:145
788
- msgid "[preview] Preview In Here [/preview]"
789
  msgstr ""
790
 
791
- #: wpsc-core/js/tinymce3/window.php:149
792
- msgid ""
793
- " You don't have the Members and Capabilities plugin installed, to start "
794
- "managing your users and creating subscription for you site visit: <a href="
795
- "\"http://getshopped.org/extend/premium-upgrades/premium-upgrades/product-"
796
- "slider-2010/\" target=\"_blank\">Premium Upgrades</a>"
797
  msgstr ""
798
 
799
- #: wpsc-core/js/tinymce3/window.php:158
800
- msgid "Select a Product"
801
  msgstr ""
802
 
803
- #: wpsc-core/js/tinymce3/window.php:161
804
- #: wpsc-includes/form-display.functions.php:215
805
- msgid "No Product"
806
  msgstr ""
807
 
808
- #: wpsc-core/js/tinymce3/window.php:167
809
- msgid "Select the product you would like to create a shortcode for."
810
  msgstr ""
811
 
812
- #: wpsc-core/js/tinymce3/window.php:175
813
- msgid "Shortcode:"
 
814
  msgstr ""
815
 
816
- #: wpsc-core/js/tinymce3/window.php:177
817
- msgid "Add a buy now button"
818
  msgstr ""
819
 
820
- #: wpsc-core/js/tinymce3/window.php:178
821
- msgid ""
822
- "This adds a paypal buy now button for the product selected, this will take "
823
- "your customer straight to PayPal."
824
  msgstr ""
825
 
826
- #: wpsc-core/js/tinymce3/window.php:185
827
- msgid "Add an add to cart button"
828
  msgstr ""
829
 
830
- #: wpsc-core/js/tinymce3/window.php:186
831
- msgid "This adds an add to cart button for the product selected."
 
 
 
 
 
 
 
 
 
 
 
832
  msgstr ""
833
 
834
- #: wpsc-core/js/tinymce3/window.php:193
835
- msgid "Add product"
836
  msgstr ""
837
 
838
- #: wpsc-core/js/tinymce3/window.php:194
839
- msgid "This will add the selected product to your page."
 
 
 
840
  msgstr ""
841
 
842
- #: wpsc-core/js/tinymce3/window.php:203 wpsc-admin/includes/products.php:135
843
- msgid "Cancel"
844
  msgstr ""
845
 
846
- #: wpsc-core/js/tinymce3/window.php:207
847
- msgid "Insert"
 
 
848
  msgstr ""
849
 
850
- #: wpsc-core/wpsc-functions.php:139
851
- msgid "Incomplete Sale"
852
  msgstr ""
853
 
854
- #: wpsc-core/wpsc-functions.php:144
855
- msgid "Order Received"
 
 
856
  msgstr ""
857
 
858
- #: wpsc-core/wpsc-functions.php:149
859
- msgid "Accepted Payment"
860
  msgstr ""
861
 
862
- #: wpsc-core/wpsc-functions.php:155
863
- msgid "Job Dispatched"
864
  msgstr ""
865
 
866
- #: wpsc-core/wpsc-functions.php:161
867
- msgid "Closed Order"
 
868
  msgstr ""
869
 
870
- #: wpsc-core/wpsc-functions.php:167
871
- msgid "Payment Declined"
872
  msgstr ""
873
 
874
- #: wpsc-core/wpsc-functions.php:253
875
- msgid "Please Note"
876
  msgstr ""
877
 
878
- #: wpsc-core/wpsc-functions.php:254
879
- msgid ""
880
- "Before upgrading you should check the <a %s>upgrade information</a> and "
881
- "changelog as you may need to make updates to your template files."
882
  msgstr ""
883
 
884
- #: wpsc-core/wpsc-functions.php:280
885
- msgctxt "post type name"
886
- msgid "Products"
887
  msgstr ""
888
 
889
- #: wpsc-core/wpsc-functions.php:281
890
- msgctxt "post type singular name"
891
- msgid "Product"
892
  msgstr ""
893
 
894
- #: wpsc-core/wpsc-functions.php:282
895
- msgctxt "admin menu: add new product"
896
- msgid "Add New"
897
  msgstr ""
898
 
899
- #: wpsc-core/wpsc-functions.php:283
900
- msgid "Add New Product"
 
 
901
  msgstr ""
902
 
903
- #: wpsc-core/wpsc-functions.php:284
904
- msgid "Edit Product"
905
  msgstr ""
906
 
907
- #: wpsc-core/wpsc-functions.php:285
908
- msgid "New Product"
909
  msgstr ""
910
 
911
- #: wpsc-core/wpsc-functions.php:286
912
- msgid "View Product"
913
  msgstr ""
914
 
915
- #: wpsc-core/wpsc-functions.php:287
916
- msgid "Search Products"
917
  msgstr ""
918
 
919
- #: wpsc-core/wpsc-functions.php:288
920
- msgid "No products found"
 
921
  msgstr ""
922
 
923
- #: wpsc-core/wpsc-functions.php:289
924
- msgid "No products found in Trash"
 
 
 
 
925
  msgstr ""
926
 
927
- #: wpsc-core/wpsc-functions.php:320
928
- msgctxt "taxonomy general name"
929
- msgid "Product Tags"
930
  msgstr ""
931
 
932
- #: wpsc-core/wpsc-functions.php:321
933
- msgctxt "taxonomy singular name"
934
- msgid "Product Tag"
935
  msgstr ""
936
 
937
- #: wpsc-core/wpsc-functions.php:322
938
- msgid "Product Search Tags"
 
939
  msgstr ""
940
 
941
- #: wpsc-core/wpsc-functions.php:323
942
- msgid "All Product Tags"
 
943
  msgstr ""
944
 
945
- #: wpsc-core/wpsc-functions.php:324
946
- msgid "Edit Tag"
 
947
  msgstr ""
948
 
949
- #: wpsc-core/wpsc-functions.php:325
950
- msgid "Update Tag"
951
  msgstr ""
952
 
953
- #: wpsc-core/wpsc-functions.php:326
954
- msgid "Add new Product Tag"
955
  msgstr ""
956
 
957
- #: wpsc-core/wpsc-functions.php:327
958
- msgid "New Product Tag Name"
959
  msgstr ""
960
 
961
- #: wpsc-core/wpsc-functions.php:339
962
- msgctxt "taxonomy general name"
963
- msgid "Categories"
964
  msgstr ""
965
 
966
- #: wpsc-core/wpsc-functions.php:340
967
- msgctxt "taxonomy singular name"
968
- msgid "Product Category"
969
  msgstr ""
970
 
971
- #: wpsc-core/wpsc-functions.php:341
972
- msgid "Search Product Categories"
973
  msgstr ""
974
 
975
- #: wpsc-core/wpsc-functions.php:342
976
- msgid "All Product Categories"
977
  msgstr ""
978
 
979
- #: wpsc-core/wpsc-functions.php:343
980
- msgid "Parent Product Category"
981
  msgstr ""
982
 
983
- #: wpsc-core/wpsc-functions.php:344
984
- msgid "Parent Product Category:"
985
  msgstr ""
986
 
987
- #: wpsc-core/wpsc-functions.php:345
988
- msgid "Edit Product Category"
989
  msgstr ""
990
 
991
- #: wpsc-core/wpsc-functions.php:346
992
- msgid "Update Product Category"
993
  msgstr ""
994
 
995
- #: wpsc-core/wpsc-functions.php:347
996
- msgid "Add New Product Category"
997
  msgstr ""
998
 
999
- #: wpsc-core/wpsc-functions.php:348
1000
- msgid "New Product Category Name"
1001
  msgstr ""
1002
 
1003
- #: wpsc-core/wpsc-functions.php:359
1004
- msgctxt "taxonomy general name"
1005
- msgid "Variations"
1006
  msgstr ""
1007
 
1008
- #: wpsc-core/wpsc-functions.php:360
1009
- msgctxt "taxonomy singular name"
1010
- msgid "Variation"
1011
  msgstr ""
1012
 
1013
- #: wpsc-core/wpsc-functions.php:361
1014
- msgid "Search Variations"
1015
  msgstr ""
1016
 
1017
- #: wpsc-core/wpsc-functions.php:362
1018
- msgid "All Variations"
1019
  msgstr ""
1020
 
1021
- #: wpsc-core/wpsc-functions.php:363
1022
- msgid "Parent Variation"
1023
  msgstr ""
1024
 
1025
- #: wpsc-core/wpsc-functions.php:364
1026
- msgid "Parent Variations:"
1027
  msgstr ""
1028
 
1029
- #: wpsc-core/wpsc-functions.php:365
1030
- msgid "Edit Variation"
1031
  msgstr ""
1032
 
1033
- #: wpsc-core/wpsc-functions.php:366
1034
- msgid "Update Variation"
1035
  msgstr ""
1036
 
1037
- #: wpsc-core/wpsc-functions.php:367
1038
- msgid "Add New Variation/Set"
1039
  msgstr ""
1040
 
1041
- #: wpsc-core/wpsc-functions.php:368
1042
- msgid "New Variation Name"
1043
- msgstr ""
 
 
 
1044
 
1045
- #: wpsc-merchants/testmode.merchant.php:46
1046
- msgid ""
1047
- "Enter the payment instructions that you wish to display to your customers "
1048
- "when they make a purchase"
1049
- msgstr ""
 
1050
 
1051
- #: wpsc-merchants/testmode.merchant.php:48
1052
- msgid ""
1053
- "For example, this is where you the Shop Owner might enter your bank account "
1054
- "details or address so that your customer can make their manual payment."
1055
- msgstr ""
 
1056
 
1057
- #: wpsc-merchants/paypal-pro.merchant.php:147
1058
- msgid "There was a problem connecting to the payment gateway."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1059
  msgstr ""
1060
 
1061
- #: wpsc-merchants/paypal-pro.merchant.php:163
1062
- msgid ""
1063
- "There is a problem with your PayPal account configuration, please contact "
1064
- "PayPal for further information."
1065
  msgstr ""
1066
 
1067
- #: wpsc-merchants/paypal-pro.merchant.php:327
1068
- msgid "API Username:"
 
1069
  msgstr ""
1070
 
1071
- #: wpsc-merchants/paypal-pro.merchant.php:335
1072
- msgid "API Password:"
 
1073
  msgstr ""
1074
 
1075
- #: wpsc-merchants/paypal-pro.merchant.php:343
1076
- msgid "API Signature:"
1077
  msgstr ""
1078
 
1079
- #: wpsc-merchants/paypal-pro.merchant.php:351
1080
- msgid "Test Mode Enabled:"
 
 
 
 
 
 
1081
  msgstr ""
1082
 
1083
- #: wpsc-merchants/paypal-pro.merchant.php:375
1084
- msgid "Credit Card Number *"
 
 
 
 
 
 
 
 
 
 
 
1085
  msgstr ""
1086
 
1087
- #: wpsc-merchants/paypal-pro.merchant.php:381
1088
- msgid "Credit Card Expiry *"
 
1089
  msgstr ""
1090
 
1091
- #: wpsc-merchants/paypal-pro.merchant.php:404
1092
- msgid "CVV *"
1093
  msgstr ""
1094
 
1095
- #: wpsc-merchants/paypal-pro.merchant.php:409
1096
- msgid "Card Type *"
 
 
1097
  msgstr ""
1098
 
1099
- #: wpsc-merchants/paypal-pro.merchant.php:412
1100
- msgid "Visa"
1101
  msgstr ""
1102
 
1103
- #: wpsc-merchants/paypal-pro.merchant.php:413
1104
- msgid "MasterCard"
 
 
 
1105
  msgstr ""
1106
 
1107
- #: wpsc-merchants/paypal-pro.merchant.php:414
1108
- msgid "Discover"
1109
  msgstr ""
1110
 
1111
- #: wpsc-merchants/paypal-pro.merchant.php:415
1112
- msgid "Amex"
1113
  msgstr ""
1114
 
1115
- #: wpsc-merchants/chronopay.php:436
1116
- #: wpsc-merchants/paypal-standard.merchant.php:532
1117
- #: wpsc-merchants/paypal-standard.merchant.php:540
1118
- #: wpsc-merchants/paypal-standard.merchant.php:556
1119
- #: wpsc-admin/includes/save-data.functions.php:308
1120
- #: wpsc-admin/includes/save-data.functions.php:533
1121
- #: wpsc-admin/includes/settings-pages/presentation.php:276
1122
- #: wpsc-admin/includes/settings-pages/presentation.php:303
1123
- #: wpsc-admin/includes/settings-pages/presentation.php:321
1124
- #: wpsc-admin/includes/settings-pages/presentation.php:344
1125
- #: wpsc-admin/includes/settings-pages/presentation.php:367
1126
- #: wpsc-admin/includes/settings-pages/presentation.php:390
1127
- #: wpsc-admin/includes/settings-pages/presentation.php:413
1128
- #: wpsc-admin/includes/settings-pages/presentation.php:553
1129
- #: wpsc-admin/includes/settings-pages/presentation.php:621
1130
- #: wpsc-admin/includes/settings-pages/presentation.php:670
1131
- #: wpsc-admin/includes/settings-pages/presentation.php:714
1132
- #: wpsc-admin/includes/settings-pages/presentation.php:749
1133
- #: wpsc-admin/includes/settings-pages/presentation.php:771
1134
- #: wpsc-admin/includes/settings-pages/presentation.php:879
1135
- #: wpsc-admin/includes/settings-pages/presentation.php:906
1136
- #: wpsc-admin/includes/settings-pages/presentation.php:930
1137
- #: wpsc-admin/includes/settings-pages/presentation.php:956
1138
- #: wpsc-admin/includes/settings-pages/presentation.php:981
1139
- #: wpsc-admin/includes/settings-pages/presentation.php:1037
1140
- #: wpsc-admin/includes/settings-pages/presentation.php:1063
1141
- #: wpsc-admin/includes/settings-pages/presentation.php:1084
1142
- #: wpsc-admin/includes/settings-pages/presentation.php:1128
1143
- #: wpsc-admin/includes/settings-pages/presentation.php:1173
1144
- #: wpsc-admin/includes/settings-pages/presentation.php:1226
1145
- #: wpsc-admin/includes/settings-pages/admin.php:38
1146
- #: wpsc-admin/includes/settings-pages/admin.php:64
1147
- #: wpsc-admin/includes/settings-pages/checkout.php:51
1148
- #: wpsc-admin/includes/settings-pages/checkout.php:76
1149
- #: wpsc-admin/includes/settings-pages/checkout.php:99
1150
- #: wpsc-admin/includes/settings-pages/shipping.php:66
1151
- #: wpsc-admin/includes/settings-pages/shipping.php:108
1152
- #: wpsc-admin/includes/settings-pages/shipping.php:139
1153
- #: wpsc-admin/includes/display-items-functions.php:765
1154
- msgid "Yes"
1155
- msgstr ""
1156
-
1157
- #: wpsc-merchants/chronopay.php:437
1158
- #: wpsc-merchants/paypal-standard.merchant.php:533
1159
- #: wpsc-merchants/paypal-standard.merchant.php:541
1160
- #: wpsc-merchants/paypal-standard.merchant.php:557
1161
- #: wpsc-admin/includes/save-data.functions.php:309
1162
- #: wpsc-admin/includes/save-data.functions.php:534
1163
- #: wpsc-admin/includes/settings-pages/presentation.php:277
1164
- #: wpsc-admin/includes/settings-pages/presentation.php:304
1165
- #: wpsc-admin/includes/settings-pages/presentation.php:322
1166
- #: wpsc-admin/includes/settings-pages/presentation.php:345
1167
- #: wpsc-admin/includes/settings-pages/presentation.php:368
1168
- #: wpsc-admin/includes/settings-pages/presentation.php:392
1169
- #: wpsc-admin/includes/settings-pages/presentation.php:416
1170
- #: wpsc-admin/includes/settings-pages/presentation.php:555
1171
- #: wpsc-admin/includes/settings-pages/presentation.php:622
1172
- #: wpsc-admin/includes/settings-pages/presentation.php:671
1173
- #: wpsc-admin/includes/settings-pages/presentation.php:715
1174
- #: wpsc-admin/includes/settings-pages/presentation.php:750
1175
- #: wpsc-admin/includes/settings-pages/presentation.php:772
1176
- #: wpsc-admin/includes/settings-pages/presentation.php:880
1177
- #: wpsc-admin/includes/settings-pages/presentation.php:907
1178
- #: wpsc-admin/includes/settings-pages/presentation.php:931
1179
- #: wpsc-admin/includes/settings-pages/presentation.php:957
1180
- #: wpsc-admin/includes/settings-pages/presentation.php:982
1181
- #: wpsc-admin/includes/settings-pages/presentation.php:1038
1182
- #: wpsc-admin/includes/settings-pages/presentation.php:1064
1183
- #: wpsc-admin/includes/settings-pages/presentation.php:1085
1184
- #: wpsc-admin/includes/settings-pages/presentation.php:1129
1185
- #: wpsc-admin/includes/settings-pages/presentation.php:1174
1186
- #: wpsc-admin/includes/settings-pages/presentation.php:1227
1187
- #: wpsc-admin/includes/settings-pages/admin.php:39
1188
- #: wpsc-admin/includes/settings-pages/admin.php:65
1189
- #: wpsc-admin/includes/settings-pages/checkout.php:52
1190
- #: wpsc-admin/includes/settings-pages/checkout.php:78
1191
- #: wpsc-admin/includes/settings-pages/checkout.php:100
1192
- #: wpsc-admin/includes/settings-pages/shipping.php:67
1193
- #: wpsc-admin/includes/settings-pages/shipping.php:109
1194
- #: wpsc-admin/includes/settings-pages/shipping.php:140
1195
- #: wpsc-admin/includes/display-items-functions.php:766
1196
- msgid "No"
1197
- msgstr ""
1198
-
1199
- #: wpsc-merchants/chronopay.php:449
1200
- #: wpsc-merchants/paypal-standard.merchant.php:615
1201
- #: wpsc-admin/includes/settings-pages/presentation.php:1262
1202
- #: wpsc-admin/includes/settings-pages/admin.php:166
1203
- #: wpsc-admin/includes/settings-pages/marketing.php:82
1204
- #: wpsc-admin/includes/settings-pages/general.php:160
1205
- #: wpsc-admin/includes/settings-pages/shipping.php:162
1206
- #: wpsc-admin/includes/settings-pages/shipping.php:235
1207
- #: wpsc-admin/includes/settings-pages/shipping.php:262
1208
- #: wpsc-admin/includes/settings-pages/gateway.php:113
1209
- #: wpsc-admin/includes/settings-pages/gateway.php:148
1210
- msgid "Update &raquo;"
1211
- msgstr ""
1212
-
1213
- #: wpsc-merchants/library/google_shipping_country.php:7
1214
- msgid "Google Shipping Country"
1215
- msgstr ""
1216
-
1217
- #: wpsc-merchants/library/google_shipping_country.php:44
1218
- #: wpsc-admin/includes/settings-pages/checkout.php:225
1219
- #: wpsc-admin/includes/tax_and_shipping.php:66
1220
- msgid "Save Changes"
1221
- msgstr ""
1222
-
1223
- #: wpsc-merchants/paypal-standard.merchant.php:170
1224
- msgid "Your Subscription"
1225
- msgstr ""
1226
-
1227
- #: wpsc-merchants/paypal-standard.merchant.php:580
1228
- #: wpsc-merchants/paypal-express.merchant.php:293
1229
- msgid "Currency Converter"
1230
- msgstr ""
1231
-
1232
- #: wpsc-merchants/paypal-standard.merchant.php:583
1233
  msgid ""
1234
- "Your website uses <strong>%s</strong>. This currency is not supported by "
1235
- "PayPal, please select a currency using the drop down menu below. Buyers on "
1236
- "your site will still pay in your local currency however we will send the "
1237
- "order through to Paypal using the currency you choose below."
1238
- msgstr ""
1239
-
1240
- #: wpsc-merchants/paypal-express.merchant.php:12
1241
- msgid "PayPal Express Checkout 2.0"
1242
- msgstr ""
1243
-
1244
- #: wpsc-merchants/paypal-express.merchant.php:18
1245
- msgid "PayPal Express"
1246
- msgstr ""
1247
-
1248
- #: wpsc-merchants/paypal-express.merchant.php:256
1249
- msgid "API Username"
1250
- msgstr ""
1251
-
1252
- #: wpsc-merchants/paypal-express.merchant.php:263
1253
- msgid "API Password"
1254
- msgstr ""
1255
-
1256
- #: wpsc-merchants/paypal-express.merchant.php:270
1257
- msgid "API Signature"
1258
- msgstr ""
1259
-
1260
- #: wpsc-merchants/paypal-express.merchant.php:277
1261
- msgid "Server Type"
1262
- msgstr ""
1263
-
1264
- #: wpsc-merchants/paypal-express.merchant.php:280
1265
- msgid "Sandbox (For testing)"
1266
  msgstr ""
1267
 
1268
- #: wpsc-merchants/paypal-express.merchant.php:281
1269
- msgid "Production"
1270
  msgstr ""
1271
 
1272
- #: wpsc-merchants/paypal-express.merchant.php:295
1273
  msgid ""
1274
- "Your website is using a currency not accepted by PayPal, select an accepted "
1275
- "currency using the drop down menu bellow. Buyers on your site will still pay "
1276
- "in your local currency however we will convert the currency and send the "
1277
- "order through to PayPal using the currency you choose below."
1278
- msgstr ""
1279
-
1280
- #: wpsc-merchants/paypal-express.merchant.php:298
1281
- msgid "Convert to"
1282
- msgstr ""
1283
-
1284
- #: wpsc-merchants/paypal-express.merchant.php:378
1285
- msgid "The PayPal API has returned an error!"
1286
- msgstr ""
1287
-
1288
- #: wpsc-merchants/paypal-express.merchant.php:423
1289
- #: wpsc-merchants/paypal-express.merchant.php:602
1290
- msgid "Error Number:"
1291
- msgstr ""
1292
-
1293
- #: wpsc-merchants/paypal-express.merchant.php:427
1294
- msgid "Short Message:"
1295
- msgstr ""
1296
-
1297
- #: wpsc-merchants/paypal-express.merchant.php:431
1298
- msgid "Long Message:"
1299
- msgstr ""
1300
-
1301
- #: wpsc-merchants/paypal-express.merchant.php:606
1302
- msgid "Shipping Address:"
1303
- msgstr ""
1304
-
1305
- #: wpsc-merchants/paypal-express.merchant.php:610
1306
- msgid "Street 1:"
1307
- msgstr ""
1308
-
1309
- #: wpsc-merchants/paypal-express.merchant.php:616
1310
- msgid "Street 2:"
1311
- msgstr ""
1312
-
1313
- #: wpsc-merchants/paypal-express.merchant.php:622
1314
- msgid "City:"
1315
- msgstr ""
1316
-
1317
- #: wpsc-merchants/paypal-express.merchant.php:628
1318
- msgid "State:"
1319
- msgstr ""
1320
-
1321
- #: wpsc-merchants/paypal-express.merchant.php:633
1322
- msgid "Postal code:"
1323
- msgstr ""
1324
-
1325
- #: wpsc-merchants/paypal-express.merchant.php:639
1326
- msgid "Country:"
1327
- msgstr ""
1328
-
1329
- #: wpsc-merchants/paypal-express.merchant.php:656
1330
- msgid "Confirm Payment"
1331
- msgstr ""
1332
-
1333
- #: wpsc-widgets/category_widget.php:17
1334
- msgid "Product Grouping Widget"
1335
- msgstr ""
1336
-
1337
- #: wpsc-widgets/category_widget.php:19 wpsc-widgets/category_widget.php:34
1338
- msgid "Product Categories"
1339
  msgstr ""
1340
 
1341
- #: wpsc-widgets/category_widget.php:128 wpsc-widgets/donations_widget.php:95
1342
- #: wpsc-widgets/admin_menu_widget.php:86
1343
- #: wpsc-widgets/latest_product_widget.php:87
1344
- #: wpsc-widgets/price_range_widget.php:84 wpsc-widgets/specials_widget.php:95
1345
- #: wpsc-widgets/shopping_cart_widget.php:137
1346
- #: wpsc-widgets/product_tag_widget.php:84
1347
- msgid "Title:"
1348
  msgstr ""
1349
 
1350
- #: wpsc-widgets/category_widget.php:133
1351
- msgid "Show Categories"
 
1352
  msgstr ""
1353
 
1354
- #: wpsc-widgets/category_widget.php:135
1355
- msgid "(leave all unchecked if you want to display all)"
 
1356
  msgstr ""
1357
 
1358
- #: wpsc-widgets/category_widget.php:140
1359
- #: wpsc-admin/includes/settings-pages/presentation.php:964
1360
- msgid "Use Category Grid View"
1361
  msgstr ""
1362
 
1363
- #: wpsc-widgets/category_widget.php:142
1364
- #: wpsc-widgets/latest_product_widget.php:98
1365
- #: wpsc-widgets/specials_widget.php:106
1366
- #: wpsc-admin/includes/settings-pages/presentation.php:1047
1367
- msgid "Show Thumbnails"
1368
  msgstr ""
1369
 
1370
- #: wpsc-widgets/category_widget.php:148
1371
- msgid " Show N/A when No Image Available"
 
1372
  msgstr ""
1373
 
1374
- #: wpsc-widgets/category_widget.php:151
1375
- #: wpsc-widgets/latest_product_widget.php:103
1376
- msgid "Width:"
1377
  msgstr ""
1378
 
1379
- #: wpsc-widgets/category_widget.php:153
1380
- #: wpsc-widgets/latest_product_widget.php:105
1381
- msgid "Height:"
1382
  msgstr ""
1383
 
1384
- #: wpsc-widgets/donations_widget.php:19
1385
- msgid "Donations Widget"
 
1386
  msgstr ""
1387
 
1388
- #: wpsc-widgets/donations_widget.php:22 wpsc-widgets/donations_widget.php:49
1389
- #: wpsc-widgets/donations_widget.php:87
1390
- msgid "Product Donations"
1391
  msgstr ""
1392
 
1393
- #: wpsc-widgets/admin_menu_widget.php:19
1394
- msgid "Admin Menu Widget"
 
1395
  msgstr ""
1396
 
1397
- #: wpsc-widgets/admin_menu_widget.php:22 wpsc-widgets/admin_menu_widget.php:42
1398
- msgid "Admin Menu"
1399
  msgstr ""
1400
 
1401
- #: wpsc-widgets/latest_product_widget.php:15
1402
- msgid "Latest Products Widget"
1403
  msgstr ""
1404
 
1405
- #: wpsc-widgets/latest_product_widget.php:16
1406
- #: wpsc-widgets/latest_product_widget.php:31
1407
- msgid "Latest Products"
1408
- msgstr ""
 
1409
 
1410
- #: wpsc-widgets/latest_product_widget.php:92
1411
- #: wpsc-widgets/specials_widget.php:99
1412
- msgid "Number of products to show:"
1413
- msgstr ""
 
1414
 
1415
- #: wpsc-widgets/price_range_widget.php:19
1416
- msgid "Price Range Widget"
1417
- msgstr ""
 
 
1418
 
1419
- #: wpsc-widgets/price_range_widget.php:22
1420
- #: wpsc-widgets/price_range_widget.php:41
1421
- msgid "Price Range"
1422
- msgstr ""
 
1423
 
1424
- #: wpsc-widgets/price_range_widget.php:136
1425
- msgid "Show All"
1426
  msgstr ""
1427
 
1428
- #: wpsc-widgets/specials_widget.php:19
1429
- msgid "Product Specials Widget"
1430
  msgstr ""
1431
 
1432
- #: wpsc-widgets/specials_widget.php:22 wpsc-widgets/specials_widget.php:41
1433
- msgid "Product Specials"
1434
  msgstr ""
1435
 
1436
- #: wpsc-widgets/specials_widget.php:104
1437
- msgid "Show Description"
1438
  msgstr ""
1439
 
1440
- #: wpsc-widgets/specials_widget.php:194
1441
- msgid "From"
1442
  msgstr ""
1443
 
1444
- #: wpsc-widgets/shopping_cart_widget.php:19
1445
- msgid "Shopping Cart Widget"
1446
  msgstr ""
1447
 
1448
- #: wpsc-widgets/shopping_cart_widget.php:22
1449
- #: wpsc-widgets/shopping_cart_widget.php:60
1450
- #: wpsc-widgets/shopping_cart_widget.php:124
1451
- #: wpsc-includes/shopping_cart_functions.php:44
1452
- #: wpsc-includes/shopping_cart_functions.php:52
1453
- #: wpsc-includes/shopping_cart_functions.php:69
1454
- msgid "Shopping Cart"
1455
  msgstr ""
1456
 
1457
- #: wpsc-widgets/shopping_cart_widget.php:78
1458
- #: wpsc-widgets/shopping_cart_widget.php:83
1459
- msgid "Loading..."
1460
  msgstr ""
1461
 
1462
- #: wpsc-widgets/shopping_cart_widget.php:143
1463
- msgid "Use Sliding Cart:"
1464
  msgstr ""
1465
 
1466
- #: wpsc-widgets/product_tag_widget.php:19
1467
- msgid "Product Tags Widget"
 
 
 
 
 
1468
  msgstr ""
1469
 
1470
- #: wpsc-widgets/product_tag_widget.php:22
1471
- #: wpsc-widgets/product_tag_widget.php:41
1472
- msgid "Product Tags"
1473
  msgstr ""
1474
 
1475
- #: wpsc-widgets/tagging_functions.php:94
1476
- msgid "%d topics"
 
 
 
 
1477
  msgstr ""
1478
 
1479
- #: wpsc-admin/display-debug.page.php:40
1480
- msgid "Update Page URLs"
1481
  msgstr ""
1482
 
1483
- #: wpsc-admin/display-debug.page.php:43
1484
- msgid "Fix Product Group Permalinks"
 
 
 
1485
  msgstr ""
1486
 
1487
- #: wpsc-admin/includes/purchlogs_upgrade.php:35
1488
- msgid "Select an Option"
 
1489
  msgstr ""
1490
 
1491
- #: wpsc-admin/includes/purchlogs_upgrade.php:36
1492
- msgid "Billing First Name"
 
 
 
1493
  msgstr ""
1494
 
1495
- #: wpsc-admin/includes/purchlogs_upgrade.php:37
1496
- msgid "Billing Last Name"
 
 
 
1497
  msgstr ""
1498
 
1499
- #: wpsc-admin/includes/purchlogs_upgrade.php:38
1500
- msgid "Billing Address"
1501
  msgstr ""
1502
 
1503
- #: wpsc-admin/includes/purchlogs_upgrade.php:39
1504
- msgid "Billing City"
1505
  msgstr ""
1506
 
1507
- #: wpsc-admin/includes/purchlogs_upgrade.php:41
1508
- msgid "Billing Country"
1509
  msgstr ""
1510
 
1511
- #: wpsc-admin/includes/purchlogs_upgrade.php:42
1512
- msgid "Billing Email"
1513
  msgstr ""
1514
 
1515
- #: wpsc-admin/includes/purchlogs_upgrade.php:43
1516
- msgid "Billing Phone"
1517
  msgstr ""
1518
 
1519
- #: wpsc-admin/includes/purchlogs_upgrade.php:44
1520
- msgid "Billing Post Code"
1521
  msgstr ""
1522
 
1523
- #: wpsc-admin/includes/purchlogs_upgrade.php:45
1524
- msgid "Shipping First Name"
1525
  msgstr ""
1526
 
1527
- #: wpsc-admin/includes/purchlogs_upgrade.php:46
1528
- msgid "Shipping Last Name"
1529
  msgstr ""
1530
 
1531
- #: wpsc-admin/includes/purchlogs_upgrade.php:48
1532
- msgid "Shipping City"
1533
  msgstr ""
1534
 
1535
- #: wpsc-admin/includes/purchlogs_upgrade.php:49
1536
- msgid "Shipping State"
1537
  msgstr ""
1538
 
1539
- #: wpsc-admin/includes/purchlogs_upgrade.php:50
1540
- msgid "Shipping Country"
1541
  msgstr ""
1542
 
1543
- #: wpsc-admin/includes/purchlogs_upgrade.php:51
1544
- msgid "Shipping Post Code"
1545
  msgstr ""
1546
 
1547
- #: wpsc-admin/includes/purchlogs_upgrade.php:62
1548
- msgid "Check Out Form Fields updated."
1549
  msgstr ""
1550
 
1551
- #: wpsc-admin/includes/purchlogs_upgrade.php:68
1552
- msgid "Sales Upgrade Fix"
1553
  msgstr ""
1554
 
1555
- #: wpsc-admin/includes/purchlogs_upgrade.php:69
1556
- msgid ""
1557
- "Upgrading to WP e-Commerce 3.7 and later requires you to run this fix once."
1558
- "The following Boxes corresponds to the form fields in your current checkout "
1559
- "page. All you have to do is select from the drop-down menu box what each of "
1560
- "the following fields represent. Sorry for any inconvenience caused, but "
1561
- "we're sure you'll agree that the new purchase logs are worth this minor "
1562
- "hassle."
1563
  msgstr ""
1564
 
1565
- #: wpsc-admin/includes/purchlogs_upgrade.php:100
1566
- #: wpsc-admin/display-sales-logs.php:297
1567
- msgid "Apply"
1568
  msgstr ""
1569
 
1570
- #: wpsc-admin/includes/save-data.functions.php:71
1571
- msgid "Image"
1572
  msgstr ""
1573
 
1574
- #: wpsc-admin/includes/save-data.functions.php:141
1575
- #: wpsc-admin/includes/save-data.functions.php:348 wpsc-admin/admin.php:310
1576
- msgid "Advanced Settings"
1577
  msgstr ""
1578
 
1579
- #: wpsc-admin/includes/save-data.functions.php:144
1580
- msgid "Presentation Settings"
1581
  msgstr ""
1582
 
1583
- #: wpsc-admin/includes/save-data.functions.php:149
1584
- #: wpsc-admin/includes/save-data.functions.php:409
1585
- msgid "Category Image"
 
1586
  msgstr ""
1587
 
1588
- #: wpsc-admin/includes/save-data.functions.php:157
1589
- #: wpsc-admin/includes/save-data.functions.php:354
1590
- msgid "Catalog View"
 
1591
  msgstr ""
1592
 
1593
- #: wpsc-admin/includes/save-data.functions.php:193
1594
- #: wpsc-admin/includes/save-data.functions.php:390
1595
- #: wpsc-includes/form-display.functions.php:9
1596
- msgid "Please select"
1597
  msgstr ""
1598
 
1599
- #: wpsc-admin/includes/save-data.functions.php:194
1600
- #: wpsc-admin/includes/save-data.functions.php:391
1601
- #: wpsc-admin/includes/settings-pages/presentation.php:481
1602
- msgid "Default View"
1603
  msgstr ""
1604
 
1605
- #: wpsc-admin/includes/save-data.functions.php:197
1606
- #: wpsc-admin/includes/save-data.functions.php:199
1607
- #: wpsc-admin/includes/save-data.functions.php:394
1608
- #: wpsc-admin/includes/save-data.functions.php:396
1609
- #: wpsc-admin/includes/settings-pages/presentation.php:485
1610
- #: wpsc-admin/includes/settings-pages/presentation.php:489
1611
- msgid "List View"
1612
  msgstr ""
1613
 
1614
- #: wpsc-admin/includes/save-data.functions.php:202
1615
- #: wpsc-admin/includes/save-data.functions.php:204
1616
- #: wpsc-admin/includes/save-data.functions.php:399
1617
- #: wpsc-admin/includes/save-data.functions.php:401
1618
- #: wpsc-admin/includes/settings-pages/presentation.php:495
1619
- #: wpsc-admin/includes/settings-pages/presentation.php:499
1620
- msgid "Grid View"
1621
  msgstr ""
1622
 
1623
- #: wpsc-admin/includes/save-data.functions.php:211
1624
- #: wpsc-admin/includes/save-data.functions.php:404
1625
- msgid ""
1626
- "To over-ride the presentation settings for this group you can enter in your "
1627
- "prefered settings here"
1628
  msgstr ""
1629
 
1630
- #: wpsc-admin/includes/save-data.functions.php:218
1631
- msgid "Thumbnail&nbsp;Size"
1632
  msgstr ""
1633
 
1634
- #: wpsc-admin/includes/save-data.functions.php:221
1635
- #: wpsc-admin/includes/save-data.functions.php:423
1636
- #: wpsc-admin/includes/settings-pages/presentation.php:995
1637
- #: wpsc-admin/includes/settings-pages/presentation.php:1005
1638
- #: wpsc-admin/includes/settings-pages/presentation.php:1014
1639
- #: wpsc-admin/includes/settings-pages/presentation.php:1138
1640
- #: wpsc-admin/includes/display-items-functions.php:597
1641
- msgid "Width"
1642
  msgstr ""
1643
 
1644
- #: wpsc-admin/includes/save-data.functions.php:222
1645
- #: wpsc-admin/includes/save-data.functions.php:424
1646
- #: wpsc-admin/includes/settings-pages/presentation.php:996
1647
- #: wpsc-admin/includes/settings-pages/presentation.php:1006
1648
- #: wpsc-admin/includes/settings-pages/presentation.php:1015
1649
- #: wpsc-admin/includes/settings-pages/presentation.php:1139
1650
- #: wpsc-admin/includes/display-items-functions.php:584
1651
- msgid "Height"
1652
  msgstr ""
1653
 
1654
- #: wpsc-admin/includes/save-data.functions.php:233
1655
- #: wpsc-admin/includes/save-data.functions.php:455
1656
- msgid "Target Market Restrictions"
1657
  msgstr ""
1658
 
1659
- #: wpsc-admin/includes/save-data.functions.php:242
1660
- #: wpsc-admin/includes/save-data.functions.php:464
1661
- #: wpsc-admin/includes/settings-pages/general.php:52
1662
- msgid "Target Markets"
1663
  msgstr ""
1664
 
1665
- #: wpsc-admin/includes/save-data.functions.php:247
1666
- msgid ""
1667
- "The Target Markets feature has been disabled because you have the Suhosin "
1668
- "PHP extension installed on this server. If you need to use the Target "
1669
- "Markets feature then disable the suhosin extension, if you can not do this, "
1670
- "you will need to contact your hosting provider.\n"
1671
- "\t\t\t"
1672
  msgstr ""
1673
 
1674
- #: wpsc-admin/includes/save-data.functions.php:273
1675
- #: wpsc-admin/includes/save-data.functions.php:496
1676
- msgid "Checkout Settings"
1677
  msgstr ""
1678
 
1679
- #: wpsc-admin/includes/save-data.functions.php:281
1680
- msgid "This category requires additional checkout form fields"
1681
  msgstr ""
1682
 
1683
- #: wpsc-admin/includes/save-data.functions.php:285
1684
- #: wpsc-admin/includes/save-data.functions.php:475
1685
- #: wpsc-admin/includes/save-data.functions.php:513
1686
- msgid "None"
1687
  msgstr ""
1688
 
1689
- #: wpsc-admin/includes/save-data.functions.php:305
1690
- #: wpsc-admin/includes/save-data.functions.php:530
1691
- msgid "Products in this category use the billing address to calculate shipping"
1692
  msgstr ""
1693
 
1694
- #: wpsc-admin/includes/save-data.functions.php:413
1695
- msgid "Delete Image"
 
 
1696
  msgstr ""
1697
 
1698
- #: wpsc-admin/includes/save-data.functions.php:414
1699
- msgid ""
1700
- "You can set an image for the category here. If one exists, check the box to "
1701
- "delete."
1702
  msgstr ""
1703
 
1704
- #: wpsc-admin/includes/save-data.functions.php:420
1705
- msgid "Thumbnail Size"
1706
  msgstr ""
1707
 
1708
- #: wpsc-admin/includes/save-data.functions.php:429
1709
- msgid "Shortcodes and Template Tags"
1710
  msgstr ""
1711
 
1712
- #: wpsc-admin/includes/save-data.functions.php:434
1713
- msgid "Display Category Shortcode"
1714
  msgstr ""
1715
 
1716
- #: wpsc-admin/includes/save-data.functions.php:438
1717
- msgid ""
1718
- "Shortcodes are used to display a particular category or group within any "
1719
- "WordPress page or post."
1720
  msgstr ""
1721
 
1722
- #: wpsc-admin/includes/save-data.functions.php:443
1723
- msgid "Display Category Template Tag"
1724
  msgstr ""
1725
 
1726
- #: wpsc-admin/includes/save-data.functions.php:447
1727
  msgid ""
1728
- "Template tags are used to display a particular category or group within your "
1729
- "theme / template."
 
 
 
 
1730
  msgstr ""
1731
 
1732
- #: wpsc-admin/includes/save-data.functions.php:470
1733
- msgid ""
1734
- "The Target Markets feature has been disabled because you have the Suhosin "
1735
- "PHP extension installed on this server. If you need to use the Target "
1736
- "Markets feature, then disable the suhosin extension. If you can not do this, "
1737
- "you will need to contact your hosting provider."
1738
  msgstr ""
1739
 
1740
- #: wpsc-admin/includes/save-data.functions.php:475
1741
- msgid "Select"
1742
  msgstr ""
1743
 
1744
- #: wpsc-admin/includes/save-data.functions.php:475
1745
- msgid "All"
1746
  msgstr ""
1747
 
1748
- #: wpsc-admin/includes/save-data.functions.php:489
1749
- msgid "Select the markets you are selling this category to."
1750
  msgstr ""
1751
 
1752
- #: wpsc-admin/includes/save-data.functions.php:509
1753
- msgid "Category requires additional checkout form fields"
1754
  msgstr ""
1755
 
1756
- #: wpsc-admin/includes/settings-pages/presentation.php:48
1757
- msgid "Advanced Theme Settings"
1758
  msgstr ""
1759
 
1760
- #: wpsc-admin/includes/settings-pages/presentation.php:56
1761
- msgid "You did not specify any template files to be moved."
 
 
 
1762
  msgstr ""
1763
 
1764
- #: wpsc-admin/includes/settings-pages/presentation.php:66
1765
- msgid ""
1766
- "Error: some files could not be copied. Please make sure that theme folder is "
1767
- "writable."
1768
  msgstr ""
1769
 
1770
- #: wpsc-admin/includes/settings-pages/presentation.php:68
1771
- msgid "Thanks, the themes have been copied."
1772
  msgstr ""
1773
 
1774
- #: wpsc-admin/includes/settings-pages/presentation.php:78
1775
- msgid ""
1776
- "Thanks, you have made a succesful backup of your theme. It is located at "
1777
- "the URL below. Please note each backup you create will replace your "
1778
- "previous backups."
1779
  msgstr ""
1780
 
1781
- #. Some themes have been moved to the themes folder
1782
- #: wpsc-admin/includes/settings-pages/presentation.php:88
1783
- msgid "Some Theme files have been moved to your WordPress Theme Folder."
1784
  msgstr ""
1785
 
1786
- #: wpsc-admin/includes/settings-pages/presentation.php:90
1787
- msgid "No Theme files have been moved to your WordPress Theme Folder."
1788
  msgstr ""
1789
 
1790
- #: wpsc-admin/includes/settings-pages/presentation.php:96
1791
- msgid ""
1792
- "WP e-Commerce provides you the ability to move your theme files to a safe "
1793
- "place for theming control.\n"
1794
- "\t\t\t\t\t\n"
1795
- "If you want to change the look of your site, select the files you want to "
1796
- "edit from the list and click the move button. This will copy the template "
1797
- "files to your active WordPress theme. "
1798
  msgstr ""
1799
 
1800
- #: wpsc-admin/includes/settings-pages/presentation.php:114
1801
  msgid ""
1802
- "To change the look of certain aspects of your shop, you can edit the moved "
1803
- "files that are found here:"
1804
  msgstr ""
1805
 
1806
- #: wpsc-admin/includes/settings-pages/presentation.php:124
 
 
 
 
 
1807
  msgid ""
1808
- "You can create a copy of your WordPress Theme by clicking the backup button "
1809
- "bellow. Once copied you can find them here:"
1810
  msgstr ""
1811
 
1812
- #: wpsc-admin/includes/settings-pages/presentation.php:128
1813
- msgid "<a href=\"%s\" class=\"button\">Backup Your WordPress Theme</a>"
1814
  msgstr ""
1815
 
1816
- #: wpsc-admin/includes/settings-pages/presentation.php:133
1817
- msgid ""
1818
- "If you have moved your files in some other way i.e FTP, you may need to "
1819
- "click the Flush Theme Cache. This will refresh the locations WordPress looks "
1820
- "for your templates."
1821
  msgstr ""
1822
 
1823
- #: wpsc-admin/includes/settings-pages/presentation.php:134
1824
- msgid "<a href=\"%s\" class=\"button\">Flush Theme Cache</a>"
 
 
 
 
 
1825
  msgstr ""
1826
 
1827
- #: wpsc-admin/includes/settings-pages/presentation.php:163
1828
- msgid "Show All Products"
1829
  msgstr ""
1830
 
1831
- #: wpsc-admin/includes/settings-pages/presentation.php:170
1832
- msgid "Show list of product categories"
1833
  msgstr ""
1834
 
1835
- #: wpsc-admin/includes/settings-pages/presentation.php:224
1836
- msgid "Button Settings"
1837
  msgstr ""
1838
 
1839
- #: wpsc-admin/includes/settings-pages/presentation.php:228
1840
- msgid "Button Type"
1841
  msgstr ""
1842
 
1843
- #: wpsc-admin/includes/settings-pages/presentation.php:251
1844
- msgid ""
1845
- "Buy Now Button only works for Paypal Standard, please activate Paypal "
1846
- "Standard to enable this option."
1847
  msgstr ""
1848
 
1849
- #: wpsc-admin/includes/settings-pages/presentation.php:260
1850
- msgid "Hide \"Add to cart\" button"
 
 
1851
  msgstr ""
1852
 
1853
- #: wpsc-admin/includes/settings-pages/presentation.php:282
1854
- msgid "Product Settings"
1855
  msgstr ""
1856
 
1857
- #: wpsc-admin/includes/settings-pages/presentation.php:287
1858
- msgid "Show Product Ratings"
 
1859
  msgstr ""
1860
 
1861
- #: wpsc-admin/includes/settings-pages/presentation.php:318
1862
- msgid "Show Stock Availability"
1863
  msgstr ""
1864
 
1865
- #: wpsc-admin/includes/settings-pages/presentation.php:327
1866
- msgid "Display Fancy Purchase Notifications"
1867
  msgstr ""
1868
 
1869
- #: wpsc-admin/includes/settings-pages/presentation.php:351
1870
- msgid "Display per item shipping"
1871
  msgstr ""
1872
 
1873
- #: wpsc-admin/includes/settings-pages/presentation.php:373
1874
- msgid "Disable link in Title"
1875
  msgstr ""
1876
 
1877
- #: wpsc-admin/includes/settings-pages/presentation.php:397
1878
- msgid "Add quantity field to each product description"
1879
  msgstr ""
1880
 
1881
- #: wpsc-admin/includes/settings-pages/presentation.php:426
1882
- msgid "Product Page Settings"
1883
  msgstr ""
1884
 
1885
- #: wpsc-admin/includes/settings-pages/presentation.php:429
1886
- msgid "Product Display"
1887
  msgstr ""
1888
 
1889
- #: wpsc-admin/includes/settings-pages/presentation.php:506
1890
- msgid "Purchase unavailable options"
1891
  msgstr ""
1892
 
1893
- #: wpsc-admin/includes/settings-pages/presentation.php:516
1894
- msgid "Products Per Row"
1895
  msgstr ""
1896
 
1897
- #: wpsc-admin/includes/settings-pages/presentation.php:520
1898
- msgid "Show images only"
1899
  msgstr ""
1900
 
1901
- #: wpsc-admin/includes/settings-pages/presentation.php:524
1902
- msgid "Display Variations"
 
 
1903
  msgstr ""
1904
 
1905
- #: wpsc-admin/includes/settings-pages/presentation.php:528
1906
- msgid "Display Description"
 
1907
  msgstr ""
1908
 
1909
- #: wpsc-admin/includes/settings-pages/presentation.php:532
1910
- msgid "Display \"Add To Cart\" Button"
1911
  msgstr ""
1912
 
1913
- #: wpsc-admin/includes/settings-pages/presentation.php:536
1914
- msgid "Display \"More Details\" Button"
 
 
 
 
1915
  msgstr ""
1916
 
1917
- #: wpsc-admin/includes/settings-pages/presentation.php:551
1918
- msgid "Show list of categories"
 
 
1919
  msgstr ""
1920
 
1921
- #: wpsc-admin/includes/settings-pages/presentation.php:560
1922
- msgid "Select what product category you want to display on the products page"
1923
  msgstr ""
1924
 
1925
- #: wpsc-admin/includes/settings-pages/presentation.php:588
1926
- msgid "Sort Product By"
 
 
1927
  msgstr ""
1928
 
1929
- #: wpsc-admin/includes/settings-pages/presentation.php:597
1930
- msgid "Drag &amp; Drop"
1931
  msgstr ""
1932
 
1933
- #: wpsc-admin/includes/settings-pages/presentation.php:599
1934
- msgid "Time Uploaded"
1935
  msgstr ""
1936
 
1937
- #: wpsc-admin/includes/settings-pages/presentation.php:605
1938
- msgid "Show Breadcrumbs"
1939
  msgstr ""
1940
 
1941
- #: wpsc-admin/includes/settings-pages/presentation.php:630
1942
- msgid "Product Groups/Products Display"
1943
  msgstr ""
1944
 
1945
- #: wpsc-admin/includes/settings-pages/presentation.php:647
1946
- msgid "Product Groups Only (All products displayed)"
 
1947
  msgstr ""
1948
 
1949
- #: wpsc-admin/includes/settings-pages/presentation.php:648
1950
- msgid "Sliding Product Groups (1 product per page)"
1951
  msgstr ""
1952
 
1953
- #: wpsc-admin/includes/settings-pages/presentation.php:654
1954
- msgid "Show Subcategory Products in Parent Category"
1955
  msgstr ""
1956
 
1957
- #: wpsc-admin/includes/settings-pages/presentation.php:679
1958
- msgid "Show Search"
1959
  msgstr ""
1960
 
1961
- #: wpsc-admin/includes/settings-pages/presentation.php:720
1962
- msgid "Show Advanced Search"
 
 
1963
  msgstr ""
1964
 
1965
- #: wpsc-admin/includes/settings-pages/presentation.php:723
1966
- msgid "Use Live Search"
1967
  msgstr ""
1968
 
1969
- #: wpsc-admin/includes/settings-pages/presentation.php:733
1970
- msgid "Replace Page Title With Product/Category Name"
1971
  msgstr ""
1972
 
1973
- #: wpsc-admin/includes/settings-pages/presentation.php:754
1974
- msgid "Display Featured Product above Product Pages"
1975
  msgstr ""
1976
 
1977
- #: wpsc-admin/includes/settings-pages/presentation.php:777
1978
- msgid "Shopping Cart Settings"
1979
  msgstr ""
1980
 
1981
- #: wpsc-admin/includes/settings-pages/presentation.php:780
1982
- msgid "Cart Location"
1983
  msgstr ""
1984
 
1985
- #: wpsc-admin/includes/settings-pages/presentation.php:806
1986
- msgid "Page"
1987
  msgstr ""
1988
 
1989
- #: wpsc-admin/includes/settings-pages/presentation.php:810
1990
- #: wpsc-admin/includes/settings-pages/presentation.php:814
1991
- msgid "Widget"
 
1992
  msgstr ""
1993
 
1994
- #: wpsc-admin/includes/settings-pages/presentation.php:814
1995
- #: wpsc-admin/includes/settings-pages/presentation.php:824
1996
- msgid "You need to enable the widgets plugin to use this"
1997
  msgstr ""
1998
 
1999
- #: wpsc-admin/includes/settings-pages/presentation.php:820
2000
- #: wpsc-admin/includes/settings-pages/presentation.php:825
2001
- #: wpsc-admin/display-upgrades.page.php:22
2002
- msgid "DropShop"
2003
  msgstr ""
2004
 
2005
- #: wpsc-admin/includes/settings-pages/presentation.php:824
2006
- #: wpsc-admin/includes/settings-pages/presentation.php:825
2007
- msgid "You need to install the Gold and DropShop extentions to use this"
2008
  msgstr ""
2009
 
2010
- #: wpsc-admin/includes/settings-pages/presentation.php:830
2011
- msgid "Manual"
2012
  msgstr ""
2013
 
2014
- #: wpsc-admin/includes/settings-pages/presentation.php:839
2015
- msgid "Show Dropshop on every page"
2016
  msgstr ""
2017
 
2018
- #: wpsc-admin/includes/settings-pages/presentation.php:842
2019
- msgid "Show Dropshop only on product page"
2020
  msgstr ""
2021
 
2022
- #: wpsc-admin/includes/settings-pages/presentation.php:847
2023
- msgid "Use light Dropshop style"
2024
  msgstr ""
2025
 
2026
- #: wpsc-admin/includes/settings-pages/presentation.php:850
2027
- msgid "Use dark Dropshop style"
2028
  msgstr ""
2029
 
2030
- #: wpsc-admin/includes/settings-pages/presentation.php:853
2031
- msgid "Crafty"
 
 
 
 
2032
  msgstr ""
2033
 
2034
- #: wpsc-admin/includes/settings-pages/presentation.php:862
2035
- msgid "Display \"+ Postage & Tax\""
 
 
2036
  msgstr ""
2037
 
2038
- #: wpsc-admin/includes/settings-pages/presentation.php:885
2039
- msgid "Product Category Settings"
2040
  msgstr ""
2041
 
2042
- #: wpsc-admin/includes/settings-pages/presentation.php:889
2043
- msgid "Show Product Category Description"
 
 
2044
  msgstr ""
2045
 
2046
- #: wpsc-admin/includes/settings-pages/presentation.php:913
2047
- msgid "Show Product Category Thumbnails"
2048
  msgstr ""
2049
 
2050
- #: wpsc-admin/includes/settings-pages/presentation.php:939
2051
- msgid "Show Product Count per Product Category"
2052
  msgstr ""
2053
 
2054
- #: wpsc-admin/includes/settings-pages/presentation.php:988
2055
- msgid "Thumbnail Settings"
2056
  msgstr ""
2057
 
2058
- #: wpsc-admin/includes/settings-pages/presentation.php:989
2059
  msgid ""
2060
- "Note: Anytime you update any of the thumbnail settings, WPeC will "
2061
- "automatically resize all of your thumbnails for you. Depending on how many "
2062
- "images you have, this could take awhile."
2063
  msgstr ""
2064
 
2065
- #: wpsc-admin/includes/settings-pages/presentation.php:993
2066
- #: wpsc-admin/includes/display-items-functions.php:1011
2067
- msgid "Default Product Thumbnail Size"
2068
  msgstr ""
2069
 
2070
- #: wpsc-admin/includes/settings-pages/presentation.php:1002
2071
- msgid "Default Product Group Thumbnail Size"
2072
  msgstr ""
2073
 
2074
- #: wpsc-admin/includes/settings-pages/presentation.php:1011
2075
- #: wpsc-admin/includes/display-items-functions.php:1011
2076
- msgid "Single Product Image Size"
2077
  msgstr ""
2078
 
2079
- #: wpsc-admin/includes/settings-pages/presentation.php:1034
2080
- msgid "Crop Thumbnails"
2081
  msgstr ""
2082
 
2083
- #: wpsc-admin/includes/settings-pages/presentation.php:1039
2084
  msgid ""
2085
- "Choosing \"Yes\" means that thumbnails are cropped to exact dimensions "
2086
- "(normally thumbnails are proportional)"
 
2087
  msgstr ""
2088
 
2089
- #: wpsc-admin/includes/settings-pages/presentation.php:1068
2090
- msgid "Use Lightbox Effect for product images"
2091
  msgstr ""
2092
 
2093
- #: wpsc-admin/includes/settings-pages/presentation.php:1086
2094
  msgid ""
2095
- "Using lightbox means that when clicking on a product image, a larger version "
2096
- "will be displayed in a \"lightbox\" style window. If you are using a plugin "
2097
- "such as Shutter Reloaded, you may want to disable lightbox."
 
 
 
2098
  msgstr ""
2099
 
2100
- #: wpsc-admin/includes/settings-pages/presentation.php:1090
2101
- msgid "Lightbox script to use"
2102
  msgstr ""
2103
 
2104
- #: wpsc-admin/includes/settings-pages/presentation.php:1101
2105
- msgid "Colorbox"
2106
  msgstr ""
2107
 
2108
- #: wpsc-admin/includes/settings-pages/presentation.php:1102
2109
- msgid "Thickbox"
 
 
2110
  msgstr ""
2111
 
2112
- #: wpsc-admin/includes/settings-pages/presentation.php:1111
2113
- msgid "Show Thumbnail Gallery"
2114
  msgstr ""
2115
 
2116
- #: wpsc-admin/includes/settings-pages/presentation.php:1135
2117
- msgid "Gallery Thumbnail Image Size"
2118
  msgstr ""
2119
 
2120
- #: wpsc-admin/includes/settings-pages/presentation.php:1150
2121
- msgid "Pagination settings"
 
 
2122
  msgstr ""
2123
 
2124
- #: wpsc-admin/includes/settings-pages/presentation.php:1154
2125
- msgid "Use Pagination"
 
 
 
 
2126
  msgstr ""
2127
 
2128
- #: wpsc-admin/includes/settings-pages/presentation.php:1176
2129
- msgid "number of products to show per page"
 
 
2130
  msgstr ""
2131
 
2132
- #: wpsc-admin/includes/settings-pages/presentation.php:1183
2133
- msgid "Page Number position"
2134
  msgstr ""
2135
 
2136
- #: wpsc-admin/includes/settings-pages/presentation.php:1188
2137
- msgid "Top"
2138
  msgstr ""
2139
 
2140
- #: wpsc-admin/includes/settings-pages/presentation.php:1191
2141
- msgid "Bottom"
2142
  msgstr ""
2143
 
2144
- #: wpsc-admin/includes/settings-pages/presentation.php:1194
2145
- msgid "Both"
2146
  msgstr ""
2147
 
2148
- #: wpsc-admin/includes/settings-pages/presentation.php:1201
2149
- msgid "Comment Settings"
2150
  msgstr ""
2151
 
2152
- #: wpsc-admin/includes/settings-pages/presentation.php:1205
2153
- msgid "Use IntenseDebate Comments"
2154
  msgstr ""
2155
 
2156
- #: wpsc-admin/includes/settings-pages/presentation.php:1229
2157
- msgid "IntenseDebate Account ID"
2158
  msgstr ""
2159
 
2160
- #: wpsc-admin/includes/settings-pages/presentation.php:1231
2161
- msgid "Help on finding the Account ID"
2162
  msgstr ""
2163
 
2164
- #: wpsc-admin/includes/settings-pages/presentation.php:1240
2165
- msgid "By Default Display Comments on"
2166
  msgstr ""
2167
 
2168
- #: wpsc-admin/includes/settings-pages/presentation.php:1247
2169
- msgid "All Products"
2170
  msgstr ""
2171
 
2172
- #: wpsc-admin/includes/settings-pages/presentation.php:1250
2173
- msgid "Per Product"
 
 
2174
  msgstr ""
2175
 
2176
- #: wpsc-admin/includes/settings-pages/admin.php:7
2177
- msgid "Admin Settings"
2178
  msgstr ""
2179
 
2180
- #: wpsc-admin/includes/settings-pages/admin.php:13
2181
- msgid "Max downloads per file"
 
 
 
2182
  msgstr ""
2183
 
2184
- #: wpsc-admin/includes/settings-pages/admin.php:35
2185
- msgid "Lock downloads to IP address"
 
2186
  msgstr ""
2187
 
2188
- #: wpsc-admin/includes/settings-pages/admin.php:61
2189
- msgid "Check MIME types on file uploads"
2190
  msgstr ""
2191
 
2192
- #: wpsc-admin/includes/settings-pages/admin.php:68
2193
  msgid ""
2194
- "Warning: Disabling this exposes your site to greater possibility of "
2195
- "malicious files being uploaded, we reccomend installing the Fileinfo "
2196
- "extention for PHP rather than disabling this."
 
 
 
2197
  msgstr ""
2198
 
2199
- #: wpsc-admin/includes/settings-pages/admin.php:76
2200
- msgid "Purchase Log Email"
 
 
2201
  msgstr ""
2202
 
2203
- #: wpsc-admin/includes/settings-pages/admin.php:84
2204
- msgid "Purchase Receipt - Reply Address"
 
 
2205
  msgstr ""
2206
 
2207
- #: wpsc-admin/includes/settings-pages/admin.php:93
2208
- msgid "Purchase Receipt - Reply Name"
2209
  msgstr ""
2210
 
2211
- #: wpsc-admin/includes/settings-pages/admin.php:102
2212
- msgid "Terms and Conditions"
 
 
 
2213
  msgstr ""
2214
 
2215
- #: wpsc-admin/includes/settings-pages/admin.php:110
2216
- msgid "Custom Messages"
2217
  msgstr ""
2218
 
2219
- #: wpsc-admin/includes/settings-pages/admin.php:113
2220
- msgid "Tags can be used"
2221
  msgstr ""
2222
 
2223
- #: wpsc-admin/includes/settings-pages/admin.php:118
2224
- msgid ""
2225
- "Note: The purchase receipt is the message e-mailed to users after purchasing "
2226
- "products from your shop."
2227
  msgstr ""
2228
 
2229
- #: wpsc-admin/includes/settings-pages/admin.php:129
2230
- msgid ""
2231
- "Note: The Admin Report is the email sent to the e-mail address set above as "
2232
- "soon as someone successfully buys a product."
2233
  msgstr ""
2234
 
2235
- #: wpsc-admin/includes/settings-pages/admin.php:134
2236
- msgid "Admin Report"
2237
  msgstr ""
2238
 
2239
- #: wpsc-admin/includes/settings-pages/admin.php:139
2240
- msgid "Track and Trace settings"
 
 
 
 
 
2241
  msgstr ""
2242
 
2243
- #: wpsc-admin/includes/settings-pages/admin.php:144
2244
  msgid ""
2245
- "Note: The Tracking Subject, is the subject for The Tracking Message email. "
2246
- "The Tracking Message is the message e-mailed to users when you click 'Email "
2247
- "buyer' on the sales log. This option is only available for purchases with "
2248
- "the status of 'Job Dispatched'. Tags you can use in the email message "
2249
- "section are %trackid% and %shop_name%"
2250
  msgstr ""
2251
 
2252
- #: wpsc-admin/includes/settings-pages/admin.php:149
2253
- msgid "Tracking Email Subject"
 
 
 
 
2254
  msgstr ""
2255
 
2256
- #: wpsc-admin/includes/settings-pages/admin.php:153
2257
- msgid "Tracking Email Message"
2258
  msgstr ""
2259
 
2260
- #: wpsc-admin/includes/settings-pages/import.php:12
2261
- msgid ""
2262
- "<p>You can import your products from a comma delimited text file.</p><p>An "
2263
- "example of a csv import file would look like this: </p><p>Description, "
2264
- "Additional Description, Product Name, Price, SKU, weight, weight unit, stock "
2265
- "quantity, is limited quantity</p>"
2266
  msgstr ""
2267
 
2268
- #: wpsc-admin/includes/settings-pages/import.php:39
2269
- msgid ""
2270
- "For each column, select the field it corresponds to in 'Belongs to'. You can "
2271
- "upload as many products as you like."
2272
  msgstr ""
2273
 
2274
- #: wpsc-admin/includes/settings-pages/import.php:44
2275
- msgid "Product Status"
2276
  msgstr ""
2277
 
2278
- #: wpsc-admin/includes/settings-pages/import.php:48
2279
- msgid ""
2280
- "Select if you would like to import your products in as Drafts or Publish "
2281
- "them right away."
2282
  msgstr ""
2283
 
2284
- #: wpsc-admin/includes/settings-pages/import.php:52
2285
- msgid "Publish"
2286
  msgstr ""
2287
 
2288
- #: wpsc-admin/includes/settings-pages/import.php:53
2289
- msgid "Draft"
2290
  msgstr ""
2291
 
2292
- #: wpsc-admin/includes/settings-pages/import.php:64
2293
- msgid "Column (%s)"
2294
  msgstr ""
2295
 
2296
- #: wpsc-admin/includes/settings-pages/import.php:78
2297
- msgid "Product Name"
2298
  msgstr ""
2299
 
2300
- #: wpsc-admin/includes/settings-pages/import.php:79
2301
- #: wpsc-admin/includes/display-items-functions.php:708
2302
- msgid "Description"
2303
  msgstr ""
2304
 
2305
- #: wpsc-admin/includes/settings-pages/import.php:80 wpsc-admin/admin.php:306
2306
- msgid "Additional Description"
 
 
2307
  msgstr ""
2308
 
2309
- #: wpsc-admin/includes/settings-pages/import.php:82
2310
- #: wpsc-admin/includes/products.php:78 wpsc-admin/display-items.page.php:49
2311
- #: wpsc-admin/display-items.page.php:62 wpsc-admin/display-items.page.php:78
2312
- #: wpsc-admin/display-sales-logs.php:135
2313
- msgid "SKU"
 
 
2314
  msgstr ""
2315
 
2316
- #: wpsc-admin/includes/settings-pages/import.php:83
2317
- #: wpsc-admin/includes/display-items-functions.php:569
2318
- #: wpsc-admin/includes/products.php:78 wpsc-admin/display-items.page.php:45
2319
- #: wpsc-admin/display-items.page.php:74
2320
- msgid "Weight"
 
 
2321
  msgstr ""
2322
 
2323
- #: wpsc-admin/includes/settings-pages/import.php:84
2324
- msgid "Weight Unit"
2325
  msgstr ""
2326
 
2327
- #: wpsc-admin/includes/settings-pages/import.php:85
2328
- msgid "Stock Quantity"
2329
  msgstr ""
2330
 
2331
- #: wpsc-admin/includes/settings-pages/import.php:86
2332
- msgid "Stock Quantity Limit"
2333
  msgstr ""
2334
 
2335
- #: wpsc-admin/includes/settings-pages/import.php:93
2336
- msgid ""
2337
- "Please select a category you would like to place all products from this CSV "
2338
- "into"
2339
  msgstr ""
2340
 
2341
- #: wpsc-admin/includes/settings-pages/import.php:105
2342
- msgid "There was an error while uploading your csv file."
2343
  msgstr ""
2344
 
2345
- #: wpsc-admin/includes/settings-pages/import.php:166
2346
- msgid "Success, your <a href='%s'>products</a> have been upload."
2347
  msgstr ""
2348
 
2349
- #: wpsc-admin/includes/settings-pages/checkout.php:9
2350
- msgid "Drag"
2351
  msgstr ""
2352
 
2353
- #: wpsc-admin/includes/settings-pages/checkout.php:11
2354
- msgid "Type"
2355
  msgstr ""
2356
 
2357
- #: wpsc-admin/includes/settings-pages/checkout.php:12
2358
- msgid "Unique Names"
2359
  msgstr ""
2360
 
2361
- #: wpsc-admin/includes/settings-pages/checkout.php:13
2362
- msgid "Mandatory"
2363
  msgstr ""
2364
 
2365
- #: wpsc-admin/includes/settings-pages/checkout.php:14
2366
- msgid "Trash"
2367
  msgstr ""
2368
 
2369
- #: wpsc-admin/includes/settings-pages/checkout.php:35
2370
- msgid "Users must register before checking out"
2371
  msgstr ""
2372
 
2373
- #: wpsc-admin/includes/settings-pages/checkout.php:55
2374
- msgid ""
2375
- "If yes then you must also turn on the wordpress option \"Any one can register"
2376
- "\""
2377
  msgstr ""
2378
 
2379
- #: wpsc-admin/includes/settings-pages/checkout.php:73
2380
- msgid "Enable Shipping Same as Billing Option: "
2381
  msgstr ""
2382
 
2383
- #: wpsc-admin/includes/settings-pages/checkout.php:83
2384
- msgid "Force users to use SSL"
2385
  msgstr ""
2386
 
2387
- #: wpsc-admin/includes/settings-pages/checkout.php:103
2388
- msgid ""
2389
- "This can cause warnings for your users if you do not have a properly "
2390
- "configured SSL certificate"
2391
  msgstr ""
2392
 
2393
- #: wpsc-admin/includes/settings-pages/checkout.php:111
2394
- msgid "Form Fields"
2395
  msgstr ""
2396
 
2397
- #: wpsc-admin/includes/settings-pages/checkout.php:112
2398
- msgid ""
2399
- "Here you can customise the forms to be displayed in your checkout page. The "
2400
- "checkout page is where you collect important user information that will show "
2401
- "up in your purchase logs i.e. the buyers address, and name..."
2402
  msgstr ""
2403
 
2404
- #: wpsc-admin/includes/settings-pages/checkout.php:115
2405
- msgid "Select a Form Set"
2406
  msgstr ""
2407
 
2408
- #: wpsc-admin/includes/settings-pages/checkout.php:129
2409
- msgid "+ Add New Form Set"
2410
  msgstr ""
2411
 
2412
- #: wpsc-admin/includes/settings-pages/checkout.php:133
2413
- msgid "Add new Form Set"
2414
  msgstr ""
2415
 
2416
- #: wpsc-admin/includes/settings-pages/checkout.php:134
2417
- msgid "Add"
2418
  msgstr ""
2419
 
2420
- #: wpsc-admin/includes/settings-pages/checkout.php:170
2421
- msgid "Click and Drag to Order Checkout Fields"
2422
  msgstr ""
2423
 
2424
- #: wpsc-admin/includes/settings-pages/checkout.php:185
2425
- msgid "more options"
2426
  msgstr ""
2427
 
2428
- #: wpsc-admin/includes/settings-pages/checkout.php:190
2429
- #: wpsc-admin/admin.php:372
2430
- msgid "Select a Unique Name"
2431
  msgstr ""
2432
 
2433
- #: wpsc-admin/includes/settings-pages/checkout.php:205
2434
- #: wpsc-admin/includes/display-items-functions.php:699
2435
- #: wpsc-admin/includes/products.php:385 wpsc-admin/admin.php:396
2436
- #: wpsc-admin/admin-form-functions.php:68
2437
- #: wpsc-admin/admin-form-functions.php:86 wpsc-admin/display-sales-logs.php:55
2438
- #: wpsc-admin/display-sales-logs.php:294 wpsc-admin/ajax-and-init.php:1327
2439
- #: wpsc-taxes/controllers/taxes_controller.class.php:612
2440
- #: wpsc-shipping/tablerate.php:66 wpsc-shipping/weightrate.php:58
2441
- msgid "Delete"
2442
  msgstr ""
2443
 
2444
- #: wpsc-admin/includes/settings-pages/checkout.php:208
2445
- msgid "This will be the Email address that the Purchase Reciept is sent to."
 
2446
  msgstr ""
2447
 
2448
- #: wpsc-admin/includes/settings-pages/checkout.php:226
2449
- msgid "Add New Form Field"
 
2450
  msgstr ""
2451
 
2452
- #: wpsc-admin/includes/settings-pages/marketing.php:17
2453
- msgid "Marketing Section"
2454
  msgstr ""
2455
 
2456
- #: wpsc-admin/includes/settings-pages/marketing.php:18
2457
- msgid "RSS Address"
2458
  msgstr ""
2459
 
2460
- #: wpsc-admin/includes/settings-pages/marketing.php:19
2461
- msgid "Google Merchant Centre / Google Product Search"
2462
  msgstr ""
2463
 
2464
- #: wpsc-admin/includes/settings-pages/marketing.php:59
2465
- msgid "Display Cross Sales"
2466
  msgstr ""
2467
 
2468
- #: wpsc-admin/includes/settings-pages/marketing.php:61
2469
- msgid ""
2470
- "Adds the 'Users who bought this also bought' item to the single products "
2471
- "page."
2472
  msgstr ""
2473
 
2474
- #: wpsc-admin/includes/settings-pages/marketing.php:64
2475
- msgid "Show Share This (Social Bookmarks)"
2476
  msgstr ""
2477
 
2478
- #: wpsc-admin/includes/settings-pages/marketing.php:66
2479
- msgid "Adds the 'Share this link' item to the single products page."
2480
  msgstr ""
2481
 
2482
- #: wpsc-admin/includes/settings-pages/marketing.php:69
2483
- msgid "Display How Customer Found Us Survey"
2484
  msgstr ""
2485
 
2486
- #: wpsc-admin/includes/settings-pages/marketing.php:71
2487
- msgid "Adds the 'How did you find out about us' drop-down option at checkout."
2488
  msgstr ""
2489
 
2490
- #: wpsc-admin/includes/settings-pages/marketing.php:74
2491
- msgid "Display Facebook Like"
2492
  msgstr ""
2493
 
2494
- #: wpsc-admin/includes/settings-pages/marketing.php:77
2495
- msgid "Adds the Facebook Like button on your single products page."
2496
  msgstr ""
2497
 
2498
- #: wpsc-admin/includes/settings-pages/marketing.php:91
2499
- msgid "People can use this RSS feed to keep up to date with your product list."
 
2500
  msgstr ""
2501
 
2502
- #: wpsc-admin/includes/settings-pages/marketing.php:92
2503
- msgid "RSS Feed Address"
2504
  msgstr ""
2505
 
2506
- #: wpsc-admin/includes/settings-pages/marketing.php:99
2507
  msgid ""
2508
- "To import your products into <a href=\"http://www.google.com/merchants/\" "
2509
- "target=\"_blank\">Google Merchant Centre</a> so that they appear within "
2510
- "Google Product Search results, sign up for a Google Merchant Centre account "
2511
- "and add a scheduled data feed with the following URL:"
2512
  msgstr ""
2513
 
2514
- #: wpsc-admin/includes/settings-pages/general.php:8
2515
- #: wpsc-admin/includes/settings-pages/shipping.php:48
2516
- #: wpsc-admin/includes/settings-pages/gateway.php:70
2517
- msgid "General Settings"
2518
  msgstr ""
2519
 
2520
- #: wpsc-admin/includes/settings-pages/general.php:15
2521
- msgid "Base Country/Region"
 
 
 
 
 
 
2522
  msgstr ""
2523
 
2524
- #: wpsc-admin/includes/settings-pages/general.php:43
2525
- msgid "Select your primary business location."
 
 
 
 
 
 
2526
  msgstr ""
2527
 
2528
- #: wpsc-admin/includes/settings-pages/general.php:58
2529
- msgid ""
2530
- "The Target Markets feature has been disabled because you have the Suhosin "
2531
- "PHP extension installed on this server. If you need to use the Target "
2532
- "Markets feature then disable the suhosin extension, if you can not do this, "
2533
- "you will need to contact your hosting provider."
2534
  msgstr ""
2535
 
2536
- #: wpsc-admin/includes/settings-pages/general.php:84
2537
- msgid "Currency Settings"
 
2538
  msgstr ""
2539
 
2540
- #: wpsc-admin/includes/settings-pages/general.php:87
2541
- msgid "Currency Type"
2542
  msgstr ""
2543
 
2544
- #: wpsc-admin/includes/settings-pages/general.php:112
2545
- msgid "Currency Sign Location"
 
 
2546
  msgstr ""
2547
 
2548
- #: wpsc-admin/includes/settings-pages/general.php:148
2549
- msgid "Thousands and decimal separators"
 
 
2550
  msgstr ""
2551
 
2552
- #: wpsc-admin/includes/settings-pages/general.php:150
2553
- msgid "Thousands separator"
2554
  msgstr ""
2555
 
2556
- #: wpsc-admin/includes/settings-pages/general.php:151
2557
- msgid "Decimal separator"
 
 
 
2558
  msgstr ""
2559
 
2560
- #: wpsc-admin/includes/settings-pages/general.php:152
2561
- msgid "Preview:"
2562
  msgstr ""
2563
 
2564
- #: wpsc-admin/includes/settings-pages/taxes.php:12
2565
- msgid "Tax Settings"
2566
  msgstr ""
2567
 
2568
- #: wpsc-admin/includes/settings-pages/taxes.php:18
2569
- msgid "Turn tax on"
2570
  msgstr ""
2571
 
2572
- #: wpsc-admin/includes/settings-pages/taxes.php:26
2573
- msgid "Product prices are tax exclusive - add tax to the price during checkout"
2574
  msgstr ""
2575
 
2576
- #: wpsc-admin/includes/settings-pages/taxes.php:34
2577
- msgid ""
2578
- "Product prices are tax inclusive - during checkout the total price doesn't "
2579
- "increase but tax is shown as a line item"
2580
  msgstr ""
2581
 
2582
- #: wpsc-admin/includes/settings-pages/taxes.php:37
2583
- msgid "Product Specific Tax"
2584
  msgstr ""
2585
 
2586
- #: wpsc-admin/includes/settings-pages/taxes.php:43
2587
- msgid ""
2588
- "Add per product tax to tax percentage if product has a specific tax rate"
2589
  msgstr ""
2590
 
2591
- #: wpsc-admin/includes/settings-pages/taxes.php:51
2592
- msgid "Replace tax percentage with product specific tax rate"
2593
  msgstr ""
2594
 
2595
- #: wpsc-admin/includes/settings-pages/taxes.php:55
2596
- msgid "Tax Logic"
2597
  msgstr ""
2598
 
2599
- #: wpsc-admin/includes/settings-pages/taxes.php:61
2600
- msgid "Apply tax when Billing and Shipping Country is the same as Tax Rate"
2601
  msgstr ""
2602
 
2603
- #: wpsc-admin/includes/settings-pages/taxes.php:69
2604
- msgid "Apply tax to Billing Address"
2605
  msgstr ""
2606
 
2607
- #: wpsc-admin/includes/settings-pages/taxes.php:77
2608
- msgid "Apply tax to Shipping Address"
2609
  msgstr ""
2610
 
2611
- #: wpsc-admin/includes/settings-pages/taxes.php:87
2612
- msgid "Apply tax when Billing Country is the same as Tax Rate"
2613
  msgstr ""
2614
 
2615
- #: wpsc-admin/includes/settings-pages/taxes.php:95
2616
- msgid "Apply tax when Shipping Country is the same as Tax Rate"
2617
  msgstr ""
2618
 
2619
- #: wpsc-admin/includes/settings-pages/taxes.php:100
2620
- msgid "Tax Rates"
2621
  msgstr ""
2622
 
2623
- #: wpsc-admin/includes/settings-pages/taxes.php:145
2624
- msgid "Add New Tax Rate"
2625
  msgstr ""
2626
 
2627
- #: wpsc-admin/includes/settings-pages/taxes.php:150
2628
- msgid "Tax Bands"
2629
  msgstr ""
2630
 
2631
- #: wpsc-admin/includes/settings-pages/taxes.php:154
2632
- msgid ""
2633
- "Note: Tax Bands are special tax rules you can create and apply on a per-"
2634
- "product basis. <br /> Please visit the product page to apply your Tax Band."
2635
  msgstr ""
2636
 
2637
- #: wpsc-admin/includes/settings-pages/taxes.php:158
2638
- msgid ""
2639
- "Note: Tax Bands do not take affect when product prices are tax exclusive."
2640
  msgstr ""
2641
 
2642
- #: wpsc-admin/includes/settings-pages/taxes.php:171
2643
- msgid "Add New Tax Band"
2644
  msgstr ""
2645
 
2646
- #: wpsc-admin/includes/settings-pages/shipping.php:54
2647
- msgid "Use Shipping"
2648
  msgstr ""
2649
 
2650
- #: wpsc-admin/includes/settings-pages/shipping.php:68
2651
- msgid ""
2652
- "If you are only selling digital downloads, you should select no to disable "
2653
- "the shipping on your site."
2654
  msgstr ""
2655
 
2656
- #: wpsc-admin/includes/settings-pages/shipping.php:73
2657
- msgid "Base City:"
2658
  msgstr ""
2659
 
2660
- #: wpsc-admin/includes/settings-pages/shipping.php:76
2661
- msgid "Please provide for more accurate rates"
2662
  msgstr ""
2663
 
2664
- #: wpsc-admin/includes/settings-pages/shipping.php:80
2665
- msgid "Base Zipcode/Postcode:"
2666
  msgstr ""
2667
 
2668
- #: wpsc-admin/includes/settings-pages/shipping.php:83
 
 
 
 
2669
  msgid ""
2670
- "If you are based in America then you need to set your own Zipcode for UPS "
2671
- "and USPS to work. This should be the Zipcode for your Base of Operations."
2672
  msgstr ""
2673
 
2674
- #: wpsc-admin/includes/settings-pages/shipping.php:105
2675
- msgid "ShipWire Settings"
2676
  msgstr ""
2677
 
2678
- #: wpsc-admin/includes/settings-pages/shipping.php:116
2679
- msgid "ShipWire Email"
2680
  msgstr ""
2681
 
2682
- #: wpsc-admin/includes/settings-pages/shipping.php:117
2683
- msgid "ShipWire Password"
 
 
2684
  msgstr ""
2685
 
2686
- #: wpsc-admin/includes/settings-pages/shipping.php:125
2687
- msgid "Enable Free Shipping Discount"
2688
  msgstr ""
2689
 
2690
- #: wpsc-admin/includes/settings-pages/shipping.php:152
2691
  msgid ""
2692
- "Sales over or equal to: %1$s<input type=\"text\" size=\"6\" name="
2693
- "\"wpsc_options[shipping_discount_value]\" value=\"%2$s\" id="
2694
- "\"shipping_discount_value\" /> will receive free shipping."
2695
  msgstr ""
2696
 
2697
- #: wpsc-admin/includes/settings-pages/shipping.php:176
2698
- msgid "Shipping Modules"
2699
  msgstr ""
2700
 
2701
- #: wpsc-admin/includes/settings-pages/shipping.php:180
2702
- msgid ""
2703
- "To enable shipping in WP e-Commerce you must select which shipping methods "
2704
- "you want to enable on your site.<br /> If you want to use fixed-price "
2705
- "shipping options like \"Pickup - $0, Overnight - $10, Same day - $20, etc.\" "
2706
- "you can download a WordPress plugin from plugins directory for <a href="
2707
- "\"http://wordpress.org/extend/plugins/wp-e-commerce-fixed-rate-shipping/"
2708
- "\">Simple shipping</a>. It will appear in the list as \"Fixed rate\"."
2709
  msgstr ""
2710
 
2711
- #: wpsc-admin/includes/settings-pages/shipping.php:184
2712
- msgid "Internal Shipping Calculators"
2713
  msgstr ""
2714
 
2715
- #: wpsc-admin/includes/settings-pages/shipping.php:206
2716
- msgid "External Shipping Calculators"
2717
  msgstr ""
2718
 
2719
- #: wpsc-admin/includes/settings-pages/shipping.php:209
2720
- msgid ""
2721
- "The following shipping modules all need cURL which is not installed on this "
2722
- "server, you may need to contact your web hosting provider to get it set up. "
2723
  msgstr ""
2724
 
2725
- #: wpsc-admin/includes/settings-pages/gateway.php:40
2726
- msgid "Please Select A Payment Gateway"
 
 
 
 
 
 
 
 
2727
  msgstr ""
2728
 
2729
- #: wpsc-admin/includes/settings-pages/gateway.php:74
2730
- msgid "Payment Gateways"
2731
  msgstr ""
2732
 
2733
- #: wpsc-admin/includes/settings-pages/gateway.php:78
2734
  msgid ""
2735
  "Activate the payment gateways that you want to make available to your "
2736
  "customers by selecting them below."
2737
  msgstr ""
2738
 
2739
- #: wpsc-admin/includes/settings-pages/gateway.php:119
2740
  msgid "We Recommend"
2741
  msgstr ""
2742
 
2743
- #: wpsc-admin/includes/tax_and_shipping.php:16
2744
- msgid "GST/Tax Rate"
2745
- msgstr ""
2746
-
2747
  #: wpsc-admin/includes/display-items-functions.php:132
2748
  msgid ""
2749
  "This Product has variations, to edit the price please use the <a href="
@@ -2754,12 +2689,6 @@ msgstr ""
2754
  msgid "Price: %s and above."
2755
  msgstr ""
2756
 
2757
- #: wpsc-admin/includes/display-items-functions.php:142
2758
- #: wpsc-admin/includes/products.php:78 wpsc-admin/display-items.page.php:48
2759
- #: wpsc-admin/display-items.page.php:61 wpsc-admin/display-items.page.php:77
2760
- msgid "Sale Price"
2761
- msgstr ""
2762
-
2763
  #: wpsc-admin/includes/display-items-functions.php:149
2764
  msgid "+ New Currency"
2765
  msgstr ""
@@ -2855,11 +2784,6 @@ msgid ""
2855
  "owner"
2856
  msgstr ""
2857
 
2858
- #: wpsc-admin/includes/display-items-functions.php:326
2859
- #: wpsc-taxes/controllers/taxes_controller.class.php:308
2860
- msgid "Custom Tax Band"
2861
- msgstr ""
2862
-
2863
  #: wpsc-admin/includes/display-items-functions.php:338
2864
  msgid "This product is not taxable."
2865
  msgstr ""
@@ -2948,11 +2872,6 @@ msgstr ""
2948
  msgid "Add Custom Meta"
2949
  msgstr ""
2950
 
2951
- #: wpsc-admin/includes/display-items-functions.php:697
2952
- #: wpsc-admin/admin-form-functions.php:77
2953
- msgid "Value"
2954
- msgstr ""
2955
-
2956
  #: wpsc-admin/includes/display-items-functions.php:715
2957
  msgid "Merchant Notes:"
2958
  msgstr ""
@@ -2982,1950 +2901,1688 @@ msgid ""
2982
  msgstr ""
2983
 
2984
  #: wpsc-admin/includes/display-items-functions.php:762
2985
- msgid "Enable Comments"
2986
- msgstr ""
2987
-
2988
- #: wpsc-admin/includes/display-items-functions.php:764
2989
- msgid "Use Default"
2990
- msgstr ""
2991
-
2992
- #: wpsc-admin/includes/display-items-functions.php:768
2993
- msgid "Allow users to comment on this Product."
2994
- msgstr ""
2995
-
2996
- #: wpsc-admin/includes/display-items-functions.php:792
2997
- msgid ""
2998
- "If this product is for sale on another website enter the link here. For "
2999
- "instance if your product is an MP3 file for sale on iTunes you could put the "
3000
- "link here. This option overrides the buy now and add to cart links and takes "
3001
- "you to the site linked here. You can also customise the Buy Now text and "
3002
- "choose to open the link in a new window."
3003
- msgstr ""
3004
-
3005
- #: wpsc-admin/includes/display-items-functions.php:796
3006
- msgid "External Link"
3007
- msgstr ""
3008
-
3009
- #: wpsc-admin/includes/display-items-functions.php:800
3010
- msgid "External Link Text"
3011
- msgstr ""
3012
-
3013
- #: wpsc-admin/includes/display-items-functions.php:804
3014
- msgid "External Link Target"
3015
- msgstr ""
3016
-
3017
- #: wpsc-admin/includes/display-items-functions.php:807
3018
- msgctxt "External product link target"
3019
- msgid "Default (set by theme)"
3020
- msgstr ""
3021
-
3022
- #: wpsc-admin/includes/display-items-functions.php:808
3023
- msgid "Open link in the same window"
3024
- msgstr ""
3025
-
3026
- #: wpsc-admin/includes/display-items-functions.php:809
3027
- msgid "Open link in a new window"
3028
- msgstr ""
3029
-
3030
- #: wpsc-admin/includes/display-items-functions.php:825
3031
- msgid "Manage Product Images"
3032
- msgstr ""
3033
-
3034
- #: wpsc-admin/includes/display-items-functions.php:846
3035
- msgid "Upload New File"
3036
- msgstr ""
3037
-
3038
- #: wpsc-admin/includes/display-items-functions.php:847
3039
- msgid "Max Upload Size"
3040
- msgstr ""
3041
-
3042
- #: wpsc-admin/includes/display-items-functions.php:848
3043
- msgid "Select all downloadable files for %s"
3044
- msgstr ""
3045
-
3046
- #: wpsc-admin/includes/display-items-functions.php:848
3047
- msgid "Select from existing files"
3048
- msgstr ""
3049
-
3050
- #: wpsc-admin/includes/display-items-functions.php:853
3051
- msgid "Select an MP3 file to upload as a preview"
3052
- msgstr ""
3053
-
3054
- #: wpsc-admin/includes/display-items-functions.php:856
3055
- msgid "Your preview for this product:"
3056
- msgstr ""
3057
-
3058
- #: wpsc-admin/includes/display-items-functions.php:890
3059
- msgid "Upload Image%s"
3060
- msgstr ""
3061
-
3062
- #: wpsc-admin/includes/display-items-functions.php:944
3063
- msgid "Variation set"
3064
- msgstr ""
3065
-
3066
- #: wpsc-admin/includes/display-items-functions.php:967
3067
- #: wpsc-admin/includes/display-items-functions.php:997
3068
- #: wpsc-admin/includes/display-items-functions.php:1120
3069
- msgid "Use as Product Thumbnail"
3070
- msgstr ""
3071
-
3072
- #: wpsc-admin/includes/display-items-functions.php:973
3073
- msgid ""
3074
- "The name is how it appears on your site. <br><div class=\"error"
3075
- "\"><strong>Please read this carefully before starting to work with "
3076
- "variations:</strong><br />Variations in WP e-Commerce are divided into sets. "
3077
- "For example set <strong>Color</strong> could have variations <strong>Red, "
3078
- "Green,</strong> and <strong>Blue</strong>. To create a set simply enter "
3079
- "<stron>Name</strong> and push Enter key on your keyboard or click "
3080
- "<strong>Add New Variation/Set</strong> button in the bottom of this page. "
3081
- "Now you can select the variation set that you've just created from "
3082
- "<strong>Variation set</strong> drop-down menu and add some variations to it."
3083
- "</div>"
3084
- msgstr ""
3085
-
3086
- #: wpsc-admin/includes/display-items-functions.php:996
3087
- #: wpsc-admin/includes/display-items-functions.php:1119
3088
- msgid "Use as featured image"
3089
- msgstr ""
3090
-
3091
- #: wpsc-admin/includes/display-items-functions.php:1011
3092
- msgid "Full Size"
3093
- msgstr ""
3094
-
3095
- #: wpsc-admin/includes/display-items-functions.php:1031
3096
- msgid "(%d&nbsp;&times;&nbsp;%d)"
3097
- msgstr ""
3098
-
3099
- #: wpsc-admin/includes/display-items-functions.php:1039
3100
- msgid "Alt text for the product image, e.g. &#8220;Rockstar T-Shirt&#8221;"
3101
- msgstr ""
3102
-
3103
- #: wpsc-admin/includes/display-items-functions.php:1042
3104
- msgid "Single Product Page Thumbnail:"
3105
- msgstr ""
3106
-
3107
- #: wpsc-admin/includes/display-items-functions.php:1045
3108
- msgid ""
3109
- "This is the Thumbnail size that will be displayed on the Single Product "
3110
- "page. You can change the default sizes under your store settings"
3111
- msgstr ""
3112
-
3113
- #: wpsc-admin/includes/display-items-functions.php:1058
3114
- msgid "Products Page Thumbnail Size:"
3115
- msgstr ""
3116
-
3117
- #: wpsc-admin/includes/display-items-functions.php:1060
3118
- msgid "Custom thumbnail size for this image on the main Product Page"
3119
- msgstr ""
3120
-
3121
- #: wpsc-admin/includes/display-items-functions.php:1130
3122
- msgid "Product Image Gallery"
3123
- msgstr ""
3124
-
3125
- #: wpsc-admin/includes/display-items-functions.php:1207
3126
- #: wpsc-admin/includes/products.php:282 wpsc-admin/includes/products.php:325
3127
- #: wpsc-admin/includes/product-functions.php:12
3128
- #: wpsc-admin/includes/product-functions.php:59 wpsc-admin/admin.php:878
3129
- #: wpsc-admin/admin.php:880 wpsc-admin/display-items.page.php:133
3130
- #: wpsc-admin/display-items.page.php:177 wpsc-admin/display-items.page.php:209
3131
- #: wpsc-admin/ajax-and-init.php:363 wpsc-includes/category.functions.php:56
3132
- #: wpsc-includes/category.functions.php:328
3133
- #: wpsc-includes/purchaselogs.class.php:326
3134
- #: wpsc-includes/purchaselogs.class.php:856
3135
- msgid "N/A"
3136
- msgstr ""
3137
-
3138
- #: wpsc-admin/includes/display-items-functions.php:1247
3139
- msgid "Weight:"
3140
- msgstr ""
3141
-
3142
- #: wpsc-admin/includes/display-items-functions.php:1255
3143
- msgid "Stock:"
3144
- msgstr ""
3145
-
3146
- #: wpsc-admin/includes/display-items-functions.php:1271
3147
- msgid "Sale Price:"
3148
- msgstr ""
3149
-
3150
- #: wpsc-admin/includes/products.php:69
3151
- msgid "(no title)"
3152
- msgstr ""
3153
-
3154
- #: wpsc-admin/includes/products.php:78 wpsc-admin/display-items.page.php:46
3155
- #: wpsc-admin/display-items.page.php:59 wpsc-admin/display-items.page.php:75
3156
- msgid "Stock"
3157
- msgstr ""
3158
-
3159
- #: wpsc-admin/includes/products.php:89
3160
- msgid "Unpublished"
3161
- msgstr ""
3162
-
3163
- #: wpsc-admin/includes/products.php:92
3164
- msgid "Y/m/d g:i:s A"
3165
- msgstr ""
3166
-
3167
- #: wpsc-admin/includes/products.php:99
3168
- msgid "%s ago"
3169
- msgstr ""
3170
-
3171
- #: wpsc-admin/includes/products.php:101
3172
- msgid "Y/m/d"
3173
- msgstr ""
3174
-
3175
- #: wpsc-admin/includes/products.php:111
3176
- msgid "Published"
3177
- msgstr ""
3178
-
3179
- #: wpsc-admin/includes/products.php:114
3180
- msgid "Missed schedule"
3181
- msgstr ""
3182
-
3183
- #: wpsc-admin/includes/products.php:116
3184
- msgid "Scheduled"
3185
- msgstr ""
3186
-
3187
- #: wpsc-admin/includes/products.php:118
3188
- msgid "Last Modified"
3189
- msgstr ""
3190
-
3191
- #: wpsc-admin/includes/products.php:131
3192
- msgid "Edit &#8220;%s&#8221;"
3193
- msgstr ""
3194
-
3195
- #: wpsc-admin/includes/products.php:166
3196
- msgid "Edit this product"
3197
- msgstr ""
3198
-
3199
- #: wpsc-admin/includes/products.php:167
3200
- msgid "Quick Edit"
3201
- msgstr ""
3202
-
3203
- #: wpsc-admin/includes/products.php:172
3204
- msgid "Preview &#8220;%s&#8221;"
3205
- msgstr ""
3206
-
3207
- #: wpsc-admin/includes/products.php:172
3208
- msgid "Preview"
3209
- msgstr ""
3210
-
3211
- #: wpsc-admin/includes/products.php:175
3212
- msgid "View &#8220;%s&#8221;"
3213
- msgstr ""
3214
-
3215
- #: wpsc-admin/includes/products.php:175 wpsc-admin/includes/products.php:369
3216
- msgid "View"
3217
- msgstr ""
3218
-
3219
- #: wpsc-admin/includes/products.php:298 wpsc-admin/display-items.page.php:222
3220
- msgid "Uncategorized"
3221
- msgstr ""
3222
-
3223
- #: wpsc-admin/includes/products.php:316
3224
- msgid "No Tags"
3225
- msgstr ""
3226
-
3227
- #: wpsc-admin/includes/products.php:347
3228
- msgid "%s pending"
3229
  msgstr ""
3230
 
3231
- #. translators: comment count link
3232
- #: wpsc-admin/includes/products.php:350
3233
- msgctxt "comment count"
3234
- msgid "0"
3235
  msgstr ""
3236
 
3237
- #. translators: comment count link
3238
- #: wpsc-admin/includes/products.php:350
3239
- msgctxt "comment count"
3240
- msgid "1"
3241
  msgstr ""
3242
 
3243
- #. translators: comment count link: % will be substituted by comment count
3244
- #: wpsc-admin/includes/products.php:350
3245
- msgctxt "comment count"
3246
- msgid "%"
 
 
 
3247
  msgstr ""
3248
 
3249
- #: wpsc-admin/includes/product-functions.php:438
3250
- msgid "Could not update product in the database"
3251
  msgstr ""
3252
 
3253
- #: wpsc-admin/includes/product-functions.php:455
3254
- msgid "Could not insert product into the database"
3255
  msgstr ""
3256
 
3257
- #: wpsc-admin/display-coupons.php:32
3258
- msgid "Thanks, the coupon has been added."
3259
  msgstr ""
3260
 
3261
- #: wpsc-admin/display-coupons.php:139 wpsc-admin/admin.php:162
3262
- msgid "Coupons"
 
3263
  msgstr ""
3264
 
3265
- #: wpsc-admin/display-coupons.php:141 wpsc-includes/purchaselogs.class.php:21
3266
- msgid "Add New"
3267
  msgstr ""
3268
 
3269
- #: wpsc-admin/display-coupons.php:152 wpsc-admin/display-coupons.php:296
3270
- #: wpsc-admin/admin-form-functions.php:13
3271
- #: wpsc-admin/display-sales-logs.php:211
3272
- msgid "Coupon Code"
3273
  msgstr ""
3274
 
3275
- #: wpsc-admin/display-coupons.php:154 wpsc-admin/display-coupons.php:298
3276
- #: wpsc-admin/admin-form-functions.php:15
3277
- msgid "Start"
3278
  msgstr ""
3279
 
3280
- #: wpsc-admin/display-coupons.php:155 wpsc-admin/display-coupons.php:299
3281
- #: wpsc-admin/admin-form-functions.php:16
3282
- msgid "Expiry"
3283
  msgstr ""
3284
 
3285
- #: wpsc-admin/display-coupons.php:157 wpsc-admin/display-coupons.php:200
3286
- #: wpsc-admin/admin-form-functions.php:17
3287
- msgid "Use Once"
3288
  msgstr ""
3289
 
3290
- #: wpsc-admin/display-coupons.php:158 wpsc-admin/display-coupons.php:190
3291
- #: wpsc-admin/display-coupons.php:300 wpsc-admin/admin-form-functions.php:18
3292
- msgid "Active"
3293
  msgstr ""
3294
 
3295
- #: wpsc-admin/display-coupons.php:159 wpsc-admin/display-coupons.php:210
3296
- #: wpsc-admin/display-coupons.php:301 wpsc-admin/admin-form-functions.php:19
3297
- msgid "Apply On All Products"
3298
  msgstr ""
3299
 
3300
- #: wpsc-admin/display-coupons.php:172 wpsc-admin/admin-form-functions.php:33
3301
- msgid "Free shipping"
3302
  msgstr ""
3303
 
3304
- #: wpsc-admin/display-coupons.php:192
3305
- msgid "Activate coupon on creation."
3306
  msgstr ""
3307
 
3308
- #: wpsc-admin/display-coupons.php:202
3309
- msgid "Deactivate coupon after it has been used."
3310
  msgstr ""
3311
 
3312
- #: wpsc-admin/display-coupons.php:212
3313
- msgid "This coupon affects each product at checkout."
3314
  msgstr ""
3315
 
3316
- #: wpsc-admin/display-coupons.php:223 wpsc-admin/admin-form-functions.php:122
3317
- msgid "Item name"
 
 
3318
  msgstr ""
3319
 
3320
- #: wpsc-admin/display-coupons.php:224 wpsc-admin/admin-form-functions.php:123
3321
- msgid "Item quantity"
 
 
 
 
 
 
 
 
 
 
3322
  msgstr ""
3323
 
3324
- #: wpsc-admin/display-coupons.php:225 wpsc-admin/admin-form-functions.php:124
3325
- msgid "Total quantity"
 
3326
  msgstr ""
3327
 
3328
- #: wpsc-admin/display-coupons.php:226 wpsc-admin/admin-form-functions.php:125
3329
- msgid "Subtotal amount"
3330
  msgstr ""
3331
 
3332
- #: wpsc-admin/display-coupons.php:231 wpsc-admin/admin-form-functions.php:129
3333
- msgid "Is equal to"
3334
  msgstr ""
3335
 
3336
- #: wpsc-admin/display-coupons.php:232 wpsc-admin/admin-form-functions.php:130
3337
- msgid "Is greater than"
3338
  msgstr ""
3339
 
3340
- #: wpsc-admin/display-coupons.php:233 wpsc-admin/admin-form-functions.php:131
3341
- msgid "Is less than"
3342
  msgstr ""
3343
 
3344
- #: wpsc-admin/display-coupons.php:234 wpsc-admin/admin-form-functions.php:132
3345
- msgid "Contains"
 
 
3346
  msgstr ""
3347
 
3348
- #: wpsc-admin/display-coupons.php:235 wpsc-admin/admin-form-functions.php:133
3349
- msgid "Does not contain"
3350
  msgstr ""
3351
 
3352
- #: wpsc-admin/display-coupons.php:236 wpsc-admin/admin-form-functions.php:134
3353
- msgid "Begins with"
3354
  msgstr ""
3355
 
3356
- #: wpsc-admin/display-coupons.php:237 wpsc-admin/admin-form-functions.php:135
3357
- msgid "Ends with"
3358
  msgstr ""
3359
 
3360
- #: wpsc-admin/display-coupons.php:238
3361
- msgid "In Category"
3362
  msgstr ""
3363
 
3364
- #: wpsc-admin/display-coupons.php:283
3365
- msgid "Add New Condition"
3366
  msgstr ""
3367
 
3368
- #: wpsc-admin/display-coupons.php:342
3369
- msgid "Free Shipping"
3370
  msgstr ""
3371
 
3372
- #: wpsc-admin/display-coupons.php:398
3373
- msgid ""
3374
- "<strong>Note:</strong> Due to a current PayPal limitation, when a purchase "
3375
- "is made using a coupon we cannot send a detailed list of items through for "
3376
- "processing. Instead we send the total amount of the purchase so the customer "
3377
- "will see your shop name and the total within PayPal."
3378
  msgstr ""
3379
 
3380
- #: wpsc-admin/admin.php:152
3381
- msgid "Store Sales"
3382
  msgstr ""
3383
 
3384
- #: wpsc-admin/admin.php:155
3385
- msgid "Update Store"
 
3386
  msgstr ""
3387
 
3388
- #: wpsc-admin/admin.php:155
3389
- msgid "Store Update"
 
3390
  msgstr ""
3391
 
3392
- #: wpsc-admin/admin.php:157
3393
- msgid "Store Upgrades"
 
 
3394
  msgstr ""
3395
 
3396
- #: wpsc-admin/admin.php:165 wpsc-admin/display-options-settings.page.php:16
3397
- msgid "Store Settings"
 
 
 
3398
  msgstr ""
3399
 
3400
- #: wpsc-admin/admin.php:165
3401
- msgid "Store"
3402
  msgstr ""
3403
 
3404
- #: wpsc-admin/admin.php:170
3405
- msgid "Store Debug"
 
3406
  msgstr ""
3407
 
3408
- #: wpsc-admin/admin.php:174
3409
- msgid "For More Information"
 
 
 
 
 
3410
  msgstr ""
3411
 
3412
- #: wpsc-admin/admin.php:176
3413
- msgid ""
3414
- "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
3415
- "store/sales/'>About the Sales Page</a>"
3416
  msgstr ""
3417
 
3418
- #: wpsc-admin/admin.php:177
3419
- msgid ""
3420
- "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
3421
- "store/products'>About the Products Page</a>"
3422
  msgstr ""
3423
 
3424
- #: wpsc-admin/admin.php:178
3425
- msgid ""
3426
- "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
3427
- "store/categories/'>About the Categories Page</a>"
3428
  msgstr ""
3429
 
3430
- #: wpsc-admin/admin.php:179
3431
- msgid ""
3432
- "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
3433
- "store/variations/'>About the Variations Page</a>"
3434
  msgstr ""
3435
 
3436
- #: wpsc-admin/admin.php:180
3437
- msgid ""
3438
- "<a target='_blank' href='http://getshopped.org/resources/docs/store-settings/"
3439
- "general/'>General Settings</a><br /> <a target='_blank' href='http://"
3440
- "getshopped.org/resources/docs/store-settings/checkout/'>Checkout Options</a> "
3441
- "<br />"
3442
  msgstr ""
3443
 
3444
- #: wpsc-admin/admin.php:181
3445
  msgid ""
3446
- "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
3447
- "store/marketing'>Marketing Options</a><br />"
3448
  msgstr ""
3449
 
3450
- #: wpsc-admin/admin.php:213
3451
- msgid "Product Tracking Email"
3452
  msgstr ""
3453
 
3454
- #: wpsc-admin/admin.php:214
3455
- msgid ""
3456
- "Track & Trace means you may track the progress of your parcel with our "
3457
- "online parcel tracker, just login to our website and enter the following "
3458
- "Tracking ID to view the status of your order.\n"
3459
- "\n"
3460
- "Tracking ID: %trackid%\n"
3461
  msgstr ""
3462
 
3463
- #: wpsc-admin/admin.php:269 wpsc-admin/admin.php:342
3464
- msgid ""
3465
- "Unsaved changes have been detected. Click OK to lose these changes and "
3466
- "continue."
3467
  msgstr ""
3468
 
3469
- #: wpsc-admin/admin.php:295
3470
- msgid "Variations"
 
 
3471
  msgstr ""
3472
 
3473
- #: wpsc-admin/admin.php:296
3474
- msgid "Off Site Product link"
3475
  msgstr ""
3476
 
3477
- #: wpsc-admin/admin.php:303
3478
- msgid "Price Control"
 
 
3479
  msgstr ""
3480
 
3481
- #: wpsc-admin/admin.php:304
3482
- msgid "Stock Control"
 
 
 
 
3483
  msgstr ""
3484
 
3485
- #: wpsc-admin/admin.php:305 wpsc-admin/display-sales-logs.php:221
3486
- msgid "Taxes"
3487
  msgstr ""
3488
 
3489
- #: wpsc-admin/admin.php:307
3490
- msgid "Product Download"
3491
  msgstr ""
3492
 
3493
- #: wpsc-admin/admin.php:308
3494
- msgid "Product Images"
3495
  msgstr ""
3496
 
3497
- #: wpsc-admin/admin.php:397
3498
- msgid "Text"
3499
  msgstr ""
3500
 
3501
- #: wpsc-admin/admin.php:400
3502
- msgid "Textarea"
3503
  msgstr ""
3504
 
3505
- #: wpsc-admin/admin.php:401
3506
- msgid "Heading"
3507
  msgstr ""
3508
 
3509
- #: wpsc-admin/admin.php:402
3510
- msgid "Coupon"
 
3511
  msgstr ""
3512
 
3513
- #: wpsc-admin/admin.php:407
3514
- msgid "Label"
3515
  msgstr ""
3516
 
3517
- #: wpsc-admin/admin.php:408
3518
- msgid "Label Description"
3519
  msgstr ""
3520
 
3521
- #: wpsc-admin/admin.php:409
3522
- msgid "Item Number"
3523
  msgstr ""
3524
 
3525
- #: wpsc-admin/admin.php:410
3526
- msgid "Life Number"
3527
  msgstr ""
3528
 
3529
- #: wpsc-admin/admin.php:411
3530
- msgid "Product Code"
3531
  msgstr ""
3532
 
3533
- #: wpsc-admin/admin.php:412
3534
- msgid "PDF"
3535
  msgstr ""
3536
 
3537
- #: wpsc-admin/admin.php:414 wpsc-shipping/tablerate.php:61
3538
- #: wpsc-shipping/weightrate.php:58
3539
- msgid " and above"
3540
  msgstr ""
3541
 
3542
- #: wpsc-admin/admin.php:415 wpsc-shipping/tablerate.php:59
3543
- msgid "If price is "
 
3544
  msgstr ""
3545
 
3546
- #: wpsc-admin/admin.php:416 wpsc-shipping/weightrate.php:58
3547
- msgid "If weight is "
3548
  msgstr ""
3549
 
3550
- #: wpsc-admin/admin.php:472 wpsc-admin/admin-form-functions.php:203
3551
- msgid "Current Month"
3552
  msgstr ""
3553
 
3554
- #: wpsc-admin/admin.php:485 wpsc-admin/admin.php:512
3555
- msgctxt "the total value of sales in dashboard widget"
3556
  msgid "Sales"
3557
  msgstr ""
3558
 
3559
- #: wpsc-admin/admin.php:491 wpsc-admin/admin.php:518
3560
- #: wpsc-admin/admin-form-functions.php:297
3561
- msgid "Order"
3562
- msgid_plural "Orders"
3563
- msgstr[0] ""
3564
- msgstr[1] ""
3565
-
3566
- #: wpsc-admin/admin.php:500 wpsc-admin/admin.php:529
3567
- msgid "Avg Order"
3568
  msgstr ""
3569
 
3570
- #: wpsc-admin/admin.php:508
3571
- msgid "Total Income"
3572
  msgstr ""
3573
 
3574
- #: wpsc-admin/admin.php:553
3575
- msgid "Getshopped News"
3576
  msgstr ""
3577
 
3578
- #: wpsc-admin/admin.php:554
3579
- msgid "Sales Summary"
 
3580
  msgstr ""
3581
 
3582
- #: wpsc-admin/admin.php:555
3583
- msgid "Sales by Quarter"
3584
  msgstr ""
3585
 
3586
- #: wpsc-admin/admin.php:556
3587
- msgid "Sales by Month"
3588
  msgstr ""
3589
 
3590
- #: wpsc-admin/admin.php:614
3591
- msgid "Financial Year End"
3592
- msgstr ""
 
 
3593
 
3594
- #: wpsc-admin/admin.php:671 wpsc-admin/admin.php:773
3595
- #: wpsc-admin/admin-form-functions.php:208
3596
- msgid "At a Glance"
3597
- msgstr ""
 
3598
 
3599
- #: wpsc-admin/admin.php:672
3600
- msgid "Revenue"
3601
- msgstr ""
 
 
3602
 
3603
- #: wpsc-admin/admin.php:770
3604
- msgid "Last four months of sales on a per product basis:"
 
 
 
3605
  msgstr ""
3606
 
3607
- #: wpsc-admin/admin.php:842
3608
- msgid "Error: you don't have required permissions to edit this product"
3609
  msgstr ""
3610
 
3611
- #: wpsc-admin/admin.php:885
3612
- msgid "Error updating product"
3613
  msgstr ""
3614
 
3615
- #: wpsc-admin/display-items.page.php:50
3616
- msgid "Categories"
 
 
 
3617
  msgstr ""
3618
 
3619
- #: wpsc-admin/display-items.page.php:51
3620
- msgid "Featured"
 
 
 
3621
  msgstr ""
3622
 
3623
- #: wpsc-admin/display-items.page.php:120 wpsc-admin/display-items.page.php:126
3624
- msgid "Drag to a new position"
3625
  msgstr ""
3626
 
3627
- #: wpsc-admin/display-items.page.php:156
3628
- msgid " lbs."
3629
  msgstr ""
3630
 
3631
- #: wpsc-admin/display-items.page.php:159
3632
- msgid " oz."
3633
  msgstr ""
3634
 
3635
- #: wpsc-admin/display-items.page.php:162
3636
- msgid " g"
3637
  msgstr ""
3638
 
3639
- #: wpsc-admin/display-items.page.php:166
3640
- msgid " kgs."
3641
  msgstr ""
3642
 
3643
- #: wpsc-admin/display-items.page.php:230 wpsc-admin/display-items.page.php:356
3644
- msgid "Unmark as Featured"
3645
  msgstr ""
3646
 
3647
- #: wpsc-admin/display-items.page.php:232 wpsc-admin/display-items.page.php:358
3648
- msgid "Mark as Featured"
3649
  msgstr ""
3650
 
3651
- #: wpsc-admin/display-items.page.php:295
3652
- msgctxt "Show all [category name]"
3653
- msgid "Show All %s"
3654
  msgstr ""
3655
 
3656
- #: wpsc-admin/display-update.page.php:40
3657
- msgid "WP e-Commerce is almost ready."
3658
  msgstr ""
3659
 
3660
- #: wpsc-admin/display-update.page.php:40
3661
- msgid ""
3662
- "You must <a href=\"%1$s\">update your database</a> to import all of your "
3663
- "products."
3664
  msgstr ""
3665
 
3666
- #: wpsc-admin/display-update.page.php:55
3667
- msgid "Update WP e-Commerce"
3668
  msgstr ""
3669
 
3670
- #: wpsc-admin/display-update.page.php:60
3671
- msgid "Updating Categories..."
3672
  msgstr ""
3673
 
3674
- #: wpsc-admin/display-update.page.php:62
3675
- msgid "Updating Variations..."
3676
  msgstr ""
3677
 
3678
- #: wpsc-admin/display-update.page.php:64
3679
- msgid "Updating Products..."
3680
  msgstr ""
3681
 
3682
- #: wpsc-admin/display-update.page.php:66
3683
- msgid "Updating Child Products..."
3684
  msgstr ""
3685
 
3686
- #: wpsc-admin/display-update.page.php:68
3687
- msgid "Updating Product Files..."
3688
  msgstr ""
3689
 
3690
- #: wpsc-admin/display-update.page.php:70
3691
- msgid "Updating Database..."
3692
  msgstr ""
3693
 
3694
- #: wpsc-admin/display-update.page.php:73
3695
- msgid "WP e-Commerce updated successfully!"
3696
  msgstr ""
3697
 
3698
- #: wpsc-admin/display-update.page.php:79
3699
- msgid ""
3700
- "Your WP e-Commerce database needs to be updated for WP e-Commerce 3.8. To "
3701
- "perform this update, press the button below. It is highly recommended that "
3702
- "you back up your database before performing this update."
3703
  msgstr ""
3704
 
3705
- #: wpsc-admin/display-update.page.php:82
3706
- msgid ""
3707
- "Note: If the server times out or runs out of memory, just reload this page, "
3708
- "the server will pick up where it left off."
3709
  msgstr ""
3710
 
3711
- #: wpsc-admin/display-upgrades.page.php:9
3712
- msgid "WP e-Commerce Upgrades"
3713
  msgstr ""
3714
 
3715
- #: wpsc-admin/display-upgrades.page.php:10
3716
  msgid ""
3717
- "Add more functionality to your e-Commerce site. Prices may be subject to "
3718
- "change."
3719
  msgstr ""
3720
 
3721
- #: wpsc-admin/display-upgrades.page.php:15
3722
- msgid "Pure Gold"
3723
  msgstr ""
3724
 
3725
- #: wpsc-admin/display-upgrades.page.php:29
3726
- msgid "MP3 Player"
3727
  msgstr ""
3728
 
3729
- #: wpsc-admin/display-upgrades.page.php:36
3730
- msgid "Members Only Module"
3731
  msgstr ""
3732
 
3733
- #: wpsc-admin/display-upgrades.page.php:50
3734
- msgid "NextGen Gallery Buy Now Buttons"
3735
  msgstr ""
3736
 
3737
- #: wpsc-admin/display-upgrades.page.php:56
3738
- msgid "Upgrades"
 
3739
  msgstr ""
3740
 
3741
- #: wpsc-admin/display-upgrades.page.php:58
3742
- msgid "Enter your API Username and API Key below."
3743
  msgstr ""
3744
 
3745
- #: wpsc-admin/display-upgrades.page.php:59
3746
- msgid "For more information visit our documentation page."
3747
  msgstr ""
3748
 
3749
- #: wpsc-admin/display-upgrades.page.php:73
3750
- msgid "You don't have any Upgrades yet!"
3751
  msgstr ""
3752
 
3753
- #: wpsc-admin/display-upgrades.page.php:77
3754
- #: wpsc-admin/display-upgrades.page.php:86
3755
- msgid "API Key Reset"
3756
  msgstr ""
3757
 
3758
- #: wpsc-admin/display-upgrades.page.php:80
3759
- msgid ""
3760
- "Enter your API name and key to release it from an old site that you no "
3761
- "longer use."
3762
  msgstr ""
3763
 
3764
- #: wpsc-admin/display-upgrades.page.php:88
3765
- msgid "Name:"
3766
  msgstr ""
3767
 
3768
- #: wpsc-admin/display-upgrades.page.php:92
3769
- msgid "API Key:"
 
 
3770
  msgstr ""
3771
 
3772
- #: wpsc-admin/display-upgrades.page.php:97
3773
- msgid "Reset API Key"
 
 
 
 
 
 
3774
  msgstr ""
3775
 
3776
- #: wpsc-admin/display-upgrades.page.php:150
3777
- msgid "Your API key has been Reset"
3778
  msgstr ""
3779
 
3780
- #: wpsc-admin/admin-form-functions.php:64
3781
- msgid "Conditions"
3782
  msgstr ""
3783
 
3784
- #: wpsc-admin/admin-form-functions.php:71
3785
- msgid "Property"
3786
  msgstr ""
3787
 
3788
- #: wpsc-admin/admin-form-functions.php:74
3789
- msgid "Logic"
3790
  msgstr ""
3791
 
3792
- #: wpsc-admin/admin-form-functions.php:117
3793
- msgid "Add Conditions"
3794
  msgstr ""
3795
 
3796
- #: wpsc-admin/admin-form-functions.php:149
3797
- msgid "Update Coupon"
3798
  msgstr ""
3799
 
3800
- #: wpsc-admin/admin-form-functions.php:166
3801
- msgid "Settings"
3802
  msgstr ""
3803
 
3804
- #: wpsc-admin/admin-form-functions.php:170
3805
- msgid "Shop Settings"
3806
  msgstr ""
3807
 
3808
- #: wpsc-admin/admin-form-functions.php:171
3809
- msgid "Money and Payment"
 
 
3810
  msgstr ""
3811
 
3812
- #: wpsc-admin/admin-form-functions.php:172
3813
- msgid "Checkout Page Settings"
3814
  msgstr ""
3815
 
3816
- #: wpsc-admin/admin-form-functions.php:215
3817
- msgctxt "dashboard widget"
3818
- msgid "Product"
3819
- msgid_plural "Products"
3820
- msgstr[0] ""
3821
- msgstr[1] ""
3822
 
3823
- #: wpsc-admin/admin-form-functions.php:235
3824
- msgid "Pending sale"
3825
- msgid_plural "Pending sales"
3826
- msgstr[0] ""
3827
- msgstr[1] ""
3828
 
3829
- #: wpsc-admin/admin-form-functions.php:243
3830
- msgid "Variation"
3831
- msgid_plural "Variations"
3832
- msgstr[0] ""
3833
- msgstr[1] ""
3834
 
3835
- #: wpsc-admin/admin-form-functions.php:249
3836
- msgid "Closed sale"
3837
- msgid_plural "Closed sales"
3838
- msgstr[0] ""
3839
- msgstr[1] ""
3840
 
3841
- #: wpsc-admin/admin-form-functions.php:263
3842
- msgid "Right Now"
3843
  msgstr ""
3844
 
3845
- #: wpsc-admin/admin-form-functions.php:266
3846
- msgid "You have %s product,"
3847
- msgid_plural "You have %s products,"
3848
- msgstr[0] ""
3849
- msgstr[1] ""
3850
 
3851
- #: wpsc-admin/admin-form-functions.php:267
3852
- msgid " contained within %s category."
3853
- msgid_plural " contained within %s categories."
3854
- msgstr[0] ""
3855
- msgstr[1] ""
3856
 
3857
- #: wpsc-admin/admin-form-functions.php:268
3858
  msgid ""
3859
- "This month you made %1$s sale and generated a total of %2$s and your total "
3860
- "sales ever is %3$s."
3861
- msgid_plural ""
3862
- "This month you made %1$s sales and generated a total of %2$s and your total "
3863
- "sales ever is %3$s."
3864
- msgstr[0] ""
3865
- msgstr[1] ""
3866
-
3867
- #: wpsc-admin/admin-form-functions.php:269
3868
- msgid "You have %s sale awaiting approval."
3869
- msgid_plural "You have %s sales awaiting approval."
3870
- msgstr[0] ""
3871
- msgstr[1] ""
3872
-
3873
- #: wpsc-admin/admin-form-functions.php:272
3874
- msgid "You are using the %1$s style. This is WP e-Commerce %2$s."
3875
  msgstr ""
3876
 
3877
- #: wpsc-admin/admin-form-functions.php:296
3878
- msgid "Packing Slip"
 
 
 
3879
  msgstr ""
3880
 
3881
- #: wpsc-admin/admin-form-functions.php:386
3882
- msgid "Manual Payment"
 
 
3883
  msgstr ""
3884
 
3885
- #: wpsc-admin/admin-form-functions.php:407
3886
- #: wpsc-includes/checkout.class.php:145
3887
- msgid "Tax"
 
 
 
 
 
3888
  msgstr ""
3889
 
3890
- #: wpsc-admin/admin-form-functions.php:486
3891
- msgid "This users cart was empty"
 
3892
  msgstr ""
3893
 
3894
- #: wpsc-admin/display-sales-logs.php:37
3895
- msgid "Sales"
3896
  msgstr ""
3897
 
3898
- #: wpsc-admin/display-sales-logs.php:49
3899
- msgid "Order ID"
3900
  msgstr ""
3901
 
3902
- #: wpsc-admin/display-sales-logs.php:50
3903
- msgid "Date / Time"
3904
  msgstr ""
3905
 
3906
- #: wpsc-admin/display-sales-logs.php:52
3907
- msgid "Amount"
3908
  msgstr ""
3909
 
3910
- #: wpsc-admin/display-sales-logs.php:56 wpsc-admin/display-sales-logs.php:436
3911
- msgid "Tracking ID"
3912
  msgstr ""
3913
 
3914
- #: wpsc-admin/display-sales-logs.php:65
3915
- msgid "%s Purchase Log updated."
3916
- msgid_plural "%s Purchase Logs updated."
3917
- msgstr[0] ""
3918
- msgstr[1] ""
3919
-
3920
- #: wpsc-admin/display-sales-logs.php:73
3921
- msgid "%s product not updated, somebody is editing it."
3922
- msgid_plural "%s products not updated, somebody is editing them."
3923
- msgstr[0] ""
3924
- msgstr[1] ""
3925
-
3926
- #: wpsc-admin/display-sales-logs.php:78
3927
- msgid "%s Purchase Log deleted."
3928
- msgid_plural "%s Purchase Logs deleted."
3929
- msgstr[0] ""
3930
- msgstr[1] ""
3931
 
3932
- #: wpsc-admin/display-sales-logs.php:86
3933
- msgid ""
3934
- "When upgrading the WP e-Commerce Plugin from 3.6.* to 3.7 it is required "
3935
- "that you associate your checkout form fields with the new Purchase Logs "
3936
- "system. To do so please <a href=\"%s\">Click Here</a>"
3937
  msgstr ""
3938
 
3939
- #: wpsc-admin/display-sales-logs.php:117
3940
- msgid "Downloads for this log have been released."
 
3941
  msgstr ""
3942
 
3943
- #: wpsc-admin/display-sales-logs.php:121
3944
- msgid "Receipt has been resent "
 
3945
  msgstr ""
3946
 
3947
- #: wpsc-admin/display-sales-logs.php:161
3948
- msgid "Shipping Options"
 
3949
  msgstr ""
3950
 
3951
- #: wpsc-admin/display-sales-logs.php:164
3952
- msgid "Shipping Method:"
3953
  msgstr ""
3954
 
3955
- #: wpsc-admin/display-sales-logs.php:165
3956
- msgid "Shipping Option:"
3957
  msgstr ""
3958
 
3959
- #: wpsc-admin/display-sales-logs.php:167
3960
- msgid "Tracking ID:"
3961
  msgstr ""
3962
 
3963
- #: wpsc-admin/display-sales-logs.php:168
3964
- msgid "Shipping Status:"
3965
  msgstr ""
3966
 
3967
- #: wpsc-admin/display-sales-logs.php:169
3968
- msgid "Track History:"
3969
  msgstr ""
3970
 
3971
- #: wpsc-admin/display-sales-logs.php:176
3972
- msgid "Billing Details"
3973
  msgstr ""
3974
 
3975
- #: wpsc-admin/display-sales-logs.php:177
3976
- msgid "Purchase Log Date:"
3977
  msgstr ""
3978
 
3979
- #: wpsc-admin/display-sales-logs.php:178
3980
- msgid "Purchase Number:"
3981
  msgstr ""
3982
 
3983
- #: wpsc-admin/display-sales-logs.php:179
3984
- msgid "Buyers Name:"
 
 
3985
  msgstr ""
3986
 
3987
- #: wpsc-admin/display-sales-logs.php:180
3988
- msgid "Address:"
 
3989
  msgstr ""
3990
 
3991
- #: wpsc-admin/display-sales-logs.php:182
3992
- msgid "Phone:"
 
3993
  msgstr ""
3994
 
3995
- #: wpsc-admin/display-sales-logs.php:183
3996
- msgid "Email:"
 
3997
  msgstr ""
3998
 
3999
- #: wpsc-admin/display-sales-logs.php:184
4000
- msgid "Payment Method:"
4001
  msgstr ""
4002
 
4003
- #: wpsc-admin/display-sales-logs.php:186
4004
- msgid "How User Found Us:"
4005
  msgstr ""
4006
 
4007
- #: wpsc-admin/display-sales-logs.php:193
4008
- msgid "Items Ordered"
4009
  msgstr ""
4010
 
4011
- #: wpsc-admin/display-sales-logs.php:240
4012
- msgid "Order Status:"
4013
  msgstr ""
4014
 
4015
- #: wpsc-admin/display-sales-logs.php:260
4016
- msgid "Actions"
4017
  msgstr ""
4018
 
4019
- #: wpsc-admin/display-sales-logs.php:265
4020
- msgid "View Packing Slip"
4021
  msgstr ""
4022
 
4023
- #: wpsc-admin/display-sales-logs.php:267
4024
- msgid "Resend Receipt to Buyer"
4025
  msgstr ""
4026
 
4027
- #: wpsc-admin/display-sales-logs.php:269 wpsc-admin/display-sales-logs.php:428
4028
- msgid "Delete this log"
4029
  msgstr ""
4030
 
4031
- #: wpsc-admin/display-sales-logs.php:269 wpsc-admin/display-sales-logs.php:428
4032
- msgid ""
4033
- "You are about to delete this log '%s'\n"
4034
- " 'Cancel' to stop, 'OK' to delete."
4035
  msgstr ""
4036
 
4037
- #: wpsc-admin/display-sales-logs.php:269
4038
- msgid "Remove this record"
 
4039
  msgstr ""
4040
 
4041
- #: wpsc-admin/display-sales-logs.php:271
4042
- msgid "Go Back"
4043
  msgstr ""
4044
 
4045
- #: wpsc-admin/display-sales-logs.php:288
4046
- msgid "Bulk Actions"
4047
  msgstr ""
4048
 
4049
- #: wpsc-admin/display-sales-logs.php:299
4050
- msgid "View:"
4051
  msgstr ""
4052
 
4053
- #: wpsc-admin/display-sales-logs.php:320
4054
- msgctxt "all sales"
4055
- msgid "All"
4056
  msgstr ""
4057
 
4058
- #: wpsc-admin/display-sales-logs.php:321
4059
- msgid "Three Months"
4060
  msgstr ""
4061
 
4062
- #: wpsc-admin/display-sales-logs.php:345
4063
- msgid "Status: All"
4064
  msgstr ""
4065
 
4066
- #: wpsc-admin/display-sales-logs.php:348
4067
- msgid "Filter"
 
4068
  msgstr ""
4069
 
4070
- #: wpsc-admin/display-sales-logs.php:351
4071
- msgid "There are no purchase logs for your selection, please try again."
 
4072
  msgstr ""
4073
 
4074
- #: wpsc-admin/display-sales-logs.php:368
4075
- msgid "Total:"
 
4076
  msgstr ""
4077
 
4078
- #: wpsc-admin/display-sales-logs.php:380
4079
- msgid "Download CSV"
4080
  msgstr ""
4081
 
4082
- #: wpsc-admin/display-sales-logs.php:389
4083
- msgid ""
4084
- "You are about to delete the selected purchase logs.\n"
4085
- " 'Cancel' to stop, 'OK' to delete."
4086
  msgstr ""
4087
 
4088
- #: wpsc-admin/display-sales-logs.php:415
4089
- msgid "%s Item"
4090
- msgid_plural "%s Items"
4091
- msgstr[0] ""
4092
- msgstr[1] ""
4093
 
4094
- #: wpsc-admin/display-sales-logs.php:443
4095
- msgid "Send Custom Message"
4096
  msgstr ""
4097
 
4098
- #: wpsc-admin/display-sales-logs.php:455
4099
- msgid "Search Logs"
4100
  msgstr ""
4101
 
4102
- #: wpsc-admin/display-sales-logs.php:480
4103
- msgid "Users Custom Fields"
4104
  msgstr ""
4105
 
4106
- #: wpsc-admin/display-sales-logs.php:485
4107
- msgid "Cart Items with Custom Files"
4108
  msgstr ""
4109
 
4110
- #: wpsc-admin/display-sales-logs.php:492
4111
- msgid "Cart Items with Custom Messages"
4112
  msgstr ""
4113
 
4114
- #: wpsc-admin/display-sales-logs.php:512
4115
- msgid "Order Notes"
 
4116
  msgstr ""
4117
 
4118
- #: wpsc-admin/display-sales-logs.php:519
4119
- msgid "Update Notes"
 
4120
  msgstr ""
4121
 
4122
- #: wpsc-admin/display-sales-logs.php:534
4123
- msgid "Additional Checkout Fields"
4124
  msgstr ""
4125
 
4126
- #: wpsc-admin/display-options-settings.page.php:109
4127
- msgctxt "General settings tab in Settings->Store page"
4128
- msgid "General"
4129
  msgstr ""
4130
 
4131
- #: wpsc-admin/display-options-settings.page.php:110
4132
- msgctxt "Presentation settings tab in Settings->Store page"
4133
- msgid "Presentation"
4134
  msgstr ""
4135
 
4136
- #: wpsc-admin/display-options-settings.page.php:111
4137
- msgctxt "Admin settings tab in Settings->Store page"
4138
- msgid "Admin"
4139
  msgstr ""
4140
 
4141
- #: wpsc-admin/display-options-settings.page.php:112
4142
- msgctxt "Taxes settings tab in Settings->Store page"
4143
- msgid "Taxes"
4144
  msgstr ""
4145
 
4146
- #: wpsc-admin/display-options-settings.page.php:113
4147
- msgctxt "Shipping settings tab in Settings->Store page"
4148
- msgid "Shipping"
4149
  msgstr ""
4150
 
4151
- #: wpsc-admin/display-options-settings.page.php:114
4152
- msgctxt "Payments settings tab in Settings->Store page"
4153
- msgid "Payments"
4154
  msgstr ""
4155
 
4156
- #: wpsc-admin/display-options-settings.page.php:115
4157
- msgctxt "Checkout settings tab in Settings->Store page"
4158
- msgid "Checkout"
4159
  msgstr ""
4160
 
4161
- #: wpsc-admin/display-options-settings.page.php:116
4162
- msgctxt "Marketing settings tab in Settings->Store page"
4163
- msgid "Marketing"
4164
  msgstr ""
4165
 
4166
- #: wpsc-admin/display-options-settings.page.php:117
4167
- msgctxt "Import settings tab in Settings->Store page"
4168
- msgid "Import"
4169
  msgstr ""
4170
 
4171
- #: wpsc-admin/display-options-settings.page.php:195
4172
- msgid "To configure a shipping module select one on the left."
4173
  msgstr ""
4174
 
4175
- #: wpsc-admin/display-options-settings.page.php:209
4176
- #: wpsc-admin/display-options-settings.page.php:262
4177
- msgid "To configure a payment module select one on the left."
4178
  msgstr ""
4179
 
4180
- #: wpsc-admin/display-options-settings.page.php:224
4181
- msgid "Display Name"
4182
  msgstr ""
4183
 
4184
- #: wpsc-admin/display-options-settings.page.php:254
4185
- msgid "The text that people see when making a purchase"
4186
  msgstr ""
4187
 
4188
- #: wpsc-admin/display-options-settings.page.php:276
4189
- msgid "%s Setting options updated."
4190
- msgid_plural " %s Settings options updated."
4191
- msgstr[0] ""
4192
- msgstr[1] ""
4193
 
4194
- #: wpsc-admin/display-options-settings.page.php:281
4195
- msgid "%s Setting option deleted."
4196
- msgid_plural "%s Setting option deleted."
4197
- msgstr[0] ""
4198
- msgstr[1] ""
4199
 
4200
- #: wpsc-admin/display-options-settings.page.php:286
4201
- msgid "%s Shipping option updated."
4202
- msgid_plural "%s Shipping option updated."
4203
- msgstr[0] ""
4204
- msgstr[1] ""
4205
 
4206
- #: wpsc-admin/display-options-settings.page.php:291
4207
- msgid "%s Checkout field added."
4208
- msgid_plural "%s Checkout fields added."
4209
- msgstr[0] ""
4210
- msgstr[1] ""
4211
 
4212
- #: wpsc-admin/display-options-settings.page.php:296
4213
- msgid "Thumbnails regenerated."
4214
  msgstr ""
4215
 
4216
- #: wpsc-admin/display-options-settings.page.php:303
4217
- msgid "Settings successfully updated."
4218
  msgstr ""
4219
 
4220
- #: wpsc-admin/ajax-and-init.php:174
4221
  msgid ""
4222
- "Sorry, for some reason, we couldn't duplicate this product because it could "
4223
- "not be found in the database, check there for this ID: "
4224
  msgstr ""
4225
 
4226
- #: wpsc-admin/ajax-and-init.php:624
4227
- msgid "The administrator has unlocked your file"
4228
  msgstr ""
4229
 
4230
- #: wpsc-admin/ajax-and-init.php:624
4231
- msgid ""
4232
- "Dear CustomerWe are pleased to advise you that your order has been updated "
4233
- "and your downloads are now active.Please download your purchase using the "
4234
- "links provided below.[download_links]Thank you for your custom."
4235
  msgstr ""
4236
 
4237
- #: wpsc-admin/ajax-and-init.php:1175
4238
- msgid "Choose a downloadable file for this product:"
4239
  msgstr ""
4240
 
4241
- #: wpsc-admin/ajax-and-init.php:1719 wpsc-admin/ajax-and-init.php:1734
4242
- msgid "Variation Price"
4243
  msgstr ""
4244
 
4245
- #: wpsc-admin/ajax-and-init.php:1721 wpsc-admin/ajax-and-init.php:1738
4246
  msgid ""
4247
- "You can list a default price here for this variation. You can list a "
4248
- "regular price (18.99), differential price (+1.99 / -2) or even a percentage-"
4249
- "based price (+50% / -25%)."
4250
  msgstr ""
4251
 
4252
- #: wpsc-admin/ajax-and-init.php:1758
4253
- msgid "Apply to current variations?"
4254
  msgstr ""
4255
 
4256
- #: wpsc-admin/ajax-and-init.php:1760
4257
  msgid ""
4258
- "By checking this box, the price rule you implement above will be applied to "
4259
- "all variations that currently exist. If you leave it unchecked, it will "
4260
- "only apply to products that use this variation created or edited from now "
4261
- "on. Take note, this will apply this rule to <strong>every</strong> product "
4262
- "using this variation. If you need to override it for any reason on a "
4263
- "specific product, simply go to that product and change the price."
4264
  msgstr ""
4265
 
4266
- #: wpsc-includes/ajax.functions.php:79
4267
- msgid "You just added \"[product_name]\" to your cart."
4268
  msgstr ""
4269
 
4270
- #: wpsc-includes/ajax.functions.php:82
4271
- msgid "Sorry, but you cannot add zero items to your cart"
 
 
 
 
4272
  msgstr ""
4273
 
4274
- #: wpsc-includes/ajax.functions.php:85
4275
- msgid "Sorry, but there is only %s of this item in stock."
4276
- msgid_plural "Sorry, but there are only %s of this item in stock."
4277
- msgstr[0] ""
4278
- msgstr[1] ""
4279
 
4280
- #: wpsc-includes/ajax.functions.php:87
4281
- msgid "Sorry, but the item \"%s\" is out of stock."
 
4282
  msgstr ""
4283
 
4284
- #: wpsc-includes/ajax.functions.php:407
4285
- msgid "Sorry, but this variation is out of stock."
4286
  msgstr ""
4287
 
4288
- #: wpsc-includes/ajax.functions.php:408
4289
- msgid "Variation not in stock"
4290
  msgstr ""
4291
 
4292
- #: wpsc-includes/ajax.functions.php:515
4293
- msgid ""
4294
- "You must select a shipping method, otherwise we cannot process your order."
4295
  msgstr ""
4296
 
4297
- #: wpsc-includes/ajax.functions.php:519
4298
  msgid ""
4299
- "Please agree to the terms and conditions, otherwise we cannot process your "
4300
- "order."
4301
  msgstr ""
4302
 
4303
- #: wpsc-includes/ajax.functions.php:533
4304
- msgid ""
4305
- "%s cannot be shipped to %s. To continue with your transaction please remove "
4306
- "this product from the list below."
4307
  msgstr ""
4308
 
4309
- #: wpsc-includes/ajax.functions.php:553
4310
- msgid "Please enter a Zipcode and click calculate to proceed"
4311
  msgstr ""
4312
 
4313
- #: wpsc-includes/ajax.functions.php:945
4314
- msgid "Invalid Image parameters"
4315
  msgstr ""
4316
 
4317
- #: wpsc-includes/ajax.functions.php:974 wpsc-includes/ajax.functions.php:991
4318
- #: wpsc-includes/ajax.functions.php:1064
4319
- msgid ""
4320
- "This download is no longer valid, Please contact the site administrator for "
4321
- "more information."
4322
  msgstr ""
4323
 
4324
- #: wpsc-includes/theme.functions.php:176
4325
- msgid ""
4326
- "<strong>WP e-Commerce is ready</strong>. If you plan on editing the look of "
4327
- "your site, you should <a href=\"%1s\">update your active theme</a> to "
4328
- "include the additional WP e-Commerce files. <a href=\"%2s\">Click here</a> "
4329
- "to ignore and remove this box."
4330
  msgstr ""
4331
 
4332
- #: wpsc-includes/theme.functions.php:194
4333
  msgid ""
4334
- "<strong>Your WP e-Commerce data needs to be updated</strong>. You've "
4335
- "upgraded from a previous version of the WP e-Commerce plugin, and your store "
4336
- "needs updating.<br>You should <a href=\"%1s\">update your database</a> for "
4337
- "your store to continue working."
4338
  msgstr ""
4339
 
4340
- #: wpsc-includes/theme.functions.php:231
4341
- msgid ""
4342
- "<strong>Store Settings</strong>: You have set 'users must register before "
4343
- "checkout', for this to work you need to check 'Anyone can register' in your "
4344
- "WordPress <a href=\"%1s\">General Settings</a>."
4345
  msgstr ""
4346
 
4347
- #: wpsc-includes/upgrades.php:122
4348
- msgid "Visit upgrade homepage"
 
4349
  msgstr ""
4350
 
4351
- #: wpsc-includes/upgrades.php:127
4352
- msgid "Visit author homepage"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4353
  msgstr ""
4354
 
4355
- #: wpsc-includes/upgrades.php:131
4356
- msgid "By %s"
4357
  msgstr ""
4358
 
4359
- #: wpsc-includes/misc.functions.php:67
4360
- msgid "<strong>ERROR</strong>: Please enter a username."
4361
- msgstr ""
 
 
4362
 
4363
- #: wpsc-includes/misc.functions.php:69
4364
- msgid ""
4365
- "<strong>ERROR</strong>: This username is invalid. Please enter a valid "
4366
- "username."
4367
  msgstr ""
4368
 
4369
- #: wpsc-includes/misc.functions.php:72
4370
- msgid ""
4371
- "<strong>ERROR</strong>: This username is already registered, please choose "
4372
- "another one."
4373
  msgstr ""
4374
 
4375
- #: wpsc-includes/misc.functions.php:77
4376
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
4377
  msgstr ""
4378
 
4379
- #: wpsc-includes/misc.functions.php:79
4380
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
4381
  msgstr ""
4382
 
4383
- #: wpsc-includes/misc.functions.php:82
4384
- msgid ""
4385
- "<strong>ERROR</strong>: This email is already registered, please choose "
4386
- "another one."
4387
  msgstr ""
4388
 
4389
- #: wpsc-includes/misc.functions.php:90
4390
- msgid ""
4391
- "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a "
4392
- "href=\"mailto:%s\">webmaster</a> !"
4393
  msgstr ""
4394
 
4395
- #: wpsc-includes/misc.functions.php:764
4396
- msgid ""
4397
- "Please refrain from uploading images larger than <strong>%d x %d</strong> "
4398
- "pixels"
4399
  msgstr ""
4400
 
4401
- #: wpsc-includes/share-this.php:192
4402
- msgid "E-mail this, post to del.icio.us, etc."
 
4403
  msgstr ""
4404
 
4405
- #: wpsc-includes/share-this.php:245
4406
- msgid "Close"
 
4407
  msgstr ""
4408
 
4409
- #: wpsc-includes/share-this.php:247 wpsc-includes/share-this.php:592
4410
- msgid "Social Web"
4411
  msgstr ""
4412
 
4413
- #: wpsc-includes/share-this.php:264 wpsc-includes/share-this.php:621
4414
- msgid "E-mail It"
4415
  msgstr ""
4416
 
4417
- #: wpsc-includes/share-this.php:267 wpsc-includes/share-this.php:624
4418
- msgid "To Address:"
4419
  msgstr ""
4420
 
4421
- #: wpsc-includes/share-this.php:271 wpsc-includes/share-this.php:628
4422
- msgid "Your Name:"
4423
  msgstr ""
4424
 
4425
- #: wpsc-includes/share-this.php:275 wpsc-includes/share-this.php:632
4426
- msgid "Your Address:"
4427
  msgstr ""
4428
 
4429
- #: wpsc-includes/share-this.php:279 wpsc-includes/share-this.php:636
4430
- msgid "Send It"
4431
  msgstr ""
4432
 
4433
- #: wpsc-includes/share-this.php:362
4434
- msgid ""
4435
- "Click your <strong>back button</strong> and make sure those e-mail addresses "
4436
- "are valid then try again."
4437
  msgstr ""
4438
 
4439
- #: wpsc-includes/share-this.php:371
4440
- msgid "Check out this product on "
4441
  msgstr ""
4442
 
4443
- #: wpsc-includes/share-this.php:376 wpsc-includes/share-this.php:390
4444
- msgid "Greetings--"
 
4445
  msgstr ""
4446
 
4447
- #: wpsc-includes/share-this.php:377 wpsc-includes/share-this.php:391
4448
- msgid " thinks this will be of interest to you:"
4449
  msgstr ""
4450
 
4451
- #: wpsc-includes/share-this.php:384 wpsc-includes/share-this.php:394
4452
- msgid "Enjoy."
4453
  msgstr ""
4454
 
4455
- #: wpsc-includes/share-this.php:452
4456
- msgid "Share This : "
 
 
4457
  msgstr ""
4458
 
4459
- #: wpsc-includes/share-this.php:588
4460
- msgid ""
4461
- "<strong>What is this?</strong> From this page you can use the <em>Social "
4462
- "Web</em> links to save %s to a social bookmarking site, or the <em>E-mail</"
4463
- "em> form to send a link via e-mail."
4464
  msgstr ""
4465
 
4466
- #: wpsc-includes/share-this.php:659
4467
- msgid "Posted in: "
4468
  msgstr ""
4469
 
4470
- #: wpsc-includes/share-this.php:662
4471
- msgid "Return to:"
4472
  msgstr ""
4473
 
4474
- #: wpsc-includes/form-display.functions.php:72
4475
- msgid "No Parent"
4476
  msgstr ""
4477
 
4478
- #: wpsc-includes/form-display.functions.php:173
4479
- msgid "File(s) attached: "
 
4480
  msgstr ""
4481
 
4482
- #: wpsc-includes/form-display.functions.php:190
4483
- msgid ""
4484
- "There are no files attached to this product. Upload a new file or select "
4485
- "from other product files."
4486
  msgstr ""
4487
 
4488
- #: wpsc-includes/form-display.functions.php:209
4489
- msgid "Choose a downloadable file for this variation"
4490
  msgstr ""
4491
 
4492
- #: wpsc-includes/processing.functions.php:123
4493
- msgid "%s is out of stock"
4494
  msgstr ""
4495
 
4496
- #: wpsc-includes/processing.functions.php:123
4497
- msgid "Remaining stock of %s is 0. Product was unpublished."
 
4498
  msgstr ""
4499
 
4500
- #: wpsc-includes/processing.functions.php:289
4501
- msgid "This product has no available stock"
4502
  msgstr ""
4503
 
4504
- #: wpsc-includes/processing.functions.php:312
4505
- msgid "One or more of this products variations are out of stock."
4506
  msgstr ""
4507
 
4508
- #: wpsc-includes/processing.functions.php:346
4509
- msgid ""
4510
- " does not support products without a weight set. Please either disable "
4511
- "shipping for this product or give it a weight"
4512
  msgstr ""
4513
 
4514
- #: wpsc-includes/product-template.php:130
4515
- msgid "Pages: "
4516
  msgstr ""
4517
 
4518
- #: wpsc-includes/product-template.php:134
4519
- msgid "First Page"
4520
  msgstr ""
4521
 
4522
- #: wpsc-includes/product-template.php:134
4523
- msgid "&laquo; First"
4524
  msgstr ""
4525
 
4526
- #: wpsc-includes/product-template.php:139
4527
- msgid "Previous Page"
4528
  msgstr ""
4529
 
4530
- #: wpsc-includes/product-template.php:139
4531
- msgid "&lt; Previous"
 
 
4532
  msgstr ""
4533
 
4534
- #: wpsc-includes/product-template.php:147
4535
- #: wpsc-includes/product-template.php:149
4536
- #: wpsc-includes/product-template.php:166
4537
- msgid "Page %s"
4538
  msgstr ""
4539
 
4540
- #: wpsc-includes/product-template.php:177
4541
- msgid "Next Page"
4542
  msgstr ""
4543
 
4544
- #: wpsc-includes/product-template.php:177
4545
- msgid "Next &gt;"
4546
  msgstr ""
4547
 
4548
- #: wpsc-includes/product-template.php:181
4549
- msgid "Last Page"
4550
  msgstr ""
4551
 
4552
- #: wpsc-includes/product-template.php:181
4553
- msgid "Last &raquo;"
4554
  msgstr ""
4555
 
4556
- #: wpsc-includes/product-template.php:346
4557
- msgid " from %s"
4558
  msgstr ""
4559
 
4560
- #: wpsc-includes/product-template.php:635
4561
- msgid "Read the rest of this entry &raquo;"
4562
  msgstr ""
4563
 
4564
- #: wpsc-includes/product-template.php:1415
4565
- msgid "Avg. Customer Rating"
4566
  msgstr ""
4567
 
4568
- #: wpsc-includes/product-template.php:1421
4569
- msgid "Your Rating"
 
 
 
4570
  msgstr ""
4571
 
4572
- #: wpsc-includes/product-template.php:1422
4573
- msgid "Saved"
4574
  msgstr ""
4575
 
4576
- #: wpsc-includes/product-template.php:1477
4577
- msgid "Save"
4578
  msgstr ""
4579
 
4580
- #: wpsc-includes/checkout.class.php:762
4581
- msgid "Please enter a valid card number."
4582
  msgstr ""
4583
 
4584
- #: wpsc-includes/checkout.class.php:772
4585
- msgid "Please enter a valid expiry date."
4586
  msgstr ""
4587
 
4588
- #: wpsc-includes/checkout.class.php:780 wpsc-includes/checkout.class.php:790
4589
- msgid "Please enter a valid CVV."
4590
  msgstr ""
4591
 
4592
- #: wpsc-includes/checkout.class.php:856
4593
- msgid "Please enter a valid %s."
4594
  msgstr ""
4595
 
4596
- #: wpsc-includes/purchaselogs.class.php:558
4597
- msgid "Release downloads locked to this IP address %s"
4598
  msgstr ""
4599
 
4600
- #: wpsc-includes/purchaselogs.class.php:753
4601
- msgid "Thanks, the purchase log record has been deleted"
4602
  msgstr ""
4603
 
4604
- #: wpsc-includes/rss_template.php:7
4605
- msgid "WP e-Commerce"
4606
  msgstr ""
4607
 
4608
- #: wpsc-includes/display.functions.php:83
4609
- msgid "People who bought this item also bought"
 
 
4610
  msgstr ""
4611
 
4612
- #: wpsc-includes/display.functions.php:135
4613
- msgid "Updating"
4614
  msgstr ""
4615
 
4616
- #: wpsc-includes/display.functions.php:155
4617
- msgid "Go to Checkout"
 
4618
  msgstr ""
4619
 
4620
- #: wpsc-includes/display.functions.php:156
4621
- msgid "Continue Shopping"
4622
  msgstr ""
4623
 
4624
- #: wpsc-includes/display.functions.php:194
4625
- msgid ""
4626
- "You are using the example product group as your default group and it has no "
4627
- "products in it, you should set the default group to something else, you can "
4628
- "do so from your Shop Settings page."
4629
  msgstr ""
4630
 
4631
- #: wpsc-includes/display.functions.php:196
4632
- msgid ""
4633
- "This group is set as your default product group, you should either add some "
4634
- "items to it or switch your default product group to one that does contain "
4635
- "items."
4636
  msgstr ""
4637
 
4638
- #: wpsc-includes/variations.class.php:176
4639
- #: wpsc-includes/variations.class.php:179
4640
- #: wpsc-includes/variations.class.php:255
4641
- #: wpsc-includes/variations.class.php:258
4642
- msgid "Invalid Taxonomy"
4643
  msgstr ""
4644
 
4645
- #: wpsc-taxes/controllers/taxes_controller.class.php:302
4646
- #: wpsc-taxes/controllers/taxes_controller.class.php:313
4647
- msgid "Disabled"
4648
  msgstr ""
4649
 
4650
- #: wpsc-taxes/controllers/taxes_controller.class.php:318
4651
  msgid ""
4652
- "No Tax Bands Setup. Set Tax Bands up in <a href=\"options-general.php?"
4653
- "page=wpsc-settings&tab=taxes\">Settings &gt; Taxes</a>"
4654
  msgstr ""
4655
 
4656
- #: wpsc-taxes/controllers/taxes_controller.class.php:322
4657
- msgid ""
4658
- "Taxes are not enabled. See <a href=\"options-general.php?page=wpsc-"
4659
- "settings&tab=taxes\">Settings &gt; Taxes</a>"
4660
  msgstr ""
4661
 
4662
- #: wpsc-taxes/controllers/taxes_controller.class.php:534
4663
- msgid "Apply to Shipping"
4664
  msgstr ""
4665
 
4666
- #: wpsc-taxes/controllers/taxes_controller.class.php:593
4667
- msgid "All Markets"
4668
  msgstr ""
4669
 
4670
- #: wpsc-shipping/australiapost.php:47
4671
- msgid "Australia Post"
4672
  msgstr ""
4673
 
4674
- #: wpsc-shipping/australiapost.php:54
4675
- msgid "Standard Parcel Post"
4676
  msgstr ""
4677
 
4678
- #: wpsc-shipping/australiapost.php:55
4679
- msgid "Express Post"
4680
  msgstr ""
4681
 
4682
- #: wpsc-shipping/australiapost.php:56
4683
- msgid "Air Mail"
4684
  msgstr ""
4685
 
4686
- #: wpsc-shipping/australiapost.php:57
4687
- msgid "Sea Mail"
 
 
 
 
4688
  msgstr ""
4689
 
4690
- #: wpsc-shipping/australiapost.php:58
4691
- msgid "Express Post International"
4692
  msgstr ""
4693
 
4694
- #: wpsc-shipping/australiapost.php:95
4695
- msgid ""
4696
- "This shipping module only works if the base country in settings, region is "
4697
- "set to Australia."
4698
  msgstr ""
4699
 
4700
- #: wpsc-shipping/australiapost.php:100
4701
- msgid ""
4702
- "You must set your base postcode above before this shipping module will work."
4703
  msgstr ""
4704
 
4705
- #: wpsc-shipping/australiapost.php:103
4706
- msgid ""
4707
- "Select the Australia Post services that you want to offer during checkout:"
4708
  msgstr ""
4709
 
4710
- #: wpsc-shipping/australiapost.php:111
4711
- msgid "Notes:"
4712
  msgstr ""
4713
 
4714
- #: wpsc-shipping/australiapost.php:112
4715
- msgid ""
4716
- "1. The actual services quoted to the customer during checkout will depend on "
4717
- "the destination country. Not all methods are available to all destinations."
4718
  msgstr ""
4719
 
4720
- #: wpsc-shipping/australiapost.php:113
4721
- msgid ""
4722
- "2. Each product must have a valid weight configured. When editing a product, "
4723
- "use the weight field.)."
4724
  msgstr ""
4725
 
4726
- #: wpsc-shipping/australiapost.php:114
4727
- msgid ""
4728
- "3. To ensure accurate quotes, each product must valid dimensions configured. "
4729
- "When editing a product, use the height, width and length fields."
4730
  msgstr ""
4731
 
4732
- #: wpsc-shipping/australiapost.php:115
4733
- msgid ""
4734
- "4. The combined dimensions are estimated by calculating the volume of each "
4735
- "item, and then calculating the cubed root of the overall order volume which "
4736
- "becomes width, length and height."
4737
  msgstr ""
4738
 
4739
- #: wpsc-shipping/australiapost.php:116
4740
- msgid ""
4741
- "5. If no product dimensions are defined, then default package dimensions of "
4742
- "100mm x 100mm x 100mm will be used."
4743
  msgstr ""
4744
 
4745
- #: wpsc-shipping/australiapost.php:362
4746
- msgid "%1$s (estimated delivery time: %2$d business day)"
4747
- msgid_plural "%1$s (estimated delivery time: %2$d business days)"
4748
- msgstr[0] ""
4749
- msgstr[1] ""
4750
 
4751
- #: wpsc-shipping/ups_20.php:103
4752
- msgid "UPS Letter"
4753
  msgstr ""
4754
 
4755
- #: wpsc-shipping/ups_20.php:104
4756
- msgid "Your Packaging"
 
 
4757
  msgstr ""
4758
 
4759
- #: wpsc-shipping/ups_20.php:105
4760
- msgid "UPS Tube"
 
4761
  msgstr ""
4762
 
4763
- #: wpsc-shipping/ups_20.php:106
4764
- msgid "UPS Pak"
 
4765
  msgstr ""
4766
 
4767
- #: wpsc-shipping/ups_20.php:107
4768
- msgid "UPS Express Box"
4769
  msgstr ""
4770
 
4771
- #: wpsc-shipping/ups_20.php:108
4772
- msgid "UPS Express Box - Small"
4773
  msgstr ""
4774
 
4775
- #: wpsc-shipping/ups_20.php:109
4776
- msgid "UPS Express Box - Medium"
 
4777
  msgstr ""
4778
 
4779
- #: wpsc-shipping/ups_20.php:110
4780
- msgid "UPS Express Box - Large"
 
4781
  msgstr ""
4782
 
4783
- #: wpsc-shipping/ups_20.php:113
4784
- msgid "Destination Type"
4785
  msgstr ""
4786
 
4787
- #: wpsc-shipping/ups_20.php:124
4788
- msgid "Residential Address"
 
4789
  msgstr ""
4790
 
4791
- #: wpsc-shipping/ups_20.php:125
4792
- msgid "Commercial Address"
4793
  msgstr ""
4794
 
4795
- #: wpsc-shipping/ups_20.php:131
4796
- msgid "Dropoff Type"
 
 
 
4797
  msgstr ""
4798
 
4799
- #: wpsc-shipping/ups_20.php:165
4800
- msgid "Customer Type"
4801
  msgstr ""
4802
 
4803
- #: wpsc-shipping/ups_20.php:187
4804
- msgid "Packaging"
4805
  msgstr ""
4806
 
4807
- #: wpsc-shipping/ups_20.php:207
4808
- msgid "Use Testing Environment"
4809
  msgstr ""
4810
 
4811
- #: wpsc-shipping/ups_20.php:220
4812
- msgid "Show UPS negotiated rates"
4813
  msgstr ""
4814
 
4815
- #: wpsc-shipping/ups_20.php:232
4816
- msgid "Insure shipment against cart total"
 
4817
  msgstr ""
4818
 
4819
- #: wpsc-shipping/ups_20.php:244
4820
- msgid "Singular Shipping"
 
 
 
 
 
4821
  msgstr ""
4822
 
4823
- #: wpsc-shipping/ups_20.php:247
4824
- msgid ""
4825
- "Rate each quantity of items in a cart as its own package using dimensions on "
4826
- "product"
4827
  msgstr ""
4828
 
4829
- #: wpsc-shipping/ups_20.php:254
4830
- msgid "UPS Preferred Services"
 
4831
  msgstr ""
4832
 
4833
- #: wpsc-shipping/ups_20.php:275
4834
- msgid "All services used if no services selected"
4835
  msgstr ""
4836
 
4837
- #: wpsc-shipping/ups_20.php:279
4838
- msgid "UPS Account #"
4839
  msgstr ""
4840
 
4841
- #: wpsc-shipping/ups_20.php:285
4842
- msgid "UPS Username"
4843
  msgstr ""
4844
 
4845
- #: wpsc-shipping/ups_20.php:291
4846
- msgid "UPS Password"
 
 
 
 
 
4847
  msgstr ""
4848
 
4849
- #: wpsc-shipping/ups_20.php:297
4850
- msgid "UPS XML API Key"
 
4851
  msgstr ""
4852
 
4853
- #: wpsc-shipping/ups_20.php:301
4854
- msgid "Don't have an API login/ID ?"
4855
  msgstr ""
4856
 
4857
- #: wpsc-shipping/ups_20.php:302 wpsc-shipping/usps_20.php:198
4858
- msgid "Click Here"
4859
  msgstr ""
4860
 
4861
- #: wpsc-shipping/ups_20.php:304
4862
- msgid ""
4863
- "* For Negotiated rates, you must enter a UPS account number and select "
4864
- "\"Show UPS negotiated rates\" "
4865
  msgstr ""
4866
 
4867
- #: wpsc-shipping/usps_20.php:190
4868
- msgid "USPS ID"
 
4869
  msgstr ""
4870
 
4871
- #: wpsc-shipping/usps_20.php:196
4872
- msgid "Don't have a USPS API account ? "
 
4873
  msgstr ""
4874
 
4875
- #: wpsc-shipping/usps_20.php:203
4876
- msgid "Use Test Server:"
 
4877
  msgstr ""
4878
 
4879
- #: wpsc-shipping/usps_20.php:213
4880
- msgid "Advanced Rates:"
4881
  msgstr ""
4882
 
4883
- #: wpsc-shipping/usps_20.php:220
4884
- msgid ""
4885
- "This setting will provide rates based on the dimensions from eacy item in "
4886
- "your cart"
4887
  msgstr ""
4888
 
4889
- #: wpsc-shipping/usps_20.php:224
4890
- msgid "Select Services"
4891
  msgstr ""
4892
 
4893
- #: wpsc-shipping/usps_20.php:244
4894
- msgid "Online rates the following services only, when available"
4895
  msgstr ""
4896
 
4897
- #: wpsc-shipping/usps_20.php:256
4898
- msgid "International Package Type"
4899
  msgstr ""
4900
 
4901
- #: wpsc-shipping/usps_20.php:279
4902
- msgid "First Class Mail Type"
 
 
 
 
 
 
4903
  msgstr ""
4904
 
4905
- #: wpsc-shipping/usps_20.php:302
4906
- msgid "Only used for First Class service rates if selected"
 
4907
  msgstr ""
4908
 
4909
- #: wpsc-shipping/tablerate.php:50 wpsc-shipping/weightrate.php:49
4910
- msgid "Shipping Price"
4911
  msgstr ""
4912
 
4913
- #: wpsc-shipping/tablerate.php:72
4914
- msgid "Add Layer"
4915
  msgstr ""
4916
 
4917
- #: wpsc-shipping/weightrate.php:49
4918
- msgid ""
4919
- "Total weight <br />(<abbr alt=\"You must enter the weight here in pounds, "
4920
- "regardless of what you used on your products\" title=\"You must enter the "
4921
- "weight here in pounds, regardless of what you used on your products\">in "
4922
- "pounds</abbr>)"
4923
  msgstr ""
4924
 
4925
- #: wpsc-shipping/flatrate.php:50
4926
- msgid ""
4927
- "If you do not wish to ship to a particular region, leave the field blank. To "
4928
- "offer free shipping to a region, enter 0."
 
 
4929
  msgstr ""
4930
 
4931
  #: wpsc-updates/currency_list.php:2
@@ -7415,12 +7072,310 @@ msgid ""
7415
  "total_shipping%%total_price%"
7416
  msgstr ""
7417
 
7418
- #: wp-shopping-cart.php:149
 
 
 
 
7419
  msgid ""
7420
- "Looks like you're running an older version of WordPress, you need to be "
7421
- "running at least WordPress 3.0 to use WP e-Commerce 3.8"
7422
  msgstr ""
7423
 
7424
- #: wp-shopping-cart.php:149
7425
- msgid "WP e-Commerce 3.8 not compatible"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7426
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-e-commerce\n"
7
+ "POT-Creation-Date: 2011-03-15 23:15:53+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: wpsc-shipping/tablerate.php:50 wpsc-theme/wpsc-shopping_cart_page.php:482
16
+ msgid "Total Price"
 
17
  msgstr ""
18
 
19
+ #: wpsc-shipping/tablerate.php:50 wpsc-shipping/weightrate.php:49
20
+ msgid "Shipping Price"
 
21
  msgstr ""
22
 
23
+ #: wpsc-shipping/tablerate.php:59 wpsc-admin/admin.php:435
24
+ msgid "If price is "
 
 
 
 
 
 
25
  msgstr ""
26
 
27
+ #: wpsc-shipping/tablerate.php:61 wpsc-shipping/weightrate.php:58
28
+ #: wpsc-admin/admin.php:434
29
+ msgid " and above"
 
 
 
30
  msgstr ""
31
 
32
+ #: wpsc-shipping/tablerate.php:66 wpsc-shipping/weightrate.php:58
33
+ #: wpsc-taxes/controllers/taxes_controller.class.php:616
34
+ #: wpsc-admin/admin.php:416 wpsc-admin/admin-form-functions.php:68
35
+ #: wpsc-admin/admin-form-functions.php:86 wpsc-admin/ajax-and-init.php:1252
36
+ #: wpsc-admin/includes/products.php:385
37
+ #: wpsc-admin/includes/settings-pages/checkout.php:205
38
+ #: wpsc-admin/includes/display-items-functions.php:699
39
+ #: wpsc-admin/display-sales-logs.php:55 wpsc-admin/display-sales-logs.php:295
40
+ msgid "Delete"
41
  msgstr ""
42
 
43
+ #: wpsc-shipping/tablerate.php:72
44
+ msgid "Add Layer"
 
45
  msgstr ""
46
 
47
+ #: wpsc-shipping/ups_20.php:103
48
+ msgid "UPS Letter"
49
  msgstr ""
50
 
51
+ #: wpsc-shipping/ups_20.php:104
52
+ msgid "Your Packaging"
 
53
  msgstr ""
54
 
55
+ #: wpsc-shipping/ups_20.php:105
56
+ msgid "UPS Tube"
 
57
  msgstr ""
58
 
59
+ #: wpsc-shipping/ups_20.php:106
60
+ msgid "UPS Pak"
 
61
  msgstr ""
62
 
63
+ #: wpsc-shipping/ups_20.php:107
64
+ msgid "UPS Express Box"
65
  msgstr ""
66
 
67
+ #: wpsc-shipping/ups_20.php:108
68
+ msgid "UPS Express Box - Small"
 
69
  msgstr ""
70
 
71
+ #: wpsc-shipping/ups_20.php:109
72
+ msgid "UPS Express Box - Medium"
73
  msgstr ""
74
 
75
+ #: wpsc-shipping/ups_20.php:110
76
+ msgid "UPS Express Box - Large"
77
  msgstr ""
78
 
79
+ #: wpsc-shipping/ups_20.php:113
80
+ msgid "Destination Type"
 
81
  msgstr ""
82
 
83
+ #: wpsc-shipping/ups_20.php:124
84
+ msgid "Residential Address"
 
85
  msgstr ""
86
 
87
+ #: wpsc-shipping/ups_20.php:125
88
+ msgid "Commercial Address"
 
89
  msgstr ""
90
 
91
+ #: wpsc-shipping/ups_20.php:131
92
+ msgid "Dropoff Type"
 
 
 
 
 
 
 
 
 
 
 
 
93
  msgstr ""
94
 
95
+ #: wpsc-shipping/ups_20.php:165
96
+ msgid "Customer Type"
 
97
  msgstr ""
98
 
99
+ #: wpsc-shipping/ups_20.php:187
100
+ msgid "Packaging"
 
 
 
 
 
101
  msgstr ""
102
 
103
+ #: wpsc-shipping/ups_20.php:207
104
+ msgid "Use Testing Environment"
 
105
  msgstr ""
106
 
107
+ #: wpsc-shipping/ups_20.php:220
108
+ msgid "Show UPS negotiated rates"
109
  msgstr ""
110
 
111
+ #: wpsc-shipping/ups_20.php:232
112
+ msgid "Insure shipment against cart total"
 
113
  msgstr ""
114
 
115
+ #: wpsc-shipping/ups_20.php:244
116
+ msgid "Singular Shipping"
117
  msgstr ""
118
 
119
+ #: wpsc-shipping/ups_20.php:247
120
+ msgid ""
121
+ "Rate each quantity of items in a cart as its own package using dimensions on "
122
+ "product"
123
  msgstr ""
124
 
125
+ #: wpsc-shipping/ups_20.php:254
126
+ msgid "UPS Preferred Services"
127
  msgstr ""
128
 
129
+ #: wpsc-shipping/ups_20.php:275
130
+ msgid "All services used if no services selected"
131
  msgstr ""
132
 
133
+ #: wpsc-shipping/ups_20.php:279
134
+ msgid "UPS Account #"
135
  msgstr ""
136
 
137
+ #: wpsc-shipping/ups_20.php:285
138
+ msgid "UPS Username"
139
  msgstr ""
140
 
141
+ #: wpsc-shipping/ups_20.php:291
142
+ msgid "UPS Password"
 
143
  msgstr ""
144
 
145
+ #: wpsc-shipping/ups_20.php:297
146
+ msgid "UPS XML API Key"
147
  msgstr ""
148
 
149
+ #: wpsc-shipping/ups_20.php:301
150
+ msgid "Don't have an API login/ID ?"
 
151
  msgstr ""
152
 
153
+ #: wpsc-shipping/ups_20.php:302 wpsc-shipping/usps_20.php:198
154
+ msgid "Click Here"
155
  msgstr ""
156
 
157
+ #: wpsc-shipping/ups_20.php:304
158
+ msgid ""
159
+ "* For Negotiated rates, you must enter a UPS account number and select "
160
+ "\"Show UPS negotiated rates\" "
161
  msgstr ""
162
 
163
+ #: wpsc-shipping/weightrate.php:49
164
+ msgid ""
165
+ "Total weight <br />(<abbr alt=\"You must enter the weight here in pounds, "
166
+ "regardless of what you used on your products\" title=\"You must enter the "
167
+ "weight here in pounds, regardless of what you used on your products\">in "
168
+ "pounds</abbr>)"
169
  msgstr ""
170
 
171
+ #: wpsc-shipping/weightrate.php:58 wpsc-admin/admin.php:436
172
+ msgid "If weight is "
173
  msgstr ""
174
 
175
+ #: wpsc-shipping/usps_20.php:190
176
+ msgid "USPS ID"
177
  msgstr ""
178
 
179
+ #: wpsc-shipping/usps_20.php:196
180
+ msgid "Don't have a USPS API account ? "
 
181
  msgstr ""
182
 
183
+ #: wpsc-shipping/usps_20.php:203
184
+ msgid "Use Test Server:"
185
  msgstr ""
186
 
187
+ #: wpsc-shipping/usps_20.php:213
188
+ msgid "Advanced Rates:"
 
 
 
189
  msgstr ""
190
 
191
+ #: wpsc-shipping/usps_20.php:220
192
+ msgid ""
193
+ "This setting will provide rates based on the dimensions from eacy item in "
194
+ "your cart"
195
  msgstr ""
196
 
197
+ #: wpsc-shipping/usps_20.php:224
198
+ msgid "Select Services"
 
 
 
 
 
 
 
 
 
 
199
  msgstr ""
200
 
201
+ #: wpsc-shipping/usps_20.php:244
202
+ msgid "Online rates the following services only, when available"
203
  msgstr ""
204
 
205
+ #: wpsc-shipping/usps_20.php:256
206
+ msgid "International Package Type"
 
 
 
207
  msgstr ""
208
 
209
+ #: wpsc-shipping/usps_20.php:279
210
+ msgid "First Class Mail Type"
 
211
  msgstr ""
212
 
213
+ #: wpsc-shipping/usps_20.php:302
214
+ msgid "Only used for First Class service rates if selected"
215
  msgstr ""
216
 
217
+ #: wpsc-shipping/flatrate.php:50
218
+ msgid ""
219
+ "If you do not wish to ship to a particular region, leave the field blank. To "
220
+ "offer free shipping to a region, enter 0."
221
  msgstr ""
222
 
223
+ #: wpsc-shipping/australiapost.php:47
224
+ msgid "Australia Post"
 
225
  msgstr ""
226
 
227
+ #: wpsc-shipping/australiapost.php:54
228
+ msgid "Standard Parcel Post"
229
  msgstr ""
230
 
231
+ #: wpsc-shipping/australiapost.php:55
232
+ msgid "Express Post"
233
  msgstr ""
234
 
235
+ #: wpsc-shipping/australiapost.php:56
236
+ msgid "Air Mail"
 
237
  msgstr ""
238
 
239
+ #: wpsc-shipping/australiapost.php:57
240
+ msgid "Sea Mail"
 
241
  msgstr ""
242
 
243
+ #: wpsc-shipping/australiapost.php:58
244
+ msgid "Express Post International"
245
  msgstr ""
246
 
247
+ #: wpsc-shipping/australiapost.php:96
248
+ msgid ""
249
+ "This shipping module only works if the base country in settings, region is "
250
+ "set to Australia."
251
  msgstr ""
252
 
253
+ #: wpsc-shipping/australiapost.php:101
254
+ msgid ""
255
+ "You must set your base postcode above before this shipping module will work."
 
256
  msgstr ""
257
 
258
+ #: wpsc-shipping/australiapost.php:104
259
+ msgid ""
260
+ "Select the Australia Post services that you want to offer during checkout:"
261
  msgstr ""
262
 
263
+ #: wpsc-shipping/australiapost.php:112
264
+ msgid "Notes:"
 
265
  msgstr ""
266
 
267
+ #: wpsc-shipping/australiapost.php:113
268
+ msgid ""
269
+ "1. The actual services quoted to the customer during checkout will depend on "
270
+ "the destination country. Not all methods are available to all destinations."
 
 
 
271
  msgstr ""
272
 
273
+ #: wpsc-shipping/australiapost.php:114
274
+ msgid ""
275
+ "2. Each product must have a valid weight configured. When editing a product, "
276
+ "use the weight field.)."
 
 
 
277
  msgstr ""
278
 
279
+ #: wpsc-shipping/australiapost.php:115
280
+ msgid ""
281
+ "3. To ensure accurate quotes, each product must valid dimensions configured. "
282
+ "When editing a product, use the height, width and length fields."
283
  msgstr ""
284
 
285
+ #: wpsc-shipping/australiapost.php:116
286
+ msgid ""
287
+ "4. The combined dimensions are estimated by calculating the volume of each "
288
+ "item, and then calculating the cubed root of the overall order volume which "
289
+ "becomes width, length and height."
290
  msgstr ""
291
 
292
+ #: wpsc-shipping/australiapost.php:117
 
293
  msgid ""
294
+ "5. If no product dimensions are defined, then default package dimensions of "
295
+ "100mm x 100mm x 100mm will be used."
296
  msgstr ""
297
 
298
+ #: wpsc-shipping/australiapost.php:363
299
+ msgid "%1$s (estimated delivery time: %2$d business day)"
300
+ msgid_plural "%1$s (estimated delivery time: %2$d business days)"
301
+ msgstr[0] ""
302
+ msgstr[1] ""
303
 
304
+ #: wpsc-taxes/controllers/taxes_controller.class.php:306
305
+ #: wpsc-taxes/controllers/taxes_controller.class.php:317
306
+ msgid "Disabled"
307
  msgstr ""
308
 
309
+ #: wpsc-taxes/controllers/taxes_controller.class.php:312
310
+ #: wpsc-admin/includes/display-items-functions.php:326
311
+ msgid "Custom Tax Band"
312
  msgstr ""
313
 
314
+ #: wpsc-taxes/controllers/taxes_controller.class.php:322
315
+ msgid ""
316
+ "No Tax Bands Setup. Set Tax Bands up in <a href=\"options-general.php?"
317
+ "page=wpsc-settings&tab=taxes\">Settings &gt; Taxes</a>"
318
  msgstr ""
319
 
320
+ #: wpsc-taxes/controllers/taxes_controller.class.php:326
321
+ msgid ""
322
+ "Taxes are not enabled. See <a href=\"options-general.php?page=wpsc-"
323
+ "settings&tab=taxes\">Settings &gt; Taxes</a>"
324
  msgstr ""
325
 
326
+ #: wpsc-taxes/controllers/taxes_controller.class.php:524
327
+ #: wpsc-admin/admin-form-functions.php:337
328
+ #: wpsc-admin/admin-form-functions.php:369 wpsc-admin/includes/products.php:78
329
+ #: wpsc-admin/includes/settings-pages/presentation.php:581
330
+ #: wpsc-admin/includes/settings-pages/checkout.php:10
331
+ #: wpsc-admin/includes/display-items-functions.php:695
332
+ #: wpsc-admin/includes/display-items-functions.php:706
333
+ #: wpsc-admin/display-items.page.php:44 wpsc-admin/display-items.page.php:73
334
+ #: wpsc-admin/display-sales-logs.php:135
335
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:472
336
+ msgid "Name"
337
  msgstr ""
338
 
339
+ #: wpsc-taxes/controllers/taxes_controller.class.php:538
340
+ msgid "Apply to Shipping"
341
  msgstr ""
342
 
343
+ #: wpsc-taxes/controllers/taxes_controller.class.php:597
344
+ msgid "All Markets"
345
  msgstr ""
346
 
347
+ #: wpsc-merchants/chronopay.php:436
348
+ #: wpsc-merchants/paypal-standard.merchant.php:532
349
+ #: wpsc-merchants/paypal-standard.merchant.php:540
350
+ #: wpsc-merchants/paypal-standard.merchant.php:556
351
+ #: wpsc-admin/includes/settings-pages/admin.php:38
352
+ #: wpsc-admin/includes/settings-pages/admin.php:64
353
+ #: wpsc-admin/includes/settings-pages/shipping.php:76
354
+ #: wpsc-admin/includes/settings-pages/shipping.php:118
355
+ #: wpsc-admin/includes/settings-pages/shipping.php:149
356
+ #: wpsc-admin/includes/settings-pages/presentation.php:268
357
+ #: wpsc-admin/includes/settings-pages/presentation.php:295
358
+ #: wpsc-admin/includes/settings-pages/presentation.php:312
359
+ #: wpsc-admin/includes/settings-pages/presentation.php:335
360
+ #: wpsc-admin/includes/settings-pages/presentation.php:358
361
+ #: wpsc-admin/includes/settings-pages/presentation.php:381
362
+ #: wpsc-admin/includes/settings-pages/presentation.php:404
363
+ #: wpsc-admin/includes/settings-pages/presentation.php:541
364
+ #: wpsc-admin/includes/settings-pages/presentation.php:609
365
+ #: wpsc-admin/includes/settings-pages/presentation.php:658
366
+ #: wpsc-admin/includes/settings-pages/presentation.php:702
367
+ #: wpsc-admin/includes/settings-pages/presentation.php:737
368
+ #: wpsc-admin/includes/settings-pages/presentation.php:759
369
+ #: wpsc-admin/includes/settings-pages/presentation.php:867
370
+ #: wpsc-admin/includes/settings-pages/presentation.php:894
371
+ #: wpsc-admin/includes/settings-pages/presentation.php:918
372
+ #: wpsc-admin/includes/settings-pages/presentation.php:944
373
+ #: wpsc-admin/includes/settings-pages/presentation.php:969
374
+ #: wpsc-admin/includes/settings-pages/presentation.php:1025
375
+ #: wpsc-admin/includes/settings-pages/presentation.php:1051
376
+ #: wpsc-admin/includes/settings-pages/presentation.php:1072
377
+ #: wpsc-admin/includes/settings-pages/presentation.php:1116
378
+ #: wpsc-admin/includes/settings-pages/presentation.php:1161
379
+ #: wpsc-admin/includes/settings-pages/presentation.php:1214
380
+ #: wpsc-admin/includes/settings-pages/checkout.php:51
381
+ #: wpsc-admin/includes/settings-pages/checkout.php:76
382
+ #: wpsc-admin/includes/settings-pages/checkout.php:99
383
+ #: wpsc-admin/includes/display-items-functions.php:765
384
+ #: wpsc-admin/includes/save-data.functions.php:308
385
+ #: wpsc-admin/includes/save-data.functions.php:533
386
+ msgid "Yes"
387
  msgstr ""
388
 
389
+ #: wpsc-merchants/chronopay.php:437
390
+ #: wpsc-merchants/paypal-standard.merchant.php:533
391
+ #: wpsc-merchants/paypal-standard.merchant.php:541
392
+ #: wpsc-merchants/paypal-standard.merchant.php:557
393
+ #: wpsc-admin/includes/settings-pages/admin.php:39
394
+ #: wpsc-admin/includes/settings-pages/admin.php:65
395
+ #: wpsc-admin/includes/settings-pages/shipping.php:77
396
+ #: wpsc-admin/includes/settings-pages/shipping.php:119
397
+ #: wpsc-admin/includes/settings-pages/shipping.php:150
398
+ #: wpsc-admin/includes/settings-pages/presentation.php:269
399
+ #: wpsc-admin/includes/settings-pages/presentation.php:296
400
+ #: wpsc-admin/includes/settings-pages/presentation.php:313
401
+ #: wpsc-admin/includes/settings-pages/presentation.php:336
402
+ #: wpsc-admin/includes/settings-pages/presentation.php:359
403
+ #: wpsc-admin/includes/settings-pages/presentation.php:383
404
+ #: wpsc-admin/includes/settings-pages/presentation.php:407
405
+ #: wpsc-admin/includes/settings-pages/presentation.php:543
406
+ #: wpsc-admin/includes/settings-pages/presentation.php:610
407
+ #: wpsc-admin/includes/settings-pages/presentation.php:659
408
+ #: wpsc-admin/includes/settings-pages/presentation.php:703
409
+ #: wpsc-admin/includes/settings-pages/presentation.php:738
410
+ #: wpsc-admin/includes/settings-pages/presentation.php:760
411
+ #: wpsc-admin/includes/settings-pages/presentation.php:868
412
+ #: wpsc-admin/includes/settings-pages/presentation.php:895
413
+ #: wpsc-admin/includes/settings-pages/presentation.php:919
414
+ #: wpsc-admin/includes/settings-pages/presentation.php:945
415
+ #: wpsc-admin/includes/settings-pages/presentation.php:970
416
+ #: wpsc-admin/includes/settings-pages/presentation.php:1026
417
+ #: wpsc-admin/includes/settings-pages/presentation.php:1052
418
+ #: wpsc-admin/includes/settings-pages/presentation.php:1073
419
+ #: wpsc-admin/includes/settings-pages/presentation.php:1117
420
+ #: wpsc-admin/includes/settings-pages/presentation.php:1162
421
+ #: wpsc-admin/includes/settings-pages/presentation.php:1215
422
+ #: wpsc-admin/includes/settings-pages/checkout.php:52
423
+ #: wpsc-admin/includes/settings-pages/checkout.php:78
424
+ #: wpsc-admin/includes/settings-pages/checkout.php:100
425
+ #: wpsc-admin/includes/display-items-functions.php:766
426
+ #: wpsc-admin/includes/save-data.functions.php:309
427
+ #: wpsc-admin/includes/save-data.functions.php:534
428
+ msgid "No"
429
  msgstr ""
430
 
431
+ #: wpsc-merchants/chronopay.php:449
432
+ #: wpsc-merchants/paypal-standard.merchant.php:615
433
+ #: wpsc-admin/includes/settings-pages/admin.php:166
434
+ #: wpsc-admin/includes/settings-pages/marketing.php:82
435
+ #: wpsc-admin/includes/settings-pages/shipping.php:172
436
+ #: wpsc-admin/includes/settings-pages/shipping.php:245
437
+ #: wpsc-admin/includes/settings-pages/shipping.php:261
438
+ #: wpsc-admin/includes/settings-pages/general.php:158
439
+ #: wpsc-admin/includes/settings-pages/presentation.php:1250
440
+ #: wpsc-admin/includes/settings-pages/gateway.php:105
441
+ #: wpsc-admin/includes/settings-pages/gateway.php:139
442
+ msgid "Update &raquo;"
443
  msgstr ""
444
 
445
+ #: wpsc-merchants/paypal-express.merchant.php:12
446
+ msgid "PayPal Express Checkout 2.0"
447
  msgstr ""
448
 
449
+ #: wpsc-merchants/paypal-express.merchant.php:18
450
+ msgid "PayPal Express"
451
  msgstr ""
452
 
453
+ #: wpsc-merchants/paypal-express.merchant.php:256
454
+ msgid "API Username"
455
  msgstr ""
456
 
457
+ #: wpsc-merchants/paypal-express.merchant.php:263
458
+ msgid "API Password"
459
  msgstr ""
460
 
461
+ #: wpsc-merchants/paypal-express.merchant.php:270
462
+ msgid "API Signature"
 
463
  msgstr ""
464
 
465
+ #: wpsc-merchants/paypal-express.merchant.php:277
466
+ msgid "Server Type"
467
  msgstr ""
468
 
469
+ #: wpsc-merchants/paypal-express.merchant.php:280
470
+ msgid "Sandbox (For testing)"
471
  msgstr ""
472
 
473
+ #: wpsc-merchants/paypal-express.merchant.php:281
474
+ msgid "Production"
475
  msgstr ""
476
 
477
+ #: wpsc-merchants/paypal-express.merchant.php:293
478
+ #: wpsc-merchants/paypal-standard.merchant.php:580
479
+ msgid "Currency Converter"
480
  msgstr ""
481
 
482
+ #: wpsc-merchants/paypal-express.merchant.php:295
483
  msgid ""
484
+ "Your website is using a currency not accepted by PayPal, select an accepted "
485
+ "currency using the drop down menu bellow. Buyers on your site will still pay "
486
+ "in your local currency however we will convert the currency and send the "
487
+ "order through to PayPal using the currency you choose below."
488
  msgstr ""
489
 
490
+ #: wpsc-merchants/paypal-express.merchant.php:298
491
+ msgid "Convert to"
492
  msgstr ""
493
 
494
+ #: wpsc-merchants/paypal-express.merchant.php:378
495
+ msgid "The PayPal API has returned an error!"
496
  msgstr ""
497
 
498
+ #: wpsc-merchants/paypal-express.merchant.php:423
499
+ #: wpsc-merchants/paypal-express.merchant.php:602
500
+ msgid "Error Number:"
501
  msgstr ""
502
 
503
+ #: wpsc-merchants/paypal-express.merchant.php:427
504
+ msgid "Short Message:"
 
505
  msgstr ""
506
 
507
+ #: wpsc-merchants/paypal-express.merchant.php:431
508
+ msgid "Long Message:"
509
  msgstr ""
510
 
511
+ #: wpsc-merchants/paypal-express.merchant.php:606
512
+ msgid "Shipping Address:"
513
+ msgstr ""
 
 
514
 
515
+ #: wpsc-merchants/paypal-express.merchant.php:610
516
+ msgid "Street 1:"
517
  msgstr ""
518
 
519
+ #: wpsc-merchants/paypal-express.merchant.php:616
520
+ msgid "Street 2:"
521
  msgstr ""
522
 
523
+ #: wpsc-merchants/paypal-express.merchant.php:622
524
+ msgid "City:"
525
  msgstr ""
526
 
527
+ #: wpsc-merchants/paypal-express.merchant.php:628
528
+ msgid "State:"
529
  msgstr ""
530
 
531
+ #: wpsc-merchants/paypal-express.merchant.php:633
532
+ msgid "Postal code:"
533
  msgstr ""
534
 
535
+ #: wpsc-merchants/paypal-express.merchant.php:639
536
+ msgid "Country:"
537
  msgstr ""
538
 
539
+ #: wpsc-merchants/paypal-express.merchant.php:656
540
+ msgid "Confirm Payment"
541
  msgstr ""
542
 
543
+ #: wpsc-merchants/paypal-standard.merchant.php:170
544
+ msgid "Your Subscription"
545
  msgstr ""
546
 
547
+ #: wpsc-merchants/paypal-standard.merchant.php:583
548
+ msgid ""
549
+ "Your website uses <strong>%s</strong>. This currency is not supported by "
550
+ "PayPal, please select a currency using the drop down menu below. Buyers on "
551
+ "your site will still pay in your local currency however we will send the "
552
+ "order through to Paypal using the currency you choose below."
553
  msgstr ""
554
 
555
+ #: wpsc-merchants/library/google_shipping_country.php:7
556
+ msgid "Google Shipping Country"
557
  msgstr ""
558
 
559
+ #: wpsc-merchants/library/google_shipping_country.php:44
560
+ #: wpsc-admin/includes/tax_and_shipping.php:66
561
+ #: wpsc-admin/includes/settings-pages/checkout.php:225
562
+ msgid "Save Changes"
563
  msgstr ""
564
 
565
+ #: wpsc-merchants/paypal-pro.merchant.php:147
566
+ msgid "There was a problem connecting to the payment gateway."
567
  msgstr ""
568
 
569
+ #: wpsc-merchants/paypal-pro.merchant.php:163
570
+ msgid ""
571
+ "There is a problem with your PayPal account configuration, please contact "
572
+ "PayPal for further information."
573
  msgstr ""
574
 
575
+ #: wpsc-merchants/paypal-pro.merchant.php:327
576
+ msgid "API Username:"
577
  msgstr ""
578
 
579
+ #: wpsc-merchants/paypal-pro.merchant.php:335
580
+ msgid "API Password:"
581
  msgstr ""
582
 
583
+ #: wpsc-merchants/paypal-pro.merchant.php:343
584
+ msgid "API Signature:"
585
  msgstr ""
586
 
587
+ #: wpsc-merchants/paypal-pro.merchant.php:351
588
+ msgid "Test Mode Enabled:"
 
 
589
  msgstr ""
590
 
591
+ #: wpsc-merchants/paypal-pro.merchant.php:375
592
+ msgid "Credit Card Number *"
593
  msgstr ""
594
 
595
+ #: wpsc-merchants/paypal-pro.merchant.php:381
596
+ msgid "Credit Card Expiry *"
597
  msgstr ""
598
 
599
+ #: wpsc-merchants/paypal-pro.merchant.php:404
600
+ msgid "CVV *"
601
  msgstr ""
602
 
603
+ #: wpsc-merchants/paypal-pro.merchant.php:409
604
+ msgid "Card Type *"
605
  msgstr ""
606
 
607
+ #: wpsc-merchants/paypal-pro.merchant.php:412
608
+ msgid "Visa"
609
  msgstr ""
610
 
611
+ #: wpsc-merchants/paypal-pro.merchant.php:413
612
+ msgid "MasterCard"
613
  msgstr ""
614
 
615
+ #: wpsc-merchants/paypal-pro.merchant.php:414
616
+ msgid "Discover"
617
  msgstr ""
618
 
619
+ #: wpsc-merchants/paypal-pro.merchant.php:415
620
+ msgid "Amex"
 
621
  msgstr ""
622
 
623
+ #: wpsc-merchants/testmode.merchant.php:46
624
  msgid ""
625
+ "Enter the payment instructions that you wish to display to your customers "
626
+ "when they make a purchase"
 
627
  msgstr ""
628
 
629
+ #: wpsc-merchants/testmode.merchant.php:48
630
+ msgid ""
631
+ "For example, this is where you the Shop Owner might enter your bank account "
632
+ "details or address so that your customer can make their manual payment."
633
  msgstr ""
634
 
635
+ #: wpsc-admin/admin.php:159
636
+ msgid "Store Sales"
637
  msgstr ""
638
 
639
+ #: wpsc-admin/admin.php:162
640
+ msgid "Update Store"
641
  msgstr ""
642
 
643
+ #: wpsc-admin/admin.php:162
644
+ msgid "Store Update"
645
  msgstr ""
646
 
647
+ #: wpsc-admin/admin.php:164
648
+ msgid "Store Upgrades"
649
  msgstr ""
650
 
651
+ #: wpsc-admin/admin.php:169 wpsc-admin/display-coupons.php:139
652
+ msgid "Coupons"
653
  msgstr ""
654
 
655
+ #: wpsc-admin/admin.php:172 wpsc-admin/display-options-settings.page.php:16
656
+ msgid "Store Settings"
657
  msgstr ""
658
 
659
+ #: wpsc-admin/admin.php:172
660
+ msgid "Store"
661
  msgstr ""
662
 
663
+ #: wpsc-admin/admin.php:177
664
+ msgid "Store Debug"
665
  msgstr ""
666
 
667
+ #: wpsc-admin/admin.php:181
668
+ msgid "For More Information"
 
 
669
  msgstr ""
670
 
671
+ #: wpsc-admin/admin.php:183
672
+ msgid ""
673
+ "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
674
+ "store/sales/'>About the Sales Page</a>"
675
  msgstr ""
676
 
677
+ #: wpsc-admin/admin.php:184
678
+ msgid ""
679
+ "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
680
+ "store/products'>About the Products Page</a>"
681
  msgstr ""
682
 
683
+ #: wpsc-admin/admin.php:185
684
+ msgid ""
685
+ "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
686
+ "store/categories/'>About the Categories Page</a>"
687
  msgstr ""
688
 
689
+ #: wpsc-admin/admin.php:186
690
  msgid ""
691
+ "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
692
+ "store/variations/'>About the Variations Page</a>"
 
 
 
 
693
  msgstr ""
694
 
695
+ #: wpsc-admin/admin.php:187
696
+ msgid ""
697
+ "<a target='_blank' href='http://getshopped.org/resources/docs/store-settings/"
698
+ "general/'>General Settings</a><br /> <a target='_blank' href='http://"
699
+ "getshopped.org/resources/docs/store-settings/checkout/'>Checkout Options</a> "
700
+ "<br />"
701
  msgstr ""
702
 
703
+ #: wpsc-admin/admin.php:188
704
+ msgid ""
705
+ "<a target='_blank' href='http://getshopped.org/resources/docs/building-your-"
706
+ "store/marketing'>Marketing Options</a><br />"
707
  msgstr ""
708
 
709
+ #: wpsc-admin/admin.php:220
710
+ msgid "Product Tracking Email"
711
  msgstr ""
712
 
713
+ #: wpsc-admin/admin.php:221
714
+ msgid ""
715
+ "Track & Trace means you may track the progress of your parcel with our "
716
+ "online parcel tracker, just login to our website and enter the following "
717
+ "Tracking ID to view the status of your order.\n"
718
+ "\n"
719
+ "Tracking ID: %trackid%\n"
720
  msgstr ""
721
 
722
+ #: wpsc-admin/admin.php:276 wpsc-admin/admin.php:362
723
+ msgid ""
724
+ "Unsaved changes have been detected. Click OK to lose these changes and "
725
+ "continue."
726
  msgstr ""
727
 
728
+ #: wpsc-admin/admin.php:302
729
+ msgid "Variations"
730
  msgstr ""
731
 
732
+ #: wpsc-admin/admin.php:303
733
+ msgid "Off Site Product link"
734
  msgstr ""
735
 
736
+ #: wpsc-admin/admin.php:310
737
+ msgid "Price Control"
 
738
  msgstr ""
739
 
740
+ #: wpsc-admin/admin.php:311
741
+ msgid "Stock Control"
 
 
742
  msgstr ""
743
 
744
+ #: wpsc-admin/admin.php:312 wpsc-admin/display-sales-logs.php:222
745
+ msgid "Taxes"
746
  msgstr ""
747
 
748
+ #: wpsc-admin/admin.php:313 wpsc-admin/includes/settings-pages/import.php:80
749
+ msgid "Additional Description"
750
  msgstr ""
751
 
752
+ #: wpsc-admin/admin.php:314
753
+ msgid "Product Download"
754
  msgstr ""
755
 
756
+ #: wpsc-admin/admin.php:315
757
+ msgid "Product Images"
758
  msgstr ""
759
 
760
+ #: wpsc-admin/admin.php:316 wpsc-admin/admin-form-functions.php:374
761
+ #: wpsc-admin/display-sales-logs.php:139 wpsc-admin/display-sales-logs.php:229
762
+ #: wpsc-theme/wpsc-cart_widget.php:38 wpsc-theme/wpsc-grid_view.php:93
763
+ #: wpsc-theme/wpsc-products_page.php:185
764
+ #: wpsc-theme/wpsc-single_product.php:151
765
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:488
766
+ msgid "Shipping"
767
  msgstr ""
768
 
769
+ #: wpsc-admin/admin.php:317 wpsc-admin/includes/save-data.functions.php:141
770
+ #: wpsc-admin/includes/save-data.functions.php:348
771
+ msgid "Advanced Settings"
772
  msgstr ""
773
 
774
+ #: wpsc-admin/admin.php:392
775
+ #: wpsc-admin/includes/settings-pages/checkout.php:190
776
+ msgid "Select a Unique Name"
777
  msgstr ""
778
 
779
+ #: wpsc-admin/admin.php:417
780
+ msgid "Text"
781
  msgstr ""
782
 
783
+ #: wpsc-admin/admin.php:418 wpsc-admin/admin-form-functions.php:340
784
+ #: wpsc-core/wpsc-installer.php:752
785
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:73
786
+ msgid "Email"
787
  msgstr ""
788
 
789
+ #: wpsc-admin/admin.php:419 wpsc-core/wpsc-installer.php:750
790
+ #: wpsc-core/wpsc-installer.php:759
791
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:90
792
+ msgid "Country"
793
  msgstr ""
794
 
795
+ #: wpsc-admin/admin.php:420
796
+ msgid "Textarea"
797
  msgstr ""
798
 
799
+ #: wpsc-admin/admin.php:421
800
+ msgid "Heading"
801
  msgstr ""
802
 
803
+ #: wpsc-admin/admin.php:422
804
+ msgid "Coupon"
805
  msgstr ""
806
 
807
+ #: wpsc-admin/admin.php:427
808
+ msgid "Label"
809
  msgstr ""
810
 
811
+ #: wpsc-admin/admin.php:428
812
+ msgid "Label Description"
 
813
  msgstr ""
814
 
815
+ #: wpsc-admin/admin.php:429
816
+ msgid "Item Number"
 
817
  msgstr ""
818
 
819
+ #: wpsc-admin/admin.php:430
820
+ msgid "Life Number"
821
  msgstr ""
822
 
823
+ #: wpsc-admin/admin.php:431
824
+ msgid "Product Code"
825
  msgstr ""
826
 
827
+ #: wpsc-admin/admin.php:432
828
+ msgid "PDF"
829
  msgstr ""
830
 
831
+ #: wpsc-admin/admin.php:492 wpsc-admin/admin.php:912
832
+ msgid "Current Month"
833
  msgstr ""
834
 
835
+ #: wpsc-admin/admin.php:505 wpsc-admin/admin.php:532
836
+ msgctxt "the total value of sales in dashboard widget"
837
+ msgid "Sales"
 
 
838
  msgstr ""
839
 
840
+ #: wpsc-admin/admin.php:511 wpsc-admin/admin.php:538
841
+ #: wpsc-admin/admin-form-functions.php:264
842
+ msgid "Order"
843
+ msgid_plural "Orders"
844
+ msgstr[0] ""
845
+ msgstr[1] ""
846
+
847
+ #: wpsc-admin/admin.php:520 wpsc-admin/admin.php:549
848
+ msgid "Avg Order"
849
  msgstr ""
850
 
851
+ #: wpsc-admin/admin.php:528
852
+ msgid "Total Income"
 
 
 
853
  msgstr ""
854
 
855
+ #: wpsc-admin/admin.php:573
856
+ msgid "Getshopped News"
857
  msgstr ""
858
 
859
+ #: wpsc-admin/admin.php:574
860
+ msgid "Sales Summary"
 
 
 
 
861
  msgstr ""
862
 
863
+ #: wpsc-admin/admin.php:575
864
+ msgid "Sales by Quarter"
865
  msgstr ""
866
 
867
+ #: wpsc-admin/admin.php:576
868
+ msgid "Sales by Month"
 
869
  msgstr ""
870
 
871
+ #: wpsc-admin/admin.php:634
872
+ msgid "Financial Year End"
873
  msgstr ""
874
 
875
+ #: wpsc-admin/admin.php:691 wpsc-admin/admin.php:793
876
+ #: wpsc-admin/admin-form-functions.php:200
877
+ msgid "At a Glance"
878
  msgstr ""
879
 
880
+ #: wpsc-admin/admin.php:692
881
+ msgid "Revenue"
882
  msgstr ""
883
 
884
+ #: wpsc-admin/admin.php:790
885
+ msgid "Last four months of sales on a per product basis:"
 
 
886
  msgstr ""
887
 
888
+ #: wpsc-admin/admin.php:862
889
+ msgid "Error: you don't have required permissions to edit this product"
890
  msgstr ""
891
 
892
+ #: wpsc-admin/admin.php:898 wpsc-admin/admin.php:900
893
+ #: wpsc-admin/ajax-and-init.php:342 wpsc-admin/includes/products.php:282
894
+ #: wpsc-admin/includes/products.php:325
895
+ #: wpsc-admin/includes/product-functions.php:12
896
+ #: wpsc-admin/includes/product-functions.php:59
897
+ #: wpsc-admin/includes/display-items-functions.php:1207
898
+ #: wpsc-admin/display-items.page.php:133 wpsc-admin/display-items.page.php:177
899
+ #: wpsc-admin/display-items.page.php:209
900
+ #: wpsc-includes/category.functions.php:56
901
+ #: wpsc-includes/category.functions.php:332
902
+ #: wpsc-includes/purchaselogs.class.php:326
903
+ #: wpsc-includes/purchaselogs.class.php:864
904
+ msgid "N/A"
905
  msgstr ""
906
 
907
+ #: wpsc-admin/admin.php:905
908
+ msgid "Error updating product"
909
  msgstr ""
910
 
911
+ #: wpsc-admin/admin.php:919
912
+ msgid ""
913
+ "Due to a problem in WordPress Permalinks and Custom Post Types, WP e-"
914
+ "Commerce encourages you to refresh your permalinks a second time. (for a "
915
+ "more geeky explanation visit <a href=\"%s\">trac</a>)"
916
  msgstr ""
917
 
918
+ #: wpsc-admin/display-upgrades.page.php:9
919
+ msgid "WP e-Commerce Upgrades"
920
  msgstr ""
921
 
922
+ #: wpsc-admin/display-upgrades.page.php:10
923
+ msgid ""
924
+ "Add more functionality to your e-Commerce site. Prices may be subject to "
925
+ "change."
926
  msgstr ""
927
 
928
+ #: wpsc-admin/display-upgrades.page.php:15
929
+ msgid "Pure Gold"
930
  msgstr ""
931
 
932
+ #: wpsc-admin/display-upgrades.page.php:22
933
+ #: wpsc-admin/includes/settings-pages/presentation.php:808
934
+ #: wpsc-admin/includes/settings-pages/presentation.php:813
935
+ msgid "DropShop"
936
  msgstr ""
937
 
938
+ #: wpsc-admin/display-upgrades.page.php:29
939
+ msgid "MP3 Player"
940
  msgstr ""
941
 
942
+ #: wpsc-admin/display-upgrades.page.php:36
943
+ msgid "Members Only Module"
944
  msgstr ""
945
 
946
+ #: wpsc-admin/display-upgrades.page.php:43
947
+ #: wpsc-core/js/tinymce3/window.php:102
948
+ msgid "Product Slider"
949
  msgstr ""
950
 
951
+ #: wpsc-admin/display-upgrades.page.php:50
952
+ msgid "NextGen Gallery Buy Now Buttons"
953
  msgstr ""
954
 
955
+ #: wpsc-admin/display-upgrades.page.php:56
956
+ msgid "Upgrades"
957
  msgstr ""
958
 
959
+ #: wpsc-admin/display-upgrades.page.php:58
960
+ msgid "Enter your API Username and API Key below."
 
 
961
  msgstr ""
962
 
963
+ #: wpsc-admin/display-upgrades.page.php:59
964
+ msgid "For more information visit our documentation page."
 
965
  msgstr ""
966
 
967
+ #: wpsc-admin/display-upgrades.page.php:73
968
+ msgid "You don't have any Upgrades yet!"
 
969
  msgstr ""
970
 
971
+ #: wpsc-admin/display-upgrades.page.php:77
972
+ #: wpsc-admin/display-upgrades.page.php:86
973
+ msgid "API Key Reset"
974
  msgstr ""
975
 
976
+ #: wpsc-admin/display-upgrades.page.php:80
977
+ msgid ""
978
+ "Enter your API name and key to release it from an old site that you no "
979
+ "longer use."
980
  msgstr ""
981
 
982
+ #: wpsc-admin/display-upgrades.page.php:88
983
+ msgid "Name:"
984
  msgstr ""
985
 
986
+ #: wpsc-admin/display-upgrades.page.php:92
987
+ msgid "API Key:"
988
  msgstr ""
989
 
990
+ #: wpsc-admin/display-upgrades.page.php:97
991
+ msgid "Reset API Key"
992
  msgstr ""
993
 
994
+ #: wpsc-admin/display-upgrades.page.php:150
995
+ msgid "Your API key has been Reset"
996
  msgstr ""
997
 
998
+ #: wpsc-admin/admin-form-functions.php:13 wpsc-admin/display-coupons.php:152
999
+ #: wpsc-admin/display-coupons.php:296 wpsc-admin/display-sales-logs.php:212
1000
+ msgid "Coupon Code"
1001
  msgstr ""
1002
 
1003
+ #: wpsc-admin/admin-form-functions.php:14 wpsc-admin/display-coupons.php:153
1004
+ #: wpsc-admin/display-coupons.php:297 wpsc-admin/display-sales-logs.php:215
1005
+ #: wpsc-theme/wpsc-shopping_cart_page.php:470
1006
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:242
1007
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:247
1008
+ msgid "Discount"
1009
  msgstr ""
1010
 
1011
+ #: wpsc-admin/admin-form-functions.php:15 wpsc-admin/display-coupons.php:154
1012
+ #: wpsc-admin/display-coupons.php:298
1013
+ msgid "Start"
1014
  msgstr ""
1015
 
1016
+ #: wpsc-admin/admin-form-functions.php:16 wpsc-admin/display-coupons.php:155
1017
+ #: wpsc-admin/display-coupons.php:299
1018
+ msgid "Expiry"
1019
  msgstr ""
1020
 
1021
+ #: wpsc-admin/admin-form-functions.php:17 wpsc-admin/display-coupons.php:157
1022
+ #: wpsc-admin/display-coupons.php:200
1023
+ msgid "Use Once"
1024
  msgstr ""
1025
 
1026
+ #: wpsc-admin/admin-form-functions.php:18 wpsc-admin/display-coupons.php:158
1027
+ #: wpsc-admin/display-coupons.php:190 wpsc-admin/display-coupons.php:300
1028
+ msgid "Active"
1029
  msgstr ""
1030
 
1031
+ #: wpsc-admin/admin-form-functions.php:19 wpsc-admin/display-coupons.php:159
1032
+ #: wpsc-admin/display-coupons.php:210 wpsc-admin/display-coupons.php:301
1033
+ msgid "Apply On All Products"
1034
  msgstr ""
1035
 
1036
+ #: wpsc-admin/admin-form-functions.php:33 wpsc-admin/display-coupons.php:172
1037
+ msgid "Free shipping"
1038
  msgstr ""
1039
 
1040
+ #: wpsc-admin/admin-form-functions.php:64
1041
+ msgid "Conditions"
1042
  msgstr ""
1043
 
1044
+ #: wpsc-admin/admin-form-functions.php:71
1045
+ msgid "Property"
1046
  msgstr ""
1047
 
1048
+ #: wpsc-admin/admin-form-functions.php:74
1049
+ msgid "Logic"
 
1050
  msgstr ""
1051
 
1052
+ #: wpsc-admin/admin-form-functions.php:77
1053
+ #: wpsc-admin/includes/display-items-functions.php:697
1054
+ msgid "Value"
1055
  msgstr ""
1056
 
1057
+ #: wpsc-admin/admin-form-functions.php:117
1058
+ msgid "Add Conditions"
1059
  msgstr ""
1060
 
1061
+ #: wpsc-admin/admin-form-functions.php:122 wpsc-admin/display-coupons.php:223
1062
+ msgid "Item name"
1063
  msgstr ""
1064
 
1065
+ #: wpsc-admin/admin-form-functions.php:123 wpsc-admin/display-coupons.php:224
1066
+ msgid "Item quantity"
1067
  msgstr ""
1068
 
1069
+ #: wpsc-admin/admin-form-functions.php:124 wpsc-admin/display-coupons.php:225
1070
+ msgid "Total quantity"
1071
  msgstr ""
1072
 
1073
+ #: wpsc-admin/admin-form-functions.php:125 wpsc-admin/display-coupons.php:226
1074
+ msgid "Subtotal amount"
1075
  msgstr ""
1076
 
1077
+ #: wpsc-admin/admin-form-functions.php:129 wpsc-admin/display-coupons.php:231
1078
+ msgid "Is equal to"
1079
  msgstr ""
1080
 
1081
+ #: wpsc-admin/admin-form-functions.php:130 wpsc-admin/display-coupons.php:232
1082
+ msgid "Is greater than"
1083
  msgstr ""
1084
 
1085
+ #: wpsc-admin/admin-form-functions.php:131 wpsc-admin/display-coupons.php:233
1086
+ msgid "Is less than"
1087
  msgstr ""
1088
 
1089
+ #: wpsc-admin/admin-form-functions.php:132 wpsc-admin/display-coupons.php:234
1090
+ msgid "Contains"
 
1091
  msgstr ""
1092
 
1093
+ #: wpsc-admin/admin-form-functions.php:133 wpsc-admin/display-coupons.php:235
1094
+ msgid "Does not contain"
 
1095
  msgstr ""
1096
 
1097
+ #: wpsc-admin/admin-form-functions.php:134 wpsc-admin/display-coupons.php:236
1098
+ msgid "Begins with"
1099
  msgstr ""
1100
 
1101
+ #: wpsc-admin/admin-form-functions.php:135 wpsc-admin/display-coupons.php:237
1102
+ msgid "Ends with"
1103
  msgstr ""
1104
 
1105
+ #: wpsc-admin/admin-form-functions.php:149
1106
+ msgid "Update Coupon"
1107
  msgstr ""
1108
 
1109
+ #: wpsc-admin/admin-form-functions.php:166
1110
+ msgid "Settings"
1111
  msgstr ""
1112
 
1113
+ #: wpsc-admin/admin-form-functions.php:170
1114
+ msgid "Shop Settings"
1115
  msgstr ""
1116
 
1117
+ #: wpsc-admin/admin-form-functions.php:171
1118
+ msgid "Money and Payment"
1119
  msgstr ""
1120
 
1121
+ #: wpsc-admin/admin-form-functions.php:172
1122
+ msgid "Checkout Page Settings"
1123
  msgstr ""
1124
 
1125
+ #: wpsc-admin/admin-form-functions.php:207
1126
+ msgctxt "dashboard widget"
1127
+ msgid "Product"
1128
+ msgid_plural "Products"
1129
+ msgstr[0] ""
1130
+ msgstr[1] ""
1131
 
1132
+ #: wpsc-admin/admin-form-functions.php:213
1133
+ msgctxt "dashboard widget"
1134
+ msgid "Sale"
1135
+ msgid_plural "Sales"
1136
+ msgstr[0] ""
1137
+ msgstr[1] ""
1138
 
1139
+ #: wpsc-admin/admin-form-functions.php:221
1140
+ msgctxt "dashboard widget"
1141
+ msgid "Category"
1142
+ msgid_plural "Categories"
1143
+ msgstr[0] ""
1144
+ msgstr[1] ""
1145
 
1146
+ #: wpsc-admin/admin-form-functions.php:227
1147
+ msgid "Pending sale"
1148
+ msgid_plural "Pending sales"
1149
+ msgstr[0] ""
1150
+ msgstr[1] ""
1151
+
1152
+ #: wpsc-admin/admin-form-functions.php:235
1153
+ msgctxt "dashboard widget"
1154
+ msgid "Variation"
1155
+ msgid_plural "Variations"
1156
+ msgstr[0] ""
1157
+ msgstr[1] ""
1158
+
1159
+ #: wpsc-admin/admin-form-functions.php:241
1160
+ msgid "Closed sale"
1161
+ msgid_plural "Closed sales"
1162
+ msgstr[0] ""
1163
+ msgstr[1] ""
1164
+
1165
+ #: wpsc-admin/admin-form-functions.php:263
1166
+ msgid "Packing Slip"
1167
  msgstr ""
1168
 
1169
+ #: wpsc-admin/admin-form-functions.php:287
1170
+ #: wpsc-admin/admin-form-functions.php:295 wpsc-core/wpsc-installer.php:749
1171
+ #: wpsc-core/wpsc-installer.php:758
1172
+ msgid "State"
1173
  msgstr ""
1174
 
1175
+ #: wpsc-admin/admin-form-functions.php:338 wpsc-core/wpsc-installer.php:747
1176
+ #: wpsc-core/wpsc-installer.php:756
1177
+ msgid "Address"
1178
  msgstr ""
1179
 
1180
+ #: wpsc-admin/admin-form-functions.php:339 wpsc-core/wpsc-installer.php:763
1181
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:86
1182
+ msgid "Phone"
1183
  msgstr ""
1184
 
1185
+ #: wpsc-admin/admin-form-functions.php:353
1186
+ msgid "Manual Payment"
1187
  msgstr ""
1188
 
1189
+ #: wpsc-admin/admin-form-functions.php:367
1190
+ #: wpsc-admin/display-sales-logs.php:137 wpsc-theme/wpsc-list_view.php:108
1191
+ #: wpsc-theme/wpsc-shopping_cart_page.php:19
1192
+ #: wpsc-theme/wpsc-products_page.php:148
1193
+ #: wpsc-theme/wpsc-single_product.php:119
1194
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:476
1195
+ #: wpsc-includes/display.functions.php:44
1196
+ msgid "Quantity"
1197
  msgstr ""
1198
 
1199
+ #: wpsc-admin/admin-form-functions.php:372 wpsc-admin/includes/products.php:78
1200
+ #: wpsc-admin/includes/settings-pages/import.php:81
1201
+ #: wpsc-admin/includes/settings-pages/presentation.php:583
1202
+ #: wpsc-admin/includes/display-items-functions.php:137
1203
+ #: wpsc-admin/includes/display-items-functions.php:162
1204
+ #: wpsc-admin/display-items.page.php:47 wpsc-admin/display-items.page.php:60
1205
+ #: wpsc-admin/display-items.page.php:76 wpsc-admin/display-sales-logs.php:138
1206
+ #: wpsc-theme/wpsc-cart_widget.php:14 wpsc-theme/wpsc-grid_view.php:91
1207
+ #: wpsc-theme/wpsc-user-log.php:104 wpsc-theme/wpsc-shopping_cart_page.php:20
1208
+ #: wpsc-theme/wpsc-products_page.php:174
1209
+ #: wpsc-theme/wpsc-single_product.php:142
1210
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:480
1211
+ msgid "Price"
1212
  msgstr ""
1213
 
1214
+ #: wpsc-admin/admin-form-functions.php:375
1215
+ #: wpsc-includes/checkout.class.php:145
1216
+ msgid "Tax"
1217
  msgstr ""
1218
 
1219
+ #: wpsc-admin/admin-form-functions.php:454
1220
+ msgid "This users cart was empty"
1221
  msgstr ""
1222
 
1223
+ #: wpsc-admin/ajax-and-init.php:158
1224
+ msgid ""
1225
+ "Sorry, for some reason, we couldn't duplicate this product because it could "
1226
+ "not be found in the database, check there for this ID: "
1227
  msgstr ""
1228
 
1229
+ #: wpsc-admin/ajax-and-init.php:555
1230
+ msgid "The administrator has unlocked your file"
1231
  msgstr ""
1232
 
1233
+ #: wpsc-admin/ajax-and-init.php:555
1234
+ msgid ""
1235
+ "Dear CustomerWe are pleased to advise you that your order has been updated "
1236
+ "and your downloads are now active.Please download your purchase using the "
1237
+ "links provided below.[download_links]Thank you for your custom."
1238
  msgstr ""
1239
 
1240
+ #: wpsc-admin/ajax-and-init.php:1101
1241
+ msgid "Choose a downloadable file for this product:"
1242
  msgstr ""
1243
 
1244
+ #: wpsc-admin/ajax-and-init.php:1638 wpsc-admin/ajax-and-init.php:1653
1245
+ msgid "Variation Price"
1246
  msgstr ""
1247
 
1248
+ #: wpsc-admin/ajax-and-init.php:1640 wpsc-admin/ajax-and-init.php:1657
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1249
  msgid ""
1250
+ "You can list a default price here for this variation. You can list a "
1251
+ "regular price (18.99), differential price (+1.99 / -2) or even a percentage-"
1252
+ "based price (+50% / -25%)."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1253
  msgstr ""
1254
 
1255
+ #: wpsc-admin/ajax-and-init.php:1677
1256
+ msgid "Apply to current variations?"
1257
  msgstr ""
1258
 
1259
+ #: wpsc-admin/ajax-and-init.php:1679
1260
  msgid ""
1261
+ "By checking this box, the price rule you implement above will be applied to "
1262
+ "all variations that currently exist. If you leave it unchecked, it will "
1263
+ "only apply to products that use this variation created or edited from now "
1264
+ "on. Take note, this will apply this rule to <strong>every</strong> product "
1265
+ "using this variation. If you need to override it for any reason on a "
1266
+ "specific product, simply go to that product and change the price."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1267
  msgstr ""
1268
 
1269
+ #: wpsc-admin/display-options-settings.page.php:109
1270
+ msgctxt "General settings tab in Settings->Store page"
1271
+ msgid "General"
 
 
 
 
1272
  msgstr ""
1273
 
1274
+ #: wpsc-admin/display-options-settings.page.php:110
1275
+ msgctxt "Presentation settings tab in Settings->Store page"
1276
+ msgid "Presentation"
1277
  msgstr ""
1278
 
1279
+ #: wpsc-admin/display-options-settings.page.php:111
1280
+ msgctxt "Admin settings tab in Settings->Store page"
1281
+ msgid "Admin"
1282
  msgstr ""
1283
 
1284
+ #: wpsc-admin/display-options-settings.page.php:112
1285
+ msgctxt "Taxes settings tab in Settings->Store page"
1286
+ msgid "Taxes"
1287
  msgstr ""
1288
 
1289
+ #: wpsc-admin/display-options-settings.page.php:113
1290
+ msgctxt "Shipping settings tab in Settings->Store page"
1291
+ msgid "Shipping"
 
 
1292
  msgstr ""
1293
 
1294
+ #: wpsc-admin/display-options-settings.page.php:114
1295
+ msgctxt "Payments settings tab in Settings->Store page"
1296
+ msgid "Payments"
1297
  msgstr ""
1298
 
1299
+ #: wpsc-admin/display-options-settings.page.php:115
1300
+ msgctxt "Checkout settings tab in Settings->Store page"
1301
+ msgid "Checkout"
1302
  msgstr ""
1303
 
1304
+ #: wpsc-admin/display-options-settings.page.php:116
1305
+ msgctxt "Marketing settings tab in Settings->Store page"
1306
+ msgid "Marketing"
1307
  msgstr ""
1308
 
1309
+ #: wpsc-admin/display-options-settings.page.php:117
1310
+ msgctxt "Import settings tab in Settings->Store page"
1311
+ msgid "Import"
1312
  msgstr ""
1313
 
1314
+ #: wpsc-admin/display-options-settings.page.php:195
1315
+ msgid "To configure a shipping module select one on the left."
 
1316
  msgstr ""
1317
 
1318
+ #: wpsc-admin/display-options-settings.page.php:209
1319
+ #: wpsc-admin/display-options-settings.page.php:262
1320
+ msgid "To configure a payment module select one on the left."
1321
  msgstr ""
1322
 
1323
+ #: wpsc-admin/display-options-settings.page.php:224
1324
+ msgid "Display Name"
1325
  msgstr ""
1326
 
1327
+ #: wpsc-admin/display-options-settings.page.php:254
1328
+ msgid "The text that people see when making a purchase"
1329
  msgstr ""
1330
 
1331
+ #: wpsc-admin/display-options-settings.page.php:276
1332
+ msgid "%s Setting options updated."
1333
+ msgid_plural " %s Settings options updated."
1334
+ msgstr[0] ""
1335
+ msgstr[1] ""
1336
 
1337
+ #: wpsc-admin/display-options-settings.page.php:281
1338
+ msgid "%s Setting option deleted."
1339
+ msgid_plural "%s Setting option deleted."
1340
+ msgstr[0] ""
1341
+ msgstr[1] ""
1342
 
1343
+ #: wpsc-admin/display-options-settings.page.php:286
1344
+ msgid "%s Shipping option updated."
1345
+ msgid_plural "%s Shipping option updated."
1346
+ msgstr[0] ""
1347
+ msgstr[1] ""
1348
 
1349
+ #: wpsc-admin/display-options-settings.page.php:291
1350
+ msgid "%s Checkout field added."
1351
+ msgid_plural "%s Checkout fields added."
1352
+ msgstr[0] ""
1353
+ msgstr[1] ""
1354
 
1355
+ #: wpsc-admin/display-options-settings.page.php:296
1356
+ msgid "Thumbnails regenerated."
1357
  msgstr ""
1358
 
1359
+ #: wpsc-admin/display-options-settings.page.php:303
1360
+ msgid "Settings successfully updated."
1361
  msgstr ""
1362
 
1363
+ #: wpsc-admin/display-coupons.php:32
1364
+ msgid "Thanks, the coupon has been added."
1365
  msgstr ""
1366
 
1367
+ #: wpsc-admin/display-coupons.php:141 wpsc-includes/purchaselogs.class.php:21
1368
+ msgid "Add New"
1369
  msgstr ""
1370
 
1371
+ #: wpsc-admin/display-coupons.php:192
1372
+ msgid "Activate coupon on creation."
1373
  msgstr ""
1374
 
1375
+ #: wpsc-admin/display-coupons.php:202
1376
+ msgid "Deactivate coupon after it has been used."
1377
  msgstr ""
1378
 
1379
+ #: wpsc-admin/display-coupons.php:212
1380
+ msgid "This coupon affects each product at checkout."
 
 
 
 
 
1381
  msgstr ""
1382
 
1383
+ #: wpsc-admin/display-coupons.php:238
1384
+ msgid "In Category"
 
1385
  msgstr ""
1386
 
1387
+ #: wpsc-admin/display-coupons.php:283
1388
+ msgid "Add New Condition"
1389
  msgstr ""
1390
 
1391
+ #: wpsc-admin/display-coupons.php:302 wpsc-admin/display-coupons.php:382
1392
+ #: wpsc-admin/includes/products.php:166 wpsc-admin/includes/products.php:377
1393
+ #: wpsc-admin/includes/settings-pages/shipping.php:236
1394
+ #: wpsc-admin/includes/settings-pages/gateway.php:94
1395
+ #: wpsc-theme/wpsc-products_page.php:211
1396
+ #: wpsc-includes/product-template.php:649
1397
+ msgid "Edit"
1398
  msgstr ""
1399
 
1400
+ #: wpsc-admin/display-coupons.php:342
1401
+ msgid "Free Shipping"
 
1402
  msgstr ""
1403
 
1404
+ #: wpsc-admin/display-coupons.php:398
1405
+ msgid ""
1406
+ "<strong>Note:</strong> Due to a current PayPal limitation, when a purchase "
1407
+ "is made using a coupon we cannot send a detailed list of items through for "
1408
+ "processing. Instead we send the total amount of the purchase so the customer "
1409
+ "will see your shop name and the total within PayPal."
1410
  msgstr ""
1411
 
1412
+ #: wpsc-admin/includes/products.php:69
1413
+ msgid "(no title)"
1414
  msgstr ""
1415
 
1416
+ #: wpsc-admin/includes/products.php:78
1417
+ #: wpsc-admin/includes/settings-pages/import.php:83
1418
+ #: wpsc-admin/includes/display-items-functions.php:569
1419
+ #: wpsc-admin/display-items.page.php:45 wpsc-admin/display-items.page.php:74
1420
+ msgid "Weight"
1421
  msgstr ""
1422
 
1423
+ #: wpsc-admin/includes/products.php:78 wpsc-admin/display-items.page.php:46
1424
+ #: wpsc-admin/display-items.page.php:59 wpsc-admin/display-items.page.php:75
1425
+ msgid "Stock"
1426
  msgstr ""
1427
 
1428
+ #: wpsc-admin/includes/products.php:78
1429
+ #: wpsc-admin/includes/display-items-functions.php:142
1430
+ #: wpsc-admin/display-items.page.php:48 wpsc-admin/display-items.page.php:61
1431
+ #: wpsc-admin/display-items.page.php:77
1432
+ msgid "Sale Price"
1433
  msgstr ""
1434
 
1435
+ #: wpsc-admin/includes/products.php:78
1436
+ #: wpsc-admin/includes/settings-pages/import.php:82
1437
+ #: wpsc-admin/display-items.page.php:49 wpsc-admin/display-items.page.php:62
1438
+ #: wpsc-admin/display-items.page.php:78 wpsc-admin/display-sales-logs.php:136
1439
+ msgid "SKU"
1440
  msgstr ""
1441
 
1442
+ #: wpsc-admin/includes/products.php:89
1443
+ msgid "Unpublished"
1444
  msgstr ""
1445
 
1446
+ #: wpsc-admin/includes/products.php:92
1447
+ msgid "Y/m/d g:i:s A"
1448
  msgstr ""
1449
 
1450
+ #: wpsc-admin/includes/products.php:99
1451
+ msgid "%s ago"
1452
  msgstr ""
1453
 
1454
+ #: wpsc-admin/includes/products.php:101
1455
+ msgid "Y/m/d"
1456
  msgstr ""
1457
 
1458
+ #: wpsc-admin/includes/products.php:111
1459
+ msgid "Published"
1460
  msgstr ""
1461
 
1462
+ #: wpsc-admin/includes/products.php:114
1463
+ msgid "Missed schedule"
1464
  msgstr ""
1465
 
1466
+ #: wpsc-admin/includes/products.php:116
1467
+ msgid "Scheduled"
1468
  msgstr ""
1469
 
1470
+ #: wpsc-admin/includes/products.php:118
1471
+ msgid "Last Modified"
1472
  msgstr ""
1473
 
1474
+ #: wpsc-admin/includes/products.php:131
1475
+ msgid "Edit &#8220;%s&#8221;"
1476
  msgstr ""
1477
 
1478
+ #: wpsc-admin/includes/products.php:135 wpsc-core/js/tinymce3/window.php:203
1479
+ msgid "Cancel"
1480
  msgstr ""
1481
 
1482
+ #: wpsc-admin/includes/products.php:166
1483
+ msgid "Edit this product"
1484
  msgstr ""
1485
 
1486
+ #: wpsc-admin/includes/products.php:167
1487
+ msgid "Quick Edit"
1488
  msgstr ""
1489
 
1490
+ #: wpsc-admin/includes/products.php:172
1491
+ msgid "Preview &#8220;%s&#8221;"
1492
  msgstr ""
1493
 
1494
+ #: wpsc-admin/includes/products.php:172
1495
+ msgid "Preview"
1496
  msgstr ""
1497
 
1498
+ #: wpsc-admin/includes/products.php:175
1499
+ msgid "View &#8220;%s&#8221;"
 
 
 
 
 
 
1500
  msgstr ""
1501
 
1502
+ #: wpsc-admin/includes/products.php:175 wpsc-admin/includes/products.php:369
1503
+ msgid "View"
 
1504
  msgstr ""
1505
 
1506
+ #: wpsc-admin/includes/products.php:298 wpsc-admin/display-items.page.php:222
1507
+ msgid "Uncategorized"
1508
  msgstr ""
1509
 
1510
+ #: wpsc-admin/includes/products.php:316
1511
+ msgid "No Tags"
 
1512
  msgstr ""
1513
 
1514
+ #: wpsc-admin/includes/products.php:347
1515
+ msgid "%s pending"
1516
  msgstr ""
1517
 
1518
+ #. translators: comment count link
1519
+ #: wpsc-admin/includes/products.php:350
1520
+ msgctxt "comment count"
1521
+ msgid "0"
1522
  msgstr ""
1523
 
1524
+ #. translators: comment count link
1525
+ #: wpsc-admin/includes/products.php:350
1526
+ msgctxt "comment count"
1527
+ msgid "1"
1528
  msgstr ""
1529
 
1530
+ #. translators: comment count link: % will be substituted by comment count
1531
+ #: wpsc-admin/includes/products.php:350
1532
+ msgctxt "comment count"
1533
+ msgid "%"
1534
  msgstr ""
1535
 
1536
+ #: wpsc-admin/includes/product-functions.php:438
1537
+ msgid "Could not update product in the database"
 
 
1538
  msgstr ""
1539
 
1540
+ #: wpsc-admin/includes/product-functions.php:455
1541
+ msgid "Could not insert product into the database"
 
 
 
 
 
1542
  msgstr ""
1543
 
1544
+ #: wpsc-admin/includes/purchlogs_upgrade.php:35
1545
+ msgid "Select an Option"
 
 
 
 
 
1546
  msgstr ""
1547
 
1548
+ #: wpsc-admin/includes/purchlogs_upgrade.php:36
1549
+ msgid "Billing First Name"
 
 
 
1550
  msgstr ""
1551
 
1552
+ #: wpsc-admin/includes/purchlogs_upgrade.php:37
1553
+ msgid "Billing Last Name"
1554
  msgstr ""
1555
 
1556
+ #: wpsc-admin/includes/purchlogs_upgrade.php:38
1557
+ msgid "Billing Address"
 
 
 
 
 
 
1558
  msgstr ""
1559
 
1560
+ #: wpsc-admin/includes/purchlogs_upgrade.php:39
1561
+ msgid "Billing City"
 
 
 
 
 
 
1562
  msgstr ""
1563
 
1564
+ #: wpsc-admin/includes/purchlogs_upgrade.php:40
1565
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:328
1566
+ msgid "Billing State"
1567
  msgstr ""
1568
 
1569
+ #: wpsc-admin/includes/purchlogs_upgrade.php:41
1570
+ msgid "Billing Country"
 
 
1571
  msgstr ""
1572
 
1573
+ #: wpsc-admin/includes/purchlogs_upgrade.php:42
1574
+ msgid "Billing Email"
 
 
 
 
 
1575
  msgstr ""
1576
 
1577
+ #: wpsc-admin/includes/purchlogs_upgrade.php:43
1578
+ msgid "Billing Phone"
 
1579
  msgstr ""
1580
 
1581
+ #: wpsc-admin/includes/purchlogs_upgrade.php:44
1582
+ msgid "Billing Post Code"
1583
  msgstr ""
1584
 
1585
+ #: wpsc-admin/includes/purchlogs_upgrade.php:45
1586
+ msgid "Shipping First Name"
 
 
1587
  msgstr ""
1588
 
1589
+ #: wpsc-admin/includes/purchlogs_upgrade.php:46
1590
+ msgid "Shipping Last Name"
 
1591
  msgstr ""
1592
 
1593
+ #: wpsc-admin/includes/purchlogs_upgrade.php:47
1594
+ #: wpsc-admin/display-sales-logs.php:154 wpsc-core/wpsc-installer.php:753
1595
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:445
1596
+ msgid "Shipping Address"
1597
  msgstr ""
1598
 
1599
+ #: wpsc-admin/includes/purchlogs_upgrade.php:48
1600
+ msgid "Shipping City"
 
 
1601
  msgstr ""
1602
 
1603
+ #: wpsc-admin/includes/purchlogs_upgrade.php:49
1604
+ msgid "Shipping State"
1605
  msgstr ""
1606
 
1607
+ #: wpsc-admin/includes/purchlogs_upgrade.php:50
1608
+ msgid "Shipping Country"
1609
  msgstr ""
1610
 
1611
+ #: wpsc-admin/includes/purchlogs_upgrade.php:51
1612
+ msgid "Shipping Post Code"
1613
  msgstr ""
1614
 
1615
+ #: wpsc-admin/includes/purchlogs_upgrade.php:62
1616
+ msgid "Check Out Form Fields updated."
 
 
1617
  msgstr ""
1618
 
1619
+ #: wpsc-admin/includes/purchlogs_upgrade.php:68
1620
+ msgid "Sales Upgrade Fix"
1621
  msgstr ""
1622
 
1623
+ #: wpsc-admin/includes/purchlogs_upgrade.php:69
1624
  msgid ""
1625
+ "Upgrading to WP e-Commerce 3.7 and later requires you to run this fix once."
1626
+ "The following Boxes corresponds to the form fields in your current checkout "
1627
+ "page. All you have to do is select from the drop-down menu box what each of "
1628
+ "the following fields represent. Sorry for any inconvenience caused, but "
1629
+ "we're sure you'll agree that the new purchase logs are worth this minor "
1630
+ "hassle."
1631
  msgstr ""
1632
 
1633
+ #: wpsc-admin/includes/purchlogs_upgrade.php:100
1634
+ #: wpsc-admin/display-sales-logs.php:298
1635
+ msgid "Apply"
 
 
 
1636
  msgstr ""
1637
 
1638
+ #: wpsc-admin/includes/tax_and_shipping.php:16
1639
+ msgid "GST/Tax Rate"
1640
  msgstr ""
1641
 
1642
+ #: wpsc-admin/includes/settings-pages/admin.php:7
1643
+ msgid "Admin Settings"
1644
  msgstr ""
1645
 
1646
+ #: wpsc-admin/includes/settings-pages/admin.php:13
1647
+ msgid "Max downloads per file"
1648
  msgstr ""
1649
 
1650
+ #: wpsc-admin/includes/settings-pages/admin.php:35
1651
+ msgid "Lock downloads to IP address"
1652
  msgstr ""
1653
 
1654
+ #: wpsc-admin/includes/settings-pages/admin.php:61
1655
+ msgid "Check MIME types on file uploads"
1656
  msgstr ""
1657
 
1658
+ #: wpsc-admin/includes/settings-pages/admin.php:68
1659
+ msgid ""
1660
+ "Warning: Disabling this exposes your site to greater possibility of "
1661
+ "malicious files being uploaded, we reccomend installing the Fileinfo "
1662
+ "extention for PHP rather than disabling this."
1663
  msgstr ""
1664
 
1665
+ #: wpsc-admin/includes/settings-pages/admin.php:76
1666
+ msgid "Purchase Log Email"
 
 
1667
  msgstr ""
1668
 
1669
+ #: wpsc-admin/includes/settings-pages/admin.php:84
1670
+ msgid "Purchase Receipt - Reply Address"
1671
  msgstr ""
1672
 
1673
+ #: wpsc-admin/includes/settings-pages/admin.php:93
1674
+ msgid "Purchase Receipt - Reply Name"
 
 
 
1675
  msgstr ""
1676
 
1677
+ #: wpsc-admin/includes/settings-pages/admin.php:102
1678
+ msgid "Terms and Conditions"
 
1679
  msgstr ""
1680
 
1681
+ #: wpsc-admin/includes/settings-pages/admin.php:110
1682
+ msgid "Custom Messages"
1683
  msgstr ""
1684
 
1685
+ #: wpsc-admin/includes/settings-pages/admin.php:113
1686
+ msgid "Tags can be used"
 
 
 
 
 
 
1687
  msgstr ""
1688
 
1689
+ #: wpsc-admin/includes/settings-pages/admin.php:118
1690
  msgid ""
1691
+ "Note: The purchase receipt is the message e-mailed to users after purchasing "
1692
+ "products from your shop."
1693
  msgstr ""
1694
 
1695
+ #: wpsc-admin/includes/settings-pages/admin.php:123
1696
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:306
1697
+ msgid "Purchase Receipt"
1698
+ msgstr ""
1699
+
1700
+ #: wpsc-admin/includes/settings-pages/admin.php:129
1701
  msgid ""
1702
+ "Note: The Admin Report is the email sent to the e-mail address set above as "
1703
+ "soon as someone successfully buys a product."
1704
  msgstr ""
1705
 
1706
+ #: wpsc-admin/includes/settings-pages/admin.php:134
1707
+ msgid "Admin Report"
1708
  msgstr ""
1709
 
1710
+ #: wpsc-admin/includes/settings-pages/admin.php:139
1711
+ msgid "Track and Trace settings"
 
 
 
1712
  msgstr ""
1713
 
1714
+ #: wpsc-admin/includes/settings-pages/admin.php:144
1715
+ msgid ""
1716
+ "Note: The Tracking Subject, is the subject for The Tracking Message email. "
1717
+ "The Tracking Message is the message e-mailed to users when you click 'Email "
1718
+ "buyer' on the sales log. This option is only available for purchases with "
1719
+ "the status of 'Job Dispatched'. Tags you can use in the email message "
1720
+ "section are %trackid% and %shop_name%"
1721
  msgstr ""
1722
 
1723
+ #: wpsc-admin/includes/settings-pages/admin.php:149
1724
+ msgid "Tracking Email Subject"
1725
  msgstr ""
1726
 
1727
+ #: wpsc-admin/includes/settings-pages/admin.php:153
1728
+ msgid "Tracking Email Message"
1729
  msgstr ""
1730
 
1731
+ #: wpsc-admin/includes/settings-pages/taxes.php:12
1732
+ msgid "Tax Settings"
1733
  msgstr ""
1734
 
1735
+ #: wpsc-admin/includes/settings-pages/taxes.php:18
1736
+ msgid "Turn tax on"
1737
  msgstr ""
1738
 
1739
+ #: wpsc-admin/includes/settings-pages/taxes.php:26
1740
+ msgid "Product prices are tax exclusive - add tax to the price during checkout"
 
 
1741
  msgstr ""
1742
 
1743
+ #: wpsc-admin/includes/settings-pages/taxes.php:34
1744
+ msgid ""
1745
+ "Product prices are tax inclusive - during checkout the total price doesn't "
1746
+ "increase but tax is shown as a line item"
1747
  msgstr ""
1748
 
1749
+ #: wpsc-admin/includes/settings-pages/taxes.php:37
1750
+ msgid "Product Specific Tax"
1751
  msgstr ""
1752
 
1753
+ #: wpsc-admin/includes/settings-pages/taxes.php:43
1754
+ msgid ""
1755
+ "Add per product tax to tax percentage if product has a specific tax rate"
1756
  msgstr ""
1757
 
1758
+ #: wpsc-admin/includes/settings-pages/taxes.php:51
1759
+ msgid "Replace tax percentage with product specific tax rate"
1760
  msgstr ""
1761
 
1762
+ #: wpsc-admin/includes/settings-pages/taxes.php:55
1763
+ msgid "Tax Logic"
1764
  msgstr ""
1765
 
1766
+ #: wpsc-admin/includes/settings-pages/taxes.php:61
1767
+ msgid "Apply tax when Billing and Shipping Country is the same as Tax Rate"
1768
  msgstr ""
1769
 
1770
+ #: wpsc-admin/includes/settings-pages/taxes.php:69
1771
+ msgid "Apply tax to Billing Address"
1772
  msgstr ""
1773
 
1774
+ #: wpsc-admin/includes/settings-pages/taxes.php:77
1775
+ msgid "Apply tax to Shipping Address"
1776
  msgstr ""
1777
 
1778
+ #: wpsc-admin/includes/settings-pages/taxes.php:87
1779
+ msgid "Apply tax when Billing Country is the same as Tax Rate"
1780
  msgstr ""
1781
 
1782
+ #: wpsc-admin/includes/settings-pages/taxes.php:95
1783
+ msgid "Apply tax when Shipping Country is the same as Tax Rate"
1784
  msgstr ""
1785
 
1786
+ #: wpsc-admin/includes/settings-pages/taxes.php:100
1787
+ msgid "Tax Rates"
1788
  msgstr ""
1789
 
1790
+ #: wpsc-admin/includes/settings-pages/taxes.php:145
1791
+ msgid "Add New Tax Rate"
1792
  msgstr ""
1793
 
1794
+ #: wpsc-admin/includes/settings-pages/taxes.php:150
1795
+ msgid "Tax Bands"
1796
  msgstr ""
1797
 
1798
+ #: wpsc-admin/includes/settings-pages/taxes.php:154
1799
+ msgid ""
1800
+ "Note: Tax Bands are special tax rules you can create and apply on a per-"
1801
+ "product basis. <br /> Please visit the product page to apply your Tax Band."
1802
  msgstr ""
1803
 
1804
+ #: wpsc-admin/includes/settings-pages/taxes.php:158
1805
+ msgid ""
1806
+ "Note: Tax Bands do not take affect when product prices are tax exclusive."
1807
  msgstr ""
1808
 
1809
+ #: wpsc-admin/includes/settings-pages/taxes.php:171
1810
+ msgid "Add New Tax Band"
1811
  msgstr ""
1812
 
1813
+ #: wpsc-admin/includes/settings-pages/import.php:12
1814
+ msgid ""
1815
+ "<p>You can import your products from a comma delimited text file.</p><p>An "
1816
+ "example of a csv import file would look like this: </p><p>Description, "
1817
+ "Additional Description, Product Name, Price, SKU, weight, weight unit, stock "
1818
+ "quantity, is limited quantity</p>"
1819
  msgstr ""
1820
 
1821
+ #: wpsc-admin/includes/settings-pages/import.php:39
1822
+ msgid ""
1823
+ "For each column, select the field it corresponds to in 'Belongs to'. You can "
1824
+ "upload as many products as you like."
1825
  msgstr ""
1826
 
1827
+ #: wpsc-admin/includes/settings-pages/import.php:44
1828
+ msgid "Product Status"
1829
  msgstr ""
1830
 
1831
+ #: wpsc-admin/includes/settings-pages/import.php:48
1832
+ msgid ""
1833
+ "Select if you would like to import your products in as Drafts or Publish "
1834
+ "them right away."
1835
  msgstr ""
1836
 
1837
+ #: wpsc-admin/includes/settings-pages/import.php:52
1838
+ msgid "Publish"
1839
  msgstr ""
1840
 
1841
+ #: wpsc-admin/includes/settings-pages/import.php:53
1842
+ msgid "Draft"
1843
  msgstr ""
1844
 
1845
+ #: wpsc-admin/includes/settings-pages/import.php:64
1846
+ msgid "Column (%s)"
1847
  msgstr ""
1848
 
1849
+ #: wpsc-admin/includes/settings-pages/import.php:78
1850
+ msgid "Product Name"
1851
  msgstr ""
1852
 
1853
+ #: wpsc-admin/includes/settings-pages/import.php:79
1854
+ #: wpsc-admin/includes/display-items-functions.php:708
1855
+ msgid "Description"
1856
  msgstr ""
1857
 
1858
+ #: wpsc-admin/includes/settings-pages/import.php:84
1859
+ msgid "Weight Unit"
1860
  msgstr ""
1861
 
1862
+ #: wpsc-admin/includes/settings-pages/import.php:85
1863
+ msgid "Stock Quantity"
1864
  msgstr ""
1865
 
1866
+ #: wpsc-admin/includes/settings-pages/import.php:86
1867
+ msgid "Stock Quantity Limit"
1868
  msgstr ""
1869
 
1870
+ #: wpsc-admin/includes/settings-pages/import.php:93
1871
+ msgid ""
1872
+ "Please select a category you would like to place all products from this CSV "
1873
+ "into"
1874
  msgstr ""
1875
 
1876
+ #: wpsc-admin/includes/settings-pages/import.php:105
1877
+ msgid "There was an error while uploading your csv file."
1878
  msgstr ""
1879
 
1880
+ #: wpsc-admin/includes/settings-pages/import.php:163
1881
+ msgid "Success, your <a href='%s'>products</a> have been upload."
1882
  msgstr ""
1883
 
1884
+ #: wpsc-admin/includes/settings-pages/marketing.php:17
1885
+ msgid "Marketing Section"
1886
  msgstr ""
1887
 
1888
+ #: wpsc-admin/includes/settings-pages/marketing.php:18
1889
+ msgid "RSS Address"
1890
  msgstr ""
1891
 
1892
+ #: wpsc-admin/includes/settings-pages/marketing.php:19
1893
+ msgid "Google Merchant Centre / Google Product Search"
1894
  msgstr ""
1895
 
1896
+ #: wpsc-admin/includes/settings-pages/marketing.php:59
1897
+ msgid "Display Cross Sales"
1898
  msgstr ""
1899
 
1900
+ #: wpsc-admin/includes/settings-pages/marketing.php:61
1901
+ msgid ""
1902
+ "Adds the 'Users who bought this also bought' item to the single products "
1903
+ "page."
1904
  msgstr ""
1905
 
1906
+ #: wpsc-admin/includes/settings-pages/marketing.php:64
1907
+ msgid "Show Share This (Social Bookmarks)"
 
1908
  msgstr ""
1909
 
1910
+ #: wpsc-admin/includes/settings-pages/marketing.php:66
1911
+ msgid "Adds the 'Share this link' item to the single products page."
 
 
1912
  msgstr ""
1913
 
1914
+ #: wpsc-admin/includes/settings-pages/marketing.php:69
1915
+ msgid "Display How Customer Found Us Survey"
 
1916
  msgstr ""
1917
 
1918
+ #: wpsc-admin/includes/settings-pages/marketing.php:71
1919
+ msgid "Adds the 'How did you find out about us' drop-down option at checkout."
1920
  msgstr ""
1921
 
1922
+ #: wpsc-admin/includes/settings-pages/marketing.php:74
1923
+ msgid "Display Facebook Like"
1924
  msgstr ""
1925
 
1926
+ #: wpsc-admin/includes/settings-pages/marketing.php:77
1927
+ msgid "Adds the Facebook Like button on your single products page."
1928
  msgstr ""
1929
 
1930
+ #: wpsc-admin/includes/settings-pages/marketing.php:91
1931
+ msgid "People can use this RSS feed to keep up to date with your product list."
1932
  msgstr ""
1933
 
1934
+ #: wpsc-admin/includes/settings-pages/marketing.php:92
1935
+ msgid "RSS Feed Address"
1936
  msgstr ""
1937
 
1938
+ #: wpsc-admin/includes/settings-pages/marketing.php:99
1939
+ msgid ""
1940
+ "To import your products into <a href=\"http://www.google.com/merchants/\" "
1941
+ "target=\"_blank\">Google Merchant Centre</a> so that they appear within "
1942
+ "Google Product Search results, sign up for a Google Merchant Centre account "
1943
+ "and add a scheduled data feed with the following URL:"
1944
  msgstr ""
1945
 
1946
+ #: wpsc-admin/includes/settings-pages/shipping.php:58
1947
+ #: wpsc-admin/includes/settings-pages/general.php:8
1948
+ #: wpsc-admin/includes/settings-pages/gateway.php:68
1949
+ msgid "General Settings"
1950
  msgstr ""
1951
 
1952
+ #: wpsc-admin/includes/settings-pages/shipping.php:64
1953
+ msgid "Use Shipping"
1954
  msgstr ""
1955
 
1956
+ #: wpsc-admin/includes/settings-pages/shipping.php:78
1957
+ msgid ""
1958
+ "If you are only selling digital downloads, you should select no to disable "
1959
+ "the shipping on your site."
1960
  msgstr ""
1961
 
1962
+ #: wpsc-admin/includes/settings-pages/shipping.php:83
1963
+ msgid "Base City:"
1964
  msgstr ""
1965
 
1966
+ #: wpsc-admin/includes/settings-pages/shipping.php:86
1967
+ msgid "Please provide for more accurate rates"
1968
  msgstr ""
1969
 
1970
+ #: wpsc-admin/includes/settings-pages/shipping.php:90
1971
+ msgid "Base Zipcode/Postcode:"
1972
  msgstr ""
1973
 
1974
+ #: wpsc-admin/includes/settings-pages/shipping.php:93
1975
  msgid ""
1976
+ "If you are based in America then you need to set your own Zipcode for UPS "
1977
+ "and USPS to work. This should be the Zipcode for your Base of Operations."
 
1978
  msgstr ""
1979
 
1980
+ #: wpsc-admin/includes/settings-pages/shipping.php:115
1981
+ msgid "ShipWire Settings"
 
1982
  msgstr ""
1983
 
1984
+ #: wpsc-admin/includes/settings-pages/shipping.php:126
1985
+ msgid "ShipWire Email"
1986
  msgstr ""
1987
 
1988
+ #: wpsc-admin/includes/settings-pages/shipping.php:127
1989
+ msgid "ShipWire Password"
 
1990
  msgstr ""
1991
 
1992
+ #: wpsc-admin/includes/settings-pages/shipping.php:135
1993
+ msgid "Enable Free Shipping Discount"
1994
  msgstr ""
1995
 
1996
+ #: wpsc-admin/includes/settings-pages/shipping.php:162
1997
  msgid ""
1998
+ "Sales over or equal to: %1$s<input type=\"text\" size=\"6\" name="
1999
+ "\"wpsc_options[shipping_discount_value]\" value=\"%2$s\" id="
2000
+ "\"shipping_discount_value\" /> will receive free shipping."
2001
  msgstr ""
2002
 
2003
+ #: wpsc-admin/includes/settings-pages/shipping.php:186
2004
+ msgid "Shipping Modules"
2005
  msgstr ""
2006
 
2007
+ #: wpsc-admin/includes/settings-pages/shipping.php:190
2008
  msgid ""
2009
+ "To enable shipping in WP e-Commerce you must select which shipping methods "
2010
+ "you want to enable on your site.<br /> If you want to use fixed-price "
2011
+ "shipping options like \"Pickup - $0, Overnight - $10, Same day - $20, etc.\" "
2012
+ "you can download a WordPress plugin from plugins directory for <a href="
2013
+ "\"http://wordpress.org/extend/plugins/wp-e-commerce-fixed-rate-shipping/"
2014
+ "\">Simple shipping</a>. It will appear in the list as \"Fixed rate\"."
2015
  msgstr ""
2016
 
2017
+ #: wpsc-admin/includes/settings-pages/shipping.php:194
2018
+ msgid "Internal Shipping Calculators"
2019
  msgstr ""
2020
 
2021
+ #: wpsc-admin/includes/settings-pages/shipping.php:216
2022
+ msgid "External Shipping Calculators"
2023
  msgstr ""
2024
 
2025
+ #: wpsc-admin/includes/settings-pages/shipping.php:219
2026
+ msgid ""
2027
+ "The following shipping modules all need cURL which is not installed on this "
2028
+ "server, you may need to contact your web hosting provider to get it set up. "
2029
  msgstr ""
2030
 
2031
+ #: wpsc-admin/includes/settings-pages/general.php:15
2032
+ msgid "Base Country/Region"
2033
  msgstr ""
2034
 
2035
+ #: wpsc-admin/includes/settings-pages/general.php:43
2036
+ msgid "Select your primary business location."
2037
  msgstr ""
2038
 
2039
+ #: wpsc-admin/includes/settings-pages/general.php:52
2040
+ #: wpsc-admin/includes/save-data.functions.php:242
2041
+ #: wpsc-admin/includes/save-data.functions.php:464
2042
+ msgid "Target Markets"
2043
  msgstr ""
2044
 
2045
+ #: wpsc-admin/includes/settings-pages/general.php:58
2046
+ msgid ""
2047
+ "The Target Markets feature has been disabled because you have the Suhosin "
2048
+ "PHP extension installed on this server. If you need to use the Target "
2049
+ "Markets feature then disable the suhosin extension, if you can not do this, "
2050
+ "you will need to contact your hosting provider."
2051
  msgstr ""
2052
 
2053
+ #: wpsc-admin/includes/settings-pages/general.php:61
2054
+ msgid ""
2055
+ "Select: <a href=\"%1$s\" class=\"wpsc_select_all\" title=\"All\">All</a> <a "
2056
+ "href=\"%1$s\" class=\"wpsc_select_none\" title=\"None\">None</a>"
2057
  msgstr ""
2058
 
2059
+ #: wpsc-admin/includes/settings-pages/general.php:75
2060
+ msgid "Select the markets you are selling products to."
2061
  msgstr ""
2062
 
2063
+ #: wpsc-admin/includes/settings-pages/general.php:82
2064
+ msgid "Currency Settings"
2065
  msgstr ""
2066
 
2067
+ #: wpsc-admin/includes/settings-pages/general.php:85
2068
+ msgid "Currency Type"
2069
  msgstr ""
2070
 
2071
+ #: wpsc-admin/includes/settings-pages/general.php:110
2072
+ msgid "Currency Sign Location"
2073
  msgstr ""
2074
 
2075
+ #: wpsc-admin/includes/settings-pages/general.php:146
2076
+ msgid "Thousands and decimal separators"
2077
  msgstr ""
2078
 
2079
+ #: wpsc-admin/includes/settings-pages/general.php:148
2080
+ msgid "Thousands separator"
2081
  msgstr ""
2082
 
2083
+ #: wpsc-admin/includes/settings-pages/general.php:149
2084
+ msgid "Decimal separator"
2085
  msgstr ""
2086
 
2087
+ #: wpsc-admin/includes/settings-pages/general.php:150
2088
+ msgid "Preview:"
2089
  msgstr ""
2090
 
2091
+ #: wpsc-admin/includes/settings-pages/presentation.php:48
2092
+ msgid "Advanced Theme Settings"
2093
  msgstr ""
2094
 
2095
+ #: wpsc-admin/includes/settings-pages/presentation.php:56
2096
+ msgid "You did not specify any template files to be moved."
2097
  msgstr ""
2098
 
2099
+ #: wpsc-admin/includes/settings-pages/presentation.php:66
2100
+ msgid ""
2101
+ "Error: some files could not be copied. Please make sure that theme folder is "
2102
+ "writable."
2103
  msgstr ""
2104
 
2105
+ #: wpsc-admin/includes/settings-pages/presentation.php:68
2106
+ msgid "Thanks, the themes have been copied."
2107
  msgstr ""
2108
 
2109
+ #: wpsc-admin/includes/settings-pages/presentation.php:78
2110
+ msgid ""
2111
+ "Thanks, you have made a succesful backup of your theme. It is located at "
2112
+ "the URL below. Please note each backup you create will replace your "
2113
+ "previous backups."
2114
  msgstr ""
2115
 
2116
+ #. Some themes have been moved to the themes folder
2117
+ #: wpsc-admin/includes/settings-pages/presentation.php:88
2118
+ msgid "Some Theme files have been moved to your WordPress Theme Folder."
2119
  msgstr ""
2120
 
2121
+ #: wpsc-admin/includes/settings-pages/presentation.php:90
2122
+ msgid "No Theme files have been moved to your WordPress Theme Folder."
2123
  msgstr ""
2124
 
2125
+ #: wpsc-admin/includes/settings-pages/presentation.php:96
2126
  msgid ""
2127
+ "WP e-Commerce provides you the ability to move your theme files to a safe "
2128
+ "place for theming control.\n"
2129
+ "\t\t\t\t\t\n"
2130
+ "If you want to change the look of your site, select the files you want to "
2131
+ "edit from the list and click the move button. This will copy the template "
2132
+ "files to your active WordPress theme. "
2133
  msgstr ""
2134
 
2135
+ #: wpsc-admin/includes/settings-pages/presentation.php:114
2136
+ msgid ""
2137
+ "To change the look of certain aspects of your shop, you can edit the moved "
2138
+ "files that are found here:"
2139
  msgstr ""
2140
 
2141
+ #: wpsc-admin/includes/settings-pages/presentation.php:124
2142
+ msgid ""
2143
+ "You can create a copy of your WordPress Theme by clicking the backup button "
2144
+ "bellow. Once copied you can find them here:"
2145
  msgstr ""
2146
 
2147
+ #: wpsc-admin/includes/settings-pages/presentation.php:128
2148
+ msgid "<a href=\"%s\" class=\"button\">Backup Your WordPress Theme</a>"
2149
  msgstr ""
2150
 
2151
+ #: wpsc-admin/includes/settings-pages/presentation.php:133
2152
+ msgid ""
2153
+ "If you have moved your files in some other way i.e FTP, you may need to "
2154
+ "click the Flush Theme Cache. This will refresh the locations WordPress looks "
2155
+ "for your templates."
2156
  msgstr ""
2157
 
2158
+ #: wpsc-admin/includes/settings-pages/presentation.php:134
2159
+ msgid "<a href=\"%s\" class=\"button\">Flush Theme Cache</a>"
2160
  msgstr ""
2161
 
2162
+ #: wpsc-admin/includes/settings-pages/presentation.php:163
2163
+ msgid "Show All Products"
2164
  msgstr ""
2165
 
2166
+ #: wpsc-admin/includes/settings-pages/presentation.php:170
2167
+ msgid "Show list of product categories"
 
 
2168
  msgstr ""
2169
 
2170
+ #: wpsc-admin/includes/settings-pages/presentation.php:216
2171
+ msgid "Button Settings"
 
 
2172
  msgstr ""
2173
 
2174
+ #: wpsc-admin/includes/settings-pages/presentation.php:220
2175
+ msgid "Button Type"
2176
  msgstr ""
2177
 
2178
+ #: wpsc-admin/includes/settings-pages/presentation.php:237
2179
+ #: wpsc-theme/wpsc-list_view.php:124 wpsc-theme/wpsc-grid_view.php:129
2180
+ #: wpsc-theme/wpsc-products_page.php:205
2181
+ #: wpsc-theme/wpsc-single_product.php:179
2182
+ #: wpsc-widgets/donations_widget.php:165
2183
+ #: wpsc-includes/display.functions.php:216
2184
+ msgid "Add To Cart"
2185
  msgstr ""
2186
 
2187
+ #: wpsc-admin/includes/settings-pages/presentation.php:243
2188
  msgid ""
2189
+ "Buy Now Button only works for Paypal Standard, please activate Paypal "
2190
+ "Standard to enable this option."
 
 
 
2191
  msgstr ""
2192
 
2193
+ #: wpsc-admin/includes/settings-pages/presentation.php:246
2194
+ #: wpsc-theme/wpsc-list_view.php:122 wpsc-theme/wpsc-products_page.php:203
2195
+ #: wpsc-theme/wpsc-single_product.php:177
2196
+ #: wpsc-includes/product-template.php:735
2197
+ #: wpsc-includes/display.functions.php:178
2198
+ msgid "Buy Now"
2199
  msgstr ""
2200
 
2201
+ #: wpsc-admin/includes/settings-pages/presentation.php:252
2202
+ msgid "Hide \"Add to cart\" button"
2203
  msgstr ""
2204
 
2205
+ #: wpsc-admin/includes/settings-pages/presentation.php:274
2206
+ msgid "Product Settings"
 
 
 
 
2207
  msgstr ""
2208
 
2209
+ #: wpsc-admin/includes/settings-pages/presentation.php:279
2210
+ msgid "Show Product Ratings"
 
 
2211
  msgstr ""
2212
 
2213
+ #: wpsc-admin/includes/settings-pages/presentation.php:309
2214
+ msgid "Show Stock Availability"
2215
  msgstr ""
2216
 
2217
+ #: wpsc-admin/includes/settings-pages/presentation.php:318
2218
+ msgid "Display Fancy Purchase Notifications"
 
 
2219
  msgstr ""
2220
 
2221
+ #: wpsc-admin/includes/settings-pages/presentation.php:342
2222
+ msgid "Display per item shipping"
2223
  msgstr ""
2224
 
2225
+ #: wpsc-admin/includes/settings-pages/presentation.php:364
2226
+ msgid "Disable link in Title"
2227
  msgstr ""
2228
 
2229
+ #: wpsc-admin/includes/settings-pages/presentation.php:388
2230
+ msgid "Add quantity field to each product description"
2231
  msgstr ""
2232
 
2233
+ #: wpsc-admin/includes/settings-pages/presentation.php:417
2234
+ msgid "Product Page Settings"
2235
  msgstr ""
2236
 
2237
+ #: wpsc-admin/includes/settings-pages/presentation.php:420
2238
+ msgid "Product Display"
 
2239
  msgstr ""
2240
 
2241
+ #: wpsc-admin/includes/settings-pages/presentation.php:472
2242
+ #: wpsc-admin/includes/save-data.functions.php:194
2243
+ #: wpsc-admin/includes/save-data.functions.php:391
2244
+ msgid "Default View"
2245
  msgstr ""
2246
 
2247
+ #: wpsc-admin/includes/settings-pages/presentation.php:476
2248
+ #: wpsc-admin/includes/settings-pages/presentation.php:480
2249
+ #: wpsc-admin/includes/save-data.functions.php:197
2250
+ #: wpsc-admin/includes/save-data.functions.php:199
2251
+ #: wpsc-admin/includes/save-data.functions.php:394
2252
+ #: wpsc-admin/includes/save-data.functions.php:396
2253
+ msgid "List View"
2254
  msgstr ""
2255
 
2256
+ #: wpsc-admin/includes/settings-pages/presentation.php:486
2257
+ #: wpsc-admin/includes/settings-pages/presentation.php:490
2258
+ #: wpsc-admin/includes/save-data.functions.php:202
2259
+ #: wpsc-admin/includes/save-data.functions.php:204
2260
+ #: wpsc-admin/includes/save-data.functions.php:399
2261
+ #: wpsc-admin/includes/save-data.functions.php:401
2262
+ msgid "Grid View"
2263
  msgstr ""
2264
 
2265
+ #: wpsc-admin/includes/settings-pages/presentation.php:497
2266
+ msgid "Purchase unavailable options"
2267
  msgstr ""
2268
 
2269
+ #: wpsc-admin/includes/settings-pages/presentation.php:507
2270
+ msgid "Products Per Row"
2271
  msgstr ""
2272
 
2273
+ #: wpsc-admin/includes/settings-pages/presentation.php:511
2274
+ msgid "Show images only"
2275
  msgstr ""
2276
 
2277
+ #: wpsc-admin/includes/settings-pages/presentation.php:515
2278
+ msgid "Display Variations"
 
 
2279
  msgstr ""
2280
 
2281
+ #: wpsc-admin/includes/settings-pages/presentation.php:519
2282
+ msgid "Display Description"
2283
  msgstr ""
2284
 
2285
+ #: wpsc-admin/includes/settings-pages/presentation.php:523
2286
+ msgid "Display \"Add To Cart\" Button"
2287
  msgstr ""
2288
 
2289
+ #: wpsc-admin/includes/settings-pages/presentation.php:527
2290
+ msgid "Display \"More Details\" Button"
2291
  msgstr ""
2292
 
2293
+ #: wpsc-admin/includes/settings-pages/presentation.php:539
2294
+ msgid "Show list of categories"
2295
  msgstr ""
2296
 
2297
+ #: wpsc-admin/includes/settings-pages/presentation.php:548
2298
+ msgid "Select what product category you want to display on the products page"
2299
  msgstr ""
2300
 
2301
+ #: wpsc-admin/includes/settings-pages/presentation.php:576
2302
+ msgid "Sort Product By"
2303
  msgstr ""
2304
 
2305
+ #: wpsc-admin/includes/settings-pages/presentation.php:585
2306
+ msgid "Drag &amp; Drop"
2307
  msgstr ""
2308
 
2309
+ #: wpsc-admin/includes/settings-pages/presentation.php:587
2310
+ msgid "Time Uploaded"
2311
  msgstr ""
2312
 
2313
+ #: wpsc-admin/includes/settings-pages/presentation.php:593
2314
+ msgid "Show Breadcrumbs"
 
 
2315
  msgstr ""
2316
 
2317
+ #: wpsc-admin/includes/settings-pages/presentation.php:618
2318
+ msgid "Product Groups/Products Display"
2319
  msgstr ""
2320
 
2321
+ #: wpsc-admin/includes/settings-pages/presentation.php:635
2322
+ msgid "Product Groups Only (All products displayed)"
2323
  msgstr ""
2324
 
2325
+ #: wpsc-admin/includes/settings-pages/presentation.php:636
2326
+ msgid "Sliding Product Groups (1 product per page)"
 
 
2327
  msgstr ""
2328
 
2329
+ #: wpsc-admin/includes/settings-pages/presentation.php:642
2330
+ msgid "Show Subcategory Products in Parent Category"
2331
  msgstr ""
2332
 
2333
+ #: wpsc-admin/includes/settings-pages/presentation.php:667
2334
+ msgid "Show Search"
 
 
 
2335
  msgstr ""
2336
 
2337
+ #: wpsc-admin/includes/settings-pages/presentation.php:708
2338
+ msgid "Show Advanced Search"
2339
  msgstr ""
2340
 
2341
+ #: wpsc-admin/includes/settings-pages/presentation.php:711
2342
+ msgid "Use Live Search"
2343
  msgstr ""
2344
 
2345
+ #: wpsc-admin/includes/settings-pages/presentation.php:721
2346
+ msgid "Replace Page Title With Product/Category Name"
2347
  msgstr ""
2348
 
2349
+ #: wpsc-admin/includes/settings-pages/presentation.php:742
2350
+ msgid "Display Featured Product above Product Pages"
2351
  msgstr ""
2352
 
2353
+ #: wpsc-admin/includes/settings-pages/presentation.php:765
2354
+ msgid "Shopping Cart Settings"
2355
  msgstr ""
2356
 
2357
+ #: wpsc-admin/includes/settings-pages/presentation.php:768
2358
+ msgid "Cart Location"
2359
  msgstr ""
2360
 
2361
+ #: wpsc-admin/includes/settings-pages/presentation.php:794
2362
+ msgid "Page"
 
2363
  msgstr ""
2364
 
2365
+ #: wpsc-admin/includes/settings-pages/presentation.php:798
2366
+ #: wpsc-admin/includes/settings-pages/presentation.php:802
2367
+ msgid "Widget"
 
 
 
 
 
 
2368
  msgstr ""
2369
 
2370
+ #: wpsc-admin/includes/settings-pages/presentation.php:802
2371
+ #: wpsc-admin/includes/settings-pages/presentation.php:812
2372
+ msgid "You need to enable the widgets plugin to use this"
2373
  msgstr ""
2374
 
2375
+ #: wpsc-admin/includes/settings-pages/presentation.php:812
2376
+ #: wpsc-admin/includes/settings-pages/presentation.php:813
2377
+ msgid "You need to install the Gold and DropShop extentions to use this"
2378
  msgstr ""
2379
 
2380
+ #: wpsc-admin/includes/settings-pages/presentation.php:818
2381
+ msgid "Manual"
2382
  msgstr ""
2383
 
2384
+ #: wpsc-admin/includes/settings-pages/presentation.php:827
2385
+ msgid "Show Dropshop on every page"
2386
  msgstr ""
2387
 
2388
+ #: wpsc-admin/includes/settings-pages/presentation.php:830
2389
+ msgid "Show Dropshop only on product page"
2390
  msgstr ""
2391
 
2392
+ #: wpsc-admin/includes/settings-pages/presentation.php:835
2393
+ msgid "Use light Dropshop style"
2394
  msgstr ""
2395
 
2396
+ #: wpsc-admin/includes/settings-pages/presentation.php:838
2397
+ msgid "Use dark Dropshop style"
 
 
2398
  msgstr ""
2399
 
2400
+ #: wpsc-admin/includes/settings-pages/presentation.php:841
2401
+ msgid "Crafty"
2402
  msgstr ""
2403
 
2404
+ #: wpsc-admin/includes/settings-pages/presentation.php:850
2405
+ msgid "Display \"+ Postage & Tax\""
2406
  msgstr ""
2407
 
2408
+ #: wpsc-admin/includes/settings-pages/presentation.php:873
2409
+ msgid "Product Category Settings"
2410
  msgstr ""
2411
 
2412
+ #: wpsc-admin/includes/settings-pages/presentation.php:877
2413
+ msgid "Show Product Category Description"
2414
  msgstr ""
2415
 
2416
+ #: wpsc-admin/includes/settings-pages/presentation.php:901
2417
+ msgid "Show Product Category Thumbnails"
2418
  msgstr ""
2419
 
2420
+ #: wpsc-admin/includes/settings-pages/presentation.php:927
2421
+ msgid "Show Product Count per Product Category"
2422
  msgstr ""
2423
 
2424
+ #: wpsc-admin/includes/settings-pages/presentation.php:952
2425
+ #: wpsc-widgets/category_widget.php:140
2426
+ msgid "Use Category Grid View"
2427
  msgstr ""
2428
 
2429
+ #: wpsc-admin/includes/settings-pages/presentation.php:976
2430
+ msgid "Thumbnail Settings"
2431
  msgstr ""
2432
 
2433
+ #: wpsc-admin/includes/settings-pages/presentation.php:977
2434
  msgid ""
2435
+ "Note: Anytime you update any of the thumbnail settings, WPeC will "
2436
+ "automatically resize all of your thumbnails for you. Depending on how many "
2437
+ "images you have, this could take awhile."
 
2438
  msgstr ""
2439
 
2440
+ #: wpsc-admin/includes/settings-pages/presentation.php:981
2441
+ #: wpsc-admin/includes/display-items-functions.php:1011
2442
+ msgid "Default Product Thumbnail Size"
 
2443
  msgstr ""
2444
 
2445
+ #: wpsc-admin/includes/settings-pages/presentation.php:983
2446
+ #: wpsc-admin/includes/settings-pages/presentation.php:993
2447
+ #: wpsc-admin/includes/settings-pages/presentation.php:1002
2448
+ #: wpsc-admin/includes/settings-pages/presentation.php:1126
2449
+ #: wpsc-admin/includes/display-items-functions.php:597
2450
+ #: wpsc-admin/includes/save-data.functions.php:221
2451
+ #: wpsc-admin/includes/save-data.functions.php:423
2452
+ msgid "Width"
2453
  msgstr ""
2454
 
2455
+ #: wpsc-admin/includes/settings-pages/presentation.php:984
2456
+ #: wpsc-admin/includes/settings-pages/presentation.php:994
2457
+ #: wpsc-admin/includes/settings-pages/presentation.php:1003
2458
+ #: wpsc-admin/includes/settings-pages/presentation.php:1127
2459
+ #: wpsc-admin/includes/display-items-functions.php:584
2460
+ #: wpsc-admin/includes/save-data.functions.php:222
2461
+ #: wpsc-admin/includes/save-data.functions.php:424
2462
+ msgid "Height"
2463
  msgstr ""
2464
 
2465
+ #: wpsc-admin/includes/settings-pages/presentation.php:990
2466
+ msgid "Default Product Group Thumbnail Size"
 
 
 
 
2467
  msgstr ""
2468
 
2469
+ #: wpsc-admin/includes/settings-pages/presentation.php:999
2470
+ #: wpsc-admin/includes/display-items-functions.php:1011
2471
+ msgid "Single Product Image Size"
2472
  msgstr ""
2473
 
2474
+ #: wpsc-admin/includes/settings-pages/presentation.php:1022
2475
+ msgid "Crop Thumbnails"
2476
  msgstr ""
2477
 
2478
+ #: wpsc-admin/includes/settings-pages/presentation.php:1027
2479
+ msgid ""
2480
+ "Choosing \"Yes\" means that thumbnails are cropped to exact dimensions "
2481
+ "(normally thumbnails are proportional)"
2482
  msgstr ""
2483
 
2484
+ #: wpsc-admin/includes/settings-pages/presentation.php:1035
2485
+ #: wpsc-widgets/latest_product_widget.php:98
2486
+ #: wpsc-widgets/category_widget.php:142 wpsc-widgets/specials_widget.php:106
2487
+ msgid "Show Thumbnails"
2488
  msgstr ""
2489
 
2490
+ #: wpsc-admin/includes/settings-pages/presentation.php:1056
2491
+ msgid "Use Lightbox Effect for product images"
2492
  msgstr ""
2493
 
2494
+ #: wpsc-admin/includes/settings-pages/presentation.php:1074
2495
+ msgid ""
2496
+ "Using lightbox means that when clicking on a product image, a larger version "
2497
+ "will be displayed in a \"lightbox\" style window. If you are using a plugin "
2498
+ "such as Shutter Reloaded, you may want to disable lightbox."
2499
  msgstr ""
2500
 
2501
+ #: wpsc-admin/includes/settings-pages/presentation.php:1078
2502
+ msgid "Lightbox script to use"
2503
  msgstr ""
2504
 
2505
+ #: wpsc-admin/includes/settings-pages/presentation.php:1089
2506
+ msgid "Colorbox"
2507
  msgstr ""
2508
 
2509
+ #: wpsc-admin/includes/settings-pages/presentation.php:1090
2510
+ msgid "Thickbox"
2511
  msgstr ""
2512
 
2513
+ #: wpsc-admin/includes/settings-pages/presentation.php:1099
2514
+ msgid "Show Thumbnail Gallery"
2515
  msgstr ""
2516
 
2517
+ #: wpsc-admin/includes/settings-pages/presentation.php:1123
2518
+ msgid "Gallery Thumbnail Image Size"
 
 
2519
  msgstr ""
2520
 
2521
+ #: wpsc-admin/includes/settings-pages/presentation.php:1138
2522
+ msgid "Pagination settings"
2523
  msgstr ""
2524
 
2525
+ #: wpsc-admin/includes/settings-pages/presentation.php:1142
2526
+ msgid "Use Pagination"
 
2527
  msgstr ""
2528
 
2529
+ #: wpsc-admin/includes/settings-pages/presentation.php:1164
2530
+ msgid "number of products to show per page"
2531
  msgstr ""
2532
 
2533
+ #: wpsc-admin/includes/settings-pages/presentation.php:1171
2534
+ msgid "Page Number position"
2535
  msgstr ""
2536
 
2537
+ #: wpsc-admin/includes/settings-pages/presentation.php:1176
2538
+ msgid "Top"
2539
  msgstr ""
2540
 
2541
+ #: wpsc-admin/includes/settings-pages/presentation.php:1179
2542
+ msgid "Bottom"
2543
  msgstr ""
2544
 
2545
+ #: wpsc-admin/includes/settings-pages/presentation.php:1182
2546
+ msgid "Both"
2547
  msgstr ""
2548
 
2549
+ #: wpsc-admin/includes/settings-pages/presentation.php:1189
2550
+ msgid "Comment Settings"
2551
  msgstr ""
2552
 
2553
+ #: wpsc-admin/includes/settings-pages/presentation.php:1193
2554
+ msgid "Use IntenseDebate Comments"
2555
  msgstr ""
2556
 
2557
+ #: wpsc-admin/includes/settings-pages/presentation.php:1217
2558
+ msgid "IntenseDebate Account ID"
2559
  msgstr ""
2560
 
2561
+ #: wpsc-admin/includes/settings-pages/presentation.php:1219
2562
+ msgid "Help on finding the Account ID"
2563
  msgstr ""
2564
 
2565
+ #: wpsc-admin/includes/settings-pages/presentation.php:1228
2566
+ msgid "By Default Display Comments on"
2567
  msgstr ""
2568
 
2569
+ #: wpsc-admin/includes/settings-pages/presentation.php:1235
2570
+ msgid "All Products"
 
 
2571
  msgstr ""
2572
 
2573
+ #: wpsc-admin/includes/settings-pages/presentation.php:1238
2574
+ msgid "Per Product"
 
2575
  msgstr ""
2576
 
2577
+ #: wpsc-admin/includes/settings-pages/checkout.php:9
2578
+ msgid "Drag"
2579
  msgstr ""
2580
 
2581
+ #: wpsc-admin/includes/settings-pages/checkout.php:11
2582
+ msgid "Type"
2583
  msgstr ""
2584
 
2585
+ #: wpsc-admin/includes/settings-pages/checkout.php:12
2586
+ msgid "Unique Names"
 
 
2587
  msgstr ""
2588
 
2589
+ #: wpsc-admin/includes/settings-pages/checkout.php:13
2590
+ msgid "Mandatory"
2591
  msgstr ""
2592
 
2593
+ #: wpsc-admin/includes/settings-pages/checkout.php:14
2594
+ msgid "Trash"
2595
  msgstr ""
2596
 
2597
+ #: wpsc-admin/includes/settings-pages/checkout.php:31
2598
+ msgid "Misc Checkout Options"
2599
  msgstr ""
2600
 
2601
+ #: wpsc-admin/includes/settings-pages/checkout.php:35
2602
+ msgid "Users must register before checking out"
2603
+ msgstr ""
2604
+
2605
+ #: wpsc-admin/includes/settings-pages/checkout.php:55
2606
  msgid ""
2607
+ "If yes then you must also turn on the wordpress option \"Any one can register"
2608
+ "\""
2609
  msgstr ""
2610
 
2611
+ #: wpsc-admin/includes/settings-pages/checkout.php:73
2612
+ msgid "Enable Shipping Same as Billing Option: "
2613
  msgstr ""
2614
 
2615
+ #: wpsc-admin/includes/settings-pages/checkout.php:83
2616
+ msgid "Force users to use SSL"
2617
  msgstr ""
2618
 
2619
+ #: wpsc-admin/includes/settings-pages/checkout.php:103
2620
+ msgid ""
2621
+ "This can cause warnings for your users if you do not have a properly "
2622
+ "configured SSL certificate"
2623
  msgstr ""
2624
 
2625
+ #: wpsc-admin/includes/settings-pages/checkout.php:111
2626
+ msgid "Form Fields"
2627
  msgstr ""
2628
 
2629
+ #: wpsc-admin/includes/settings-pages/checkout.php:112
2630
  msgid ""
2631
+ "Here you can customise the forms to be displayed in your checkout page. The "
2632
+ "checkout page is where you collect important user information that will show "
2633
+ "up in your purchase logs i.e. the buyers address, and name..."
2634
  msgstr ""
2635
 
2636
+ #: wpsc-admin/includes/settings-pages/checkout.php:115
2637
+ msgid "Select a Form Set"
2638
  msgstr ""
2639
 
2640
+ #: wpsc-admin/includes/settings-pages/checkout.php:129
2641
+ msgid "+ Add New Form Set"
 
 
 
 
 
 
2642
  msgstr ""
2643
 
2644
+ #: wpsc-admin/includes/settings-pages/checkout.php:133
2645
+ msgid "Add new Form Set"
2646
  msgstr ""
2647
 
2648
+ #: wpsc-admin/includes/settings-pages/checkout.php:134
2649
+ msgid "Add"
2650
  msgstr ""
2651
 
2652
+ #: wpsc-admin/includes/settings-pages/checkout.php:170
2653
+ msgid "Click and Drag to Order Checkout Fields"
 
 
2654
  msgstr ""
2655
 
2656
+ #: wpsc-admin/includes/settings-pages/checkout.php:185
2657
+ msgid "more options"
2658
+ msgstr ""
2659
+
2660
+ #: wpsc-admin/includes/settings-pages/checkout.php:208
2661
+ msgid "This will be the Email address that the Purchase Reciept is sent to."
2662
+ msgstr ""
2663
+
2664
+ #: wpsc-admin/includes/settings-pages/checkout.php:226
2665
+ msgid "Add New Form Field"
2666
  msgstr ""
2667
 
2668
+ #: wpsc-admin/includes/settings-pages/gateway.php:40
2669
+ msgid "Please Select A Payment Gateway"
2670
  msgstr ""
2671
 
2672
+ #: wpsc-admin/includes/settings-pages/gateway.php:70
2673
  msgid ""
2674
  "Activate the payment gateways that you want to make available to your "
2675
  "customers by selecting them below."
2676
  msgstr ""
2677
 
2678
+ #: wpsc-admin/includes/settings-pages/gateway.php:110
2679
  msgid "We Recommend"
2680
  msgstr ""
2681
 
 
 
 
 
2682
  #: wpsc-admin/includes/display-items-functions.php:132
2683
  msgid ""
2684
  "This Product has variations, to edit the price please use the <a href="
2689
  msgid "Price: %s and above."
2690
  msgstr ""
2691
 
 
 
 
 
 
 
2692
  #: wpsc-admin/includes/display-items-functions.php:149
2693
  msgid "+ New Currency"
2694
  msgstr ""
2784
  "owner"
2785
  msgstr ""
2786
 
 
 
 
 
 
2787
  #: wpsc-admin/includes/display-items-functions.php:338
2788
  msgid "This product is not taxable."
2789
  msgstr ""
2872
  msgid "Add Custom Meta"
2873
  msgstr ""
2874
 
 
 
 
 
 
2875
  #: wpsc-admin/includes/display-items-functions.php:715
2876
  msgid "Merchant Notes:"
2877
  msgstr ""
2901
  msgstr ""
2902
 
2903
  #: wpsc-admin/includes/display-items-functions.php:762
2904
+ msgid "Enable Comments"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2905
  msgstr ""
2906
 
2907
+ #: wpsc-admin/includes/display-items-functions.php:764
2908
+ msgid "Use Default"
 
 
2909
  msgstr ""
2910
 
2911
+ #: wpsc-admin/includes/display-items-functions.php:768
2912
+ msgid "Allow users to comment on this Product."
 
 
2913
  msgstr ""
2914
 
2915
+ #: wpsc-admin/includes/display-items-functions.php:792
2916
+ msgid ""
2917
+ "If this product is for sale on another website enter the link here. For "
2918
+ "instance if your product is an MP3 file for sale on iTunes you could put the "
2919
+ "link here. This option overrides the buy now and add to cart links and takes "
2920
+ "you to the site linked here. You can also customise the Buy Now text and "
2921
+ "choose to open the link in a new window."
2922
  msgstr ""
2923
 
2924
+ #: wpsc-admin/includes/display-items-functions.php:796
2925
+ msgid "External Link"
2926
  msgstr ""
2927
 
2928
+ #: wpsc-admin/includes/display-items-functions.php:800
2929
+ msgid "External Link Text"
2930
  msgstr ""
2931
 
2932
+ #: wpsc-admin/includes/display-items-functions.php:804
2933
+ msgid "External Link Target"
2934
  msgstr ""
2935
 
2936
+ #: wpsc-admin/includes/display-items-functions.php:807
2937
+ msgctxt "External product link target"
2938
+ msgid "Default (set by theme)"
2939
  msgstr ""
2940
 
2941
+ #: wpsc-admin/includes/display-items-functions.php:808
2942
+ msgid "Open link in the same window"
2943
  msgstr ""
2944
 
2945
+ #: wpsc-admin/includes/display-items-functions.php:809
2946
+ msgid "Open link in a new window"
 
 
2947
  msgstr ""
2948
 
2949
+ #: wpsc-admin/includes/display-items-functions.php:825
2950
+ msgid "Manage Product Images"
 
2951
  msgstr ""
2952
 
2953
+ #: wpsc-admin/includes/display-items-functions.php:846
2954
+ msgid "Upload New File"
 
2955
  msgstr ""
2956
 
2957
+ #: wpsc-admin/includes/display-items-functions.php:847
2958
+ msgid "Max Upload Size"
 
2959
  msgstr ""
2960
 
2961
+ #: wpsc-admin/includes/display-items-functions.php:848
2962
+ msgid "Select all downloadable files for %s"
 
2963
  msgstr ""
2964
 
2965
+ #: wpsc-admin/includes/display-items-functions.php:848
2966
+ msgid "Select from existing files"
 
2967
  msgstr ""
2968
 
2969
+ #: wpsc-admin/includes/display-items-functions.php:853
2970
+ msgid "Select an MP3 file to upload as a preview"
2971
  msgstr ""
2972
 
2973
+ #: wpsc-admin/includes/display-items-functions.php:856
2974
+ msgid "Your preview for this product:"
2975
  msgstr ""
2976
 
2977
+ #: wpsc-admin/includes/display-items-functions.php:890
2978
+ msgid "Upload Image%s"
2979
  msgstr ""
2980
 
2981
+ #: wpsc-admin/includes/display-items-functions.php:944
2982
+ msgid "Variation set"
2983
  msgstr ""
2984
 
2985
+ #: wpsc-admin/includes/display-items-functions.php:967
2986
+ #: wpsc-admin/includes/display-items-functions.php:997
2987
+ #: wpsc-admin/includes/display-items-functions.php:1120
2988
+ msgid "Use as Product Thumbnail"
2989
  msgstr ""
2990
 
2991
+ #: wpsc-admin/includes/display-items-functions.php:973
2992
+ msgid ""
2993
+ "The name is how it appears on your site. <br><div class=\"error"
2994
+ "\"><strong>Please read this carefully before starting to work with "
2995
+ "variations:</strong><br />Variations in WP e-Commerce are divided into sets. "
2996
+ "For example set <strong>Color</strong> could have variations <strong>Red, "
2997
+ "Green,</strong> and <strong>Blue</strong>. To create a set simply enter "
2998
+ "<stron>Name</strong> and push Enter key on your keyboard or click "
2999
+ "<strong>Add New Variation/Set</strong> button in the bottom of this page. "
3000
+ "Now you can select the variation set that you've just created from "
3001
+ "<strong>Variation set</strong> drop-down menu and add some variations to it."
3002
+ "</div>"
3003
  msgstr ""
3004
 
3005
+ #: wpsc-admin/includes/display-items-functions.php:996
3006
+ #: wpsc-admin/includes/display-items-functions.php:1119
3007
+ msgid "Use as featured image"
3008
  msgstr ""
3009
 
3010
+ #: wpsc-admin/includes/display-items-functions.php:1011
3011
+ msgid "Full Size"
3012
  msgstr ""
3013
 
3014
+ #: wpsc-admin/includes/display-items-functions.php:1031
3015
+ msgid "(%d&nbsp;&times;&nbsp;%d)"
3016
  msgstr ""
3017
 
3018
+ #: wpsc-admin/includes/display-items-functions.php:1039
3019
+ msgid "Alt text for the product image, e.g. &#8220;Rockstar T-Shirt&#8221;"
3020
  msgstr ""
3021
 
3022
+ #: wpsc-admin/includes/display-items-functions.php:1042
3023
+ msgid "Single Product Page Thumbnail:"
3024
  msgstr ""
3025
 
3026
+ #: wpsc-admin/includes/display-items-functions.php:1045
3027
+ msgid ""
3028
+ "This is the Thumbnail size that will be displayed on the Single Product "
3029
+ "page. You can change the default sizes under your store settings"
3030
  msgstr ""
3031
 
3032
+ #: wpsc-admin/includes/display-items-functions.php:1058
3033
+ msgid "Products Page Thumbnail Size:"
3034
  msgstr ""
3035
 
3036
+ #: wpsc-admin/includes/display-items-functions.php:1060
3037
+ msgid "Custom thumbnail size for this image on the main Product Page"
3038
  msgstr ""
3039
 
3040
+ #: wpsc-admin/includes/display-items-functions.php:1130
3041
+ msgid "Product Image Gallery"
3042
  msgstr ""
3043
 
3044
+ #: wpsc-admin/includes/display-items-functions.php:1247
3045
+ msgid "Weight:"
3046
  msgstr ""
3047
 
3048
+ #: wpsc-admin/includes/display-items-functions.php:1255
3049
+ msgid "Stock:"
3050
  msgstr ""
3051
 
3052
+ #: wpsc-admin/includes/display-items-functions.php:1271
3053
+ msgid "Sale Price:"
3054
  msgstr ""
3055
 
3056
+ #: wpsc-admin/includes/save-data.functions.php:71
3057
+ msgid "Image"
 
 
 
 
3058
  msgstr ""
3059
 
3060
+ #: wpsc-admin/includes/save-data.functions.php:144
3061
+ msgid "Presentation Settings"
3062
  msgstr ""
3063
 
3064
+ #: wpsc-admin/includes/save-data.functions.php:149
3065
+ #: wpsc-admin/includes/save-data.functions.php:409
3066
+ msgid "Category Image"
3067
  msgstr ""
3068
 
3069
+ #: wpsc-admin/includes/save-data.functions.php:157
3070
+ #: wpsc-admin/includes/save-data.functions.php:354
3071
+ msgid "Catalog View"
3072
  msgstr ""
3073
 
3074
+ #: wpsc-admin/includes/save-data.functions.php:193
3075
+ #: wpsc-admin/includes/save-data.functions.php:390
3076
+ #: wpsc-includes/form-display.functions.php:9
3077
+ msgid "Please select"
3078
  msgstr ""
3079
 
3080
+ #: wpsc-admin/includes/save-data.functions.php:211
3081
+ #: wpsc-admin/includes/save-data.functions.php:404
3082
+ msgid ""
3083
+ "To over-ride the presentation settings for this group you can enter in your "
3084
+ "prefered settings here"
3085
  msgstr ""
3086
 
3087
+ #: wpsc-admin/includes/save-data.functions.php:218
3088
+ msgid "Thumbnail&nbsp;Size"
3089
  msgstr ""
3090
 
3091
+ #: wpsc-admin/includes/save-data.functions.php:233
3092
+ #: wpsc-admin/includes/save-data.functions.php:455
3093
+ msgid "Target Market Restrictions"
3094
  msgstr ""
3095
 
3096
+ #: wpsc-admin/includes/save-data.functions.php:247
3097
+ msgid ""
3098
+ "The Target Markets feature has been disabled because you have the Suhosin "
3099
+ "PHP extension installed on this server. If you need to use the Target "
3100
+ "Markets feature then disable the suhosin extension, if you can not do this, "
3101
+ "you will need to contact your hosting provider.\n"
3102
+ "\t\t\t"
3103
  msgstr ""
3104
 
3105
+ #: wpsc-admin/includes/save-data.functions.php:273
3106
+ #: wpsc-admin/includes/save-data.functions.php:496
3107
+ msgid "Checkout Settings"
 
3108
  msgstr ""
3109
 
3110
+ #: wpsc-admin/includes/save-data.functions.php:281
3111
+ msgid "This category requires additional checkout form fields"
 
 
3112
  msgstr ""
3113
 
3114
+ #: wpsc-admin/includes/save-data.functions.php:285
3115
+ #: wpsc-admin/includes/save-data.functions.php:475
3116
+ #: wpsc-admin/includes/save-data.functions.php:513
3117
+ msgid "None"
3118
  msgstr ""
3119
 
3120
+ #: wpsc-admin/includes/save-data.functions.php:305
3121
+ #: wpsc-admin/includes/save-data.functions.php:530
3122
+ msgid "Products in this category use the billing address to calculate shipping"
 
3123
  msgstr ""
3124
 
3125
+ #: wpsc-admin/includes/save-data.functions.php:413
3126
+ msgid "Delete Image"
 
 
 
 
3127
  msgstr ""
3128
 
3129
+ #: wpsc-admin/includes/save-data.functions.php:414
3130
  msgid ""
3131
+ "You can set an image for the category here. If one exists, check the box to "
3132
+ "delete."
3133
  msgstr ""
3134
 
3135
+ #: wpsc-admin/includes/save-data.functions.php:420
3136
+ msgid "Thumbnail Size"
3137
  msgstr ""
3138
 
3139
+ #: wpsc-admin/includes/save-data.functions.php:429
3140
+ msgid "Shortcodes and Template Tags"
 
 
 
 
 
3141
  msgstr ""
3142
 
3143
+ #: wpsc-admin/includes/save-data.functions.php:434
3144
+ msgid "Display Category Shortcode"
 
 
3145
  msgstr ""
3146
 
3147
+ #: wpsc-admin/includes/save-data.functions.php:438
3148
+ msgid ""
3149
+ "Shortcodes are used to display a particular category or group within any "
3150
+ "WordPress page or post."
3151
  msgstr ""
3152
 
3153
+ #: wpsc-admin/includes/save-data.functions.php:443
3154
+ msgid "Display Category Template Tag"
3155
  msgstr ""
3156
 
3157
+ #: wpsc-admin/includes/save-data.functions.php:447
3158
+ msgid ""
3159
+ "Template tags are used to display a particular category or group within your "
3160
+ "theme / template."
3161
  msgstr ""
3162
 
3163
+ #: wpsc-admin/includes/save-data.functions.php:470
3164
+ msgid ""
3165
+ "The Target Markets feature has been disabled because you have the Suhosin "
3166
+ "PHP extension installed on this server. If you need to use the Target "
3167
+ "Markets feature, then disable the suhosin extension. If you can not do this, "
3168
+ "you will need to contact your hosting provider."
3169
  msgstr ""
3170
 
3171
+ #: wpsc-admin/includes/save-data.functions.php:475
3172
+ msgid "Select"
3173
  msgstr ""
3174
 
3175
+ #: wpsc-admin/includes/save-data.functions.php:475
3176
+ msgid "All"
3177
  msgstr ""
3178
 
3179
+ #: wpsc-admin/includes/save-data.functions.php:489
3180
+ msgid "Select the markets you are selling this category to."
3181
  msgstr ""
3182
 
3183
+ #: wpsc-admin/includes/save-data.functions.php:509
3184
+ msgid "Category requires additional checkout form fields"
3185
  msgstr ""
3186
 
3187
+ #: wpsc-admin/display-items.page.php:50
3188
+ msgid "Categories"
3189
  msgstr ""
3190
 
3191
+ #: wpsc-admin/display-items.page.php:51
3192
+ msgid "Featured"
3193
  msgstr ""
3194
 
3195
+ #: wpsc-admin/display-items.page.php:53 wpsc-theme/wpsc-user-log.php:52
3196
+ #: wpsc-theme/wpsc-user-log.php:103
3197
+ msgid "Date"
3198
  msgstr ""
3199
 
3200
+ #: wpsc-admin/display-items.page.php:120 wpsc-admin/display-items.page.php:126
3201
+ msgid "Drag to a new position"
3202
  msgstr ""
3203
 
3204
+ #: wpsc-admin/display-items.page.php:156
3205
+ msgid " lbs."
3206
  msgstr ""
3207
 
3208
+ #: wpsc-admin/display-items.page.php:159
3209
+ msgid " oz."
3210
  msgstr ""
3211
 
3212
+ #: wpsc-admin/display-items.page.php:162
3213
+ msgid " g"
3214
  msgstr ""
3215
 
3216
+ #: wpsc-admin/display-items.page.php:166
3217
+ msgid " kgs."
3218
  msgstr ""
3219
 
3220
+ #: wpsc-admin/display-items.page.php:230 wpsc-admin/display-items.page.php:356
3221
+ msgid "Unmark as Featured"
3222
  msgstr ""
3223
 
3224
+ #: wpsc-admin/display-items.page.php:232 wpsc-admin/display-items.page.php:358
3225
+ msgid "Mark as Featured"
 
3226
  msgstr ""
3227
 
3228
+ #: wpsc-admin/display-items.page.php:295
3229
+ msgctxt "Show all [category name]"
3230
+ msgid "Show All %s"
3231
  msgstr ""
3232
 
3233
+ #: wpsc-admin/display-debug.page.php:40
3234
+ msgid "Update Page URLs"
3235
  msgstr ""
3236
 
3237
+ #: wpsc-admin/display-debug.page.php:43
3238
+ msgid "Fix Product Group Permalinks"
3239
  msgstr ""
3240
 
3241
+ #: wpsc-admin/display-sales-logs.php:37
 
3242
  msgid "Sales"
3243
  msgstr ""
3244
 
3245
+ #: wpsc-admin/display-sales-logs.php:49
3246
+ msgid "Order ID"
 
 
 
 
 
 
 
3247
  msgstr ""
3248
 
3249
+ #: wpsc-admin/display-sales-logs.php:50
3250
+ msgid "Date / Time"
3251
  msgstr ""
3252
 
3253
+ #: wpsc-admin/display-sales-logs.php:52
3254
+ msgid "Amount"
3255
  msgstr ""
3256
 
3257
+ #: wpsc-admin/display-sales-logs.php:53
3258
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:374
3259
+ msgid "Details"
3260
  msgstr ""
3261
 
3262
+ #: wpsc-admin/display-sales-logs.php:54 wpsc-theme/wpsc-user-log.php:102
3263
+ msgid "Status"
3264
  msgstr ""
3265
 
3266
+ #: wpsc-admin/display-sales-logs.php:56 wpsc-admin/display-sales-logs.php:437
3267
+ msgid "Tracking ID"
3268
  msgstr ""
3269
 
3270
+ #: wpsc-admin/display-sales-logs.php:65
3271
+ msgid "%s Purchase Log updated."
3272
+ msgid_plural "%s Purchase Logs updated."
3273
+ msgstr[0] ""
3274
+ msgstr[1] ""
3275
 
3276
+ #: wpsc-admin/display-sales-logs.php:73
3277
+ msgid "%s product not updated, somebody is editing it."
3278
+ msgid_plural "%s products not updated, somebody is editing them."
3279
+ msgstr[0] ""
3280
+ msgstr[1] ""
3281
 
3282
+ #: wpsc-admin/display-sales-logs.php:78
3283
+ msgid "%s Purchase Log deleted."
3284
+ msgid_plural "%s Purchase Logs deleted."
3285
+ msgstr[0] ""
3286
+ msgstr[1] ""
3287
 
3288
+ #: wpsc-admin/display-sales-logs.php:86
3289
+ msgid ""
3290
+ "When upgrading the WP e-Commerce Plugin from 3.6.* to 3.7 it is required "
3291
+ "that you associate your checkout form fields with the new Purchase Logs "
3292
+ "system. To do so please <a href=\"%s\">Click Here</a>"
3293
  msgstr ""
3294
 
3295
+ #: wpsc-admin/display-sales-logs.php:118
3296
+ msgid "Downloads for this log have been released."
3297
  msgstr ""
3298
 
3299
+ #: wpsc-admin/display-sales-logs.php:122
3300
+ msgid "Receipt has been resent "
3301
  msgstr ""
3302
 
3303
+ #: wpsc-admin/display-sales-logs.php:141 wpsc-admin/display-sales-logs.php:234
3304
+ #: wpsc-theme/wpsc-cart_widget.php:52
3305
+ #: wpsc-theme/wpsc-shopping_cart_page.php:21
3306
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:492
3307
+ msgid "Total"
3308
  msgstr ""
3309
 
3310
+ #: wpsc-admin/display-sales-logs.php:146
3311
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:206
3312
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:207
3313
+ #: wpsc-includes/checkout.class.php:143
3314
+ msgid "Tax Included"
3315
  msgstr ""
3316
 
3317
+ #: wpsc-admin/display-sales-logs.php:162
3318
+ msgid "Shipping Options"
3319
  msgstr ""
3320
 
3321
+ #: wpsc-admin/display-sales-logs.php:165
3322
+ msgid "Shipping Method:"
3323
  msgstr ""
3324
 
3325
+ #: wpsc-admin/display-sales-logs.php:166
3326
+ msgid "Shipping Option:"
3327
  msgstr ""
3328
 
3329
+ #: wpsc-admin/display-sales-logs.php:168
3330
+ msgid "Tracking ID:"
3331
  msgstr ""
3332
 
3333
+ #: wpsc-admin/display-sales-logs.php:169
3334
+ msgid "Shipping Status:"
3335
  msgstr ""
3336
 
3337
+ #: wpsc-admin/display-sales-logs.php:170
3338
+ msgid "Track History:"
3339
  msgstr ""
3340
 
3341
+ #: wpsc-admin/display-sales-logs.php:177
3342
+ msgid "Billing Details"
3343
  msgstr ""
3344
 
3345
+ #: wpsc-admin/display-sales-logs.php:178
3346
+ msgid "Purchase Log Date:"
 
3347
  msgstr ""
3348
 
3349
+ #: wpsc-admin/display-sales-logs.php:179
3350
+ msgid "Purchase Number:"
3351
  msgstr ""
3352
 
3353
+ #: wpsc-admin/display-sales-logs.php:180
3354
+ msgid "Buyers Name:"
 
 
3355
  msgstr ""
3356
 
3357
+ #: wpsc-admin/display-sales-logs.php:181
3358
+ msgid "Address:"
3359
  msgstr ""
3360
 
3361
+ #: wpsc-admin/display-sales-logs.php:183
3362
+ msgid "Phone:"
3363
  msgstr ""
3364
 
3365
+ #: wpsc-admin/display-sales-logs.php:184
3366
+ msgid "Email:"
3367
  msgstr ""
3368
 
3369
+ #: wpsc-admin/display-sales-logs.php:185
3370
+ msgid "Payment Method:"
3371
  msgstr ""
3372
 
3373
+ #: wpsc-admin/display-sales-logs.php:187
3374
+ msgid "How User Found Us:"
3375
  msgstr ""
3376
 
3377
+ #: wpsc-admin/display-sales-logs.php:194
3378
+ msgid "Items Ordered"
3379
  msgstr ""
3380
 
3381
+ #: wpsc-admin/display-sales-logs.php:241
3382
+ msgid "Order Status:"
3383
  msgstr ""
3384
 
3385
+ #: wpsc-admin/display-sales-logs.php:261
3386
+ msgid "Actions"
3387
  msgstr ""
3388
 
3389
+ #: wpsc-admin/display-sales-logs.php:266
3390
+ msgid "View Packing Slip"
 
 
 
3391
  msgstr ""
3392
 
3393
+ #: wpsc-admin/display-sales-logs.php:268
3394
+ msgid "Resend Receipt to Buyer"
 
 
3395
  msgstr ""
3396
 
3397
+ #: wpsc-admin/display-sales-logs.php:270 wpsc-admin/display-sales-logs.php:429
3398
+ msgid "Delete this log"
3399
  msgstr ""
3400
 
3401
+ #: wpsc-admin/display-sales-logs.php:270 wpsc-admin/display-sales-logs.php:429
3402
  msgid ""
3403
+ "You are about to delete this log '%s'\n"
3404
+ " 'Cancel' to stop, 'OK' to delete."
3405
  msgstr ""
3406
 
3407
+ #: wpsc-admin/display-sales-logs.php:270
3408
+ msgid "Remove this record"
3409
  msgstr ""
3410
 
3411
+ #: wpsc-admin/display-sales-logs.php:272
3412
+ msgid "Go Back"
3413
  msgstr ""
3414
 
3415
+ #: wpsc-admin/display-sales-logs.php:289
3416
+ msgid "Bulk Actions"
3417
  msgstr ""
3418
 
3419
+ #: wpsc-admin/display-sales-logs.php:300
3420
+ msgid "View:"
3421
  msgstr ""
3422
 
3423
+ #: wpsc-admin/display-sales-logs.php:321
3424
+ msgctxt "all sales"
3425
+ msgid "All"
3426
  msgstr ""
3427
 
3428
+ #: wpsc-admin/display-sales-logs.php:322
3429
+ msgid "Three Months"
3430
  msgstr ""
3431
 
3432
+ #: wpsc-admin/display-sales-logs.php:346
3433
+ msgid "Status: All"
3434
  msgstr ""
3435
 
3436
+ #: wpsc-admin/display-sales-logs.php:349
3437
+ msgid "Filter"
3438
  msgstr ""
3439
 
3440
+ #: wpsc-admin/display-sales-logs.php:352
3441
+ msgid "There are no purchase logs for your selection, please try again."
 
3442
  msgstr ""
3443
 
3444
+ #: wpsc-admin/display-sales-logs.php:369
3445
+ msgid "Total:"
 
 
3446
  msgstr ""
3447
 
3448
+ #: wpsc-admin/display-sales-logs.php:381
3449
+ msgid "Download CSV"
3450
  msgstr ""
3451
 
3452
+ #: wpsc-admin/display-sales-logs.php:390
3453
+ msgid ""
3454
+ "You are about to delete the selected purchase logs.\n"
3455
+ " 'Cancel' to stop, 'OK' to delete."
3456
  msgstr ""
3457
 
3458
+ #: wpsc-admin/display-sales-logs.php:416
3459
+ msgid "%s Item"
3460
+ msgid_plural "%s Items"
3461
+ msgstr[0] ""
3462
+ msgstr[1] ""
3463
+
3464
+ #: wpsc-admin/display-sales-logs.php:444
3465
+ msgid "Send Custom Message"
3466
  msgstr ""
3467
 
3468
+ #: wpsc-admin/display-sales-logs.php:456
3469
+ msgid "Search Logs"
3470
  msgstr ""
3471
 
3472
+ #: wpsc-admin/display-sales-logs.php:481
3473
+ msgid "Users Custom Fields"
3474
  msgstr ""
3475
 
3476
+ #: wpsc-admin/display-sales-logs.php:486
3477
+ msgid "Cart Items with Custom Files"
3478
  msgstr ""
3479
 
3480
+ #: wpsc-admin/display-sales-logs.php:493
3481
+ msgid "Cart Items with Custom Messages"
3482
  msgstr ""
3483
 
3484
+ #: wpsc-admin/display-sales-logs.php:513
3485
+ msgid "Order Notes"
3486
  msgstr ""
3487
 
3488
+ #: wpsc-admin/display-sales-logs.php:520
3489
+ msgid "Update Notes"
3490
  msgstr ""
3491
 
3492
+ #: wpsc-admin/display-sales-logs.php:535
3493
+ msgid "Additional Checkout Fields"
3494
  msgstr ""
3495
 
3496
+ #: wpsc-admin/display-update.page.php:40
3497
+ msgid "WP e-Commerce is almost ready."
3498
  msgstr ""
3499
 
3500
+ #: wpsc-admin/display-update.page.php:40
3501
+ msgid ""
3502
+ "You must <a href=\"%1$s\">update your database</a> to import all of your "
3503
+ "products."
3504
  msgstr ""
3505
 
3506
+ #: wpsc-admin/display-update.page.php:55
3507
+ msgid "Update WP e-Commerce"
3508
  msgstr ""
3509
 
3510
+ #: wpsc-admin/display-update.page.php:60
3511
+ msgid "Updating Categories..."
3512
+ msgstr ""
 
 
 
3513
 
3514
+ #: wpsc-admin/display-update.page.php:62
3515
+ msgid "Updating Variations..."
3516
+ msgstr ""
 
 
3517
 
3518
+ #: wpsc-admin/display-update.page.php:64
3519
+ msgid "Updating Products..."
3520
+ msgstr ""
 
 
3521
 
3522
+ #: wpsc-admin/display-update.page.php:66
3523
+ msgid "Updating Child Products..."
3524
+ msgstr ""
 
 
3525
 
3526
+ #: wpsc-admin/display-update.page.php:68
3527
+ msgid "Updating Product Files..."
3528
  msgstr ""
3529
 
3530
+ #: wpsc-admin/display-update.page.php:70
3531
+ msgid "Updating Database..."
3532
+ msgstr ""
 
 
3533
 
3534
+ #: wpsc-admin/display-update.page.php:73
3535
+ msgid "WP e-Commerce updated successfully!"
3536
+ msgstr ""
 
 
3537
 
3538
+ #: wpsc-admin/display-update.page.php:75
3539
  msgid ""
3540
+ "Note: It looks like you have custom permalinks, you will need to refresh "
3541
+ "your permalinks <a href=\"%s\">here</a>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3542
  msgstr ""
3543
 
3544
+ #: wpsc-admin/display-update.page.php:83
3545
+ msgid ""
3546
+ "Your WP e-Commerce database needs to be updated for WP e-Commerce 3.8. To "
3547
+ "perform this update, press the button below. It is highly recommended that "
3548
+ "you back up your database before performing this update."
3549
  msgstr ""
3550
 
3551
+ #: wpsc-admin/display-update.page.php:86
3552
+ msgid ""
3553
+ "Note: If the server times out or runs out of memory, just reload this page, "
3554
+ "the server will pick up where it left off."
3555
  msgstr ""
3556
 
3557
+ #: wpsc-core/wpsc-installer.php:159
3558
+ msgid ""
3559
+ "Thank you for purchasing with %shop_name%, any items to be shipped will be "
3560
+ "processed as soon as possible, any items that can be downloaded can be "
3561
+ "downloaded using the links on this page.All prices include tax and postage "
3562
+ "and packaging where applicable.\n"
3563
+ "\tYou ordered these items: \n"
3564
+ "\t%product_list%%total_shipping%%total_price%"
3565
  msgstr ""
3566
 
3567
+ #: wpsc-core/wpsc-installer.php:162 wpsc-updates/updating_tasks.php:391
3568
+ #: wpsc-updates/updating_tasks.php:404
3569
+ msgid "%product_list%%total_shipping%%total_price%"
3570
  msgstr ""
3571
 
3572
+ #: wpsc-core/wpsc-installer.php:204
3573
+ msgid "Products Page"
3574
  msgstr ""
3575
 
3576
+ #: wpsc-core/wpsc-installer.php:210 wpsc-theme/wpsc-cart_widget.php:64
3577
+ msgid "Checkout"
3578
  msgstr ""
3579
 
3580
+ #: wpsc-core/wpsc-installer.php:216
3581
+ msgid "Transaction Results"
3582
  msgstr ""
3583
 
3584
+ #: wpsc-core/wpsc-installer.php:222
3585
+ msgid "Your Account"
3586
  msgstr ""
3587
 
3588
+ #: wpsc-core/wpsc-installer.php:293
3589
+ msgid "Product Category"
3590
  msgstr ""
3591
 
3592
+ #: wpsc-core/wpsc-installer.php:300
3593
+ msgid "This is a description"
3594
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3595
 
3596
+ #: wpsc-core/wpsc-installer.php:744
3597
+ msgid "Your billing/contact details"
 
 
 
3598
  msgstr ""
3599
 
3600
+ #: wpsc-core/wpsc-installer.php:745 wpsc-core/wpsc-installer.php:754
3601
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:65
3602
+ msgid "First Name"
3603
  msgstr ""
3604
 
3605
+ #: wpsc-core/wpsc-installer.php:746 wpsc-core/wpsc-installer.php:755
3606
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:69
3607
+ msgid "Last Name"
3608
  msgstr ""
3609
 
3610
+ #: wpsc-core/wpsc-installer.php:748 wpsc-core/wpsc-installer.php:757
3611
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:82
3612
+ msgid "City"
3613
  msgstr ""
3614
 
3615
+ #: wpsc-core/wpsc-installer.php:751 wpsc-core/wpsc-installer.php:760
3616
+ msgid "Postal Code"
3617
  msgstr ""
3618
 
3619
+ #: wpsc-core/wpsc-functions.php:126
3620
+ msgid "Incomplete Sale"
3621
  msgstr ""
3622
 
3623
+ #: wpsc-core/wpsc-functions.php:131
3624
+ msgid "Order Received"
3625
  msgstr ""
3626
 
3627
+ #: wpsc-core/wpsc-functions.php:136
3628
+ msgid "Accepted Payment"
3629
  msgstr ""
3630
 
3631
+ #: wpsc-core/wpsc-functions.php:142
3632
+ msgid "Job Dispatched"
3633
  msgstr ""
3634
 
3635
+ #: wpsc-core/wpsc-functions.php:148
3636
+ msgid "Closed Order"
3637
  msgstr ""
3638
 
3639
+ #: wpsc-core/wpsc-functions.php:154
3640
+ msgid "Payment Declined"
3641
  msgstr ""
3642
 
3643
+ #: wpsc-core/wpsc-functions.php:240
3644
+ msgid "Please Note"
3645
  msgstr ""
3646
 
3647
+ #: wpsc-core/wpsc-functions.php:241
3648
+ msgid ""
3649
+ "Before upgrading you should check the <a %s>upgrade information</a> and "
3650
+ "changelog as you may need to make updates to your template files."
3651
  msgstr ""
3652
 
3653
+ #: wpsc-core/wpsc-functions.php:266
3654
+ msgctxt "post type name"
3655
+ msgid "Products"
3656
  msgstr ""
3657
 
3658
+ #: wpsc-core/wpsc-functions.php:267
3659
+ msgctxt "post type singular name"
3660
+ msgid "Product"
3661
  msgstr ""
3662
 
3663
+ #: wpsc-core/wpsc-functions.php:268
3664
+ msgctxt "admin menu: add new product"
3665
+ msgid "Add New"
3666
  msgstr ""
3667
 
3668
+ #: wpsc-core/wpsc-functions.php:269
3669
+ msgid "Add New Product"
3670
  msgstr ""
3671
 
3672
+ #: wpsc-core/wpsc-functions.php:270
3673
+ msgid "Edit Product"
3674
  msgstr ""
3675
 
3676
+ #: wpsc-core/wpsc-functions.php:271
3677
+ msgid "New Product"
3678
  msgstr ""
3679
 
3680
+ #: wpsc-core/wpsc-functions.php:272
3681
+ msgid "View Product"
3682
  msgstr ""
3683
 
3684
+ #: wpsc-core/wpsc-functions.php:273
3685
+ msgid "Search Products"
3686
  msgstr ""
3687
 
3688
+ #: wpsc-core/wpsc-functions.php:274
3689
+ msgid "No products found"
3690
  msgstr ""
3691
 
3692
+ #: wpsc-core/wpsc-functions.php:275
3693
+ msgid "No products found in Trash"
3694
  msgstr ""
3695
 
3696
+ #: wpsc-core/wpsc-functions.php:277 wpsc-core/js/tinymce3/window.php:44
3697
+ msgid "Products"
3698
  msgstr ""
3699
 
3700
+ #: wpsc-core/wpsc-functions.php:306
3701
+ msgctxt "taxonomy general name"
3702
+ msgid "Product Tags"
 
3703
  msgstr ""
3704
 
3705
+ #: wpsc-core/wpsc-functions.php:307
3706
+ msgctxt "taxonomy singular name"
3707
+ msgid "Product Tag"
3708
  msgstr ""
3709
 
3710
+ #: wpsc-core/wpsc-functions.php:308
3711
+ msgid "Product Search Tags"
3712
  msgstr ""
3713
 
3714
+ #: wpsc-core/wpsc-functions.php:309
3715
+ msgid "All Product Tags"
3716
  msgstr ""
3717
 
3718
+ #: wpsc-core/wpsc-functions.php:310
3719
+ msgid "Edit Tag"
3720
  msgstr ""
3721
 
3722
+ #: wpsc-core/wpsc-functions.php:311
3723
+ msgid "Update Tag"
 
3724
  msgstr ""
3725
 
3726
+ #: wpsc-core/wpsc-functions.php:312
3727
+ msgid "Add new Product Tag"
3728
  msgstr ""
3729
 
3730
+ #: wpsc-core/wpsc-functions.php:313
3731
+ msgid "New Product Tag Name"
3732
  msgstr ""
3733
 
3734
+ #: wpsc-core/wpsc-functions.php:319
3735
+ msgctxt "slug, part of url"
3736
+ msgid "tagged"
3737
  msgstr ""
3738
 
3739
+ #: wpsc-core/wpsc-functions.php:325
3740
+ msgctxt "taxonomy general name"
3741
+ msgid "Categories"
3742
  msgstr ""
3743
 
3744
+ #: wpsc-core/wpsc-functions.php:326
3745
+ msgctxt "taxonomy singular name"
3746
+ msgid "Product Category"
3747
  msgstr ""
3748
 
3749
+ #: wpsc-core/wpsc-functions.php:327
3750
+ msgid "Search Product Categories"
3751
  msgstr ""
3752
 
3753
+ #: wpsc-core/wpsc-functions.php:328
3754
+ msgid "All Product Categories"
 
 
3755
  msgstr ""
3756
 
3757
+ #: wpsc-core/wpsc-functions.php:329
3758
+ msgid "Parent Product Category"
3759
+ msgstr ""
 
 
3760
 
3761
+ #: wpsc-core/wpsc-functions.php:330
3762
+ msgid "Parent Product Category:"
3763
  msgstr ""
3764
 
3765
+ #: wpsc-core/wpsc-functions.php:331
3766
+ msgid "Edit Product Category"
3767
  msgstr ""
3768
 
3769
+ #: wpsc-core/wpsc-functions.php:332
3770
+ msgid "Update Product Category"
3771
  msgstr ""
3772
 
3773
+ #: wpsc-core/wpsc-functions.php:333
3774
+ msgid "Add New Product Category"
3775
  msgstr ""
3776
 
3777
+ #: wpsc-core/wpsc-functions.php:334
3778
+ msgid "New Product Category Name"
3779
  msgstr ""
3780
 
3781
+ #: wpsc-core/wpsc-functions.php:345
3782
+ msgctxt "taxonomy general name"
3783
+ msgid "Variations"
3784
  msgstr ""
3785
 
3786
+ #: wpsc-core/wpsc-functions.php:346
3787
+ msgctxt "taxonomy singular name"
3788
+ msgid "Variation"
3789
  msgstr ""
3790
 
3791
+ #: wpsc-core/wpsc-functions.php:347
3792
+ msgid "Search Variations"
3793
  msgstr ""
3794
 
3795
+ #: wpsc-core/wpsc-functions.php:348
3796
+ msgid "All Variations"
 
3797
  msgstr ""
3798
 
3799
+ #: wpsc-core/wpsc-functions.php:349
3800
+ msgid "Parent Variation"
 
3801
  msgstr ""
3802
 
3803
+ #: wpsc-core/wpsc-functions.php:350
3804
+ msgid "Parent Variations:"
 
3805
  msgstr ""
3806
 
3807
+ #: wpsc-core/wpsc-functions.php:351
3808
+ msgid "Edit Variation"
 
3809
  msgstr ""
3810
 
3811
+ #: wpsc-core/wpsc-functions.php:352
3812
+ msgid "Update Variation"
 
3813
  msgstr ""
3814
 
3815
+ #: wpsc-core/wpsc-functions.php:353
3816
+ msgid "Add New Variation/Set"
 
3817
  msgstr ""
3818
 
3819
+ #: wpsc-core/wpsc-functions.php:354
3820
+ msgid "New Variation Name"
 
3821
  msgstr ""
3822
 
3823
+ #: wpsc-core/js/tinymce3/window.php:9
3824
+ msgid "You don't have permission to be doing that!"
 
3825
  msgstr ""
3826
 
3827
+ #: wpsc-core/js/tinymce3/window.php:43
3828
+ msgid "Category"
 
3829
  msgstr ""
3830
 
3831
+ #: wpsc-core/js/tinymce3/window.php:45
3832
+ msgid "Premium Upgrades"
3833
  msgstr ""
3834
 
3835
+ #: wpsc-core/js/tinymce3/window.php:55
3836
+ msgid "Select Category: "
 
3837
  msgstr ""
3838
 
3839
+ #: wpsc-core/js/tinymce3/window.php:58 wpsc-core/js/tinymce3/window.php:111
3840
+ msgid "No Category"
3841
  msgstr ""
3842
 
3843
+ #: wpsc-core/js/tinymce3/window.php:64 wpsc-core/js/tinymce3/window.php:118
3844
+ msgid "Select the category you would like to display with a Shortcode."
3845
  msgstr ""
3846
 
3847
+ #: wpsc-core/js/tinymce3/window.php:69
3848
+ msgid "Number of products per Page: "
3849
+ msgstr ""
 
 
3850
 
3851
+ #: wpsc-core/js/tinymce3/window.php:72
3852
+ msgid "Select the number of products you would like to display per page."
3853
+ msgstr ""
 
 
3854
 
3855
+ #: wpsc-core/js/tinymce3/window.php:77
3856
+ msgid "Sale Products:"
3857
+ msgstr ""
 
 
3858
 
3859
+ #: wpsc-core/js/tinymce3/window.php:82
3860
+ msgid "Add ALL sale products"
3861
+ msgstr ""
 
 
3862
 
3863
+ #: wpsc-core/js/tinymce3/window.php:83
3864
+ msgid "This will add all your products you have on sale to the page"
3865
  msgstr ""
3866
 
3867
+ #: wpsc-core/js/tinymce3/window.php:89
3868
+ msgid "Add sale products by category"
3869
  msgstr ""
3870
 
3871
+ #: wpsc-core/js/tinymce3/window.php:90
3872
  msgid ""
3873
+ "This will add all your products you have on sale from the selected category"
 
3874
  msgstr ""
3875
 
3876
+ #: wpsc-core/js/tinymce3/window.php:108
3877
+ msgid "Select Category"
3878
  msgstr ""
3879
 
3880
+ #: wpsc-core/js/tinymce3/window.php:112
3881
+ msgid "All Categories"
 
 
 
3882
  msgstr ""
3883
 
3884
+ #: wpsc-core/js/tinymce3/window.php:123
3885
+ msgid "Number of Products"
3886
  msgstr ""
3887
 
3888
+ #: wpsc-core/js/tinymce3/window.php:126
3889
+ msgid "Number of Products to be displayed in the slider."
3890
  msgstr ""
3891
 
3892
+ #: wpsc-core/js/tinymce3/window.php:132
3893
  msgid ""
3894
+ "You don't have the product slider installed, for a cool way to display your "
3895
+ "shop check out the <a href=\"http://getshopped.org/extend/premium-upgrades/"
3896
+ "premium-upgrades/product-slider-2010/\" target=\"_blank\">Product Slider</a>"
3897
  msgstr ""
3898
 
3899
+ #: wpsc-core/js/tinymce3/window.php:139
3900
+ msgid "Members and Capabilities"
3901
  msgstr ""
3902
 
3903
+ #: wpsc-core/js/tinymce3/window.php:144
3904
  msgid ""
3905
+ "<p> To create a preview on your restricted page put this shortcode at the "
3906
+ "top of your page. you can include html within this short code to display "
3907
+ "things like images "
 
 
 
3908
  msgstr ""
3909
 
3910
+ #: wpsc-core/js/tinymce3/window.php:145
3911
+ msgid "[preview] Preview In Here [/preview]"
3912
  msgstr ""
3913
 
3914
+ #: wpsc-core/js/tinymce3/window.php:149
3915
+ msgid ""
3916
+ " You don't have the Members and Capabilities plugin installed, to start "
3917
+ "managing your users and creating subscription for you site visit: <a href="
3918
+ "\"http://getshopped.org/extend/premium-upgrades/premium-upgrades/product-"
3919
+ "slider-2010/\" target=\"_blank\">Premium Upgrades</a>"
3920
  msgstr ""
3921
 
3922
+ #: wpsc-core/js/tinymce3/window.php:158
3923
+ msgid "Select a Product"
3924
+ msgstr ""
 
 
3925
 
3926
+ #: wpsc-core/js/tinymce3/window.php:161
3927
+ #: wpsc-includes/form-display.functions.php:215
3928
+ msgid "No Product"
3929
  msgstr ""
3930
 
3931
+ #: wpsc-core/js/tinymce3/window.php:167
3932
+ msgid "Select the product you would like to create a shortcode for."
3933
  msgstr ""
3934
 
3935
+ #: wpsc-core/js/tinymce3/window.php:175
3936
+ msgid "Shortcode:"
3937
  msgstr ""
3938
 
3939
+ #: wpsc-core/js/tinymce3/window.php:177
3940
+ msgid "Add a buy now button"
 
3941
  msgstr ""
3942
 
3943
+ #: wpsc-core/js/tinymce3/window.php:178
3944
  msgid ""
3945
+ "This adds a paypal buy now button for the product selected, this will take "
3946
+ "your customer straight to PayPal."
3947
  msgstr ""
3948
 
3949
+ #: wpsc-core/js/tinymce3/window.php:185
3950
+ msgid "Add an add to cart button"
 
 
3951
  msgstr ""
3952
 
3953
+ #: wpsc-core/js/tinymce3/window.php:186
3954
+ msgid "This adds an add to cart button for the product selected."
3955
  msgstr ""
3956
 
3957
+ #: wpsc-core/js/tinymce3/window.php:193
3958
+ msgid "Add product"
3959
  msgstr ""
3960
 
3961
+ #: wpsc-core/js/tinymce3/window.php:194
3962
+ msgid "This will add the selected product to your page."
 
 
 
3963
  msgstr ""
3964
 
3965
+ #: wpsc-core/js/tinymce3/window.php:207
3966
+ msgid "Insert"
 
 
 
 
3967
  msgstr ""
3968
 
3969
+ #: wp-shopping-cart.php:153
3970
  msgid ""
3971
+ "Looks like you're running an older version of WordPress, you need to be "
3972
+ "running at least WordPress 3.0 to use WP e-Commerce 3.8"
 
 
3973
  msgstr ""
3974
 
3975
+ #: wp-shopping-cart.php:153
3976
+ msgid "WP e-Commerce 3.8 not compatible"
 
 
 
3977
  msgstr ""
3978
 
3979
+ #: wpsc-theme/wpsc-list_view.php:81 wpsc-theme/wpsc-products_page.php:161
3980
+ #: wpsc-theme/wpsc-single_product.php:130 wpsc-includes/ajax.functions.php:417
3981
+ msgid "Product in stock"
3982
  msgstr ""
3983
 
3984
+ #: wpsc-theme/wpsc-list_view.php:83 wpsc-theme/wpsc-products_page.php:163
3985
+ #: wpsc-theme/wpsc-single_product.php:132
3986
+ msgid "Product not in stock"
3987
+ msgstr ""
3988
+
3989
+ #: wpsc-theme/wpsc-list_view.php:128 wpsc-theme/wpsc-grid_view.php:138
3990
+ #: wpsc-theme/wpsc-products_page.php:199
3991
+ #: wpsc-theme/wpsc-single_product.php:183
3992
+ msgid "Updating cart..."
3993
+ msgstr ""
3994
+
3995
+ #: wpsc-theme/wpsc-list_view.php:132 wpsc-theme/wpsc-single_product.php:187
3996
+ msgid "This product has sold out."
3997
+ msgstr ""
3998
+
3999
+ #: wpsc-theme/wpsc-list_view.php:145 wpsc-theme/wpsc-grid_view.php:158
4000
+ #: wpsc-theme/wpsc-products_page.php:230
4001
+ msgid "There are no products in this group."
4002
+ msgstr ""
4003
+
4004
+ #: wpsc-theme/wpsc-cart_widget.php:12
4005
+ #: wpsc-theme/wpsc-shopping_cart_page.php:18
4006
+ msgid "Product"
4007
  msgstr ""
4008
 
4009
+ #: wpsc-theme/wpsc-cart_widget.php:13
4010
+ msgid "Qty"
4011
  msgstr ""
4012
 
4013
+ #: wpsc-theme/wpsc-cart_widget.php:49
4014
+ msgid "%d item"
4015
+ msgid_plural "%d items"
4016
+ msgstr[0] ""
4017
+ msgstr[1] ""
4018
 
4019
+ #: wpsc-theme/wpsc-cart_widget.php:58
4020
+ msgid "Postage &amp; Tax "
 
 
4021
  msgstr ""
4022
 
4023
+ #: wpsc-theme/wpsc-cart_widget.php:67
4024
+ msgid "Empty Your Cart"
 
 
4025
  msgstr ""
4026
 
4027
+ #: wpsc-theme/wpsc-cart_widget.php:67
4028
+ msgid "Clear cart"
4029
  msgstr ""
4030
 
4031
+ #: wpsc-theme/wpsc-cart_widget.php:76
4032
+ msgid "Your shopping cart is empty"
4033
  msgstr ""
4034
 
4035
+ #: wpsc-theme/wpsc-cart_widget.php:77
4036
+ msgid "Visit Shop"
 
 
4037
  msgstr ""
4038
 
4039
+ #: wpsc-theme/wpsc-cart_widget.php:77
4040
+ msgid "Visit the shop"
 
 
4041
  msgstr ""
4042
 
4043
+ #: wpsc-theme/wpsc-grid_view.php:79 wpsc-theme/wpsc-products_page.php:224
4044
+ msgid "Sale"
 
 
4045
  msgstr ""
4046
 
4047
+ #: wpsc-theme/wpsc-grid_view.php:89 wpsc-theme/wpsc-products_page.php:172
4048
+ #: wpsc-theme/wpsc-single_product.php:140
4049
+ msgid "Old Price"
4050
  msgstr ""
4051
 
4052
+ #: wpsc-theme/wpsc-grid_view.php:109 wpsc-theme/wpsc-products_page.php:128
4053
+ #: wpsc-theme/wpsc-single_product.php:95
4054
+ msgid "Product Options"
4055
  msgstr ""
4056
 
4057
+ #: wpsc-theme/wpsc-grid_view.php:131
4058
+ msgid "Sorry, sold out!"
4059
  msgstr ""
4060
 
4061
+ #: wpsc-theme/wpsc-user-log.php:16
4062
+ msgid "Purchase History"
4063
  msgstr ""
4064
 
4065
+ #: wpsc-theme/wpsc-user-log.php:17
4066
+ msgid "Your Details"
4067
  msgstr ""
4068
 
4069
+ #: wpsc-theme/wpsc-user-log.php:18
4070
+ msgid "Your Downloads"
4071
  msgstr ""
4072
 
4073
+ #: wpsc-theme/wpsc-user-log.php:38
4074
+ msgid "Save Profile"
4075
  msgstr ""
4076
 
4077
+ #: wpsc-theme/wpsc-user-log.php:50
4078
+ msgid "File Names"
4079
  msgstr ""
4080
 
4081
+ #: wpsc-theme/wpsc-user-log.php:51
4082
+ msgid "Downloads Left"
 
 
4083
  msgstr ""
4084
 
4085
+ #: wpsc-theme/wpsc-user-log.php:87
4086
+ msgid "You have not purchased any downloadable products yet."
4087
  msgstr ""
4088
 
4089
+ #: wpsc-theme/wpsc-user-log.php:108
4090
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:639
4091
+ msgid "Payment Method"
4092
  msgstr ""
4093
 
4094
+ #: wpsc-theme/wpsc-user-log.php:121
4095
+ msgid "No transactions for this month."
4096
  msgstr ""
4097
 
4098
+ #: wpsc-theme/wpsc-user-log.php:134
4099
+ msgid "There have not been any purchases yet."
4100
  msgstr ""
4101
 
4102
+ #: wpsc-theme/wpsc-user-log.php:142
4103
+ msgid ""
4104
+ "You must be logged in to use this page. Please use the form below to login "
4105
+ "to your account."
4106
  msgstr ""
4107
 
4108
+ #: wpsc-theme/wpsc-user-log.php:146
4109
+ msgid "Username:"
 
 
 
4110
  msgstr ""
4111
 
4112
+ #: wpsc-theme/wpsc-user-log.php:150
4113
+ msgid "Password:"
4114
  msgstr ""
4115
 
4116
+ #: wpsc-theme/wpsc-user-log.php:156
4117
+ msgid "Remember me"
4118
  msgstr ""
4119
 
4120
+ #: wpsc-theme/wpsc-user-log.php:161
4121
+ msgid "Login &raquo;"
4122
  msgstr ""
4123
 
4124
+ #: wpsc-theme/wpsc-shopping_cart_page.php:10
4125
+ #: wpsc-theme/wpsc-transaction_results.php:24
4126
+ msgid "Oops, there is nothing in your cart."
4127
  msgstr ""
4128
 
4129
+ #: wpsc-theme/wpsc-shopping_cart_page.php:10
4130
+ #: wpsc-theme/wpsc-transaction_results.php:24
4131
+ msgid "Please visit our shop"
 
4132
  msgstr ""
4133
 
4134
+ #: wpsc-theme/wpsc-shopping_cart_page.php:15
4135
+ msgid "Please review your order"
4136
  msgstr ""
4137
 
4138
+ #: wpsc-theme/wpsc-shopping_cart_page.php:44
4139
+ msgid "No Image"
4140
  msgstr ""
4141
 
4142
+ #: wpsc-theme/wpsc-shopping_cart_page.php:60
4143
+ #: wpsc-theme/wpsc-shopping_cart_page.php:92
4144
+ msgid "Update"
4145
  msgstr ""
4146
 
4147
+ #: wpsc-theme/wpsc-shopping_cart_page.php:73
4148
+ msgid "Remove"
4149
  msgstr ""
4150
 
4151
+ #: wpsc-theme/wpsc-shopping_cart_page.php:85
4152
+ msgid "Coupon is not valid."
4153
  msgstr ""
4154
 
4155
+ #: wpsc-theme/wpsc-shopping_cart_page.php:88
4156
+ msgid "Enter coupon code"
 
 
4157
  msgstr ""
4158
 
4159
+ #: wpsc-theme/wpsc-shopping_cart_page.php:97
4160
+ msgid "Cost before shipping:"
4161
  msgstr ""
4162
 
4163
+ #: wpsc-theme/wpsc-shopping_cart_page.php:123
4164
+ msgid "Calculate Shipping Price"
4165
  msgstr ""
4166
 
4167
+ #: wpsc-theme/wpsc-shopping_cart_page.php:127
4168
+ msgid "Please choose a country below to calculate your shipping costs"
4169
  msgstr ""
4170
 
4171
+ #: wpsc-theme/wpsc-shopping_cart_page.php:135
4172
+ msgid "Please provide a Zipcode and click Calculate in order to continue."
4173
  msgstr ""
4174
 
4175
+ #: wpsc-theme/wpsc-shopping_cart_page.php:141
4176
+ msgid ""
4177
+ "Sorry, online ordering is unavailable to this destination and/or weight. "
4178
+ "Please double check your destination details."
4179
  msgstr ""
4180
 
4181
+ #: wpsc-theme/wpsc-shopping_cart_page.php:159
4182
+ msgid " - Choose a Shipping Rate"
 
 
4183
  msgstr ""
4184
 
4185
+ #: wpsc-theme/wpsc-shopping_cart_page.php:221
4186
+ msgid "You must sign in or register with us to continue with your purchase"
4187
  msgstr ""
4188
 
4189
+ #: wpsc-theme/wpsc-shopping_cart_page.php:225
4190
+ msgid "Sign in"
4191
  msgstr ""
4192
 
4193
+ #: wpsc-theme/wpsc-shopping_cart_page.php:231
4194
+ msgid "If you have bought from us before please sign in here to purchase"
4195
  msgstr ""
4196
 
4197
+ #: wpsc-theme/wpsc-shopping_cart_page.php:250
4198
+ msgid "Join up now"
4199
  msgstr ""
4200
 
4201
+ #: wpsc-theme/wpsc-shopping_cart_page.php:252
4202
+ msgid "Username"
4203
  msgstr ""
4204
 
4205
+ #: wpsc-theme/wpsc-shopping_cart_page.php:255
4206
+ msgid "Password"
4207
  msgstr ""
4208
 
4209
+ #: wpsc-theme/wpsc-shopping_cart_page.php:258
4210
+ msgid "E-mail"
4211
  msgstr ""
4212
 
4213
+ #: wpsc-theme/wpsc-shopping_cart_page.php:261
4214
+ msgid ""
4215
+ "Signing up is free and easy! please fill out your details your registration "
4216
+ "will happen automatically as you checkout. Don't forget to use your details "
4217
+ "to login with next time!"
4218
  msgstr ""
4219
 
4220
+ #: wpsc-theme/wpsc-shopping_cart_page.php:308
4221
+ msgid "Same as billing address:"
4222
  msgstr ""
4223
 
4224
+ #: wpsc-theme/wpsc-shopping_cart_page.php:310
4225
+ msgid "Your order will be shipped to the billing address"
4226
  msgstr ""
4227
 
4228
+ #: wpsc-theme/wpsc-shopping_cart_page.php:353
4229
+ msgid "Enter your email address"
4230
  msgstr ""
4231
 
4232
+ #: wpsc-theme/wpsc-shopping_cart_page.php:391
4233
+ msgid "How did you find us"
4234
  msgstr ""
4235
 
4236
+ #: wpsc-theme/wpsc-shopping_cart_page.php:394
4237
+ msgid "Word of mouth"
4238
  msgstr ""
4239
 
4240
+ #: wpsc-theme/wpsc-shopping_cart_page.php:395
4241
+ msgid "Advertising"
4242
  msgstr ""
4243
 
4244
+ #: wpsc-theme/wpsc-shopping_cart_page.php:396
4245
+ msgid "Internet"
4246
  msgstr ""
4247
 
4248
+ #: wpsc-theme/wpsc-shopping_cart_page.php:397
4249
+ msgid "Existing Customer"
4250
  msgstr ""
4251
 
4252
+ #: wpsc-theme/wpsc-shopping_cart_page.php:408
4253
+ msgid "Payment Type"
4254
  msgstr ""
4255
 
4256
+ #: wpsc-theme/wpsc-shopping_cart_page.php:443
4257
+ msgid ""
4258
+ "I agree to The <a class='thickbox' target='_blank' href='%s' "
4259
+ "class='termsandconds'>Terms and Conditions</a>"
4260
  msgstr ""
4261
 
4262
+ #: wpsc-theme/wpsc-shopping_cart_page.php:453
4263
+ msgid "Review and purchase"
4264
  msgstr ""
4265
 
4266
+ #: wpsc-theme/wpsc-shopping_cart_page.php:459
4267
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:561
4268
+ msgid "Total Shipping"
4269
  msgstr ""
4270
 
4271
+ #: wpsc-theme/wpsc-shopping_cart_page.php:497
4272
+ msgid "Purchase"
4273
  msgstr ""
4274
 
4275
+ #: wpsc-theme/wpsc-products_page.php:112
4276
+ msgid "More Details"
 
 
 
4277
  msgstr ""
4278
 
4279
+ #: wpsc-theme/wpsc-products_page.php:167
4280
+ #: wpsc-theme/wpsc-single_product.php:136
4281
+ #: wpsc-widgets/donations_widget.php:164
4282
+ msgid "Donation"
 
4283
  msgstr ""
4284
 
4285
+ #: wpsc-theme/wpsc-products_page.php:176
4286
+ #: wpsc-theme/wpsc-single_product.php:144
4287
+ msgid "You save"
 
 
4288
  msgstr ""
4289
 
4290
+ #: wpsc-theme/wpsc-single_product.php:79
4291
+ msgid "Personalize Your Product"
 
4292
  msgstr ""
4293
 
4294
+ #: wpsc-theme/wpsc-single_product.php:80
4295
  msgid ""
4296
+ "Complete this form to include a personalized message with your purchase."
 
4297
  msgstr ""
4298
 
4299
+ #: wpsc-theme/wpsc-single_product.php:88
4300
+ msgid "Upload a File"
 
 
4301
  msgstr ""
4302
 
4303
+ #: wpsc-theme/wpsc-single_product.php:89
4304
+ msgid "Select a file from your computer to include with this purchase."
4305
  msgstr ""
4306
 
4307
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:66
4308
+ msgid "Please enter a valid name"
4309
  msgstr ""
4310
 
4311
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:70
4312
+ msgid "Please enter a valid surname"
4313
  msgstr ""
4314
 
4315
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:74
4316
+ msgid "Please enter a valid email address"
4317
  msgstr ""
4318
 
4319
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:77
4320
+ msgid "Address 1"
4321
  msgstr ""
4322
 
4323
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:78
4324
+ msgid "Address 2"
4325
  msgstr ""
4326
 
4327
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:79
4328
+ msgid "Please enter a valid address"
4329
+ msgstr ""
4330
+
4331
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:83
4332
+ msgid "Please enter your town or city."
4333
  msgstr ""
4334
 
4335
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:87
4336
+ msgid "Please enter a valid phone number"
4337
  msgstr ""
4338
 
4339
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:91
4340
+ msgid "Please select your country from the list."
 
 
4341
  msgstr ""
4342
 
4343
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:95
4344
+ msgid "Please enter a valid"
 
4345
  msgstr ""
4346
 
4347
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:109
4348
+ msgid "Thanks, your changes have been saved."
 
4349
  msgstr ""
4350
 
4351
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:423
4352
+ msgid "Order Status"
4353
  msgstr ""
4354
 
4355
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:462
4356
+ msgid "Order Details"
 
 
4357
  msgstr ""
4358
 
4359
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:484
4360
+ msgid "GST"
 
 
4361
  msgstr ""
4362
 
4363
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:562
4364
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:252
4365
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:253
4366
+ msgid "Total Tax"
4367
  msgstr ""
4368
 
4369
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:563
4370
+ msgid "Final Total"
 
 
 
4371
  msgstr ""
4372
 
4373
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:584
4374
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:313
4375
+ msgid "Customer Details"
 
4376
  msgstr ""
4377
 
4378
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:640
4379
+ msgid "Purchase #"
4380
+ msgstr ""
 
 
4381
 
4382
+ #: wpsc-theme/functions/wpsc-user_log_functions.php:642
4383
+ msgid "Transaction Id"
4384
  msgstr ""
4385
 
4386
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:57
4387
+ msgid ""
4388
+ "Sorry your transaction was not accepted.<br /><a href=\"%1$s\">Click here to "
4389
+ "go back to checkout page</a>."
4390
  msgstr ""
4391
 
4392
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:103
4393
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:104
4394
+ msgid "The Transaction was successful"
4395
  msgstr ""
4396
 
4397
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:183
4398
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:184
4399
+ msgid "Click to download"
4400
  msgstr ""
4401
 
4402
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:195
4403
+ msgid " - Shipping: %s\n"
4404
  msgstr ""
4405
 
4406
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:199
4407
+ msgid " &nbsp; Shipping: %s\n"
4408
  msgstr ""
4409
 
4410
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:237
4411
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:255
4412
+ msgid "Total Shipping: %s\n"
4413
  msgstr ""
4414
 
4415
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:239
4416
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:257
4417
+ msgid "Total: %s\n"
4418
  msgstr ""
4419
 
4420
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:259
4421
+ msgid "Purchase # %s\n"
4422
  msgstr ""
4423
 
4424
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:263
4425
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:264
4426
+ msgid "Your Transaction ID"
4427
  msgstr ""
4428
 
4429
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:265
4430
+ msgid "Transaction ID"
4431
  msgstr ""
4432
 
4433
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:301
4434
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:302
4435
+ msgid ""
4436
+ "Thank you, your purchase is pending, you will be sent an email once the "
4437
+ "order clears."
4438
  msgstr ""
4439
 
4440
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:304
4441
+ msgid "Order Pending: Payment Required"
4442
  msgstr ""
4443
 
4444
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:337
4445
+ msgid "Delivery State"
4446
  msgstr ""
4447
 
4448
+ #: wpsc-theme/functions/wpsc-transaction_results_functions.php:352
4449
+ msgid "Purchase Report"
4450
  msgstr ""
4451
 
4452
+ #: wpsc-widgets/product_tag_widget.php:19
4453
+ msgid "Product Tags Widget"
4454
  msgstr ""
4455
 
4456
+ #: wpsc-widgets/product_tag_widget.php:22
4457
+ #: wpsc-widgets/product_tag_widget.php:41
4458
+ msgid "Product Tags"
4459
  msgstr ""
4460
 
4461
+ #: wpsc-widgets/product_tag_widget.php:84 wpsc-widgets/donations_widget.php:95
4462
+ #: wpsc-widgets/admin_menu_widget.php:85
4463
+ #: wpsc-widgets/shopping_cart_widget.php:137
4464
+ #: wpsc-widgets/latest_product_widget.php:87
4465
+ #: wpsc-widgets/category_widget.php:128 wpsc-widgets/price_range_widget.php:84
4466
+ #: wpsc-widgets/specials_widget.php:95
4467
+ msgid "Title:"
4468
  msgstr ""
4469
 
4470
+ #: wpsc-widgets/donations_widget.php:19
4471
+ msgid "Donations Widget"
 
 
4472
  msgstr ""
4473
 
4474
+ #: wpsc-widgets/donations_widget.php:22 wpsc-widgets/donations_widget.php:49
4475
+ #: wpsc-widgets/donations_widget.php:87
4476
+ msgid "Product Donations"
4477
  msgstr ""
4478
 
4479
+ #: wpsc-widgets/admin_menu_widget.php:18
4480
+ msgid "Admin Menu Widget"
4481
  msgstr ""
4482
 
4483
+ #: wpsc-widgets/admin_menu_widget.php:21 wpsc-widgets/admin_menu_widget.php:41
4484
+ msgid "Admin Menu"
4485
  msgstr ""
4486
 
4487
+ #: wpsc-widgets/shopping_cart_widget.php:19
4488
+ msgid "Shopping Cart Widget"
4489
  msgstr ""
4490
 
4491
+ #: wpsc-widgets/shopping_cart_widget.php:22
4492
+ #: wpsc-widgets/shopping_cart_widget.php:60
4493
+ #: wpsc-widgets/shopping_cart_widget.php:124
4494
+ #: wpsc-includes/shopping_cart_functions.php:44
4495
+ #: wpsc-includes/shopping_cart_functions.php:52
4496
+ #: wpsc-includes/shopping_cart_functions.php:69
4497
+ msgid "Shopping Cart"
4498
  msgstr ""
4499
 
4500
+ #: wpsc-widgets/shopping_cart_widget.php:78
4501
+ #: wpsc-widgets/shopping_cart_widget.php:83
4502
+ msgid "Loading..."
4503
  msgstr ""
4504
 
4505
+ #: wpsc-widgets/shopping_cart_widget.php:143
4506
+ msgid "Use Sliding Cart:"
4507
  msgstr ""
4508
 
4509
+ #: wpsc-widgets/latest_product_widget.php:15
4510
+ msgid "Latest Products Widget"
4511
  msgstr ""
4512
 
4513
+ #: wpsc-widgets/latest_product_widget.php:16
4514
+ #: wpsc-widgets/latest_product_widget.php:31
4515
+ msgid "Latest Products"
 
4516
  msgstr ""
4517
 
4518
+ #: wpsc-widgets/latest_product_widget.php:92
4519
+ #: wpsc-widgets/specials_widget.php:99
4520
+ msgid "Number of products to show:"
4521
  msgstr ""
4522
 
4523
+ #: wpsc-widgets/latest_product_widget.php:103
4524
+ #: wpsc-widgets/category_widget.php:151
4525
+ msgid "Width:"
4526
  msgstr ""
4527
 
4528
+ #: wpsc-widgets/latest_product_widget.php:105
4529
+ #: wpsc-widgets/category_widget.php:153
4530
+ msgid "Height:"
4531
  msgstr ""
4532
 
4533
+ #: wpsc-widgets/category_widget.php:17
4534
+ msgid "Product Grouping Widget"
4535
  msgstr ""
4536
 
4537
+ #: wpsc-widgets/category_widget.php:19 wpsc-widgets/category_widget.php:34
4538
+ msgid "Product Categories"
 
 
4539
  msgstr ""
4540
 
4541
+ #: wpsc-widgets/category_widget.php:133
4542
+ msgid "Show Categories"
4543
  msgstr ""
4544
 
4545
+ #: wpsc-widgets/category_widget.php:135
4546
+ msgid "(leave all unchecked if you want to display all)"
4547
  msgstr ""
4548
 
4549
+ #: wpsc-widgets/category_widget.php:148
4550
+ msgid " Show N/A when No Image Available"
4551
  msgstr ""
4552
 
4553
+ #: wpsc-widgets/tagging_functions.php:94
4554
+ msgid "%d topic"
4555
+ msgid_plural "%d topics"
4556
+ msgstr[0] ""
4557
+ msgstr[1] ""
4558
+
4559
+ #: wpsc-widgets/price_range_widget.php:19
4560
+ msgid "Price Range Widget"
4561
  msgstr ""
4562
 
4563
+ #: wpsc-widgets/price_range_widget.php:22
4564
+ #: wpsc-widgets/price_range_widget.php:41
4565
+ msgid "Price Range"
4566
  msgstr ""
4567
 
4568
+ #: wpsc-widgets/price_range_widget.php:136
4569
+ msgid "Show All"
4570
  msgstr ""
4571
 
4572
+ #: wpsc-widgets/specials_widget.php:19
4573
+ msgid "Product Specials Widget"
4574
  msgstr ""
4575
 
4576
+ #: wpsc-widgets/specials_widget.php:22 wpsc-widgets/specials_widget.php:41
4577
+ msgid "Product Specials"
 
 
 
 
4578
  msgstr ""
4579
 
4580
+ #: wpsc-widgets/specials_widget.php:104
4581
+ msgid "Show Description"
4582
+ msgstr ""
4583
+
4584
+ #: wpsc-widgets/specials_widget.php:194
4585
+ msgid "From"
4586
  msgstr ""
4587
 
4588
  #: wpsc-updates/currency_list.php:2
7072
  "total_shipping%%total_price%"
7073
  msgstr ""
7074
 
7075
+ #: wpsc-includes/misc.functions.php:67
7076
+ msgid "<strong>ERROR</strong>: Please enter a username."
7077
+ msgstr ""
7078
+
7079
+ #: wpsc-includes/misc.functions.php:69
7080
  msgid ""
7081
+ "<strong>ERROR</strong>: This username is invalid. Please enter a valid "
7082
+ "username."
7083
  msgstr ""
7084
 
7085
+ #: wpsc-includes/misc.functions.php:72
7086
+ msgid ""
7087
+ "<strong>ERROR</strong>: This username is already registered, please choose "
7088
+ "another one."
7089
+ msgstr ""
7090
+
7091
+ #: wpsc-includes/misc.functions.php:77
7092
+ msgid "<strong>ERROR</strong>: Please type your e-mail address."
7093
+ msgstr ""
7094
+
7095
+ #: wpsc-includes/misc.functions.php:79
7096
+ msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
7097
+ msgstr ""
7098
+
7099
+ #: wpsc-includes/misc.functions.php:82
7100
+ msgid ""
7101
+ "<strong>ERROR</strong>: This email is already registered, please choose "
7102
+ "another one."
7103
+ msgstr ""
7104
+
7105
+ #: wpsc-includes/misc.functions.php:90
7106
+ msgid ""
7107
+ "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a "
7108
+ "href=\"mailto:%s\">webmaster</a> !"
7109
+ msgstr ""
7110
+
7111
+ #: wpsc-includes/misc.functions.php:764
7112
+ msgid ""
7113
+ "Please refrain from uploading images larger than <strong>%d x %d</strong> "
7114
+ "pixels"
7115
+ msgstr ""
7116
+
7117
+ #: wpsc-includes/theme.functions.php:176
7118
+ msgid ""
7119
+ "<strong>WP e-Commerce is ready</strong>. If you plan on editing the look of "
7120
+ "your site, you should <a href=\"%1s\">update your active theme</a> to "
7121
+ "include the additional WP e-Commerce files. <a href=\"%2s\">Click here</a> "
7122
+ "to ignore and remove this box."
7123
+ msgstr ""
7124
+
7125
+ #: wpsc-includes/theme.functions.php:194
7126
+ msgid ""
7127
+ "<strong>Your WP e-Commerce data needs to be updated</strong>. You've "
7128
+ "upgraded from a previous version of the WP e-Commerce plugin, and your store "
7129
+ "needs updating.<br>You should <a href=\"%1s\">update your database</a> for "
7130
+ "your store to continue working."
7131
+ msgstr ""
7132
+
7133
+ #: wpsc-includes/theme.functions.php:231
7134
+ msgid ""
7135
+ "<strong>Store Settings</strong>: You have set 'users must register before "
7136
+ "checkout', for this to work you need to check 'Anyone can register' in your "
7137
+ "WordPress <a href=\"%1s\">General Settings</a>."
7138
+ msgstr ""
7139
+
7140
+ #: wpsc-includes/product-template.php:130
7141
+ msgid "Pages: "
7142
+ msgstr ""
7143
+
7144
+ #: wpsc-includes/product-template.php:135
7145
+ #: wpsc-includes/product-template.php:190
7146
+ msgid "First Page"
7147
+ msgstr ""
7148
+
7149
+ #: wpsc-includes/product-template.php:135
7150
+ #: wpsc-includes/product-template.php:190
7151
+ msgid "&laquo; First"
7152
+ msgstr ""
7153
+
7154
+ #: wpsc-includes/product-template.php:141
7155
+ #: wpsc-includes/product-template.php:143
7156
+ #: wpsc-includes/product-template.php:196
7157
+ #: wpsc-includes/product-template.php:198
7158
+ msgid "Previous Page"
7159
+ msgstr ""
7160
+
7161
+ #: wpsc-includes/product-template.php:141
7162
+ #: wpsc-includes/product-template.php:143
7163
+ #: wpsc-includes/product-template.php:196
7164
+ #: wpsc-includes/product-template.php:198
7165
+ msgid "&lt; Previous"
7166
+ msgstr ""
7167
+
7168
+ #: wpsc-includes/product-template.php:151
7169
+ #: wpsc-includes/product-template.php:153
7170
+ #: wpsc-includes/product-template.php:170
7171
+ #: wpsc-includes/product-template.php:206
7172
+ #: wpsc-includes/product-template.php:208
7173
+ #: wpsc-includes/product-template.php:225
7174
+ msgid "Page %s"
7175
+ msgstr ""
7176
+
7177
+ #: wpsc-includes/product-template.php:181
7178
+ #: wpsc-includes/product-template.php:236
7179
+ msgid "Next Page"
7180
+ msgstr ""
7181
+
7182
+ #: wpsc-includes/product-template.php:181
7183
+ #: wpsc-includes/product-template.php:236
7184
+ msgid "Next &gt;"
7185
+ msgstr ""
7186
+
7187
+ #: wpsc-includes/product-template.php:185
7188
+ #: wpsc-includes/product-template.php:240
7189
+ msgid "Last Page"
7190
+ msgstr ""
7191
+
7192
+ #: wpsc-includes/product-template.php:185
7193
+ #: wpsc-includes/product-template.php:240
7194
+ msgid "Last &raquo;"
7195
+ msgstr ""
7196
+
7197
+ #: wpsc-includes/product-template.php:406
7198
+ msgid " from %s"
7199
+ msgstr ""
7200
+
7201
+ #: wpsc-includes/product-template.php:681
7202
+ msgid "Read the rest of this entry &raquo;"
7203
+ msgstr ""
7204
+
7205
+ #: wpsc-includes/product-template.php:1461
7206
+ msgid "Avg. Customer Rating"
7207
+ msgstr ""
7208
+
7209
+ #: wpsc-includes/product-template.php:1467
7210
+ msgid "Your Rating"
7211
+ msgstr ""
7212
+
7213
+ #: wpsc-includes/product-template.php:1468
7214
+ msgid "Saved"
7215
+ msgstr ""
7216
+
7217
+ #: wpsc-includes/product-template.php:1523
7218
+ msgid "Save"
7219
+ msgstr ""
7220
+
7221
+ #: wpsc-includes/checkout.class.php:750
7222
+ msgid "Please enter a valid card number."
7223
+ msgstr ""
7224
+
7225
+ #: wpsc-includes/checkout.class.php:760
7226
+ msgid "Please enter a valid expiry date."
7227
+ msgstr ""
7228
+
7229
+ #: wpsc-includes/checkout.class.php:768 wpsc-includes/checkout.class.php:778
7230
+ msgid "Please enter a valid CVV."
7231
+ msgstr ""
7232
+
7233
+ #: wpsc-includes/checkout.class.php:844
7234
+ msgid ""
7235
+ "Please enter a valid <span class=\"wpsc_error_msg_field_name\">%s</span>."
7236
+ msgstr ""
7237
+
7238
+ #: wpsc-includes/purchaselogs.class.php:566
7239
+ msgid "Release downloads locked to this IP address %s"
7240
+ msgstr ""
7241
+
7242
+ #: wpsc-includes/purchaselogs.class.php:761
7243
+ msgid "Thanks, the purchase log record has been deleted"
7244
+ msgstr ""
7245
+
7246
+ #: wpsc-includes/upgrades.php:122
7247
+ msgid "Visit upgrade homepage"
7248
+ msgstr ""
7249
+
7250
+ #: wpsc-includes/upgrades.php:127
7251
+ msgid "Visit author homepage"
7252
+ msgstr ""
7253
+
7254
+ #: wpsc-includes/upgrades.php:131
7255
+ msgid "By %s"
7256
+ msgstr ""
7257
+
7258
+ #: wpsc-includes/display.functions.php:83
7259
+ msgid "People who bought this item also bought"
7260
+ msgstr ""
7261
+
7262
+ #: wpsc-includes/display.functions.php:134
7263
+ msgid "Updating"
7264
+ msgstr ""
7265
+
7266
+ #: wpsc-includes/display.functions.php:153
7267
+ msgid "Go to Checkout"
7268
+ msgstr ""
7269
+
7270
+ #: wpsc-includes/display.functions.php:154
7271
+ msgid "Continue Shopping"
7272
+ msgstr ""
7273
+
7274
+ #: wpsc-includes/processing.functions.php:122
7275
+ msgid "%s is out of stock"
7276
+ msgstr ""
7277
+
7278
+ #: wpsc-includes/processing.functions.php:122
7279
+ msgid "Remaining stock of %s is 0. Product was unpublished."
7280
+ msgstr ""
7281
+
7282
+ #: wpsc-includes/processing.functions.php:288
7283
+ msgid "This product has no available stock"
7284
+ msgstr ""
7285
+
7286
+ #: wpsc-includes/processing.functions.php:311
7287
+ msgid "One or more of this products variations are out of stock."
7288
+ msgstr ""
7289
+
7290
+ #: wpsc-includes/processing.functions.php:345
7291
+ msgid ""
7292
+ " does not support products without a weight set. Please either disable "
7293
+ "shipping for this product or give it a weight"
7294
+ msgstr ""
7295
+
7296
+ #: wpsc-includes/form-display.functions.php:72
7297
+ msgid "No Parent"
7298
+ msgstr ""
7299
+
7300
+ #: wpsc-includes/form-display.functions.php:173
7301
+ msgid "File(s) attached: "
7302
+ msgstr ""
7303
+
7304
+ #: wpsc-includes/form-display.functions.php:190
7305
+ msgid ""
7306
+ "There are no files attached to this product. Upload a new file or select "
7307
+ "from other product files."
7308
+ msgstr ""
7309
+
7310
+ #: wpsc-includes/form-display.functions.php:209
7311
+ msgid "Choose a downloadable file for this variation"
7312
+ msgstr ""
7313
+
7314
+ #: wpsc-includes/ajax.functions.php:79
7315
+ msgid "You just added \"[product_name]\" to your cart."
7316
+ msgstr ""
7317
+
7318
+ #: wpsc-includes/ajax.functions.php:82
7319
+ msgid "Sorry, but you cannot add zero items to your cart"
7320
+ msgstr ""
7321
+
7322
+ #: wpsc-includes/ajax.functions.php:85
7323
+ msgid "Sorry, but there is only %s of this item in stock."
7324
+ msgid_plural "Sorry, but there are only %s of this item in stock."
7325
+ msgstr[0] ""
7326
+ msgstr[1] ""
7327
+
7328
+ #: wpsc-includes/ajax.functions.php:87
7329
+ msgid "Sorry, but the item \"%s\" is out of stock."
7330
+ msgstr ""
7331
+
7332
+ #: wpsc-includes/ajax.functions.php:413
7333
+ msgid "Sorry, but this variation is out of stock."
7334
+ msgstr ""
7335
+
7336
+ #: wpsc-includes/ajax.functions.php:414
7337
+ msgid "Variation not in stock"
7338
+ msgstr ""
7339
+
7340
+ #: wpsc-includes/ajax.functions.php:522
7341
+ msgid ""
7342
+ "Please agree to the terms and conditions, otherwise we cannot process your "
7343
+ "order."
7344
+ msgstr ""
7345
+
7346
+ #: wpsc-includes/ajax.functions.php:536
7347
+ msgid ""
7348
+ "%s cannot be shipped to %s. To continue with your transaction please remove "
7349
+ "this product from the list below."
7350
+ msgstr ""
7351
+
7352
+ #: wpsc-includes/ajax.functions.php:555
7353
+ msgid ""
7354
+ "You must select a shipping method, otherwise we cannot process your order."
7355
+ msgstr ""
7356
+
7357
+ #: wpsc-includes/ajax.functions.php:559
7358
+ msgid "Please enter a Zipcode and click calculate to proceed"
7359
+ msgstr ""
7360
+
7361
+ #: wpsc-includes/ajax.functions.php:948
7362
+ msgid "Invalid Image parameters"
7363
+ msgstr ""
7364
+
7365
+ #: wpsc-includes/ajax.functions.php:976 wpsc-includes/ajax.functions.php:993
7366
+ #: wpsc-includes/ajax.functions.php:1066
7367
+ msgid ""
7368
+ "This download is no longer valid, Please contact the site administrator for "
7369
+ "more information."
7370
+ msgstr ""
7371
+
7372
+ #: wpsc-includes/variations.class.php:176
7373
+ #: wpsc-includes/variations.class.php:179
7374
+ #: wpsc-includes/variations.class.php:255
7375
+ #: wpsc-includes/variations.class.php:258
7376
+ msgid "Invalid Taxonomy"
7377
+ msgstr ""
7378
+
7379
+ #: wpsc-includes/rss_template.php:7
7380
+ msgid "WP e-Commerce"
7381
  msgstr ""
wpsc-shipping/flatrate.php CHANGED
@@ -121,7 +121,7 @@ class flatrate {
121
 
122
  if ($flatrates != '') {
123
 
124
- if ($_SESSION['quote_shipping_method'] == $this->internal_name) {
125
 
126
  if ($_SESSION['quote_shipping_option'] != "Flat Rate") {
127
  $_SESSION['quote_shipping_option'] = null;
121
 
122
  if ($flatrates != '') {
123
 
124
+ if (isset($_SESSION['quote_shipping_method']) && $_SESSION['quote_shipping_method'] == $this->internal_name) {
125
 
126
  if ($_SESSION['quote_shipping_option'] != "Flat Rate") {
127
  $_SESSION['quote_shipping_option'] = null;
wpsc-taxes/models/taxes.class.php CHANGED
@@ -184,21 +184,23 @@ class wpec_taxes {
184
  * percentage rate for
185
  * */
186
  function wpec_taxes_get_included_rate( $taxes_band_index, $country_code, $region_code='' ) {
187
- //set the tax_rate
188
- $tax_rate = 0;
189
-
190
- //get the tax band
191
  $tax_band = $this->wpec_taxes_get_band_from_index( $taxes_band_index );
192
-
 
193
  //set the tax rate depending on product rate settings
194
- switch ( $this->wpec_taxes_get_product() ) {
195
- case 'add':
196
- $rate_array = $this->wpec_taxes_get_rate( $country_code, $region_code );
197
- $tax_rate += $rate_array['rate'];
198
- case 'replace':
199
- $tax_rate += $tax_band['rate'];
200
- break;
201
- }// switch
 
 
 
 
202
  //return tax for this item
203
  return $tax_rate;
204
  } // wpec_taxes_get_included_rate
184
  * percentage rate for
185
  * */
186
  function wpec_taxes_get_included_rate( $taxes_band_index, $country_code, $region_code='' ) {
187
+ //get the tax band and tax rate
 
 
 
188
  $tax_band = $this->wpec_taxes_get_band_from_index( $taxes_band_index );
189
+ $rate_array = $this->wpec_taxes_get_rate( $country_code, $region_code );
190
+
191
  //set the tax rate depending on product rate settings
192
+ if(isset($tax_band['rate']))
193
+ switch ( $this->wpec_taxes_get_product() ) {
194
+ case 'add':
195
+ $tax_rate = $rate_array['rate'] + $tax_band['rate'];
196
+ break;
197
+ case 'replace':
198
+ default:
199
+ $tax_rate = $tax_band['rate'];
200
+ break;
201
+ }// switch
202
+ else
203
+ $tax_rate = $rate_array['rate'];
204
  //return tax for this item
205
  return $tax_rate;
206
  } // wpec_taxes_get_included_rate
wpsc-theme/functions/wpsc-transaction_results_functions.php CHANGED
@@ -121,13 +121,11 @@ function transaction_results( $sessionid, $display_to_screen = true, $transactio
121
  $product_list = $product_list_html = $report_product_list = '';
122
 
123
  $cart = $wpdb->get_results( "SELECT * FROM `" . WPSC_TABLE_CART_CONTENTS . "` WHERE `purchaseid` = '{$purchase_log['id']}'" , ARRAY_A );
124
- //echo '<pre>'.print_r($wpsc_cart,1).'</pre>';
125
  if ( ($cart != null) && ($errorcode == 0) ) {
126
  $total_shipping = '';
127
  foreach ( $cart as $row ) {
128
  $link = array( );
129
- if ( $purchase_log['email_sent'] != 1 )
130
- $wpdb->update(WPSC_TABLE_DOWNLOAD_STATUS, array('active' => '1'), array('cartid' => $row['id'], 'purchid'=>$purchase_log['id']) );
131
  do_action( 'wpsc_transaction_result_cart_item', array( "purchase_id" => $purchase_log['id'], "cart_item" => $row, "purchase_log" => $purchase_log ) );
132
 
133
  if ( $is_transaction ) {
@@ -288,10 +286,10 @@ function transaction_results( $sessionid, $display_to_screen = true, $transactio
288
  $message_html = str_replace( '%shop_name%', get_option( 'blogname' ), $message_html );
289
  $message_html = str_replace( '%find_us%', $purchase_log['find_us'], $message_html );
290
 
291
- if ( !empty($email) && ($purchase_log['email_sent'] != 1 || $resend_email) ) {
292
- $wpdb->update(WPSC_TABLE_PURCHASE_LOGS, array('email_sent' => '1'), array('id' => $purchase_log['id']) );
293
  add_filter( 'wp_mail_from', 'wpsc_replace_reply_address', 0 );
294
  add_filter( 'wp_mail_from_name', 'wpsc_replace_reply_name', 0 );
 
295
 
296
  if ( !$is_transaction ) {
297
 
@@ -348,8 +346,10 @@ function transaction_results( $sessionid, $display_to_screen = true, $transactio
348
 
349
  //echo '======REPORT======<br />'.$report.'<br />';
350
  //echo '======EMAIL======<br />'.$message.'<br />';
351
- if ( (get_option( 'purch_log_email' ) != null) && ($purchase_log['email_sent'] != 1) )
352
  wp_mail( get_option( 'purch_log_email' ), __( 'Purchase Report', 'wpsc' ), $report );
 
 
353
 
354
  /// Adjust stock and empty the cart
355
  $wpsc_cart->submit_stock_claims( $purchase_log['id'] );
121
  $product_list = $product_list_html = $report_product_list = '';
122
 
123
  $cart = $wpdb->get_results( "SELECT * FROM `" . WPSC_TABLE_CART_CONTENTS . "` WHERE `purchaseid` = '{$purchase_log['id']}'" , ARRAY_A );
 
124
  if ( ($cart != null) && ($errorcode == 0) ) {
125
  $total_shipping = '';
126
  foreach ( $cart as $row ) {
127
  $link = array( );
128
+ $wpdb->update(WPSC_TABLE_DOWNLOAD_STATUS, array('active' => '1'), array('cartid' => $row['id'], 'purchid'=>$purchase_log['id']) );
 
129
  do_action( 'wpsc_transaction_result_cart_item', array( "purchase_id" => $purchase_log['id'], "cart_item" => $row, "purchase_log" => $purchase_log ) );
130
 
131
  if ( $is_transaction ) {
286
  $message_html = str_replace( '%shop_name%', get_option( 'blogname' ), $message_html );
287
  $message_html = str_replace( '%find_us%', $purchase_log['find_us'], $message_html );
288
 
289
+ if ( !empty($email) ) {
 
290
  add_filter( 'wp_mail_from', 'wpsc_replace_reply_address', 0 );
291
  add_filter( 'wp_mail_from_name', 'wpsc_replace_reply_name', 0 );
292
+ $message = apply_filters('wpsc_email_message', $message, $report_id, $product_list, $total_tax, $total_shipping_email, $total_price_email);
293
 
294
  if ( !$is_transaction ) {
295
 
346
 
347
  //echo '======REPORT======<br />'.$report.'<br />';
348
  //echo '======EMAIL======<br />'.$message.'<br />';
349
+ if ( (get_option( 'purch_log_email' ) != null) && ($purchase_log['email_sent'] != 1) ){
350
  wp_mail( get_option( 'purch_log_email' ), __( 'Purchase Report', 'wpsc' ), $report );
351
+ $wpdb->update(WPSC_TABLE_PURCHASE_LOGS, array('email_sent' => '1'), array('id' => $purchase_log['id']) );
352
+ }
353
 
354
  /// Adjust stock and empty the cart
355
  $wpsc_cart->submit_stock_claims( $purchase_log['id'] );
wpsc-theme/functions/wpsc-user_log_functions.php CHANGED
@@ -92,7 +92,7 @@ function validate_form_data() {
92
  break;
93
 
94
  default:
95
- $bad_input_message .= __( 'Please enter a valid', 'wpsc' ) . " " . strtolower( $form_data['name'] ) . ".";
96
  break;
97
  }
98
  $bad_input_message .= "<br />";
@@ -240,8 +240,6 @@ function wpsc_display_form_fields() {
240
  elseif( isset($shipping_form_field) )
241
  echo "<br /><select name='collected_data[" . $shipping_form_field['id'] . "][1]'>" . nzshpcrt_region_list( $country_code, $meta_data[$shipping_form_field['id']] ) . "</select>";
242
  break;
243
- echo '<pre>'.print_r($shipping_form_field,1).'</pre>';
244
-
245
  case "email":
246
  echo "<input type='text' value='" . $meta_data[$form_field['id']] . "' name='collected_data[" . $form_field['id'] . "]' />";
247
  break;
92
  break;
93
 
94
  default:
95
+ $bad_input_message .= sprintf(__( 'Please enter a valid <span class="wpsc_error_msg_field_name">%s</span>.', 'wpsc' ), esc_html($form_data['name']) );
96
  break;
97
  }
98
  $bad_input_message .= "<br />";
240
  elseif( isset($shipping_form_field) )
241
  echo "<br /><select name='collected_data[" . $shipping_form_field['id'] . "][1]'>" . nzshpcrt_region_list( $country_code, $meta_data[$shipping_form_field['id']] ) . "</select>";
242
  break;
 
 
243
  case "email":
244
  echo "<input type='text' value='" . $meta_data[$form_field['id']] . "' name='collected_data[" . $form_field['id'] . "]' />";
245
  break;
wpsc-theme/wpsc-featured_product.php CHANGED
@@ -1,7 +1,10 @@
1
  <?php
2
  foreach ( $query as $product ) :
3
  setup_postdata( $product );
4
-
 
 
 
5
  ?>
6
  <div class="wpsc_container wpsc_featured">
7
  <div class="featured_product_display">
@@ -30,4 +33,6 @@ foreach ( $query as $product ) :
30
  </div>
31
  </div>
32
 
33
- <?php endforeach; ?>
 
 
1
  <?php
2
  foreach ( $query as $product ) :
3
  setup_postdata( $product );
4
+
5
+ global $post;
6
+ $old_post = $post;
7
+ $post = $product;
8
  ?>
9
  <div class="wpsc_container wpsc_featured">
10
  <div class="featured_product_display">
33
  </div>
34
  </div>
35
 
36
+ <?php endforeach;
37
+ $post = $old_post;
38
+ ?>
wpsc-theme/wpsc-single_product.php CHANGED
@@ -152,11 +152,11 @@
152
  <?php endif; ?>
153
  <?php endif; ?>
154
  </div><!--close wpsc_product_price-->
155
- <?php
156
- if ( function_exists( 'wpsc_akst_share_link' ) && ( get_option( 'wpsc_share_this' ) == 1 ) )
157
- echo wpsc_akst_share_link('return');
158
- ?>
159
-
160
  <input type="hidden" value="add_to_cart" name="wpsc_ajax_action" />
161
  <input type="hidden" value="<?php echo wpsc_the_product_id(); ?>" name="product_id" />
162
  <?php if( wpsc_product_is_customisable() ) : ?>
152
  <?php endif; ?>
153
  <?php endif; ?>
154
  </div><!--close wpsc_product_price-->
155
+ <!--sharethis-->
156
+ <?php if ( get_option( 'wpsc_share_this' ) == 1 ): ?>
157
+ <div class="st_sharethis" displayText="ShareThis"></div>
158
+ <?php endif; ?>
159
+ <!--end sharethis-->
160
  <input type="hidden" value="add_to_cart" name="wpsc_ajax_action" />
161
  <input type="hidden" value="<?php echo wpsc_the_product_id(); ?>" name="product_id" />
162
  <?php if( wpsc_product_is_customisable() ) : ?>
wpsc-theme/wpsc-user-log.php CHANGED
@@ -66,7 +66,8 @@ global $files, $separator, $purchase_log, $col_count, $products, $links; ?>
66
  <td>
67
  <?php
68
  if ( $products[$i]['downloads'] > 0 )
69
- echo "<a href = " . $links[$i] . ">" . $file['post_title'] . "</a>";
 
70
  else
71
  echo $file['post_title'] . "";
72
 
66
  <td>
67
  <?php
68
  if ( $products[$i]['downloads'] > 0 )
69
+
70
+ echo "<a href = " . get_option('siteurl')."?downloadid=".$products[$i]['uniqueid'] . ">" . $file['post_title'] . "</a>";
71
  else
72
  echo $file['post_title'] . "";
73
 
wpsc-widgets/specials_widget.php CHANGED
@@ -154,7 +154,6 @@ function wpsc_specials( $args = null, $instance ) {
154
  'posts_per_page' => $number
155
  ) ;
156
  $special_products = query_posts( $args );
157
- // exit('<pre>'.print_r($args,1).'</pre>');
158
  $output = '';
159
  $product_ids[] = array();
160
  if ( count( $special_products ) > 0 ) {
154
  'posts_per_page' => $number
155
  ) ;
156
  $special_products = query_posts( $args );
 
157
  $output = '';
158
  $product_ids[] = array();
159
  if ( count( $special_products ) > 0 ) {