WP eCommerce - Version 3.7.6.3

Version Description

Download this release

Release Info

Developer jghazally
Plugin Icon 128x128 WP eCommerce
Version 3.7.6.3
Comparing to
See all releases

Code changes from version 3.7.6.2 to 3.7.6.3

Files changed (40) hide show
  1. admin-form-functions.php +70 -7
  2. js/wp-e-commerce.js +7 -6
  3. languages/wpsc-en_EN .pot +1971 -1260
  4. languages/wpsc-nb_NO.mo +0 -0
  5. languages/wpsc-nb_NO.po +3652 -0
  6. merchants/paypal_certified.php +3 -1
  7. merchants/paypal_pro.php +22 -21
  8. readme.txt +18 -1
  9. share-this.php +37 -35
  10. shipping/australiapost.php +17 -8
  11. themes/default/grid_view.php +1 -1
  12. themes/default/list_view.php +1 -1
  13. themes/default/products_page.php +1 -1
  14. themes/default/shopping_cart_page.php +1 -0
  15. themes/default/single_product.php +1 -1
  16. themes/iShop/grid_view.php +1 -1
  17. themes/iShop/list_view.php +1 -1
  18. themes/iShop/products_page.php +1 -1
  19. themes/iShop/shopping_cart_page.php +1 -0
  20. themes/iShop/single_product.php +1 -1
  21. themes/marketplace/grid_view.php +1 -1
  22. themes/marketplace/list_view.php +1 -1
  23. themes/marketplace/products_page.php +1 -1
  24. themes/marketplace/shopping_cart_page.php +1 -0
  25. themes/marketplace/single_product.php +1 -1
  26. transaction_result_functions.php +59 -5
  27. transaction_results.php +4 -16
  28. wp-shopping-cart.php +3 -4
  29. wpsc-admin/ajax-and-init.php +3 -2
  30. wpsc-admin/display-groups.page.php +4 -3
  31. wpsc-admin/includes/product-functions.php +13 -6
  32. wpsc-admin/includes/settings-pages/admin.php +4 -3
  33. wpsc-includes/ajax.functions.php +18 -2
  34. wpsc-includes/cart.class.php +25 -16
  35. wpsc-includes/category.functions.php +2 -1
  36. wpsc-includes/checkout.class.php +4 -4
  37. wpsc-includes/merchant.class.php +1 -2
  38. wpsc-includes/pagination.class.php +29 -2
  39. wpsc-includes/purchaselogs.class.php +1 -0
  40. wpsc-includes/wpsc_query.php +5 -1
admin-form-functions.php CHANGED
@@ -709,10 +709,14 @@ function wpsc_right_now($hidden = '') {
709
 
710
 
711
  function wpsc_packing_slip($purchase_id) {
712
- global $wpdb;
 
 
 
 
713
  $purch_sql = "SELECT * FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `id`='".$purchase_id."'";
714
  $purch_data = $wpdb->get_row($purch_sql,ARRAY_A) ;
715
- //exit('<pre>'.print_r($purch_data, true).'</pre>');
716
 
717
  //echo "<p style='padding-left: 5px;'><strong>".__('Date', 'wpsc')."</strong>:".date("jS M Y", $purch_data['date'])."</p>";
718
 
@@ -726,11 +730,63 @@ function wpsc_packing_slip($purchase_id) {
726
  echo "<strong>".__('Order', 'wpsc')." #</strong> ".$purchase_id."<br /><br />\n\r";
727
 
728
  echo "<table>\n\r";
729
-
 
730
  $form_sql = "SELECT * FROM `".WPSC_TABLE_SUBMITED_FORM_DATA."` WHERE `log_id` = '".(int)$purchase_id."'";
731
  $input_data = $wpdb->get_results($form_sql,ARRAY_A);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
732
 
733
- foreach($input_data as $input_row) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
734
  $rekeyed_input[$input_row['form_id']] = $input_row;
735
  }
736
 
@@ -773,6 +829,7 @@ function wpsc_packing_slip($purchase_id) {
773
  echo " <tr><td>".__('Phone', 'wpsc').":</td><td>".$purch_data['phone']."</td></tr>\n\r";
774
  echo " <tr><td>".__('Email', 'wpsc').":</td><td>".$purch_data['email']."</td></tr>\n\r";
775
  }
 
776
 
777
  if(get_option('payment_method') == 2) {
778
  $gateway_name = '';
@@ -813,14 +870,16 @@ function wpsc_packing_slip($purchase_id) {
813
  echo " <th>".__('Price', 'wpsc')." </th>";
814
 
815
  echo " <th>".__('Shipping', 'wpsc')." </th>";
816
- echo '<th>Tax</th>';
817
  echo '</tr>';
818
  $endtotal = 0;
819
  $all_donations = true;
820
  $all_no_shipping = true;
821
  $file_link_list = array();
 
822
  foreach($cart_log as $cart_row) {
823
-
 
824
  $alternate = "";
825
  $j++;
826
  if(($j % 2) != 0) {
@@ -900,7 +959,11 @@ function wpsc_packing_slip($purchase_id) {
900
 
901
 
902
  echo '<td>';
903
- echo nzshpcrt_currency_display($cart_row['tax_charged'],1);
 
 
 
 
904
  echo '<td>';
905
  echo '</tr>';
906
  }
709
 
710
 
711
  function wpsc_packing_slip($purchase_id) {
712
+ global $wpdb, $purchlogitem, $wpsc_cart,$purchlog;
713
+ if(isset($_REQUEST['purchaselog_id'])){
714
+ $purchlogitem = new wpsc_purchaselogs_items((int)$_REQUEST['purchaselog_id']);
715
+ }
716
+
717
  $purch_sql = "SELECT * FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `id`='".$purchase_id."'";
718
  $purch_data = $wpdb->get_row($purch_sql,ARRAY_A) ;
719
+
720
 
721
  //echo "<p style='padding-left: 5px;'><strong>".__('Date', 'wpsc')."</strong>:".date("jS M Y", $purch_data['date'])."</p>";
722
 
730
  echo "<strong>".__('Order', 'wpsc')." #</strong> ".$purchase_id."<br /><br />\n\r";
731
 
732
  echo "<table>\n\r";
733
+ /*
734
+
735
  $form_sql = "SELECT * FROM `".WPSC_TABLE_SUBMITED_FORM_DATA."` WHERE `log_id` = '".(int)$purchase_id."'";
736
  $input_data = $wpdb->get_results($form_sql,ARRAY_A);
737
+
738
+ */
739
+ echo "<tr><td colspan='2'><strong>Billing Info</strong></td></tr>";
740
+ foreach((array)$purchlogitem->userinfo as $userinfo){
741
+ if($userinfo['unique_name'] != 'billingcountry'){
742
+ echo "<tr><td>".$userinfo['name'].": </td><td>".$userinfo['value']."</td></tr>";
743
+ }else{
744
+ $userinfo['value'] = maybe_unserialize($userinfo['value']);
745
+ if(is_array($userinfo['value'] )){
746
+ if(!empty($userinfo['value'][1]) && !is_numeric($userinfo['value'][1])){
747
+ echo "<tr><td>State: </td><td>".$userinfo['value'][1]."</td></tr>";
748
+ }elseif(is_numeric($userinfo['value'][1])){
749
+ echo "<tr><td>State: </td><td>".wpsc_get_state_by_id($userinfo['value'][1],'name')."</td></tr>";
750
+ }
751
+ if(!empty($userinfo['value'][0])){
752
+ echo "<tr><td>Country: </td><td>".$userinfo['value'][0]."</td></tr>";
753
+ }
754
+ }else{
755
+ echo "<tr><td>".$userinfo['name'].": </td><td>".$userinfo['value']."</td></tr>";
756
+ }
757
+ }
758
+ }
759
 
760
+ echo "<tr><td colspan='2'><strong>Shipping Info</strong></td></tr>";
761
+ foreach((array)$purchlogitem->shippinginfo as $userinfo){
762
+ if($userinfo['unique_name'] != 'shippingcountry' && $userinfo['unique_name'] != 'shippingstate'){
763
+ echo "<tr><td>".$userinfo['name'].": </td><td>".$userinfo['value']."</td></tr>";
764
+ }elseif($userinfo['unique_name'] == 'shippingcountry'){
765
+ $userinfo['value'] = maybe_unserialize($userinfo['value']);
766
+ if(is_array($userinfo['value'] )){
767
+ if(!empty($userinfo['value'][1]) && !is_numeric($userinfo['value'][1])){
768
+ echo "<tr><td>State: </td><td>".$userinfo['value'][1]."</td></tr>";
769
+ }elseif(is_numeric($userinfo['value'][1])){
770
+ echo "<tr><td>State: </td><td>".wpsc_get_state_by_id($userinfo['value'][1],'name')."</td></tr>";
771
+ }
772
+ if(!empty($userinfo['value'][0])){
773
+ echo "<tr><td>Country: </td><td>".$userinfo['value'][0]."</td></tr>";
774
+ }
775
+ }else{
776
+ echo "<tr><td>".$userinfo['name'].": </td><td>".$userinfo['value']."</td></tr>";
777
+ }
778
+ }elseif($userinfo['unique_name'] == 'shippingstate'){
779
+ if(!empty($userinfo['value']) && !is_numeric($userinfo['value'])){
780
+ echo "<tr><td>".$userinfo['name'].": </td><td>".$userinfo['value']."</td</tr>>";
781
+ }elseif(is_numeric($userinfo['value'])){
782
+ echo "<tr><td>State: </td><td>".wpsc_get_state_by_id($userinfo['value'],'name')."</td></tr>";
783
+ }
784
+ }
785
+ }
786
+ // echo('<pre>'.print_r($purchlogitem,true).'</pre>');
787
+
788
+ /*
789
+ foreach($input_data as $input_row) {
790
  $rekeyed_input[$input_row['form_id']] = $input_row;
791
  }
792
 
829
  echo " <tr><td>".__('Phone', 'wpsc').":</td><td>".$purch_data['phone']."</td></tr>\n\r";
830
  echo " <tr><td>".__('Email', 'wpsc').":</td><td>".$purch_data['email']."</td></tr>\n\r";
831
  }
832
+ */
833
 
834
  if(get_option('payment_method') == 2) {
835
  $gateway_name = '';
870
  echo " <th>".__('Price', 'wpsc')." </th>";
871
 
872
  echo " <th>".__('Shipping', 'wpsc')." </th>";
873
+ echo "<th>".wpsc_display_tax_label(false)."</th>";
874
  echo '</tr>';
875
  $endtotal = 0;
876
  $all_donations = true;
877
  $all_no_shipping = true;
878
  $file_link_list = array();
879
+ // exit('<pre>'.print_r($cart_log,true).'</pre>');
880
  foreach($cart_log as $cart_row) {
881
+ $purchlogitem->the_purch_item();
882
+ // exit('<pre>'.print_r, true).'</pre>');
883
  $alternate = "";
884
  $j++;
885
  if(($j % 2) != 0) {
959
 
960
 
961
  echo '<td>';
962
+ if(wpsc_tax_isincluded()){
963
+ echo (wpsc_purchaselog_details_tax());
964
+ }else{
965
+ echo nzshpcrt_currency_display($cart_row['tax_charged'],1);
966
+ }
967
  echo '<td>';
968
  echo '</tr>';
969
  }
js/wp-e-commerce.js CHANGED
@@ -48,7 +48,7 @@ jQuery(document).ready(function () {
48
  jQuery("input.shipping_country").val(countryID);
49
  jQuery("span.shipping_country_name").html(country);
50
  jQuery("input.shipping_region").val(countryID);
51
- jQuery("span.shipping_region_name").html(state);
52
  jQuery("select#current_country").val(countryID);
53
  if(state == ''){
54
  state = jQuery("select.current_region :selected").text();
@@ -61,21 +61,22 @@ jQuery(document).ready(function () {
61
  jQuery('span.shipping_region_name').replaceWith('<span class="shipping_region_name"></span>');
62
  }else{
63
  jQuery("select#region").show();
64
-
65
  jQuery("select#region :selected").html(state).attr('selected','selected');
66
  shipName = jQuery('input.shipping_region').attr('name');
67
  shipID = jQuery('input.shipping_region').attr('id');
68
  jQuery('input.shipping_region').replaceWith('<input type="hidden" value="'+stateID+'" name="'+shipName+'" id="'+shipName+'" class="shipping_region" />');
69
- jQuery('input.shipping_region').append('<span class="shipping_region_name"></span>');
70
- jQuery('span.shipping_region_name').html(state);
71
  }
72
  }else{
73
  jQuery("select#region").show();
74
  shipName = jQuery('input.shipping_region').attr('name');
75
  shipID = jQuery('input.shipping_region').attr('id');
76
- jQuery('input.shipping_region').replaceWith('<input type="hidden" class="shipping_region" value="'+stateID+'" name="'+shipName+'" id="'+shipName+'" /><span class="shipping_region_name"></span>');
 
77
  jQuery("select#region :selected").html(state).attr('selected','selected');
78
- jQuery('span.shipping_region_name').html(state);
 
79
  }
80
  jQuery("select[title='shipping_country']").val(countryID);
81
  var html_form_id = jQuery("select[title='shipping_country']").attr('id');
48
  jQuery("input.shipping_country").val(countryID);
49
  jQuery("span.shipping_country_name").html(country);
50
  jQuery("input.shipping_region").val(countryID);
51
+ //jQuery("span.shipping_region_name").html(state);
52
  jQuery("select#current_country").val(countryID);
53
  if(state == ''){
54
  state = jQuery("select.current_region :selected").text();
61
  jQuery('span.shipping_region_name').replaceWith('<span class="shipping_region_name"></span>');
62
  }else{
63
  jQuery("select#region").show();
 
64
  jQuery("select#region :selected").html(state).attr('selected','selected');
65
  shipName = jQuery('input.shipping_region').attr('name');
66
  shipID = jQuery('input.shipping_region').attr('id');
67
  jQuery('input.shipping_region').replaceWith('<input type="hidden" value="'+stateID+'" name="'+shipName+'" id="'+shipName+'" class="shipping_region" />');
68
+ jQuery('input.shipping_region').append('<span class="shipping_region_name">'+state+'</span>');
69
+ // jQuery('span.shipping_region_name').html(state);
70
  }
71
  }else{
72
  jQuery("select#region").show();
73
  shipName = jQuery('input.shipping_region').attr('name');
74
  shipID = jQuery('input.shipping_region').attr('id');
75
+ jQuery('input.shipping_region').replaceWith('<input type="hidden" class="shipping_region" value="'+stateID+'" name="'+shipName+'" id="'+shipName+'" />');
76
+ jQuery('.shipping_region_name').replaceWith('<span class="shipping_region_name">'+state+'</span>');
77
  jQuery("select#region :selected").html(state).attr('selected','selected');
78
+ jQuery("select[title='shippingregion']").val(stateID);
79
+ //jQuery('span.shipping_region_name').html(state);
80
  }
81
  jQuery("select[title='shipping_country']").val(countryID);
82
  var html_form_id = jQuery("select[title='shipping_country']").attr('id');
languages/wpsc-en_EN .pot CHANGED
@@ -1,3192 +1,3903 @@
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-11-27 20:21+0200\n"
6
- "PO-Revision-Date: \n"
7
- "Last-Translator: \n"
8
- "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e\n"
13
- "X-Poedit-Basepath: C:\\www\\www\\wpecommerce\\wp-content\\plugins\n"
14
- "X-Poedit-SearchPath-0: wp-e-commerce\n"
15
 
16
- #: wp-e-commerce/admin-form-functions.php:10
17
- msgid "You are editing the &quot;[categorisation]&quot; Group"
18
  msgstr ""
19
 
20
- #: wp-e-commerce/admin-form-functions.php:11
21
  msgid "+ Add new category to the &quot;[categorisation]&quot; Group"
22
  msgstr ""
23
 
24
- #: wp-e-commerce/admin-form-functions.php:25
25
- #: wp-e-commerce/admin-form-functions.php:239
26
- #: wp-e-commerce/admin-form-functions.php:720
27
- #: wp-e-commerce/admin-form-functions.php:759
28
- #: wp-e-commerce/display-ecommerce-subs.php:9
 
 
 
 
 
 
29
  msgid "Name"
30
  msgstr ""
31
 
32
- #: wp-e-commerce/admin-form-functions.php:34
 
 
33
  msgid "Description"
34
  msgstr ""
35
 
36
- #: wp-e-commerce/admin-form-functions.php:44
37
- msgid "Group Parent"
38
  msgstr ""
39
 
40
- #: wp-e-commerce/admin-form-functions.php:85
41
- msgid "Group&nbsp;Image"
42
  msgstr ""
43
 
44
- #: wp-e-commerce/admin-form-functions.php:101
45
- #: wp-e-commerce/admin-form-functions.php:110
46
- #: wp-e-commerce/admin-form-functions.php:198
 
 
 
 
 
47
  msgid "Height"
48
  msgstr ""
49
 
50
- #: wp-e-commerce/admin-form-functions.php:101
51
- #: wp-e-commerce/admin-form-functions.php:110
52
- #: wp-e-commerce/admin-form-functions.php:199
 
 
 
 
 
53
  msgid "Width"
54
  msgstr ""
55
 
56
- #: wp-e-commerce/admin-form-functions.php:102
57
- #: wp-e-commerce/admin-form-functions.php:111
58
- msgid "You can upload thumbnail images for each group. To display Group details in your shop you must configure these settings under <a href=\"admin.php?page=wpsc-settings&tab=presentation\">Presentation Settings</a>."
 
 
 
59
  msgstr ""
60
 
61
- #: wp-e-commerce/admin-form-functions.php:119
62
  msgid "Delete Image"
63
  msgstr ""
64
 
65
- #: wp-e-commerce/admin-form-functions.php:133
 
66
  msgid "Target Markets"
67
  msgstr ""
68
 
69
- #: wp-e-commerce/admin-form-functions.php:138
 
70
  msgid ""
71
- "The Target Markets feature has been disabled because you have the Suhosin PHP extension installed on this server. If you need to use the Target Markets feature then disable the suhosin extension, if you can not do this, you will need to contact your hosting provider.\n"
 
 
 
72
  "\t\t\t"
73
  msgstr ""
74
 
75
- #: wp-e-commerce/admin-form-functions.php:164
 
76
  msgid "Presentation Settings"
77
  msgstr ""
78
 
79
- #: wp-e-commerce/admin-form-functions.php:165
80
- msgid "To over-ride the presentation settings for this group you can enter in your prefered settings here"
 
 
81
  msgstr ""
82
 
83
- #: wp-e-commerce/admin-form-functions.php:171
 
84
  msgid "Catalog View"
85
  msgstr ""
86
 
87
- #: wp-e-commerce/admin-form-functions.php:175
88
  msgid "Please select"
89
  msgstr ""
90
 
91
- #: wp-e-commerce/admin-form-functions.php:176
 
92
  msgid "Default View"
93
  msgstr ""
94
 
95
- #: wp-e-commerce/admin-form-functions.php:178
96
- #: wp-e-commerce/admin-form-functions.php:180
 
 
 
97
  msgid "List View"
98
  msgstr ""
99
 
100
- #: wp-e-commerce/admin-form-functions.php:183
101
- #: wp-e-commerce/admin-form-functions.php:185
 
 
 
102
  msgid "Grid View"
103
  msgstr ""
104
 
105
- #: wp-e-commerce/admin-form-functions.php:195
106
  msgid "Thumbnail&nbsp;Size"
107
  msgstr ""
108
 
109
- #: wp-e-commerce/admin-form-functions.php:207
 
 
 
 
 
110
  msgid "This category requires additional checkout form fields"
111
  msgstr ""
112
 
113
- #: wp-e-commerce/admin-form-functions.php:210
114
- #: wp-e-commerce/display-coupons.php:433
115
- #: wp-e-commerce/display-coupons.php:457
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  msgid "Yes"
117
  msgstr ""
118
 
119
- #: wp-e-commerce/admin-form-functions.php:211
120
- #: wp-e-commerce/display-coupons.php:434
121
- #: wp-e-commerce/display-coupons.php:458
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  msgid "No"
123
  msgstr ""
124
 
125
- #: wp-e-commerce/admin-form-functions.php:221
126
- msgid "Edit Group"
127
  msgstr ""
128
 
129
- #: wp-e-commerce/admin-form-functions.php:222
130
- #: wp-e-commerce/admin-form-functions.php:260
131
- #: wp-e-commerce/admin-form-functions.php:279
132
- #: wp-e-commerce/admin-form-functions.php:387
 
 
 
 
 
 
 
 
133
  msgid "Delete"
134
  msgstr ""
135
 
136
- #: wp-e-commerce/admin-form-functions.php:248
137
  msgid "Variation Values"
138
  msgstr ""
139
 
140
- #: wp-e-commerce/admin-form-functions.php:267
141
- #: wp-e-commerce/display-coupons.php:126
 
142
  msgid "Add"
143
  msgstr ""
144
 
145
- #: wp-e-commerce/admin-form-functions.php:278
146
- #: wp-e-commerce/display-coupons.php:321
147
- #: wp-e-commerce/display-coupons.php:381
 
 
 
 
148
  msgid "Edit"
149
  msgstr ""
150
 
151
- #: wp-e-commerce/admin-form-functions.php:300
152
- #: wp-e-commerce/display-coupons.php:141
153
- #: wp-e-commerce/display-coupons.php:297
154
  msgid "Coupon Code"
155
  msgstr ""
156
 
157
- #: wp-e-commerce/admin-form-functions.php:301
158
- #: wp-e-commerce/display-coupons.php:144
159
- #: wp-e-commerce/display-coupons.php:301
 
 
 
 
160
  msgid "Discount"
161
  msgstr ""
162
 
163
- #: wp-e-commerce/admin-form-functions.php:302
164
- #: wp-e-commerce/display-coupons.php:147
165
- #: wp-e-commerce/display-coupons.php:305
166
  msgid "Start"
167
  msgstr ""
168
 
169
- #: wp-e-commerce/admin-form-functions.php:303
170
- #: wp-e-commerce/display-coupons.php:150
171
- #: wp-e-commerce/display-coupons.php:309
172
  msgid "Expiry"
173
  msgstr ""
174
 
175
- #: wp-e-commerce/admin-form-functions.php:304
176
- #: wp-e-commerce/display-coupons.php:153
177
  msgid "Use Once"
178
  msgstr ""
179
 
180
- #: wp-e-commerce/admin-form-functions.php:305
181
- #: wp-e-commerce/display-coupons.php:156
182
- #: wp-e-commerce/display-coupons.php:313
183
  msgid "Active"
184
  msgstr ""
185
 
186
- #: wp-e-commerce/admin-form-functions.php:306
187
- #: wp-e-commerce/display-coupons.php:160
188
- #: wp-e-commerce/display-coupons.php:253
189
- #: wp-e-commerce/display-coupons.php:317
190
  msgid "Apply On All Products"
191
  msgstr ""
192
 
193
- #: wp-e-commerce/admin-form-functions.php:386
194
- #: wp-e-commerce/display-coupons.php:480
195
- msgid "Submit"
196
  msgstr ""
197
 
198
- #: wp-e-commerce/admin-form-functions.php:520
 
 
 
 
199
  msgid "Settings"
200
  msgstr ""
201
 
202
- #: wp-e-commerce/admin-form-functions.php:524
203
  msgid "Shop Settings"
204
  msgstr ""
205
 
206
- #: wp-e-commerce/admin-form-functions.php:525
207
  msgid "Money and Payment"
208
  msgstr ""
209
 
210
- #: wp-e-commerce/admin-form-functions.php:526
211
  msgid "Checkout Page Settings"
212
  msgstr ""
213
 
214
- #: wp-e-commerce/admin-form-functions.php:545
215
- #: wp-e-commerce/admin-form-functions.php:546
216
  msgid "product"
217
  msgstr ""
218
 
219
- #: wp-e-commerce/admin-form-functions.php:545
220
- #: wp-e-commerce/admin-form-functions.php:546
221
  msgid "products"
222
  msgstr ""
223
 
224
- #: wp-e-commerce/admin-form-functions.php:550
225
- #: wp-e-commerce/admin-form-functions.php:551
226
  msgid "group"
227
  msgstr ""
228
 
229
- #: wp-e-commerce/admin-form-functions.php:550
230
- #: wp-e-commerce/admin-form-functions.php:551
231
  msgid "groups"
232
  msgstr ""
233
 
234
- #: wp-e-commerce/admin-form-functions.php:555
235
- #: wp-e-commerce/admin-form-functions.php:556
236
  msgid "sale"
237
  msgstr ""
238
 
239
- #: wp-e-commerce/admin-form-functions.php:555
240
- #: wp-e-commerce/admin-form-functions.php:556
241
  msgid "sales"
242
  msgstr ""
243
 
244
- #: wp-e-commerce/admin-form-functions.php:562
245
  msgid "variation"
246
  msgstr ""
247
 
248
- #: wp-e-commerce/admin-form-functions.php:562
249
  msgid "variations"
250
  msgstr ""
251
 
252
- #: wp-e-commerce/admin-form-functions.php:566
253
- #: wp-e-commerce/admin-form-functions.php:567
254
- #: wp-e-commerce/admin-form-functions.php:570
255
  msgid "transaction"
256
  msgstr ""
257
 
258
- #: wp-e-commerce/admin-form-functions.php:566
259
- #: wp-e-commerce/admin-form-functions.php:567
260
- #: wp-e-commerce/admin-form-functions.php:570
261
  msgid "transactions"
262
  msgstr ""
263
 
264
- #: wp-e-commerce/admin-form-functions.php:580
265
  msgid "Current Month"
266
  msgstr ""
267
 
268
- #: wp-e-commerce/admin-form-functions.php:585
269
  msgid "At a Glance"
270
  msgstr ""
271
 
272
- #: wp-e-commerce/admin-form-functions.php:615
273
  msgid "Pending"
274
  msgstr ""
275
 
276
- #: wp-e-commerce/admin-form-functions.php:630
277
  msgid "Closed"
278
  msgstr ""
279
 
280
- #: wp-e-commerce/admin-form-functions.php:638
281
- #: wp-e-commerce/admin-form-functions.php:646
282
  msgid "Add New Product"
283
  msgstr ""
284
 
285
- #: wp-e-commerce/admin-form-functions.php:638
286
  msgid "Here you can add products, groups or variations"
287
  msgstr ""
288
 
289
- #: wp-e-commerce/admin-form-functions.php:647
290
  msgid "Right Now"
291
  msgstr ""
292
 
293
- #: wp-e-commerce/admin-form-functions.php:652
294
- msgid "You have <a href=\"admin.php?page=wpsc-edit-products\">:productcount:</a>, contained within <a href=\"admin.php?page=wpsc-edit-groups\">:groupcount:</a>. This month you made :salecount: and generated a total of :monthtotal: and your total sales ever is :overaltotal:. You have :pendingcount: awaiting approval."
 
 
 
 
 
295
  msgstr ""
296
 
297
- #: wp-e-commerce/admin-form-functions.php:654
298
  msgid "You are using the :theme: style. This is WP e-Commerce :versionnumber:."
299
  msgstr ""
300
 
301
- #: wp-e-commerce/admin-form-functions.php:681
302
  msgid "Packing Slip"
303
  msgstr ""
304
 
305
- #: wp-e-commerce/admin-form-functions.php:682
306
  msgid "Order"
307
  msgstr ""
308
 
309
- #: wp-e-commerce/admin-form-functions.php:701
310
- #: wp-e-commerce/install_and_update.php:660
311
- msgid "State"
312
- msgstr ""
313
-
314
- #: wp-e-commerce/admin-form-functions.php:721
315
- #: wp-e-commerce/install_and_update.php:650
316
- #: wp-e-commerce/install_and_update.php:658
317
- msgid "Address"
318
- msgstr ""
319
-
320
- #: wp-e-commerce/admin-form-functions.php:722
321
- #: wp-e-commerce/edit-profile.php:52
322
- #: wp-e-commerce/install_and_update.php:667
323
- msgid "Phone"
324
- msgstr ""
325
-
326
- #: wp-e-commerce/admin-form-functions.php:723
327
- #: wp-e-commerce/display-ecommerce-subs.php:9
328
- #: wp-e-commerce/edit-profile.php:39
329
- #: wp-e-commerce/install_and_update.php:654
330
- msgid "Email"
331
- msgstr ""
332
-
333
- #: wp-e-commerce/admin-form-functions.php:757
334
  msgid "Quantity"
335
  msgstr ""
336
 
337
- #: wp-e-commerce/admin-form-functions.php:762
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  msgid "Price"
339
  msgstr ""
340
 
341
- #: wp-e-commerce/admin-form-functions.php:764
 
 
 
 
 
 
 
 
342
  msgid "Shipping"
343
  msgstr ""
344
 
345
- #: wp-e-commerce/admin-form-functions.php:859
346
  msgid "This users cart was empty"
347
  msgstr ""
348
 
349
- #: wp-e-commerce/display-coupons.php:27
350
  msgid "Thanks, the coupon has been added."
351
  msgstr ""
352
 
353
- #: wp-e-commerce/display-coupons.php:122
354
  msgid "Coupons"
355
  msgstr ""
356
 
357
- #: wp-e-commerce/display-coupons.php:126
358
- msgid "Add Coupon"
359
  msgstr ""
360
 
361
- #: wp-e-commerce/display-coupons.php:397
362
- msgid "<strong>Note:</strong> Due to a current limitation of PayPal, if your user makes a purchase and uses a coupon, we can not send a list of items through to paypal for processing. Rather, we must send the total amount of the purchase, so that within PayPal the user who purchases a product will see your shop name and the total amount of their purchase."
363
  msgstr ""
364
 
365
- #: wp-e-commerce/display-coupons.php:409
 
 
 
 
 
 
 
 
 
366
  msgid "Marketing Settings"
367
  msgstr ""
368
 
369
- #: wp-e-commerce/display-coupons.php:416
370
  msgid "Display Cross Sales"
371
  msgstr ""
372
 
373
- #: wp-e-commerce/display-coupons.php:440
374
  msgid "Show Share This (Social Bookmarks)"
375
  msgstr ""
376
 
377
- #: wp-e-commerce/display-coupons.php:463
378
  msgid "Display How Customer Found Us Survey"
379
  msgstr ""
380
 
381
- #: wp-e-commerce/display-coupons.php:486
382
- msgid "RSS Address"
383
- msgstr ""
384
-
385
- #: wp-e-commerce/display-coupons.php:490
386
- msgid "<strong>Note:</strong> Not only can people use this RSS to keep update with your product list but you can also use this link to promote your products in your facebook profile. <br />Just add the <a href=\"http://apps.facebook.com/getshopped\">getshopped! facebook application</a> to your facebook profile and follow the instructions."
387
  msgstr ""
388
 
389
- #: wp-e-commerce/display-coupons.php:504
390
- msgid "Google Base"
391
  msgstr ""
392
 
393
- #: wp-e-commerce/display-coupons.php:507
394
- msgid "Your site has been granted access to google base.<br /> All future products will be submitted to google base.<br />"
 
 
 
 
 
395
  msgstr ""
396
 
397
- #: wp-e-commerce/display-coupons.php:508
398
- msgid "Click here to remove access"
399
  msgstr ""
400
 
401
- #: wp-e-commerce/display-coupons.php:513
402
- msgid "Grant Access"
403
  msgstr ""
404
 
405
- #: wp-e-commerce/display-ecommerce-subs.php:9
406
- msgid "User ID"
 
 
407
  msgstr ""
408
 
409
- #: wp-e-commerce/display-ecommerce-subs.php:9
410
  msgid "Registered Date"
411
  msgstr ""
412
 
413
- #: wp-e-commerce/display-ecommerce-subs.php:9
414
  msgid "Suspend"
415
  msgstr ""
416
 
417
- #: wp-e-commerce/display-ecommerce-subs.php:9
418
  msgid "Activate"
419
  msgstr ""
420
 
421
- #: wp-e-commerce/edit-profile.php:31
422
- #: wp-e-commerce/install_and_update.php:648
423
- #: wp-e-commerce/install_and_update.php:656
424
  msgid "First Name"
425
  msgstr ""
426
 
427
- #: wp-e-commerce/edit-profile.php:32
428
  msgid "Please enter a valid name"
429
  msgstr ""
430
 
431
- #: wp-e-commerce/edit-profile.php:35
432
- #: wp-e-commerce/install_and_update.php:649
433
- #: wp-e-commerce/install_and_update.php:657
434
  msgid "Last Name"
435
  msgstr ""
436
 
437
- #: wp-e-commerce/edit-profile.php:36
438
  msgid "Please enter a valid surname"
439
  msgstr ""
440
 
441
- #: wp-e-commerce/edit-profile.php:40
442
  msgid "Please enter a valid email address"
443
  msgstr ""
444
 
445
- #: wp-e-commerce/edit-profile.php:43
446
  msgid "Address 1"
447
  msgstr ""
448
 
449
- #: wp-e-commerce/edit-profile.php:44
450
  msgid "Address 2"
451
  msgstr ""
452
 
453
- #: wp-e-commerce/edit-profile.php:45
454
  msgid "Please enter a valid address"
455
  msgstr ""
456
 
457
- #: wp-e-commerce/edit-profile.php:48
458
- #: wp-e-commerce/install_and_update.php:651
459
- #: wp-e-commerce/install_and_update.php:659
460
  msgid "City"
461
  msgstr ""
462
 
463
- #: wp-e-commerce/edit-profile.php:49
464
  msgid "Please enter your town or city."
465
  msgstr ""
466
 
467
- #: wp-e-commerce/edit-profile.php:53
 
 
 
 
 
468
  msgid "Please enter a valid phone number"
469
  msgstr ""
470
 
471
- #: wp-e-commerce/edit-profile.php:56
472
- #: wp-e-commerce/install_and_update.php:652
473
- #: wp-e-commerce/install_and_update.php:661
474
  msgid "Country"
475
  msgstr ""
476
 
477
- #: wp-e-commerce/edit-profile.php:57
478
  msgid "Please select your country from the list."
479
  msgstr ""
480
 
481
- #: wp-e-commerce/edit-profile.php:61
 
 
 
482
  msgid "Please enter a valid"
483
  msgstr ""
484
 
485
- #: wp-e-commerce/edit-profile.php:84
486
  msgid "Thanks, your changes have been saved."
487
  msgstr ""
488
 
489
- #: wp-e-commerce/edit-profile.php:188
490
  msgid "Save Profile"
491
  msgstr ""
492
 
493
- #: wp-e-commerce/editor.php:49
494
  msgid "placeholder for:"
495
  msgstr ""
496
 
497
- #: wp-e-commerce/editor.php:144
498
  msgid "Your forms:"
499
  msgstr ""
500
 
501
- #: wp-e-commerce/editor.php:146
502
- #: wp-e-commerce/insertcate.php:87
503
  msgid "Insert"
504
  msgstr ""
505
 
506
- #: wp-e-commerce/editor.php:147
507
- #: wp-e-commerce/insertcate.php:90
508
  msgid "Cancel"
509
  msgstr ""
510
 
511
- #: wp-e-commerce/google_shipping_country.php:7
512
  msgid "Google Shipping Country"
513
  msgstr ""
514
 
515
- #: wp-e-commerce/google_shipping_country.php:43
 
516
  msgid "Save Changes"
517
  msgstr ""
518
 
519
- #: wp-e-commerce/homepage_products_functions.php:85
 
520
  msgid "Product Donations"
521
  msgstr ""
522
 
523
- #: wp-e-commerce/homepage_products_functions.php:157
 
524
  msgid "More Details"
525
  msgstr ""
526
 
527
- #: wp-e-commerce/homepage_products_functions.php:189
 
 
 
 
 
 
 
 
 
 
528
  msgid "Add To Cart"
529
  msgstr ""
530
 
531
- #: wp-e-commerce/homepage_products_functions.php:205
532
  msgid "Avg. Customer Rating"
533
  msgstr ""
534
 
535
- #: wp-e-commerce/homepage_products_functions.php:212
536
  msgid "Your Rating"
537
  msgstr ""
538
 
539
- #: wp-e-commerce/homepage_products_functions.php:213
540
- #: wp-e-commerce/homepage_products_functions.php:217
541
  msgid "Saved"
542
  msgstr ""
543
 
544
- #: wp-e-commerce/homepage_products_functions.php:216
545
  msgid "Rate This item"
546
  msgstr ""
547
 
548
- #: wp-e-commerce/insertcate.php:67
549
  msgid "Pick a Category"
550
  msgstr ""
551
 
552
- #: wp-e-commerce/insertcate.php:74
553
  msgid "Your Categories:"
554
  msgstr ""
555
 
556
- #: wp-e-commerce/install_and_update.php:60
557
  msgid "Example category"
558
  msgstr ""
559
 
560
- #: wp-e-commerce/install_and_update.php:60
561
- #: wp-e-commerce/install_and_update.php:61
 
562
  msgid "Example details"
563
  msgstr ""
564
 
565
- #: wp-e-commerce/install_and_update.php:61
566
  msgid "Example Brand"
567
  msgstr ""
568
 
569
- #: wp-e-commerce/install_and_update.php:68
 
570
  msgid "Order Received"
571
  msgstr ""
572
 
573
- #: wp-e-commerce/install_and_update.php:69
574
  msgid "Accepted Payment"
575
  msgstr ""
576
 
577
- #: wp-e-commerce/install_and_update.php:70
578
  msgid "Job Dispatched"
579
  msgstr ""
580
 
581
- #: wp-e-commerce/install_and_update.php:71
 
582
  msgid "Closed Order"
583
  msgstr ""
584
 
585
- #: wp-e-commerce/install_and_update.php:87
 
 
586
  msgid "Show Thumbnails"
587
  msgstr ""
588
 
589
- #: wp-e-commerce/install_and_update.php:89
590
  msgid "product image width"
591
  msgstr ""
592
 
593
- #: wp-e-commerce/install_and_update.php:90
594
  msgid "product image height"
595
  msgstr ""
596
 
597
- #: wp-e-commerce/install_and_update.php:92
598
  msgid "product group image width"
599
  msgstr ""
600
 
601
- #: wp-e-commerce/install_and_update.php:93
602
  msgid "product group image height"
603
  msgstr ""
604
 
605
- #: wp-e-commerce/install_and_update.php:95
 
606
  msgid "The location of the product list"
607
  msgstr ""
608
 
609
- #: wp-e-commerce/install_and_update.php:96
 
610
  msgid "The location of the shopping cart"
611
  msgstr ""
612
 
613
- #: wp-e-commerce/install_and_update.php:97
614
  msgid "The location of the checkout page"
615
  msgstr ""
616
 
617
- #: wp-e-commerce/install_and_update.php:98
618
  msgid "The location of the transaction detail page"
619
  msgstr ""
620
 
621
- #: wp-e-commerce/install_and_update.php:99
622
  msgid "The payment gateway to use"
623
  msgstr ""
624
 
625
- #: wp-e-commerce/install_and_update.php:101
626
- #: wp-e-commerce/install_and_update.php:103
627
- #: wp-e-commerce/install_and_update.php:107
628
- #: wp-e-commerce/install_and_update.php:109
 
 
 
629
  msgid "Cart Location"
630
  msgstr ""
631
 
632
- #: wp-e-commerce/install_and_update.php:114
 
 
 
 
633
  msgid "Currency type"
634
  msgstr ""
635
 
636
- #: wp-e-commerce/install_and_update.php:115
 
 
637
  msgid "Currency sign location"
638
  msgstr ""
639
 
640
- #: wp-e-commerce/install_and_update.php:117
 
641
  msgid "the GST rate"
642
  msgstr ""
643
 
644
- #: wp-e-commerce/install_and_update.php:119
 
645
  msgid "the download limit"
646
  msgstr ""
647
 
648
- #: wp-e-commerce/install_and_update.php:121
 
649
  msgid "Display or hide postage and packaging"
650
  msgstr ""
651
 
652
- #: wp-e-commerce/install_and_update.php:123
 
653
  msgid "Display or hide specials on the sidebar"
654
  msgstr ""
655
 
656
- #: wp-e-commerce/install_and_update.php:126
 
657
  msgid "Default postage and packaging"
658
  msgstr ""
659
 
660
- #: wp-e-commerce/install_and_update.php:128
 
661
  msgid "Email address that purchase log is sent to"
662
  msgstr ""
663
 
664
- #: wp-e-commerce/install_and_update.php:129
 
665
  msgid "Email address that purchase reports are sent from"
666
  msgstr ""
667
 
668
- #: wp-e-commerce/install_and_update.php:130
 
669
  msgid "Checkout terms and conditions"
670
  msgstr ""
671
 
672
- #: wp-e-commerce/install_and_update.php:132
 
673
  msgid "Google Merchant Key"
674
  msgstr ""
675
 
676
- #: wp-e-commerce/install_and_update.php:133
 
677
  msgid "Google Merchant ID"
678
  msgstr ""
679
 
680
- #: wp-e-commerce/install_and_update.php:135
 
681
  msgid "Default Brand"
682
  msgstr ""
683
 
684
- #: wp-e-commerce/install_and_update.php:136
 
685
  msgid "Select what product group you want to display on the products page"
686
  msgstr ""
687
 
688
- #: wp-e-commerce/install_and_update.php:149
689
- #: wp-e-commerce/install_and_update.php:155
 
690
  msgid "paypal business"
691
  msgstr ""
692
 
693
- #: wp-e-commerce/install_and_update.php:150
694
- #: wp-e-commerce/install_and_update.php:151
695
- #: wp-e-commerce/install_and_update.php:158
 
 
696
  msgid "paypal url"
697
  msgstr ""
698
 
699
- #: wp-e-commerce/install_and_update.php:162
 
 
700
  msgid "Show Product Ratings"
701
  msgstr ""
702
 
703
- #: wp-e-commerce/install_and_update.php:163
704
- msgid "Thank you for purchasing with %shop_name%, any items to be shipped will be processed as soon as possible, any items that can be downloaded can be downloaded using the links on this page.All prices include tax and postage and packaging where applicable.You ordered these items:%product_list%%total_shipping%%total_price%"
 
 
 
 
 
 
 
705
  msgstr ""
706
 
707
- #: wp-e-commerce/install_and_update.php:164
 
 
708
  msgid "%product_list%%total_shipping%%total_price%"
709
  msgstr ""
710
 
711
- #: wp-e-commerce/install_and_update.php:207
 
712
  msgid "Products Page"
713
  msgstr ""
714
 
715
- #: wp-e-commerce/install_and_update.php:213
 
716
  msgid "Checkout"
717
  msgstr ""
718
 
719
- #: wp-e-commerce/install_and_update.php:225
 
720
  msgid "Transaction Results"
721
  msgstr ""
722
 
723
- #: wp-e-commerce/install_and_update.php:231
 
724
  msgid "Your Account"
725
  msgstr ""
726
 
727
- #: wp-e-commerce/install_and_update.php:647
 
728
  msgid "1. Your billing/contact details"
729
  msgstr ""
730
 
731
- #: wp-e-commerce/install_and_update.php:653
732
- #: wp-e-commerce/install_and_update.php:662
733
- msgid "Postal Code"
734
- msgstr ""
735
-
736
- #: wp-e-commerce/install_and_update.php:655
737
- msgid "2. Shipping details"
738
- msgstr ""
739
-
740
- #: wp-e-commerce/share-this.php:430
741
- msgid "E-mail this, post to del.icio.us, etc."
742
- msgstr ""
743
-
744
- #: wp-e-commerce/share-this.php:483
745
- msgid "Close"
746
- msgstr ""
747
-
748
- #: wp-e-commerce/share-this.php:485
749
- #: wp-e-commerce/share-this.php:836
750
- msgid "Social Web"
751
- msgstr ""
752
-
753
- #: wp-e-commerce/share-this.php:486
754
- #: wp-e-commerce/share-this.php:861
755
- msgid "E-mail"
756
- msgstr ""
757
-
758
- #: wp-e-commerce/share-this.php:502
759
- #: wp-e-commerce/share-this.php:865
760
- msgid "E-mail It"
761
- msgstr ""
762
-
763
- #: wp-e-commerce/share-this.php:505
764
- #: wp-e-commerce/share-this.php:868
765
- msgid "To Address:"
766
  msgstr ""
767
 
768
- #: wp-e-commerce/share-this.php:509
769
- #: wp-e-commerce/share-this.php:872
770
- msgid "Your Name:"
 
771
  msgstr ""
772
 
773
- #: wp-e-commerce/share-this.php:513
774
- #: wp-e-commerce/share-this.php:876
775
- msgid "Your Address:"
776
  msgstr ""
777
 
778
- #: wp-e-commerce/share-this.php:517
779
- #: wp-e-commerce/share-this.php:880
780
- msgid "Send It"
781
  msgstr ""
782
 
783
- #: wp-e-commerce/share-this.php:599
784
- msgid "Click your <strong>back button</strong> and make sure those e-mail addresses are valid then try again."
785
  msgstr ""
786
 
787
- #: wp-e-commerce/share-this.php:609
788
- msgid "Check out this product on "
789
  msgstr ""
790
 
791
- #: wp-e-commerce/share-this.php:614
792
- #: wp-e-commerce/share-this.php:634
793
- msgid "Greetings--"
 
794
  msgstr ""
795
 
796
- #: wp-e-commerce/share-this.php:615
797
- #: wp-e-commerce/share-this.php:635
798
- msgid " thinks this will be of interest to you:"
799
  msgstr ""
800
 
801
- #: wp-e-commerce/share-this.php:628
802
- #: wp-e-commerce/share-this.php:638
803
- msgid "Enjoy."
804
  msgstr ""
805
 
806
- #: wp-e-commerce/share-this.php:696
807
- msgid "Share This : "
808
  msgstr ""
809
 
810
- #: wp-e-commerce/share-this.php:832
811
- #, php-format
812
- msgid "<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."
813
  msgstr ""
814
 
815
- #: wp-e-commerce/share-this.php:903
816
- msgid "Posted in: "
 
 
 
 
 
 
 
817
  msgstr ""
818
 
819
- #: wp-e-commerce/share-this.php:906
820
- msgid "Return to:"
821
  msgstr ""
822
 
823
- #: wp-e-commerce/share-this.php:911
824
- msgid "Powered by <a href=\"http://alexking.org/projects/wordpress\">Share This</a>"
825
  msgstr ""
826
 
827
- #: wp-e-commerce/shopping_cart_functions.php:36
828
- #: wp-e-commerce/shopping_cart_functions.php:44
829
- #: wp-e-commerce/shopping_cart_functions.php:54
830
- msgid "Shopping Cart"
 
 
831
  msgstr ""
832
 
833
- #: wp-e-commerce/tagging_functions.php:79
834
  #, php-format
835
- msgid "%d topics"
836
- msgstr ""
837
-
838
- #: wp-e-commerce/tax_and_shipping.php:34
839
- msgid "GST/Tax Rate"
840
- msgstr ""
841
-
842
- #: wp-e-commerce/transaction_results.php:39
843
- msgid "Sorry your transaction was not accepted.<br /><a href="
844
- msgstr ""
845
-
846
- #: wp-e-commerce/transaction_result_functions.php:34
847
- msgid "We&#39;re Sorry, your order has not been accepted, the most likely reason is that you have insufficient funds."
848
  msgstr ""
849
 
850
- #: wp-e-commerce/transaction_result_functions.php:36
851
- msgid "New pending order"
 
 
852
  msgstr ""
853
 
854
- #: wp-e-commerce/transaction_result_functions.php:36
855
- msgid "There is a new order awaiting processing:"
 
 
856
  msgstr ""
857
 
858
- #: wp-e-commerce/transaction_result_functions.php:40
859
- #: wp-e-commerce/transaction_result_functions.php:249
860
- msgid "Thank you, your purchase is pending, you will be sent an email once the order clears."
861
  msgstr ""
862
 
863
- #: wp-e-commerce/transaction_result_functions.php:158
864
- #: wp-e-commerce/transaction_result_functions.php:159
865
- msgid "Click to download"
866
  msgstr ""
867
 
868
- #: wp-e-commerce/transaction_result_functions.php:205
869
- #: wp-e-commerce/transaction_result_functions.php:212
870
- #: wp-e-commerce/user-log.php:317
871
- msgid "Total Shipping"
872
  msgstr ""
873
 
874
- #: wp-e-commerce/transaction_result_functions.php:206
875
- #: wp-e-commerce/transaction_result_functions.php:213
876
- #: wp-e-commerce/user-log.php:220
877
- msgid "Total"
878
  msgstr ""
879
 
880
- #: wp-e-commerce/transaction_result_functions.php:215
881
- #: wp-e-commerce/transaction_result_functions.php:216
882
- msgid "Your Transaction ID"
 
883
  msgstr ""
884
 
885
- #: wp-e-commerce/transaction_result_functions.php:217
886
- msgid "Transaction ID"
 
 
887
  msgstr ""
888
 
889
- #: wp-e-commerce/transaction_result_functions.php:250
890
- msgid "Order Pending: Payment Required"
891
  msgstr ""
892
 
893
- #: wp-e-commerce/transaction_result_functions.php:252
894
- msgid "Purchase Receipt"
895
  msgstr ""
896
 
897
- #: wp-e-commerce/transaction_result_functions.php:257
898
- #: wp-e-commerce/user-log.php:336
899
- msgid "Customer Details"
900
  msgstr ""
901
 
902
- #: wp-e-commerce/transaction_result_functions.php:273
903
- msgid "Delivery State"
 
 
 
904
  msgstr ""
905
 
906
- #: wp-e-commerce/transaction_result_functions.php:292
907
- msgid "Purchase Report"
908
  msgstr ""
909
 
910
- #: wp-e-commerce/transaction_result_functions.php:308
911
- msgid "The Transaction was successful"
912
  msgstr ""
913
 
914
- #: wp-e-commerce/transaction_result_functions.php:316
915
- msgid "Oops, there is nothing in your cart."
916
  msgstr ""
917
 
918
- #: wp-e-commerce/transaction_result_functions.php:316
919
- msgid "Please visit our shop"
920
  msgstr ""
921
 
922
- #: wp-e-commerce/user-downloads.php:41
923
- msgid "File Names"
924
  msgstr ""
925
 
926
- #: wp-e-commerce/user-downloads.php:42
927
- msgid "Downloads Left"
 
 
928
  msgstr ""
929
 
930
- #: wp-e-commerce/user-downloads.php:43
931
- #: wp-e-commerce/user-log.php:56
932
- msgid "Date"
933
  msgstr ""
934
 
935
- #: wp-e-commerce/user-downloads.php:69
936
- msgid "You have not purchased any downloadable products yet."
937
  msgstr ""
938
 
939
- #: wp-e-commerce/user-log.php:52
940
- msgid "Status"
941
  msgstr ""
942
 
943
- #: wp-e-commerce/user-log.php:65
944
- #: wp-e-commerce/user-log.php:383
945
- msgid "Payment Method"
946
  msgstr ""
947
 
948
- #: wp-e-commerce/user-log.php:94
949
- msgid "Details"
950
  msgstr ""
951
 
952
- #: wp-e-commerce/user-log.php:147
953
- msgid "Order Status"
 
 
 
 
954
  msgstr ""
955
 
956
- #: wp-e-commerce/user-log.php:169
957
- msgid "Shipping Details"
958
  msgstr ""
959
 
960
- #: wp-e-commerce/user-log.php:188
961
- msgid "Order Details"
962
  msgstr ""
963
 
964
- #: wp-e-commerce/user-log.php:212
965
- msgid "GST"
966
  msgstr ""
967
 
968
- #: wp-e-commerce/user-log.php:216
969
- msgid "P&amp;P"
970
  msgstr ""
971
 
972
- #: wp-e-commerce/user-log.php:318
973
- msgid "Final Total"
974
  msgstr ""
975
 
976
- #: wp-e-commerce/user-log.php:384
977
- msgid "Purchase No."
978
  msgstr ""
979
 
980
- #: wp-e-commerce/user-log.php:387
981
- msgid "Transaction Id"
982
  msgstr ""
983
 
984
- #: wp-e-commerce/user-log.php:402
985
- msgid "No transactions for this month."
986
  msgstr ""
987
 
988
- #: wp-e-commerce/user-log.php:413
989
- msgid "There have not been any purchases yet."
990
  msgstr ""
991
 
992
- #: wp-e-commerce/user-log.php:426
993
- msgid "You must be logged in to use this page. Please use the form below to login to your account."
 
 
994
  msgstr ""
995
 
996
- #: wp-e-commerce/wp-shopping-cart.old.php:57
997
- msgid "Note: if this is blank, the image will not be resized"
 
998
  msgstr ""
999
 
1000
- #: wp-e-commerce/wp-shopping-cart.old.php:377
1001
- #: wp-e-commerce/wp-shopping-cart.old.php:1660
1002
- #: wp-e-commerce/wp-shopping-cart.old.php:1666
1003
- msgid "Text"
1004
  msgstr ""
1005
 
1006
- #: wp-e-commerce/wp-shopping-cart.old.php:380
1007
- #: wp-e-commerce/wp-shopping-cart.old.php:1663
1008
- #: wp-e-commerce/wp-shopping-cart.old.php:1674
1009
- msgid "Textarea"
1010
  msgstr ""
1011
 
1012
- #: wp-e-commerce/wp-shopping-cart.old.php:381
1013
- #: wp-e-commerce/wp-shopping-cart.old.php:1664
1014
- #: wp-e-commerce/wp-shopping-cart.old.php:1675
1015
- msgid "Heading"
1016
  msgstr ""
1017
 
1018
- #: wp-e-commerce/wp-shopping-cart.old.php:382
1019
- #: wp-e-commerce/wp-shopping-cart.old.php:1665
1020
- #: wp-e-commerce/wp-shopping-cart.old.php:1676
1021
- msgid "Coupon"
1022
  msgstr ""
1023
 
1024
- #: wp-e-commerce/wp-shopping-cart.old.php:387
1025
- #: wp-e-commerce/wp-shopping-cart.old.php:469
1026
- msgid "Label"
 
1027
  msgstr ""
1028
 
1029
- #: wp-e-commerce/wp-shopping-cart.old.php:388
1030
- msgid "Label Description"
 
 
 
1031
  msgstr ""
1032
 
1033
- #: wp-e-commerce/wp-shopping-cart.old.php:389
1034
- msgid "Item Number"
 
 
1035
  msgstr ""
1036
 
1037
- #: wp-e-commerce/wp-shopping-cart.old.php:390
1038
- msgid "Life Number"
1039
- msgstr ""
 
 
 
1040
 
1041
- #: wp-e-commerce/wp-shopping-cart.old.php:391
1042
- msgid "Product Code"
 
 
1043
  msgstr ""
1044
 
1045
- #: wp-e-commerce/wp-shopping-cart.old.php:392
1046
- msgid "PDF"
 
 
1047
  msgstr ""
1048
 
1049
- #: wp-e-commerce/wp-shopping-cart.old.php:394
1050
- msgid " and above"
1051
  msgstr ""
1052
 
1053
- #: wp-e-commerce/wp-shopping-cart.old.php:395
1054
  msgid "If price is "
1055
  msgstr ""
1056
 
1057
- #: wp-e-commerce/wp-shopping-cart.old.php:396
1058
- msgid "If weight is "
1059
- msgstr ""
1060
-
1061
- #: wp-e-commerce/wp-shopping-cart.old.php:465
1062
- msgid "Date requested"
1063
- msgstr ""
1064
-
1065
- #: wp-e-commerce/wp-shopping-cart.old.php:467
1066
- msgid "Comment"
1067
- msgstr ""
1068
-
1069
- #: wp-e-commerce/wp-shopping-cart.old.php:1016
1070
- msgid "<strong>ERROR</strong>: Please enter a username."
1071
- msgstr ""
1072
-
1073
- #: wp-e-commerce/wp-shopping-cart.old.php:1020
1074
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
1075
- msgstr ""
1076
-
1077
- #: wp-e-commerce/wp-shopping-cart.old.php:1022
1078
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
1079
- msgstr ""
1080
-
1081
- #: wp-e-commerce/wp-shopping-cart.old.php:1027
1082
- msgid "<strong>ERROR</strong>: This username is invalid. Please enter a valid username."
1083
- msgstr ""
1084
-
1085
- #: wp-e-commerce/wp-shopping-cart.old.php:1032
1086
- msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
1087
  msgstr ""
1088
 
1089
- #: wp-e-commerce/wp-shopping-cart.old.php:1037
1090
- msgid "<strong>ERROR</strong>: This email address is already registered, please supply another."
1091
  msgstr ""
1092
 
1093
- #: wp-e-commerce/wp-shopping-cart.old.php:1047
1094
- #, php-format
1095
- msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
1096
  msgstr ""
1097
 
1098
- #: wp-e-commerce/wp-shopping-cart.old.php:1052
1099
- msgid "Registration Complete"
1100
  msgstr ""
1101
 
1102
- #: wp-e-commerce/wp-shopping-cart.old.php:1053
1103
- #, php-format
1104
- msgid "Username: %s"
1105
  msgstr ""
1106
 
1107
- #: wp-e-commerce/wp-shopping-cart.old.php:1054
1108
- #, php-format
1109
- msgid "Password: %s"
1110
  msgstr ""
1111
 
1112
- #: wp-e-commerce/wp-shopping-cart.old.php:1054
1113
- msgid "emailed to you"
1114
  msgstr ""
1115
 
1116
- #: wp-e-commerce/wp-shopping-cart.old.php:1055
1117
- #, php-format
1118
- msgid "E-mail: %s"
1119
  msgstr ""
1120
 
1121
- #: wp-e-commerce/wp-shopping-cart.old.php:1071
1122
- msgid "Register"
1123
  msgstr ""
1124
 
1125
- #: wp-e-commerce/wp-shopping-cart.old.php:1212
1126
- #: wp-e-commerce/wp-shopping-cart.old.php:1273
1127
- msgid "This download is no longer valid, Please contact the site administrator for more information."
1128
  msgstr ""
1129
 
1130
- #: wp-e-commerce/wp-shopping-cart.old.php:1401
1131
- msgid "Click stars to rate"
1132
  msgstr ""
1133
 
1134
- #: wp-e-commerce/wp-shopping-cart.old.php:1406
1135
- msgid "No Votes"
1136
  msgstr ""
1137
 
1138
- #: wp-e-commerce/wp-shopping-cart.old.php:1410
1139
- msgid "1 Vote"
1140
  msgstr ""
1141
 
1142
- #: wp-e-commerce/wp-shopping-cart.old.php:1414
1143
- msgid "Votes"
1144
  msgstr ""
1145
 
1146
- #: wp-e-commerce/wp-shopping-cart.old.php:1429
1147
- msgid "person has given this image"
1148
  msgstr ""
1149
 
1150
- #: wp-e-commerce/wp-shopping-cart.old.php:1433
1151
- msgid "people have given this image"
1152
  msgstr ""
1153
 
1154
- #: wp-e-commerce/wp-shopping-cart.old.php:1433
1155
- msgid "stars."
1156
  msgstr ""
1157
 
1158
- #: wp-e-commerce/wp-shopping-cart.old.php:1546
1159
- msgid "Your \"products page\" is not currently set to display any products. You need to select a product grouping to display by default. <br /> This is set in the Shop Settings page."
1160
  msgstr ""
1161
 
1162
- #: wp-e-commerce/wp-shopping-cart.old.php:1671
1163
- msgid "Delivery Address"
1164
  msgstr ""
1165
 
1166
- #: wp-e-commerce/wp-shopping-cart.old.php:1672
1167
- msgid "Delivery City"
1168
  msgstr ""
1169
 
1170
- #: wp-e-commerce/wp-shopping-cart.old.php:1673
1171
- msgid "Delivery Country"
1172
  msgstr ""
1173
 
1174
- #: wp-e-commerce/wp-shopping-cart.old.php:1720
1175
- msgid "The item has been added"
1176
  msgstr ""
1177
 
1178
- #: wp-e-commerce/wp-shopping-cart.old.php:1722
1179
- msgid "The item has not been added"
1180
  msgstr ""
1181
 
1182
- #: wp-e-commerce/wp-shopping-cart.old.php:1732
1183
- msgid "Edit Variation Set"
1184
  msgstr ""
1185
 
1186
- #: wp-e-commerce/wp-shopping-cart.old.php:1743
1187
- msgid "Add Variation Set"
 
 
 
 
1188
  msgstr ""
1189
 
1190
- #: wp-e-commerce/wp-shopping-cart.old.php:1792
1191
- msgid "Add Value"
1192
  msgstr ""
1193
 
1194
- #: wp-e-commerce/js/tinymce3/window.php:36
1195
- #: wp-e-commerce/js/tinymce3/window.php:118
1196
- msgid "Category"
1197
  msgstr ""
1198
 
1199
- #: wp-e-commerce/js/tinymce3/window.php:37
1200
- msgid "Product Slider"
 
1201
  msgstr ""
1202
 
1203
- #: wp-e-commerce/js/tinymce3/window.php:38
1204
- msgid "Add Product"
1205
  msgstr ""
1206
 
1207
- #: wp-e-commerce/js/tinymce3/window.php:48
1208
- #: wp-e-commerce/js/tinymce3/window.php:76
1209
- msgid "Select Category"
1210
  msgstr ""
1211
 
1212
- #: wp-e-commerce/js/tinymce3/window.php:51
1213
- #: wp-e-commerce/js/tinymce3/window.php:78
1214
- #: wp-e-commerce/js/tinymce3/window.php:122
1215
- msgid "No Category"
 
1216
  msgstr ""
1217
 
1218
- #: wp-e-commerce/js/tinymce3/window.php:65
1219
- msgid "Number of items per Page"
 
1220
  msgstr ""
1221
 
1222
- #: wp-e-commerce/js/tinymce3/window.php:91
1223
- msgid "Number of visible items"
 
1224
  msgstr ""
1225
 
1226
- #: wp-e-commerce/merchants/authorize.merchant.php:278
1227
- msgid "There was an error contacting the payment gateway, please try again later."
 
 
 
 
1228
  msgstr ""
1229
 
1230
- #: wp-e-commerce/merchants/chronopay.php:440
1231
- #: wp-e-commerce/merchants/paypal_multiple.php:554
1232
- msgid "Update &raquo;"
1233
  msgstr ""
1234
 
1235
- #: wp-e-commerce/merchants/paypal-standard.merchant.php:134
1236
- msgid "Your Subscription"
 
 
1237
  msgstr ""
1238
 
1239
- #: wp-e-commerce/merchants/paypal_certified.php:585
1240
- #: wp-e-commerce/merchants/paypal_multiple.php:519
1241
- msgid "Currency Converter"
1242
  msgstr ""
1243
 
1244
- #: wp-e-commerce/merchants/paypal_certified.php:588
1245
- msgid "If your website uses a currency not accepted by Paypal, select an accepted currency using the drop down menu bellow. Buyers on your site will still pay in your local currency however we will send the order through to Paypal using currency you choose below."
 
1246
  msgstr ""
1247
 
1248
- #: wp-e-commerce/merchants/paypal_multiple.php:522
1249
- #, php-format
1250
- msgid "Your website uses <strong>%s</strong>. This currency is not supported by PayPal, please select a currency using the drop down menu below. Buyers on your site will still pay in your local currency however we will send the order through to Paypal using the currency you choose below."
 
1251
  msgstr ""
1252
 
1253
- #: wp-e-commerce/merchants/paypal_pro.php:196
1254
- msgid "Sorry your transaction did not go through to Paypal successfully, please try again."
 
 
 
 
 
 
1255
  msgstr ""
1256
 
1257
- #: wp-e-commerce/merchants/paypal_pro.php:283
1258
- msgid "API Username:"
 
 
 
 
1259
  msgstr ""
1260
 
1261
- #: wp-e-commerce/merchants/paypal_pro.php:291
1262
- msgid "API Password:"
 
 
 
 
 
 
 
1263
  msgstr ""
1264
 
1265
- #: wp-e-commerce/merchants/paypal_pro.php:299
1266
- msgid "API Signature:"
 
 
 
 
 
1267
  msgstr ""
1268
 
1269
- #: wp-e-commerce/merchants/paypal_pro.php:307
1270
- msgid "Test Mode Enabled:"
 
 
 
1271
  msgstr ""
1272
 
1273
- #: wp-e-commerce/merchants/testmode.php:30
1274
- msgid "Enter the payment instructions that you wish to display to your customers when they make a purchase"
 
 
 
1275
  msgstr ""
1276
 
1277
- #: wp-e-commerce/merchants/testmode.php:32
1278
- msgid "For example, this is where you the Shop Owner might enter your bank account details or address so that your customer can make their manual payment."
 
 
1279
  msgstr ""
1280
 
1281
- #: wp-e-commerce/shipping/flatrate.php:31
1282
- msgid "If you do not wish to ship to a particular region, leave the field blank. To offer free shipping to a region, enter 0."
 
 
 
 
 
1283
  msgstr ""
1284
 
1285
- #: wp-e-commerce/shipping/tablerate.php:30
1286
- #: wp-e-commerce/themes/default/shopping_cart_page.php:189
1287
- msgid "Total Price"
 
1288
  msgstr ""
1289
 
1290
- #: wp-e-commerce/shipping/tablerate.php:30
1291
- #: wp-e-commerce/shipping/weightrate.php:30
1292
- msgid "Shipping Price"
 
1293
  msgstr ""
1294
 
1295
- #: wp-e-commerce/shipping/ups.php:34
1296
- msgid "Your Packaging"
 
 
1297
  msgstr ""
1298
 
1299
- #: wp-e-commerce/shipping/ups.php:35
1300
- msgid "UPS Letter"
 
 
1301
  msgstr ""
1302
 
1303
- #: wp-e-commerce/shipping/ups.php:36
1304
- msgid "UPS Express Box - Small"
 
 
1305
  msgstr ""
1306
 
1307
- #: wp-e-commerce/shipping/ups.php:37
1308
- msgid "UPS Express Box - Medium"
1309
  msgstr ""
1310
 
1311
- #: wp-e-commerce/shipping/ups.php:38
1312
- msgid "UPS Express Box - Large"
 
 
 
 
1313
  msgstr ""
1314
 
1315
- #: wp-e-commerce/shipping/ups.php:39
1316
- msgid "UPS Tube"
 
 
 
1317
  msgstr ""
1318
 
1319
- #: wp-e-commerce/shipping/ups.php:40
1320
- msgid "UPS Pak"
 
 
 
1321
  msgstr ""
1322
 
1323
- #: wp-e-commerce/shipping/ups.php:45
1324
- msgid "Destination Type"
 
 
1325
  msgstr ""
1326
 
1327
- #: wp-e-commerce/shipping/ups.php:59
1328
- msgid "Residential Address"
 
 
 
 
1329
  msgstr ""
1330
 
1331
- #: wp-e-commerce/shipping/ups.php:60
1332
- msgid "Commercial Address"
 
 
1333
  msgstr ""
1334
 
1335
- #: wp-e-commerce/shipping/ups.php:66
1336
- msgid "Packaging"
 
 
1337
  msgstr ""
1338
 
1339
- #: wp-e-commerce/shipping/ups.php:158
1340
- msgid "Because your order is over 150lbs, the SIte Owner will contact you directly about shipping rates."
 
 
1341
  msgstr ""
1342
 
1343
- #: wp-e-commerce/shipping/usps.php:33
1344
- msgid "USPS ID"
 
 
1345
  msgstr ""
1346
 
1347
- #: wp-e-commerce/shipping/usps.php:41
1348
- msgid "USPS Password"
 
 
1349
  msgstr ""
1350
 
1351
- #: wp-e-commerce/shipping/weightrate.php:30
1352
- msgid "Total weight <br />(<abbr alt=\"You must enter the weight here in pounds, regardless of what you used on your products\" title=\"You must enter the weight here in pounds, regardless of what you used on your products\">in Pounds</abbr>)"
 
 
1353
  msgstr ""
1354
 
1355
- #: wp-e-commerce/themes/default/cart_widget.php:15
1356
- msgid "Number of items"
 
 
 
1357
  msgstr ""
1358
 
1359
- #: wp-e-commerce/themes/default/cart_widget.php:23
1360
- #: wp-e-commerce/themes/default/shopping_cart_page.php:13
1361
- msgid "Product"
 
1362
  msgstr ""
1363
 
1364
- #: wp-e-commerce/themes/default/cart_widget.php:24
1365
- msgid "Qty"
 
 
 
1366
  msgstr ""
1367
 
1368
- #: wp-e-commerce/themes/default/cart_widget.php:59
1369
- msgid "Postage &amp; Tax "
 
 
 
1370
  msgstr ""
1371
 
1372
- #: wp-e-commerce/themes/default/cart_widget.php:72
1373
- msgid "Empty your cart"
 
1374
  msgstr ""
1375
 
1376
- #: wp-e-commerce/themes/default/cart_widget.php:76
1377
- msgid "Go to Checkout"
 
 
1378
  msgstr ""
1379
 
1380
- #: wp-e-commerce/themes/default/cart_widget.php:78
1381
- msgid "Your shopping cart is empty"
 
1382
  msgstr ""
1383
 
1384
- #: wp-e-commerce/themes/default/cart_widget.php:80
1385
- msgid "Visit the shop"
 
1386
  msgstr ""
1387
 
1388
- #: wp-e-commerce/themes/default/functions.php:15
1389
- msgid "Page Number position"
 
 
1390
  msgstr ""
1391
 
1392
- #: wp-e-commerce/themes/default/grid_view.php:149
1393
- #: wp-e-commerce/themes/default/list_view.php:163
1394
- #: wp-e-commerce/themes/default/products_page.php:232
1395
- msgid "This product has sold out."
1396
  msgstr ""
1397
 
1398
- #: wp-e-commerce/themes/default/grid_view.php:173
1399
- #: wp-e-commerce/themes/default/list_view.php:185
1400
- #: wp-e-commerce/themes/default/products_page.php:256
1401
- msgid "There are no products in this group."
1402
  msgstr ""
1403
 
1404
- #: wp-e-commerce/themes/default/list_view.php:153
1405
- #: wp-e-commerce/themes/default/products_page.php:222
1406
- msgid "Buy Now"
 
 
1407
  msgstr ""
1408
 
1409
- #: wp-e-commerce/themes/default/list_view.php:159
1410
- #: wp-e-commerce/themes/default/products_page.php:228
1411
- msgid "Updating cart..."
1412
  msgstr ""
1413
 
1414
- #: wp-e-commerce/themes/default/products_page.php:197
1415
- msgid "Donation"
1416
  msgstr ""
1417
 
1418
- #: wp-e-commerce/themes/default/shopping_cart_page.php:9
1419
- msgid "Please review your order"
1420
  msgstr ""
1421
 
1422
- #: wp-e-commerce/themes/default/shopping_cart_page.php:32
1423
- #: wp-e-commerce/themes/default/shopping_cart_page.php:57
1424
- msgid "Update"
1425
  msgstr ""
1426
 
1427
- #: wp-e-commerce/themes/default/shopping_cart_page.php:41
1428
- msgid "Remove"
1429
  msgstr ""
1430
 
1431
- #: wp-e-commerce/themes/default/shopping_cart_page.php:50
1432
- msgid "Coupon is not valid."
1433
  msgstr ""
1434
 
1435
- #: wp-e-commerce/themes/default/shopping_cart_page.php:53
1436
- msgid "Enter your coupon number"
1437
  msgstr ""
1438
 
1439
- #: wp-e-commerce/themes/default/shopping_cart_page.php:82
1440
- msgid "Calculate Shipping Price"
1441
  msgstr ""
1442
 
1443
- #: wp-e-commerce/themes/default/shopping_cart_page.php:86
1444
- msgid "Please choose a country below to calculate your shipping costs"
 
 
 
1445
  msgstr ""
1446
 
1447
- #: wp-e-commerce/themes/default/shopping_cart_page.php:95
1448
- msgid "Please provide a Zipcode and click Calculate in order to continue."
1449
  msgstr ""
1450
 
1451
- #: wp-e-commerce/themes/default/shopping_cart_page.php:102
1452
- msgid "Sorry, online ordering is unavailable to this destination and/or weight. Please double check your destination details."
1453
  msgstr ""
1454
 
1455
- #: wp-e-commerce/themes/default/shopping_cart_page.php:120
1456
- msgid "- Choose a Shipping Rate"
1457
  msgstr ""
1458
 
1459
- #: wp-e-commerce/themes/default/shopping_cart_page.php:210
1460
- msgid "Not yet a member?"
1461
  msgstr ""
1462
 
1463
- #: wp-e-commerce/themes/default/shopping_cart_page.php:211
1464
- msgid "In order to buy from us, you'll need an account. Joining is free and easy. All you need is a username, password and valid email address."
1465
  msgstr ""
1466
 
1467
- #: wp-e-commerce/themes/default/shopping_cart_page.php:225
1468
- msgid "Username"
1469
  msgstr ""
1470
 
1471
- #: wp-e-commerce/themes/default/shopping_cart_page.php:226
1472
- msgid "Password"
1473
  msgstr ""
1474
 
1475
- #: wp-e-commerce/themes/default/shopping_cart_page.php:231
1476
- msgid "Please enter your contact details:"
1477
  msgstr ""
1478
 
1479
- #: wp-e-commerce/themes/default/shopping_cart_page.php:233
1480
- msgid "Fields marked with an asterisk must be filled in."
1481
  msgstr ""
1482
 
1483
- #: wp-e-commerce/themes/default/shopping_cart_page.php:308
1484
- msgid "Select a payment gateway"
 
1485
  msgstr ""
1486
 
1487
- #: wp-e-commerce/themes/default/shopping_cart_page.php:342
1488
- msgid "I agree to The "
1489
  msgstr ""
1490
 
1491
- #: wp-e-commerce/themes/default/shopping_cart_page.php:343
1492
- msgid "Terms and Conditions"
1493
  msgstr ""
1494
 
1495
- #: wp-e-commerce/themes/default/shopping_cart_page.php:355
1496
- msgid "Make Purchase"
1497
  msgstr ""
1498
 
1499
- #: wp-e-commerce/themes/default/single_product.php:93
1500
- #: wp-e-commerce/themes/iShop/single_product.php:94
1501
- msgid "Personalize your product"
1502
  msgstr ""
1503
 
1504
- #: wp-e-commerce/themes/default/single_product.php:94
1505
- #: wp-e-commerce/themes/iShop/single_product.php:95
1506
- msgid "Complete this form to include a personalized message with your purchase."
1507
  msgstr ""
1508
 
1509
- #: wp-e-commerce/themes/default/single_product.php:101
1510
- #: wp-e-commerce/themes/iShop/single_product.php:102
1511
- msgid "Upload a File"
1512
  msgstr ""
1513
 
1514
- #: wp-e-commerce/themes/default/single_product.php:102
1515
- #: wp-e-commerce/themes/iShop/single_product.php:103
1516
- msgid "Select a file from your computer to include with this purchase. "
1517
  msgstr ""
1518
 
1519
- #: wp-e-commerce/updates/updating_tasks.php:53
1520
  msgid ""
1521
- "Your purchase from %shop_name% has just been dispatched. It should arrive soon. To keep track of your products status a tracking id has been attached. \\r\\n"
1522
- " your tracking id is: %trackid%"
1523
- msgstr ""
1524
-
1525
- #: wp-e-commerce/updates/updating_tasks.php:56
1526
- msgid "Your Order from %shop_name% has been dispatched"
1527
  msgstr ""
1528
 
1529
- #: wp-e-commerce/widgets/admin_menu_widget.php:8
1530
- #: wp-e-commerce/widgets/admin_menu_widget.php:22
1531
  msgid "Admin Menu"
1532
  msgstr ""
1533
 
1534
- #: wp-e-commerce/widgets/category_widget.27.php:19
1535
- #: wp-e-commerce/wpsc-admin/admin.php:101
 
 
1536
  msgid "Categories"
1537
  msgstr ""
1538
 
1539
- #: wp-e-commerce/widgets/category_widget.27.php:134
1540
- #: wp-e-commerce/widgets/category_widget.28.php:69
1541
- #: wp-e-commerce/widgets/donations_widget.php:71
1542
- #: wp-e-commerce/widgets/latest_product_widget.php:73
1543
- #: wp-e-commerce/widgets/price_range_widget.php:71
1544
- #: wp-e-commerce/widgets/product_tag_widget.php:30
1545
- #: wp-e-commerce/widgets/shopping_cart_widget.php:66
1546
- #: wp-e-commerce/widgets/specials_widget.php:103
1547
  msgid "Title:"
1548
  msgstr ""
1549
 
1550
- #: wp-e-commerce/widgets/category_widget.27.php:159
1551
- #: wp-e-commerce/widgets/category_widget.28.php:80
1552
  msgid "Display the :category: Group"
1553
  msgstr ""
1554
 
1555
- #: wp-e-commerce/widgets/category_widget.27.php:168
1556
- #: wp-e-commerce/widgets/category_widget.28.php:88
1557
  msgid "Display the Group thumbnails in the sidebar"
1558
  msgstr ""
1559
 
1560
- #: wp-e-commerce/widgets/category_widget.27.php:179
1561
- #: wp-e-commerce/widgets/category_widget.28.php:11
1562
  msgid "Product Grouping Widget"
1563
  msgstr ""
1564
 
1565
- #: wp-e-commerce/widgets/category_widget.27.php:181
1566
- #: wp-e-commerce/widgets/category_widget.28.php:12
1567
- #: wp-e-commerce/widgets/category_widget.28.php:19
1568
  msgid "Product Categories"
1569
  msgstr ""
1570
 
1571
- #: wp-e-commerce/widgets/latest_product_widget.php:7
1572
- #: wp-e-commerce/widgets/latest_product_widget.php:87
1573
- #: wp-e-commerce/widgets/latest_product_widget.php:88
1574
  msgid "Latest Products"
1575
  msgstr ""
1576
 
1577
- #: wp-e-commerce/widgets/latest_product_widget.php:74
1578
  msgid "Number of products to show:"
1579
  msgstr ""
1580
 
1581
- #: wp-e-commerce/widgets/price_range_widget.php:6
1582
- #: wp-e-commerce/widgets/price_range_widget.php:77
1583
- #: wp-e-commerce/widgets/price_range_widget.php:78
1584
  msgid "Price Range"
1585
  msgstr ""
1586
 
1587
- #: wp-e-commerce/widgets/price_range_widget.php:54
1588
  msgid "Show All"
1589
  msgstr ""
1590
 
1591
- #: wp-e-commerce/widgets/product_tag_widget.php:9
1592
- #: wp-e-commerce/widgets/product_tag_widget.php:38
1593
- #: wp-e-commerce/widgets/product_tag_widget.php:39
 
1594
  msgid "Product Tags"
1595
  msgstr ""
1596
 
1597
- #: wp-e-commerce/widgets/shopping_cart_widget.php:37
1598
- #: wp-e-commerce/widgets/shopping_cart_widget.php:42
1599
  msgid "Loading..."
1600
  msgstr ""
1601
 
1602
- #: wp-e-commerce/widgets/specials_widget.php:10
1603
- #: wp-e-commerce/widgets/specials_widget.php:112
1604
- #: wp-e-commerce/widgets/specials_widget.php:113
 
 
 
1605
  msgid "Product Specials"
1606
  msgstr ""
1607
 
1608
- #: wp-e-commerce/widgets/specials_widget.php:106
1609
  msgid "Show Description:"
1610
  msgstr ""
1611
 
1612
- #: wp-e-commerce/wpsc-admin/admin.php:75
1613
- #: wp-e-commerce/wpsc-admin/admin.php:78
1614
- #: wp-e-commerce/wpsc-admin/admin.php:80
1615
- #: wp-e-commerce/wpsc-admin/admin.php:85
1616
- #: wp-e-commerce/wpsc-admin/admin.php:88
1617
- #: wp-e-commerce/wpsc-admin/admin.php:98
1618
- msgid "Products"
 
 
 
 
 
 
 
 
 
 
 
1619
  msgstr ""
1620
 
1621
- #: wp-e-commerce/wpsc-admin/admin.php:93
1622
- #: wp-e-commerce/wpsc-admin/admin.php:421
1623
- #: wp-e-commerce/wpsc-admin/admin.php:451
1624
  msgid "Sales"
1625
  msgstr ""
1626
 
1627
- #: wp-e-commerce/wpsc-admin/admin.php:105
 
 
 
 
1628
  msgid "Variations"
1629
  msgstr ""
1630
 
1631
- #: wp-e-commerce/wpsc-admin/admin.php:126
1632
  msgid "Marketing"
1633
  msgstr ""
1634
 
1635
- #: wp-e-commerce/wpsc-admin/admin.php:132
1636
  msgid "Upgrades"
1637
  msgstr ""
1638
 
1639
- #: wp-e-commerce/wpsc-admin/admin.php:136
1640
  msgid "- Debug"
1641
  msgstr ""
1642
 
1643
- #: wp-e-commerce/wpsc-admin/admin.php:202
 
 
 
 
 
 
 
 
 
 
 
 
 
1644
  msgid "Tags used on this post:"
1645
  msgstr ""
1646
 
1647
- #: wp-e-commerce/wpsc-admin/admin.php:204
1648
  msgid "Add new tag"
1649
  msgstr ""
1650
 
1651
- #: wp-e-commerce/wpsc-admin/admin.php:205
 
1652
  msgid "Separate tags with commas"
1653
  msgstr ""
1654
 
1655
- #: wp-e-commerce/wpsc-admin/admin.php:408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1656
  msgid "Last 30 Days"
1657
  msgstr ""
1658
 
1659
- #: wp-e-commerce/wpsc-admin/admin.php:427
1660
- #: wp-e-commerce/wpsc-admin/admin.php:457
1661
  msgid "Orders"
1662
  msgstr ""
1663
 
1664
- #: wp-e-commerce/wpsc-admin/admin.php:437
1665
- #: wp-e-commerce/wpsc-admin/admin.php:469
1666
  msgid "Avg Orders"
1667
  msgstr ""
1668
 
1669
- #: wp-e-commerce/wpsc-admin/admin.php:447
1670
  msgid "Life Time"
1671
  msgstr ""
1672
 
1673
- #: wp-e-commerce/wpsc-admin/admin.php:486
1674
- #: wp-e-commerce/wpsc-admin/admin.php:714
1675
  msgid "e-Commerce"
1676
  msgstr ""
1677
 
1678
- #: wp-e-commerce/wpsc-admin/admin.php:503
1679
  msgid "E-Commerce"
1680
  msgstr ""
1681
 
1682
- #: wp-e-commerce/wpsc-admin/admin.php:620
1683
  msgid "Sales by Quarter"
1684
  msgstr ""
1685
 
1686
- #: wp-e-commerce/wpsc-admin/admin.php:706
1687
  msgid "Sales by"
1688
  msgstr ""
1689
 
1690
- #: wp-e-commerce/wpsc-admin/ajax-and-init.php:966
 
 
 
 
 
 
 
 
 
 
 
1691
  msgid "Your Order"
1692
  msgstr ""
1693
 
1694
- #: wp-e-commerce/wpsc-admin/ajax-and-init.php:1213
 
 
 
 
 
1695
  msgid "The administrator has unlocked your file"
1696
  msgstr ""
1697
 
1698
- #: wp-e-commerce/wpsc-admin/ajax-and-init.php:1213
1699
- msgid "Dear CustomerWe are pleased to advise you that your order has been updated and your downloads are now active.Please download your purchase using the links provided below.[download_links]Thank you for your custom."
 
 
 
1700
  msgstr ""
1701
 
1702
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:41
1703
  msgid "Select the markets you are selling this category to."
1704
  msgstr ""
1705
 
1706
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:456
 
 
 
 
 
 
 
 
 
1707
  msgid "The product group has been edited."
1708
  msgstr ""
1709
 
1710
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:461
1711
  msgid "The group has been added."
1712
  msgstr ""
1713
 
1714
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:473
1715
  msgid "The group has been edited."
1716
  msgstr ""
1717
 
1718
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:529
1719
- msgid "Are you sure you want to delete this category? If the category has any subcategories, they will be deleted too."
 
 
1720
  msgstr ""
1721
 
1722
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:537
1723
- msgid "Are you sure you want to delete this product group? All categories it contains will be deleted too."
 
 
1724
  msgstr ""
1725
 
1726
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:560
1727
- msgid "Categorizing your products into groups help your customers find them. For instance if you sell hats and trousers you might want to setup a Group called clothes and add hats and trousers to that group."
 
 
 
1728
  msgstr ""
1729
 
1730
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:575
1731
  msgid "Select a Group to Manage"
1732
  msgstr ""
1733
 
1734
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:593
1735
  msgid "or"
1736
  msgstr ""
1737
 
1738
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:595
1739
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:612
1740
  msgid "Add New Group"
1741
  msgstr ""
1742
 
1743
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:602
1744
- msgid "About This Page"
1745
  msgstr ""
1746
 
1747
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:671
1748
  msgid "&quot;[categorisation]&quot; Group"
1749
  msgstr ""
1750
 
1751
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:681
1752
  msgid "Image"
1753
  msgstr ""
1754
 
1755
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:725
1756
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:729
 
 
 
 
1757
  msgid "You are editing an item in the &quot;[categorisation]&quot; Group"
1758
  msgstr ""
1759
 
1760
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:728
1761
  msgid "Edit Details"
1762
  msgstr ""
1763
 
1764
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:744
 
1765
  msgid "Add Category"
1766
  msgstr ""
1767
 
1768
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:747
1769
- msgid "Adding a new category here will make it available when you add or edit a product."
 
 
1770
  msgstr ""
1771
 
1772
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:753
1773
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:756
1774
  msgid "You are adding a new item to the &quot;[categorisation]&quot; Group"
1775
  msgstr ""
1776
 
1777
- #: wp-e-commerce/wpsc-admin/display-groups.page.php:874
1778
- msgid "Add Group"
 
 
 
 
1779
  msgstr ""
1780
 
1781
- #: wp-e-commerce/wpsc-admin/display-items.page.php:29
1782
  msgid "Display Products"
1783
  msgstr ""
1784
 
1785
- #: wp-e-commerce/wpsc-admin/display-items.page.php:74
1786
- #: wp-e-commerce/wpsc-admin/display-variations.page.php:49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1787
  msgid "Product updated."
1788
  msgstr ""
1789
 
1790
- #: wp-e-commerce/wpsc-admin/display-items.page.php:114
1791
- msgid "The following directories are not writable: :directory: You won&#39;t be able to upload any images or files here. You will need to change the permissions on these directories to make them writable."
 
 
 
1792
  msgstr ""
1793
 
1794
- #: wp-e-commerce/wpsc-admin/display-items.page.php:147
1795
  msgid ""
1796
  "You are about to delete the selected products.\n"
1797
  " 'Cancel' to stop, 'OK' to delete."
1798
  msgstr ""
1799
 
1800
- #: wp-e-commerce/wpsc-admin/display-items.page.php:222
1801
  msgid "&laquo;"
1802
  msgstr ""
1803
 
1804
- #: wp-e-commerce/wpsc-admin/display-items.page.php:223
1805
  msgid "&raquo;"
1806
  msgstr ""
1807
 
1808
- #: wp-e-commerce/wpsc-admin/display-items.page.php:260
1809
  msgid "Search"
1810
  msgstr ""
1811
 
1812
- #: wp-e-commerce/wpsc-admin/display-items.page.php:265
1813
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:380
1814
  msgid "Bulk Actions"
1815
  msgstr ""
1816
 
1817
- #: wp-e-commerce/wpsc-admin/display-items.page.php:267
1818
- #: wp-e-commerce/wpsc-admin/display-items.page.php:396
1819
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:816
1820
  msgid "Publish"
1821
  msgstr ""
1822
 
1823
- #: wp-e-commerce/wpsc-admin/display-items.page.php:268
1824
- #: wp-e-commerce/wpsc-admin/display-items.page.php:343
1825
  msgid "Draft"
1826
  msgstr ""
1827
 
1828
- #: wp-e-commerce/wpsc-admin/display-items.page.php:272
1829
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:389
1830
  msgid "Apply"
1831
  msgstr ""
1832
 
1833
- #: wp-e-commerce/wpsc-admin/display-items.page.php:308
1834
  msgid "No Name"
1835
  msgstr ""
1836
 
1837
- #: wp-e-commerce/wpsc-admin/display-items.page.php:367
1838
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:341
1839
  msgid "Delete this product"
1840
  msgstr ""
1841
 
1842
- #: wp-e-commerce/wpsc-admin/display-items.page.php:369
1843
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:341
1844
  #, php-format
1845
  msgid ""
1846
  "You are about to delete this product '%s'\n"
1847
  " 'Cancel' to stop, 'OK' to delete."
1848
  msgstr ""
1849
 
1850
- #: wp-e-commerce/wpsc-admin/display-items.page.php:394
1851
  msgid "Unpublish"
1852
  msgstr ""
1853
 
1854
- #: wp-e-commerce/wpsc-admin/display-items.page.php:423
1855
  msgid "You have no products added."
1856
  msgstr ""
1857
 
1858
- #: wp-e-commerce/wpsc-admin/display-items.page.php:440
1859
  msgid "View All Categories"
1860
  msgstr ""
1861
 
1862
- #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:37
 
 
 
 
 
 
 
 
 
1863
  msgid "Thanks, your thumbnail images have been resized."
1864
  msgstr ""
1865
 
1866
- #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:92
1867
  msgid "General"
1868
  msgstr ""
1869
 
1870
- #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:93
1871
  msgid "Presentation"
1872
  msgstr ""
1873
 
1874
- #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:94
1875
  msgid "Admin"
1876
  msgstr ""
1877
 
1878
- #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:96
1879
  msgid "Payment Options"
1880
  msgstr ""
1881
 
1882
- #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:97
1883
  msgid "Import"
1884
  msgstr ""
1885
 
1886
- #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:169
1887
  msgid "To configure a shipping module select one on the left."
1888
  msgstr ""
1889
 
1890
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:76
1891
- msgid "When upgrading the Wp-E-Commerce Plugin from 3.6.* to 3.7 it is required that you associate your checkout form fields with the new Purchase Logs system. To do so please "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1892
  msgstr ""
1893
 
1894
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:158
 
 
 
 
 
 
 
 
 
 
 
 
 
1895
  msgid "Shipping Options"
1896
  msgstr ""
1897
 
1898
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:161
1899
  msgid "Shipping Method:"
1900
  msgstr ""
1901
 
1902
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:162
1903
  msgid "Shipping Option:"
1904
  msgstr ""
1905
 
1906
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:164
1907
  msgid "Tracking ID:"
1908
  msgstr ""
1909
 
1910
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:165
1911
  msgid "Shipping Status:"
1912
  msgstr ""
1913
 
1914
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:166
1915
  msgid "Track History:"
1916
  msgstr ""
1917
 
1918
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:172
1919
  msgid "Billing Details"
1920
  msgstr ""
1921
 
1922
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:173
1923
  msgid "Purchase Log Date:"
1924
  msgstr ""
1925
 
1926
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:174
1927
  msgid "Purchase Number:"
1928
  msgstr ""
1929
 
1930
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:175
1931
  msgid "Buyers Name:"
1932
  msgstr ""
1933
 
1934
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:176
1935
  msgid "Address:"
1936
  msgstr ""
1937
 
1938
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:178
1939
  msgid "Phone:"
1940
  msgstr ""
1941
 
1942
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:179
1943
  msgid "Email:"
1944
  msgstr ""
1945
 
1946
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:180
1947
  msgid "Payment Method:"
1948
  msgstr ""
1949
 
1950
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:182
1951
  msgid "How User Found Us:"
1952
  msgstr ""
1953
 
1954
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:188
1955
  msgid "Items Ordered"
1956
  msgstr ""
1957
 
1958
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:230
1959
  msgid "Order Status:"
1960
  msgstr ""
1961
 
1962
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:250
1963
  msgid "Actions"
1964
  msgstr ""
1965
 
1966
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:254
1967
  msgid "View Packing Slip"
1968
  msgstr ""
1969
 
1970
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:256
1971
  msgid "Resend Receipt to Buyer"
1972
  msgstr ""
1973
 
1974
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:258
1975
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:509
1976
  msgid "Delete this log"
1977
  msgstr ""
1978
 
1979
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:258
1980
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:509
1981
  #, php-format
1982
  msgid ""
1983
  "You are about to delete this log '%s'\n"
1984
  " 'Cancel' to stop, 'OK' to delete."
1985
  msgstr ""
1986
 
1987
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:258
1988
  msgid "Remove this record"
1989
  msgstr ""
1990
 
1991
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:260
1992
  msgid "Go Back"
1993
  msgstr ""
1994
 
1995
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:275
1996
  msgid "e-Commerce Admin Menu"
1997
  msgstr ""
1998
 
1999
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:278
2000
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:279
2001
- msgid "Checkout Settings"
2002
- msgstr ""
2003
-
2004
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:294
2005
  msgid "WP e-Commerce News"
2006
  msgstr ""
2007
 
2008
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:316
2009
  msgid "Order Summary"
2010
  msgstr ""
2011
 
2012
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:328
2013
  msgid "(accepted payments)"
2014
  msgstr ""
2015
 
2016
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:343
2017
  msgid "Subscribe to your orders"
2018
  msgstr ""
2019
 
2020
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:345
2021
  msgid "Subscribe to an RSS feed"
2022
  msgstr ""
2023
 
2024
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:345
2025
  msgid "of your orders"
2026
  msgstr ""
2027
 
2028
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:348
2029
  msgid "Plugin News"
2030
  msgstr ""
2031
 
2032
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:350
2033
- msgid "The <a href=\"http://instinct.co.nz/blogshop/products-page/\" target=\"_blank\">WP DropShop Module</a> is the latest and most cutting edge shopping cart available online. Coupled with Grid View then your site will be the talk of street! <br/><br/>The <a href=\"http://instinct.co.nz/blogshop/products-page/\" target=\"_blank\">GridView Module</a> is a visual module built to enhance the way your product page looks.<br/><br/><a href=\"http://www.instinct.co.nz/wp-campaign-monitor/100\">WP Campaign Monitor</a> is an email newsletter tool built just for WP users who want to send campaigns, track the results and manage their subscribers. The latest version integrates with e-commerce lite meaning that you will be able to send buyers email newsletters and much more. "
2034
- msgstr ""
2035
-
2036
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:351
 
 
 
 
 
 
 
 
 
 
 
2037
  msgid "This shop is powered by "
2038
  msgstr ""
2039
 
2040
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:360
2041
  msgid "Upgrade to Gold"
2042
  msgstr ""
2043
 
2044
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:360
2045
  msgid " and unleash more functionality into your shop."
2046
  msgstr ""
2047
 
2048
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:391
2049
  msgid "View:"
2050
  msgstr ""
2051
 
2052
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:430
2053
  msgid "Filter"
2054
  msgstr ""
2055
 
2056
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:433
2057
  msgid "Oops there are no purchase logs for your selection, please try again."
2058
  msgstr ""
2059
 
2060
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:453
2061
  msgid "Total:"
2062
  msgstr ""
2063
 
2064
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:465
2065
  msgid "Download CSV"
2066
  msgstr ""
2067
 
2068
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:474
2069
  msgid ""
2070
  "You are about to delete the selected purchase logs.\n"
2071
  " 'Cancel' to stop, 'OK' to delete."
2072
  msgstr ""
2073
 
2074
- #: wp-e-commerce/wpsc-admin/display-sales-logs.php:537
2075
  msgid "Search Logs"
2076
  msgstr ""
2077
 
2078
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:12
2079
  msgid "WP e-Commerce Upgrades"
2080
  msgstr ""
2081
 
2082
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:13
2083
- msgid "Add more functionality to your e-Commerce site. Prices may be subject to change."
 
 
2084
  msgstr ""
2085
 
2086
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:18
2087
  msgid "Pure Gold"
2088
  msgstr ""
2089
 
2090
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:24
 
 
2091
  msgid "DropShop"
2092
  msgstr ""
2093
 
2094
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:30
2095
  msgid "MP3 Player"
2096
  msgstr ""
2097
 
2098
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:36
2099
  msgid "Members Only Module"
2100
  msgstr ""
2101
 
2102
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:48
2103
  msgid "NextGen Gallery Buy Now Buttons"
2104
  msgstr ""
2105
 
2106
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:71
2107
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:79
2108
  msgid "API Key Reset"
2109
  msgstr ""
2110
 
2111
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:74
2112
- msgid "Enter your API name and key to release it from an old site that you no longer use."
 
 
2113
  msgstr ""
2114
 
2115
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:85
2116
  msgid "API Key"
2117
  msgstr ""
2118
 
2119
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:90
2120
  msgid "Reset API Key"
2121
  msgstr ""
2122
 
2123
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:99
2124
  msgid "Upgrade Instructions"
2125
  msgstr ""
2126
 
2127
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:101
2128
  #, php-format
2129
  msgid "Copy the gold_cart_files directory into the %s folder."
2130
  msgstr ""
2131
 
2132
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:104
2133
- msgid "This folder should be automatically created when the e-commerce plugin is activated, but if it is not, you will have to create it yourself."
 
 
2134
  msgstr ""
2135
 
2136
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:107
2137
- msgid "Now a new panel should appear in the Upgrades page where you must enter your API Username and API Key. "
 
 
2138
  msgstr ""
2139
 
2140
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:110
2141
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:113
2142
  msgid "For more information visit our documentation page."
2143
  msgstr ""
2144
 
2145
- #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:157
2146
  msgid "Your API key has been Reset"
2147
  msgstr ""
2148
 
2149
- #: wp-e-commerce/wpsc-admin/display-variations.page.php:21
2150
  msgid "Are you sure you want to delete this product?"
2151
  msgstr ""
2152
 
2153
- #: wp-e-commerce/wpsc-admin/display-variations.page.php:37
 
2154
  msgid "Display Variations"
2155
  msgstr ""
2156
 
2157
- #: wp-e-commerce/wpsc-admin/display-variations.page.php:39
2158
- msgid "A variation can be anything \"optional\" about a product. ie: Size, Color, etc <br />For example: if you are selling t-shirts you might setup a variation set called size with the values small, medium, large..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2159
  msgstr ""
2160
 
2161
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:133
2162
  msgid "Edit Product"
2163
  msgstr ""
2164
 
2165
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:144
2166
  msgid "Product Name"
2167
  msgstr ""
2168
 
2169
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:153
2170
  msgid "Display Product Shortcode"
2171
  msgstr ""
2172
 
2173
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:154
2174
  msgid "Buy Now Shortcode"
2175
  msgstr ""
2176
 
2177
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:155
2178
  msgid "Add to Cart Shortcode"
2179
  msgstr ""
2180
 
2181
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:161
2182
  msgid "Display Product Template Tag"
2183
  msgstr ""
2184
 
2185
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:162
2186
  msgid "Buy Now PHP"
2187
  msgstr ""
2188
 
2189
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:163
2190
  msgid "Add to Cart PHP"
2191
  msgstr ""
2192
 
2193
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:164
2194
  msgid "Display Product SKU"
2195
  msgstr ""
2196
 
2197
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:180
2198
  msgid "Stock Keeping Unit"
2199
  msgstr ""
2200
 
2201
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:188
2202
  msgid "Sale Price :"
2203
  msgstr ""
2204
 
2205
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:205
2206
  msgid "New Currency"
2207
  msgstr ""
2208
 
2209
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:233
2210
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:272
2211
  msgid "Delete Currency"
2212
  msgstr ""
2213
 
2214
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:290
2215
  msgid "Additional Description"
2216
  msgstr ""
2217
 
2218
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:340
2219
  msgid "Update Product"
2220
  msgstr ""
2221
 
2222
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:364
2223
  msgid "Categories and Tags"
2224
  msgstr ""
2225
 
2226
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:403
2227
  msgid "Select &quot;[categorisation]&quot;"
2228
  msgstr ""
2229
 
2230
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:459
2231
  msgid "Price and Stock Control"
2232
  msgstr ""
2233
 
2234
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:469
2235
  #, php-format
2236
- msgid "Do not include tax (tax is set in <a href=\"%s\"/wp-admin/admin.php?page=wpsc-settings\">shop config</a>)"
 
 
2237
  msgstr ""
2238
 
2239
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:476
2240
  msgid "This is a donation, checking this box populates the donations widget."
2241
  msgstr ""
2242
 
2243
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:486
2244
  msgid "Table Rate Price"
2245
  msgstr ""
2246
 
2247
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:527
 
 
 
 
 
 
 
 
2248
  msgid "Custom Tax Rate"
2249
  msgstr ""
2250
 
2251
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:541
2252
- msgid "I have a limited number of this item in stock. If the stock runs out, this product will not be available on the shop unless you untick this box or add more stock."
 
 
 
2253
  msgstr ""
2254
 
2255
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:556
2256
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:570
2257
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:577
2258
- msgid "If this product runs out of stock set status to Unpublished & email site owner"
 
 
2259
  msgstr ""
2260
 
2261
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:569
2262
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:576
2263
  msgid "Stock Qty"
2264
  msgstr ""
2265
 
2266
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:603
2267
  msgid "Variation Control"
2268
  msgstr ""
2269
 
2270
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:607
2271
  msgid "+ Add New Variations"
2272
  msgstr ""
2273
 
2274
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:653
2275
  msgid "Weight"
2276
  msgstr ""
2277
 
2278
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:717
 
 
 
 
2279
  msgid "Flat Rate Settings"
2280
  msgstr ""
2281
 
2282
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:722
2283
  msgid "Local Shipping Fee"
2284
  msgstr ""
2285
 
2286
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:731
2287
  msgid "International Shipping Fee"
2288
  msgstr ""
2289
 
2290
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:740
2291
  msgid "Disregard Shipping for this product"
2292
  msgstr ""
2293
 
2294
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:769
2295
  msgid "Advanced Options"
2296
  msgstr ""
2297
 
2298
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:777
2299
  msgid "Custom Meta"
2300
  msgstr ""
2301
 
2302
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:778
2303
  msgid "Add Custom Meta"
2304
  msgstr ""
2305
 
2306
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:788
2307
  msgid "Value"
2308
  msgstr ""
2309
 
2310
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:805
2311
  msgid "Merchant Notes"
2312
  msgstr ""
2313
 
2314
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:808
2315
  msgid "These notes are only available here."
2316
  msgstr ""
2317
 
2318
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:827
2319
  msgid "Personalisation Options"
2320
  msgstr ""
2321
 
2322
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:830
2323
- msgid "Users can personalize this product by leaving a message on single product page"
 
 
2324
  msgstr ""
2325
 
2326
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:839
2327
  msgid "Users can upload images on single product page to purchase logs."
2328
  msgstr ""
2329
 
2330
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:850
2331
  msgid "Prohibited"
2332
  msgstr ""
2333
 
2334
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:864
2335
  msgid "Off Site Product Link"
2336
  msgstr ""
2337
 
2338
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:865
2339
- msgid "If this product is for sale on another website enter the link here. For instance if your product is an MP3 file for sale on itunes you could put the link here. This option over rides the buy now and add to cart links and takes you to the site linked here."
 
 
 
 
2340
  msgstr ""
2341
 
2342
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:866
2343
  msgid "External Link"
2344
  msgstr ""
2345
 
2346
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:874
2347
  msgid "Enable IntenseDebate Comments"
2348
  msgstr ""
2349
 
2350
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:880
2351
  msgid "Allow users to comment on this product."
2352
  msgstr ""
2353
 
2354
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:907
2355
  msgid "Product Images"
2356
  msgstr ""
2357
 
2358
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:915
2359
  msgid "Select Files"
2360
  msgstr ""
2361
 
2362
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:969
2363
- msgid "You are using the Flash uploader. Problems? Try the <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"browser\")'>Browser uploader</a> instead."
 
 
 
2364
  msgstr ""
2365
 
2366
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:973
2367
- msgid "To upload multiple product thumbnails you must <a href=\"http://www.instinct.co.nz/shop/\">install the premium upgrade</a>"
 
 
2368
  msgstr ""
2369
 
2370
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:982
2371
  msgid "Select an image to upload:"
2372
  msgstr ""
2373
 
2374
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:992
2375
- msgid "You are using the Browser uploader. Problems? Try the <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"flash\")'>Flash uploader</a> instead."
 
 
 
2376
  msgstr ""
2377
 
2378
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:996
2379
  msgid "Manage your thumbnails"
2380
  msgstr ""
2381
 
2382
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1018
2383
  msgid "Product Download"
2384
  msgstr ""
2385
 
2386
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1021
2387
  msgid "Upload File"
2388
  msgstr ""
2389
 
2390
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1022
2391
  msgid "Max Upload Size"
2392
  msgstr ""
2393
 
2394
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1026
2395
  msgid "Preview File"
2396
  msgstr ""
2397
 
2398
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1036
2399
  msgid "Select an MP3 file to upload as a preview"
2400
  msgstr ""
2401
 
2402
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1057
2403
  msgid "Label Control"
2404
  msgstr ""
2405
 
2406
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1063
2407
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1064
2408
  msgid "Add Label"
2409
  msgstr ""
2410
 
2411
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1121
2412
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1148
2413
  msgid "Preview"
2414
  msgstr ""
2415
 
2416
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1192
 
2417
  msgid "Thumbnail Settings"
2418
  msgstr ""
2419
 
2420
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1200
2421
  msgid "use default size"
2422
  msgstr ""
2423
 
2424
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1200
2425
  msgid "This is set on the Settings Page"
2426
  msgstr ""
2427
 
2428
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1206
2429
  msgid "do not resize thumbnail image"
2430
  msgstr ""
2431
 
2432
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1210
2433
  msgid "use specific size"
2434
  msgstr ""
2435
 
2436
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1212
2437
  msgid "px width"
2438
  msgstr ""
2439
 
2440
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1213
2441
  msgid "px height"
2442
  msgstr ""
2443
 
2444
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1218
2445
  msgid "use separate thumbnail"
2446
  msgstr ""
2447
 
2448
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1323
2449
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1328
2450
  msgid "HTML"
2451
  msgstr ""
2452
 
2453
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1324
2454
- #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1329
2455
  msgid "Visual"
2456
  msgstr ""
2457
 
2458
- #: wp-e-commerce/wpsc-admin/includes/product-functions.php:41
2459
  #, php-format
2460
- msgid "Please refrain from uploading images larger than <strong>%d x %d</strong> pixels"
 
 
2461
  msgstr ""
2462
 
2463
- #: wp-e-commerce/wpsc-admin/includes/product-functions.php:52
 
2464
  msgid "N/A"
2465
  msgstr ""
2466
 
2467
- #: wp-e-commerce/wpsc-admin/includes/product-functions.php:77
2468
  msgid "<strong>ERROR</strong>: Please enter a Product name.<br />"
2469
  msgstr ""
2470
 
2471
- #: wp-e-commerce/wpsc-admin/includes/product-functions.php:80
2472
  msgid "<strong>ERROR</strong>: Please enter a Product Category.<br />"
2473
  msgstr ""
2474
 
2475
- #: wp-e-commerce/wpsc-admin/includes/product-functions.php:196
2476
  msgid "Could not update product in the database"
2477
  msgstr ""
2478
 
2479
- #: wp-e-commerce/wpsc-admin/includes/product-functions.php:204
2480
  msgid "Could not insert product into the database"
2481
  msgstr ""
2482
 
2483
- #: wp-e-commerce/wpsc-admin/includes/purchlogs_upgrade.php:74
2484
- msgid "Upgrading to WP e-Commerce 3.7 and later requires you to run this fix once.The following Boxes corresponds to the form fields in your current checkout page. All you have to do is select from the drop-down menu box what each of the following fields represent. Sorry for any inconvenience caused, but we're sure you'll agree that the new purchase logs are worth this minor hassle. "
 
 
 
 
 
 
 
 
 
 
 
 
2485
  msgstr ""
2486
 
2487
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:7
2488
  msgid "Admin Settings"
2489
  msgstr ""
2490
 
2491
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:13
2492
  msgid "Max downloads per file"
2493
  msgstr ""
2494
 
2495
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:35
2496
  msgid "Lock downloads to IP address"
2497
  msgstr ""
2498
 
2499
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:61
2500
  msgid "Check MIME types on file uploads"
2501
  msgstr ""
2502
 
2503
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:68
2504
- msgid "Warning: Disabling this exposes your site to greater possibility of malicious files being uploaded, we reccomend installing the Fileinfo extention for PHP rather than disabling this."
 
 
 
2505
  msgstr ""
2506
 
2507
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:76
2508
  msgid "Purchase Log Email"
2509
  msgstr ""
2510
 
2511
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:84
 
 
 
 
2512
  msgid "Purchase Receipt - Reply Address"
2513
  msgstr ""
2514
 
2515
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:93
 
 
 
 
 
 
2516
  msgid "Purchase Receipt - Reply Name"
2517
  msgstr ""
2518
 
2519
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:110
 
 
 
 
 
2520
  msgid "Custom Messages"
2521
  msgstr ""
2522
 
2523
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:113
2524
  msgid "Tags can be used"
2525
  msgstr ""
2526
 
2527
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:134
2528
  msgid "Admin Report"
2529
  msgstr ""
2530
 
2531
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:145
 
 
 
 
2532
  msgid "Tracking Email Subject"
2533
  msgstr ""
2534
 
2535
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:149
2536
  msgid "Tracking Email Message"
2537
  msgstr ""
2538
 
2539
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:153
2540
  msgid "URL Settings"
2541
  msgstr ""
2542
 
2543
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:184
2544
  msgid "Transaction Details URL"
2545
  msgstr ""
2546
 
2547
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:195
2548
  msgid "User Account URL"
2549
  msgstr ""
2550
 
2551
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:205
2552
  msgid "Update Page URLs"
2553
  msgstr ""
2554
 
2555
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:206
2556
  msgid "Fix Product Group Permalinks"
2557
  msgstr ""
2558
 
2559
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:27
2560
  msgid "Checkout Options"
2561
  msgstr ""
2562
 
2563
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:40
2564
  msgid "Users must register before checking out"
2565
  msgstr ""
2566
 
2567
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:60
2568
- msgid "If yes then you must also turn on the wordpress option \"Any one can register\""
 
 
2569
  msgstr ""
2570
 
2571
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:77
2572
  msgid "Lock Tax to Billing Country"
2573
  msgstr ""
2574
 
2575
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:102
 
 
 
 
2576
  msgid "Enable Shipping Same as Billing Option: "
2577
  msgstr ""
2578
 
2579
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:115
2580
- msgid "Here you can customise the forms to be displayed in your checkout page. The checkout page is where you collect important user information that will show up in your purchase logs i.e. the buyers address, and name..."
 
 
 
 
 
 
 
 
 
 
 
2581
  msgstr ""
2582
 
2583
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:208
2584
  msgid "This will be the Email address that the Purchase Reciept is sent to."
2585
  msgstr ""
2586
 
2587
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:311
2588
  msgid "Add New Form Field"
2589
  msgstr ""
2590
 
2591
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:31
2592
  msgid "Please Select A Payment Gateway"
2593
  msgstr ""
2594
 
2595
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:55
2596
  msgid "Gateway Options"
2597
  msgstr ""
2598
 
2599
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:64
 
 
 
2600
  msgid "General Settings"
2601
  msgstr ""
2602
 
2603
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:68
2604
  msgid "Payment Gateways"
2605
  msgstr ""
2606
 
2607
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:72
2608
- msgid "Activate the payment gateways that you want to make available to your customers by selecting them below."
 
 
2609
  msgstr ""
2610
 
2611
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:98
2612
  msgid "We Recommend"
2613
  msgstr ""
2614
 
2615
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:107
2616
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:114
2617
  msgid " Select a Payment Gateway below to configure it."
2618
  msgstr ""
2619
 
2620
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:122
2621
  msgid "Payment Gateway"
2622
  msgstr ""
2623
 
2624
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:134
2625
  msgid "Display Name"
2626
  msgstr ""
2627
 
2628
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:162
2629
  msgid "The text that people see when making a purchase"
2630
  msgstr ""
2631
 
2632
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:13
2633
  msgid "Base Country/Region"
2634
  msgstr ""
2635
 
2636
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:39
2637
  msgid "Select your primary business location."
2638
  msgstr ""
2639
 
2640
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:43
2641
  msgid "Tax Settings"
2642
  msgstr ""
2643
 
2644
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:60
2645
  msgid "Tax Included in prices"
2646
  msgstr ""
2647
 
2648
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:115
2649
- msgid "Language"
2650
  msgstr ""
2651
 
2652
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:224
2653
- msgid "Currency Settings"
2654
  msgstr ""
2655
 
2656
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/import.php:7
2657
  msgid "Import Products CSV"
2658
  msgstr ""
2659
 
2660
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/import.php:8
2661
- msgid "<p>You can import your products from a comma delimited text file.</p><p>An example of a cvs import file would look like this: </p><p>Description, Additional Description, Product Name, Price, SKU, weight, weight unit, stock quantity, is limited quantity</p>"
 
 
 
 
2662
  msgstr ""
2663
 
2664
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:14
2665
  msgid "Show All Products"
2666
  msgstr ""
2667
 
2668
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:21
2669
- msgid "Show list of product groups"
2670
  msgstr ""
2671
 
2672
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:28
2673
- msgid "Show all products + list"
2674
  msgstr ""
2675
 
2676
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:63
2677
  msgid "Button Settings"
2678
  msgstr ""
2679
 
2680
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:67
2681
  msgid "Button Type"
2682
  msgstr ""
2683
 
2684
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:92
2685
  msgid "Hide \"Add to cart\" button"
2686
  msgstr ""
2687
 
2688
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:117
2689
  msgid "Product Settings"
2690
  msgstr ""
2691
 
2692
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:146
2693
  msgid "Display Fancy Purchase Notifications"
2694
  msgstr ""
2695
 
2696
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:170
2697
  msgid "Show Postage and Packaging"
2698
  msgstr ""
2699
 
2700
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:193
2701
  msgid "Disable link in Title"
2702
  msgstr ""
2703
 
2704
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:217
2705
  msgid "Add quantity field to each product description"
2706
  msgstr ""
2707
 
2708
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:242
2709
  msgid "Theme Customisation"
2710
  msgstr ""
2711
 
2712
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:247
2713
  msgid "Thanks, the themes have been copied."
2714
  msgstr ""
2715
 
2716
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:256
2717
  msgid "Theming your stores appearance is easy."
2718
  msgstr ""
2719
 
2720
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:258
2721
  msgid "You just need to edit the appropriate files in the following location."
2722
  msgstr ""
2723
 
2724
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:259
2725
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:271
2726
  msgid "Path:"
2727
  msgstr ""
2728
 
2729
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:261
2730
  msgid "To create a new theme:"
2731
  msgstr ""
2732
 
2733
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:263
2734
  msgid "Copy the default directory and rename it 'newTheme'"
2735
  msgstr ""
2736
 
2737
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:264
2738
- msgid "Rename the default.css file inside the 'newTheme' directory to 'newTheme.css'"
 
2739
  msgstr ""
2740
 
2741
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:269
2742
  msgid "The permissions on your themes directory are incorrect."
2743
  msgstr ""
2744
 
2745
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:270
2746
  msgid "Please set the permissions to 775 on the following directory."
2747
  msgstr ""
2748
 
2749
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:275
2750
- msgid "Your theme files have not been moved. Until your theme files have been moved, we have disabled automatic upgrades."
 
 
2751
  msgstr ""
2752
 
2753
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:276
2754
  #, php-format
2755
  msgid "Click here to <a href='%s'>Move your files</a> to a safe place"
2756
  msgstr ""
2757
 
2758
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:280
2759
  msgid "Read Tutorials"
2760
  msgstr ""
2761
 
2762
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:285
2763
  msgid "Product Page Settings"
2764
  msgstr ""
2765
 
2766
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:288
2767
- msgid "Product Display"
2768
- msgstr ""
2769
-
2770
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:372
2771
  msgid "Purchase unavailable options"
2772
  msgstr ""
2773
 
2774
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:377
2775
  msgid "Show quantity form in list view"
2776
  msgstr ""
2777
 
2778
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:382
2779
  msgid "Products Per Row"
2780
  msgstr ""
2781
 
2782
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:387
2783
  msgid "Show images only"
2784
  msgstr ""
2785
 
2786
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:397
2787
  msgid "Display Description"
2788
  msgstr ""
2789
 
2790
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:402
2791
  msgid "Display \"Add To Cart\" Button"
2792
  msgstr ""
2793
 
2794
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:406
2795
  msgid "Display \"More Details\" Button"
2796
  msgstr ""
2797
 
2798
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:416
2799
- msgid "Select Theme"
 
 
 
 
 
 
 
 
2800
  msgstr ""
2801
 
2802
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:449
2803
- msgid "Sort Product By"
2804
  msgstr ""
2805
 
2806
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:455
2807
  msgid "Time Uploaded"
2808
  msgstr ""
2809
 
2810
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:461
 
 
 
 
 
 
2811
  msgid "Show Breadcrumbs"
2812
  msgstr ""
2813
 
2814
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:487
2815
  msgid "Product Groups/Products Display"
2816
  msgstr ""
2817
 
2818
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:505
2819
  msgid "Product Groups Only (All products displayed)"
2820
  msgstr ""
2821
 
2822
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:506
2823
  msgid "Sliding Product Groups (1 product per page)"
2824
  msgstr ""
2825
 
2826
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:514
 
 
 
 
2827
  msgid "Show Search"
2828
  msgstr ""
2829
 
2830
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:551
2831
  msgid "Show Advanced Search"
2832
  msgstr ""
2833
 
2834
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:554
2835
  msgid "Use Live Search"
2836
  msgstr ""
2837
 
2838
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:565
2839
  msgid "Replace Page Title With Product/Category Name"
2840
  msgstr ""
2841
 
2842
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:587
2843
  msgid "Shopping Cart Settings"
2844
  msgstr ""
2845
 
2846
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:619
2847
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:623
2848
  msgid "Sidebar"
2849
  msgstr ""
2850
 
2851
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:627
2852
  msgid "Page"
2853
  msgstr ""
2854
 
2855
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:631
2856
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:635
2857
  msgid "Widget"
2858
  msgstr ""
2859
 
2860
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:635
2861
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:645
2862
  msgid "You need to enable the widgets plugin to use this"
2863
  msgstr ""
2864
 
2865
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:645
2866
  msgid "You need to install the Gold and DropShop extentions to use this"
2867
  msgstr ""
2868
 
2869
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:649
2870
  msgid "Manual"
2871
  msgstr ""
2872
 
2873
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:652
2874
  msgid "Show Dropshop on every page"
2875
  msgstr ""
2876
 
2877
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:653
2878
  msgid "Show Dropshop only on product page"
2879
  msgstr ""
2880
 
2881
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:656
2882
  msgid "Use light Dropshop style"
2883
  msgstr ""
2884
 
2885
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:657
2886
  msgid "Use dark Dropshop style"
2887
  msgstr ""
2888
 
2889
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:658
2890
  msgid "Crafty"
2891
  msgstr ""
2892
 
2893
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:668
2894
  msgid "Use Sliding Cart"
2895
  msgstr ""
2896
 
2897
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:693
2898
  msgid "Display \"+ Postage & Tax\""
2899
  msgstr ""
2900
 
2901
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:719
2902
  msgid "Product Group Settings"
2903
  msgstr ""
2904
 
2905
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:723
2906
  msgid "Show Product Group Description"
2907
  msgstr ""
2908
 
2909
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:748
2910
  msgid "Show Product Group Thumbnails"
2911
  msgstr ""
2912
 
2913
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:775
2914
  msgid "Show Product Count per Product Group"
2915
  msgstr ""
2916
 
2917
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:801
2918
  msgid "Use Category Grid View"
2919
  msgstr ""
2920
 
2921
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:832
2922
  msgid "Default Product Thumbnail Size"
2923
  msgstr ""
2924
 
2925
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:836
2926
  msgid "Resize Existing Thumbnails"
2927
  msgstr ""
2928
 
2929
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:842
2930
  msgid "Default Product Group Thumbnail Size"
2931
  msgstr ""
2932
 
2933
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:851
2934
  msgid "Single Product Image Size"
2935
  msgstr ""
2936
 
2937
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:888
2938
  msgid "Show Thumbnail Gallery"
2939
  msgstr ""
2940
 
2941
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:912
2942
  msgid "Gallery Thumbnail Image Size"
2943
  msgstr ""
2944
 
2945
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:926
2946
  msgid "Pagination settings"
2947
  msgstr ""
2948
 
2949
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:930
2950
  msgid "Use Pagination"
2951
  msgstr ""
2952
 
2953
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:952
2954
  msgid "number of products to show per page"
2955
  msgstr ""
2956
 
2957
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:962
2958
  msgid "Top"
2959
  msgstr ""
2960
 
2961
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:963
2962
  msgid "Bottom"
2963
  msgstr ""
2964
 
2965
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:964
2966
  msgid "Both"
2967
  msgstr ""
2968
 
2969
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:971
2970
  msgid "Comment Settings"
2971
  msgstr ""
2972
 
2973
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:975
2974
  msgid "Use IntenseDebate Comments"
2975
  msgstr ""
2976
 
2977
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:999
2978
  msgid "IntenseDebate Account ID"
2979
  msgstr ""
2980
 
2981
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:1001
2982
  msgid "Help on finding the Account ID"
2983
  msgstr ""
2984
 
2985
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:1010
2986
  msgid "By Default Display Comments on"
2987
  msgstr ""
2988
 
2989
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:67
2990
  msgid "Use Shipping"
2991
  msgstr ""
2992
 
2993
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:89
2994
- msgid "If you are only selling digital downloads, you should select no to disable the shipping on your site."
 
 
2995
  msgstr ""
2996
 
2997
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:94
2998
  msgid "Base Zipcode/Postcode:"
2999
  msgstr ""
3000
 
3001
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:97
3002
- msgid "If you are based in America then you need to set your own Zipcode for UPS and USPS to work. This should be the Zipcode for your Base of Operations."
 
 
3003
  msgstr ""
3004
 
3005
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:119
3006
  msgid "ShipWire Settings"
3007
  msgstr ""
3008
 
3009
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:130
3010
  msgid "ShipWire Email"
3011
  msgstr ""
3012
 
3013
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:131
3014
  msgid "ShipWire Password"
3015
  msgstr ""
3016
 
3017
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:139
3018
  msgid "Enable Free Shipping Discount"
3019
  msgstr ""
3020
 
3021
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:183
3022
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:188
3023
  msgid "Shipping Modules"
3024
  msgstr ""
3025
 
3026
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:194
3027
- msgid "To enable shipping in WP e-Commerce you must select which shipping methods you want to enable on your site"
 
 
 
 
 
 
 
 
3028
  msgstr ""
3029
 
3030
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:198
3031
  msgid "Internal Shipping Calculators"
3032
  msgstr ""
3033
 
3034
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:231
3035
  msgid "External Shipping Calculators"
3036
  msgstr ""
3037
 
3038
- #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:234
3039
- msgid "The following shipping modules all need cURL which is not installed on this server, you may need to contact your web hosting provider to get it set up. "
 
 
3040
  msgstr ""
3041
 
3042
- #: wp-e-commerce/wpsc-includes/ajax.functions.php:88
3043
  msgid "You just added \"[product_name]\" to your cart."
3044
  msgstr ""
3045
 
3046
- #: wp-e-commerce/wpsc-includes/ajax.functions.php:91
3047
  msgid "Sorry, but you cannot add zero items to your cart"
3048
  msgstr ""
3049
 
3050
- #: wp-e-commerce/wpsc-includes/ajax.functions.php:93
3051
  msgid "Sorry, but there are only [number] of this item in stock."
3052
  msgstr ""
3053
 
3054
- #: wp-e-commerce/wpsc-includes/ajax.functions.php:95
3055
  msgid "Sorry, but the item \"[product_name]\" is out of stock."
3056
  msgstr ""
3057
 
3058
- #: wp-e-commerce/wpsc-includes/ajax.functions.php:475
3059
- msgid "You must select a shipping method, otherwise we cannot process your order."
 
3060
  msgstr ""
3061
 
3062
- #: wp-e-commerce/wpsc-includes/ajax.functions.php:480
3063
- msgid "Please agree to the terms and conditions, otherwise we cannot process your order."
 
 
3064
  msgstr ""
3065
 
3066
- #: wp-e-commerce/wpsc-includes/ajax.functions.php:503
3067
  #, php-format
3068
- msgid "Oops the product : %s cannot be shipped to %s. To continue with your transaction please remove this product from the list above."
 
 
3069
  msgstr ""
3070
 
3071
- #: wp-e-commerce/wpsc-includes/ajax.functions.php:526
3072
  msgid "Please enter a Zipcode and click calculate to proceed"
3073
  msgstr ""
3074
 
3075
- #: wp-e-commerce/wpsc-includes/category.functions.php:354
 
 
 
 
 
 
3076
  msgid "Brands"
3077
  msgstr ""
3078
 
3079
- #: wp-e-commerce/wpsc-includes/checkout.class.php:49
 
 
 
 
 
 
 
 
 
3080
  msgid "Tax"
3081
  msgstr ""
3082
 
3083
- #: wp-e-commerce/wpsc-includes/display.functions.php:83
3084
  msgid "People who bought this item also bought"
3085
  msgstr ""
3086
 
3087
- #: wp-e-commerce/wpsc-includes/display.functions.php:131
3088
  msgid "Updating"
3089
  msgstr ""
3090
 
3091
- #: wp-e-commerce/wpsc-includes/display.functions.php:147
3092
  msgid "Continue Shopping"
3093
  msgstr ""
3094
 
3095
- #: wp-e-commerce/wpsc-includes/display.functions.php:248
3096
- msgid "You are using the example product group as your default group and it has no products in it, you should set the default group to something else, you can do so from your Shop Settings page."
 
 
 
3097
  msgstr ""
3098
 
3099
- #: wp-e-commerce/wpsc-includes/display.functions.php:250
3100
- msgid "This group is set as your default product group, you should either add some items to it or switch your default product group to one that does contain items."
 
 
 
3101
  msgstr ""
3102
 
3103
- #: wp-e-commerce/wpsc-includes/form-display.functions.php:65
3104
  msgid "Select Parent"
3105
  msgstr ""
3106
 
3107
- #: wp-e-commerce/wpsc-includes/form-display.functions.php:133
3108
  msgid "Choose a downloadable file for this product:"
3109
  msgstr ""
3110
 
3111
- #: wp-e-commerce/wpsc-includes/form-display.functions.php:180
3112
  msgid "Choose a downloadable file for this variation"
3113
  msgstr ""
3114
 
3115
- #: wp-e-commerce/wpsc-includes/form-display.functions.php:186
3116
  msgid "No Product"
3117
  msgstr ""
3118
 
3119
- #: wp-e-commerce/wpsc-includes/misc.functions.php:61
3120
- msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3121
  msgstr ""
3122
 
3123
- #: wp-e-commerce/wpsc-includes/processing.functions.php:30
3124
- #: wp-e-commerce/wpsc-includes/processing.functions.php:36
3125
- #: wp-e-commerce/wpsc-includes/processing.functions.php:46
3126
  msgid " is out of stock"
3127
  msgstr ""
3128
 
3129
- #: wp-e-commerce/wpsc-includes/processing.functions.php:30
3130
- #: wp-e-commerce/wpsc-includes/processing.functions.php:36
3131
- #: wp-e-commerce/wpsc-includes/processing.functions.php:46
3132
  msgid "Remaining stock of "
3133
  msgstr ""
3134
 
3135
- #: wp-e-commerce/wpsc-includes/processing.functions.php:30
3136
  msgid " and its variations is 0. Product was unpublished."
3137
  msgstr ""
3138
 
3139
- #: wp-e-commerce/wpsc-includes/processing.functions.php:36
3140
  msgid " is 0. Product variation was set to invisible."
3141
  msgstr ""
3142
 
3143
- #: wp-e-commerce/wpsc-includes/processing.functions.php:46
3144
  msgid " is 0. Product was unpublished."
3145
  msgstr ""
3146
 
3147
- #: wp-e-commerce/wpsc-includes/processing.functions.php:916
3148
  msgid "This product has no available stock"
3149
  msgstr ""
3150
 
3151
- #: wp-e-commerce/wpsc-includes/processing.functions.php:961
3152
- msgid "UPS does not support products without a weight set. Please either disable shipping for this product or give it a weight"
 
 
 
3153
  msgstr ""
3154
 
3155
- #: wp-e-commerce/wpsc-includes/purchaselogs.class.php:539
3156
  #, php-format
3157
  msgid "Release downloads locked to this IP address %s"
3158
  msgstr ""
3159
 
3160
- #: wp-e-commerce/wpsc-includes/purchaselogs.class.php:759
3161
  msgid "Thanks, the purchase log record has been deleted"
3162
  msgstr ""
3163
 
3164
- #: wp-e-commerce/wpsc-includes/upgrades.php:122
 
 
 
 
3165
  msgid "Visit upgrade homepage"
3166
  msgstr ""
3167
 
3168
- #: wp-e-commerce/wpsc-includes/upgrades.php:127
3169
  msgid "Visit author homepage"
3170
  msgstr ""
3171
 
3172
- #: wp-e-commerce/wpsc-includes/upgrades.php:131
3173
  #, php-format
3174
  msgid "By %s"
3175
  msgstr ""
3176
 
3177
- #: wp-e-commerce/wpsc-includes/variations.class.php:217
3178
  msgid "Variation"
3179
  msgstr ""
3180
 
3181
- #: wp-e-commerce/wpsc-includes/variations.class.php:218
3182
  msgid "Stock"
3183
  msgstr ""
3184
 
3185
- #: wp-e-commerce/wpsc-includes/variations.class.php:221
3186
  msgid "More"
3187
  msgstr ""
3188
 
3189
- #: wp-e-commerce/wpsc-includes/variations.class.php:349
3190
  msgid "Weight Settings"
3191
  msgstr ""
3192
 
 
 
 
1
+ # Translation of the WordPress plugin by .
2
+ # Copyright (C) 2010
3
+ # This file is distributed under the same license as the package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
+ #
6
+ #, fuzzy
7
  msgid ""
8
  msgstr ""
9
+ "Project-Id-Version: \n"
10
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-e-commerce\n"
11
+ "POT-Creation-Date: 2010-06-02 01:51+0000\n"
12
+ "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=utf-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
 
 
19
 
20
+ #: admin-form-functions.php:10
21
+ msgid "You are editing the &quot;[categorisation]&quot; Category"
22
  msgstr ""
23
 
24
+ #: admin-form-functions.php:11 wpsc-admin/display-groups.page.php:760
25
  msgid "+ Add new category to the &quot;[categorisation]&quot; Group"
26
  msgstr ""
27
 
28
+ #: admin-form-functions.php:25 admin-form-functions.php:279
29
+ #: admin-form-functions.php:867 display-ecommerce-subs.php:9
30
+ #: js/tinymce3/window.php:105 user-log.php:200 user-log.php:359
31
+ #: wpsc-admin/display-groups.page.php:699
32
+ #: wpsc-admin/display-groups.page.php:775
33
+ #: wpsc-admin/display-upgrades.page.php:88
34
+ #: wpsc-admin/display-variations.page.php:13
35
+ #: wpsc-admin/display-variations.page.php:156
36
+ #: wpsc-admin/includes/display-items-functions.php:792
37
+ #: wpsc-admin/includes/display-items-functions.php:804
38
+ #: wpsc-admin/includes/settings-pages/presentation.php:457
39
  msgid "Name"
40
  msgstr ""
41
 
42
+ #: admin-form-functions.php:34 js/tinymce3/window.php:109
43
+ #: wpsc-admin/display-groups.page.php:783
44
+ #: wpsc-admin/includes/display-items-functions.php:807
45
  msgid "Description"
46
  msgstr ""
47
 
48
+ #: admin-form-functions.php:44
49
+ msgid "Category Parent"
50
  msgstr ""
51
 
52
+ #: admin-form-functions.php:85
53
+ msgid "Category&nbsp;Image"
54
  msgstr ""
55
 
56
+ #: admin-form-functions.php:101 admin-form-functions.php:110
57
+ #: admin-form-functions.php:198 wpsc-admin/display-groups.page.php:813
58
+ #: wpsc-admin/display-groups.page.php:866
59
+ #: wpsc-admin/includes/display-items-functions.php:675
60
+ #: wpsc-admin/includes/settings-pages/presentation.php:864
61
+ #: wpsc-admin/includes/settings-pages/presentation.php:875
62
+ #: wpsc-admin/includes/settings-pages/presentation.php:884
63
+ #: wpsc-admin/includes/settings-pages/presentation.php:945
64
  msgid "Height"
65
  msgstr ""
66
 
67
+ #: admin-form-functions.php:101 admin-form-functions.php:110
68
+ #: admin-form-functions.php:199 wpsc-admin/display-groups.page.php:813
69
+ #: wpsc-admin/display-groups.page.php:867
70
+ #: wpsc-admin/includes/display-items-functions.php:687
71
+ #: wpsc-admin/includes/settings-pages/presentation.php:865
72
+ #: wpsc-admin/includes/settings-pages/presentation.php:875
73
+ #: wpsc-admin/includes/settings-pages/presentation.php:884
74
+ #: wpsc-admin/includes/settings-pages/presentation.php:946
75
  msgid "Width"
76
  msgstr ""
77
 
78
+ #: admin-form-functions.php:102 admin-form-functions.php:111
79
+ #: wpsc-admin/display-groups.page.php:814
80
+ msgid ""
81
+ "You can upload thumbnail images for each group. To display Group details in "
82
+ "your shop you must configure these settings under <a href=\"admin.php?"
83
+ "page=wpsc-settings&tab=presentation\">Presentation Settings</a>."
84
  msgstr ""
85
 
86
+ #: admin-form-functions.php:119
87
  msgid "Delete Image"
88
  msgstr ""
89
 
90
+ #: admin-form-functions.php:133 wpsc-admin/display-groups.page.php:16
91
+ #: wpsc-admin/includes/settings-pages/general.php:83
92
  msgid "Target Markets"
93
  msgstr ""
94
 
95
+ #: admin-form-functions.php:138 wpsc-admin/display-groups.page.php:22
96
+ #: wpsc-admin/includes/settings-pages/general.php:89
97
  msgid ""
98
+ "The Target Markets feature has been disabled because you have the Suhosin "
99
+ "PHP extension installed on this server. If you need to use the Target "
100
+ "Markets feature then disable the suhosin extension, if you can not do this, "
101
+ "you will need to contact your hosting provider.\r\n"
102
  "\t\t\t"
103
  msgstr ""
104
 
105
+ #: admin-form-functions.php:164 wpsc-admin/display-groups.page.php:823
106
+ #: wpsc-admin/includes/settings-pages/presentation.php:57
107
  msgid "Presentation Settings"
108
  msgstr ""
109
 
110
+ #: admin-form-functions.php:165 wpsc-admin/display-groups.page.php:824
111
+ msgid ""
112
+ "To over-ride the presentation settings for this group you can enter in your "
113
+ "prefered settings here"
114
  msgstr ""
115
 
116
+ #: admin-form-functions.php:171 wpsc-admin/display-groups.page.php:832
117
+ #: wpsc-admin/includes/settings-pages/presentation.php:288
118
  msgid "Catalog View"
119
  msgstr ""
120
 
121
+ #: admin-form-functions.php:175 wpsc-includes/form-display.functions.php:6
122
  msgid "Please select"
123
  msgstr ""
124
 
125
+ #: admin-form-functions.php:176 wpsc-admin/display-groups.page.php:836
126
+ #: wpsc-admin/includes/settings-pages/presentation.php:346
127
  msgid "Default View"
128
  msgstr ""
129
 
130
+ #: admin-form-functions.php:178 admin-form-functions.php:180
131
+ #: wpsc-admin/display-groups.page.php:840
132
+ #: wpsc-admin/display-groups.page.php:844
133
+ #: wpsc-admin/includes/settings-pages/presentation.php:350
134
+ #: wpsc-admin/includes/settings-pages/presentation.php:354
135
  msgid "List View"
136
  msgstr ""
137
 
138
+ #: admin-form-functions.php:183 admin-form-functions.php:185
139
+ #: wpsc-admin/display-groups.page.php:850
140
+ #: wpsc-admin/display-groups.page.php:854
141
+ #: wpsc-admin/includes/settings-pages/presentation.php:361
142
+ #: wpsc-admin/includes/settings-pages/presentation.php:365
143
  msgid "Grid View"
144
  msgstr ""
145
 
146
+ #: admin-form-functions.php:195 wpsc-admin/display-groups.page.php:864
147
  msgid "Thumbnail&nbsp;Size"
148
  msgstr ""
149
 
150
+ #: admin-form-functions.php:208 wpsc-admin/display-groups.page.php:873
151
+ #: wpsc-admin/display-sales-logs.php:317 wpsc-admin/display-sales-logs.php:318
152
+ msgid "Checkout Settings"
153
+ msgstr ""
154
+
155
+ #: admin-form-functions.php:217 wpsc-admin/display-groups.page.php:879
156
  msgid "This category requires additional checkout form fields"
157
  msgstr ""
158
 
159
+ #: admin-form-functions.php:222
160
+ msgid "None"
161
+ msgstr ""
162
+
163
+ #: admin-form-functions.php:247 wpsc-admin/display-groups.page.php:907
164
+ msgid "Products in this category use the billing address to calculate shipping"
165
+ msgstr ""
166
+
167
+ #: admin-form-functions.php:250 display-coupons.php:502
168
+ #: display-coupons.php:526 merchants/chronopay.php:427
169
+ #: merchants/paypal_multiple.php:478 merchants/paypal_multiple.php:486
170
+ #: merchants/paypal_multiple.php:502 wpsc-admin/display-groups.page.php:909
171
+ #: wpsc-admin/includes/display-items-functions.php:823
172
+ #: wpsc-admin/includes/settings-pages/admin.php:38
173
+ #: wpsc-admin/includes/settings-pages/admin.php:64
174
+ #: wpsc-admin/includes/settings-pages/checkout.php:71
175
+ #: wpsc-admin/includes/settings-pages/checkout.php:95
176
+ #: wpsc-admin/includes/settings-pages/checkout.php:118
177
+ #: wpsc-admin/includes/settings-pages/checkout.php:143
178
+ #: wpsc-admin/includes/settings-pages/general.php:72
179
+ #: wpsc-admin/includes/settings-pages/general.php:197
180
+ #: wpsc-admin/includes/settings-pages/presentation.php:108
181
+ #: wpsc-admin/includes/settings-pages/presentation.php:139
182
+ #: wpsc-admin/includes/settings-pages/presentation.php:163
183
+ #: wpsc-admin/includes/settings-pages/presentation.php:187
184
+ #: wpsc-admin/includes/settings-pages/presentation.php:210
185
+ #: wpsc-admin/includes/settings-pages/presentation.php:232
186
+ #: wpsc-admin/includes/settings-pages/presentation.php:483
187
+ #: wpsc-admin/includes/settings-pages/presentation.php:534
188
+ #: wpsc-admin/includes/settings-pages/presentation.php:575
189
+ #: wpsc-admin/includes/settings-pages/presentation.php:611
190
+ #: wpsc-admin/includes/settings-pages/presentation.php:716
191
+ #: wpsc-admin/includes/settings-pages/presentation.php:740
192
+ #: wpsc-admin/includes/settings-pages/presentation.php:771
193
+ #: wpsc-admin/includes/settings-pages/presentation.php:796
194
+ #: wpsc-admin/includes/settings-pages/presentation.php:823
195
+ #: wpsc-admin/includes/settings-pages/presentation.php:849
196
+ #: wpsc-admin/includes/settings-pages/presentation.php:909
197
+ #: wpsc-admin/includes/settings-pages/presentation.php:935
198
+ #: wpsc-admin/includes/settings-pages/presentation.php:979
199
+ #: wpsc-admin/includes/settings-pages/presentation.php:1026
200
+ #: wpsc-admin/includes/settings-pages/shipping.php:87
201
+ #: wpsc-admin/includes/settings-pages/shipping.php:122
202
+ #: wpsc-admin/includes/settings-pages/shipping.php:152
203
  msgid "Yes"
204
  msgstr ""
205
 
206
+ #: admin-form-functions.php:251 display-coupons.php:503
207
+ #: display-coupons.php:527 merchants/chronopay.php:428
208
+ #: merchants/paypal_multiple.php:479 merchants/paypal_multiple.php:487
209
+ #: merchants/paypal_multiple.php:503 wpsc-admin/display-groups.page.php:910
210
+ #: wpsc-admin/includes/display-items-functions.php:825
211
+ #: wpsc-admin/includes/settings-pages/admin.php:39
212
+ #: wpsc-admin/includes/settings-pages/admin.php:65
213
+ #: wpsc-admin/includes/settings-pages/checkout.php:72
214
+ #: wpsc-admin/includes/settings-pages/checkout.php:97
215
+ #: wpsc-admin/includes/settings-pages/checkout.php:120
216
+ #: wpsc-admin/includes/settings-pages/checkout.php:145
217
+ #: wpsc-admin/includes/settings-pages/general.php:74
218
+ #: wpsc-admin/includes/settings-pages/general.php:200
219
+ #: wpsc-admin/includes/settings-pages/presentation.php:109
220
+ #: wpsc-admin/includes/settings-pages/presentation.php:140
221
+ #: wpsc-admin/includes/settings-pages/presentation.php:164
222
+ #: wpsc-admin/includes/settings-pages/presentation.php:188
223
+ #: wpsc-admin/includes/settings-pages/presentation.php:212
224
+ #: wpsc-admin/includes/settings-pages/presentation.php:234
225
+ #: wpsc-admin/includes/settings-pages/presentation.php:484
226
+ #: wpsc-admin/includes/settings-pages/presentation.php:535
227
+ #: wpsc-admin/includes/settings-pages/presentation.php:576
228
+ #: wpsc-admin/includes/settings-pages/presentation.php:612
229
+ #: wpsc-admin/includes/settings-pages/presentation.php:717
230
+ #: wpsc-admin/includes/settings-pages/presentation.php:741
231
+ #: wpsc-admin/includes/settings-pages/presentation.php:772
232
+ #: wpsc-admin/includes/settings-pages/presentation.php:797
233
+ #: wpsc-admin/includes/settings-pages/presentation.php:824
234
+ #: wpsc-admin/includes/settings-pages/presentation.php:850
235
+ #: wpsc-admin/includes/settings-pages/presentation.php:910
236
+ #: wpsc-admin/includes/settings-pages/presentation.php:936
237
+ #: wpsc-admin/includes/settings-pages/presentation.php:980
238
+ #: wpsc-admin/includes/settings-pages/presentation.php:1027
239
+ #: wpsc-admin/includes/settings-pages/shipping.php:88
240
+ #: wpsc-admin/includes/settings-pages/shipping.php:123
241
+ #: wpsc-admin/includes/settings-pages/shipping.php:153
242
  msgid "No"
243
  msgstr ""
244
 
245
+ #: admin-form-functions.php:261
246
+ msgid "Update Category"
247
  msgstr ""
248
 
249
+ #: admin-form-functions.php:262 admin-form-functions.php:300
250
+ #: admin-form-functions.php:319 shipping/tablerate.php:44
251
+ #: shipping/weightrate.php:35 wpsc-admin/admin.php:347
252
+ #: wpsc-admin/ajax-and-init.php:1898 wpsc-admin/display-groups.page.php:670
253
+ #: wpsc-admin/display-items.page.php:276 wpsc-admin/display-items.page.php:400
254
+ #: wpsc-admin/display-sales-logs.php:425 wpsc-admin/display-sales-logs.php:550
255
+ #: wpsc-admin/display-variations.page.php:178
256
+ #: wpsc-admin/display-variations.page.php:191
257
+ #: wpsc-admin/display-variations.page.php:213
258
+ #: wpsc-admin/includes/display-items-functions.php:351
259
+ #: wpsc-admin/includes/display-items-functions.php:797
260
+ #: wpsc-admin/includes/settings-pages/checkout.php:248
261
  msgid "Delete"
262
  msgstr ""
263
 
264
+ #: admin-form-functions.php:288 wpsc-admin/display-variations.page.php:164
265
  msgid "Variation Values"
266
  msgstr ""
267
 
268
+ #: admin-form-functions.php:307 wpsc-admin/admin.php:236
269
+ #: wpsc-admin/display-variations.page.php:218
270
+ #: wpsc-admin/includes/settings-pages/checkout.php:175
271
  msgid "Add"
272
  msgstr ""
273
 
274
+ #: admin-form-functions.php:318 display-coupons.php:389
275
+ #: display-coupons.php:450 wpsc-admin/display-groups.page.php:106
276
+ #: wpsc-admin/display-groups.page.php:707
277
+ #: wpsc-admin/display-groups.page.php:720
278
+ #: wpsc-admin/display-variations.page.php:14
279
+ #: wpsc-admin/display-variations.page.php:111
280
+ #: wpsc-includes/variations.class.php:343 wpsc-includes/wpsc_query.php:226
281
  msgid "Edit"
282
  msgstr ""
283
 
284
+ #: admin-form-functions.php:339 display-coupons.php:174
285
+ #: display-coupons.php:365 wpsc-admin/display-sales-logs.php:247
 
286
  msgid "Coupon Code"
287
  msgstr ""
288
 
289
+ #: admin-form-functions.php:340 display-coupons.php:177
290
+ #: display-coupons.php:369 themes/default/shopping_cart_page.php:190
291
+ #: themes/iShop/shopping_cart_page.php:163
292
+ #: themes/marketplace/shopping_cart_page.php:161
293
+ #: transaction_result_functions.php:207 transaction_result_functions.php:215
294
+ #: wpsc-admin/ajax-and-init.php:1141 wpsc-admin/ajax-and-init.php:1147
295
+ #: wpsc-admin/display-sales-logs.php:250
296
  msgid "Discount"
297
  msgstr ""
298
 
299
+ #: admin-form-functions.php:341 display-coupons.php:180
300
+ #: display-coupons.php:373
 
301
  msgid "Start"
302
  msgstr ""
303
 
304
+ #: admin-form-functions.php:342 display-coupons.php:183
305
+ #: display-coupons.php:377
 
306
  msgid "Expiry"
307
  msgstr ""
308
 
309
+ #: admin-form-functions.php:343 display-coupons.php:186
 
310
  msgid "Use Once"
311
  msgstr ""
312
 
313
+ #: admin-form-functions.php:344 display-coupons.php:189
314
+ #: display-coupons.php:381
 
315
  msgid "Active"
316
  msgstr ""
317
 
318
+ #: admin-form-functions.php:345 display-coupons.php:193
319
+ #: display-coupons.php:287 display-coupons.php:385
 
 
320
  msgid "Apply On All Products"
321
  msgstr ""
322
 
323
+ #: admin-form-functions.php:554
324
+ msgid "Update Coupon"
 
325
  msgstr ""
326
 
327
+ #: admin-form-functions.php:555
328
+ msgid "Delete Coupon"
329
+ msgstr ""
330
+
331
+ #: admin-form-functions.php:566 wpsc-admin/admin.php:137
332
  msgid "Settings"
333
  msgstr ""
334
 
335
+ #: admin-form-functions.php:570 wpsc-admin/display-sales-logs.php:316
336
  msgid "Shop Settings"
337
  msgstr ""
338
 
339
+ #: admin-form-functions.php:571
340
  msgid "Money and Payment"
341
  msgstr ""
342
 
343
+ #: admin-form-functions.php:572
344
  msgid "Checkout Page Settings"
345
  msgstr ""
346
 
347
+ #: admin-form-functions.php:590 admin-form-functions.php:591
 
348
  msgid "product"
349
  msgstr ""
350
 
351
+ #: admin-form-functions.php:590 admin-form-functions.php:591
 
352
  msgid "products"
353
  msgstr ""
354
 
355
+ #: admin-form-functions.php:595 admin-form-functions.php:596
 
356
  msgid "group"
357
  msgstr ""
358
 
359
+ #: admin-form-functions.php:595 admin-form-functions.php:596
 
360
  msgid "groups"
361
  msgstr ""
362
 
363
+ #: admin-form-functions.php:600 admin-form-functions.php:601
 
364
  msgid "sale"
365
  msgstr ""
366
 
367
+ #: admin-form-functions.php:600 admin-form-functions.php:601
 
368
  msgid "sales"
369
  msgstr ""
370
 
371
+ #: admin-form-functions.php:607
372
  msgid "variation"
373
  msgstr ""
374
 
375
+ #: admin-form-functions.php:607
376
  msgid "variations"
377
  msgstr ""
378
 
379
+ #: admin-form-functions.php:611 admin-form-functions.php:612
380
+ #: admin-form-functions.php:615
 
381
  msgid "transaction"
382
  msgstr ""
383
 
384
+ #: admin-form-functions.php:611 admin-form-functions.php:612
385
+ #: admin-form-functions.php:615
 
386
  msgid "transactions"
387
  msgstr ""
388
 
389
+ #: admin-form-functions.php:624
390
  msgid "Current Month"
391
  msgstr ""
392
 
393
+ #: admin-form-functions.php:629
394
  msgid "At a Glance"
395
  msgstr ""
396
 
397
+ #: admin-form-functions.php:659
398
  msgid "Pending"
399
  msgstr ""
400
 
401
+ #: admin-form-functions.php:674
402
  msgid "Closed"
403
  msgstr ""
404
 
405
+ #: admin-form-functions.php:682 admin-form-functions.php:690
406
+ #: wpsc-admin/includes/display-items-functions.php:350
407
  msgid "Add New Product"
408
  msgstr ""
409
 
410
+ #: admin-form-functions.php:682
411
  msgid "Here you can add products, groups or variations"
412
  msgstr ""
413
 
414
+ #: admin-form-functions.php:691
415
  msgid "Right Now"
416
  msgstr ""
417
 
418
+ #: admin-form-functions.php:696
419
+ msgid ""
420
+ "You have <a href=\"admin.php?page=wpsc-edit-products\">:productcount:</a>, "
421
+ "contained within <a href=\"admin.php?page=wpsc-edit-groups\">:groupcount:</"
422
+ "a>. This month you made :salecount: and generated a total of :monthtotal: "
423
+ "and your total sales ever is :overaltotal:. You have :pendingcount: awaiting "
424
+ "approval."
425
  msgstr ""
426
 
427
+ #: admin-form-functions.php:698
428
  msgid "You are using the :theme: style. This is WP e-Commerce :versionnumber:."
429
  msgstr ""
430
 
431
+ #: admin-form-functions.php:729
432
  msgid "Packing Slip"
433
  msgstr ""
434
 
435
+ #: admin-form-functions.php:730
436
  msgid "Order"
437
  msgstr ""
438
 
439
+ #: admin-form-functions.php:865 themes/default/list_view.php:137
440
+ #: themes/default/products_page.php:197
441
+ #: themes/default/shopping_cart_page.php:15
442
+ #: themes/default/single_product.php:131 themes/iShop/list_view.php:138
443
+ #: themes/iShop/products_page.php:196 themes/iShop/shopping_cart_page.php:14
444
+ #: themes/iShop/single_product.php:134 themes/marketplace/list_view.php:139
445
+ #: themes/marketplace/products_page.php:199
446
+ #: themes/marketplace/shopping_cart_page.php:14
447
+ #: themes/marketplace/single_product.php:136 user-log.php:204
448
+ #: wpsc-includes/display.functions.php:47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
449
  msgid "Quantity"
450
  msgstr ""
451
 
452
+ #: admin-form-functions.php:870 js/tinymce3/window.php:113
453
+ #: themes/default/cart_widget.php:25 themes/default/products_page.php:214
454
+ #: themes/default/products_page.php:216
455
+ #: themes/default/shopping_cart_page.php:19
456
+ #: themes/default/single_product.php:148 themes/default/single_product.php:150
457
+ #: themes/iShop/cart_widget.php:25 themes/iShop/products_page.php:212
458
+ #: themes/iShop/products_page.php:214 themes/iShop/shopping_cart_page.php:18
459
+ #: themes/iShop/single_product.php:151 themes/iShop/single_product.php:153
460
+ #: themes/marketplace/cart_widget.php:25
461
+ #: themes/marketplace/products_page.php:216
462
+ #: themes/marketplace/products_page.php:218
463
+ #: themes/marketplace/shopping_cart_page.php:18
464
+ #: themes/marketplace/single_product.php:153
465
+ #: themes/marketplace/single_product.php:155 user-log.php:60 user-log.php:208
466
+ #: wpsc-admin/includes/display-items-functions.php:189
467
+ #: wpsc-admin/includes/display-items-functions.php:242
468
+ #: wpsc-admin/includes/settings-pages/presentation.php:458
469
+ #: wpsc-includes/variations.class.php:218
470
  msgid "Price"
471
  msgstr ""
472
 
473
+ #: admin-form-functions.php:872 themes/default/cart_widget.php:40
474
+ #: themes/default/shopping_cart_page.php:17 themes/iShop/cart_widget.php:40
475
+ #: themes/iShop/shopping_cart_page.php:16
476
+ #: themes/marketplace/cart_widget.php:40
477
+ #: themes/marketplace/shopping_cart_page.php:16
478
+ #: transaction_result_functions.php:176 transaction_result_functions.php:178
479
+ #: wpsc-admin/ajax-and-init.php:1120 wpsc-admin/ajax-and-init.php:1122
480
+ #: wpsc-admin/display-options-settings.page.php:102
481
+ #: wpsc-admin/display-sales-logs.php:256
482
  msgid "Shipping"
483
  msgstr ""
484
 
485
+ #: admin-form-functions.php:976
486
  msgid "This users cart was empty"
487
  msgstr ""
488
 
489
+ #: display-coupons.php:29
490
  msgid "Thanks, the coupon has been added."
491
  msgstr ""
492
 
493
+ #: display-coupons.php:155
494
  msgid "Coupons"
495
  msgstr ""
496
 
497
+ #: display-coupons.php:160
498
+ msgid "Create Coupon"
499
  msgstr ""
500
 
501
+ #: display-coupons.php:351
502
+ msgid "Add New Condition"
503
  msgstr ""
504
 
505
+ #: display-coupons.php:466
506
+ msgid ""
507
+ "<strong>Note:</strong> Due to a current limitation of PayPal, if your user "
508
+ "makes a purchase and uses a coupon, we can not send a list of items through "
509
+ "to paypal for processing. Rather, we must send the total amount of the "
510
+ "purchase, so that within PayPal the user who purchases a product will see "
511
+ "your shop name and the total amount of their purchase."
512
+ msgstr ""
513
+
514
+ #: display-coupons.php:478
515
  msgid "Marketing Settings"
516
  msgstr ""
517
 
518
+ #: display-coupons.php:485
519
  msgid "Display Cross Sales"
520
  msgstr ""
521
 
522
+ #: display-coupons.php:509
523
  msgid "Show Share This (Social Bookmarks)"
524
  msgstr ""
525
 
526
+ #: display-coupons.php:532
527
  msgid "Display How Customer Found Us Survey"
528
  msgstr ""
529
 
530
+ #: display-coupons.php:549 wpsc-admin/display-groups.page.php:643
531
+ #: wpsc-admin/display-groups.page.php:668
532
+ msgid "Submit"
 
 
 
533
  msgstr ""
534
 
535
+ #: display-coupons.php:555
536
+ msgid "RSS Address"
537
  msgstr ""
538
 
539
+ #: display-coupons.php:559
540
+ msgid ""
541
+ "<strong>Note:</strong> Not only can people use this RSS to keep update with "
542
+ "your product list but you can also use this link to promote your products in "
543
+ "your facebook profile. <br />Just add the <a href=\"http://apps.facebook.com/"
544
+ "getshopped\">getshopped! facebook application</a> to your facebook profile "
545
+ "and follow the instructions."
546
  msgstr ""
547
 
548
+ #: display-coupons.php:573
549
+ msgid "Google Merchant Centre / Google Product Search"
550
  msgstr ""
551
 
552
+ #: display-ecommerce-subs.php:9
553
+ msgid "User ID"
554
  msgstr ""
555
 
556
+ #: display-ecommerce-subs.php:9 edit-profile.php:39 install_and_update.php:656
557
+ #: user-log.php:362 wpsc-admin/admin.php:349
558
+ #: wpsc-includes/install_and_update.functions.php:656
559
+ msgid "Email"
560
  msgstr ""
561
 
562
+ #: display-ecommerce-subs.php:9
563
  msgid "Registered Date"
564
  msgstr ""
565
 
566
+ #: display-ecommerce-subs.php:9
567
  msgid "Suspend"
568
  msgstr ""
569
 
570
+ #: display-ecommerce-subs.php:9
571
  msgid "Activate"
572
  msgstr ""
573
 
574
+ #: edit-profile.php:31 install_and_update.php:650 install_and_update.php:658
575
+ #: wpsc-includes/install_and_update.functions.php:650
576
+ #: wpsc-includes/install_and_update.functions.php:658
577
  msgid "First Name"
578
  msgstr ""
579
 
580
+ #: edit-profile.php:32
581
  msgid "Please enter a valid name"
582
  msgstr ""
583
 
584
+ #: edit-profile.php:35 install_and_update.php:651 install_and_update.php:659
585
+ #: wpsc-includes/install_and_update.functions.php:651
586
+ #: wpsc-includes/install_and_update.functions.php:659
587
  msgid "Last Name"
588
  msgstr ""
589
 
590
+ #: edit-profile.php:36
591
  msgid "Please enter a valid surname"
592
  msgstr ""
593
 
594
+ #: edit-profile.php:40
595
  msgid "Please enter a valid email address"
596
  msgstr ""
597
 
598
+ #: edit-profile.php:43
599
  msgid "Address 1"
600
  msgstr ""
601
 
602
+ #: edit-profile.php:44
603
  msgid "Address 2"
604
  msgstr ""
605
 
606
+ #: edit-profile.php:45
607
  msgid "Please enter a valid address"
608
  msgstr ""
609
 
610
+ #: edit-profile.php:48 install_and_update.php:653 install_and_update.php:661
611
+ #: wpsc-includes/install_and_update.functions.php:653
612
+ #: wpsc-includes/install_and_update.functions.php:661
613
  msgid "City"
614
  msgstr ""
615
 
616
+ #: edit-profile.php:49
617
  msgid "Please enter your town or city."
618
  msgstr ""
619
 
620
+ #: edit-profile.php:52 install_and_update.php:669 user-log.php:361
621
+ #: wpsc-includes/install_and_update.functions.php:669
622
+ msgid "Phone"
623
+ msgstr ""
624
+
625
+ #: edit-profile.php:53
626
  msgid "Please enter a valid phone number"
627
  msgstr ""
628
 
629
+ #: edit-profile.php:56 install_and_update.php:654 install_and_update.php:663
630
+ #: wpsc-admin/admin.php:350 wpsc-includes/install_and_update.functions.php:654
631
+ #: wpsc-includes/install_and_update.functions.php:663
632
  msgid "Country"
633
  msgstr ""
634
 
635
+ #: edit-profile.php:57
636
  msgid "Please select your country from the list."
637
  msgstr ""
638
 
639
+ #: edit-profile.php:61 wpsc-includes/checkout.class.php:536
640
+ #: wpsc-includes/checkout.class.php:550 wpsc-includes/checkout.class.php:561
641
+ #: wpsc-includes/checkout.class.php:569 wpsc-includes/checkout.class.php:580
642
+ #: wpsc-includes/checkout.class.php:679
643
  msgid "Please enter a valid"
644
  msgstr ""
645
 
646
+ #: edit-profile.php:84
647
  msgid "Thanks, your changes have been saved."
648
  msgstr ""
649
 
650
+ #: edit-profile.php:188
651
  msgid "Save Profile"
652
  msgstr ""
653
 
654
+ #: editor.php:49
655
  msgid "placeholder for:"
656
  msgstr ""
657
 
658
+ #: editor.php:144
659
  msgid "Your forms:"
660
  msgstr ""
661
 
662
+ #: editor.php:146 insertcate.php:87 js/tinymce3/window.php:144
 
663
  msgid "Insert"
664
  msgstr ""
665
 
666
+ #: editor.php:147 insertcate.php:90 js/tinymce3/window.php:140
 
667
  msgid "Cancel"
668
  msgstr ""
669
 
670
+ #: google_shipping_country.php:7
671
  msgid "Google Shipping Country"
672
  msgstr ""
673
 
674
+ #: google_shipping_country.php:43 tax_and_shipping.php:86
675
+ #: wpsc-admin/includes/settings-pages/checkout.php:268
676
  msgid "Save Changes"
677
  msgstr ""
678
 
679
+ #: homepage_products_functions.php:85 widgets/donations_widget.php:6
680
+ #: widgets/donations_widget.php:77 widgets/donations_widget.php:78
681
  msgid "Product Donations"
682
  msgstr ""
683
 
684
+ #: homepage_products_functions.php:157 themes/default/products_page.php:126
685
+ #: themes/iShop/products_page.php:127 themes/marketplace/products_page.php:129
686
  msgid "More Details"
687
  msgstr ""
688
 
689
+ #: homepage_products_functions.php:189 themes/default/grid_view.php:142
690
+ #: themes/default/list_view.php:154 themes/default/products_page.php:234
691
+ #: themes/default/single_product.php:180 themes/iShop/grid_view.php:144
692
+ #: themes/iShop/list_view.php:157 themes/iShop/products_page.php:232
693
+ #: themes/iShop/single_product.php:181 themes/marketplace/grid_view.php:145
694
+ #: themes/marketplace/list_view.php:156
695
+ #: themes/marketplace/products_page.php:236
696
+ #: themes/marketplace/single_product.php:183 widgets/donations_widget.php:48
697
+ #: widgets/specials_widget.php:69
698
+ #: wpsc-admin/includes/settings-pages/presentation.php:85
699
+ #: wpsc-includes/display.functions.php:326
700
  msgid "Add To Cart"
701
  msgstr ""
702
 
703
+ #: homepage_products_functions.php:205 wpsc-includes/wpsc_query.php:875
704
  msgid "Avg. Customer Rating"
705
  msgstr ""
706
 
707
+ #: homepage_products_functions.php:212 wpsc-includes/wpsc_query.php:882
708
  msgid "Your Rating"
709
  msgstr ""
710
 
711
+ #: homepage_products_functions.php:213 homepage_products_functions.php:217
712
+ #: wpsc-includes/wpsc_query.php:883
713
  msgid "Saved"
714
  msgstr ""
715
 
716
+ #: homepage_products_functions.php:216
717
  msgid "Rate This item"
718
  msgstr ""
719
 
720
+ #: insertcate.php:67
721
  msgid "Pick a Category"
722
  msgstr ""
723
 
724
+ #: insertcate.php:74
725
  msgid "Your Categories:"
726
  msgstr ""
727
 
728
+ #: install_and_update.php:60 wpsc-includes/install_and_update.functions.php:60
729
  msgid "Example category"
730
  msgstr ""
731
 
732
+ #: install_and_update.php:60 install_and_update.php:61
733
+ #: wpsc-includes/install_and_update.functions.php:60
734
+ #: wpsc-includes/install_and_update.functions.php:61
735
  msgid "Example details"
736
  msgstr ""
737
 
738
+ #: install_and_update.php:61 wpsc-includes/install_and_update.functions.php:61
739
  msgid "Example Brand"
740
  msgstr ""
741
 
742
+ #: install_and_update.php:68 wp-shopping-cart.php:153
743
+ #: wpsc-includes/install_and_update.functions.php:68
744
  msgid "Order Received"
745
  msgstr ""
746
 
747
+ #: install_and_update.php:69 wpsc-includes/install_and_update.functions.php:69
748
  msgid "Accepted Payment"
749
  msgstr ""
750
 
751
+ #: install_and_update.php:70 wpsc-includes/install_and_update.functions.php:70
752
  msgid "Job Dispatched"
753
  msgstr ""
754
 
755
+ #: install_and_update.php:71 wp-shopping-cart.php:155
756
+ #: wpsc-includes/install_and_update.functions.php:71
757
  msgid "Closed Order"
758
  msgstr ""
759
 
760
+ #: install_and_update.php:87
761
+ #: wpsc-admin/includes/settings-pages/presentation.php:892
762
+ #: wpsc-includes/install_and_update.functions.php:87
763
  msgid "Show Thumbnails"
764
  msgstr ""
765
 
766
+ #: install_and_update.php:89 wpsc-includes/install_and_update.functions.php:89
767
  msgid "product image width"
768
  msgstr ""
769
 
770
+ #: install_and_update.php:90 wpsc-includes/install_and_update.functions.php:90
771
  msgid "product image height"
772
  msgstr ""
773
 
774
+ #: install_and_update.php:92 wpsc-includes/install_and_update.functions.php:92
775
  msgid "product group image width"
776
  msgstr ""
777
 
778
+ #: install_and_update.php:93 wpsc-includes/install_and_update.functions.php:93
779
  msgid "product group image height"
780
  msgstr ""
781
 
782
+ #: install_and_update.php:95 wpsc-admin/includes/settings-pages/admin.php:167
783
+ #: wpsc-includes/install_and_update.functions.php:95
784
  msgid "The location of the product list"
785
  msgstr ""
786
 
787
+ #: install_and_update.php:96 wpsc-admin/includes/settings-pages/admin.php:175
788
+ #: wpsc-includes/install_and_update.functions.php:96
789
  msgid "The location of the shopping cart"
790
  msgstr ""
791
 
792
+ #: install_and_update.php:97 wpsc-includes/install_and_update.functions.php:97
793
  msgid "The location of the checkout page"
794
  msgstr ""
795
 
796
+ #: install_and_update.php:98 wpsc-includes/install_and_update.functions.php:98
797
  msgid "The location of the transaction detail page"
798
  msgstr ""
799
 
800
+ #: install_and_update.php:99 wpsc-includes/install_and_update.functions.php:99
801
  msgid "The payment gateway to use"
802
  msgstr ""
803
 
804
+ #: install_and_update.php:101 install_and_update.php:103
805
+ #: install_and_update.php:107 install_and_update.php:109
806
+ #: wpsc-admin/includes/settings-pages/presentation.php:620
807
+ #: wpsc-includes/install_and_update.functions.php:101
808
+ #: wpsc-includes/install_and_update.functions.php:103
809
+ #: wpsc-includes/install_and_update.functions.php:107
810
+ #: wpsc-includes/install_and_update.functions.php:109
811
  msgid "Cart Location"
812
  msgstr ""
813
 
814
+ #: install_and_update.php:114
815
+ #: wpsc-admin/includes/display-items-functions.php:220
816
+ #: wpsc-admin/includes/display-items-functions.php:259
817
+ #: wpsc-admin/includes/settings-pages/general.php:119
818
+ #: wpsc-includes/install_and_update.functions.php:114
819
  msgid "Currency type"
820
  msgstr ""
821
 
822
+ #: install_and_update.php:115
823
+ #: wpsc-admin/includes/settings-pages/general.php:143
824
+ #: wpsc-includes/install_and_update.functions.php:115
825
  msgid "Currency sign location"
826
  msgstr ""
827
 
828
+ #: install_and_update.php:117
829
+ #: wpsc-includes/install_and_update.functions.php:117
830
  msgid "the GST rate"
831
  msgstr ""
832
 
833
+ #: install_and_update.php:119
834
+ #: wpsc-includes/install_and_update.functions.php:119
835
  msgid "the download limit"
836
  msgstr ""
837
 
838
+ #: install_and_update.php:121
839
+ #: wpsc-includes/install_and_update.functions.php:121
840
  msgid "Display or hide postage and packaging"
841
  msgstr ""
842
 
843
+ #: install_and_update.php:123
844
+ #: wpsc-includes/install_and_update.functions.php:123
845
  msgid "Display or hide specials on the sidebar"
846
  msgstr ""
847
 
848
+ #: install_and_update.php:126
849
+ #: wpsc-includes/install_and_update.functions.php:126
850
  msgid "Default postage and packaging"
851
  msgstr ""
852
 
853
+ #: install_and_update.php:128
854
+ #: wpsc-includes/install_and_update.functions.php:128
855
  msgid "Email address that purchase log is sent to"
856
  msgstr ""
857
 
858
+ #: install_and_update.php:129
859
+ #: wpsc-includes/install_and_update.functions.php:129
860
  msgid "Email address that purchase reports are sent from"
861
  msgstr ""
862
 
863
+ #: install_and_update.php:130
864
+ #: wpsc-includes/install_and_update.functions.php:130
865
  msgid "Checkout terms and conditions"
866
  msgstr ""
867
 
868
+ #: install_and_update.php:132
869
+ #: wpsc-includes/install_and_update.functions.php:132
870
  msgid "Google Merchant Key"
871
  msgstr ""
872
 
873
+ #: install_and_update.php:133
874
+ #: wpsc-includes/install_and_update.functions.php:133
875
  msgid "Google Merchant ID"
876
  msgstr ""
877
 
878
+ #: install_and_update.php:135
879
+ #: wpsc-includes/install_and_update.functions.php:135
880
  msgid "Default Brand"
881
  msgstr ""
882
 
883
+ #: install_and_update.php:136
884
+ #: wpsc-includes/install_and_update.functions.php:136
885
  msgid "Select what product group you want to display on the products page"
886
  msgstr ""
887
 
888
+ #: install_and_update.php:149 install_and_update.php:155
889
+ #: wpsc-includes/install_and_update.functions.php:149
890
+ #: wpsc-includes/install_and_update.functions.php:155
891
  msgid "paypal business"
892
  msgstr ""
893
 
894
+ #: install_and_update.php:150 install_and_update.php:151
895
+ #: install_and_update.php:158
896
+ #: wpsc-includes/install_and_update.functions.php:150
897
+ #: wpsc-includes/install_and_update.functions.php:151
898
+ #: wpsc-includes/install_and_update.functions.php:158
899
  msgid "paypal url"
900
  msgstr ""
901
 
902
+ #: install_and_update.php:162
903
+ #: wpsc-admin/includes/settings-pages/presentation.php:122
904
+ #: wpsc-includes/install_and_update.functions.php:162
905
  msgid "Show Product Ratings"
906
  msgstr ""
907
 
908
+ #: install_and_update.php:163 updates/updating_tasks.php:653
909
+ #: updates/updating_tasks.php:660
910
+ #: wpsc-includes/install_and_update.functions.php:163
911
+ msgid ""
912
+ "Thank you for purchasing with %shop_name%, any items to be shipped will be "
913
+ "processed as soon as possible, any items that can be downloaded can be "
914
+ "downloaded using the links on this page.All prices include tax and postage "
915
+ "and packaging where applicable.You ordered these items:%product_list%%"
916
+ "total_shipping%%total_price%"
917
  msgstr ""
918
 
919
+ #: install_and_update.php:164 updates/updating_tasks.php:654
920
+ #: updates/updating_tasks.php:667
921
+ #: wpsc-includes/install_and_update.functions.php:164
922
  msgid "%product_list%%total_shipping%%total_price%"
923
  msgstr ""
924
 
925
+ #: install_and_update.php:207
926
+ #: wpsc-includes/install_and_update.functions.php:207
927
  msgid "Products Page"
928
  msgstr ""
929
 
930
+ #: install_and_update.php:213 wpsc-admin/display-options-settings.page.php:105
931
+ #: wpsc-includes/install_and_update.functions.php:213
932
  msgid "Checkout"
933
  msgstr ""
934
 
935
+ #: install_and_update.php:225
936
+ #: wpsc-includes/install_and_update.functions.php:225
937
  msgid "Transaction Results"
938
  msgstr ""
939
 
940
+ #: install_and_update.php:231
941
+ #: wpsc-includes/install_and_update.functions.php:231
942
  msgid "Your Account"
943
  msgstr ""
944
 
945
+ #: install_and_update.php:649
946
+ #: wpsc-includes/install_and_update.functions.php:649
947
  msgid "1. Your billing/contact details"
948
  msgstr ""
949
 
950
+ #: install_and_update.php:652 install_and_update.php:660 user-log.php:360
951
+ #: wpsc-includes/install_and_update.functions.php:652
952
+ #: wpsc-includes/install_and_update.functions.php:660
953
+ msgid "Address"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
954
  msgstr ""
955
 
956
+ #: install_and_update.php:655 install_and_update.php:664
957
+ #: wpsc-includes/install_and_update.functions.php:655
958
+ #: wpsc-includes/install_and_update.functions.php:664
959
+ msgid "Postal Code"
960
  msgstr ""
961
 
962
+ #: install_and_update.php:657
963
+ #: wpsc-includes/install_and_update.functions.php:657
964
+ msgid "2. Shipping details"
965
  msgstr ""
966
 
967
+ #: install_and_update.php:662
968
+ #: wpsc-includes/install_and_update.functions.php:662
969
+ msgid "State"
970
  msgstr ""
971
 
972
+ #: js/tinymce3/window.php:36 js/tinymce3/window.php:118
973
+ msgid "Category"
974
  msgstr ""
975
 
976
+ #: js/tinymce3/window.php:37 wpsc-admin/display-upgrades.page.php:47
977
+ msgid "Product Slider"
978
  msgstr ""
979
 
980
+ #: js/tinymce3/window.php:38
981
+ #: wpsc-admin/includes/display-items-functions.php:137
982
+ #: wpsc-admin/includes/display-items-functions.php:139
983
+ msgid "Add Product"
984
  msgstr ""
985
 
986
+ #: js/tinymce3/window.php:48 js/tinymce3/window.php:76
987
+ msgid "Select Category"
 
988
  msgstr ""
989
 
990
+ #: js/tinymce3/window.php:51 js/tinymce3/window.php:78
991
+ #: js/tinymce3/window.php:122
992
+ msgid "No Category"
993
  msgstr ""
994
 
995
+ #: js/tinymce3/window.php:65
996
+ msgid "Number of items per Page"
997
  msgstr ""
998
 
999
+ #: js/tinymce3/window.php:91
1000
+ msgid "Number of visible items"
 
1001
  msgstr ""
1002
 
1003
+ #: merchants/chronopay.php:440 merchants/paypal_multiple.php:562
1004
+ #: wpsc-admin/includes/settings-pages/admin.php:227
1005
+ #: wpsc-admin/includes/settings-pages/gateway.php:92
1006
+ #: wpsc-admin/includes/settings-pages/gateway.php:172
1007
+ #: wpsc-admin/includes/settings-pages/general.php:207
1008
+ #: wpsc-admin/includes/settings-pages/presentation.php:1060
1009
+ #: wpsc-admin/includes/settings-pages/shipping.php:276
1010
+ #: wpsc-admin/includes/settings-pages/shipping.php:298
1011
+ msgid "Update &raquo;"
1012
  msgstr ""
1013
 
1014
+ #: merchants/paypal-standard.merchant.php:137
1015
+ msgid "Your Subscription"
1016
  msgstr ""
1017
 
1018
+ #: merchants/paypal_certified.php:621 merchants/paypal_multiple.php:527
1019
+ msgid "Currency Converter"
1020
  msgstr ""
1021
 
1022
+ #: merchants/paypal_certified.php:624
1023
+ msgid ""
1024
+ "If your website uses a currency not accepted by Paypal, select an accepted "
1025
+ "currency using the drop down menu bellow. Buyers on your site will still pay "
1026
+ "in your local currency however we will send the order through to Paypal "
1027
+ "using currency you choose below."
1028
  msgstr ""
1029
 
1030
+ #: merchants/paypal_multiple.php:530
1031
  #, php-format
1032
+ msgid ""
1033
+ "Your website uses <strong>%s</strong>. This currency is not supported by "
1034
+ "PayPal, please select a currency using the drop down menu below. Buyers on "
1035
+ "your site will still pay in your local currency however we will send the "
1036
+ "order through to Paypal using the currency you choose below."
 
 
 
 
 
 
 
 
1037
  msgstr ""
1038
 
1039
+ #: merchants/paypal_pro.php:276
1040
+ msgid ""
1041
+ "There is a problem with your PayPal account configuration, please contact "
1042
+ "PayPal for further information."
1043
  msgstr ""
1044
 
1045
+ #: merchants/paypal_pro.php:281
1046
+ msgid ""
1047
+ "Sorry your transaction did not go through to Paypal successfully, please try "
1048
+ "again."
1049
  msgstr ""
1050
 
1051
+ #: merchants/paypal_pro.php:370
1052
+ msgid "API Username:"
 
1053
  msgstr ""
1054
 
1055
+ #: merchants/paypal_pro.php:378
1056
+ msgid "API Password:"
 
1057
  msgstr ""
1058
 
1059
+ #: merchants/paypal_pro.php:386
1060
+ msgid "API Signature:"
 
 
1061
  msgstr ""
1062
 
1063
+ #: merchants/paypal_pro.php:394
1064
+ msgid "Test Mode Enabled:"
 
 
1065
  msgstr ""
1066
 
1067
+ #: merchants/testmode.php:30
1068
+ msgid ""
1069
+ "Enter the payment instructions that you wish to display to your customers "
1070
+ "when they make a purchase"
1071
  msgstr ""
1072
 
1073
+ #: merchants/testmode.php:32
1074
+ msgid ""
1075
+ "For example, this is where you the Shop Owner might enter your bank account "
1076
+ "details or address so that your customer can make their manual payment."
1077
  msgstr ""
1078
 
1079
+ #: share-this.php:435
1080
+ msgid "E-mail this, post to del.icio.us, etc."
1081
  msgstr ""
1082
 
1083
+ #: share-this.php:488
1084
+ msgid "Close"
1085
  msgstr ""
1086
 
1087
+ #: share-this.php:490 share-this.php:842
1088
+ msgid "Social Web"
 
1089
  msgstr ""
1090
 
1091
+ #: share-this.php:491 share-this.php:867
1092
+ #: themes/default/shopping_cart_page.php:242
1093
+ #: themes/iShop/shopping_cart_page.php:213
1094
+ #: themes/marketplace/shopping_cart_page.php:211
1095
+ msgid "E-mail"
1096
  msgstr ""
1097
 
1098
+ #: share-this.php:508 share-this.php:871
1099
+ msgid "E-mail It"
1100
  msgstr ""
1101
 
1102
+ #: share-this.php:511 share-this.php:874
1103
+ msgid "To Address:"
1104
  msgstr ""
1105
 
1106
+ #: share-this.php:515 share-this.php:878
1107
+ msgid "Your Name:"
1108
  msgstr ""
1109
 
1110
+ #: share-this.php:519 share-this.php:882
1111
+ msgid "Your Address:"
1112
  msgstr ""
1113
 
1114
+ #: share-this.php:523 share-this.php:886
1115
+ msgid "Send It"
1116
  msgstr ""
1117
 
1118
+ #: share-this.php:605
1119
+ msgid ""
1120
+ "Click your <strong>back button</strong> and make sure those e-mail addresses "
1121
+ "are valid then try again."
1122
  msgstr ""
1123
 
1124
+ #: share-this.php:615
1125
+ msgid "Check out this product on "
 
1126
  msgstr ""
1127
 
1128
+ #: share-this.php:620 share-this.php:640
1129
+ msgid "Greetings--"
1130
  msgstr ""
1131
 
1132
+ #: share-this.php:621 share-this.php:641
1133
+ msgid " thinks this will be of interest to you:"
1134
  msgstr ""
1135
 
1136
+ #: share-this.php:634 share-this.php:644
1137
+ msgid "Enjoy."
 
1138
  msgstr ""
1139
 
1140
+ #: share-this.php:702
1141
+ msgid "Share This : "
1142
  msgstr ""
1143
 
1144
+ #: share-this.php:838
1145
+ #, php-format
1146
+ msgid ""
1147
+ "<strong>What is this?</strong> From this page you can use the <em>Social "
1148
+ "Web</em> links to save %s to a social bookmarking site, or the <em>E-mail</"
1149
+ "em> form to send a link via e-mail."
1150
  msgstr ""
1151
 
1152
+ #: share-this.php:909
1153
+ msgid "Posted in: "
1154
  msgstr ""
1155
 
1156
+ #: share-this.php:912
1157
+ msgid "Return to:"
1158
  msgstr ""
1159
 
1160
+ #: shipping/australiapost.php:47
1161
+ msgid "Australia Post"
1162
  msgstr ""
1163
 
1164
+ #: shipping/australiapost.php:54
1165
+ msgid "Standard Parcel Post"
1166
  msgstr ""
1167
 
1168
+ #: shipping/australiapost.php:55
1169
+ msgid "Express Post"
1170
  msgstr ""
1171
 
1172
+ #: shipping/australiapost.php:56
1173
+ msgid "Air Mail"
1174
  msgstr ""
1175
 
1176
+ #: shipping/australiapost.php:57
1177
+ msgid "Sea Mail"
1178
  msgstr ""
1179
 
1180
+ #: shipping/australiapost.php:58
1181
+ msgid "Economy Air Parcel Post"
1182
  msgstr ""
1183
 
1184
+ #: shipping/australiapost.php:59
1185
+ msgid "Express Post International"
1186
  msgstr ""
1187
 
1188
+ #: shipping/australiapost.php:95
1189
+ msgid ""
1190
+ "This shipping module only works if the base country in settings, region is "
1191
+ "set to Australia."
1192
  msgstr ""
1193
 
1194
+ #: shipping/australiapost.php:100
1195
+ msgid ""
1196
+ "You must set your base postcode above before this shipping module will work."
1197
  msgstr ""
1198
 
1199
+ #: shipping/australiapost.php:103
1200
+ msgid ""
1201
+ "Select the Australia Post services that you want to offer during checkout:"
 
1202
  msgstr ""
1203
 
1204
+ #: shipping/australiapost.php:110
1205
+ msgid "Notes:"
 
 
1206
  msgstr ""
1207
 
1208
+ #: shipping/australiapost.php:111
1209
+ msgid ""
1210
+ "1. The actual services quoted to the customer during checkout will depend on "
1211
+ "the destination country. Not all methods are available to all destinations."
1212
  msgstr ""
1213
 
1214
+ #: shipping/australiapost.php:112
1215
+ msgid ""
1216
+ "2. Each product must have a valid weight configured. When editing a product, "
1217
+ "use the weight field.)."
1218
  msgstr ""
1219
 
1220
+ #: shipping/australiapost.php:113
1221
+ msgid ""
1222
+ "3. To ensure accurate quotes, each product must valid dimensions configured. "
1223
+ "When editing a product, use the height, width and length fields."
1224
  msgstr ""
1225
 
1226
+ #: shipping/australiapost.php:114
1227
+ msgid ""
1228
+ "4. The combined dimensions are estimated by calculating the volume of each "
1229
+ "item, and then calculating the cubed root of the overall order volume which "
1230
+ "becomes width, length and height."
1231
  msgstr ""
1232
 
1233
+ #: shipping/australiapost.php:115
1234
+ msgid ""
1235
+ "5. If no product volumes are defined, then default package dimensions of "
1236
+ "100mm x 100mm x 100mm will be used."
1237
  msgstr ""
1238
 
1239
+ #: shipping/australiapost.php:257
1240
+ #, php-format
1241
+ msgid "%1$s (estimated delivery time: %2$d business day)"
1242
+ msgid_plural "%1$s (estimated delivery time: %2$d business days)"
1243
+ msgstr[0] ""
1244
+ msgstr[1] ""
1245
 
1246
+ #: shipping/flatrate.php:31
1247
+ msgid ""
1248
+ "If you do not wish to ship to a particular region, leave the field blank. To "
1249
+ "offer free shipping to a region, enter 0."
1250
  msgstr ""
1251
 
1252
+ #: shipping/tablerate.php:30 themes/default/shopping_cart_page.php:202
1253
+ #: themes/iShop/shopping_cart_page.php:175
1254
+ #: themes/marketplace/shopping_cart_page.php:173
1255
+ msgid "Total Price"
1256
  msgstr ""
1257
 
1258
+ #: shipping/tablerate.php:30 shipping/weightrate.php:30
1259
+ msgid "Shipping Price"
1260
  msgstr ""
1261
 
1262
+ #: shipping/tablerate.php:37 wpsc-admin/admin.php:366
1263
  msgid "If price is "
1264
  msgstr ""
1265
 
1266
+ #: shipping/tablerate.php:39 shipping/weightrate.php:35
1267
+ #: wpsc-admin/admin.php:365
1268
+ msgid " and above"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1269
  msgstr ""
1270
 
1271
+ #: shipping/ups.php:76
1272
+ msgid "UPS Letter"
1273
  msgstr ""
1274
 
1275
+ #: shipping/ups.php:77
1276
+ msgid "Your Packaging"
 
1277
  msgstr ""
1278
 
1279
+ #: shipping/ups.php:78
1280
+ msgid "UPS Tube"
1281
  msgstr ""
1282
 
1283
+ #: shipping/ups.php:79
1284
+ msgid "UPS Pak"
 
1285
  msgstr ""
1286
 
1287
+ #: shipping/ups.php:80
1288
+ msgid "UPS Express Box"
 
1289
  msgstr ""
1290
 
1291
+ #: shipping/ups.php:81
1292
+ msgid "UPS Express Box - Small"
1293
  msgstr ""
1294
 
1295
+ #: shipping/ups.php:82
1296
+ msgid "UPS Express Box - Medium"
 
1297
  msgstr ""
1298
 
1299
+ #: shipping/ups.php:83
1300
+ msgid "UPS Express Box - Large"
1301
  msgstr ""
1302
 
1303
+ #: shipping/ups.php:86
1304
+ msgid "Destination Type"
 
1305
  msgstr ""
1306
 
1307
+ #: shipping/ups.php:97
1308
+ msgid "Residential Address"
1309
  msgstr ""
1310
 
1311
+ #: shipping/ups.php:98
1312
+ msgid "Commercial Address"
1313
  msgstr ""
1314
 
1315
+ #: shipping/ups.php:104
1316
+ msgid "Packaging"
1317
  msgstr ""
1318
 
1319
+ #: shipping/ups.php:124
1320
+ msgid "Use Testing Environment"
1321
  msgstr ""
1322
 
1323
+ #: shipping/ups.php:133
1324
+ msgid "UPS Preferred Services"
1325
  msgstr ""
1326
 
1327
+ #: shipping/ups.php:154
1328
+ msgid "All services used if no services selected"
1329
  msgstr ""
1330
 
1331
+ #: shipping/ups.php:158
1332
+ msgid "UPS Username"
1333
  msgstr ""
1334
 
1335
+ #: shipping/ups.php:164
1336
+ msgid "UPS Password"
1337
  msgstr ""
1338
 
1339
+ #: shipping/ups.php:170
1340
+ msgid "UPS XML API Key"
1341
  msgstr ""
1342
 
1343
+ #: shipping/ups.php:174
1344
+ msgid "Don't have an API login/ID ?"
1345
  msgstr ""
1346
 
1347
+ #: shipping/ups.php:175
1348
+ msgid "Click Here"
1349
  msgstr ""
1350
 
1351
+ #: shipping/usps.php:37
1352
+ msgid "USPS ID"
1353
  msgstr ""
1354
 
1355
+ #: shipping/usps.php:45
1356
+ msgid "USPS Password"
1357
  msgstr ""
1358
 
1359
+ #: shipping/usps.php:53
1360
+ msgid "Use Test Server:"
1361
  msgstr ""
1362
 
1363
+ #: shipping/weightrate.php:30
1364
+ msgid ""
1365
+ "Total weight <br />(<abbr alt=\"You must enter the weight here in pounds, "
1366
+ "regardless of what you used on your products\" title=\"You must enter the "
1367
+ "weight here in pounds, regardless of what you used on your products\">in "
1368
+ "Pounds</abbr>)"
1369
  msgstr ""
1370
 
1371
+ #: shipping/weightrate.php:35 wpsc-admin/admin.php:367
1372
+ msgid "If weight is "
1373
  msgstr ""
1374
 
1375
+ #: shopping_cart_functions.php:36 shopping_cart_functions.php:44
1376
+ #: shopping_cart_functions.php:54 widgets/shopping_cart_widget.php:27
1377
+ msgid "Shopping Cart"
1378
  msgstr ""
1379
 
1380
+ #: tagging_functions.php:79
1381
+ #, php-format
1382
+ msgid "%d topics"
1383
  msgstr ""
1384
 
1385
+ #: tax_and_shipping.php:34
1386
+ msgid "GST/Tax Rate"
1387
  msgstr ""
1388
 
1389
+ #: themes/default/cart_widget.php:15 themes/iShop/cart_widget.php:15
1390
+ #: themes/marketplace/cart_widget.php:15
1391
+ msgid "Number of items"
1392
  msgstr ""
1393
 
1394
+ #: themes/default/cart_widget.php:23 themes/default/shopping_cart_page.php:14
1395
+ #: themes/iShop/cart_widget.php:23 themes/iShop/shopping_cart_page.php:13
1396
+ #: themes/marketplace/cart_widget.php:23
1397
+ #: themes/marketplace/shopping_cart_page.php:13
1398
+ msgid "Product"
1399
  msgstr ""
1400
 
1401
+ #: themes/default/cart_widget.php:24 themes/iShop/cart_widget.php:24
1402
+ #: themes/marketplace/cart_widget.php:24
1403
+ msgid "Qty"
1404
  msgstr ""
1405
 
1406
+ #: themes/default/cart_widget.php:59 themes/iShop/cart_widget.php:60
1407
+ #: themes/marketplace/cart_widget.php:59
1408
+ msgid "Postage &amp; Tax "
1409
  msgstr ""
1410
 
1411
+ #: themes/default/cart_widget.php:63 themes/iShop/cart_widget.php:64
1412
+ #: themes/marketplace/cart_widget.php:63 transaction_result_functions.php:211
1413
+ #: transaction_result_functions.php:218 user-log.php:220
1414
+ #: wpsc-admin/ajax-and-init.php:1144 wpsc-admin/ajax-and-init.php:1150
1415
+ #: wpsc-admin/display-sales-logs.php:261
1416
+ msgid "Total"
1417
  msgstr ""
1418
 
1419
+ #: themes/default/cart_widget.php:72 themes/iShop/cart_widget.php:73
1420
+ #: themes/marketplace/cart_widget.php:72
1421
+ msgid "Empty your cart"
1422
  msgstr ""
1423
 
1424
+ #: themes/default/cart_widget.php:76 themes/iShop/cart_widget.php:77
1425
+ #: themes/marketplace/cart_widget.php:76
1426
+ #: wpsc-includes/display.functions.php:153
1427
+ msgid "Go to Checkout"
1428
  msgstr ""
1429
 
1430
+ #: themes/default/cart_widget.php:78 themes/iShop/cart_widget.php:79
1431
+ #: themes/marketplace/cart_widget.php:78
1432
+ msgid "Your shopping cart is empty"
1433
  msgstr ""
1434
 
1435
+ #: themes/default/cart_widget.php:80 themes/iShop/cart_widget.php:81
1436
+ #: themes/marketplace/cart_widget.php:80
1437
+ msgid "Visit the shop"
1438
  msgstr ""
1439
 
1440
+ #: themes/default/functions.php:15 themes/iShop/functions.php:15
1441
+ #: themes/marketplace/functions.php:15
1442
+ #: wpsc-admin/includes/settings-pages/presentation.php:989
1443
+ msgid "Page Number position"
1444
  msgstr ""
1445
 
1446
+ #: themes/default/grid_view.php:144 themes/default/list_view.php:162
1447
+ #: themes/default/products_page.php:242 themes/default/single_product.php:189
1448
+ #: themes/iShop/grid_view.php:146 themes/iShop/list_view.php:167
1449
+ #: themes/iShop/products_page.php:240 themes/iShop/single_product.php:190
1450
+ #: themes/marketplace/grid_view.php:147 themes/marketplace/list_view.php:163
1451
+ #: themes/marketplace/products_page.php:245
1452
+ #: themes/marketplace/single_product.php:192 widgets/specials_widget.php:66
1453
+ msgid "This product has sold out."
1454
  msgstr ""
1455
 
1456
+ #: themes/default/grid_view.php:168 themes/default/list_view.php:184
1457
+ #: themes/default/products_page.php:266 themes/iShop/grid_view.php:170
1458
+ #: themes/iShop/list_view.php:189 themes/iShop/products_page.php:265
1459
+ #: themes/marketplace/grid_view.php:171 themes/marketplace/list_view.php:185
1460
+ #: themes/marketplace/products_page.php:270
1461
+ msgid "There are no products in this group."
1462
  msgstr ""
1463
 
1464
+ #: themes/default/list_view.php:152 themes/default/products_page.php:232
1465
+ #: themes/default/single_product.php:178 themes/iShop/list_view.php:155
1466
+ #: themes/iShop/products_page.php:230 themes/iShop/single_product.php:179
1467
+ #: themes/marketplace/list_view.php:154
1468
+ #: themes/marketplace/products_page.php:234
1469
+ #: themes/marketplace/single_product.php:181
1470
+ #: wpsc-admin/includes/settings-pages/presentation.php:87
1471
+ #: wpsc-includes/display.functions.php:242
1472
+ msgid "Buy Now"
1473
  msgstr ""
1474
 
1475
+ #: themes/default/list_view.php:158 themes/default/products_page.php:238
1476
+ #: themes/default/single_product.php:185 themes/iShop/list_view.php:163
1477
+ #: themes/iShop/products_page.php:236 themes/iShop/single_product.php:186
1478
+ #: themes/marketplace/list_view.php:159
1479
+ #: themes/marketplace/products_page.php:241
1480
+ #: themes/marketplace/single_product.php:188
1481
+ msgid "Updating cart..."
1482
  msgstr ""
1483
 
1484
+ #: themes/default/products_page.php:207 themes/default/single_product.php:141
1485
+ #: themes/iShop/products_page.php:205 themes/iShop/single_product.php:144
1486
+ #: themes/marketplace/products_page.php:209
1487
+ #: themes/marketplace/single_product.php:146 widgets/donations_widget.php:47
1488
+ msgid "Donation"
1489
  msgstr ""
1490
 
1491
+ #: themes/default/products_page.php:218 themes/default/single_product.php:157
1492
+ #: themes/iShop/products_page.php:216 themes/iShop/single_product.php:158
1493
+ #: themes/marketplace/products_page.php:220
1494
+ #: themes/marketplace/single_product.php:160 user-log.php:216
1495
+ msgid "P&amp;P"
1496
  msgstr ""
1497
 
1498
+ #: themes/default/shopping_cart_page.php:10
1499
+ #: themes/iShop/shopping_cart_page.php:9
1500
+ #: themes/marketplace/shopping_cart_page.php:9
1501
+ msgid "Please review your order"
1502
  msgstr ""
1503
 
1504
+ #: themes/default/shopping_cart_page.php:37
1505
+ #: themes/default/shopping_cart_page.php:66
1506
+ #: themes/iShop/shopping_cart_page.php:35
1507
+ #: themes/iShop/shopping_cart_page.php:66
1508
+ #: themes/marketplace/shopping_cart_page.php:35
1509
+ #: themes/marketplace/shopping_cart_page.php:65
1510
+ msgid "Update"
1511
  msgstr ""
1512
 
1513
+ #: themes/default/shopping_cart_page.php:50
1514
+ #: themes/iShop/shopping_cart_page.php:49
1515
+ #: themes/marketplace/shopping_cart_page.php:48
1516
+ msgid "Remove"
1517
  msgstr ""
1518
 
1519
+ #: themes/default/shopping_cart_page.php:59
1520
+ #: themes/iShop/shopping_cart_page.php:59
1521
+ #: themes/marketplace/shopping_cart_page.php:58
1522
+ msgid "Coupon is not valid."
1523
  msgstr ""
1524
 
1525
+ #: themes/default/shopping_cart_page.php:62
1526
+ #: themes/iShop/shopping_cart_page.php:62
1527
+ #: themes/marketplace/shopping_cart_page.php:61
1528
+ msgid "Enter your coupon number"
1529
  msgstr ""
1530
 
1531
+ #: themes/default/shopping_cart_page.php:92
1532
+ #: themes/iShop/shopping_cart_page.php:91
1533
+ #: themes/marketplace/shopping_cart_page.php:90
1534
+ msgid "Calculate Shipping Price"
1535
  msgstr ""
1536
 
1537
+ #: themes/default/shopping_cart_page.php:96
1538
+ #: themes/iShop/shopping_cart_page.php:95
1539
+ #: themes/marketplace/shopping_cart_page.php:94
1540
+ msgid "Please choose a country below to calculate your shipping costs"
1541
  msgstr ""
1542
 
1543
+ #: themes/default/shopping_cart_page.php:105
1544
+ msgid "Please provide a Zipcode and click Calculate in order to continue."
1545
  msgstr ""
1546
 
1547
+ #: themes/default/shopping_cart_page.php:112
1548
+ #: themes/iShop/shopping_cart_page.php:139
1549
+ #: themes/marketplace/shopping_cart_page.php:138
1550
+ msgid ""
1551
+ "Sorry, online ordering is unavailable to this destination and/or weight. "
1552
+ "Please double check your destination details."
1553
  msgstr ""
1554
 
1555
+ #: themes/default/shopping_cart_page.php:130
1556
+ #: themes/iShop/shopping_cart_page.php:115
1557
+ #: themes/marketplace/shopping_cart_page.php:114
1558
+ #: wpsc-includes/ajax.functions.php:394
1559
+ msgid "- Choose a Shipping Rate"
1560
  msgstr ""
1561
 
1562
+ #: themes/default/shopping_cart_page.php:179
1563
+ #: transaction_result_functions.php:210 transaction_result_functions.php:217
1564
+ #: user-log.php:317 wpsc-admin/ajax-and-init.php:1143
1565
+ #: wpsc-admin/ajax-and-init.php:1149
1566
+ msgid "Total Shipping"
1567
  msgstr ""
1568
 
1569
+ #: themes/default/shopping_cart_page.php:225
1570
+ #: themes/iShop/shopping_cart_page.php:196
1571
+ #: themes/marketplace/shopping_cart_page.php:194
1572
+ msgid "Not yet a member?"
1573
  msgstr ""
1574
 
1575
+ #: themes/default/shopping_cart_page.php:226
1576
+ #: themes/iShop/shopping_cart_page.php:197
1577
+ #: themes/marketplace/shopping_cart_page.php:195
1578
+ msgid ""
1579
+ "In order to buy from us, you'll need an account. Joining is free and easy. "
1580
+ "All you need is a username, password and valid email address."
1581
  msgstr ""
1582
 
1583
+ #: themes/default/shopping_cart_page.php:240
1584
+ #: themes/iShop/shopping_cart_page.php:211
1585
+ #: themes/marketplace/shopping_cart_page.php:209
1586
+ msgid "Username"
1587
  msgstr ""
1588
 
1589
+ #: themes/default/shopping_cart_page.php:241
1590
+ #: themes/iShop/shopping_cart_page.php:212
1591
+ #: themes/marketplace/shopping_cart_page.php:210
1592
+ msgid "Password"
1593
  msgstr ""
1594
 
1595
+ #: themes/default/shopping_cart_page.php:246
1596
+ #: themes/iShop/shopping_cart_page.php:217
1597
+ #: themes/marketplace/shopping_cart_page.php:215
1598
+ msgid "Please enter your contact details:"
1599
  msgstr ""
1600
 
1601
+ #: themes/default/shopping_cart_page.php:248
1602
+ #: themes/iShop/shopping_cart_page.php:219
1603
+ #: themes/marketplace/shopping_cart_page.php:217
1604
+ msgid "Fields marked with an asterisk must be filled in."
1605
  msgstr ""
1606
 
1607
+ #: themes/default/shopping_cart_page.php:323
1608
+ #: themes/iShop/shopping_cart_page.php:294
1609
+ #: themes/marketplace/shopping_cart_page.php:292
1610
+ msgid "Select a payment gateway"
1611
  msgstr ""
1612
 
1613
+ #: themes/default/shopping_cart_page.php:357
1614
+ #: themes/iShop/shopping_cart_page.php:328
1615
+ #: themes/marketplace/shopping_cart_page.php:326
1616
+ msgid "I agree to The "
1617
  msgstr ""
1618
 
1619
+ #: themes/default/shopping_cart_page.php:358
1620
+ #: themes/iShop/shopping_cart_page.php:329
1621
+ #: themes/marketplace/shopping_cart_page.php:327
1622
+ #: wpsc-admin/includes/settings-pages/admin.php:107
1623
+ msgid "Terms and Conditions"
1624
  msgstr ""
1625
 
1626
+ #: themes/default/shopping_cart_page.php:370
1627
+ #: themes/iShop/shopping_cart_page.php:341
1628
+ #: themes/marketplace/shopping_cart_page.php:339
1629
+ msgid "Make Purchase"
1630
  msgstr ""
1631
 
1632
+ #: themes/default/shopping_cart_page.php:384
1633
+ #: themes/iShop/shopping_cart_page.php:355
1634
+ #: themes/marketplace/shopping_cart_page.php:353
1635
+ #: transaction_result_functions.php:375
1636
+ msgid "Oops, there is nothing in your cart."
1637
  msgstr ""
1638
 
1639
+ #: themes/default/shopping_cart_page.php:384
1640
+ #: themes/iShop/shopping_cart_page.php:355
1641
+ #: themes/marketplace/shopping_cart_page.php:353
1642
+ #: transaction_result_functions.php:375
1643
+ msgid "Please visit our shop"
1644
  msgstr ""
1645
 
1646
+ #: themes/default/single_product.php:96 themes/iShop/single_product.php:99
1647
+ #: themes/marketplace/single_product.php:101
1648
+ msgid "Personalize your product"
1649
  msgstr ""
1650
 
1651
+ #: themes/default/single_product.php:97 themes/iShop/single_product.php:100
1652
+ #: themes/marketplace/single_product.php:102
1653
+ msgid ""
1654
+ "Complete this form to include a personalized message with your purchase."
1655
  msgstr ""
1656
 
1657
+ #: themes/default/single_product.php:104 themes/iShop/single_product.php:107
1658
+ #: themes/marketplace/single_product.php:109
1659
+ msgid "Upload a File"
1660
  msgstr ""
1661
 
1662
+ #: themes/default/single_product.php:105 themes/iShop/single_product.php:108
1663
+ #: themes/marketplace/single_product.php:110
1664
+ msgid "Select a file from your computer to include with this purchase. "
1665
  msgstr ""
1666
 
1667
+ #: transaction_result_functions.php:35
1668
+ msgid ""
1669
+ "We&#39;re Sorry, your order has not been accepted, the most likely reason is "
1670
+ "that you have insufficient funds."
1671
  msgstr ""
1672
 
1673
+ #: transaction_result_functions.php:37
1674
+ msgid "New pending order"
 
 
1675
  msgstr ""
1676
 
1677
+ #: transaction_result_functions.php:37
1678
+ msgid "There is a new order awaiting processing:"
 
 
1679
  msgstr ""
1680
 
1681
+ #: transaction_result_functions.php:41 transaction_result_functions.php:257
1682
+ #: wpsc-admin/ajax-and-init.php:1184
1683
+ msgid ""
1684
+ "Thank you, your purchase is pending, you will be sent an email once the "
1685
+ "order clears."
1686
  msgstr ""
1687
 
1688
+ #: transaction_result_functions.php:220 transaction_result_functions.php:221
1689
+ #: wpsc-admin/ajax-and-init.php:1152 wpsc-admin/ajax-and-init.php:1153
1690
+ msgid "Your Transaction ID"
1691
  msgstr ""
1692
 
1693
+ #: transaction_result_functions.php:222 wpsc-admin/ajax-and-init.php:1154
1694
+ msgid "Transaction ID"
1695
  msgstr ""
1696
 
1697
+ #: transaction_result_functions.php:258 wpsc-admin/ajax-and-init.php:1185
1698
+ msgid "Order Pending: Payment Required"
1699
  msgstr ""
1700
 
1701
+ #: transaction_result_functions.php:260 wpsc-admin/ajax-and-init.php:1188
1702
+ #: wpsc-admin/includes/settings-pages/admin.php:128
1703
+ msgid "Purchase Receipt"
1704
  msgstr ""
1705
 
1706
+ #: transaction_result_functions.php:265 user-log.php:336
1707
+ msgid "Customer Details"
1708
  msgstr ""
1709
 
1710
+ #: transaction_result_functions.php:351
1711
+ msgid "Purchase Report"
1712
  msgstr ""
1713
 
1714
+ #: transaction_result_functions.php:367
1715
+ msgid "The Transaction was successful"
1716
  msgstr ""
1717
 
1718
+ #: transaction_results.php:40 transaction_results.php:49
1719
+ msgid "Sorry your transaction was not accepted.<br /><a href="
1720
  msgstr ""
1721
 
1722
+ #: updates/updating_tasks.php:53
1723
+ msgid ""
1724
+ "Your purchase from %shop_name% has just been dispatched. It should arrive "
1725
+ "soon. To keep track of your products status a tracking id has been attached. "
1726
+ "\\r\\n your tracking id is: %trackid%"
1727
  msgstr ""
1728
 
1729
+ #: updates/updating_tasks.php:56
1730
+ msgid "Your Order from %shop_name% has been dispatched"
1731
  msgstr ""
1732
 
1733
+ #: user-downloads.php:41
1734
+ msgid "File Names"
1735
  msgstr ""
1736
 
1737
+ #: user-downloads.php:42
1738
+ msgid "Downloads Left"
1739
  msgstr ""
1740
 
1741
+ #: user-downloads.php:43 user-log.php:56
1742
+ msgid "Date"
1743
  msgstr ""
1744
 
1745
+ #: user-downloads.php:69
1746
+ msgid "You have not purchased any downloadable products yet."
1747
  msgstr ""
1748
 
1749
+ #: user-log.php:52
1750
+ msgid "Status"
1751
  msgstr ""
1752
 
1753
+ #: user-log.php:65 user-log.php:383
1754
+ msgid "Payment Method"
1755
  msgstr ""
1756
 
1757
+ #: user-log.php:94
1758
+ msgid "Details"
1759
  msgstr ""
1760
 
1761
+ #: user-log.php:147
1762
+ msgid "Order Status"
1763
  msgstr ""
1764
 
1765
+ #: user-log.php:169 wpsc-admin/display-sales-logs.php:188
1766
+ #: wpsc-admin/includes/display-items-functions.php:651
1767
+ msgid "Shipping Details"
1768
  msgstr ""
1769
 
1770
+ #: user-log.php:188
1771
+ msgid "Order Details"
1772
  msgstr ""
1773
 
1774
+ #: user-log.php:212
1775
+ msgid "GST"
1776
  msgstr ""
1777
 
1778
+ #: user-log.php:318
1779
+ msgid "Final Total"
1780
  msgstr ""
1781
 
1782
+ #: user-log.php:384
1783
+ msgid "Purchase No."
 
1784
  msgstr ""
1785
 
1786
+ #: user-log.php:387
1787
+ msgid "Transaction Id"
 
1788
  msgstr ""
1789
 
1790
+ #: user-log.php:401
1791
+ msgid "No transactions for this month."
 
1792
  msgstr ""
1793
 
1794
+ #: user-log.php:412
1795
+ msgid "There have not been any purchases yet."
 
1796
  msgstr ""
1797
 
1798
+ #: user-log.php:427
1799
  msgid ""
1800
+ "You must be logged in to use this page. Please use the form below to login "
1801
+ "to your account."
 
 
 
 
1802
  msgstr ""
1803
 
1804
+ #: widgets/admin_menu_widget.php:8 widgets/admin_menu_widget.php:22
 
1805
  msgid "Admin Menu"
1806
  msgstr ""
1807
 
1808
+ #: widgets/category_widget.27.php:19 wpsc-admin/admin.php:104
1809
+ #: wpsc-admin/display-groups.page.php:566
1810
+ #: wpsc-admin/includes/display-items-functions.php:404
1811
+ #: wpsc-includes/category.functions.php:361
1812
  msgid "Categories"
1813
  msgstr ""
1814
 
1815
+ #: widgets/category_widget.27.php:134 widgets/category_widget.28.php:69
1816
+ #: widgets/donations_widget.php:71 widgets/latest_product_widget.php:74
1817
+ #: widgets/price_range_widget.php:71 widgets/product_tag_widget.php:30
1818
+ #: widgets/shopping_cart_widget.php:78 widgets/specials_widget.php:103
 
 
 
 
1819
  msgid "Title:"
1820
  msgstr ""
1821
 
1822
+ #: widgets/category_widget.27.php:159 widgets/category_widget.28.php:80
 
1823
  msgid "Display the :category: Group"
1824
  msgstr ""
1825
 
1826
+ #: widgets/category_widget.27.php:168 widgets/category_widget.28.php:88
 
1827
  msgid "Display the Group thumbnails in the sidebar"
1828
  msgstr ""
1829
 
1830
+ #: widgets/category_widget.27.php:179 widgets/category_widget.28.php:11
 
1831
  msgid "Product Grouping Widget"
1832
  msgstr ""
1833
 
1834
+ #: widgets/category_widget.27.php:181 widgets/category_widget.28.php:12
1835
+ #: widgets/category_widget.28.php:19
 
1836
  msgid "Product Categories"
1837
  msgstr ""
1838
 
1839
+ #: widgets/latest_product_widget.php:7 widgets/latest_product_widget.php:88
1840
+ #: widgets/latest_product_widget.php:89
 
1841
  msgid "Latest Products"
1842
  msgstr ""
1843
 
1844
+ #: widgets/latest_product_widget.php:75
1845
  msgid "Number of products to show:"
1846
  msgstr ""
1847
 
1848
+ #: widgets/price_range_widget.php:6 widgets/price_range_widget.php:77
1849
+ #: widgets/price_range_widget.php:78
 
1850
  msgid "Price Range"
1851
  msgstr ""
1852
 
1853
+ #: widgets/price_range_widget.php:54
1854
  msgid "Show All"
1855
  msgstr ""
1856
 
1857
+ #: widgets/product_tag_widget.php:9 widgets/product_tag_widget.php:38
1858
+ #: widgets/product_tag_widget.php:39
1859
+ #: wpsc-admin/includes/display-items-functions.php:428
1860
+ #: wpsc-admin/includes/display-items-functions.php:430
1861
  msgid "Product Tags"
1862
  msgstr ""
1863
 
1864
+ #: widgets/shopping_cart_widget.php:43 widgets/shopping_cart_widget.php:48
 
1865
  msgid "Loading..."
1866
  msgstr ""
1867
 
1868
+ #: widgets/shopping_cart_widget.php:79
1869
+ msgid "Hide Cart When Empty:"
1870
+ msgstr ""
1871
+
1872
+ #: widgets/specials_widget.php:10 widgets/specials_widget.php:112
1873
+ #: widgets/specials_widget.php:113
1874
  msgid "Product Specials"
1875
  msgstr ""
1876
 
1877
+ #: widgets/specials_widget.php:106
1878
  msgid "Show Description:"
1879
  msgstr ""
1880
 
1881
+ #: wp-shopping-cart.php:152
1882
+ msgid "Note: if this is blank, the image will not be resized"
1883
+ msgstr ""
1884
+
1885
+ #: wp-shopping-cart.php:526
1886
+ msgid "Please Note"
1887
+ msgstr ""
1888
+
1889
+ #: wp-shopping-cart.php:527
1890
+ #, php-format
1891
+ msgid ""
1892
+ "Before upgrading you should check the <a %s>upgrade information</a> and "
1893
+ "changelog as you may need to make updates to your template files."
1894
+ msgstr ""
1895
+
1896
+ #: wpsc-admin/admin.php:77 wpsc-admin/admin.php:80 wpsc-admin/admin.php:82
1897
+ #: wpsc-admin/admin.php:87 wpsc-admin/admin.php:90
1898
+ msgid "Store"
1899
  msgstr ""
1900
 
1901
+ #: wpsc-admin/admin.php:95 wpsc-admin/admin.php:449 wpsc-admin/admin.php:479
1902
+ #: wpsc-admin/display-sales-logs.php:32
1903
+ #: wpsc-admin/includes/purchlogs_upgrade.php:73
1904
  msgid "Sales"
1905
  msgstr ""
1906
 
1907
+ #: wpsc-admin/admin.php:100
1908
+ msgid "Products"
1909
+ msgstr ""
1910
+
1911
+ #: wpsc-admin/admin.php:108
1912
  msgid "Variations"
1913
  msgstr ""
1914
 
1915
+ #: wpsc-admin/admin.php:131 wpsc-admin/admin.php:133
1916
  msgid "Marketing"
1917
  msgstr ""
1918
 
1919
+ #: wpsc-admin/admin.php:140 wpsc-admin/display-upgrades.page.php:61
1920
  msgid "Upgrades"
1921
  msgstr ""
1922
 
1923
+ #: wpsc-admin/admin.php:144
1924
  msgid "- Debug"
1925
  msgstr ""
1926
 
1927
+ #: wpsc-admin/admin.php:181
1928
+ msgid "Product Tracking Email"
1929
+ msgstr ""
1930
+
1931
+ #: wpsc-admin/admin.php:182
1932
+ msgid ""
1933
+ "Track & Trace means you may track the progress of your parcel with our "
1934
+ "online parcel tracker, just login to our website and enter the following "
1935
+ "Tracking ID to view the status of your order.\n"
1936
+ "\n"
1937
+ "Tracking ID: %trackid%\n"
1938
+ msgstr ""
1939
+
1940
+ #: wpsc-admin/admin.php:235
1941
  msgid "Tags used on this post:"
1942
  msgstr ""
1943
 
1944
+ #: wpsc-admin/admin.php:237
1945
  msgid "Add new tag"
1946
  msgstr ""
1947
 
1948
+ #: wpsc-admin/admin.php:238
1949
+ #: wpsc-admin/includes/display-items-functions.php:432
1950
  msgid "Separate tags with commas"
1951
  msgstr ""
1952
 
1953
+ #: wpsc-admin/admin.php:348
1954
+ msgid "Text"
1955
+ msgstr ""
1956
+
1957
+ #: wpsc-admin/admin.php:351
1958
+ msgid "Textarea"
1959
+ msgstr ""
1960
+
1961
+ #: wpsc-admin/admin.php:352
1962
+ msgid "Heading"
1963
+ msgstr ""
1964
+
1965
+ #: wpsc-admin/admin.php:353
1966
+ msgid "Coupon"
1967
+ msgstr ""
1968
+
1969
+ #: wpsc-admin/admin.php:358
1970
+ #: wpsc-admin/includes/display-items-functions.php:1079
1971
+ msgid "Label"
1972
+ msgstr ""
1973
+
1974
+ #: wpsc-admin/admin.php:359
1975
+ #: wpsc-admin/includes/display-items-functions.php:1083
1976
+ msgid "Label Description"
1977
+ msgstr ""
1978
+
1979
+ #: wpsc-admin/admin.php:360
1980
+ #: wpsc-admin/includes/display-items-functions.php:1091
1981
+ msgid "Item Number"
1982
+ msgstr ""
1983
+
1984
+ #: wpsc-admin/admin.php:361
1985
+ #: wpsc-admin/includes/display-items-functions.php:1087
1986
+ msgid "Life Number"
1987
+ msgstr ""
1988
+
1989
+ #: wpsc-admin/admin.php:362
1990
+ #: wpsc-admin/includes/display-items-functions.php:1095
1991
+ msgid "Product Code"
1992
+ msgstr ""
1993
+
1994
+ #: wpsc-admin/admin.php:363
1995
+ #: wpsc-admin/includes/display-items-functions.php:1099
1996
+ msgid "PDF"
1997
+ msgstr ""
1998
+
1999
+ #: wpsc-admin/admin.php:436 wpsc-admin/display-sales-logs.php:359
2000
  msgid "Last 30 Days"
2001
  msgstr ""
2002
 
2003
+ #: wpsc-admin/admin.php:455 wpsc-admin/admin.php:485
 
2004
  msgid "Orders"
2005
  msgstr ""
2006
 
2007
+ #: wpsc-admin/admin.php:465 wpsc-admin/admin.php:497
 
2008
  msgid "Avg Orders"
2009
  msgstr ""
2010
 
2011
+ #: wpsc-admin/admin.php:475 wpsc-admin/display-sales-logs.php:372
2012
  msgid "Life Time"
2013
  msgstr ""
2014
 
2015
+ #: wpsc-admin/admin.php:518 wpsc-admin/admin.php:746
 
2016
  msgid "e-Commerce"
2017
  msgstr ""
2018
 
2019
+ #: wpsc-admin/admin.php:535
2020
  msgid "E-Commerce"
2021
  msgstr ""
2022
 
2023
+ #: wpsc-admin/admin.php:652
2024
  msgid "Sales by Quarter"
2025
  msgstr ""
2026
 
2027
+ #: wpsc-admin/admin.php:738
2028
  msgid "Sales by"
2029
  msgstr ""
2030
 
2031
+ #: wpsc-admin/admin.php:781
2032
+ msgid ""
2033
+ "Your \"products page\" is not currently set to display any products. You "
2034
+ "need to select a product grouping to display by default. <br /> This is set "
2035
+ "in the Shop Settings page."
2036
+ msgstr ""
2037
+
2038
+ #: wpsc-admin/ajax-and-init.php:766 wpsc-admin/display-variations.page.php:145
2039
+ msgid "Edit Variation Set"
2040
+ msgstr ""
2041
+
2042
+ #: wpsc-admin/ajax-and-init.php:985
2043
  msgid "Your Order"
2044
  msgstr ""
2045
 
2046
+ #: wpsc-admin/ajax-and-init.php:1106 wpsc-admin/ajax-and-init.php:1107
2047
+ #: wpsc-admin/includes/display-items-functions.php:1035
2048
+ msgid "Click to download"
2049
+ msgstr ""
2050
+
2051
+ #: wpsc-admin/ajax-and-init.php:1232
2052
  msgid "The administrator has unlocked your file"
2053
  msgstr ""
2054
 
2055
+ #: wpsc-admin/ajax-and-init.php:1232
2056
+ msgid ""
2057
+ "Dear CustomerWe are pleased to advise you that your order has been updated "
2058
+ "and your downloads are now active.Please download your purchase using the "
2059
+ "links provided below.[download_links]Thank you for your custom."
2060
  msgstr ""
2061
 
2062
+ #: wpsc-admin/display-groups.page.php:41
2063
  msgid "Select the markets you are selling this category to."
2064
  msgstr ""
2065
 
2066
+ #: wpsc-admin/display-groups.page.php:236
2067
+ msgid "The item has been added"
2068
+ msgstr ""
2069
+
2070
+ #: wpsc-admin/display-groups.page.php:238
2071
+ #: wpsc-admin/display-groups.page.php:244
2072
+ msgid "The item has not been added"
2073
+ msgstr ""
2074
+
2075
+ #: wpsc-admin/display-groups.page.php:470
2076
  msgid "The product group has been edited."
2077
  msgstr ""
2078
 
2079
+ #: wpsc-admin/display-groups.page.php:475
2080
  msgid "The group has been added."
2081
  msgstr ""
2082
 
2083
+ #: wpsc-admin/display-groups.page.php:487
2084
  msgid "The group has been edited."
2085
  msgstr ""
2086
 
2087
+ #: wpsc-admin/display-groups.page.php:543
2088
+ msgid ""
2089
+ "Are you sure you want to delete this category? If the category has any "
2090
+ "subcategories, they will be deleted too."
2091
  msgstr ""
2092
 
2093
+ #: wpsc-admin/display-groups.page.php:551
2094
+ msgid ""
2095
+ "Are you sure you want to delete this product group? All categories it "
2096
+ "contains will be deleted too."
2097
  msgstr ""
2098
 
2099
+ #: wpsc-admin/display-groups.page.php:574
2100
+ msgid ""
2101
+ "Categorizing your products into groups help your customers find them. For "
2102
+ "instance if you sell hats and trousers you might want to setup a Group "
2103
+ "called clothes and add hats and trousers to that group."
2104
  msgstr ""
2105
 
2106
+ #: wpsc-admin/display-groups.page.php:589
2107
  msgid "Select a Group to Manage"
2108
  msgstr ""
2109
 
2110
+ #: wpsc-admin/display-groups.page.php:607
2111
  msgid "or"
2112
  msgstr ""
2113
 
2114
+ #: wpsc-admin/display-groups.page.php:609
2115
+ #: wpsc-admin/display-groups.page.php:626
2116
  msgid "Add New Group"
2117
  msgstr ""
2118
 
2119
+ #: wpsc-admin/display-groups.page.php:650
2120
+ msgid "Edit Group"
2121
  msgstr ""
2122
 
2123
+ #: wpsc-admin/display-groups.page.php:685
2124
  msgid "&quot;[categorisation]&quot; Group"
2125
  msgstr ""
2126
 
2127
+ #: wpsc-admin/display-groups.page.php:695
2128
  msgid "Image"
2129
  msgstr ""
2130
 
2131
+ #: wpsc-admin/display-groups.page.php:718
2132
+ msgid "You are editing the &quot;[categorisation]&quot; Group"
2133
+ msgstr ""
2134
+
2135
+ #: wpsc-admin/display-groups.page.php:739
2136
+ #: wpsc-admin/display-groups.page.php:743
2137
  msgid "You are editing an item in the &quot;[categorisation]&quot; Group"
2138
  msgstr ""
2139
 
2140
+ #: wpsc-admin/display-groups.page.php:742
2141
  msgid "Edit Details"
2142
  msgstr ""
2143
 
2144
+ #: wpsc-admin/display-groups.page.php:758
2145
+ #: wpsc-admin/display-groups.page.php:921
2146
  msgid "Add Category"
2147
  msgstr ""
2148
 
2149
+ #: wpsc-admin/display-groups.page.php:761
2150
+ msgid ""
2151
+ "Adding a new category here will make it available when you add or edit a "
2152
+ "product."
2153
  msgstr ""
2154
 
2155
+ #: wpsc-admin/display-groups.page.php:767
2156
+ #: wpsc-admin/display-groups.page.php:770
2157
  msgid "You are adding a new item to the &quot;[categorisation]&quot; Group"
2158
  msgstr ""
2159
 
2160
+ #: wpsc-admin/display-groups.page.php:792
2161
+ msgid "Group Parent"
2162
+ msgstr ""
2163
+
2164
+ #: wpsc-admin/display-groups.page.php:800
2165
+ msgid "Group&nbsp;Image"
2166
  msgstr ""
2167
 
2168
+ #: wpsc-admin/display-items.page.php:29
2169
  msgid "Display Products"
2170
  msgstr ""
2171
 
2172
+ #: wpsc-admin/display-items.page.php:49 wpsc-admin/display-items.page.php:54
2173
+ #, php-format
2174
+ msgid "%s product updated."
2175
+ msgid_plural "%s products updated."
2176
+ msgstr[0] ""
2177
+ msgstr[1] ""
2178
+
2179
+ #: wpsc-admin/display-items.page.php:63
2180
+ #, php-format
2181
+ msgid "Product deleted."
2182
+ msgid_plural "%s products deleted."
2183
+ msgstr[0] ""
2184
+ msgstr[1] ""
2185
+
2186
+ #: wpsc-admin/display-items.page.php:68
2187
+ #, php-format
2188
+ msgid "Product duplicated."
2189
+ msgid_plural "%s products duplicated."
2190
+ msgstr[0] ""
2191
+ msgstr[1] ""
2192
+
2193
+ #: wpsc-admin/display-items.page.php:74
2194
+ #: wpsc-admin/display-variations.page.php:49
2195
  msgid "Product updated."
2196
  msgstr ""
2197
 
2198
+ #: wpsc-admin/display-items.page.php:114
2199
+ msgid ""
2200
+ "The following directories are not writable: :directory: You won&#39;t be "
2201
+ "able to upload any images or files here. You will need to change the "
2202
+ "permissions on these directories to make them writable."
2203
  msgstr ""
2204
 
2205
+ #: wpsc-admin/display-items.page.php:147
2206
  msgid ""
2207
  "You are about to delete the selected products.\n"
2208
  " 'Cancel' to stop, 'OK' to delete."
2209
  msgstr ""
2210
 
2211
+ #: wpsc-admin/display-items.page.php:231
2212
  msgid "&laquo;"
2213
  msgstr ""
2214
 
2215
+ #: wpsc-admin/display-items.page.php:232
2216
  msgid "&raquo;"
2217
  msgstr ""
2218
 
2219
+ #: wpsc-admin/display-items.page.php:270
2220
  msgid "Search"
2221
  msgstr ""
2222
 
2223
+ #: wpsc-admin/display-items.page.php:275 wpsc-admin/display-sales-logs.php:419
 
2224
  msgid "Bulk Actions"
2225
  msgstr ""
2226
 
2227
+ #: wpsc-admin/display-items.page.php:277 wpsc-admin/display-items.page.php:425
2228
+ #: wpsc-admin/includes/display-items-functions.php:823
 
2229
  msgid "Publish"
2230
  msgstr ""
2231
 
2232
+ #: wpsc-admin/display-items.page.php:278 wpsc-admin/display-items.page.php:365
 
2233
  msgid "Draft"
2234
  msgstr ""
2235
 
2236
+ #: wpsc-admin/display-items.page.php:282 wpsc-admin/display-sales-logs.php:428
 
2237
  msgid "Apply"
2238
  msgstr ""
2239
 
2240
+ #: wpsc-admin/display-items.page.php:318
2241
  msgid "No Name"
2242
  msgstr ""
2243
 
2244
+ #: wpsc-admin/display-items.page.php:396
2245
+ #: wpsc-admin/includes/display-items-functions.php:351
2246
  msgid "Delete this product"
2247
  msgstr ""
2248
 
2249
+ #: wpsc-admin/display-items.page.php:398
2250
+ #: wpsc-admin/includes/display-items-functions.php:351
2251
  #, php-format
2252
  msgid ""
2253
  "You are about to delete this product '%s'\n"
2254
  " 'Cancel' to stop, 'OK' to delete."
2255
  msgstr ""
2256
 
2257
+ #: wpsc-admin/display-items.page.php:423
2258
  msgid "Unpublish"
2259
  msgstr ""
2260
 
2261
+ #: wpsc-admin/display-items.page.php:452
2262
  msgid "You have no products added."
2263
  msgstr ""
2264
 
2265
+ #: wpsc-admin/display-items.page.php:469
2266
  msgid "View All Categories"
2267
  msgstr ""
2268
 
2269
+ #: wpsc-admin/display-options-settings.page.php:18
2270
+ msgid ""
2271
+ "It looks like your wp-e-commerce theme files are out of date, this can cause "
2272
+ "potential problems with some gateways and the appearances of the front end "
2273
+ "of your shop. <br /><strong>We recommend you download the latest version of "
2274
+ "wp-e-commerce unzip it, and copy the new themes folder into your 'uploads/"
2275
+ "wpsc/themes' folder on your site. Or port your changes across.</strong>"
2276
+ msgstr ""
2277
+
2278
+ #: wpsc-admin/display-options-settings.page.php:44
2279
  msgid "Thanks, your thumbnail images have been resized."
2280
  msgstr ""
2281
 
2282
+ #: wpsc-admin/display-options-settings.page.php:99
2283
  msgid "General"
2284
  msgstr ""
2285
 
2286
+ #: wpsc-admin/display-options-settings.page.php:100
2287
  msgid "Presentation"
2288
  msgstr ""
2289
 
2290
+ #: wpsc-admin/display-options-settings.page.php:101
2291
  msgid "Admin"
2292
  msgstr ""
2293
 
2294
+ #: wpsc-admin/display-options-settings.page.php:103
2295
  msgid "Payment Options"
2296
  msgstr ""
2297
 
2298
+ #: wpsc-admin/display-options-settings.page.php:104
2299
  msgid "Import"
2300
  msgstr ""
2301
 
2302
+ #: wpsc-admin/display-options-settings.page.php:176
2303
  msgid "To configure a shipping module select one on the left."
2304
  msgstr ""
2305
 
2306
+ #: wpsc-admin/display-options-settings.page.php:186
2307
+ #, php-format
2308
+ msgid " Setting Options Updated. "
2309
+ msgid_plural " %s Settings Options Updated. "
2310
+ msgstr[0] ""
2311
+ msgstr[1] ""
2312
+
2313
+ #: wpsc-admin/display-options-settings.page.php:191
2314
+ #, php-format
2315
+ msgid "%s Setting Option deleted. "
2316
+ msgid_plural "%s Setting Option deleted. "
2317
+ msgstr[0] ""
2318
+ msgstr[1] ""
2319
+
2320
+ #: wpsc-admin/display-options-settings.page.php:195
2321
+ msgid " Shipping Option Updated."
2322
+ msgid_plural " Shipping Option Updated."
2323
+ msgstr[0] ""
2324
+ msgstr[1] ""
2325
+
2326
+ #: wpsc-admin/display-options-settings.page.php:199
2327
+ #, php-format
2328
+ msgid "%s Checkout Field Added."
2329
+ msgid_plural "%s Checkout Fields Added."
2330
+ msgstr[0] ""
2331
+ msgstr[1] ""
2332
+
2333
+ #: wpsc-admin/display-sales-logs.php:65
2334
+ #, php-format
2335
+ msgid "%s Purchase Log updated."
2336
+ msgid_plural "%s Purchase Logs updated."
2337
+ msgstr[0] ""
2338
+ msgstr[1] ""
2339
+
2340
+ #: wpsc-admin/display-sales-logs.php:73
2341
+ #, php-format
2342
+ msgid "%s product not updated, somebody is editing it."
2343
+ msgid_plural "%s products not updated, somebody is editing them."
2344
+ msgstr[0] ""
2345
+ msgstr[1] ""
2346
+
2347
+ #: wpsc-admin/display-sales-logs.php:78
2348
+ #, php-format
2349
+ msgid "%s Purchase Log deleted."
2350
+ msgid_plural "%s Purchase Logs deleted."
2351
+ msgstr[0] ""
2352
+ msgstr[1] ""
2353
+
2354
+ #: wpsc-admin/display-sales-logs.php:88
2355
+ msgid ""
2356
+ "When upgrading the Wp-E-Commerce Plugin from 3.6.* to 3.7 it is required "
2357
+ "that you associate your checkout form fields with the new Purchase Logs "
2358
+ "system. To do so please "
2359
+ msgstr ""
2360
+
2361
+ #: wpsc-admin/display-sales-logs.php:114
2362
+ msgid "GetShopped News"
2363
  msgstr ""
2364
 
2365
+ #: wpsc-admin/display-sales-logs.php:151
2366
+ msgid "Downloads for this log have been released."
2367
+ msgid_plural "Downloads for this log have been released."
2368
+ msgstr[0] ""
2369
+ msgstr[1] ""
2370
+
2371
+ #: wpsc-admin/display-sales-logs.php:155
2372
+ msgid "Receipt has been resent "
2373
+ msgid_plural "Receipt has been resent "
2374
+ msgstr[0] ""
2375
+ msgstr[1] ""
2376
+
2377
+ #: wpsc-admin/display-sales-logs.php:196
2378
+ #: wpsc-admin/includes/settings-pages/shipping.php:46
2379
  msgid "Shipping Options"
2380
  msgstr ""
2381
 
2382
+ #: wpsc-admin/display-sales-logs.php:199
2383
  msgid "Shipping Method:"
2384
  msgstr ""
2385
 
2386
+ #: wpsc-admin/display-sales-logs.php:200
2387
  msgid "Shipping Option:"
2388
  msgstr ""
2389
 
2390
+ #: wpsc-admin/display-sales-logs.php:202
2391
  msgid "Tracking ID:"
2392
  msgstr ""
2393
 
2394
+ #: wpsc-admin/display-sales-logs.php:203
2395
  msgid "Shipping Status:"
2396
  msgstr ""
2397
 
2398
+ #: wpsc-admin/display-sales-logs.php:204
2399
  msgid "Track History:"
2400
  msgstr ""
2401
 
2402
+ #: wpsc-admin/display-sales-logs.php:210
2403
  msgid "Billing Details"
2404
  msgstr ""
2405
 
2406
+ #: wpsc-admin/display-sales-logs.php:211
2407
  msgid "Purchase Log Date:"
2408
  msgstr ""
2409
 
2410
+ #: wpsc-admin/display-sales-logs.php:212
2411
  msgid "Purchase Number:"
2412
  msgstr ""
2413
 
2414
+ #: wpsc-admin/display-sales-logs.php:213
2415
  msgid "Buyers Name:"
2416
  msgstr ""
2417
 
2418
+ #: wpsc-admin/display-sales-logs.php:214
2419
  msgid "Address:"
2420
  msgstr ""
2421
 
2422
+ #: wpsc-admin/display-sales-logs.php:216
2423
  msgid "Phone:"
2424
  msgstr ""
2425
 
2426
+ #: wpsc-admin/display-sales-logs.php:217
2427
  msgid "Email:"
2428
  msgstr ""
2429
 
2430
+ #: wpsc-admin/display-sales-logs.php:218
2431
  msgid "Payment Method:"
2432
  msgstr ""
2433
 
2434
+ #: wpsc-admin/display-sales-logs.php:220
2435
  msgid "How User Found Us:"
2436
  msgstr ""
2437
 
2438
+ #: wpsc-admin/display-sales-logs.php:226
2439
  msgid "Items Ordered"
2440
  msgstr ""
2441
 
2442
+ #: wpsc-admin/display-sales-logs.php:268
2443
  msgid "Order Status:"
2444
  msgstr ""
2445
 
2446
+ #: wpsc-admin/display-sales-logs.php:288
2447
  msgid "Actions"
2448
  msgstr ""
2449
 
2450
+ #: wpsc-admin/display-sales-logs.php:293
2451
  msgid "View Packing Slip"
2452
  msgstr ""
2453
 
2454
+ #: wpsc-admin/display-sales-logs.php:295
2455
  msgid "Resend Receipt to Buyer"
2456
  msgstr ""
2457
 
2458
+ #: wpsc-admin/display-sales-logs.php:297 wpsc-admin/display-sales-logs.php:550
 
2459
  msgid "Delete this log"
2460
  msgstr ""
2461
 
2462
+ #: wpsc-admin/display-sales-logs.php:297 wpsc-admin/display-sales-logs.php:550
 
2463
  #, php-format
2464
  msgid ""
2465
  "You are about to delete this log '%s'\n"
2466
  " 'Cancel' to stop, 'OK' to delete."
2467
  msgstr ""
2468
 
2469
+ #: wpsc-admin/display-sales-logs.php:297
2470
  msgid "Remove this record"
2471
  msgstr ""
2472
 
2473
+ #: wpsc-admin/display-sales-logs.php:299
2474
  msgid "Go Back"
2475
  msgstr ""
2476
 
2477
+ #: wpsc-admin/display-sales-logs.php:314
2478
  msgid "e-Commerce Admin Menu"
2479
  msgstr ""
2480
 
2481
+ #: wpsc-admin/display-sales-logs.php:333
 
 
 
 
 
2482
  msgid "WP e-Commerce News"
2483
  msgstr ""
2484
 
2485
+ #: wpsc-admin/display-sales-logs.php:355
2486
  msgid "Order Summary"
2487
  msgstr ""
2488
 
2489
+ #: wpsc-admin/display-sales-logs.php:367
2490
  msgid "(accepted payments)"
2491
  msgstr ""
2492
 
2493
+ #: wpsc-admin/display-sales-logs.php:382
2494
  msgid "Subscribe to your orders"
2495
  msgstr ""
2496
 
2497
+ #: wpsc-admin/display-sales-logs.php:384
2498
  msgid "Subscribe to an RSS feed"
2499
  msgstr ""
2500
 
2501
+ #: wpsc-admin/display-sales-logs.php:384
2502
  msgid "of your orders"
2503
  msgstr ""
2504
 
2505
+ #: wpsc-admin/display-sales-logs.php:387
2506
  msgid "Plugin News"
2507
  msgstr ""
2508
 
2509
+ #: wpsc-admin/display-sales-logs.php:389
2510
+ msgid ""
2511
+ "The <a href=\"http://instinct.co.nz/blogshop/products-page/\" target=\"_blank"
2512
+ "\">WP DropShop Module</a> is the latest and most cutting edge shopping cart "
2513
+ "available online. Coupled with Grid View then your site will be the talk of "
2514
+ "street! <br/><br/>The <a href=\"http://instinct.co.nz/blogshop/products-page/"
2515
+ "\" target=\"_blank\">GridView Module</a> is a visual module built to enhance "
2516
+ "the way your product page looks.<br/><br/><a href=\"http://www.instinct.co."
2517
+ "nz/wp-campaign-monitor/100\">WP Campaign Monitor</a> is an email newsletter "
2518
+ "tool built just for WP users who want to send campaigns, track the results "
2519
+ "and manage their subscribers. The latest version integrates with e-commerce "
2520
+ "lite meaning that you will be able to send buyers email newsletters and much "
2521
+ "more. "
2522
+ msgstr ""
2523
+
2524
+ #: wpsc-admin/display-sales-logs.php:390
2525
  msgid "This shop is powered by "
2526
  msgstr ""
2527
 
2528
+ #: wpsc-admin/display-sales-logs.php:399
2529
  msgid "Upgrade to Gold"
2530
  msgstr ""
2531
 
2532
+ #: wpsc-admin/display-sales-logs.php:399
2533
  msgid " and unleash more functionality into your shop."
2534
  msgstr ""
2535
 
2536
+ #: wpsc-admin/display-sales-logs.php:430
2537
  msgid "View:"
2538
  msgstr ""
2539
 
2540
+ #: wpsc-admin/display-sales-logs.php:468
2541
  msgid "Filter"
2542
  msgstr ""
2543
 
2544
+ #: wpsc-admin/display-sales-logs.php:471
2545
  msgid "Oops there are no purchase logs for your selection, please try again."
2546
  msgstr ""
2547
 
2548
+ #: wpsc-admin/display-sales-logs.php:491
2549
  msgid "Total:"
2550
  msgstr ""
2551
 
2552
+ #: wpsc-admin/display-sales-logs.php:503
2553
  msgid "Download CSV"
2554
  msgstr ""
2555
 
2556
+ #: wpsc-admin/display-sales-logs.php:512
2557
  msgid ""
2558
  "You are about to delete the selected purchase logs.\n"
2559
  " 'Cancel' to stop, 'OK' to delete."
2560
  msgstr ""
2561
 
2562
+ #: wpsc-admin/display-sales-logs.php:578
2563
  msgid "Search Logs"
2564
  msgstr ""
2565
 
2566
+ #: wpsc-admin/display-upgrades.page.php:12
2567
  msgid "WP e-Commerce Upgrades"
2568
  msgstr ""
2569
 
2570
+ #: wpsc-admin/display-upgrades.page.php:13
2571
+ msgid ""
2572
+ "Add more functionality to your e-Commerce site. Prices may be subject to "
2573
+ "change."
2574
  msgstr ""
2575
 
2576
+ #: wpsc-admin/display-upgrades.page.php:19
2577
  msgid "Pure Gold"
2578
  msgstr ""
2579
 
2580
+ #: wpsc-admin/display-upgrades.page.php:26
2581
+ #: wpsc-admin/includes/settings-pages/presentation.php:671
2582
+ #: wpsc-admin/includes/settings-pages/presentation.php:675
2583
  msgid "DropShop"
2584
  msgstr ""
2585
 
2586
+ #: wpsc-admin/display-upgrades.page.php:33
2587
  msgid "MP3 Player"
2588
  msgstr ""
2589
 
2590
+ #: wpsc-admin/display-upgrades.page.php:40
2591
  msgid "Members Only Module"
2592
  msgstr ""
2593
 
2594
+ #: wpsc-admin/display-upgrades.page.php:54
2595
  msgid "NextGen Gallery Buy Now Buttons"
2596
  msgstr ""
2597
 
2598
+ #: wpsc-admin/display-upgrades.page.php:78
2599
+ #: wpsc-admin/display-upgrades.page.php:86
2600
  msgid "API Key Reset"
2601
  msgstr ""
2602
 
2603
+ #: wpsc-admin/display-upgrades.page.php:81
2604
+ msgid ""
2605
+ "Enter your API name and key to release it from an old site that you no "
2606
+ "longer use."
2607
  msgstr ""
2608
 
2609
+ #: wpsc-admin/display-upgrades.page.php:92
2610
  msgid "API Key"
2611
  msgstr ""
2612
 
2613
+ #: wpsc-admin/display-upgrades.page.php:97
2614
  msgid "Reset API Key"
2615
  msgstr ""
2616
 
2617
+ #: wpsc-admin/display-upgrades.page.php:106
2618
  msgid "Upgrade Instructions"
2619
  msgstr ""
2620
 
2621
+ #: wpsc-admin/display-upgrades.page.php:108
2622
  #, php-format
2623
  msgid "Copy the gold_cart_files directory into the %s folder."
2624
  msgstr ""
2625
 
2626
+ #: wpsc-admin/display-upgrades.page.php:111
2627
+ msgid ""
2628
+ "This folder should be automatically created when the e-commerce plugin is "
2629
+ "activated, but if it is not, you will have to create it yourself."
2630
  msgstr ""
2631
 
2632
+ #: wpsc-admin/display-upgrades.page.php:114
2633
+ msgid ""
2634
+ "Now a new panel should appear in the Upgrades page where you must enter your "
2635
+ "API Username and API Key. "
2636
  msgstr ""
2637
 
2638
+ #: wpsc-admin/display-upgrades.page.php:118
 
2639
  msgid "For more information visit our documentation page."
2640
  msgstr ""
2641
 
2642
+ #: wpsc-admin/display-upgrades.page.php:162
2643
  msgid "Your API key has been Reset"
2644
  msgstr ""
2645
 
2646
+ #: wpsc-admin/display-variations.page.php:21
2647
  msgid "Are you sure you want to delete this product?"
2648
  msgstr ""
2649
 
2650
+ #: wpsc-admin/display-variations.page.php:37
2651
+ #: wpsc-admin/includes/settings-pages/presentation.php:392
2652
  msgid "Display Variations"
2653
  msgstr ""
2654
 
2655
+ #: wpsc-admin/display-variations.page.php:39
2656
+ msgid ""
2657
+ "A variation can be anything \"optional\" about a product. ie: Size, Color, "
2658
+ "etc <br />For example: if you are selling t-shirts you might setup a "
2659
+ "variation set called size with the values small, medium, large..."
2660
+ msgstr ""
2661
+
2662
+ #: wpsc-admin/display-variations.page.php:149
2663
+ #: wpsc-admin/includes/display-items-functions.php:613
2664
+ msgid "Add Variation Set"
2665
+ msgstr ""
2666
+
2667
+ #: wpsc-admin/display-variations.page.php:199
2668
+ msgid "Add Value"
2669
+ msgstr ""
2670
+
2671
+ #: wpsc-admin/display-variations.page.php:212
2672
+ msgid "Update Variations"
2673
  msgstr ""
2674
 
2675
+ #: wpsc-admin/includes/display-items-functions.php:137
2676
  msgid "Edit Product"
2677
  msgstr ""
2678
 
2679
+ #: wpsc-admin/includes/display-items-functions.php:148
2680
  msgid "Product Name"
2681
  msgstr ""
2682
 
2683
+ #: wpsc-admin/includes/display-items-functions.php:157
2684
  msgid "Display Product Shortcode"
2685
  msgstr ""
2686
 
2687
+ #: wpsc-admin/includes/display-items-functions.php:158
2688
  msgid "Buy Now Shortcode"
2689
  msgstr ""
2690
 
2691
+ #: wpsc-admin/includes/display-items-functions.php:159
2692
  msgid "Add to Cart Shortcode"
2693
  msgstr ""
2694
 
2695
+ #: wpsc-admin/includes/display-items-functions.php:165
2696
  msgid "Display Product Template Tag"
2697
  msgstr ""
2698
 
2699
+ #: wpsc-admin/includes/display-items-functions.php:166
2700
  msgid "Buy Now PHP"
2701
  msgstr ""
2702
 
2703
+ #: wpsc-admin/includes/display-items-functions.php:167
2704
  msgid "Add to Cart PHP"
2705
  msgstr ""
2706
 
2707
+ #: wpsc-admin/includes/display-items-functions.php:168
2708
  msgid "Display Product SKU"
2709
  msgstr ""
2710
 
2711
+ #: wpsc-admin/includes/display-items-functions.php:185
2712
  msgid "Stock Keeping Unit"
2713
  msgstr ""
2714
 
2715
+ #: wpsc-admin/includes/display-items-functions.php:193
2716
  msgid "Sale Price :"
2717
  msgstr ""
2718
 
2719
+ #: wpsc-admin/includes/display-items-functions.php:216
2720
  msgid "New Currency"
2721
  msgstr ""
2722
 
2723
+ #: wpsc-admin/includes/display-items-functions.php:244
2724
+ #: wpsc-admin/includes/display-items-functions.php:283
2725
  msgid "Delete Currency"
2726
  msgstr ""
2727
 
2728
+ #: wpsc-admin/includes/display-items-functions.php:301
2729
  msgid "Additional Description"
2730
  msgstr ""
2731
 
2732
+ #: wpsc-admin/includes/display-items-functions.php:350
2733
  msgid "Update Product"
2734
  msgstr ""
2735
 
2736
+ #: wpsc-admin/includes/display-items-functions.php:374
2737
  msgid "Categories and Tags"
2738
  msgstr ""
2739
 
2740
+ #: wpsc-admin/includes/display-items-functions.php:413
2741
  msgid "Select &quot;[categorisation]&quot;"
2742
  msgstr ""
2743
 
2744
+ #: wpsc-admin/includes/display-items-functions.php:469
2745
  msgid "Price and Stock Control"
2746
  msgstr ""
2747
 
2748
+ #: wpsc-admin/includes/display-items-functions.php:479
2749
  #, php-format
2750
+ msgid ""
2751
+ "Do not include tax (tax is set in <a href=\"%s\"/wp-admin/admin.php?"
2752
+ "page=wpsc-settings\">shop config</a>)"
2753
  msgstr ""
2754
 
2755
+ #: wpsc-admin/includes/display-items-functions.php:486
2756
  msgid "This is a donation, checking this box populates the donations widget."
2757
  msgstr ""
2758
 
2759
+ #: wpsc-admin/includes/display-items-functions.php:493
2760
  msgid "Table Rate Price"
2761
  msgstr ""
2762
 
2763
+ #: wpsc-admin/includes/display-items-functions.php:498
2764
+ msgid "Quantity In Cart"
2765
+ msgstr ""
2766
+
2767
+ #: wpsc-admin/includes/display-items-functions.php:499
2768
+ msgid "Discounted Price"
2769
+ msgstr ""
2770
+
2771
+ #: wpsc-admin/includes/display-items-functions.php:534
2772
  msgid "Custom Tax Rate"
2773
  msgstr ""
2774
 
2775
+ #: wpsc-admin/includes/display-items-functions.php:548
2776
+ msgid ""
2777
+ "I have a limited number of this item in stock. If the stock runs out, this "
2778
+ "product will not be available on the shop unless you untick this box or add "
2779
+ "more stock."
2780
  msgstr ""
2781
 
2782
+ #: wpsc-admin/includes/display-items-functions.php:563
2783
+ #: wpsc-admin/includes/display-items-functions.php:577
2784
+ #: wpsc-admin/includes/display-items-functions.php:584
2785
+ msgid ""
2786
+ "If this product runs out of stock set status to Unpublished & email site "
2787
+ "owner"
2788
  msgstr ""
2789
 
2790
+ #: wpsc-admin/includes/display-items-functions.php:576
2791
+ #: wpsc-admin/includes/display-items-functions.php:583
2792
  msgid "Stock Qty"
2793
  msgstr ""
2794
 
2795
+ #: wpsc-admin/includes/display-items-functions.php:610
2796
  msgid "Variation Control"
2797
  msgstr ""
2798
 
2799
+ #: wpsc-admin/includes/display-items-functions.php:614
2800
  msgid "+ Add New Variations"
2801
  msgstr ""
2802
 
2803
+ #: wpsc-admin/includes/display-items-functions.php:660
2804
  msgid "Weight"
2805
  msgstr ""
2806
 
2807
+ #: wpsc-admin/includes/display-items-functions.php:700
2808
+ msgid "Length"
2809
+ msgstr ""
2810
+
2811
+ #: wpsc-admin/includes/display-items-functions.php:724
2812
  msgid "Flat Rate Settings"
2813
  msgstr ""
2814
 
2815
+ #: wpsc-admin/includes/display-items-functions.php:729
2816
  msgid "Local Shipping Fee"
2817
  msgstr ""
2818
 
2819
+ #: wpsc-admin/includes/display-items-functions.php:738
2820
  msgid "International Shipping Fee"
2821
  msgstr ""
2822
 
2823
+ #: wpsc-admin/includes/display-items-functions.php:747
2824
  msgid "Disregard Shipping for this product"
2825
  msgstr ""
2826
 
2827
+ #: wpsc-admin/includes/display-items-functions.php:776
2828
  msgid "Advanced Options"
2829
  msgstr ""
2830
 
2831
+ #: wpsc-admin/includes/display-items-functions.php:784
2832
  msgid "Custom Meta"
2833
  msgstr ""
2834
 
2835
+ #: wpsc-admin/includes/display-items-functions.php:785
2836
  msgid "Add Custom Meta"
2837
  msgstr ""
2838
 
2839
+ #: wpsc-admin/includes/display-items-functions.php:795
2840
  msgid "Value"
2841
  msgstr ""
2842
 
2843
+ #: wpsc-admin/includes/display-items-functions.php:812
2844
  msgid "Merchant Notes"
2845
  msgstr ""
2846
 
2847
+ #: wpsc-admin/includes/display-items-functions.php:815
2848
  msgid "These notes are only available here."
2849
  msgstr ""
2850
 
2851
+ #: wpsc-admin/includes/display-items-functions.php:834
2852
  msgid "Personalisation Options"
2853
  msgstr ""
2854
 
2855
+ #: wpsc-admin/includes/display-items-functions.php:837
2856
+ msgid ""
2857
+ "Users can personalize this product by leaving a message on single product "
2858
+ "page"
2859
  msgstr ""
2860
 
2861
+ #: wpsc-admin/includes/display-items-functions.php:846
2862
  msgid "Users can upload images on single product page to purchase logs."
2863
  msgstr ""
2864
 
2865
+ #: wpsc-admin/includes/display-items-functions.php:857
2866
  msgid "Prohibited"
2867
  msgstr ""
2868
 
2869
+ #: wpsc-admin/includes/display-items-functions.php:871
2870
  msgid "Off Site Product Link"
2871
  msgstr ""
2872
 
2873
+ #: wpsc-admin/includes/display-items-functions.php:872
2874
+ msgid ""
2875
+ "If this product is for sale on another website enter the link here. For "
2876
+ "instance if your product is an MP3 file for sale on itunes you could put the "
2877
+ "link here. This option over rides the buy now and add to cart links and "
2878
+ "takes you to the site linked here."
2879
  msgstr ""
2880
 
2881
+ #: wpsc-admin/includes/display-items-functions.php:873
2882
  msgid "External Link"
2883
  msgstr ""
2884
 
2885
+ #: wpsc-admin/includes/display-items-functions.php:881
2886
  msgid "Enable IntenseDebate Comments"
2887
  msgstr ""
2888
 
2889
+ #: wpsc-admin/includes/display-items-functions.php:887
2890
  msgid "Allow users to comment on this product."
2891
  msgstr ""
2892
 
2893
+ #: wpsc-admin/includes/display-items-functions.php:914
2894
  msgid "Product Images"
2895
  msgstr ""
2896
 
2897
+ #: wpsc-admin/includes/display-items-functions.php:922
2898
  msgid "Select Files"
2899
  msgstr ""
2900
 
2901
+ #: wpsc-admin/includes/display-items-functions.php:976
2902
+ msgid ""
2903
+ "You are using the Flash uploader. Problems? Try the <a class="
2904
+ "\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"browser\")'>Browser "
2905
+ "uploader</a> instead."
2906
  msgstr ""
2907
 
2908
+ #: wpsc-admin/includes/display-items-functions.php:980
2909
+ msgid ""
2910
+ "To upload multiple product thumbnails you must <a href=\"http://www.instinct."
2911
+ "co.nz/shop/\">install the premium upgrade</a>"
2912
  msgstr ""
2913
 
2914
+ #: wpsc-admin/includes/display-items-functions.php:989
2915
  msgid "Select an image to upload:"
2916
  msgstr ""
2917
 
2918
+ #: wpsc-admin/includes/display-items-functions.php:999
2919
+ msgid ""
2920
+ "You are using the Browser uploader. Problems? Try the <a class="
2921
+ "\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"flash\")'>Flash "
2922
+ "uploader</a> instead."
2923
  msgstr ""
2924
 
2925
+ #: wpsc-admin/includes/display-items-functions.php:1003
2926
  msgid "Manage your thumbnails"
2927
  msgstr ""
2928
 
2929
+ #: wpsc-admin/includes/display-items-functions.php:1025
2930
  msgid "Product Download"
2931
  msgstr ""
2932
 
2933
+ #: wpsc-admin/includes/display-items-functions.php:1028
2934
  msgid "Upload File"
2935
  msgstr ""
2936
 
2937
+ #: wpsc-admin/includes/display-items-functions.php:1029
2938
  msgid "Max Upload Size"
2939
  msgstr ""
2940
 
2941
+ #: wpsc-admin/includes/display-items-functions.php:1033
2942
  msgid "Preview File"
2943
  msgstr ""
2944
 
2945
+ #: wpsc-admin/includes/display-items-functions.php:1043
2946
  msgid "Select an MP3 file to upload as a preview"
2947
  msgstr ""
2948
 
2949
+ #: wpsc-admin/includes/display-items-functions.php:1064
2950
  msgid "Label Control"
2951
  msgstr ""
2952
 
2953
+ #: wpsc-admin/includes/display-items-functions.php:1070
2954
+ #: wpsc-admin/includes/display-items-functions.php:1071
2955
  msgid "Add Label"
2956
  msgstr ""
2957
 
2958
+ #: wpsc-admin/includes/display-items-functions.php:1128
2959
+ #: wpsc-admin/includes/display-items-functions.php:1155
2960
  msgid "Preview"
2961
  msgstr ""
2962
 
2963
+ #: wpsc-admin/includes/display-items-functions.php:1199
2964
+ #: wpsc-admin/includes/settings-pages/presentation.php:856
2965
  msgid "Thumbnail Settings"
2966
  msgstr ""
2967
 
2968
+ #: wpsc-admin/includes/display-items-functions.php:1207
2969
  msgid "use default size"
2970
  msgstr ""
2971
 
2972
+ #: wpsc-admin/includes/display-items-functions.php:1207
2973
  msgid "This is set on the Settings Page"
2974
  msgstr ""
2975
 
2976
+ #: wpsc-admin/includes/display-items-functions.php:1213
2977
  msgid "do not resize thumbnail image"
2978
  msgstr ""
2979
 
2980
+ #: wpsc-admin/includes/display-items-functions.php:1217
2981
  msgid "use specific size"
2982
  msgstr ""
2983
 
2984
+ #: wpsc-admin/includes/display-items-functions.php:1219
2985
  msgid "px width"
2986
  msgstr ""
2987
 
2988
+ #: wpsc-admin/includes/display-items-functions.php:1220
2989
  msgid "px height"
2990
  msgstr ""
2991
 
2992
+ #: wpsc-admin/includes/display-items-functions.php:1225
2993
  msgid "use separate thumbnail"
2994
  msgstr ""
2995
 
2996
+ #: wpsc-admin/includes/display-items-functions.php:1333
2997
+ #: wpsc-admin/includes/display-items-functions.php:1338
2998
  msgid "HTML"
2999
  msgstr ""
3000
 
3001
+ #: wpsc-admin/includes/display-items-functions.php:1334
3002
+ #: wpsc-admin/includes/display-items-functions.php:1339
3003
  msgid "Visual"
3004
  msgstr ""
3005
 
3006
+ #: wpsc-admin/includes/product-functions.php:41
3007
  #, php-format
3008
+ msgid ""
3009
+ "Please refrain from uploading images larger than <strong>%d x %d</strong> "
3010
+ "pixels"
3011
  msgstr ""
3012
 
3013
+ #: wpsc-admin/includes/product-functions.php:52
3014
+ #: wpsc-includes/category.functions.php:220
3015
  msgid "N/A"
3016
  msgstr ""
3017
 
3018
+ #: wpsc-admin/includes/product-functions.php:77
3019
  msgid "<strong>ERROR</strong>: Please enter a Product name.<br />"
3020
  msgstr ""
3021
 
3022
+ #: wpsc-admin/includes/product-functions.php:80
3023
  msgid "<strong>ERROR</strong>: Please enter a Product Category.<br />"
3024
  msgstr ""
3025
 
3026
+ #: wpsc-admin/includes/product-functions.php:192
3027
  msgid "Could not update product in the database"
3028
  msgstr ""
3029
 
3030
+ #: wpsc-admin/includes/product-functions.php:200
3031
  msgid "Could not insert product into the database"
3032
  msgstr ""
3033
 
3034
+ #: wpsc-admin/includes/purchlogs_upgrade.php:67
3035
+ msgid "Check Out Form Fields updated."
3036
+ msgid_plural "Check Out Form Fields updated."
3037
+ msgstr[0] ""
3038
+ msgstr[1] ""
3039
+
3040
+ #: wpsc-admin/includes/purchlogs_upgrade.php:74
3041
+ msgid ""
3042
+ "Upgrading to WP e-Commerce 3.7 and later requires you to run this fix once."
3043
+ "The following Boxes corresponds to the form fields in your current checkout "
3044
+ "page. All you have to do is select from the drop-down menu box what each of "
3045
+ "the following fields represent. Sorry for any inconvenience caused, but "
3046
+ "we're sure you'll agree that the new purchase logs are worth this minor "
3047
+ "hassle. "
3048
  msgstr ""
3049
 
3050
+ #: wpsc-admin/includes/settings-pages/admin.php:7
3051
  msgid "Admin Settings"
3052
  msgstr ""
3053
 
3054
+ #: wpsc-admin/includes/settings-pages/admin.php:13
3055
  msgid "Max downloads per file"
3056
  msgstr ""
3057
 
3058
+ #: wpsc-admin/includes/settings-pages/admin.php:35
3059
  msgid "Lock downloads to IP address"
3060
  msgstr ""
3061
 
3062
+ #: wpsc-admin/includes/settings-pages/admin.php:61
3063
  msgid "Check MIME types on file uploads"
3064
  msgstr ""
3065
 
3066
+ #: wpsc-admin/includes/settings-pages/admin.php:68
3067
+ msgid ""
3068
+ "Warning: Disabling this exposes your site to greater possibility of "
3069
+ "malicious files being uploaded, we reccomend installing the Fileinfo "
3070
+ "extention for PHP rather than disabling this."
3071
  msgstr ""
3072
 
3073
+ #: wpsc-admin/includes/settings-pages/admin.php:76
3074
  msgid "Purchase Log Email"
3075
  msgstr ""
3076
 
3077
+ #: wpsc-admin/includes/settings-pages/admin.php:80
3078
+ msgid "i.e. this is the address where your purchase reports are sent."
3079
+ msgstr ""
3080
+
3081
+ #: wpsc-admin/includes/settings-pages/admin.php:86
3082
  msgid "Purchase Receipt - Reply Address"
3083
  msgstr ""
3084
 
3085
+ #: wpsc-admin/includes/settings-pages/admin.php:90
3086
+ msgid ""
3087
+ "i.e. this is the reply address contained in the purchase receipt sent to the "
3088
+ "buyer."
3089
+ msgstr ""
3090
+
3091
+ #: wpsc-admin/includes/settings-pages/admin.php:96
3092
  msgid "Purchase Receipt - Reply Name"
3093
  msgstr ""
3094
 
3095
+ #: wpsc-admin/includes/settings-pages/admin.php:100
3096
+ msgid ""
3097
+ "i.e. this is the \"from name\" buyers will see in their purchase receipt. "
3098
+ msgstr ""
3099
+
3100
+ #: wpsc-admin/includes/settings-pages/admin.php:115
3101
  msgid "Custom Messages"
3102
  msgstr ""
3103
 
3104
+ #: wpsc-admin/includes/settings-pages/admin.php:118
3105
  msgid "Tags can be used"
3106
  msgstr ""
3107
 
3108
+ #: wpsc-admin/includes/settings-pages/admin.php:139
3109
  msgid "Admin Report"
3110
  msgstr ""
3111
 
3112
+ #: wpsc-admin/includes/settings-pages/admin.php:144
3113
+ msgid "Track and Trace settings"
3114
+ msgstr ""
3115
+
3116
+ #: wpsc-admin/includes/settings-pages/admin.php:154
3117
  msgid "Tracking Email Subject"
3118
  msgstr ""
3119
 
3120
+ #: wpsc-admin/includes/settings-pages/admin.php:158
3121
  msgid "Tracking Email Message"
3122
  msgstr ""
3123
 
3124
+ #: wpsc-admin/includes/settings-pages/admin.php:162
3125
  msgid "URL Settings"
3126
  msgstr ""
3127
 
3128
+ #: wpsc-admin/includes/settings-pages/admin.php:193
3129
  msgid "Transaction Details URL"
3130
  msgstr ""
3131
 
3132
+ #: wpsc-admin/includes/settings-pages/admin.php:204
3133
  msgid "User Account URL"
3134
  msgstr ""
3135
 
3136
+ #: wpsc-admin/includes/settings-pages/admin.php:215
3137
  msgid "Update Page URLs"
3138
  msgstr ""
3139
 
3140
+ #: wpsc-admin/includes/settings-pages/admin.php:216
3141
  msgid "Fix Product Group Permalinks"
3142
  msgstr ""
3143
 
3144
+ #: wpsc-admin/includes/settings-pages/checkout.php:42
3145
  msgid "Checkout Options"
3146
  msgstr ""
3147
 
3148
+ #: wpsc-admin/includes/settings-pages/checkout.php:55
3149
  msgid "Users must register before checking out"
3150
  msgstr ""
3151
 
3152
+ #: wpsc-admin/includes/settings-pages/checkout.php:75
3153
+ msgid ""
3154
+ "If yes then you must also turn on the wordpress option \"Any one can register"
3155
+ "\""
3156
  msgstr ""
3157
 
3158
+ #: wpsc-admin/includes/settings-pages/checkout.php:92
3159
  msgid "Lock Tax to Billing Country"
3160
  msgstr ""
3161
 
3162
+ #: wpsc-admin/includes/settings-pages/checkout.php:115
3163
+ msgid " Disregard Billing State for Tax Calculations"
3164
+ msgstr ""
3165
+
3166
+ #: wpsc-admin/includes/settings-pages/checkout.php:140
3167
  msgid "Enable Shipping Same as Billing Option: "
3168
  msgstr ""
3169
 
3170
+ #: wpsc-admin/includes/settings-pages/checkout.php:153
3171
+ msgid ""
3172
+ "Here you can customise the forms to be displayed in your checkout page. The "
3173
+ "checkout page is where you collect important user information that will show "
3174
+ "up in your purchase logs i.e. the buyers address, and name..."
3175
+ msgstr ""
3176
+
3177
+ #: wpsc-admin/includes/settings-pages/checkout.php:170
3178
+ msgid "+ Add New Form Set"
3179
+ msgstr ""
3180
+
3181
+ #: wpsc-admin/includes/settings-pages/checkout.php:174
3182
+ msgid "Add new Form Set"
3183
  msgstr ""
3184
 
3185
+ #: wpsc-admin/includes/settings-pages/checkout.php:251
3186
  msgid "This will be the Email address that the Purchase Reciept is sent to."
3187
  msgstr ""
3188
 
3189
+ #: wpsc-admin/includes/settings-pages/checkout.php:269
3190
  msgid "Add New Form Field"
3191
  msgstr ""
3192
 
3193
+ #: wpsc-admin/includes/settings-pages/gateway.php:31
3194
  msgid "Please Select A Payment Gateway"
3195
  msgstr ""
3196
 
3197
+ #: wpsc-admin/includes/settings-pages/gateway.php:55
3198
  msgid "Gateway Options"
3199
  msgstr ""
3200
 
3201
+ #: wpsc-admin/includes/settings-pages/gateway.php:64
3202
+ #: wpsc-admin/includes/settings-pages/general.php:7
3203
+ #: wpsc-admin/includes/settings-pages/shipping.php:52
3204
+ #: wpsc-admin/includes/settings-pages/shipping.php:58
3205
  msgid "General Settings"
3206
  msgstr ""
3207
 
3208
+ #: wpsc-admin/includes/settings-pages/gateway.php:68
3209
  msgid "Payment Gateways"
3210
  msgstr ""
3211
 
3212
+ #: wpsc-admin/includes/settings-pages/gateway.php:72
3213
+ msgid ""
3214
+ "Activate the payment gateways that you want to make available to your "
3215
+ "customers by selecting them below."
3216
  msgstr ""
3217
 
3218
+ #: wpsc-admin/includes/settings-pages/gateway.php:98
3219
  msgid "We Recommend"
3220
  msgstr ""
3221
 
3222
+ #: wpsc-admin/includes/settings-pages/gateway.php:107
3223
+ #: wpsc-admin/includes/settings-pages/gateway.php:114
3224
  msgid " Select a Payment Gateway below to configure it."
3225
  msgstr ""
3226
 
3227
+ #: wpsc-admin/includes/settings-pages/gateway.php:122
3228
  msgid "Payment Gateway"
3229
  msgstr ""
3230
 
3231
+ #: wpsc-admin/includes/settings-pages/gateway.php:134
3232
  msgid "Display Name"
3233
  msgstr ""
3234
 
3235
+ #: wpsc-admin/includes/settings-pages/gateway.php:162
3236
  msgid "The text that people see when making a purchase"
3237
  msgstr ""
3238
 
3239
+ #: wpsc-admin/includes/settings-pages/general.php:13
3240
  msgid "Base Country/Region"
3241
  msgstr ""
3242
 
3243
+ #: wpsc-admin/includes/settings-pages/general.php:39
3244
  msgid "Select your primary business location."
3245
  msgstr ""
3246
 
3247
+ #: wpsc-admin/includes/settings-pages/general.php:43
3248
  msgid "Tax Settings"
3249
  msgstr ""
3250
 
3251
+ #: wpsc-admin/includes/settings-pages/general.php:60
3252
  msgid "Tax Included in prices"
3253
  msgstr ""
3254
 
3255
+ #: wpsc-admin/includes/settings-pages/general.php:116
3256
+ msgid "Currency Settings"
3257
  msgstr ""
3258
 
3259
+ #: wpsc-admin/includes/settings-pages/general.php:194
3260
+ msgid "Hide Decimals on Products Pages"
3261
  msgstr ""
3262
 
3263
+ #: wpsc-admin/includes/settings-pages/import.php:7
3264
  msgid "Import Products CSV"
3265
  msgstr ""
3266
 
3267
+ #: wpsc-admin/includes/settings-pages/import.php:8
3268
+ msgid ""
3269
+ "<p>You can import your products from a comma delimited text file.</p><p>An "
3270
+ "example of a cvs import file would look like this: </p><p>Description, "
3271
+ "Additional Description, Product Name, Price, SKU, weight, weight unit, stock "
3272
+ "quantity, is limited quantity</p>"
3273
  msgstr ""
3274
 
3275
+ #: wpsc-admin/includes/settings-pages/presentation.php:14
3276
  msgid "Show All Products"
3277
  msgstr ""
3278
 
3279
+ #: wpsc-admin/includes/settings-pages/presentation.php:21
3280
+ msgid "Show Category List"
3281
  msgstr ""
3282
 
3283
+ #: wpsc-admin/includes/settings-pages/presentation.php:28
3284
+ msgid "Show All Products + Category List"
3285
  msgstr ""
3286
 
3287
+ #: wpsc-admin/includes/settings-pages/presentation.php:63
3288
  msgid "Button Settings"
3289
  msgstr ""
3290
 
3291
+ #: wpsc-admin/includes/settings-pages/presentation.php:67
3292
  msgid "Button Type"
3293
  msgstr ""
3294
 
3295
+ #: wpsc-admin/includes/settings-pages/presentation.php:92
3296
  msgid "Hide \"Add to cart\" button"
3297
  msgstr ""
3298
 
3299
+ #: wpsc-admin/includes/settings-pages/presentation.php:117
3300
  msgid "Product Settings"
3301
  msgstr ""
3302
 
3303
+ #: wpsc-admin/includes/settings-pages/presentation.php:146
3304
  msgid "Display Fancy Purchase Notifications"
3305
  msgstr ""
3306
 
3307
+ #: wpsc-admin/includes/settings-pages/presentation.php:170
3308
  msgid "Show Postage and Packaging"
3309
  msgstr ""
3310
 
3311
+ #: wpsc-admin/includes/settings-pages/presentation.php:193
3312
  msgid "Disable link in Title"
3313
  msgstr ""
3314
 
3315
+ #: wpsc-admin/includes/settings-pages/presentation.php:217
3316
  msgid "Add quantity field to each product description"
3317
  msgstr ""
3318
 
3319
+ #: wpsc-admin/includes/settings-pages/presentation.php:242
3320
  msgid "Theme Customisation"
3321
  msgstr ""
3322
 
3323
+ #: wpsc-admin/includes/settings-pages/presentation.php:247
3324
  msgid "Thanks, the themes have been copied."
3325
  msgstr ""
3326
 
3327
+ #: wpsc-admin/includes/settings-pages/presentation.php:256
3328
  msgid "Theming your stores appearance is easy."
3329
  msgstr ""
3330
 
3331
+ #: wpsc-admin/includes/settings-pages/presentation.php:258
3332
  msgid "You just need to edit the appropriate files in the following location."
3333
  msgstr ""
3334
 
3335
+ #: wpsc-admin/includes/settings-pages/presentation.php:259
3336
+ #: wpsc-admin/includes/settings-pages/presentation.php:271
3337
  msgid "Path:"
3338
  msgstr ""
3339
 
3340
+ #: wpsc-admin/includes/settings-pages/presentation.php:261
3341
  msgid "To create a new theme:"
3342
  msgstr ""
3343
 
3344
+ #: wpsc-admin/includes/settings-pages/presentation.php:263
3345
  msgid "Copy the default directory and rename it 'newTheme'"
3346
  msgstr ""
3347
 
3348
+ #: wpsc-admin/includes/settings-pages/presentation.php:264
3349
+ msgid ""
3350
+ "Rename the default.css file inside the 'newTheme' directory to 'newTheme.css'"
3351
  msgstr ""
3352
 
3353
+ #: wpsc-admin/includes/settings-pages/presentation.php:269
3354
  msgid "The permissions on your themes directory are incorrect."
3355
  msgstr ""
3356
 
3357
+ #: wpsc-admin/includes/settings-pages/presentation.php:270
3358
  msgid "Please set the permissions to 775 on the following directory."
3359
  msgstr ""
3360
 
3361
+ #: wpsc-admin/includes/settings-pages/presentation.php:275
3362
+ msgid ""
3363
+ "Your theme files have not been moved. Until your theme files have been "
3364
+ "moved, we have disabled automatic upgrades."
3365
  msgstr ""
3366
 
3367
+ #: wpsc-admin/includes/settings-pages/presentation.php:276
3368
  #, php-format
3369
  msgid "Click here to <a href='%s'>Move your files</a> to a safe place"
3370
  msgstr ""
3371
 
3372
+ #: wpsc-admin/includes/settings-pages/presentation.php:280
3373
  msgid "Read Tutorials"
3374
  msgstr ""
3375
 
3376
+ #: wpsc-admin/includes/settings-pages/presentation.php:285
3377
  msgid "Product Page Settings"
3378
  msgstr ""
3379
 
3380
+ #: wpsc-admin/includes/settings-pages/presentation.php:372
 
 
 
 
3381
  msgid "Purchase unavailable options"
3382
  msgstr ""
3383
 
3384
+ #: wpsc-admin/includes/settings-pages/presentation.php:377
3385
  msgid "Show quantity form in list view"
3386
  msgstr ""
3387
 
3388
+ #: wpsc-admin/includes/settings-pages/presentation.php:382
3389
  msgid "Products Per Row"
3390
  msgstr ""
3391
 
3392
+ #: wpsc-admin/includes/settings-pages/presentation.php:387
3393
  msgid "Show images only"
3394
  msgstr ""
3395
 
3396
+ #: wpsc-admin/includes/settings-pages/presentation.php:397
3397
  msgid "Display Description"
3398
  msgstr ""
3399
 
3400
+ #: wpsc-admin/includes/settings-pages/presentation.php:402
3401
  msgid "Display \"Add To Cart\" Button"
3402
  msgstr ""
3403
 
3404
+ #: wpsc-admin/includes/settings-pages/presentation.php:406
3405
  msgid "Display \"More Details\" Button"
3406
  msgstr ""
3407
 
3408
+ #: wpsc-admin/includes/settings-pages/presentation.php:416
3409
+ msgid "Theme"
3410
+ msgstr ""
3411
+
3412
+ #: wpsc-admin/includes/settings-pages/presentation.php:425
3413
+ msgid "Product page displays"
3414
+ msgstr ""
3415
+
3416
+ #: wpsc-admin/includes/settings-pages/presentation.php:453
3417
+ msgid "Sort Products By"
3418
  msgstr ""
3419
 
3420
+ #: wpsc-admin/includes/settings-pages/presentation.php:459
3421
+ msgid "Drag &amp; Drop"
3422
  msgstr ""
3423
 
3424
+ #: wpsc-admin/includes/settings-pages/presentation.php:460
3425
  msgid "Time Uploaded"
3426
  msgstr ""
3427
 
3428
+ #: wpsc-admin/includes/settings-pages/presentation.php:462
3429
+ msgid ""
3430
+ "If you have used the drag-drop interface on the edit-products page to order "
3431
+ "your products then you must use the Drag &amp; Drop option."
3432
+ msgstr ""
3433
+
3434
+ #: wpsc-admin/includes/settings-pages/presentation.php:466
3435
  msgid "Show Breadcrumbs"
3436
  msgstr ""
3437
 
3438
+ #: wpsc-admin/includes/settings-pages/presentation.php:492
3439
  msgid "Product Groups/Products Display"
3440
  msgstr ""
3441
 
3442
+ #: wpsc-admin/includes/settings-pages/presentation.php:510
3443
  msgid "Product Groups Only (All products displayed)"
3444
  msgstr ""
3445
 
3446
+ #: wpsc-admin/includes/settings-pages/presentation.php:511
3447
  msgid "Sliding Product Groups (1 product per page)"
3448
  msgstr ""
3449
 
3450
+ #: wpsc-admin/includes/settings-pages/presentation.php:518
3451
+ msgid "Show Subcategory Products in Parent Category"
3452
+ msgstr ""
3453
+
3454
+ #: wpsc-admin/includes/settings-pages/presentation.php:544
3455
  msgid "Show Search"
3456
  msgstr ""
3457
 
3458
+ #: wpsc-admin/includes/settings-pages/presentation.php:581
3459
  msgid "Show Advanced Search"
3460
  msgstr ""
3461
 
3462
+ #: wpsc-admin/includes/settings-pages/presentation.php:584
3463
  msgid "Use Live Search"
3464
  msgstr ""
3465
 
3466
+ #: wpsc-admin/includes/settings-pages/presentation.php:595
3467
  msgid "Replace Page Title With Product/Category Name"
3468
  msgstr ""
3469
 
3470
+ #: wpsc-admin/includes/settings-pages/presentation.php:617
3471
  msgid "Shopping Cart Settings"
3472
  msgstr ""
3473
 
3474
+ #: wpsc-admin/includes/settings-pages/presentation.php:649
3475
+ #: wpsc-admin/includes/settings-pages/presentation.php:653
3476
  msgid "Sidebar"
3477
  msgstr ""
3478
 
3479
+ #: wpsc-admin/includes/settings-pages/presentation.php:657
3480
  msgid "Page"
3481
  msgstr ""
3482
 
3483
+ #: wpsc-admin/includes/settings-pages/presentation.php:661
3484
+ #: wpsc-admin/includes/settings-pages/presentation.php:665
3485
  msgid "Widget"
3486
  msgstr ""
3487
 
3488
+ #: wpsc-admin/includes/settings-pages/presentation.php:665
3489
+ #: wpsc-admin/includes/settings-pages/presentation.php:675
3490
  msgid "You need to enable the widgets plugin to use this"
3491
  msgstr ""
3492
 
3493
+ #: wpsc-admin/includes/settings-pages/presentation.php:675
3494
  msgid "You need to install the Gold and DropShop extentions to use this"
3495
  msgstr ""
3496
 
3497
+ #: wpsc-admin/includes/settings-pages/presentation.php:679
3498
  msgid "Manual"
3499
  msgstr ""
3500
 
3501
+ #: wpsc-admin/includes/settings-pages/presentation.php:682
3502
  msgid "Show Dropshop on every page"
3503
  msgstr ""
3504
 
3505
+ #: wpsc-admin/includes/settings-pages/presentation.php:683
3506
  msgid "Show Dropshop only on product page"
3507
  msgstr ""
3508
 
3509
+ #: wpsc-admin/includes/settings-pages/presentation.php:686
3510
  msgid "Use light Dropshop style"
3511
  msgstr ""
3512
 
3513
+ #: wpsc-admin/includes/settings-pages/presentation.php:687
3514
  msgid "Use dark Dropshop style"
3515
  msgstr ""
3516
 
3517
+ #: wpsc-admin/includes/settings-pages/presentation.php:688
3518
  msgid "Crafty"
3519
  msgstr ""
3520
 
3521
+ #: wpsc-admin/includes/settings-pages/presentation.php:698
3522
  msgid "Use Sliding Cart"
3523
  msgstr ""
3524
 
3525
+ #: wpsc-admin/includes/settings-pages/presentation.php:723
3526
  msgid "Display \"+ Postage & Tax\""
3527
  msgstr ""
3528
 
3529
+ #: wpsc-admin/includes/settings-pages/presentation.php:749
3530
  msgid "Product Group Settings"
3531
  msgstr ""
3532
 
3533
+ #: wpsc-admin/includes/settings-pages/presentation.php:753
3534
  msgid "Show Product Group Description"
3535
  msgstr ""
3536
 
3537
+ #: wpsc-admin/includes/settings-pages/presentation.php:778
3538
  msgid "Show Product Group Thumbnails"
3539
  msgstr ""
3540
 
3541
+ #: wpsc-admin/includes/settings-pages/presentation.php:805
3542
  msgid "Show Product Count per Product Group"
3543
  msgstr ""
3544
 
3545
+ #: wpsc-admin/includes/settings-pages/presentation.php:831
3546
  msgid "Use Category Grid View"
3547
  msgstr ""
3548
 
3549
+ #: wpsc-admin/includes/settings-pages/presentation.php:862
3550
  msgid "Default Product Thumbnail Size"
3551
  msgstr ""
3552
 
3553
+ #: wpsc-admin/includes/settings-pages/presentation.php:866
3554
  msgid "Resize Existing Thumbnails"
3555
  msgstr ""
3556
 
3557
+ #: wpsc-admin/includes/settings-pages/presentation.php:872
3558
  msgid "Default Product Group Thumbnail Size"
3559
  msgstr ""
3560
 
3561
+ #: wpsc-admin/includes/settings-pages/presentation.php:881
3562
  msgid "Single Product Image Size"
3563
  msgstr ""
3564
 
3565
+ #: wpsc-admin/includes/settings-pages/presentation.php:918
3566
  msgid "Show Thumbnail Gallery"
3567
  msgstr ""
3568
 
3569
+ #: wpsc-admin/includes/settings-pages/presentation.php:942
3570
  msgid "Gallery Thumbnail Image Size"
3571
  msgstr ""
3572
 
3573
+ #: wpsc-admin/includes/settings-pages/presentation.php:956
3574
  msgid "Pagination settings"
3575
  msgstr ""
3576
 
3577
+ #: wpsc-admin/includes/settings-pages/presentation.php:960
3578
  msgid "Use Pagination"
3579
  msgstr ""
3580
 
3581
+ #: wpsc-admin/includes/settings-pages/presentation.php:982
3582
  msgid "number of products to show per page"
3583
  msgstr ""
3584
 
3585
+ #: wpsc-admin/includes/settings-pages/presentation.php:992
3586
  msgid "Top"
3587
  msgstr ""
3588
 
3589
+ #: wpsc-admin/includes/settings-pages/presentation.php:993
3590
  msgid "Bottom"
3591
  msgstr ""
3592
 
3593
+ #: wpsc-admin/includes/settings-pages/presentation.php:994
3594
  msgid "Both"
3595
  msgstr ""
3596
 
3597
+ #: wpsc-admin/includes/settings-pages/presentation.php:1001
3598
  msgid "Comment Settings"
3599
  msgstr ""
3600
 
3601
+ #: wpsc-admin/includes/settings-pages/presentation.php:1005
3602
  msgid "Use IntenseDebate Comments"
3603
  msgstr ""
3604
 
3605
+ #: wpsc-admin/includes/settings-pages/presentation.php:1029
3606
  msgid "IntenseDebate Account ID"
3607
  msgstr ""
3608
 
3609
+ #: wpsc-admin/includes/settings-pages/presentation.php:1031
3610
  msgid "Help on finding the Account ID"
3611
  msgstr ""
3612
 
3613
+ #: wpsc-admin/includes/settings-pages/presentation.php:1040
3614
  msgid "By Default Display Comments on"
3615
  msgstr ""
3616
 
3617
+ #: wpsc-admin/includes/settings-pages/shipping.php:67
3618
  msgid "Use Shipping"
3619
  msgstr ""
3620
 
3621
+ #: wpsc-admin/includes/settings-pages/shipping.php:89
3622
+ msgid ""
3623
+ "If you are only selling digital downloads, you should select no to disable "
3624
+ "the shipping on your site."
3625
  msgstr ""
3626
 
3627
+ #: wpsc-admin/includes/settings-pages/shipping.php:94
3628
  msgid "Base Zipcode/Postcode:"
3629
  msgstr ""
3630
 
3631
+ #: wpsc-admin/includes/settings-pages/shipping.php:97
3632
+ msgid ""
3633
+ "If you are based in America then you need to set your own Zipcode for UPS "
3634
+ "and USPS to work. This should be the Zipcode for your Base of Operations."
3635
  msgstr ""
3636
 
3637
+ #: wpsc-admin/includes/settings-pages/shipping.php:119
3638
  msgid "ShipWire Settings"
3639
  msgstr ""
3640
 
3641
+ #: wpsc-admin/includes/settings-pages/shipping.php:130
3642
  msgid "ShipWire Email"
3643
  msgstr ""
3644
 
3645
+ #: wpsc-admin/includes/settings-pages/shipping.php:131
3646
  msgid "ShipWire Password"
3647
  msgstr ""
3648
 
3649
+ #: wpsc-admin/includes/settings-pages/shipping.php:139
3650
  msgid "Enable Free Shipping Discount"
3651
  msgstr ""
3652
 
3653
+ #: wpsc-admin/includes/settings-pages/shipping.php:184
3654
+ #: wpsc-admin/includes/settings-pages/shipping.php:189
3655
  msgid "Shipping Modules"
3656
  msgstr ""
3657
 
3658
+ #: wpsc-admin/includes/settings-pages/shipping.php:195
3659
+ msgid ""
3660
+ "To enable shipping in WP e-Commerce you must select which shipping methods "
3661
+ "you want to enable on your site"
3662
+ msgstr ""
3663
+
3664
+ #: wpsc-admin/includes/settings-pages/shipping.php:196
3665
+ msgid ""
3666
+ "<br /><strong>UPS has been deactivated because you are running PHP4, please "
3667
+ "upgrade to PHP5 to enable UPS.</strong>"
3668
  msgstr ""
3669
 
3670
+ #: wpsc-admin/includes/settings-pages/shipping.php:200
3671
  msgid "Internal Shipping Calculators"
3672
  msgstr ""
3673
 
3674
+ #: wpsc-admin/includes/settings-pages/shipping.php:233
3675
  msgid "External Shipping Calculators"
3676
  msgstr ""
3677
 
3678
+ #: wpsc-admin/includes/settings-pages/shipping.php:236
3679
+ msgid ""
3680
+ "The following shipping modules all need cURL which is not installed on this "
3681
+ "server, you may need to contact your web hosting provider to get it set up. "
3682
  msgstr ""
3683
 
3684
+ #: wpsc-includes/ajax.functions.php:93
3685
  msgid "You just added \"[product_name]\" to your cart."
3686
  msgstr ""
3687
 
3688
+ #: wpsc-includes/ajax.functions.php:96
3689
  msgid "Sorry, but you cannot add zero items to your cart"
3690
  msgstr ""
3691
 
3692
+ #: wpsc-includes/ajax.functions.php:98
3693
  msgid "Sorry, but there are only [number] of this item in stock."
3694
  msgstr ""
3695
 
3696
+ #: wpsc-includes/ajax.functions.php:100
3697
  msgid "Sorry, but the item \"[product_name]\" is out of stock."
3698
  msgstr ""
3699
 
3700
+ #: wpsc-includes/ajax.functions.php:582
3701
+ msgid ""
3702
+ "You must select a shipping method, otherwise we cannot process your order."
3703
  msgstr ""
3704
 
3705
+ #: wpsc-includes/ajax.functions.php:587
3706
+ msgid ""
3707
+ "Please agree to the terms and conditions, otherwise we cannot process your "
3708
+ "order."
3709
  msgstr ""
3710
 
3711
+ #: wpsc-includes/ajax.functions.php:607
3712
  #, php-format
3713
+ msgid ""
3714
+ "Oops the product : %s cannot be shipped to %s. To continue with your "
3715
+ "transaction please remove this product from the list above."
3716
  msgstr ""
3717
 
3718
+ #: wpsc-includes/ajax.functions.php:630
3719
  msgid "Please enter a Zipcode and click calculate to proceed"
3720
  msgstr ""
3721
 
3722
+ #: wpsc-includes/ajax.functions.php:969 wpsc-includes/ajax.functions.php:1028
3723
+ msgid ""
3724
+ "This download is no longer valid, Please contact the site administrator for "
3725
+ "more information."
3726
+ msgstr ""
3727
+
3728
+ #: wpsc-includes/category.functions.php:361
3729
  msgid "Brands"
3730
  msgstr ""
3731
 
3732
+ #: wpsc-includes/checkout.class.php:45
3733
+ #, php-format
3734
+ msgid "Tax Included (%s%%)"
3735
+ msgstr ""
3736
+
3737
+ #: wpsc-includes/checkout.class.php:47
3738
+ msgid "Tax Included"
3739
+ msgstr ""
3740
+
3741
+ #: wpsc-includes/checkout.class.php:50
3742
  msgid "Tax"
3743
  msgstr ""
3744
 
3745
+ #: wpsc-includes/display.functions.php:90
3746
  msgid "People who bought this item also bought"
3747
  msgstr ""
3748
 
3749
+ #: wpsc-includes/display.functions.php:138
3750
  msgid "Updating"
3751
  msgstr ""
3752
 
3753
+ #: wpsc-includes/display.functions.php:154
3754
  msgid "Continue Shopping"
3755
  msgstr ""
3756
 
3757
+ #: wpsc-includes/display.functions.php:255
3758
+ msgid ""
3759
+ "You are using the example product group as your default group and it has no "
3760
+ "products in it, you should set the default group to something else, you can "
3761
+ "do so from your Shop Settings page."
3762
  msgstr ""
3763
 
3764
+ #: wpsc-includes/display.functions.php:257
3765
+ msgid ""
3766
+ "This group is set as your default product group, you should either add some "
3767
+ "items to it or switch your default product group to one that does contain "
3768
+ "items."
3769
  msgstr ""
3770
 
3771
+ #: wpsc-includes/form-display.functions.php:65
3772
  msgid "Select Parent"
3773
  msgstr ""
3774
 
3775
+ #: wpsc-includes/form-display.functions.php:137
3776
  msgid "Choose a downloadable file for this product:"
3777
  msgstr ""
3778
 
3779
+ #: wpsc-includes/form-display.functions.php:181
3780
  msgid "Choose a downloadable file for this variation"
3781
  msgstr ""
3782
 
3783
+ #: wpsc-includes/form-display.functions.php:187
3784
  msgid "No Product"
3785
  msgstr ""
3786
 
3787
+ #: wpsc-includes/misc.functions.php:46
3788
+ msgid "<strong>ERROR</strong>: Please enter a username."
3789
+ msgstr ""
3790
+
3791
+ #: wpsc-includes/misc.functions.php:48
3792
+ msgid ""
3793
+ "<strong>ERROR</strong>: This username is invalid. Please enter a valid "
3794
+ "username."
3795
+ msgstr ""
3796
+
3797
+ #: wpsc-includes/misc.functions.php:51
3798
+ msgid ""
3799
+ "<strong>ERROR</strong>: This username is already registered, please choose "
3800
+ "another one."
3801
+ msgstr ""
3802
+
3803
+ #: wpsc-includes/misc.functions.php:56
3804
+ msgid "<strong>ERROR</strong>: Please type your e-mail address."
3805
+ msgstr ""
3806
+
3807
+ #: wpsc-includes/misc.functions.php:58
3808
+ msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
3809
+ msgstr ""
3810
+
3811
+ #: wpsc-includes/misc.functions.php:61
3812
+ msgid ""
3813
+ "<strong>ERROR</strong>: This email is already registered, please choose "
3814
+ "another one."
3815
+ msgstr ""
3816
+
3817
+ #: wpsc-includes/misc.functions.php:69
3818
+ #, php-format
3819
+ msgid ""
3820
+ "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a "
3821
+ "href=\"mailto:%s\">webmaster</a> !"
3822
  msgstr ""
3823
 
3824
+ #: wpsc-includes/processing.functions.php:30
3825
+ #: wpsc-includes/processing.functions.php:36
3826
+ #: wpsc-includes/processing.functions.php:46
3827
  msgid " is out of stock"
3828
  msgstr ""
3829
 
3830
+ #: wpsc-includes/processing.functions.php:30
3831
+ #: wpsc-includes/processing.functions.php:36
3832
+ #: wpsc-includes/processing.functions.php:46
3833
  msgid "Remaining stock of "
3834
  msgstr ""
3835
 
3836
+ #: wpsc-includes/processing.functions.php:30
3837
  msgid " and its variations is 0. Product was unpublished."
3838
  msgstr ""
3839
 
3840
+ #: wpsc-includes/processing.functions.php:36
3841
  msgid " is 0. Product variation was set to invisible."
3842
  msgstr ""
3843
 
3844
+ #: wpsc-includes/processing.functions.php:46
3845
  msgid " is 0. Product was unpublished."
3846
  msgstr ""
3847
 
3848
+ #: wpsc-includes/processing.functions.php:916
3849
  msgid "This product has no available stock"
3850
  msgstr ""
3851
 
3852
+ #: wpsc-includes/processing.functions.php:964
3853
+ msgid ""
3854
+ "One or more of your shipping modules does not support products without a "
3855
+ "weight set. Please either disable shipping for this product or give it a "
3856
+ "weight"
3857
  msgstr ""
3858
 
3859
+ #: wpsc-includes/purchaselogs.class.php:596
3860
  #, php-format
3861
  msgid "Release downloads locked to this IP address %s"
3862
  msgstr ""
3863
 
3864
+ #: wpsc-includes/purchaselogs.class.php:816
3865
  msgid "Thanks, the purchase log record has been deleted"
3866
  msgstr ""
3867
 
3868
+ #: wpsc-includes/rss_template.php:7
3869
+ msgid "WP e-Commerce"
3870
+ msgstr ""
3871
+
3872
+ #: wpsc-includes/upgrades.php:122
3873
  msgid "Visit upgrade homepage"
3874
  msgstr ""
3875
 
3876
+ #: wpsc-includes/upgrades.php:127
3877
  msgid "Visit author homepage"
3878
  msgstr ""
3879
 
3880
+ #: wpsc-includes/upgrades.php:131
3881
  #, php-format
3882
  msgid "By %s"
3883
  msgstr ""
3884
 
3885
+ #: wpsc-includes/variations.class.php:216
3886
  msgid "Variation"
3887
  msgstr ""
3888
 
3889
+ #: wpsc-includes/variations.class.php:217
3890
  msgid "Stock"
3891
  msgstr ""
3892
 
3893
+ #: wpsc-includes/variations.class.php:220
3894
  msgid "More"
3895
  msgstr ""
3896
 
3897
+ #: wpsc-includes/variations.class.php:352
3898
  msgid "Weight Settings"
3899
  msgstr ""
3900
 
3901
+ #: wpsc-includes/wpsc_query.php:939
3902
+ msgid "Save"
3903
+ msgstr ""
languages/wpsc-nb_NO.mo ADDED
Binary file
languages/wpsc-nb_NO.po ADDED
@@ -0,0 +1,3652 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-11-27 20:21+0200\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Leif-Arne Helland <lah@hwu.no>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+
13
+ #: wp-e-commerce/admin-form-functions.php:10
14
+ msgid "You are editing the &quot;[categorisation]&quot; Group"
15
+ msgstr "Du endrer gruppen &quot;[categorisation]&quot;"
16
+
17
+ #: wp-e-commerce/admin-form-functions.php:11
18
+ msgid "+ Add new category to the &quot;[categorisation]&quot; Group"
19
+ msgstr "+ Legg til ny kategori i gruppen &quot;[categorisation]&quot;"
20
+
21
+ #: wp-e-commerce/admin-form-functions.php:25
22
+ #: wp-e-commerce/admin-form-functions.php:239
23
+ #: wp-e-commerce/admin-form-functions.php:720
24
+ #: wp-e-commerce/admin-form-functions.php:759
25
+ #: wp-e-commerce/display-ecommerce-subs.php:9
26
+ msgid "Name"
27
+ msgstr "Navn"
28
+
29
+ #: wp-e-commerce/admin-form-functions.php:34
30
+ msgid "Description"
31
+ msgstr "Beskrivelse"
32
+
33
+ #: wp-e-commerce/admin-form-functions.php:44
34
+ msgid "Group Parent"
35
+ msgstr "Foreldrekategori"
36
+
37
+ #: wp-e-commerce/admin-form-functions.php:85
38
+ msgid "Group&nbsp;Image"
39
+ msgstr "Kategoribilde"
40
+
41
+ #: wp-e-commerce/admin-form-functions.php:101
42
+ #: wp-e-commerce/admin-form-functions.php:110
43
+ #: wp-e-commerce/admin-form-functions.php:198
44
+ msgid "Height"
45
+ msgstr "Bredde"
46
+
47
+ #: wp-e-commerce/admin-form-functions.php:101
48
+ #: wp-e-commerce/admin-form-functions.php:110
49
+ #: wp-e-commerce/admin-form-functions.php:199
50
+ msgid "Width"
51
+ msgstr "Høyde"
52
+
53
+ #: wp-e-commerce/admin-form-functions.php:102
54
+ #: wp-e-commerce/admin-form-functions.php:111
55
+ msgid "You can upload thumbnail images for each group. To display Group details in your shop you must configure these settings under <a href=\"admin.php?page=wpsc-settings&tab=presentation\">Presentation Settings</a>."
56
+ msgstr ""
57
+
58
+ #: wp-e-commerce/admin-form-functions.php:119
59
+ msgid "Delete Image"
60
+ msgstr "Slett bilde"
61
+
62
+ #: wp-e-commerce/admin-form-functions.php:133
63
+ msgid "Target Markets"
64
+ msgstr "Målgrupper"
65
+
66
+ #: wp-e-commerce/admin-form-functions.php:138
67
+ msgid ""
68
+ "The Target Markets feature has been disabled because you have the Suhosin PHP extension installed on this server. If you need to use the Target Markets feature then disable the suhosin extension, if you can not do this, you will need to contact your hosting provider.\n"
69
+ "\t\t\t"
70
+ msgstr ""
71
+
72
+ #: wp-e-commerce/admin-form-functions.php:164
73
+ msgid "Presentation Settings"
74
+ msgstr "Presentasjonsinnstillinger"
75
+
76
+ #: wp-e-commerce/admin-form-functions.php:165
77
+ msgid "To over-ride the presentation settings for this group you can enter in your prefered settings here"
78
+ msgstr ""
79
+
80
+ #: wp-e-commerce/admin-form-functions.php:171
81
+ msgid "Catalog View"
82
+ msgstr "Katalogvisning"
83
+
84
+ #: wp-e-commerce/admin-form-functions.php:175
85
+ msgid "Please select"
86
+ msgstr "Velg"
87
+
88
+ #: wp-e-commerce/admin-form-functions.php:176
89
+ msgid "Default View"
90
+ msgstr "Standardvisning"
91
+
92
+ #: wp-e-commerce/admin-form-functions.php:178
93
+ #: wp-e-commerce/admin-form-functions.php:180
94
+ msgid "List View"
95
+ msgstr "Listevisning"
96
+
97
+ #: wp-e-commerce/admin-form-functions.php:183
98
+ #: wp-e-commerce/admin-form-functions.php:185
99
+ msgid "Grid View"
100
+ msgstr "Rutenettvisning"
101
+
102
+ #: wp-e-commerce/admin-form-functions.php:195
103
+ msgid "Thumbnail&nbsp;Size"
104
+ msgstr "Miniatyrbildestørrelse"
105
+
106
+ #: wp-e-commerce/admin-form-functions.php:207
107
+ msgid "This category requires additional checkout form fields"
108
+ msgstr "Denne kategorien krever ekstra skjemafelt i kassen"
109
+
110
+ #: wp-e-commerce/admin-form-functions.php:210
111
+ #: wp-e-commerce/display-coupons.php:433
112
+ #: wp-e-commerce/display-coupons.php:457
113
+ msgid "Yes"
114
+ msgstr "Ja"
115
+
116
+ #: wp-e-commerce/admin-form-functions.php:211
117
+ #: wp-e-commerce/display-coupons.php:434
118
+ #: wp-e-commerce/display-coupons.php:458
119
+ msgid "No"
120
+ msgstr "Nei"
121
+
122
+ #: wp-e-commerce/admin-form-functions.php:221
123
+ msgid "Edit Group"
124
+ msgstr "Rediger gruppe"
125
+
126
+ #: wp-e-commerce/admin-form-functions.php:222
127
+ #: wp-e-commerce/admin-form-functions.php:260
128
+ #: wp-e-commerce/admin-form-functions.php:279
129
+ #: wp-e-commerce/admin-form-functions.php:387
130
+ msgid "Delete"
131
+ msgstr "Slett"
132
+
133
+ #: wp-e-commerce/admin-form-functions.php:248
134
+ msgid "Variation Values"
135
+ msgstr "Variasjonsverdier"
136
+
137
+ #: wp-e-commerce/admin-form-functions.php:267
138
+ #: wp-e-commerce/display-coupons.php:126
139
+ msgid "Add"
140
+ msgstr "Legg til"
141
+
142
+ #: wp-e-commerce/admin-form-functions.php:278
143
+ #: wp-e-commerce/display-coupons.php:321
144
+ #: wp-e-commerce/display-coupons.php:381
145
+ msgid "Edit"
146
+ msgstr "Rediger"
147
+
148
+ #: wp-e-commerce/admin-form-functions.php:300
149
+ #: wp-e-commerce/display-coupons.php:141
150
+ #: wp-e-commerce/display-coupons.php:297
151
+ msgid "Coupon Code"
152
+ msgstr "Kupongkode"
153
+
154
+ #: wp-e-commerce/admin-form-functions.php:301
155
+ #: wp-e-commerce/display-coupons.php:144
156
+ #: wp-e-commerce/display-coupons.php:301
157
+ msgid "Discount"
158
+ msgstr "Avslag"
159
+
160
+ #: wp-e-commerce/admin-form-functions.php:302
161
+ #: wp-e-commerce/display-coupons.php:147
162
+ #: wp-e-commerce/display-coupons.php:305
163
+ msgid "Start"
164
+ msgstr "Start"
165
+
166
+ #: wp-e-commerce/admin-form-functions.php:303
167
+ #: wp-e-commerce/display-coupons.php:150
168
+ #: wp-e-commerce/display-coupons.php:309
169
+ msgid "Expiry"
170
+ msgstr "Slutt"
171
+
172
+ #: wp-e-commerce/admin-form-functions.php:304
173
+ #: wp-e-commerce/display-coupons.php:153
174
+ msgid "Use Once"
175
+ msgstr "Bruk en gang"
176
+
177
+ #: wp-e-commerce/admin-form-functions.php:305
178
+ #: wp-e-commerce/display-coupons.php:156
179
+ #: wp-e-commerce/display-coupons.php:313
180
+ msgid "Active"
181
+ msgstr "Aktiv"
182
+
183
+ #: wp-e-commerce/admin-form-functions.php:306
184
+ #: wp-e-commerce/display-coupons.php:160
185
+ #: wp-e-commerce/display-coupons.php:253
186
+ #: wp-e-commerce/display-coupons.php:317
187
+ msgid "Apply On All Products"
188
+ msgstr "Bruk på alle produkter"
189
+
190
+ #: wp-e-commerce/admin-form-functions.php:386
191
+ #: wp-e-commerce/display-coupons.php:480
192
+ msgid "Submit"
193
+ msgstr "Send"
194
+
195
+ #: wp-e-commerce/admin-form-functions.php:520
196
+ msgid "Settings"
197
+ msgstr "Innstillinger"
198
+
199
+ #: wp-e-commerce/admin-form-functions.php:524
200
+ msgid "Shop Settings"
201
+ msgstr "Butikkinnstillinger"
202
+
203
+ #: wp-e-commerce/admin-form-functions.php:525
204
+ msgid "Money and Payment"
205
+ msgstr "Penger og betaling"
206
+
207
+ #: wp-e-commerce/admin-form-functions.php:526
208
+ msgid "Checkout Page Settings"
209
+ msgstr "Kasseinnstillinger"
210
+
211
+ #: wp-e-commerce/admin-form-functions.php:545
212
+ #: wp-e-commerce/admin-form-functions.php:546
213
+ msgid "product"
214
+ msgstr "produkt"
215
+
216
+ #: wp-e-commerce/admin-form-functions.php:545
217
+ #: wp-e-commerce/admin-form-functions.php:546
218
+ msgid "products"
219
+ msgstr "produkter"
220
+
221
+ #: wp-e-commerce/admin-form-functions.php:550
222
+ #: wp-e-commerce/admin-form-functions.php:551
223
+ msgid "group"
224
+ msgstr "gruppe"
225
+
226
+ #: wp-e-commerce/admin-form-functions.php:550
227
+ #: wp-e-commerce/admin-form-functions.php:551
228
+ msgid "groups"
229
+ msgstr "grupper"
230
+
231
+ #: wp-e-commerce/admin-form-functions.php:555
232
+ #: wp-e-commerce/admin-form-functions.php:556
233
+ msgid "sale"
234
+ msgstr "salg"
235
+
236
+ #: wp-e-commerce/admin-form-functions.php:555
237
+ #: wp-e-commerce/admin-form-functions.php:556
238
+ msgid "sales"
239
+ msgstr "salg"
240
+
241
+ #: wp-e-commerce/admin-form-functions.php:562
242
+ msgid "variation"
243
+ msgstr "variasjon"
244
+
245
+ #: wp-e-commerce/admin-form-functions.php:562
246
+ msgid "variations"
247
+ msgstr "variasjoner"
248
+
249
+ #: wp-e-commerce/admin-form-functions.php:566
250
+ #: wp-e-commerce/admin-form-functions.php:567
251
+ #: wp-e-commerce/admin-form-functions.php:570
252
+ msgid "transaction"
253
+ msgstr "transaksjon"
254
+
255
+ #: wp-e-commerce/admin-form-functions.php:566
256
+ #: wp-e-commerce/admin-form-functions.php:567
257
+ #: wp-e-commerce/admin-form-functions.php:570
258
+ msgid "transactions"
259
+ msgstr "transaksjoner"
260
+
261
+ #: wp-e-commerce/admin-form-functions.php:580
262
+ msgid "Current Month"
263
+ msgstr "Denne måneden"
264
+
265
+ #: wp-e-commerce/admin-form-functions.php:585
266
+ msgid "At a Glance"
267
+ msgstr "Ved første øyekast"
268
+
269
+ #: wp-e-commerce/admin-form-functions.php:615
270
+ msgid "Pending"
271
+ msgstr "Venter"
272
+
273
+ #: wp-e-commerce/admin-form-functions.php:630
274
+ msgid "Closed"
275
+ msgstr "Avslutta"
276
+
277
+ #: wp-e-commerce/admin-form-functions.php:638
278
+ #: wp-e-commerce/admin-form-functions.php:646
279
+ msgid "Add New Product"
280
+ msgstr "Legg til nytt produkt"
281
+
282
+ #: wp-e-commerce/admin-form-functions.php:638
283
+ msgid "Here you can add products, groups or variations"
284
+ msgstr "Her kan du legge til produkter, kategorier og variasjoner"
285
+
286
+ #: wp-e-commerce/admin-form-functions.php:647
287
+ msgid "Right Now"
288
+ msgstr "Akkurat nå"
289
+
290
+ #: wp-e-commerce/admin-form-functions.php:652
291
+ msgid "You have <a href=\"admin.php?page=wpsc-edit-products\">:productcount:</a>, contained within <a href=\"admin.php?page=wpsc-edit-groups\">:groupcount:</a>. This month you made :salecount: and generated a total of :monthtotal: and your total sales ever is :overaltotal:. You have :pendingcount: awaiting approval."
292
+ msgstr ""
293
+
294
+ #: wp-e-commerce/admin-form-functions.php:654
295
+ msgid "You are using the :theme: style. This is WP e-Commerce :versionnumber:."
296
+ msgstr "Du bruker temaet :theme:. Dette er WP e-Commerce :versionnumber:."
297
+
298
+ #: wp-e-commerce/admin-form-functions.php:681
299
+ msgid "Packing Slip"
300
+ msgstr "Pakkseddel"
301
+
302
+ #: wp-e-commerce/admin-form-functions.php:682
303
+ msgid "Order"
304
+ msgstr "Bestilling"
305
+
306
+ #: wp-e-commerce/admin-form-functions.php:701
307
+ #: wp-e-commerce/install_and_update.php:660
308
+ msgid "State"
309
+ msgstr "Delstat"
310
+
311
+ #: wp-e-commerce/admin-form-functions.php:721
312
+ #: wp-e-commerce/install_and_update.php:650
313
+ #: wp-e-commerce/install_and_update.php:658
314
+ msgid "Address"
315
+ msgstr "Adresse"
316
+
317
+ #: wp-e-commerce/admin-form-functions.php:722
318
+ #: wp-e-commerce/edit-profile.php:52
319
+ #: wp-e-commerce/install_and_update.php:667
320
+ msgid "Phone"
321
+ msgstr "Telefon"
322
+
323
+ #: wp-e-commerce/admin-form-functions.php:723
324
+ #: wp-e-commerce/display-ecommerce-subs.php:9
325
+ #: wp-e-commerce/edit-profile.php:39
326
+ #: wp-e-commerce/install_and_update.php:654
327
+ msgid "Email"
328
+ msgstr "E-post"
329
+
330
+ #: wp-e-commerce/admin-form-functions.php:757
331
+ msgid "Quantity"
332
+ msgstr "Antall"
333
+
334
+ #: wp-e-commerce/admin-form-functions.php:762
335
+ msgid "Price"
336
+ msgstr "Pris"
337
+
338
+ #: wp-e-commerce/admin-form-functions.php:764
339
+ msgid "Shipping"
340
+ msgstr "Porto"
341
+
342
+ #: wp-e-commerce/admin-form-functions.php:859
343
+ msgid "This users cart was empty"
344
+ msgstr "Handlekurven til denne kunden var tom"
345
+
346
+ #: wp-e-commerce/display-coupons.php:27
347
+ msgid "Thanks, the coupon has been added."
348
+ msgstr "Takk, rabattkupongen er lagt til."
349
+
350
+ #: wp-e-commerce/display-coupons.php:122
351
+ msgid "Coupons"
352
+ msgstr "Rabattkuponger"
353
+
354
+ #: wp-e-commerce/display-coupons.php:126
355
+ msgid "Add Coupon"
356
+ msgstr "Legg til rabattkupong"
357
+
358
+ #: wp-e-commerce/display-coupons.php:397
359
+ msgid "<strong>Note:</strong> Due to a current limitation of PayPal, if your user makes a purchase and uses a coupon, we can not send a list of items through to paypal for processing. Rather, we must send the total amount of the purchase, so that within PayPal the user who purchases a product will see your shop name and the total amount of their purchase."
360
+ msgstr ""
361
+
362
+ #: wp-e-commerce/display-coupons.php:409
363
+ msgid "Marketing Settings"
364
+ msgstr "Markedsføringsinnstillinger"
365
+
366
+ #: wp-e-commerce/display-coupons.php:416
367
+ msgid "Display Cross Sales"
368
+ msgstr "Vis kryssal"
369
+
370
+ #: wp-e-commerce/display-coupons.php:440
371
+ msgid "Show Share This (Social Bookmarks)"
372
+ msgstr "Vis ShareThis (sosiale bokmerker)"
373
+
374
+ #: wp-e-commerce/display-coupons.php:463
375
+ msgid "Display How Customer Found Us Survey"
376
+ msgstr "Vis \"Hvordan kunden fant oss\"-undersøkelse"
377
+
378
+ #: wp-e-commerce/display-coupons.php:486
379
+ msgid "RSS Address"
380
+ msgstr "RSS-adresse"
381
+
382
+ #: wp-e-commerce/display-coupons.php:490
383
+ msgid "<strong>Note:</strong> Not only can people use this RSS to keep update with your product list but you can also use this link to promote your products in your facebook profile. <br />Just add the <a href=\"http://apps.facebook.com/getshopped\">getshopped! facebook application</a> to your facebook profile and follow the instructions."
384
+ msgstr ""
385
+
386
+ #: wp-e-commerce/display-coupons.php:504
387
+ msgid "Google Base"
388
+ msgstr "Google-base"
389
+
390
+ #: wp-e-commerce/display-coupons.php:507
391
+ msgid "Your site has been granted access to google base.<br /> All future products will be submitted to google base.<br />"
392
+ msgstr ""
393
+
394
+ #: wp-e-commerce/display-coupons.php:508
395
+ msgid "Click here to remove access"
396
+ msgstr "Trykk her for å fjerne tilgang"
397
+
398
+ #: wp-e-commerce/display-coupons.php:513
399
+ msgid "Grant Access"
400
+ msgstr "Gi tilgang"
401
+
402
+ #: wp-e-commerce/display-ecommerce-subs.php:9
403
+ msgid "User ID"
404
+ msgstr "Brukar-ID"
405
+
406
+ #: wp-e-commerce/display-ecommerce-subs.php:9
407
+ msgid "Registered Date"
408
+ msgstr "Registrert dato"
409
+
410
+ #: wp-e-commerce/display-ecommerce-subs.php:9
411
+ msgid "Suspend"
412
+ msgstr "Stopp abonnement"
413
+
414
+ #: wp-e-commerce/display-ecommerce-subs.php:9
415
+ msgid "Activate"
416
+ msgstr "Aktiver"
417
+
418
+ #: wp-e-commerce/edit-profile.php:31
419
+ #: wp-e-commerce/install_and_update.php:648
420
+ #: wp-e-commerce/install_and_update.php:656
421
+ msgid "First Name"
422
+ msgstr "Fornavn"
423
+
424
+ #: wp-e-commerce/edit-profile.php:32
425
+ msgid "Please enter a valid name"
426
+ msgstr "Skriv inn gyldig navn"
427
+
428
+ #: wp-e-commerce/edit-profile.php:35
429
+ #: wp-e-commerce/install_and_update.php:649
430
+ #: wp-e-commerce/install_and_update.php:657
431
+ msgid "Last Name"
432
+ msgstr "Etternavn"
433
+
434
+ #: wp-e-commerce/edit-profile.php:36
435
+ msgid "Please enter a valid surname"
436
+ msgstr "Skriv inn gyldig etternavn"
437
+
438
+ #: wp-e-commerce/edit-profile.php:40
439
+ msgid "Please enter a valid email address"
440
+ msgstr "Skriv inn en gyldig e-postadresse"
441
+
442
+ #: wp-e-commerce/edit-profile.php:43
443
+ msgid "Address 1"
444
+ msgstr "Adresselinje 1"
445
+
446
+ #: wp-e-commerce/edit-profile.php:44
447
+ msgid "Address 2"
448
+ msgstr "Adresselinje 2"
449
+
450
+ #: wp-e-commerce/edit-profile.php:45
451
+ msgid "Please enter a valid address"
452
+ msgstr "Skriv inn en gyldig adresse"
453
+
454
+ #: wp-e-commerce/edit-profile.php:48
455
+ #: wp-e-commerce/install_and_update.php:651
456
+ #: wp-e-commerce/install_and_update.php:659
457
+ msgid "City"
458
+ msgstr "Poststed"
459
+
460
+ #: wp-e-commerce/edit-profile.php:49
461
+ msgid "Please enter your town or city."
462
+ msgstr "Skriv inn poststed."
463
+
464
+ #: wp-e-commerce/edit-profile.php:53
465
+ msgid "Please enter a valid phone number"
466
+ msgstr "Skriv inn gyldig telefonnummer"
467
+
468
+ #: wp-e-commerce/edit-profile.php:56
469
+ #: wp-e-commerce/install_and_update.php:652
470
+ #: wp-e-commerce/install_and_update.php:661
471
+ msgid "Country"
472
+ msgstr "Land"
473
+
474
+ #: wp-e-commerce/edit-profile.php:57
475
+ msgid "Please select your country from the list."
476
+ msgstr "Velg land fra listen."
477
+
478
+ #: wp-e-commerce/edit-profile.php:61
479
+ msgid "Please enter a valid"
480
+ msgstr "Skriv inn gyldig"
481
+
482
+ #: wp-e-commerce/edit-profile.php:84
483
+ msgid "Thanks, your changes have been saved."
484
+ msgstr "Takk, endringene dine er lagret."
485
+
486
+ #: wp-e-commerce/edit-profile.php:188
487
+ msgid "Save Profile"
488
+ msgstr "Lagre profil"
489
+
490
+ #: wp-e-commerce/editor.php:49
491
+ msgid "placeholder for:"
492
+ msgstr "plassholder for:"
493
+
494
+ #: wp-e-commerce/editor.php:144
495
+ msgid "Your forms:"
496
+ msgstr "Dine skjema:"
497
+
498
+ #: wp-e-commerce/editor.php:146
499
+ #: wp-e-commerce/insertcate.php:87
500
+ msgid "Insert"
501
+ msgstr "Sett inn"
502
+
503
+ #: wp-e-commerce/editor.php:147
504
+ #: wp-e-commerce/insertcate.php:90
505
+ msgid "Cancel"
506
+ msgstr "Avbryt"
507
+
508
+ #: wp-e-commerce/google_shipping_country.php:7
509
+ msgid "Google Shipping Country"
510
+ msgstr "Google Sendingsland"
511
+
512
+ #: wp-e-commerce/google_shipping_country.php:43
513
+ msgid "Save Changes"
514
+ msgstr "Lagre endringer"
515
+
516
+ #: wp-e-commerce/homepage_products_functions.php:85
517
+ msgid "Product Donations"
518
+ msgstr "Produktdonasjoner"
519
+
520
+ #: wp-e-commerce/homepage_products_functions.php:157
521
+ msgid "More Details"
522
+ msgstr "Flere detaljer"
523
+
524
+ #: wp-e-commerce/homepage_products_functions.php:189
525
+ msgid "Add To Cart"
526
+ msgstr "Legg i handlekurven"
527
+
528
+ #: wp-e-commerce/homepage_products_functions.php:205
529
+ msgid "Avg. Customer Rating"
530
+ msgstr "Gjennomsnittskarakter"
531
+
532
+ #: wp-e-commerce/homepage_products_functions.php:212
533
+ msgid "Your Rating"
534
+ msgstr "Din stemme"
535
+
536
+ #: wp-e-commerce/homepage_products_functions.php:213
537
+ #: wp-e-commerce/homepage_products_functions.php:217
538
+ msgid "Saved"
539
+ msgstr "Lagret"
540
+
541
+ #: wp-e-commerce/homepage_products_functions.php:216
542
+ msgid "Rate This item"
543
+ msgstr "Stem på denne varen"
544
+
545
+ #: wp-e-commerce/insertcate.php:67
546
+ msgid "Pick a Category"
547
+ msgstr "Velg en kategori"
548
+
549
+ #: wp-e-commerce/insertcate.php:74
550
+ msgid "Your Categories:"
551
+ msgstr "Dine kategorier:"
552
+
553
+ #: wp-e-commerce/install_and_update.php:60
554
+ msgid "Example category"
555
+ msgstr "Kategorieksempel"
556
+
557
+ #: wp-e-commerce/install_and_update.php:60
558
+ #: wp-e-commerce/install_and_update.php:61
559
+ msgid "Example details"
560
+ msgstr "Detaljereksempel"
561
+
562
+ #: wp-e-commerce/install_and_update.php:61
563
+ msgid "Example Brand"
564
+ msgstr "Merkeeksempel"
565
+
566
+ #: wp-e-commerce/install_and_update.php:68
567
+ msgid "Order Received"
568
+ msgstr "Bestillingen er mottatt"
569
+
570
+ #: wp-e-commerce/install_and_update.php:69
571
+ msgid "Accepted Payment"
572
+ msgstr "Akseptert betalingsmåte"
573
+
574
+ #: wp-e-commerce/install_and_update.php:70
575
+ msgid "Job Dispatched"
576
+ msgstr "Jobben er sendt ut"
577
+
578
+ #: wp-e-commerce/install_and_update.php:71
579
+ msgid "Closed Order"
580
+ msgstr "Avslutta bestilling"
581
+
582
+ #: wp-e-commerce/install_and_update.php:87
583
+ msgid "Show Thumbnails"
584
+ msgstr "Vis miniatyrbilder"
585
+
586
+ #: wp-e-commerce/install_and_update.php:89
587
+ msgid "product image width"
588
+ msgstr "bredde på produktbilde"
589
+
590
+ #: wp-e-commerce/install_and_update.php:90
591
+ msgid "product image height"
592
+ msgstr "høyde på produktbilde"
593
+
594
+ #: wp-e-commerce/install_and_update.php:92
595
+ msgid "product group image width"
596
+ msgstr "bredde på kategoribilde"
597
+
598
+ #: wp-e-commerce/install_and_update.php:93
599
+ msgid "product group image height"
600
+ msgstr "høyde på kategoribilde"
601
+
602
+ #: wp-e-commerce/install_and_update.php:95
603
+ msgid "The location of the product list"
604
+ msgstr "Plassering for produktlisten"
605
+
606
+ #: wp-e-commerce/install_and_update.php:96
607
+ msgid "The location of the shopping cart"
608
+ msgstr "Plassering for handlekurven"
609
+
610
+ #: wp-e-commerce/install_and_update.php:97
611
+ msgid "The location of the checkout page"
612
+ msgstr "Plassering for kasse-siden"
613
+
614
+ #: wp-e-commerce/install_and_update.php:98
615
+ msgid "The location of the transaction detail page"
616
+ msgstr "Plassering for siden med overføringsdetaljer"
617
+
618
+ #: wp-e-commerce/install_and_update.php:99
619
+ msgid "The payment gateway to use"
620
+ msgstr "Hvilken betalingsterminal skal brukes"
621
+
622
+ #: wp-e-commerce/install_and_update.php:101
623
+ #: wp-e-commerce/install_and_update.php:103
624
+ #: wp-e-commerce/install_and_update.php:107
625
+ #: wp-e-commerce/install_and_update.php:109
626
+ msgid "Cart Location"
627
+ msgstr "Plassering for handlekurven"
628
+
629
+ #: wp-e-commerce/install_and_update.php:114
630
+ msgid "Currency type"
631
+ msgstr "Valutatype"
632
+
633
+ #: wp-e-commerce/install_and_update.php:115
634
+ msgid "Currency sign location"
635
+ msgstr "Plassering for valutategn"
636
+
637
+ #: wp-e-commerce/install_and_update.php:117
638
+ msgid "the GST rate"
639
+ msgstr "MVA-sats"
640
+
641
+ #: wp-e-commerce/install_and_update.php:119
642
+ msgid "the download limit"
643
+ msgstr "nedlastingsgrensen"
644
+
645
+ #: wp-e-commerce/install_and_update.php:121
646
+ msgid "Display or hide postage and packaging"
647
+ msgstr "Vis eller skjul porto og ekspedisjon"
648
+
649
+ #: wp-e-commerce/install_and_update.php:123
650
+ msgid "Display or hide specials on the sidebar"
651
+ msgstr "Vis eller skjul spesialtilbud på sidestolpen"
652
+
653
+ #: wp-e-commerce/install_and_update.php:126
654
+ msgid "Default postage and packaging"
655
+ msgstr "Standard porto og ekspedisjon"
656
+
657
+ #: wp-e-commerce/install_and_update.php:128
658
+ msgid "Email address that purchase log is sent to"
659
+ msgstr "Kjøpsloggen skal sendes til e-postadressen"
660
+
661
+ #: wp-e-commerce/install_and_update.php:129
662
+ msgid "Email address that purchase reports are sent from"
663
+ msgstr "Kjøpsrapporter skal sendes fra e-postadressen"
664
+
665
+ #: wp-e-commerce/install_and_update.php:130
666
+ msgid "Checkout terms and conditions"
667
+ msgstr "Vilkår og betingelser"
668
+
669
+ #: wp-e-commerce/install_and_update.php:132
670
+ msgid "Google Merchant Key"
671
+ msgstr "Google-kjøpmannsnøkkel"
672
+
673
+ #: wp-e-commerce/install_and_update.php:133
674
+ msgid "Google Merchant ID"
675
+ msgstr "Google-kjøpmanns-ID"
676
+
677
+ #: wp-e-commerce/install_and_update.php:135
678
+ msgid "Default Brand"
679
+ msgstr "Standardmerke"
680
+
681
+ #: wp-e-commerce/install_and_update.php:136
682
+ msgid "Select what product group you want to display on the products page"
683
+ msgstr "Velg hvilken kategori du vil vise på produktsiden"
684
+
685
+ #: wp-e-commerce/install_and_update.php:149
686
+ #: wp-e-commerce/install_and_update.php:155
687
+ msgid "paypal business"
688
+ msgstr "paypal-forretning"
689
+
690
+ #: wp-e-commerce/install_and_update.php:150
691
+ #: wp-e-commerce/install_and_update.php:151
692
+ #: wp-e-commerce/install_and_update.php:158
693
+ msgid "paypal url"
694
+ msgstr "paypal-adresse"
695
+
696
+ #: wp-e-commerce/install_and_update.php:162
697
+ msgid "Show Product Ratings"
698
+ msgstr "Vis produktstemmer"
699
+
700
+ #: wp-e-commerce/install_and_update.php:163
701
+ msgid "Thank you for purchasing with %shop_name%, any items to be shipped will be processed as soon as possible, any items that can be downloaded can be downloaded using the links on this page.All prices include tax and postage and packaging where applicable.You ordered these items:%product_list%%total_shipping%%total_price%"
702
+ msgstr "Takk for ditt kjøp hos %shop_name%. Alle varer som skal sendes vil bli prosessert så snart som mulig og alle nedlastbare varer kan lastes ned ved hjelp av lenker på denne siden. Alle priser inkluderer merverdiavgift, frakt og ekspedisjonsgebyrer der det gjelder. Du bestillte følgende varer:%product_list%%total_shipping%%total_price%"
703
+
704
+ #: wp-e-commerce/install_and_update.php:164
705
+ msgid "%product_list%%total_shipping%%total_price%"
706
+ msgstr "%product_list%%total_shipping%%total_price%"
707
+
708
+ #: wp-e-commerce/install_and_update.php:207
709
+ msgid "Products Page"
710
+ msgstr "Produktside"
711
+
712
+ #: wp-e-commerce/install_and_update.php:213
713
+ msgid "Checkout"
714
+ msgstr "Kassen"
715
+
716
+ #: wp-e-commerce/install_and_update.php:225
717
+ msgid "Transaction Results"
718
+ msgstr "Resultat av overføringen"
719
+
720
+ #: wp-e-commerce/install_and_update.php:231
721
+ msgid "Your Account"
722
+ msgstr "Brukerkonto din"
723
+
724
+ #: wp-e-commerce/install_and_update.php:647
725
+ msgid "1. Your billing/contact details"
726
+ msgstr "1. Faktura/kontaktopplysninger"
727
+
728
+ #: wp-e-commerce/install_and_update.php:653
729
+ #: wp-e-commerce/install_and_update.php:662
730
+ msgid "Postal Code"
731
+ msgstr "Postnummer"
732
+
733
+ #: wp-e-commerce/install_and_update.php:655
734
+ msgid "2. Shipping details"
735
+ msgstr "2. Sendingsopplysninger"
736
+
737
+ #: wp-e-commerce/share-this.php:430
738
+ msgid "E-mail this, post to del.icio.us, etc."
739
+ msgstr "Send i e-post, legg til på del.icio.us, osv."
740
+
741
+ #: wp-e-commerce/share-this.php:483
742
+ msgid "Close"
743
+ msgstr "Lukk"
744
+
745
+ #: wp-e-commerce/share-this.php:485
746
+ #: wp-e-commerce/share-this.php:836
747
+ msgid "Social Web"
748
+ msgstr "Sosial Web"
749
+
750
+ #: wp-e-commerce/share-this.php:486
751
+ #: wp-e-commerce/share-this.php:861
752
+ msgid "E-mail"
753
+ msgstr "E-post"
754
+
755
+ #: wp-e-commerce/share-this.php:502
756
+ #: wp-e-commerce/share-this.php:865
757
+ msgid "E-mail It"
758
+ msgstr "Send på e-post"
759
+
760
+ #: wp-e-commerce/share-this.php:505
761
+ #: wp-e-commerce/share-this.php:868
762
+ msgid "To Address:"
763
+ msgstr "Til-adresse:"
764
+
765
+ #: wp-e-commerce/share-this.php:509
766
+ #: wp-e-commerce/share-this.php:872
767
+ msgid "Your Name:"
768
+ msgstr "Ditt navn:"
769
+
770
+ #: wp-e-commerce/share-this.php:513
771
+ #: wp-e-commerce/share-this.php:876
772
+ msgid "Your Address:"
773
+ msgstr "Din adresse:"
774
+
775
+ #: wp-e-commerce/share-this.php:517
776
+ #: wp-e-commerce/share-this.php:880
777
+ msgid "Send It"
778
+ msgstr "Send"
779
+
780
+ #: wp-e-commerce/share-this.php:599
781
+ msgid "Click your <strong>back button</strong> and make sure those e-mail addresses are valid then try again."
782
+ msgstr ""
783
+
784
+ #: wp-e-commerce/share-this.php:609
785
+ msgid "Check out this product on "
786
+ msgstr ""
787
+
788
+ #: wp-e-commerce/share-this.php:614
789
+ #: wp-e-commerce/share-this.php:634
790
+ msgid "Greetings--"
791
+ msgstr ""
792
+
793
+ #: wp-e-commerce/share-this.php:615
794
+ #: wp-e-commerce/share-this.php:635
795
+ msgid " thinks this will be of interest to you:"
796
+ msgstr "tror dette vil interessere deg:"
797
+
798
+ #: wp-e-commerce/share-this.php:628
799
+ #: wp-e-commerce/share-this.php:638
800
+ msgid "Enjoy."
801
+ msgstr ""
802
+
803
+ #: wp-e-commerce/share-this.php:696
804
+ msgid "Share This : "
805
+ msgstr ""
806
+
807
+ #: wp-e-commerce/share-this.php:832
808
+ #, php-format
809
+ msgid "<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."
810
+ msgstr ""
811
+
812
+ #: wp-e-commerce/share-this.php:903
813
+ msgid "Posted in: "
814
+ msgstr "Postet i:"
815
+
816
+ #: wp-e-commerce/share-this.php:906
817
+ msgid "Return to:"
818
+ msgstr "Returner til:"
819
+
820
+ #: wp-e-commerce/share-this.php:911
821
+ msgid "Powered by <a href=\"http://alexking.org/projects/wordpress\">Share This</a>"
822
+ msgstr "Drevet av <a href=\"http://alexking.org/projects/wordpress\">ShareThis</a>"
823
+
824
+ #: wp-e-commerce/shopping_cart_functions.php:36
825
+ #: wp-e-commerce/shopping_cart_functions.php:44
826
+ #: wp-e-commerce/shopping_cart_functions.php:54
827
+ msgid "Shopping Cart"
828
+ msgstr "Handlekurv"
829
+
830
+ #: wp-e-commerce/tagging_functions.php:79
831
+ #, php-format
832
+ msgid "%d topics"
833
+ msgstr "%d emner"
834
+
835
+ #: wp-e-commerce/tax_and_shipping.php:34
836
+ msgid "GST/Tax Rate"
837
+ msgstr "MVA/tollsats"
838
+
839
+ #: wp-e-commerce/transaction_results.php:39
840
+ msgid "Sorry your transaction was not accepted.<br /><a href="
841
+ msgstr "Beklager, transaksjonen din ble ikke godkjent.<br /><a href="
842
+
843
+ #: wp-e-commerce/transaction_result_functions.php:34
844
+ msgid "We&#39;re Sorry, your order has not been accepted, the most likely reason is that you have insufficient funds."
845
+ msgstr "Beklager, men bestillingen din ble ikke akseptert, mest sannsynlig på grunn av manglende midler."
846
+
847
+ #: wp-e-commerce/transaction_result_functions.php:36
848
+ msgid "New pending order"
849
+ msgstr "Ny bestilling venter"
850
+
851
+ #: wp-e-commerce/transaction_result_functions.php:36
852
+ msgid "There is a new order awaiting processing:"
853
+ msgstr "En ny bestilling venter på prosessering:"
854
+
855
+ #: wp-e-commerce/transaction_result_functions.php:40
856
+ #: wp-e-commerce/transaction_result_functions.php:249
857
+ msgid "Thank you, your purchase is pending, you will be sent an email once the order clears."
858
+ msgstr "Tusen takk. Vi har registrert bestillingen din og vil sende deg en e-post med en gang bestillingen går igjennom."
859
+
860
+ #: wp-e-commerce/transaction_result_functions.php:158
861
+ #: wp-e-commerce/transaction_result_functions.php:159
862
+ msgid "Click to download"
863
+ msgstr "Klikk her for å laste ned"
864
+
865
+ #: wp-e-commerce/transaction_result_functions.php:205
866
+ #: wp-e-commerce/transaction_result_functions.php:212
867
+ #: wp-e-commerce/user-log.php:317
868
+ msgid "Total Shipping"
869
+ msgstr "Samlet porto"
870
+
871
+ #: wp-e-commerce/transaction_result_functions.php:206
872
+ #: wp-e-commerce/transaction_result_functions.php:213
873
+ #: wp-e-commerce/user-log.php:220
874
+ msgid "Total"
875
+ msgstr "Sum"
876
+
877
+ #: wp-e-commerce/transaction_result_functions.php:215
878
+ #: wp-e-commerce/transaction_result_functions.php:216
879
+ msgid "Your Transaction ID"
880
+ msgstr "Ordrenummeret ditt"
881
+
882
+ #: wp-e-commerce/transaction_result_functions.php:217
883
+ msgid "Transaction ID"
884
+ msgstr "Ordrenummer"
885
+
886
+ #: wp-e-commerce/transaction_result_functions.php:250
887
+ msgid "Order Pending: Payment Required"
888
+ msgstr "Bestilling venter: Betaling påkrevd"
889
+
890
+ #: wp-e-commerce/transaction_result_functions.php:252
891
+ msgid "Purchase Receipt"
892
+ msgstr "Kvittering"
893
+
894
+ #: wp-e-commerce/transaction_result_functions.php:257
895
+ #: wp-e-commerce/user-log.php:336
896
+ msgid "Customer Details"
897
+ msgstr "Kundedetaljer"
898
+
899
+ #: wp-e-commerce/transaction_result_functions.php:273
900
+ msgid "Delivery State"
901
+ msgstr "Område/delstat (levering)"
902
+
903
+ #: wp-e-commerce/transaction_result_functions.php:292
904
+ msgid "Purchase Report"
905
+ msgstr "Kjøpsrapport"
906
+
907
+ #: wp-e-commerce/transaction_result_functions.php:308
908
+ msgid "The Transaction was successful"
909
+ msgstr "Overføringen var vellykket"
910
+
911
+ #: wp-e-commerce/transaction_result_functions.php:316
912
+ msgid "Oops, there is nothing in your cart."
913
+ msgstr "Det er ingenting i handlekurven din."
914
+
915
+ #: wp-e-commerce/transaction_result_functions.php:316
916
+ msgid "Please visit our shop"
917
+ msgstr "Besøk butikken vår"
918
+
919
+ #: wp-e-commerce/user-downloads.php:41
920
+ msgid "File Names"
921
+ msgstr "Filnavn"
922
+
923
+ #: wp-e-commerce/user-downloads.php:42
924
+ msgid "Downloads Left"
925
+ msgstr "Gjenstående nedlastinger"
926
+
927
+ #: wp-e-commerce/user-downloads.php:43
928
+ #: wp-e-commerce/user-log.php:56
929
+ msgid "Date"
930
+ msgstr "Dato"
931
+
932
+ #: wp-e-commerce/user-downloads.php:69
933
+ msgid "You have not purchased any downloadable products yet."
934
+ msgstr "Du har ikke kjøpt noen nedlastbare produkter enda."
935
+
936
+ #: wp-e-commerce/user-log.php:52
937
+ msgid "Status"
938
+ msgstr "Status"
939
+
940
+ #: wp-e-commerce/user-log.php:65
941
+ #: wp-e-commerce/user-log.php:383
942
+ msgid "Payment Method"
943
+ msgstr "Betalingsmåte"
944
+
945
+ #: wp-e-commerce/user-log.php:94
946
+ msgid "Details"
947
+ msgstr "Detaljer"
948
+
949
+ #: wp-e-commerce/user-log.php:147
950
+ msgid "Order Status"
951
+ msgstr "Bestillingsstastus"
952
+
953
+ #: wp-e-commerce/user-log.php:169
954
+ msgid "Shipping Details"
955
+ msgstr "Sendingsdetaljer"
956
+
957
+ #: wp-e-commerce/user-log.php:188
958
+ msgid "Order Details"
959
+ msgstr "Bestillingsdetaljer"
960
+
961
+ #: wp-e-commerce/user-log.php:212
962
+ msgid "GST"
963
+ msgstr "MVA"
964
+
965
+ #: wp-e-commerce/user-log.php:216
966
+ msgid "P&amp;P"
967
+ msgstr "P&amp;P"
968
+
969
+ #: wp-e-commerce/user-log.php:318
970
+ msgid "Final Total"
971
+ msgstr "Sluttsum"
972
+
973
+ #: wp-e-commerce/user-log.php:384
974
+ msgid "Purchase No."
975
+ msgstr "Kjøpsnummer"
976
+
977
+ #: wp-e-commerce/user-log.php:387
978
+ msgid "Transaction Id"
979
+ msgstr "Overførings-ID"
980
+
981
+ #: wp-e-commerce/user-log.php:402
982
+ msgid "No transactions for this month."
983
+ msgstr "Ingen transaksjoner for denne måneden"
984
+
985
+ #: wp-e-commerce/user-log.php:413
986
+ msgid "There have not been any purchases yet."
987
+ msgstr "Det har ikke vært noen kjøp enda."
988
+
989
+ #: wp-e-commerce/user-log.php:426
990
+ msgid "You must be logged in to use this page. Please use the form below to login to your account."
991
+ msgstr "Du må være innlogget for å bruke denne siden. Bruk skjemaet under for å logga på kontoen din."
992
+
993
+ #: wp-e-commerce/wp-shopping-cart.old.php:57
994
+ msgid "Note: if this is blank, the image will not be resized"
995
+ msgstr "OBS: Dersom feltet er tomt vil ikke størrelse på bildet bli endret."
996
+
997
+ #: wp-e-commerce/wp-shopping-cart.old.php:377
998
+ #: wp-e-commerce/wp-shopping-cart.old.php:1660
999
+ #: wp-e-commerce/wp-shopping-cart.old.php:1666
1000
+ msgid "Text"
1001
+ msgstr "Tekst"
1002
+
1003
+ #: wp-e-commerce/wp-shopping-cart.old.php:380
1004
+ #: wp-e-commerce/wp-shopping-cart.old.php:1663
1005
+ #: wp-e-commerce/wp-shopping-cart.old.php:1674
1006
+ msgid "Textarea"
1007
+ msgstr "Tekstområde"
1008
+
1009
+ #: wp-e-commerce/wp-shopping-cart.old.php:381
1010
+ #: wp-e-commerce/wp-shopping-cart.old.php:1664
1011
+ #: wp-e-commerce/wp-shopping-cart.old.php:1675
1012
+ msgid "Heading"
1013
+ msgstr "Overskrift"
1014
+
1015
+ #: wp-e-commerce/wp-shopping-cart.old.php:382
1016
+ #: wp-e-commerce/wp-shopping-cart.old.php:1665
1017
+ #: wp-e-commerce/wp-shopping-cart.old.php:1676
1018
+ msgid "Coupon"
1019
+ msgstr "Rabattkupong"
1020
+
1021
+ #: wp-e-commerce/wp-shopping-cart.old.php:387
1022
+ #: wp-e-commerce/wp-shopping-cart.old.php:469
1023
+ msgid "Label"
1024
+ msgstr ""
1025
+
1026
+ #: wp-e-commerce/wp-shopping-cart.old.php:388
1027
+ msgid "Label Description"
1028
+ msgstr "Beskrivelse"
1029
+
1030
+ #: wp-e-commerce/wp-shopping-cart.old.php:389
1031
+ msgid "Item Number"
1032
+ msgstr "Varenummer"
1033
+
1034
+ #: wp-e-commerce/wp-shopping-cart.old.php:390
1035
+ msgid "Life Number"
1036
+ msgstr "Total inntekt"
1037
+
1038
+ #: wp-e-commerce/wp-shopping-cart.old.php:391
1039
+ msgid "Product Code"
1040
+ msgstr "Produktkode"
1041
+
1042
+ #: wp-e-commerce/wp-shopping-cart.old.php:392
1043
+ msgid "PDF"
1044
+ msgstr "PDF"
1045
+
1046
+ #: wp-e-commerce/wp-shopping-cart.old.php:394
1047
+ msgid " and above"
1048
+ msgstr "og over"
1049
+
1050
+ #: wp-e-commerce/wp-shopping-cart.old.php:395
1051
+ msgid "If price is "
1052
+ msgstr "Dersom prisen er"
1053
+
1054
+ #: wp-e-commerce/wp-shopping-cart.old.php:396
1055
+ msgid "If weight is "
1056
+ msgstr "Dersom vekten er"
1057
+
1058
+ #: wp-e-commerce/wp-shopping-cart.old.php:465
1059
+ msgid "Date requested"
1060
+ msgstr ""
1061
+
1062
+ #: wp-e-commerce/wp-shopping-cart.old.php:467
1063
+ msgid "Comment"
1064
+ msgstr "Kommentar"
1065
+
1066
+ #: wp-e-commerce/wp-shopping-cart.old.php:1016
1067
+ msgid "<strong>ERROR</strong>: Please enter a username."
1068
+ msgstr ""
1069
+
1070
+ #: wp-e-commerce/wp-shopping-cart.old.php:1020
1071
+ msgid "<strong>ERROR</strong>: Please type your e-mail address."
1072
+ msgstr ""
1073
+
1074
+ #: wp-e-commerce/wp-shopping-cart.old.php:1022
1075
+ msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
1076
+ msgstr ""
1077
+
1078
+ #: wp-e-commerce/wp-shopping-cart.old.php:1027
1079
+ msgid "<strong>ERROR</strong>: This username is invalid. Please enter a valid username."
1080
+ msgstr ""
1081
+
1082
+ #: wp-e-commerce/wp-shopping-cart.old.php:1032
1083
+ msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
1084
+ msgstr ""
1085
+
1086
+ #: wp-e-commerce/wp-shopping-cart.old.php:1037
1087
+ msgid "<strong>ERROR</strong>: This email address is already registered, please supply another."
1088
+ msgstr ""
1089
+
1090
+ #: wp-e-commerce/wp-shopping-cart.old.php:1047
1091
+ #, php-format
1092
+ msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
1093
+ msgstr ""
1094
+
1095
+ #: wp-e-commerce/wp-shopping-cart.old.php:1052
1096
+ msgid "Registration Complete"
1097
+ msgstr "Registrering fullført"
1098
+
1099
+ #: wp-e-commerce/wp-shopping-cart.old.php:1053
1100
+ #, php-format
1101
+ msgid "Username: %s"
1102
+ msgstr "Brukernavn: %s"
1103
+
1104
+ #: wp-e-commerce/wp-shopping-cart.old.php:1054
1105
+ #, php-format
1106
+ msgid "Password: %s"
1107
+ msgstr "Passord: %s"
1108
+
1109
+ #: wp-e-commerce/wp-shopping-cart.old.php:1054
1110
+ msgid "emailed to you"
1111
+ msgstr "sendt på e-post til deg"
1112
+
1113
+ #: wp-e-commerce/wp-shopping-cart.old.php:1055
1114
+ #, php-format
1115
+ msgid "E-mail: %s"
1116
+ msgstr "E-post: %s"
1117
+
1118
+ #: wp-e-commerce/wp-shopping-cart.old.php:1071
1119
+ msgid "Register"
1120
+ msgstr "Registrer"
1121
+
1122
+ #: wp-e-commerce/wp-shopping-cart.old.php:1212
1123
+ #: wp-e-commerce/wp-shopping-cart.old.php:1273
1124
+ msgid "This download is no longer valid, Please contact the site administrator for more information."
1125
+ msgstr ""
1126
+
1127
+ #: wp-e-commerce/wp-shopping-cart.old.php:1401
1128
+ msgid "Click stars to rate"
1129
+ msgstr "Trykk på stjernene for å avgi stemme"
1130
+
1131
+ #: wp-e-commerce/wp-shopping-cart.old.php:1406
1132
+ msgid "No Votes"
1133
+ msgstr "Ingen stemmer"
1134
+
1135
+ #: wp-e-commerce/wp-shopping-cart.old.php:1410
1136
+ msgid "1 Vote"
1137
+ msgstr "en stemme"
1138
+
1139
+ #: wp-e-commerce/wp-shopping-cart.old.php:1414
1140
+ msgid "Votes"
1141
+ msgstr "Stemmer"
1142
+
1143
+ #: wp-e-commerce/wp-shopping-cart.old.php:1429
1144
+ msgid "person has given this image"
1145
+ msgstr "person har gitt dette bildet"
1146
+
1147
+ #: wp-e-commerce/wp-shopping-cart.old.php:1433
1148
+ msgid "people have given this image"
1149
+ msgstr "folk har gitt dette bildet"
1150
+
1151
+ #: wp-e-commerce/wp-shopping-cart.old.php:1433
1152
+ msgid "stars."
1153
+ msgstr "stjerner."
1154
+
1155
+ #: wp-e-commerce/wp-shopping-cart.old.php:1546
1156
+ msgid "Your \"products page\" is not currently set to display any products. You need to select a product grouping to display by default. <br /> This is set in the Shop Settings page."
1157
+ msgstr ""
1158
+
1159
+ #: wp-e-commerce/wp-shopping-cart.old.php:1671
1160
+ msgid "Delivery Address"
1161
+ msgstr "Leveringsadresse"
1162
+
1163
+ #: wp-e-commerce/wp-shopping-cart.old.php:1672
1164
+ msgid "Delivery City"
1165
+ msgstr "Leveringssted"
1166
+
1167
+ #: wp-e-commerce/wp-shopping-cart.old.php:1673
1168
+ msgid "Delivery Country"
1169
+ msgstr "Leveringsland"
1170
+
1171
+ #: wp-e-commerce/wp-shopping-cart.old.php:1720
1172
+ msgid "The item has been added"
1173
+ msgstr "Objektet er lagt til"
1174
+
1175
+ #: wp-e-commerce/wp-shopping-cart.old.php:1722
1176
+ msgid "The item has not been added"
1177
+ msgstr "Objektet er ikke lagt til"
1178
+
1179
+ #: wp-e-commerce/wp-shopping-cart.old.php:1732
1180
+ msgid "Edit Variation Set"
1181
+ msgstr "Rediger variasjonsett"
1182
+
1183
+ #: wp-e-commerce/wp-shopping-cart.old.php:1743
1184
+ msgid "Add Variation Set"
1185
+ msgstr "Legg til variasjonsett"
1186
+
1187
+ #: wp-e-commerce/wp-shopping-cart.old.php:1792
1188
+ msgid "Add Value"
1189
+ msgstr "Legg til verdi"
1190
+
1191
+ #: wp-e-commerce/js/tinymce3/window.php:36
1192
+ #: wp-e-commerce/js/tinymce3/window.php:118
1193
+ msgid "Category"
1194
+ msgstr "Kategori"
1195
+
1196
+ #: wp-e-commerce/js/tinymce3/window.php:37
1197
+ msgid "Product Slider"
1198
+ msgstr "Produktbilder"
1199
+
1200
+ #: wp-e-commerce/js/tinymce3/window.php:38
1201
+ msgid "Add Product"
1202
+ msgstr "Legg til produkt"
1203
+
1204
+ #: wp-e-commerce/js/tinymce3/window.php:48
1205
+ #: wp-e-commerce/js/tinymce3/window.php:76
1206
+ msgid "Select Category"
1207
+ msgstr "Velg kategori"
1208
+
1209
+ #: wp-e-commerce/js/tinymce3/window.php:51
1210
+ #: wp-e-commerce/js/tinymce3/window.php:78
1211
+ #: wp-e-commerce/js/tinymce3/window.php:122
1212
+ msgid "No Category"
1213
+ msgstr "Ingen kategori"
1214
+
1215
+ #: wp-e-commerce/js/tinymce3/window.php:65
1216
+ msgid "Number of items per Page"
1217
+ msgstr "Antall varer per side"
1218
+
1219
+ #: wp-e-commerce/js/tinymce3/window.php:91
1220
+ msgid "Number of visible items"
1221
+ msgstr "Antall synlige varer"
1222
+
1223
+ #: wp-e-commerce/merchants/authorize.merchant.php:278
1224
+ msgid "There was an error contacting the payment gateway, please try again later."
1225
+ msgstr ""
1226
+
1227
+ #: wp-e-commerce/merchants/chronopay.php:440
1228
+ #: wp-e-commerce/merchants/paypal_multiple.php:554
1229
+ msgid "Update &raquo;"
1230
+ msgstr "Oppdater &raquo;"
1231
+
1232
+ #: wp-e-commerce/merchants/paypal-standard.merchant.php:134
1233
+ msgid "Your Subscription"
1234
+ msgstr "Ditt abonnement"
1235
+
1236
+ #: wp-e-commerce/merchants/paypal_certified.php:585
1237
+ #: wp-e-commerce/merchants/paypal_multiple.php:519
1238
+ msgid "Currency Converter"
1239
+ msgstr "Valutakalkulator"
1240
+
1241
+ #: wp-e-commerce/merchants/paypal_certified.php:588
1242
+ msgid "If your website uses a currency not accepted by Paypal, select an accepted currency using the drop down menu bellow. Buyers on your site will still pay in your local currency however we will send the order through to Paypal using currency you choose below."
1243
+ msgstr ""
1244
+
1245
+ #: wp-e-commerce/merchants/paypal_multiple.php:522
1246
+ #, php-format
1247
+ msgid "Your website uses <strong>%s</strong>. This currency is not supported by PayPal, please select a currency using the drop down menu below. Buyers on your site will still pay in your local currency however we will send the order through to Paypal using the currency you choose below."
1248
+ msgstr ""
1249
+
1250
+ #: wp-e-commerce/merchants/paypal_pro.php:196
1251
+ msgid "Sorry your transaction did not go through to Paypal successfully, please try again."
1252
+ msgstr ""
1253
+
1254
+ #: wp-e-commerce/merchants/paypal_pro.php:283
1255
+ msgid "API Username:"
1256
+ msgstr ""
1257
+
1258
+ #: wp-e-commerce/merchants/paypal_pro.php:291
1259
+ msgid "API Password:"
1260
+ msgstr "API-passord:"
1261
+
1262
+ #: wp-e-commerce/merchants/paypal_pro.php:299
1263
+ msgid "API Signature:"
1264
+ msgstr ""
1265
+
1266
+ #: wp-e-commerce/merchants/paypal_pro.php:307
1267
+ msgid "Test Mode Enabled:"
1268
+ msgstr "Testmodus er aktivert:"
1269
+
1270
+ #: wp-e-commerce/merchants/testmode.php:30
1271
+ msgid "Enter the payment instructions that you wish to display to your customers when they make a purchase"
1272
+ msgstr "Skriv inn betalingsinstruksene som skal vises kundene når de gjør et kjøp"
1273
+
1274
+ #: wp-e-commerce/merchants/testmode.php:32
1275
+ msgid "For example, this is where you the Shop Owner might enter your bank account details or address so that your customer can make their manual payment."
1276
+ msgstr ""
1277
+
1278
+ #: wp-e-commerce/shipping/flatrate.php:31
1279
+ msgid "If you do not wish to ship to a particular region, leave the field blank. To offer free shipping to a region, enter 0."
1280
+ msgstr ""
1281
+
1282
+ #: wp-e-commerce/shipping/tablerate.php:30
1283
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:189
1284
+ msgid "Total Price"
1285
+ msgstr "Total pris"
1286
+
1287
+ #: wp-e-commerce/shipping/tablerate.php:30
1288
+ #: wp-e-commerce/shipping/weightrate.php:30
1289
+ msgid "Shipping Price"
1290
+ msgstr "Fraktkostnad"
1291
+
1292
+ #: wp-e-commerce/shipping/ups.php:34
1293
+ msgid "Your Packaging"
1294
+ msgstr "Din innpakking"
1295
+
1296
+ #: wp-e-commerce/shipping/ups.php:35
1297
+ msgid "UPS Letter"
1298
+ msgstr ""
1299
+
1300
+ #: wp-e-commerce/shipping/ups.php:36
1301
+ msgid "UPS Express Box - Small"
1302
+ msgstr ""
1303
+
1304
+ #: wp-e-commerce/shipping/ups.php:37
1305
+ msgid "UPS Express Box - Medium"
1306
+ msgstr ""
1307
+
1308
+ #: wp-e-commerce/shipping/ups.php:38
1309
+ msgid "UPS Express Box - Large"
1310
+ msgstr ""
1311
+
1312
+ #: wp-e-commerce/shipping/ups.php:39
1313
+ msgid "UPS Tube"
1314
+ msgstr ""
1315
+
1316
+ #: wp-e-commerce/shipping/ups.php:40
1317
+ msgid "UPS Pak"
1318
+ msgstr ""
1319
+
1320
+ #: wp-e-commerce/shipping/ups.php:45
1321
+ msgid "Destination Type"
1322
+ msgstr "Destinasjonstype"
1323
+
1324
+ #: wp-e-commerce/shipping/ups.php:59
1325
+ msgid "Residential Address"
1326
+ msgstr "Leveringsadresse"
1327
+
1328
+ #: wp-e-commerce/shipping/ups.php:60
1329
+ msgid "Commercial Address"
1330
+ msgstr ""
1331
+
1332
+ #: wp-e-commerce/shipping/ups.php:66
1333
+ msgid "Packaging"
1334
+ msgstr ""
1335
+
1336
+ #: wp-e-commerce/shipping/ups.php:158
1337
+ msgid "Because your order is over 150lbs, the SIte Owner will contact you directly about shipping rates."
1338
+ msgstr ""
1339
+
1340
+ #: wp-e-commerce/shipping/usps.php:33
1341
+ msgid "USPS ID"
1342
+ msgstr "USPS-ID"
1343
+
1344
+ #: wp-e-commerce/shipping/usps.php:41
1345
+ msgid "USPS Password"
1346
+ msgstr "USPS-passord"
1347
+
1348
+ #: wp-e-commerce/shipping/weightrate.php:30
1349
+ msgid "Total weight <br />(<abbr alt=\"You must enter the weight here in pounds, regardless of what you used on your products\" title=\"You must enter the weight here in pounds, regardless of what you used on your products\">in Pounds</abbr>)"
1350
+ msgstr ""
1351
+
1352
+ #: wp-e-commerce/themes/default/cart_widget.php:15
1353
+ msgid "Number of items"
1354
+ msgstr "Antall varer"
1355
+
1356
+ #: wp-e-commerce/themes/default/cart_widget.php:23
1357
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:13
1358
+ msgid "Product"
1359
+ msgstr "Produkt"
1360
+
1361
+ #: wp-e-commerce/themes/default/cart_widget.php:24
1362
+ msgid "Qty"
1363
+ msgstr "Antall"
1364
+
1365
+ #: wp-e-commerce/themes/default/cart_widget.php:59
1366
+ msgid "Postage &amp; Tax "
1367
+ msgstr "Porto og merverdiavgift"
1368
+
1369
+ #: wp-e-commerce/themes/default/cart_widget.php:72
1370
+ msgid "Empty your cart"
1371
+ msgstr "Tøm handlekurven"
1372
+
1373
+ #: wp-e-commerce/themes/default/cart_widget.php:76
1374
+ msgid "Go to Checkout"
1375
+ msgstr "Gå til kassen"
1376
+
1377
+ #: wp-e-commerce/themes/default/cart_widget.php:78
1378
+ msgid "Your shopping cart is empty"
1379
+ msgstr "Handlekurven din er tom"
1380
+
1381
+ #: wp-e-commerce/themes/default/cart_widget.php:80
1382
+ msgid "Visit the shop"
1383
+ msgstr "Gå til butikken"
1384
+
1385
+ #: wp-e-commerce/themes/default/functions.php:15
1386
+ msgid "Page Number position"
1387
+ msgstr "Plassering for sidenummer"
1388
+
1389
+ #: wp-e-commerce/themes/default/grid_view.php:149
1390
+ #: wp-e-commerce/themes/default/list_view.php:163
1391
+ #: wp-e-commerce/themes/default/products_page.php:232
1392
+ msgid "This product has sold out."
1393
+ msgstr "Dette produktet er utsolgt."
1394
+
1395
+ #: wp-e-commerce/themes/default/grid_view.php:173
1396
+ #: wp-e-commerce/themes/default/list_view.php:185
1397
+ #: wp-e-commerce/themes/default/products_page.php:256
1398
+ msgid "There are no products in this group."
1399
+ msgstr "Det er ingen produkter i denne kategorien."
1400
+
1401
+ #: wp-e-commerce/themes/default/list_view.php:153
1402
+ #: wp-e-commerce/themes/default/products_page.php:222
1403
+ msgid "Buy Now"
1404
+ msgstr "Kjøp nå"
1405
+
1406
+ #: wp-e-commerce/themes/default/list_view.php:159
1407
+ #: wp-e-commerce/themes/default/products_page.php:228
1408
+ msgid "Updating cart..."
1409
+ msgstr "Oppdaterer handlekurven..."
1410
+
1411
+ #: wp-e-commerce/themes/default/products_page.php:197
1412
+ msgid "Donation"
1413
+ msgstr "Donasjon"
1414
+
1415
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:9
1416
+ msgid "Please review your order"
1417
+ msgstr "Se gjennom bestillingen din"
1418
+
1419
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:32
1420
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:57
1421
+ msgid "Update"
1422
+ msgstr "Oppdater"
1423
+
1424
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:41
1425
+ msgid "Remove"
1426
+ msgstr "Slett"
1427
+
1428
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:50
1429
+ msgid "Coupon is not valid."
1430
+ msgstr "Rabattkupongen er ikke gyldig."
1431
+
1432
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:53
1433
+ msgid "Enter your coupon number"
1434
+ msgstr "Skriv inn ditt rabattkupongnummer"
1435
+
1436
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:82
1437
+ msgid "Calculate Shipping Price"
1438
+ msgstr "Kalkuler porto"
1439
+
1440
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:86
1441
+ msgid "Please choose a country below to calculate your shipping costs"
1442
+ msgstr "Velg land under for å kalkulere fraktkostnader"
1443
+
1444
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:95
1445
+ msgid "Please provide a Zipcode and click Calculate in order to continue."
1446
+ msgstr "Velg postnummer og trykk kalkuler for å fortsette."
1447
+
1448
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:102
1449
+ msgid "Sorry, online ordering is unavailable to this destination and/or weight. Please double check your destination details."
1450
+ msgstr ""
1451
+
1452
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:120
1453
+ msgid "- Choose a Shipping Rate"
1454
+ msgstr "- Velg en fraktsats"
1455
+
1456
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:210
1457
+ msgid "Not yet a member?"
1458
+ msgstr "Ikke medlem ennå?"
1459
+
1460
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:211
1461
+ msgid "In order to buy from us, you'll need an account. Joining is free and easy. All you need is a username, password and valid email address."
1462
+ msgstr ""
1463
+
1464
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:225
1465
+ msgid "Username"
1466
+ msgstr "Brukernavn"
1467
+
1468
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:226
1469
+ msgid "Password"
1470
+ msgstr "Passord"
1471
+
1472
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:231
1473
+ msgid "Please enter your contact details:"
1474
+ msgstr "Skriv inn kontaktinformasjonen din:"
1475
+
1476
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:233
1477
+ msgid "Fields marked with an asterisk must be filled in."
1478
+ msgstr "Feltene merket med stjerne må fylles ut."
1479
+
1480
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:308
1481
+ msgid "Select a payment gateway"
1482
+ msgstr "Velg en betalingsterminal"
1483
+
1484
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:342
1485
+ msgid "I agree to The "
1486
+ msgstr "Jeg aksepterer alle "
1487
+
1488
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:343
1489
+ msgid "Terms and Conditions"
1490
+ msgstr "Vilkår og Betingelser"
1491
+
1492
+ #: wp-e-commerce/themes/default/shopping_cart_page.php:355
1493
+ msgid "Make Purchase"
1494
+ msgstr "Kjøp"
1495
+
1496
+ #: wp-e-commerce/themes/default/single_product.php:93
1497
+ #: wp-e-commerce/themes/iShop/single_product.php:94
1498
+ msgid "Personalize your product"
1499
+ msgstr "Personliggjør produktet ditt"
1500
+
1501
+ #: wp-e-commerce/themes/default/single_product.php:94
1502
+ #: wp-e-commerce/themes/iShop/single_product.php:95
1503
+ msgid "Complete this form to include a personalized message with your purchase."
1504
+ msgstr ""
1505
+
1506
+ #: wp-e-commerce/themes/default/single_product.php:101
1507
+ #: wp-e-commerce/themes/iShop/single_product.php:102
1508
+ msgid "Upload a File"
1509
+ msgstr "Last opp en fil"
1510
+
1511
+ #: wp-e-commerce/themes/default/single_product.php:102
1512
+ #: wp-e-commerce/themes/iShop/single_product.php:103
1513
+ msgid "Select a file from your computer to include with this purchase. "
1514
+ msgstr "Hent en fil fra datamaskinen din som skal inkluderes i kjøpet ditt."
1515
+
1516
+ #: wp-e-commerce/updates/updating_tasks.php:53
1517
+ msgid ""
1518
+ "Your purchase from %shop_name% has just been dispatched. It should arrive soon. To keep track of your products status a tracking id has been attached. \\r\\n"
1519
+ " your tracking id is: %trackid%"
1520
+ msgstr ""
1521
+
1522
+ #: wp-e-commerce/updates/updating_tasks.php:56
1523
+ msgid "Your Order from %shop_name% has been dispatched"
1524
+ msgstr "Din bestilling fra %shop_name% har blitt sendt ut"
1525
+
1526
+ #: wp-e-commerce/widgets/admin_menu_widget.php:8
1527
+ #: wp-e-commerce/widgets/admin_menu_widget.php:22
1528
+ msgid "Admin Menu"
1529
+ msgstr "Admin-meny"
1530
+
1531
+ #: wp-e-commerce/widgets/category_widget.27.php:19
1532
+ #: wp-e-commerce/wpsc-admin/admin.php:101
1533
+ msgid "Categories"
1534
+ msgstr "Kategorier"
1535
+
1536
+ #: wp-e-commerce/widgets/category_widget.27.php:134
1537
+ #: wp-e-commerce/widgets/category_widget.28.php:69
1538
+ #: wp-e-commerce/widgets/donations_widget.php:71
1539
+ #: wp-e-commerce/widgets/latest_product_widget.php:73
1540
+ #: wp-e-commerce/widgets/price_range_widget.php:71
1541
+ #: wp-e-commerce/widgets/product_tag_widget.php:30
1542
+ #: wp-e-commerce/widgets/shopping_cart_widget.php:66
1543
+ #: wp-e-commerce/widgets/specials_widget.php:103
1544
+ msgid "Title:"
1545
+ msgstr "Tittel:"
1546
+
1547
+ #: wp-e-commerce/widgets/category_widget.27.php:159
1548
+ #: wp-e-commerce/widgets/category_widget.28.php:80
1549
+ msgid "Display the :category: Group"
1550
+ msgstr "Vis gruppen :category:"
1551
+
1552
+ #: wp-e-commerce/widgets/category_widget.27.php:168
1553
+ #: wp-e-commerce/widgets/category_widget.28.php:88
1554
+ msgid "Display the Group thumbnails in the sidebar"
1555
+ msgstr "Vis miniatyrbilder for kategorier i sidestolpen"
1556
+
1557
+ #: wp-e-commerce/widgets/category_widget.27.php:179
1558
+ #: wp-e-commerce/widgets/category_widget.28.php:11
1559
+ msgid "Product Grouping Widget"
1560
+ msgstr "Produktgrupperings Widget"
1561
+
1562
+ #: wp-e-commerce/widgets/category_widget.27.php:181
1563
+ #: wp-e-commerce/widgets/category_widget.28.php:12
1564
+ #: wp-e-commerce/widgets/category_widget.28.php:19
1565
+ msgid "Product Categories"
1566
+ msgstr "Produktkategorier"
1567
+
1568
+ #: wp-e-commerce/widgets/latest_product_widget.php:7
1569
+ #: wp-e-commerce/widgets/latest_product_widget.php:87
1570
+ #: wp-e-commerce/widgets/latest_product_widget.php:88
1571
+ msgid "Latest Products"
1572
+ msgstr "Nyeste produkter"
1573
+
1574
+ #: wp-e-commerce/widgets/latest_product_widget.php:74
1575
+ msgid "Number of products to show:"
1576
+ msgstr "Antall produkter som skal vises:"
1577
+
1578
+ #: wp-e-commerce/widgets/price_range_widget.php:6
1579
+ #: wp-e-commerce/widgets/price_range_widget.php:77
1580
+ #: wp-e-commerce/widgets/price_range_widget.php:78
1581
+ msgid "Price Range"
1582
+ msgstr "Prisområde"
1583
+
1584
+ #: wp-e-commerce/widgets/price_range_widget.php:54
1585
+ msgid "Show All"
1586
+ msgstr "Vis alle"
1587
+
1588
+ #: wp-e-commerce/widgets/product_tag_widget.php:9
1589
+ #: wp-e-commerce/widgets/product_tag_widget.php:38
1590
+ #: wp-e-commerce/widgets/product_tag_widget.php:39
1591
+ msgid "Product Tags"
1592
+ msgstr "Produktstikkord"
1593
+
1594
+ #: wp-e-commerce/widgets/shopping_cart_widget.php:37
1595
+ #: wp-e-commerce/widgets/shopping_cart_widget.php:42
1596
+ msgid "Loading..."
1597
+ msgstr "Laster..."
1598
+
1599
+ #: wp-e-commerce/widgets/specials_widget.php:10
1600
+ #: wp-e-commerce/widgets/specials_widget.php:112
1601
+ #: wp-e-commerce/widgets/specials_widget.php:113
1602
+ msgid "Product Specials"
1603
+ msgstr "Tilbudsprodukter"
1604
+
1605
+ #: wp-e-commerce/widgets/specials_widget.php:106
1606
+ msgid "Show Description:"
1607
+ msgstr "Vis beskrivelse:"
1608
+
1609
+ #: wp-e-commerce/wpsc-admin/admin.php:75
1610
+ #: wp-e-commerce/wpsc-admin/admin.php:78
1611
+ #: wp-e-commerce/wpsc-admin/admin.php:80
1612
+ #: wp-e-commerce/wpsc-admin/admin.php:85
1613
+ #: wp-e-commerce/wpsc-admin/admin.php:88
1614
+ #: wp-e-commerce/wpsc-admin/admin.php:98
1615
+ msgid "Products"
1616
+ msgstr "Produkter"
1617
+
1618
+ #: wp-e-commerce/wpsc-admin/admin.php:93
1619
+ #: wp-e-commerce/wpsc-admin/admin.php:421
1620
+ #: wp-e-commerce/wpsc-admin/admin.php:451
1621
+ msgid "Sales"
1622
+ msgstr "Salg"
1623
+
1624
+ #: wp-e-commerce/wpsc-admin/admin.php:105
1625
+ msgid "Variations"
1626
+ msgstr "Variasjoner"
1627
+
1628
+ #: wp-e-commerce/wpsc-admin/admin.php:126
1629
+ msgid "Marketing"
1630
+ msgstr "Markedsføring"
1631
+
1632
+ #: wp-e-commerce/wpsc-admin/admin.php:132
1633
+ msgid "Upgrades"
1634
+ msgstr "Oppgraderinger"
1635
+
1636
+ #: wp-e-commerce/wpsc-admin/admin.php:136
1637
+ msgid "- Debug"
1638
+ msgstr "- Feilsøk"
1639
+
1640
+ #: wp-e-commerce/wpsc-admin/admin.php:202
1641
+ msgid "Tags used on this post:"
1642
+ msgstr "Stikkord brukt på dette innlegget:"
1643
+
1644
+ #: wp-e-commerce/wpsc-admin/admin.php:204
1645
+ msgid "Add new tag"
1646
+ msgstr "Legg til stikkord"
1647
+
1648
+ #: wp-e-commerce/wpsc-admin/admin.php:205
1649
+ msgid "Separate tags with commas"
1650
+ msgstr "Separer stikkord med komma"
1651
+
1652
+ #: wp-e-commerce/wpsc-admin/admin.php:408
1653
+ msgid "Last 30 Days"
1654
+ msgstr "De siste 30 dagene"
1655
+
1656
+ #: wp-e-commerce/wpsc-admin/admin.php:427
1657
+ #: wp-e-commerce/wpsc-admin/admin.php:457
1658
+ msgid "Orders"
1659
+ msgstr "Bestillinger"
1660
+
1661
+ #: wp-e-commerce/wpsc-admin/admin.php:437
1662
+ #: wp-e-commerce/wpsc-admin/admin.php:469
1663
+ msgid "Avg Orders"
1664
+ msgstr "Gjennomsnitt bestillinger"
1665
+
1666
+ #: wp-e-commerce/wpsc-admin/admin.php:447
1667
+ msgid "Life Time"
1668
+ msgstr "Total inntekt"
1669
+
1670
+ #: wp-e-commerce/wpsc-admin/admin.php:486
1671
+ #: wp-e-commerce/wpsc-admin/admin.php:714
1672
+ msgid "e-Commerce"
1673
+ msgstr "e-handel"
1674
+
1675
+ #: wp-e-commerce/wpsc-admin/admin.php:503
1676
+ msgid "E-Commerce"
1677
+ msgstr "e-handel"
1678
+
1679
+ #: wp-e-commerce/wpsc-admin/admin.php:620
1680
+ msgid "Sales by Quarter"
1681
+ msgstr "Salg per kvartal"
1682
+
1683
+ #: wp-e-commerce/wpsc-admin/admin.php:706
1684
+ msgid "Sales by"
1685
+ msgstr "Salg etter"
1686
+
1687
+ #: wp-e-commerce/wpsc-admin/ajax-and-init.php:966
1688
+ msgid "Your Order"
1689
+ msgstr "Din bestilling"
1690
+
1691
+ #: wp-e-commerce/wpsc-admin/ajax-and-init.php:1213
1692
+ msgid "The administrator has unlocked your file"
1693
+ msgstr "Administratoren har låst opp filen din"
1694
+
1695
+ #: wp-e-commerce/wpsc-admin/ajax-and-init.php:1213
1696
+ msgid "Dear CustomerWe are pleased to advise you that your order has been updated and your downloads are now active.Please download your purchase using the links provided below.[download_links]Thank you for your custom."
1697
+ msgstr ""
1698
+
1699
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:41
1700
+ msgid "Select the markets you are selling this category to."
1701
+ msgstr ""
1702
+
1703
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:456
1704
+ msgid "The product group has been edited."
1705
+ msgstr "Kategorien har blitt endret."
1706
+
1707
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:461
1708
+ msgid "The group has been added."
1709
+ msgstr "Kategorien er lagt til."
1710
+
1711
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:473
1712
+ msgid "The group has been edited."
1713
+ msgstr "Kategorien er endret."
1714
+
1715
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:529
1716
+ msgid "Are you sure you want to delete this category? If the category has any subcategories, they will be deleted too."
1717
+ msgstr "Er du sikker på at du vil slette denne kategorien? Dersom kategorien har underkategorier vil de også bli slettet."
1718
+
1719
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:537
1720
+ msgid "Are you sure you want to delete this product group? All categories it contains will be deleted too."
1721
+ msgstr "Er du sikker på at du vil slette denne kategorien? Dersom kategorien har underkategorier vil de også bli slettet."
1722
+
1723
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:560
1724
+ msgid "Categorizing your products into groups help your customers find them. For instance if you sell hats and trousers you might want to setup a Group called clothes and add hats and trousers to that group."
1725
+ msgstr ""
1726
+
1727
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:575
1728
+ msgid "Select a Group to Manage"
1729
+ msgstr ""
1730
+
1731
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:593
1732
+ msgid "or"
1733
+ msgstr "eller"
1734
+
1735
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:595
1736
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:612
1737
+ msgid "Add New Group"
1738
+ msgstr "Legg til kategori"
1739
+
1740
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:602
1741
+ msgid "About This Page"
1742
+ msgstr "Om denne siden"
1743
+
1744
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:671
1745
+ msgid "&quot;[categorisation]&quot; Group"
1746
+ msgstr "&quot;[categorisation]&quot;-gruppen"
1747
+
1748
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:681
1749
+ msgid "Image"
1750
+ msgstr "Bilde"
1751
+
1752
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:725
1753
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:729
1754
+ msgid "You are editing an item in the &quot;[categorisation]&quot; Group"
1755
+ msgstr "Du redigerer en vare i gruppen &quot;[categorisation]&quot;"
1756
+
1757
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:728
1758
+ msgid "Edit Details"
1759
+ msgstr "Rediger detaljer"
1760
+
1761
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:744
1762
+ msgid "Add Category"
1763
+ msgstr "Legg til kategori"
1764
+
1765
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:747
1766
+ msgid "Adding a new category here will make it available when you add or edit a product."
1767
+ msgstr ""
1768
+
1769
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:753
1770
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:756
1771
+ msgid "You are adding a new item to the &quot;[categorisation]&quot; Group"
1772
+ msgstr "Du legger til en ny vare i gruppen &quot;[categorisation]&quot;"
1773
+
1774
+ #: wp-e-commerce/wpsc-admin/display-groups.page.php:874
1775
+ msgid "Add Group"
1776
+ msgstr "Legg til gruppe"
1777
+
1778
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:29
1779
+ msgid "Display Products"
1780
+ msgstr "Vis produkter"
1781
+
1782
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:74
1783
+ #: wp-e-commerce/wpsc-admin/display-variations.page.php:49
1784
+ msgid "Product updated."
1785
+ msgstr "Produktet ble oppdatert."
1786
+
1787
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:114
1788
+ msgid "The following directories are not writable: :directory: You won&#39;t be able to upload any images or files here. You will need to change the permissions on these directories to make them writable."
1789
+ msgstr "Følgende mapper kan ikke skrives til: :directory: Du kan ikke laste opp bilder eller filer her. Du må endre tilgangsrettigheter for på mappene for å kunne lagre her."
1790
+
1791
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:147
1792
+ msgid ""
1793
+ "You are about to delete the selected products.\n"
1794
+ " 'Cancel' to stop, 'OK' to delete."
1795
+ msgstr ""
1796
+
1797
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:222
1798
+ msgid "&laquo;"
1799
+ msgstr "&laquo;"
1800
+
1801
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:223
1802
+ msgid "&raquo;"
1803
+ msgstr "&raquo;"
1804
+
1805
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:260
1806
+ msgid "Search"
1807
+ msgstr "Søk"
1808
+
1809
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:265
1810
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:380
1811
+ msgid "Bulk Actions"
1812
+ msgstr "Massehandlinger"
1813
+
1814
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:267
1815
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:396
1816
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:816
1817
+ msgid "Publish"
1818
+ msgstr "Publiser"
1819
+
1820
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:268
1821
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:343
1822
+ msgid "Draft"
1823
+ msgstr "Kladd"
1824
+
1825
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:272
1826
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:389
1827
+ msgid "Apply"
1828
+ msgstr "Bruk"
1829
+
1830
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:308
1831
+ msgid "No Name"
1832
+ msgstr "Ingen navn"
1833
+
1834
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:367
1835
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:341
1836
+ msgid "Delete this product"
1837
+ msgstr "Slett dette produktet"
1838
+
1839
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:369
1840
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:341
1841
+ #, php-format
1842
+ msgid ""
1843
+ "You are about to delete this product '%s'\n"
1844
+ " 'Cancel' to stop, 'OK' to delete."
1845
+ msgstr ""
1846
+ "Du er i ferd med å slette dette produktet '%s'\n"
1847
+ "'Avbryt' for å stoppe, 'OK' for å slette."
1848
+
1849
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:394
1850
+ msgid "Unpublish"
1851
+ msgstr "Gjør privat"
1852
+
1853
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:423
1854
+ msgid "You have no products added."
1855
+ msgstr "Du har ikke lagt til noen produkter."
1856
+
1857
+ #: wp-e-commerce/wpsc-admin/display-items.page.php:440
1858
+ msgid "View All Categories"
1859
+ msgstr "Se alle kategorier"
1860
+
1861
+ #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:37
1862
+ msgid "Thanks, your thumbnail images have been resized."
1863
+ msgstr "Takk, størrelsen på miniatyrbildene er endret."
1864
+
1865
+ #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:92
1866
+ msgid "General"
1867
+ msgstr "Generell"
1868
+
1869
+ #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:93
1870
+ msgid "Presentation"
1871
+ msgstr "Presentasjon"
1872
+
1873
+ #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:94
1874
+ msgid "Admin"
1875
+ msgstr "Admin"
1876
+
1877
+ #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:96
1878
+ msgid "Payment Options"
1879
+ msgstr "Betalingsalternativer"
1880
+
1881
+ #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:97
1882
+ msgid "Import"
1883
+ msgstr "Importer"
1884
+
1885
+ #: wp-e-commerce/wpsc-admin/display-options-settings.page.php:169
1886
+ msgid "To configure a shipping module select one on the left."
1887
+ msgstr ""
1888
+
1889
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:76
1890
+ msgid "When upgrading the Wp-E-Commerce Plugin from 3.6.* to 3.7 it is required that you associate your checkout form fields with the new Purchase Logs system. To do so please "
1891
+ msgstr ""
1892
+
1893
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:158
1894
+ msgid "Shipping Options"
1895
+ msgstr "Sendingsalternativer"
1896
+
1897
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:161
1898
+ msgid "Shipping Method:"
1899
+ msgstr "Sendingsmåter"
1900
+
1901
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:162
1902
+ msgid "Shipping Option:"
1903
+ msgstr "Sendingsopsjon:"
1904
+
1905
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:164
1906
+ msgid "Tracking ID:"
1907
+ msgstr "Sporingsnummer:"
1908
+
1909
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:165
1910
+ msgid "Shipping Status:"
1911
+ msgstr "Sendingsstatus:"
1912
+
1913
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:166
1914
+ msgid "Track History:"
1915
+ msgstr ""
1916
+
1917
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:172
1918
+ msgid "Billing Details"
1919
+ msgstr "Fakturadetaljer"
1920
+
1921
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:173
1922
+ msgid "Purchase Log Date:"
1923
+ msgstr "Kjøpsloggdato:"
1924
+
1925
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:174
1926
+ msgid "Purchase Number:"
1927
+ msgstr "Kjøpsnummer:"
1928
+
1929
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:175
1930
+ msgid "Buyers Name:"
1931
+ msgstr "Kjøpers navn:"
1932
+
1933
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:176
1934
+ msgid "Address:"
1935
+ msgstr "Adresse:"
1936
+
1937
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:178
1938
+ msgid "Phone:"
1939
+ msgstr "Telefon:"
1940
+
1941
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:179
1942
+ msgid "Email:"
1943
+ msgstr "E-post:"
1944
+
1945
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:180
1946
+ msgid "Payment Method:"
1947
+ msgstr "Betalingsmåte:"
1948
+
1949
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:182
1950
+ msgid "How User Found Us:"
1951
+ msgstr "Hvordan kunde fant oss:"
1952
+
1953
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:188
1954
+ msgid "Items Ordered"
1955
+ msgstr "Bestillte varer"
1956
+
1957
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:230
1958
+ msgid "Order Status:"
1959
+ msgstr "Status for bestillingen:"
1960
+
1961
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:250
1962
+ msgid "Actions"
1963
+ msgstr "Handlinger"
1964
+
1965
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:254
1966
+ msgid "View Packing Slip"
1967
+ msgstr "Vis pakkseddel"
1968
+
1969
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:256
1970
+ msgid "Resend Receipt to Buyer"
1971
+ msgstr "Send kvittering til kjøper på nytt"
1972
+
1973
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:258
1974
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:509
1975
+ msgid "Delete this log"
1976
+ msgstr "Slett denne loggen"
1977
+
1978
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:258
1979
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:509
1980
+ #, php-format
1981
+ msgid ""
1982
+ "You are about to delete this log '%s'\n"
1983
+ " 'Cancel' to stop, 'OK' to delete."
1984
+ msgstr ""
1985
+
1986
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:258
1987
+ msgid "Remove this record"
1988
+ msgstr "Fjern denne oppføringen"
1989
+
1990
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:260
1991
+ msgid "Go Back"
1992
+ msgstr "Gå tilbake"
1993
+
1994
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:275
1995
+ msgid "e-Commerce Admin Menu"
1996
+ msgstr "e-handel admin-meny"
1997
+
1998
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:278
1999
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:279
2000
+ msgid "Checkout Settings"
2001
+ msgstr "Kasseinnstillinger"
2002
+
2003
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:294
2004
+ msgid "WP e-Commerce News"
2005
+ msgstr "Nyheter om WP e-Commerce"
2006
+
2007
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:316
2008
+ msgid "Order Summary"
2009
+ msgstr "Sammendrag av bestillingen"
2010
+
2011
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:328
2012
+ msgid "(accepted payments)"
2013
+ msgstr "(aksepterte betalingsmåter)"
2014
+
2015
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:343
2016
+ msgid "Subscribe to your orders"
2017
+ msgstr "Abonner på bestillingene dine"
2018
+
2019
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:345
2020
+ msgid "Subscribe to an RSS feed"
2021
+ msgstr "Abonner på en RSS-kanal"
2022
+
2023
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:345
2024
+ msgid "of your orders"
2025
+ msgstr "av bestillingene dine"
2026
+
2027
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:348
2028
+ msgid "Plugin News"
2029
+ msgstr "Innstikknyheter"
2030
+
2031
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:350
2032
+ msgid "The <a href=\"http://instinct.co.nz/blogshop/products-page/\" target=\"_blank\">WP DropShop Module</a> is the latest and most cutting edge shopping cart available online. Coupled with Grid View then your site will be the talk of street! <br/><br/>The <a href=\"http://instinct.co.nz/blogshop/products-page/\" target=\"_blank\">GridView Module</a> is a visual module built to enhance the way your product page looks.<br/><br/><a href=\"http://www.instinct.co.nz/wp-campaign-monitor/100\">WP Campaign Monitor</a> is an email newsletter tool built just for WP users who want to send campaigns, track the results and manage their subscribers. The latest version integrates with e-commerce lite meaning that you will be able to send buyers email newsletters and much more. "
2033
+ msgstr ""
2034
+
2035
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:351
2036
+ msgid "This shop is powered by "
2037
+ msgstr "Denne butikken blir drevet med "
2038
+
2039
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:360
2040
+ msgid "Upgrade to Gold"
2041
+ msgstr "Oppgrader til Gold"
2042
+
2043
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:360
2044
+ msgid " and unleash more functionality into your shop."
2045
+ msgstr ""
2046
+
2047
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:391
2048
+ msgid "View:"
2049
+ msgstr "Vis:"
2050
+
2051
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:430
2052
+ msgid "Filter"
2053
+ msgstr "Filtrer"
2054
+
2055
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:433
2056
+ msgid "Oops there are no purchase logs for your selection, please try again."
2057
+ msgstr ""
2058
+
2059
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:453
2060
+ msgid "Total:"
2061
+ msgstr "Totalt:"
2062
+
2063
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:465
2064
+ msgid "Download CSV"
2065
+ msgstr "Last ned CSV"
2066
+
2067
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:474
2068
+ msgid ""
2069
+ "You are about to delete the selected purchase logs.\n"
2070
+ " 'Cancel' to stop, 'OK' to delete."
2071
+ msgstr ""
2072
+
2073
+ #: wp-e-commerce/wpsc-admin/display-sales-logs.php:537
2074
+ msgid "Search Logs"
2075
+ msgstr "Søk i logger"
2076
+
2077
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:12
2078
+ msgid "WP e-Commerce Upgrades"
2079
+ msgstr "Oppgraderinger til WP e-Commerce"
2080
+
2081
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:13
2082
+ msgid "Add more functionality to your e-Commerce site. Prices may be subject to change."
2083
+ msgstr "Legg mer funksjonalitet til din nettbutikk. Prisene kan endre seg."
2084
+
2085
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:18
2086
+ msgid "Pure Gold"
2087
+ msgstr ""
2088
+
2089
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:24
2090
+ msgid "DropShop"
2091
+ msgstr "DropShop"
2092
+
2093
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:30
2094
+ msgid "MP3 Player"
2095
+ msgstr "MP3-spiller"
2096
+
2097
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:36
2098
+ msgid "Members Only Module"
2099
+ msgstr "Kun for medlemmer-modul"
2100
+
2101
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:48
2102
+ msgid "NextGen Gallery Buy Now Buttons"
2103
+ msgstr "NextGEN-galleri Kjøp-nå-knapper"
2104
+
2105
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:71
2106
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:79
2107
+ msgid "API Key Reset"
2108
+ msgstr "Nullstill API-nøkkel"
2109
+
2110
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:74
2111
+ msgid "Enter your API name and key to release it from an old site that you no longer use."
2112
+ msgstr ""
2113
+
2114
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:85
2115
+ msgid "API Key"
2116
+ msgstr "API-nøkkel"
2117
+
2118
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:90
2119
+ msgid "Reset API Key"
2120
+ msgstr "Nullstill API-nøkkel"
2121
+
2122
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:99
2123
+ msgid "Upgrade Instructions"
2124
+ msgstr "Oppgraderingsinstruksjoner"
2125
+
2126
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:101
2127
+ #, php-format
2128
+ msgid "Copy the gold_cart_files directory into the %s folder."
2129
+ msgstr ""
2130
+
2131
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:104
2132
+ msgid "This folder should be automatically created when the e-commerce plugin is activated, but if it is not, you will have to create it yourself."
2133
+ msgstr ""
2134
+
2135
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:107
2136
+ msgid "Now a new panel should appear in the Upgrades page where you must enter your API Username and API Key. "
2137
+ msgstr ""
2138
+
2139
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:110
2140
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:113
2141
+ msgid "For more information visit our documentation page."
2142
+ msgstr "Besøk dokumentasjonsiden vår for mer informasjon."
2143
+
2144
+ #: wp-e-commerce/wpsc-admin/display-upgrades.page.php:157
2145
+ msgid "Your API key has been Reset"
2146
+ msgstr "API-nøkkelen din er nullstillt"
2147
+
2148
+ #: wp-e-commerce/wpsc-admin/display-variations.page.php:21
2149
+ msgid "Are you sure you want to delete this product?"
2150
+ msgstr "Er du sikker på at du vil slette dette produktet?"
2151
+
2152
+ #: wp-e-commerce/wpsc-admin/display-variations.page.php:37
2153
+ msgid "Display Variations"
2154
+ msgstr "Vis variasjoner"
2155
+
2156
+ #: wp-e-commerce/wpsc-admin/display-variations.page.php:39
2157
+ msgid "A variation can be anything \"optional\" about a product. ie: Size, Color, etc <br />For example: if you are selling t-shirts you might setup a variation set called size with the values small, medium, large..."
2158
+ msgstr "En variasjon er en valgfri egenskap for et produkt. Det kan være størrelse, farge, osv <br />Foreksempel: hvis du selger t-skjorter kan du lage en varisjon som du kaller størrelse og som har verdiene liten, medium, stor..."
2159
+
2160
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:133
2161
+ msgid "Edit Product"
2162
+ msgstr "Rediger produkt"
2163
+
2164
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:144
2165
+ msgid "Product Name"
2166
+ msgstr "Produktnavn"
2167
+
2168
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:153
2169
+ msgid "Display Product Shortcode"
2170
+ msgstr "Vis produktkortkode"
2171
+
2172
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:154
2173
+ msgid "Buy Now Shortcode"
2174
+ msgstr ""
2175
+
2176
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:155
2177
+ msgid "Add to Cart Shortcode"
2178
+ msgstr "Legg i handlekurven-kortkode"
2179
+
2180
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:161
2181
+ msgid "Display Product Template Tag"
2182
+ msgstr "Vis produktmal-stikkord"
2183
+
2184
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:162
2185
+ msgid "Buy Now PHP"
2186
+ msgstr "Kjøp nå PHP"
2187
+
2188
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:163
2189
+ msgid "Add to Cart PHP"
2190
+ msgstr "Legg i handlekurven PHP"
2191
+
2192
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:164
2193
+ msgid "Display Product SKU"
2194
+ msgstr "Vis varenummer"
2195
+
2196
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:180
2197
+ msgid "Stock Keeping Unit"
2198
+ msgstr "Varenummer"
2199
+
2200
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:188
2201
+ msgid "Sale Price :"
2202
+ msgstr "Tilbudspris:"
2203
+
2204
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:205
2205
+ msgid "New Currency"
2206
+ msgstr "Ny valuta"
2207
+
2208
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:233
2209
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:272
2210
+ msgid "Delete Currency"
2211
+ msgstr "Slett valuta"
2212
+
2213
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:290
2214
+ msgid "Additional Description"
2215
+ msgstr "Tilleggsinformasjon"
2216
+
2217
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:340
2218
+ msgid "Update Product"
2219
+ msgstr "Oppdater produkt"
2220
+
2221
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:364
2222
+ msgid "Categories and Tags"
2223
+ msgstr "Kategorier og stikkord"
2224
+
2225
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:403
2226
+ msgid "Select &quot;[categorisation]&quot;"
2227
+ msgstr "Velg &quot;[categorisation]&quot;"
2228
+
2229
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:459
2230
+ msgid "Price and Stock Control"
2231
+ msgstr "Pris- og lagerkontroll"
2232
+
2233
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:469
2234
+ #, php-format
2235
+ msgid "Do not include tax (tax is set in <a href=\"%s\"/wp-admin/admin.php?page=wpsc-settings\">shop config</a>)"
2236
+ msgstr "Ikke inkluder merverdiavgift (merverdiavgift konfigureres <a href=\"%s\"/wp-admin/admin.php?page=wpsc-settings\">her</a>)"
2237
+
2238
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:476
2239
+ msgid "This is a donation, checking this box populates the donations widget."
2240
+ msgstr "Dette er en donasjon, avkrysning her genererer donasjons-widgeten."
2241
+
2242
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:486
2243
+ msgid "Table Rate Price"
2244
+ msgstr ""
2245
+
2246
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:527
2247
+ msgid "Custom Tax Rate"
2248
+ msgstr ""
2249
+
2250
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:541
2251
+ msgid "I have a limited number of this item in stock. If the stock runs out, this product will not be available on the shop unless you untick this box or add more stock."
2252
+ msgstr "Det er få eksemplarer av denne varen på lager. Dersom lageret blir tomt vil ikke dette produktet være tilgjengelig i butikken med mindre du øker lagerbeholdningen eller fjerner avkrysningen i denne boksen."
2253
+
2254
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:556
2255
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:570
2256
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:577
2257
+ msgid "If this product runs out of stock set status to Unpublished & email site owner"
2258
+ msgstr ""
2259
+
2260
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:569
2261
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:576
2262
+ msgid "Stock Qty"
2263
+ msgstr "Lagerbeholdning"
2264
+
2265
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:603
2266
+ msgid "Variation Control"
2267
+ msgstr "Variasjonskontroll"
2268
+
2269
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:607
2270
+ msgid "+ Add New Variations"
2271
+ msgstr "+ Legg til variasjoner"
2272
+
2273
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:653
2274
+ msgid "Weight"
2275
+ msgstr "Vekt"
2276
+
2277
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:717
2278
+ msgid "Flat Rate Settings"
2279
+ msgstr ""
2280
+
2281
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:722
2282
+ msgid "Local Shipping Fee"
2283
+ msgstr "Porto lokalt"
2284
+
2285
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:731
2286
+ msgid "International Shipping Fee"
2287
+ msgstr "Porto utenlands"
2288
+
2289
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:740
2290
+ msgid "Disregard Shipping for this product"
2291
+ msgstr "Se bort fra porto for dette produktet"
2292
+
2293
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:769
2294
+ msgid "Advanced Options"
2295
+ msgstr "Avanserte innstillinger"
2296
+
2297
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:777
2298
+ msgid "Custom Meta"
2299
+ msgstr "Egendefinerte meta-data"
2300
+
2301
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:778
2302
+ msgid "Add Custom Meta"
2303
+ msgstr "Legg til egendefinerte meta-data"
2304
+
2305
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:788
2306
+ msgid "Value"
2307
+ msgstr "Verdi"
2308
+
2309
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:805
2310
+ msgid "Merchant Notes"
2311
+ msgstr "Selgers-notater"
2312
+
2313
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:808
2314
+ msgid "These notes are only available here."
2315
+ msgstr "Desse notatene er bare tilgjengelig her."
2316
+
2317
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:827
2318
+ msgid "Personalisation Options"
2319
+ msgstr "Alternativer for personliggjøring"
2320
+
2321
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:830
2322
+ msgid "Users can personalize this product by leaving a message on single product page"
2323
+ msgstr ""
2324
+
2325
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:839
2326
+ msgid "Users can upload images on single product page to purchase logs."
2327
+ msgstr ""
2328
+
2329
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:850
2330
+ msgid "Prohibited"
2331
+ msgstr "Forbudt"
2332
+
2333
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:864
2334
+ msgid "Off Site Product Link"
2335
+ msgstr "Produktlenke"
2336
+
2337
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:865
2338
+ msgid "If this product is for sale on another website enter the link here. For instance if your product is an MP3 file for sale on itunes you could put the link here. This option over rides the buy now and add to cart links and takes you to the site linked here."
2339
+ msgstr "Dersom dette produktet er til salgs på en annen nettside, legg inn lenken her. Det kan foreksempel være at du selger en MP3-fil på iTunes. Dette valget overstyrer Kjøp nå- og Legg i handlekurven- lenkene og tar deg videre til siden som det lenkes til."
2340
+
2341
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:866
2342
+ msgid "External Link"
2343
+ msgstr "Ekstern lenke"
2344
+
2345
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:874
2346
+ msgid "Enable IntenseDebate Comments"
2347
+ msgstr "Aktiver IntenseDebate-kommentarer"
2348
+
2349
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:880
2350
+ msgid "Allow users to comment on this product."
2351
+ msgstr ""
2352
+
2353
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:907
2354
+ msgid "Product Images"
2355
+ msgstr "Produktbilder"
2356
+
2357
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:915
2358
+ msgid "Select Files"
2359
+ msgstr "Velg filer"
2360
+
2361
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:969
2362
+ msgid "You are using the Flash uploader. Problems? Try the <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"browser\")'>Browser uploader</a> instead."
2363
+ msgstr ""
2364
+
2365
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:973
2366
+ msgid "To upload multiple product thumbnails you must <a href=\"http://www.instinct.co.nz/shop/\">install the premium upgrade</a>"
2367
+ msgstr ""
2368
+
2369
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:982
2370
+ msgid "Select an image to upload:"
2371
+ msgstr ""
2372
+
2373
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:992
2374
+ msgid "You are using the Browser uploader. Problems? Try the <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"flash\")'>Flash uploader</a> instead."
2375
+ msgstr ""
2376
+
2377
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:996
2378
+ msgid "Manage your thumbnails"
2379
+ msgstr "Rediger miniatyrbilder"
2380
+
2381
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1018
2382
+ msgid "Product Download"
2383
+ msgstr "Produktnedlasting"
2384
+
2385
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1021
2386
+ msgid "Upload File"
2387
+ msgstr "Last opp fil"
2388
+
2389
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1022
2390
+ msgid "Max Upload Size"
2391
+ msgstr "Maks filstørrelse for opplastinger"
2392
+
2393
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1026
2394
+ msgid "Preview File"
2395
+ msgstr "Forhåndsvis fil"
2396
+
2397
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1036
2398
+ msgid "Select an MP3 file to upload as a preview"
2399
+ msgstr "Velg en MP3-fil som skal lastes opp til forhåndsvisning"
2400
+
2401
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1057
2402
+ msgid "Label Control"
2403
+ msgstr "Merkingskontroll"
2404
+
2405
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1063
2406
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1064
2407
+ msgid "Add Label"
2408
+ msgstr ""
2409
+
2410
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1121
2411
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1148
2412
+ msgid "Preview"
2413
+ msgstr "Forhåndsvisning"
2414
+
2415
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1192
2416
+ msgid "Thumbnail Settings"
2417
+ msgstr "Miniatyrbildeinnstillinger"
2418
+
2419
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1200
2420
+ msgid "use default size"
2421
+ msgstr "bruk standardstørrelse"
2422
+
2423
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1200
2424
+ msgid "This is set on the Settings Page"
2425
+ msgstr "Dette konfigureres på innstillinger-siden"
2426
+
2427
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1206
2428
+ msgid "do not resize thumbnail image"
2429
+ msgstr "ikke endre størrelse på minityrbildet"
2430
+
2431
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1210
2432
+ msgid "use specific size"
2433
+ msgstr "bruk fast størrelse"
2434
+
2435
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1212
2436
+ msgid "px width"
2437
+ msgstr "bredde i piksler"
2438
+
2439
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1213
2440
+ msgid "px height"
2441
+ msgstr "høyde i piksler"
2442
+
2443
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1218
2444
+ msgid "use separate thumbnail"
2445
+ msgstr "bruk egne miniatyrbilder"
2446
+
2447
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1323
2448
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1328
2449
+ msgid "HTML"
2450
+ msgstr "HTML"
2451
+
2452
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1324
2453
+ #: wp-e-commerce/wpsc-admin/includes/display-items-functions.php:1329
2454
+ msgid "Visual"
2455
+ msgstr "Visuell"
2456
+
2457
+ #: wp-e-commerce/wpsc-admin/includes/product-functions.php:41
2458
+ #, php-format
2459
+ msgid "Please refrain from uploading images larger than <strong>%d x %d</strong> pixels"
2460
+ msgstr ""
2461
+
2462
+ #: wp-e-commerce/wpsc-admin/includes/product-functions.php:52
2463
+ msgid "N/A"
2464
+ msgstr "N/A"
2465
+
2466
+ #: wp-e-commerce/wpsc-admin/includes/product-functions.php:77
2467
+ msgid "<strong>ERROR</strong>: Please enter a Product name.<br />"
2468
+ msgstr ""
2469
+
2470
+ #: wp-e-commerce/wpsc-admin/includes/product-functions.php:80
2471
+ msgid "<strong>ERROR</strong>: Please enter a Product Category.<br />"
2472
+ msgstr ""
2473
+
2474
+ #: wp-e-commerce/wpsc-admin/includes/product-functions.php:196
2475
+ msgid "Could not update product in the database"
2476
+ msgstr "Kunne ikke oppdatere produktet i databasen"
2477
+
2478
+ #: wp-e-commerce/wpsc-admin/includes/product-functions.php:204
2479
+ msgid "Could not insert product into the database"
2480
+ msgstr "Kunne ikke legge produktet til i databasen"
2481
+
2482
+ #: wp-e-commerce/wpsc-admin/includes/purchlogs_upgrade.php:74
2483
+ msgid "Upgrading to WP e-Commerce 3.7 and later requires you to run this fix once.The following Boxes corresponds to the form fields in your current checkout page. All you have to do is select from the drop-down menu box what each of the following fields represent. Sorry for any inconvenience caused, but we're sure you'll agree that the new purchase logs are worth this minor hassle. "
2484
+ msgstr ""
2485
+
2486
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:7
2487
+ msgid "Admin Settings"
2488
+ msgstr "Administrasjonsinnstillinger"
2489
+
2490
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:13
2491
+ msgid "Max downloads per file"
2492
+ msgstr "Maks antall nedlastinger per fil"
2493
+
2494
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:35
2495
+ msgid "Lock downloads to IP address"
2496
+ msgstr "Lås nedlastinger til IP-adresse"
2497
+
2498
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:61
2499
+ msgid "Check MIME types on file uploads"
2500
+ msgstr ""
2501
+
2502
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:68
2503
+ msgid "Warning: Disabling this exposes your site to greater possibility of malicious files being uploaded, we reccomend installing the Fileinfo extention for PHP rather than disabling this."
2504
+ msgstr ""
2505
+
2506
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:76
2507
+ msgid "Purchase Log Email"
2508
+ msgstr "E-postadresse for kjøpslogg"
2509
+
2510
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:84
2511
+ msgid "Purchase Receipt - Reply Address"
2512
+ msgstr "Kvittering - Svaradresse"
2513
+
2514
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:93
2515
+ msgid "Purchase Receipt - Reply Name"
2516
+ msgstr "Kvittering - Svarnavn"
2517
+
2518
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:110
2519
+ msgid "Custom Messages"
2520
+ msgstr "Egendefinerte meldinger"
2521
+
2522
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:113
2523
+ msgid "Tags can be used"
2524
+ msgstr "Stikkord kan benyttes"
2525
+
2526
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:134
2527
+ msgid "Admin Report"
2528
+ msgstr "Admin-rapport"
2529
+
2530
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:145
2531
+ msgid "Tracking Email Subject"
2532
+ msgstr ""
2533
+
2534
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:149
2535
+ msgid "Tracking Email Message"
2536
+ msgstr ""
2537
+
2538
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:153
2539
+ msgid "URL Settings"
2540
+ msgstr "Adresseinnstillinger"
2541
+
2542
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:184
2543
+ msgid "Transaction Details URL"
2544
+ msgstr "Adresse for overføringsdetaljer"
2545
+
2546
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:195
2547
+ msgid "User Account URL"
2548
+ msgstr "Adresse for brukerkonto"
2549
+
2550
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:205
2551
+ msgid "Update Page URLs"
2552
+ msgstr "Oppdater sideadresser"
2553
+
2554
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/admin.php:206
2555
+ msgid "Fix Product Group Permalinks"
2556
+ msgstr "Reparer permalenker for kategorier"
2557
+
2558
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:27
2559
+ msgid "Checkout Options"
2560
+ msgstr "Kassealternativer"
2561
+
2562
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:40
2563
+ msgid "Users must register before checking out"
2564
+ msgstr "Brukere må registrere seg for de kan gå til kassen"
2565
+
2566
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:60
2567
+ msgid "If yes then you must also turn on the wordpress option \"Any one can register\""
2568
+ msgstr ""
2569
+
2570
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:77
2571
+ msgid "Lock Tax to Billing Country"
2572
+ msgstr "Lås merverdiavgift til fakturaland"
2573
+
2574
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:102
2575
+ msgid "Enable Shipping Same as Billing Option: "
2576
+ msgstr "Aktiver valget \"Leveringsadressen er den samme som fakturaadressen\""
2577
+
2578
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:115
2579
+ msgid "Here you can customise the forms to be displayed in your checkout page. The checkout page is where you collect important user information that will show up in your purchase logs i.e. the buyers address, and name..."
2580
+ msgstr "Her kan du tilpasse skjemaet som vises på kassesiden din. Kassesiden er der du samler inn viktige opplysninger om kunden som vil dukke opp i kjøpsloggene, feks. navn og adresse..."
2581
+
2582
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:208
2583
+ msgid "This will be the Email address that the Purchase Reciept is sent to."
2584
+ msgstr "Kvitteringen sendes til denne e-postadressen."
2585
+
2586
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/checkout.php:311
2587
+ msgid "Add New Form Field"
2588
+ msgstr "Legg til nytt skjemafelt"
2589
+
2590
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:31
2591
+ msgid "Please Select A Payment Gateway"
2592
+ msgstr "Velg en betalingsterminal"
2593
+
2594
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:55
2595
+ msgid "Gateway Options"
2596
+ msgstr "Alternativer for betalingsterminal"
2597
+
2598
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:64
2599
+ msgid "General Settings"
2600
+ msgstr "Generelle innstillinger"
2601
+
2602
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:68
2603
+ msgid "Payment Gateways"
2604
+ msgstr "Betalingsterminaler"
2605
+
2606
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:72
2607
+ msgid "Activate the payment gateways that you want to make available to your customers by selecting them below."
2608
+ msgstr ""
2609
+
2610
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:98
2611
+ msgid "We Recommend"
2612
+ msgstr "Vi anbefaler"
2613
+
2614
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:107
2615
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:114
2616
+ msgid " Select a Payment Gateway below to configure it."
2617
+ msgstr "Velg en betalingsterminal for å konfigurere den."
2618
+
2619
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:122
2620
+ msgid "Payment Gateway"
2621
+ msgstr "Betalingsterminal"
2622
+
2623
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:134
2624
+ msgid "Display Name"
2625
+ msgstr "Visningsnavn"
2626
+
2627
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/gateway.php:162
2628
+ msgid "The text that people see when making a purchase"
2629
+ msgstr ""
2630
+
2631
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:13
2632
+ msgid "Base Country/Region"
2633
+ msgstr "Opphavsland/område"
2634
+
2635
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:39
2636
+ msgid "Select your primary business location."
2637
+ msgstr ""
2638
+
2639
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:43
2640
+ msgid "Tax Settings"
2641
+ msgstr "Innstillinger for merverdiavgift"
2642
+
2643
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:60
2644
+ msgid "Tax Included in prices"
2645
+ msgstr "Merverdiavgift er inkludert i prisene"
2646
+
2647
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:115
2648
+ msgid "Language"
2649
+ msgstr "Språk"
2650
+
2651
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/general.php:224
2652
+ msgid "Currency Settings"
2653
+ msgstr "Valutainnstillinger"
2654
+
2655
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/import.php:7
2656
+ msgid "Import Products CSV"
2657
+ msgstr "Importer produkter fra CSV-fil"
2658
+
2659
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/import.php:8
2660
+ msgid "<p>You can import your products from a comma delimited text file.</p><p>An example of a cvs import file would look like this: </p><p>Description, Additional Description, Product Name, Price, SKU, weight, weight unit, stock quantity, is limited quantity</p>"
2661
+ msgstr ""
2662
+
2663
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:14
2664
+ msgid "Show All Products"
2665
+ msgstr "Vis alle produkter"
2666
+
2667
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:21
2668
+ msgid "Show list of product groups"
2669
+ msgstr "Vis kategoriliste"
2670
+
2671
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:28
2672
+ msgid "Show all products + list"
2673
+ msgstr "Vis alle produkter + liste"
2674
+
2675
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:63
2676
+ msgid "Button Settings"
2677
+ msgstr "Knapp-innstillinger"
2678
+
2679
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:67
2680
+ msgid "Button Type"
2681
+ msgstr "Knapptype"
2682
+
2683
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:92
2684
+ msgid "Hide \"Add to cart\" button"
2685
+ msgstr "Skjul \"Legg i handlekurven\"-knappen"
2686
+
2687
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:117
2688
+ msgid "Product Settings"
2689
+ msgstr "Produktinnstillinger"
2690
+
2691
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:146
2692
+ msgid "Display Fancy Purchase Notifications"
2693
+ msgstr "Vis stilig kjøpsvarsel"
2694
+
2695
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:170
2696
+ msgid "Show Postage and Packaging"
2697
+ msgstr "Vis porto og ekspedisjon"
2698
+
2699
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:193
2700
+ msgid "Disable link in Title"
2701
+ msgstr "Deaktiver lenken i tittelen"
2702
+
2703
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:217
2704
+ msgid "Add quantity field to each product description"
2705
+ msgstr "Legg til antall-felt for hver produktbeskrivelse"
2706
+
2707
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:242
2708
+ msgid "Theme Customisation"
2709
+ msgstr "Tilpassing av tema"
2710
+
2711
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:247
2712
+ msgid "Thanks, the themes have been copied."
2713
+ msgstr "Takk, temaene har blitt kopiert."
2714
+
2715
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:256
2716
+ msgid "Theming your stores appearance is easy."
2717
+ msgstr "Det er lett å lage nytt utseende til nettbutikken din."
2718
+
2719
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:258
2720
+ msgid "You just need to edit the appropriate files in the following location."
2721
+ msgstr "Du må bare endre de rette filene på følgende plassering."
2722
+
2723
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:259
2724
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:271
2725
+ msgid "Path:"
2726
+ msgstr "Sti:"
2727
+
2728
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:261
2729
+ msgid "To create a new theme:"
2730
+ msgstr "For å lage nytt tema:"
2731
+
2732
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:263
2733
+ msgid "Copy the default directory and rename it 'newTheme'"
2734
+ msgstr "Kopier mappen default og endre navn på kopien til 'nyttTema'"
2735
+
2736
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:264
2737
+ msgid "Rename the default.css file inside the 'newTheme' directory to 'newTheme.css'"
2738
+ msgstr "Endre navn på default.css i mappen nyttTema til 'nyttTema.css'"
2739
+
2740
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:269
2741
+ msgid "The permissions on your themes directory are incorrect."
2742
+ msgstr ""
2743
+
2744
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:270
2745
+ msgid "Please set the permissions to 775 on the following directory."
2746
+ msgstr ""
2747
+
2748
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:275
2749
+ msgid "Your theme files have not been moved. Until your theme files have been moved, we have disabled automatic upgrades."
2750
+ msgstr ""
2751
+
2752
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:276
2753
+ #, php-format
2754
+ msgid "Click here to <a href='%s'>Move your files</a> to a safe place"
2755
+ msgstr ""
2756
+
2757
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:280
2758
+ msgid "Read Tutorials"
2759
+ msgstr "Les veiledninger"
2760
+
2761
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:285
2762
+ msgid "Product Page Settings"
2763
+ msgstr "Produktsideinnstillinger"
2764
+
2765
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:288
2766
+ msgid "Product Display"
2767
+ msgstr "Produktvising"
2768
+
2769
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:372
2770
+ msgid "Purchase unavailable options"
2771
+ msgstr "Kjøp utilgjengelige alternativer"
2772
+
2773
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:377
2774
+ msgid "Show quantity form in list view"
2775
+ msgstr "Vis antall-skjema i listevisingen"
2776
+
2777
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:382
2778
+ msgid "Products Per Row"
2779
+ msgstr "Produkter per rad"
2780
+
2781
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:387
2782
+ msgid "Show images only"
2783
+ msgstr "Vis kun bilder"
2784
+
2785
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:397
2786
+ msgid "Display Description"
2787
+ msgstr "Beskrivelse"
2788
+
2789
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:402
2790
+ msgid "Display \"Add To Cart\" Button"
2791
+ msgstr "Vis \"Legg i handlekurven\"-knappen"
2792
+
2793
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:406
2794
+ msgid "Display \"More Details\" Button"
2795
+ msgstr "Vis \"Flere detaljer\"-knapp"
2796
+
2797
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:416
2798
+ msgid "Select Theme"
2799
+ msgstr "Velg tema"
2800
+
2801
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:449
2802
+ msgid "Sort Product By"
2803
+ msgstr "Sorter etter"
2804
+
2805
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:455
2806
+ msgid "Time Uploaded"
2807
+ msgstr "Opplastet"
2808
+
2809
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:461
2810
+ msgid "Show Breadcrumbs"
2811
+ msgstr "Vis \"Du er her:\""
2812
+
2813
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:487
2814
+ msgid "Product Groups/Products Display"
2815
+ msgstr "Visning for kategorier/produkter"
2816
+
2817
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:505
2818
+ msgid "Product Groups Only (All products displayed)"
2819
+ msgstr "Kun kategorier (viser alle produkter)"
2820
+
2821
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:506
2822
+ msgid "Sliding Product Groups (1 product per page)"
2823
+ msgstr "Glidende kategorier (ett produkt per side)"
2824
+
2825
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:514
2826
+ msgid "Show Search"
2827
+ msgstr "Vis søk"
2828
+
2829
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:551
2830
+ msgid "Show Advanced Search"
2831
+ msgstr "Vis avansert søk"
2832
+
2833
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:554
2834
+ msgid "Use Live Search"
2835
+ msgstr "Bruk sanntidssøk"
2836
+
2837
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:565
2838
+ msgid "Replace Page Title With Product/Category Name"
2839
+ msgstr ""
2840
+
2841
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:587
2842
+ msgid "Shopping Cart Settings"
2843
+ msgstr "Handlekurvinnstillinger"
2844
+
2845
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:619
2846
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:623
2847
+ msgid "Sidebar"
2848
+ msgstr "Sidestolpe"
2849
+
2850
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:627
2851
+ msgid "Page"
2852
+ msgstr "Side"
2853
+
2854
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:631
2855
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:635
2856
+ msgid "Widget"
2857
+ msgstr "Widget"
2858
+
2859
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:635
2860
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:645
2861
+ msgid "You need to enable the widgets plugin to use this"
2862
+ msgstr "Du må aktivere widgeter-innstykket for å bruke dette"
2863
+
2864
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:645
2865
+ msgid "You need to install the Gold and DropShop extentions to use this"
2866
+ msgstr "Du må installere tilleggene Gold og DropShop for å bruke dette"
2867
+
2868
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:649
2869
+ msgid "Manual"
2870
+ msgstr "Manuelt"
2871
+
2872
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:652
2873
+ msgid "Show Dropshop on every page"
2874
+ msgstr "Vis Dropshop på alle sider"
2875
+
2876
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:653
2877
+ msgid "Show Dropshop only on product page"
2878
+ msgstr "Vis Dropshop kun på produktsiden"
2879
+
2880
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:656
2881
+ msgid "Use light Dropshop style"
2882
+ msgstr "Bruk lys Dropshop-stil"
2883
+
2884
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:657
2885
+ msgid "Use dark Dropshop style"
2886
+ msgstr "Bruk mørk Dropshop-stil"
2887
+
2888
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:658
2889
+ msgid "Crafty"
2890
+ msgstr ""
2891
+
2892
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:668
2893
+ msgid "Use Sliding Cart"
2894
+ msgstr "Vis glidende handlekurv"
2895
+
2896
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:693
2897
+ msgid "Display \"+ Postage & Tax\""
2898
+ msgstr "Vis \"+ Porto og merverdiavgift\""
2899
+
2900
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:719
2901
+ msgid "Product Group Settings"
2902
+ msgstr "Kategori-innstillinger"
2903
+
2904
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:723
2905
+ msgid "Show Product Group Description"
2906
+ msgstr "Vis kategoribeskrivelse"
2907
+
2908
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:748
2909
+ msgid "Show Product Group Thumbnails"
2910
+ msgstr "Vis miniatyrbilde for kategorier"
2911
+
2912
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:775
2913
+ msgid "Show Product Count per Product Group"
2914
+ msgstr "Vis antall varer per kategori"
2915
+
2916
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:801
2917
+ msgid "Use Category Grid View"
2918
+ msgstr "Bruk rutenettvisning for kategorier"
2919
+
2920
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:832
2921
+ msgid "Default Product Thumbnail Size"
2922
+ msgstr ""
2923
+
2924
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:836
2925
+ msgid "Resize Existing Thumbnails"
2926
+ msgstr "Endre størrelsen på miniatyrbildene"
2927
+
2928
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:842
2929
+ msgid "Default Product Group Thumbnail Size"
2930
+ msgstr ""
2931
+
2932
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:851
2933
+ msgid "Single Product Image Size"
2934
+ msgstr "Bildestørrelse for enkeltprodukt"
2935
+
2936
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:888
2937
+ msgid "Show Thumbnail Gallery"
2938
+ msgstr "Vis miniatyrbildegalleri"
2939
+
2940
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:912
2941
+ msgid "Gallery Thumbnail Image Size"
2942
+ msgstr "Størrelse for miniatyrbildegalleri"
2943
+
2944
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:926
2945
+ msgid "Pagination settings"
2946
+ msgstr "Innstillinger for sideinndeling"
2947
+
2948
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:930
2949
+ msgid "Use Pagination"
2950
+ msgstr "Bruk sideinndeling"
2951
+
2952
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:952
2953
+ msgid "number of products to show per page"
2954
+ msgstr "antall produkter som skal vises per side"
2955
+
2956
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:962
2957
+ msgid "Top"
2958
+ msgstr "Topp"
2959
+
2960
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:963
2961
+ msgid "Bottom"
2962
+ msgstr "Bunn"
2963
+
2964
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:964
2965
+ msgid "Both"
2966
+ msgstr "Begge"
2967
+
2968
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:971
2969
+ msgid "Comment Settings"
2970
+ msgstr "Kommentarinnstillinger"
2971
+
2972
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:975
2973
+ msgid "Use IntenseDebate Comments"
2974
+ msgstr ""
2975
+
2976
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:999
2977
+ msgid "IntenseDebate Account ID"
2978
+ msgstr ""
2979
+
2980
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:1001
2981
+ msgid "Help on finding the Account ID"
2982
+ msgstr ""
2983
+
2984
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/presentation.php:1010
2985
+ msgid "By Default Display Comments on"
2986
+ msgstr ""
2987
+
2988
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:67
2989
+ msgid "Use Shipping"
2990
+ msgstr "Bruk porto"
2991
+
2992
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:89
2993
+ msgid "If you are only selling digital downloads, you should select no to disable the shipping on your site."
2994
+ msgstr "Dersom du bare selger digitale nedlastinger bør du velge Nei for å deaktivere porto på siden din."
2995
+
2996
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:94
2997
+ msgid "Base Zipcode/Postcode:"
2998
+ msgstr ""
2999
+
3000
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:97
3001
+ msgid "If you are based in America then you need to set your own Zipcode for UPS and USPS to work. This should be the Zipcode for your Base of Operations."
3002
+ msgstr ""
3003
+
3004
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:119
3005
+ msgid "ShipWire Settings"
3006
+ msgstr "ShipWire-innstillinger"
3007
+
3008
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:130
3009
+ msgid "ShipWire Email"
3010
+ msgstr "ShipWire-epost"
3011
+
3012
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:131
3013
+ msgid "ShipWire Password"
3014
+ msgstr "ShipWire-passord"
3015
+
3016
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:139
3017
+ msgid "Enable Free Shipping Discount"
3018
+ msgstr "Aktiver gratis frakt"
3019
+
3020
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:183
3021
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:188
3022
+ msgid "Shipping Modules"
3023
+ msgstr "Sendingsmoduler"
3024
+
3025
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:194
3026
+ msgid "To enable shipping in WP e-Commerce you must select which shipping methods you want to enable on your site"
3027
+ msgstr ""
3028
+
3029
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:198
3030
+ msgid "Internal Shipping Calculators"
3031
+ msgstr "Interne sendingskalkulatorer"
3032
+
3033
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:231
3034
+ msgid "External Shipping Calculators"
3035
+ msgstr ""
3036
+
3037
+ #: wp-e-commerce/wpsc-admin/includes/settings-pages/shipping.php:234
3038
+ msgid "The following shipping modules all need cURL which is not installed on this server, you may need to contact your web hosting provider to get it set up. "
3039
+ msgstr ""
3040
+
3041
+ #: wp-e-commerce/wpsc-includes/ajax.functions.php:88
3042
+ msgid "You just added \"[product_name]\" to your cart."
3043
+ msgstr "Du la nettopp \"[product_name]\" i handlekurven din."
3044
+
3045
+ #: wp-e-commerce/wpsc-includes/ajax.functions.php:91
3046
+ msgid "Sorry, but you cannot add zero items to your cart"
3047
+ msgstr ""
3048
+
3049
+ #: wp-e-commerce/wpsc-includes/ajax.functions.php:93
3050
+ msgid "Sorry, but there are only [number] of this item in stock."
3051
+ msgstr "Beklager, men det er bare [number] av denne varen igjen på lager."
3052
+
3053
+ #: wp-e-commerce/wpsc-includes/ajax.functions.php:95
3054
+ msgid "Sorry, but the item \"[product_name]\" is out of stock."
3055
+ msgstr "Beklager, men det er tomt på lager for varen \"[product_name]\"."
3056
+
3057
+ #: wp-e-commerce/wpsc-includes/ajax.functions.php:475
3058
+ msgid "You must select a shipping method, otherwise we cannot process your order."
3059
+ msgstr "Du må velge sendingsmåte for at vi skal kunne ta i mot bestillingen din."
3060
+
3061
+ #: wp-e-commerce/wpsc-includes/ajax.functions.php:480
3062
+ msgid "Please agree to the terms and conditions, otherwise we cannot process your order."
3063
+ msgstr "Vær snill og godta vilkår og betingelser, ellers kan vi ikke prosessere bestillingen din."
3064
+
3065
+ #: wp-e-commerce/wpsc-includes/ajax.functions.php:503
3066
+ #, php-format
3067
+ msgid "Oops the product : %s cannot be shipped to %s. To continue with your transaction please remove this product from the list above."
3068
+ msgstr ""
3069
+
3070
+ #: wp-e-commerce/wpsc-includes/ajax.functions.php:526
3071
+ msgid "Please enter a Zipcode and click calculate to proceed"
3072
+ msgstr ""
3073
+
3074
+ #: wp-e-commerce/wpsc-includes/category.functions.php:354
3075
+ msgid "Brands"
3076
+ msgstr "Merker"
3077
+
3078
+ #: wp-e-commerce/wpsc-includes/checkout.class.php:49
3079
+ msgid "Tax"
3080
+ msgstr ""
3081
+
3082
+ #: wp-e-commerce/wpsc-includes/display.functions.php:83
3083
+ msgid "People who bought this item also bought"
3084
+ msgstr "Personer som kjøpte denne varen kjøpte også"
3085
+
3086
+ #: wp-e-commerce/wpsc-includes/display.functions.php:131
3087
+ msgid "Updating"
3088
+ msgstr "Oppdaterer"
3089
+
3090
+ #: wp-e-commerce/wpsc-includes/display.functions.php:147
3091
+ msgid "Continue Shopping"
3092
+ msgstr "Handle videre"
3093
+
3094
+ #: wp-e-commerce/wpsc-includes/display.functions.php:248
3095
+ msgid "You are using the example product group as your default group and it has no products in it, you should set the default group to something else, you can do so from your Shop Settings page."
3096
+ msgstr ""
3097
+
3098
+ #: wp-e-commerce/wpsc-includes/display.functions.php:250
3099
+ msgid "This group is set as your default product group, you should either add some items to it or switch your default product group to one that does contain items."
3100
+ msgstr ""
3101
+
3102
+ #: wp-e-commerce/wpsc-includes/form-display.functions.php:65
3103
+ msgid "Select Parent"
3104
+ msgstr "Velg forelder"
3105
+
3106
+ #: wp-e-commerce/wpsc-includes/form-display.functions.php:133
3107
+ msgid "Choose a downloadable file for this product:"
3108
+ msgstr "Velg en nedlastbar fil for dette produktet"
3109
+
3110
+ #: wp-e-commerce/wpsc-includes/form-display.functions.php:180
3111
+ msgid "Choose a downloadable file for this variation"
3112
+ msgstr "Velg en nedlastbar fil for denne variasjonen"
3113
+
3114
+ #: wp-e-commerce/wpsc-includes/form-display.functions.php:186
3115
+ msgid "No Product"
3116
+ msgstr "Ingen produkt"
3117
+
3118
+ #: wp-e-commerce/wpsc-includes/misc.functions.php:61
3119
+ msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
3120
+ msgstr ""
3121
+
3122
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:30
3123
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:36
3124
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:46
3125
+ msgid " is out of stock"
3126
+ msgstr "er ikke på lager"
3127
+
3128
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:30
3129
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:36
3130
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:46
3131
+ msgid "Remaining stock of "
3132
+ msgstr ""
3133
+
3134
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:30
3135
+ msgid " and its variations is 0. Product was unpublished."
3136
+ msgstr ""
3137
+
3138
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:36
3139
+ msgid " is 0. Product variation was set to invisible."
3140
+ msgstr ""
3141
+
3142
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:46
3143
+ msgid " is 0. Product was unpublished."
3144
+ msgstr ""
3145
+
3146
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:916
3147
+ msgid "This product has no available stock"
3148
+ msgstr "Dette produktet finnes ikke på lager"
3149
+
3150
+ #: wp-e-commerce/wpsc-includes/processing.functions.php:961
3151
+ msgid "UPS does not support products without a weight set. Please either disable shipping for this product or give it a weight"
3152
+ msgstr ""
3153
+
3154
+ #: wp-e-commerce/wpsc-includes/purchaselogs.class.php:539
3155
+ #, php-format
3156
+ msgid "Release downloads locked to this IP address %s"
3157
+ msgstr ""
3158
+
3159
+ #: wp-e-commerce/wpsc-includes/purchaselogs.class.php:759
3160
+ msgid "Thanks, the purchase log record has been deleted"
3161
+ msgstr "Takk, oppføringen i kjøpsloggen ble slettet"
3162
+
3163
+ #: wp-e-commerce/wpsc-includes/upgrades.php:122
3164
+ msgid "Visit upgrade homepage"
3165
+ msgstr "Besøk hjemmesiden for oppgraderinger"
3166
+
3167
+ #: wp-e-commerce/wpsc-includes/upgrades.php:127
3168
+ msgid "Visit author homepage"
3169
+ msgstr "Besøk forfatterens hjemmeside"
3170
+
3171
+ #: wp-e-commerce/wpsc-includes/upgrades.php:131
3172
+ #, php-format
3173
+ msgid "By %s"
3174
+ msgstr ""
3175
+
3176
+ #: wp-e-commerce/wpsc-includes/variations.class.php:217
3177
+ msgid "Variation"
3178
+ msgstr "Variasjon"
3179
+
3180
+ #: wp-e-commerce/wpsc-includes/variations.class.php:218
3181
+ msgid "Stock"
3182
+ msgstr "Lager"
3183
+
3184
+ #: wp-e-commerce/wpsc-includes/variations.class.php:221
3185
+ msgid "More"
3186
+ msgstr "Mer"
3187
+
3188
+ #: wp-e-commerce/wpsc-includes/variations.class.php:349
3189
+ msgid "Weight Settings"
3190
+ msgstr "Vektinnstillinger"
3191
+
3192
+ #~ msgid "Pick up"
3193
+ #~ msgstr "Hent sjølv"
3194
+
3195
+ #~ msgid "Delivery"
3196
+ #~ msgstr "Levering"
3197
+
3198
+ #~ msgid "Enable Google Store Locator"
3199
+ #~ msgstr "Skru på Google-butikkpeilar"
3200
+
3201
+ #~ msgid "This post is for members only, you must log in to view this post"
3202
+ #~ msgstr ""
3203
+ #~ "Dette innlegget er berre for medlemmer. Du må logga inn for å sjå det."
3204
+
3205
+ #~ msgid "Base Shipping"
3206
+ #~ msgstr "Grunnporto"
3207
+
3208
+ #~ msgid "Display Variations in Checkboxes"
3209
+ #~ msgstr "Vis variantar i avkryssingsboksar"
3210
+
3211
+ #~ msgid "Engrave text"
3212
+ #~ msgstr "Graver tekst"
3213
+
3214
+ #~ msgid "One Month Free Trial"
3215
+ #~ msgstr "Ein månad gratis prøve"
3216
+
3217
+ #~ msgid "Associate With File?(Tick one please)"
3218
+ #~ msgstr "Knyt til fil? (Kryss av eit val)"
3219
+
3220
+ #~ msgid "Permanent subscription?"
3221
+ #~ msgstr "Evigvarande abonnement?"
3222
+
3223
+ #~ msgid "Older Orders"
3224
+ #~ msgstr "Eldre tingingar"
3225
+
3226
+ #~ msgid "Six Monthly Report"
3227
+ #~ msgstr "Halvårsrapport"
3228
+
3229
+ #~ msgid "Help/Upgrade"
3230
+ #~ msgstr "Hjelp/oppgrader"
3231
+
3232
+ #~ msgid "Display categories or brands or both"
3233
+ #~ msgstr "Vis kategoriar, merke eller båe deler"
3234
+
3235
+ #~ msgid "Enter Your Details"
3236
+ #~ msgstr "Skriv inn detaljar"
3237
+
3238
+ #~ msgid "Choose a Product Group"
3239
+ #~ msgstr "Vel ein kategori"
3240
+
3241
+ #~ msgid "Choose a Brand"
3242
+ #~ msgstr "Vel eit merke"
3243
+
3244
+ #~ msgid "Product Description"
3245
+ #~ msgstr "Produktskildring"
3246
+
3247
+ #~ msgid "Product Stock"
3248
+ #~ msgstr "Produktlager"
3249
+
3250
+ #~ msgid "Limited Stock"
3251
+ #~ msgstr "Få på lager"
3252
+
3253
+ #~ msgid "Create a new Variation"
3254
+ #~ msgstr "Lag ny variant"
3255
+
3256
+ #~ msgid "Product Attachments"
3257
+ #~ msgstr "Produktvedlegg"
3258
+
3259
+ #~ msgid ""
3260
+ #~ "Note: if this is filled in, the file uploaded will be the product to be "
3261
+ #~ "purchased."
3262
+ #~ msgstr "Obs: Viss dette er fylt ut, er den opplasta fila produktet du sel."
3263
+
3264
+ #~ msgid "use"
3265
+ #~ msgstr "bruk"
3266
+
3267
+ #~ msgid "Type"
3268
+ #~ msgstr "Type"
3269
+
3270
+ #~ msgid "Mandatory"
3271
+ #~ msgstr "Kravd"
3272
+
3273
+ #~ msgid "Display<br /> in Log"
3274
+ #~ msgstr "Vis<br /> i loggen"
3275
+
3276
+ #~ msgid "Continue shopping"
3277
+ #~ msgstr "Handle meir"
3278
+
3279
+ #~ msgid "Out of"
3280
+ #~ msgstr "Av"
3281
+
3282
+ #~ msgid "votes."
3283
+ #~ msgstr "røyster."
3284
+
3285
+ #~ msgid "Your vote"
3286
+ #~ msgstr "Røysta di"
3287
+
3288
+ #~ msgid "Please select a valid Product Group"
3289
+ #~ msgstr "Vel ein gyldig kategori"
3290
+
3291
+ #~ msgid "Product Price"
3292
+ #~ msgstr "Produktpris"
3293
+
3294
+ #~ msgid "No tax"
3295
+ #~ msgstr "Avgiftsfri"
3296
+
3297
+ #~ msgid "About"
3298
+ #~ msgstr "Om"
3299
+
3300
+ #~ msgid ""
3301
+ #~ "Welcome to the e-commerce panel. <br /><br /><strong>Note:</strong> on "
3302
+ #~ "some setups, the shopping cart may empty on every page load, if this "
3303
+ #~ "happens, you will have to add this line:<br /><br />session_start();<br /"
3304
+ #~ "><br />to the index.php file in the base wordpress directory.<br />"
3305
+ #~ msgstr ""
3306
+ #~ "Velkomen til e-handelspanelet. <br /><br /><strong>Hugs:</strong> På "
3307
+ #~ "nokre oppsett vil handlekorga bli tømd kvar gong ei side lastar. For å "
3308
+ #~ "hindra dette, må du leggja til denne linja i fila index.php i "
3309
+ #~ "hovudkatalogen for Wordpress:<br /><br />session_start();<br />"
3310
+
3311
+ #~ msgid ""
3312
+ #~ "Note, Once you press submit, you will need to have your Credit card handy."
3313
+ #~ msgstr "Hugs: Når du klikkar \"OK\", bør du ha kredittkortet klart."
3314
+
3315
+ #~ msgid ""
3316
+ #~ "Oops, there is nothing in your cart. <a href=\"get_option"
3317
+ #~ "(\"product_list_url\")\">Please visit our shop</a>"
3318
+ #~ msgstr "Ver god å kjøpa noko før du går inn på denne sida."
3319
+
3320
+ #~ msgid "The brand has been edited."
3321
+ #~ msgstr "Merket er endra."
3322
+
3323
+ #~ msgid "Add Brand"
3324
+ #~ msgstr "Legg til merke"
3325
+
3326
+ #~ msgid "Edit Brand"
3327
+ #~ msgstr "Rediger merke"
3328
+
3329
+ #~ msgid "Edit Product Group"
3330
+ #~ msgstr "Rediger kategori"
3331
+
3332
+ #~ msgid "The variation has been edited."
3333
+ #~ msgstr "Produktvarianten er endra."
3334
+
3335
+ #~ msgid "Remove This Set"
3336
+ #~ msgstr "Fjern dette settet"
3337
+
3338
+ #~ msgid "Edit Item"
3339
+ #~ msgstr "Rediger artikkel"
3340
+
3341
+ #~ msgid "Select an Existing Product"
3342
+ #~ msgstr "Vel eit eksisterande produkt"
3343
+
3344
+ #~ msgid "(enter in your product details here)"
3345
+ #~ msgstr "(skriv inn produktdetaljar her)"
3346
+
3347
+ #~ msgid "Add Item"
3348
+ #~ msgstr "Legg til artikkel"
3349
+
3350
+ #~ msgid "use the actual image. No resize."
3351
+ #~ msgstr "bruk opphavleg bilete. Uendra storleik."
3352
+
3353
+ #~ msgid "ID"
3354
+ #~ msgstr "ID"
3355
+
3356
+ #~ msgid "Transaction Status"
3357
+ #~ msgstr "Overføringsstatus"
3358
+
3359
+ #~ msgid "Successful"
3360
+ #~ msgstr "Vellukka"
3361
+
3362
+ #~ msgid ""
3363
+ #~ "<strong>Note:</strong> This lite version of the e-Commerce plugin only "
3364
+ #~ "allows you to interface with PayPal.<br /><br />If you are looking for a "
3365
+ #~ "more profesional \"non paypal solution\" then we have a <a href=\"http://"
3366
+ #~ "www.instinct.co.nz/blogshop\">gold version of e-Commerce</a> available "
3367
+ #~ "that interfaces seamlessly with authorize.net, DPS (www.dps.co.nz), and "
3368
+ #~ "paystation (www.paystation.co.nz)."
3369
+ #~ msgstr ""
3370
+ #~ "<strong>Hugs:</strong> Denne lett-utgåva av e-handel-programmet gjev deg "
3371
+ #~ "berre høve til betalingsløysing via Paypal. <br /><br />Om du treng ei "
3372
+ #~ "meir profesjonell \"ikkje-paypal\"-løysing, har me ei <a href=\"http://"
3373
+ #~ "www.instinct.co.nz/blogshop/\">utvida utgåve av WP e-handel</a> som "
3374
+ #~ "arbeider saumlaust med authorize.net, DPS (www.dps.co.nz) og paystation "
3375
+ #~ "(www.paystation.co.nz)."
3376
+
3377
+ #~ msgid "Show Specials in the Sidebar"
3378
+ #~ msgstr "Vis tilbod i sidestolpen"
3379
+
3380
+ #~ msgid "Default Postage &amp; Packaging"
3381
+ #~ msgstr "Standard for porto og eksp."
3382
+
3383
+ #~ msgid "Reply Email"
3384
+ #~ msgstr "Svar-til-adresse"
3385
+
3386
+ #~ msgid "brand"
3387
+ #~ msgstr "merke"
3388
+
3389
+ #~ msgid "category"
3390
+ #~ msgstr "kategori"
3391
+
3392
+ #~ msgid "Category or Brand"
3393
+ #~ msgstr "kategori eller merke"
3394
+
3395
+ #~ msgid "Please choose a"
3396
+ #~ msgstr "Vel eit"
3397
+
3398
+ #~ msgid "Make Payment"
3399
+ #~ msgstr "Betal"
3400
+
3401
+ #~ msgid "There are no items in the shopping cart"
3402
+ #~ msgstr "Handlevogna er tom."
3403
+
3404
+ #~ msgid "The Transaction was not successful"
3405
+ #~ msgstr "Overføringa var mislukka."
3406
+
3407
+ #~ msgid "Go back to the checkout"
3408
+ #~ msgstr "Gå tilbake til kassa"
3409
+
3410
+ #~ msgid "Base Local Shipping"
3411
+ #~ msgstr "Grunnporto for lokalsending"
3412
+
3413
+ #~ msgid "Base International Shipping"
3414
+ #~ msgstr "Grunnporto for utanlandssending"
3415
+
3416
+ #~ msgid "Note: charged only once per product regardless of quantity ordered."
3417
+ #~ msgstr ""
3418
+ #~ "Hugs: blir berre lagt til ein gong for kvart produkt, uansett mengd."
3419
+
3420
+ #~ msgid "Country Form Field"
3421
+ #~ msgstr "Skjemafelt for land"
3422
+
3423
+ #~ msgid ""
3424
+ #~ "(select which form field on the checkout page you want to use for "
3425
+ #~ "specifying the country)"
3426
+ #~ msgstr ""
3427
+ #~ "(vel kva for skjemafelt på kasse-sida du vil bruka for å oppgje land)"
3428
+
3429
+ #~ msgid "Postage"
3430
+ #~ msgstr "Porto"
3431
+
3432
+ #~ msgid "Email Form Field"
3433
+ #~ msgstr "Epost-skjemafelt"
3434
+
3435
+ #~ msgid ""
3436
+ #~ "(select which form field on the checkout page you want to use for "
3437
+ #~ "specifying the email address)"
3438
+ #~ msgstr ""
3439
+ #~ "(vel kva skjemafelt på kasse-sida du vil bruka for å oppgje epostadresse)"
3440
+
3441
+ #~ msgid "Add Additional Image"
3442
+ #~ msgstr "Legg til bilete"
3443
+
3444
+ #~ msgid "Gold Cart Activation"
3445
+ #~ msgstr "Innstillingar for å slå på utvida utgåve"
3446
+
3447
+ #~ msgid "Thanks, the gold shopping cart has been activated."
3448
+ #~ msgstr "Takk. No er utvida utgåve av e-handel skrudd på!"
3449
+
3450
+ #~ msgid "Sorry, the API key was incorrect."
3451
+ #~ msgstr "Orsak, API-nykjelen var feil."
3452
+
3453
+ #~ msgid "Additional Image"
3454
+ #~ msgstr "Ekstra bilete"
3455
+
3456
+ #~ msgid "Confirm your totals before making the payment:"
3457
+ #~ msgstr "Sjå over summane før du betalar:"
3458
+
3459
+ #~ msgid ""
3460
+ #~ "Choose what payment options you want to make available in the checkout "
3461
+ #~ "page. By default purchasers can only pay for items using a credit card "
3462
+ #~ "however you may wish to also let them pay manually in which case you "
3463
+ #~ "should select the credit card + manual payment option."
3464
+ #~ msgstr ""
3465
+ #~ "Vel kva betalingsval du vil gjera tilgjengeleg på kasse-sida. Standarden "
3466
+ #~ "er at kundane berre kan betala med kredittkort, men det kan henda du vil "
3467
+ #~ "gje kundane valet om å betala på andre måtar. Då bør du velja kredittkort "
3468
+ #~ "+ manuell betaling."
3469
+
3470
+ #~ msgid " only"
3471
+ #~ msgstr " berre"
3472
+
3473
+ #~ msgid " plus manual payment option"
3474
+ #~ msgstr " pluss manuell betaling"
3475
+
3476
+ #~ msgid "Pay using"
3477
+ #~ msgstr "Betal med"
3478
+
3479
+ #~ msgid "Pay by Cheque/Bank Deposit"
3480
+ #~ msgstr "Betal med sjekk/bankinnskot"
3481
+
3482
+ #~ msgid "Credit Card"
3483
+ #~ msgstr "Kredittkort"
3484
+
3485
+ #~ msgid "Created default options."
3486
+ #~ msgstr "Har lagra standardvala."
3487
+
3488
+ #~ msgid "MP3 Settings"
3489
+ #~ msgstr "MP3-innstillingar"
3490
+
3491
+ #~ msgid ""
3492
+ #~ "To create the 30 second MP3 file clips, this plugin needs <a href="
3493
+ #~ "\"http://sox.sourceforge.net/\">SoX</a> compiled with MP3 support, enter "
3494
+ #~ "the path to SoX here."
3495
+ #~ msgstr ""
3496
+ #~ "For å laga MP3-klipp på 30 sekund, treng dette tilleggsprogrammet <a href="
3497
+ #~ "\"http://sox.sourceforge.net/\">SoX</a> med MP3-støtte. Skriv inn stigen "
3498
+ #~ "til SoX her."
3499
+
3500
+ #~ msgid "New Preview File"
3501
+ #~ msgstr "Ny førehandsvisingsfil"
3502
+
3503
+ #~ msgid "Replace Product"
3504
+ #~ msgstr "Byt ut produkt"
3505
+
3506
+ #~ msgid "Display on Front page"
3507
+ #~ msgstr "Vis på framsida"
3508
+
3509
+ #~ msgid "returned no results."
3510
+ #~ msgstr "gav ingen resultat."
3511
+
3512
+ #~ msgid "Subtotal"
3513
+ #~ msgstr "Subtotal"
3514
+
3515
+ #~ msgid "Delivery Region"
3516
+ #~ msgstr "Leveringsområde"
3517
+
3518
+ #~ msgid "You cannot move a product group with subcategories."
3519
+ #~ msgstr "Du kan ikkje flytta ein kategori med underkategoriar."
3520
+
3521
+ #~ msgid ""
3522
+ #~ "Variation stock and price control does not work if you have more than two "
3523
+ #~ "variations."
3524
+ #~ msgstr ""
3525
+ #~ "Lager- og priskontroll for produktvariantar verkar ikkje om du har meir "
3526
+ #~ "enn to variantar."
3527
+
3528
+ #~ msgid "Categories &amp; Brands Location"
3529
+ #~ msgstr "Plassering for kategoriar og merke"
3530
+
3531
+ #~ msgid "Drag any item here to add it to your cart."
3532
+ #~ msgstr "Dra eit produkt hit for å leggja han i korga."
3533
+
3534
+ #~ msgid ""
3535
+ #~ "Note: If you do not upload a preview file and your server has sox "
3536
+ #~ "compiled with MP3 support then a preview file will be created for you."
3537
+ #~ msgstr ""
3538
+ #~ "Hugs: Viss du ikkje lastar opp ei førehandsfil, og tenaren din har SoX "
3539
+ #~ "med MP3-støtte installert, vil det bli laga ei førehandsfil for deg."
3540
+
3541
+ #~ msgid "Display results from current month"
3542
+ #~ msgstr "Vis resultat frå denne månaden"
3543
+
3544
+ #~ msgid "Display results from past three months"
3545
+ #~ msgstr "Vis resultat frå siste tre månadene"
3546
+
3547
+ #~ msgid "Display all results"
3548
+ #~ msgstr "Vis alle resultat"
3549
+
3550
+ #~ msgid "Reset"
3551
+ #~ msgstr "Nullstill"
3552
+
3553
+ #~ msgid ""
3554
+ #~ "It appears that an item has gone out of stock, please go back and edit "
3555
+ #~ "your order."
3556
+ #~ msgstr ""
3557
+ #~ "Eit produkt har gått ut av lager. Ver god å gå tilbake og endra tinginga "
3558
+ #~ "di."
3559
+
3560
+ #~ msgid "If you have a user account, Please "
3561
+ #~ msgstr "Viss du har ein brukarkonto, bør du "
3562
+
3563
+ #~ msgid "log in."
3564
+ #~ msgstr "logga inn."
3565
+
3566
+ #~ msgid "donation"
3567
+ #~ msgstr "gåve"
3568
+
3569
+ #~ msgid "No shipping for donations"
3570
+ #~ msgstr "Gåver er fraktfrie"
3571
+
3572
+ #~ msgid "Product Filename"
3573
+ #~ msgstr "Filnamn for produkt"
3574
+
3575
+ #~ msgid ""
3576
+ #~ "Note: Upload your file to the e-commerce files directory and enter the "
3577
+ #~ "filename here."
3578
+ #~ msgstr ""
3579
+ #~ "Hugs: Last opp fila til mappa wp-shopping-cart/files og skriv inn "
3580
+ #~ "filnamnet her."
3581
+
3582
+ #~ msgid "Products per Page"
3583
+ #~ msgstr "Produkt pr. side"
3584
+
3585
+ #~ msgid ""
3586
+ #~ "Note: You cannot currently set a special price on a product with "
3587
+ #~ "variations"
3588
+ #~ msgstr "Hugs: For tida kan du ikkje tilbodsprisa produkt som har variantar"
3589
+
3590
+ #~ msgid ":variation1: Control"
3591
+ #~ msgstr ":variation1:-kontroll"
3592
+
3593
+ #~ msgid ":variation1: and :variation2: Control"
3594
+ #~ msgstr ":variation1: og :variation2:-kontroll"
3595
+
3596
+ #~ msgid "Please login or signup above to make your purchase"
3597
+ #~ msgstr "Logg inn eller meld deg inn over for å fullføra handelen"
3598
+
3599
+ #~ msgid ""
3600
+ #~ "If you have just registered, please check your email and login before you "
3601
+ #~ "make your purchase"
3602
+ #~ msgstr ""
3603
+ #~ "Viss du nett har meldt deg inn, kan du sjekka eposten din og logga deg "
3604
+ #~ "inn før du fullfører handelen"
3605
+
3606
+ #~ msgid "This page is for members only, you must log in to access this page"
3607
+ #~ msgstr "Denne sida er berre for medlemmer. Du må logga inn for å sjå sida."
3608
+
3609
+ #~ msgid "Is this product a membership?"
3610
+ #~ msgstr "Er dette produktet eit medlemskap?"
3611
+
3612
+ #~ msgid "Membership Length"
3613
+ #~ msgstr "Kor lenge varar medlemskapet"
3614
+
3615
+ #~ msgid "Days"
3616
+ #~ msgstr "Dagar"
3617
+
3618
+ #~ msgid "Years"
3619
+ #~ msgstr "År"
3620
+
3621
+ #~ msgid "Gold Cart"
3622
+ #~ msgstr "Utvida utgåve"
3623
+
3624
+ #~ msgid "That coupon has expired or does not exist."
3625
+ #~ msgstr "Denne kupongen er finst ikkje, eller han er utgått."
3626
+
3627
+ #~ msgid "DropShop Display"
3628
+ #~ msgstr "DropShop-vising"
3629
+
3630
+ #~ msgid "Price after discount"
3631
+ #~ msgstr "Pris etter rabatt"
3632
+
3633
+ #~ msgid "Save Product Order"
3634
+ #~ msgstr "Lagra produkttinging"
3635
+
3636
+ #~ msgid "e-Commerce Subscribers"
3637
+ #~ msgstr "e-handel-abonnentar"
3638
+
3639
+ #~ msgid "Manual Payment and Credit Card"
3640
+ #~ msgstr "Manuell betaling og kredittkort"
3641
+
3642
+ #~ msgid "Address verification failed"
3643
+ #~ msgstr "Greidde ikkje godkjenna adresse"
3644
+
3645
+ #~ msgid "Credit card verification failed"
3646
+ #~ msgstr "Greidde ikkje godkjenna kredittkort"
3647
+
3648
+ #~ msgid "Credit card and Address verification failed"
3649
+ #~ msgstr "Greidde ikkje godkjenna korkje adresse eller kredittkort"
3650
+
3651
+ #~ msgid "Cancel this order"
3652
+ #~ msgstr "Avbryt denne tinginga"
merchants/paypal_certified.php CHANGED
@@ -240,6 +240,7 @@ $_SESSION['paypalExpressMessage']= '
240
  if($ack!="SUCCESS"){
241
  $_SESSION['reshash']=$resArray;
242
  $location = get_option('transact_url')."&act=error";
 
243
  // header("Location: $location");
244
  }else{
245
  $transaction_id = $wpdb->escape($resArray['TRANSACTIONID']);
@@ -254,9 +255,10 @@ $_SESSION['paypalExpressMessage']= '
254
  $wpdb->query("UPDATE `".WPSC_TABLE_PURCHASE_LOGS."` SET `transactid` = '".$transaction_id."', `date` = '".time()."' WHERE `sessionid` = ".$sessionid." LIMIT 1");
255
  break;
256
  }
 
257
  $location = add_query_arg('sessionid', $sessionid, get_option('transact_url'));
258
  //echo $location;
259
- $_SESSION['paypalExpressMessage'] = null;
260
  header("Location: $location");
261
  exit();
262
  }
240
  if($ack!="SUCCESS"){
241
  $_SESSION['reshash']=$resArray;
242
  $location = get_option('transact_url')."&act=error";
243
+ $_SESSION['paypalExpressMessage'] = 'Completed';
244
  // header("Location: $location");
245
  }else{
246
  $transaction_id = $wpdb->escape($resArray['TRANSACTIONID']);
255
  $wpdb->query("UPDATE `".WPSC_TABLE_PURCHASE_LOGS."` SET `transactid` = '".$transaction_id."', `date` = '".time()."' WHERE `sessionid` = ".$sessionid." LIMIT 1");
256
  break;
257
  }
258
+ $_SESSION['paypalExpressMessage'] = $resArray['PAYMENTSTATUS'];
259
  $location = add_query_arg('sessionid', $sessionid, get_option('transact_url'));
260
  //echo $location;
261
+
262
  header("Location: $location");
263
  exit();
264
  }
merchants/paypal_pro.php CHANGED
@@ -20,16 +20,28 @@ if(in_array('paypal_pro',(array)get_option('custom_gateway_options'))) {
20
  }
21
 
22
  $gateway_checkout_form_fields[$nzshpcrt_gateways[$num]['internalname']] = "
23
- <tr %s>
24
- <td>Credit Card Number: *</td>
25
- <td>
 
 
 
 
 
 
 
 
 
 
 
 
26
  <input type='text' value='' name='card_number' />
27
  <p class='validation-error'>%s</p>
28
  </td>
29
  </tr>
30
- <tr %s>
31
- <td>Credit Card Expiry: *</td>
32
- <td>
33
  <select class='wpsc_ccBox' name='expiry[month]'>
34
  ".$months."
35
  <option value='01'>01</option>
@@ -51,24 +63,13 @@ if(in_array('paypal_pro',(array)get_option('custom_gateway_options'))) {
51
  <p class='validation-error'>%s</p>
52
  </td>
53
  </tr>
54
- <tr %s>
55
- <td>CVV: *</td>
56
- <td><input type='text' size='4' value='' maxlength='4' name='card_code' />
57
- <p class='validation-error'>%s</p>
58
- </td>
59
- </tr>
60
- <tr %s>
61
- <td>Card Type: *</td>
62
- <td>
63
- <select class='wpsc_ccBox' name='cctype'>
64
- <option value='Visa'>Visa</option>
65
- <option value='Mastercard'>MasterCard</option>
66
- <option value='Discover'>Discover</option>
67
- <option value='Amex'>Amex</option>
68
- </select>
69
  <p class='validation-error'>%s</p>
70
  </td>
71
  </tr>
 
72
  ";
73
  }
74
 
20
  }
21
 
22
  $gateway_checkout_form_fields[$nzshpcrt_gateways[$num]['internalname']] = "
23
+ <tr id='wpsc_pppro_cc_type' class='card_type' %s>
24
+ <td class='wpsc_pppro_cc_type1'>Card Type: *</td>
25
+ <td class='wpsc_pppro_cc_type2'>
26
+ <select class='wpsc_ccBox' name='cctype'>
27
+ <option value='Visa'>Visa</option>
28
+ <option value='Mastercard'>MasterCard</option>
29
+ <option value='Discover'>Discover</option>
30
+ <option value='Amex'>Amex</option>
31
+ </select>
32
+ <p class='validation-error'>%s</p>
33
+ </td>
34
+ </tr>
35
+ <tr id='wpsc_pppro_cc_number' %s>
36
+ <td class='wpsc_pppro_cc_number1'>Card Number: *</td>
37
+ <td class='wpsc_pppro_cc_number2'>
38
  <input type='text' value='' name='card_number' />
39
  <p class='validation-error'>%s</p>
40
  </td>
41
  </tr>
42
+ <tr id='wpsc_pppro_cc_expiry' %s>
43
+ <td class='wpsc_pppro_cc_expiry1'>Expiry: *</td>
44
+ <td class='wpsc_pppro_cc_expiry2'>
45
  <select class='wpsc_ccBox' name='expiry[month]'>
46
  ".$months."
47
  <option value='01'>01</option>
63
  <p class='validation-error'>%s</p>
64
  </td>
65
  </tr>
66
+ <tr id='wpsc_pppro_cc_code' class='card_cvv' %s>
67
+ <td class='wpsc_pppro_cc_code1'>CVV: *</td>
68
+ <td class='wpsc_pppro_cc_code2'><input type='text' size='4' value='' maxlength='4' name='card_code' />
 
 
 
 
 
 
 
 
 
 
 
 
69
  <p class='validation-error'>%s</p>
70
  </td>
71
  </tr>
72
+
73
  ";
74
  }
75
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://getshopped.org/
4
  Tags: e-commerce, shop, cart, dropshop, ajax, web2.0, paypal, authorize, exchange, stock control, ecommerce
5
  Requires at least: 2.7
6
  Tested up to: 2.9
7
- Stable tag: 3.7.6.1
8
 
9
  WP e-Commerce is a Web 2.0 application designed with usability, aesthetics, and presentation in mind.
10
 
@@ -36,6 +36,23 @@ If you experience database errors try de-activating and re-activating your plugi
36
 
37
 
38
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  = 3.7.6.2 =
40
  * Paypal standard and Paypal standard 2.0 shipping send shipping details
41
  * Google Checkout do not send shipping if shipping is 0
4
  Tags: e-commerce, shop, cart, dropshop, ajax, web2.0, paypal, authorize, exchange, stock control, ecommerce
5
  Requires at least: 2.7
6
  Tested up to: 2.9
7
+ Stable tag: 3.7.6.3
8
 
9
  WP e-Commerce is a Web 2.0 application designed with usability, aesthetics, and presentation in mind.
10
 
36
 
37
 
38
  == Changelog ==
39
+ =3.7.6.3 =
40
+ * Bugfix release
41
+ * Reset categoryAndShippingCountryConflist SESSION after each page load
42
+ * Stock not freed up when items are removed from the cart
43
+ * Permalinks broken when using nordic characters
44
+ * Tax included text strings aren't translated
45
+ * Total Amount is no longer negative is a discount used is larger than the total amount
46
+ * Norwegian translation
47
+ * Product list not showing in admin email report
48
+ * State shows Alabama (or other default region) if the country does not have states
49
+ * Shipping same as billing bug revisited
50
+ * Share this Fixes
51
+ * Added %find_us% tag so you can include how the customer found the website in your purchase report
52
+ * Fix pagination to work with search results.
53
+
54
+
55
+
56
  = 3.7.6.2 =
57
  * Paypal standard and Paypal standard 2.0 shipping send shipping details
58
  * Google Checkout do not send shipping if shipping is 0
share-this.php CHANGED
@@ -23,7 +23,11 @@ Modified to integrate with wp shopping cart
23
  // http://3spots.blogspot.com/2006/02/30-social-bookmarks-add-to-footer.html
24
 
25
  $social_sites = array(
26
- 'delicious' => array(
 
 
 
 
27
  'name' => 'del.icio.us'
28
  , 'url' => 'http://del.icio.us/post?url={url}&title={title}'
29
  )
@@ -108,6 +112,7 @@ $social_sites = array(
108
  // load_plugin_textdomain('alexking.org');
109
  // }
110
 
 
111
  $wpsc_akst_action = '';
112
 
113
  if (!function_exists('ak_check_email_address')) {
@@ -427,7 +432,7 @@ function wpsc_akst_share_link($action = 'print') {
427
  ob_start();
428
  /*<?php bloginfo('siteurl'); ?>/?p=<?php print($post->ID); ?>&amp;wpsc_akst_action=share-this */
429
  ?>
430
- <a href="#" <?php print($onclick); ?> title="<?php _e('E-mail this, post to del.icio.us, etc.', 'alexking.org'); ?>" id="wpsc_akst_link_<?php print($post->ID); ?>" class="wpsc_akst_share_link" rel="nofollow"><img src='<?php echo WPSC_URL; ?>/images/social_networking/share-this-product.gif' title='Share This' alt='Share This' /></a>
431
  <?php
432
  $link = ob_get_contents();
433
  ob_end_clean();
@@ -480,10 +485,10 @@ function wpsc_akst_share_form() {
480
  ?>
481
  <!-- Share This BEGIN -->
482
  <div id="wpsc_akst_form">
483
- <a href="#" onclick="jQuery('#wpsc_akst_form').css('display','none'); return false;" class="wpsc_akst_close"><?php _e('Close', 'alexking.org'); ?></a>
484
  <ul class="tabs">
485
- <li id="wpsc_akst_tab1" class="selected" onclick="wpsc_akst_share_tab('1');"><?php _e('Social Web', 'alexking.org'); ?></li>
486
- <li id="wpsc_akst_tab2" onclick="wpsc_akst_share_tab('2');"><?php _e('E-mail', 'alexking.org'); ?></li>
487
  </ul>
488
  <div class="clear"></div>
489
  <div id="wpsc_akst_social">
@@ -497,24 +502,25 @@ function wpsc_akst_share_form() {
497
  <div class="clear"></div>
498
  </div>
499
  <div id="wpsc_akst_email">
500
- <form action="<?php bloginfo('wpurl'); ?>/index.php" method="post">
 
501
  <fieldset>
502
- <legend><?php _e('E-mail It', 'alexking.org'); ?></legend>
503
  <ul>
504
  <li>
505
- <label><?php _e('To Address:', 'alexking.org'); ?></label>
506
  <input type="text" name="wpsc_akst_to" value="" class="wpsc_akst_text" />
507
  </li>
508
  <li>
509
- <label><?php _e('Your Name:', 'alexking.org'); ?></label>
510
  <input type="text" name="wpsc_akst_name" value="<?php print(htmlspecialchars($name)); ?>" class="wpsc_akst_text" />
511
  </li>
512
  <li>
513
- <label><?php _e('Your Address:', 'alexking.org'); ?></label>
514
  <input type="text" name="wpsc_akst_email" value="<?php print(htmlspecialchars($email)); ?>" class="wpsc_akst_text" />
515
  </li>
516
  <li>
517
- <input type="submit" name="wpsc_akst_submit" value="<?php _e('Send It', 'alexking.org'); ?>" />
518
  </li>
519
  </ul>
520
  <input type="hidden" name="wpsc_akst_action" value="send_mail" />
@@ -596,7 +602,7 @@ function wpsc_akst_send_mail() {
596
  }
597
 
598
  if (empty($to) || !ak_check_email_address($to) || empty($email) || !ak_check_email_address($email)) {
599
- wp_die(__('Click your <strong>back button</strong> and make sure those e-mail addresses are valid then try again.', 'alexking.org'));
600
  }
601
 
602
  // $post = &get_post($post_id);
@@ -606,13 +612,13 @@ function wpsc_akst_send_mail() {
606
  .'Return-Path: "'.$name.'" <'.$email.'>'."\n"
607
  ."Content-Type: text/plain; charset=\"" . get_option('blog_charset') ."\"\n";
608
 
609
- $subject = __('Check out this product on ', 'alexking.org').get_bloginfo('name');
610
 
611
  if(is_numeric($_REQUEST['wpsc_akst_product_id']))
612
  {
613
  $permalink = get_option('product_list_url');
614
- $message .= __('Greetings--', 'alexking.org')."\n\n";
615
- $message .= $name.__(' thinks this will be of interest to you:', 'alexking.org')."\n\n";
616
  //$message .= ak_decode_entities(get_the_title($post_id))."\n\n";
617
  if($wp_query->query_vars['product_url_name'] != '') {
618
  $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");
@@ -625,17 +631,17 @@ function wpsc_akst_send_mail() {
625
  $message .= wpsc_product_url((int)$_REQUEST['wpsc_akst_product_id'])."\n\n";
626
  }
627
  }
628
- $message .= __('Enjoy.', 'alexking.org')."\n\n";
629
  $message .= '--'."\n";
630
  $message .= get_bloginfo('home')."\n";
631
  }
632
  else
633
  {
634
- $message = __('Greetings--', 'alexking.org')."\n\n"
635
- .$name.__(' thinks this will be of interest to you:', 'alexking.org')."\n\n"
636
  .ak_decode_entities(get_the_title($post_id))."\n\n"
637
  .get_permalink($post_id)."\n\n"
638
- .__('Enjoy.', 'alexking.org')."\n\n"
639
  .'--'."\n"
640
  .get_bloginfo('home')."\n";
641
  }
@@ -693,7 +699,7 @@ function wpsc_akst_page() {
693
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
694
  <html xmlns="http://www.w3.org/1999/xhtml">
695
  <head>
696
- <title><?php _e('Share This : ', 'alexking.org'); the_title(); ?></title>
697
  <meta name="robots" content="noindex, noarchive" />
698
  <link rel="stylesheet" type="text/css" href="<?php print(wpsc_akst_FILEPATH); ?>?wpsc_akst_action=css" />
699
  <style type="text/css">
@@ -829,11 +835,11 @@ function wpsc_akst_page() {
829
  <div id="body">
830
 
831
  <div id="info">
832
- <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.', 'alexking.org'), '<a href="'.get_permalink($id).'">'.get_the_title().'</a>'); ?></p>
833
  </div>
834
 
835
  <div id="social">
836
- <h2><?php _e('Social Web', 'alexking.org'); ?></h2>
837
  <div id="wpsc_akst_social">
838
  <ul>
839
  <?php
@@ -858,26 +864,26 @@ function wpsc_akst_page() {
858
  </div>
859
 
860
  <div id="email">
861
- <h2><?php _e('E-mail', 'alexking.org'); ?></h2>
862
  <div id="wpsc_akst_email">
863
- <form action="<?php bloginfo('wpurl'); ?>/index.php" method="post">
864
  <fieldset>
865
- <legend><?php _e('E-mail It', 'alexking.org'); ?></legend>
866
  <ul>
867
  <li>
868
- <label><?php _e('To Address:', 'alexking.org'); ?></label>
869
  <input type="text" name="wpsc_akst_to" value="" class="wpsc_akst_text" />
870
  </li>
871
  <li>
872
- <label><?php _e('Your Name:', 'alexking.org'); ?></label>
873
  <input type="text" name="wpsc_akst_name" value="<?php print(htmlspecialchars($name)); ?>" class="wpsc_akst_text" />
874
  </li>
875
  <li>
876
- <label><?php _e('Your Address:', 'alexking.org'); ?></label>
877
  <input type="text" name="wpsc_akst_email" value="<?php print(htmlspecialchars($email)); ?>" class="wpsc_akst_text" />
878
  </li>
879
  <li>
880
- <input type="submit" name="wpsc_akst_submit" value="<?php _e('Send It', 'alexking.org'); ?>" />
881
  </li>
882
  </ul>
883
  <input type="hidden" name="wpsc_akst_action" value="send_mail" />
@@ -900,17 +906,13 @@ function wpsc_akst_page() {
900
  <div id="content">
901
  <span class="wpsc_akst_date"><?php the_time('F d, Y'); ?></span>
902
  <h1 class="wpsc_akst_title"><?php the_title(); ?></h1>
903
- <p class="wpsc_akst_category"><?php _e('Posted in: ', 'alexking.org'); the_category(','); ?></p>
904
  <div class="wpsc_akst_entry"><?php the_content(); ?></div>
905
  <hr />
906
- <p class="wpsc_akst_return"><?php _e('Return to:', 'alexking.org'); ?> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
907
  <div class="clear"></div>
908
  </div>
909
 
910
- <div id="footer">
911
- <p><?php _e('Powered by <a href="http://alexking.org/projects/wordpress">Share This</a>', 'alexking.org'); ?></p>
912
- </div>
913
-
914
  </div>
915
 
916
  </body>
23
  // http://3spots.blogspot.com/2006/02/30-social-bookmarks-add-to-footer.html
24
 
25
  $social_sites = array(
26
+ 'facebook' => array(
27
+ 'name' => 'Facebook'
28
+ , 'url' => 'http://www.facebook.com/share.php?u={url}'
29
+ )
30
+ , 'delicious' => array(
31
  'name' => 'del.icio.us'
32
  , 'url' => 'http://del.icio.us/post?url={url}&title={title}'
33
  )
112
  // load_plugin_textdomain('alexking.org');
113
  // }
114
 
115
+
116
  $wpsc_akst_action = '';
117
 
118
  if (!function_exists('ak_check_email_address')) {
432
  ob_start();
433
  /*<?php bloginfo('siteurl'); ?>/?p=<?php print($post->ID); ?>&amp;wpsc_akst_action=share-this */
434
  ?>
435
+ <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_URL; ?>/images/social_networking/share-this-product.gif' title='Share This' alt='Share This' /></a>
436
  <?php
437
  $link = ob_get_contents();
438
  ob_end_clean();
485
  ?>
486
  <!-- Share This BEGIN -->
487
  <div id="wpsc_akst_form">
488
+ <a href="#" onclick="jQuery('#wpsc_akst_form').css('display','none'); return false;" class="wpsc_akst_close"><?php _e('Close', 'wpsc'); ?></a>
489
  <ul class="tabs">
490
+ <li id="wpsc_akst_tab1" class="selected" onclick="wpsc_akst_share_tab('1');"><?php _e('Social Web', 'wpsc'); ?></li>
491
+ <li id="wpsc_akst_tab2" onclick="wpsc_akst_share_tab('2');"><?php _e('E-mail', 'wpsc'); ?></li>
492
  </ul>
493
  <div class="clear"></div>
494
  <div id="wpsc_akst_social">
502
  <div class="clear"></div>
503
  </div>
504
  <div id="wpsc_akst_email">
505
+ <form action="#" method="post">
506
+ <!-- "<?php echo WPSC_URL; ?>/share-this.php -->
507
  <fieldset>
508
+ <legend><?php _e('E-mail It', 'wpsc'); ?></legend>
509
  <ul>
510
  <li>
511
+ <label><?php _e('To Address:','wpsc'); ?></label>
512
  <input type="text" name="wpsc_akst_to" value="" class="wpsc_akst_text" />
513
  </li>
514
  <li>
515
+ <label><?php _e('Your Name:','wpsc'); ?></label>
516
  <input type="text" name="wpsc_akst_name" value="<?php print(htmlspecialchars($name)); ?>" class="wpsc_akst_text" />
517
  </li>
518
  <li>
519
+ <label><?php _e('Your Address:','wpsc'); ?></label>
520
  <input type="text" name="wpsc_akst_email" value="<?php print(htmlspecialchars($email)); ?>" class="wpsc_akst_text" />
521
  </li>
522
  <li>
523
+ <input type="submit" name="wpsc_akst_submit" value="<?php _e('Send It','wpsc'); ?>" />
524
  </li>
525
  </ul>
526
  <input type="hidden" name="wpsc_akst_action" value="send_mail" />
602
  }
603
 
604
  if (empty($to) || !ak_check_email_address($to) || empty($email) || !ak_check_email_address($email)) {
605
+ wp_die(__('Click your <strong>back button</strong> and make sure those e-mail addresses are valid then try again.', 'wpsc'));
606
  }
607
 
608
  // $post = &get_post($post_id);
612
  .'Return-Path: "'.$name.'" <'.$email.'>'."\n"
613
  ."Content-Type: text/plain; charset=\"" . get_option('blog_charset') ."\"\n";
614
 
615
+ $subject = __('Check out this product on ', 'wpsc').get_bloginfo('name');
616
 
617
  if(is_numeric($_REQUEST['wpsc_akst_product_id']))
618
  {
619
  $permalink = get_option('product_list_url');
620
+ $message .= __('Greetings--', 'wpsc')."\n\n";
621
+ $message .= $name.__(' thinks this will be of interest to you:','wpsc')."\n\n";
622
  //$message .= ak_decode_entities(get_the_title($post_id))."\n\n";
623
  if($wp_query->query_vars['product_url_name'] != '') {
624
  $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");
631
  $message .= wpsc_product_url((int)$_REQUEST['wpsc_akst_product_id'])."\n\n";
632
  }
633
  }
634
+ $message .= __('Enjoy.')."\n\n";
635
  $message .= '--'."\n";
636
  $message .= get_bloginfo('home')."\n";
637
  }
638
  else
639
  {
640
+ $message = __('Greetings--','wpsc')."\n\n"
641
+ .$name.__(' thinks this will be of interest to you:','wpsc')."\n\n"
642
  .ak_decode_entities(get_the_title($post_id))."\n\n"
643
  .get_permalink($post_id)."\n\n"
644
+ .__('Enjoy.')."\n\n"
645
  .'--'."\n"
646
  .get_bloginfo('home')."\n";
647
  }
699
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
700
  <html xmlns="http://www.w3.org/1999/xhtml">
701
  <head>
702
+ <title><?php _e('Share This : ', 'wpsc'); the_title(); ?></title>
703
  <meta name="robots" content="noindex, noarchive" />
704
  <link rel="stylesheet" type="text/css" href="<?php print(wpsc_akst_FILEPATH); ?>?wpsc_akst_action=css" />
705
  <style type="text/css">
835
  <div id="body">
836
 
837
  <div id="info">
838
+ <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.', bloginfo('wpurl')), '<a href="'.get_permalink($id).'">'.get_the_title().'</a>'); ?></p>
839
  </div>
840
 
841
  <div id="social">
842
+ <h2><?php _e('Social Web', 'wpsc'); ?></h2>
843
  <div id="wpsc_akst_social">
844
  <ul>
845
  <?php
864
  </div>
865
 
866
  <div id="email">
867
+ <h2><?php _e('E-mail', 'wpsc'); ?></h2>
868
  <div id="wpsc_akst_email">
869
+ <form action="#" method="post">
870
  <fieldset>
871
+ <legend><?php _e('E-mail It','wpsc'); ?></legend>
872
  <ul>
873
  <li>
874
+ <label><?php _e('To Address:','wpsc'); ?></label>
875
  <input type="text" name="wpsc_akst_to" value="" class="wpsc_akst_text" />
876
  </li>
877
  <li>
878
+ <label><?php _e('Your Name:','wpsc'); ?></label>
879
  <input type="text" name="wpsc_akst_name" value="<?php print(htmlspecialchars($name)); ?>" class="wpsc_akst_text" />
880
  </li>
881
  <li>
882
+ <label><?php _e('Your Address:','wpsc'); ?></label>
883
  <input type="text" name="wpsc_akst_email" value="<?php print(htmlspecialchars($email)); ?>" class="wpsc_akst_text" />
884
  </li>
885
  <li>
886
+ <input type="submit" name="wpsc_akst_submit" value="<?php _e('Send It','wpsc'); ?>" />
887
  </li>
888
  </ul>
889
  <input type="hidden" name="wpsc_akst_action" value="send_mail" />
906
  <div id="content">
907
  <span class="wpsc_akst_date"><?php the_time('F d, Y'); ?></span>
908
  <h1 class="wpsc_akst_title"><?php the_title(); ?></h1>
909
+ <p class="wpsc_akst_category"><?php _e('Posted in: ', 'wpsc'); the_category(','); ?></p>
910
  <div class="wpsc_akst_entry"><?php the_content(); ?></div>
911
  <hr />
912
+ <p class="wpsc_akst_return"><?php _e('Return to:', 'wpsc'); ?> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
913
  <div class="clear"></div>
914
  </div>
915
 
 
 
 
 
916
  </div>
917
 
918
  </body>
shipping/australiapost.php CHANGED
@@ -48,7 +48,7 @@ class australiapost {
48
  $this->is_external = true;
49
  $this->requires_weight = true;
50
  $this->needs_zipcode = true;
51
- $this->debug = false; // change to true to see the API URLs and responses for each active service
52
 
53
  // Initialise the list of available postage services
54
  $this->services['STANDARD'] = __('Standard Parcel Post', 'wpsc');
@@ -151,6 +151,10 @@ class australiapost {
151
  } else if(isset($_SESSION['wpsc_zipcode'])) {
152
  $destzipcode = $_SESSION['wpsc_zipcode'];
153
  }
 
 
 
 
154
 
155
  //Calculate the total cart dimensions by adding the volume of each product then calculating the cubed root
156
  $volume = 0;
@@ -191,10 +195,15 @@ class australiapost {
191
  if ($cuberoot > 0) {
192
  $height = $width = $length = $cuberoot;
193
  }
 
 
 
 
194
 
195
  // API Documentation: http://drc.edeliver.com.au/
196
  $url = "http://drc.edeliver.com.au/ratecalc.asp?Pickup_Postcode={$this->base_zipcode}&Destination_Postcode={$destzipcode}&Quantity=1&Weight={$weight}&Height={$height}&Width={$width}&Length={$length}&Country={$dest}";
197
-
 
198
  $methods = array();
199
  foreach ($this->services as $code => $service) {
200
  if (!$this->settings['services'][$code]) continue;
@@ -202,15 +211,13 @@ class australiapost {
202
  $fullURL = "$url&Service_Type=$code";
203
 
204
  $response = wp_remote_get($fullURL);
205
-
206
- if ($this->debug) {
207
- echo '<pre>';
208
- echo "{$fullURL}\n{$response['body']}\n\n</pre>";
209
- }
210
-
211
 
212
  // Silently ignore any API server errors
213
  if ( is_wp_error($response) || $response['response']['code'] != '200' || empty($response['body']) ) continue;
 
 
 
 
214
 
215
  $lines = explode("\n", $response['body']);
216
 
@@ -232,6 +239,8 @@ class australiapost {
232
  }
233
  $methods[$code]['name'] = $this->services[$code];
234
  }
 
 
235
 
236
  // Allow another WordPress plugin to override the quoted method(s)/amount(s)
237
 
48
  $this->is_external = true;
49
  $this->requires_weight = true;
50
  $this->needs_zipcode = true;
51
+ $this->debug = false; // change to true to log (to the PHP error log) the API URLs and responses for each active service
52
 
53
  // Initialise the list of available postage services
54
  $this->services['STANDARD'] = __('Standard Parcel Post', 'wpsc');
151
  } else if(isset($_SESSION['wpsc_zipcode'])) {
152
  $destzipcode = $_SESSION['wpsc_zipcode'];
153
  }
154
+ if (strlen($destzipcode) != 4) {
155
+ // No destination postcode entered yet, so just return an empty set of quotes
156
+ return array();
157
+ }
158
 
159
  //Calculate the total cart dimensions by adding the volume of each product then calculating the cubed root
160
  $volume = 0;
195
  if ($cuberoot > 0) {
196
  $height = $width = $length = $cuberoot;
197
  }
198
+
199
+ // As per http://auspost.com.au/personal/parcel-dimensions.html: if the parcel is box-shaped, both its length and width must be at least 15cm.
200
+ if ($length < 150) $length = 150;
201
+ if ($width < 150) $width = 150;
202
 
203
  // API Documentation: http://drc.edeliver.com.au/
204
  $url = "http://drc.edeliver.com.au/ratecalc.asp?Pickup_Postcode={$this->base_zipcode}&Destination_Postcode={$destzipcode}&Quantity=1&Weight={$weight}&Height={$height}&Width={$width}&Length={$length}&Country={$dest}";
205
+
206
+ $log = '';
207
  $methods = array();
208
  foreach ($this->services as $code => $service) {
209
  if (!$this->settings['services'][$code]) continue;
211
  $fullURL = "$url&Service_Type=$code";
212
 
213
  $response = wp_remote_get($fullURL);
 
 
 
 
 
 
214
 
215
  // Silently ignore any API server errors
216
  if ( is_wp_error($response) || $response['response']['code'] != '200' || empty($response['body']) ) continue;
217
+
218
+ if ($this->debug) {
219
+ $log .=" {$fullURL}\n " . $response['body'] . "\n";
220
+ }
221
 
222
  $lines = explode("\n", $response['body']);
223
 
239
  }
240
  $methods[$code]['name'] = $this->services[$code];
241
  }
242
+ if ($this->debug)
243
+ error_log( 'WP e-Commerce Australia Post shipping quotes for ' . site_url() . ":\n----------\n$log----------" );
244
 
245
  // Allow another WordPress plugin to override the quoted method(s)/amount(s)
246
 
themes/default/grid_view.php CHANGED
@@ -7,7 +7,7 @@ $image_height = get_option('product_image_height');
7
 
8
  <?php if(wpsc_has_breadcrumbs()) : ?>
9
  <div class='breadcrumb'>
10
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
11
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
12
  <?php if(wpsc_breadcrumb_url()) :?>
13
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
7
 
8
  <?php if(wpsc_has_breadcrumbs()) : ?>
9
  <div class='breadcrumb'>
10
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
11
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
12
  <?php if(wpsc_breadcrumb_url()) :?>
13
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/default/list_view.php CHANGED
@@ -5,7 +5,7 @@ global $wpsc_query, $wpdb;
5
 
6
  <?php if(wpsc_has_breadcrumbs()) : ?>
7
  <div class='breadcrumb'>
8
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
9
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
10
  <?php if(wpsc_breadcrumb_url()) :?>
11
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
5
 
6
  <?php if(wpsc_has_breadcrumbs()) : ?>
7
  <div class='breadcrumb'>
8
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
9
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
10
  <?php if(wpsc_breadcrumb_url()) :?>
11
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/default/products_page.php CHANGED
@@ -8,7 +8,7 @@ global $wpsc_query, $wpdb;
8
 
9
  <?php if(wpsc_has_breadcrumbs()) : ?>
10
  <div class='breadcrumb'>
11
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
12
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
13
  <?php if(wpsc_breadcrumb_url()) :?>
14
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
8
 
9
  <?php if(wpsc_has_breadcrumbs()) : ?>
10
  <div class='breadcrumb'>
11
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
12
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
13
  <?php if(wpsc_breadcrumb_url()) :?>
14
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/default/shopping_cart_page.php CHANGED
@@ -77,6 +77,7 @@ if(wpsc_cart_item_count() > 0) :
77
  <?php if($_SESSION['categoryAndShippingCountryConflict'] != '') : ?>
78
  <p class='validation-error'><?php echo $_SESSION['categoryAndShippingCountryConflict']; ?></p>
79
  <?php
 
80
  endif;
81
 
82
  if($_SESSION['WpscGatewayErrorMessage'] != '') :
77
  <?php if($_SESSION['categoryAndShippingCountryConflict'] != '') : ?>
78
  <p class='validation-error'><?php echo $_SESSION['categoryAndShippingCountryConflict']; ?></p>
79
  <?php
80
+ $_SESSION['categoryAndShippingCountryConflict'] = '';
81
  endif;
82
 
83
  if($_SESSION['WpscGatewayErrorMessage'] != '') :
themes/default/single_product.php CHANGED
@@ -7,7 +7,7 @@ $image_height = get_option('single_view_image_height');
7
 
8
  <?php if(wpsc_has_breadcrumbs()) :?>
9
  <div class='breadcrumb'>
10
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
11
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
12
  <?php if(wpsc_breadcrumb_url()) :?>
13
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
7
 
8
  <?php if(wpsc_has_breadcrumbs()) :?>
9
  <div class='breadcrumb'>
10
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
11
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
12
  <?php if(wpsc_breadcrumb_url()) :?>
13
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/iShop/grid_view.php CHANGED
@@ -7,7 +7,7 @@ $image_height = get_option('product_image_height');
7
 
8
  <?php if(wpsc_has_breadcrumbs()) : ?>
9
  <div class='breadcrumb'>
10
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
11
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
12
  <?php if(wpsc_breadcrumb_url()) :?>
13
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
7
 
8
  <?php if(wpsc_has_breadcrumbs()) : ?>
9
  <div class='breadcrumb'>
10
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
11
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
12
  <?php if(wpsc_breadcrumb_url()) :?>
13
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/iShop/list_view.php CHANGED
@@ -5,7 +5,7 @@ global $wpsc_query, $wpdb;
5
 
6
  <?php if(wpsc_has_breadcrumbs()) : ?>
7
  <div class='breadcrumb'>
8
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
9
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
10
  <?php if(wpsc_breadcrumb_url()) :?>
11
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
5
 
6
  <?php if(wpsc_has_breadcrumbs()) : ?>
7
  <div class='breadcrumb'>
8
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
9
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
10
  <?php if(wpsc_breadcrumb_url()) :?>
11
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/iShop/products_page.php CHANGED
@@ -9,7 +9,7 @@ global $wpsc_query, $wpdb;
9
 
10
  <?php if(wpsc_has_breadcrumbs()) : ?>
11
  <div class='breadcrumb'>
12
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
13
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
14
  <?php if(wpsc_breadcrumb_url()) :?>
15
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
9
 
10
  <?php if(wpsc_has_breadcrumbs()) : ?>
11
  <div class='breadcrumb'>
12
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
13
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
14
  <?php if(wpsc_breadcrumb_url()) :?>
15
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/iShop/shopping_cart_page.php CHANGED
@@ -77,6 +77,7 @@ if(wpsc_cart_item_count() > 0) :
77
  <?php if($_SESSION['categoryAndShippingCountryConflict'] != '') : ?>
78
  <p class='validation-error'><?php echo $_SESSION['categoryAndShippingCountryConflict']; ?></p>
79
  <?php
 
80
  endif;
81
  if($_SESSION['WpscGatewayErrorMessage'] != '') :
82
  ?>
77
  <?php if($_SESSION['categoryAndShippingCountryConflict'] != '') : ?>
78
  <p class='validation-error'><?php echo $_SESSION['categoryAndShippingCountryConflict']; ?></p>
79
  <?php
80
+ $_SESSION['categoryAndShippingCountryConflict'] = '';
81
  endif;
82
  if($_SESSION['WpscGatewayErrorMessage'] != '') :
83
  ?>
themes/iShop/single_product.php CHANGED
@@ -8,7 +8,7 @@ $image_height = get_option('single_view_image_height');
8
 
9
  <?php if(wpsc_has_breadcrumbs()) :?>
10
  <div class='breadcrumb'>
11
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
12
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
13
  <?php if(wpsc_breadcrumb_url()) :?>
14
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
8
 
9
  <?php if(wpsc_has_breadcrumbs()) :?>
10
  <div class='breadcrumb'>
11
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
12
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
13
  <?php if(wpsc_breadcrumb_url()) :?>
14
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/marketplace/grid_view.php CHANGED
@@ -7,7 +7,7 @@ $image_height = get_option('product_image_height');
7
 
8
  <?php if(wpsc_has_breadcrumbs()) : ?>
9
  <div class='breadcrumb'>
10
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
11
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
12
  <?php if(wpsc_breadcrumb_url()) :?>
13
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
7
 
8
  <?php if(wpsc_has_breadcrumbs()) : ?>
9
  <div class='breadcrumb'>
10
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
11
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
12
  <?php if(wpsc_breadcrumb_url()) :?>
13
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/marketplace/list_view.php CHANGED
@@ -5,7 +5,7 @@ global $wpsc_query, $wpdb;
5
 
6
  <?php if(wpsc_has_breadcrumbs()) : ?>
7
  <div class='breadcrumb'>
8
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
9
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
10
  <?php if(wpsc_breadcrumb_url()) :?>
11
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
5
 
6
  <?php if(wpsc_has_breadcrumbs()) : ?>
7
  <div class='breadcrumb'>
8
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
9
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
10
  <?php if(wpsc_breadcrumb_url()) :?>
11
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/marketplace/products_page.php CHANGED
@@ -9,7 +9,7 @@ global $wpsc_query, $wpdb;
9
 
10
  <?php if(wpsc_has_breadcrumbs()) : ?>
11
  <div class='breadcrumb'>
12
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
13
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
14
  <?php if(wpsc_breadcrumb_url()) :?>
15
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
9
 
10
  <?php if(wpsc_has_breadcrumbs()) : ?>
11
  <div class='breadcrumb'>
12
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
13
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
14
  <?php if(wpsc_breadcrumb_url()) :?>
15
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
themes/marketplace/shopping_cart_page.php CHANGED
@@ -76,6 +76,7 @@ if(wpsc_cart_item_count() > 0) :
76
  <?php if($_SESSION['categoryAndShippingCountryConflict'] != '') : ?>
77
  <p class='validation-error'><?php echo $_SESSION['categoryAndShippingCountryConflict']; ?></p>
78
  <?php
 
79
  endif;
80
  if($_SESSION['WpscGatewayErrorMessage'] != '') :
81
  ?>
76
  <?php if($_SESSION['categoryAndShippingCountryConflict'] != '') : ?>
77
  <p class='validation-error'><?php echo $_SESSION['categoryAndShippingCountryConflict']; ?></p>
78
  <?php
79
+ $_SESSION['categoryAndShippingCountryConflict'] = '';
80
  endif;
81
  if($_SESSION['WpscGatewayErrorMessage'] != '') :
82
  ?>
themes/marketplace/single_product.php CHANGED
@@ -8,7 +8,7 @@ $image_height = get_option('single_view_image_height');
8
 
9
  <?php if(wpsc_has_breadcrumbs()) :?>
10
  <div class='breadcrumb'>
11
- <a href='<?php echo get_option('home'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
12
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
13
  <?php if(wpsc_breadcrumb_url()) :?>
14
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
8
 
9
  <?php if(wpsc_has_breadcrumbs()) :?>
10
  <div class='breadcrumb'>
11
+ <a href='<?php echo get_option('product_list_url'); ?>'><?php echo get_option('blogname'); ?></a> &raquo;
12
  <?php while (wpsc_have_breadcrumbs()) : wpsc_the_breadcrumb(); ?>
13
  <?php if(wpsc_breadcrumb_url()) :?>
14
  <a href='<?php echo wpsc_breadcrumb_url(); ?>'><?php echo wpsc_breadcrumb_name(); ?></a> &raquo;
transaction_result_functions.php CHANGED
@@ -1,6 +1,7 @@
1
  <?php
2
  function transaction_results($sessionid, $echo_to_screen = true, $transaction_id = null) {
3
  global $wpdb,$wpsc_cart, $wpsc_shipping_modules;
 
4
  //$curgateway = get_option('payment_gateway');
5
  $curgateway = $wpdb->get_var("SELECT gateway FROM ".WPSC_TABLE_PURCHASE_LOGS." WHERE sessionid='$sessionid'");
6
  $errorcode = 0;
@@ -19,7 +20,8 @@ function transaction_results($sessionid, $echo_to_screen = true, $transaction_id
19
  }
20
 
21
  $purchase_log = $wpdb->get_row("SELECT * FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `sessionid`= ".$sessionid." LIMIT 1",ARRAY_A) ;
22
-
 
23
  if(($purchase_log['gateway'] == "testmode") && ($purchase_log['processed'] < 2)) {
24
  $message = get_option('wpsc_email_receipt');
25
  $message_html = $message;
@@ -28,7 +30,6 @@ function transaction_results($sessionid, $echo_to_screen = true, $transaction_id
28
  $message_html = $message;
29
  }
30
  $order_url = $siteurl."/wp-admin/admin.php?page=".WPSC_DIR_NAME."/display-log.php&amp;purchcaseid=".$purchase_log['id'];
31
-
32
  if(($_GET['ipn_request'] != 'true') and (get_option('paypal_ipn') == 1)) {
33
  if($purchase_log == null) {
34
  echo __('We&#39;re Sorry, your order has not been accepted, the most likely reason is that you have insufficient funds.', 'wpsc');
@@ -146,7 +147,7 @@ function transaction_results($sessionid, $echo_to_screen = true, $transaction_id
146
  $variation_list = " (".stripslashes(implode(", ",$value_names)).")";
147
  }
148
 
149
- if($link != '') {
150
  $additional_content = apply_filters('wpsc_transaction_result_content', array("purchase_id" =>$purchase_log['id'], "cart_item"=>$row, "purchase_log"=>$purchase_log));
151
  if(!is_string($additional_content)) {
152
  $additional_content = '';
@@ -220,7 +221,7 @@ function transaction_results($sessionid, $echo_to_screen = true, $transaction_id
220
  $message_html.= "\n\r".__('Your Transaction ID', 'wpsc').": " . $_GET['ti'];
221
  $report.= "\n\r".__('Transaction ID', 'wpsc').": " . $_GET['ti'];
222
  } else {
223
- $report_id = "Purchase No.: ".$purchase_log['id']."\n\r";
224
  }
225
 
226
 
@@ -230,16 +231,19 @@ function transaction_results($sessionid, $echo_to_screen = true, $transaction_id
230
  $message = str_replace('%total_price%',$total_price_email,$message);
231
  //$message = str_replace('%order_status%',get_option('blogname'),$message);
232
  $message = str_replace('%shop_name%',get_option('blogname'),$message);
 
233
 
234
  $report = str_replace('%product_list%',$report_product_list,$report);
235
  $report = str_replace('%total_shipping%',$total_shipping_email,$report);
236
  $report = str_replace('%total_price%',$total_price_email,$report);
237
  $report = str_replace('%shop_name%',get_option('blogname'),$report);
 
238
 
239
  $message_html = str_replace('%product_list%',$product_list_html,$message_html);
240
  $message_html = str_replace('%total_shipping%',$total_shipping_html,$message_html);
241
  $message_html = str_replace('%total_price%',$total_price_email,$message_html);
242
  $message_html = str_replace('%shop_name%',get_option('blogname'),$message_html);
 
243
  //$message_html = str_replace('%order_status%',get_option('blogname'),$message_html);
244
 
245
 
@@ -259,7 +263,56 @@ function transaction_results($sessionid, $echo_to_screen = true, $transaction_id
259
  remove_filter('wp_mail_from_name', 'wpsc_replace_reply_name');
260
  remove_filter('wp_mail_from', 'wpsc_replace_reply_address');
261
  $report_user = __('Customer Details', 'wpsc')."\n\r";
262
- $form_sql = "SELECT * FROM `".WPSC_TABLE_SUBMITED_FORM_DATA."` WHERE `log_id` = '".$purchase_log['id']."'";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  $form_data = $wpdb->get_results($form_sql,ARRAY_A);
264
 
265
  if($form_data != null) {
@@ -286,6 +339,7 @@ function transaction_results($sessionid, $echo_to_screen = true, $transaction_id
286
  }
287
 
288
  $report_user .= "\n\r";
 
289
  $report = $report_user. $report_id . $report;
290
 
291
  if($stock_adjusted == true) {
1
  <?php
2
  function transaction_results($sessionid, $echo_to_screen = true, $transaction_id = null) {
3
  global $wpdb,$wpsc_cart, $wpsc_shipping_modules;
4
+
5
  //$curgateway = get_option('payment_gateway');
6
  $curgateway = $wpdb->get_var("SELECT gateway FROM ".WPSC_TABLE_PURCHASE_LOGS." WHERE sessionid='$sessionid'");
7
  $errorcode = 0;
20
  }
21
 
22
  $purchase_log = $wpdb->get_row("SELECT * FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `sessionid`= ".$sessionid." LIMIT 1",ARRAY_A) ;
23
+ $thepurchlogitem = new wpsc_purchaselogs_items((int)$purchase_log['id']);
24
+
25
  if(($purchase_log['gateway'] == "testmode") && ($purchase_log['processed'] < 2)) {
26
  $message = get_option('wpsc_email_receipt');
27
  $message_html = $message;
30
  $message_html = $message;
31
  }
32
  $order_url = $siteurl."/wp-admin/admin.php?page=".WPSC_DIR_NAME."/display-log.php&amp;purchcaseid=".$purchase_log['id'];
 
33
  if(($_GET['ipn_request'] != 'true') and (get_option('paypal_ipn') == 1)) {
34
  if($purchase_log == null) {
35
  echo __('We&#39;re Sorry, your order has not been accepted, the most likely reason is that you have insufficient funds.', 'wpsc');
147
  $variation_list = " (".stripslashes(implode(", ",$value_names)).")";
148
  }
149
 
150
+ if($link != '' && (!empty($link))) {
151
  $additional_content = apply_filters('wpsc_transaction_result_content', array("purchase_id" =>$purchase_log['id'], "cart_item"=>$row, "purchase_log"=>$purchase_log));
152
  if(!is_string($additional_content)) {
153
  $additional_content = '';
221
  $message_html.= "\n\r".__('Your Transaction ID', 'wpsc').": " . $_GET['ti'];
222
  $report.= "\n\r".__('Transaction ID', 'wpsc').": " . $_GET['ti'];
223
  } else {
224
+ $report_id = "Purchase # ".$purchase_log['id']."\n\r";
225
  }
226
 
227
 
231
  $message = str_replace('%total_price%',$total_price_email,$message);
232
  //$message = str_replace('%order_status%',get_option('blogname'),$message);
233
  $message = str_replace('%shop_name%',get_option('blogname'),$message);
234
+ $message = str_replace( '%find_us%', $purchase_log['find_us'], $message );
235
 
236
  $report = str_replace('%product_list%',$report_product_list,$report);
237
  $report = str_replace('%total_shipping%',$total_shipping_email,$report);
238
  $report = str_replace('%total_price%',$total_price_email,$report);
239
  $report = str_replace('%shop_name%',get_option('blogname'),$report);
240
+ $report = str_replace( '%find_us%', $purchase_log['find_us'], $report );
241
 
242
  $message_html = str_replace('%product_list%',$product_list_html,$message_html);
243
  $message_html = str_replace('%total_shipping%',$total_shipping_html,$message_html);
244
  $message_html = str_replace('%total_price%',$total_price_email,$message_html);
245
  $message_html = str_replace('%shop_name%',get_option('blogname'),$message_html);
246
+ $message_html = str_replace( '%find_us%', $purchase_log['find_us'], $message_html );
247
  //$message_html = str_replace('%order_status%',get_option('blogname'),$message_html);
248
 
249
 
263
  remove_filter('wp_mail_from_name', 'wpsc_replace_reply_name');
264
  remove_filter('wp_mail_from', 'wpsc_replace_reply_address');
265
  $report_user = __('Customer Details', 'wpsc')."\n\r";
266
+ $report_user .= "Billing Info \n\r";
267
+ foreach((array)$thepurchlogitem->userinfo as $userinfo){
268
+ if($userinfo['unique_name'] != 'billingcountry'){
269
+ $report_user .= "".$userinfo['name'].": ".$userinfo['value']."\n";
270
+ }else{
271
+ $userinfo['value'] = maybe_unserialize($userinfo['value']);
272
+ if(is_array($userinfo['value'] )){
273
+ if(!empty($userinfo['value'][1]) && !is_numeric($userinfo['value'][1])){
274
+ $report_user .= "State: ".$userinfo['value'][1]."\n";
275
+ }elseif(is_numeric($userinfo['value'][1])){
276
+ $report_user .= "State: ".wpsc_get_state_by_id($userinfo['value'][1],'name')."\n";
277
+ }
278
+ if(!empty($userinfo['value'][0])){
279
+ $report_user .= "Country: ".$userinfo['value'][0]."\n";
280
+ }
281
+ }else{
282
+ $report_user .= "".$userinfo['name'].": ".$userinfo['value']."\n";
283
+ }
284
+ }
285
+ }
286
+
287
+ $report_user .= "\n\rShipping Info \n\r";
288
+ foreach((array)$thepurchlogitem->shippinginfo as $userinfo){
289
+ if($userinfo['unique_name'] != 'shippingcountry' && $userinfo['unique_name'] != 'shippingstate'){
290
+ $report_user .= "".$userinfo['name'].": ".$userinfo['value']."\n";
291
+ }elseif($userinfo['unique_name'] == 'shippingcountry'){
292
+ $userinfo['value'] = maybe_unserialize($userinfo['value']);
293
+ if(is_array($userinfo['value'] )){
294
+ if(!empty($userinfo['value'][1]) && !is_numeric($userinfo['value'][1])){
295
+ $report_user .= "State: ".$userinfo['value'][1]."\n";
296
+ }elseif(is_numeric($userinfo['value'][1])){
297
+ $report_user .= "State: ".wpsc_get_state_by_id($userinfo['value'][1],'name')."\n";
298
+ }
299
+ if(!empty($userinfo['value'][0])){
300
+ $report_user .= "Country: ".$userinfo['value'][0]."\n";
301
+ }
302
+ }else{
303
+ $report_user .= "".$userinfo['name'].": ".$userinfo['value']."\n";
304
+ }
305
+ }elseif($userinfo['unique_name'] == 'shippingstate'){
306
+ if(!empty($userinfo['value']) && !is_numeric($userinfo['value'])){
307
+ $report_user .= "".$userinfo['name'].": ".$userinfo['value']."\n";
308
+ }elseif(is_numeric($userinfo['value'])){
309
+ $report_user .= "State: ".wpsc_get_state_by_id($userinfo['value'],'name')."\n";
310
+ }
311
+ }
312
+ }
313
+ $report_user .= "\n\r";
314
+ /*
315
+ $form_sql = "SELECT * FROM `".WPSC_TABLE_SUBMITED_FORM_DATA."` WHERE `log_id` = '".$purchase_log['id']."'";
316
  $form_data = $wpdb->get_results($form_sql,ARRAY_A);
317
 
318
  if($form_data != null) {
339
  }
340
 
341
  $report_user .= "\n\r";
342
+ */
343
  $report = $report_user. $report_id . $report;
344
 
345
  if($stock_adjusted == true) {
transaction_results.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  global $wpdb, $user_ID, $nzshpcrt_gateways;
3
  do_action('wpsc_transaction_results');
4
-
5
  $sessionid = $_GET['sessionid'];
6
  if(!isset($_GET['sessionid']) && isset($_GET['ms']) ){
7
  $sessionid = $_GET['ms'];
@@ -21,11 +20,8 @@ if($_GET['gateway'] == 'google'){
21
  }elseif($_GET['gateway'] == 'noca'){
22
  wpsc_submit_checkout();
23
  }
24
- if($_SESSION['wpsc_previous_selected_gateway'] == 'paypal_certified'){
25
- $sessionid = $_SESSION['paypalexpresssessionid'];
26
- }
27
 
28
- //exit("test!");
29
  $errorcode = '';
30
  $transactid = '';
31
  if($_REQUEST['eway']=='1') {
@@ -36,32 +32,24 @@ if($_REQUEST['eway']=='1') {
36
  echo $_SESSION['payflow_message'];
37
  $_SESSION['payflow_message']='';
38
  }
39
- //exit('getting here?<pre>'.print_r($_SESSION[[wpsc_previous_selected_gateway], true).'</pre>'.get_option('payment_gateway'));
40
- if($_SESSION['wpsc_previous_selected_gateway'] == 'paypal_certified'){
41
  echo $_SESSION['paypalExpressMessage'];
 
42
 
43
-
44
- } elseif($sessionid == ''){
45
  _e('Sorry your transaction was not accepted.<br /><a href='.get_option("shopping_cart_url").'>Click here to go back to checkout page.</a>');
46
 
47
  }else{
48
 
49
  if($_SESSION['wpsc_previous_selected_gateway']== 'dps') {
50
  $sessionid = decrypt_dps_response();
51
- //exit($sessionid);
52
  if($sessionid != ''){
53
- //exit('<pre>'.print_r($sessionid, true).'</pre>');
54
  transaction_results($sessionid, true);
55
  }else{
56
  _e('Sorry your transaction was not accepted.<br /><a href='.get_option("shopping_cart_url").'>Click here to go back to checkout page.</a>');
57
  }
58
  } else {
59
-
60
  echo transaction_results($sessionid, true);
61
  }
62
  }
63
- if($sessionid != ''){
64
- //exit('<pre>'.print_r($sessionid, true).'</pre>');
65
- //transaction_results($sessionid, true);
66
- }
67
  ?>
1
  <?php
2
  global $wpdb, $user_ID, $nzshpcrt_gateways;
3
  do_action('wpsc_transaction_results');
 
4
  $sessionid = $_GET['sessionid'];
5
  if(!isset($_GET['sessionid']) && isset($_GET['ms']) ){
6
  $sessionid = $_GET['ms'];
20
  }elseif($_GET['gateway'] == 'noca'){
21
  wpsc_submit_checkout();
22
  }
 
 
 
23
 
24
+
25
  $errorcode = '';
26
  $transactid = '';
27
  if($_REQUEST['eway']=='1') {
32
  echo $_SESSION['payflow_message'];
33
  $_SESSION['payflow_message']='';
34
  }
35
+ if($_SESSION['wpsc_previous_selected_gateway'] == 'paypal_certified' && $_SESSION['paypalExpressMessage'] != 'Completed'){
 
36
  echo $_SESSION['paypalExpressMessage'];
37
+ $sessionid = $_SESSION['paypalexpresssessionid'];
38
 
39
+ }elseif($sessionid == ''){
 
40
  _e('Sorry your transaction was not accepted.<br /><a href='.get_option("shopping_cart_url").'>Click here to go back to checkout page.</a>');
41
 
42
  }else{
43
 
44
  if($_SESSION['wpsc_previous_selected_gateway']== 'dps') {
45
  $sessionid = decrypt_dps_response();
 
46
  if($sessionid != ''){
 
47
  transaction_results($sessionid, true);
48
  }else{
49
  _e('Sorry your transaction was not accepted.<br /><a href='.get_option("shopping_cart_url").'>Click here to go back to checkout page.</a>');
50
  }
51
  } else {
 
52
  echo transaction_results($sessionid, true);
53
  }
54
  }
 
 
 
 
55
  ?>
wp-shopping-cart.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name:WP Shopping Cart
4
  Plugin URI: http://www.getshopped.org
5
  Description: A plugin that provides a WordPress Shopping Cart. Visit the <a href='http://getshopped.org/forums'>getshopped forums</a> for support.
6
- Version: 3.7.6.2
7
  Author: Instinct
8
  Author URI: http://www.getshopped.org
9
  */
@@ -14,9 +14,9 @@ Author URI: http://www.getshopped.org
14
  // this is to make sure it sets up the table name constants correctly on activation
15
  global $wpdb;
16
  define('WPSC_VERSION', '3.7');
17
- define('WPSC_MINOR_VERSION', '52');
18
 
19
- define('WPSC_PRESENTABLE_VERSION', '3.7.6.2');
20
 
21
  define('WPSC_DEBUG', false);
22
  define('WPSC_GATEWAY_DEBUG', false);
@@ -301,7 +301,6 @@ foreach($nzshpcrt_shipping_list as $nzshpcrt_shipping) {
301
  }
302
  }
303
  $wpsc_shipping_modules = apply_filters('wpsc_shipping_modules',$wpsc_shipping_modules);
304
-
305
  // if the gold cart file is present, include it, this must be done before the admin file is included
306
  if(is_file(WPSC_UPGRADES_DIR . "gold_cart_files/gold_shopping_cart.php")) {
307
  require_once(WPSC_UPGRADES_DIR . "gold_cart_files/gold_shopping_cart.php");
3
  Plugin Name:WP Shopping Cart
4
  Plugin URI: http://www.getshopped.org
5
  Description: A plugin that provides a WordPress Shopping Cart. Visit the <a href='http://getshopped.org/forums'>getshopped forums</a> for support.
6
+ Version: 3.7.6.3
7
  Author: Instinct
8
  Author URI: http://www.getshopped.org
9
  */
14
  // this is to make sure it sets up the table name constants correctly on activation
15
  global $wpdb;
16
  define('WPSC_VERSION', '3.7');
17
+ define('WPSC_MINOR_VERSION', '53');
18
 
19
+ define('WPSC_PRESENTABLE_VERSION', '3.7.6.3');
20
 
21
  define('WPSC_DEBUG', false);
22
  define('WPSC_GATEWAY_DEBUG', false);
301
  }
302
  }
303
  $wpsc_shipping_modules = apply_filters('wpsc_shipping_modules',$wpsc_shipping_modules);
 
304
  // if the gold cart file is present, include it, this must be done before the admin file is included
305
  if(is_file(WPSC_UPGRADES_DIR . "gold_cart_files/gold_shopping_cart.php")) {
306
  require_once(WPSC_UPGRADES_DIR . "gold_cart_files/gold_shopping_cart.php");
wpsc-admin/ajax-and-init.php CHANGED
@@ -1767,13 +1767,14 @@ global $wpdb, $wp_rewrite;
1767
  if($datarow['active'] == 1) {
1768
  $tidied_name = trim($datarow['name']);
1769
  $tidied_name = strtolower($tidied_name);
1770
- $url_name = sanitize_title($tidied_name);
1771
  $similar_names = $wpdb->get_row("SELECT COUNT(*) AS `count`, MAX(REPLACE(`nice-name`, '$url_name', '')) AS `max_number` FROM `".WPSC_TABLE_PRODUCT_CATEGORIES."` WHERE `nice-name` REGEXP '^($url_name){1}(\d)*$' AND `id` NOT IN ('{$datarow['id']}') ",ARRAY_A);
1772
  $extension_number = '';
1773
  if($similar_names['count'] > 0) {
1774
  $extension_number = (int)$similar_names['max_number']+2;
1775
  }
1776
  $url_name .= $extension_number;
 
1777
  $wpdb->query("UPDATE `".WPSC_TABLE_PRODUCT_CATEGORIES."` SET `nice-name` = '$url_name' WHERE `id` = '{$datarow['id']}' LIMIT 1 ;");
1778
  $updated;
1779
  } else if($datarow['active'] == 0) {
@@ -1911,7 +1912,7 @@ if($_REQUEST['wpsc_admin_action']=='check_form_options'){
1911
  function wpsc_checkout_settings(){
1912
  global $wpdb;
1913
  $wpdb->show_errors = true;
1914
- if(isset($_POST['selected_form_set'])){
1915
  $filter = $wpdb->escape($_POST['selected_form_set']);
1916
  }else{
1917
  $filter = 0;
1767
  if($datarow['active'] == 1) {
1768
  $tidied_name = trim($datarow['name']);
1769
  $tidied_name = strtolower($tidied_name);
1770
+ $url_name = apply_filters('editable_slug',$tidied_name);
1771
  $similar_names = $wpdb->get_row("SELECT COUNT(*) AS `count`, MAX(REPLACE(`nice-name`, '$url_name', '')) AS `max_number` FROM `".WPSC_TABLE_PRODUCT_CATEGORIES."` WHERE `nice-name` REGEXP '^($url_name){1}(\d)*$' AND `id` NOT IN ('{$datarow['id']}') ",ARRAY_A);
1772
  $extension_number = '';
1773
  if($similar_names['count'] > 0) {
1774
  $extension_number = (int)$similar_names['max_number']+2;
1775
  }
1776
  $url_name .= $extension_number;
1777
+
1778
  $wpdb->query("UPDATE `".WPSC_TABLE_PRODUCT_CATEGORIES."` SET `nice-name` = '$url_name' WHERE `id` = '{$datarow['id']}' LIMIT 1 ;");
1779
  $updated;
1780
  } else if($datarow['active'] == 0) {
1912
  function wpsc_checkout_settings(){
1913
  global $wpdb;
1914
  $wpdb->show_errors = true;
1915
+ if(!empty($_POST['selected_form_set'])){
1916
  $filter = $wpdb->escape($_POST['selected_form_set']);
1917
  }else{
1918
  $filter = 0;
wpsc-admin/display-groups.page.php CHANGED
@@ -158,7 +158,7 @@ function wpsc_display_groups_page() {
158
 
159
  //$tidied_name = sanitize_title();
160
  //$tidied_name = strtolower($tidied_name);
161
- $url_name = sanitize_title($_POST['name']);
162
  $similar_names = $wpdb->get_row("SELECT COUNT(*) AS `count`, MAX(REPLACE(`nice-name`, '$url_name', '')) AS `max_number` FROM `".WPSC_TABLE_PRODUCT_CATEGORIES."` WHERE `nice-name` REGEXP '^($url_name){1}(\d)*$' ",ARRAY_A);
163
  $extension_number = '';
164
  if($similar_names['count'] > 0) {
@@ -326,8 +326,9 @@ function wpsc_display_groups_page() {
326
  /* creates and checks the tidy URL name */
327
  // $tidied_name = trim($category_name);
328
  // $tidied_name = strtolower($tidied_name);
329
- $url_name = sanitize_title($category_name);
330
  if($url_name != $category_data['nice-name']) {
 
331
  $similar_names = $wpdb->get_row("SELECT COUNT(*) AS `count`, MAX(REPLACE(`nice-name`, '$url_name', '')) AS `max_number` FROM `".WPSC_TABLE_PRODUCT_CATEGORIES."` WHERE `nice-name` REGEXP '^($url_name){1}(0-9)*$' AND `id` NOT IN ('".(int)$category_data['id']."') ",ARRAY_A);
332
  //exit("<pre>".print_r($similar_names,true)."</pre>");
333
  $extension_number = '';
@@ -428,7 +429,7 @@ function wpsc_display_groups_page() {
428
  } else {
429
  $product_width = '';
430
  }
431
- $category_sql_list[] = "`image_width` = '$product_height' ";
432
 
433
  if(count($category_sql_list) > 0) {
434
  $category_sql = implode(", ",$category_sql_list);
158
 
159
  //$tidied_name = sanitize_title();
160
  //$tidied_name = strtolower($tidied_name);
161
+ $url_name = apply_filters('editable_slug',$_POST['name']);
162
  $similar_names = $wpdb->get_row("SELECT COUNT(*) AS `count`, MAX(REPLACE(`nice-name`, '$url_name', '')) AS `max_number` FROM `".WPSC_TABLE_PRODUCT_CATEGORIES."` WHERE `nice-name` REGEXP '^($url_name){1}(\d)*$' ",ARRAY_A);
163
  $extension_number = '';
164
  if($similar_names['count'] > 0) {
326
  /* creates and checks the tidy URL name */
327
  // $tidied_name = trim($category_name);
328
  // $tidied_name = strtolower($tidied_name);
329
+ $url_name = apply_filters('editable_slug',$category_name);
330
  if($url_name != $category_data['nice-name']) {
331
+ // exit('url name'.$url_name);
332
  $similar_names = $wpdb->get_row("SELECT COUNT(*) AS `count`, MAX(REPLACE(`nice-name`, '$url_name', '')) AS `max_number` FROM `".WPSC_TABLE_PRODUCT_CATEGORIES."` WHERE `nice-name` REGEXP '^($url_name){1}(0-9)*$' AND `id` NOT IN ('".(int)$category_data['id']."') ",ARRAY_A);
333
  //exit("<pre>".print_r($similar_names,true)."</pre>");
334
  $extension_number = '';
429
  } else {
430
  $product_width = '';
431
  }
432
+ $category_sql_list[] = "`image_width` = '$product_width' ";
433
 
434
  if(count($category_sql_list) > 0) {
435
  $category_sql = implode(", ",$category_sql_list);
wpsc-admin/includes/product-functions.php CHANGED
@@ -214,8 +214,9 @@ function wpsc_insert_product($post_data, $wpsc_error = false) {
214
  $tidied_name = strtolower(trim(stripslashes($post_data['name'])));
215
  // convert " - " to "-", all other spaces to dashes, and remove all foward slashes.
216
  //$url_name = preg_replace(array("/(\s-\s)+/","/(\s)+/", "/(\/)+/"), array("-","-", ""), $tidied_name);
217
- $url_name = sanitize_title($tidied_name);
218
-
 
219
  // Select all similar names, using an escaped version of the URL name
220
  $similar_names = (array)$wpdb->get_col("SELECT `meta_value` FROM `".WPSC_TABLE_PRODUCTMETA."` WHERE `product_id` NOT IN('{$product_id}}') AND `meta_key` IN ('url_name') AND `meta_value` REGEXP '^(".$wpdb->escape(preg_quote($url_name))."){1}[[:digit:]]*$' ");
221
 
@@ -614,14 +615,20 @@ function wpsc_resize_image_thumbnail($product_id, $image_action= 0, $width = 0,
614
  }
615
 
616
  if(!file_exists(WPSC_IMAGE_DIR.$image)) {
617
- $wpdb->query("INSERT INTO `".WPSC_TABLE_PRODUCT_IMAGES."` SET `thumbnail_state` = '$image_action' WHERE `id`='{$product_id}' LIMIT 1");
 
618
  $sql = "INSERT INTO `".WPSC_TABLE_PRODUCT_IMAGES."` (`product_id`, `image`, `width`, `height`) VALUES ('{$product_id}', '{$image}', '{$width}', '{$height}' )";
619
  $wpdb->query($sql);
620
- $image_id = (int) $wpdb->insert_id;
 
 
 
 
 
 
 
621
  }
622
 
623
- $sql="UPDATE `".WPSC_TABLE_PRODUCT_LIST."` SET `thumbnail_state` = '$image_action', `image` ='{$image_id}' WHERE `id`='{$product_id}' LIMIT 1";
624
- //exit($sql);
625
  $wpdb->query($sql);
626
  } else {
627
  //if it is not, we need to unset the associated image
214
  $tidied_name = strtolower(trim(stripslashes($post_data['name'])));
215
  // convert " - " to "-", all other spaces to dashes, and remove all foward slashes.
216
  //$url_name = preg_replace(array("/(\s-\s)+/","/(\s)+/", "/(\/)+/"), array("-","-", ""), $tidied_name);
217
+ //$url_name = sanitize_title($tidied_name);
218
+ $url_name = apply_filters('editable_slug',$tidied_name);
219
+
220
  // Select all similar names, using an escaped version of the URL name
221
  $similar_names = (array)$wpdb->get_col("SELECT `meta_value` FROM `".WPSC_TABLE_PRODUCTMETA."` WHERE `product_id` NOT IN('{$product_id}}') AND `meta_key` IN ('url_name') AND `meta_value` REGEXP '^(".$wpdb->escape(preg_quote($url_name))."){1}[[:digit:]]*$' ");
222
 
615
  }
616
 
617
  if(!file_exists(WPSC_IMAGE_DIR.$image)) {
618
+ //$wpdb->query("INSERT INTO `".WPSC_TABLE_PRODUCT_IMAGES."` SET `thumbnail_state` = '$image_action' WHERE `id`='{$product_id}' LIMIT 1");
619
+ if($image_action != 3){
620
  $sql = "INSERT INTO `".WPSC_TABLE_PRODUCT_IMAGES."` (`product_id`, `image`, `width`, `height`) VALUES ('{$product_id}', '{$image}', '{$width}', '{$height}' )";
621
  $wpdb->query($sql);
622
+
623
+ $image_id = (int) $wpdb->insert_id;
624
+ }
625
+ }
626
+ if($image_action != 3){
627
+ $sql="UPDATE `".WPSC_TABLE_PRODUCT_LIST."` SET `thumbnail_state` = '$image_action', `image` ='{$image_id}' WHERE `id`='{$product_id}' LIMIT 1";
628
+ }else{
629
+ $sql="UPDATE `".WPSC_TABLE_PRODUCT_LIST."` SET `thumbnail_state` = '$image_action', `image` ='{$image_id}',`thumbnail_image`='{$image}' WHERE `id`='{$product_id}' LIMIT 1";
630
  }
631
 
 
 
632
  $wpdb->query($sql);
633
  } else {
634
  //if it is not, we need to unset the associated image
wpsc-admin/includes/settings-pages/admin.php CHANGED
@@ -115,7 +115,7 @@ global $wpdb;
115
  <h3 class="form_group"><?php echo __('Custom Messages', 'wpsc');?>:</h3>
116
  <table class='wpsc_options form-table'>
117
  <tr>
118
- <th colspan="2"><?php echo __('Tags can be used', 'wpsc');?>: %shop_name%,<!-- %order_status%,--> %product_list%, %total_price%, %total_shipping%</th>
119
  </tr>
120
  <tr>
121
  <td class='wpsc_td_note' colspan='2'>
@@ -209,10 +209,11 @@ global $wpdb;
209
  </tr>
210
  <?php
211
  }
 
212
  ?>
213
  <tr class='merged'>
214
- <td colspan="2"><a href='<?php echo wp_nonce_url("page.php?wpsc_admin_action=update_page_urls"); ?>' ><?php echo __('Update Page URLs', 'wpsc'); ?></a> &nbsp; | &nbsp;
215
- <a href='<?php echo wp_nonce_url("page.php?wpsc_admin_action=clean_categories"); ?>'><?php echo __('Fix Product Group Permalinks', 'wpsc'); ?></a>
216
  </td>
217
  </tr>
218
  </table>
115
  <h3 class="form_group"><?php echo __('Custom Messages', 'wpsc');?>:</h3>
116
  <table class='wpsc_options form-table'>
117
  <tr>
118
+ <th colspan="2"><?php echo __('Tags can be used', 'wpsc');?>: %shop_name%,<!-- %order_status%,--> %product_list%, %total_price%, %total_shipping%, %find_us%</th>
119
  </tr>
120
  <tr>
121
  <td class='wpsc_td_note' colspan='2'>
209
  </tr>
210
  <?php
211
  }
212
+ $sendback = wp_get_referer();
213
  ?>
214
  <tr class='merged'>
215
+ <td colspan="2"><a href='<?php echo wp_nonce_url($sendback."&wpsc_admin_action=update_page_urls"); ?>' ><?php echo __('Update Page URLs', 'wpsc'); ?></a> &nbsp; | &nbsp;
216
+ <a href='<?php echo wp_nonce_url($sendback."&wpsc_admin_action=clean_categories"); ?>'><?php echo __('Fix Product Group Permalinks', 'wpsc'); ?></a>
217
  </td>
218
  </tr>
219
  </table>
wpsc-includes/ajax.functions.php CHANGED
@@ -650,7 +650,17 @@ function wpsc_submit_checkout() {
650
 
651
  $tax = $wpsc_cart->calculate_total_tax();
652
  $total = $wpsc_cart->calculate_total_price();
653
- $sql = "INSERT INTO `".WPSC_TABLE_PURCHASE_LOGS."` (`totalprice`,`statusno`, `sessionid`, `user_ID`, `date`, `gateway`, `billing_country`,`shipping_country`, `billing_region`, `shipping_region`, `base_shipping`,`shipping_method`, `shipping_option`, `plugin_version`, `discount_value`, `discount_data`,`find_us`) VALUES ('$total' ,'0', '{$sessionid}', '".(int)$user_ID."', UNIX_TIMESTAMP(), '{$submitted_gateway}', '{$wpsc_cart->delivery_country}', '{$wpsc_cart->selected_country}','{$wpsc_cart->selected_region}', '{$wpsc_cart->delivery_region}', '{$base_shipping}', '{$wpsc_cart->selected_shipping_method}', '{$wpsc_cart->selected_shipping_option}', '".WPSC_VERSION."', '{$wpsc_cart->coupons_amount}','{$wpsc_cart->coupons_name}', '{$find_us}')";
 
 
 
 
 
 
 
 
 
 
654
 
655
  //exit($sql);
656
  $wpdb->query($sql);
@@ -676,6 +686,10 @@ function wpsc_submit_checkout() {
676
  }
677
 
678
 
 
 
 
 
679
 
680
  /// submit to gateway
681
 
@@ -868,17 +882,19 @@ function wpsc_change_tax() {
868
  $form_selected_country = $wpsc_selected_country;
869
  $form_selected_region = $wpsc_selected_region;
870
  $onchange_function = 'set_billing_country';
 
871
  } else if(($_POST['shipping_country'] != 'undefined') && !isset($_POST['billing_country'])) {
872
  $form_selected_country = $wpsc_delivery_country;
873
  $form_selected_region = $wpsc_delivery_region;
874
  $onchange_function = 'set_shipping_country';
 
875
  }
876
 
877
  if(($form_selected_country != null) && ($onchange_function != null)) {
878
  $region_list = $wpdb->get_results("SELECT `".WPSC_TABLE_REGION_TAX."`.* FROM `".WPSC_TABLE_REGION_TAX."`, `".WPSC_TABLE_CURRENCY_LIST."` WHERE `".WPSC_TABLE_CURRENCY_LIST."`.`isocode` IN('".$form_selected_country."') AND `".WPSC_TABLE_CURRENCY_LIST."`.`id` = `".WPSC_TABLE_REGION_TAX."`.`country_id`",ARRAY_A) ;
879
  if($region_list != null) {
880
 
881
- $output = "<select name='collected_data[".$form_id."][1]' class='current_region' onchange='$onchange_function(\"region_country_form_$form_id\", \"$form_id\");'>\n\r";
882
 
883
  foreach($region_list as $region) {
884
  if($form_selected_region == $region['id']) {
650
 
651
  $tax = $wpsc_cart->calculate_total_tax();
652
  $total = $wpsc_cart->calculate_total_price();
653
+ // Make sure delivery and selected region are onlly saved if the country does have regions
654
+ // Im unsure how this would effect countries that HAVE regions, i.e if you select Canada as country,, will your // region be alabama if no region was selected?
655
+ $wpsc_cart->update_location();
656
+ if(!wpsc_has_regions($wpsc_cart->selected_country)){
657
+ $wpsc_cart->selected_region = '';
658
+ }
659
+ if(!wpsc_has_regions($wpsc_cart->delivery_country)){
660
+ $wpsc_cart->delivery_region = '';
661
+ }
662
+
663
+ $sql = "INSERT INTO `".WPSC_TABLE_PURCHASE_LOGS."` (`totalprice`,`statusno`, `sessionid`, `user_ID`, `date`, `gateway`, `billing_country`,`shipping_country`, `billing_region`, `shipping_region`, `base_shipping`,`shipping_method`, `shipping_option`, `plugin_version`, `discount_value`, `discount_data`,`find_us`) VALUES ('$total' ,'0', '{$sessionid}', '".(int)$user_ID."', UNIX_TIMESTAMP(), '{$submitted_gateway}', '{$wpsc_cart->selected_country}', '{$wpsc_cart->delivery_country}','{$wpsc_cart->selected_region}', '{$wpsc_cart->delivery_region}', '{$base_shipping}', '{$wpsc_cart->selected_shipping_method}', '{$wpsc_cart->selected_shipping_option}', '".WPSC_VERSION."', '{$wpsc_cart->coupons_amount}','{$wpsc_cart->coupons_name}', '{$find_us}')";
664
 
665
  //exit($sql);
666
  $wpdb->query($sql);
686
  }
687
 
688
 
689
+ if($total <= 0){
690
+ $transaction_url_with_sessionid = add_query_arg('sessionid', $session_id, get_option('transact_url'));
691
+ wp_redirect($transaction_url_with_sessionid);
692
+ }
693
 
694
  /// submit to gateway
695
 
882
  $form_selected_country = $wpsc_selected_country;
883
  $form_selected_region = $wpsc_selected_region;
884
  $onchange_function = 'set_billing_country';
885
+ $title = 'billingregion';
886
  } else if(($_POST['shipping_country'] != 'undefined') && !isset($_POST['billing_country'])) {
887
  $form_selected_country = $wpsc_delivery_country;
888
  $form_selected_region = $wpsc_delivery_region;
889
  $onchange_function = 'set_shipping_country';
890
+ $title = 'shippingregion';
891
  }
892
 
893
  if(($form_selected_country != null) && ($onchange_function != null)) {
894
  $region_list = $wpdb->get_results("SELECT `".WPSC_TABLE_REGION_TAX."`.* FROM `".WPSC_TABLE_REGION_TAX."`, `".WPSC_TABLE_CURRENCY_LIST."` WHERE `".WPSC_TABLE_CURRENCY_LIST."`.`isocode` IN('".$form_selected_country."') AND `".WPSC_TABLE_CURRENCY_LIST."`.`id` = `".WPSC_TABLE_REGION_TAX."`.`country_id`",ARRAY_A) ;
895
  if($region_list != null) {
896
 
897
+ $output = "<select title='{$title}' name='collected_data[".$form_id."][1]' class='current_region' onchange='$onchange_function(\"region_country_form_$form_id\", \"$form_id\");'>\n\r";
898
 
899
  foreach($region_list as $region) {
900
  if($form_selected_region == $region['id']) {
wpsc-includes/cart.class.php CHANGED
@@ -1010,16 +1010,18 @@ class wpsc_cart {
1010
  */
1011
  function remove_item($key) {
1012
  if(isset($this->cart_items[$key])) {
1013
- unset($this->cart_items[$key]);
 
 
1014
  $this->cart_items = array_values($this->cart_items);
1015
- $this->cart_item_count = count($this->cart_items);
1016
  $this->current_cart_item = -1;
1017
- $this->clear_cache();
1018
- return true;
1019
- } else {
1020
- $this->clear_cache();
1021
- return false;
1022
- }
1023
 
1024
  }
1025
 
@@ -1152,26 +1154,23 @@ class wpsc_cart {
1152
  * calculate total tax method
1153
  * @access public
1154
  * @return float returns the price as a floating point value
1155
- */
1156
  function calculate_total_tax() {
1157
  global $wpdb, $wpsc_cart;
1158
  $total = 0;
1159
  if(wpsc_tax_isincluded() == false){
1160
-
1161
  if($this->total_tax == null) {
1162
  foreach($this->cart_items as $key => $cart_item) {
1163
  $total += $cart_item->tax;
1164
  }
1165
-
1166
  $this->total_tax = $total;
1167
- // exit('<pre>'.print_r($this,true).'</pre>');
1168
  } else {
1169
  $total = $this->total_tax;
1170
  }
1171
  if($this->total_tax != null && $this->coupons_amount > 0){
1172
  $total = ($this->calculate_subtotal()-$this->coupons_amount)/$this->tax_percentage;
1173
- //exit(($this->calculate_subtotal()-$this->coupons_amount)/$wpsc_cart->tax_percentage);
1174
  }
 
1175
  }else{
1176
  if($this->total_tax == null) {
1177
  foreach($this->cart_items as $key => $cart_item) {
@@ -1181,11 +1180,13 @@ class wpsc_cart {
1181
  } else {
1182
  $total = $this->total_tax;
1183
  }
1184
-
1185
-
1186
  }
1187
  $total = apply_filters('wpsc_convert_tax_prices', $total);
 
1188
 
 
 
 
1189
  return $total;
1190
  }
1191
 
@@ -1581,6 +1582,11 @@ class wpsc_cart {
1581
  $this->coupons_name = $coupons;
1582
  $this->coupons_amount = $couponAmount;
1583
  $this->calculate_total_price();
 
 
 
 
 
1584
  }
1585
 
1586
  }
@@ -1663,7 +1669,7 @@ class wpsc_cart_item {
1663
  $this->refresh_item();
1664
  }
1665
 
1666
- /**
1667
  * update item method, currently can only update the quantity
1668
  * will require the parameters to update (no, you cannot change the product ID, delete the item and make a new one)
1669
  * @access public
@@ -1674,6 +1680,9 @@ class wpsc_cart_item {
1674
  */
1675
  function update_item($quantity) {
1676
  $this->quantity = (int)$quantity;
 
 
 
1677
  }
1678
  /**
1679
  * refresh_item method, refreshes the item, calculates the prices, gets the name
1010
  */
1011
  function remove_item($key) {
1012
  if(isset($this->cart_items[$key])) {
1013
+ $cart_item =& $this->cart_items[$key];
1014
+ $cart_item->update_item(0);
1015
+ unset($this->cart_items[$key]);
1016
  $this->cart_items = array_values($this->cart_items);
1017
+ $this->cart_item_count = count($this->cart_items);
1018
  $this->current_cart_item = -1;
1019
+ $this->clear_cache();
1020
+ return true;
1021
+ } else {
1022
+ $this->clear_cache();
1023
+ return false;
1024
+ }
1025
 
1026
  }
1027
 
1154
  * calculate total tax method
1155
  * @access public
1156
  * @return float returns the price as a floating point value
1157
+ */
1158
  function calculate_total_tax() {
1159
  global $wpdb, $wpsc_cart;
1160
  $total = 0;
1161
  if(wpsc_tax_isincluded() == false){
 
1162
  if($this->total_tax == null) {
1163
  foreach($this->cart_items as $key => $cart_item) {
1164
  $total += $cart_item->tax;
1165
  }
 
1166
  $this->total_tax = $total;
 
1167
  } else {
1168
  $total = $this->total_tax;
1169
  }
1170
  if($this->total_tax != null && $this->coupons_amount > 0){
1171
  $total = ($this->calculate_subtotal()-$this->coupons_amount)/$this->tax_percentage;
 
1172
  }
1173
+
1174
  }else{
1175
  if($this->total_tax == null) {
1176
  foreach($this->cart_items as $key => $cart_item) {
1180
  } else {
1181
  $total = $this->total_tax;
1182
  }
 
 
1183
  }
1184
  $total = apply_filters('wpsc_convert_tax_prices', $total);
1185
+ //If coupon is larger or equal to the total price, then the tax should be 0 as the product is going to be free.
1186
 
1187
+ if($this->coupons_amount >= $this->total_price && !empty($this->coupons_amount)){
1188
+ $total = 0;
1189
+ }
1190
  return $total;
1191
  }
1192
 
1582
  $this->coupons_name = $coupons;
1583
  $this->coupons_amount = $couponAmount;
1584
  $this->calculate_total_price();
1585
+ if ( $this->total_price < 0 ) {
1586
+ $this->coupons_amount += $this->total_price;
1587
+ $this->total_price = null;
1588
+ $this->calculate_total_price();
1589
+ }
1590
  }
1591
 
1592
  }
1669
  $this->refresh_item();
1670
  }
1671
 
1672
+ /**
1673
  * update item method, currently can only update the quantity
1674
  * will require the parameters to update (no, you cannot change the product ID, delete the item and make a new one)
1675
  * @access public
1680
  */
1681
  function update_item($quantity) {
1682
  $this->quantity = (int)$quantity;
1683
+ $this->refresh_item();
1684
+ $this->update_claimed_stock();
1685
+
1686
  }
1687
  /**
1688
  * refresh_item method, refreshes the item, calculates the prices, gets the name
wpsc-includes/category.functions.php CHANGED
@@ -523,7 +523,8 @@ function wpsc_category_url($category_id, $permalink_compatibility = false) {
523
  $category_url = get_option('product_list_url');
524
  }
525
  }
526
- return htmlentities($category_url, ENT_QUOTES);
 
527
  }
528
 
529
 
523
  $category_url = get_option('product_list_url');
524
  }
525
  }
526
+ return $category_url;
527
+ // return htmlentities($category_url, ENT_QUOTES);
528
  }
529
 
530
 
wpsc-includes/checkout.class.php CHANGED
@@ -42,9 +42,9 @@ function wpsc_display_tax_label($checkout = false){
42
  global $wpsc_cart;
43
  if(wpsc_tax_isincluded()){
44
  if($checkout){
45
- return "Tax Included (".$wpsc_cart->tax_percentage.'%)';
46
  }else{
47
- return "Tax Included";
48
  }
49
  }else{
50
  return __('Tax', 'wpsc');
@@ -489,10 +489,10 @@ class wpsc_checkout {
489
  if(wpsc_uses_shipping()&&($country_data['has_regions'] == 1)){
490
  $region_name = $wpdb->get_var("SELECT `name` FROM `".WPSC_TABLE_REGION_TAX."` WHERE `id`='".$_SESSION['wpsc_delivery_region']."' LIMIT 1");
491
  $output = "<input title='".$this->checkout_item->unique_name."' type='hidden' id='".$this->form_element_id()."' class='shipping_region' name='collected_data[{$this->checkout_item->id}]' value='".$_SESSION['wpsc_delivery_region']."' size='4' /><span class='shipping_region_name'>".$region_name."</span> ";
492
-
493
  }else{
494
  $output = "<input class='shipping_region' title='".$this->checkout_item->unique_name."' type='text' id='".$this->form_element_id()."' class='text' value='".$saved_form_data."' name='collected_data[{$this->checkout_item->id}]".$an_array."' />";
495
-
496
  }
497
  }else{
498
  $output = "<input title='".$this->checkout_item->unique_name."' type='text' id='".$this->form_element_id()."' class='text' value='".$saved_form_data."' name='collected_data[{$this->checkout_item->id}]".$an_array."' />";
42
  global $wpsc_cart;
43
  if(wpsc_tax_isincluded()){
44
  if($checkout){
45
+ return sprintf(__('Tax Included (%s%%)', 'wpsc'), $wpsc_cart->tax_percentage);
46
  }else{
47
+ return __('Tax Included', 'wpsc');
48
  }
49
  }else{
50
  return __('Tax', 'wpsc');
489
  if(wpsc_uses_shipping()&&($country_data['has_regions'] == 1)){
490
  $region_name = $wpdb->get_var("SELECT `name` FROM `".WPSC_TABLE_REGION_TAX."` WHERE `id`='".$_SESSION['wpsc_delivery_region']."' LIMIT 1");
491
  $output = "<input title='".$this->checkout_item->unique_name."' type='hidden' id='".$this->form_element_id()."' class='shipping_region' name='collected_data[{$this->checkout_item->id}]' value='".$_SESSION['wpsc_delivery_region']."' size='4' /><span class='shipping_region_name'>".$region_name."</span> ";
492
+
493
  }else{
494
  $output = "<input class='shipping_region' title='".$this->checkout_item->unique_name."' type='text' id='".$this->form_element_id()."' class='text' value='".$saved_form_data."' name='collected_data[{$this->checkout_item->id}]".$an_array."' />";
495
+
496
  }
497
  }else{
498
  $output = "<input title='".$this->checkout_item->unique_name."' type='text' id='".$this->form_element_id()."' class='text' value='".$saved_form_data."' name='collected_data[{$this->checkout_item->id}]".$an_array."' />";
wpsc-includes/merchant.class.php CHANGED
@@ -81,8 +81,7 @@ class wpsc_merchant {
81
  $purchase_id = & $this->purchase_id;
82
  }
83
 
84
-
85
- $email_address = $wpdb->get_var("SELECT `value` FROM `wp_wpsc_checkout_forms` AS `form_field` INNER JOIN `wp_wpsc_submited_form_data` AS `collected_data` ON `form_field`.`id` = `collected_data`.`form_id` WHERE `form_field`.`type` IN ( 'email' ) AND `collected_data`.`log_id` IN ( '{$purchase_id}' )");
86
 
87
  $currency_code = $wpdb->get_var("SELECT `code` FROM `".WPSC_TABLE_CURRENCY_LIST."` WHERE `id`='".get_option('currency_type')."' LIMIT 1");
88
 
81
  $purchase_id = & $this->purchase_id;
82
  }
83
 
84
+ $email_address = $wpdb->get_var("SELECT `value` FROM `" . WPSC_TABLE_CHECKOUT_FORMS . "` AS `form_field` INNER JOIN `" . WPSC_TABLE_SUBMITED_FORM_DATA . "` AS `collected_data` ON `form_field`.`id` = `collected_data`.`form_id` WHERE `form_field`.`type` IN ( 'email' ) AND `collected_data`.`log_id` IN ( '{$purchase_id}' )");
 
85
 
86
  $currency_code = $wpdb->get_var("SELECT `code` FROM `".WPSC_TABLE_CURRENCY_LIST."` WHERE `id`='".get_option('currency_type')."' LIMIT 1");
87
 
wpsc-includes/pagination.class.php CHANGED
@@ -101,10 +101,12 @@ function wpsc_pagination( $show = -1 ) {
101
  }
102
  while ( wpsc_have_pages() ) : wpsc_the_page();
103
  if ( wpsc_page_number() >= $start && wpsc_page_number() <= $end ) {
 
 
104
  if ( wpsc_page_is_selected() ) :
105
- $output .= '<a href="' . wpsc_page_url() . '" class="selected">' . wpsc_page_number() . '</a> ';
106
  else :
107
- $output .= '<a href="' . wpsc_page_url() . '">' . wpsc_page_number() . '</a> ';
108
  endif;
109
  }
110
  endwhile;
@@ -115,6 +117,26 @@ function wpsc_pagination( $show = -1 ) {
115
 
116
  }
117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  /**
119
  * wpsc adjacent products url
120
  * URL for the next or previous page of products on a category or group page.
@@ -136,6 +158,7 @@ function wpsc_adjacent_products_url( $n ) {
136
  while ( wpsc_have_pages() ) : wpsc_the_page();
137
  if ( wpsc_page_number() == $n ) {
138
  $url = wpsc_page_url();
 
139
  $wpsc_query->rewind_pages();
140
  return $url;
141
  }
@@ -213,6 +236,8 @@ function wpsc_first_products_link( $text = 'First', $show_disabled = false ) {
213
 
214
  $wpsc_query->rewind_pages();
215
 
 
 
216
  if ( $page_url && wpsc_current_page() > 1 ) {
217
  return '<a href="' . $page_url . '">' . $text . '</a>';
218
  }
@@ -244,6 +269,8 @@ function wpsc_last_products_link( $text = 'Last', $show_disabled = false ) {
244
 
245
  $wpsc_query->rewind_pages();
246
 
 
 
247
  if ( $page_url && wpsc_current_page() < $wpsc_query->page_count ) {
248
  return '<a href="' . $page_url . '">' . $text . '</a>';
249
  }
101
  }
102
  while ( wpsc_have_pages() ) : wpsc_the_page();
103
  if ( wpsc_page_number() >= $start && wpsc_page_number() <= $end ) {
104
+ $page_url = wpsc_page_url();
105
+ $page_url = wpsc_product_search_url( $page_url );
106
  if ( wpsc_page_is_selected() ) :
107
+ $output .= '<a href="' . $page_url . '" class="selected">' . wpsc_page_number() . '</a> ';
108
  else :
109
+ $output .= '<a href="' . $page_url . '">' . wpsc_page_number() . '</a> ';
110
  endif;
111
  }
112
  endwhile;
117
 
118
  }
119
 
120
+ /**
121
+ * wpsc product search url
122
+ * Add product_search parameter if required.
123
+ * @param $url (string) URL.
124
+ * @return (string) URL.
125
+ */
126
+ function wpsc_product_search_url( $url ) {
127
+
128
+ if ( isset( $_GET['product_search'] ) ) {
129
+ if ( strrpos( $url, '?') ) {
130
+ $url .= '&product_search=' . $_GET['product_search'];
131
+ } else {
132
+ $url .= '?product_search=' . $_GET['product_search'];
133
+ }
134
+ }
135
+
136
+ return $url;
137
+
138
+ }
139
+
140
  /**
141
  * wpsc adjacent products url
142
  * URL for the next or previous page of products on a category or group page.
158
  while ( wpsc_have_pages() ) : wpsc_the_page();
159
  if ( wpsc_page_number() == $n ) {
160
  $url = wpsc_page_url();
161
+ $url = wpsc_product_search_url( $url );
162
  $wpsc_query->rewind_pages();
163
  return $url;
164
  }
236
 
237
  $wpsc_query->rewind_pages();
238
 
239
+ $page_url = wpsc_product_search_url( $page_url );
240
+
241
  if ( $page_url && wpsc_current_page() > 1 ) {
242
  return '<a href="' . $page_url . '">' . $text . '</a>';
243
  }
269
 
270
  $wpsc_query->rewind_pages();
271
 
272
+ $page_url = wpsc_product_search_url( $page_url );
273
+
274
  if ( $page_url && wpsc_current_page() < $wpsc_query->page_count ) {
275
  return '<a href="' . $page_url . '">' . $text . '</a>';
276
  }
wpsc-includes/purchaselogs.class.php CHANGED
@@ -359,6 +359,7 @@ function wpsc_purchaselog_details_tax(){
359
  $price = $purchlogitem->purchitem->price;
360
  }
361
  $tax = ($price/(100+$wpsc_cart->tax_percentage)*$wpsc_cart->tax_percentage);
 
362
  $tax = $wpsc_cart->process_as_currency($tax);
363
  return $tax.' ('.$wpsc_cart->tax_percentage.'%)';
364
  }else{
359
  $price = $purchlogitem->purchitem->price;
360
  }
361
  $tax = ($price/(100+$wpsc_cart->tax_percentage)*$wpsc_cart->tax_percentage);
362
+
363
  $tax = $wpsc_cart->process_as_currency($tax);
364
  return $tax.' ('.$wpsc_cart->tax_percentage.'%)';
365
  }else{
wpsc-includes/wpsc_query.php CHANGED
@@ -555,7 +555,11 @@ function wpsc_the_product_image($width = null, $height = null) {
555
  }
556
  return $image_url;
557
  } else {
558
- $image_url = WPSC_IMAGE_URL.$image_file_name;
 
 
 
 
559
  if(is_ssl()) {
560
  $image_url = str_replace("http://", "https://", $image_url);
561
  }
555
  }
556
  return $image_url;
557
  } else {
558
+ if ($wpsc_query->product['thumbnail_state'] == 3) {
559
+ $image_url = WPSC_THUMBNAIL_URL.$image_file_name;
560
+ } else {
561
+ $image_url = WPSC_IMAGE_URL.$image_file_name;
562
+ }
563
  if(is_ssl()) {
564
  $image_url = str_replace("http://", "https://", $image_url);
565
  }