WP eCommerce - Version 3.7.6.7

Version Description

  • Added back the hourly Cron Job for clearing the Claimed Stock
  • Stripslahses added to transaction results message and Order Notes (removes the / in front of ' and ")
  • Dashboard widget does not include sales that have been canceled by Paypal Pro
  • Australia Post Shipping Module, fix for International quotes
  • Fixed calculations on the Purchase Log and Shipping details pages
  • Fixed Broken HTML tag in Packing Slip
  • Permalinks Issue for WordPress 3.0 and the menu_nav_item custom post type conflict
  • Memory Bump to increase PHP's memory limit if running on 32MB to avoid fatal error out of memory issues
Download this release

Release Info

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

Code changes from version 3.7.6.6 to 3.7.6.7

admin-form-functions.php CHANGED
@@ -360,53 +360,10 @@ $conditions = unserialize($coupon['condition']);
360
  $output .= " <td>\n\r";
361
  $coupon_start = explode(" ",$coupon['start']);
362
  $output .= "<input type='text' class='pickdate' size='8' name='edit_coupon[".$id."][start]' value='{$coupon_start[0]}'>";
363
- /* $output .= " <select name='edit_coupon[".$id."][start][day]'>\n\r";
364
- for($i = 1; $i <=31; ++$i) {
365
- $selected = '';
366
- if($i == date("d", $start_timestamp)) { $selected = "selected='true'"; }
367
- $output .= " <option $selected value='$i'>$i</option>";
368
- }
369
- $output .= " </select>\n\r";
370
- $output .= " <select name='edit_coupon[".$id."][start][month]'>\n\r";
371
- for($i = 1; $i <=12; ++$i) {
372
- $selected = '';
373
- if($i == (int)date("m", $start_timestamp)) { $selected = "selected='true'"; }
374
- $output .= " <option $selected value='$i'>".date("M",mktime(0, 0, 0, $i, 1, date("Y")))."</option>";
375
- }
376
- $output .= " </select>\n\r";
377
- $output .= " <select name='edit_coupon[".$id."][start][year]'>\n\r";
378
- for($i = date("Y"); $i <= (date("Y") +12); ++$i) {
379
- $selected = '';
380
- if($i == date("Y", $start_timestamp)) { $selected = "selected='true'"; }
381
- $output .= " <option $selected value='$i'>".$i."</option>";
382
- }
383
- $output .= " </select>\n\r";*/
384
  $output .= " </td>\n\r";
385
  $output .= " <td>\n\r";
386
  $coupon_expiry = explode(" ",$coupon['expiry']);
387
  $output .= "<input type='text' class='pickdate' size='8' name='edit_coupon[".$id."][expiry]' value='{$coupon_expiry[0]}'>";
388
- /*$output .= " <select name='edit_coupon[".$id."][expiry][day]'>\n\r";
389
- for($i = 1; $i <=31; ++$i) {
390
- $selected = '';
391
- if($i == date("d", $end_timestamp)) { $selected = "selected='true'"; }
392
- $output .= " <option $selected value='$i'>$i</option>";
393
- }
394
- $output .= " </select>\n\r";
395
- $output .= " <select name='edit_coupon[".$id."][expiry][month]'>\n\r";
396
-
397
- for($i = 1; $i <=12; ++$i) {
398
- $selected = '';
399
- if($i == (int)date("m", $end_timestamp)) { $selected = "selected='true'"; }
400
- $output .= " <option $selected value='$i'>".date("M",mktime(0, 0, 0, $i, 1, date("Y")))."</option>";
401
- }
402
- $output .= " </select>\n\r";
403
- $output .= " <select name='edit_coupon[".$id."][expiry][year]'>\n\r";
404
- for($i = date("Y"); $i <= (date("Y") +12); ++$i) {
405
- $selected = '';
406
- if($i == (date("Y", $end_timestamp))) { $selected = "selected='true'"; }
407
- $output .= " <option $selected value='$i'>".$i."</option>\n\r";
408
- }
409
- $output .= " </select>\n\r";*/
410
  $output .= " </td>\n\r";
411
  $output .= " <td>\n\r";
412
  $output .= " <input type='hidden' value='0' name='edit_coupon[".$id."][use-once]' />\n\r";
@@ -422,12 +379,6 @@ $conditions = unserialize($coupon['condition']);
422
  $output .= " </td>\n\r";
423
  $output .= " <td>\n\r";
424
  $output .= " <input type='hidden' value='".$id."' name='edit_coupon[".$id."][id]' />\n\r";
425
- //$output .= " <input type='hidden' value='false' name='add_coupon' />\n\r";
426
- /*
427
- $output .= " <input type='submit' value='".__('Update Coupon', 'wpsc')."' name='edit_coupon[".$id."][submit_coupon]' />\n\r";
428
- $output .= " <input type='submit' value='".__('Delete Coupon', 'wpsc')."' name='edit_coupon[".$id."][delete_coupon]' />\n\r";
429
- */
430
-
431
  $output .= " </td>\n\r";
432
  $output .= " </tr>\n\r";
433
 
@@ -475,40 +426,6 @@ $conditions = unserialize($coupon['condition']);
475
  $output .= wpsc_coupons_conditions( $id);
476
 
477
  }
478
- ?>
479
- <!--
480
- <tr><td colspan="8">
481
- <div class="coupon_condition">
482
- <div><img height="16" width="16" class="delete" alt="Delete" src="<?=WPSC_URL?>/images/cross.png"/></button>
483
- <select class="ruleprops" name="rules[property][]">
484
- <option value="item_name" rel="order">Item name</option>
485
- <option value="item_quantity" rel="order">Item quantity</option>
486
- <option value="total_quantity" rel="order">Total quantity</option>
487
- <option value="subtotal_amount" rel="order">Subtotal amount</option>
488
- </select>
489
- <select name="rules[logic][]">
490
- <option value="equal">Is equal to</option>
491
- <option value="greater">Is greater than</option>
492
- <option value="less">Is less than</option>
493
- <option value="contains">Contains</option>
494
- <option value="not_contain">Does not contain</option>
495
- <option value="begins">Begins with</option>
496
- <option value="ends">Ends with</option>
497
- </select>
498
- <span>
499
- <input type="text" name="rules[value][]"/>
500
- </span>
501
- <span>
502
- <button class="add" type="button">
503
- <img height="16" width="16" alt="Add" src="<?php //WPSC_URL?>/images/add.png"/>
504
- </button>
505
- </span>
506
- </div>
507
- </div>
508
- </tr>
509
- -->
510
-
511
- <?php
512
  $output .= "</table>\n\r";
513
  $output .= "</form>\n\r";
514
  echo $output;
@@ -777,7 +694,7 @@ function wpsc_packing_slip($purchase_id) {
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
  }
360
  $output .= " <td>\n\r";
361
  $coupon_start = explode(" ",$coupon['start']);
362
  $output .= "<input type='text' class='pickdate' size='8' name='edit_coupon[".$id."][start]' value='{$coupon_start[0]}'>";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
363
  $output .= " </td>\n\r";
364
  $output .= " <td>\n\r";
365
  $coupon_expiry = explode(" ",$coupon['expiry']);
366
  $output .= "<input type='text' class='pickdate' size='8' name='edit_coupon[".$id."][expiry]' value='{$coupon_expiry[0]}'>";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  $output .= " </td>\n\r";
368
  $output .= " <td>\n\r";
369
  $output .= " <input type='hidden' value='0' name='edit_coupon[".$id."][use-once]' />\n\r";
379
  $output .= " </td>\n\r";
380
  $output .= " <td>\n\r";
381
  $output .= " <input type='hidden' value='".$id."' name='edit_coupon[".$id."][id]' />\n\r";
 
 
 
 
 
 
382
  $output .= " </td>\n\r";
383
  $output .= " </tr>\n\r";
384
 
426
  $output .= wpsc_coupons_conditions( $id);
427
 
428
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
429
  $output .= "</table>\n\r";
430
  $output .= "</form>\n\r";
431
  echo $output;
694
  }
695
  }elseif($userinfo['unique_name'] == 'shippingstate'){
696
  if(!empty($userinfo['value']) && !is_numeric($userinfo['value'])){
697
+ echo "<tr><td>".$userinfo['name'].": </td><td>".$userinfo['value']."</td></tr>";
698
  }elseif(is_numeric($userinfo['value'])){
699
  echo "<tr><td>State: </td><td>".wpsc_get_state_by_id($userinfo['value'],'name')."</td></tr>";
700
  }
admin.css CHANGED
@@ -544,27 +544,7 @@ div.wpsc_listen_button{
544
  padding: 0px;
545
  }
546
 
547
- /* marketing / coupon page styling */
548
 
549
- div.modify_coupon{ border: 1px solid #eeeeee; display: none; width: 100%; }
550
-
551
- table.coupon_data{
552
- width: 100%;
553
- }
554
-
555
- table.add-coupon tr th{ text-align: left; padding: 2px 5px 0px 5px; }
556
- table.add-coupon tr td{ text-align: left; padding: 2px 5px 2px 5px; }
557
-
558
-
559
- table.coupon-list{ width: 100%; }
560
-
561
- table.coupon-list tr.toprow td{ text-align: left; font-weight:bold; }
562
-
563
- table.coupon-list tr td{ padding: 2px 5px 2px 5px; }
564
-
565
- table.coupon-list tr.alt{ background-color: #eeeeee; }
566
-
567
- table.coupon-list tr.alt td{ background-color: #eeeeee; }
568
 
569
  td#order_summary_container{ width: 80px; }
570
 
544
  padding: 0px;
545
  }
546
 
 
547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
 
549
  td#order_summary_container{ width: 80px; }
550
 
display-coupons.php CHANGED
@@ -305,6 +305,7 @@ $sql ="UPDATE `".WPSC_TABLE_COUPON_CODES."` SET `condition`='".serialize($new_ru
305
  <option value="not_contain">Does not contain</option>
306
  <option value="begins">Begins with</option>
307
  <option value="ends">Ends with</option>
 
308
  </select>
309
  <span>
310
  <input type="text" name="rules[value][]"/>
305
  <option value="not_contain">Does not contain</option>
306
  <option value="begins">Begins with</option>
307
  <option value="ends">Ends with</option>
308
+ <option value="category">In Category</option>
309
  </select>
310
  <span>
311
  <input type="text" name="rules[value][]"/>
js/wp-e-commerce.js CHANGED
@@ -253,7 +253,7 @@ function switchmethod(key,key1){
253
 
254
  // submit the country forms.
255
  function submit_change_country(ajax){
256
- if(!ajax){
257
  document.forms.change_country.submit();
258
  }else{
259
  var country_code = jQuery('#current_country :selected').val();
253
 
254
  // submit the country forms.
255
  function submit_change_country(ajax){
256
+ if(!ajax && (document.forms.change_country)){
257
  document.forms.change_country.submit();
258
  }else{
259
  var country_code = jQuery('#current_country :selected').val();
languages/wpsc-en_EN.pot CHANGED
@@ -9,7 +9,7 @@ msgid ""
9
  msgstr ""
10
  "Project-Id-Version: \n"
11
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-e-commerce\n"
12
- "POT-Creation-Date: 2010-06-15 23:21+0000\n"
13
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -27,7 +27,7 @@ msgid "+ Add new category to the &quot;[categorisation]&quot; Group"
27
  msgstr ""
28
 
29
  #: admin-form-functions.php:25 admin-form-functions.php:279
30
- #: admin-form-functions.php:867 display-ecommerce-subs.php:9
31
  #: js/tinymce3/window.php:105 user-log.php:200 user-log.php:359
32
  #: wpsc-admin/display-groups.page.php:698
33
  #: wpsc-admin/display-groups.page.php:774
@@ -165,10 +165,10 @@ msgstr ""
165
  msgid "Products in this category use the billing address to calculate shipping"
166
  msgstr ""
167
 
168
- #: admin-form-functions.php:250 display-coupons.php:502
169
- #: display-coupons.php:526 merchants/chronopay.php:427
170
- #: merchants/paypal_multiple.php:478 merchants/paypal_multiple.php:486
171
- #: merchants/paypal_multiple.php:502 wpsc-admin/display-groups.page.php:908
172
  #: wpsc-admin/includes/display-items-functions.php:823
173
  #: wpsc-admin/includes/settings-pages/admin.php:38
174
  #: wpsc-admin/includes/settings-pages/admin.php:64
@@ -176,6 +176,7 @@ msgstr ""
176
  #: wpsc-admin/includes/settings-pages/checkout.php:95
177
  #: wpsc-admin/includes/settings-pages/checkout.php:118
178
  #: wpsc-admin/includes/settings-pages/checkout.php:143
 
179
  #: wpsc-admin/includes/settings-pages/general.php:72
180
  #: wpsc-admin/includes/settings-pages/general.php:197
181
  #: wpsc-admin/includes/settings-pages/presentation.php:108
@@ -204,10 +205,10 @@ msgstr ""
204
  msgid "Yes"
205
  msgstr ""
206
 
207
- #: admin-form-functions.php:251 display-coupons.php:503
208
- #: display-coupons.php:527 merchants/chronopay.php:428
209
- #: merchants/paypal_multiple.php:479 merchants/paypal_multiple.php:487
210
- #: merchants/paypal_multiple.php:503 wpsc-admin/display-groups.page.php:909
211
  #: wpsc-admin/includes/display-items-functions.php:825
212
  #: wpsc-admin/includes/settings-pages/admin.php:39
213
  #: wpsc-admin/includes/settings-pages/admin.php:65
@@ -215,6 +216,7 @@ msgstr ""
215
  #: wpsc-admin/includes/settings-pages/checkout.php:97
216
  #: wpsc-admin/includes/settings-pages/checkout.php:120
217
  #: wpsc-admin/includes/settings-pages/checkout.php:145
 
218
  #: wpsc-admin/includes/settings-pages/general.php:74
219
  #: wpsc-admin/includes/settings-pages/general.php:200
220
  #: wpsc-admin/includes/settings-pages/presentation.php:109
@@ -250,7 +252,7 @@ msgstr ""
250
  #: admin-form-functions.php:262 admin-form-functions.php:300
251
  #: admin-form-functions.php:319 shipping/tablerate.php:44
252
  #: shipping/weightrate.php:35 wpsc-admin/admin.php:347
253
- #: wpsc-admin/ajax-and-init.php:1902 wpsc-admin/display-groups.page.php:669
254
  #: wpsc-admin/display-items.page.php:277 wpsc-admin/display-items.page.php:401
255
  #: wpsc-admin/display-sales-logs.php:425 wpsc-admin/display-sales-logs.php:550
256
  #: wpsc-admin/display-variations.page.php:178
@@ -258,7 +260,7 @@ msgstr ""
258
  #: wpsc-admin/display-variations.page.php:213
259
  #: wpsc-admin/includes/display-items-functions.php:351
260
  #: wpsc-admin/includes/display-items-functions.php:797
261
- #: wpsc-admin/includes/settings-pages/checkout.php:248
262
  msgid "Delete"
263
  msgstr ""
264
 
@@ -268,12 +270,12 @@ msgstr ""
268
 
269
  #: admin-form-functions.php:307 wpsc-admin/admin.php:236
270
  #: wpsc-admin/display-variations.page.php:218
271
- #: wpsc-admin/includes/settings-pages/checkout.php:175
272
  msgid "Add"
273
  msgstr ""
274
 
275
- #: admin-form-functions.php:318 display-coupons.php:389
276
- #: display-coupons.php:450 wpsc-admin/display-groups.page.php:106
277
  #: wpsc-admin/display-groups.page.php:706
278
  #: wpsc-admin/display-groups.page.php:719
279
  #: wpsc-admin/display-variations.page.php:14
@@ -283,14 +285,14 @@ msgid "Edit"
283
  msgstr ""
284
 
285
  #: admin-form-functions.php:339 display-coupons.php:174
286
- #: display-coupons.php:365 wpsc-admin/display-sales-logs.php:247
287
  msgid "Coupon Code"
288
  msgstr ""
289
 
290
  #: admin-form-functions.php:340 display-coupons.php:177
291
- #: display-coupons.php:369 themes/default/shopping_cart_page.php:190
292
- #: themes/iShop/shopping_cart_page.php:163
293
- #: themes/marketplace/shopping_cart_page.php:161
294
  #: transaction_result_functions.php:207 transaction_result_functions.php:215
295
  #: wpsc-admin/ajax-and-init.php:1146 wpsc-admin/ajax-and-init.php:1152
296
  #: wpsc-admin/display-sales-logs.php:250
@@ -298,12 +300,12 @@ msgid "Discount"
298
  msgstr ""
299
 
300
  #: admin-form-functions.php:341 display-coupons.php:180
301
- #: display-coupons.php:373
302
  msgid "Start"
303
  msgstr ""
304
 
305
  #: admin-form-functions.php:342 display-coupons.php:183
306
- #: display-coupons.php:377
307
  msgid "Expiry"
308
  msgstr ""
309
 
@@ -312,111 +314,111 @@ msgid "Use Once"
312
  msgstr ""
313
 
314
  #: admin-form-functions.php:344 display-coupons.php:189
315
- #: display-coupons.php:381
316
  msgid "Active"
317
  msgstr ""
318
 
319
  #: admin-form-functions.php:345 display-coupons.php:193
320
- #: display-coupons.php:287 display-coupons.php:385
321
  msgid "Apply On All Products"
322
  msgstr ""
323
 
324
- #: admin-form-functions.php:554
325
  msgid "Update Coupon"
326
  msgstr ""
327
 
328
- #: admin-form-functions.php:555
329
  msgid "Delete Coupon"
330
  msgstr ""
331
 
332
- #: admin-form-functions.php:566 wpsc-admin/admin.php:137
333
  msgid "Settings"
334
  msgstr ""
335
 
336
- #: admin-form-functions.php:570 wpsc-admin/display-sales-logs.php:316
337
  msgid "Shop Settings"
338
  msgstr ""
339
 
340
- #: admin-form-functions.php:571
341
  msgid "Money and Payment"
342
  msgstr ""
343
 
344
- #: admin-form-functions.php:572
345
  msgid "Checkout Page Settings"
346
  msgstr ""
347
 
348
- #: admin-form-functions.php:590 admin-form-functions.php:591
349
  msgid "product"
350
  msgstr ""
351
 
352
- #: admin-form-functions.php:590 admin-form-functions.php:591
353
  msgid "products"
354
  msgstr ""
355
 
356
- #: admin-form-functions.php:595 admin-form-functions.php:596
357
  msgid "group"
358
  msgstr ""
359
 
360
- #: admin-form-functions.php:595 admin-form-functions.php:596
361
  msgid "groups"
362
  msgstr ""
363
 
364
- #: admin-form-functions.php:600 admin-form-functions.php:601
365
  msgid "sale"
366
  msgstr ""
367
 
368
- #: admin-form-functions.php:600 admin-form-functions.php:601
369
  msgid "sales"
370
  msgstr ""
371
 
372
- #: admin-form-functions.php:607
373
  msgid "variation"
374
  msgstr ""
375
 
376
- #: admin-form-functions.php:607
377
  msgid "variations"
378
  msgstr ""
379
 
380
- #: admin-form-functions.php:611 admin-form-functions.php:612
381
- #: admin-form-functions.php:615
382
  msgid "transaction"
383
  msgstr ""
384
 
385
- #: admin-form-functions.php:611 admin-form-functions.php:612
386
- #: admin-form-functions.php:615
387
  msgid "transactions"
388
  msgstr ""
389
 
390
- #: admin-form-functions.php:624
391
  msgid "Current Month"
392
  msgstr ""
393
 
394
- #: admin-form-functions.php:629
395
  msgid "At a Glance"
396
  msgstr ""
397
 
398
- #: admin-form-functions.php:659
399
  msgid "Pending"
400
  msgstr ""
401
 
402
- #: admin-form-functions.php:674
403
  msgid "Closed"
404
  msgstr ""
405
 
406
- #: admin-form-functions.php:682 admin-form-functions.php:690
407
  #: wpsc-admin/includes/display-items-functions.php:350
408
  msgid "Add New Product"
409
  msgstr ""
410
 
411
- #: admin-form-functions.php:682
412
  msgid "Here you can add products, groups or variations"
413
  msgstr ""
414
 
415
- #: admin-form-functions.php:691
416
  msgid "Right Now"
417
  msgstr ""
418
 
419
- #: admin-form-functions.php:696
420
  msgid ""
421
  "You have <a href=\"admin.php?page=wpsc-edit-products\">:productcount:</a>, "
422
  "contained within <a href=\"admin.php?page=wpsc-edit-groups\">:groupcount:</"
@@ -425,19 +427,19 @@ msgid ""
425
  "approval."
426
  msgstr ""
427
 
428
- #: admin-form-functions.php:698
429
  msgid "You are using the :theme: style. This is WP e-Commerce :versionnumber:."
430
  msgstr ""
431
 
432
- #: admin-form-functions.php:729
433
  msgid "Packing Slip"
434
  msgstr ""
435
 
436
- #: admin-form-functions.php:730
437
  msgid "Order"
438
  msgstr ""
439
 
440
- #: admin-form-functions.php:865 themes/default/list_view.php:137
441
  #: themes/default/products_page.php:197
442
  #: themes/default/shopping_cart_page.php:15
443
  #: themes/default/single_product.php:131 themes/iShop/list_view.php:138
@@ -450,7 +452,7 @@ msgstr ""
450
  msgid "Quantity"
451
  msgstr ""
452
 
453
- #: admin-form-functions.php:870 js/tinymce3/window.php:113
454
  #: themes/default/cart_widget.php:25 themes/default/products_page.php:214
455
  #: themes/default/products_page.php:216
456
  #: themes/default/shopping_cart_page.php:19
@@ -471,7 +473,7 @@ msgstr ""
471
  msgid "Price"
472
  msgstr ""
473
 
474
- #: admin-form-functions.php:872 themes/default/cart_widget.php:40
475
  #: themes/default/shopping_cart_page.php:17 themes/iShop/cart_widget.php:40
476
  #: themes/iShop/shopping_cart_page.php:16
477
  #: themes/marketplace/cart_widget.php:40
@@ -483,7 +485,7 @@ msgstr ""
483
  msgid "Shipping"
484
  msgstr ""
485
 
486
- #: admin-form-functions.php:980
487
  msgid "This users cart was empty"
488
  msgstr ""
489
 
@@ -499,11 +501,11 @@ msgstr ""
499
  msgid "Create Coupon"
500
  msgstr ""
501
 
502
- #: display-coupons.php:351
503
  msgid "Add New Condition"
504
  msgstr ""
505
 
506
- #: display-coupons.php:466
507
  msgid ""
508
  "<strong>Note:</strong> Due to a current limitation of PayPal, if your user "
509
  "makes a purchase and uses a coupon, we can not send a list of items through "
@@ -512,32 +514,32 @@ msgid ""
512
  "your shop name and the total amount of their purchase."
513
  msgstr ""
514
 
515
- #: display-coupons.php:478
516
  msgid "Marketing Settings"
517
  msgstr ""
518
 
519
- #: display-coupons.php:485
520
  msgid "Display Cross Sales"
521
  msgstr ""
522
 
523
- #: display-coupons.php:509
524
  msgid "Show Share This (Social Bookmarks)"
525
  msgstr ""
526
 
527
- #: display-coupons.php:532
528
  msgid "Display How Customer Found Us Survey"
529
  msgstr ""
530
 
531
- #: display-coupons.php:549 wpsc-admin/display-groups.page.php:642
532
  #: wpsc-admin/display-groups.page.php:667
533
  msgid "Submit"
534
  msgstr ""
535
 
536
- #: display-coupons.php:555
537
  msgid "RSS Address"
538
  msgstr ""
539
 
540
- #: display-coupons.php:559
541
  msgid ""
542
  "<strong>Note:</strong> Not only can people use this RSS to keep update with "
543
  "your product list but you can also use this link to promote your products in "
@@ -546,7 +548,7 @@ msgid ""
546
  "and follow the instructions."
547
  msgstr ""
548
 
549
- #: display-coupons.php:573
550
  msgid "Google Merchant Centre / Google Product Search"
551
  msgstr ""
552
 
@@ -633,10 +635,10 @@ msgstr ""
633
  msgid "Please select your country from the list."
634
  msgstr ""
635
 
636
- #: edit-profile.php:61 wpsc-includes/checkout.class.php:536
637
- #: wpsc-includes/checkout.class.php:550 wpsc-includes/checkout.class.php:561
638
- #: wpsc-includes/checkout.class.php:569 wpsc-includes/checkout.class.php:580
639
- #: wpsc-includes/checkout.class.php:679
640
  msgid "Please enter a valid"
641
  msgstr ""
642
 
@@ -669,7 +671,7 @@ msgid "Google Shipping Country"
669
  msgstr ""
670
 
671
  #: google_shipping_country.php:43 tax_and_shipping.php:86
672
- #: wpsc-admin/includes/settings-pages/checkout.php:268
673
  msgid "Save Changes"
674
  msgstr ""
675
 
@@ -753,8 +755,8 @@ msgstr ""
753
  msgid "Number of visible items"
754
  msgstr ""
755
 
756
- #: merchants/chronopay.php:440 merchants/paypal_multiple.php:562
757
- #: wpsc-admin/includes/settings-pages/admin.php:227
758
  #: wpsc-admin/includes/settings-pages/gateway.php:92
759
  #: wpsc-admin/includes/settings-pages/gateway.php:172
760
  #: wpsc-admin/includes/settings-pages/general.php:207
@@ -768,7 +770,7 @@ msgstr ""
768
  msgid "Your Subscription"
769
  msgstr ""
770
 
771
- #: merchants/paypal_certified.php:621 merchants/paypal_multiple.php:527
772
  msgid "Currency Converter"
773
  msgstr ""
774
 
@@ -780,7 +782,7 @@ msgid ""
780
  "using currency you choose below."
781
  msgstr ""
782
 
783
- #: merchants/paypal_multiple.php:530
784
  #, php-format
785
  msgid ""
786
  "Your website uses <strong>%s</strong>. This currency is not supported by "
@@ -843,8 +845,8 @@ msgstr ""
843
 
844
  #: share-this.php:491 share-this.php:867
845
  #: themes/default/shopping_cart_page.php:242
846
- #: themes/iShop/shopping_cart_page.php:213
847
- #: themes/marketplace/shopping_cart_page.php:211
848
  msgid "E-mail"
849
  msgstr ""
850
 
@@ -989,7 +991,7 @@ msgid ""
989
  "100mm x 100mm x 100mm will be used."
990
  msgstr ""
991
 
992
- #: shipping/australiapost.php:257
993
  #, php-format
994
  msgid "%1$s (estimated delivery time: %2$d business day)"
995
  msgid_plural "%1$s (estimated delivery time: %2$d business days)"
@@ -1003,8 +1005,8 @@ msgid ""
1003
  msgstr ""
1004
 
1005
  #: shipping/tablerate.php:30 themes/default/shopping_cart_page.php:202
1006
- #: themes/iShop/shopping_cart_page.php:175
1007
- #: themes/marketplace/shopping_cart_page.php:173
1008
  msgid "Total Price"
1009
  msgstr ""
1010
 
@@ -1320,78 +1322,78 @@ msgid "Total Shipping"
1320
  msgstr ""
1321
 
1322
  #: themes/default/shopping_cart_page.php:225
1323
- #: themes/iShop/shopping_cart_page.php:196
1324
- #: themes/marketplace/shopping_cart_page.php:194
1325
  msgid "Not yet a member?"
1326
  msgstr ""
1327
 
1328
  #: themes/default/shopping_cart_page.php:226
1329
- #: themes/iShop/shopping_cart_page.php:197
1330
- #: themes/marketplace/shopping_cart_page.php:195
1331
  msgid ""
1332
  "In order to buy from us, you'll need an account. Joining is free and easy. "
1333
  "All you need is a username, password and valid email address."
1334
  msgstr ""
1335
 
1336
  #: themes/default/shopping_cart_page.php:240
1337
- #: themes/iShop/shopping_cart_page.php:211
1338
- #: themes/marketplace/shopping_cart_page.php:209
1339
  msgid "Username"
1340
  msgstr ""
1341
 
1342
  #: themes/default/shopping_cart_page.php:241
1343
- #: themes/iShop/shopping_cart_page.php:212
1344
- #: themes/marketplace/shopping_cart_page.php:210
1345
  msgid "Password"
1346
  msgstr ""
1347
 
1348
  #: themes/default/shopping_cart_page.php:246
1349
- #: themes/iShop/shopping_cart_page.php:217
1350
- #: themes/marketplace/shopping_cart_page.php:215
1351
  msgid "Please enter your contact details:"
1352
  msgstr ""
1353
 
1354
  #: themes/default/shopping_cart_page.php:248
1355
- #: themes/iShop/shopping_cart_page.php:219
1356
- #: themes/marketplace/shopping_cart_page.php:217
1357
  msgid "Fields marked with an asterisk must be filled in."
1358
  msgstr ""
1359
 
1360
  #: themes/default/shopping_cart_page.php:323
1361
- #: themes/iShop/shopping_cart_page.php:294
1362
- #: themes/marketplace/shopping_cart_page.php:292
1363
  msgid "Select a payment gateway"
1364
  msgstr ""
1365
 
1366
  #: themes/default/shopping_cart_page.php:357
1367
- #: themes/iShop/shopping_cart_page.php:328
1368
- #: themes/marketplace/shopping_cart_page.php:326
1369
  msgid "I agree to The "
1370
  msgstr ""
1371
 
1372
  #: themes/default/shopping_cart_page.php:358
1373
- #: themes/iShop/shopping_cart_page.php:329
1374
- #: themes/marketplace/shopping_cart_page.php:327
1375
  #: wpsc-admin/includes/settings-pages/admin.php:107
1376
  msgid "Terms and Conditions"
1377
  msgstr ""
1378
 
1379
  #: themes/default/shopping_cart_page.php:370
1380
- #: themes/iShop/shopping_cart_page.php:341
1381
- #: themes/marketplace/shopping_cart_page.php:339
1382
  msgid "Make Purchase"
1383
  msgstr ""
1384
 
1385
  #: themes/default/shopping_cart_page.php:384
1386
- #: themes/iShop/shopping_cart_page.php:355
1387
- #: themes/marketplace/shopping_cart_page.php:353
1388
  #: transaction_result_functions.php:375
1389
  msgid "Oops, there is nothing in your cart."
1390
  msgstr ""
1391
 
1392
  #: themes/default/shopping_cart_page.php:384
1393
- #: themes/iShop/shopping_cart_page.php:355
1394
- #: themes/marketplace/shopping_cart_page.php:353
1395
  #: transaction_result_functions.php:375
1396
  msgid "Please visit our shop"
1397
  msgstr ""
@@ -1468,7 +1470,7 @@ msgstr ""
1468
  msgid "The Transaction was successful"
1469
  msgstr ""
1470
 
1471
- #: transaction_results.php:40 transaction_results.php:49
1472
  msgid "Sorry your transaction was not accepted.<br /><a href="
1473
  msgstr ""
1474
 
@@ -1651,23 +1653,23 @@ msgstr ""
1651
  msgid "Show Description:"
1652
  msgstr ""
1653
 
1654
- #: wp-shopping-cart.php:156
1655
  msgid "Note: if this is blank, the image will not be resized"
1656
  msgstr ""
1657
 
1658
- #: wp-shopping-cart.php:157 wpsc-includes/install_and_update.functions.php:68
1659
  msgid "Order Received"
1660
  msgstr ""
1661
 
1662
- #: wp-shopping-cart.php:159 wpsc-includes/install_and_update.functions.php:71
1663
  msgid "Closed Order"
1664
  msgstr ""
1665
 
1666
- #: wp-shopping-cart.php:529
1667
  msgid "Please Note"
1668
  msgstr ""
1669
 
1670
- #: wp-shopping-cart.php:530
1671
  #, php-format
1672
  msgid ""
1673
  "Before upgrading you should check the <a %s>upgrade information</a> and "
@@ -2951,11 +2953,11 @@ msgstr ""
2951
  msgid "User Account URL"
2952
  msgstr ""
2953
 
2954
- #: wpsc-admin/includes/settings-pages/admin.php:215
2955
  msgid "Update Page URLs"
2956
  msgstr ""
2957
 
2958
- #: wpsc-admin/includes/settings-pages/admin.php:216
2959
  msgid "Fix Product Group Permalinks"
2960
  msgstr ""
2961
 
@@ -2985,26 +2987,31 @@ msgstr ""
2985
  msgid "Enable Shipping Same as Billing Option: "
2986
  msgstr ""
2987
 
2988
- #: wpsc-admin/includes/settings-pages/checkout.php:153
 
 
 
 
 
2989
  msgid ""
2990
  "Here you can customise the forms to be displayed in your checkout page. The "
2991
  "checkout page is where you collect important user information that will show "
2992
  "up in your purchase logs i.e. the buyers address, and name..."
2993
  msgstr ""
2994
 
2995
- #: wpsc-admin/includes/settings-pages/checkout.php:170
2996
  msgid "+ Add New Form Set"
2997
  msgstr ""
2998
 
2999
- #: wpsc-admin/includes/settings-pages/checkout.php:174
3000
  msgid "Add new Form Set"
3001
  msgstr ""
3002
 
3003
- #: wpsc-admin/includes/settings-pages/checkout.php:251
3004
  msgid "This will be the Email address that the Purchase Reciept is sent to."
3005
  msgstr ""
3006
 
3007
- #: wpsc-admin/includes/settings-pages/checkout.php:269
3008
  msgid "Add New Form Field"
3009
  msgstr ""
3010
 
@@ -3560,7 +3567,7 @@ msgstr ""
3560
  msgid "Please enter a Zipcode and click calculate to proceed"
3561
  msgstr ""
3562
 
3563
- #: wpsc-includes/ajax.functions.php:981 wpsc-includes/ajax.functions.php:1039
3564
  msgid ""
3565
  "This download is no longer valid, Please contact the site administrator for "
3566
  "more information."
9
  msgstr ""
10
  "Project-Id-Version: \n"
11
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-e-commerce\n"
12
+ "POT-Creation-Date: 2010-07-08 04:18+0000\n"
13
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
27
  msgstr ""
28
 
29
  #: admin-form-functions.php:25 admin-form-functions.php:279
30
+ #: admin-form-functions.php:784 display-ecommerce-subs.php:9
31
  #: js/tinymce3/window.php:105 user-log.php:200 user-log.php:359
32
  #: wpsc-admin/display-groups.page.php:698
33
  #: wpsc-admin/display-groups.page.php:774
165
  msgid "Products in this category use the billing address to calculate shipping"
166
  msgstr ""
167
 
168
+ #: admin-form-functions.php:250 display-coupons.php:503
169
+ #: display-coupons.php:527 merchants/chronopay.php:427
170
+ #: merchants/paypal_multiple.php:479 merchants/paypal_multiple.php:487
171
+ #: merchants/paypal_multiple.php:503 wpsc-admin/display-groups.page.php:908
172
  #: wpsc-admin/includes/display-items-functions.php:823
173
  #: wpsc-admin/includes/settings-pages/admin.php:38
174
  #: wpsc-admin/includes/settings-pages/admin.php:64
176
  #: wpsc-admin/includes/settings-pages/checkout.php:95
177
  #: wpsc-admin/includes/settings-pages/checkout.php:118
178
  #: wpsc-admin/includes/settings-pages/checkout.php:143
179
+ #: wpsc-admin/includes/settings-pages/checkout.php:166
180
  #: wpsc-admin/includes/settings-pages/general.php:72
181
  #: wpsc-admin/includes/settings-pages/general.php:197
182
  #: wpsc-admin/includes/settings-pages/presentation.php:108
205
  msgid "Yes"
206
  msgstr ""
207
 
208
+ #: admin-form-functions.php:251 display-coupons.php:504
209
+ #: display-coupons.php:528 merchants/chronopay.php:428
210
+ #: merchants/paypal_multiple.php:480 merchants/paypal_multiple.php:488
211
+ #: merchants/paypal_multiple.php:504 wpsc-admin/display-groups.page.php:909
212
  #: wpsc-admin/includes/display-items-functions.php:825
213
  #: wpsc-admin/includes/settings-pages/admin.php:39
214
  #: wpsc-admin/includes/settings-pages/admin.php:65
216
  #: wpsc-admin/includes/settings-pages/checkout.php:97
217
  #: wpsc-admin/includes/settings-pages/checkout.php:120
218
  #: wpsc-admin/includes/settings-pages/checkout.php:145
219
+ #: wpsc-admin/includes/settings-pages/checkout.php:168
220
  #: wpsc-admin/includes/settings-pages/general.php:74
221
  #: wpsc-admin/includes/settings-pages/general.php:200
222
  #: wpsc-admin/includes/settings-pages/presentation.php:109
252
  #: admin-form-functions.php:262 admin-form-functions.php:300
253
  #: admin-form-functions.php:319 shipping/tablerate.php:44
254
  #: shipping/weightrate.php:35 wpsc-admin/admin.php:347
255
+ #: wpsc-admin/ajax-and-init.php:1907 wpsc-admin/display-groups.page.php:669
256
  #: wpsc-admin/display-items.page.php:277 wpsc-admin/display-items.page.php:401
257
  #: wpsc-admin/display-sales-logs.php:425 wpsc-admin/display-sales-logs.php:550
258
  #: wpsc-admin/display-variations.page.php:178
260
  #: wpsc-admin/display-variations.page.php:213
261
  #: wpsc-admin/includes/display-items-functions.php:351
262
  #: wpsc-admin/includes/display-items-functions.php:797
263
+ #: wpsc-admin/includes/settings-pages/checkout.php:269
264
  msgid "Delete"
265
  msgstr ""
266
 
270
 
271
  #: admin-form-functions.php:307 wpsc-admin/admin.php:236
272
  #: wpsc-admin/display-variations.page.php:218
273
+ #: wpsc-admin/includes/settings-pages/checkout.php:199
274
  msgid "Add"
275
  msgstr ""
276
 
277
+ #: admin-form-functions.php:318 display-coupons.php:390
278
+ #: display-coupons.php:451 wpsc-admin/display-groups.page.php:106
279
  #: wpsc-admin/display-groups.page.php:706
280
  #: wpsc-admin/display-groups.page.php:719
281
  #: wpsc-admin/display-variations.page.php:14
285
  msgstr ""
286
 
287
  #: admin-form-functions.php:339 display-coupons.php:174
288
+ #: display-coupons.php:366 wpsc-admin/display-sales-logs.php:247
289
  msgid "Coupon Code"
290
  msgstr ""
291
 
292
  #: admin-form-functions.php:340 display-coupons.php:177
293
+ #: display-coupons.php:370 themes/default/shopping_cart_page.php:190
294
+ #: themes/iShop/shopping_cart_page.php:165
295
+ #: themes/marketplace/shopping_cart_page.php:164
296
  #: transaction_result_functions.php:207 transaction_result_functions.php:215
297
  #: wpsc-admin/ajax-and-init.php:1146 wpsc-admin/ajax-and-init.php:1152
298
  #: wpsc-admin/display-sales-logs.php:250
300
  msgstr ""
301
 
302
  #: admin-form-functions.php:341 display-coupons.php:180
303
+ #: display-coupons.php:374
304
  msgid "Start"
305
  msgstr ""
306
 
307
  #: admin-form-functions.php:342 display-coupons.php:183
308
+ #: display-coupons.php:378
309
  msgid "Expiry"
310
  msgstr ""
311
 
314
  msgstr ""
315
 
316
  #: admin-form-functions.php:344 display-coupons.php:189
317
+ #: display-coupons.php:382
318
  msgid "Active"
319
  msgstr ""
320
 
321
  #: admin-form-functions.php:345 display-coupons.php:193
322
+ #: display-coupons.php:287 display-coupons.php:386
323
  msgid "Apply On All Products"
324
  msgstr ""
325
 
326
+ #: admin-form-functions.php:471
327
  msgid "Update Coupon"
328
  msgstr ""
329
 
330
+ #: admin-form-functions.php:472
331
  msgid "Delete Coupon"
332
  msgstr ""
333
 
334
+ #: admin-form-functions.php:483 wpsc-admin/admin.php:137
335
  msgid "Settings"
336
  msgstr ""
337
 
338
+ #: admin-form-functions.php:487 wpsc-admin/display-sales-logs.php:316
339
  msgid "Shop Settings"
340
  msgstr ""
341
 
342
+ #: admin-form-functions.php:488
343
  msgid "Money and Payment"
344
  msgstr ""
345
 
346
+ #: admin-form-functions.php:489
347
  msgid "Checkout Page Settings"
348
  msgstr ""
349
 
350
+ #: admin-form-functions.php:507 admin-form-functions.php:508
351
  msgid "product"
352
  msgstr ""
353
 
354
+ #: admin-form-functions.php:507 admin-form-functions.php:508
355
  msgid "products"
356
  msgstr ""
357
 
358
+ #: admin-form-functions.php:512 admin-form-functions.php:513
359
  msgid "group"
360
  msgstr ""
361
 
362
+ #: admin-form-functions.php:512 admin-form-functions.php:513
363
  msgid "groups"
364
  msgstr ""
365
 
366
+ #: admin-form-functions.php:517 admin-form-functions.php:518
367
  msgid "sale"
368
  msgstr ""
369
 
370
+ #: admin-form-functions.php:517 admin-form-functions.php:518
371
  msgid "sales"
372
  msgstr ""
373
 
374
+ #: admin-form-functions.php:524
375
  msgid "variation"
376
  msgstr ""
377
 
378
+ #: admin-form-functions.php:524
379
  msgid "variations"
380
  msgstr ""
381
 
382
+ #: admin-form-functions.php:528 admin-form-functions.php:529
383
+ #: admin-form-functions.php:532
384
  msgid "transaction"
385
  msgstr ""
386
 
387
+ #: admin-form-functions.php:528 admin-form-functions.php:529
388
+ #: admin-form-functions.php:532
389
  msgid "transactions"
390
  msgstr ""
391
 
392
+ #: admin-form-functions.php:541
393
  msgid "Current Month"
394
  msgstr ""
395
 
396
+ #: admin-form-functions.php:546
397
  msgid "At a Glance"
398
  msgstr ""
399
 
400
+ #: admin-form-functions.php:576
401
  msgid "Pending"
402
  msgstr ""
403
 
404
+ #: admin-form-functions.php:591
405
  msgid "Closed"
406
  msgstr ""
407
 
408
+ #: admin-form-functions.php:599 admin-form-functions.php:607
409
  #: wpsc-admin/includes/display-items-functions.php:350
410
  msgid "Add New Product"
411
  msgstr ""
412
 
413
+ #: admin-form-functions.php:599
414
  msgid "Here you can add products, groups or variations"
415
  msgstr ""
416
 
417
+ #: admin-form-functions.php:608
418
  msgid "Right Now"
419
  msgstr ""
420
 
421
+ #: admin-form-functions.php:613
422
  msgid ""
423
  "You have <a href=\"admin.php?page=wpsc-edit-products\">:productcount:</a>, "
424
  "contained within <a href=\"admin.php?page=wpsc-edit-groups\">:groupcount:</"
427
  "approval."
428
  msgstr ""
429
 
430
+ #: admin-form-functions.php:615
431
  msgid "You are using the :theme: style. This is WP e-Commerce :versionnumber:."
432
  msgstr ""
433
 
434
+ #: admin-form-functions.php:646
435
  msgid "Packing Slip"
436
  msgstr ""
437
 
438
+ #: admin-form-functions.php:647
439
  msgid "Order"
440
  msgstr ""
441
 
442
+ #: admin-form-functions.php:782 themes/default/list_view.php:137
443
  #: themes/default/products_page.php:197
444
  #: themes/default/shopping_cart_page.php:15
445
  #: themes/default/single_product.php:131 themes/iShop/list_view.php:138
452
  msgid "Quantity"
453
  msgstr ""
454
 
455
+ #: admin-form-functions.php:787 js/tinymce3/window.php:113
456
  #: themes/default/cart_widget.php:25 themes/default/products_page.php:214
457
  #: themes/default/products_page.php:216
458
  #: themes/default/shopping_cart_page.php:19
473
  msgid "Price"
474
  msgstr ""
475
 
476
+ #: admin-form-functions.php:789 themes/default/cart_widget.php:40
477
  #: themes/default/shopping_cart_page.php:17 themes/iShop/cart_widget.php:40
478
  #: themes/iShop/shopping_cart_page.php:16
479
  #: themes/marketplace/cart_widget.php:40
485
  msgid "Shipping"
486
  msgstr ""
487
 
488
+ #: admin-form-functions.php:897
489
  msgid "This users cart was empty"
490
  msgstr ""
491
 
501
  msgid "Create Coupon"
502
  msgstr ""
503
 
504
+ #: display-coupons.php:352
505
  msgid "Add New Condition"
506
  msgstr ""
507
 
508
+ #: display-coupons.php:467
509
  msgid ""
510
  "<strong>Note:</strong> Due to a current limitation of PayPal, if your user "
511
  "makes a purchase and uses a coupon, we can not send a list of items through "
514
  "your shop name and the total amount of their purchase."
515
  msgstr ""
516
 
517
+ #: display-coupons.php:479
518
  msgid "Marketing Settings"
519
  msgstr ""
520
 
521
+ #: display-coupons.php:486
522
  msgid "Display Cross Sales"
523
  msgstr ""
524
 
525
+ #: display-coupons.php:510
526
  msgid "Show Share This (Social Bookmarks)"
527
  msgstr ""
528
 
529
+ #: display-coupons.php:533
530
  msgid "Display How Customer Found Us Survey"
531
  msgstr ""
532
 
533
+ #: display-coupons.php:550 wpsc-admin/display-groups.page.php:642
534
  #: wpsc-admin/display-groups.page.php:667
535
  msgid "Submit"
536
  msgstr ""
537
 
538
+ #: display-coupons.php:556
539
  msgid "RSS Address"
540
  msgstr ""
541
 
542
+ #: display-coupons.php:560
543
  msgid ""
544
  "<strong>Note:</strong> Not only can people use this RSS to keep update with "
545
  "your product list but you can also use this link to promote your products in "
548
  "and follow the instructions."
549
  msgstr ""
550
 
551
+ #: display-coupons.php:574
552
  msgid "Google Merchant Centre / Google Product Search"
553
  msgstr ""
554
 
635
  msgid "Please select your country from the list."
636
  msgstr ""
637
 
638
+ #: edit-profile.php:61 wpsc-includes/checkout.class.php:585
639
+ #: wpsc-includes/checkout.class.php:599 wpsc-includes/checkout.class.php:610
640
+ #: wpsc-includes/checkout.class.php:618 wpsc-includes/checkout.class.php:629
641
+ #: wpsc-includes/checkout.class.php:728
642
  msgid "Please enter a valid"
643
  msgstr ""
644
 
671
  msgstr ""
672
 
673
  #: google_shipping_country.php:43 tax_and_shipping.php:86
674
+ #: wpsc-admin/includes/settings-pages/checkout.php:289
675
  msgid "Save Changes"
676
  msgstr ""
677
 
755
  msgid "Number of visible items"
756
  msgstr ""
757
 
758
+ #: merchants/chronopay.php:440 merchants/paypal_multiple.php:563
759
+ #: wpsc-admin/includes/settings-pages/admin.php:228
760
  #: wpsc-admin/includes/settings-pages/gateway.php:92
761
  #: wpsc-admin/includes/settings-pages/gateway.php:172
762
  #: wpsc-admin/includes/settings-pages/general.php:207
770
  msgid "Your Subscription"
771
  msgstr ""
772
 
773
+ #: merchants/paypal_certified.php:621 merchants/paypal_multiple.php:528
774
  msgid "Currency Converter"
775
  msgstr ""
776
 
782
  "using currency you choose below."
783
  msgstr ""
784
 
785
+ #: merchants/paypal_multiple.php:531
786
  #, php-format
787
  msgid ""
788
  "Your website uses <strong>%s</strong>. This currency is not supported by "
845
 
846
  #: share-this.php:491 share-this.php:867
847
  #: themes/default/shopping_cart_page.php:242
848
+ #: themes/iShop/shopping_cart_page.php:215
849
+ #: themes/marketplace/shopping_cart_page.php:214
850
  msgid "E-mail"
851
  msgstr ""
852
 
991
  "100mm x 100mm x 100mm will be used."
992
  msgstr ""
993
 
994
+ #: shipping/australiapost.php:258
995
  #, php-format
996
  msgid "%1$s (estimated delivery time: %2$d business day)"
997
  msgid_plural "%1$s (estimated delivery time: %2$d business days)"
1005
  msgstr ""
1006
 
1007
  #: shipping/tablerate.php:30 themes/default/shopping_cart_page.php:202
1008
+ #: themes/iShop/shopping_cart_page.php:177
1009
+ #: themes/marketplace/shopping_cart_page.php:176
1010
  msgid "Total Price"
1011
  msgstr ""
1012
 
1322
  msgstr ""
1323
 
1324
  #: themes/default/shopping_cart_page.php:225
1325
+ #: themes/iShop/shopping_cart_page.php:198
1326
+ #: themes/marketplace/shopping_cart_page.php:197
1327
  msgid "Not yet a member?"
1328
  msgstr ""
1329
 
1330
  #: themes/default/shopping_cart_page.php:226
1331
+ #: themes/iShop/shopping_cart_page.php:199
1332
+ #: themes/marketplace/shopping_cart_page.php:198
1333
  msgid ""
1334
  "In order to buy from us, you'll need an account. Joining is free and easy. "
1335
  "All you need is a username, password and valid email address."
1336
  msgstr ""
1337
 
1338
  #: themes/default/shopping_cart_page.php:240
1339
+ #: themes/iShop/shopping_cart_page.php:213
1340
+ #: themes/marketplace/shopping_cart_page.php:212
1341
  msgid "Username"
1342
  msgstr ""
1343
 
1344
  #: themes/default/shopping_cart_page.php:241
1345
+ #: themes/iShop/shopping_cart_page.php:214
1346
+ #: themes/marketplace/shopping_cart_page.php:213
1347
  msgid "Password"
1348
  msgstr ""
1349
 
1350
  #: themes/default/shopping_cart_page.php:246
1351
+ #: themes/iShop/shopping_cart_page.php:219
1352
+ #: themes/marketplace/shopping_cart_page.php:218
1353
  msgid "Please enter your contact details:"
1354
  msgstr ""
1355
 
1356
  #: themes/default/shopping_cart_page.php:248
1357
+ #: themes/iShop/shopping_cart_page.php:221
1358
+ #: themes/marketplace/shopping_cart_page.php:220
1359
  msgid "Fields marked with an asterisk must be filled in."
1360
  msgstr ""
1361
 
1362
  #: themes/default/shopping_cart_page.php:323
1363
+ #: themes/iShop/shopping_cart_page.php:296
1364
+ #: themes/marketplace/shopping_cart_page.php:295
1365
  msgid "Select a payment gateway"
1366
  msgstr ""
1367
 
1368
  #: themes/default/shopping_cart_page.php:357
1369
+ #: themes/iShop/shopping_cart_page.php:330
1370
+ #: themes/marketplace/shopping_cart_page.php:329
1371
  msgid "I agree to The "
1372
  msgstr ""
1373
 
1374
  #: themes/default/shopping_cart_page.php:358
1375
+ #: themes/iShop/shopping_cart_page.php:331
1376
+ #: themes/marketplace/shopping_cart_page.php:330
1377
  #: wpsc-admin/includes/settings-pages/admin.php:107
1378
  msgid "Terms and Conditions"
1379
  msgstr ""
1380
 
1381
  #: themes/default/shopping_cart_page.php:370
1382
+ #: themes/iShop/shopping_cart_page.php:343
1383
+ #: themes/marketplace/shopping_cart_page.php:342
1384
  msgid "Make Purchase"
1385
  msgstr ""
1386
 
1387
  #: themes/default/shopping_cart_page.php:384
1388
+ #: themes/iShop/shopping_cart_page.php:357
1389
+ #: themes/marketplace/shopping_cart_page.php:356
1390
  #: transaction_result_functions.php:375
1391
  msgid "Oops, there is nothing in your cart."
1392
  msgstr ""
1393
 
1394
  #: themes/default/shopping_cart_page.php:384
1395
+ #: themes/iShop/shopping_cart_page.php:357
1396
+ #: themes/marketplace/shopping_cart_page.php:356
1397
  #: transaction_result_functions.php:375
1398
  msgid "Please visit our shop"
1399
  msgstr ""
1470
  msgid "The Transaction was successful"
1471
  msgstr ""
1472
 
1473
+ #: transaction_results.php:41
1474
  msgid "Sorry your transaction was not accepted.<br /><a href="
1475
  msgstr ""
1476
 
1653
  msgid "Show Description:"
1654
  msgstr ""
1655
 
1656
+ #: wp-shopping-cart.php:157
1657
  msgid "Note: if this is blank, the image will not be resized"
1658
  msgstr ""
1659
 
1660
+ #: wp-shopping-cart.php:158 wpsc-includes/install_and_update.functions.php:68
1661
  msgid "Order Received"
1662
  msgstr ""
1663
 
1664
+ #: wp-shopping-cart.php:160 wpsc-includes/install_and_update.functions.php:71
1665
  msgid "Closed Order"
1666
  msgstr ""
1667
 
1668
+ #: wp-shopping-cart.php:530
1669
  msgid "Please Note"
1670
  msgstr ""
1671
 
1672
+ #: wp-shopping-cart.php:531
1673
  #, php-format
1674
  msgid ""
1675
  "Before upgrading you should check the <a %s>upgrade information</a> and "
2953
  msgid "User Account URL"
2954
  msgstr ""
2955
 
2956
+ #: wpsc-admin/includes/settings-pages/admin.php:216
2957
  msgid "Update Page URLs"
2958
  msgstr ""
2959
 
2960
+ #: wpsc-admin/includes/settings-pages/admin.php:217
2961
  msgid "Fix Product Group Permalinks"
2962
  msgstr ""
2963
 
2987
  msgid "Enable Shipping Same as Billing Option: "
2988
  msgstr ""
2989
 
2990
+ #: wpsc-admin/includes/settings-pages/checkout.php:163
2991
+ msgid ""
2992
+ "Use The Billing country for Shipping unless a shipping form is present: "
2993
+ msgstr ""
2994
+
2995
+ #: wpsc-admin/includes/settings-pages/checkout.php:177
2996
  msgid ""
2997
  "Here you can customise the forms to be displayed in your checkout page. The "
2998
  "checkout page is where you collect important user information that will show "
2999
  "up in your purchase logs i.e. the buyers address, and name..."
3000
  msgstr ""
3001
 
3002
+ #: wpsc-admin/includes/settings-pages/checkout.php:194
3003
  msgid "+ Add New Form Set"
3004
  msgstr ""
3005
 
3006
+ #: wpsc-admin/includes/settings-pages/checkout.php:198
3007
  msgid "Add new Form Set"
3008
  msgstr ""
3009
 
3010
+ #: wpsc-admin/includes/settings-pages/checkout.php:272
3011
  msgid "This will be the Email address that the Purchase Reciept is sent to."
3012
  msgstr ""
3013
 
3014
+ #: wpsc-admin/includes/settings-pages/checkout.php:290
3015
  msgid "Add New Form Field"
3016
  msgstr ""
3017
 
3567
  msgid "Please enter a Zipcode and click calculate to proceed"
3568
  msgstr ""
3569
 
3570
+ #: wpsc-includes/ajax.functions.php:987 wpsc-includes/ajax.functions.php:1045
3571
  msgid ""
3572
  "This download is no longer valid, Please contact the site administrator for "
3573
  "more information."
languages/wpsc-ru_RU.mo ADDED
Binary file
languages/wpsc-ru_RU.po ADDED
@@ -0,0 +1,3929 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Над переводом в разное время работали:
2
+ # * Николай Першай (http://www.mikolka.info/)
3
+ # * Иван Калинин (http://lecactus.ru/)
4
+ # * Вячеслав Абакумов (http://cosydale.com/)
5
+ # * Сергей Бирюков (http://sergeybiryukov.ru/)
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WP Shopping Cart 3.7.6.5\n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-e-commerce\n"
10
+ "POT-Creation-Date: 2010-06-15 23:21+0000\n"
11
+ "PO-Revision-Date: 2010-07-05 22:53+0300\n"
12
+ "Last-Translator: Sergey Biryukov <sergeybiryukov.ru@gmail.com>\n"
13
+ "Language-Team: Sergey Biryukov <sergeybiryukov.ru@gmail.com>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-SourceCharset: utf-8\n"
18
+ "X-Poedit-Language: Russian\n"
19
+ "X-Poedit-Country: RUSSIAN FEDERATION\n"
20
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2\n"
21
+ "X-Poedit-Basepath: ..\n"
22
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11) ? 0 : ((n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20)) ? 1 : 2);\n"
23
+ "X-Poedit-SearchPath-0: ..\n"
24
+
25
+ #: admin-form-functions.php:10
26
+ msgid "You are editing the &quot;[categorisation]&quot; Category"
27
+ msgstr "Вы редактируете категорию &laquo;[categorisation]&raquo;"
28
+
29
+ #: admin-form-functions.php:11
30
+ #: wpsc-admin/display-groups.page.php:759
31
+ msgid "+ Add new category to the &quot;[categorisation]&quot; Group"
32
+ msgstr "+ Добавить новую категорию в группу &laquo;[categorisation]&raquo;"
33
+
34
+ #: admin-form-functions.php:25
35
+ #: admin-form-functions.php:279
36
+ #: admin-form-functions.php:867
37
+ #: display-ecommerce-subs.php:9
38
+ #: js/tinymce3/window.php:105
39
+ #: user-log.php:200
40
+ #: user-log.php:359
41
+ #: wpsc-admin/display-groups.page.php:698
42
+ #: wpsc-admin/display-groups.page.php:774
43
+ #: wpsc-admin/display-upgrades.page.php:88
44
+ #: wpsc-admin/display-variations.page.php:13
45
+ #: wpsc-admin/display-variations.page.php:156
46
+ #: wpsc-admin/includes/display-items-functions.php:792
47
+ #: wpsc-admin/includes/display-items-functions.php:804
48
+ #: wpsc-admin/includes/settings-pages/presentation.php:457
49
+ msgid "Name"
50
+ msgstr "Имя"
51
+
52
+ #: admin-form-functions.php:34
53
+ #: js/tinymce3/window.php:109
54
+ #: wpsc-admin/display-groups.page.php:782
55
+ #: wpsc-admin/includes/display-items-functions.php:807
56
+ msgid "Description"
57
+ msgstr "Описание"
58
+
59
+ #: admin-form-functions.php:44
60
+ msgid "Category Parent"
61
+ msgstr "Родительская категория"
62
+
63
+ #: admin-form-functions.php:85
64
+ msgid "Category&nbsp;Image"
65
+ msgstr "Изображение&nbsp;категории"
66
+
67
+ #: admin-form-functions.php:101
68
+ #: admin-form-functions.php:110
69
+ #: admin-form-functions.php:198
70
+ #: wpsc-admin/display-groups.page.php:812
71
+ #: wpsc-admin/display-groups.page.php:865
72
+ #: wpsc-admin/includes/display-items-functions.php:675
73
+ #: wpsc-admin/includes/settings-pages/presentation.php:864
74
+ #: wpsc-admin/includes/settings-pages/presentation.php:875
75
+ #: wpsc-admin/includes/settings-pages/presentation.php:884
76
+ #: wpsc-admin/includes/settings-pages/presentation.php:945
77
+ msgid "Height"
78
+ msgstr "Высота"
79
+
80
+ #: admin-form-functions.php:101
81
+ #: admin-form-functions.php:110
82
+ #: admin-form-functions.php:199
83
+ #: wpsc-admin/display-groups.page.php:812
84
+ #: wpsc-admin/display-groups.page.php:866
85
+ #: wpsc-admin/includes/display-items-functions.php:687
86
+ #: wpsc-admin/includes/settings-pages/presentation.php:865
87
+ #: wpsc-admin/includes/settings-pages/presentation.php:875
88
+ #: wpsc-admin/includes/settings-pages/presentation.php:884
89
+ #: wpsc-admin/includes/settings-pages/presentation.php:946
90
+ msgid "Width"
91
+ msgstr "Ширина"
92
+
93
+ #: admin-form-functions.php:102
94
+ #: admin-form-functions.php:111
95
+ #: wpsc-admin/display-groups.page.php:813
96
+ 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>."
97
+ msgstr "Вы можете загружать миниатюры для каждой группы. Для отображения деталей группы вы должны настроить это в <a href=\"admin.php?page=wpsc-settings&tab=presentation\">Настройках отображения</a>."
98
+
99
+ #: admin-form-functions.php:119
100
+ msgid "Delete Image"
101
+ msgstr "Удалить изображение"
102
+
103
+ #: admin-form-functions.php:133
104
+ #: wpsc-admin/display-groups.page.php:16
105
+ #: wpsc-admin/includes/settings-pages/general.php:83
106
+ msgid "Target Markets"
107
+ msgstr "Целевые рынки"
108
+
109
+ #: admin-form-functions.php:138
110
+ #: wpsc-admin/display-groups.page.php:22
111
+ #: wpsc-admin/includes/settings-pages/general.php:89
112
+ msgid ""
113
+ "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.\r\n"
114
+ "\t\t\t"
115
+ msgstr ""
116
+ "Функция целевых рынков отключена, потому что на вашем сервере установлено PHP-расширение Suhosin. Если вам нужна функция целевых рынков, отключите расширение Suhosin. Если вы не можете этого сделать, обратитесь к вашему хостинг-провайдеру.\r\n"
117
+ "\t\t\t"
118
+
119
+ #: admin-form-functions.php:164
120
+ #: wpsc-admin/display-groups.page.php:822
121
+ #: wpsc-admin/includes/settings-pages/presentation.php:57
122
+ msgid "Presentation Settings"
123
+ msgstr "Настройки отображения"
124
+
125
+ #: admin-form-functions.php:165
126
+ #: wpsc-admin/display-groups.page.php:823
127
+ msgid "To over-ride the presentation settings for this group you can enter in your prefered settings here"
128
+ msgstr "Чтобы переопределить настройки отображения этой группы, введите здесь желаемые параметры"
129
+
130
+ #: admin-form-functions.php:171
131
+ #: wpsc-admin/display-groups.page.php:831
132
+ #: wpsc-admin/includes/settings-pages/presentation.php:288
133
+ msgid "Catalog View"
134
+ msgstr "Отображение каталога"
135
+
136
+ #: admin-form-functions.php:175
137
+ #: wpsc-includes/form-display.functions.php:6
138
+ msgid "Please select"
139
+ msgstr "Пожалуйста, выберите"
140
+
141
+ #: admin-form-functions.php:176
142
+ #: wpsc-admin/display-groups.page.php:835
143
+ #: wpsc-admin/includes/settings-pages/presentation.php:346
144
+ msgid "Default View"
145
+ msgstr "По умолчанию"
146
+
147
+ #: admin-form-functions.php:178
148
+ #: admin-form-functions.php:180
149
+ #: wpsc-admin/display-groups.page.php:839
150
+ #: wpsc-admin/display-groups.page.php:843
151
+ #: wpsc-admin/includes/settings-pages/presentation.php:350
152
+ #: wpsc-admin/includes/settings-pages/presentation.php:354
153
+ msgid "List View"
154
+ msgstr "В виде списка"
155
+
156
+ #: admin-form-functions.php:183
157
+ #: admin-form-functions.php:185
158
+ #: wpsc-admin/display-groups.page.php:849
159
+ #: wpsc-admin/display-groups.page.php:853
160
+ #: wpsc-admin/includes/settings-pages/presentation.php:361
161
+ #: wpsc-admin/includes/settings-pages/presentation.php:365
162
+ msgid "Grid View"
163
+ msgstr "В виде таблицы"
164
+
165
+ #: admin-form-functions.php:195
166
+ #: wpsc-admin/display-groups.page.php:863
167
+ msgid "Thumbnail&nbsp;Size"
168
+ msgstr "Размер&nbsp;миниатюры"
169
+
170
+ #: admin-form-functions.php:208
171
+ #: wpsc-admin/display-groups.page.php:872
172
+ #: wpsc-admin/display-sales-logs.php:317
173
+ #: wpsc-admin/display-sales-logs.php:318
174
+ msgid "Checkout Settings"
175
+ msgstr "Настройки заказа"
176
+
177
+ #: admin-form-functions.php:217
178
+ #: wpsc-admin/display-groups.page.php:878
179
+ msgid "This category requires additional checkout form fields"
180
+ msgstr "Для этой категории требуются дополнительные поля в форме заказа"
181
+
182
+ #: admin-form-functions.php:222
183
+ msgid "None"
184
+ msgstr "Нет"
185
+
186
+ #: admin-form-functions.php:247
187
+ #: wpsc-admin/display-groups.page.php:906
188
+ msgid "Products in this category use the billing address to calculate shipping"
189
+ msgstr "Для товаров из этой категории используется адрес биллинга при расчёте стоимости доставки"
190
+
191
+ #: admin-form-functions.php:250
192
+ #: display-coupons.php:502
193
+ #: display-coupons.php:526
194
+ #: merchants/chronopay.php:427
195
+ #: merchants/paypal_multiple.php:478
196
+ #: merchants/paypal_multiple.php:486
197
+ #: merchants/paypal_multiple.php:502
198
+ #: wpsc-admin/display-groups.page.php:908
199
+ #: wpsc-admin/includes/display-items-functions.php:823
200
+ #: wpsc-admin/includes/settings-pages/admin.php:38
201
+ #: wpsc-admin/includes/settings-pages/admin.php:64
202
+ #: wpsc-admin/includes/settings-pages/checkout.php:71
203
+ #: wpsc-admin/includes/settings-pages/checkout.php:95
204
+ #: wpsc-admin/includes/settings-pages/checkout.php:118
205
+ #: wpsc-admin/includes/settings-pages/checkout.php:143
206
+ #: wpsc-admin/includes/settings-pages/general.php:72
207
+ #: wpsc-admin/includes/settings-pages/general.php:197
208
+ #: wpsc-admin/includes/settings-pages/presentation.php:108
209
+ #: wpsc-admin/includes/settings-pages/presentation.php:139
210
+ #: wpsc-admin/includes/settings-pages/presentation.php:163
211
+ #: wpsc-admin/includes/settings-pages/presentation.php:187
212
+ #: wpsc-admin/includes/settings-pages/presentation.php:210
213
+ #: wpsc-admin/includes/settings-pages/presentation.php:232
214
+ #: wpsc-admin/includes/settings-pages/presentation.php:483
215
+ #: wpsc-admin/includes/settings-pages/presentation.php:534
216
+ #: wpsc-admin/includes/settings-pages/presentation.php:575
217
+ #: wpsc-admin/includes/settings-pages/presentation.php:611
218
+ #: wpsc-admin/includes/settings-pages/presentation.php:716
219
+ #: wpsc-admin/includes/settings-pages/presentation.php:740
220
+ #: wpsc-admin/includes/settings-pages/presentation.php:771
221
+ #: wpsc-admin/includes/settings-pages/presentation.php:796
222
+ #: wpsc-admin/includes/settings-pages/presentation.php:823
223
+ #: wpsc-admin/includes/settings-pages/presentation.php:849
224
+ #: wpsc-admin/includes/settings-pages/presentation.php:909
225
+ #: wpsc-admin/includes/settings-pages/presentation.php:935
226
+ #: wpsc-admin/includes/settings-pages/presentation.php:979
227
+ #: wpsc-admin/includes/settings-pages/presentation.php:1026
228
+ #: wpsc-admin/includes/settings-pages/shipping.php:87
229
+ #: wpsc-admin/includes/settings-pages/shipping.php:122
230
+ #: wpsc-admin/includes/settings-pages/shipping.php:152
231
+ msgid "Yes"
232
+ msgstr "Да"
233
+
234
+ #: admin-form-functions.php:251
235
+ #: display-coupons.php:503
236
+ #: display-coupons.php:527
237
+ #: merchants/chronopay.php:428
238
+ #: merchants/paypal_multiple.php:479
239
+ #: merchants/paypal_multiple.php:487
240
+ #: merchants/paypal_multiple.php:503
241
+ #: wpsc-admin/display-groups.page.php:909
242
+ #: wpsc-admin/includes/display-items-functions.php:825
243
+ #: wpsc-admin/includes/settings-pages/admin.php:39
244
+ #: wpsc-admin/includes/settings-pages/admin.php:65
245
+ #: wpsc-admin/includes/settings-pages/checkout.php:72
246
+ #: wpsc-admin/includes/settings-pages/checkout.php:97
247
+ #: wpsc-admin/includes/settings-pages/checkout.php:120
248
+ #: wpsc-admin/includes/settings-pages/checkout.php:145
249
+ #: wpsc-admin/includes/settings-pages/general.php:74
250
+ #: wpsc-admin/includes/settings-pages/general.php:200
251
+ #: wpsc-admin/includes/settings-pages/presentation.php:109
252
+ #: wpsc-admin/includes/settings-pages/presentation.php:140
253
+ #: wpsc-admin/includes/settings-pages/presentation.php:164
254
+ #: wpsc-admin/includes/settings-pages/presentation.php:188
255
+ #: wpsc-admin/includes/settings-pages/presentation.php:212
256
+ #: wpsc-admin/includes/settings-pages/presentation.php:234
257
+ #: wpsc-admin/includes/settings-pages/presentation.php:484
258
+ #: wpsc-admin/includes/settings-pages/presentation.php:535
259
+ #: wpsc-admin/includes/settings-pages/presentation.php:576
260
+ #: wpsc-admin/includes/settings-pages/presentation.php:612
261
+ #: wpsc-admin/includes/settings-pages/presentation.php:717
262
+ #: wpsc-admin/includes/settings-pages/presentation.php:741
263
+ #: wpsc-admin/includes/settings-pages/presentation.php:772
264
+ #: wpsc-admin/includes/settings-pages/presentation.php:797
265
+ #: wpsc-admin/includes/settings-pages/presentation.php:824
266
+ #: wpsc-admin/includes/settings-pages/presentation.php:850
267
+ #: wpsc-admin/includes/settings-pages/presentation.php:910
268
+ #: wpsc-admin/includes/settings-pages/presentation.php:936
269
+ #: wpsc-admin/includes/settings-pages/presentation.php:980
270
+ #: wpsc-admin/includes/settings-pages/presentation.php:1027
271
+ #: wpsc-admin/includes/settings-pages/shipping.php:88
272
+ #: wpsc-admin/includes/settings-pages/shipping.php:123
273
+ #: wpsc-admin/includes/settings-pages/shipping.php:153
274
+ msgid "No"
275
+ msgstr "Нет"
276
+
277
+ #: admin-form-functions.php:261
278
+ msgid "Update Category"
279
+ msgstr "Обновить категорию"
280
+
281
+ #: admin-form-functions.php:262
282
+ #: admin-form-functions.php:300
283
+ #: admin-form-functions.php:319
284
+ #: shipping/tablerate.php:44
285
+ #: shipping/weightrate.php:35
286
+ #: wpsc-admin/admin.php:347
287
+ #: wpsc-admin/ajax-and-init.php:1902
288
+ #: wpsc-admin/display-groups.page.php:669
289
+ #: wpsc-admin/display-items.page.php:277
290
+ #: wpsc-admin/display-items.page.php:401
291
+ #: wpsc-admin/display-sales-logs.php:425
292
+ #: wpsc-admin/display-sales-logs.php:550
293
+ #: wpsc-admin/display-variations.page.php:178
294
+ #: wpsc-admin/display-variations.page.php:191
295
+ #: wpsc-admin/display-variations.page.php:213
296
+ #: wpsc-admin/includes/display-items-functions.php:351
297
+ #: wpsc-admin/includes/display-items-functions.php:797
298
+ #: wpsc-admin/includes/settings-pages/checkout.php:248
299
+ msgid "Delete"
300
+ msgstr "Удалить"
301
+
302
+ #: admin-form-functions.php:288
303
+ #: wpsc-admin/display-variations.page.php:164
304
+ msgid "Variation Values"
305
+ msgstr "Значения вариации"
306
+
307
+ #: admin-form-functions.php:307
308
+ #: wpsc-admin/admin.php:236
309
+ #: wpsc-admin/display-variations.page.php:218
310
+ #: wpsc-admin/includes/settings-pages/checkout.php:175
311
+ msgid "Add"
312
+ msgstr "Добавить"
313
+
314
+ #: admin-form-functions.php:318
315
+ #: display-coupons.php:389
316
+ #: display-coupons.php:450
317
+ #: wpsc-admin/display-groups.page.php:106
318
+ #: wpsc-admin/display-groups.page.php:706
319
+ #: wpsc-admin/display-groups.page.php:719
320
+ #: wpsc-admin/display-variations.page.php:14
321
+ #: wpsc-admin/display-variations.page.php:111
322
+ #: wpsc-includes/variations.class.php:343
323
+ #: wpsc-includes/wpsc_query.php:226
324
+ msgid "Edit"
325
+ msgstr "Изменить"
326
+
327
+ #: admin-form-functions.php:339
328
+ #: display-coupons.php:174
329
+ #: display-coupons.php:365
330
+ #: wpsc-admin/display-sales-logs.php:247
331
+ msgid "Coupon Code"
332
+ msgstr "Код купона"
333
+
334
+ #: admin-form-functions.php:340
335
+ #: display-coupons.php:177
336
+ #: display-coupons.php:369
337
+ #: themes/default/shopping_cart_page.php:190
338
+ #: themes/iShop/shopping_cart_page.php:163
339
+ #: themes/marketplace/shopping_cart_page.php:161
340
+ #: transaction_result_functions.php:207
341
+ #: transaction_result_functions.php:215
342
+ #: wpsc-admin/ajax-and-init.php:1146
343
+ #: wpsc-admin/ajax-and-init.php:1152
344
+ #: wpsc-admin/display-sales-logs.php:250
345
+ msgid "Discount"
346
+ msgstr "Купон на скидку"
347
+
348
+ #: admin-form-functions.php:341
349
+ #: display-coupons.php:180
350
+ #: display-coupons.php:373
351
+ msgid "Start"
352
+ msgstr "Начало"
353
+
354
+ #: admin-form-functions.php:342
355
+ #: display-coupons.php:183
356
+ #: display-coupons.php:377
357
+ msgid "Expiry"
358
+ msgstr "Истекает"
359
+
360
+ #: admin-form-functions.php:343
361
+ #: display-coupons.php:186
362
+ msgid "Use Once"
363
+ msgstr "Одноразовый"
364
+
365
+ #: admin-form-functions.php:344
366
+ #: display-coupons.php:189
367
+ #: display-coupons.php:381
368
+ msgid "Active"
369
+ msgstr "Активен"
370
+
371
+ #: admin-form-functions.php:345
372
+ #: display-coupons.php:193
373
+ #: display-coupons.php:287
374
+ #: display-coupons.php:385
375
+ msgid "Apply On All Products"
376
+ msgstr "Действует на все товары"
377
+
378
+ #: admin-form-functions.php:554
379
+ msgid "Update Coupon"
380
+ msgstr "Обновить купон"
381
+
382
+ #: admin-form-functions.php:555
383
+ msgid "Delete Coupon"
384
+ msgstr "Удалить купон"
385
+
386
+ #: admin-form-functions.php:566
387
+ #: wpsc-admin/admin.php:137
388
+ msgid "Settings"
389
+ msgstr "Параметры"
390
+
391
+ #: admin-form-functions.php:570
392
+ #: wpsc-admin/display-sales-logs.php:316
393
+ msgid "Shop Settings"
394
+ msgstr "Настройки магазина"
395
+
396
+ #: admin-form-functions.php:571
397
+ msgid "Money and Payment"
398
+ msgstr "Деньги и платежи"
399
+
400
+ #: admin-form-functions.php:572
401
+ msgid "Checkout Page Settings"
402
+ msgstr "Настройки страницы заказа"
403
+
404
+ #: admin-form-functions.php:590
405
+ #: admin-form-functions.php:591
406
+ msgid "product"
407
+ msgstr "Товар"
408
+
409
+ #: admin-form-functions.php:590
410
+ #: admin-form-functions.php:591
411
+ msgid "products"
412
+ msgstr "Товаров"
413
+
414
+ #: admin-form-functions.php:595
415
+ #: admin-form-functions.php:596
416
+ msgid "group"
417
+ msgstr "Группа"
418
+
419
+ #: admin-form-functions.php:595
420
+ #: admin-form-functions.php:596
421
+ msgid "groups"
422
+ msgstr "Групп"
423
+
424
+ #: admin-form-functions.php:600
425
+ #: admin-form-functions.php:601
426
+ msgid "sale"
427
+ msgstr "Продажа"
428
+
429
+ #: admin-form-functions.php:600
430
+ #: admin-form-functions.php:601
431
+ msgid "sales"
432
+ msgstr "Продаж"
433
+
434
+ #: admin-form-functions.php:607
435
+ msgid "variation"
436
+ msgstr "Вариация"
437
+
438
+ #: admin-form-functions.php:607
439
+ msgid "variations"
440
+ msgstr "Вариаций"
441
+
442
+ #: admin-form-functions.php:611
443
+ #: admin-form-functions.php:612
444
+ #: admin-form-functions.php:615
445
+ msgid "transaction"
446
+ msgstr "транзакция"
447
+
448
+ #: admin-form-functions.php:611
449
+ #: admin-form-functions.php:612
450
+ #: admin-form-functions.php:615
451
+ msgid "transactions"
452
+ msgstr "транзакций"
453
+
454
+ #: admin-form-functions.php:624
455
+ msgid "Current Month"
456
+ msgstr "Текущий месяц"
457
+
458
+ #: admin-form-functions.php:629
459
+ msgid "At a Glance"
460
+ msgstr "На виду"
461
+
462
+ #: admin-form-functions.php:659
463
+ msgid "Pending"
464
+ msgstr "Ожидающих"
465
+
466
+ #: admin-form-functions.php:674
467
+ msgid "Closed"
468
+ msgstr "Закрытых"
469
+
470
+ #: admin-form-functions.php:682
471
+ #: admin-form-functions.php:690
472
+ #: wpsc-admin/includes/display-items-functions.php:350
473
+ msgid "Add New Product"
474
+ msgstr "Добавить новый товар"
475
+
476
+ #: admin-form-functions.php:682
477
+ msgid "Here you can add products, groups or variations"
478
+ msgstr "Здесь можно добавить товары, группы и вариации"
479
+
480
+ #: admin-form-functions.php:691
481
+ msgid "Right Now"
482
+ msgstr "Прямо сейчас"
483
+
484
+ #: admin-form-functions.php:696
485
+ 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."
486
+ msgstr "На сайте <a href=\"admin.php?page=wpsc-edit-products\">:productcount:</a>, их содержат <a href='admin.php?page=wpsc-edit-groups'>:groupcount:</a>. В этом месяце вы совершили :salecount: на общую сумму :monthtotal:, а за всё время продано товаров на :overaltotal:. У вас :pendingcount:, ожидающих подтверждения."
487
+
488
+ #: admin-form-functions.php:698
489
+ msgid "You are using the :theme: style. This is WP e-Commerce :versionnumber:."
490
+ msgstr "Вы используете тему :theme:. Это WP e-Commerce :versionnumber:."
491
+
492
+ #: admin-form-functions.php:729
493
+ msgid "Packing Slip"
494
+ msgstr "Упаковочный купон"
495
+
496
+ #: admin-form-functions.php:730
497
+ msgid "Order"
498
+ msgstr "№ п/п"
499
+
500
+ #: admin-form-functions.php:865
501
+ #: themes/default/list_view.php:137
502
+ #: themes/default/products_page.php:197
503
+ #: themes/default/shopping_cart_page.php:15
504
+ #: themes/default/single_product.php:131
505
+ #: themes/iShop/list_view.php:138
506
+ #: themes/iShop/products_page.php:196
507
+ #: themes/iShop/shopping_cart_page.php:14
508
+ #: themes/iShop/single_product.php:134
509
+ #: themes/marketplace/list_view.php:139
510
+ #: themes/marketplace/products_page.php:199
511
+ #: themes/marketplace/shopping_cart_page.php:14
512
+ #: themes/marketplace/single_product.php:136
513
+ #: user-log.php:204
514
+ #: wpsc-includes/display.functions.php:47
515
+ msgid "Quantity"
516
+ msgstr "Количество"
517
+
518
+ #: admin-form-functions.php:870
519
+ #: js/tinymce3/window.php:113
520
+ #: themes/default/cart_widget.php:25
521
+ #: themes/default/products_page.php:214
522
+ #: themes/default/products_page.php:216
523
+ #: themes/default/shopping_cart_page.php:19
524
+ #: themes/default/single_product.php:148
525
+ #: themes/default/single_product.php:150
526
+ #: themes/iShop/cart_widget.php:25
527
+ #: themes/iShop/products_page.php:212
528
+ #: themes/iShop/products_page.php:214
529
+ #: themes/iShop/shopping_cart_page.php:18
530
+ #: themes/iShop/single_product.php:151
531
+ #: themes/iShop/single_product.php:153
532
+ #: themes/marketplace/cart_widget.php:25
533
+ #: themes/marketplace/products_page.php:216
534
+ #: themes/marketplace/products_page.php:218
535
+ #: themes/marketplace/shopping_cart_page.php:18
536
+ #: themes/marketplace/single_product.php:153
537
+ #: themes/marketplace/single_product.php:155
538
+ #: user-log.php:60
539
+ #: user-log.php:208
540
+ #: wpsc-admin/includes/display-items-functions.php:189
541
+ #: wpsc-admin/includes/display-items-functions.php:242
542
+ #: wpsc-admin/includes/settings-pages/presentation.php:458
543
+ #: wpsc-includes/variations.class.php:218
544
+ msgid "Price"
545
+ msgstr "Цена"
546
+
547
+ #: admin-form-functions.php:872
548
+ #: themes/default/cart_widget.php:40
549
+ #: themes/default/shopping_cart_page.php:17
550
+ #: themes/iShop/cart_widget.php:40
551
+ #: themes/iShop/shopping_cart_page.php:16
552
+ #: themes/marketplace/cart_widget.php:40
553
+ #: themes/marketplace/shopping_cart_page.php:16
554
+ #: transaction_result_functions.php:176
555
+ #: transaction_result_functions.php:178
556
+ #: wpsc-admin/ajax-and-init.php:1125
557
+ #: wpsc-admin/ajax-and-init.php:1127
558
+ #: wpsc-admin/display-options-settings.page.php:102
559
+ #: wpsc-admin/display-sales-logs.php:256
560
+ msgid "Shipping"
561
+ msgstr "Доставка"
562
+
563
+ #: admin-form-functions.php:980
564
+ msgid "This users cart was empty"
565
+ msgstr "Корзина пользователя была пустой"
566
+
567
+ #: display-coupons.php:29
568
+ msgid "Thanks, the coupon has been added."
569
+ msgstr "Спасибо, купон добавлен."
570
+
571
+ #: display-coupons.php:155
572
+ msgid "Coupons"
573
+ msgstr "Купоны"
574
+
575
+ #: display-coupons.php:160
576
+ msgid "Create Coupon"
577
+ msgstr "Создать купон"
578
+
579
+ #: display-coupons.php:351
580
+ msgid "Add New Condition"
581
+ msgstr "Добавить новое условие"
582
+
583
+ #: display-coupons.php:466
584
+ 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."
585
+ msgstr "<strong>Внимание:</strong> В соответствии с текущими ограничениями в PayPal, если клиент делает покупку и использует купон на скидку, мы не можем послать список купленных товаров для обработки на серверы PayPal.<br>Однако, мы должны послать общую сумму заказа, а посему покупая через PayPal пользователь получит счёт с одним товаром - общей суммой заказа."
586
+
587
+ #: display-coupons.php:478
588
+ msgid "Marketing Settings"
589
+ msgstr "Настройки маркетинга"
590
+
591
+ #: display-coupons.php:485
592
+ msgid "Display Cross Sales"
593
+ msgstr "Отображать перекрёстные продажи"
594
+
595
+ #: display-coupons.php:509
596
+ msgid "Show Share This (Social Bookmarks)"
597
+ msgstr "Показывать социальные закладки"
598
+
599
+ #: display-coupons.php:532
600
+ msgid "Display How Customer Found Us Survey"
601
+ msgstr "Отображать опрос &laquo;Как клиент нас нашёл&raquo;"
602
+
603
+ #: display-coupons.php:549
604
+ #: wpsc-admin/display-groups.page.php:642
605
+ #: wpsc-admin/display-groups.page.php:667
606
+ msgid "Submit"
607
+ msgstr "Отправить"
608
+
609
+ #: display-coupons.php:555
610
+ msgid "RSS Address"
611
+ msgstr "RSS-лента"
612
+
613
+ #: display-coupons.php:559
614
+ 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."
615
+ msgstr "<strong>Внимание:</strong> RSS-ленту могут использовать не только клиенты вашего магазина для отслеживания списка товаров, но и вы сами для рекламы товаров в вашем профиле на Facebook. <br>Просто добавьте <a href=\"http://apps.facebook.com/getshopped\">приложение GetShopped! для Facebook</a> в ваш профиль и следуйте указаниям."
616
+
617
+ #: display-coupons.php:573
618
+ msgid "Google Merchant Centre / Google Product Search"
619
+ msgstr "Центр Google Merchant / Поиск товаров Google"
620
+
621
+ #: display-ecommerce-subs.php:9
622
+ msgid "User ID"
623
+ msgstr "ID пользователя"
624
+
625
+ #: display-ecommerce-subs.php:9
626
+ #: edit-profile.php:39
627
+ #: user-log.php:362
628
+ #: wpsc-admin/admin.php:349
629
+ #: wpsc-includes/install_and_update.functions.php:656
630
+ msgid "Email"
631
+ msgstr "Email"
632
+
633
+ #: display-ecommerce-subs.php:9
634
+ msgid "Registered Date"
635
+ msgstr "Дата регистрации"
636
+
637
+ #: display-ecommerce-subs.php:9
638
+ msgid "Suspend"
639
+ msgstr "Заблокировать"
640
+
641
+ #: display-ecommerce-subs.php:9
642
+ msgid "Activate"
643
+ msgstr "Активировать"
644
+
645
+ #: edit-profile.php:31
646
+ #: wpsc-includes/install_and_update.functions.php:650
647
+ #: wpsc-includes/install_and_update.functions.php:658
648
+ msgid "First Name"
649
+ msgstr "Имя"
650
+
651
+ #: edit-profile.php:32
652
+ msgid "Please enter a valid name"
653
+ msgstr "Пожалуйста, введите корректное имя"
654
+
655
+ #: edit-profile.php:35
656
+ #: wpsc-includes/install_and_update.functions.php:651
657
+ #: wpsc-includes/install_and_update.functions.php:659
658
+ msgid "Last Name"
659
+ msgstr "Фамилия"
660
+
661
+ #: edit-profile.php:36
662
+ msgid "Please enter a valid surname"
663
+ msgstr "Пожалуйста, введите корректную фамилию"
664
+
665
+ #: edit-profile.php:40
666
+ msgid "Please enter a valid email address"
667
+ msgstr "Пожалуйста, введите корректный адрес e-mail"
668
+
669
+ #: edit-profile.php:43
670
+ msgid "Address 1"
671
+ msgstr "Адрес 1"
672
+
673
+ #: edit-profile.php:44
674
+ msgid "Address 2"
675
+ msgstr "Адрес 2"
676
+
677
+ #: edit-profile.php:45
678
+ msgid "Please enter a valid address"
679
+ msgstr "Пожалуйста, введите корректный адрес"
680
+
681
+ #: edit-profile.php:48
682
+ #: wpsc-includes/install_and_update.functions.php:653
683
+ #: wpsc-includes/install_and_update.functions.php:661
684
+ msgid "City"
685
+ msgstr "Город"
686
+
687
+ #: edit-profile.php:49
688
+ msgid "Please enter your town or city."
689
+ msgstr "Заполните ваш населённый пункт."
690
+
691
+ #: edit-profile.php:52
692
+ #: user-log.php:361
693
+ #: wpsc-includes/install_and_update.functions.php:669
694
+ msgid "Phone"
695
+ msgstr "Телефон"
696
+
697
+ #: edit-profile.php:53
698
+ msgid "Please enter a valid phone number"
699
+ msgstr "Пожалуйста, введите корректный номер телефона"
700
+
701
+ #: edit-profile.php:56
702
+ #: wpsc-admin/admin.php:350
703
+ #: wpsc-includes/install_and_update.functions.php:654
704
+ #: wpsc-includes/install_and_update.functions.php:663
705
+ msgid "Country"
706
+ msgstr "Страна"
707
+
708
+ #: edit-profile.php:57
709
+ msgid "Please select your country from the list."
710
+ msgstr "Выберите страну из списка."
711
+
712
+ #: edit-profile.php:61
713
+ #: wpsc-includes/checkout.class.php:536
714
+ #: wpsc-includes/checkout.class.php:550
715
+ #: wpsc-includes/checkout.class.php:561
716
+ #: wpsc-includes/checkout.class.php:569
717
+ #: wpsc-includes/checkout.class.php:580
718
+ #: wpsc-includes/checkout.class.php:679
719
+ msgid "Please enter a valid"
720
+ msgstr "Пожалуйста введите корректно"
721
+
722
+ #: edit-profile.php:84
723
+ msgid "Thanks, your changes have been saved."
724
+ msgstr "Спасибо, изменения сохранены."
725
+
726
+ #: edit-profile.php:188
727
+ msgid "Save Profile"
728
+ msgstr "Сохранить профиль"
729
+
730
+ #: editor.php:49
731
+ msgid "placeholder for:"
732
+ msgstr "заполнитель для:"
733
+
734
+ #: editor.php:144
735
+ msgid "Your forms:"
736
+ msgstr "Ваши формы"
737
+
738
+ #: editor.php:146
739
+ #: insertcate.php:87
740
+ #: js/tinymce3/window.php:144
741
+ msgid "Insert"
742
+ msgstr "Вставить"
743
+
744
+ #: editor.php:147
745
+ #: insertcate.php:90
746
+ #: js/tinymce3/window.php:140
747
+ msgid "Cancel"
748
+ msgstr "Отмена"
749
+
750
+ #: google_shipping_country.php:7
751
+ msgid "Google Shipping Country"
752
+ msgstr "Страна доставки Google"
753
+
754
+ #: google_shipping_country.php:43
755
+ #: tax_and_shipping.php:86
756
+ #: wpsc-admin/includes/settings-pages/checkout.php:268
757
+ msgid "Save Changes"
758
+ msgstr "Сохранить изменения"
759
+
760
+ #: homepage_products_functions.php:85
761
+ #: widgets/donations_widget.php:6
762
+ #: widgets/donations_widget.php:77
763
+ #: widgets/donations_widget.php:78
764
+ msgid "Product Donations"
765
+ msgstr "Пожертвования"
766
+
767
+ #: homepage_products_functions.php:157
768
+ #: themes/default/products_page.php:126
769
+ #: themes/iShop/products_page.php:127
770
+ #: themes/marketplace/products_page.php:129
771
+ msgid "More Details"
772
+ msgstr "Более детально"
773
+
774
+ #: homepage_products_functions.php:189
775
+ #: themes/default/grid_view.php:142
776
+ #: themes/default/list_view.php:154
777
+ #: themes/default/products_page.php:234
778
+ #: themes/default/single_product.php:180
779
+ #: themes/iShop/grid_view.php:144
780
+ #: themes/iShop/list_view.php:157
781
+ #: themes/iShop/products_page.php:232
782
+ #: themes/iShop/single_product.php:181
783
+ #: themes/marketplace/grid_view.php:145
784
+ #: themes/marketplace/list_view.php:156
785
+ #: themes/marketplace/products_page.php:236
786
+ #: themes/marketplace/single_product.php:183
787
+ #: widgets/donations_widget.php:48
788
+ #: widgets/specials_widget.php:69
789
+ #: wpsc-admin/includes/settings-pages/presentation.php:85
790
+ #: wpsc-includes/display.functions.php:326
791
+ msgid "Add To Cart"
792
+ msgstr "Добавить в корзину"
793
+
794
+ #: homepage_products_functions.php:205
795
+ #: wpsc-includes/wpsc_query.php:875
796
+ msgid "Avg. Customer Rating"
797
+ msgstr "Средний рейтинг"
798
+
799
+ #: homepage_products_functions.php:212
800
+ #: wpsc-includes/wpsc_query.php:882
801
+ msgid "Your Rating"
802
+ msgstr "Ваш рейтинг"
803
+
804
+ #: homepage_products_functions.php:213
805
+ #: homepage_products_functions.php:217
806
+ #: wpsc-includes/wpsc_query.php:883
807
+ msgid "Saved"
808
+ msgstr "Сохранено"
809
+
810
+ #: homepage_products_functions.php:216
811
+ msgid "Rate This item"
812
+ msgstr "Голосуйте за товар"
813
+
814
+ #: insertcate.php:67
815
+ msgid "Pick a Category"
816
+ msgstr "Выберите категорию"
817
+
818
+ #: insertcate.php:74
819
+ msgid "Your Categories:"
820
+ msgstr "Ваши категории:"
821
+
822
+ #: js/tinymce3/window.php:36
823
+ #: js/tinymce3/window.php:118
824
+ msgid "Category"
825
+ msgstr "Категория"
826
+
827
+ #: js/tinymce3/window.php:37
828
+ #: wpsc-admin/display-upgrades.page.php:47
829
+ msgid "Product Slider"
830
+ msgstr "Слайдер товара"
831
+
832
+ #: js/tinymce3/window.php:38
833
+ #: wpsc-admin/includes/display-items-functions.php:137
834
+ #: wpsc-admin/includes/display-items-functions.php:139
835
+ msgid "Add Product"
836
+ msgstr "Добавить товар"
837
+
838
+ #: js/tinymce3/window.php:48
839
+ #: js/tinymce3/window.php:76
840
+ msgid "Select Category"
841
+ msgstr "Выберите категорию"
842
+
843
+ #: js/tinymce3/window.php:51
844
+ #: js/tinymce3/window.php:78
845
+ #: js/tinymce3/window.php:122
846
+ msgid "No Category"
847
+ msgstr "Нет категории"
848
+
849
+ #: js/tinymce3/window.php:65
850
+ msgid "Number of items per Page"
851
+ msgstr "Количество элементов на странице"
852
+
853
+ #: js/tinymce3/window.php:91
854
+ msgid "Number of visible items"
855
+ msgstr "Количество видимых элементов"
856
+
857
+ #: merchants/chronopay.php:440
858
+ #: merchants/paypal_multiple.php:562
859
+ #: wpsc-admin/includes/settings-pages/admin.php:227
860
+ #: wpsc-admin/includes/settings-pages/gateway.php:92
861
+ #: wpsc-admin/includes/settings-pages/gateway.php:172
862
+ #: wpsc-admin/includes/settings-pages/general.php:207
863
+ #: wpsc-admin/includes/settings-pages/presentation.php:1060
864
+ #: wpsc-admin/includes/settings-pages/shipping.php:276
865
+ #: wpsc-admin/includes/settings-pages/shipping.php:298
866
+ msgid "Update &raquo;"
867
+ msgstr "Обновить &raquo;"
868
+
869
+ #: merchants/paypal-standard.merchant.php:137
870
+ msgid "Your Subscription"
871
+ msgstr "Ваша подписка"
872
+
873
+ #: merchants/paypal_certified.php:621
874
+ #: merchants/paypal_multiple.php:527
875
+ msgid "Currency Converter"
876
+ msgstr "Конвертер валют"
877
+
878
+ #: merchants/paypal_certified.php:624
879
+ 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."
880
+ msgstr "Если ваш сайт использует валюту, которая не принимается в PayPal, выберите принимаемую валюту из списка. Клиенты вашего магазина по-прежнему смогут платить в вашей местной валюте, однако в PayPal заказ будет отправлен с использованием валюты, выбранной из списка."
881
+
882
+ #: merchants/paypal_multiple.php:530
883
+ #, php-format
884
+ 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."
885
+ msgstr "Ваш сайт использует <strong>%s</strong>. Эта валюта на текущий момент не поддерживается в PayPal, поэтому выберите принимаемую валюту из списка. Клиенты вашего магазина по-прежнему смогут платить в вашей местной валюте, однако в PayPal заказ будет отправлен с использованием валюты, выбранной из списка."
886
+
887
+ #: merchants/paypal_pro.php:276
888
+ msgid "There is a problem with your PayPal account configuration, please contact PayPal for further information."
889
+ msgstr "Обнаружена проблема с вашим аккаунтов в PayPal. Пожалуйста, обратитесь в службу поддержки PayPal за дополнительной информацией."
890
+
891
+ #: merchants/paypal_pro.php:281
892
+ msgid "Sorry your transaction did not go through to Paypal successfully, please try again."
893
+ msgstr "Извините, ваша транзакция некорректно прошла в PayPal. Попробуйте ещё раз."
894
+
895
+ #: merchants/paypal_pro.php:370
896
+ msgid "API Username:"
897
+ msgstr "Логин API:"
898
+
899
+ #: merchants/paypal_pro.php:378
900
+ msgid "API Password:"
901
+ msgstr "Пароль API:"
902
+
903
+ #: merchants/paypal_pro.php:386
904
+ msgid "API Signature:"
905
+ msgstr "Подпись API:"
906
+
907
+ #: merchants/paypal_pro.php:394
908
+ msgid "Test Mode Enabled:"
909
+ msgstr "Включён тестовый режим:"
910
+
911
+ #: merchants/testmode.php:30
912
+ msgid "Enter the payment instructions that you wish to display to your customers when they make a purchase"
913
+ msgstr "Введите описание способа оплаты, которое будет отображатся клиентам при оформлении заказа."
914
+
915
+ #: merchants/testmode.php:32
916
+ 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."
917
+ msgstr "Например, здесь вы как владелец магазина можете ввести свой банковский счёт или адрес, чтобы клиент мог оплатить заказ вручную."
918
+
919
+ #: share-this.php:435
920
+ msgid "E-mail this, post to del.icio.us, etc."
921
+ msgstr "Отправить по e-mail, сохранить в del.icio.us и т.п."
922
+
923
+ #: share-this.php:488
924
+ msgid "Close"
925
+ msgstr "Закрыть"
926
+
927
+ #: share-this.php:490
928
+ #: share-this.php:842
929
+ msgid "Social Web"
930
+ msgstr "Социальные сайты"
931
+
932
+ #: share-this.php:491
933
+ #: share-this.php:867
934
+ #: themes/default/shopping_cart_page.php:242
935
+ #: themes/iShop/shopping_cart_page.php:213
936
+ #: themes/marketplace/shopping_cart_page.php:211
937
+ msgid "E-mail"
938
+ msgstr "E-mail"
939
+
940
+ #: share-this.php:508
941
+ #: share-this.php:871
942
+ msgid "E-mail It"
943
+ msgstr "Отправить по e-mail"
944
+
945
+ #: share-this.php:511
946
+ #: share-this.php:874
947
+ msgid "To Address:"
948
+ msgstr "Кому:"
949
+
950
+ #: share-this.php:515
951
+ #: share-this.php:878
952
+ msgid "Your Name:"
953
+ msgstr "Ваше имя:"
954
+
955
+ #: share-this.php:519
956
+ #: share-this.php:882
957
+ msgid "Your Address:"
958
+ msgstr "Ваш адрес:"
959
+
960
+ #: share-this.php:523
961
+ #: share-this.php:886
962
+ msgid "Send It"
963
+ msgstr "Отправить"
964
+
965
+ #: share-this.php:605
966
+ msgid "Click your <strong>back button</strong> and make sure those e-mail addresses are valid then try again."
967
+ msgstr "Нажмите кнопку <strong>&laquo;Назад&raquo;</strong>, проверьте адрес e-mail, затем попробуйте снова."
968
+
969
+ #: share-this.php:615
970
+ msgid "Check out this product on "
971
+ msgstr "Посмотрите товар на сайте "
972
+
973
+ #: share-this.php:620
974
+ #: share-this.php:640
975
+ msgid "Greetings--"
976
+ msgstr "Добрый день,"
977
+
978
+ #: share-this.php:621
979
+ #: share-this.php:641
980
+ msgid " thinks this will be of interest to you:"
981
+ msgstr " считает, что вам это может пригодиться:"
982
+
983
+ #: share-this.php:634
984
+ #: share-this.php:644
985
+ msgid "Enjoy."
986
+ msgstr "Успехов!"
987
+
988
+ #: share-this.php:702
989
+ msgid "Share This : "
990
+ msgstr "Поделиться с друзьями: "
991
+
992
+ #: share-this.php:838
993
+ #, php-format
994
+ 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."
995
+ msgstr "<strong>Что здесь?</strong> На этой странице можно воспользоваться меню <em>&laquo;Социальные сайты&raquo;</em>, чтобы добавить статью %s в закладки, или формой <em>E-mail</em>, чтобы отправить ссылку по почте."
996
+
997
+ #: share-this.php:909
998
+ msgid "Posted in: "
999
+ msgstr "Рубрика: "
1000
+
1001
+ #: share-this.php:912
1002
+ msgid "Return to:"
1003
+ msgstr "Вернуться:"
1004
+
1005
+ #: shipping/australiapost.php:47
1006
+ msgid "Australia Post"
1007
+ msgstr "Почта Австралии"
1008
+
1009
+ #: shipping/australiapost.php:54
1010
+ msgid "Standard Parcel Post"
1011
+ msgstr "Стандартная почтовая служба"
1012
+
1013
+ #: shipping/australiapost.php:55
1014
+ msgid "Express Post"
1015
+ msgstr "Экспресс-почта"
1016
+
1017
+ #: shipping/australiapost.php:56
1018
+ msgid "Air Mail"
1019
+ msgstr "Воздушная почта"
1020
+
1021
+ #: shipping/australiapost.php:57
1022
+ msgid "Sea Mail"
1023
+ msgstr "Морская почта"
1024
+
1025
+ #: shipping/australiapost.php:58
1026
+ msgid "Economy Air Parcel Post"
1027
+ msgstr "Экономичная воздушная почта"
1028
+
1029
+ #: shipping/australiapost.php:59
1030
+ msgid "Express Post International"
1031
+ msgstr "Международная экспресс-почта"
1032
+
1033
+ #: shipping/australiapost.php:95
1034
+ msgid "This shipping module only works if the base country in settings, region is set to Australia."
1035
+ msgstr "Этот модуль доставки работает, только если основным регионом в настройках указана Австралия."
1036
+
1037
+ #: shipping/australiapost.php:100
1038
+ msgid "You must set your base postcode above before this shipping module will work."
1039
+ msgstr "Чтобы этот модуль доставки работал, нужно указать основной почтовый индекс."
1040
+
1041
+ #: shipping/australiapost.php:103
1042
+ msgid "Select the Australia Post services that you want to offer during checkout:"
1043
+ msgstr "Выберите службы австралийской почты, которые вы хотите предложить во время заказа:"
1044
+
1045
+ #: shipping/australiapost.php:110
1046
+ msgid "Notes:"
1047
+ msgstr "Заметки:"
1048
+
1049
+ #: shipping/australiapost.php:111
1050
+ msgid "1. The actual services quoted to the customer during checkout will depend on the destination country. Not all methods are available to all destinations."
1051
+ msgstr "1. Стоимость услуг, доступных клиенту при заказе, зависит от страны назначения. Не все способы действуют во всех странах."
1052
+
1053
+ #: shipping/australiapost.php:112
1054
+ msgid "2. Each product must have a valid weight configured. When editing a product, use the weight field.)."
1055
+ msgstr "2. Для каждого товара должен быть правильно указан вес. При редактировании товара заполните поле &laquo;Вес&raquo;."
1056
+
1057
+ #: shipping/australiapost.php:113
1058
+ msgid "3. To ensure accurate quotes, each product must valid dimensions configured. When editing a product, use the height, width and length fields."
1059
+ msgstr "3. Чтобы обеспечить точный подсчёт стоимости услуг, для каждого товара должны быть правильно указаны размеры. При редактировании товара заполните поля &laquo;Высота&raquo;, &laquo;Ширина&raquo; и &laquo;Длина&raquo;."
1060
+
1061
+ #: shipping/australiapost.php:114
1062
+ msgid "4. The combined dimensions are estimated by calculating the volume of each item, and then calculating the cubed root of the overall order volume which becomes width, length and height."
1063
+ msgstr "4. Общие размеры рассчитываются путём вычисления объёма каждого элемента и кубического корня из объёма всего заказа. Получаются ширина, длина и высота."
1064
+
1065
+ #: shipping/australiapost.php:115
1066
+ msgid "5. If no product volumes are defined, then default package dimensions of 100mm x 100mm x 100mm will be used."
1067
+ msgstr "5. Если объём товара не задан, используются размеры по умолчанию: 100 мм x 100 мм x 100 мм."
1068
+
1069
+ #: shipping/australiapost.php:257
1070
+ #, php-format
1071
+ msgid "%1$s (estimated delivery time: %2$d business day)"
1072
+ msgid_plural "%1$s (estimated delivery time: %2$d business days)"
1073
+ msgstr[0] "%1$s (планируемое время доставки: %2$d рабочий день)"
1074
+ msgstr[1] "%1$s (планируемое время доставки: %2$d рабочих дня)"
1075
+ msgstr[2] "%1$s (планируемое время доставки: %2$d рабочих дней)"
1076
+
1077
+ #: shipping/flatrate.php:31
1078
+ 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."
1079
+ msgstr "Если вы не хотите осуществлять доставку в определённый регион, оставьте поле пустым. Чтобы предложить бесплатную доставку, введите 0."
1080
+
1081
+ #: shipping/tablerate.php:30
1082
+ #: themes/default/shopping_cart_page.php:202
1083
+ #: themes/iShop/shopping_cart_page.php:175
1084
+ #: themes/marketplace/shopping_cart_page.php:173
1085
+ msgid "Total Price"
1086
+ msgstr "Общая стоимость"
1087
+
1088
+ #: shipping/tablerate.php:30
1089
+ #: shipping/weightrate.php:30
1090
+ msgid "Shipping Price"
1091
+ msgstr "Цена доставки"
1092
+
1093
+ #: shipping/tablerate.php:37
1094
+ #: wpsc-admin/admin.php:366
1095
+ msgid "If price is "
1096
+ msgstr "Если цена составляет "
1097
+
1098
+ #: shipping/tablerate.php:39
1099
+ #: shipping/weightrate.php:35
1100
+ #: wpsc-admin/admin.php:365
1101
+ msgid " and above"
1102
+ msgstr " и выше"
1103
+
1104
+ #: shipping/ups.php:76
1105
+ msgid "UPS Letter"
1106
+ msgstr "Письмо UPS"
1107
+
1108
+ #: shipping/ups.php:77
1109
+ msgid "Your Packaging"
1110
+ msgstr "Ваша упаковка"
1111
+
1112
+ #: shipping/ups.php:78
1113
+ msgid "UPS Tube"
1114
+ msgstr "Трубка UPS"
1115
+
1116
+ #: shipping/ups.php:79
1117
+ msgid "UPS Pak"
1118
+ msgstr "Упаковка UPS"
1119
+
1120
+ #: shipping/ups.php:80
1121
+ msgid "UPS Express Box"
1122
+ msgstr "Экспресс-посылка UPS"
1123
+
1124
+ #: shipping/ups.php:81
1125
+ msgid "UPS Express Box - Small"
1126
+ msgstr "Экспресс-посылка UPS &#8212; Маленькая"
1127
+
1128
+ #: shipping/ups.php:82
1129
+ msgid "UPS Express Box - Medium"
1130
+ msgstr "Экспресс-посылка UPS &#8212; Средняя"
1131
+
1132
+ #: shipping/ups.php:83
1133
+ msgid "UPS Express Box - Large"
1134
+ msgstr "Экспресс-посылка UPS &#8212; Большая"
1135
+
1136
+ #: shipping/ups.php:86
1137
+ msgid "Destination Type"
1138
+ msgstr "Тип места доставки"
1139
+
1140
+ #: shipping/ups.php:97
1141
+ msgid "Residential Address"
1142
+ msgstr "Домашний адрес"
1143
+
1144
+ #: shipping/ups.php:98
1145
+ msgid "Commercial Address"
1146
+ msgstr "Адрес предприятия"
1147
+
1148
+ #: shipping/ups.php:104
1149
+ msgid "Packaging"
1150
+ msgstr "Упаковка"
1151
+
1152
+ #: shipping/ups.php:124
1153
+ msgid "Use Testing Environment"
1154
+ msgstr "Использовать тестовое окружение"
1155
+
1156
+ #: shipping/ups.php:133
1157
+ msgid "UPS Preferred Services"
1158
+ msgstr "Предпочтительные службы UPS"
1159
+
1160
+ #: shipping/ups.php:154
1161
+ msgid "All services used if no services selected"
1162
+ msgstr "Если ни один сервис не выбран, используются все сервисы"
1163
+
1164
+ #: shipping/ups.php:158
1165
+ msgid "UPS Username"
1166
+ msgstr "Логин UPS"
1167
+
1168
+ #: shipping/ups.php:164
1169
+ msgid "UPS Password"
1170
+ msgstr "Пароль UPS"
1171
+
1172
+ #: shipping/ups.php:170
1173
+ msgid "UPS XML API Key"
1174
+ msgstr "API-ключ UPS XML"
1175
+
1176
+ #: shipping/ups.php:174
1177
+ msgid "Don't have an API login/ID ?"
1178
+ msgstr "У вас ещё нет API-логина/ID?"
1179
+
1180
+ #: shipping/ups.php:175
1181
+ msgid "Click Here"
1182
+ msgstr "Нажмите сюда"
1183
+
1184
+ #: shipping/usps.php:37
1185
+ msgid "USPS ID"
1186
+ msgstr "USPS ID"
1187
+
1188
+ #: shipping/usps.php:45
1189
+ msgid "USPS Password"
1190
+ msgstr "USPS Пароль"
1191
+
1192
+ #: shipping/usps.php:53
1193
+ msgid "Use Test Server:"
1194
+ msgstr "Использовать тестовый сервер:"
1195
+
1196
+ #: shipping/weightrate.php:30
1197
+ 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>)"
1198
+ msgstr "Общий вес <br />(<abbr alt=\"Здесь нужно указать вес в фунтах, независимо от единиц, используемых для товаров\" title=\"Здесь нужно указать вес в фунтах, независимо от единиц, используемых для товаров\">в фунтах</abbr>)"
1199
+
1200
+ #: shipping/weightrate.php:35
1201
+ #: wpsc-admin/admin.php:367
1202
+ msgid "If weight is "
1203
+ msgstr "Если вес составляет "
1204
+
1205
+ #: shopping_cart_functions.php:36
1206
+ #: shopping_cart_functions.php:44
1207
+ #: shopping_cart_functions.php:54
1208
+ #: widgets/shopping_cart_widget.php:27
1209
+ msgid "Shopping Cart"
1210
+ msgstr "Корзина покупок"
1211
+
1212
+ #: tagging_functions.php:79
1213
+ #, php-format
1214
+ msgid "%d topics"
1215
+ msgstr "%d тем"
1216
+
1217
+ #: tax_and_shipping.php:34
1218
+ msgid "GST/Tax Rate"
1219
+ msgstr "GST/Налог"
1220
+
1221
+ #: themes/default/cart_widget.php:15
1222
+ #: themes/iShop/cart_widget.php:15
1223
+ #: themes/marketplace/cart_widget.php:15
1224
+ msgid "Number of items"
1225
+ msgstr "Количество товаров"
1226
+
1227
+ #: themes/default/cart_widget.php:23
1228
+ #: themes/default/shopping_cart_page.php:14
1229
+ #: themes/iShop/cart_widget.php:23
1230
+ #: themes/iShop/shopping_cart_page.php:13
1231
+ #: themes/marketplace/cart_widget.php:23
1232
+ #: themes/marketplace/shopping_cart_page.php:13
1233
+ msgid "Product"
1234
+ msgstr "Товар"
1235
+
1236
+ #: themes/default/cart_widget.php:24
1237
+ #: themes/iShop/cart_widget.php:24
1238
+ #: themes/marketplace/cart_widget.php:24
1239
+ msgid "Qty"
1240
+ msgstr "Шт."
1241
+
1242
+ #: themes/default/cart_widget.php:59
1243
+ #: themes/iShop/cart_widget.php:60
1244
+ #: themes/marketplace/cart_widget.php:59
1245
+ msgid "Postage &amp; Tax "
1246
+ msgstr "Доставка и Налог "
1247
+
1248
+ #: themes/default/cart_widget.php:63
1249
+ #: themes/iShop/cart_widget.php:64
1250
+ #: themes/marketplace/cart_widget.php:63
1251
+ #: transaction_result_functions.php:211
1252
+ #: transaction_result_functions.php:218
1253
+ #: user-log.php:220
1254
+ #: wpsc-admin/ajax-and-init.php:1149
1255
+ #: wpsc-admin/ajax-and-init.php:1155
1256
+ #: wpsc-admin/display-sales-logs.php:261
1257
+ msgid "Total"
1258
+ msgstr "Всего"
1259
+
1260
+ #: themes/default/cart_widget.php:72
1261
+ #: themes/iShop/cart_widget.php:73
1262
+ #: themes/marketplace/cart_widget.php:72
1263
+ msgid "Empty your cart"
1264
+ msgstr "Очистить корзину"
1265
+
1266
+ #: themes/default/cart_widget.php:76
1267
+ #: themes/iShop/cart_widget.php:77
1268
+ #: themes/marketplace/cart_widget.php:76
1269
+ #: wpsc-includes/display.functions.php:153
1270
+ msgid "Go to Checkout"
1271
+ msgstr "Перейти к проверке"
1272
+
1273
+ #: themes/default/cart_widget.php:78
1274
+ #: themes/iShop/cart_widget.php:79
1275
+ #: themes/marketplace/cart_widget.php:78
1276
+ msgid "Your shopping cart is empty"
1277
+ msgstr "Ваша корзина пуста"
1278
+
1279
+ #: themes/default/cart_widget.php:80
1280
+ #: themes/iShop/cart_widget.php:81
1281
+ #: themes/marketplace/cart_widget.php:80
1282
+ msgid "Visit the shop"
1283
+ msgstr "Посетите магазин"
1284
+
1285
+ #: themes/default/functions.php:15
1286
+ #: themes/iShop/functions.php:15
1287
+ #: themes/marketplace/functions.php:15
1288
+ #: wpsc-admin/includes/settings-pages/presentation.php:989
1289
+ msgid "Page Number position"
1290
+ msgstr "Позиция количества страниц"
1291
+
1292
+ #: themes/default/grid_view.php:144
1293
+ #: themes/default/list_view.php:162
1294
+ #: themes/default/products_page.php:242
1295
+ #: themes/default/single_product.php:189
1296
+ #: themes/iShop/grid_view.php:146
1297
+ #: themes/iShop/list_view.php:167
1298
+ #: themes/iShop/products_page.php:240
1299
+ #: themes/iShop/single_product.php:190
1300
+ #: themes/marketplace/grid_view.php:147
1301
+ #: themes/marketplace/list_view.php:163
1302
+ #: themes/marketplace/products_page.php:245
1303
+ #: themes/marketplace/single_product.php:192
1304
+ #: widgets/specials_widget.php:66
1305
+ msgid "This product has sold out."
1306
+ msgstr "Этот товар был продан."
1307
+
1308
+ #: themes/default/grid_view.php:168
1309
+ #: themes/default/list_view.php:184
1310
+ #: themes/default/products_page.php:266
1311
+ #: themes/iShop/grid_view.php:170
1312
+ #: themes/iShop/list_view.php:189
1313
+ #: themes/iShop/products_page.php:265
1314
+ #: themes/marketplace/grid_view.php:171
1315
+ #: themes/marketplace/list_view.php:185
1316
+ #: themes/marketplace/products_page.php:270
1317
+ msgid "There are no products in this group."
1318
+ msgstr "В этой группе нет товаров."
1319
+
1320
+ #: themes/default/list_view.php:152
1321
+ #: themes/default/products_page.php:232
1322
+ #: themes/default/single_product.php:178
1323
+ #: themes/iShop/list_view.php:155
1324
+ #: themes/iShop/products_page.php:230
1325
+ #: themes/iShop/single_product.php:179
1326
+ #: themes/marketplace/list_view.php:154
1327
+ #: themes/marketplace/products_page.php:234
1328
+ #: themes/marketplace/single_product.php:181
1329
+ #: wpsc-admin/includes/settings-pages/presentation.php:87
1330
+ #: wpsc-includes/display.functions.php:242
1331
+ msgid "Buy Now"
1332
+ msgstr "Купить сейчас"
1333
+
1334
+ #: themes/default/list_view.php:158
1335
+ #: themes/default/products_page.php:238
1336
+ #: themes/default/single_product.php:185
1337
+ #: themes/iShop/list_view.php:163
1338
+ #: themes/iShop/products_page.php:236
1339
+ #: themes/iShop/single_product.php:186
1340
+ #: themes/marketplace/list_view.php:159
1341
+ #: themes/marketplace/products_page.php:241
1342
+ #: themes/marketplace/single_product.php:188
1343
+ msgid "Updating cart..."
1344
+ msgstr "Обновление корзины..."
1345
+
1346
+ #: themes/default/products_page.php:207
1347
+ #: themes/default/single_product.php:141
1348
+ #: themes/iShop/products_page.php:205
1349
+ #: themes/iShop/single_product.php:144
1350
+ #: themes/marketplace/products_page.php:209
1351
+ #: themes/marketplace/single_product.php:146
1352
+ #: widgets/donations_widget.php:47
1353
+ msgid "Donation"
1354
+ msgstr "Пожертвование"
1355
+
1356
+ #: themes/default/products_page.php:218
1357
+ #: themes/default/single_product.php:157
1358
+ #: themes/iShop/products_page.php:216
1359
+ #: themes/iShop/single_product.php:158
1360
+ #: themes/marketplace/products_page.php:220
1361
+ #: themes/marketplace/single_product.php:160
1362
+ #: user-log.php:216
1363
+ msgid "P&amp;P"
1364
+ msgstr "P&amp;P"
1365
+
1366
+ #: themes/default/shopping_cart_page.php:10
1367
+ #: themes/iShop/shopping_cart_page.php:9
1368
+ #: themes/marketplace/shopping_cart_page.php:9
1369
+ msgid "Please review your order"
1370
+ msgstr "Пожалуйста, проверьте ваш заказ."
1371
+
1372
+ #: themes/default/shopping_cart_page.php:37
1373
+ #: themes/default/shopping_cart_page.php:66
1374
+ #: themes/iShop/shopping_cart_page.php:35
1375
+ #: themes/iShop/shopping_cart_page.php:66
1376
+ #: themes/marketplace/shopping_cart_page.php:35
1377
+ #: themes/marketplace/shopping_cart_page.php:65
1378
+ msgid "Update"
1379
+ msgstr "Обновить"
1380
+
1381
+ #: themes/default/shopping_cart_page.php:50
1382
+ #: themes/iShop/shopping_cart_page.php:49
1383
+ #: themes/marketplace/shopping_cart_page.php:48
1384
+ msgid "Remove"
1385
+ msgstr "Удалить"
1386
+
1387
+ #: themes/default/shopping_cart_page.php:59
1388
+ #: themes/iShop/shopping_cart_page.php:59
1389
+ #: themes/marketplace/shopping_cart_page.php:58
1390
+ msgid "Coupon is not valid."
1391
+ msgstr "Купон недействителен."
1392
+
1393
+ #: themes/default/shopping_cart_page.php:62
1394
+ #: themes/iShop/shopping_cart_page.php:62
1395
+ #: themes/marketplace/shopping_cart_page.php:61
1396
+ msgid "Enter your coupon number"
1397
+ msgstr "Введите номер купона"
1398
+
1399
+ #: themes/default/shopping_cart_page.php:92
1400
+ #: themes/iShop/shopping_cart_page.php:91
1401
+ #: themes/marketplace/shopping_cart_page.php:90
1402
+ msgid "Calculate Shipping Price"
1403
+ msgstr "Посчитать стоимость доставки"
1404
+
1405
+ #: themes/default/shopping_cart_page.php:96
1406
+ #: themes/iShop/shopping_cart_page.php:95
1407
+ #: themes/marketplace/shopping_cart_page.php:94
1408
+ msgid "Please choose a country below to calculate your shipping costs"
1409
+ msgstr "Пожалуйста, выберите страну для расчёта стоимости доставки"
1410
+
1411
+ #: themes/default/shopping_cart_page.php:105
1412
+ msgid "Please provide a Zipcode and click Calculate in order to continue."
1413
+ msgstr "Пожалуйста, укажите индекс и нажмите &laquo;Посчитать&raquo; для продолжения."
1414
+
1415
+ #: themes/default/shopping_cart_page.php:112
1416
+ #: themes/iShop/shopping_cart_page.php:139
1417
+ #: themes/marketplace/shopping_cart_page.php:138
1418
+ msgid "Sorry, online ordering is unavailable to this destination and/or weight. Please double check your destination details."
1419
+ msgstr "Извините, онлайн-заказ с такими параметрами доставки и веса недоступен. Пожалуйста, перепроверьте данные о доставке."
1420
+
1421
+ #: themes/default/shopping_cart_page.php:130
1422
+ #: themes/iShop/shopping_cart_page.php:115
1423
+ #: themes/marketplace/shopping_cart_page.php:114
1424
+ #: wpsc-includes/ajax.functions.php:405
1425
+ msgid "- Choose a Shipping Rate"
1426
+ msgstr "- Выберите цену доставки"
1427
+
1428
+ #: themes/default/shopping_cart_page.php:179
1429
+ #: transaction_result_functions.php:210
1430
+ #: transaction_result_functions.php:217
1431
+ #: user-log.php:317
1432
+ #: wpsc-admin/ajax-and-init.php:1148
1433
+ #: wpsc-admin/ajax-and-init.php:1154
1434
+ msgid "Total Shipping"
1435
+ msgstr "Всего за доставку"
1436
+
1437
+ #: themes/default/shopping_cart_page.php:225
1438
+ #: themes/iShop/shopping_cart_page.php:196
1439
+ #: themes/marketplace/shopping_cart_page.php:194
1440
+ msgid "Not yet a member?"
1441
+ msgstr "Ещё не зарегистрированы?"
1442
+
1443
+ #: themes/default/shopping_cart_page.php:226
1444
+ #: themes/iShop/shopping_cart_page.php:197
1445
+ #: themes/marketplace/shopping_cart_page.php:195
1446
+ 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."
1447
+ msgstr "Чтобы делать покупки в нашем магазине, вам понадобится учётная запись. Регистрация бесплатна и проста. Нужен только логин, пароль и адрес e-mail."
1448
+
1449
+ #: themes/default/shopping_cart_page.php:240
1450
+ #: themes/iShop/shopping_cart_page.php:211
1451
+ #: themes/marketplace/shopping_cart_page.php:209
1452
+ msgid "Username"
1453
+ msgstr "Логин"
1454
+
1455
+ #: themes/default/shopping_cart_page.php:241
1456
+ #: themes/iShop/shopping_cart_page.php:212
1457
+ #: themes/marketplace/shopping_cart_page.php:210
1458
+ msgid "Password"
1459
+ msgstr "Пароль"
1460
+
1461
+ #: themes/default/shopping_cart_page.php:246
1462
+ #: themes/iShop/shopping_cart_page.php:217
1463
+ #: themes/marketplace/shopping_cart_page.php:215
1464
+ msgid "Please enter your contact details:"
1465
+ msgstr "Пожалуйста, заполните контактную информацию:"
1466
+
1467
+ #: themes/default/shopping_cart_page.php:248
1468
+ #: themes/iShop/shopping_cart_page.php:219
1469
+ #: themes/marketplace/shopping_cart_page.php:217
1470
+ msgid "Fields marked with an asterisk must be filled in."
1471
+ msgstr "Области, отмеченные звёздочкой, должны быть заполненны."
1472
+
1473
+ #: themes/default/shopping_cart_page.php:323
1474
+ #: themes/iShop/shopping_cart_page.php:294
1475
+ #: themes/marketplace/shopping_cart_page.php:292
1476
+ msgid "Select a payment gateway"
1477
+ msgstr "Выберите платёжную систему"
1478
+
1479
+ #: themes/default/shopping_cart_page.php:357
1480
+ #: themes/iShop/shopping_cart_page.php:328
1481
+ #: themes/marketplace/shopping_cart_page.php:326
1482
+ msgid "I agree to The "
1483
+ msgstr "Я принимаю "
1484
+
1485
+ #: themes/default/shopping_cart_page.php:358
1486
+ #: themes/iShop/shopping_cart_page.php:329
1487
+ #: themes/marketplace/shopping_cart_page.php:327
1488
+ #: wpsc-admin/includes/settings-pages/admin.php:107
1489
+ msgid "Terms and Conditions"
1490
+ msgstr "Соглашения и условия"
1491
+
1492
+ #: themes/default/shopping_cart_page.php:370
1493
+ #: themes/iShop/shopping_cart_page.php:341
1494
+ #: themes/marketplace/shopping_cart_page.php:339
1495
+ msgid "Make Purchase"
1496
+ msgstr "Сделать заказ"
1497
+
1498
+ #: themes/default/shopping_cart_page.php:384
1499
+ #: themes/iShop/shopping_cart_page.php:355
1500
+ #: themes/marketplace/shopping_cart_page.php:353
1501
+ #: transaction_result_functions.php:375
1502
+ msgid "Oops, there is nothing in your cart."
1503
+ msgstr "Ваша корзина пуста."
1504
+
1505
+ #: themes/default/shopping_cart_page.php:384
1506
+ #: themes/iShop/shopping_cart_page.php:355
1507
+ #: themes/marketplace/shopping_cart_page.php:353
1508
+ #: transaction_result_functions.php:375
1509
+ msgid "Please visit our shop"
1510
+ msgstr "Пожалуйста, посетите наш магазин"
1511
+
1512
+ #: themes/default/single_product.php:96
1513
+ #: themes/iShop/single_product.php:99
1514
+ #: themes/marketplace/single_product.php:101
1515
+ msgid "Personalize your product"
1516
+ msgstr "Персонализировать ваш товар"
1517
+
1518
+ #: themes/default/single_product.php:97
1519
+ #: themes/iShop/single_product.php:100
1520
+ #: themes/marketplace/single_product.php:102
1521
+ msgid "Complete this form to include a personalized message with your purchase."
1522
+ msgstr "Заполните эту форму для включения персонализированной информации в товар."
1523
+
1524
+ #: themes/default/single_product.php:104
1525
+ #: themes/iShop/single_product.php:107
1526
+ #: themes/marketplace/single_product.php:109
1527
+ msgid "Upload a File"
1528
+ msgstr "Загрузить файл"
1529
+
1530
+ #: themes/default/single_product.php:105
1531
+ #: themes/iShop/single_product.php:108
1532
+ #: themes/marketplace/single_product.php:110
1533
+ msgid "Select a file from your computer to include with this purchase. "
1534
+ msgstr "Выберите файл на вашем компьютере для включения его в товар. "
1535
+
1536
+ #: transaction_result_functions.php:35
1537
+ msgid "We&#39;re Sorry, your order has not been accepted, the most likely reason is that you have insufficient funds."
1538
+ msgstr "Мы сожалеем, но ваш заказ не был принят. Самая вероятная причина &#8212; недостаток средств."
1539
+
1540
+ #: transaction_result_functions.php:37
1541
+ msgid "New pending order"
1542
+ msgstr "Новый отложенный заказ"
1543
+
1544
+ #: transaction_result_functions.php:37
1545
+ msgid "There is a new order awaiting processing:"
1546
+ msgstr "Новый заказ ожидает обработки:"
1547
+
1548
+ #: transaction_result_functions.php:41
1549
+ #: transaction_result_functions.php:257
1550
+ #: wpsc-admin/ajax-and-init.php:1189
1551
+ msgid "Thank you, your purchase is pending, you will be sent an email once the order clears."
1552
+ msgstr "Спасибо. Ваш заказ в обработке. Когда обработка завершится, вам будет отправлено письмо."
1553
+
1554
+ #: transaction_result_functions.php:220
1555
+ #: transaction_result_functions.php:221
1556
+ #: wpsc-admin/ajax-and-init.php:1157
1557
+ #: wpsc-admin/ajax-and-init.php:1158
1558
+ msgid "Your Transaction ID"
1559
+ msgstr "ID вашей транзакции"
1560
+
1561
+ #: transaction_result_functions.php:222
1562
+ #: wpsc-admin/ajax-and-init.php:1159
1563
+ msgid "Transaction ID"
1564
+ msgstr "ID транзакции"
1565
+
1566
+ #: transaction_result_functions.php:258
1567
+ #: wpsc-admin/ajax-and-init.php:1190
1568
+ msgid "Order Pending: Payment Required"
1569
+ msgstr "Ожидание заказа: Требуется оплата"
1570
+
1571
+ #: transaction_result_functions.php:260
1572
+ #: wpsc-admin/ajax-and-init.php:1193
1573
+ #: wpsc-admin/includes/settings-pages/admin.php:128
1574
+ msgid "Purchase Receipt"
1575
+ msgstr "Чек"
1576
+
1577
+ #: transaction_result_functions.php:265
1578
+ #: user-log.php:336
1579
+ msgid "Customer Details"
1580
+ msgstr "Детали клиента"
1581
+
1582
+ #: transaction_result_functions.php:351
1583
+ msgid "Purchase Report"
1584
+ msgstr "Отчёт по оплате"
1585
+
1586
+ #: transaction_result_functions.php:367
1587
+ msgid "The Transaction was successful"
1588
+ msgstr "Транзакция осуществлена успешно"
1589
+
1590
+ #: transaction_results.php:40
1591
+ #: transaction_results.php:49
1592
+ msgid "Sorry your transaction was not accepted.<br /><a href="
1593
+ msgstr "Извините, ваша транзакция не была принята.<br /><a href="
1594
+
1595
+ #: updates/updating_tasks.php:53
1596
+ msgid ""
1597
+ "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"
1598
+ " your tracking id is: %trackid%"
1599
+ msgstr ""
1600
+ "Ваш заказ в магазине «%shop_name%» обработан. Он должен скоро прийти. Чтобы вы могли отслеживать статус заказа, вам присвоен идентификатор. \\r\\n"
1601
+ " ваш id для отслеживания заказа: %trackid%"
1602
+
1603
+ #: updates/updating_tasks.php:56
1604
+ msgid "Your Order from %shop_name% has been dispatched"
1605
+ msgstr "Ваш заказ в магазине «%shop_name%» обработан"
1606
+
1607
+ #: updates/updating_tasks.php:653
1608
+ #: updates/updating_tasks.php:660
1609
+ #: wpsc-includes/install_and_update.functions.php:163
1610
+ 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%"
1611
+ msgstr "Спасибо за совершение покупки в магазине «%shop_name%». Товары, требующие доставки, будут обработаны как можно скорее. Цифровые товары можно скачать по ссылкам на этой странице. Все цены включают налог, пересылку и упаковку (где это необходимо). Вы заказали следующие товары: %product_list%%total_shipping%%total_price%"
1612
+
1613
+ #: updates/updating_tasks.php:654
1614
+ #: updates/updating_tasks.php:667
1615
+ #: wpsc-includes/install_and_update.functions.php:164
1616
+ msgid "%product_list%%total_shipping%%total_price%"
1617
+ msgstr "%product_list%%total_shipping%%total_price%"
1618
+
1619
+ #: user-downloads.php:41
1620
+ msgid "File Names"
1621
+ msgstr "Имена файлов"
1622
+
1623
+ #: user-downloads.php:42
1624
+ msgid "Downloads Left"
1625
+ msgstr "Осталось закачек"
1626
+
1627
+ #: user-downloads.php:43
1628
+ #: user-log.php:56
1629
+ msgid "Date"
1630
+ msgstr "Дата"
1631
+
1632
+ #: user-downloads.php:69
1633
+ msgid "You have not purchased any downloadable products yet."
1634
+ msgstr "Вы не приобрели никких скачиваемых товаров пока."
1635
+
1636
+ #: user-log.php:52
1637
+ msgid "Status"
1638
+ msgstr "Статус"
1639
+
1640
+ #: user-log.php:65
1641
+ #: user-log.php:383
1642
+ msgid "Payment Method"
1643
+ msgstr "Способ оплаты"
1644
+
1645
+ #: user-log.php:94
1646
+ msgid "Details"
1647
+ msgstr "Детально"
1648
+
1649
+ #: user-log.php:147
1650
+ msgid "Order Status"
1651
+ msgstr "Статус заказа"
1652
+
1653
+ #: user-log.php:169
1654
+ #: wpsc-admin/display-sales-logs.php:188
1655
+ #: wpsc-admin/includes/display-items-functions.php:651
1656
+ msgid "Shipping Details"
1657
+ msgstr "Параметры доставки"
1658
+
1659
+ #: user-log.php:188
1660
+ msgid "Order Details"
1661
+ msgstr "Детали заказа"
1662
+
1663
+ #: user-log.php:212
1664
+ msgid "GST"
1665
+ msgstr "GST"
1666
+
1667
+ #: user-log.php:318
1668
+ msgid "Final Total"
1669
+ msgstr "Итого"
1670
+
1671
+ #: user-log.php:360
1672
+ #: wpsc-includes/install_and_update.functions.php:652
1673
+ #: wpsc-includes/install_and_update.functions.php:660
1674
+ msgid "Address"
1675
+ msgstr "Адрес"
1676
+
1677
+ #: user-log.php:384
1678
+ msgid "Purchase No."
1679
+ msgstr "Заказ №"
1680
+
1681
+ #: user-log.php:387
1682
+ msgid "Transaction Id"
1683
+ msgstr "Id транзакции"
1684
+
1685
+ #: user-log.php:401
1686
+ msgid "No transactions for this month."
1687
+ msgstr "Нет транзакций за этот месяц."
1688
+
1689
+ #: user-log.php:412
1690
+ msgid "There have not been any purchases yet."
1691
+ msgstr "Пока никаких покупок не было."
1692
+
1693
+ #: user-log.php:427
1694
+ msgid "You must be logged in to use this page. Please use the form below to login to your account."
1695
+ msgstr "Вы должны войти в систему для просмотра этой записис. Пожалуйста воспользуйтесь формой ниже, для входа."
1696
+
1697
+ #: widgets/admin_menu_widget.php:8
1698
+ #: widgets/admin_menu_widget.php:22
1699
+ msgid "Admin Menu"
1700
+ msgstr "Администрирование"
1701
+
1702
+ #: widgets/category_widget.27.php:19
1703
+ #: wpsc-admin/admin.php:104
1704
+ #: wpsc-admin/display-groups.page.php:565
1705
+ #: wpsc-admin/includes/display-items-functions.php:404
1706
+ #: wpsc-includes/category.functions.php:361
1707
+ msgid "Categories"
1708
+ msgstr "Группы"
1709
+
1710
+ #: widgets/category_widget.27.php:134
1711
+ #: widgets/category_widget.28.php:69
1712
+ #: widgets/donations_widget.php:71
1713
+ #: widgets/latest_product_widget.php:74
1714
+ #: widgets/price_range_widget.php:71
1715
+ #: widgets/product_tag_widget.php:30
1716
+ #: widgets/shopping_cart_widget.php:78
1717
+ #: widgets/specials_widget.php:103
1718
+ msgid "Title:"
1719
+ msgstr "Заголовок:"
1720
+
1721
+ #: widgets/category_widget.27.php:159
1722
+ #: widgets/category_widget.28.php:80
1723
+ msgid "Display the :category: Group"
1724
+ msgstr "Отображать группу &laquo;:category:&raquo;"
1725
+
1726
+ #: widgets/category_widget.27.php:168
1727
+ #: widgets/category_widget.28.php:88
1728
+ msgid "Display the Group thumbnails in the sidebar"
1729
+ msgstr "Отображать миниатюры групп в боковой колонке"
1730
+
1731
+ #: widgets/category_widget.27.php:179
1732
+ #: widgets/category_widget.28.php:11
1733
+ msgid "Product Grouping Widget"
1734
+ msgstr "Группы товаров Widget"
1735
+
1736
+ #: widgets/category_widget.27.php:181
1737
+ #: widgets/category_widget.28.php:12
1738
+ #: widgets/category_widget.28.php:19
1739
+ msgid "Product Categories"
1740
+ msgstr "Категории товаров"
1741
+
1742
+ #: widgets/latest_product_widget.php:7
1743
+ #: widgets/latest_product_widget.php:88
1744
+ #: widgets/latest_product_widget.php:89
1745
+ msgid "Latest Products"
1746
+ msgstr "Последние товары"
1747
+
1748
+ #: widgets/latest_product_widget.php:75
1749
+ msgid "Number of products to show:"
1750
+ msgstr "Количество отображаемых товаров:"
1751
+
1752
+ #: widgets/price_range_widget.php:6
1753
+ #: widgets/price_range_widget.php:77
1754
+ #: widgets/price_range_widget.php:78
1755
+ msgid "Price Range"
1756
+ msgstr "Диапазон цен"
1757
+
1758
+ #: widgets/price_range_widget.php:54
1759
+ msgid "Show All"
1760
+ msgstr "Показать все"
1761
+
1762
+ #: widgets/product_tag_widget.php:9
1763
+ #: widgets/product_tag_widget.php:38
1764
+ #: widgets/product_tag_widget.php:39
1765
+ #: wpsc-admin/includes/display-items-functions.php:428
1766
+ #: wpsc-admin/includes/display-items-functions.php:430
1767
+ msgid "Product Tags"
1768
+ msgstr "Метки товаров"
1769
+
1770
+ #: widgets/shopping_cart_widget.php:43
1771
+ #: widgets/shopping_cart_widget.php:48
1772
+ msgid "Loading..."
1773
+ msgstr "Загрузка..."
1774
+
1775
+ #: widgets/shopping_cart_widget.php:79
1776
+ msgid "Hide Cart When Empty:"
1777
+ msgstr "Скрыть корзину, если она пуста:"
1778
+
1779
+ #: widgets/specials_widget.php:10
1780
+ #: widgets/specials_widget.php:112
1781
+ #: widgets/specials_widget.php:113
1782
+ msgid "Product Specials"
1783
+ msgstr "Скидки на товар"
1784
+
1785
+ #: widgets/specials_widget.php:106
1786
+ msgid "Show Description:"
1787
+ msgstr "Показывать описание"
1788
+
1789
+ #: wp-shopping-cart.php:156
1790
+ msgid "Note: if this is blank, the image will not be resized"
1791
+ msgstr "Внимание: если оставить поля пустыми, размер изображения не будет изменён"
1792
+
1793
+ #: wp-shopping-cart.php:157
1794
+ #: wpsc-includes/install_and_update.functions.php:68
1795
+ msgid "Order Received"
1796
+ msgstr "Заказ получен"
1797
+
1798
+ #: wp-shopping-cart.php:159
1799
+ #: wpsc-includes/install_and_update.functions.php:71
1800
+ msgid "Closed Order"
1801
+ msgstr "Заказ закрыт"
1802
+
1803
+ #: wp-shopping-cart.php:529
1804
+ msgid "Please Note"
1805
+ msgstr "Обратите внимание"
1806
+
1807
+ #: wp-shopping-cart.php:530
1808
+ #, php-format
1809
+ msgid "Before upgrading you should check the <a %s>upgrade information</a> and changelog as you may need to make updates to your template files."
1810
+ msgstr "Перед обновлением стоит прочитать <a %s>информацию об обновлении</a> и список изменений, поскольку может потребоваться отредактировать файлы шаблонов."
1811
+
1812
+ #: wpsc-admin/admin.php:77
1813
+ #: wpsc-admin/admin.php:80
1814
+ #: wpsc-admin/admin.php:82
1815
+ #: wpsc-admin/admin.php:87
1816
+ #: wpsc-admin/admin.php:90
1817
+ msgid "Store"
1818
+ msgstr "Магазин"
1819
+
1820
+ #: wpsc-admin/admin.php:95
1821
+ #: wpsc-admin/admin.php:449
1822
+ #: wpsc-admin/admin.php:479
1823
+ #: wpsc-admin/display-sales-logs.php:32
1824
+ #: wpsc-admin/includes/purchlogs_upgrade.php:73
1825
+ msgid "Sales"
1826
+ msgstr "Продажи"
1827
+
1828
+ #: wpsc-admin/admin.php:100
1829
+ msgid "Products"
1830
+ msgstr "Товары"
1831
+
1832
+ #: wpsc-admin/admin.php:108
1833
+ msgid "Variations"
1834
+ msgstr "Вариации"
1835
+
1836
+ #: wpsc-admin/admin.php:131
1837
+ #: wpsc-admin/admin.php:133
1838
+ msgid "Marketing"
1839
+ msgstr "Маркетинг"
1840
+
1841
+ #: wpsc-admin/admin.php:140
1842
+ #: wpsc-admin/display-upgrades.page.php:61
1843
+ msgid "Upgrades"
1844
+ msgstr "Расширения"
1845
+
1846
+ #: wpsc-admin/admin.php:144
1847
+ msgid "- Debug"
1848
+ msgstr "- Отладка"
1849
+
1850
+ #: wpsc-admin/admin.php:181
1851
+ msgid "Product Tracking Email"
1852
+ msgstr "Отслеживание товара"
1853
+
1854
+ #: wpsc-admin/admin.php:182
1855
+ msgid ""
1856
+ "Track & Trace means you may track the progress of your parcel with our online parcel tracker, just login to our website and enter the following Tracking ID to view the status of your order.\n"
1857
+ "\n"
1858
+ "Tracking ID: %trackid%\n"
1859
+ msgstr ""
1860
+ "Вы можете отслеживать статус вашей посылки с помощью нашего онлайн-сервиса. Авторизуйтесь на сайте и введите ID для отслеживания, чтобы посмотреть статус вашего заказа.\n"
1861
+ "\n"
1862
+ "ID для отслеживания: %trackid%\n"
1863
+
1864
+ #: wpsc-admin/admin.php:235
1865
+ msgid "Tags used on this post:"
1866
+ msgstr "Метки, используемые для записи:"
1867
+
1868
+ #: wpsc-admin/admin.php:237
1869
+ msgid "Add new tag"
1870
+ msgstr "Добавить новую метку"
1871
+
1872
+ #: wpsc-admin/admin.php:238
1873
+ #: wpsc-admin/includes/display-items-functions.php:432
1874
+ msgid "Separate tags with commas"
1875
+ msgstr "Метки разделяются запятыми"
1876
+
1877
+ #: wpsc-admin/admin.php:348
1878
+ msgid "Text"
1879
+ msgstr "Текст"
1880
+
1881
+ #: wpsc-admin/admin.php:351
1882
+ msgid "Textarea"
1883
+ msgstr "Поле ввода текста"
1884
+
1885
+ #: wpsc-admin/admin.php:352
1886
+ msgid "Heading"
1887
+ msgstr "Заголовок"
1888
+
1889
+ #: wpsc-admin/admin.php:353
1890
+ msgid "Coupon"
1891
+ msgstr "Купон"
1892
+
1893
+ #: wpsc-admin/admin.php:358
1894
+ #: wpsc-admin/includes/display-items-functions.php:1079
1895
+ msgid "Label"
1896
+ msgstr "Метка"
1897
+
1898
+ #: wpsc-admin/admin.php:359
1899
+ #: wpsc-admin/includes/display-items-functions.php:1083
1900
+ msgid "Label Description"
1901
+ msgstr "Описание метки"
1902
+
1903
+ #: wpsc-admin/admin.php:360
1904
+ #: wpsc-admin/includes/display-items-functions.php:1091
1905
+ msgid "Item Number"
1906
+ msgstr "Количество штук"
1907
+
1908
+ #: wpsc-admin/admin.php:361
1909
+ #: wpsc-admin/includes/display-items-functions.php:1087
1910
+ msgid "Life Number"
1911
+ msgstr "Время жизни"
1912
+
1913
+ #: wpsc-admin/admin.php:362
1914
+ #: wpsc-admin/includes/display-items-functions.php:1095
1915
+ msgid "Product Code"
1916
+ msgstr "Код продукта"
1917
+
1918
+ #: wpsc-admin/admin.php:363
1919
+ #: wpsc-admin/includes/display-items-functions.php:1099
1920
+ msgid "PDF"
1921
+ msgstr "PDF"
1922
+
1923
+ #: wpsc-admin/admin.php:436
1924
+ #: wpsc-admin/display-sales-logs.php:359
1925
+ msgid "Last 30 Days"
1926
+ msgstr "Последние 30 дней"
1927
+
1928
+ #: wpsc-admin/admin.php:455
1929
+ #: wpsc-admin/admin.php:485
1930
+ msgid "Orders"
1931
+ msgstr "Заказы"
1932
+
1933
+ #: wpsc-admin/admin.php:465
1934
+ #: wpsc-admin/admin.php:497
1935
+ msgid "Avg Orders"
1936
+ msgstr "Среднее заказов"
1937
+
1938
+ #: wpsc-admin/admin.php:475
1939
+ #: wpsc-admin/display-sales-logs.php:372
1940
+ msgid "Life Time"
1941
+ msgstr "Время жизни"
1942
+
1943
+ #: wpsc-admin/admin.php:518
1944
+ #: wpsc-admin/admin.php:746
1945
+ msgid "e-Commerce"
1946
+ msgstr "e-Commerce"
1947
+
1948
+ #: wpsc-admin/admin.php:535
1949
+ msgid "E-Commerce"
1950
+ msgstr "E-Commerce"
1951
+
1952
+ #: wpsc-admin/admin.php:652
1953
+ msgid "Sales by Quarter"
1954
+ msgstr "Продажи по кварталам"
1955
+
1956
+ #: wpsc-admin/admin.php:738
1957
+ msgid "Sales by"
1958
+ msgstr "Продажи за"
1959
+
1960
+ #: wpsc-admin/admin.php:781
1961
+ 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."
1962
+ msgstr "На вашей странице товаров сейчас не отображается ни один товар. Нужно выбрать группу товаров для отображения по умолчанию. <br /> Это настраивается на странице &laquo;Параметры&raquo;."
1963
+
1964
+ #: wpsc-admin/ajax-and-init.php:767
1965
+ #: wpsc-admin/display-variations.page.php:145
1966
+ msgid "Edit Variation Set"
1967
+ msgstr "Редактировать вариацию"
1968
+
1969
+ #: wpsc-admin/ajax-and-init.php:990
1970
+ msgid "Your Order"
1971
+ msgstr "Ваш заказ"
1972
+
1973
+ #: wpsc-admin/ajax-and-init.php:1111
1974
+ #: wpsc-admin/ajax-and-init.php:1112
1975
+ #: wpsc-admin/includes/display-items-functions.php:1035
1976
+ msgid "Click to download"
1977
+ msgstr "Нажмите, чтобы скачать"
1978
+
1979
+ #: wpsc-admin/ajax-and-init.php:1237
1980
+ msgid "The administrator has unlocked your file"
1981
+ msgstr "Администратор разблокировал ваш файл"
1982
+
1983
+ #: wpsc-admin/ajax-and-init.php:1237
1984
+ 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."
1985
+ msgstr ""
1986
+ "Уважаемый покупатель,\n"
1987
+ "\n"
1988
+ "Мы с радостью сообщаем, что ваш заказ обновлён, и ссылки теперь активны.\n"
1989
+ "Пожалуйста, скачайте вашу покупку по приведённым ниже ссылкам.\n"
1990
+ "[download_links]\n"
1991
+ "\n"
1992
+ "Спасибо за покупку!"
1993
+
1994
+ #: wpsc-admin/display-groups.page.php:41
1995
+ msgid "Select the markets you are selling this category to."
1996
+ msgstr "Выберите рынки, которым вы продаёте эту категорию."
1997
+
1998
+ #: wpsc-admin/display-groups.page.php:236
1999
+ msgid "The item has been added"
2000
+ msgstr "Элемент добавлен"
2001
+
2002
+ #: wpsc-admin/display-groups.page.php:238
2003
+ #: wpsc-admin/display-groups.page.php:244
2004
+ msgid "The item has not been added"
2005
+ msgstr "Элемент не добавлен"
2006
+
2007
+ #: wpsc-admin/display-groups.page.php:469
2008
+ msgid "The product group has been edited."
2009
+ msgstr "Группа товаров изменена."
2010
+
2011
+ #: wpsc-admin/display-groups.page.php:474
2012
+ msgid "The group has been added."
2013
+ msgstr "Группа добавлена."
2014
+
2015
+ #: wpsc-admin/display-groups.page.php:486
2016
+ msgid "The group has been edited."
2017
+ msgstr "Группа изменена."
2018
+
2019
+ #: wpsc-admin/display-groups.page.php:542
2020
+ msgid "Are you sure you want to delete this category? If the category has any subcategories, they will be deleted too."
2021
+ msgstr "Вы уверены, что хотите удалить эту категорию? Если у неё есть подкатегории, они также будут удалены."
2022
+
2023
+ #: wpsc-admin/display-groups.page.php:550
2024
+ msgid "Are you sure you want to delete this product group? All categories it contains will be deleted too."
2025
+ msgstr "Вы уверены, что хотите удалить эту группу? Все категории, которые она содержит, также будут удалены."
2026
+
2027
+ #: wpsc-admin/display-groups.page.php:573
2028
+ 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."
2029
+ msgstr "Группы помогают вашим клиентам находить товары. Например, если вы продаёте шляпы и брюки &#8212; можно создать группу &laquo;Одежда&raquo; и добавить в неё категории &laquo;Шляпы&raquo; и &laquo;Брюки&raquo;."
2030
+
2031
+ #: wpsc-admin/display-groups.page.php:588
2032
+ msgid "Select a Group to Manage"
2033
+ msgstr "Выберите группу"
2034
+
2035
+ #: wpsc-admin/display-groups.page.php:606
2036
+ msgid "or"
2037
+ msgstr "или"
2038
+
2039
+ #: wpsc-admin/display-groups.page.php:608
2040
+ #: wpsc-admin/display-groups.page.php:625
2041
+ msgid "Add New Group"
2042
+ msgstr "Добавить новую группу"
2043
+
2044
+ #: wpsc-admin/display-groups.page.php:649
2045
+ msgid "Edit Group"
2046
+ msgstr "Редактировать группу"
2047
+
2048
+ #: wpsc-admin/display-groups.page.php:684
2049
+ msgid "&quot;[categorisation]&quot; Group"
2050
+ msgstr "Группа &laquo;[categorisation]&raquo;"
2051
+
2052
+ #: wpsc-admin/display-groups.page.php:694
2053
+ msgid "Image"
2054
+ msgstr "Изображение"
2055
+
2056
+ #: wpsc-admin/display-groups.page.php:717
2057
+ msgid "You are editing the &quot;[categorisation]&quot; Group"
2058
+ msgstr "Вы редактируете группу &laquo;[categorisation]&raquo;"
2059
+
2060
+ #: wpsc-admin/display-groups.page.php:738
2061
+ #: wpsc-admin/display-groups.page.php:742
2062
+ msgid "You are editing an item in the &quot;[categorisation]&quot; Group"
2063
+ msgstr "Вы редактируете элемент группы &laquo;[categorisation]&raquo;"
2064
+
2065
+ #: wpsc-admin/display-groups.page.php:741
2066
+ msgid "Edit Details"
2067
+ msgstr "Редактировать описание"
2068
+
2069
+ #: wpsc-admin/display-groups.page.php:757
2070
+ #: wpsc-admin/display-groups.page.php:920
2071
+ msgid "Add Category"
2072
+ msgstr "Добавить категорию"
2073
+
2074
+ #: wpsc-admin/display-groups.page.php:760
2075
+ msgid "Adding a new category here will make it available when you add or edit a product."
2076
+ msgstr "После создания новой категории её можно выбрать при добавлении или редактировании товара."
2077
+
2078
+ #: wpsc-admin/display-groups.page.php:766
2079
+ #: wpsc-admin/display-groups.page.php:769
2080
+ msgid "You are adding a new item to the &quot;[categorisation]&quot; Group"
2081
+ msgstr "Вы добавляете новый элемент в группу &laquo;[categorisation]&raquo;"
2082
+
2083
+ #: wpsc-admin/display-groups.page.php:791
2084
+ msgid "Group Parent"
2085
+ msgstr "Родительская категория"
2086
+
2087
+ #: wpsc-admin/display-groups.page.php:799
2088
+ msgid "Group&nbsp;Image"
2089
+ msgstr "Изображение&nbsp;группы"
2090
+
2091
+ #: wpsc-admin/display-items.page.php:29
2092
+ msgid "Display Products"
2093
+ msgstr "Товары"
2094
+
2095
+ #: wpsc-admin/display-items.page.php:49
2096
+ #: wpsc-admin/display-items.page.php:54
2097
+ #, php-format
2098
+ msgid "%s product updated."
2099
+ msgid_plural "%s products updated."
2100
+ msgstr[0] "%s товар обновлён."
2101
+ msgstr[1] "%s товара обновлены."
2102
+ msgstr[2] "%s товаров обновлены."
2103
+
2104
+ #: wpsc-admin/display-items.page.php:63
2105
+ #, php-format
2106
+ msgid "Product deleted."
2107
+ msgid_plural "%s products deleted."
2108
+ msgstr[0] "%s товар удалён."
2109
+ msgstr[1] "%s товара удалены."
2110
+ msgstr[2] "%s товаров удалены."
2111
+
2112
+ #: wpsc-admin/display-items.page.php:68
2113
+ #, php-format
2114
+ msgid "Product duplicated."
2115
+ msgid_plural "%s products duplicated."
2116
+ msgstr[0] "%s товар скопирован."
2117
+ msgstr[1] "%s товара скопированы."
2118
+ msgstr[2] "%s товаров скопированы."
2119
+
2120
+ #: wpsc-admin/display-items.page.php:74
2121
+ #: wpsc-admin/display-variations.page.php:49
2122
+ msgid "Product updated."
2123
+ msgstr "Товар обновлён."
2124
+
2125
+ #: wpsc-admin/display-items.page.php:114
2126
+ 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."
2127
+ msgstr "Следующие каталоги недоступны для записи: :directory: Вы не сможете загрузить файлы или изображения. Чтобы разрешить запись в эти каталоги, нужно установить на них соответствующие права."
2128
+
2129
+ #: wpsc-admin/display-items.page.php:147
2130
+ msgid ""
2131
+ "You are about to delete the selected products.\n"
2132
+ " 'Cancel' to stop, 'OK' to delete."
2133
+ msgstr ""
2134
+ "Вы собираетесь удалить выбранные товары.\n"
2135
+ " «Отмена» — оставить, «ОК — удалить."
2136
+
2137
+ #: wpsc-admin/display-items.page.php:232
2138
+ msgid "&laquo;"
2139
+ msgstr "&laquo;"
2140
+
2141
+ #: wpsc-admin/display-items.page.php:233
2142
+ msgid "&raquo;"
2143
+ msgstr "&raquo;"
2144
+
2145
+ #: wpsc-admin/display-items.page.php:271
2146
+ msgid "Search"
2147
+ msgstr "Поиск"
2148
+
2149
+ #: wpsc-admin/display-items.page.php:276
2150
+ #: wpsc-admin/display-sales-logs.php:419
2151
+ msgid "Bulk Actions"
2152
+ msgstr "Действия"
2153
+
2154
+ #: wpsc-admin/display-items.page.php:278
2155
+ #: wpsc-admin/display-items.page.php:426
2156
+ #: wpsc-admin/includes/display-items-functions.php:823
2157
+ msgid "Publish"
2158
+ msgstr "Опубликовать"
2159
+
2160
+ #: wpsc-admin/display-items.page.php:279
2161
+ #: wpsc-admin/display-items.page.php:366
2162
+ msgid "Draft"
2163
+ msgstr "Черновик"
2164
+
2165
+ #: wpsc-admin/display-items.page.php:283
2166
+ #: wpsc-admin/display-sales-logs.php:428
2167
+ msgid "Apply"
2168
+ msgstr "Применить"
2169
+
2170
+ #: wpsc-admin/display-items.page.php:319
2171
+ msgid "No Name"
2172
+ msgstr "Нет имени"
2173
+
2174
+ #: wpsc-admin/display-items.page.php:397
2175
+ #: wpsc-admin/includes/display-items-functions.php:351
2176
+ msgid "Delete this product"
2177
+ msgstr "Удалить товар"
2178
+
2179
+ #: wpsc-admin/display-items.page.php:399
2180
+ #: wpsc-admin/includes/display-items-functions.php:351
2181
+ #, php-format
2182
+ msgid ""
2183
+ "You are about to delete this product '%s'\n"
2184
+ " 'Cancel' to stop, 'OK' to delete."
2185
+ msgstr ""
2186
+ "Вы собираетесь удалить товар «%s»\n"
2187
+ " «Отмена» — оставить, «ОК» — удалить."
2188
+
2189
+ #: wpsc-admin/display-items.page.php:424
2190
+ msgid "Unpublish"
2191
+ msgstr "Убрать"
2192
+
2193
+ #: wpsc-admin/display-items.page.php:453
2194
+ msgid "You have no products added."
2195
+ msgstr "Вы не добавили товары."
2196
+
2197
+ #: wpsc-admin/display-items.page.php:470
2198
+ msgid "View All Categories"
2199
+ msgstr "Все категории"
2200
+
2201
+ #: wpsc-admin/display-options-settings.page.php:18
2202
+ msgid "It looks like your wp-e-commerce theme files are out of date, this can cause potential problems with some gateways and the appearances of the front end of your shop. <br /><strong>We recommend you download the latest version of wp-e-commerce unzip it, and copy the new themes folder into your 'uploads/wpsc/themes' folder on your site. Or port your changes across.</strong>"
2203
+ msgstr "Похоже, что файлы темы WP e-Commerce устарели. Это может вызвать проблемы с некоторыми шлюзами и лицевой частью вашего магазина. <br /><strong>Рекомендуем вам скачать свежую версию WP e-Commerce, разархивировать её и скопировать новый каталог тем в директорию &laquo;uploads/wpsc/themes&raquo; на вашем сайте. Либо вновь сделать свои изменения.</strong>"
2204
+
2205
+ #: wpsc-admin/display-options-settings.page.php:44
2206
+ msgid "Thanks, your thumbnail images have been resized."
2207
+ msgstr "Спасибо, размеры миниатюр изменены."
2208
+
2209
+ #: wpsc-admin/display-options-settings.page.php:99
2210
+ msgid "General"
2211
+ msgstr "Общие"
2212
+
2213
+ #: wpsc-admin/display-options-settings.page.php:100
2214
+ msgid "Presentation"
2215
+ msgstr "Отображение"
2216
+
2217
+ #: wpsc-admin/display-options-settings.page.php:101
2218
+ msgid "Admin"
2219
+ msgstr "Администрирование"
2220
+
2221
+ #: wpsc-admin/display-options-settings.page.php:103
2222
+ msgid "Payment Options"
2223
+ msgstr "Настройки оплаты"
2224
+
2225
+ #: wpsc-admin/display-options-settings.page.php:104
2226
+ msgid "Import"
2227
+ msgstr "Импорт"
2228
+
2229
+ #: wpsc-admin/display-options-settings.page.php:105
2230
+ #: wpsc-includes/install_and_update.functions.php:213
2231
+ msgid "Checkout"
2232
+ msgstr "Заказ"
2233
+
2234
+ #: wpsc-admin/display-options-settings.page.php:176
2235
+ msgid "To configure a shipping module select one on the left."
2236
+ msgstr "Выберите модуль ниже для настройки его."
2237
+
2238
+ #: wpsc-admin/display-options-settings.page.php:186
2239
+ #, php-format
2240
+ msgid " Setting Options Updated. "
2241
+ msgid_plural " %s Settings Options Updated. "
2242
+ msgstr[0] " %s настройка обновлена."
2243
+ msgstr[1] " %s настройки обновлены."
2244
+ msgstr[2] " %s настроек обновлены."
2245
+
2246
+ #: wpsc-admin/display-options-settings.page.php:191
2247
+ #, php-format
2248
+ msgid "%s Setting Option deleted. "
2249
+ msgid_plural "%s Setting Option deleted. "
2250
+ msgstr[0] " %s настройка удалена."
2251
+ msgstr[1] " %s настройки удалены."
2252
+ msgstr[2] " %s настроек удалены."
2253
+
2254
+ #: wpsc-admin/display-options-settings.page.php:195
2255
+ msgid " Shipping Option Updated."
2256
+ msgid_plural " Shipping Option Updated."
2257
+ msgstr[0] "Настройки доставки обновлены."
2258
+ msgstr[1] "Настройки доставки обновлены."
2259
+ msgstr[2] "Настройки доставки обновлены."
2260
+
2261
+ #: wpsc-admin/display-options-settings.page.php:199
2262
+ #, php-format
2263
+ msgid "%s Checkout Field Added."
2264
+ msgid_plural "%s Checkout Fields Added."
2265
+ msgstr[0] "%s поле формы заказа добавлено."
2266
+ msgstr[1] "%s поля формы заказа добавлены."
2267
+ msgstr[2] "%s полей формы заказа добавлены."
2268
+
2269
+ #: wpsc-admin/display-sales-logs.php:65
2270
+ #, php-format
2271
+ msgid "%s Purchase Log updated."
2272
+ msgid_plural "%s Purchase Logs updated."
2273
+ msgstr[0] "%s журнал покупок обновлён."
2274
+ msgstr[1] "%s журнала покупок обновлены."
2275
+ msgstr[2] "%s журналов покупок обновлены."
2276
+
2277
+ #: wpsc-admin/display-sales-logs.php:73
2278
+ #, php-format
2279
+ msgid "%s product not updated, somebody is editing it."
2280
+ msgid_plural "%s products not updated, somebody is editing them."
2281
+ msgstr[0] "%s товар не обновлён, кто-то его редактирует."
2282
+ msgstr[1] "%s товара не обновлены, кто-то их редактирует."
2283
+ msgstr[2] "%s товаров не обновлены, кто-то их редактирует."
2284
+
2285
+ #: wpsc-admin/display-sales-logs.php:78
2286
+ #, php-format
2287
+ msgid "%s Purchase Log deleted."
2288
+ msgid_plural "%s Purchase Logs deleted."
2289
+ msgstr[0] "%s журнал покупок удалён."
2290
+ msgstr[1] "%s журнала покупок удалены."
2291
+ msgstr[2] "%s журналов покупок удалены."
2292
+
2293
+ #: wpsc-admin/display-sales-logs.php:88
2294
+ 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 "
2295
+ msgstr "При обновлении плагина WP e-Commerce 3.6.* до 3.7 необходимо проассоциировать поля формы заказа с новой системой журналов покупок. Чтобы сделать это, "
2296
+
2297
+ #: wpsc-admin/display-sales-logs.php:114
2298
+ msgid "GetShopped News"
2299
+ msgstr "Новости GetShopped"
2300
+
2301
+ #: wpsc-admin/display-sales-logs.php:151
2302
+ msgid "Downloads for this log have been released."
2303
+ msgid_plural "Downloads for this log have been released."
2304
+ msgstr[0] "Ссылки для этого журнала разблокированы."
2305
+ msgstr[1] "Ссылки для этого журнала разблокированы."
2306
+ msgstr[2] "Ссылки для этого журнала разблокированы."
2307
+
2308
+ #: wpsc-admin/display-sales-logs.php:155
2309
+ msgid "Receipt has been resent "
2310
+ msgid_plural "Receipt has been resent "
2311
+ msgstr[0] "Квитанция отправлена повторно"
2312
+ msgstr[1] "Квитанция отправлена повторно"
2313
+ msgstr[2] "Квитанция отправлена повторно"
2314
+
2315
+ #: wpsc-admin/display-sales-logs.php:196
2316
+ #: wpsc-admin/includes/settings-pages/shipping.php:46
2317
+ msgid "Shipping Options"
2318
+ msgstr "Натройки доставки"
2319
+
2320
+ #: wpsc-admin/display-sales-logs.php:199
2321
+ msgid "Shipping Method:"
2322
+ msgstr "Метод доставки:"
2323
+
2324
+ #: wpsc-admin/display-sales-logs.php:200
2325
+ msgid "Shipping Option:"
2326
+ msgstr "Вариант доставки:"
2327
+
2328
+ #: wpsc-admin/display-sales-logs.php:202
2329
+ msgid "Tracking ID:"
2330
+ msgstr "ID для отслеживания:"
2331
+
2332
+ #: wpsc-admin/display-sales-logs.php:203
2333
+ msgid "Shipping Status:"
2334
+ msgstr "Статус доставки:"
2335
+
2336
+ #: wpsc-admin/display-sales-logs.php:204
2337
+ msgid "Track History:"
2338
+ msgstr "История отслеживания:"
2339
+
2340
+ #: wpsc-admin/display-sales-logs.php:210
2341
+ msgid "Billing Details"
2342
+ msgstr "Детали биллинга"
2343
+
2344
+ #: wpsc-admin/display-sales-logs.php:211
2345
+ msgid "Purchase Log Date:"
2346
+ msgstr "Дата журнала покупок:"
2347
+
2348
+ #: wpsc-admin/display-sales-logs.php:212
2349
+ msgid "Purchase Number:"
2350
+ msgstr "Номер покупки:"
2351
+
2352
+ #: wpsc-admin/display-sales-logs.php:213
2353
+ msgid "Buyers Name:"
2354
+ msgstr "Имя клиента:"
2355
+
2356
+ #: wpsc-admin/display-sales-logs.php:214
2357
+ msgid "Address:"
2358
+ msgstr "Адрес:"
2359
+
2360
+ #: wpsc-admin/display-sales-logs.php:216
2361
+ msgid "Phone:"
2362
+ msgstr "Телефон:"
2363
+
2364
+ #: wpsc-admin/display-sales-logs.php:217
2365
+ msgid "Email:"
2366
+ msgstr "E-mail:"
2367
+
2368
+ #: wpsc-admin/display-sales-logs.php:218
2369
+ msgid "Payment Method:"
2370
+ msgstr "Способ оплаты:"
2371
+
2372
+ #: wpsc-admin/display-sales-logs.php:220
2373
+ msgid "How User Found Us:"
2374
+ msgstr "Как клиент нас нашёл:"
2375
+
2376
+ #: wpsc-admin/display-sales-logs.php:226
2377
+ msgid "Items Ordered"
2378
+ msgstr "Заказанные товары"
2379
+
2380
+ #: wpsc-admin/display-sales-logs.php:268
2381
+ msgid "Order Status:"
2382
+ msgstr "Статус заказа:"
2383
+
2384
+ #: wpsc-admin/display-sales-logs.php:288
2385
+ msgid "Actions"
2386
+ msgstr "Действия"
2387
+
2388
+ #: wpsc-admin/display-sales-logs.php:293
2389
+ msgid "View Packing Slip"
2390
+ msgstr "Вид упаковочного купона"
2391
+
2392
+ #: wpsc-admin/display-sales-logs.php:295
2393
+ msgid "Resend Receipt to Buyer"
2394
+ msgstr "Отправить повторно заказ покупателю"
2395
+
2396
+ #: wpsc-admin/display-sales-logs.php:297
2397
+ #: wpsc-admin/display-sales-logs.php:550
2398
+ msgid "Delete this log"
2399
+ msgstr "Удалить этот журнал"
2400
+
2401
+ #: wpsc-admin/display-sales-logs.php:297
2402
+ #: wpsc-admin/display-sales-logs.php:550
2403
+ #, php-format
2404
+ msgid ""
2405
+ "You are about to delete this log '%s'\n"
2406
+ " 'Cancel' to stop, 'OK' to delete."
2407
+ msgstr ""
2408
+ "Вы собираетесь удалить журнал «%s»\n"
2409
+ " «Отмена» — оставить, «ОК» — удалить."
2410
+
2411
+ #: wpsc-admin/display-sales-logs.php:297
2412
+ msgid "Remove this record"
2413
+ msgstr "Удалить эту запись с лога покупок"
2414
+
2415
+ #: wpsc-admin/display-sales-logs.php:299
2416
+ msgid "Go Back"
2417
+ msgstr "Возврат"
2418
+
2419
+ #: wpsc-admin/display-sales-logs.php:314
2420
+ msgid "e-Commerce Admin Menu"
2421
+ msgstr "Администрирование e-Commerce"
2422
+
2423
+ #: wpsc-admin/display-sales-logs.php:333
2424
+ msgid "WP e-Commerce News"
2425
+ msgstr "Новости e-Commerce"
2426
+
2427
+ #: wpsc-admin/display-sales-logs.php:355
2428
+ msgid "Order Summary"
2429
+ msgstr "Итог заказа"
2430
+
2431
+ #: wpsc-admin/display-sales-logs.php:367
2432
+ msgid "(accepted payments)"
2433
+ msgstr "(полученных оплат)"
2434
+
2435
+ #: wpsc-admin/display-sales-logs.php:382
2436
+ msgid "Subscribe to your orders"
2437
+ msgstr "Подписаться на ваши заказы"
2438
+
2439
+ #: wpsc-admin/display-sales-logs.php:384
2440
+ msgid "Subscribe to an RSS feed"
2441
+ msgstr "Подписаться на RSS feed"
2442
+
2443
+ #: wpsc-admin/display-sales-logs.php:384
2444
+ msgid "of your orders"
2445
+ msgstr "ваших заказов"
2446
+
2447
+ #: wpsc-admin/display-sales-logs.php:387
2448
+ msgid "Plugin News"
2449
+ msgstr "Новости плагина"
2450
+
2451
+ #: wpsc-admin/display-sales-logs.php:389
2452
+ 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. "
2453
+ msgstr "Модуль <a href=\"http://instinct.co.nz/blogshop/products-page/\" target=\"_blank\">WP DropShop</a> &#8212; самая свежая и совеременная из доступных корзин. Объедините её с модулем GridView, и о вашем сайте станут говорить везде! <br/><br/><a href=\"http://instinct.co.nz/blogshop/products-page/\" target=\"_blank\">Модуль GridView</a> &#8212; это визуальный модуль, созданный для улучшения внешнего вида страниц с вашими товарами.<br/><br/><a href=\"http://www.instinct.co.nz/wp-campaign-monitor/100\">WP Campaign Monitor</a> &#8212; это инструмент организации рассылок, созданный для пользователей, которые хотят рассылать кампании, отслеживать результаты и управлять подписчиками. Последняя версия интегрируется в e-commerce lite, что позволяет отправлять рассылки покупателям и многое другое. "
2454
+
2455
+ #: wpsc-admin/display-sales-logs.php:390
2456
+ msgid "This shop is powered by "
2457
+ msgstr "Этот магазин создан с помощью "
2458
+
2459
+ #: wpsc-admin/display-sales-logs.php:399
2460
+ msgid "Upgrade to Gold"
2461
+ msgstr "Установить &laquo;Золотую корзину&raquo;"
2462
+
2463
+ #: wpsc-admin/display-sales-logs.php:399
2464
+ msgid " and unleash more functionality into your shop."
2465
+ msgstr " и добавить вашему магазину функциональности."
2466
+
2467
+ #: wpsc-admin/display-sales-logs.php:430
2468
+ msgid "View:"
2469
+ msgstr "Посмотреть:"
2470
+
2471
+ #: wpsc-admin/display-sales-logs.php:468
2472
+ msgid "Filter"
2473
+ msgstr "Фильтр"
2474
+
2475
+ #: wpsc-admin/display-sales-logs.php:471
2476
+ msgid "Oops there are no purchase logs for your selection, please try again."
2477
+ msgstr "Вы не выбрали журналы покупок. Пожалуйста, попробуйте ещё раз."
2478
+
2479
+ #: wpsc-admin/display-sales-logs.php:491
2480
+ msgid "Total:"
2481
+ msgstr "Всего:"
2482
+
2483
+ #: wpsc-admin/display-sales-logs.php:503
2484
+ msgid "Download CSV"
2485
+ msgstr "Скачать CSV"
2486
+
2487
+ #: wpsc-admin/display-sales-logs.php:512
2488
+ msgid ""
2489
+ "You are about to delete the selected purchase logs.\n"
2490
+ " 'Cancel' to stop, 'OK' to delete."
2491
+ msgstr ""
2492
+ "Вы собираетесь удалить выбранные журналы покупок.\n"
2493
+ " «Отмена» — оставить, «ОК» — удалить."
2494
+
2495
+ #: wpsc-admin/display-sales-logs.php:578
2496
+ msgid "Search Logs"
2497
+ msgstr "Поиск журналов"
2498
+
2499
+ #: wpsc-admin/display-upgrades.page.php:12
2500
+ msgid "WP e-Commerce Upgrades"
2501
+ msgstr "Обновления e-Commerce"
2502
+
2503
+ #: wpsc-admin/display-upgrades.page.php:13
2504
+ msgid "Add more functionality to your e-Commerce site. Prices may be subject to change."
2505
+ msgstr "Добавьте функциональности вашему магазину. Цены могут меняться без уведомления."
2506
+
2507
+ #: wpsc-admin/display-upgrades.page.php:19
2508
+ msgid "Pure Gold"
2509
+ msgstr "&laquo;Чистое золото&raquo;"
2510
+
2511
+ #: wpsc-admin/display-upgrades.page.php:26
2512
+ #: wpsc-admin/includes/settings-pages/presentation.php:671
2513
+ #: wpsc-admin/includes/settings-pages/presentation.php:675
2514
+ msgid "DropShop"
2515
+ msgstr "DropShop"
2516
+
2517
+ #: wpsc-admin/display-upgrades.page.php:33
2518
+ msgid "MP3 Player"
2519
+ msgstr "MP3-плеер"
2520
+
2521
+ #: wpsc-admin/display-upgrades.page.php:40
2522
+ msgid "Members Only Module"
2523
+ msgstr "Настройки активации: Модуль для зарегистрированных"
2524
+
2525
+ #: wpsc-admin/display-upgrades.page.php:54
2526
+ msgid "NextGen Gallery Buy Now Buttons"
2527
+ msgstr "Кнопки &laquo;Купить сейчас&raquo; для галереи NextGen"
2528
+
2529
+ #: wpsc-admin/display-upgrades.page.php:78
2530
+ #: wpsc-admin/display-upgrades.page.php:86
2531
+ msgid "API Key Reset"
2532
+ msgstr "Сброс API-ключа"
2533
+
2534
+ #: wpsc-admin/display-upgrades.page.php:81
2535
+ msgid "Enter your API name and key to release it from an old site that you no longer use."
2536
+ msgstr "Введите ваш API-логин и ключ, чтобы открепить его от старого сайта, который вы уже не используете."
2537
+
2538
+ #: wpsc-admin/display-upgrades.page.php:92
2539
+ msgid "API Key"
2540
+ msgstr "API-ключ"
2541
+
2542
+ #: wpsc-admin/display-upgrades.page.php:97
2543
+ msgid "Reset API Key"
2544
+ msgstr "Сбросить API-ключ"
2545
+
2546
+ #: wpsc-admin/display-upgrades.page.php:106
2547
+ msgid "Upgrade Instructions"
2548
+ msgstr "Инструкция по расширению"
2549
+
2550
+ #: wpsc-admin/display-upgrades.page.php:109
2551
+ #, php-format
2552
+ msgid "If your gold cart files are called 'gold_cart_files': Copy the gold_cart_files directory into the %s folder."
2553
+ msgstr "Если файлы вашей &laquo;Золотой корзины&raquo; находятся в &laquo;gold_cart_files&raquo;, скопируйте директорию &laquo;gold_cart_files&raquo; в каталог %s."
2554
+
2555
+ #: wpsc-admin/display-upgrades.page.php:112
2556
+ 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."
2557
+ msgstr "Этот каталог должен появиться автоматически при активации плагина e-Commerce. Если этого не произошло, нужно создать его вручную."
2558
+
2559
+ #: wpsc-admin/display-upgrades.page.php:115
2560
+ #, php-format
2561
+ msgid "Otherwise If your gold cart files are called 'gold_cart_files_plugin': Copy the gold_cart_files_plugin directory into the %s folder."
2562
+ msgstr "Если же файлы вашей &laquo;Золотой корзины&raquo; находятся в &laquo;gold_cart_files_plugin&raquo;, скопируйте директорию &laquo;gold_cart_files_plugin&raquo; в каталог %s."
2563
+
2564
+ #: wpsc-admin/display-upgrades.page.php:118
2565
+ msgid "You can find more information on installing Gold Cart in your readme.txt inside the gold cart folder. "
2566
+ msgstr "Дополнительную информацию по установке &laquo;Золотой корзины&raquo; можно найти в файле readme.txt в каталоге корзины. "
2567
+
2568
+ #: wpsc-admin/display-upgrades.page.php:122
2569
+ msgid "Once you have done the above a new panel should appear on the Upgrades page where you must enter your API Username and API Key. "
2570
+ msgstr "После выполнения этих шагов на странице &laquo;Расширения&raquo; должна появиться новая панель, в которой нужно ввести API-логин и ключ."
2571
+
2572
+ #: wpsc-admin/display-upgrades.page.php:126
2573
+ msgid "For more information visit our documentation page."
2574
+ msgstr "За дополнительной информацией обратитесь к нашей документации."
2575
+
2576
+ #: wpsc-admin/display-upgrades.page.php:170
2577
+ msgid "Your API key has been Reset"
2578
+ msgstr "Ваш API-ключ сброшен"
2579
+
2580
+ #: wpsc-admin/display-variations.page.php:21
2581
+ msgid "Are you sure you want to delete this product?"
2582
+ msgstr "Вы уверены, что хотите удалить этот товар?"
2583
+
2584
+ #: wpsc-admin/display-variations.page.php:37
2585
+ #: wpsc-admin/includes/settings-pages/presentation.php:392
2586
+ msgid "Display Variations"
2587
+ msgstr "Вариации отображения"
2588
+
2589
+ #: wpsc-admin/display-variations.page.php:39
2590
+ 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..."
2591
+ msgstr "Вариации &#8212; это изменяемые свойства товара, такие как размер, цвет и т.д. <br />Например, если вы продаёте футболки, можно создать вариацию &laquo;Размер&raquo; со значениями M, L, X, XL..."
2592
+
2593
+ #: wpsc-admin/display-variations.page.php:149
2594
+ #: wpsc-admin/includes/display-items-functions.php:613
2595
+ msgid "Add Variation Set"
2596
+ msgstr "Добавить вариацию"
2597
+
2598
+ #: wpsc-admin/display-variations.page.php:199
2599
+ msgid "Add Value"
2600
+ msgstr "Добавить значение"
2601
+
2602
+ #: wpsc-admin/display-variations.page.php:212
2603
+ msgid "Update Variations"
2604
+ msgstr "Обновить вариации"
2605
+
2606
+ #: wpsc-admin/includes/display-items-functions.php:137
2607
+ msgid "Edit Product"
2608
+ msgstr "Редактировать товар"
2609
+
2610
+ #: wpsc-admin/includes/display-items-functions.php:148
2611
+ msgid "Product Name"
2612
+ msgstr "Имя товара"
2613
+
2614
+ #: wpsc-admin/includes/display-items-functions.php:157
2615
+ msgid "Display Product Shortcode"
2616
+ msgstr "Код отображения товара"
2617
+
2618
+ #: wpsc-admin/includes/display-items-functions.php:158
2619
+ msgid "Buy Now Shortcode"
2620
+ msgstr "Код &laquo;Купить сейчас&raquo;"
2621
+
2622
+ #: wpsc-admin/includes/display-items-functions.php:159
2623
+ msgid "Add to Cart Shortcode"
2624
+ msgstr "Код добавления в корзину"
2625
+
2626
+ #: wpsc-admin/includes/display-items-functions.php:165
2627
+ msgid "Display Product Template Tag"
2628
+ msgstr "Тег шаблона для отображения товара"
2629
+
2630
+ #: wpsc-admin/includes/display-items-functions.php:166
2631
+ msgid "Buy Now PHP"
2632
+ msgstr "PHP-код &laquo;Купить сейчас&raquo;"
2633
+
2634
+ #: wpsc-admin/includes/display-items-functions.php:167
2635
+ msgid "Add to Cart PHP"
2636
+ msgstr "PHP-код &laquo;Добавить в корзину&raquo;"
2637
+
2638
+ #: wpsc-admin/includes/display-items-functions.php:168
2639
+ msgid "Display Product SKU"
2640
+ msgstr "Отображать единицу учёта товара"
2641
+
2642
+ #: wpsc-admin/includes/display-items-functions.php:185
2643
+ msgid "Stock Keeping Unit"
2644
+ msgstr "Учётная единица"
2645
+
2646
+ #: wpsc-admin/includes/display-items-functions.php:193
2647
+ msgid "Sale Price :"
2648
+ msgstr "Скидка :"
2649
+
2650
+ #: wpsc-admin/includes/display-items-functions.php:216
2651
+ msgid "New Currency"
2652
+ msgstr "Новая ценa"
2653
+
2654
+ #: wpsc-admin/includes/display-items-functions.php:220
2655
+ #: wpsc-admin/includes/display-items-functions.php:259
2656
+ #: wpsc-admin/includes/settings-pages/general.php:119
2657
+ #: wpsc-includes/install_and_update.functions.php:114
2658
+ msgid "Currency type"
2659
+ msgstr "Тип валюты"
2660
+
2661
+ #: wpsc-admin/includes/display-items-functions.php:244
2662
+ #: wpsc-admin/includes/display-items-functions.php:283
2663
+ msgid "Delete Currency"
2664
+ msgstr "Удалить валюту"
2665
+
2666
+ #: wpsc-admin/includes/display-items-functions.php:301
2667
+ msgid "Additional Description"
2668
+ msgstr "Дополнительное описание"
2669
+
2670
+ #: wpsc-admin/includes/display-items-functions.php:350
2671
+ msgid "Update Product"
2672
+ msgstr "Обновить товар"
2673
+
2674
+ #: wpsc-admin/includes/display-items-functions.php:374
2675
+ msgid "Categories and Tags"
2676
+ msgstr "Категории и метки"
2677
+
2678
+ #: wpsc-admin/includes/display-items-functions.php:413
2679
+ msgid "Select &quot;[categorisation]&quot;"
2680
+ msgstr "Выберите &laquo;[categorisation]&raquo;"
2681
+
2682
+ #: wpsc-admin/includes/display-items-functions.php:469
2683
+ msgid "Price and Stock Control"
2684
+ msgstr "Управление ценами и скидками"
2685
+
2686
+ #: wpsc-admin/includes/display-items-functions.php:479
2687
+ #, php-format
2688
+ msgid "Do not include tax (tax is set in <a href=\"%s\"/wp-admin/admin.php?page=wpsc-settings\">shop config</a>)"
2689
+ msgstr "Не включать налог (налог устанавливается в <a href=\"%s\"/wp-admin/admin.php?page=wpsc-settings\">настройках магазина</a>)"
2690
+
2691
+ #: wpsc-admin/includes/display-items-functions.php:486
2692
+ msgid "This is a donation, checking this box populates the donations widget."
2693
+ msgstr "Это пожертвование. Галочка включает виджет пожертвований."
2694
+
2695
+ #: wpsc-admin/includes/display-items-functions.php:493
2696
+ msgid "Table Rate Price"
2697
+ msgstr "Таблица Стоимость Цена"
2698
+
2699
+ #: wpsc-admin/includes/display-items-functions.php:498
2700
+ msgid "Quantity In Cart"
2701
+ msgstr "Количество в корзине"
2702
+
2703
+ #: wpsc-admin/includes/display-items-functions.php:499
2704
+ msgid "Discounted Price"
2705
+ msgstr "Цена со скидкой"
2706
+
2707
+ #: wpsc-admin/includes/display-items-functions.php:534
2708
+ msgid "Custom Tax Rate"
2709
+ msgstr "Произвольная налоговая ставка"
2710
+
2711
+ #: wpsc-admin/includes/display-items-functions.php:548
2712
+ 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."
2713
+ msgstr "У меня ограниченное количество этого товара. Если товар закончился, он не будет отображаться в магазине, пока вы не снимете эту галочку или не добавите количество."
2714
+
2715
+ #: wpsc-admin/includes/display-items-functions.php:563
2716
+ #: wpsc-admin/includes/display-items-functions.php:577
2717
+ #: wpsc-admin/includes/display-items-functions.php:584
2718
+ msgid "If this product runs out of stock set status to Unpublished & email site owner"
2719
+ msgstr "Если продукт на складе закончился, присвоить статус &laquo;Убран&raquo; и уведомить владельца сайта"
2720
+
2721
+ #: wpsc-admin/includes/display-items-functions.php:576
2722
+ #: wpsc-admin/includes/display-items-functions.php:583
2723
+ msgid "Stock Qty"
2724
+ msgstr "Количество"
2725
+
2726
+ #: wpsc-admin/includes/display-items-functions.php:610
2727
+ msgid "Variation Control"
2728
+ msgstr "Управление вариациями"
2729
+
2730
+ #: wpsc-admin/includes/display-items-functions.php:614
2731
+ msgid "+ Add New Variations"
2732
+ msgstr "+ Добавить новую вариацию"
2733
+
2734
+ #: wpsc-admin/includes/display-items-functions.php:660
2735
+ msgid "Weight"
2736
+ msgstr "Вес"
2737
+
2738
+ #: wpsc-admin/includes/display-items-functions.php:700
2739
+ msgid "Length"
2740
+ msgstr "Длина"
2741
+
2742
+ #: wpsc-admin/includes/display-items-functions.php:724
2743
+ msgid "Flat Rate Settings"
2744
+ msgstr "Настройки тарифа"
2745
+
2746
+ #: wpsc-admin/includes/display-items-functions.php:729
2747
+ msgid "Local Shipping Fee"
2748
+ msgstr "Комиссия за локальную пересылку"
2749
+
2750
+ #: wpsc-admin/includes/display-items-functions.php:738
2751
+ msgid "International Shipping Fee"
2752
+ msgstr "Комиссия за международную пересылку"
2753
+
2754
+ #: wpsc-admin/includes/display-items-functions.php:747
2755
+ msgid "Disregard Shipping for this product"
2756
+ msgstr "Не учитывать стоимость доставки этого продукта"
2757
+
2758
+ #: wpsc-admin/includes/display-items-functions.php:776
2759
+ msgid "Advanced Options"
2760
+ msgstr "Дополнительно"
2761
+
2762
+ #: wpsc-admin/includes/display-items-functions.php:784
2763
+ msgid "Custom Meta"
2764
+ msgstr "Произвольные поля"
2765
+
2766
+ #: wpsc-admin/includes/display-items-functions.php:785
2767
+ msgid "Add Custom Meta"
2768
+ msgstr "Добавить произвольное поле"
2769
+
2770
+ #: wpsc-admin/includes/display-items-functions.php:795
2771
+ msgid "Value"
2772
+ msgstr "Значение"
2773
+
2774
+ #: wpsc-admin/includes/display-items-functions.php:812
2775
+ msgid "Merchant Notes"
2776
+ msgstr "Заметки"
2777
+
2778
+ #: wpsc-admin/includes/display-items-functions.php:815
2779
+ msgid "These notes are only available here."
2780
+ msgstr "Эти заметки видны только здесь."
2781
+
2782
+ #: wpsc-admin/includes/display-items-functions.php:834
2783
+ msgid "Personalisation Options"
2784
+ msgstr "Настройки персонализации"
2785
+
2786
+ #: wpsc-admin/includes/display-items-functions.php:837
2787
+ msgid "Users can personalize this product by leaving a message on single product page"
2788
+ msgstr "Пользователи могут персонализировать товар, оставив сообщение на его странице"
2789
+
2790
+ #: wpsc-admin/includes/display-items-functions.php:846
2791
+ msgid "Users can upload images on single product page to purchase logs."
2792
+ msgstr "Пользователи могут загружать изображения в процессе заказа этого товара."
2793
+
2794
+ #: wpsc-admin/includes/display-items-functions.php:857
2795
+ msgid "Prohibited"
2796
+ msgstr "Запрещённые"
2797
+
2798
+ #: wpsc-admin/includes/display-items-functions.php:871
2799
+ msgid "Off Site Product Link"
2800
+ msgstr "Внешняя ссылка на товар"
2801
+
2802
+ #: wpsc-admin/includes/display-items-functions.php:872
2803
+ 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."
2804
+ msgstr "Внимание: Используйте только, если Вы используете внешние ссылки."
2805
+
2806
+ #: wpsc-admin/includes/display-items-functions.php:873
2807
+ msgid "External Link"
2808
+ msgstr "Внешние ссылки"
2809
+
2810
+ #: wpsc-admin/includes/display-items-functions.php:881
2811
+ msgid "Enable IntenseDebate Comments"
2812
+ msgstr "Включить комментирование"
2813
+
2814
+ #: wpsc-admin/includes/display-items-functions.php:887
2815
+ msgid "Allow users to comment on this product."
2816
+ msgstr "Разарешить пользователям комментировать товары."
2817
+
2818
+ #: wpsc-admin/includes/display-items-functions.php:914
2819
+ msgid "Product Images"
2820
+ msgstr "Изображение товара"
2821
+
2822
+ #: wpsc-admin/includes/display-items-functions.php:922
2823
+ msgid "Select Files"
2824
+ msgstr "Выберите файлы"
2825
+
2826
+ #: wpsc-admin/includes/display-items-functions.php:976
2827
+ msgid "You are using the Flash uploader. Problems? Try the <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"browser\")'>Browser uploader</a> instead."
2828
+ msgstr "Вы используете Flash-загрузчик. Проблемы? Попробуйте <a class='wpsc_upload_switcher' onclick='wpsc_upload_switcher(\"browser\")'>загрузчик браузера</a>."
2829
+
2830
+ #: wpsc-admin/includes/display-items-functions.php:980
2831
+ msgid "To upload multiple product thumbnails you must <a href=\"http://www.instinct.co.nz/shop/\">install the premium upgrade</a>"
2832
+ msgstr "Чтобы загружать несколько миниатюр товара, необходимо <a href=\"http://www.instinct.co.nz/shop/\">установить платное расширение</a>"
2833
+
2834
+ #: wpsc-admin/includes/display-items-functions.php:989
2835
+ msgid "Select an image to upload:"
2836
+ msgstr "Выберите изображение для загрузки:"
2837
+
2838
+ #: wpsc-admin/includes/display-items-functions.php:999
2839
+ msgid "You are using the Browser uploader. Problems? Try the <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"flash\")'>Flash uploader</a> instead."
2840
+ msgstr "Вы используете загрузчик браузера. Проблемы? Попробуйте <a class='wpsc_upload_switcher' onclick='wpsc_upload_switcher(\"flash\")'>Flash-загрузчик</a>."
2841
+
2842
+ #: wpsc-admin/includes/display-items-functions.php:1003
2843
+ msgid "Manage your thumbnails"
2844
+ msgstr "Управление миниатюрами"
2845
+
2846
+ #: wpsc-admin/includes/display-items-functions.php:1025
2847
+ msgid "Product Download"
2848
+ msgstr "Скачать товар"
2849
+
2850
+ #: wpsc-admin/includes/display-items-functions.php:1028
2851
+ msgid "Upload File"
2852
+ msgstr "Загрузить файл"
2853
+
2854
+ #: wpsc-admin/includes/display-items-functions.php:1029
2855
+ msgid "Max Upload Size"
2856
+ msgstr "Максимальный размер загружаемого файла"
2857
+
2858
+ #: wpsc-admin/includes/display-items-functions.php:1033
2859
+ msgid "Preview File"
2860
+ msgstr "Просмотреть файл"
2861
+
2862
+ #: wpsc-admin/includes/display-items-functions.php:1043
2863
+ msgid "Select an MP3 file to upload as a preview"
2864
+ msgstr "Выберите MP3-файл для загрузки в качестве демонстрации"
2865
+
2866
+ #: wpsc-admin/includes/display-items-functions.php:1064
2867
+ msgid "Label Control"
2868
+ msgstr "Управдление метками"
2869
+
2870
+ #: wpsc-admin/includes/display-items-functions.php:1070
2871
+ #: wpsc-admin/includes/display-items-functions.php:1071
2872
+ msgid "Add Label"
2873
+ msgstr "Добавить метку"
2874
+
2875
+ #: wpsc-admin/includes/display-items-functions.php:1128
2876
+ #: wpsc-admin/includes/display-items-functions.php:1155
2877
+ msgid "Preview"
2878
+ msgstr "Предпросмотр"
2879
+
2880
+ #: wpsc-admin/includes/display-items-functions.php:1199
2881
+ #: wpsc-admin/includes/settings-pages/presentation.php:856
2882
+ msgid "Thumbnail Settings"
2883
+ msgstr "Настройки миниатюр"
2884
+
2885
+ #: wpsc-admin/includes/display-items-functions.php:1207
2886
+ msgid "use default size"
2887
+ msgstr "использовать размер по умолчанию"
2888
+
2889
+ #: wpsc-admin/includes/display-items-functions.php:1207
2890
+ msgid "This is set on the Settings Page"
2891
+ msgstr "Это настраивается на странице &laquo;Параметры&raquo;"
2892
+
2893
+ #: wpsc-admin/includes/display-items-functions.php:1213
2894
+ msgid "do not resize thumbnail image"
2895
+ msgstr "не изменять размер миниатюры."
2896
+
2897
+ #: wpsc-admin/includes/display-items-functions.php:1217
2898
+ msgid "use specific size"
2899
+ msgstr "использовать определённый размер"
2900
+
2901
+ #: wpsc-admin/includes/display-items-functions.php:1219
2902
+ msgid "px width"
2903
+ msgstr "ширина в px"
2904
+
2905
+ #: wpsc-admin/includes/display-items-functions.php:1220
2906
+ msgid "px height"
2907
+ msgstr "высота в px"
2908
+
2909
+ #: wpsc-admin/includes/display-items-functions.php:1225
2910
+ msgid "use separate thumbnail"
2911
+ msgstr "использовать разделённые миниатюры"
2912
+
2913
+ #: wpsc-admin/includes/display-items-functions.php:1333
2914
+ #: wpsc-admin/includes/display-items-functions.php:1338
2915
+ msgid "HTML"
2916
+ msgstr "HTML"
2917
+
2918
+ #: wpsc-admin/includes/display-items-functions.php:1334
2919
+ #: wpsc-admin/includes/display-items-functions.php:1339
2920
+ msgid "Visual"
2921
+ msgstr "Визуально"
2922
+
2923
+ #: wpsc-admin/includes/product-functions.php:41
2924
+ #, php-format
2925
+ msgid "Please refrain from uploading images larger than <strong>%d x %d</strong> pixels"
2926
+ msgstr "Пожалуйста, воздержитесь от загрузки изображений размером больше <strong>%d x %d</strong> пикселей"
2927
+
2928
+ #: wpsc-admin/includes/product-functions.php:52
2929
+ #: wpsc-includes/category.functions.php:220
2930
+ msgid "N/A"
2931
+ msgstr "Н/Д"
2932
+
2933
+ #: wpsc-admin/includes/product-functions.php:77
2934
+ msgid "<strong>ERROR</strong>: Please enter a Product name.<br />"
2935
+ msgstr "<strong>ОШИБКА</strong>: Пожалуйста, введите название товара.<br />"
2936
+
2937
+ #: wpsc-admin/includes/product-functions.php:80
2938
+ msgid "<strong>ERROR</strong>: Please enter a Product Category.<br />"
2939
+ msgstr "<strong>ОШИБКА</strong>: Пожалуйста, введите категорию товара.<br />"
2940
+
2941
+ #: wpsc-admin/includes/product-functions.php:192
2942
+ msgid "Could not update product in the database"
2943
+ msgstr "Не удалось обновить товар в базе данных"
2944
+
2945
+ #: wpsc-admin/includes/product-functions.php:200
2946
+ msgid "Could not insert product into the database"
2947
+ msgstr "Не удалось добавить товар в базу данных"
2948
+
2949
+ #: wpsc-admin/includes/purchlogs_upgrade.php:67
2950
+ msgid "Check Out Form Fields updated."
2951
+ msgid_plural "Check Out Form Fields updated."
2952
+ msgstr[0] "Поля формы заказа обновлены."
2953
+ msgstr[1] "Поля формы заказа обновлены."
2954
+ msgstr[2] "Поля формы заказа обновлены."
2955
+
2956
+ #: wpsc-admin/includes/purchlogs_upgrade.php:74
2957
+ 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. "
2958
+ msgstr "При обновлении WP e-Commerce до версии 3.7 и более поздней требуется один раз запустить это исправление. Следующие блоки соответствуют полям формы на вашей текущей странице заказа. Нужно просто выбрать в выпажающих списках, чему соответствует каждое поле. Извините за неудобства. Мы надеемся, что новые журналы покупок стоят этой небольшой трудности. "
2959
+
2960
+ #: wpsc-admin/includes/settings-pages/admin.php:7
2961
+ msgid "Admin Settings"
2962
+ msgstr "Администрирование"
2963
+
2964
+ #: wpsc-admin/includes/settings-pages/admin.php:13
2965
+ msgid "Max downloads per file"
2966
+ msgstr "Максимальное число скачиваний для файла"
2967
+
2968
+ #: wpsc-admin/includes/settings-pages/admin.php:35
2969
+ msgid "Lock downloads to IP address"
2970
+ msgstr "Заблокировать ссылку для IP-адреса"
2971
+
2972
+ #: wpsc-admin/includes/settings-pages/admin.php:61
2973
+ msgid "Check MIME types on file uploads"
2974
+ msgstr "Проверять MIME-тип загружаемых файлов: "
2975
+
2976
+ #: wpsc-admin/includes/settings-pages/admin.php:68
2977
+ 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."
2978
+ msgstr "Внимание: При отключении этой возможности есть вероятность загрузки на сайт небезопасных файлов. Вместо этого мы рекомендуем установить PHP-расширение Fileinfo. "
2979
+
2980
+ #: wpsc-admin/includes/settings-pages/admin.php:76
2981
+ msgid "Purchase Log Email"
2982
+ msgstr "E-mail для отправки журнала покупок"
2983
+
2984
+ #: wpsc-admin/includes/settings-pages/admin.php:80
2985
+ msgid "i.e. this is the address where your purchase reports are sent."
2986
+ msgstr "Это адрес, на который отправляются отчёты о покупках. "
2987
+
2988
+ #: wpsc-admin/includes/settings-pages/admin.php:86
2989
+ msgid "Purchase Receipt - Reply Address"
2990
+ msgstr "Квитанция о покупке &#8212; Адрес для ответа"
2991
+
2992
+ #: wpsc-admin/includes/settings-pages/admin.php:90
2993
+ msgid "i.e. this is the reply address contained in the purchase receipt sent to the buyer."
2994
+ msgstr "Это адрес для ответа, содержащийся в отчёте, отправляемом покупателю."
2995
+
2996
+ #: wpsc-admin/includes/settings-pages/admin.php:96
2997
+ msgid "Purchase Receipt - Reply Name"
2998
+ msgstr "Квитанция о покупке &#8212; Имя для ответа"
2999
+
3000
+ #: wpsc-admin/includes/settings-pages/admin.php:100
3001
+ msgid "i.e. this is the \"from name\" buyers will see in their purchase receipt. "
3002
+ msgstr "Это имя, которое покупатели увидят в отчёте о покупках "
3003
+
3004
+ #: wpsc-admin/includes/settings-pages/admin.php:115
3005
+ msgid "Custom Messages"
3006
+ msgstr "Настройки почты"
3007
+
3008
+ #: wpsc-admin/includes/settings-pages/admin.php:118
3009
+ msgid "Tags can be used"
3010
+ msgstr "Можно использовать метки"
3011
+
3012
+ #: wpsc-admin/includes/settings-pages/admin.php:139
3013
+ msgid "Admin Report"
3014
+ msgstr "Отчёт администрации"
3015
+
3016
+ #: wpsc-admin/includes/settings-pages/admin.php:144
3017
+ msgid "Track and Trace settings"
3018
+ msgstr "Настройки отслеживания"
3019
+
3020
+ #: wpsc-admin/includes/settings-pages/admin.php:154
3021
+ msgid "Tracking Email Subject"
3022
+ msgstr "Тема автоматических писем пользователям"
3023
+
3024
+ #: wpsc-admin/includes/settings-pages/admin.php:158
3025
+ msgid "Tracking Email Message"
3026
+ msgstr "Текст автоматического письма"
3027
+
3028
+ #: wpsc-admin/includes/settings-pages/admin.php:162
3029
+ msgid "URL Settings"
3030
+ msgstr "Настройки URL"
3031
+
3032
+ #: wpsc-admin/includes/settings-pages/admin.php:167
3033
+ #: wpsc-includes/install_and_update.functions.php:95
3034
+ msgid "The location of the product list"
3035
+ msgstr "Адрес списка товаров"
3036
+
3037
+ #: wpsc-admin/includes/settings-pages/admin.php:175
3038
+ #: wpsc-includes/install_and_update.functions.php:96
3039
+ msgid "The location of the shopping cart"
3040
+ msgstr "Адрес корзины для покупок"
3041
+
3042
+ #: wpsc-admin/includes/settings-pages/admin.php:193
3043
+ msgid "Transaction Details URL"
3044
+ msgstr "Адрес информации о транзакции"
3045
+
3046
+ #: wpsc-admin/includes/settings-pages/admin.php:204
3047
+ msgid "User Account URL"
3048
+ msgstr "Ссылка на аккаунт пользователя"
3049
+
3050
+ #: wpsc-admin/includes/settings-pages/admin.php:215
3051
+ msgid "Update Page URLs"
3052
+ msgstr "Обновить ссылки страниц"
3053
+
3054
+ #: wpsc-admin/includes/settings-pages/admin.php:216
3055
+ msgid "Fix Product Group Permalinks"
3056
+ msgstr "Исправить ссылки страниц"
3057
+
3058
+ #: wpsc-admin/includes/settings-pages/checkout.php:42
3059
+ msgid "Checkout Options"
3060
+ msgstr "Настройки контроля"
3061
+
3062
+ #: wpsc-admin/includes/settings-pages/checkout.php:55
3063
+ msgid "Users must register before checking out"
3064
+ msgstr "пользователь должен быть зарегистрирован перед выпиской счёта"
3065
+
3066
+ #: wpsc-admin/includes/settings-pages/checkout.php:75
3067
+ msgid "If yes then you must also turn on the wordpress option \"Any one can register\""
3068
+ msgstr "Если &laquo;Да&raquo;, вы должны также выбрать вариант &laquo;Любой может зарегистрироваться&raquo; в настройках WordPress."
3069
+
3070
+ #: wpsc-admin/includes/settings-pages/checkout.php:92
3071
+ msgid "Lock Tax to Billing Country"
3072
+ msgstr "Привязать налог к стране биллинга"
3073
+
3074
+ #: wpsc-admin/includes/settings-pages/checkout.php:115
3075
+ msgid " Disregard Billing State for Tax Calculations"
3076
+ msgstr " Не учитывать штат биллинга при расчёте налога"
3077
+
3078
+ #: wpsc-admin/includes/settings-pages/checkout.php:140
3079
+ msgid "Enable Shipping Same as Billing Option: "
3080
+ msgstr "Использовать тот же адрес доставки, что и для платежа"
3081
+
3082
+ #: wpsc-admin/includes/settings-pages/checkout.php:153
3083
+ 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..."
3084
+ msgstr "Здесь можно настроить поля формы для отображения на странице заказа. Страница заказа &#8212; это место, где вы собираете важную информацию о покупателе, которая будет показана в журнале покупок: адрес, имя и т.д."
3085
+
3086
+ #: wpsc-admin/includes/settings-pages/checkout.php:170
3087
+ msgid "+ Add New Form Set"
3088
+ msgstr "+ Добавить новый набор форм"
3089
+
3090
+ #: wpsc-admin/includes/settings-pages/checkout.php:174
3091
+ msgid "Add new Form Set"
3092
+ msgstr "Добавить новый набор форм"
3093
+
3094
+ #: wpsc-admin/includes/settings-pages/checkout.php:251
3095
+ msgid "This will be the Email address that the Purchase Reciept is sent to."
3096
+ msgstr "Это адрес для ответа, содержащийся в отчёте, отправляемом покупателю. "
3097
+
3098
+ #: wpsc-admin/includes/settings-pages/checkout.php:269
3099
+ msgid "Add New Form Field"
3100
+ msgstr "Добавить новую форму к заполнению"
3101
+
3102
+ #: wpsc-admin/includes/settings-pages/gateway.php:31
3103
+ msgid "Please Select A Payment Gateway"
3104
+ msgstr "Пожалуйста, выберите платёжную систему для оплаты"
3105
+
3106
+ #: wpsc-admin/includes/settings-pages/gateway.php:55
3107
+ msgid "Gateway Options"
3108
+ msgstr "Настройки оплаты"
3109
+
3110
+ #: wpsc-admin/includes/settings-pages/gateway.php:64
3111
+ #: wpsc-admin/includes/settings-pages/general.php:7
3112
+ #: wpsc-admin/includes/settings-pages/shipping.php:52
3113
+ #: wpsc-admin/includes/settings-pages/shipping.php:58
3114
+ msgid "General Settings"
3115
+ msgstr "Общие настройки"
3116
+
3117
+ #: wpsc-admin/includes/settings-pages/gateway.php:68
3118
+ msgid "Payment Gateways"
3119
+ msgstr "Платёжные системы"
3120
+
3121
+ #: wpsc-admin/includes/settings-pages/gateway.php:72
3122
+ msgid "Activate the payment gateways that you want to make available to your customers by selecting them below."
3123
+ msgstr "Выберите способы оплаты, которые будут использоваться вашими покупателями."
3124
+
3125
+ #: wpsc-admin/includes/settings-pages/gateway.php:98
3126
+ msgid "We Recommend"
3127
+ msgstr "Мы рекомендуем"
3128
+
3129
+ #: wpsc-admin/includes/settings-pages/gateway.php:107
3130
+ #: wpsc-admin/includes/settings-pages/gateway.php:114
3131
+ msgid " Select a Payment Gateway below to configure it."
3132
+ msgstr " Выберите способ оплаты ниже, для редактирования."
3133
+
3134
+ #: wpsc-admin/includes/settings-pages/gateway.php:122
3135
+ msgid "Payment Gateway"
3136
+ msgstr "Платёжная система"
3137
+
3138
+ #: wpsc-admin/includes/settings-pages/gateway.php:134
3139
+ msgid "Display Name"
3140
+ msgstr "Отображаемое название"
3141
+
3142
+ #: wpsc-admin/includes/settings-pages/gateway.php:162
3143
+ msgid "The text that people see when making a purchase"
3144
+ msgstr "Текст, который клиенты увидят при покупке"
3145
+
3146
+ #: wpsc-admin/includes/settings-pages/general.php:13
3147
+ msgid "Base Country/Region"
3148
+ msgstr "Страна"
3149
+
3150
+ #: wpsc-admin/includes/settings-pages/general.php:39
3151
+ msgid "Select your primary business location."
3152
+ msgstr "Выберите основное местонахождение вашего бизнеса"
3153
+
3154
+ #: wpsc-admin/includes/settings-pages/general.php:43
3155
+ msgid "Tax Settings"
3156
+ msgstr "Настройки налогов"
3157
+
3158
+ #: wpsc-admin/includes/settings-pages/general.php:60
3159
+ msgid "Tax Included in prices"
3160
+ msgstr "Налог включён в цены"
3161
+
3162
+ #: wpsc-admin/includes/settings-pages/general.php:116
3163
+ msgid "Currency Settings"
3164
+ msgstr "Настройки валюты"
3165
+
3166
+ #: wpsc-admin/includes/settings-pages/general.php:143
3167
+ #: wpsc-includes/install_and_update.functions.php:115
3168
+ msgid "Currency sign location"
3169
+ msgstr "Расположение знака"
3170
+
3171
+ #: wpsc-admin/includes/settings-pages/general.php:194
3172
+ msgid "Hide Decimals on Products Pages"
3173
+ msgstr "Скрывать десятичные цифры на страницах товаров"
3174
+
3175
+ #: wpsc-admin/includes/settings-pages/import.php:7
3176
+ msgid "Import Products CSV"
3177
+ msgstr "Импорт товаров из CSV"
3178
+
3179
+ #: wpsc-admin/includes/settings-pages/import.php:8
3180
+ 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>"
3181
+ msgstr "<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>"
3182
+
3183
+ #: wpsc-admin/includes/settings-pages/presentation.php:14
3184
+ msgid "Show All Products"
3185
+ msgstr "Показать все товары"
3186
+
3187
+ #: wpsc-admin/includes/settings-pages/presentation.php:21
3188
+ msgid "Show Category List"
3189
+ msgstr "Показать список категория"
3190
+
3191
+ #: wpsc-admin/includes/settings-pages/presentation.php:28
3192
+ msgid "Show All Products + Category List"
3193
+ msgstr "Показать все товары + список категорий"
3194
+
3195
+ #: wpsc-admin/includes/settings-pages/presentation.php:63
3196
+ msgid "Button Settings"
3197
+ msgstr "Настройки кнопок"
3198
+
3199
+ #: wpsc-admin/includes/settings-pages/presentation.php:67
3200
+ msgid "Button Type"
3201
+ msgstr "Тип кнопки"
3202
+
3203
+ #: wpsc-admin/includes/settings-pages/presentation.php:92
3204
+ msgid "Hide \"Add to cart\" button"
3205
+ msgstr "Скрыть кнопку &laquo;Добавить в корзину&raquo;"
3206
+
3207
+ #: wpsc-admin/includes/settings-pages/presentation.php:117
3208
+ msgid "Product Settings"
3209
+ msgstr "Настройки товаров"
3210
+
3211
+ #: wpsc-admin/includes/settings-pages/presentation.php:122
3212
+ #: wpsc-includes/install_and_update.functions.php:162
3213
+ msgid "Show Product Ratings"
3214
+ msgstr "Показывать рейтинг товаров"
3215
+
3216
+ #: wpsc-admin/includes/settings-pages/presentation.php:146
3217
+ msgid "Display Fancy Purchase Notifications"
3218
+ msgstr "Показывать смешные ообщения о покупках"
3219
+
3220
+ #: wpsc-admin/includes/settings-pages/presentation.php:170
3221
+ msgid "Show Postage and Packaging"
3222
+ msgstr "Показывать стоимость пересылки и упаковки"
3223
+
3224
+ #: wpsc-admin/includes/settings-pages/presentation.php:193
3225
+ msgid "Disable link in Title"
3226
+ msgstr "Скрыть ссылки названия товара"
3227
+
3228
+ #: wpsc-admin/includes/settings-pages/presentation.php:217
3229
+ msgid "Add quantity field to each product description"
3230
+ msgstr "Добавить поле количества к каждому описанию товара"
3231
+
3232
+ #: wpsc-admin/includes/settings-pages/presentation.php:242
3233
+ msgid "Theme Customisation"
3234
+ msgstr "Настройка оформления"
3235
+
3236
+ #: wpsc-admin/includes/settings-pages/presentation.php:247
3237
+ msgid "Thanks, the themes have been copied."
3238
+ msgstr "Спасибо, темы скопированы."
3239
+
3240
+ #: wpsc-admin/includes/settings-pages/presentation.php:256
3241
+ msgid "Theming your stores appearance is easy."
3242
+ msgstr "Оформлять внешний вид магазина достаточно легко."
3243
+
3244
+ #: wpsc-admin/includes/settings-pages/presentation.php:258
3245
+ msgid "You just need to edit the appropriate files in the following location."
3246
+ msgstr "Нужно отредактировать соответствующие файлы в следующем каталоге."
3247
+
3248
+ #: wpsc-admin/includes/settings-pages/presentation.php:259
3249
+ #: wpsc-admin/includes/settings-pages/presentation.php:271
3250
+ msgid "Path:"
3251
+ msgstr "Путь:"
3252
+
3253
+ #: wpsc-admin/includes/settings-pages/presentation.php:261
3254
+ msgid "To create a new theme:"
3255
+ msgstr "Чтобы создать новую тему:"
3256
+
3257
+ #: wpsc-admin/includes/settings-pages/presentation.php:263
3258
+ msgid "Copy the default directory and rename it 'newTheme'"
3259
+ msgstr "Скопируйте каталог по умолчанию под именем &laquo;newTheme&raquo;"
3260
+
3261
+ #: wpsc-admin/includes/settings-pages/presentation.php:264
3262
+ msgid "Rename the default.css file inside the 'newTheme' directory to 'newTheme.css'"
3263
+ msgstr "Переименуйте файл default.css в каталоге &laquo;newTheme&raquo; в &laquo;newTheme.css&raquo;"
3264
+
3265
+ #: wpsc-admin/includes/settings-pages/presentation.php:269
3266
+ msgid "The permissions on your themes directory are incorrect."
3267
+ msgstr "На каталог темы установлены некорректные права."
3268
+
3269
+ #: wpsc-admin/includes/settings-pages/presentation.php:270
3270
+ msgid "Please set the permissions to 775 on the following directory."
3271
+ msgstr "Пожалуйста, установите права 775 на следующий каталог."
3272
+
3273
+ #: wpsc-admin/includes/settings-pages/presentation.php:275
3274
+ msgid "Your theme files have not been moved. Until your theme files have been moved, we have disabled automatic upgrades."
3275
+ msgstr "Файлы вашей темы не перемещены. До перемещения файлов автоматические обновления будут отключены."
3276
+
3277
+ #: wpsc-admin/includes/settings-pages/presentation.php:276
3278
+ #, php-format
3279
+ msgid "Click here to <a href='%s'>Move your files</a> to a safe place"
3280
+ msgstr "Нажмите сюда, чтобы <a href='%s'>переместить ваши файлы</a> в безопасное место"
3281
+
3282
+ #: wpsc-admin/includes/settings-pages/presentation.php:280
3283
+ msgid "Read Tutorials"
3284
+ msgstr "Прочитать документацию"
3285
+
3286
+ #: wpsc-admin/includes/settings-pages/presentation.php:285
3287
+ msgid "Product Page Settings"
3288
+ msgstr "Настройки страницы товаров"
3289
+
3290
+ #: wpsc-admin/includes/settings-pages/presentation.php:372
3291
+ msgid "Purchase unavailable options"
3292
+ msgstr "Купить недоступные опции"
3293
+
3294
+ #: wpsc-admin/includes/settings-pages/presentation.php:377
3295
+ msgid "Show quantity form in list view"
3296
+ msgstr "показывать форму количества в списке просмотра"
3297
+
3298
+ #: wpsc-admin/includes/settings-pages/presentation.php:382
3299
+ msgid "Products Per Row"
3300
+ msgstr "Количество товаров в строке"
3301
+
3302
+ #: wpsc-admin/includes/settings-pages/presentation.php:387
3303
+ msgid "Show images only"
3304
+ msgstr "Показать только изображения"
3305
+
3306
+ #: wpsc-admin/includes/settings-pages/presentation.php:397
3307
+ msgid "Display Description"
3308
+ msgstr "Отображать описание"
3309
+
3310
+ #: wpsc-admin/includes/settings-pages/presentation.php:402
3311
+ msgid "Display \"Add To Cart\" Button"
3312
+ msgstr "Отображать кнопку &laquo;Добавить в корзину&raquo;"
3313
+
3314
+ #: wpsc-admin/includes/settings-pages/presentation.php:406
3315
+ msgid "Display \"More Details\" Button"
3316
+ msgstr "Отображать кнопку &laquo;Подробнее&raquo;"
3317
+
3318
+ #: wpsc-admin/includes/settings-pages/presentation.php:416
3319
+ msgid "Theme"
3320
+ msgstr "Тема"
3321
+
3322
+ #: wpsc-admin/includes/settings-pages/presentation.php:425
3323
+ msgid "Product page displays"
3324
+ msgstr "На странице товаров отображается"
3325
+
3326
+ #: wpsc-admin/includes/settings-pages/presentation.php:453
3327
+ msgid "Sort Products By"
3328
+ msgstr "Критерий сортировки"
3329
+
3330
+ #: wpsc-admin/includes/settings-pages/presentation.php:459
3331
+ msgid "Drag &amp; Drop"
3332
+ msgstr "Перетаскивание"
3333
+
3334
+ #: wpsc-admin/includes/settings-pages/presentation.php:460
3335
+ msgid "Time Uploaded"
3336
+ msgstr "Время загрузки"
3337
+
3338
+ #: wpsc-admin/includes/settings-pages/presentation.php:462
3339
+ msgid "If you have used the drag-drop interface on the edit-products page to order your products then you must use the Drag &amp; Drop option."
3340
+ msgstr "Если вы перетаскивали товары мышью на странице редактирования для расположения их в правильном порядке, нужно выбрать вариант &laquo;Перетаскивание&raquo;."
3341
+
3342
+ #: wpsc-admin/includes/settings-pages/presentation.php:466
3343
+ msgid "Show Breadcrumbs"
3344
+ msgstr "Показывать &laquo;хлебные крошки&raquo;"
3345
+
3346
+ #: wpsc-admin/includes/settings-pages/presentation.php:492
3347
+ msgid "Product Groups/Products Display"
3348
+ msgstr "Группы товаров / Отображение товаров"
3349
+
3350
+ #: wpsc-admin/includes/settings-pages/presentation.php:510
3351
+ msgid "Product Groups Only (All products displayed)"
3352
+ msgstr "Только группы товаров (Все товары отображаются)"
3353
+
3354
+ #: wpsc-admin/includes/settings-pages/presentation.php:511
3355
+ msgid "Sliding Product Groups (1 product per page)"
3356
+ msgstr "Скользящие группы товаров (1 товар на страницу)"
3357
+
3358
+ #: wpsc-admin/includes/settings-pages/presentation.php:518
3359
+ msgid "Show Subcategory Products in Parent Category"
3360
+ msgstr "Показывать товары из подкатегорий в родительской категории"
3361
+
3362
+ #: wpsc-admin/includes/settings-pages/presentation.php:544
3363
+ msgid "Show Search"
3364
+ msgstr "Показать поиск"
3365
+
3366
+ #: wpsc-admin/includes/settings-pages/presentation.php:581
3367
+ msgid "Show Advanced Search"
3368
+ msgstr "Показывать расширенный поиск"
3369
+
3370
+ #: wpsc-admin/includes/settings-pages/presentation.php:584
3371
+ msgid "Use Live Search"
3372
+ msgstr "Использовать Live Search"
3373
+
3374
+ #: wpsc-admin/includes/settings-pages/presentation.php:595
3375
+ msgid "Replace Page Title With Product/Category Name"
3376
+ msgstr "Заменять название страницы названием товара/категории"
3377
+
3378
+ #: wpsc-admin/includes/settings-pages/presentation.php:617
3379
+ msgid "Shopping Cart Settings"
3380
+ msgstr "Настройки корзины"
3381
+
3382
+ #: wpsc-admin/includes/settings-pages/presentation.php:620
3383
+ #: wpsc-includes/install_and_update.functions.php:101
3384
+ #: wpsc-includes/install_and_update.functions.php:103
3385
+ #: wpsc-includes/install_and_update.functions.php:107
3386
+ #: wpsc-includes/install_and_update.functions.php:109
3387
+ msgid "Cart Location"
3388
+ msgstr "Место размещения корзины"
3389
+
3390
+ #: wpsc-admin/includes/settings-pages/presentation.php:649
3391
+ #: wpsc-admin/includes/settings-pages/presentation.php:653
3392
+ msgid "Sidebar"
3393
+ msgstr "Боковая колонка"
3394
+
3395
+ #: wpsc-admin/includes/settings-pages/presentation.php:657
3396
+ msgid "Page"
3397
+ msgstr "Страница"
3398
+
3399
+ #: wpsc-admin/includes/settings-pages/presentation.php:661
3400
+ #: wpsc-admin/includes/settings-pages/presentation.php:665
3401
+ msgid "Widget"
3402
+ msgstr "Виджет"
3403
+
3404
+ #: wpsc-admin/includes/settings-pages/presentation.php:665
3405
+ #: wpsc-admin/includes/settings-pages/presentation.php:675
3406
+ msgid "You need to enable the widgets plugin to use this"
3407
+ msgstr "Чтобы использовать эту функцию, необходимо включить плагин виджетов"
3408
+
3409
+ #: wpsc-admin/includes/settings-pages/presentation.php:675
3410
+ msgid "You need to install the Gold and DropShop extentions to use this"
3411
+ msgstr "Чтобы использовать эту функцию, необходимо установить версию Gold и расширение DropShop"
3412
+
3413
+ #: wpsc-admin/includes/settings-pages/presentation.php:679
3414
+ msgid "Manual"
3415
+ msgstr "Вручную"
3416
+
3417
+ #: wpsc-admin/includes/settings-pages/presentation.php:682
3418
+ msgid "Show Dropshop on every page"
3419
+ msgstr "Показывать Dropshop на каждой странице"
3420
+
3421
+ #: wpsc-admin/includes/settings-pages/presentation.php:683
3422
+ msgid "Show Dropshop only on product page"
3423
+ msgstr "Показывать Dropshop только на странице товаров"
3424
+
3425
+ #: wpsc-admin/includes/settings-pages/presentation.php:686
3426
+ msgid "Use light Dropshop style"
3427
+ msgstr "Использовать светлый стиль Dropshop"
3428
+
3429
+ #: wpsc-admin/includes/settings-pages/presentation.php:687
3430
+ msgid "Use dark Dropshop style"
3431
+ msgstr "Использовать тёмный стиль Dropshop"
3432
+
3433
+ #: wpsc-admin/includes/settings-pages/presentation.php:688
3434
+ msgid "Crafty"
3435
+ msgstr "Crafty"
3436
+
3437
+ #: wpsc-admin/includes/settings-pages/presentation.php:698
3438
+ msgid "Use Sliding Cart"
3439
+ msgstr "Использовать скользящую корзину"
3440
+
3441
+ #: wpsc-admin/includes/settings-pages/presentation.php:723
3442
+ msgid "Display \"+ Postage & Tax\""
3443
+ msgstr "Отображать &laquo;+ пересылка и налог&raquo;"
3444
+
3445
+ #: wpsc-admin/includes/settings-pages/presentation.php:749
3446
+ msgid "Product Group Settings"
3447
+ msgstr "Настройки групп товаров"
3448
+
3449
+ #: wpsc-admin/includes/settings-pages/presentation.php:753
3450
+ msgid "Show Product Group Description"
3451
+ msgstr "Показывать описание групп товаров"
3452
+
3453
+ #: wpsc-admin/includes/settings-pages/presentation.php:778
3454
+ msgid "Show Product Group Thumbnails"
3455
+ msgstr "Показывать миниатюры групп товаров"
3456
+
3457
+ #: wpsc-admin/includes/settings-pages/presentation.php:805
3458
+ msgid "Show Product Count per Product Group"
3459
+ msgstr "Показывать количество товаров на группу"
3460
+
3461
+ #: wpsc-admin/includes/settings-pages/presentation.php:831
3462
+ msgid "Use Category Grid View"
3463
+ msgstr "Отображать в виде таблицы"
3464
+
3465
+ #: wpsc-admin/includes/settings-pages/presentation.php:862
3466
+ msgid "Default Product Thumbnail Size"
3467
+ msgstr "Размеры превью товара по умолчанию"
3468
+
3469
+ #: wpsc-admin/includes/settings-pages/presentation.php:866
3470
+ msgid "Resize Existing Thumbnails"
3471
+ msgstr "Изменить размер миниатюр"
3472
+
3473
+ #: wpsc-admin/includes/settings-pages/presentation.php:872
3474
+ msgid "Default Product Group Thumbnail Size"
3475
+ msgstr "Размеры превью категории по умолчанию"
3476
+
3477
+ #: wpsc-admin/includes/settings-pages/presentation.php:881
3478
+ msgid "Single Product Image Size"
3479
+ msgstr "Размер изображения отдельного товара"
3480
+
3481
+ #: wpsc-admin/includes/settings-pages/presentation.php:892
3482
+ #: wpsc-includes/install_and_update.functions.php:87
3483
+ msgid "Show Thumbnails"
3484
+ msgstr "Показывать миниатюры"
3485
+
3486
+ #: wpsc-admin/includes/settings-pages/presentation.php:918
3487
+ msgid "Show Thumbnail Gallery"
3488
+ msgstr "Показывать галерею миниатюр"
3489
+
3490
+ #: wpsc-admin/includes/settings-pages/presentation.php:942
3491
+ msgid "Gallery Thumbnail Image Size"
3492
+ msgstr "Размер миниатюр в галерее"
3493
+
3494
+ #: wpsc-admin/includes/settings-pages/presentation.php:956
3495
+ msgid "Pagination settings"
3496
+ msgstr "Настройки постраничного просмотра"
3497
+
3498
+ #: wpsc-admin/includes/settings-pages/presentation.php:960
3499
+ msgid "Use Pagination"
3500
+ msgstr "Использовать постраничный просмотр"
3501
+
3502
+ #: wpsc-admin/includes/settings-pages/presentation.php:982
3503
+ msgid "number of products to show per page"
3504
+ msgstr "количество товаров на странице"
3505
+
3506
+ #: wpsc-admin/includes/settings-pages/presentation.php:992
3507
+ msgid "Top"
3508
+ msgstr "Сверху"
3509
+
3510
+ #: wpsc-admin/includes/settings-pages/presentation.php:993
3511
+ msgid "Bottom"
3512
+ msgstr "Снизу"
3513
+
3514
+ #: wpsc-admin/includes/settings-pages/presentation.php:994
3515
+ msgid "Both"
3516
+ msgstr "Оба"
3517
+
3518
+ #: wpsc-admin/includes/settings-pages/presentation.php:1001
3519
+ msgid "Comment Settings"
3520
+ msgstr "Настройки комментирования"
3521
+
3522
+ #: wpsc-admin/includes/settings-pages/presentation.php:1005
3523
+ msgid "Use IntenseDebate Comments"
3524
+ msgstr "Использовать систему IntenseDebate для комментариев"
3525
+
3526
+ #: wpsc-admin/includes/settings-pages/presentation.php:1029
3527
+ msgid "IntenseDebate Account ID"
3528
+ msgstr "ID аккаунта IntenseDebate"
3529
+
3530
+ #: wpsc-admin/includes/settings-pages/presentation.php:1031
3531
+ msgid "Help on finding the Account ID"
3532
+ msgstr "Как найти ID аккаунта"
3533
+
3534
+ #: wpsc-admin/includes/settings-pages/presentation.php:1040
3535
+ msgid "By Default Display Comments on"
3536
+ msgstr "По умолчанию отображать комментарии"
3537
+
3538
+ #: wpsc-admin/includes/settings-pages/shipping.php:67
3539
+ msgid "Use Shipping"
3540
+ msgstr "Использовать доставку"
3541
+
3542
+ #: wpsc-admin/includes/settings-pages/shipping.php:89
3543
+ msgid "If you are only selling digital downloads, you should select no to disable the shipping on your site."
3544
+ msgstr "Если вы только продаёте файлы для скачивания, Вы должны отключить опцию доставки."
3545
+
3546
+ #: wpsc-admin/includes/settings-pages/shipping.php:94
3547
+ msgid "Base Zipcode/Postcode:"
3548
+ msgstr "Основной почтовый индекс:"
3549
+
3550
+ #: wpsc-admin/includes/settings-pages/shipping.php:97
3551
+ 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."
3552
+ msgstr "Если вы расположены в Америке, то нужно указать код штата для UPS и USPS."
3553
+
3554
+ #: wpsc-admin/includes/settings-pages/shipping.php:119
3555
+ msgid "ShipWire Settings"
3556
+ msgstr "Настройки ShipWire"
3557
+
3558
+ #: wpsc-admin/includes/settings-pages/shipping.php:130
3559
+ msgid "ShipWire Email"
3560
+ msgstr "ShipWire Email"
3561
+
3562
+ #: wpsc-admin/includes/settings-pages/shipping.php:131
3563
+ msgid "ShipWire Password"
3564
+ msgstr "ShipWire пароль"
3565
+
3566
+ #: wpsc-admin/includes/settings-pages/shipping.php:139
3567
+ msgid "Enable Free Shipping Discount"
3568
+ msgstr "Использовать бесплатную доставку"
3569
+
3570
+ #: wpsc-admin/includes/settings-pages/shipping.php:184
3571
+ #: wpsc-admin/includes/settings-pages/shipping.php:189
3572
+ msgid "Shipping Modules"
3573
+ msgstr "Модули доставки"
3574
+
3575
+ #: wpsc-admin/includes/settings-pages/shipping.php:195
3576
+ msgid "To enable shipping in WP e-Commerce you must select which shipping methods you want to enable on your site"
3577
+ msgstr "Чтобы включить доставку в WP e-Commerce, нужно выбрать, какие способы доставки вы хотите использовать на сайте"
3578
+
3579
+ #: wpsc-admin/includes/settings-pages/shipping.php:196
3580
+ msgid "<br /><strong>UPS has been deactivated because you are running PHP4, please upgrade to PHP5 to enable UPS.</strong>"
3581
+ msgstr "<br /><strong>Служба UPS отключена, потому что вы используете PHP4. Чтобы включить UPS, установите PHP5.</strong>"
3582
+
3583
+ #: wpsc-admin/includes/settings-pages/shipping.php:200
3584
+ msgid "Internal Shipping Calculators"
3585
+ msgstr "Внутренние калькуляторы стоимости доставки"
3586
+
3587
+ #: wpsc-admin/includes/settings-pages/shipping.php:233
3588
+ msgid "External Shipping Calculators"
3589
+ msgstr "Внешние калькуляторы стоимости доставки"
3590
+
3591
+ #: wpsc-admin/includes/settings-pages/shipping.php:236
3592
+ 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. "
3593
+ msgstr "Выбранный метод доставки требует cURL который не установлен на этом сервере, вам надо связатся с хостером для установки его. "
3594
+
3595
+ #: wpsc-includes/ajax.functions.php:104
3596
+ msgid "You just added \"[product_name]\" to your cart."
3597
+ msgstr "Вы добавили товар &laquo;[product_name]&raquo; в корзину."
3598
+
3599
+ #: wpsc-includes/ajax.functions.php:107
3600
+ msgid "Sorry, but you cannot add zero items to your cart"
3601
+ msgstr "Извините, но в корзину нельзя добавить нулевое количество товара"
3602
+
3603
+ #: wpsc-includes/ajax.functions.php:109
3604
+ msgid "Sorry, but there are only [number] of this item in stock."
3605
+ msgstr "Извините, но единиц этого товара осталось только [number]."
3606
+
3607
+ #: wpsc-includes/ajax.functions.php:111
3608
+ msgid "Sorry, but the item \"[product_name]\" is out of stock."
3609
+ msgstr "Извините, но товара &laquo;[product_name]&raquo; нет на складе."
3610
+
3611
+ #: wpsc-includes/ajax.functions.php:593
3612
+ msgid "You must select a shipping method, otherwise we cannot process your order."
3613
+ msgstr "Вам нужно выбрать метод доставки, иначе мы не сможем обработать ваш заказ."
3614
+
3615
+ #: wpsc-includes/ajax.functions.php:598
3616
+ msgid "Please agree to the terms and conditions, otherwise we cannot process your order."
3617
+ msgstr "Приймите соглашения и условия работы сервиса. В противном случае мы не сможем обработать ваш заказ."
3618
+
3619
+ #: wpsc-includes/ajax.functions.php:618
3620
+ #, php-format
3621
+ msgid "Oops the product : %s cannot be shipped to %s. To continue with your transaction please remove this product from the list above."
3622
+ msgstr "Товар &laquo;%s&raquo; не может быть доставлен в страну %s. Чтобы продолжить транзакцию, удалите этот товар из списка."
3623
+
3624
+ #: wpsc-includes/ajax.functions.php:641
3625
+ msgid "Please enter a Zipcode and click calculate to proceed"
3626
+ msgstr "Пожалуйста, введите индекс и нажмите &laquo;Посчитать&raquo; для продолжения"
3627
+
3628
+ #: wpsc-includes/ajax.functions.php:981
3629
+ #: wpsc-includes/ajax.functions.php:1039
3630
+ msgid "This download is no longer valid, Please contact the site administrator for more information."
3631
+ msgstr "Эта ссылка больше не активна."
3632
+
3633
+ #: wpsc-includes/category.functions.php:361
3634
+ msgid "Brands"
3635
+ msgstr "Бренды (производители)"
3636
+
3637
+ #: wpsc-includes/checkout.class.php:45
3638
+ #, php-format
3639
+ msgid "Tax Included (%s%%)"
3640
+ msgstr "Налог включён (%s%%)"
3641
+
3642
+ #: wpsc-includes/checkout.class.php:47
3643
+ msgid "Tax Included"
3644
+ msgstr "Налог включён"
3645
+
3646
+ #: wpsc-includes/checkout.class.php:50
3647
+ msgid "Tax"
3648
+ msgstr "Налог"
3649
+
3650
+ #: wpsc-includes/display.functions.php:90
3651
+ msgid "People who bought this item also bought"
3652
+ msgstr "Купившие этот товар так же покупали"
3653
+
3654
+ #: wpsc-includes/display.functions.php:138
3655
+ msgid "Updating"
3656
+ msgstr "Обновление"
3657
+
3658
+ #: wpsc-includes/display.functions.php:154
3659
+ msgid "Continue Shopping"
3660
+ msgstr "Продолжить покупки"
3661
+
3662
+ #: wpsc-includes/display.functions.php:255
3663
+ 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."
3664
+ msgstr "В качестве группы по умолчанию вы используете демонстрационную группу, и в ней нет товаров. Нужно назначить группой по умолчанию какую-нибудь другую. Сделать это можно на странице &laquo;Настройки магазина&raquo;."
3665
+
3666
+ #: wpsc-includes/display.functions.php:257
3667
+ 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."
3668
+ msgstr "Эта группа используется в качестве группы по умолчанию. Нужно либо добавить в неё несколько товаров, либо назначить группой по умолчанию ту, которая содержит товары."
3669
+
3670
+ #: wpsc-includes/form-display.functions.php:65
3671
+ msgid "Select Parent"
3672
+ msgstr "Выберите родительскую категорию"
3673
+
3674
+ #: wpsc-includes/form-display.functions.php:137
3675
+ msgid "Choose a downloadable file for this product:"
3676
+ msgstr "Выберите скачиваемый файл для этого товара:"
3677
+
3678
+ #: wpsc-includes/form-display.functions.php:181
3679
+ msgid "Choose a downloadable file for this variation"
3680
+ msgstr "Выберите скачиваемый файл для этой вариации"
3681
+
3682
+ #: wpsc-includes/form-display.functions.php:187
3683
+ msgid "No Product"
3684
+ msgstr "Нет товаров"
3685
+
3686
+ #: wpsc-includes/install_and_update.functions.php:60
3687
+ msgid "Example category"
3688
+ msgstr "Пример категории"
3689
+
3690
+ #: wpsc-includes/install_and_update.functions.php:60
3691
+ #: wpsc-includes/install_and_update.functions.php:61
3692
+ msgid "Example details"
3693
+ msgstr "Пример описания"
3694
+
3695
+ #: wpsc-includes/install_and_update.functions.php:61
3696
+ msgid "Example Brand"
3697
+ msgstr "Пример бренда (производителя)"
3698
+
3699
+ #: wpsc-includes/install_and_update.functions.php:69
3700
+ msgid "Accepted Payment"
3701
+ msgstr "Оплата получена"
3702
+
3703
+ #: wpsc-includes/install_and_update.functions.php:70
3704
+ msgid "Job Dispatched"
3705
+ msgstr "Обработано"
3706
+
3707
+ #: wpsc-includes/install_and_update.functions.php:89
3708
+ msgid "product image width"
3709
+ msgstr "ширина изображения товара"
3710
+
3711
+ #: wpsc-includes/install_and_update.functions.php:90
3712
+ msgid "product image height"
3713
+ msgstr "высота изображения товара"
3714
+
3715
+ #: wpsc-includes/install_and_update.functions.php:92
3716
+ msgid "product group image width"
3717
+ msgstr "ширина изображения категории"
3718
+
3719
+ #: wpsc-includes/install_and_update.functions.php:93
3720
+ msgid "product group image height"
3721
+ msgstr "высота изображения категории"
3722
+
3723
+ #: wpsc-includes/install_and_update.functions.php:97
3724
+ msgid "The location of the checkout page"
3725
+ msgstr "Адрес страницы заказа"
3726
+
3727
+ #: wpsc-includes/install_and_update.functions.php:98
3728
+ msgid "The location of the transaction detail page"
3729
+ msgstr "Позиция в журнале транзакций"
3730
+
3731
+ #: wpsc-includes/install_and_update.functions.php:99
3732
+ msgid "The payment gateway to use"
3733
+ msgstr "Используемый gateway для оплаты"
3734
+
3735
+ #: wpsc-includes/install_and_update.functions.php:117
3736
+ msgid "the GST rate"
3737
+ msgstr "ставка GST"
3738
+
3739
+ #: wpsc-includes/install_and_update.functions.php:119
3740
+ msgid "the download limit"
3741
+ msgstr "Ограничение на скачивание до"
3742
+
3743
+ #: wpsc-includes/install_and_update.functions.php:121
3744
+ msgid "Display or hide postage and packaging"
3745
+ msgstr "Отображать/не отображать отправку почтой и упаковку"
3746
+
3747
+ #: wpsc-includes/install_and_update.functions.php:123
3748
+ msgid "Display or hide specials on the sidebar"
3749
+ msgstr "Отображать/не отображать специальное в боковой колонке"
3750
+
3751
+ #: wpsc-includes/install_and_update.functions.php:126
3752
+ msgid "Default postage and packaging"
3753
+ msgstr "Отправка почтой и упаковка по умолчанию"
3754
+
3755
+ #: wpsc-includes/install_and_update.functions.php:128
3756
+ msgid "Email address that purchase log is sent to"
3757
+ msgstr "E-mail, на который отправляется отчёт о покупке"
3758
+
3759
+ #: wpsc-includes/install_and_update.functions.php:129
3760
+ msgid "Email address that purchase reports are sent from"
3761
+ msgstr "E-mail, с которого отправляются отчёты о покупках"
3762
+
3763
+ #: wpsc-includes/install_and_update.functions.php:130
3764
+ msgid "Checkout terms and conditions"
3765
+ msgstr "Соглашения и условия заказа"
3766
+
3767
+ #: wpsc-includes/install_and_update.functions.php:132
3768
+ msgid "Google Merchant Key"
3769
+ msgstr "Ключ Google Merchant"
3770
+
3771
+ #: wpsc-includes/install_and_update.functions.php:133
3772
+ msgid "Google Merchant ID"
3773
+ msgstr "Google Merchant ID"
3774
+
3775
+ #: wpsc-includes/install_and_update.functions.php:135
3776
+ msgid "Default Brand"
3777
+ msgstr "Бренд (производитель) по умолчанию"
3778
+
3779
+ #: wpsc-includes/install_and_update.functions.php:136
3780
+ msgid "Select what product group you want to display on the products page"
3781
+ msgstr "Выберите, какую группу товаров вы хотите отображать на странице товаров"
3782
+
3783
+ #: wpsc-includes/install_and_update.functions.php:149
3784
+ #: wpsc-includes/install_and_update.functions.php:155
3785
+ msgid "paypal business"
3786
+ msgstr "бизнес paypal"
3787
+
3788
+ #: wpsc-includes/install_and_update.functions.php:150
3789
+ #: wpsc-includes/install_and_update.functions.php:151
3790
+ #: wpsc-includes/install_and_update.functions.php:158
3791
+ msgid "paypal url"
3792
+ msgstr "ссылка paypal"
3793
+
3794
+ #: wpsc-includes/install_and_update.functions.php:207
3795
+ msgid "Products Page"
3796
+ msgstr "Страница товаров"
3797
+
3798
+ #: wpsc-includes/install_and_update.functions.php:225
3799
+ msgid "Transaction Results"
3800
+ msgstr "Результаты транзакции"
3801
+
3802
+ #: wpsc-includes/install_and_update.functions.php:231
3803
+ msgid "Your Account"
3804
+ msgstr "Ваш аккаунт"
3805
+
3806
+ #: wpsc-includes/install_and_update.functions.php:649
3807
+ msgid "1. Your billing/contact details"
3808
+ msgstr "1. Ваши детали счёта/адреса"
3809
+
3810
+ #: wpsc-includes/install_and_update.functions.php:655
3811
+ #: wpsc-includes/install_and_update.functions.php:664
3812
+ msgid "Postal Code"
3813
+ msgstr "Индекс"
3814
+
3815
+ #: wpsc-includes/install_and_update.functions.php:657
3816
+ msgid "2. Shipping details"
3817
+ msgstr "2. Детали доставки"
3818
+
3819
+ #: wpsc-includes/install_and_update.functions.php:662
3820
+ msgid "State"
3821
+ msgstr "Штат"
3822
+
3823
+ #: wpsc-includes/misc.functions.php:46
3824
+ msgid "<strong>ERROR</strong>: Please enter a username."
3825
+ msgstr "<strong>ОШИБКА</strong>: Пожалуйста, введите логин."
3826
+
3827
+ #: wpsc-includes/misc.functions.php:48
3828
+ msgid "<strong>ERROR</strong>: This username is invalid. Please enter a valid username."
3829
+ msgstr "<strong>ОШИБКА</strong>: Этот логин некорректен. Пожалуйста, введите корректный логин."
3830
+
3831
+ #: wpsc-includes/misc.functions.php:51
3832
+ msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
3833
+ msgstr "<strong>ОШИБКА</strong>: Пользователь с таким логином уже зарегистрирован. Пожалуйста, выберите другой."
3834
+
3835
+ #: wpsc-includes/misc.functions.php:56
3836
+ msgid "<strong>ERROR</strong>: Please type your e-mail address."
3837
+ msgstr "<strong>ОШИБКА</strong>: Пожалуйста, введите ваш адрес e-mail."
3838
+
3839
+ #: wpsc-includes/misc.functions.php:58
3840
+ msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
3841
+ msgstr "<strong>ОШИБКА</strong>: Некорректный адрес e-mail."
3842
+
3843
+ #: wpsc-includes/misc.functions.php:61
3844
+ msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
3845
+ msgstr "<strong>ОШИБКА</strong>: Этот e-mail уже зарегистрирован. Пожалуйста, введите другой."
3846
+
3847
+ #: wpsc-includes/misc.functions.php:69
3848
+ #, php-format
3849
+ msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
3850
+ msgstr "<strong>ОШИБКА</strong>: Регистрация не удалась. Пожалуйста, свяжитесь с <a href=\"mailto:%s\">администратором</a>!"
3851
+
3852
+ #: wpsc-includes/processing.functions.php:30
3853
+ #: wpsc-includes/processing.functions.php:36
3854
+ #: wpsc-includes/processing.functions.php:46
3855
+ msgid " is out of stock"
3856
+ msgstr " закончился"
3857
+
3858
+ #: wpsc-includes/processing.functions.php:30
3859
+ #: wpsc-includes/processing.functions.php:36
3860
+ #: wpsc-includes/processing.functions.php:46
3861
+ msgid "Remaining stock of "
3862
+ msgstr "Единиц товара на складе "
3863
+
3864
+ #: wpsc-includes/processing.functions.php:30
3865
+ msgid " and its variations is 0. Product was unpublished."
3866
+ msgstr " и его вариаций осталось 0. Товар убран со страниц сайта."
3867
+
3868
+ #: wpsc-includes/processing.functions.php:36
3869
+ msgid " is 0. Product variation was set to invisible."
3870
+ msgstr " осталось 0. Вариация товара скрыта."
3871
+
3872
+ #: wpsc-includes/processing.functions.php:46
3873
+ msgid " is 0. Product was unpublished."
3874
+ msgstr " осталось 0. Товар убран со страниц сайта."
3875
+
3876
+ #: wpsc-includes/processing.functions.php:916
3877
+ msgid "This product has no available stock"
3878
+ msgstr "Этого товара нет на складе."
3879
+
3880
+ #: wpsc-includes/processing.functions.php:964
3881
+ msgid "One or more of your shipping modules does not support products without a weight set. Please either disable shipping for this product or give it a weight"
3882
+ msgstr "Один или несколько модулей доставки не поддерживают товары, вес которых не указан. Пожалуйста, отключите доставку для этих товаров или укажите их вес."
3883
+
3884
+ #: wpsc-includes/purchaselogs.class.php:596
3885
+ #, php-format
3886
+ msgid "Release downloads locked to this IP address %s"
3887
+ msgstr "Разблокировать ссылки, заблокированные для IP-адреса %s"
3888
+
3889
+ #: wpsc-includes/purchaselogs.class.php:816
3890
+ msgid "Thanks, the purchase log record has been deleted"
3891
+ msgstr "Спасибо, журнал покупок удалён"
3892
+
3893
+ #: wpsc-includes/rss_template.php:7
3894
+ msgid "WP e-Commerce"
3895
+ msgstr "WP e-Commerce"
3896
+
3897
+ #: wpsc-includes/upgrades.php:122
3898
+ msgid "Visit upgrade homepage"
3899
+ msgstr "Посетить страницу расширения"
3900
+
3901
+ #: wpsc-includes/upgrades.php:127
3902
+ msgid "Visit author homepage"
3903
+ msgstr "Посетить страницу автора"
3904
+
3905
+ #: wpsc-includes/upgrades.php:131
3906
+ #, php-format
3907
+ msgid "By %s"
3908
+ msgstr "Автора %s"
3909
+
3910
+ #: wpsc-includes/variations.class.php:216
3911
+ msgid "Variation"
3912
+ msgstr "Вариации"
3913
+
3914
+ #: wpsc-includes/variations.class.php:217
3915
+ msgid "Stock"
3916
+ msgstr "Склад"
3917
+
3918
+ #: wpsc-includes/variations.class.php:220
3919
+ msgid "More"
3920
+ msgstr "Далее"
3921
+
3922
+ #: wpsc-includes/variations.class.php:352
3923
+ msgid "Weight Settings"
3924
+ msgstr "Настройки веса"
3925
+
3926
+ #: wpsc-includes/wpsc_query.php:939
3927
+ msgid "Save"
3928
+ msgstr "Сохранить"
3929
+
languages/wpsc-zh_CN.mo ADDED
Binary file
languages/wpsc-zh_CN.po ADDED
@@ -0,0 +1,3895 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: \n"
9
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-e-commerce\n"
10
+ "POT-Creation-Date: 2010-06-15 23:21+0000\n"
11
+ "PO-Revision-Date: 2010-06-30 03:31+0830\n"
12
+ "Last-Translator: Anson Ho <gz.anson@gmail.com>\n"
13
+ "Language-Team: Anson Ho <gz.anson@gmail.com>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
+ "X-Poedit-Language: Chinese\n"
19
+ "X-Poedit-Country: CHINA\n"
20
+ "X-Poedit-SourceCharset: utf-8\n"
21
+
22
+ #: admin-form-functions.php:10
23
+ msgid "You are editing the &quot;[categorisation]&quot; Category"
24
+ msgstr "您正在编辑 &quot;[categorisation]&quot; 类别"
25
+
26
+ #: admin-form-functions.php:11
27
+ #: wpsc-admin/display-groups.page.php:759
28
+ msgid "+ Add new category to the &quot;[categorisation]&quot; Group"
29
+ msgstr "添加新类别到 &quot;[categorisation]&quot; 组别"
30
+
31
+ #: admin-form-functions.php:25
32
+ #: admin-form-functions.php:279
33
+ #: admin-form-functions.php:867
34
+ #: display-ecommerce-subs.php:9
35
+ #: js/tinymce3/window.php:105
36
+ #: user-log.php:200
37
+ #: user-log.php:359
38
+ #: wpsc-admin/display-groups.page.php:698
39
+ #: wpsc-admin/display-groups.page.php:774
40
+ #: wpsc-admin/display-upgrades.page.php:88
41
+ #: wpsc-admin/display-variations.page.php:13
42
+ #: wpsc-admin/display-variations.page.php:156
43
+ #: wpsc-admin/includes/display-items-functions.php:792
44
+ #: wpsc-admin/includes/display-items-functions.php:804
45
+ #: wpsc-admin/includes/settings-pages/presentation.php:457
46
+ msgid "Name"
47
+ msgstr "名称"
48
+
49
+ #: admin-form-functions.php:34
50
+ #: js/tinymce3/window.php:109
51
+ #: wpsc-admin/display-groups.page.php:782
52
+ #: wpsc-admin/includes/display-items-functions.php:807
53
+ msgid "Description"
54
+ msgstr "简介"
55
+
56
+ #: admin-form-functions.php:44
57
+ msgid "Category Parent"
58
+ msgstr "上级分类"
59
+
60
+ #: admin-form-functions.php:85
61
+ msgid "Category&nbsp;Image"
62
+ msgstr "分类&nbsp;图片"
63
+
64
+ #: admin-form-functions.php:101
65
+ #: admin-form-functions.php:110
66
+ #: admin-form-functions.php:198
67
+ #: wpsc-admin/display-groups.page.php:812
68
+ #: wpsc-admin/display-groups.page.php:865
69
+ #: wpsc-admin/includes/display-items-functions.php:675
70
+ #: wpsc-admin/includes/settings-pages/presentation.php:864
71
+ #: wpsc-admin/includes/settings-pages/presentation.php:875
72
+ #: wpsc-admin/includes/settings-pages/presentation.php:884
73
+ #: wpsc-admin/includes/settings-pages/presentation.php:945
74
+ msgid "Height"
75
+ msgstr "高度"
76
+
77
+ #: admin-form-functions.php:101
78
+ #: admin-form-functions.php:110
79
+ #: admin-form-functions.php:199
80
+ #: wpsc-admin/display-groups.page.php:812
81
+ #: wpsc-admin/display-groups.page.php:866
82
+ #: wpsc-admin/includes/display-items-functions.php:687
83
+ #: wpsc-admin/includes/settings-pages/presentation.php:865
84
+ #: wpsc-admin/includes/settings-pages/presentation.php:875
85
+ #: wpsc-admin/includes/settings-pages/presentation.php:884
86
+ #: wpsc-admin/includes/settings-pages/presentation.php:946
87
+ msgid "Width"
88
+ msgstr "宽度"
89
+
90
+ #: admin-form-functions.php:102
91
+ #: admin-form-functions.php:111
92
+ #: wpsc-admin/display-groups.page.php:813
93
+ 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>."
94
+ msgstr "你可以上传每个组别的图片。如果要显示组别介绍,请在<a href=\"admin.php?page=wpsc-settings&tab=presentation\">显示设置</a>下设置。"
95
+
96
+ #: admin-form-functions.php:119
97
+ msgid "Delete Image"
98
+ msgstr "删除图片"
99
+
100
+ #: admin-form-functions.php:133
101
+ #: wpsc-admin/display-groups.page.php:16
102
+ #: wpsc-admin/includes/settings-pages/general.php:83
103
+ msgid "Target Markets"
104
+ msgstr "目标市场"
105
+
106
+ #: admin-form-functions.php:138
107
+ #: wpsc-admin/display-groups.page.php:22
108
+ #: wpsc-admin/includes/settings-pages/general.php:89
109
+ msgid ""
110
+ "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.\r\n"
111
+ "\t\t\t"
112
+ msgstr ""
113
+ "因为你的服务器打开了PHP扩展功能Suhosin,所以目标市场功能已被禁用。如果您需要使用目标市场功能,请关闭Suhosin功能,如果不能做到这一点,请你联系托管服务提供商。\r\n"
114
+ "\t\t\t"
115
+
116
+ #: admin-form-functions.php:164
117
+ #: wpsc-admin/display-groups.page.php:822
118
+ #: wpsc-admin/includes/settings-pages/presentation.php:57
119
+ msgid "Presentation Settings"
120
+ msgstr "显示设置"
121
+
122
+ #: admin-form-functions.php:165
123
+ #: wpsc-admin/display-groups.page.php:823
124
+ msgid "To over-ride the presentation settings for this group you can enter in your prefered settings here"
125
+ msgstr "您为这个组别可以输入您喜欢的设置,优先于显示设置的设定。"
126
+
127
+ #: admin-form-functions.php:171
128
+ #: wpsc-admin/display-groups.page.php:831
129
+ #: wpsc-admin/includes/settings-pages/presentation.php:288
130
+ msgid "Catalog View"
131
+ msgstr "目录视图"
132
+
133
+ #: admin-form-functions.php:175
134
+ #: wpsc-includes/form-display.functions.php:6
135
+ msgid "Please select"
136
+ msgstr "请选择"
137
+
138
+ #: admin-form-functions.php:176
139
+ #: wpsc-admin/display-groups.page.php:835
140
+ #: wpsc-admin/includes/settings-pages/presentation.php:346
141
+ msgid "Default View"
142
+ msgstr "默认视图"
143
+
144
+ #: admin-form-functions.php:178
145
+ #: admin-form-functions.php:180
146
+ #: wpsc-admin/display-groups.page.php:839
147
+ #: wpsc-admin/display-groups.page.php:843
148
+ #: wpsc-admin/includes/settings-pages/presentation.php:350
149
+ #: wpsc-admin/includes/settings-pages/presentation.php:354
150
+ msgid "List View"
151
+ msgstr "列表视图"
152
+
153
+ #: admin-form-functions.php:183
154
+ #: admin-form-functions.php:185
155
+ #: wpsc-admin/display-groups.page.php:849
156
+ #: wpsc-admin/display-groups.page.php:853
157
+ #: wpsc-admin/includes/settings-pages/presentation.php:361
158
+ #: wpsc-admin/includes/settings-pages/presentation.php:365
159
+ msgid "Grid View"
160
+ msgstr "网格视图"
161
+
162
+ #: admin-form-functions.php:195
163
+ #: wpsc-admin/display-groups.page.php:863
164
+ msgid "Thumbnail&nbsp;Size"
165
+ msgstr "缩略图&nbsp;尺寸"
166
+
167
+ #: admin-form-functions.php:208
168
+ #: wpsc-admin/display-groups.page.php:872
169
+ #: wpsc-admin/display-sales-logs.php:317
170
+ #: wpsc-admin/display-sales-logs.php:318
171
+ msgid "Checkout Settings"
172
+ msgstr "结算设置"
173
+
174
+ #: admin-form-functions.php:217
175
+ #: wpsc-admin/display-groups.page.php:878
176
+ msgid "This category requires additional checkout form fields"
177
+ msgstr "该类别需要在结算表单添加附加字段"
178
+
179
+ #: admin-form-functions.php:222
180
+ msgid "None"
181
+ msgstr "无"
182
+
183
+ #: admin-form-functions.php:247
184
+ #: wpsc-admin/display-groups.page.php:906
185
+ msgid "Products in this category use the billing address to calculate shipping"
186
+ msgstr "此类别的商品使用支付地址计算运费"
187
+
188
+ #: admin-form-functions.php:250
189
+ #: display-coupons.php:502
190
+ #: display-coupons.php:526
191
+ #: merchants/chronopay.php:427
192
+ #: merchants/paypal_multiple.php:478
193
+ #: merchants/paypal_multiple.php:486
194
+ #: merchants/paypal_multiple.php:502
195
+ #: wpsc-admin/display-groups.page.php:908
196
+ #: wpsc-admin/includes/display-items-functions.php:823
197
+ #: wpsc-admin/includes/settings-pages/admin.php:38
198
+ #: wpsc-admin/includes/settings-pages/admin.php:64
199
+ #: wpsc-admin/includes/settings-pages/checkout.php:71
200
+ #: wpsc-admin/includes/settings-pages/checkout.php:95
201
+ #: wpsc-admin/includes/settings-pages/checkout.php:118
202
+ #: wpsc-admin/includes/settings-pages/checkout.php:143
203
+ #: wpsc-admin/includes/settings-pages/general.php:72
204
+ #: wpsc-admin/includes/settings-pages/general.php:197
205
+ #: wpsc-admin/includes/settings-pages/presentation.php:108
206
+ #: wpsc-admin/includes/settings-pages/presentation.php:139
207
+ #: wpsc-admin/includes/settings-pages/presentation.php:163
208
+ #: wpsc-admin/includes/settings-pages/presentation.php:187
209
+ #: wpsc-admin/includes/settings-pages/presentation.php:210
210
+ #: wpsc-admin/includes/settings-pages/presentation.php:232
211
+ #: wpsc-admin/includes/settings-pages/presentation.php:483
212
+ #: wpsc-admin/includes/settings-pages/presentation.php:534
213
+ #: wpsc-admin/includes/settings-pages/presentation.php:575
214
+ #: wpsc-admin/includes/settings-pages/presentation.php:611
215
+ #: wpsc-admin/includes/settings-pages/presentation.php:716
216
+ #: wpsc-admin/includes/settings-pages/presentation.php:740
217
+ #: wpsc-admin/includes/settings-pages/presentation.php:771
218
+ #: wpsc-admin/includes/settings-pages/presentation.php:796
219
+ #: wpsc-admin/includes/settings-pages/presentation.php:823
220
+ #: wpsc-admin/includes/settings-pages/presentation.php:849
221
+ #: wpsc-admin/includes/settings-pages/presentation.php:909
222
+ #: wpsc-admin/includes/settings-pages/presentation.php:935
223
+ #: wpsc-admin/includes/settings-pages/presentation.php:979
224
+ #: wpsc-admin/includes/settings-pages/presentation.php:1026
225
+ #: wpsc-admin/includes/settings-pages/shipping.php:87
226
+ #: wpsc-admin/includes/settings-pages/shipping.php:122
227
+ #: wpsc-admin/includes/settings-pages/shipping.php:152
228
+ msgid "Yes"
229
+ msgstr "是"
230
+
231
+ #: admin-form-functions.php:251
232
+ #: display-coupons.php:503
233
+ #: display-coupons.php:527
234
+ #: merchants/chronopay.php:428
235
+ #: merchants/paypal_multiple.php:479
236
+ #: merchants/paypal_multiple.php:487
237
+ #: merchants/paypal_multiple.php:503
238
+ #: wpsc-admin/display-groups.page.php:909
239
+ #: wpsc-admin/includes/display-items-functions.php:825
240
+ #: wpsc-admin/includes/settings-pages/admin.php:39
241
+ #: wpsc-admin/includes/settings-pages/admin.php:65
242
+ #: wpsc-admin/includes/settings-pages/checkout.php:72
243
+ #: wpsc-admin/includes/settings-pages/checkout.php:97
244
+ #: wpsc-admin/includes/settings-pages/checkout.php:120
245
+ #: wpsc-admin/includes/settings-pages/checkout.php:145
246
+ #: wpsc-admin/includes/settings-pages/general.php:74
247
+ #: wpsc-admin/includes/settings-pages/general.php:200
248
+ #: wpsc-admin/includes/settings-pages/presentation.php:109
249
+ #: wpsc-admin/includes/settings-pages/presentation.php:140
250
+ #: wpsc-admin/includes/settings-pages/presentation.php:164
251
+ #: wpsc-admin/includes/settings-pages/presentation.php:188
252
+ #: wpsc-admin/includes/settings-pages/presentation.php:212
253
+ #: wpsc-admin/includes/settings-pages/presentation.php:234
254
+ #: wpsc-admin/includes/settings-pages/presentation.php:484
255
+ #: wpsc-admin/includes/settings-pages/presentation.php:535
256
+ #: wpsc-admin/includes/settings-pages/presentation.php:576
257
+ #: wpsc-admin/includes/settings-pages/presentation.php:612
258
+ #: wpsc-admin/includes/settings-pages/presentation.php:717
259
+ #: wpsc-admin/includes/settings-pages/presentation.php:741
260
+ #: wpsc-admin/includes/settings-pages/presentation.php:772
261
+ #: wpsc-admin/includes/settings-pages/presentation.php:797
262
+ #: wpsc-admin/includes/settings-pages/presentation.php:824
263
+ #: wpsc-admin/includes/settings-pages/presentation.php:850
264
+ #: wpsc-admin/includes/settings-pages/presentation.php:910
265
+ #: wpsc-admin/includes/settings-pages/presentation.php:936
266
+ #: wpsc-admin/includes/settings-pages/presentation.php:980
267
+ #: wpsc-admin/includes/settings-pages/presentation.php:1027
268
+ #: wpsc-admin/includes/settings-pages/shipping.php:88
269
+ #: wpsc-admin/includes/settings-pages/shipping.php:123
270
+ #: wpsc-admin/includes/settings-pages/shipping.php:153
271
+ msgid "No"
272
+ msgstr "否"
273
+
274
+ #: admin-form-functions.php:261
275
+ msgid "Update Category"
276
+ msgstr "更新类别"
277
+
278
+ #: admin-form-functions.php:262
279
+ #: admin-form-functions.php:300
280
+ #: admin-form-functions.php:319
281
+ #: shipping/tablerate.php:44
282
+ #: shipping/weightrate.php:35
283
+ #: wpsc-admin/admin.php:347
284
+ #: wpsc-admin/ajax-and-init.php:1902
285
+ #: wpsc-admin/display-groups.page.php:669
286
+ #: wpsc-admin/display-items.page.php:277
287
+ #: wpsc-admin/display-items.page.php:401
288
+ #: wpsc-admin/display-sales-logs.php:425
289
+ #: wpsc-admin/display-sales-logs.php:550
290
+ #: wpsc-admin/display-variations.page.php:178
291
+ #: wpsc-admin/display-variations.page.php:191
292
+ #: wpsc-admin/display-variations.page.php:213
293
+ #: wpsc-admin/includes/display-items-functions.php:351
294
+ #: wpsc-admin/includes/display-items-functions.php:797
295
+ #: wpsc-admin/includes/settings-pages/checkout.php:248
296
+ msgid "Delete"
297
+ msgstr "删除"
298
+
299
+ #: admin-form-functions.php:288
300
+ #: wpsc-admin/display-variations.page.php:164
301
+ msgid "Variation Values"
302
+ msgstr "可变属性值"
303
+
304
+ #: admin-form-functions.php:307
305
+ #: wpsc-admin/admin.php:236
306
+ #: wpsc-admin/display-variations.page.php:218
307
+ #: wpsc-admin/includes/settings-pages/checkout.php:175
308
+ msgid "Add"
309
+ msgstr "增加"
310
+
311
+ #: admin-form-functions.php:318
312
+ #: display-coupons.php:389
313
+ #: display-coupons.php:450
314
+ #: wpsc-admin/display-groups.page.php:106
315
+ #: wpsc-admin/display-groups.page.php:706
316
+ #: wpsc-admin/display-groups.page.php:719
317
+ #: wpsc-admin/display-variations.page.php:14
318
+ #: wpsc-admin/display-variations.page.php:111
319
+ #: wpsc-includes/variations.class.php:343
320
+ #: wpsc-includes/wpsc_query.php:226
321
+ msgid "Edit"
322
+ msgstr "编辑"
323
+
324
+ #: admin-form-functions.php:339
325
+ #: display-coupons.php:174
326
+ #: display-coupons.php:365
327
+ #: wpsc-admin/display-sales-logs.php:247
328
+ msgid "Coupon Code"
329
+ msgstr "优惠券代码"
330
+
331
+ #: admin-form-functions.php:340
332
+ #: display-coupons.php:177
333
+ #: display-coupons.php:369
334
+ #: themes/default/shopping_cart_page.php:190
335
+ #: themes/iShop/shopping_cart_page.php:163
336
+ #: themes/marketplace/shopping_cart_page.php:161
337
+ #: transaction_result_functions.php:207
338
+ #: transaction_result_functions.php:215
339
+ #: wpsc-admin/ajax-and-init.php:1146
340
+ #: wpsc-admin/ajax-and-init.php:1152
341
+ #: wpsc-admin/display-sales-logs.php:250
342
+ msgid "Discount"
343
+ msgstr "折扣内容"
344
+
345
+ #: admin-form-functions.php:341
346
+ #: display-coupons.php:180
347
+ #: display-coupons.php:373
348
+ msgid "Start"
349
+ msgstr "开始日期"
350
+
351
+ #: admin-form-functions.php:342
352
+ #: display-coupons.php:183
353
+ #: display-coupons.php:377
354
+ msgid "Expiry"
355
+ msgstr "终止日期"
356
+
357
+ #: admin-form-functions.php:343
358
+ #: display-coupons.php:186
359
+ msgid "Use Once"
360
+ msgstr "一次性"
361
+
362
+ #: admin-form-functions.php:344
363
+ #: display-coupons.php:189
364
+ #: display-coupons.php:381
365
+ msgid "Active"
366
+ msgstr "激活"
367
+
368
+ #: admin-form-functions.php:345
369
+ #: display-coupons.php:193
370
+ #: display-coupons.php:287
371
+ #: display-coupons.php:385
372
+ msgid "Apply On All Products"
373
+ msgstr "适用于所有商品"
374
+
375
+ #: admin-form-functions.php:554
376
+ msgid "Update Coupon"
377
+ msgstr "更新优惠券"
378
+
379
+ #: admin-form-functions.php:555
380
+ msgid "Delete Coupon"
381
+ msgstr "删除优惠券"
382
+
383
+ #: admin-form-functions.php:566
384
+ #: wpsc-admin/admin.php:137
385
+ msgid "Settings"
386
+ msgstr "设置"
387
+
388
+ #: admin-form-functions.php:570
389
+ #: wpsc-admin/display-sales-logs.php:316
390
+ msgid "Shop Settings"
391
+ msgstr "商店设置"
392
+
393
+ #: admin-form-functions.php:571
394
+ msgid "Money and Payment"
395
+ msgstr "货币和支付"
396
+
397
+ #: admin-form-functions.php:572
398
+ msgid "Checkout Page Settings"
399
+ msgstr "结算页面设置"
400
+
401
+ #: admin-form-functions.php:590
402
+ #: admin-form-functions.php:591
403
+ msgid "product"
404
+ msgstr "商品"
405
+
406
+ #: admin-form-functions.php:590
407
+ #: admin-form-functions.php:591
408
+ msgid "products"
409
+ msgstr "商品"
410
+
411
+ #: admin-form-functions.php:595
412
+ #: admin-form-functions.php:596
413
+ msgid "group"
414
+ msgstr "组别"
415
+
416
+ #: admin-form-functions.php:595
417
+ #: admin-form-functions.php:596
418
+ msgid "groups"
419
+ msgstr "组别"
420
+
421
+ #: admin-form-functions.php:600
422
+ #: admin-form-functions.php:601
423
+ msgid "sale"
424
+ msgstr "销售"
425
+
426
+ #: admin-form-functions.php:600
427
+ #: admin-form-functions.php:601
428
+ msgid "sales"
429
+ msgstr "销售"
430
+
431
+ #: admin-form-functions.php:607
432
+ msgid "variation"
433
+ msgstr "可变属性"
434
+
435
+ #: admin-form-functions.php:607
436
+ msgid "variations"
437
+ msgstr "可变属性"
438
+
439
+ #: admin-form-functions.php:611
440
+ #: admin-form-functions.php:612
441
+ #: admin-form-functions.php:615
442
+ msgid "transaction"
443
+ msgstr "项目"
444
+
445
+ #: admin-form-functions.php:611
446
+ #: admin-form-functions.php:612
447
+ #: admin-form-functions.php:615
448
+ msgid "transactions"
449
+ msgstr "项目"
450
+
451
+ #: admin-form-functions.php:624
452
+ msgid "Current Month"
453
+ msgstr "当月"
454
+
455
+ #: admin-form-functions.php:629
456
+ msgid "At a Glance"
457
+ msgstr "一览"
458
+
459
+ #: admin-form-functions.php:659
460
+ msgid "Pending"
461
+ msgstr "处理中"
462
+
463
+ #: admin-form-functions.php:674
464
+ msgid "Closed"
465
+ msgstr "关闭"
466
+
467
+ #: admin-form-functions.php:682
468
+ #: admin-form-functions.php:690
469
+ #: wpsc-admin/includes/display-items-functions.php:350
470
+ msgid "Add New Product"
471
+ msgstr "添加新商品"
472
+
473
+ #: admin-form-functions.php:682
474
+ msgid "Here you can add products, groups or variations"
475
+ msgstr "你可以在这里添加商品,组别和可变属性"
476
+
477
+ #: admin-form-functions.php:691
478
+ msgid "Right Now"
479
+ msgstr "马上"
480
+
481
+ #: admin-form-functions.php:696
482
+ 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."
483
+ msgstr "你有<a href=\"admin.php?page=wpsc-edit-products\">:productcount:</a>个商品,有<a href=\"admin.php?page=wpsc-edit-groups\">:groupcount:</a>个组别。当月销售单数 :salecount: 和总销售额 :monthtotal: 你的总销售额 :overaltotal:。你有 :pendingcount: 张订单等待处理。"
484
+
485
+ #: admin-form-functions.php:698
486
+ msgid "You are using the :theme: style. This is WP e-Commerce :versionnumber:."
487
+ msgstr "你正在使用:theme: 主题。当前WP e-Commerce版本 :versionnumber:。中文技术支持:<a href=\"http://www.anson-ho.com\">Anson Ho</a>"
488
+
489
+ #: admin-form-functions.php:729
490
+ msgid "Packing Slip"
491
+ msgstr "装箱单"
492
+
493
+ #: admin-form-functions.php:730
494
+ msgid "Order"
495
+ msgstr "订单"
496
+
497
+ #: admin-form-functions.php:865
498
+ #: themes/default/list_view.php:137
499
+ #: themes/default/products_page.php:197
500
+ #: themes/default/shopping_cart_page.php:15
501
+ #: themes/default/single_product.php:131
502
+ #: themes/iShop/list_view.php:138
503
+ #: themes/iShop/products_page.php:196
504
+ #: themes/iShop/shopping_cart_page.php:14
505
+ #: themes/iShop/single_product.php:134
506
+ #: themes/marketplace/list_view.php:139
507
+ #: themes/marketplace/products_page.php:199
508
+ #: themes/marketplace/shopping_cart_page.php:14
509
+ #: themes/marketplace/single_product.php:136
510
+ #: user-log.php:204
511
+ #: wpsc-includes/display.functions.php:47
512
+ msgid "Quantity"
513
+ msgstr "数量"
514
+
515
+ #: admin-form-functions.php:870
516
+ #: js/tinymce3/window.php:113
517
+ #: themes/default/cart_widget.php:25
518
+ #: themes/default/products_page.php:214
519
+ #: themes/default/products_page.php:216
520
+ #: themes/default/shopping_cart_page.php:19
521
+ #: themes/default/single_product.php:148
522
+ #: themes/default/single_product.php:150
523
+ #: themes/iShop/cart_widget.php:25
524
+ #: themes/iShop/products_page.php:212
525
+ #: themes/iShop/products_page.php:214
526
+ #: themes/iShop/shopping_cart_page.php:18
527
+ #: themes/iShop/single_product.php:151
528
+ #: themes/iShop/single_product.php:153
529
+ #: themes/marketplace/cart_widget.php:25
530
+ #: themes/marketplace/products_page.php:216
531
+ #: themes/marketplace/products_page.php:218
532
+ #: themes/marketplace/shopping_cart_page.php:18
533
+ #: themes/marketplace/single_product.php:153
534
+ #: themes/marketplace/single_product.php:155
535
+ #: user-log.php:60
536
+ #: user-log.php:208
537
+ #: wpsc-admin/includes/display-items-functions.php:189
538
+ #: wpsc-admin/includes/display-items-functions.php:242
539
+ #: wpsc-admin/includes/settings-pages/presentation.php:458
540
+ #: wpsc-includes/variations.class.php:218
541
+ msgid "Price"
542
+ msgstr "价格"
543
+
544
+ #: admin-form-functions.php:872
545
+ #: themes/default/cart_widget.php:40
546
+ #: themes/default/shopping_cart_page.php:17
547
+ #: themes/iShop/cart_widget.php:40
548
+ #: themes/iShop/shopping_cart_page.php:16
549
+ #: themes/marketplace/cart_widget.php:40
550
+ #: themes/marketplace/shopping_cart_page.php:16
551
+ #: transaction_result_functions.php:176
552
+ #: transaction_result_functions.php:178
553
+ #: wpsc-admin/ajax-and-init.php:1125
554
+ #: wpsc-admin/ajax-and-init.php:1127
555
+ #: wpsc-admin/display-options-settings.page.php:102
556
+ #: wpsc-admin/display-sales-logs.php:256
557
+ msgid "Shipping"
558
+ msgstr "运输"
559
+
560
+ #: admin-form-functions.php:980
561
+ msgid "This users cart was empty"
562
+ msgstr "用户购物车是空的"
563
+
564
+ #: display-coupons.php:29
565
+ msgid "Thanks, the coupon has been added."
566
+ msgstr "谢谢,优惠券已添加。"
567
+
568
+ #: display-coupons.php:155
569
+ msgid "Coupons"
570
+ msgstr "优惠券"
571
+
572
+ #: display-coupons.php:160
573
+ msgid "Create Coupon"
574
+ msgstr "创建优惠券"
575
+
576
+ #: display-coupons.php:351
577
+ msgid "Add New Condition"
578
+ msgstr "添加新条件"
579
+
580
+ #: display-coupons.php:466
581
+ 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."
582
+ msgstr "<strong>注意:</strong> 由于PayPal的限制,如果你的顾客使用优惠券进行购买,我们不能直接发送清单到PayPal处理。相反,我们必须发送购物的总金额,以便购买了商品的PayPal用户可以你的商店和消费总额。"
583
+
584
+ #: display-coupons.php:478
585
+ msgid "Marketing Settings"
586
+ msgstr "营销设置"
587
+
588
+ #: display-coupons.php:485
589
+ msgid "Display Cross Sales"
590
+ msgstr "显示交叉销售"
591
+
592
+ #: display-coupons.php:509
593
+ msgid "Show Share This (Social Bookmarks)"
594
+ msgstr "显示“分享 (社交书签)”"
595
+
596
+ #: display-coupons.php:532
597
+ msgid "Display How Customer Found Us Survey"
598
+ msgstr "显示“如何找到我们”客户调查"
599
+
600
+ #: display-coupons.php:549
601
+ #: wpsc-admin/display-groups.page.php:642
602
+ #: wpsc-admin/display-groups.page.php:667
603
+ msgid "Submit"
604
+ msgstr "提交"
605
+
606
+ #: display-coupons.php:555
607
+ msgid "RSS Address"
608
+ msgstr "RSS地址"
609
+
610
+ #: display-coupons.php:559
611
+ 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."
612
+ msgstr "<strong>Note:</strong> 该RSS不但可以让别人保持你商品列表的更新,而且你还可以将该链接,将你的商品展示在你的Facebook档案。<br />Just add the <a href=\"http://apps.facebook.com/getshopped\">getshopped! facebook application</a> to your facebook profile and follow the instructions."
613
+
614
+ #: display-coupons.php:573
615
+ msgid "Google Merchant Centre / Google Product Search"
616
+ msgstr "谷歌商家中心 Google Merchant Centre / 谷歌商品搜索 Google Product Search"
617
+
618
+ #: display-ecommerce-subs.php:9
619
+ msgid "User ID"
620
+ msgstr "用户ID"
621
+
622
+ #: display-ecommerce-subs.php:9
623
+ #: edit-profile.php:39
624
+ #: user-log.php:362
625
+ #: wpsc-admin/admin.php:349
626
+ #: wpsc-includes/install_and_update.functions.php:656
627
+ msgid "Email"
628
+ msgstr "Email"
629
+
630
+ #: display-ecommerce-subs.php:9
631
+ msgid "Registered Date"
632
+ msgstr "注册日期"
633
+
634
+ #: display-ecommerce-subs.php:9
635
+ msgid "Suspend"
636
+ msgstr "暂停"
637
+
638
+ #: display-ecommerce-subs.php:9
639
+ msgid "Activate"
640
+ msgstr "激活"
641
+
642
+ #: edit-profile.php:31
643
+ #: wpsc-includes/install_and_update.functions.php:650
644
+ #: wpsc-includes/install_and_update.functions.php:658
645
+ msgid "First Name"
646
+ msgstr "姓"
647
+
648
+ #: edit-profile.php:32
649
+ msgid "Please enter a valid name"
650
+ msgstr "请输入一个有效的名称"
651
+
652
+ #: edit-profile.php:35
653
+ #: wpsc-includes/install_and_update.functions.php:651
654
+ #: wpsc-includes/install_and_update.functions.php:659
655
+ msgid "Last Name"
656
+ msgstr "名"
657
+
658
+ #: edit-profile.php:36
659
+ msgid "Please enter a valid surname"
660
+ msgstr "请输入一个有效的姓"
661
+
662
+ #: edit-profile.php:40
663
+ msgid "Please enter a valid email address"
664
+ msgstr "请输入一个有效的Email"
665
+
666
+ #: edit-profile.php:43
667
+ msgid "Address 1"
668
+ msgstr "地址一"
669
+
670
+ #: edit-profile.php:44
671
+ msgid "Address 2"
672
+ msgstr "地址二"
673
+
674
+ #: edit-profile.php:45
675
+ msgid "Please enter a valid address"
676
+ msgstr "请输入一个有效的地址"
677
+
678
+ #: edit-profile.php:48
679
+ #: wpsc-includes/install_and_update.functions.php:653
680
+ #: wpsc-includes/install_and_update.functions.php:661
681
+ msgid "City"
682
+ msgstr "城市"
683
+
684
+ #: edit-profile.php:49
685
+ msgid "Please enter your town or city."
686
+ msgstr "请输入你的城市或者村庄"
687
+
688
+ #: edit-profile.php:52
689
+ #: user-log.php:361
690
+ #: wpsc-includes/install_and_update.functions.php:669
691
+ msgid "Phone"
692
+ msgstr "电话"
693
+
694
+ #: edit-profile.php:53
695
+ msgid "Please enter a valid phone number"
696
+ msgstr "请输入一个有效的电话"
697
+
698
+ #: edit-profile.php:56
699
+ #: wpsc-admin/admin.php:350
700
+ #: wpsc-includes/install_and_update.functions.php:654
701
+ #: wpsc-includes/install_and_update.functions.php:663
702
+ msgid "Country"
703
+ msgstr "国家"
704
+
705
+ #: edit-profile.php:57
706
+ msgid "Please select your country from the list."
707
+ msgstr "请选择你的国家"
708
+
709
+ #: edit-profile.php:61
710
+ #: wpsc-includes/checkout.class.php:536
711
+ #: wpsc-includes/checkout.class.php:550
712
+ #: wpsc-includes/checkout.class.php:561
713
+ #: wpsc-includes/checkout.class.php:569
714
+ #: wpsc-includes/checkout.class.php:580
715
+ #: wpsc-includes/checkout.class.php:679
716
+ msgid "Please enter a valid"
717
+ msgstr "请输入一个有效值"
718
+
719
+ #: edit-profile.php:84
720
+ msgid "Thanks, your changes have been saved."
721
+ msgstr "谢谢,你的修改已经保存。"
722
+
723
+ #: edit-profile.php:188
724
+ msgid "Save Profile"
725
+ msgstr "保存Profile"
726
+
727
+ #: editor.php:49
728
+ msgid "placeholder for:"
729
+ msgstr "占位符:"
730
+
731
+ #: editor.php:144
732
+ msgid "Your forms:"
733
+ msgstr "您的表单:"
734
+
735
+ #: editor.php:146
736
+ #: insertcate.php:87
737
+ #: js/tinymce3/window.php:144
738
+ msgid "Insert"
739
+ msgstr "插入"
740
+
741
+ #: editor.php:147
742
+ #: insertcate.php:90
743
+ #: js/tinymce3/window.php:140
744
+ msgid "Cancel"
745
+ msgstr "取消"
746
+
747
+ #: google_shipping_country.php:7
748
+ msgid "Google Shipping Country"
749
+ msgstr "Google Shipping Country"
750
+
751
+ #: google_shipping_country.php:43
752
+ #: tax_and_shipping.php:86
753
+ #: wpsc-admin/includes/settings-pages/checkout.php:268
754
+ msgid "Save Changes"
755
+ msgstr "保存修改"
756
+
757
+ #: homepage_products_functions.php:85
758
+ #: widgets/donations_widget.php:6
759
+ #: widgets/donations_widget.php:77
760
+ #: widgets/donations_widget.php:78
761
+ msgid "Product Donations"
762
+ msgstr "捐赠型商品"
763
+
764
+ #: homepage_products_functions.php:157
765
+ #: themes/default/products_page.php:126
766
+ #: themes/iShop/products_page.php:127
767
+ #: themes/marketplace/products_page.php:129
768
+ msgid "More Details"
769
+ msgstr "详情"
770
+
771
+ #: homepage_products_functions.php:189
772
+ #: themes/default/grid_view.php:142
773
+ #: themes/default/list_view.php:154
774
+ #: themes/default/products_page.php:234
775
+ #: themes/default/single_product.php:180
776
+ #: themes/iShop/grid_view.php:144
777
+ #: themes/iShop/list_view.php:157
778
+ #: themes/iShop/products_page.php:232
779
+ #: themes/iShop/single_product.php:181
780
+ #: themes/marketplace/grid_view.php:145
781
+ #: themes/marketplace/list_view.php:156
782
+ #: themes/marketplace/products_page.php:236
783
+ #: themes/marketplace/single_product.php:183
784
+ #: widgets/donations_widget.php:48
785
+ #: widgets/specials_widget.php:69
786
+ #: wpsc-admin/includes/settings-pages/presentation.php:85
787
+ #: wpsc-includes/display.functions.php:326
788
+ msgid "Add To Cart"
789
+ msgstr "加入购物车"
790
+
791
+ #: homepage_products_functions.php:205
792
+ #: wpsc-includes/wpsc_query.php:875
793
+ msgid "Avg. Customer Rating"
794
+ msgstr "平均客户评级"
795
+
796
+ #: homepage_products_functions.php:212
797
+ #: wpsc-includes/wpsc_query.php:882
798
+ msgid "Your Rating"
799
+ msgstr "你的评级"
800
+
801
+ #: homepage_products_functions.php:213
802
+ #: homepage_products_functions.php:217
803
+ #: wpsc-includes/wpsc_query.php:883
804
+ msgid "Saved"
805
+ msgstr "已保存"
806
+
807
+ #: homepage_products_functions.php:216
808
+ msgid "Rate This item"
809
+ msgstr "点评商品"
810
+
811
+ #: insertcate.php:67
812
+ msgid "Pick a Category"
813
+ msgstr "选择类别"
814
+
815
+ #: insertcate.php:74
816
+ msgid "Your Categories:"
817
+ msgstr "你的类别:"
818
+
819
+ #: js/tinymce3/window.php:36
820
+ #: js/tinymce3/window.php:118
821
+ msgid "Category"
822
+ msgstr "类别"
823
+
824
+ #: js/tinymce3/window.php:37
825
+ #: wpsc-admin/display-upgrades.page.php:47
826
+ msgid "Product Slider"
827
+ msgstr "滑动商品展示"
828
+
829
+ #: js/tinymce3/window.php:38
830
+ #: wpsc-admin/includes/display-items-functions.php:137
831
+ #: wpsc-admin/includes/display-items-functions.php:139
832
+ msgid "Add Product"
833
+ msgstr "添加商品"
834
+
835
+ #: js/tinymce3/window.php:48
836
+ #: js/tinymce3/window.php:76
837
+ msgid "Select Category"
838
+ msgstr "选择类别"
839
+
840
+ #: js/tinymce3/window.php:51
841
+ #: js/tinymce3/window.php:78
842
+ #: js/tinymce3/window.php:122
843
+ msgid "No Category"
844
+ msgstr "没有类别"
845
+
846
+ #: js/tinymce3/window.php:65
847
+ msgid "Number of items per Page"
848
+ msgstr "每页商品数"
849
+
850
+ #: js/tinymce3/window.php:91
851
+ msgid "Number of visible items"
852
+ msgstr "每页显示数量"
853
+
854
+ #: merchants/chronopay.php:440
855
+ #: merchants/paypal_multiple.php:562
856
+ #: wpsc-admin/includes/settings-pages/admin.php:227
857
+ #: wpsc-admin/includes/settings-pages/gateway.php:92
858
+ #: wpsc-admin/includes/settings-pages/gateway.php:172
859
+ #: wpsc-admin/includes/settings-pages/general.php:207
860
+ #: wpsc-admin/includes/settings-pages/presentation.php:1060
861
+ #: wpsc-admin/includes/settings-pages/shipping.php:276
862
+ #: wpsc-admin/includes/settings-pages/shipping.php:298
863
+ msgid "Update &raquo;"
864
+ msgstr "更新 &raquo;"
865
+
866
+ #: merchants/paypal-standard.merchant.php:137
867
+ msgid "Your Subscription"
868
+ msgstr "你的订阅"
869
+
870
+ #: merchants/paypal_certified.php:621
871
+ #: merchants/paypal_multiple.php:527
872
+ msgid "Currency Converter"
873
+ msgstr "货币兑换器"
874
+
875
+ #: merchants/paypal_certified.php:624
876
+ 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."
877
+ msgstr "如果你的网站使用非Paypal支持货币,请在下面下拉菜单选择一种支持货币。你网站的顾客依然使用你当地的货币支付,我们将通过下面你选择的货币发送订单到Paypal。"
878
+
879
+ #: merchants/paypal_multiple.php:530
880
+ #, php-format
881
+ 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."
882
+ msgstr "你网站使用的货币是: <strong>%s</strong>. 这种货币PayPal不支持,请在下面下拉菜单选择一种货币。你网站的顾客仍旧支付你当地的货币,我们将按照下面你选择的货币发送订单到PayPal。"
883
+
884
+ #: merchants/paypal_pro.php:276
885
+ msgid "There is a problem with your PayPal account configuration, please contact PayPal for further information."
886
+ msgstr "PayPal帐户配置问题出错,请联系PayPal了解进一步信息。"
887
+
888
+ #: merchants/paypal_pro.php:281
889
+ msgid "Sorry your transaction did not go through to Paypal successfully, please try again."
890
+ msgstr "对不起你的交易不能成功通过到PayPal,请重试。"
891
+
892
+ #: merchants/paypal_pro.php:370
893
+ msgid "API Username:"
894
+ msgstr "API用户名:"
895
+
896
+ #: merchants/paypal_pro.php:378
897
+ msgid "API Password:"
898
+ msgstr "API密码:"
899
+
900
+ #: merchants/paypal_pro.php:386
901
+ msgid "API Signature:"
902
+ msgstr "API签名:"
903
+
904
+ #: merchants/paypal_pro.php:394
905
+ msgid "Test Mode Enabled:"
906
+ msgstr "开启测试模式:"
907
+
908
+ #: merchants/testmode.php:30
909
+ msgid "Enter the payment instructions that you wish to display to your customers when they make a purchase"
910
+ msgstr "输入顾客支付时显示的付款提示。"
911
+
912
+ #: merchants/testmode.php:32
913
+ 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."
914
+ msgstr "例如,这里可以输入店主的银行帐户资料或地址,以便客户可以常规支付。"
915
+
916
+ #: share-this.php:435
917
+ msgid "E-mail this, post to del.icio.us, etc."
918
+ msgstr "E-mail this, post to del.icio.us, etc."
919
+
920
+ #: share-this.php:488
921
+ msgid "Close"
922
+ msgstr "关闭"
923
+
924
+ #: share-this.php:490
925
+ #: share-this.php:842
926
+ msgid "Social Web"
927
+ msgstr "社交网站"
928
+
929
+ #: share-this.php:491
930
+ #: share-this.php:867
931
+ #: themes/default/shopping_cart_page.php:242
932
+ #: themes/iShop/shopping_cart_page.php:213
933
+ #: themes/marketplace/shopping_cart_page.php:211
934
+ msgid "E-mail"
935
+ msgstr "E-mail"
936
+
937
+ #: share-this.php:508
938
+ #: share-this.php:871
939
+ msgid "E-mail It"
940
+ msgstr "发送该封Email"
941
+
942
+ #: share-this.php:511
943
+ #: share-this.php:874
944
+ msgid "To Address:"
945
+ msgstr "地址:"
946
+
947
+ #: share-this.php:515
948
+ #: share-this.php:878
949
+ msgid "Your Name:"
950
+ msgstr "你的名字:"
951
+
952
+ #: share-this.php:519
953
+ #: share-this.php:882
954
+ msgid "Your Address:"
955
+ msgstr "你的地址:"
956
+
957
+ #: share-this.php:523
958
+ #: share-this.php:886
959
+ msgid "Send It"
960
+ msgstr "发送它"
961
+
962
+ #: share-this.php:605
963
+ msgid "Click your <strong>back button</strong> and make sure those e-mail addresses are valid then try again."
964
+ msgstr "点击<strong>后退</strong>按钮,请确定那些邮件地址有效再重试。"
965
+
966
+ #: share-this.php:615
967
+ msgid "Check out this product on "
968
+ msgstr "结算该商品"
969
+
970
+ #: share-this.php:620
971
+ #: share-this.php:640
972
+ msgid "Greetings--"
973
+ msgstr "问候--"
974
+
975
+ #: share-this.php:621
976
+ #: share-this.php:641
977
+ msgid " thinks this will be of interest to you:"
978
+ msgstr "你可能感兴趣:"
979
+
980
+ #: share-this.php:634
981
+ #: share-this.php:644
982
+ msgid "Enjoy."
983
+ msgstr "喜欢吖。"
984
+
985
+ #: share-this.php:702
986
+ msgid "Share This : "
987
+ msgstr "分享:"
988
+
989
+ #: share-this.php:838
990
+ #, php-format
991
+ 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."
992
+ msgstr "<strong>这是什么?</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."
993
+
994
+ #: share-this.php:909
995
+ msgid "Posted in: "
996
+ msgstr "发贴:"
997
+
998
+ #: share-this.php:912
999
+ msgid "Return to:"
1000
+ msgstr "返回:"
1001
+
1002
+ #: shipping/australiapost.php:47
1003
+ msgid "Australia Post"
1004
+ msgstr "澳洲邮政"
1005
+
1006
+ #: shipping/australiapost.php:54
1007
+ msgid "Standard Parcel Post"
1008
+ msgstr "标准邮寄"
1009
+
1010
+ #: shipping/australiapost.php:55
1011
+ msgid "Express Post"
1012
+ msgstr "快递"
1013
+
1014
+ #: shipping/australiapost.php:56
1015
+ msgid "Air Mail"
1016
+ msgstr "空运"
1017
+
1018
+ #: shipping/australiapost.php:57
1019
+ msgid "Sea Mail"
1020
+ msgstr "海运"
1021
+
1022
+ #: shipping/australiapost.php:58
1023
+ msgid "Economy Air Parcel Post"
1024
+ msgstr "经济空运"
1025
+
1026
+ #: shipping/australiapost.php:59
1027
+ msgid "Express Post International"
1028
+ msgstr "国际快递"
1029
+
1030
+ #: shipping/australiapost.php:95
1031
+ msgid "This shipping module only works if the base country in settings, region is set to Australia."
1032
+ msgstr "该运输模块只适合澳大利亚区域使用。"
1033
+
1034
+ #: shipping/australiapost.php:100
1035
+ msgid "You must set your base postcode above before this shipping module will work."
1036
+ msgstr "你必须设置你的主要区域邮政编码才能使用该运输模块。"
1037
+
1038
+ #: shipping/australiapost.php:103
1039
+ msgid "Select the Australia Post services that you want to offer during checkout:"
1040
+ msgstr "选择澳洲邮政服务,你需要在结算前确定:"
1041
+
1042
+ #: shipping/australiapost.php:110
1043
+ msgid "Notes:"
1044
+ msgstr "注意:"
1045
+
1046
+ #: shipping/australiapost.php:111
1047
+ msgid "1. The actual services quoted to the customer during checkout will depend on the destination country. Not all methods are available to all destinations."
1048
+ msgstr "1. 顾客结算时选择的实际服务取决于目的地国家。不是所有的方法都提供给所有的目的地。"
1049
+
1050
+ #: shipping/australiapost.php:112
1051
+ msgid "2. Each product must have a valid weight configured. When editing a product, use the weight field.)."
1052
+ msgstr "2. 当编辑一个商品使用重量字段的时候每个商品都必须有一个有效的重量配置。"
1053
+
1054
+ #: shipping/australiapost.php:113
1055
+ msgid "3. To ensure accurate quotes, each product must valid dimensions configured. When editing a product, use the height, width and length fields."
1056
+ msgstr "3. 当编辑一个商品使用的高度,宽度和长度字段的时候,为了确保准确的报价,每个商品必须有效尺寸配置。"
1057
+
1058
+ #: shipping/australiapost.php:114
1059
+ msgid "4. The combined dimensions are estimated by calculating the volume of each item, and then calculating the cubed root of the overall order volume which becomes width, length and height."
1060
+ msgstr "4. 如需要预计组合包装后的尺寸,通过计算每件商品的量值,再通过计算总订单量,推算组合包装的长、宽、高。"
1061
+
1062
+ #: shipping/australiapost.php:115
1063
+ msgid "5. If no product volumes are defined, then default package dimensions of 100mm x 100mm x 100mm will be used."
1064
+ msgstr "5. 如果没有定义商品的包装尺寸,那么使用的默认包装尺寸为100x100x100mm"
1065
+
1066
+ #: shipping/australiapost.php:257
1067
+ #, php-format
1068
+ msgid "%1$s (estimated delivery time: %2$d business day)"
1069
+ msgid_plural "%1$s (estimated delivery time: %2$d business days)"
1070
+ msgstr[0] ""
1071
+ msgstr[1] ""
1072
+
1073
+ #: shipping/flatrate.php:31
1074
+ 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."
1075
+ msgstr "如果你不希望发送到特定地区,请把字段留空。如果为一个地区提供免费送货,输入0。"
1076
+
1077
+ #: shipping/tablerate.php:30
1078
+ #: themes/default/shopping_cart_page.php:202
1079
+ #: themes/iShop/shopping_cart_page.php:175
1080
+ #: themes/marketplace/shopping_cart_page.php:173
1081
+ msgid "Total Price"
1082
+ msgstr "总价"
1083
+
1084
+ #: shipping/tablerate.php:30
1085
+ #: shipping/weightrate.php:30
1086
+ msgid "Shipping Price"
1087
+ msgstr "运费"
1088
+
1089
+ #: shipping/tablerate.php:37
1090
+ #: wpsc-admin/admin.php:366
1091
+ msgid "If price is "
1092
+ msgstr "如果价格是"
1093
+
1094
+ #: shipping/tablerate.php:39
1095
+ #: shipping/weightrate.php:35
1096
+ #: wpsc-admin/admin.php:365
1097
+ msgid " and above"
1098
+ msgstr "以上"
1099
+
1100
+ #: shipping/ups.php:76
1101
+ msgid "UPS Letter"
1102
+ msgstr "UPS Letter"
1103
+
1104
+ #: shipping/ups.php:77
1105
+ msgid "Your Packaging"
1106
+ msgstr "您的包装"
1107
+
1108
+ #: shipping/ups.php:78
1109
+ msgid "UPS Tube"
1110
+ msgstr "UPS Tube"
1111
+
1112
+ #: shipping/ups.php:79
1113
+ msgid "UPS Pak"
1114
+ msgstr "UPS Pak"
1115
+
1116
+ #: shipping/ups.php:80
1117
+ msgid "UPS Express Box"
1118
+ msgstr "UPS Express Box"
1119
+
1120
+ #: shipping/ups.php:81
1121
+ msgid "UPS Express Box - Small"
1122
+ msgstr "UPS Express Box - Small"
1123
+
1124
+ #: shipping/ups.php:82
1125
+ msgid "UPS Express Box - Medium"
1126
+ msgstr "UPS Express Box - Medium"
1127
+
1128
+ #: shipping/ups.php:83
1129
+ msgid "UPS Express Box - Large"
1130
+ msgstr "UPS Express Box - Large"
1131
+
1132
+ #: shipping/ups.php:86
1133
+ msgid "Destination Type"
1134
+ msgstr "目标类型"
1135
+
1136
+ #: shipping/ups.php:97
1137
+ msgid "Residential Address"
1138
+ msgstr "住址"
1139
+
1140
+ #: shipping/ups.php:98
1141
+ msgid "Commercial Address"
1142
+ msgstr "商业地址"
1143
+
1144
+ #: shipping/ups.php:104
1145
+ msgid "Packaging"
1146
+ msgstr "包装"
1147
+
1148
+ #: shipping/ups.php:124
1149
+ msgid "Use Testing Environment"
1150
+ msgstr "使用测试环境"
1151
+
1152
+ #: shipping/ups.php:133
1153
+ msgid "UPS Preferred Services"
1154
+ msgstr "UPS Preferred Services(UPS首选服务)"
1155
+
1156
+ #: shipping/ups.php:154
1157
+ msgid "All services used if no services selected"
1158
+ msgstr "如果没有选择某个服务,即为全选"
1159
+
1160
+ #: shipping/ups.php:158
1161
+ msgid "UPS Username"
1162
+ msgstr "UPS用户名"
1163
+
1164
+ #: shipping/ups.php:164
1165
+ msgid "UPS Password"
1166
+ msgstr "UPS密码"
1167
+
1168
+ #: shipping/ups.php:170
1169
+ msgid "UPS XML API Key"
1170
+ msgstr "UPS XML API Key"
1171
+
1172
+ #: shipping/ups.php:174
1173
+ msgid "Don't have an API login/ID ?"
1174
+ msgstr "未登录API或者没有API ID ?"
1175
+
1176
+ #: shipping/ups.php:175
1177
+ msgid "Click Here"
1178
+ msgstr "点击这里"
1179
+
1180
+ #: shipping/usps.php:37
1181
+ msgid "USPS ID"
1182
+ msgstr "USPS ID"
1183
+
1184
+ #: shipping/usps.php:45
1185
+ msgid "USPS Password"
1186
+ msgstr "USPS 密码"
1187
+
1188
+ #: shipping/usps.php:53
1189
+ msgid "Use Test Server:"
1190
+ msgstr "使用测试服务器:"
1191
+
1192
+ #: shipping/weightrate.php:30
1193
+ 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>)"
1194
+ msgstr "总重量 <br />(<abbr alt=\"你必须输入重量(磅)在这里,无论任何商品\" title=\"你必须输入重量(磅)在这里,无论任何商品\">in Pounds</abbr>)"
1195
+
1196
+ #: shipping/weightrate.php:35
1197
+ #: wpsc-admin/admin.php:367
1198
+ msgid "If weight is "
1199
+ msgstr "如果重量是"
1200
+
1201
+ #: shopping_cart_functions.php:36
1202
+ #: shopping_cart_functions.php:44
1203
+ #: shopping_cart_functions.php:54
1204
+ #: widgets/shopping_cart_widget.php:27
1205
+ msgid "Shopping Cart"
1206
+ msgstr "购物车"
1207
+
1208
+ #: tagging_functions.php:79
1209
+ #, php-format
1210
+ msgid "%d topics"
1211
+ msgstr "%d 标题"
1212
+
1213
+ #: tax_and_shipping.php:34
1214
+ msgid "GST/Tax Rate"
1215
+ msgstr "GST/税费"
1216
+
1217
+ #: themes/default/cart_widget.php:15
1218
+ #: themes/iShop/cart_widget.php:15
1219
+ #: themes/marketplace/cart_widget.php:15
1220
+ msgid "Number of items"
1221
+ msgstr "件数"
1222
+
1223
+ #: themes/default/cart_widget.php:23
1224
+ #: themes/default/shopping_cart_page.php:14
1225
+ #: themes/iShop/cart_widget.php:23
1226
+ #: themes/iShop/shopping_cart_page.php:13
1227
+ #: themes/marketplace/cart_widget.php:23
1228
+ #: themes/marketplace/shopping_cart_page.php:13
1229
+ msgid "Product"
1230
+ msgstr "商品"
1231
+
1232
+ #: themes/default/cart_widget.php:24
1233
+ #: themes/iShop/cart_widget.php:24
1234
+ #: themes/marketplace/cart_widget.php:24
1235
+ msgid "Qty"
1236
+ msgstr "数量"
1237
+
1238
+ #: themes/default/cart_widget.php:59
1239
+ #: themes/iShop/cart_widget.php:60
1240
+ #: themes/marketplace/cart_widget.php:59
1241
+ msgid "Postage &amp; Tax "
1242
+ msgstr "包装 &amp; 税金 "
1243
+
1244
+ #: themes/default/cart_widget.php:63
1245
+ #: themes/iShop/cart_widget.php:64
1246
+ #: themes/marketplace/cart_widget.php:63
1247
+ #: transaction_result_functions.php:211
1248
+ #: transaction_result_functions.php:218
1249
+ #: user-log.php:220
1250
+ #: wpsc-admin/ajax-and-init.php:1149
1251
+ #: wpsc-admin/ajax-and-init.php:1155
1252
+ #: wpsc-admin/display-sales-logs.php:261
1253
+ msgid "Total"
1254
+ msgstr "总数"
1255
+
1256
+ #: themes/default/cart_widget.php:72
1257
+ #: themes/iShop/cart_widget.php:73
1258
+ #: themes/marketplace/cart_widget.php:72
1259
+ msgid "Empty your cart"
1260
+ msgstr "清空购物车"
1261
+
1262
+ #: themes/default/cart_widget.php:76
1263
+ #: themes/iShop/cart_widget.php:77
1264
+ #: themes/marketplace/cart_widget.php:76
1265
+ #: wpsc-includes/display.functions.php:153
1266
+ msgid "Go to Checkout"
1267
+ msgstr "去结算"
1268
+
1269
+ #: themes/default/cart_widget.php:78
1270
+ #: themes/iShop/cart_widget.php:79
1271
+ #: themes/marketplace/cart_widget.php:78
1272
+ msgid "Your shopping cart is empty"
1273
+ msgstr "你的购物车为空"
1274
+
1275
+ #: themes/default/cart_widget.php:80
1276
+ #: themes/iShop/cart_widget.php:81
1277
+ #: themes/marketplace/cart_widget.php:80
1278
+ msgid "Visit the shop"
1279
+ msgstr "访问商店"
1280
+
1281
+ #: themes/default/functions.php:15
1282
+ #: themes/iShop/functions.php:15
1283
+ #: themes/marketplace/functions.php:15
1284
+ #: wpsc-admin/includes/settings-pages/presentation.php:989
1285
+ msgid "Page Number position"
1286
+ msgstr "页码位置"
1287
+
1288
+ #: themes/default/grid_view.php:144
1289
+ #: themes/default/list_view.php:162
1290
+ #: themes/default/products_page.php:242
1291
+ #: themes/default/single_product.php:189
1292
+ #: themes/iShop/grid_view.php:146
1293
+ #: themes/iShop/list_view.php:167
1294
+ #: themes/iShop/products_page.php:240
1295
+ #: themes/iShop/single_product.php:190
1296
+ #: themes/marketplace/grid_view.php:147
1297
+ #: themes/marketplace/list_view.php:163
1298
+ #: themes/marketplace/products_page.php:245
1299
+ #: themes/marketplace/single_product.php:192
1300
+ #: widgets/specials_widget.php:66
1301
+ msgid "This product has sold out."
1302
+ msgstr "商品已售空。"
1303
+
1304
+ #: themes/default/grid_view.php:168
1305
+ #: themes/default/list_view.php:184
1306
+ #: themes/default/products_page.php:266
1307
+ #: themes/iShop/grid_view.php:170
1308
+ #: themes/iShop/list_view.php:189
1309
+ #: themes/iShop/products_page.php:265
1310
+ #: themes/marketplace/grid_view.php:171
1311
+ #: themes/marketplace/list_view.php:185
1312
+ #: themes/marketplace/products_page.php:270
1313
+ msgid "There are no products in this group."
1314
+ msgstr "该组别没有商品。"
1315
+
1316
+ #: themes/default/list_view.php:152
1317
+ #: themes/default/products_page.php:232
1318
+ #: themes/default/single_product.php:178
1319
+ #: themes/iShop/list_view.php:155
1320
+ #: themes/iShop/products_page.php:230
1321
+ #: themes/iShop/single_product.php:179
1322
+ #: themes/marketplace/list_view.php:154
1323
+ #: themes/marketplace/products_page.php:234
1324
+ #: themes/marketplace/single_product.php:181
1325
+ #: wpsc-admin/includes/settings-pages/presentation.php:87
1326
+ #: wpsc-includes/display.functions.php:242
1327
+ msgid "Buy Now"
1328
+ msgstr "立刻买"
1329
+
1330
+ #: themes/default/list_view.php:158
1331
+ #: themes/default/products_page.php:238
1332
+ #: themes/default/single_product.php:185
1333
+ #: themes/iShop/list_view.php:163
1334
+ #: themes/iShop/products_page.php:236
1335
+ #: themes/iShop/single_product.php:186
1336
+ #: themes/marketplace/list_view.php:159
1337
+ #: themes/marketplace/products_page.php:241
1338
+ #: themes/marketplace/single_product.php:188
1339
+ msgid "Updating cart..."
1340
+ msgstr "更新购物车..."
1341
+
1342
+ #: themes/default/products_page.php:207
1343
+ #: themes/default/single_product.php:141
1344
+ #: themes/iShop/products_page.php:205
1345
+ #: themes/iShop/single_product.php:144
1346
+ #: themes/marketplace/products_page.php:209
1347
+ #: themes/marketplace/single_product.php:146
1348
+ #: widgets/donations_widget.php:47
1349
+ msgid "Donation"
1350
+ msgstr "捐献"
1351
+
1352
+ #: themes/default/products_page.php:218
1353
+ #: themes/default/single_product.php:157
1354
+ #: themes/iShop/products_page.php:216
1355
+ #: themes/iShop/single_product.php:158
1356
+ #: themes/marketplace/products_page.php:220
1357
+ #: themes/marketplace/single_product.php:160
1358
+ #: user-log.php:216
1359
+ msgid "P&amp;P"
1360
+ msgstr "P&amp;P"
1361
+
1362
+ #: themes/default/shopping_cart_page.php:10
1363
+ #: themes/iShop/shopping_cart_page.php:9
1364
+ #: themes/marketplace/shopping_cart_page.php:9
1365
+ msgid "Please review your order"
1366
+ msgstr "请检查你的订单"
1367
+
1368
+ #: themes/default/shopping_cart_page.php:37
1369
+ #: themes/default/shopping_cart_page.php:66
1370
+ #: themes/iShop/shopping_cart_page.php:35
1371
+ #: themes/iShop/shopping_cart_page.php:66
1372
+ #: themes/marketplace/shopping_cart_page.php:35
1373
+ #: themes/marketplace/shopping_cart_page.php:65
1374
+ msgid "Update"
1375
+ msgstr "更新"
1376
+
1377
+ #: themes/default/shopping_cart_page.php:50
1378
+ #: themes/iShop/shopping_cart_page.php:49
1379
+ #: themes/marketplace/shopping_cart_page.php:48
1380
+ msgid "Remove"
1381
+ msgstr "移动"
1382
+
1383
+ #: themes/default/shopping_cart_page.php:59
1384
+ #: themes/iShop/shopping_cart_page.php:59
1385
+ #: themes/marketplace/shopping_cart_page.php:58
1386
+ msgid "Coupon is not valid."
1387
+ msgstr "优惠券已失效。"
1388
+
1389
+ #: themes/default/shopping_cart_page.php:62
1390
+ #: themes/iShop/shopping_cart_page.php:62
1391
+ #: themes/marketplace/shopping_cart_page.php:61
1392
+ msgid "Enter your coupon number"
1393
+ msgstr "输入你的优惠券代码"
1394
+
1395
+ #: themes/default/shopping_cart_page.php:92
1396
+ #: themes/iShop/shopping_cart_page.php:91
1397
+ #: themes/marketplace/shopping_cart_page.php:90
1398
+ msgid "Calculate Shipping Price"
1399
+ msgstr "计算运费"
1400
+
1401
+ #: themes/default/shopping_cart_page.php:96
1402
+ #: themes/iShop/shopping_cart_page.php:95
1403
+ #: themes/marketplace/shopping_cart_page.php:94
1404
+ msgid "Please choose a country below to calculate your shipping costs"
1405
+ msgstr "请选择国家以计算你的运费"
1406
+
1407
+ #: themes/default/shopping_cart_page.php:105
1408
+ msgid "Please provide a Zipcode and click Calculate in order to continue."
1409
+ msgstr "请提供邮政编码,然后点击计算,以继续。"
1410
+
1411
+ #: themes/default/shopping_cart_page.php:112
1412
+ #: themes/iShop/shopping_cart_page.php:139
1413
+ #: themes/marketplace/shopping_cart_page.php:138
1414
+ msgid "Sorry, online ordering is unavailable to this destination and/or weight. Please double check your destination details."
1415
+ msgstr "对不起,网上订购不能到达该目的地和/或重量。请仔细检查你的目的地详细资料。"
1416
+
1417
+ #: themes/default/shopping_cart_page.php:130
1418
+ #: themes/iShop/shopping_cart_page.php:115
1419
+ #: themes/marketplace/shopping_cart_page.php:114
1420
+ #: wpsc-includes/ajax.functions.php:405
1421
+ msgid "- Choose a Shipping Rate"
1422
+ msgstr "- 选择运输费率"
1423
+
1424
+ #: themes/default/shopping_cart_page.php:179
1425
+ #: transaction_result_functions.php:210
1426
+ #: transaction_result_functions.php:217
1427
+ #: user-log.php:317
1428
+ #: wpsc-admin/ajax-and-init.php:1148
1429
+ #: wpsc-admin/ajax-and-init.php:1154
1430
+ msgid "Total Shipping"
1431
+ msgstr "总运费"
1432
+
1433
+ #: themes/default/shopping_cart_page.php:225
1434
+ #: themes/iShop/shopping_cart_page.php:196
1435
+ #: themes/marketplace/shopping_cart_page.php:194
1436
+ msgid "Not yet a member?"
1437
+ msgstr "不是会员?"
1438
+
1439
+ #: themes/default/shopping_cart_page.php:226
1440
+ #: themes/iShop/shopping_cart_page.php:197
1441
+ #: themes/marketplace/shopping_cart_page.php:195
1442
+ 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."
1443
+ msgstr "你需要一个账户用于购物。免费加入而且非常容易。你只需要提供一个用户名,密码和有效的邮箱。"
1444
+
1445
+ #: themes/default/shopping_cart_page.php:240
1446
+ #: themes/iShop/shopping_cart_page.php:211
1447
+ #: themes/marketplace/shopping_cart_page.php:209
1448
+ msgid "Username"
1449
+ msgstr "用户名"
1450
+
1451
+ #: themes/default/shopping_cart_page.php:241
1452
+ #: themes/iShop/shopping_cart_page.php:212
1453
+ #: themes/marketplace/shopping_cart_page.php:210
1454
+ msgid "Password"
1455
+ msgstr "密码"
1456
+
1457
+ #: themes/default/shopping_cart_page.php:246
1458
+ #: themes/iShop/shopping_cart_page.php:217
1459
+ #: themes/marketplace/shopping_cart_page.php:215
1460
+ msgid "Please enter your contact details:"
1461
+ msgstr "请输入你的联系资料:"
1462
+
1463
+ #: themes/default/shopping_cart_page.php:248
1464
+ #: themes/iShop/shopping_cart_page.php:219
1465
+ #: themes/marketplace/shopping_cart_page.php:217
1466
+ msgid "Fields marked with an asterisk must be filled in."
1467
+ msgstr "标注区域为必填字段。"
1468
+
1469
+ #: themes/default/shopping_cart_page.php:323
1470
+ #: themes/iShop/shopping_cart_page.php:294
1471
+ #: themes/marketplace/shopping_cart_page.php:292
1472
+ msgid "Select a payment gateway"
1473
+ msgstr "选择支付网关"
1474
+
1475
+ #: themes/default/shopping_cart_page.php:357
1476
+ #: themes/iShop/shopping_cart_page.php:328
1477
+ #: themes/marketplace/shopping_cart_page.php:326
1478
+ msgid "I agree to The "
1479
+ msgstr "我同意"
1480
+
1481
+ #: themes/default/shopping_cart_page.php:358
1482
+ #: themes/iShop/shopping_cart_page.php:329
1483
+ #: themes/marketplace/shopping_cart_page.php:327
1484
+ #: wpsc-admin/includes/settings-pages/admin.php:107
1485
+ msgid "Terms and Conditions"
1486
+ msgstr "条款和条件"
1487
+
1488
+ #: themes/default/shopping_cart_page.php:370
1489
+ #: themes/iShop/shopping_cart_page.php:341
1490
+ #: themes/marketplace/shopping_cart_page.php:339
1491
+ msgid "Make Purchase"
1492
+ msgstr "请购买"
1493
+
1494
+ #: themes/default/shopping_cart_page.php:384
1495
+ #: themes/iShop/shopping_cart_page.php:355
1496
+ #: themes/marketplace/shopping_cart_page.php:353
1497
+ #: transaction_result_functions.php:375
1498
+ msgid "Oops, there is nothing in your cart."
1499
+ msgstr "哦,购物车没东西哦。"
1500
+
1501
+ #: themes/default/shopping_cart_page.php:384
1502
+ #: themes/iShop/shopping_cart_page.php:355
1503
+ #: themes/marketplace/shopping_cart_page.php:353
1504
+ #: transaction_result_functions.php:375
1505
+ msgid "Please visit our shop"
1506
+ msgstr "请访问我们的商店"
1507
+
1508
+ #: themes/default/single_product.php:96
1509
+ #: themes/iShop/single_product.php:99
1510
+ #: themes/marketplace/single_product.php:101
1511
+ msgid "Personalize your product"
1512
+ msgstr "个性化你的商品"
1513
+
1514
+ #: themes/default/single_product.php:97
1515
+ #: themes/iShop/single_product.php:100
1516
+ #: themes/marketplace/single_product.php:102
1517
+ msgid "Complete this form to include a personalized message with your purchase."
1518
+ msgstr "填写此表,完成您的个人信息。"
1519
+
1520
+ #: themes/default/single_product.php:104
1521
+ #: themes/iShop/single_product.php:107
1522
+ #: themes/marketplace/single_product.php:109
1523
+ msgid "Upload a File"
1524
+ msgstr "上传文件"
1525
+
1526
+ #: themes/default/single_product.php:105
1527
+ #: themes/iShop/single_product.php:108
1528
+ #: themes/marketplace/single_product.php:110
1529
+ msgid "Select a file from your computer to include with this purchase. "
1530
+ msgstr "从你的电脑选择一个文件插入到本订单。"
1531
+
1532
+ #: transaction_result_functions.php:35
1533
+ msgid "We&#39;re Sorry, your order has not been accepted, the most likely reason is that you have insufficient funds."
1534
+ msgstr "我们很抱歉,您的订单没有被接受,最可能的原因是你没有足够的资金。"
1535
+
1536
+ #: transaction_result_functions.php:37
1537
+ msgid "New pending order"
1538
+ msgstr "新的处理订单"
1539
+
1540
+ #: transaction_result_functions.php:37
1541
+ msgid "There is a new order awaiting processing:"
1542
+ msgstr "有一个新的订单等待处理:"
1543
+
1544
+ #: transaction_result_functions.php:41
1545
+ #: transaction_result_functions.php:257
1546
+ #: wpsc-admin/ajax-and-init.php:1189
1547
+ msgid "Thank you, your purchase is pending, you will be sent an email once the order clears."
1548
+ msgstr "谢谢您,您订单正在处理,当订单处理完毕您将收到一封电子邮件。"
1549
+
1550
+ #: transaction_result_functions.php:220
1551
+ #: transaction_result_functions.php:221
1552
+ #: wpsc-admin/ajax-and-init.php:1157
1553
+ #: wpsc-admin/ajax-and-init.php:1158
1554
+ msgid "Your Transaction ID"
1555
+ msgstr "你的交易单号"
1556
+
1557
+ #: transaction_result_functions.php:222
1558
+ #: wpsc-admin/ajax-and-init.php:1159
1559
+ msgid "Transaction ID"
1560
+ msgstr "交易单号"
1561
+
1562
+ #: transaction_result_functions.php:258
1563
+ #: wpsc-admin/ajax-and-init.php:1190
1564
+ msgid "Order Pending: Payment Required"
1565
+ msgstr "订单处理:等待支付"
1566
+
1567
+ #: transaction_result_functions.php:260
1568
+ #: wpsc-admin/ajax-and-init.php:1193
1569
+ #: wpsc-admin/includes/settings-pages/admin.php:128
1570
+ msgid "Purchase Receipt"
1571
+ msgstr "消费收据"
1572
+
1573
+ #: transaction_result_functions.php:265
1574
+ #: user-log.php:336
1575
+ msgid "Customer Details"
1576
+ msgstr "客户详细信息"
1577
+
1578
+ #: transaction_result_functions.php:351
1579
+ msgid "Purchase Report"
1580
+ msgstr "消费报告"
1581
+
1582
+ #: transaction_result_functions.php:367
1583
+ msgid "The Transaction was successful"
1584
+ msgstr "交易成功"
1585
+
1586
+ #: transaction_results.php:40
1587
+ #: transaction_results.php:49
1588
+ msgid "Sorry your transaction was not accepted.<br /><a href="
1589
+ msgstr "对不起你的交易不被接受。<br /><a href="
1590
+
1591
+ #: updates/updating_tasks.php:53
1592
+ msgid ""
1593
+ "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"
1594
+ " your tracking id is: %trackid%"
1595
+ msgstr ""
1596
+ "你从 %shop_name% 商店的货物刚刚发出。它将会很快送抵。请留意你的商品状态和跟踪ID。 \\r\\n"
1597
+ " 你的跟踪ID: %trackid%"
1598
+
1599
+ #: updates/updating_tasks.php:56
1600
+ msgid "Your Order from %shop_name% has been dispatched"
1601
+ msgstr "您从%shop_name%的订单已被发出"
1602
+
1603
+ #: updates/updating_tasks.php:653
1604
+ #: updates/updating_tasks.php:660
1605
+ #: wpsc-includes/install_and_update.functions.php:163
1606
+ 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%"
1607
+ msgstr "感谢您在 %shop_name%购买,任何发送的商品都将被认真地处理。任何下载型商品都可在本页内的链接下载。所有价格都包含了正确的税费、包装和运费。你订购了这些商品:%product_list%%total_shipping%%total_price%"
1608
+
1609
+ #: updates/updating_tasks.php:654
1610
+ #: updates/updating_tasks.php:667
1611
+ #: wpsc-includes/install_and_update.functions.php:164
1612
+ msgid "%product_list%%total_shipping%%total_price%"
1613
+ msgstr "%product_list%%total_shipping%%total_price%"
1614
+
1615
+ #: user-downloads.php:41
1616
+ msgid "File Names"
1617
+ msgstr "文件名称"
1618
+
1619
+ #: user-downloads.php:42
1620
+ msgid "Downloads Left"
1621
+ msgstr "已下载"
1622
+
1623
+ #: user-downloads.php:43
1624
+ #: user-log.php:56
1625
+ msgid "Date"
1626
+ msgstr "日期"
1627
+
1628
+ #: user-downloads.php:69
1629
+ msgid "You have not purchased any downloadable products yet."
1630
+ msgstr "您还没有购买任何可下载的产品。"
1631
+
1632
+ #: user-log.php:52
1633
+ msgid "Status"
1634
+ msgstr "状态"
1635
+
1636
+ #: user-log.php:65
1637
+ #: user-log.php:383
1638
+ msgid "Payment Method"
1639
+ msgstr "支付方式"
1640
+
1641
+ #: user-log.php:94
1642
+ msgid "Details"
1643
+ msgstr "详情"
1644
+
1645
+ #: user-log.php:147
1646
+ msgid "Order Status"
1647
+ msgstr "订单状态"
1648
+
1649
+ #: user-log.php:169
1650
+ #: wpsc-admin/display-sales-logs.php:188
1651
+ #: wpsc-admin/includes/display-items-functions.php:651
1652
+ msgid "Shipping Details"
1653
+ msgstr "运输详情"
1654
+
1655
+ #: user-log.php:188
1656
+ msgid "Order Details"
1657
+ msgstr "订单详情"
1658
+
1659
+ #: user-log.php:212
1660
+ msgid "GST"
1661
+ msgstr "GST"
1662
+
1663
+ #: user-log.php:318
1664
+ msgid "Final Total"
1665
+ msgstr "最终价"
1666
+
1667
+ #: user-log.php:360
1668
+ #: wpsc-includes/install_and_update.functions.php:652
1669
+ #: wpsc-includes/install_and_update.functions.php:660
1670
+ msgid "Address"
1671
+ msgstr "地址"
1672
+
1673
+ #: user-log.php:384
1674
+ msgid "Purchase No."
1675
+ msgstr "销售单号"
1676
+
1677
+ #: user-log.php:387
1678
+ msgid "Transaction Id"
1679
+ msgstr "交易单ID"
1680
+
1681
+ #: user-log.php:401
1682
+ msgid "No transactions for this month."
1683
+ msgstr "这个月还没有交易。"
1684
+
1685
+ #: user-log.php:412
1686
+ msgid "There have not been any purchases yet."
1687
+ msgstr "尚未有任何消费。"
1688
+
1689
+ #: user-log.php:427
1690
+ msgid "You must be logged in to use this page. Please use the form below to login to your account."
1691
+ msgstr "您必须先登录才能使用此页。请使用下面的表单登录您的帐户。"
1692
+
1693
+ #: widgets/admin_menu_widget.php:8
1694
+ #: widgets/admin_menu_widget.php:22
1695
+ msgid "Admin Menu"
1696
+ msgstr "管理员菜单"
1697
+
1698
+ #: widgets/category_widget.27.php:19
1699
+ #: wpsc-admin/admin.php:104
1700
+ #: wpsc-admin/display-groups.page.php:565
1701
+ #: wpsc-admin/includes/display-items-functions.php:404
1702
+ #: wpsc-includes/category.functions.php:361
1703
+ msgid "Categories"
1704
+ msgstr "类别"
1705
+
1706
+ #: widgets/category_widget.27.php:134
1707
+ #: widgets/category_widget.28.php:69
1708
+ #: widgets/donations_widget.php:71
1709
+ #: widgets/latest_product_widget.php:74
1710
+ #: widgets/price_range_widget.php:71
1711
+ #: widgets/product_tag_widget.php:30
1712
+ #: widgets/shopping_cart_widget.php:78
1713
+ #: widgets/specials_widget.php:103
1714
+ msgid "Title:"
1715
+ msgstr "标题:"
1716
+
1717
+ #: widgets/category_widget.27.php:159
1718
+ #: widgets/category_widget.28.php:80
1719
+ msgid "Display the :category: Group"
1720
+ msgstr "显示 :category: 的组别"
1721
+
1722
+ #: widgets/category_widget.27.php:168
1723
+ #: widgets/category_widget.28.php:88
1724
+ msgid "Display the Group thumbnails in the sidebar"
1725
+ msgstr "显示组别缩略图在侧边栏"
1726
+
1727
+ #: widgets/category_widget.27.php:179
1728
+ #: widgets/category_widget.28.php:11
1729
+ msgid "Product Grouping Widget"
1730
+ msgstr "商品组别Widget"
1731
+
1732
+ #: widgets/category_widget.27.php:181
1733
+ #: widgets/category_widget.28.php:12
1734
+ #: widgets/category_widget.28.php:19
1735
+ msgid "Product Categories"
1736
+ msgstr "商品类别"
1737
+
1738
+ #: widgets/latest_product_widget.php:7
1739
+ #: widgets/latest_product_widget.php:88
1740
+ #: widgets/latest_product_widget.php:89
1741
+ msgid "Latest Products"
1742
+ msgstr "最新商品"
1743
+
1744
+ #: widgets/latest_product_widget.php:75
1745
+ msgid "Number of products to show:"
1746
+ msgstr "显示商品数量:"
1747
+
1748
+ #: widgets/price_range_widget.php:6
1749
+ #: widgets/price_range_widget.php:77
1750
+ #: widgets/price_range_widget.php:78
1751
+ msgid "Price Range"
1752
+ msgstr "价格范围"
1753
+
1754
+ #: widgets/price_range_widget.php:54
1755
+ msgid "Show All"
1756
+ msgstr "显示全部"
1757
+
1758
+ #: widgets/product_tag_widget.php:9
1759
+ #: widgets/product_tag_widget.php:38
1760
+ #: widgets/product_tag_widget.php:39
1761
+ #: wpsc-admin/includes/display-items-functions.php:428
1762
+ #: wpsc-admin/includes/display-items-functions.php:430
1763
+ msgid "Product Tags"
1764
+ msgstr "商品标签"
1765
+
1766
+ #: widgets/shopping_cart_widget.php:43
1767
+ #: widgets/shopping_cart_widget.php:48
1768
+ msgid "Loading..."
1769
+ msgstr "Loading..."
1770
+
1771
+ #: widgets/shopping_cart_widget.php:79
1772
+ msgid "Hide Cart When Empty:"
1773
+ msgstr "隐藏空购物车:"
1774
+
1775
+ #: widgets/specials_widget.php:10
1776
+ #: widgets/specials_widget.php:112
1777
+ #: widgets/specials_widget.php:113
1778
+ msgid "Product Specials"
1779
+ msgstr "特价商品"
1780
+
1781
+ #: widgets/specials_widget.php:106
1782
+ msgid "Show Description:"
1783
+ msgstr "显示简介:"
1784
+
1785
+ #: wp-shopping-cart.php:156
1786
+ msgid "Note: if this is blank, the image will not be resized"
1787
+ msgstr "注意:如果这是空白,图片将不会改变大小"
1788
+
1789
+ #: wp-shopping-cart.php:157
1790
+ #: wpsc-includes/install_and_update.functions.php:68
1791
+ msgid "Order Received"
1792
+ msgstr "收到订单"
1793
+
1794
+ #: wp-shopping-cart.php:159
1795
+ #: wpsc-includes/install_and_update.functions.php:71
1796
+ msgid "Closed Order"
1797
+ msgstr "关闭订单"
1798
+
1799
+ #: wp-shopping-cart.php:529
1800
+ msgid "Please Note"
1801
+ msgstr "请注意"
1802
+
1803
+ #: wp-shopping-cart.php:530
1804
+ #, php-format
1805
+ msgid "Before upgrading you should check the <a %s>upgrade information</a> and changelog as you may need to make updates to your template files."
1806
+ msgstr "升级之前你应该检查<a %s>升级信息</a>和更新日志,另外你可能需要更新您的模板。"
1807
+
1808
+ #: wpsc-admin/admin.php:77
1809
+ #: wpsc-admin/admin.php:80
1810
+ #: wpsc-admin/admin.php:82
1811
+ #: wpsc-admin/admin.php:87
1812
+ #: wpsc-admin/admin.php:90
1813
+ msgid "Store"
1814
+ msgstr "商店"
1815
+
1816
+ #: wpsc-admin/admin.php:95
1817
+ #: wpsc-admin/admin.php:449
1818
+ #: wpsc-admin/admin.php:479
1819
+ #: wpsc-admin/display-sales-logs.php:32
1820
+ #: wpsc-admin/includes/purchlogs_upgrade.php:73
1821
+ msgid "Sales"
1822
+ msgstr "销售"
1823
+
1824
+ #: wpsc-admin/admin.php:100
1825
+ msgid "Products"
1826
+ msgstr "商品"
1827
+
1828
+ #: wpsc-admin/admin.php:108
1829
+ msgid "Variations"
1830
+ msgstr "可变属性"
1831
+
1832
+ #: wpsc-admin/admin.php:131
1833
+ #: wpsc-admin/admin.php:133
1834
+ msgid "Marketing"
1835
+ msgstr "市场营销"
1836
+
1837
+ #: wpsc-admin/admin.php:140
1838
+ #: wpsc-admin/display-upgrades.page.php:61
1839
+ msgid "Upgrades"
1840
+ msgstr "升级服务"
1841
+
1842
+ #: wpsc-admin/admin.php:144
1843
+ msgid "- Debug"
1844
+ msgstr "- 调试"
1845
+
1846
+ #: wpsc-admin/admin.php:181
1847
+ msgid "Product Tracking Email"
1848
+ msgstr "商品跟踪邮件"
1849
+
1850
+ #: wpsc-admin/admin.php:182
1851
+ msgid ""
1852
+ "Track & Trace means you may track the progress of your parcel with our online parcel tracker, just login to our website and enter the following Tracking ID to view the status of your order.\n"
1853
+ "\n"
1854
+ "Tracking ID: %trackid%\n"
1855
+ msgstr ""
1856
+ "货物跟踪意味着你可以使用在线包裹跟踪查询您的包裹与进展情况,只需登录我们的网站,输入下面的跟踪ID,以查看您的订单的状态。\n"
1857
+ "\n"
1858
+ "跟踪ID: %trackid%\n"
1859
+
1860
+ #: wpsc-admin/admin.php:235
1861
+ msgid "Tags used on this post:"
1862
+ msgstr "该贴使用标签:"
1863
+
1864
+ #: wpsc-admin/admin.php:237
1865
+ msgid "Add new tag"
1866
+ msgstr "添加新的标签"
1867
+
1868
+ #: wpsc-admin/admin.php:238
1869
+ #: wpsc-admin/includes/display-items-functions.php:432
1870
+ msgid "Separate tags with commas"
1871
+ msgstr "用英文逗号分隔标签"
1872
+
1873
+ #: wpsc-admin/admin.php:348
1874
+ msgid "Text"
1875
+ msgstr "文本"
1876
+
1877
+ #: wpsc-admin/admin.php:351
1878
+ msgid "Textarea"
1879
+ msgstr "多行文本"
1880
+
1881
+ #: wpsc-admin/admin.php:352
1882
+ msgid "Heading"
1883
+ msgstr "标题"
1884
+
1885
+ #: wpsc-admin/admin.php:353
1886
+ msgid "Coupon"
1887
+ msgstr "优惠券"
1888
+
1889
+ #: wpsc-admin/admin.php:358
1890
+ #: wpsc-admin/includes/display-items-functions.php:1079
1891
+ msgid "Label"
1892
+ msgstr "Label"
1893
+
1894
+ #: wpsc-admin/admin.php:359
1895
+ #: wpsc-admin/includes/display-items-functions.php:1083
1896
+ msgid "Label Description"
1897
+ msgstr "Label Description"
1898
+
1899
+ #: wpsc-admin/admin.php:360
1900
+ #: wpsc-admin/includes/display-items-functions.php:1091
1901
+ msgid "Item Number"
1902
+ msgstr "项目编号"
1903
+
1904
+ #: wpsc-admin/admin.php:361
1905
+ #: wpsc-admin/includes/display-items-functions.php:1087
1906
+ msgid "Life Number"
1907
+ msgstr "Life Number"
1908
+
1909
+ #: wpsc-admin/admin.php:362
1910
+ #: wpsc-admin/includes/display-items-functions.php:1095
1911
+ msgid "Product Code"
1912
+ msgstr "Product Code"
1913
+
1914
+ #: wpsc-admin/admin.php:363
1915
+ #: wpsc-admin/includes/display-items-functions.php:1099
1916
+ msgid "PDF"
1917
+ msgstr "PDF"
1918
+
1919
+ #: wpsc-admin/admin.php:436
1920
+ #: wpsc-admin/display-sales-logs.php:359
1921
+ msgid "Last 30 Days"
1922
+ msgstr "最近30天"
1923
+
1924
+ #: wpsc-admin/admin.php:455
1925
+ #: wpsc-admin/admin.php:485
1926
+ msgid "Orders"
1927
+ msgstr "订单数"
1928
+
1929
+ #: wpsc-admin/admin.php:465
1930
+ #: wpsc-admin/admin.php:497
1931
+ msgid "Avg Orders"
1932
+ msgstr "平均订单数"
1933
+
1934
+ #: wpsc-admin/admin.php:475
1935
+ #: wpsc-admin/display-sales-logs.php:372
1936
+ msgid "Life Time"
1937
+ msgstr "Life Time"
1938
+
1939
+ #: wpsc-admin/admin.php:518
1940
+ #: wpsc-admin/admin.php:746
1941
+ msgid "e-Commerce"
1942
+ msgstr "e-Commerce"
1943
+
1944
+ #: wpsc-admin/admin.php:535
1945
+ msgid "E-Commerce"
1946
+ msgstr "E-Commerce"
1947
+
1948
+ #: wpsc-admin/admin.php:652
1949
+ msgid "Sales by Quarter"
1950
+ msgstr "季度销售"
1951
+
1952
+ #: wpsc-admin/admin.php:738
1953
+ msgid "Sales by"
1954
+ msgstr "Sales by"
1955
+
1956
+ #: wpsc-admin/admin.php:781
1957
+ 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."
1958
+ msgstr "你的 \"products page\" 目前没有设置显示任何商品。您需要选择一个商品组别,作为默认显示。 <br />请在商店设置页中设置。"
1959
+
1960
+ #: wpsc-admin/ajax-and-init.php:767
1961
+ #: wpsc-admin/display-variations.page.php:145
1962
+ msgid "Edit Variation Set"
1963
+ msgstr "编辑可变属性"
1964
+
1965
+ #: wpsc-admin/ajax-and-init.php:990
1966
+ msgid "Your Order"
1967
+ msgstr "你的订单"
1968
+
1969
+ #: wpsc-admin/ajax-and-init.php:1111
1970
+ #: wpsc-admin/ajax-and-init.php:1112
1971
+ #: wpsc-admin/includes/display-items-functions.php:1035
1972
+ msgid "Click to download"
1973
+ msgstr "点击下载"
1974
+
1975
+ #: wpsc-admin/ajax-and-init.php:1237
1976
+ msgid "The administrator has unlocked your file"
1977
+ msgstr "管理员已解锁您的文件"
1978
+
1979
+ #: wpsc-admin/ajax-and-init.php:1237
1980
+ 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."
1981
+ msgstr "尊敬的客户,我们很高兴地通知您,您的订单已被更新,现在你可以下载了。你购买的下载请使用下列链接。[download_links] 感谢你的惠顾。"
1982
+
1983
+ #: wpsc-admin/display-groups.page.php:41
1984
+ msgid "Select the markets you are selling this category to."
1985
+ msgstr "选择你销售该类别的目标市场。"
1986
+
1987
+ #: wpsc-admin/display-groups.page.php:236
1988
+ msgid "The item has been added"
1989
+ msgstr "该项目已经被添加"
1990
+
1991
+ #: wpsc-admin/display-groups.page.php:238
1992
+ #: wpsc-admin/display-groups.page.php:244
1993
+ msgid "The item has not been added"
1994
+ msgstr "该项目未被添加"
1995
+
1996
+ #: wpsc-admin/display-groups.page.php:469
1997
+ msgid "The product group has been edited."
1998
+ msgstr "该商品组别已经编辑。"
1999
+
2000
+ #: wpsc-admin/display-groups.page.php:474
2001
+ msgid "The group has been added."
2002
+ msgstr "该组别已添加。"
2003
+
2004
+ #: wpsc-admin/display-groups.page.php:486
2005
+ msgid "The group has been edited."
2006
+ msgstr "该组别已编辑。"
2007
+
2008
+ #: wpsc-admin/display-groups.page.php:542
2009
+ msgid "Are you sure you want to delete this category? If the category has any subcategories, they will be deleted too."
2010
+ msgstr "你确定要删除这个类别?如果该类别有任何子类,他们也将被删除。"
2011
+
2012
+ #: wpsc-admin/display-groups.page.php:550
2013
+ msgid "Are you sure you want to delete this product group? All categories it contains will be deleted too."
2014
+ msgstr "你确定要删除这个产品组别?它包含所有类别也将被删除。"
2015
+
2016
+ #: wpsc-admin/display-groups.page.php:573
2017
+ 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."
2018
+ msgstr "将商品分类成不同的组别可以帮助你的顾客更好的寻找需要的商品。例如,如果你销售的是帽子和裤子,你可以建立一个名为衣物的组别,然后将帽子和裤子都添加进去。"
2019
+
2020
+ #: wpsc-admin/display-groups.page.php:588
2021
+ msgid "Select a Group to Manage"
2022
+ msgstr "选择一个组别进行整理"
2023
+
2024
+ #: wpsc-admin/display-groups.page.php:606
2025
+ msgid "or"
2026
+ msgstr "或"
2027
+
2028
+ #: wpsc-admin/display-groups.page.php:608
2029
+ #: wpsc-admin/display-groups.page.php:625
2030
+ msgid "Add New Group"
2031
+ msgstr "添加新组别"
2032
+
2033
+ #: wpsc-admin/display-groups.page.php:649
2034
+ msgid "Edit Group"
2035
+ msgstr "编辑组别"
2036
+
2037
+ #: wpsc-admin/display-groups.page.php:684
2038
+ msgid "&quot;[categorisation]&quot; Group"
2039
+ msgstr "&quot;[categorisation]&quot; 组别"
2040
+
2041
+ #: wpsc-admin/display-groups.page.php:694
2042
+ msgid "Image"
2043
+ msgstr "图片"
2044
+
2045
+ #: wpsc-admin/display-groups.page.php:717
2046
+ msgid "You are editing the &quot;[categorisation]&quot; Group"
2047
+ msgstr "你正在编辑 &quot;[categorisation]&quot; 组别"
2048
+
2049
+ #: wpsc-admin/display-groups.page.php:738
2050
+ #: wpsc-admin/display-groups.page.php:742
2051
+ msgid "You are editing an item in the &quot;[categorisation]&quot; Group"
2052
+ msgstr "你正在编辑 &quot;[categorisation]&quot; 组别下的商品"
2053
+
2054
+ #: wpsc-admin/display-groups.page.php:741
2055
+ msgid "Edit Details"
2056
+ msgstr "编辑详情"
2057
+
2058
+ #: wpsc-admin/display-groups.page.php:757
2059
+ #: wpsc-admin/display-groups.page.php:920
2060
+ msgid "Add Category"
2061
+ msgstr "添加类别"
2062
+
2063
+ #: wpsc-admin/display-groups.page.php:760
2064
+ msgid "Adding a new category here will make it available when you add or edit a product."
2065
+ msgstr "当你添加或编辑一个商品可在这里添加新的类别。"
2066
+
2067
+ #: wpsc-admin/display-groups.page.php:766
2068
+ #: wpsc-admin/display-groups.page.php:769
2069
+ msgid "You are adding a new item to the &quot;[categorisation]&quot; Group"
2070
+ msgstr "你添加了一个新的项目到 &quot;[categorisation]&quot; 组别"
2071
+
2072
+ #: wpsc-admin/display-groups.page.php:791
2073
+ msgid "Group Parent"
2074
+ msgstr "上级组别"
2075
+
2076
+ #: wpsc-admin/display-groups.page.php:799
2077
+ msgid "Group&nbsp;Image"
2078
+ msgstr "组别&nbsp;图片"
2079
+
2080
+ #: wpsc-admin/display-items.page.php:29
2081
+ msgid "Display Products"
2082
+ msgstr "显示商品"
2083
+
2084
+ #: wpsc-admin/display-items.page.php:49
2085
+ #: wpsc-admin/display-items.page.php:54
2086
+ #: wpsc-admin/display-items.page.php:63
2087
+ #: wpsc-admin/display-items.page.php:68
2088
+ #, php-format
2089
+ msgid "Product duplicated."
2090
+ msgid_plural "%s products duplicated."
2091
+ msgstr[0] ""
2092
+ msgstr[1] ""
2093
+
2094
+ #: wpsc-admin/display-items.page.php:74
2095
+ #: wpsc-admin/display-variations.page.php:49
2096
+ msgid "Product updated."
2097
+ msgstr "商品已更新。"
2098
+
2099
+ #: wpsc-admin/display-items.page.php:114
2100
+ 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."
2101
+ msgstr "下列目录权限为不能写 :directory: 你不能上传图片或者文件到这里。你需要把这些目录权限改为可写属性。"
2102
+
2103
+ #: wpsc-admin/display-items.page.php:147
2104
+ msgid ""
2105
+ "You are about to delete the selected products.\n"
2106
+ " 'Cancel' to stop, 'OK' to delete."
2107
+ msgstr ""
2108
+ "你确定要删除这些已选定商品?\n"
2109
+ " 点击 'Cancel' 取消, 'OK' 删除。"
2110
+
2111
+ #: wpsc-admin/display-items.page.php:232
2112
+ msgid "&laquo;"
2113
+ msgstr "&laquo;"
2114
+
2115
+ #: wpsc-admin/display-items.page.php:233
2116
+ msgid "&raquo;"
2117
+ msgstr "&raquo;"
2118
+
2119
+ #: wpsc-admin/display-items.page.php:271
2120
+ msgid "Search"
2121
+ msgstr "搜索"
2122
+
2123
+ #: wpsc-admin/display-items.page.php:276
2124
+ #: wpsc-admin/display-sales-logs.php:419
2125
+ msgid "Bulk Actions"
2126
+ msgstr "批量操作"
2127
+
2128
+ #: wpsc-admin/display-items.page.php:278
2129
+ #: wpsc-admin/display-items.page.php:426
2130
+ #: wpsc-admin/includes/display-items-functions.php:823
2131
+ msgid "Publish"
2132
+ msgstr "发布"
2133
+
2134
+ #: wpsc-admin/display-items.page.php:279
2135
+ #: wpsc-admin/display-items.page.php:366
2136
+ msgid "Draft"
2137
+ msgstr "草稿"
2138
+
2139
+ #: wpsc-admin/display-items.page.php:283
2140
+ #: wpsc-admin/display-sales-logs.php:428
2141
+ msgid "Apply"
2142
+ msgstr "应用"
2143
+
2144
+ #: wpsc-admin/display-items.page.php:319
2145
+ msgid "No Name"
2146
+ msgstr "没有名称"
2147
+
2148
+ #: wpsc-admin/display-items.page.php:397
2149
+ #: wpsc-admin/includes/display-items-functions.php:351
2150
+ msgid "Delete this product"
2151
+ msgstr "删除该商品"
2152
+
2153
+ #: wpsc-admin/display-items.page.php:399
2154
+ #: wpsc-admin/includes/display-items-functions.php:351
2155
+ #, php-format
2156
+ msgid ""
2157
+ "You are about to delete this product '%s'\n"
2158
+ " 'Cancel' to stop, 'OK' to delete."
2159
+ msgstr ""
2160
+ "你确定要删除该商品 '%s'\n"
2161
+ " 点击 'Cancel' 取消, 'OK' 删除。"
2162
+
2163
+ #: wpsc-admin/display-items.page.php:424
2164
+ msgid "Unpublish"
2165
+ msgstr "不发布"
2166
+
2167
+ #: wpsc-admin/display-items.page.php:453
2168
+ msgid "You have no products added."
2169
+ msgstr "你没有商品添加。"
2170
+
2171
+ #: wpsc-admin/display-items.page.php:470
2172
+ msgid "View All Categories"
2173
+ msgstr "显示所有类别"
2174
+
2175
+ #: wpsc-admin/display-options-settings.page.php:18
2176
+ msgid "It looks like your wp-e-commerce theme files are out of date, this can cause potential problems with some gateways and the appearances of the front end of your shop. <br /><strong>We recommend you download the latest version of wp-e-commerce unzip it, and copy the new themes folder into your 'uploads/wpsc/themes' folder on your site. Or port your changes across.</strong>"
2177
+ msgstr "你的wp-e-commerce主题文件可能已过时,这将导致你商店的一些网关和前端显示有潜在出错的可能。<br /><strong>我们建议您下载wp-e-commerce并且打开压缩文件,拷贝新的主题文件夹到 'uploads/wpsc/themes' 目录。或者改变你的端口。</strong>"
2178
+
2179
+ #: wpsc-admin/display-options-settings.page.php:44
2180
+ msgid "Thanks, your thumbnail images have been resized."
2181
+ msgstr "谢谢,你的缩略图已调整大小了。"
2182
+
2183
+ #: wpsc-admin/display-options-settings.page.php:99
2184
+ msgid "General"
2185
+ msgstr "常规"
2186
+
2187
+ #: wpsc-admin/display-options-settings.page.php:100
2188
+ msgid "Presentation"
2189
+ msgstr "显示"
2190
+
2191
+ #: wpsc-admin/display-options-settings.page.php:101
2192
+ msgid "Admin"
2193
+ msgstr "管理员"
2194
+
2195
+ #: wpsc-admin/display-options-settings.page.php:103
2196
+ msgid "Payment Options"
2197
+ msgstr "支付选项"
2198
+
2199
+ #: wpsc-admin/display-options-settings.page.php:104
2200
+ msgid "Import"
2201
+ msgstr "导入"
2202
+
2203
+ #: wpsc-admin/display-options-settings.page.php:105
2204
+ #: wpsc-includes/install_and_update.functions.php:213
2205
+ msgid "Checkout"
2206
+ msgstr "结算"
2207
+
2208
+ #: wpsc-admin/display-options-settings.page.php:176
2209
+ msgid "To configure a shipping module select one on the left."
2210
+ msgstr "要配置运输模块,从左侧选择其中之一。"
2211
+
2212
+ #: wpsc-admin/display-options-settings.page.php:186
2213
+ #, php-format
2214
+ msgid " Setting Options Updated. "
2215
+ msgid_plural " %s Settings Options Updated. "
2216
+ msgstr[0] ""
2217
+ msgstr[1] ""
2218
+
2219
+ #: wpsc-admin/display-options-settings.page.php:191
2220
+ #, php-format
2221
+ msgid "%s Setting Option deleted. "
2222
+ msgid_plural "%s Setting Option deleted. "
2223
+ msgstr[0] ""
2224
+ msgstr[1] ""
2225
+
2226
+ #: wpsc-admin/display-options-settings.page.php:195
2227
+ msgid " Shipping Option Updated."
2228
+ msgid_plural " Shipping Option Updated."
2229
+ msgstr[0] ""
2230
+ msgstr[1] ""
2231
+
2232
+ #: wpsc-admin/display-options-settings.page.php:199
2233
+ #, php-format
2234
+ msgid "%s Checkout Field Added."
2235
+ msgid_plural "%s Checkout Fields Added."
2236
+ msgstr[0] ""
2237
+ msgstr[1] ""
2238
+
2239
+ #: wpsc-admin/display-sales-logs.php:65
2240
+ #, php-format
2241
+ msgid "%s Purchase Log updated."
2242
+ msgid_plural "%s Purchase Logs updated."
2243
+ msgstr[0] ""
2244
+ msgstr[1] ""
2245
+
2246
+ #: wpsc-admin/display-sales-logs.php:73
2247
+ #, php-format
2248
+ msgid "%s product not updated, somebody is editing it."
2249
+ msgid_plural "%s products not updated, somebody is editing them."
2250
+ msgstr[0] ""
2251
+ msgstr[1] ""
2252
+
2253
+ #: wpsc-admin/display-sales-logs.php:78
2254
+ #, php-format
2255
+ msgid "%s Purchase Log deleted."
2256
+ msgid_plural "%s Purchase Logs deleted."
2257
+ msgstr[0] ""
2258
+ msgstr[1] ""
2259
+
2260
+ #: wpsc-admin/display-sales-logs.php:88
2261
+ 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 "
2262
+ msgstr "当从wp-e-commerce插件 3.6升级到3.7,由于重建了新的销售记录系统,因此需要你重新设计结算页面的表单栏目。"
2263
+
2264
+ #: wpsc-admin/display-sales-logs.php:114
2265
+ msgid "GetShopped News"
2266
+ msgstr "GetShopped新闻"
2267
+
2268
+ #: wpsc-admin/display-sales-logs.php:151
2269
+ msgid "Downloads for this log have been released."
2270
+ msgid_plural "Downloads for this log have been released."
2271
+ msgstr[0] ""
2272
+ msgstr[1] ""
2273
+
2274
+ #: wpsc-admin/display-sales-logs.php:155
2275
+ msgid "Receipt has been resent "
2276
+ msgid_plural "Receipt has been resent "
2277
+ msgstr[0] ""
2278
+ msgstr[1] ""
2279
+
2280
+ #: wpsc-admin/display-sales-logs.php:196
2281
+ #: wpsc-admin/includes/settings-pages/shipping.php:46
2282
+ msgid "Shipping Options"
2283
+ msgstr "运输选项"
2284
+
2285
+ #: wpsc-admin/display-sales-logs.php:199
2286
+ msgid "Shipping Method:"
2287
+ msgstr "运输方法:"
2288
+
2289
+ #: wpsc-admin/display-sales-logs.php:200
2290
+ msgid "Shipping Option:"
2291
+ msgstr "运输选项:"
2292
+
2293
+ #: wpsc-admin/display-sales-logs.php:202
2294
+ msgid "Tracking ID:"
2295
+ msgstr "跟踪号码:"
2296
+
2297
+ #: wpsc-admin/display-sales-logs.php:203
2298
+ msgid "Shipping Status:"
2299
+ msgstr "运输状态:"
2300
+
2301
+ #: wpsc-admin/display-sales-logs.php:204
2302
+ msgid "Track History:"
2303
+ msgstr "跟踪历史记录:"
2304
+
2305
+ #: wpsc-admin/display-sales-logs.php:210
2306
+ msgid "Billing Details"
2307
+ msgstr "支付详细资料"
2308
+
2309
+ #: wpsc-admin/display-sales-logs.php:211
2310
+ msgid "Purchase Log Date:"
2311
+ msgstr "购买日期:"
2312
+
2313
+ #: wpsc-admin/display-sales-logs.php:212
2314
+ msgid "Purchase Number:"
2315
+ msgstr "消费单号:"
2316
+
2317
+ #: wpsc-admin/display-sales-logs.php:213
2318
+ msgid "Buyers Name:"
2319
+ msgstr "顾客姓名:"
2320
+
2321
+ #: wpsc-admin/display-sales-logs.php:214
2322
+ msgid "Address:"
2323
+ msgstr "地址:"
2324
+
2325
+ #: wpsc-admin/display-sales-logs.php:216
2326
+ msgid "Phone:"
2327
+ msgstr "电话:"
2328
+
2329
+ #: wpsc-admin/display-sales-logs.php:217
2330
+ msgid "Email:"
2331
+ msgstr "Email:"
2332
+
2333
+ #: wpsc-admin/display-sales-logs.php:218
2334
+ msgid "Payment Method:"
2335
+ msgstr "支付方式:"
2336
+
2337
+ #: wpsc-admin/display-sales-logs.php:220
2338
+ msgid "How User Found Us:"
2339
+ msgstr "如何知道我们:"
2340
+
2341
+ #: wpsc-admin/display-sales-logs.php:226
2342
+ msgid "Items Ordered"
2343
+ msgstr "商品已订购"
2344
+
2345
+ #: wpsc-admin/display-sales-logs.php:268
2346
+ msgid "Order Status:"
2347
+ msgstr "订单状态:"
2348
+
2349
+ #: wpsc-admin/display-sales-logs.php:288
2350
+ msgid "Actions"
2351
+ msgstr "行动"
2352
+
2353
+ #: wpsc-admin/display-sales-logs.php:293
2354
+ msgid "View Packing Slip"
2355
+ msgstr "查看装箱单"
2356
+
2357
+ #: wpsc-admin/display-sales-logs.php:295
2358
+ msgid "Resend Receipt to Buyer"
2359
+ msgstr "重发收据给顾客"
2360
+
2361
+ #: wpsc-admin/display-sales-logs.php:297
2362
+ #: wpsc-admin/display-sales-logs.php:550
2363
+ msgid "Delete this log"
2364
+ msgstr "删除该记录"
2365
+
2366
+ #: wpsc-admin/display-sales-logs.php:297
2367
+ #: wpsc-admin/display-sales-logs.php:550
2368
+ #, php-format
2369
+ msgid ""
2370
+ "You are about to delete this log '%s'\n"
2371
+ " 'Cancel' to stop, 'OK' to delete."
2372
+ msgstr ""
2373
+ "你确定要删除该购买记录 '%s'\n"
2374
+ " 点击 'Cancel' 取消,'OK' 删除。"
2375
+
2376
+ #: wpsc-admin/display-sales-logs.php:297
2377
+ msgid "Remove this record"
2378
+ msgstr "移动该记录"
2379
+
2380
+ #: wpsc-admin/display-sales-logs.php:299
2381
+ msgid "Go Back"
2382
+ msgstr "后退"
2383
+
2384
+ #: wpsc-admin/display-sales-logs.php:314
2385
+ msgid "e-Commerce Admin Menu"
2386
+ msgstr "e-Commerce管理员菜单"
2387
+
2388
+ #: wpsc-admin/display-sales-logs.php:333
2389
+ msgid "WP e-Commerce News"
2390
+ msgstr "WP e-Commerce新闻"
2391
+
2392
+ #: wpsc-admin/display-sales-logs.php:355
2393
+ msgid "Order Summary"
2394
+ msgstr "订单一览"
2395
+
2396
+ #: wpsc-admin/display-sales-logs.php:367
2397
+ msgid "(accepted payments)"
2398
+ msgstr "(接受付款)"
2399
+
2400
+ #: wpsc-admin/display-sales-logs.php:382
2401
+ msgid "Subscribe to your orders"
2402
+ msgstr "订阅你的订单"
2403
+
2404
+ #: wpsc-admin/display-sales-logs.php:384
2405
+ msgid "Subscribe to an RSS feed"
2406
+ msgstr "订阅一个RSS源"
2407
+
2408
+ #: wpsc-admin/display-sales-logs.php:384
2409
+ msgid "of your orders"
2410
+ msgstr "到你的订单"
2411
+
2412
+ #: wpsc-admin/display-sales-logs.php:387
2413
+ msgid "Plugin News"
2414
+ msgstr "插件新闻"
2415
+
2416
+ #: wpsc-admin/display-sales-logs.php:389
2417
+ 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. "
2418
+ msgstr "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. "
2419
+
2420
+ #: wpsc-admin/display-sales-logs.php:390
2421
+ msgid "This shop is powered by "
2422
+ msgstr "该商店技术支持:"
2423
+
2424
+ #: wpsc-admin/display-sales-logs.php:399
2425
+ msgid "Upgrade to Gold"
2426
+ msgstr "升级Gold版"
2427
+
2428
+ #: wpsc-admin/display-sales-logs.php:399
2429
+ msgid " and unleash more functionality into your shop."
2430
+ msgstr " 并释放更多功能到贵店。"
2431
+
2432
+ #: wpsc-admin/display-sales-logs.php:430
2433
+ msgid "View:"
2434
+ msgstr "显示:"
2435
+
2436
+ #: wpsc-admin/display-sales-logs.php:468
2437
+ msgid "Filter"
2438
+ msgstr "筛选"
2439
+
2440
+ #: wpsc-admin/display-sales-logs.php:471
2441
+ msgid "Oops there are no purchase logs for your selection, please try again."
2442
+ msgstr "噢,没有消费记录,请重试。"
2443
+
2444
+ #: wpsc-admin/display-sales-logs.php:491
2445
+ msgid "Total:"
2446
+ msgstr "总数:"
2447
+
2448
+ #: wpsc-admin/display-sales-logs.php:503
2449
+ msgid "Download CSV"
2450
+ msgstr "下载CSV文件"
2451
+
2452
+ #: wpsc-admin/display-sales-logs.php:512
2453
+ msgid ""
2454
+ "You are about to delete the selected purchase logs.\n"
2455
+ " 'Cancel' to stop, 'OK' to delete."
2456
+ msgstr ""
2457
+ "你确定删除已选择的购买记录?\n"
2458
+ " 点击 'Cancel' 取消, 'OK' 删除。"
2459
+
2460
+ #: wpsc-admin/display-sales-logs.php:578
2461
+ msgid "Search Logs"
2462
+ msgstr "搜索记录"
2463
+
2464
+ #: wpsc-admin/display-upgrades.page.php:12
2465
+ msgid "WP e-Commerce Upgrades"
2466
+ msgstr "WP e-Commerce升级"
2467
+
2468
+ #: wpsc-admin/display-upgrades.page.php:13
2469
+ msgid "Add more functionality to your e-Commerce site. Prices may be subject to change."
2470
+ msgstr "添加更多的功能到您的电子商务网站。价格可能会有所变动。"
2471
+
2472
+ #: wpsc-admin/display-upgrades.page.php:19
2473
+ msgid "Pure Gold"
2474
+ msgstr "Pure Gold"
2475
+
2476
+ #: wpsc-admin/display-upgrades.page.php:26
2477
+ #: wpsc-admin/includes/settings-pages/presentation.php:671
2478
+ #: wpsc-admin/includes/settings-pages/presentation.php:675
2479
+ msgid "DropShop"
2480
+ msgstr "DropShop"
2481
+
2482
+ #: wpsc-admin/display-upgrades.page.php:33
2483
+ msgid "MP3 Player"
2484
+ msgstr "MP3 Player"
2485
+
2486
+ #: wpsc-admin/display-upgrades.page.php:40
2487
+ msgid "Members Only Module"
2488
+ msgstr "Members Only Module"
2489
+
2490
+ #: wpsc-admin/display-upgrades.page.php:54
2491
+ msgid "NextGen Gallery Buy Now Buttons"
2492
+ msgstr "NextGen Gallery Buy Now Buttons"
2493
+
2494
+ #: wpsc-admin/display-upgrades.page.php:78
2495
+ #: wpsc-admin/display-upgrades.page.php:86
2496
+ msgid "API Key Reset"
2497
+ msgstr "API密钥复位"
2498
+
2499
+ #: wpsc-admin/display-upgrades.page.php:81
2500
+ msgid "Enter your API name and key to release it from an old site that you no longer use."
2501
+ msgstr "输入您旧站点的API名称和密钥,你不需要再使用它了。"
2502
+
2503
+ #: wpsc-admin/display-upgrades.page.php:92
2504
+ msgid "API Key"
2505
+ msgstr "API密钥"
2506
+
2507
+ #: wpsc-admin/display-upgrades.page.php:97
2508
+ msgid "Reset API Key"
2509
+ msgstr "复位API密钥"
2510
+
2511
+ #: wpsc-admin/display-upgrades.page.php:106
2512
+ msgid "Upgrade Instructions"
2513
+ msgstr "升级介绍"
2514
+
2515
+ #: wpsc-admin/display-upgrades.page.php:109
2516
+ #, php-format
2517
+ msgid "If your gold cart files are called 'gold_cart_files': Copy the gold_cart_files directory into the %s folder."
2518
+ msgstr "如果你的gold cart文件名是 'gold_cart_files': 拷贝该gold_cart_files 目录到 %s 文件夹。"
2519
+
2520
+ #: wpsc-admin/display-upgrades.page.php:112
2521
+ 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."
2522
+ msgstr "wp-e=commerce插件被激活的时候,自动创建文件夹。如果没有,你需要自己创建它。"
2523
+
2524
+ #: wpsc-admin/display-upgrades.page.php:115
2525
+ #, php-format
2526
+ msgid "Otherwise If your gold cart files are called 'gold_cart_files_plugin': Copy the gold_cart_files_plugin directory into the %s folder."
2527
+ msgstr "否则如果你的gold cart 文件名称为 'gold_cart_files_plugin': 复制gold_cart_files_plugin 目录到 %s 的文件夹。"
2528
+
2529
+ #: wpsc-admin/display-upgrades.page.php:118
2530
+ msgid "You can find more information on installing Gold Cart in your readme.txt inside the gold cart folder. "
2531
+ msgstr "更多资料你可在安装Gold Cart的gold cart文件夹里面readme.txt文件。"
2532
+
2533
+ #: wpsc-admin/display-upgrades.page.php:122
2534
+ msgid "Once you have done the above a new panel should appear on the Upgrades page where you must enter your API Username and API Key. "
2535
+ msgstr "一旦你完成上述操作,将在升级页面会出现一个新面板,你需要输入API用户名和API密钥"
2536
+
2537
+ #: wpsc-admin/display-upgrades.page.php:126
2538
+ msgid "For more information visit our documentation page."
2539
+ msgstr "更多信息,请访问我们的文档页。"
2540
+
2541
+ #: wpsc-admin/display-upgrades.page.php:170
2542
+ msgid "Your API key has been Reset"
2543
+ msgstr "您的API密钥已经被复位"
2544
+
2545
+ #: wpsc-admin/display-variations.page.php:21
2546
+ msgid "Are you sure you want to delete this product?"
2547
+ msgstr "你确定要删除该商品?"
2548
+
2549
+ #: wpsc-admin/display-variations.page.php:37
2550
+ #: wpsc-admin/includes/settings-pages/presentation.php:392
2551
+ msgid "Display Variations"
2552
+ msgstr "显示可变属性"
2553
+
2554
+ #: wpsc-admin/display-variations.page.php:39
2555
+ 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..."
2556
+ msgstr "可变属性是一个商品的任何 \"属性\" 。例如:大小,颜色等等。 <br />例如:你正在销售T恤,你可以创建一个可变属性叫做 Size,Size的属性值为小码,中码,大码..."
2557
+
2558
+ #: wpsc-admin/display-variations.page.php:149
2559
+ #: wpsc-admin/includes/display-items-functions.php:613
2560
+ msgid "Add Variation Set"
2561
+ msgstr "添加可变属性"
2562
+
2563
+ #: wpsc-admin/display-variations.page.php:199
2564
+ msgid "Add Value"
2565
+ msgstr "添加值"
2566
+
2567
+ #: wpsc-admin/display-variations.page.php:212
2568
+ msgid "Update Variations"
2569
+ msgstr "更新可变属性"
2570
+
2571
+ #: wpsc-admin/includes/display-items-functions.php:137
2572
+ msgid "Edit Product"
2573
+ msgstr "编辑商品"
2574
+
2575
+ #: wpsc-admin/includes/display-items-functions.php:148
2576
+ msgid "Product Name"
2577
+ msgstr "商品名称"
2578
+
2579
+ #: wpsc-admin/includes/display-items-functions.php:157
2580
+ msgid "Display Product Shortcode"
2581
+ msgstr "显示商品 Shortcode"
2582
+
2583
+ #: wpsc-admin/includes/display-items-functions.php:158
2584
+ msgid "Buy Now Shortcode"
2585
+ msgstr "立刻买 Shortcode"
2586
+
2587
+ #: wpsc-admin/includes/display-items-functions.php:159
2588
+ msgid "Add to Cart Shortcode"
2589
+ msgstr "加入购物车 Shortcode"
2590
+
2591
+ #: wpsc-admin/includes/display-items-functions.php:165
2592
+ msgid "Display Product Template Tag"
2593
+ msgstr "显示商品模版标签"
2594
+
2595
+ #: wpsc-admin/includes/display-items-functions.php:166
2596
+ msgid "Buy Now PHP"
2597
+ msgstr "立刻买的PHP"
2598
+
2599
+ #: wpsc-admin/includes/display-items-functions.php:167
2600
+ msgid "Add to Cart PHP"
2601
+ msgstr "加入购物车的PHP"
2602
+
2603
+ #: wpsc-admin/includes/display-items-functions.php:168
2604
+ msgid "Display Product SKU"
2605
+ msgstr "显示商品SKU"
2606
+
2607
+ #: wpsc-admin/includes/display-items-functions.php:185
2608
+ msgid "Stock Keeping Unit"
2609
+ msgstr "单位库存"
2610
+
2611
+ #: wpsc-admin/includes/display-items-functions.php:193
2612
+ msgid "Sale Price :"
2613
+ msgstr "售价:"
2614
+
2615
+ #: wpsc-admin/includes/display-items-functions.php:216
2616
+ msgid "New Currency"
2617
+ msgstr "新货币"
2618
+
2619
+ #: wpsc-admin/includes/display-items-functions.php:220
2620
+ #: wpsc-admin/includes/display-items-functions.php:259
2621
+ #: wpsc-admin/includes/settings-pages/general.php:119
2622
+ #: wpsc-includes/install_and_update.functions.php:114
2623
+ msgid "Currency type"
2624
+ msgstr "货币类型"
2625
+
2626
+ #: wpsc-admin/includes/display-items-functions.php:244
2627
+ #: wpsc-admin/includes/display-items-functions.php:283
2628
+ msgid "Delete Currency"
2629
+ msgstr "删除货币"
2630
+
2631
+ #: wpsc-admin/includes/display-items-functions.php:301
2632
+ msgid "Additional Description"
2633
+ msgstr "附加简介"
2634
+
2635
+ #: wpsc-admin/includes/display-items-functions.php:350
2636
+ msgid "Update Product"
2637
+ msgstr "更新商品"
2638
+
2639
+ #: wpsc-admin/includes/display-items-functions.php:374
2640
+ msgid "Categories and Tags"
2641
+ msgstr "类别和标签"
2642
+
2643
+ #: wpsc-admin/includes/display-items-functions.php:413
2644
+ msgid "Select &quot;[categorisation]&quot;"
2645
+ msgstr "选择 &quot;[categorisation]&quot;"
2646
+
2647
+ #: wpsc-admin/includes/display-items-functions.php:469
2648
+ msgid "Price and Stock Control"
2649
+ msgstr "价格和库存控制"
2650
+
2651
+ #: wpsc-admin/includes/display-items-functions.php:479
2652
+ #, php-format
2653
+ msgid "Do not include tax (tax is set in <a href=\"%s\"/wp-admin/admin.php?page=wpsc-settings\">shop config</a>)"
2654
+ msgstr "不含税 (税费设置在 <a href=\"%s\"/wp-admin/admin.php?page=wpsc-settings\">商店设置</a>)"
2655
+
2656
+ #: wpsc-admin/includes/display-items-functions.php:486
2657
+ msgid "This is a donation, checking this box populates the donations widget."
2658
+ msgstr "这是一个捐赠型商品,点击该选项就会发布在捐献widget上。"
2659
+
2660
+ #: wpsc-admin/includes/display-items-functions.php:493
2661
+ msgid "Table Rate Price"
2662
+ msgstr "数量费率价格"
2663
+
2664
+ #: wpsc-admin/includes/display-items-functions.php:498
2665
+ msgid "Quantity In Cart"
2666
+ msgstr "购物车件数"
2667
+
2668
+ #: wpsc-admin/includes/display-items-functions.php:499
2669
+ msgid "Discounted Price"
2670
+ msgstr "折后价格"
2671
+
2672
+ #: wpsc-admin/includes/display-items-functions.php:534
2673
+ msgid "Custom Tax Rate"
2674
+ msgstr "自定义税率"
2675
+
2676
+ #: wpsc-admin/includes/display-items-functions.php:548
2677
+ 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."
2678
+ msgstr "该商品有库存限制。如果库存不足,该商品将不会上架。除非你取消这个选项或者添加更多库存。"
2679
+
2680
+ #: wpsc-admin/includes/display-items-functions.php:563
2681
+ #: wpsc-admin/includes/display-items-functions.php:577
2682
+ #: wpsc-admin/includes/display-items-functions.php:584
2683
+ msgid "If this product runs out of stock set status to Unpublished & email site owner"
2684
+ msgstr "如果该商品低于库存设置,商品将不会发布而且会发送email给网站管理员"
2685
+
2686
+ #: wpsc-admin/includes/display-items-functions.php:576
2687
+ #: wpsc-admin/includes/display-items-functions.php:583
2688
+ msgid "Stock Qty"
2689
+ msgstr "库存数量"
2690
+
2691
+ #: wpsc-admin/includes/display-items-functions.php:610
2692
+ msgid "Variation Control"
2693
+ msgstr "可变属性控制"
2694
+
2695
+ #: wpsc-admin/includes/display-items-functions.php:614
2696
+ msgid "+ Add New Variations"
2697
+ msgstr "+ 添加新的可变属性"
2698
+
2699
+ #: wpsc-admin/includes/display-items-functions.php:660
2700
+ msgid "Weight"
2701
+ msgstr "重量"
2702
+
2703
+ #: wpsc-admin/includes/display-items-functions.php:700
2704
+ msgid "Length"
2705
+ msgstr "长度"
2706
+
2707
+ #: wpsc-admin/includes/display-items-functions.php:724
2708
+ msgid "Flat Rate Settings"
2709
+ msgstr "统一费率设置"
2710
+
2711
+ #: wpsc-admin/includes/display-items-functions.php:729
2712
+ msgid "Local Shipping Fee"
2713
+ msgstr "本地运输计费"
2714
+
2715
+ #: wpsc-admin/includes/display-items-functions.php:738
2716
+ msgid "International Shipping Fee"
2717
+ msgstr "国际运输计费"
2718
+
2719
+ #: wpsc-admin/includes/display-items-functions.php:747
2720
+ msgid "Disregard Shipping for this product"
2721
+ msgstr "该商品忽略运输"
2722
+
2723
+ #: wpsc-admin/includes/display-items-functions.php:776
2724
+ msgid "Advanced Options"
2725
+ msgstr "高级选项"
2726
+
2727
+ #: wpsc-admin/includes/display-items-functions.php:784
2728
+ msgid "Custom Meta"
2729
+ msgstr "自定义Meta"
2730
+
2731
+ #: wpsc-admin/includes/display-items-functions.php:785
2732
+ msgid "Add Custom Meta"
2733
+ msgstr "添加自定义Meta"
2734
+
2735
+ #: wpsc-admin/includes/display-items-functions.php:795
2736
+ msgid "Value"
2737
+ msgstr "值"
2738
+
2739
+ #: wpsc-admin/includes/display-items-functions.php:812
2740
+ msgid "Merchant Notes"
2741
+ msgstr "商店备注"
2742
+
2743
+ #: wpsc-admin/includes/display-items-functions.php:815
2744
+ msgid "These notes are only available here."
2745
+ msgstr "这些备注只显示在这里。"
2746
+
2747
+ #: wpsc-admin/includes/display-items-functions.php:834
2748
+ msgid "Personalisation Options"
2749
+ msgstr "个性化选项"
2750
+
2751
+ #: wpsc-admin/includes/display-items-functions.php:837
2752
+ msgid "Users can personalize this product by leaving a message on single product page"
2753
+ msgstr "顾客可以在独立商品页留言评论该商品"
2754
+
2755
+ #: wpsc-admin/includes/display-items-functions.php:846
2756
+ msgid "Users can upload images on single product page to purchase logs."
2757
+ msgstr "顾客可以在独立商品页的购买记录上传图片。"
2758
+
2759
+ #: wpsc-admin/includes/display-items-functions.php:857
2760
+ msgid "Prohibited"
2761
+ msgstr "被禁止"
2762
+
2763
+ #: wpsc-admin/includes/display-items-functions.php:871
2764
+ msgid "Off Site Product Link"
2765
+ msgstr "关闭站点商品链接"
2766
+
2767
+ #: wpsc-admin/includes/display-items-functions.php:872
2768
+ 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."
2769
+ msgstr "如果该商品还有在别的网站销售,在此处输入外部链接。例如,如果你的商品是MP3并且在itunes销售,你可以输入该链接在此处。This option over rides the buy now and add to cart links and takes you to the site linked here."
2770
+
2771
+ #: wpsc-admin/includes/display-items-functions.php:873
2772
+ msgid "External Link"
2773
+ msgstr "外部链接"
2774
+
2775
+ #: wpsc-admin/includes/display-items-functions.php:881
2776
+ msgid "Enable IntenseDebate Comments"
2777
+ msgstr "允许IntenseDebate 评论"
2778
+
2779
+ #: wpsc-admin/includes/display-items-functions.php:887
2780
+ msgid "Allow users to comment on this product."
2781
+ msgstr "允许顾客对该商品评论。"
2782
+
2783
+ #: wpsc-admin/includes/display-items-functions.php:914
2784
+ msgid "Product Images"
2785
+ msgstr "商品图片"
2786
+
2787
+ #: wpsc-admin/includes/display-items-functions.php:922
2788
+ msgid "Select Files"
2789
+ msgstr "选择文件"
2790
+
2791
+ #: wpsc-admin/includes/display-items-functions.php:976
2792
+ msgid "You are using the Flash uploader. Problems? Try the <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"browser\")'>Browser uploader</a> instead."
2793
+ msgstr "你正在使用Flash上传器。有问题?请尝试使用 <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"browser\")'>浏览器上传器</a> 替代。"
2794
+
2795
+ #: wpsc-admin/includes/display-items-functions.php:980
2796
+ msgid "To upload multiple product thumbnails you must <a href=\"http://www.instinct.co.nz/shop/\">install the premium upgrade</a>"
2797
+ msgstr "如果需要上传多个商品缩略图 ,你必须<a href=\"http://www.instinct.co.nz/shop/\">安装 the premium upgrade版本</a>"
2798
+
2799
+ #: wpsc-admin/includes/display-items-functions.php:989
2800
+ msgid "Select an image to upload:"
2801
+ msgstr "选择图片上传:"
2802
+
2803
+ #: wpsc-admin/includes/display-items-functions.php:999
2804
+ msgid "You are using the Browser uploader. Problems? Try the <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"flash\")'>Flash uploader</a> instead."
2805
+ msgstr "你正在使用浏览器上传器。有问题?请尝试使用 <a class=\"wpsc_upload_switcher\" onclick='wpsc_upload_switcher(\"flash\")'>Flash上传器</a> 替代。"
2806
+
2807
+ #: wpsc-admin/includes/display-items-functions.php:1003
2808
+ msgid "Manage your thumbnails"
2809
+ msgstr "管理你的缩略图"
2810
+
2811
+ #: wpsc-admin/includes/display-items-functions.php:1025
2812
+ msgid "Product Download"
2813
+ msgstr "商品下载"
2814
+
2815
+ #: wpsc-admin/includes/display-items-functions.php:1028
2816
+ msgid "Upload File"
2817
+ msgstr "上传文件"
2818
+
2819
+ #: wpsc-admin/includes/display-items-functions.php:1029
2820
+ msgid "Max Upload Size"
2821
+ msgstr "最大上传容量"
2822
+
2823
+ #: wpsc-admin/includes/display-items-functions.php:1033
2824
+ msgid "Preview File"
2825
+ msgstr "预览文件"
2826
+
2827
+ #: wpsc-admin/includes/display-items-functions.php:1043
2828
+ msgid "Select an MP3 file to upload as a preview"
2829
+ msgstr "选择一个MP3文件上传作为预览"
2830
+
2831
+ #: wpsc-admin/includes/display-items-functions.php:1064
2832
+ msgid "Label Control"
2833
+ msgstr "标签控制"
2834
+
2835
+ #: wpsc-admin/includes/display-items-functions.php:1070
2836
+ #: wpsc-admin/includes/display-items-functions.php:1071
2837
+ msgid "Add Label"
2838
+ msgstr "添加标签"
2839
+
2840
+ #: wpsc-admin/includes/display-items-functions.php:1128
2841
+ #: wpsc-admin/includes/display-items-functions.php:1155
2842
+ msgid "Preview"
2843
+ msgstr "预览"
2844
+
2845
+ #: wpsc-admin/includes/display-items-functions.php:1199
2846
+ #: wpsc-admin/includes/settings-pages/presentation.php:856
2847
+ msgid "Thumbnail Settings"
2848
+ msgstr "缩略图设置"
2849
+
2850
+ #: wpsc-admin/includes/display-items-functions.php:1207
2851
+ msgid "use default size"
2852
+ msgstr "使用默认尺寸"
2853
+
2854
+ #: wpsc-admin/includes/display-items-functions.php:1207
2855
+ msgid "This is set on the Settings Page"
2856
+ msgstr "设置页面的设置"
2857
+
2858
+ #: wpsc-admin/includes/display-items-functions.php:1213
2859
+ msgid "do not resize thumbnail image"
2860
+ msgstr "不调整缩略图大小"
2861
+
2862
+ #: wpsc-admin/includes/display-items-functions.php:1217
2863
+ msgid "use specific size"
2864
+ msgstr "使用特殊尺寸"
2865
+
2866
+ #: wpsc-admin/includes/display-items-functions.php:1219
2867
+ msgid "px width"
2868
+ msgstr "px宽度"
2869
+
2870
+ #: wpsc-admin/includes/display-items-functions.php:1220
2871
+ msgid "px height"
2872
+ msgstr "px高度"
2873
+
2874
+ #: wpsc-admin/includes/display-items-functions.php:1225
2875
+ msgid "use separate thumbnail"
2876
+ msgstr "使用分隔缩略图"
2877
+
2878
+ #: wpsc-admin/includes/display-items-functions.php:1333
2879
+ #: wpsc-admin/includes/display-items-functions.php:1338
2880
+ msgid "HTML"
2881
+ msgstr "HTML"
2882
+
2883
+ #: wpsc-admin/includes/display-items-functions.php:1334
2884
+ #: wpsc-admin/includes/display-items-functions.php:1339
2885
+ msgid "Visual"
2886
+ msgstr "Visual"
2887
+
2888
+ #: wpsc-admin/includes/product-functions.php:41
2889
+ #, php-format
2890
+ msgid "Please refrain from uploading images larger than <strong>%d x %d</strong> pixels"
2891
+ msgstr "请上传图片不要大于<strong>%dx%d</strong>像素"
2892
+
2893
+ #: wpsc-admin/includes/product-functions.php:52
2894
+ #: wpsc-includes/category.functions.php:220
2895
+ msgid "N/A"
2896
+ msgstr "N/A"
2897
+
2898
+ #: wpsc-admin/includes/product-functions.php:77
2899
+ msgid "<strong>ERROR</strong>: Please enter a Product name.<br />"
2900
+ msgstr "<strong>错误</strong>:请输入一个商品名称。<br />"
2901
+
2902
+ #: wpsc-admin/includes/product-functions.php:80
2903
+ msgid "<strong>ERROR</strong>: Please enter a Product Category.<br />"
2904
+ msgstr "<strong>错误</strong>:请输入一个商品类别。<br />"
2905
+
2906
+ #: wpsc-admin/includes/product-functions.php:192
2907
+ msgid "Could not update product in the database"
2908
+ msgstr "数据库不能更新商品"
2909
+
2910
+ #: wpsc-admin/includes/product-functions.php:200
2911
+ msgid "Could not insert product into the database"
2912
+ msgstr "数据库不能插入商品"
2913
+
2914
+ #: wpsc-admin/includes/purchlogs_upgrade.php:67
2915
+ msgid "Check Out Form Fields updated."
2916
+ msgid_plural "Check Out Form Fields updated."
2917
+ msgstr[0] ""
2918
+ msgstr[1] ""
2919
+
2920
+ #: wpsc-admin/includes/purchlogs_upgrade.php:74
2921
+ #, fuzzy
2922
+ 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. "
2923
+ msgstr "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. "
2924
+
2925
+ #: wpsc-admin/includes/settings-pages/admin.php:7
2926
+ msgid "Admin Settings"
2927
+ msgstr "Admin Settings"
2928
+
2929
+ #: wpsc-admin/includes/settings-pages/admin.php:13
2930
+ msgid "Max downloads per file"
2931
+ msgstr "文件最大下载数量"
2932
+
2933
+ #: wpsc-admin/includes/settings-pages/admin.php:35
2934
+ msgid "Lock downloads to IP address"
2935
+ msgstr "锁定下载文件的IP地址"
2936
+
2937
+ #: wpsc-admin/includes/settings-pages/admin.php:61
2938
+ msgid "Check MIME types on file uploads"
2939
+ msgstr "检查上传文件的MIME类型"
2940
+
2941
+ #: wpsc-admin/includes/settings-pages/admin.php:68
2942
+ #, fuzzy
2943
+ 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."
2944
+ msgstr "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."
2945
+
2946
+ #: wpsc-admin/includes/settings-pages/admin.php:76
2947
+ msgid "Purchase Log Email"
2948
+ msgstr "消费记录Email"
2949
+
2950
+ #: wpsc-admin/includes/settings-pages/admin.php:80
2951
+ msgid "i.e. this is the address where your purchase reports are sent."
2952
+ msgstr "即该地址是你消费收据的收件地址。"
2953
+
2954
+ #: wpsc-admin/includes/settings-pages/admin.php:86
2955
+ msgid "Purchase Receipt - Reply Address"
2956
+ msgstr "消费收据回复地址"
2957
+
2958
+ #: wpsc-admin/includes/settings-pages/admin.php:90
2959
+ msgid "i.e. this is the reply address contained in the purchase receipt sent to the buyer."
2960
+ msgstr "该回复地址将包含在发送给顾客的消费收据里面。"
2961
+
2962
+ #: wpsc-admin/includes/settings-pages/admin.php:96
2963
+ msgid "Purchase Receipt - Reply Name"
2964
+ msgstr "消费收据回复名称"
2965
+
2966
+ #: wpsc-admin/includes/settings-pages/admin.php:100
2967
+ msgid "i.e. this is the \"from name\" buyers will see in their purchase receipt. "
2968
+ msgstr "顾客将会在他们的消费收据上面看到 \"发送人\""
2969
+
2970
+ #: wpsc-admin/includes/settings-pages/admin.php:115
2971
+ msgid "Custom Messages"
2972
+ msgstr "自定义信息"
2973
+
2974
+ #: wpsc-admin/includes/settings-pages/admin.php:118
2975
+ msgid "Tags can be used"
2976
+ msgstr "可使用标签"
2977
+
2978
+ #: wpsc-admin/includes/settings-pages/admin.php:139
2979
+ msgid "Admin Report"
2980
+ msgstr "管理员报告"
2981
+
2982
+ #: wpsc-admin/includes/settings-pages/admin.php:144
2983
+ msgid "Track and Trace settings"
2984
+ msgstr "跟踪设置"
2985
+
2986
+ #: wpsc-admin/includes/settings-pages/admin.php:154
2987
+ msgid "Tracking Email Subject"
2988
+ msgstr "跟踪Email的标题"
2989
+
2990
+ #: wpsc-admin/includes/settings-pages/admin.php:158
2991
+ msgid "Tracking Email Message"
2992
+ msgstr "跟踪Email的内容"
2993
+
2994
+ #: wpsc-admin/includes/settings-pages/admin.php:162
2995
+ msgid "URL Settings"
2996
+ msgstr "URL设置"
2997
+
2998
+ #: wpsc-admin/includes/settings-pages/admin.php:167
2999
+ #: wpsc-includes/install_and_update.functions.php:95
3000
+ msgid "The location of the product list"
3001
+ msgstr "商品列表位置"
3002
+
3003
+ #: wpsc-admin/includes/settings-pages/admin.php:175
3004
+ #: wpsc-includes/install_and_update.functions.php:96
3005
+ msgid "The location of the shopping cart"
3006
+ msgstr "购物车位置"
3007
+
3008
+ #: wpsc-admin/includes/settings-pages/admin.php:193
3009
+ msgid "Transaction Details URL"
3010
+ msgstr "交易明细URL"
3011
+
3012
+ #: wpsc-admin/includes/settings-pages/admin.php:204
3013
+ msgid "User Account URL"
3014
+ msgstr "用户账户URL"
3015
+
3016
+ #: wpsc-admin/includes/settings-pages/admin.php:215
3017
+ msgid "Update Page URLs"
3018
+ msgstr "更新页面URLs"
3019
+
3020
+ #: wpsc-admin/includes/settings-pages/admin.php:216
3021
+ msgid "Fix Product Group Permalinks"
3022
+ msgstr "修正商品组别永久链接"
3023
+
3024
+ #: wpsc-admin/includes/settings-pages/checkout.php:42
3025
+ msgid "Checkout Options"
3026
+ msgstr "结算选项"
3027
+
3028
+ #: wpsc-admin/includes/settings-pages/checkout.php:55
3029
+ msgid "Users must register before checking out"
3030
+ msgstr "注册用户才能结算"
3031
+
3032
+ #: wpsc-admin/includes/settings-pages/checkout.php:75
3033
+ msgid "If yes then you must also turn on the wordpress option \"Any one can register\""
3034
+ msgstr "如果你选择是,那么你需要打开wordpress的选项 \"Any one can register 允许任何人注册\""
3035
+
3036
+ #: wpsc-admin/includes/settings-pages/checkout.php:92
3037
+ msgid "Lock Tax to Billing Country"
3038
+ msgstr "税率锁定结算国家"
3039
+
3040
+ #: wpsc-admin/includes/settings-pages/checkout.php:115
3041
+ msgid " Disregard Billing State for Tax Calculations"
3042
+ msgstr "忽略该州消费税计算"
3043
+
3044
+ #: wpsc-admin/includes/settings-pages/checkout.php:140
3045
+ msgid "Enable Shipping Same as Billing Option: "
3046
+ msgstr "允许支付与运输一样的选项:"
3047
+
3048
+ #: wpsc-admin/includes/settings-pages/checkout.php:153
3049
+ 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..."
3050
+ msgstr "你可以在这里自定义结算页显示的结算表单。该结算页面是你收集顾客重要信息的购买记录,例如,顾客姓名和地址等等..."
3051
+
3052
+ #: wpsc-admin/includes/settings-pages/checkout.php:170
3053
+ msgid "+ Add New Form Set"
3054
+ msgstr "+ 添加新的表单"
3055
+
3056
+ #: wpsc-admin/includes/settings-pages/checkout.php:174
3057
+ msgid "Add new Form Set"
3058
+ msgstr "添加新的表单"
3059
+
3060
+ #: wpsc-admin/includes/settings-pages/checkout.php:251
3061
+ msgid "This will be the Email address that the Purchase Reciept is sent to."
3062
+ msgstr "发送购买收据到的Email地址。"
3063
+
3064
+ #: wpsc-admin/includes/settings-pages/checkout.php:269
3065
+ msgid "Add New Form Field"
3066
+ msgstr "添加新的字段"
3067
+
3068
+ #: wpsc-admin/includes/settings-pages/gateway.php:31
3069
+ msgid "Please Select A Payment Gateway"
3070
+ msgstr "请选择一个支付网关"
3071
+
3072
+ #: wpsc-admin/includes/settings-pages/gateway.php:55
3073
+ msgid "Gateway Options"
3074
+ msgstr "网关选项"
3075
+
3076
+ #: wpsc-admin/includes/settings-pages/gateway.php:64
3077
+ #: wpsc-admin/includes/settings-pages/general.php:7
3078
+ #: wpsc-admin/includes/settings-pages/shipping.php:52
3079
+ #: wpsc-admin/includes/settings-pages/shipping.php:58
3080
+ msgid "General Settings"
3081
+ msgstr "常规设置"
3082
+
3083
+ #: wpsc-admin/includes/settings-pages/gateway.php:68
3084
+ msgid "Payment Gateways"
3085
+ msgstr "支付网关"
3086
+
3087
+ #: wpsc-admin/includes/settings-pages/gateway.php:72
3088
+ msgid "Activate the payment gateways that you want to make available to your customers by selecting them below."
3089
+ msgstr "选择下列供你客户使用的支付网关并激活。"
3090
+
3091
+ #: wpsc-admin/includes/settings-pages/gateway.php:98
3092
+ msgid "We Recommend"
3093
+ msgstr "我们建议"
3094
+
3095
+ #: wpsc-admin/includes/settings-pages/gateway.php:107
3096
+ #: wpsc-admin/includes/settings-pages/gateway.php:114
3097
+ msgid " Select a Payment Gateway below to configure it."
3098
+ msgstr "选择下列支付网关进行配置。"
3099
+
3100
+ #: wpsc-admin/includes/settings-pages/gateway.php:122
3101
+ msgid "Payment Gateway"
3102
+ msgstr "支付网关"
3103
+
3104
+ #: wpsc-admin/includes/settings-pages/gateway.php:134
3105
+ msgid "Display Name"
3106
+ msgstr "显示名称"
3107
+
3108
+ #: wpsc-admin/includes/settings-pages/gateway.php:162
3109
+ msgid "The text that people see when making a purchase"
3110
+ msgstr "顾客确定购买时显示的文字"
3111
+
3112
+ #: wpsc-admin/includes/settings-pages/general.php:13
3113
+ msgid "Base Country/Region"
3114
+ msgstr "国家/地区"
3115
+
3116
+ #: wpsc-admin/includes/settings-pages/general.php:39
3117
+ msgid "Select your primary business location."
3118
+ msgstr "请选择你的主要商业地区。"
3119
+
3120
+ #: wpsc-admin/includes/settings-pages/general.php:43
3121
+ msgid "Tax Settings"
3122
+ msgstr "税务设置"
3123
+
3124
+ #: wpsc-admin/includes/settings-pages/general.php:60
3125
+ msgid "Tax Included in prices"
3126
+ msgstr "含税价"
3127
+
3128
+ #: wpsc-admin/includes/settings-pages/general.php:116
3129
+ msgid "Currency Settings"
3130
+ msgstr "货币设置"
3131
+
3132
+ #: wpsc-admin/includes/settings-pages/general.php:143
3133
+ #: wpsc-includes/install_and_update.functions.php:115
3134
+ msgid "Currency sign location"
3135
+ msgstr "货币符号位置"
3136
+
3137
+ #: wpsc-admin/includes/settings-pages/general.php:194
3138
+ msgid "Hide Decimals on Products Pages"
3139
+ msgstr "商品页隐藏小数"
3140
+
3141
+ #: wpsc-admin/includes/settings-pages/import.php:7
3142
+ msgid "Import Products CSV"
3143
+ msgstr "导入商品CSV文件"
3144
+
3145
+ #: wpsc-admin/includes/settings-pages/import.php:8
3146
+ 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>"
3147
+ msgstr "<p>你可以从一个用逗号分隔的文本文件导入到商品。</p><p>一个CVS导入例子:</p><p>描述,附加说明,商品名称,价格,型号,重量,重量单位,限制数量</p>"
3148
+
3149
+ #: wpsc-admin/includes/settings-pages/presentation.php:14
3150
+ msgid "Show All Products"
3151
+ msgstr "显示所有商品"
3152
+
3153
+ #: wpsc-admin/includes/settings-pages/presentation.php:21
3154
+ msgid "Show Category List"
3155
+ msgstr "显示类别列表"
3156
+
3157
+ #: wpsc-admin/includes/settings-pages/presentation.php:28
3158
+ msgid "Show All Products + Category List"
3159
+ msgstr "显示所有商品+类别列表"
3160
+
3161
+ #: wpsc-admin/includes/settings-pages/presentation.php:63
3162
+ msgid "Button Settings"
3163
+ msgstr "按钮设置"
3164
+
3165
+ #: wpsc-admin/includes/settings-pages/presentation.php:67
3166
+ msgid "Button Type"
3167
+ msgstr "按钮类型"
3168
+
3169
+ #: wpsc-admin/includes/settings-pages/presentation.php:92
3170
+ msgid "Hide \"Add to cart\" button"
3171
+ msgstr "隐藏 \"加入购物车\" 按钮"
3172
+
3173
+ #: wpsc-admin/includes/settings-pages/presentation.php:117
3174
+ msgid "Product Settings"
3175
+ msgstr "商品设置"
3176
+
3177
+ #: wpsc-admin/includes/settings-pages/presentation.php:122
3178
+ #: wpsc-includes/install_and_update.functions.php:162
3179
+ msgid "Show Product Ratings"
3180
+ msgstr "显示商品评级"
3181
+
3182
+ #: wpsc-admin/includes/settings-pages/presentation.php:146
3183
+ msgid "Display Fancy Purchase Notifications"
3184
+ msgstr "显示花俏式的购物通知"
3185
+
3186
+ #: wpsc-admin/includes/settings-pages/presentation.php:170
3187
+ msgid "Show Postage and Packaging"
3188
+ msgstr "显示包装和邮费"
3189
+
3190
+ #: wpsc-admin/includes/settings-pages/presentation.php:193
3191
+ msgid "Disable link in Title"
3192
+ msgstr "禁止标题链接"
3193
+
3194
+ #: wpsc-admin/includes/settings-pages/presentation.php:217
3195
+ msgid "Add quantity field to each product description"
3196
+ msgstr "添加数量字段到每商品的介绍"
3197
+
3198
+ #: wpsc-admin/includes/settings-pages/presentation.php:242
3199
+ msgid "Theme Customisation"
3200
+ msgstr "主题定制"
3201
+
3202
+ #: wpsc-admin/includes/settings-pages/presentation.php:247
3203
+ msgid "Thanks, the themes have been copied."
3204
+ msgstr "谢谢,该主题已拷贝。"
3205
+
3206
+ #: wpsc-admin/includes/settings-pages/presentation.php:256
3207
+ msgid "Theming your stores appearance is easy."
3208
+ msgstr "定制你商店的主题是容易的。"
3209
+
3210
+ #: wpsc-admin/includes/settings-pages/presentation.php:258
3211
+ msgid "You just need to edit the appropriate files in the following location."
3212
+ msgstr "你只需要编辑下列目录的相关文件。"
3213
+
3214
+ #: wpsc-admin/includes/settings-pages/presentation.php:259
3215
+ #: wpsc-admin/includes/settings-pages/presentation.php:271
3216
+ msgid "Path:"
3217
+ msgstr "路径:"
3218
+
3219
+ #: wpsc-admin/includes/settings-pages/presentation.php:261
3220
+ msgid "To create a new theme:"
3221
+ msgstr "创建一个新主题:"
3222
+
3223
+ #: wpsc-admin/includes/settings-pages/presentation.php:263
3224
+ msgid "Copy the default directory and rename it 'newTheme'"
3225
+ msgstr "拷贝到默认目录并改名为'newTheme'"
3226
+
3227
+ #: wpsc-admin/includes/settings-pages/presentation.php:264
3228
+ msgid "Rename the default.css file inside the 'newTheme' directory to 'newTheme.css'"
3229
+ msgstr "把default.css改名为'newTheme'目录里面的'newTheme.css'"
3230
+
3231
+ #: wpsc-admin/includes/settings-pages/presentation.php:269
3232
+ msgid "The permissions on your themes directory are incorrect."
3233
+ msgstr "你的主题目录权限出错。"
3234
+
3235
+ #: wpsc-admin/includes/settings-pages/presentation.php:270
3236
+ msgid "Please set the permissions to 775 on the following directory."
3237
+ msgstr "请把下列目录权限设置为775。"
3238
+
3239
+ #: wpsc-admin/includes/settings-pages/presentation.php:275
3240
+ msgid "Your theme files have not been moved. Until your theme files have been moved, we have disabled automatic upgrades."
3241
+ msgstr "你的主题文件没有移动。直到你的主题文件被移动了。我们将关闭自动升级功能。"
3242
+
3243
+ #: wpsc-admin/includes/settings-pages/presentation.php:276
3244
+ #, php-format
3245
+ msgid "Click here to <a href='%s'>Move your files</a> to a safe place"
3246
+ msgstr "点击 <a href='%s'>移动你的文件</a> 到一个安全的地方"
3247
+
3248
+ #: wpsc-admin/includes/settings-pages/presentation.php:280
3249
+ msgid "Read Tutorials"
3250
+ msgstr "阅读教程"
3251
+
3252
+ #: wpsc-admin/includes/settings-pages/presentation.php:285
3253
+ msgid "Product Page Settings"
3254
+ msgstr "商品页设置"
3255
+
3256
+ #: wpsc-admin/includes/settings-pages/presentation.php:372
3257
+ msgid "Purchase unavailable options"
3258
+ msgstr "购买选项不可用"
3259
+
3260
+ #: wpsc-admin/includes/settings-pages/presentation.php:377
3261
+ msgid "Show quantity form in list view"
3262
+ msgstr "列表视窗显示数量"
3263
+
3264
+ #: wpsc-admin/includes/settings-pages/presentation.php:382
3265
+ msgid "Products Per Row"
3266
+ msgstr "每行商品数"
3267
+
3268
+ #: wpsc-admin/includes/settings-pages/presentation.php:387
3269
+ msgid "Show images only"
3270
+ msgstr "只显示图片"
3271
+
3272
+ #: wpsc-admin/includes/settings-pages/presentation.php:397
3273
+ msgid "Display Description"
3274
+ msgstr "显示简介"
3275
+
3276
+ #: wpsc-admin/includes/settings-pages/presentation.php:402
3277
+ msgid "Display \"Add To Cart\" Button"
3278
+ msgstr "显示 \"加入购物车\" 按钮"
3279
+
3280
+ #: wpsc-admin/includes/settings-pages/presentation.php:406
3281
+ msgid "Display \"More Details\" Button"
3282
+ msgstr "显示 \"详情\" 按钮"
3283
+
3284
+ #: wpsc-admin/includes/settings-pages/presentation.php:416
3285
+ msgid "Theme"
3286
+ msgstr "主题"
3287
+
3288
+ #: wpsc-admin/includes/settings-pages/presentation.php:425
3289
+ msgid "Product page displays"
3290
+ msgstr "商品页显示"
3291
+
3292
+ #: wpsc-admin/includes/settings-pages/presentation.php:453
3293
+ msgid "Sort Products By"
3294
+ msgstr "商品排序"
3295
+
3296
+ #: wpsc-admin/includes/settings-pages/presentation.php:459
3297
+ msgid "Drag &amp; Drop"
3298
+ msgstr "Drag &amp; Drop"
3299
+
3300
+ #: wpsc-admin/includes/settings-pages/presentation.php:460
3301
+ msgid "Time Uploaded"
3302
+ msgstr "最近上传"
3303
+
3304
+ #: wpsc-admin/includes/settings-pages/presentation.php:462
3305
+ msgid "If you have used the drag-drop interface on the edit-products page to order your products then you must use the Drag &amp; Drop option."
3306
+ msgstr "如果你在编辑商品页面使用drag-drop界面,为了你的商品,必须使用Drag &amp; Drop选项。"
3307
+
3308
+ #: wpsc-admin/includes/settings-pages/presentation.php:466
3309
+ msgid "Show Breadcrumbs"
3310
+ msgstr "显示小提示"
3311
+
3312
+ #: wpsc-admin/includes/settings-pages/presentation.php:492
3313
+ msgid "Product Groups/Products Display"
3314
+ msgstr "商品组别/商品展示"
3315
+
3316
+ #: wpsc-admin/includes/settings-pages/presentation.php:510
3317
+ msgid "Product Groups Only (All products displayed)"
3318
+ msgstr "只显示商品组别(所有商品显示)"
3319
+
3320
+ #: wpsc-admin/includes/settings-pages/presentation.php:511
3321
+ msgid "Sliding Product Groups (1 product per page)"
3322
+ msgstr "浮动商品组别(每页一个商品)"
3323
+
3324
+ #: wpsc-admin/includes/settings-pages/presentation.php:518
3325
+ msgid "Show Subcategory Products in Parent Category"
3326
+ msgstr "显示子级类别的商品"
3327
+
3328
+ #: wpsc-admin/includes/settings-pages/presentation.php:544
3329
+ msgid "Show Search"
3330
+ msgstr "显示搜索"
3331
+
3332
+ #: wpsc-admin/includes/settings-pages/presentation.php:581
3333
+ msgid "Show Advanced Search"
3334
+ msgstr "显示高级搜索"
3335
+
3336
+ #: wpsc-admin/includes/settings-pages/presentation.php:584
3337
+ msgid "Use Live Search"
3338
+ msgstr "使用Live搜索"
3339
+
3340
+ #: wpsc-admin/includes/settings-pages/presentation.php:595
3341
+ msgid "Replace Page Title With Product/Category Name"
3342
+ msgstr "用商品/类别名称替代页面标题"
3343
+
3344
+ #: wpsc-admin/includes/settings-pages/presentation.php:617
3345
+ msgid "Shopping Cart Settings"
3346
+ msgstr "购物车设置"
3347
+
3348
+ #: wpsc-admin/includes/settings-pages/presentation.php:620
3349
+ #: wpsc-includes/install_and_update.functions.php:101
3350
+ #: wpsc-includes/install_and_update.functions.php:103
3351
+ #: wpsc-includes/install_and_update.functions.php:107
3352
+ #: wpsc-includes/install_and_update.functions.php:109
3353
+ msgid "Cart Location"
3354
+ msgstr "购物车位置"
3355
+
3356
+ #: wpsc-admin/includes/settings-pages/presentation.php:649
3357
+ #: wpsc-admin/includes/settings-pages/presentation.php:653
3358
+ msgid "Sidebar"
3359
+ msgstr "侧边栏"
3360
+
3361
+ #: wpsc-admin/includes/settings-pages/presentation.php:657
3362
+ msgid "Page"
3363
+ msgstr "页面"
3364
+
3365
+ #: wpsc-admin/includes/settings-pages/presentation.php:661
3366
+ #: wpsc-admin/includes/settings-pages/presentation.php:665
3367
+ msgid "Widget"
3368
+ msgstr "Widget"
3369
+
3370
+ #: wpsc-admin/includes/settings-pages/presentation.php:665
3371
+ #: wpsc-admin/includes/settings-pages/presentation.php:675
3372
+ msgid "You need to enable the widgets plugin to use this"
3373
+ msgstr "你需要启动widgets插件才能运行"
3374
+
3375
+ #: wpsc-admin/includes/settings-pages/presentation.php:675
3376
+ msgid "You need to install the Gold and DropShop extentions to use this"
3377
+ msgstr "使用该功能需要安装 Gold 和 DropShop 插件"
3378
+
3379
+ #: wpsc-admin/includes/settings-pages/presentation.php:679
3380
+ msgid "Manual"
3381
+ msgstr "手动"
3382
+
3383
+ #: wpsc-admin/includes/settings-pages/presentation.php:682
3384
+ msgid "Show Dropshop on every page"
3385
+ msgstr "每页显示Dropshop"
3386
+
3387
+ #: wpsc-admin/includes/settings-pages/presentation.php:683
3388
+ msgid "Show Dropshop only on product page"
3389
+ msgstr "只在商品页面显示Dropshop"
3390
+
3391
+ #: wpsc-admin/includes/settings-pages/presentation.php:686
3392
+ msgid "Use light Dropshop style"
3393
+ msgstr "Dropshop使用轻快的风格"
3394
+
3395
+ #: wpsc-admin/includes/settings-pages/presentation.php:687
3396
+ msgid "Use dark Dropshop style"
3397
+ msgstr "Dropshop使用稳重的风格"
3398
+
3399
+ #: wpsc-admin/includes/settings-pages/presentation.php:688
3400
+ msgid "Crafty"
3401
+ msgstr "Crafty"
3402
+
3403
+ #: wpsc-admin/includes/settings-pages/presentation.php:698
3404
+ msgid "Use Sliding Cart"
3405
+ msgstr "使用悬浮购物车"
3406
+
3407
+ #: wpsc-admin/includes/settings-pages/presentation.php:723
3408
+ msgid "Display \"+ Postage & Tax\""
3409
+ msgstr "显示 \"+ 包装和税费\""
3410
+
3411
+ #: wpsc-admin/includes/settings-pages/presentation.php:749
3412
+ msgid "Product Group Settings"
3413
+ msgstr "商品组别设置"
3414
+
3415
+ #: wpsc-admin/includes/settings-pages/presentation.php:753
3416
+ msgid "Show Product Group Description"
3417
+ msgstr "显示商品组别简介"
3418
+
3419
+ #: wpsc-admin/includes/settings-pages/presentation.php:778
3420
+ msgid "Show Product Group Thumbnails"
3421
+ msgstr "显示商品组别缩略图"
3422
+
3423
+ #: wpsc-admin/includes/settings-pages/presentation.php:805
3424
+ msgid "Show Product Count per Product Group"
3425
+ msgstr "显示每个组别商品数量"
3426
+
3427
+ #: wpsc-admin/includes/settings-pages/presentation.php:831
3428
+ msgid "Use Category Grid View"
3429
+ msgstr "使用列表网格视图"
3430
+
3431
+ #: wpsc-admin/includes/settings-pages/presentation.php:862
3432
+ msgid "Default Product Thumbnail Size"
3433
+ msgstr "默认商品缩略图尺寸"
3434
+
3435
+ #: wpsc-admin/includes/settings-pages/presentation.php:866
3436
+ msgid "Resize Existing Thumbnails"
3437
+ msgstr "调整现有缩略图尺寸"
3438
+
3439
+ #: wpsc-admin/includes/settings-pages/presentation.php:872
3440
+ msgid "Default Product Group Thumbnail Size"
3441
+ msgstr "默认商品组别缩略图尺寸"
3442
+
3443
+ #: wpsc-admin/includes/settings-pages/presentation.php:881
3444
+ msgid "Single Product Image Size"
3445
+ msgstr "单个商品图片尺寸"
3446
+
3447
+ #: wpsc-admin/includes/settings-pages/presentation.php:892
3448
+ #: wpsc-includes/install_and_update.functions.php:87
3449
+ msgid "Show Thumbnails"
3450
+ msgstr "显示缩略图"
3451
+
3452
+ #: wpsc-admin/includes/settings-pages/presentation.php:918
3453
+ msgid "Show Thumbnail Gallery"
3454
+ msgstr "显示缩略图画册"
3455
+
3456
+ #: wpsc-admin/includes/settings-pages/presentation.php:942
3457
+ msgid "Gallery Thumbnail Image Size"
3458
+ msgstr "画册缩略图尺寸"
3459
+
3460
+ #: wpsc-admin/includes/settings-pages/presentation.php:956
3461
+ msgid "Pagination settings"
3462
+ msgstr "页码设置"
3463
+
3464
+ #: wpsc-admin/includes/settings-pages/presentation.php:960
3465
+ msgid "Use Pagination"
3466
+ msgstr "使用页码"
3467
+
3468
+ #: wpsc-admin/includes/settings-pages/presentation.php:982
3469
+ msgid "number of products to show per page"
3470
+ msgstr "每页显示商品数量"
3471
+
3472
+ #: wpsc-admin/includes/settings-pages/presentation.php:992
3473
+ msgid "Top"
3474
+ msgstr "顶端"
3475
+
3476
+ #: wpsc-admin/includes/settings-pages/presentation.php:993
3477
+ msgid "Bottom"
3478
+ msgstr "底部"
3479
+
3480
+ #: wpsc-admin/includes/settings-pages/presentation.php:994
3481
+ msgid "Both"
3482
+ msgstr "顶端+底部"
3483
+
3484
+ #: wpsc-admin/includes/settings-pages/presentation.php:1001
3485
+ msgid "Comment Settings"
3486
+ msgstr "评论设置"
3487
+
3488
+ #: wpsc-admin/includes/settings-pages/presentation.php:1005
3489
+ msgid "Use IntenseDebate Comments"
3490
+ msgstr "使用IntenseDebate评论"
3491
+
3492
+ #: wpsc-admin/includes/settings-pages/presentation.php:1029
3493
+ msgid "IntenseDebate Account ID"
3494
+ msgstr "IntenseDebate帐户ID"
3495
+
3496
+ #: wpsc-admin/includes/settings-pages/presentation.php:1031
3497
+ msgid "Help on finding the Account ID"
3498
+ msgstr "帮助寻找帐户ID"
3499
+
3500
+ #: wpsc-admin/includes/settings-pages/presentation.php:1040
3501
+ msgid "By Default Display Comments on"
3502
+ msgstr "默认显示商品评价"
3503
+
3504
+ #: wpsc-admin/includes/settings-pages/shipping.php:67
3505
+ msgid "Use Shipping"
3506
+ msgstr "使用运输模块"
3507
+
3508
+ #: wpsc-admin/includes/settings-pages/shipping.php:89
3509
+ msgid "If you are only selling digital downloads, you should select no to disable the shipping on your site."
3510
+ msgstr "如果你只销售数字下载型商品,你可以选择关闭运输模块。"
3511
+
3512
+ #: wpsc-admin/includes/settings-pages/shipping.php:94
3513
+ msgid "Base Zipcode/Postcode:"
3514
+ msgstr "主邮政编码:"
3515
+
3516
+ #: wpsc-admin/includes/settings-pages/shipping.php:97
3517
+ 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."
3518
+ msgstr "如果你总部设在美国,那么你需要设置你自己的UPS和USPS邮编。这应该是您总部的邮政编码。"
3519
+
3520
+ #: wpsc-admin/includes/settings-pages/shipping.php:119
3521
+ msgid "ShipWire Settings"
3522
+ msgstr "ShipWire 设置"
3523
+
3524
+ #: wpsc-admin/includes/settings-pages/shipping.php:130
3525
+ msgid "ShipWire Email"
3526
+ msgstr "ShipWire Email地址"
3527
+
3528
+ #: wpsc-admin/includes/settings-pages/shipping.php:131
3529
+ msgid "ShipWire Password"
3530
+ msgstr "ShipWire 密码"
3531
+
3532
+ #: wpsc-admin/includes/settings-pages/shipping.php:139
3533
+ msgid "Enable Free Shipping Discount"
3534
+ msgstr "允许免运费优惠"
3535
+
3536
+ #: wpsc-admin/includes/settings-pages/shipping.php:184
3537
+ #: wpsc-admin/includes/settings-pages/shipping.php:189
3538
+ msgid "Shipping Modules"
3539
+ msgstr "运输模块"
3540
+
3541
+ #: wpsc-admin/includes/settings-pages/shipping.php:195
3542
+ msgid "To enable shipping in WP e-Commerce you must select which shipping methods you want to enable on your site"
3543
+ msgstr "你必须选择一种运输方式,才能激活该网站的WP e-Commerce 的运输模块"
3544
+
3545
+ #: wpsc-admin/includes/settings-pages/shipping.php:196
3546
+ msgid "<br /><strong>UPS has been deactivated because you are running PHP4, please upgrade to PHP5 to enable UPS.</strong>"
3547
+ msgstr "<br /><strong>UPS模块无法运行,因为你的服务器运行的是PHP4,请升级到PHP5才能运行。</strong>"
3548
+
3549
+ #: wpsc-admin/includes/settings-pages/shipping.php:200
3550
+ msgid "Internal Shipping Calculators"
3551
+ msgstr "国内运输计算器"
3552
+
3553
+ #: wpsc-admin/includes/settings-pages/shipping.php:233
3554
+ msgid "External Shipping Calculators"
3555
+ msgstr "对外运输计算器"
3556
+
3557
+ #: wpsc-admin/includes/settings-pages/shipping.php:236
3558
+ 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. "
3559
+ msgstr "下列运输模块需要这台服务器没有安装的cURL,你可能需要联系你的网络托管服务供应商设置它。"
3560
+
3561
+ #: wpsc-includes/ajax.functions.php:104
3562
+ msgid "You just added \"[product_name]\" to your cart."
3563
+ msgstr "你刚添加了 \"[product_name]\" 到你的购物车里。"
3564
+
3565
+ #: wpsc-includes/ajax.functions.php:107
3566
+ msgid "Sorry, but you cannot add zero items to your cart"
3567
+ msgstr "对不起,你不能添加数量为0的商品到购物车。"
3568
+
3569
+ #: wpsc-includes/ajax.functions.php:109
3570
+ msgid "Sorry, but there are only [number] of this item in stock."
3571
+ msgstr "对不起,该商品库存只剩 [number] 件。"
3572
+
3573
+ #: wpsc-includes/ajax.functions.php:111
3574
+ msgid "Sorry, but the item \"[product_name]\" is out of stock."
3575
+ msgstr "对不起, \"[product_name]\" 缺货。"
3576
+
3577
+ #: wpsc-includes/ajax.functions.php:593
3578
+ msgid "You must select a shipping method, otherwise we cannot process your order."
3579
+ msgstr "你必须选择一种运输方式,否则我们将不能处理你的订单。"
3580
+
3581
+ #: wpsc-includes/ajax.functions.php:598
3582
+ msgid "Please agree to the terms and conditions, otherwise we cannot process your order."
3583
+ msgstr "请同意条款和条件,否则我们将不能处理你的订单。"
3584
+
3585
+ #: wpsc-includes/ajax.functions.php:618
3586
+ #, php-format
3587
+ msgid "Oops the product : %s cannot be shipped to %s. To continue with your transaction please remove this product from the list above."
3588
+ msgstr "噢,商品: %s 不能运送到 %s。继续你的交易,请从上述列表中删除该商品。"
3589
+
3590
+ #: wpsc-includes/ajax.functions.php:641
3591
+ msgid "Please enter a Zipcode and click calculate to proceed"
3592
+ msgstr "请输入邮政编码和点击计算处理"
3593
+
3594
+ #: wpsc-includes/ajax.functions.php:981
3595
+ #: wpsc-includes/ajax.functions.php:1039
3596
+ msgid "This download is no longer valid, Please contact the site administrator for more information."
3597
+ msgstr "该下载已失效,详细信息请联系网站管理员。"
3598
+
3599
+ #: wpsc-includes/category.functions.php:361
3600
+ msgid "Brands"
3601
+ msgstr "品牌"
3602
+
3603
+ #: wpsc-includes/checkout.class.php:45
3604
+ #, php-format
3605
+ msgid "Tax Included (%s%%)"
3606
+ msgstr "含税 (%s%%)"
3607
+
3608
+ #: wpsc-includes/checkout.class.php:47
3609
+ msgid "Tax Included"
3610
+ msgstr "含税"
3611
+
3612
+ #: wpsc-includes/checkout.class.php:50
3613
+ msgid "Tax"
3614
+ msgstr "税务"
3615
+
3616
+ #: wpsc-includes/display.functions.php:90
3617
+ msgid "People who bought this item also bought"
3618
+ msgstr "该商品已经购买过"
3619
+
3620
+ #: wpsc-includes/display.functions.php:138
3621
+ msgid "Updating"
3622
+ msgstr "更新中"
3623
+
3624
+ #: wpsc-includes/display.functions.php:154
3625
+ msgid "Continue Shopping"
3626
+ msgstr "继续购物"
3627
+
3628
+ #: wpsc-includes/display.functions.php:255
3629
+ 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."
3630
+ msgstr "你正使用示范商品组别作为你的默认组别,而且没有商品在里面。你应该在商店设置页那里设置你的默认组别。"
3631
+
3632
+ #: wpsc-includes/display.functions.php:257
3633
+ 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."
3634
+ msgstr "该组别设置为默认商品组别,你应该添加一些商品进去或者选择一个含有商品的组别作为默认商品组别。"
3635
+
3636
+ #: wpsc-includes/form-display.functions.php:65
3637
+ msgid "Select Parent"
3638
+ msgstr "选择上级类别"
3639
+
3640
+ #: wpsc-includes/form-display.functions.php:137
3641
+ msgid "Choose a downloadable file for this product:"
3642
+ msgstr "选择一个下载文件到该商品:"
3643
+
3644
+ #: wpsc-includes/form-display.functions.php:181
3645
+ msgid "Choose a downloadable file for this variation"
3646
+ msgstr "选择一个下载文件到该可变属性"
3647
+
3648
+ #: wpsc-includes/form-display.functions.php:187
3649
+ msgid "No Product"
3650
+ msgstr "没有商品"
3651
+
3652
+ #: wpsc-includes/install_and_update.functions.php:60
3653
+ msgid "Example category"
3654
+ msgstr "示例类别"
3655
+
3656
+ #: wpsc-includes/install_and_update.functions.php:60
3657
+ #: wpsc-includes/install_and_update.functions.php:61
3658
+ msgid "Example details"
3659
+ msgstr "示例明细"
3660
+
3661
+ #: wpsc-includes/install_and_update.functions.php:61
3662
+ msgid "Example Brand"
3663
+ msgstr "示例品牌"
3664
+
3665
+ #: wpsc-includes/install_and_update.functions.php:69
3666
+ msgid "Accepted Payment"
3667
+ msgstr "付款成功"
3668
+
3669
+ #: wpsc-includes/install_and_update.functions.php:70
3670
+ msgid "Job Dispatched"
3671
+ msgstr "作业调度"
3672
+
3673
+ #: wpsc-includes/install_and_update.functions.php:89
3674
+ msgid "product image width"
3675
+ msgstr "商品图片宽度"
3676
+
3677
+ #: wpsc-includes/install_and_update.functions.php:90
3678
+ msgid "product image height"
3679
+ msgstr "商品图片高度"
3680
+
3681
+ #: wpsc-includes/install_and_update.functions.php:92
3682
+ msgid "product group image width"
3683
+ msgstr "商品组别图片宽带"
3684
+
3685
+ #: wpsc-includes/install_and_update.functions.php:93
3686
+ msgid "product group image height"
3687
+ msgstr "商品组别图片高度"
3688
+
3689
+ #: wpsc-includes/install_and_update.functions.php:97
3690
+ msgid "The location of the checkout page"
3691
+ msgstr "结算页位置"
3692
+
3693
+ #: wpsc-includes/install_and_update.functions.php:98
3694
+ msgid "The location of the transaction detail page"
3695
+ msgstr "交易明细页位置"
3696
+
3697
+ #: wpsc-includes/install_and_update.functions.php:99
3698
+ msgid "The payment gateway to use"
3699
+ msgstr "使用的支付网关"
3700
+
3701
+ #: wpsc-includes/install_and_update.functions.php:117
3702
+ msgid "the GST rate"
3703
+ msgstr "消费税税率"
3704
+
3705
+ #: wpsc-includes/install_and_update.functions.php:119
3706
+ msgid "the download limit"
3707
+ msgstr "下载限制"
3708
+
3709
+ #: wpsc-includes/install_and_update.functions.php:121
3710
+ msgid "Display or hide postage and packaging"
3711
+ msgstr "显示或隐藏包装和邮费"
3712
+
3713
+ #: wpsc-includes/install_and_update.functions.php:123
3714
+ msgid "Display or hide specials on the sidebar"
3715
+ msgstr "在侧边栏显示或者隐藏特价商品"
3716
+
3717
+ #: wpsc-includes/install_and_update.functions.php:126
3718
+ msgid "Default postage and packaging"
3719
+ msgstr "默认包装和邮费"
3720
+
3721
+ #: wpsc-includes/install_and_update.functions.php:128
3722
+ msgid "Email address that purchase log is sent to"
3723
+ msgstr "发送购买记录到Email"
3724
+
3725
+ #: wpsc-includes/install_and_update.functions.php:129
3726
+ msgid "Email address that purchase reports are sent from"
3727
+ msgstr "发送消费报告的电子邮件"
3728
+
3729
+ #: wpsc-includes/install_and_update.functions.php:130
3730
+ msgid "Checkout terms and conditions"
3731
+ msgstr "结算条款和条件"
3732
+
3733
+ #: wpsc-includes/install_and_update.functions.php:132
3734
+ msgid "Google Merchant Key"
3735
+ msgstr "Google Merchant Key"
3736
+
3737
+ #: wpsc-includes/install_and_update.functions.php:133
3738
+ msgid "Google Merchant ID"
3739
+ msgstr "Google Merchant ID"
3740
+
3741
+ #: wpsc-includes/install_and_update.functions.php:135
3742
+ msgid "Default Brand"
3743
+ msgstr "默认品牌"
3744
+
3745
+ #: wpsc-includes/install_and_update.functions.php:136
3746
+ msgid "Select what product group you want to display on the products page"
3747
+ msgstr "请选择商品页你想显示的商品组别"
3748
+
3749
+ #: wpsc-includes/install_and_update.functions.php:149
3750
+ #: wpsc-includes/install_and_update.functions.php:155
3751
+ msgid "paypal business"
3752
+ msgstr "paypal business"
3753
+
3754
+ #: wpsc-includes/install_and_update.functions.php:150
3755
+ #: wpsc-includes/install_and_update.functions.php:151
3756
+ #: wpsc-includes/install_and_update.functions.php:158
3757
+ msgid "paypal url"
3758
+ msgstr "paypal url"
3759
+
3760
+ #: wpsc-includes/install_and_update.functions.php:207
3761
+ msgid "Products Page"
3762
+ msgstr "商品页面"
3763
+
3764
+ #: wpsc-includes/install_and_update.functions.php:225
3765
+ msgid "Transaction Results"
3766
+ msgstr "交易结果"
3767
+
3768
+ #: wpsc-includes/install_and_update.functions.php:231
3769
+ msgid "Your Account"
3770
+ msgstr "你的账户"
3771
+
3772
+ #: wpsc-includes/install_and_update.functions.php:649
3773
+ msgid "1. Your billing/contact details"
3774
+ msgstr "1. 支付/联系的明细"
3775
+
3776
+ #: wpsc-includes/install_and_update.functions.php:655
3777
+ #: wpsc-includes/install_and_update.functions.php:664
3778
+ msgid "Postal Code"
3779
+ msgstr "邮政编码"
3780
+
3781
+ #: wpsc-includes/install_and_update.functions.php:657
3782
+ msgid "2. Shipping details"
3783
+ msgstr "2.运输细节"
3784
+
3785
+ #: wpsc-includes/install_and_update.functions.php:662
3786
+ msgid "State"
3787
+ msgstr "状态"
3788
+
3789
+ #: wpsc-includes/misc.functions.php:46
3790
+ msgid "<strong>ERROR</strong>: Please enter a username."
3791
+ msgstr "<strong>错误</strong>请输入一个用户名。"
3792
+
3793
+ #: wpsc-includes/misc.functions.php:48
3794
+ msgid "<strong>ERROR</strong>: This username is invalid. Please enter a valid username."
3795
+ msgstr "<strong>错误</strong>:该用户名无效。请输入一个有效的用户名。"
3796
+
3797
+ #: wpsc-includes/misc.functions.php:51
3798
+ msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
3799
+ msgstr "<strong>错误</strong>:该用户名已注册,请选择另外一个用户名。"
3800
+
3801
+ #: wpsc-includes/misc.functions.php:56
3802
+ msgid "<strong>ERROR</strong>: Please type your e-mail address."
3803
+ msgstr "<strong>错误</strong>:请输入你的E-mail地址。"
3804
+
3805
+ #: wpsc-includes/misc.functions.php:58
3806
+ msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
3807
+ msgstr "<strong>错误</strong>:该Email地址不正确。"
3808
+
3809
+ #: wpsc-includes/misc.functions.php:61
3810
+ msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
3811
+ msgstr "<strong>错误</strong>:该Email已注册,请选择另外一个。"
3812
+
3813
+ #: wpsc-includes/misc.functions.php:69
3814
+ #, php-format
3815
+ msgid "<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
3816
+ msgstr "<strong>错误</strong>:对不起,注册出错...请联系 <a href=\"mailto:%s\">网站管理员</a> !"
3817
+
3818
+ #: wpsc-includes/processing.functions.php:30
3819
+ #: wpsc-includes/processing.functions.php:36
3820
+ #: wpsc-includes/processing.functions.php:46
3821
+ msgid " is out of stock"
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 "Remaining stock of "
3828
+ msgstr "建议库存"
3829
+
3830
+ #: wpsc-includes/processing.functions.php:30
3831
+ msgid " and its variations is 0. Product was unpublished."
3832
+ msgstr "和它的可变属性为0。商品未发布。"
3833
+
3834
+ #: wpsc-includes/processing.functions.php:36
3835
+ msgid " is 0. Product variation was set to invisible."
3836
+ msgstr " 为0。商品可变属性被设置为不可见。"
3837
+
3838
+ #: wpsc-includes/processing.functions.php:46
3839
+ msgid " is 0. Product was unpublished."
3840
+ msgstr " 为0。商品是未公布。"
3841
+
3842
+ #: wpsc-includes/processing.functions.php:916
3843
+ msgid "This product has no available stock"
3844
+ msgstr "该商品没有库存"
3845
+
3846
+ #: wpsc-includes/processing.functions.php:964
3847
+ msgid "One or more of your shipping modules does not support products without a weight set. Please either disable shipping for this product or give it a weight"
3848
+ msgstr "你的运输模块不支持商品没有重量。请关闭该商品的运输模块或者输入它的重量"
3849
+
3850
+ #: wpsc-includes/purchaselogs.class.php:596
3851
+ #, php-format
3852
+ msgid "Release downloads locked to this IP address %s"
3853
+ msgstr "发布下载锁定IP地址 %s"
3854
+
3855
+ #: wpsc-includes/purchaselogs.class.php:816
3856
+ msgid "Thanks, the purchase log record has been deleted"
3857
+ msgstr "谢谢,该消费记录已经删除"
3858
+
3859
+ #: wpsc-includes/rss_template.php:7
3860
+ msgid "WP e-Commerce"
3861
+ msgstr "WP e-Commerce"
3862
+
3863
+ #: wpsc-includes/upgrades.php:122
3864
+ msgid "Visit upgrade homepage"
3865
+ msgstr "访问升级主页"
3866
+
3867
+ #: wpsc-includes/upgrades.php:127
3868
+ msgid "Visit author homepage"
3869
+ msgstr "访问作者主页"
3870
+
3871
+ #: wpsc-includes/upgrades.php:131
3872
+ #, php-format
3873
+ msgid "By %s"
3874
+ msgstr "By %s"
3875
+
3876
+ #: wpsc-includes/variations.class.php:216
3877
+ msgid "Variation"
3878
+ msgstr "可变属性"
3879
+
3880
+ #: wpsc-includes/variations.class.php:217
3881
+ msgid "Stock"
3882
+ msgstr "库存"
3883
+
3884
+ #: wpsc-includes/variations.class.php:220
3885
+ msgid "More"
3886
+ msgstr "更多"
3887
+
3888
+ #: wpsc-includes/variations.class.php:352
3889
+ msgid "Weight Settings"
3890
+ msgstr "重量设置"
3891
+
3892
+ #: wpsc-includes/wpsc_query.php:939
3893
+ msgid "Save"
3894
+ msgstr "保存"
3895
+
merchants/paypal-standard.merchant.php CHANGED
@@ -176,8 +176,8 @@ class wpsc_merchant_paypal_standard extends wpsc_merchant {
176
  "tax_$i" => $this->format_price($cart_row['tax']),
177
  "quantity_$i" => $cart_row['quantity'],
178
  "item_number_$i" => $cart_row['product_id'],
179
- "shipping_$i" => $this->format_price($cart_row['shipping']), // additional shipping for the the (first item / total of the items)
180
- "shipping2_$i" => $this->format_price($cart_row['shipping']), // additional shipping beyond the first item
181
  "handling_$i" => '',
182
  );
183
  ++$i;
@@ -225,7 +225,6 @@ class wpsc_merchant_paypal_standard extends wpsc_merchant {
225
  echo "<pre>".print_r($this->collected_gateway_data,true)."</pre>";
226
  exit();
227
  }
228
- //exit('<pre>'.print_r($gateway_values, true).'</pre>');
229
  header("Location: ".get_option('paypal_multiple_url')."?".$gateway_values);
230
  exit();
231
  }
176
  "tax_$i" => $this->format_price($cart_row['tax']),
177
  "quantity_$i" => $cart_row['quantity'],
178
  "item_number_$i" => $cart_row['product_id'],
179
+ "shipping_$i" => $this->format_price($cart_row['shipping']/$cart_row['quantity']), // additional shipping for the the (first item / total of the items)
180
+ "shipping2_$i" => $this->format_price($cart_row['shipping']/$cart_row['quantity']), // additional shipping beyond the first item
181
  "handling_$i" => '',
182
  );
183
  ++$i;
225
  echo "<pre>".print_r($this->collected_gateway_data,true)."</pre>";
226
  exit();
227
  }
 
228
  header("Location: ".get_option('paypal_multiple_url')."?".$gateway_values);
229
  exit();
230
  }
merchants/paypal_multiple.php CHANGED
@@ -116,7 +116,7 @@ function gateway_paypal_multiple($seperator, $sessionid) {
116
  }
117
  $variation_count = count($product_variations);
118
  $local_currency_productprice = $item['price'];
119
- $local_currency_shipping = $item['pnp'];
120
 
121
  if($paypal_currency_code != $local_currency_code) {
122
  $paypal_currency_productprice = $curr->convert($local_currency_productprice,$paypal_currency_code,$local_currency_code);
@@ -228,6 +228,7 @@ function gateway_paypal_multiple($seperator, $sessionid) {
228
 
229
  $datacount = count($data);
230
  $num = 0;
 
231
  foreach($data as $key=>$value) {
232
  $amp = '&';
233
  $num++;
116
  }
117
  $variation_count = count($product_variations);
118
  $local_currency_productprice = $item['price'];
119
+ $local_currency_shipping = $item['pnp']/$item['quantity'];
120
 
121
  if($paypal_currency_code != $local_currency_code) {
122
  $paypal_currency_productprice = $curr->convert($local_currency_productprice,$paypal_currency_code,$local_currency_code);
228
 
229
  $datacount = count($data);
230
  $num = 0;
231
+ // exit('<pre>'.print_r($data,true).'</pre>');
232
  foreach($data as $key=>$value) {
233
  $amp = '&';
234
  $num++;
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.5
8
 
9
  WP e-Commerce is a Web 2.0 application designed with usability, aesthetics, and presentation in mind.
10
 
@@ -37,6 +37,21 @@ If you experience database errors try de-activating and re-activating your plugi
37
 
38
  == Changelog ==
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  = 3.7.6.5 =
41
  * Fix Problem with Deprecated Theme files showing WPSC_TXT instead of their proper values.
42
  * Fixed Integration with Gold Cart Plugin so Payment Gateways Show up on the Gateway Options page
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.7
8
 
9
  WP e-Commerce is a Web 2.0 application designed with usability, aesthetics, and presentation in mind.
10
 
37
 
38
  == Changelog ==
39
 
40
+ = 3.7.6.7 =
41
+ * Added back the hourly Cron Job for clearing the Claimed Stock
42
+ * Stripslahses added to transaction results message and Order Notes (removes the / in front of ' and ")
43
+ * Dashboard widget does not include sales that have been canceled by Paypal Pro
44
+ * Australia Post Shipping Module, fix for International quotes
45
+ * Fixed calculations on the Purchase Log and Shipping details pages
46
+ * Fixed Broken HTML tag in Packing Slip
47
+ * Permalinks Issue for WordPress 3.0 and the menu_nav_item custom post type conflict
48
+ * Memory Bump to increase PHP's memory limit if running on 32MB to avoid fatal error out of memory issues
49
+
50
+ = 3.7.6.6 =
51
+ * Edit Coupons Fixed and new Category Conditions added to the mix
52
+ * Checkout Options for drop-down boxes, radio buttons Fixed
53
+
54
+
55
  = 3.7.6.5 =
56
  * Fix Problem with Deprecated Theme files showing WPSC_TXT instead of their proper values.
57
  * Fixed Integration with Gold Cart Plugin so Payment Gateways Show up on the Gateway Options page
shipping/australiapost.php CHANGED
@@ -151,8 +151,9 @@ class australiapost {
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
 
151
  } else if(isset($_SESSION['wpsc_zipcode'])) {
152
  $destzipcode = $_SESSION['wpsc_zipcode'];
153
  }
154
+
155
+ if ($dest == 'AU' && strlen($destzipcode) != 4) {
156
+ // Invalid Australian Post Code entered, so just return an empty set of quotes instead of wasting time contactin the Aus Post API
157
  return array();
158
  }
159
 
shipping/flatrate.php CHANGED
@@ -73,7 +73,7 @@ class flatrate {
73
  } else {
74
  $country = $_SESSION['wpsc_delivery_country'];
75
  }
76
- $_SESSION['quote_shipping_option'] = null;
77
 
78
  if (get_option('base_country') != $country) {
79
  $results = $wpdb->get_var("SELECT `continent` FROM `".WPSC_TABLE_CURRENCY_LIST."` WHERE `isocode` IN('{$country}') LIMIT 1");
73
  } else {
74
  $country = $_SESSION['wpsc_delivery_country'];
75
  }
76
+ $_SESSION['quote_shipping_option'] = null;
77
 
78
  if (get_option('base_country') != $country) {
79
  $results = $wpdb->get_var("SELECT `continent` FROM `".WPSC_TABLE_CURRENCY_LIST."` WHERE `isocode` IN('{$country}') LIMIT 1");
themes/default/shopping_cart_page.php CHANGED
@@ -88,7 +88,7 @@ if(wpsc_cart_item_count() > 0) :
88
  ?>
89
  <?php do_action('wpsc_before_shipping_of_shopping_cart'); ?>
90
  <div id='wpsc_shopping_cart_container'>
91
- <?php if(wpsc_uses_shipping()) : ?>
92
  <h2><?php echo __('Calculate Shipping Price', 'wpsc'); ?></h2>
93
  <table class="productcart">
94
  <tr>
@@ -384,4 +384,4 @@ else:
384
  echo __('Oops, there is nothing in your cart.', 'wpsc') . " <a href=".get_option("product_list_url").">" . __('Please visit our shop', 'wpsc') . "</a>";
385
  endif;
386
  do_action('wpsc_bottom_of_shopping_cart');
387
- ?>
88
  ?>
89
  <?php do_action('wpsc_before_shipping_of_shopping_cart'); ?>
90
  <div id='wpsc_shopping_cart_container'>
91
+ <?php if(wpsc_uses_shipping() && wpsc_has_shipping_form()): ?>
92
  <h2><?php echo __('Calculate Shipping Price', 'wpsc'); ?></h2>
93
  <table class="productcart">
94
  <tr>
384
  echo __('Oops, there is nothing in your cart.', 'wpsc') . " <a href=".get_option("product_list_url").">" . __('Please visit our shop', 'wpsc') . "</a>";
385
  endif;
386
  do_action('wpsc_bottom_of_shopping_cart');
387
+ ?>
themes/iShop/shopping_cart_page.php CHANGED
@@ -87,7 +87,7 @@ if(wpsc_cart_item_count() > 0) :
87
  ?>
88
  <?php do_action('wpsc_before_shipping_of_shopping_cart'); ?>
89
  <div id='wpsc_shopping_cart_container'>
90
- <?php if(wpsc_uses_shipping()) : ?>
91
  <h2><?php echo __('Calculate Shipping Price', 'wpsc'); ?></h2>
92
  <table class="productcart">
93
  <tr>
@@ -148,15 +148,17 @@ if(wpsc_cart_item_count() > 0) :
148
  <?php endif; ?>
149
 
150
  <table class="productcart">
151
- <tr class="total_price total_tax">
152
- <td colspan="3">
153
- <?php echo wpsc_display_tax_label(true); ?>
 
154
 
155
- </td>
156
- <td colspan="2">
157
- <span id="checkout_tax" class="pricedisplay checkout-tax"><?php echo wpsc_cart_tax(); ?></span>
158
- </td>
159
- </tr>
 
160
  <?php if(wpsc_uses_coupons() && (wpsc_coupon_amount(false) > 0)): ?>
161
  <tr class="total_price">
162
  <td colspan="3">
@@ -355,4 +357,4 @@ else:
355
  echo __('Oops, there is nothing in your cart.', 'wpsc') . " <a href='".get_option("product_list_url")."'>" . __('Please visit our shop', 'wpsc') . "</a>";
356
  endif;
357
  do_action('wpsc_bottom_of_shopping_cart');
358
- ?>
87
  ?>
88
  <?php do_action('wpsc_before_shipping_of_shopping_cart'); ?>
89
  <div id='wpsc_shopping_cart_container'>
90
+ <?php if(wpsc_uses_shipping() && wpsc_has_shipping_form()): ?>
91
  <h2><?php echo __('Calculate Shipping Price', 'wpsc'); ?></h2>
92
  <table class="productcart">
93
  <tr>
148
  <?php endif; ?>
149
 
150
  <table class="productcart">
151
+ <?php if(wpsc_cart_tax(false) > 0) : ?>
152
+ <tr class="total_price total_tax">
153
+ <td colspan="3">
154
+ <?php echo wpsc_display_tax_label(true); ?>
155
 
156
+ </td>
157
+ <td colspan="2">
158
+ <span id="checkout_tax" class="pricedisplay checkout-tax"><?php echo wpsc_cart_tax(); ?></span>
159
+ </td>
160
+ </tr>
161
+ <?php endif; ?>
162
  <?php if(wpsc_uses_coupons() && (wpsc_coupon_amount(false) > 0)): ?>
163
  <tr class="total_price">
164
  <td colspan="3">
357
  echo __('Oops, there is nothing in your cart.', 'wpsc') . " <a href='".get_option("product_list_url")."'>" . __('Please visit our shop', 'wpsc') . "</a>";
358
  endif;
359
  do_action('wpsc_bottom_of_shopping_cart');
360
+ ?>
themes/marketplace/shopping_cart_page.php CHANGED
@@ -86,7 +86,7 @@ if(wpsc_cart_item_count() > 0) :
86
  ?>
87
  <?php do_action('wpsc_before_shipping_of_shopping_cart'); ?>
88
  <div id='wpsc_shopping_cart_container'>
89
- <?php if(wpsc_uses_shipping()) : ?>
90
  <h2><?php echo __('Calculate Shipping Price', 'wpsc'); ?></h2>
91
  <table class="productcart">
92
  <tr>
@@ -147,14 +147,17 @@ if(wpsc_cart_item_count() > 0) :
147
  <?php endif; ?>
148
 
149
  <table class="productcart">
150
- <tr class="total_price total_tax">
151
- <td colspan="3">
152
- <?php echo wpsc_display_tax_label(true); ?>
153
- </td>
154
- <td colspan="2">
155
- <span id="checkout_tax" class="pricedisplay checkout-tax"><?php echo wpsc_cart_tax(); ?></span>
156
- </td>
157
- </tr>
 
 
 
158
  <?php if(wpsc_uses_coupons() && (wpsc_coupon_amount(false) > 0)): ?>
159
  <tr class="total_price">
160
  <td colspan="3">
@@ -353,4 +356,4 @@ else:
353
  echo __('Oops, there is nothing in your cart.', 'wpsc') . " <a href='".get_option("product_list_url")."'>" . __('Please visit our shop', 'wpsc') . "</a>";
354
  endif;
355
  do_action('wpsc_bottom_of_shopping_cart');
356
- ?>
86
  ?>
87
  <?php do_action('wpsc_before_shipping_of_shopping_cart'); ?>
88
  <div id='wpsc_shopping_cart_container'>
89
+ <?php if(wpsc_uses_shipping() && wpsc_has_shipping_form()): ?>
90
  <h2><?php echo __('Calculate Shipping Price', 'wpsc'); ?></h2>
91
  <table class="productcart">
92
  <tr>
147
  <?php endif; ?>
148
 
149
  <table class="productcart">
150
+ <?php if(wpsc_cart_tax(false) > 0) : ?>
151
+ <tr class="total_price total_tax">
152
+ <td colspan="3">
153
+ <?php echo wpsc_display_tax_label(true); ?>
154
+
155
+ </td>
156
+ <td colspan="2">
157
+ <span id="checkout_tax" class="pricedisplay checkout-tax"><?php echo wpsc_cart_tax(); ?></span>
158
+ </td>
159
+ </tr>
160
+ <?php endif; ?>
161
  <?php if(wpsc_uses_coupons() && (wpsc_coupon_amount(false) > 0)): ?>
162
  <tr class="total_price">
163
  <td colspan="3">
356
  echo __('Oops, there is nothing in your cart.', 'wpsc') . " <a href='".get_option("product_list_url")."'>" . __('Please visit our shop', 'wpsc') . "</a>";
357
  endif;
358
  do_action('wpsc_bottom_of_shopping_cart');
359
+ ?>
transaction_result_functions.php CHANGED
@@ -23,10 +23,10 @@ function transaction_results($sessionid, $echo_to_screen = true, $transaction_id
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;
28
  } else {
29
- $message = get_option('wpsc_email_receipt');
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'];
@@ -38,7 +38,7 @@ function transaction_results($sessionid, $echo_to_screen = true, $transaction_id
38
  }
39
  return false;
40
  } else if ($purchase_log['processed'] < 2) { //added by Thomas on 20/6/2007
41
- echo __('Thank you, your purchase is pending, you will be sent an email once the order clears.', 'wpsc') . "<p style='margin: 1em 0px 0px 0px;' >".nl2br(get_option('payment_instructions'))."</p>";
42
  /*if($purchase_log['gateway'] != 'testmode') {
43
  if((get_option('purch_log_email') != null) && ($purchase_log['email_sent'] != 1)) {
44
  mail(get_option('purch_log_email'), __('New pending order', 'wpsc'), __('There is a new order awaiting processing:', 'wpsc').$order_url, "From: ".get_option('return_email')."");
23
  $thepurchlogitem = new wpsc_purchaselogs_items((int)$purchase_log['id']);
24
 
25
  if(($purchase_log['gateway'] == "testmode") && ($purchase_log['processed'] < 2)) {
26
+ $message = stripslashes(get_option('wpsc_email_receipt'));
27
  $message_html = $message;
28
  } else {
29
+ $message = stripslashes(get_option('wpsc_email_receipt'));
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'];
38
  }
39
  return false;
40
  } else if ($purchase_log['processed'] < 2) { //added by Thomas on 20/6/2007
41
+ echo __('Thank you, your purchase is pending, you will be sent an email once the order clears.', 'wpsc') . "<p style='margin: 1em 0px 0px 0px;' >".nl2br(stripslashes(get_option('payment_instructions')))."</p>";
42
  /*if($purchase_log['gateway'] != 'testmode') {
43
  if((get_option('purch_log_email') != null) && ($purchase_log['email_sent'] != 1)) {
44
  mail(get_option('purch_log_email'), __('New pending order', 'wpsc'), __('There is a new order awaiting processing:', 'wpsc').$order_url, "From: ".get_option('return_email')."");
transaction_results.php CHANGED
@@ -20,8 +20,9 @@ if($_GET['gateway'] == 'google'){
20
  }elseif($_GET['gateway'] == 'noca'){
21
  wpsc_submit_checkout();
22
  }
23
-
24
-
 
25
  $errorcode = '';
26
  $transactid = '';
27
  if($_REQUEST['eway']=='1') {
@@ -40,16 +41,6 @@ if($_SESSION['wpsc_previous_selected_gateway'] == 'paypal_certified' && $_SESSIO
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
  ?>
20
  }elseif($_GET['gateway'] == 'noca'){
21
  wpsc_submit_checkout();
22
  }
23
+ if($_SESSION['wpsc_previous_selected_gateway']== 'dps') {
24
+ $sessionid = decrypt_dps_response();
25
+ }
26
  $errorcode = '';
27
  $transactid = '';
28
  if($_REQUEST['eway']=='1') {
41
  _e('Sorry your transaction was not accepted.<br /><a href='.get_option("shopping_cart_url").'>Click here to go back to checkout page.</a>');
42
 
43
  }else{
44
+ echo transaction_results($sessionid, true);
 
 
 
 
 
 
 
 
 
 
45
  }
46
  ?>
wp-shopping-cart.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP e-Commerce Plugin
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.5
7
  Author: Instinct
8
  Author URI: http://www.getshopped.org
9
  */
@@ -13,10 +13,11 @@ Author URI: http://www.getshopped.org
13
  */
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', '55');
18
 
19
- define('WPSC_PRESENTABLE_VERSION', '3.7.6.5');
20
 
21
  define('WPSC_DEBUG', false);
22
  define('WPSC_GATEWAY_DEBUG', false);
@@ -277,7 +278,7 @@ $gateway_directory = WPSC_FILE_PATH.'/merchants';
277
  $nzshpcrt_merchant_list = wpsc_list_dir($gateway_directory);
278
 
279
  $num=0;
280
- foreach($nzshpcrt_merchant_list as $nzshpcrt_merchant) {
281
  if(stristr( $nzshpcrt_merchant , '.php' )) {
282
  //echo $nzshpcrt_merchant;
283
  require(WPSC_FILE_PATH."/merchants/".$nzshpcrt_merchant);
@@ -293,7 +294,7 @@ $nzshpcrt_gateways = apply_filters('wpsc_gateway_modules',$nzshpcrt_gateways);
293
  // include shipping modules here.
294
  $shipping_directory = WPSC_FILE_PATH.'/shipping';
295
  $nzshpcrt_shipping_list = wpsc_list_dir($shipping_directory);
296
- foreach($nzshpcrt_shipping_list as $nzshpcrt_shipping) {
297
  if(stristr( $nzshpcrt_shipping , '.php' )) {
298
  if($nzshpcrt_shipping == 'ups.php'){
299
  if (phpMinV('5')){
3
  Plugin Name: WP e-Commerce Plugin
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.7
7
  Author: Instinct
8
  Author URI: http://www.getshopped.org
9
  */
13
  */
14
  // this is to make sure it sets up the table name constants correctly on activation
15
  global $wpdb;
16
+ if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < 64 ) ) @ini_set('memory_limit', '64M');
17
  define('WPSC_VERSION', '3.7');
18
+ define('WPSC_MINOR_VERSION', '57');
19
 
20
+ define('WPSC_PRESENTABLE_VERSION', '3.7.6.7');
21
 
22
  define('WPSC_DEBUG', false);
23
  define('WPSC_GATEWAY_DEBUG', false);
278
  $nzshpcrt_merchant_list = wpsc_list_dir($gateway_directory);
279
 
280
  $num=0;
281
+ foreach((array)$nzshpcrt_merchant_list as $nzshpcrt_merchant) {
282
  if(stristr( $nzshpcrt_merchant , '.php' )) {
283
  //echo $nzshpcrt_merchant;
284
  require(WPSC_FILE_PATH."/merchants/".$nzshpcrt_merchant);
294
  // include shipping modules here.
295
  $shipping_directory = WPSC_FILE_PATH.'/shipping';
296
  $nzshpcrt_shipping_list = wpsc_list_dir($shipping_directory);
297
+ foreach((array)$nzshpcrt_shipping_list as $nzshpcrt_shipping) {
298
  if(stristr( $nzshpcrt_shipping , '.php' )) {
299
  if($nzshpcrt_shipping == 'ups.php'){
300
  if (phpMinV('5')){
wpsc-admin/admin.php CHANGED
@@ -127,7 +127,7 @@ function wpsc_admin_pages(){
127
  }
128
  //exit('base page:'.$base_page);
129
  // exit($GLOBALS['wp_version']);
130
- if(IS_WPMU || $GLOBALS['wp_version'] == '3.0-alpha'){
131
  $page_hooks[] = add_submenu_page($base_page,__('Marketing', 'wpsc'), __('Marketing', 'wpsc'), 10,'wpsc_display_coupons_page','wpsc_display_coupons_page');
132
  }else{
133
  $page_hooks[] = add_submenu_page($base_page,__('Marketing', 'wpsc'), __('Marketing', 'wpsc'), 7,'wpsc_display_coupons_page','wpsc_display_coupons_page');
@@ -440,7 +440,7 @@ function wpsc_admin_latest_activity() {
440
  $month = date("m");
441
  $start_timestamp = mktime(0, 0, 0, $month, 1, $year);
442
  $end_timestamp = mktime(0, 0, 0, ($month+1), 0, $year);
443
- $sql = "SELECT COUNT(*) FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `date` BETWEEN '$start_timestamp' AND '$end_timestamp' ORDER BY `date` DESC";
444
  $currentMonthOrders = $wpdb->get_var($sql);
445
 
446
  //calculates amount of money made for the month
127
  }
128
  //exit('base page:'.$base_page);
129
  // exit($GLOBALS['wp_version']);
130
+ if(IS_WPMU || $GLOBALS['wp_version'] == '3.0'){
131
  $page_hooks[] = add_submenu_page($base_page,__('Marketing', 'wpsc'), __('Marketing', 'wpsc'), 10,'wpsc_display_coupons_page','wpsc_display_coupons_page');
132
  }else{
133
  $page_hooks[] = add_submenu_page($base_page,__('Marketing', 'wpsc'), __('Marketing', 'wpsc'), 7,'wpsc_display_coupons_page','wpsc_display_coupons_page');
440
  $month = date("m");
441
  $start_timestamp = mktime(0, 0, 0, $month, 1, $year);
442
  $end_timestamp = mktime(0, 0, 0, ($month+1), 0, $year);
443
+ $sql = "SELECT COUNT(*) FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `date` BETWEEN '$start_timestamp' AND '$end_timestamp' AND `processed` IN (2,3,4) ORDER BY `date` DESC";
444
  $currentMonthOrders = $wpdb->get_var($sql);
445
 
446
  //calculates amount of money made for the month
wpsc-admin/ajax-and-init.php CHANGED
@@ -1320,6 +1320,7 @@ function wpsc_purchlog_edit_status($purchlog_id='', $purchlog_status='') {
1320
 
1321
  $log_data = $wpdb->get_row("SELECT * FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `id` = '{$purchlog_id}' LIMIT 1",ARRAY_A);
1322
  if (($purchlog_status==2) && function_exists('wpsc_member_activate_subscriptions')){
 
1323
  wpsc_member_activate_subscriptions($_POST['id']);
1324
  }
1325
 
@@ -1939,6 +1940,7 @@ function wpsc_checkout_settings(){
1939
  if(is_array($_POST['wpsc_checkout_option_label'])){
1940
 
1941
  foreach($_POST['wpsc_checkout_option_label'] as $form_id=> $values){
 
1942
  foreach((array)$values as $key => $form_option){
1943
  $form_option = str_ireplace("'", "",$form_option);
1944
  $form_val = str_ireplace("'", "",sanitize_title($_POST['wpsc_checkout_option_value'][$form_id][$key]));
@@ -1948,6 +1950,16 @@ function wpsc_checkout_settings(){
1948
  $sql = "UPDATE `".WPSC_TABLE_CHECKOUT_FORMS."` SET `options`='".$options."' WHERE id=".$form_id;
1949
  $wpdb->query($sql);
1950
  }
 
 
 
 
 
 
 
 
 
 
1951
 
1952
  }
1953
 
@@ -2159,7 +2171,7 @@ function wpsc_mass_resize_thumbnails() {
2159
  }
2160
  //$wpdb->query("DELETE FROM `".WPSC_TABLE_PRODUCT_IMAGES."` WHERE `product_id` IN('0')");
2161
 
2162
- $_SESSION['wpsc_thumbnails_resized'] = true;
2163
  $sendback = wp_get_referer();
2164
  $sendback = add_query_arg('tab', $_SESSION['wpsc_settings_curr_page'], remove_query_arg('tab', $sendback));
2165
  wp_redirect($sendback);
1320
 
1321
  $log_data = $wpdb->get_row("SELECT * FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `id` = '{$purchlog_id}' LIMIT 1",ARRAY_A);
1322
  if (($purchlog_status==2) && function_exists('wpsc_member_activate_subscriptions')){
1323
+ do_action('wpsc_submit_checkout', array("purchase_log_id" => $purchase_log_id, "our_user_id" => $our_user_id));
1324
  wpsc_member_activate_subscriptions($_POST['id']);
1325
  }
1326
 
1940
  if(is_array($_POST['wpsc_checkout_option_label'])){
1941
 
1942
  foreach($_POST['wpsc_checkout_option_label'] as $form_id=> $values){
1943
+ $options = array();
1944
  foreach((array)$values as $key => $form_option){
1945
  $form_option = str_ireplace("'", "",$form_option);
1946
  $form_val = str_ireplace("'", "",sanitize_title($_POST['wpsc_checkout_option_value'][$form_id][$key]));
1950
  $sql = "UPDATE `".WPSC_TABLE_CHECKOUT_FORMS."` SET `options`='".$options."' WHERE id=".$form_id;
1951
  $wpdb->query($sql);
1952
  }
1953
+
1954
+
1955
+ // exit('<pre>'.print_r($options,true).'</pre>');
1956
+ /*
1957
+ $options = serialize($options);
1958
+
1959
+ $sql = "UPDATE `".WPSC_TABLE_CHECKOUT_FORMS."` SET `options`='".$options."' WHERE id=".$form_id;
1960
+ */
1961
+
1962
+
1963
 
1964
  }
1965
 
2171
  }
2172
  //$wpdb->query("DELETE FROM `".WPSC_TABLE_PRODUCT_IMAGES."` WHERE `product_id` IN('0')");
2173
 
2174
+ $_SESSION['wpsc_thumbnails_resized'] = true;
2175
  $sendback = wp_get_referer();
2176
  $sendback = add_query_arg('tab', $_SESSION['wpsc_settings_curr_page'], remove_query_arg('tab', $sendback));
2177
  wp_redirect($sendback);
wpsc-admin/display-sales-logs.php CHANGED
@@ -639,7 +639,7 @@ function wpsc_purchlogs_notes() {
639
  <input type='hidden' name='wpsc_admin_action' value='purchlogs_update_notes' />
640
  <input type="hidden" name="wpsc_purchlogs_update_notes_nonce" id="wpsc_purchlogs_update_notes_nonce" value="<?php echo wp_create_nonce( 'wpsc_purchlogs_update_notes' ); ?>" />
641
  <input type='hidden' name='purchlog_id' value='<?php echo $_GET['purchaselog_id']; ?>' />
642
- <p><textarea name="purchlog_notes" rows="3" wrap="virtual" id="purchlog_notes" style="width:100%;"><?php if ( isset($_POST['purchlog_notes']) ) { echo $_POST['purchlog_notes']; } else { echo wpsc_display_purchlog_notes(); } ?></textarea></p>
643
  <p><input class="button" type="submit" name="button" id="button" value="Update Notes" /></p>
644
  </form>
645
  </div>
639
  <input type='hidden' name='wpsc_admin_action' value='purchlogs_update_notes' />
640
  <input type="hidden" name="wpsc_purchlogs_update_notes_nonce" id="wpsc_purchlogs_update_notes_nonce" value="<?php echo wp_create_nonce( 'wpsc_purchlogs_update_notes' ); ?>" />
641
  <input type='hidden' name='purchlog_id' value='<?php echo $_GET['purchaselog_id']; ?>' />
642
+ <p><textarea name="purchlog_notes" rows="3" wrap="virtual" id="purchlog_notes" style="width:100%;"><?php if ( isset($_POST['purchlog_notes']) ) { echo stripslashes($_POST['purchlog_notes']); } else { echo wpsc_display_purchlog_notes(); } ?></textarea></p>
643
  <p><input class="button" type="submit" name="button" id="button" value="Update Notes" /></p>
644
  </form>
645
  </div>
wpsc-admin/includes/settings-pages/admin.php CHANGED
@@ -208,6 +208,7 @@ global $wpdb;
208
  </td>
209
  </tr>
210
  <?php
 
211
  }
212
  $sendback = wp_get_referer();
213
  ?>
208
  </td>
209
  </tr>
210
  <?php
211
+ do_action('wpsc_admin_settings_page');
212
  }
213
  $sendback = wp_get_referer();
214
  ?>
wpsc-admin/includes/settings-pages/checkout.php CHANGED
@@ -145,6 +145,30 @@ $form_types = get_option('wpsc_checkout_form_fields');
145
  <label for='shippingsameasbilling2'><?php echo __('No', 'wpsc');?></label>
146
  </td>
147
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
148
  </table>
149
  </div>
150
  </div>
145
  <label for='shippingsameasbilling2'><?php echo __('No', 'wpsc');?></label>
146
  </td>
147
  </tr>
148
+
149
+ <tr>
150
+ <?php
151
+ $billing_unless_shipping_setting = get_option('use_billing_unless_is_shipping');
152
+
153
+ switch($billing_unless_shipping_setting) {
154
+ case 1:
155
+ $billing_unless_shipping['on'] = "checked ='checked'";
156
+ break;
157
+
158
+ case 0:
159
+ $billing_unless_shipping['off'] = "checked ='checked'";
160
+ break;
161
+ }
162
+ ?>
163
+ <td scope="row"><?php echo __('Use The Billing country for Shipping unless a shipping form is present: ', 'wpsc'); ?>:</td>
164
+ <td>
165
+ <input type='radio' value='1' name='wpsc_options[use_billing_unless_is_shipping]' id='use_billing_unless_is_shipping1' <?php echo $billing_unless_shipping['on']; ?> />
166
+ <label for='use_billing_unless_is_shipping1'><?php echo __('Yes', 'wpsc');?></label> &nbsp;
167
+ <input type='radio' value='0' name='wpsc_options[use_billing_unless_is_shipping]' id='use_billing_unless_is_shipping2' <?php echo $billing_unless_shipping['off']; ?> />
168
+ <label for='use_billing_unless_is_shipping2'><?php echo __('No', 'wpsc');?></label>
169
+ </td>
170
+ </tr>
171
+
172
  </table>
173
  </div>
174
  </div>
wpsc-includes/ajax.functions.php CHANGED
@@ -803,7 +803,7 @@ function wpsc_change_tax() {
803
  $wpsc_delivery_region = $wpsc_cart->delivery_region;
804
 
805
 
806
- $previous_country = $_SESSION['wpsc_selected_country'];
807
  if(isset($_POST['billing_country'])){
808
  $wpsc_selected_country = $wpdb->escape($_POST['billing_country']);
809
  $_SESSION['wpsc_selected_country'] = $wpsc_selected_country;
@@ -814,6 +814,12 @@ function wpsc_change_tax() {
814
  $_SESSION['wpsc_selected_region'] = $wpsc_selected_region;
815
  }
816
 
 
 
 
 
 
 
817
  $check_country_code = $wpdb->get_var(" SELECT `country`.`isocode` FROM `".WPSC_TABLE_REGION_TAX."` AS `region` INNER JOIN `".WPSC_TABLE_CURRENCY_LIST."` AS `country` ON `region`.`country_id` = `country`.`id` WHERE `region`.`id` = '".$_SESSION['wpsc_selected_region']."' LIMIT 1");
818
 
819
  if($_SESSION['wpsc_selected_country'] != $check_country_code) {
@@ -836,7 +842,7 @@ function wpsc_change_tax() {
836
  }
837
 
838
 
839
- $wpsc_cart->update_location();
840
  $wpsc_cart->get_shipping_method();
841
  $wpsc_cart->get_shipping_option();
842
  if($wpsc_cart->selected_shipping_method != '') {
803
  $wpsc_delivery_region = $wpsc_cart->delivery_region;
804
 
805
 
806
+ $previous_country = $_SESSION['wpsc_selected_country'];
807
  if(isset($_POST['billing_country'])){
808
  $wpsc_selected_country = $wpdb->escape($_POST['billing_country']);
809
  $_SESSION['wpsc_selected_country'] = $wpsc_selected_country;
814
  $_SESSION['wpsc_selected_region'] = $wpsc_selected_region;
815
  }
816
 
817
+ //if(!wpsc_has_shipping_form()) {
818
+ // $_POST['shipping_country'] = $wpsc_selected_country;
819
+ // $_POST['shipping_region'] = $wpsc_selected_region;
820
+ //}
821
+
822
+
823
  $check_country_code = $wpdb->get_var(" SELECT `country`.`isocode` FROM `".WPSC_TABLE_REGION_TAX."` AS `region` INNER JOIN `".WPSC_TABLE_CURRENCY_LIST."` AS `country` ON `region`.`country_id` = `country`.`id` WHERE `region`.`id` = '".$_SESSION['wpsc_selected_region']."' LIMIT 1");
824
 
825
  if($_SESSION['wpsc_selected_country'] != $check_country_code) {
842
  }
843
 
844
 
845
+ $wpsc_cart->update_location();
846
  $wpsc_cart->get_shipping_method();
847
  $wpsc_cart->get_shipping_option();
848
  if($wpsc_cart->selected_shipping_method != '') {
wpsc-includes/cart.class.php CHANGED
@@ -688,7 +688,7 @@ class wpsc_cart {
688
  $this->shipping_quotes = $wpsc_shipping_modules[$this->selected_shipping_method]->getQuote();
689
  }
690
  } else {
691
- // exit('Here <pre>'.print_r($custom_shipping, true).'</pre>');
692
  // otherwise select the first one with any quotes
693
  foreach((array)$custom_shipping as $shipping_module) {
694
  // if the shipping module does not require a weight, or requires one and the weight is larger than zero
@@ -703,9 +703,8 @@ class wpsc_cart {
703
 
704
  }
705
  }
706
- // exit('<pre>'.print_r($this, true).'</pre>');
707
- //echo('<pre>'.print_r($custom_shipping,true).'</pre>');
708
- }
709
 
710
  /**
711
  * get_shipping_option method, gets the shipping option from the selected method and associated quotes
@@ -1934,15 +1933,15 @@ class wpsc_cart_item {
1934
  function save_to_db($purchase_log_id) {
1935
  global $wpdb, $wpsc_shipping_modules;
1936
 
1937
- if($method === null) {
1938
- $method = $this->cart->selected_shipping_method;
1939
- }
1940
  if(method_exists( $wpsc_shipping_modules[$method], "get_item_shipping" )) {
1941
  $shipping = $wpsc_shipping_modules[$this->cart->selected_shipping_method]->get_item_shipping( $this );
1942
  }
1943
- if($this->cart->has_total_shipping_discount()) {
1944
- $shipping = 0;
1945
- }
1946
  if($this->apply_tax == true && wpsc_tax_isincluded() == false) {
1947
  if(is_numeric($this->custom_tax_rate)) {
1948
  $tax_rate = $this->custom_tax_rate;
688
  $this->shipping_quotes = $wpsc_shipping_modules[$this->selected_shipping_method]->getQuote();
689
  }
690
  } else {
691
+
692
  // otherwise select the first one with any quotes
693
  foreach((array)$custom_shipping as $shipping_module) {
694
  // if the shipping module does not require a weight, or requires one and the weight is larger than zero
703
 
704
  }
705
  }
706
+
707
+ }
 
708
 
709
  /**
710
  * get_shipping_option method, gets the shipping option from the selected method and associated quotes
1933
  function save_to_db($purchase_log_id) {
1934
  global $wpdb, $wpsc_shipping_modules;
1935
 
1936
+ if($method === null) {
1937
+ $method = $this->cart->selected_shipping_method;
1938
+ }
1939
  if(method_exists( $wpsc_shipping_modules[$method], "get_item_shipping" )) {
1940
  $shipping = $wpsc_shipping_modules[$this->cart->selected_shipping_method]->get_item_shipping( $this );
1941
  }
1942
+ if($this->cart->has_total_shipping_discount()) {
1943
+ $shipping = 0;
1944
+ }
1945
  if($this->apply_tax == true && wpsc_tax_isincluded() == false) {
1946
  if(is_numeric($this->custom_tax_rate)) {
1947
  $tax_rate = $this->custom_tax_rate;
wpsc-includes/checkout.class.php CHANGED
@@ -60,6 +60,7 @@ function wpsc_the_checkout_item() {
60
  global $wpsc_checkout;
61
  return $wpsc_checkout->the_checkout_item();
62
  }
 
63
  function wpsc_is_shipping_details(){
64
  global $wpsc_checkout;
65
  if($wpsc_checkout->checkout_item->unique_name == 'delivertoafriend' && get_option('shippingsameasbilling') == '1'){
@@ -69,13 +70,42 @@ function wpsc_is_shipping_details(){
69
  }
70
 
71
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  function wpsc_shipping_details(){
73
  global $wpsc_checkout;
74
  if(stristr($wpsc_checkout->checkout_item->unique_name, 'shipping') != false){
75
-
76
- return ' wpsc_shipping_forms';
77
  }else{
78
- return "";
79
  }
80
 
81
  }
@@ -456,13 +486,15 @@ class wpsc_checkout {
456
  break;
457
 
458
  case "delivery_country":
459
- if(wpsc_uses_shipping()){
460
- $country_name = $wpdb->get_var("SELECT `country` FROM `".WPSC_TABLE_CURRENCY_LIST."` WHERE `isocode`='".$_SESSION['wpsc_delivery_country']."' LIMIT 1");
461
- $output = "<input title='".$this->checkout_item->unique_name."' type='hidden' id='".$this->form_element_id()."' class='shipping_country' name='collected_data[{$this->checkout_item->id}]' value='".$_SESSION['wpsc_delivery_country']."' /><span class='shipping_country_name'>".$country_name."</span> ";
462
- }else{
463
- $checkoutfields = true;
464
- //$output = wpsc_shipping_country_list($checkoutfields);
465
- $output = wpsc_country_region_list($this->checkout_item->id , false, $_SESSION['wpsc_selected_country'], $_SESSION['wpsc_selected_region'], $this->form_element_id(), $checkoutfields);
 
 
466
  }
467
  break;
468
 
@@ -738,16 +770,16 @@ class wpsc_checkout {
738
  $value = $form_data->value;
739
  }
740
  if($form_data->type != 'heading') {
741
- // echo '<pre>'.print_r($form_data,true).'</pre>';
742
  if(is_array($value) &&($form_data->type == 'country' ||$form_data->type == 'delivery_country') ){
743
  $value = serialize($value);
744
  $prepared_query = $wpdb->query($wpdb->prepare("INSERT INTO `".WPSC_TABLE_SUBMITED_FORM_DATA."` ( `log_id` , `form_id` , `value` ) VALUES ( %d, %d, %s)", $purchase_id, $form_data->id, $value));
745
- }elseif(is_array($value)) {
746
- // echo('<pre>'.print_r($value, true).'</pre>');
747
  foreach((array)$value as $v){
748
  if(is_array($v)){
749
  $options = array();
750
- // exit('<pre>'.print_r($v, true).'</pre>');
751
  foreach($v as $option){
752
  if($option != '-1'){
753
  $options[] = $option;
@@ -759,7 +791,7 @@ class wpsc_checkout {
759
  }
760
  $prepared_query = $wpdb->query($wpdb->prepare("INSERT INTO `".WPSC_TABLE_SUBMITED_FORM_DATA."` ( `log_id` , `form_id` , `value` ) VALUES ( %d, %d, %s)", $purchase_id, $form_data->id, $v));
761
  }
762
- }else{
763
  $prepared_query = $wpdb->query($wpdb->prepare("INSERT INTO `".WPSC_TABLE_SUBMITED_FORM_DATA."` ( `log_id` , `form_id` , `value` ) VALUES ( %d, %d, %s)", $purchase_id, $form_data->id, $value));
764
 
765
  }
60
  global $wpsc_checkout;
61
  return $wpsc_checkout->the_checkout_item();
62
  }
63
+
64
  function wpsc_is_shipping_details(){
65
  global $wpsc_checkout;
66
  if($wpsc_checkout->checkout_item->unique_name == 'delivertoafriend' && get_option('shippingsameasbilling') == '1'){
70
  }
71
 
72
  }
73
+
74
+
75
+ /*
76
+ * wpsc_has_shipping_form function
77
+ * Checks to see if shipping is set to be the same as billing, and there is no shipping section
78
+ * If so, it disables the shipping select box.
79
+ *
80
+ */
81
+
82
+ function wpsc_has_shipping_form(){
83
+ global $wpsc_checkout;
84
+ if($wpsc_checkout == null) {
85
+ $wpsc_checkout = new wpsc_checkout();
86
+ }
87
+
88
+ //echo "<pre>".print_r($wpsc_checkout, true)."</pre>";
89
+ $unique_name_list = array();
90
+ foreach($wpsc_checkout->checkout_items as $checkout_item) {
91
+ $unique_name_list[] = $checkout_item->unique_name;
92
+ }
93
+ if(in_array('shippingcountry', $unique_name_list) && (get_option('use_billing_unless_is_shipping') != '1')){
94
+ return true;
95
+ }else{
96
+ return false;
97
+ }
98
+
99
+ }
100
+
101
+
102
+
103
  function wpsc_shipping_details(){
104
  global $wpsc_checkout;
105
  if(stristr($wpsc_checkout->checkout_item->unique_name, 'shipping') != false){
106
+ return ' wpsc_shipping_forms';
 
107
  }else{
108
+ return "";
109
  }
110
 
111
  }
486
  break;
487
 
488
  case "delivery_country":
489
+ if(wpsc_uses_shipping() && (get_option('use_billing_unless_is_shipping') != 1)) {
490
+ $country_name = $wpdb->get_var("SELECT `country` FROM `".WPSC_TABLE_CURRENCY_LIST."` WHERE `isocode`='".$_SESSION['wpsc_delivery_country']."' LIMIT 1");
491
+ $output = "<input title='".$this->checkout_item->unique_name."' type='hidden' id='".$this->form_element_id()."' class='shipping_country' name='collected_data[{$this->checkout_item->id}]' value='".$_SESSION['wpsc_delivery_country']."' /><span class='shipping_country_name'>".$country_name."</span> ";
492
+ } else if(get_option('use_billing_unless_is_shipping') == 1) {
493
+ $output = wpsc_shipping_country_list();
494
+ } else {
495
+ $checkoutfields = true;
496
+ //$output = wpsc_shipping_country_list($checkoutfields);
497
+ $output = wpsc_country_region_list($this->checkout_item->id , false, $_SESSION['wpsc_selected_country'], $_SESSION['wpsc_selected_region'], $this->form_element_id(), $checkoutfields);
498
  }
499
  break;
500
 
770
  $value = $form_data->value;
771
  }
772
  if($form_data->type != 'heading') {
773
+ // echo '<pre>'.print_r($form_data,true).'</pre>';
774
  if(is_array($value) &&($form_data->type == 'country' ||$form_data->type == 'delivery_country') ){
775
  $value = serialize($value);
776
  $prepared_query = $wpdb->query($wpdb->prepare("INSERT INTO `".WPSC_TABLE_SUBMITED_FORM_DATA."` ( `log_id` , `form_id` , `value` ) VALUES ( %d, %d, %s)", $purchase_id, $form_data->id, $value));
777
+ } else if(is_array($value)) {
778
+ // echo('<pre>'.print_r($value, true).'</pre>');
779
  foreach((array)$value as $v){
780
  if(is_array($v)){
781
  $options = array();
782
+ // exit('<pre>'.print_r($v, true).'</pre>');
783
  foreach($v as $option){
784
  if($option != '-1'){
785
  $options[] = $option;
791
  }
792
  $prepared_query = $wpdb->query($wpdb->prepare("INSERT INTO `".WPSC_TABLE_SUBMITED_FORM_DATA."` ( `log_id` , `form_id` , `value` ) VALUES ( %d, %d, %s)", $purchase_id, $form_data->id, $v));
793
  }
794
+ } else {
795
  $prepared_query = $wpdb->query($wpdb->prepare("INSERT INTO `".WPSC_TABLE_SUBMITED_FORM_DATA."` ( `log_id` , `form_id` , `value` ) VALUES ( %d, %d, %s)", $purchase_id, $form_data->id, $value));
796
 
797
  }
wpsc-includes/coupons.class.php CHANGED
@@ -244,6 +244,14 @@ class wpsc_coupons {
244
  return true;
245
  break;
246
 
 
 
 
 
 
 
 
 
247
  default:
248
  return false;
249
  }
@@ -288,6 +296,13 @@ class wpsc_coupons {
288
  if (!empty($match))
289
  return true;
290
  break;
 
 
 
 
 
 
 
291
  default:
292
  return false;
293
  }
244
  return true;
245
  break;
246
 
247
+ case 'category'://Checks if the product is in the category value
248
+ $category_flag = in_array( $c['value'] , $product_obj->category_id_list);
249
+ if ($category_flag == 1) {
250
+ $match = array($category_flag);
251
+ return true;
252
+ }
253
+ break;
254
+
255
  default:
256
  return false;
257
  }
296
  if (!empty($match))
297
  return true;
298
  break;
299
+
300
+ case 'category'://Checks if the product to see if its in the category
301
+ preg_match("/".$c['value']."$/",$product_obj->quantity, $match);
302
+ if (!empty($match))
303
+ return true;
304
+ break;
305
+
306
  default:
307
  return false;
308
  }
wpsc-includes/display.functions.php CHANGED
@@ -340,7 +340,7 @@ function wpsc_refresh_page_urls($content) {
340
  global $wpdb;
341
  $wpsc_pageurl_option['product_list_url'] = '[productspage]';
342
  $wpsc_pageurl_option['shopping_cart_url'] = '[shoppingcart]';
343
- $check_chekout = $wpdb->get_var("SELECT `guid` FROM `{$wpdb->posts}` WHERE `post_content` LIKE '%[checkout]%' AND `post_type` NOT IN('revision') LIMIT 1");
344
  if($check_chekout != null) {
345
  $wpsc_pageurl_option['checkout_url'] = '[checkout]';
346
  } else {
@@ -363,7 +363,7 @@ function wpsc_refresh_page_urls($content) {
363
  function wpsc_product_permalinks($rewrite_rules) {
364
  global $wpdb, $wp_rewrite;
365
 
366
- $page_details = $wpdb->get_row("SELECT * FROM `".$wpdb->posts."` WHERE `post_content` LIKE '%[productspage]%' AND `post_type` NOT IN('revision') LIMIT 1", ARRAY_A);
367
  $is_index = false;
368
  if((get_option('page_on_front') == $page_details['ID']) && (get_option('show_on_front') == 'page')) {
369
  $is_index = true;
340
  global $wpdb;
341
  $wpsc_pageurl_option['product_list_url'] = '[productspage]';
342
  $wpsc_pageurl_option['shopping_cart_url'] = '[shoppingcart]';
343
+ $check_chekout = $wpdb->get_var("SELECT `guid` FROM `{$wpdb->posts}` WHERE `post_content` LIKE '%[checkout]%' AND `post_type` NOT IN('revision','nav_menu_item') AND `post_type`='page' LIMIT 1");
344
  if($check_chekout != null) {
345
  $wpsc_pageurl_option['checkout_url'] = '[checkout]';
346
  } else {
363
  function wpsc_product_permalinks($rewrite_rules) {
364
  global $wpdb, $wp_rewrite;
365
 
366
+ $page_details = $wpdb->get_row("SELECT * FROM `".$wpdb->posts."` WHERE `post_content` LIKE '%[productspage]%' AND `post_type`= 'page' LIMIT 1", ARRAY_A);
367
  $is_index = false;
368
  if((get_option('page_on_front') == $page_details['ID']) && (get_option('show_on_front') == 'page')) {
369
  $is_index = true;
wpsc-includes/misc.functions.php CHANGED
@@ -762,15 +762,14 @@ function wpsc_readfile_chunked($filename, $retbytes = true) {
762
 
763
  function wpsc_clear_stock_claims( ) {
764
  global $wpdb;
765
-
766
  /// Delete the old claims on stock
767
  $old_claimed_stock_timestamp = mktime((date('H') - 1), date('i'), date('s'), date('m'), date('d'), date('Y'));
768
  $old_claimed_stock_datetime = date("Y-m-d H:i:s", $old_claimed_stock_timestamp);
769
  $wpdb->query("DELETE FROM `".WPSC_TABLE_CLAIMED_STOCK."` WHERE `last_activity` < '{$old_claimed_stock_datetime}' AND `cart_submitted` IN ('0')");
770
- // wp_mail('jghazally@gmail.com', 'test hourly cron1', 'wpsc_clear_stock_claims ran'."DELETE FROM `".WPSC_TABLE_CLAIMED_STOCK."` WHERE `last_activity` < '{$old_claimed_stock_datetime}' AND `cart_submitted` IN ('0')");
771
  }
772
  add_action('wpsc_daily_cron_tasks', 'wpsc_clear_stock_claims');
773
- add_action('wpsc_hourly_cron_tasks', 'wpsc_clear_stock_claims');
774
  /**
775
  * Description Check PHP version to Compare
776
  * @access public
762
 
763
  function wpsc_clear_stock_claims( ) {
764
  global $wpdb;
765
+ ///wp_mail('thomas.howard@gmail.com', 'test hourly cron', 'wpsc_clear_stock_claims ran');
766
  /// Delete the old claims on stock
767
  $old_claimed_stock_timestamp = mktime((date('H') - 1), date('i'), date('s'), date('m'), date('d'), date('Y'));
768
  $old_claimed_stock_datetime = date("Y-m-d H:i:s", $old_claimed_stock_timestamp);
769
  $wpdb->query("DELETE FROM `".WPSC_TABLE_CLAIMED_STOCK."` WHERE `last_activity` < '{$old_claimed_stock_datetime}' AND `cart_submitted` IN ('0')");
 
770
  }
771
  add_action('wpsc_daily_cron_tasks', 'wpsc_clear_stock_claims');
772
+ +add_action('wpsc_hourly_cron_tasks', 'wpsc_clear_stock_claims');
773
  /**
774
  * Description Check PHP version to Compare
775
  * @access public
wpsc-includes/processing.functions.php CHANGED
@@ -257,9 +257,9 @@ function nzshpcrt_currency_display($price_in, $tax_status, $nohtml = false, $id
257
  function admin_display_total_price($start_timestamp = '', $end_timestamp = '') {
258
  global $wpdb;
259
  if(($start_timestamp != '') && ($end_timestamp != '')) {
260
- $sql = "SELECT SUM(`totalprice`) FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `processed` > '1' AND `date` BETWEEN '$start_timestamp' AND '$end_timestamp'";
261
  } else {
262
- $sql = "SELECT SUM(`totalprice`) FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `processed` > '1' AND `date` != ''";
263
  }
264
  $total = $wpdb->get_var($sql);
265
  return $total;
257
  function admin_display_total_price($start_timestamp = '', $end_timestamp = '') {
258
  global $wpdb;
259
  if(($start_timestamp != '') && ($end_timestamp != '')) {
260
+ $sql = "SELECT SUM(`totalprice`) FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `processed` IN (2,3,4) AND `date` BETWEEN '$start_timestamp' AND '$end_timestamp'";
261
  } else {
262
+ $sql = "SELECT SUM(`totalprice`) FROM `".WPSC_TABLE_PURCHASE_LOGS."` WHERE `processed` IN (2,3,4) AND `date` != ''";
263
  }
264
  $total = $wpdb->get_var($sql);
265
  return $total;
wpsc-includes/purchaselogs.class.php CHANGED
@@ -336,7 +336,7 @@ function wpsc_purchaselog_details_price(){
336
  function wpsc_purchaselog_details_shipping(){
337
  global $purchlogitem;
338
  // exit('<pre>'.print_r($purchlogitem->purchitem, true).'</pre>');
339
- return $purchlogitem->purchitem->pnp;
340
  }
341
 
342
  function wpsc_purchaselog_details_tax(){
@@ -391,7 +391,7 @@ function wpsc_purchaselog_details_total(){
391
  global $purchlogitem;
392
  $total = 0;
393
  $total += ($purchlogitem->purchitem->price * $purchlogitem->purchitem->quantity);
394
- $total += ($purchlogitem->purchitem->pnp * $purchlogitem->purchitem->quantity);
395
  $total += ($purchlogitem->purchitem->tax_charged * $purchlogitem->purchitem->quantity);
396
  //$total -= $purchlogitem->extrainfo->discount_value;
397
  $purchlogitem->totalAmount += $total;
@@ -443,7 +443,7 @@ function wpsc_display_purchlog_shipping($numeric = false){
443
  $per_item_shipping += ($cart_item->pnp * $cart_item->quantity);
444
  }
445
  }
446
- $total_shipping = $per_item_shipping + $base_shipping;
447
  if($numeric == true) {
448
  return $total_shipping;
449
  } else {
336
  function wpsc_purchaselog_details_shipping(){
337
  global $purchlogitem;
338
  // exit('<pre>'.print_r($purchlogitem->purchitem, true).'</pre>');
339
+ return $purchlogitem->purchitem->pnp/$purchlogitem->purchitem->quantity;
340
  }
341
 
342
  function wpsc_purchaselog_details_tax(){
391
  global $purchlogitem;
392
  $total = 0;
393
  $total += ($purchlogitem->purchitem->price * $purchlogitem->purchitem->quantity);
394
+ $total += ($purchlogitem->purchitem->pnp);
395
  $total += ($purchlogitem->purchitem->tax_charged * $purchlogitem->purchitem->quantity);
396
  //$total -= $purchlogitem->extrainfo->discount_value;
397
  $purchlogitem->totalAmount += $total;
443
  $per_item_shipping += ($cart_item->pnp * $cart_item->quantity);
444
  }
445
  }
446
+ $total_shipping = $base_shipping;
447
  if($numeric == true) {
448
  return $total_shipping;
449
  } else {