WC Vendors - Version 1.8.1

Version Description

No Upgrade required at this time.

Download this release

Release Info

Developer digitalchild
Plugin Icon 128x128 WC Vendors
Version 1.8.1
Comparing to
See all releases

Code changes from version 1.8.0 to 1.8.1

changelog.txt CHANGED
@@ -1,5 +1,13 @@
1
  Changelog for WC Vendors
2
 
 
 
 
 
 
 
 
 
3
  Version 1.8.0
4
 
5
  * Fixed: Mark $0.00 commissions as paid instead of due #205
1
  Changelog for WC Vendors
2
 
3
+ Version 1.8.1
4
+
5
+ * Added: New options updated action for settings
6
+ * Added: New plugin activation hook for testing woocommerce active
7
+ * Added: vendor id to get shipping due filter
8
+ * Added: Warning on settings page if user registration in WooCommerce is not enabled
9
+ * Added: Russian Translations thanks Natalia
10
+
11
  Version 1.8.0
12
 
13
  * Fixed: Mark $0.00 commissions as paid instead of due #205
class-wc-vendors.php CHANGED
@@ -7,7 +7,7 @@
7
  * Author: WC Vendors
8
  * Author URI: http://wcvendors.com
9
  *
10
- * Version: 1.8.0
11
  * Requires at least: 4.0.0
12
  * Tested up to: 4.3.1
13
  *
@@ -22,6 +22,23 @@
22
  */
23
 
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  /**
26
  * Required functions
27
  */
@@ -79,7 +96,8 @@ if ( is_woocommerce_activated() ) {
79
  add_action( self::$id . '_options_updated', array( $this, 'option_updates' ), 10, 2 );
80
 
81
  // Start a PHP session, if not yet started
82
- if ( !session_id() ) session_start();
 
83
  }
84
 
85
 
@@ -88,7 +106,7 @@ if ( is_woocommerce_activated() ) {
88
  */
89
  public function invalid_wc_version()
90
  {
91
- echo '<div class="error"><p>' . __( '<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce v2.2.0.', 'wcvendors' ) . '</p></div>';
92
  }
93
 
94
 
@@ -104,10 +122,9 @@ if ( is_woocommerce_activated() ) {
104
  global $woocommerce;
105
 
106
  // WC 2.0.1 is required
107
- if ( version_compare( $woocommerce->version, '2.2', '<' ) ) {
108
  add_action( 'admin_notices', array( $this, 'invalid_wc_version' ) );
109
  deactivate_plugins( plugin_basename( __FILE__ ) );
110
-
111
  return false;
112
  }
113
 
@@ -261,6 +278,9 @@ if ( is_woocommerce_activated() ) {
261
  update_option( WC_Vendors::$id . '_flush_rules', true );
262
  }
263
  }
 
 
 
264
  }
265
 
266
 
7
  * Author: WC Vendors
8
  * Author URI: http://wcvendors.com
9
  *
10
+ * Version: 1.8.1
11
  * Requires at least: 4.0.0
12
  * Tested up to: 4.3.1
13
  *
22
  */
23
 
24
 
25
+ /**
26
+ * Plugin activation hook
27
+ */
28
+ function wcvendors_activate() {
29
+
30
+ /**
31
+ * Requires woocommerce to be installed and active
32
+ */
33
+ if ( !class_exists( 'WooCommerce' ) ) {
34
+ deactivate_plugins( plugin_basename( __FILE__ ) );
35
+ wp_die( __( 'WC Vendors requires WooCommerce to run. Please install WooCommerce and activate before attempting to activate again.', 'wcvendors' ) );
36
+ }
37
+ } // wcvendors_activate()
38
+
39
+ register_activation_hook( __FILE__, 'wcvendors_activate' );
40
+
41
+
42
  /**
43
  * Required functions
44
  */
96
  add_action( self::$id . '_options_updated', array( $this, 'option_updates' ), 10, 2 );
97
 
98
  // Start a PHP session, if not yet started
99
+ /* this line will initialize session to early and for each page
100
+ if ( !session_id() ) session_start();*/
101
  }
102
 
103
 
106
  */
107
  public function invalid_wc_version()
108
  {
109
+ echo '<div class="error"><p>' . __( '<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce v2.4.0.', 'wcvendors' ) . '</p></div>';
110
  }
111
 
112
 
122
  global $woocommerce;
123
 
124
  // WC 2.0.1 is required
125
+ if ( version_compare( $woocommerce->version, '2.4', '<' ) ) {
126
  add_action( 'admin_notices', array( $this, 'invalid_wc_version' ) );
127
  deactivate_plugins( plugin_basename( __FILE__ ) );
 
128
  return false;
129
  }
130
 
278
  update_option( WC_Vendors::$id . '_flush_rules', true );
279
  }
280
  }
281
+
282
+ do_action( 'wcvendors_option_updates', $options, $tabname );
283
+
284
  }
285
 
286
 
classes/admin/settings/sf-options.php CHANGED
@@ -16,6 +16,12 @@ $options[ ] = array(
16
  )
17
  );
18
 
 
 
 
 
 
 
19
  $options[ ] = array(
20
  'name' => __( 'Registration', 'wcvendors' ),
21
  'desc' => __( 'Allow users or guests to apply to become a vendor', 'wcvendors' ),
16
  )
17
  );
18
 
19
+ /* Customize registration message depending on if they have registration enabled on the my account page */
20
+ $registration_message = __( 'Allow users or guests to apply to become a vendor', 'wcvendors' );
21
+ if ( get_option( 'woocommerce_enable_myaccount_registration' ) === 'no' ) {
22
+ $registration_message = __( 'Allow users or guests to apply to become a vendor. <br><br><strong>WARNING:</strong> You MUST "<strong>Enable registration on the "My Account" page</strong>" in your <strong>WooCommerce > Settings > Accounts</strong> page for this option to work. Currently, you have registration disabled.', 'wcvendors' );
23
+ }
24
+
25
  $options[ ] = array(
26
  'name' => __( 'Registration', 'wcvendors' ),
27
  'desc' => __( 'Allow users or guests to apply to become a vendor', 'wcvendors' ),
classes/class-shipping.php CHANGED
@@ -92,7 +92,7 @@ class WCV_Shipping
92
  }
93
  }
94
 
95
- $shipping_costs = apply_filters( 'wcvendors_shipping_due', $shipping_costs, $order_id, $product );
96
 
97
  return $shipping_costs;
98
  }
92
  }
93
  }
94
 
95
+ $shipping_costs = apply_filters( 'wcvendors_shipping_due', $shipping_costs, $order_id, $product, $author );
96
 
97
  return $shipping_costs;
98
  }
classes/front/class-vendor-cart.php CHANGED
@@ -23,7 +23,7 @@ class WCV_Vendor_Cart
23
 
24
 
25
  /**
26
- *
27
  *
28
  * @param unknown $values
29
  * @param unknown $cart_item
@@ -47,7 +47,7 @@ class WCV_Vendor_Cart
47
 
48
 
49
  /**
50
- *
51
  */
52
  public static function sold_by_meta()
53
  {
23
 
24
 
25
  /**
26
+ * Sold by in cart item
27
  *
28
  * @param unknown $values
29
  * @param unknown $cart_item
47
 
48
 
49
  /**
50
+ * Single product meta
51
  */
52
  public static function sold_by_meta()
53
  {
classes/front/dashboard/class-vendor-dashboard.php CHANGED
@@ -144,9 +144,13 @@ class WCV_Vendor_Dashboard
144
  $vendor_dashboard_page = WC_Vendors::$pv_options->get_option( 'vendor_dashboard_page' );
145
  $shop_settings_page = WC_Vendors::$pv_options->get_option( 'shop_settings_page' );
146
 
147
- if ( ( is_page( $vendor_dashboard_page ) || is_page( $shop_settings_page ) ) && !is_user_logged_in() ) {
148
- wp_redirect( get_permalink( woocommerce_get_page_id( 'myaccount' ) ) );
149
- exit;
 
 
 
 
150
  }
151
  }
152
 
144
  $vendor_dashboard_page = WC_Vendors::$pv_options->get_option( 'vendor_dashboard_page' );
145
  $shop_settings_page = WC_Vendors::$pv_options->get_option( 'shop_settings_page' );
146
 
147
+ if ( is_page( $vendor_dashboard_page ) || is_page( $shop_settings_page ) ) {
148
+ if ( !is_user_logged_in() ) {
149
+ wp_redirect( get_permalink( woocommerce_get_page_id( 'myaccount' ) ) );
150
+ exit;
151
+ }
152
+ // user is logged, start session only if it's vendor dashboard
153
+ if ( !session_id() ) session_start();
154
  }
155
  }
156
 
languages/default.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WC Vendors\n"
5
- "POT-Creation-Date: 2015-08-11 08:53+1000\n"
6
  "PO-Revision-Date: 2015-04-24 09:29+1000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: WC Vendors <support@wcvendors.com>\n"
@@ -10,7 +10,7 @@ msgstr ""
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.4\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -18,53 +18,59 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
21
- #: ../class-wc-vendors.php:61 ../classes/admin/class-admin-reports.php:41
 
 
 
 
 
 
22
  #: ../classes/admin/class-admin-users.php:392
23
  msgid "WC Vendors"
24
  msgstr ""
25
 
26
- #: ../class-wc-vendors.php:91
27
  msgid ""
28
  "<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce "
29
- "v2.2.0."
30
  msgstr ""
31
 
32
- #: ../class-wc-vendors.php:233 ../classes/admin/settings/sf-options.php:161
33
  msgid "Capabilities"
34
  msgstr ""
35
 
36
- #: ../class-wc-vendors.php:256 ../classes/admin/class-admin-page.php:253
37
  #: ../classes/admin/class-admin-reports.php:169
38
- #: ../classes/admin/class-product-meta.php:44
39
- #: ../classes/admin/class-product-meta.php:185
40
- #: ../classes/admin/class-product-meta.php:221 ../classes/class-install.php:66
41
  msgid "Vendor"
42
  msgstr ""
43
 
44
- #: ../class-wc-vendors.php:258 ../classes/admin/settings/sf-options.php:4
45
  msgid "General"
46
  msgstr ""
47
 
48
- #: ../class-wc-vendors.php:293
49
  msgid "Documentation/KB"
50
  msgstr ""
51
 
52
- #: ../class-wc-vendors.php:294
53
  msgid "Help Forums"
54
  msgstr ""
55
 
56
- #: ../class-wc-vendors.php:295
57
  msgid "Paid Support"
58
  msgstr ""
59
 
60
- #: ../class-wc-vendors.php:317
61
  #, php-format
62
  msgid ""
63
  "WC Vendors requires the Vendor shop page value be set <a href=\"%s\">click "
64
  "here to set it.</a> | <a href=\"%s\">Hide Notice</a>"
65
  msgstr ""
66
 
67
- #: ../class-wc-vendors.php:325
68
  #, php-format
69
  msgid ""
70
  "You must save your permalinks once you have modified your vendor page. <a "
@@ -81,8 +87,8 @@ msgstr ""
81
 
82
  #: ../classes/admin/class-admin-page.php:72
83
  #: ../classes/admin/class-admin-page.php:132
84
- #: ../classes/admin/class-product-meta.php:149
85
- #: ../classes/admin/class-product-meta.php:165
86
  #: ../templates/dashboard/reports.php:19
87
  msgid "Commission"
88
  msgstr ""
@@ -263,8 +269,8 @@ msgid "Tax"
263
  msgstr ""
264
 
265
  #: ../classes/admin/class-admin-reports.php:341
266
- #: ../classes/admin/settings/sf-options.php:46
267
- #: ../classes/admin/settings/sf-options.php:105
268
  #: ../templates/dashboard/orders.php:34 ../templates/orders/orders.php:115
269
  msgid "Shipping"
270
  msgstr ""
@@ -302,7 +308,7 @@ msgid "Commission rate"
302
  msgstr ""
303
 
304
  #: ../classes/admin/class-admin-users.php:424
305
- #: ../classes/admin/class-product-meta.php:172
306
  msgid "Leave blank for default"
307
  msgstr ""
308
 
@@ -334,30 +340,30 @@ msgid "Shop description"
334
  msgstr ""
335
 
336
  #: ../classes/admin/class-vendor-admin-dashboard.php:20
337
- #: ../classes/class-install.php:166
338
  msgid "Shop Settings"
339
  msgstr ""
340
 
341
  #: ../classes/admin/class-vendor-admin-dashboard.php:21
342
  #: ../classes/admin/class-vendor-admin-dashboard.php:146
343
- #: ../classes/admin/settings/sf-options.php:165
344
- #: ../classes/class-install.php:165 ../templates/dashboard/orders.php:24
345
  msgid "Orders"
346
  msgstr ""
347
 
348
  #: ../classes/admin/class-vendor-admin-dashboard.php:58
349
- #: ../classes/front/dashboard/class-vendor-dashboard.php:104
350
  msgid "Your PayPal address is not a valid email address."
351
  msgstr ""
352
 
353
  #: ../classes/admin/class-vendor-admin-dashboard.php:67
354
- #: ../classes/front/dashboard/class-vendor-dashboard.php:113
355
  msgid "That shop name is already taken. Your shop name must be unique."
356
  msgstr ""
357
 
358
  #: ../classes/admin/class-vendor-admin-dashboard.php:87
359
  #: ../classes/admin/settings/classes/sf-class-settings.php:366
360
- #: ../classes/front/dashboard/class-vendor-dashboard.php:131
361
  msgid "Settings saved."
362
  msgstr ""
363
 
@@ -366,8 +372,8 @@ msgid "Customer"
366
  msgstr ""
367
 
368
  #: ../classes/admin/class-vendor-admin-dashboard.php:285
369
- #: ../classes/admin/settings/sf-options.php:96
370
- #: ../classes/admin/settings/sf-options.php:223
371
  msgid "Products"
372
  msgstr ""
373
 
@@ -376,7 +382,7 @@ msgid "Shipped"
376
  msgstr ""
377
 
378
  #: ../classes/admin/class-vendor-admin-dashboard.php:324
379
- #: ../templates/dashboard/orders.php:76
380
  msgid "Mark shipped"
381
  msgstr ""
382
 
@@ -467,7 +473,7 @@ msgstr ""
467
  #: ../classes/admin/emails/class-wc-approve-vendor.php:123
468
  #: ../classes/admin/emails/class-wc-notify-admin.php:134
469
  #: ../classes/admin/emails/class-wc-notify-shipped.php:163
470
- #: ../classes/admin/emails/class-wc-notify-vendor.php:247
471
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:62
472
  msgid "Enable/Disable"
473
  msgstr ""
@@ -475,7 +481,7 @@ msgstr ""
475
  #: ../classes/admin/emails/class-wc-approve-vendor.php:125
476
  #: ../classes/admin/emails/class-wc-notify-admin.php:136
477
  #: ../classes/admin/emails/class-wc-notify-shipped.php:165
478
- #: ../classes/admin/emails/class-wc-notify-vendor.php:249
479
  msgid "Enable this email notification"
480
  msgstr ""
481
 
@@ -495,14 +501,14 @@ msgstr ""
495
  #: ../classes/admin/emails/class-wc-approve-vendor.php:136
496
  #: ../classes/admin/emails/class-wc-notify-admin.php:147
497
  #: ../classes/admin/emails/class-wc-notify-shipped.php:169
498
- #: ../classes/admin/emails/class-wc-notify-vendor.php:253
499
  msgid "Subject"
500
  msgstr ""
501
 
502
  #: ../classes/admin/emails/class-wc-approve-vendor.php:138
503
  #: ../classes/admin/emails/class-wc-notify-admin.php:149
504
  #: ../classes/admin/emails/class-wc-notify-shipped.php:171
505
- #: ../classes/admin/emails/class-wc-notify-vendor.php:255
506
  #, php-format
507
  msgid ""
508
  "This controls the email subject line. Leave blank to use the default "
@@ -512,14 +518,14 @@ msgstr ""
512
  #: ../classes/admin/emails/class-wc-approve-vendor.php:143
513
  #: ../classes/admin/emails/class-wc-notify-admin.php:154
514
  #: ../classes/admin/emails/class-wc-notify-shipped.php:176
515
- #: ../classes/admin/emails/class-wc-notify-vendor.php:260
516
  msgid "Email Heading"
517
  msgstr ""
518
 
519
  #: ../classes/admin/emails/class-wc-approve-vendor.php:145
520
  #: ../classes/admin/emails/class-wc-notify-admin.php:156
521
  #: ../classes/admin/emails/class-wc-notify-shipped.php:178
522
- #: ../classes/admin/emails/class-wc-notify-vendor.php:262
523
  #, php-format
524
  msgid ""
525
  "This controls the main heading contained within the email notification. "
@@ -529,35 +535,35 @@ msgstr ""
529
  #: ../classes/admin/emails/class-wc-approve-vendor.php:150
530
  #: ../classes/admin/emails/class-wc-notify-admin.php:161
531
  #: ../classes/admin/emails/class-wc-notify-shipped.php:183
532
- #: ../classes/admin/emails/class-wc-notify-vendor.php:267
533
  msgid "Email type"
534
  msgstr ""
535
 
536
  #: ../classes/admin/emails/class-wc-approve-vendor.php:152
537
  #: ../classes/admin/emails/class-wc-notify-admin.php:163
538
  #: ../classes/admin/emails/class-wc-notify-shipped.php:185
539
- #: ../classes/admin/emails/class-wc-notify-vendor.php:269
540
  msgid "Choose which format of email to send."
541
  msgstr ""
542
 
543
  #: ../classes/admin/emails/class-wc-approve-vendor.php:156
544
  #: ../classes/admin/emails/class-wc-notify-admin.php:167
545
  #: ../classes/admin/emails/class-wc-notify-shipped.php:189
546
- #: ../classes/admin/emails/class-wc-notify-vendor.php:273
547
  msgid "Plain text"
548
  msgstr ""
549
 
550
  #: ../classes/admin/emails/class-wc-approve-vendor.php:157
551
  #: ../classes/admin/emails/class-wc-notify-admin.php:168
552
  #: ../classes/admin/emails/class-wc-notify-shipped.php:190
553
- #: ../classes/admin/emails/class-wc-notify-vendor.php:274
554
  msgid "HTML"
555
  msgstr ""
556
 
557
  #: ../classes/admin/emails/class-wc-approve-vendor.php:158
558
  #: ../classes/admin/emails/class-wc-notify-admin.php:169
559
  #: ../classes/admin/emails/class-wc-notify-shipped.php:191
560
- #: ../classes/admin/emails/class-wc-notify-vendor.php:275
561
  msgid "Multipart"
562
  msgstr ""
563
 
@@ -665,444 +671,453 @@ msgid ""
665
  msgstr ""
666
 
667
  #: ../classes/admin/settings/sf-options.php:20
668
- msgid "Registration"
669
- msgstr ""
670
-
671
- #: ../classes/admin/settings/sf-options.php:21
672
  msgid "Allow users or guests to apply to become a vendor"
673
  msgstr ""
674
 
675
  #: ../classes/admin/settings/sf-options.php:22
676
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
677
  "This will show a checkbox on the My Account page's registration form asking "
678
  "if the user would like to apply to be a vendor. Also, on the Vendor "
679
  "Dashboard, users can still apply to become a vendor even if this is disabled."
680
  msgstr ""
681
 
682
- #: ../classes/admin/settings/sf-options.php:29
683
  msgid "Approve vendor applications manually"
684
  msgstr ""
685
 
686
- #: ../classes/admin/settings/sf-options.php:30
687
  msgid ""
688
  "With this unchecked, all vendor applications are automatically accepted. "
689
  "Otherwise, you must approve each manually."
690
  msgstr ""
691
 
692
- #: ../classes/admin/settings/sf-options.php:37
693
- #: ../classes/admin/settings/sf-options.php:144
694
  msgid "Taxes"
695
  msgstr ""
696
 
697
- #: ../classes/admin/settings/sf-options.php:38
698
  msgid "Give vendors any tax collected per-product"
699
  msgstr ""
700
 
701
- #: ../classes/admin/settings/sf-options.php:39
702
  msgid "The tax collected on a vendor's product will be given in its entirety"
703
  msgstr ""
704
 
705
- #: ../classes/admin/settings/sf-options.php:47
706
  msgid "Give vendors any shipping collected per-product"
707
  msgstr ""
708
 
709
- #: ../classes/admin/settings/sf-options.php:48
710
  msgid ""
711
  "The shipping collected on a vendor's product will be given in its entirety"
712
  msgstr ""
713
 
714
- #: ../classes/admin/settings/sf-options.php:54
715
  msgid "Shop options"
716
  msgstr ""
717
 
718
- #: ../classes/admin/settings/sf-options.php:57
719
  msgid "Shop HTML"
720
  msgstr ""
721
 
722
- #: ../classes/admin/settings/sf-options.php:58
723
  msgid ""
724
  "Enable HTML for a vendor's shop description by default. You can enable or "
725
  "disable this per vendor by editing the vendors username."
726
  msgstr ""
727
 
728
- #: ../classes/admin/settings/sf-options.php:65
729
  msgid "Vendor shop page"
730
  msgstr ""
731
 
732
- #: ../classes/admin/settings/sf-options.php:66
733
  msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
734
  msgstr ""
735
 
736
- #: ../classes/admin/settings/sf-options.php:73
737
  msgid "Shop Headers"
738
  msgstr ""
739
 
740
- #: ../classes/admin/settings/sf-options.php:74
741
  msgid "Enable vendor shop headers"
742
  msgstr ""
743
 
744
- #: ../classes/admin/settings/sf-options.php:75
745
  msgid ""
746
  "This will override the HTML Shop description output on product-archive "
747
  "pages. In order to customize the shop headers visit wcvendors.com and read "
748
  "the article in the Knowledgebase titled Changing the Vendor Templates."
749
  msgstr ""
750
 
751
- #: ../classes/admin/settings/sf-options.php:82
752
  msgid "Vendor Display Name"
753
  msgstr ""
754
 
755
- #: ../classes/admin/settings/sf-options.php:83
756
  msgid ""
757
  "Select what will be displayed for the sold by text throughout the store."
758
  msgstr ""
759
 
760
- #: ../classes/admin/settings/sf-options.php:87
761
  msgid "Display Name"
762
  msgstr ""
763
 
764
- #: ../classes/admin/settings/sf-options.php:88
765
  #: ../classes/admin/views/html-vendor-settings-page.php:22
766
  #: ../templates/dashboard/settings/shop-name.php:2
767
  msgid "Shop Name"
768
  msgstr ""
769
 
770
- #: ../classes/admin/settings/sf-options.php:89
771
  msgid "User Login"
772
  msgstr ""
773
 
774
- #: ../classes/admin/settings/sf-options.php:90
775
  msgid "User Email"
776
  msgstr ""
777
 
778
- #: ../classes/admin/settings/sf-options.php:97
779
  msgid "Product Add Page"
780
  msgstr ""
781
 
782
- #: ../classes/admin/settings/sf-options.php:97
783
  msgid "Configure what to hide from all vendors when adding a product"
784
  msgstr ""
785
 
786
- #: ../classes/admin/settings/sf-options.php:100
787
  msgid "Left side panel"
788
  msgstr ""
789
 
790
- #: ../classes/admin/settings/sf-options.php:101
791
  msgid ""
792
  "CHECKING these boxes will HIDE these areas of the add product page for "
793
  "vendors"
794
  msgstr ""
795
 
796
- #: ../classes/admin/settings/sf-options.php:104
797
  msgid "Inventory"
798
  msgstr ""
799
 
800
- #: ../classes/admin/settings/sf-options.php:106
801
  msgid "Linked Products"
802
  msgstr ""
803
 
804
- #: ../classes/admin/settings/sf-options.php:107
805
  msgid "Attributes"
806
  msgstr ""
807
 
808
- #: ../classes/admin/settings/sf-options.php:108
809
  msgid "Advanced"
810
  msgstr ""
811
 
812
- #: ../classes/admin/settings/sf-options.php:115
813
  msgid "Types"
814
  msgstr ""
815
 
816
- #: ../classes/admin/settings/sf-options.php:116
817
  msgid "CHECKING these boxes will HIDE these product types from the vendor"
818
  msgstr ""
819
 
820
- #: ../classes/admin/settings/sf-options.php:119
821
  msgid "Simple"
822
  msgstr ""
823
 
824
- #: ../classes/admin/settings/sf-options.php:120
825
  msgid "Variable"
826
  msgstr ""
827
 
828
- #: ../classes/admin/settings/sf-options.php:121
829
  msgid "Grouped"
830
  msgstr ""
831
 
832
- #: ../classes/admin/settings/sf-options.php:122
833
  msgid "External / affiliate"
834
  msgstr ""
835
 
836
- #: ../classes/admin/settings/sf-options.php:129
837
  msgid "Type options"
838
  msgstr ""
839
 
840
- #: ../classes/admin/settings/sf-options.php:130
841
  msgid "CHECKING these boxes will HIDE these product options from the vendor"
842
  msgstr ""
843
 
844
- #: ../classes/admin/settings/sf-options.php:133
845
  msgid "Virtual"
846
  msgstr ""
847
 
848
- #: ../classes/admin/settings/sf-options.php:134
849
  msgid "Downloadable"
850
  msgstr ""
851
 
852
- #: ../classes/admin/settings/sf-options.php:141
853
  msgid "Miscellaneous"
854
  msgstr ""
855
 
856
- #: ../classes/admin/settings/sf-options.php:145
857
  msgid "SKU"
858
  msgstr ""
859
 
860
- #: ../classes/admin/settings/sf-options.php:146
861
  msgid "Featured"
862
  msgstr ""
863
 
864
- #: ../classes/admin/settings/sf-options.php:147
865
  msgid "Duplicate Product"
866
  msgstr ""
867
 
868
- #: ../classes/admin/settings/sf-options.php:154
869
  msgid "Stylesheet"
870
  msgstr ""
871
 
872
- #: ../classes/admin/settings/sf-options.php:155
873
  msgid ""
874
  "You can add CSS in this textarea, which will be loaded on the product add/"
875
  "edit page for vendors."
876
  msgstr ""
877
 
878
- #: ../classes/admin/settings/sf-options.php:162
879
  msgid "Permissions"
880
  msgstr ""
881
 
882
- #: ../classes/admin/settings/sf-options.php:162
883
  msgid "General permissions used around the shop"
884
  msgstr ""
885
 
886
- #: ../classes/admin/settings/sf-options.php:166
887
  msgid "View orders"
888
  msgstr ""
889
 
890
- #: ../classes/admin/settings/sf-options.php:167
891
  msgid "Show customer details such as email, address, name, etc, for each order"
892
  msgstr ""
893
 
894
- #: ../classes/admin/settings/sf-options.php:174
895
  msgid "View comments"
896
  msgstr ""
897
 
898
- #: ../classes/admin/settings/sf-options.php:175
899
  msgid "View all vendor comments for an order on the frontend"
900
  msgstr ""
901
 
902
- #: ../classes/admin/settings/sf-options.php:182
903
  msgid "Submit comments"
904
  msgstr ""
905
 
906
- #: ../classes/admin/settings/sf-options.php:183
907
  msgid ""
908
  "Submit comments for an order on the frontend. Eg, tracking ID for a product"
909
  msgstr ""
910
 
911
- #: ../classes/admin/settings/sf-options.php:190
912
  msgid "View email addresses"
913
  msgstr ""
914
 
915
- #: ../classes/admin/settings/sf-options.php:191
916
  msgid ""
917
  "While viewing order details on the frontend, you can disable or enable email "
918
  "addresses"
919
  msgstr ""
920
 
921
- #: ../classes/admin/settings/sf-options.php:198
922
  msgid "Export a CSV file of orders for a product"
923
  msgstr ""
924
 
925
- #: ../classes/admin/settings/sf-options.php:199
926
  msgid "Vendors could export orders for a product on the frontend"
927
  msgstr ""
928
 
929
- #: ../classes/admin/settings/sf-options.php:206
930
  msgid "Reports"
931
  msgstr ""
932
 
933
- #: ../classes/admin/settings/sf-options.php:207
934
  msgid ""
935
  "<strike>View backend sales reports</strike>. <strong>Depreciated</strong>"
936
  msgstr ""
937
 
938
- #: ../classes/admin/settings/sf-options.php:208
939
  msgid ""
940
  "This option has been removed and will no longer function. It will be "
941
  "completely removed in future versions. Use front end reports if you require "
942
  "them. "
943
  msgstr ""
944
 
945
- #: ../classes/admin/settings/sf-options.php:215
946
  msgid "View Frontend sales reports"
947
  msgstr ""
948
 
949
- #: ../classes/admin/settings/sf-options.php:216
950
  msgid ""
951
  "Sales table on the frontend on the My Account page. The table will only "
952
  "display sales data that pertain to their products"
953
  msgstr ""
954
 
955
- #: ../classes/admin/settings/sf-options.php:224
956
  msgid "Submit products"
957
  msgstr ""
958
 
959
- #: ../classes/admin/settings/sf-options.php:225
960
  msgid ""
961
  "Vendors could submit a product through the backend, and an admin would "
962
  "approve or deny it"
963
  msgstr ""
964
 
965
- #: ../classes/admin/settings/sf-options.php:232
966
  msgid "Edit live products"
967
  msgstr ""
968
 
969
- #: ../classes/admin/settings/sf-options.php:233
970
  msgid ""
971
  "Vendors could edit an approved product after it has already gone live. There "
972
  "is no approval or review after editing a live product. This could be "
973
  "dangerous with malicious vendors, so take caution."
974
  msgstr ""
975
 
976
- #: ../classes/admin/settings/sf-options.php:240
977
  msgid "Submit products live without requiring approval"
978
  msgstr ""
979
 
980
- #: ../classes/admin/settings/sf-options.php:241
981
  msgid ""
982
  "Vendors can submit products without review or approval from a shop admin. "
983
  "This could be dangerous with malicious vendors, so take caution."
984
  msgstr ""
985
 
986
- #: ../classes/admin/settings/sf-options.php:247
987
  msgid "Pages"
988
  msgstr ""
989
 
990
- #: ../classes/admin/settings/sf-options.php:248
991
  msgid "Page configuration"
992
  msgstr ""
993
 
994
- #: ../classes/admin/settings/sf-options.php:251
995
  msgid "Vendor dashboard"
996
  msgstr ""
997
 
998
- #: ../classes/admin/settings/sf-options.php:252
999
  msgid ""
1000
  "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
1001
  "code><br/>By default, My Account > Vendor Dashboard should have the "
1002
  "shortcode."
1003
  msgstr ""
1004
 
1005
- #: ../classes/admin/settings/sf-options.php:259
1006
  msgid "Shop settings"
1007
  msgstr ""
1008
 
1009
- #: ../classes/admin/settings/sf-options.php:260
1010
  msgid ""
1011
  "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
1012
  ">These are the shop settings a vendor can configure."
1013
  msgstr ""
1014
 
1015
- #: ../classes/admin/settings/sf-options.php:267
1016
  msgid "Orders page"
1017
  msgstr ""
1018
 
1019
- #: ../classes/admin/settings/sf-options.php:268
1020
  msgid ""
1021
  "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
1022
  "default, My Account > Orders should have the shortcode."
1023
  msgstr ""
1024
 
1025
- #: ../classes/admin/settings/sf-options.php:275
1026
  msgid "Vendor terms"
1027
  msgstr ""
1028
 
1029
- #: ../classes/admin/settings/sf-options.php:276
1030
  msgid ""
1031
  "These terms are shown to a user when submitting an application to become a "
1032
  "vendor.<br/>If left blank, no terms will be shown to the applicant."
1033
  msgstr ""
1034
 
1035
- #: ../classes/admin/settings/sf-options.php:283
1036
  msgid "payments"
1037
  msgstr ""
1038
 
1039
- #: ../classes/admin/settings/sf-options.php:294
1040
  msgid "Payments"
1041
  msgstr ""
1042
 
1043
- #: ../classes/admin/settings/sf-options.php:296
1044
  msgid "User payments"
1045
  msgstr ""
1046
 
1047
- #: ../classes/admin/settings/sf-options.php:297
1048
  #, php-format
1049
  msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
1050
  msgstr ""
1051
 
1052
- #: ../classes/admin/settings/sf-options.php:298
1053
  #, php-format
1054
  msgid ""
1055
  "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
1056
  "\">here</a>."
1057
  msgstr ""
1058
 
1059
- #: ../classes/admin/settings/sf-options.php:302
1060
  msgid "Instant pay"
1061
  msgstr ""
1062
 
1063
- #: ../classes/admin/settings/sf-options.php:303
1064
  msgid "Instantly pay vendors their commission when an order is made"
1065
  msgstr ""
1066
 
1067
- #: ../classes/admin/settings/sf-options.php:304
1068
  msgid ""
1069
  "For this to work, customers must checkout with the PayPal Adaptive Payments "
1070
  "gateway. Using any other gateways will not pay vendors instantly"
1071
  msgstr ""
1072
 
1073
- #: ../classes/admin/settings/sf-options.php:311
1074
  msgid "Payment schedule"
1075
  msgstr ""
1076
 
1077
- #: ../classes/admin/settings/sf-options.php:312
1078
  msgid "Note: Schedule will only work if instant pay is unchecked"
1079
  msgstr ""
1080
 
1081
- #: ../classes/admin/settings/sf-options.php:317
1082
  msgid "Weekly"
1083
  msgstr ""
1084
 
1085
- #: ../classes/admin/settings/sf-options.php:318
1086
  msgid "Biweekly"
1087
  msgstr ""
1088
 
1089
- #: ../classes/admin/settings/sf-options.php:319
1090
  msgid "Monthly"
1091
  msgstr ""
1092
 
1093
- #: ../classes/admin/settings/sf-options.php:320
1094
  msgid "Manual"
1095
  msgstr ""
1096
 
1097
- #: ../classes/admin/settings/sf-options.php:321
1098
  msgid "Now"
1099
  msgstr ""
1100
 
1101
- #: ../classes/admin/settings/sf-options.php:326
1102
  msgid "Email notification"
1103
  msgstr ""
1104
 
1105
- #: ../classes/admin/settings/sf-options.php:327
1106
  msgid ""
1107
  "Send the WooCommerce admin an email each time a payment has been made via "
1108
  "the payment schedule options above"
@@ -1160,11 +1175,11 @@ msgstr ""
1160
  msgid "Once a month"
1161
  msgstr ""
1162
 
1163
- #: ../classes/class-install.php:59 ../classes/class-install.php:213
1164
  msgid "Pending Vendor"
1165
  msgstr ""
1166
 
1167
- #: ../classes/class-install.php:164
1168
  msgid "Vendor Dashboard"
1169
  msgstr ""
1170
 
@@ -1181,12 +1196,12 @@ msgstr ""
1181
  msgid " has marked as shipped. "
1182
  msgstr ""
1183
 
1184
- #: ../classes/front/dashboard/class-vendor-dashboard.php:75
1185
- #: ../classes/front/dashboard/class-vendor-dashboard.php:76
1186
  msgid "Tracking number"
1187
  msgstr ""
1188
 
1189
- #: ../classes/front/dashboard/class-vendor-dashboard.php:78
1190
  msgid "Success. Your tracking number has been updated."
1191
  msgstr ""
1192
 
@@ -1262,8 +1277,8 @@ msgstr ""
1262
  msgid "Your application has been submitted."
1263
  msgstr ""
1264
 
1265
- #: ../classes/front/signup/class-vendor-signup.php:129
1266
- #: ../classes/front/signup/class-vendor-signup.php:138
1267
  msgid "You must accept the terms and conditions to become a vendor."
1268
  msgstr ""
1269
 
@@ -1509,11 +1524,27 @@ msgstr ""
1509
  msgid "Submit"
1510
  msgstr ""
1511
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1512
  #: ../templates/dashboard/orders.php:7 ../templates/dashboard/orders.php:10
1513
  msgid "Hide items"
1514
  msgstr ""
1515
 
1516
- #: ../templates/dashboard/orders.php:8 ../templates/dashboard/orders.php:75
1517
  msgid "View items"
1518
  msgstr ""
1519
 
@@ -1521,15 +1552,11 @@ msgstr ""
1521
  msgid "Links"
1522
  msgstr ""
1523
 
1524
- #: ../templates/dashboard/orders.php:76
1525
- msgid "Unmark shipped"
1526
- msgstr ""
1527
-
1528
- #: ../templates/dashboard/orders.php:77
1529
  msgid "Tracking"
1530
  msgstr ""
1531
 
1532
- #: ../templates/dashboard/orders.php:136
1533
  msgid "You have no orders during this period."
1534
  msgstr ""
1535
 
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WC Vendors\n"
5
+ "POT-Creation-Date: 2015-11-18 07:14+1000\n"
6
  "PO-Revision-Date: 2015-04-24 09:29+1000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: WC Vendors <support@wcvendors.com>\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.5\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
21
+ #: ../class-wc-vendors.php:35
22
+ msgid ""
23
+ "WC Vendors requires WooCommerce to run. Please install WooCommerce and "
24
+ "activate before attempting to activate again."
25
+ msgstr ""
26
+
27
+ #: ../class-wc-vendors.php:81 ../classes/admin/class-admin-reports.php:41
28
  #: ../classes/admin/class-admin-users.php:392
29
  msgid "WC Vendors"
30
  msgstr ""
31
 
32
+ #: ../class-wc-vendors.php:108
33
  msgid ""
34
  "<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce "
35
+ "v2.4.0."
36
  msgstr ""
37
 
38
+ #: ../class-wc-vendors.php:247 ../classes/admin/settings/sf-options.php:167
39
  msgid "Capabilities"
40
  msgstr ""
41
 
42
+ #: ../class-wc-vendors.php:270 ../classes/admin/class-admin-page.php:253
43
  #: ../classes/admin/class-admin-reports.php:169
44
+ #: ../classes/admin/class-product-meta.php:46
45
+ #: ../classes/admin/class-product-meta.php:187
46
+ #: ../classes/admin/class-product-meta.php:223 ../classes/class-install.php:66
47
  msgid "Vendor"
48
  msgstr ""
49
 
50
+ #: ../class-wc-vendors.php:272 ../classes/admin/settings/sf-options.php:4
51
  msgid "General"
52
  msgstr ""
53
 
54
+ #: ../class-wc-vendors.php:310
55
  msgid "Documentation/KB"
56
  msgstr ""
57
 
58
+ #: ../class-wc-vendors.php:311
59
  msgid "Help Forums"
60
  msgstr ""
61
 
62
+ #: ../class-wc-vendors.php:312
63
  msgid "Paid Support"
64
  msgstr ""
65
 
66
+ #: ../class-wc-vendors.php:334
67
  #, php-format
68
  msgid ""
69
  "WC Vendors requires the Vendor shop page value be set <a href=\"%s\">click "
70
  "here to set it.</a> | <a href=\"%s\">Hide Notice</a>"
71
  msgstr ""
72
 
73
+ #: ../class-wc-vendors.php:342
74
  #, php-format
75
  msgid ""
76
  "You must save your permalinks once you have modified your vendor page. <a "
87
 
88
  #: ../classes/admin/class-admin-page.php:72
89
  #: ../classes/admin/class-admin-page.php:132
90
+ #: ../classes/admin/class-product-meta.php:151
91
+ #: ../classes/admin/class-product-meta.php:167
92
  #: ../templates/dashboard/reports.php:19
93
  msgid "Commission"
94
  msgstr ""
269
  msgstr ""
270
 
271
  #: ../classes/admin/class-admin-reports.php:341
272
+ #: ../classes/admin/settings/sf-options.php:52
273
+ #: ../classes/admin/settings/sf-options.php:111
274
  #: ../templates/dashboard/orders.php:34 ../templates/orders/orders.php:115
275
  msgid "Shipping"
276
  msgstr ""
308
  msgstr ""
309
 
310
  #: ../classes/admin/class-admin-users.php:424
311
+ #: ../classes/admin/class-product-meta.php:174
312
  msgid "Leave blank for default"
313
  msgstr ""
314
 
340
  msgstr ""
341
 
342
  #: ../classes/admin/class-vendor-admin-dashboard.php:20
343
+ #: ../classes/class-install.php:167
344
  msgid "Shop Settings"
345
  msgstr ""
346
 
347
  #: ../classes/admin/class-vendor-admin-dashboard.php:21
348
  #: ../classes/admin/class-vendor-admin-dashboard.php:146
349
+ #: ../classes/admin/settings/sf-options.php:171
350
+ #: ../classes/class-install.php:166 ../templates/dashboard/orders.php:24
351
  msgid "Orders"
352
  msgstr ""
353
 
354
  #: ../classes/admin/class-vendor-admin-dashboard.php:58
355
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:106
356
  msgid "Your PayPal address is not a valid email address."
357
  msgstr ""
358
 
359
  #: ../classes/admin/class-vendor-admin-dashboard.php:67
360
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:115
361
  msgid "That shop name is already taken. Your shop name must be unique."
362
  msgstr ""
363
 
364
  #: ../classes/admin/class-vendor-admin-dashboard.php:87
365
  #: ../classes/admin/settings/classes/sf-class-settings.php:366
366
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:133
367
  msgid "Settings saved."
368
  msgstr ""
369
 
372
  msgstr ""
373
 
374
  #: ../classes/admin/class-vendor-admin-dashboard.php:285
375
+ #: ../classes/admin/settings/sf-options.php:102
376
+ #: ../classes/admin/settings/sf-options.php:229
377
  msgid "Products"
378
  msgstr ""
379
 
382
  msgstr ""
383
 
384
  #: ../classes/admin/class-vendor-admin-dashboard.php:324
385
+ #: ../templates/dashboard/orders.php:85
386
  msgid "Mark shipped"
387
  msgstr ""
388
 
473
  #: ../classes/admin/emails/class-wc-approve-vendor.php:123
474
  #: ../classes/admin/emails/class-wc-notify-admin.php:134
475
  #: ../classes/admin/emails/class-wc-notify-shipped.php:163
476
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:248
477
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:62
478
  msgid "Enable/Disable"
479
  msgstr ""
481
  #: ../classes/admin/emails/class-wc-approve-vendor.php:125
482
  #: ../classes/admin/emails/class-wc-notify-admin.php:136
483
  #: ../classes/admin/emails/class-wc-notify-shipped.php:165
484
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:250
485
  msgid "Enable this email notification"
486
  msgstr ""
487
 
501
  #: ../classes/admin/emails/class-wc-approve-vendor.php:136
502
  #: ../classes/admin/emails/class-wc-notify-admin.php:147
503
  #: ../classes/admin/emails/class-wc-notify-shipped.php:169
504
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:254
505
  msgid "Subject"
506
  msgstr ""
507
 
508
  #: ../classes/admin/emails/class-wc-approve-vendor.php:138
509
  #: ../classes/admin/emails/class-wc-notify-admin.php:149
510
  #: ../classes/admin/emails/class-wc-notify-shipped.php:171
511
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:256
512
  #, php-format
513
  msgid ""
514
  "This controls the email subject line. Leave blank to use the default "
518
  #: ../classes/admin/emails/class-wc-approve-vendor.php:143
519
  #: ../classes/admin/emails/class-wc-notify-admin.php:154
520
  #: ../classes/admin/emails/class-wc-notify-shipped.php:176
521
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:261
522
  msgid "Email Heading"
523
  msgstr ""
524
 
525
  #: ../classes/admin/emails/class-wc-approve-vendor.php:145
526
  #: ../classes/admin/emails/class-wc-notify-admin.php:156
527
  #: ../classes/admin/emails/class-wc-notify-shipped.php:178
528
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:263
529
  #, php-format
530
  msgid ""
531
  "This controls the main heading contained within the email notification. "
535
  #: ../classes/admin/emails/class-wc-approve-vendor.php:150
536
  #: ../classes/admin/emails/class-wc-notify-admin.php:161
537
  #: ../classes/admin/emails/class-wc-notify-shipped.php:183
538
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:268
539
  msgid "Email type"
540
  msgstr ""
541
 
542
  #: ../classes/admin/emails/class-wc-approve-vendor.php:152
543
  #: ../classes/admin/emails/class-wc-notify-admin.php:163
544
  #: ../classes/admin/emails/class-wc-notify-shipped.php:185
545
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:270
546
  msgid "Choose which format of email to send."
547
  msgstr ""
548
 
549
  #: ../classes/admin/emails/class-wc-approve-vendor.php:156
550
  #: ../classes/admin/emails/class-wc-notify-admin.php:167
551
  #: ../classes/admin/emails/class-wc-notify-shipped.php:189
552
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:274
553
  msgid "Plain text"
554
  msgstr ""
555
 
556
  #: ../classes/admin/emails/class-wc-approve-vendor.php:157
557
  #: ../classes/admin/emails/class-wc-notify-admin.php:168
558
  #: ../classes/admin/emails/class-wc-notify-shipped.php:190
559
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:275
560
  msgid "HTML"
561
  msgstr ""
562
 
563
  #: ../classes/admin/emails/class-wc-approve-vendor.php:158
564
  #: ../classes/admin/emails/class-wc-notify-admin.php:169
565
  #: ../classes/admin/emails/class-wc-notify-shipped.php:191
566
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:276
567
  msgid "Multipart"
568
  msgstr ""
569
 
671
  msgstr ""
672
 
673
  #: ../classes/admin/settings/sf-options.php:20
674
+ #: ../classes/admin/settings/sf-options.php:27
 
 
 
675
  msgid "Allow users or guests to apply to become a vendor"
676
  msgstr ""
677
 
678
  #: ../classes/admin/settings/sf-options.php:22
679
  msgid ""
680
+ "Allow users or guests to apply to become a vendor. <br><br><strong>WARNING:"
681
+ "</strong> You MUST \"<strong>Enable registration on the \"My Account\" "
682
+ "page</strong>\" in your <strong>WooCommerce > Settings > Accounts</strong> "
683
+ "page for this option to work. Currently, you have registration disabled."
684
+ msgstr ""
685
+
686
+ #: ../classes/admin/settings/sf-options.php:26
687
+ msgid "Registration"
688
+ msgstr ""
689
+
690
+ #: ../classes/admin/settings/sf-options.php:28
691
+ msgid ""
692
  "This will show a checkbox on the My Account page's registration form asking "
693
  "if the user would like to apply to be a vendor. Also, on the Vendor "
694
  "Dashboard, users can still apply to become a vendor even if this is disabled."
695
  msgstr ""
696
 
697
+ #: ../classes/admin/settings/sf-options.php:35
698
  msgid "Approve vendor applications manually"
699
  msgstr ""
700
 
701
+ #: ../classes/admin/settings/sf-options.php:36
702
  msgid ""
703
  "With this unchecked, all vendor applications are automatically accepted. "
704
  "Otherwise, you must approve each manually."
705
  msgstr ""
706
 
707
+ #: ../classes/admin/settings/sf-options.php:43
708
+ #: ../classes/admin/settings/sf-options.php:150
709
  msgid "Taxes"
710
  msgstr ""
711
 
712
+ #: ../classes/admin/settings/sf-options.php:44
713
  msgid "Give vendors any tax collected per-product"
714
  msgstr ""
715
 
716
+ #: ../classes/admin/settings/sf-options.php:45
717
  msgid "The tax collected on a vendor's product will be given in its entirety"
718
  msgstr ""
719
 
720
+ #: ../classes/admin/settings/sf-options.php:53
721
  msgid "Give vendors any shipping collected per-product"
722
  msgstr ""
723
 
724
+ #: ../classes/admin/settings/sf-options.php:54
725
  msgid ""
726
  "The shipping collected on a vendor's product will be given in its entirety"
727
  msgstr ""
728
 
729
+ #: ../classes/admin/settings/sf-options.php:60
730
  msgid "Shop options"
731
  msgstr ""
732
 
733
+ #: ../classes/admin/settings/sf-options.php:63
734
  msgid "Shop HTML"
735
  msgstr ""
736
 
737
+ #: ../classes/admin/settings/sf-options.php:64
738
  msgid ""
739
  "Enable HTML for a vendor's shop description by default. You can enable or "
740
  "disable this per vendor by editing the vendors username."
741
  msgstr ""
742
 
743
+ #: ../classes/admin/settings/sf-options.php:71
744
  msgid "Vendor shop page"
745
  msgstr ""
746
 
747
+ #: ../classes/admin/settings/sf-options.php:72
748
  msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
749
  msgstr ""
750
 
751
+ #: ../classes/admin/settings/sf-options.php:79
752
  msgid "Shop Headers"
753
  msgstr ""
754
 
755
+ #: ../classes/admin/settings/sf-options.php:80
756
  msgid "Enable vendor shop headers"
757
  msgstr ""
758
 
759
+ #: ../classes/admin/settings/sf-options.php:81
760
  msgid ""
761
  "This will override the HTML Shop description output on product-archive "
762
  "pages. In order to customize the shop headers visit wcvendors.com and read "
763
  "the article in the Knowledgebase titled Changing the Vendor Templates."
764
  msgstr ""
765
 
766
+ #: ../classes/admin/settings/sf-options.php:88
767
  msgid "Vendor Display Name"
768
  msgstr ""
769
 
770
+ #: ../classes/admin/settings/sf-options.php:89
771
  msgid ""
772
  "Select what will be displayed for the sold by text throughout the store."
773
  msgstr ""
774
 
775
+ #: ../classes/admin/settings/sf-options.php:93
776
  msgid "Display Name"
777
  msgstr ""
778
 
779
+ #: ../classes/admin/settings/sf-options.php:94
780
  #: ../classes/admin/views/html-vendor-settings-page.php:22
781
  #: ../templates/dashboard/settings/shop-name.php:2
782
  msgid "Shop Name"
783
  msgstr ""
784
 
785
+ #: ../classes/admin/settings/sf-options.php:95
786
  msgid "User Login"
787
  msgstr ""
788
 
789
+ #: ../classes/admin/settings/sf-options.php:96
790
  msgid "User Email"
791
  msgstr ""
792
 
793
+ #: ../classes/admin/settings/sf-options.php:103
794
  msgid "Product Add Page"
795
  msgstr ""
796
 
797
+ #: ../classes/admin/settings/sf-options.php:103
798
  msgid "Configure what to hide from all vendors when adding a product"
799
  msgstr ""
800
 
801
+ #: ../classes/admin/settings/sf-options.php:106
802
  msgid "Left side panel"
803
  msgstr ""
804
 
805
+ #: ../classes/admin/settings/sf-options.php:107
806
  msgid ""
807
  "CHECKING these boxes will HIDE these areas of the add product page for "
808
  "vendors"
809
  msgstr ""
810
 
811
+ #: ../classes/admin/settings/sf-options.php:110
812
  msgid "Inventory"
813
  msgstr ""
814
 
815
+ #: ../classes/admin/settings/sf-options.php:112
816
  msgid "Linked Products"
817
  msgstr ""
818
 
819
+ #: ../classes/admin/settings/sf-options.php:113
820
  msgid "Attributes"
821
  msgstr ""
822
 
823
+ #: ../classes/admin/settings/sf-options.php:114
824
  msgid "Advanced"
825
  msgstr ""
826
 
827
+ #: ../classes/admin/settings/sf-options.php:121
828
  msgid "Types"
829
  msgstr ""
830
 
831
+ #: ../classes/admin/settings/sf-options.php:122
832
  msgid "CHECKING these boxes will HIDE these product types from the vendor"
833
  msgstr ""
834
 
835
+ #: ../classes/admin/settings/sf-options.php:125
836
  msgid "Simple"
837
  msgstr ""
838
 
839
+ #: ../classes/admin/settings/sf-options.php:126
840
  msgid "Variable"
841
  msgstr ""
842
 
843
+ #: ../classes/admin/settings/sf-options.php:127
844
  msgid "Grouped"
845
  msgstr ""
846
 
847
+ #: ../classes/admin/settings/sf-options.php:128
848
  msgid "External / affiliate"
849
  msgstr ""
850
 
851
+ #: ../classes/admin/settings/sf-options.php:135
852
  msgid "Type options"
853
  msgstr ""
854
 
855
+ #: ../classes/admin/settings/sf-options.php:136
856
  msgid "CHECKING these boxes will HIDE these product options from the vendor"
857
  msgstr ""
858
 
859
+ #: ../classes/admin/settings/sf-options.php:139
860
  msgid "Virtual"
861
  msgstr ""
862
 
863
+ #: ../classes/admin/settings/sf-options.php:140
864
  msgid "Downloadable"
865
  msgstr ""
866
 
867
+ #: ../classes/admin/settings/sf-options.php:147
868
  msgid "Miscellaneous"
869
  msgstr ""
870
 
871
+ #: ../classes/admin/settings/sf-options.php:151
872
  msgid "SKU"
873
  msgstr ""
874
 
875
+ #: ../classes/admin/settings/sf-options.php:152
876
  msgid "Featured"
877
  msgstr ""
878
 
879
+ #: ../classes/admin/settings/sf-options.php:153
880
  msgid "Duplicate Product"
881
  msgstr ""
882
 
883
+ #: ../classes/admin/settings/sf-options.php:160
884
  msgid "Stylesheet"
885
  msgstr ""
886
 
887
+ #: ../classes/admin/settings/sf-options.php:161
888
  msgid ""
889
  "You can add CSS in this textarea, which will be loaded on the product add/"
890
  "edit page for vendors."
891
  msgstr ""
892
 
893
+ #: ../classes/admin/settings/sf-options.php:168
894
  msgid "Permissions"
895
  msgstr ""
896
 
897
+ #: ../classes/admin/settings/sf-options.php:168
898
  msgid "General permissions used around the shop"
899
  msgstr ""
900
 
901
+ #: ../classes/admin/settings/sf-options.php:172
902
  msgid "View orders"
903
  msgstr ""
904
 
905
+ #: ../classes/admin/settings/sf-options.php:173
906
  msgid "Show customer details such as email, address, name, etc, for each order"
907
  msgstr ""
908
 
909
+ #: ../classes/admin/settings/sf-options.php:180
910
  msgid "View comments"
911
  msgstr ""
912
 
913
+ #: ../classes/admin/settings/sf-options.php:181
914
  msgid "View all vendor comments for an order on the frontend"
915
  msgstr ""
916
 
917
+ #: ../classes/admin/settings/sf-options.php:188
918
  msgid "Submit comments"
919
  msgstr ""
920
 
921
+ #: ../classes/admin/settings/sf-options.php:189
922
  msgid ""
923
  "Submit comments for an order on the frontend. Eg, tracking ID for a product"
924
  msgstr ""
925
 
926
+ #: ../classes/admin/settings/sf-options.php:196
927
  msgid "View email addresses"
928
  msgstr ""
929
 
930
+ #: ../classes/admin/settings/sf-options.php:197
931
  msgid ""
932
  "While viewing order details on the frontend, you can disable or enable email "
933
  "addresses"
934
  msgstr ""
935
 
936
+ #: ../classes/admin/settings/sf-options.php:204
937
  msgid "Export a CSV file of orders for a product"
938
  msgstr ""
939
 
940
+ #: ../classes/admin/settings/sf-options.php:205
941
  msgid "Vendors could export orders for a product on the frontend"
942
  msgstr ""
943
 
944
+ #: ../classes/admin/settings/sf-options.php:212
945
  msgid "Reports"
946
  msgstr ""
947
 
948
+ #: ../classes/admin/settings/sf-options.php:213
949
  msgid ""
950
  "<strike>View backend sales reports</strike>. <strong>Depreciated</strong>"
951
  msgstr ""
952
 
953
+ #: ../classes/admin/settings/sf-options.php:214
954
  msgid ""
955
  "This option has been removed and will no longer function. It will be "
956
  "completely removed in future versions. Use front end reports if you require "
957
  "them. "
958
  msgstr ""
959
 
960
+ #: ../classes/admin/settings/sf-options.php:221
961
  msgid "View Frontend sales reports"
962
  msgstr ""
963
 
964
+ #: ../classes/admin/settings/sf-options.php:222
965
  msgid ""
966
  "Sales table on the frontend on the My Account page. The table will only "
967
  "display sales data that pertain to their products"
968
  msgstr ""
969
 
970
+ #: ../classes/admin/settings/sf-options.php:230
971
  msgid "Submit products"
972
  msgstr ""
973
 
974
+ #: ../classes/admin/settings/sf-options.php:231
975
  msgid ""
976
  "Vendors could submit a product through the backend, and an admin would "
977
  "approve or deny it"
978
  msgstr ""
979
 
980
+ #: ../classes/admin/settings/sf-options.php:238
981
  msgid "Edit live products"
982
  msgstr ""
983
 
984
+ #: ../classes/admin/settings/sf-options.php:239
985
  msgid ""
986
  "Vendors could edit an approved product after it has already gone live. There "
987
  "is no approval or review after editing a live product. This could be "
988
  "dangerous with malicious vendors, so take caution."
989
  msgstr ""
990
 
991
+ #: ../classes/admin/settings/sf-options.php:246
992
  msgid "Submit products live without requiring approval"
993
  msgstr ""
994
 
995
+ #: ../classes/admin/settings/sf-options.php:247
996
  msgid ""
997
  "Vendors can submit products without review or approval from a shop admin. "
998
  "This could be dangerous with malicious vendors, so take caution."
999
  msgstr ""
1000
 
1001
+ #: ../classes/admin/settings/sf-options.php:253
1002
  msgid "Pages"
1003
  msgstr ""
1004
 
1005
+ #: ../classes/admin/settings/sf-options.php:254
1006
  msgid "Page configuration"
1007
  msgstr ""
1008
 
1009
+ #: ../classes/admin/settings/sf-options.php:257
1010
  msgid "Vendor dashboard"
1011
  msgstr ""
1012
 
1013
+ #: ../classes/admin/settings/sf-options.php:258
1014
  msgid ""
1015
  "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
1016
  "code><br/>By default, My Account > Vendor Dashboard should have the "
1017
  "shortcode."
1018
  msgstr ""
1019
 
1020
+ #: ../classes/admin/settings/sf-options.php:265
1021
  msgid "Shop settings"
1022
  msgstr ""
1023
 
1024
+ #: ../classes/admin/settings/sf-options.php:266
1025
  msgid ""
1026
  "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
1027
  ">These are the shop settings a vendor can configure."
1028
  msgstr ""
1029
 
1030
+ #: ../classes/admin/settings/sf-options.php:273
1031
  msgid "Orders page"
1032
  msgstr ""
1033
 
1034
+ #: ../classes/admin/settings/sf-options.php:274
1035
  msgid ""
1036
  "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
1037
  "default, My Account > Orders should have the shortcode."
1038
  msgstr ""
1039
 
1040
+ #: ../classes/admin/settings/sf-options.php:281
1041
  msgid "Vendor terms"
1042
  msgstr ""
1043
 
1044
+ #: ../classes/admin/settings/sf-options.php:282
1045
  msgid ""
1046
  "These terms are shown to a user when submitting an application to become a "
1047
  "vendor.<br/>If left blank, no terms will be shown to the applicant."
1048
  msgstr ""
1049
 
1050
+ #: ../classes/admin/settings/sf-options.php:289
1051
  msgid "payments"
1052
  msgstr ""
1053
 
1054
+ #: ../classes/admin/settings/sf-options.php:300
1055
  msgid "Payments"
1056
  msgstr ""
1057
 
1058
+ #: ../classes/admin/settings/sf-options.php:302
1059
  msgid "User payments"
1060
  msgstr ""
1061
 
1062
+ #: ../classes/admin/settings/sf-options.php:303
1063
  #, php-format
1064
  msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
1065
  msgstr ""
1066
 
1067
+ #: ../classes/admin/settings/sf-options.php:304
1068
  #, php-format
1069
  msgid ""
1070
  "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
1071
  "\">here</a>."
1072
  msgstr ""
1073
 
1074
+ #: ../classes/admin/settings/sf-options.php:308
1075
  msgid "Instant pay"
1076
  msgstr ""
1077
 
1078
+ #: ../classes/admin/settings/sf-options.php:309
1079
  msgid "Instantly pay vendors their commission when an order is made"
1080
  msgstr ""
1081
 
1082
+ #: ../classes/admin/settings/sf-options.php:310
1083
  msgid ""
1084
  "For this to work, customers must checkout with the PayPal Adaptive Payments "
1085
  "gateway. Using any other gateways will not pay vendors instantly"
1086
  msgstr ""
1087
 
1088
+ #: ../classes/admin/settings/sf-options.php:317
1089
  msgid "Payment schedule"
1090
  msgstr ""
1091
 
1092
+ #: ../classes/admin/settings/sf-options.php:318
1093
  msgid "Note: Schedule will only work if instant pay is unchecked"
1094
  msgstr ""
1095
 
1096
+ #: ../classes/admin/settings/sf-options.php:323
1097
  msgid "Weekly"
1098
  msgstr ""
1099
 
1100
+ #: ../classes/admin/settings/sf-options.php:324
1101
  msgid "Biweekly"
1102
  msgstr ""
1103
 
1104
+ #: ../classes/admin/settings/sf-options.php:325
1105
  msgid "Monthly"
1106
  msgstr ""
1107
 
1108
+ #: ../classes/admin/settings/sf-options.php:326
1109
  msgid "Manual"
1110
  msgstr ""
1111
 
1112
+ #: ../classes/admin/settings/sf-options.php:327
1113
  msgid "Now"
1114
  msgstr ""
1115
 
1116
+ #: ../classes/admin/settings/sf-options.php:332
1117
  msgid "Email notification"
1118
  msgstr ""
1119
 
1120
+ #: ../classes/admin/settings/sf-options.php:333
1121
  msgid ""
1122
  "Send the WooCommerce admin an email each time a payment has been made via "
1123
  "the payment schedule options above"
1175
  msgid "Once a month"
1176
  msgstr ""
1177
 
1178
+ #: ../classes/class-install.php:59 ../classes/class-install.php:214
1179
  msgid "Pending Vendor"
1180
  msgstr ""
1181
 
1182
+ #: ../classes/class-install.php:165
1183
  msgid "Vendor Dashboard"
1184
  msgstr ""
1185
 
1196
  msgid " has marked as shipped. "
1197
  msgstr ""
1198
 
1199
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:77
1200
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:78
1201
  msgid "Tracking number"
1202
  msgstr ""
1203
 
1204
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:80
1205
  msgid "Success. Your tracking number has been updated."
1206
  msgstr ""
1207
 
1277
  msgid "Your application has been submitted."
1278
  msgstr ""
1279
 
1280
+ #: ../classes/front/signup/class-vendor-signup.php:130
1281
+ #: ../classes/front/signup/class-vendor-signup.php:142
1282
  msgid "You must accept the terms and conditions to become a vendor."
1283
  msgstr ""
1284
 
1524
  msgid "Submit"
1525
  msgstr ""
1526
 
1527
+ #: ../templates/dashboard/links.php:3
1528
+ msgid "View Your Store"
1529
+ msgstr ""
1530
+
1531
+ #: ../templates/dashboard/links.php:4
1532
+ msgid "Store Settings"
1533
+ msgstr ""
1534
+
1535
+ #: ../templates/dashboard/links.php:7
1536
+ msgid "Add New Product"
1537
+ msgstr ""
1538
+
1539
+ #: ../templates/dashboard/links.php:8
1540
+ msgid "Edit Products"
1541
+ msgstr ""
1542
+
1543
  #: ../templates/dashboard/orders.php:7 ../templates/dashboard/orders.php:10
1544
  msgid "Hide items"
1545
  msgstr ""
1546
 
1547
+ #: ../templates/dashboard/orders.php:8 ../templates/dashboard/orders.php:79
1548
  msgid "View items"
1549
  msgstr ""
1550
 
1552
  msgid "Links"
1553
  msgstr ""
1554
 
1555
+ #: ../templates/dashboard/orders.php:92
 
 
 
 
1556
  msgid "Tracking"
1557
  msgstr ""
1558
 
1559
+ #: ../templates/dashboard/orders.php:168
1560
  msgid "You have no orders during this period."
1561
  msgstr ""
1562
 
languages/wcvendors-ru_RU.mo ADDED
Binary file
languages/wcvendors-ru_RU.po ADDED
@@ -0,0 +1,1797 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2015-11-03 12:43+0700\n"
5
+ "PO-Revision-Date: 2015-11-07 12:58+0700\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: ru\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.5\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
+ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
+
17
+ #: ../class-wc-vendors.php:61 ../classes/admin/class-admin-reports.php:41
18
+ #: ../classes/admin/class-admin-users.php:392
19
+ msgid "WC Vendors"
20
+ msgstr "WC Vendors"
21
+
22
+ #: ../class-wc-vendors.php:91
23
+ msgid ""
24
+ "<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce "
25
+ "v2.2.0."
26
+ msgstr ""
27
+ "<b>WC Vendors отключен</b>. WC Vendors требует минимум WooCommerce v2.2.0."
28
+
29
+ #: ../class-wc-vendors.php:233 ../classes/admin/settings/sf-options.php:161
30
+ msgid "Capabilities"
31
+ msgstr "Возможности"
32
+
33
+ #: ../class-wc-vendors.php:256 ../classes/admin/class-admin-page.php:253
34
+ #: ../classes/admin/class-admin-reports.php:169
35
+ #: ../classes/admin/class-product-meta.php:44
36
+ #: ../classes/admin/class-product-meta.php:185
37
+ #: ../classes/admin/class-product-meta.php:221 ../classes/class-install.php:66
38
+ msgid "Vendor"
39
+ msgstr "Продавец"
40
+
41
+ #: ../class-wc-vendors.php:258 ../classes/admin/settings/sf-options.php:4
42
+ msgid "General"
43
+ msgstr "Основное"
44
+
45
+ #: ../class-wc-vendors.php:293
46
+ msgid "Documentation/KB"
47
+ msgstr "Документация/КБ"
48
+
49
+ #: ../class-wc-vendors.php:294
50
+ msgid "Help Forums"
51
+ msgstr "Форум поддержки"
52
+
53
+ #: ../class-wc-vendors.php:295
54
+ msgid "Paid Support"
55
+ msgstr "Поддержка по оплате"
56
+
57
+ #: ../class-wc-vendors.php:317
58
+ #, php-format
59
+ msgid ""
60
+ "WC Vendors requires the Vendor shop page value be set <a href=\"%s\">click "
61
+ "here to set it.</a> | <a href=\"%s\">Hide Notice</a>"
62
+ msgstr ""
63
+ "Вы должны сохранить постоянные ссылки, как только вы изменили страницу "
64
+ "продавца. <a href=\"%s\">нажмите здесь, чтобы сохранить</a> . | <a href=\"%s"
65
+ "\">Скрыть Уведомление</a>"
66
+
67
+ #: ../class-wc-vendors.php:325
68
+ #, php-format
69
+ msgid ""
70
+ "You must save your permalinks once you have modified your vendor page. <a "
71
+ "href=\"%s\">click here to save</a>. | <a href=\"%s\">Hide Notice</a>"
72
+ msgstr ""
73
+ "Вы должны сохранить постоянные ссылки, как только вы изменили страницу "
74
+ "продавца. <a href=\"%s\">нажмите здесь, чтобы сохранить</a> . | <a href=\"%s"
75
+ "\">Скрыть Уведомление</a>"
76
+
77
+ #: ../classes/admin/class-admin-page.php:27
78
+ msgid "Vendors shipped"
79
+ msgstr "Отправка продавцом"
80
+
81
+ #: ../classes/admin/class-admin-page.php:50
82
+ msgid "Vendors Shipped"
83
+ msgstr "Отправка продавцом"
84
+
85
+ #: ../classes/admin/class-admin-page.php:72
86
+ #: ../classes/admin/class-admin-page.php:132
87
+ #: ../classes/admin/class-product-meta.php:149
88
+ #: ../classes/admin/class-product-meta.php:165
89
+ #: ../templates/dashboard/reports.php:19
90
+ msgid "Commission"
91
+ msgstr "Комиссия"
92
+
93
+ #: ../classes/admin/class-admin-page.php:251
94
+ #: ../classes/admin/class-admin-reports.php:168
95
+ #: ../templates/dashboard/reports.php:17
96
+ #: ../templates/emails/notify-vendor-shipped.php:22
97
+ #: ../templates/emails/vendor-new-order.php:22
98
+ msgid "Product"
99
+ msgstr "Товар"
100
+
101
+ #: ../classes/admin/class-admin-page.php:252
102
+ #: ../classes/admin/class-vendor-admin-dashboard.php:283
103
+ msgid "Order ID"
104
+ msgstr "Номер заказа"
105
+
106
+ #: ../classes/admin/class-admin-page.php:254
107
+ #: ../classes/admin/class-admin-reports.php:170
108
+ #: ../classes/admin/class-admin-reports.php:368
109
+ #: ../classes/admin/class-vendor-admin-dashboard.php:286
110
+ #: ../templates/dashboard/orders.php:35
111
+ msgid "Total"
112
+ msgstr "Итого"
113
+
114
+ #: ../classes/admin/class-admin-page.php:255
115
+ #: ../classes/admin/class-admin-reports.php:172
116
+ msgid "Status"
117
+ msgstr "Статус"
118
+
119
+ #: ../classes/admin/class-admin-page.php:256
120
+ #: ../classes/admin/class-vendor-admin-dashboard.php:288
121
+ #: ../classes/front/orders/class-orders.php:181
122
+ #: ../templates/dashboard/orders.php:36
123
+ msgid "Date"
124
+ msgstr "Дата"
125
+
126
+ #: ../classes/admin/class-admin-page.php:293
127
+ msgid "Mark paid"
128
+ msgstr "Оплачено"
129
+
130
+ #: ../classes/admin/class-admin-page.php:294
131
+ msgid "Mark due"
132
+ msgstr "В ожидании"
133
+
134
+ #: ../classes/admin/class-admin-page.php:295
135
+ msgid "Mark reversed"
136
+ msgstr "Отмена"
137
+
138
+ #: ../classes/admin/class-admin-page.php:312
139
+ #: ../classes/admin/class-admin-page.php:316
140
+ msgid "Filter"
141
+ msgstr "Фильтр"
142
+
143
+ #: ../classes/admin/class-admin-page.php:351
144
+ msgid "Show all dates"
145
+ msgstr "Показать все даты"
146
+
147
+ #: ../classes/admin/class-admin-page.php:364
148
+ #, php-format
149
+ msgid "%1$s %2$d"
150
+ msgstr "%1$s %2$d"
151
+
152
+ #: ../classes/admin/class-admin-page.php:386
153
+ msgid "Show all Statuses"
154
+ msgstr "Показать все статусы"
155
+
156
+ #: ../classes/admin/class-admin-page.php:412
157
+ msgid "Commission marked paid."
158
+ msgstr "Комиссия оплачена"
159
+
160
+ #: ../classes/admin/class-admin-page.php:419
161
+ msgid "Commission marked due."
162
+ msgstr "Комиссия в ожидании"
163
+
164
+ #: ../classes/admin/class-admin-page.php:426
165
+ msgid "Commission marked reversed."
166
+ msgstr "Комиссия отменена"
167
+
168
+ #: ../classes/admin/class-admin-reports.php:44
169
+ msgid "Overview"
170
+ msgstr "Обзор"
171
+
172
+ #: ../classes/admin/class-admin-reports.php:50
173
+ msgid "Commission by vendor"
174
+ msgstr "Комиссия по продавцу"
175
+
176
+ #: ../classes/admin/class-admin-reports.php:56
177
+ msgid "Commission by product"
178
+ msgstr "Комиссия по товару"
179
+
180
+ #: ../classes/admin/class-admin-reports.php:115
181
+ #: ../templates/dashboard/date-picker.php:3
182
+ msgid "From:"
183
+ msgstr "От:"
184
+
185
+ #: ../classes/admin/class-admin-reports.php:117
186
+ #: ../templates/dashboard/date-picker.php:7
187
+ msgid "To:"
188
+ msgstr "К:"
189
+
190
+ #: ../classes/admin/class-admin-reports.php:119
191
+ #: ../classes/admin/class-admin-reports.php:277
192
+ #: ../templates/dashboard/date-picker.php:12
193
+ msgid "Show"
194
+ msgstr "Показать"
195
+
196
+ #: ../classes/admin/class-admin-reports.php:125
197
+ msgid "Total paid in range"
198
+ msgstr "Всего выплачено в диапазоне"
199
+
200
+ #: ../classes/admin/class-admin-reports.php:128
201
+ #: ../classes/admin/class-admin-reports.php:135
202
+ #: ../classes/admin/class-admin-reports.php:142
203
+ msgid "n/a"
204
+ msgstr "не применимо"
205
+
206
+ #: ../classes/admin/class-admin-reports.php:132
207
+ msgid "Total due in range"
208
+ msgstr "Всего в ожидании "
209
+
210
+ #: ../classes/admin/class-admin-reports.php:139
211
+ msgid "Total reversed in range"
212
+ msgstr "Всего отменено в диапазоне"
213
+
214
+ #: ../classes/admin/class-admin-reports.php:149
215
+ msgid "Recent Commission"
216
+ msgstr "Недавняя комиссия"
217
+
218
+ #: ../classes/admin/class-admin-reports.php:167
219
+ #: ../classes/front/orders/class-orders.php:173
220
+ #: ../templates/dashboard/orders.php:33
221
+ msgid "Order"
222
+ msgstr "Заказ"
223
+
224
+ #: ../classes/admin/class-admin-reports.php:171
225
+ msgid "Date &amp; Time"
226
+ msgstr "Дата &amp; Время"
227
+
228
+ #: ../classes/admin/class-admin-reports.php:180
229
+ msgid "N/A"
230
+ msgstr "Не определено"
231
+
232
+ #: ../classes/admin/class-admin-reports.php:185
233
+ msgid "D j M Y \\a\\t h:ia"
234
+ msgstr "D j M Y \\a\\t h:ia"
235
+
236
+ #: ../classes/admin/class-admin-reports.php:194
237
+ msgid "No commission yet"
238
+ msgstr "Пока нет комиссии"
239
+
240
+ #: ../classes/admin/class-admin-reports.php:228
241
+ msgid "Show:"
242
+ msgstr "Показать:"
243
+
244
+ #: ../classes/admin/class-admin-reports.php:237
245
+ msgid "Search for a product&hellip;"
246
+ msgstr "Поиск товара"
247
+
248
+ #: ../classes/admin/class-admin-reports.php:240
249
+ msgid "Type in a product name to start searching..."
250
+ msgstr "Впишите имя товара чтобы начать поиск"
251
+
252
+ #: ../classes/admin/class-admin-reports.php:272
253
+ msgid "Select a vendor&hellip;"
254
+ msgstr "Выбрать продавца"
255
+
256
+ #: ../classes/admin/class-admin-reports.php:338
257
+ msgid "Month"
258
+ msgstr "Месяц"
259
+
260
+ #: ../classes/admin/class-admin-reports.php:339
261
+ msgid "Commission Totals"
262
+ msgstr "Сумма комиссии"
263
+
264
+ #: ../classes/admin/class-admin-reports.php:340
265
+ msgid "Tax"
266
+ msgstr "Пошлина"
267
+
268
+ #: ../classes/admin/class-admin-reports.php:341
269
+ #: ../classes/admin/settings/sf-options.php:46
270
+ #: ../classes/admin/settings/sf-options.php:105
271
+ #: ../templates/dashboard/orders.php:34 ../templates/orders/orders.php:115
272
+ msgid "Shipping"
273
+ msgstr "Доставка"
274
+
275
+ #: ../classes/admin/class-admin-reports.php:342
276
+ msgid "Reversed"
277
+ msgstr "Отмена"
278
+
279
+ #: ../classes/admin/class-admin-reports.php:343
280
+ msgid "Paid"
281
+ msgstr "Оплачено"
282
+
283
+ #: ../classes/admin/class-admin-reports.php:344
284
+ msgid "Due"
285
+ msgstr "В ожидании"
286
+
287
+ #: ../classes/admin/class-admin-users.php:402
288
+ msgid "Enable HTML for the shop description"
289
+ msgstr "Включить HTML для описания магазина"
290
+
291
+ #: ../classes/admin/class-admin-users.php:408
292
+ msgid "Shop name"
293
+ msgstr "Название магазина"
294
+
295
+ #: ../classes/admin/class-admin-users.php:415
296
+ msgid "PayPal E-mail"
297
+ msgstr "PayPal E-mail"
298
+
299
+ #: ../classes/admin/class-admin-users.php:416
300
+ msgid "required"
301
+ msgstr "требуемый"
302
+
303
+ #: ../classes/admin/class-admin-users.php:423
304
+ msgid "Commission rate"
305
+ msgstr "Ставка комиссии"
306
+
307
+ #: ../classes/admin/class-admin-users.php:424
308
+ #: ../classes/admin/class-product-meta.php:172
309
+ msgid "Leave blank for default"
310
+ msgstr "Оставьте пустым для выбора по умолчанию"
311
+
312
+ #: ../classes/admin/class-admin-users.php:430
313
+ msgid "Give Tax"
314
+ msgstr "Назначьте пошлину"
315
+
316
+ #: ../classes/admin/class-admin-users.php:435
317
+ msgid "Tax override for vendor"
318
+ msgstr "Измените пошлину для продавца"
319
+
320
+ #: ../classes/admin/class-admin-users.php:441
321
+ msgid "Give Shipping"
322
+ msgstr "Дайте доставку"
323
+
324
+ #: ../classes/admin/class-admin-users.php:446
325
+ msgid "Shipping override for vendor"
326
+ msgstr "Измените доставку для продавца"
327
+
328
+ #: ../classes/admin/class-admin-users.php:452
329
+ #: ../classes/admin/views/html-vendor-settings-page.php:30
330
+ #: ../classes/front/class-vendor-shop.php:105
331
+ #: ../templates/dashboard/settings/seller-info.php:3
332
+ msgid "Seller info"
333
+ msgstr "Информация о продавце"
334
+
335
+ #: ../classes/admin/class-admin-users.php:457
336
+ msgid "Shop description"
337
+ msgstr "Описание магазина"
338
+
339
+ #: ../classes/admin/class-vendor-admin-dashboard.php:20
340
+ #: ../classes/class-install.php:166
341
+ msgid "Shop Settings"
342
+ msgstr "Настройки магазина"
343
+
344
+ #: ../classes/admin/class-vendor-admin-dashboard.php:21
345
+ #: ../classes/admin/class-vendor-admin-dashboard.php:146
346
+ #: ../classes/admin/settings/sf-options.php:165
347
+ #: ../classes/class-install.php:165 ../templates/dashboard/orders.php:24
348
+ msgid "Orders"
349
+ msgstr "Заказы"
350
+
351
+ #: ../classes/admin/class-vendor-admin-dashboard.php:58
352
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:104
353
+ msgid "Your PayPal address is not a valid email address."
354
+ msgstr "Не верный адрес PayPal"
355
+
356
+ #: ../classes/admin/class-vendor-admin-dashboard.php:67
357
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:113
358
+ msgid "That shop name is already taken. Your shop name must be unique."
359
+ msgstr "Это название магазина уже занято. Имя магазина должно быть уникальным."
360
+
361
+ #: ../classes/admin/class-vendor-admin-dashboard.php:87
362
+ #: ../classes/admin/settings/classes/sf-class-settings.php:366
363
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:131
364
+ msgid "Settings saved."
365
+ msgstr "Настройки сохранены."
366
+
367
+ #: ../classes/admin/class-vendor-admin-dashboard.php:284
368
+ msgid "Customer"
369
+ msgstr "Клиент"
370
+
371
+ #: ../classes/admin/class-vendor-admin-dashboard.php:285
372
+ #: ../classes/admin/settings/sf-options.php:96
373
+ #: ../classes/admin/settings/sf-options.php:223
374
+ msgid "Products"
375
+ msgstr "Товары"
376
+
377
+ #: ../classes/admin/class-vendor-admin-dashboard.php:289
378
+ msgid "Shipped"
379
+ msgstr "Доставка"
380
+
381
+ #: ../classes/admin/class-vendor-admin-dashboard.php:324
382
+ #: ../templates/dashboard/orders.php:76
383
+ msgid "Mark shipped"
384
+ msgstr "Отметка об отправке"
385
+
386
+ #: ../classes/admin/class-vendor-admin-dashboard.php:349
387
+ msgid "Orders marked shipped."
388
+ msgstr "Заказы отмечены как отправленные."
389
+
390
+ #: ../classes/admin/class-vendor-admin-dashboard.php:467
391
+ #: ../templates/orders/orders.php:84
392
+ #, php-format
393
+ msgid "Comments (%s)"
394
+ msgstr "Комментарии (%s)"
395
+
396
+ #: ../classes/admin/class-vendor-admin-dashboard.php:470
397
+ msgid "Comments to Customer"
398
+ msgstr "Комментарии Клиенту"
399
+
400
+ #: ../classes/admin/class-vendor-admin-dashboard.php:479
401
+ #: ../templates/orders/comments/existing-comments.php:9
402
+ #, php-format
403
+ msgid "added %s ago"
404
+ msgstr "добавлено %s назад"
405
+
406
+ #: ../classes/admin/class-vendor-admin-dashboard.php:485
407
+ msgid "No comments currently to customer."
408
+ msgstr "В настоящее время нет комментариев к заказчику"
409
+
410
+ #: ../classes/admin/class-vendor-admin-dashboard.php:494
411
+ #: ../templates/orders/comments/add-new-comment.php:11
412
+ msgid "Add comment"
413
+ msgstr "Добавить комментарий"
414
+
415
+ #: ../classes/admin/class-vendor-applicants.php:26
416
+ msgid "Approve"
417
+ msgstr "Одобрить"
418
+
419
+ #: ../classes/admin/class-vendor-applicants.php:27
420
+ msgid "Deny"
421
+ msgstr "Отклонить"
422
+
423
+ #: ../classes/admin/class-vendor-applicants.php:71
424
+ msgid "Vendor has been <b>denied</b>."
425
+ msgstr "Продавец был <b>отклонен</b>."
426
+
427
+ #: ../classes/admin/class-vendor-applicants.php:82
428
+ msgid "Vendor has been <b>approved</b>."
429
+ msgstr "Продавец <b>одобрен</b>."
430
+
431
+ #: ../classes/admin/class-vendor-applicants.php:96
432
+ msgid "Pending Vendors"
433
+ msgstr "Ожидающие продавцы"
434
+
435
+ #: ../classes/admin/emails/class-emails.php:59
436
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:70
437
+ msgid "pending"
438
+ msgstr "в ожидании"
439
+
440
+ #: ../classes/admin/emails/class-emails.php:61
441
+ msgid "approved"
442
+ msgstr "одобрено"
443
+
444
+ #: ../classes/admin/emails/class-emails.php:63
445
+ msgid "denied"
446
+ msgstr "отклонено"
447
+
448
+ #: ../classes/admin/emails/class-emails.php:90
449
+ #: ../classes/front/class-vendor-cart.php:59
450
+ #: ../classes/front/class-vendor-shop.php:180
451
+ msgid "Sold by: "
452
+ msgstr "Продает:"
453
+
454
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:28
455
+ msgid "Vendor Application"
456
+ msgstr "Заявка продавца"
457
+
458
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:29
459
+ msgid "Vendor application will either be approved, denied, or pending."
460
+ msgstr "Заявка продавца будет одобрена, отклонена, либо поставлена в ожидание."
461
+
462
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:31
463
+ msgid "Application {status}"
464
+ msgstr "Заявка {status}"
465
+
466
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:32
467
+ msgid "[{blogname}] Your vendor application has been {status}"
468
+ msgstr "[{blogname}] Ваша заявка в качестве продавца была {status}"
469
+
470
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:123
471
+ #: ../classes/admin/emails/class-wc-notify-admin.php:134
472
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:163
473
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:247
474
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:62
475
+ msgid "Enable/Disable"
476
+ msgstr "Включить/Выключить"
477
+
478
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:125
479
+ #: ../classes/admin/emails/class-wc-notify-admin.php:136
480
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:165
481
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:249
482
+ msgid "Enable this email notification"
483
+ msgstr "Включите уведомление по почте"
484
+
485
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:129
486
+ #: ../classes/admin/emails/class-wc-notify-admin.php:140
487
+ msgid "Recipient(s)"
488
+ msgstr "Получатель (ли)"
489
+
490
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:131
491
+ #: ../classes/admin/emails/class-wc-notify-admin.php:142
492
+ #, php-format
493
+ msgid ""
494
+ "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
495
+ "code>."
496
+ msgstr ""
497
+ "Введите получателей (через запятую) для этого письма. По умолчанию <code>"
498
+ "%s</code>."
499
+
500
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:136
501
+ #: ../classes/admin/emails/class-wc-notify-admin.php:147
502
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:169
503
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:253
504
+ msgid "Subject"
505
+ msgstr "Тема"
506
+
507
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:138
508
+ #: ../classes/admin/emails/class-wc-notify-admin.php:149
509
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:171
510
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:255
511
+ #, php-format
512
+ msgid ""
513
+ "This controls the email subject line. Leave blank to use the default "
514
+ "subject: <code>%s</code>."
515
+ msgstr ""
516
+ "Здесь контролируется тема письма. Оставьте пустым, чтобы использовать тему "
517
+ "по умолчанию: <code>%s</code>."
518
+
519
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:143
520
+ #: ../classes/admin/emails/class-wc-notify-admin.php:154
521
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:176
522
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:260
523
+ msgid "Email Heading"
524
+ msgstr "Заголовок письма"
525
+
526
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:145
527
+ #: ../classes/admin/emails/class-wc-notify-admin.php:156
528
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:178
529
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:262
530
+ #, php-format
531
+ msgid ""
532
+ "This controls the main heading contained within the email notification. "
533
+ "Leave blank to use the default heading: <code>%s</code>."
534
+ msgstr ""
535
+ "Это контролирует основной заголовок, содержащийся в уведомлении по "
536
+ "электронной почте. Оставьте пустым, чтобы использовать заголовок по "
537
+ "умолчанию: <code>%s</code>."
538
+
539
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:150
540
+ #: ../classes/admin/emails/class-wc-notify-admin.php:161
541
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:183
542
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:267
543
+ msgid "Email type"
544
+ msgstr "Введите Email"
545
+
546
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:152
547
+ #: ../classes/admin/emails/class-wc-notify-admin.php:163
548
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:185
549
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:269
550
+ msgid "Choose which format of email to send."
551
+ msgstr "Выберите какой формат письма отправить."
552
+
553
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:156
554
+ #: ../classes/admin/emails/class-wc-notify-admin.php:167
555
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:189
556
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:273
557
+ msgid "Plain text"
558
+ msgstr "Открытый текст"
559
+
560
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:157
561
+ #: ../classes/admin/emails/class-wc-notify-admin.php:168
562
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:190
563
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:274
564
+ msgid "HTML"
565
+ msgstr "HTML"
566
+
567
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:158
568
+ #: ../classes/admin/emails/class-wc-notify-admin.php:169
569
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:191
570
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:275
571
+ msgid "Multipart"
572
+ msgstr "Multipart"
573
+
574
+ #: ../classes/admin/emails/class-wc-notify-admin.php:28
575
+ msgid "New Vendor Product"
576
+ msgstr "Новый товар продавца"
577
+
578
+ #: ../classes/admin/emails/class-wc-notify-admin.php:29
579
+ msgid "New order emails are sent when a new product is submitted by a vendor"
580
+ msgstr "Новые письма отправляются когда продавец размещает новый товар"
581
+
582
+ #: ../classes/admin/emails/class-wc-notify-admin.php:31
583
+ msgid "New product submitted: {product_name}"
584
+ msgstr "Новый товар предоставлен: {product_name} "
585
+
586
+ #: ../classes/admin/emails/class-wc-notify-admin.php:32
587
+ msgid "[{blogname}] New product submitted by {vendor_name} - {product_name}"
588
+ msgstr "[{blogname}] Новый товар предоставлен {vendor_name} - {product_name}"
589
+
590
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:28
591
+ msgid "Vendor has shipped"
592
+ msgstr "Продавец отправил"
593
+
594
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:29
595
+ msgid ""
596
+ "An email is sent when a vendor has marked one of their orders as shipped."
597
+ msgstr ""
598
+ "Письмо отправляется когда продавец отмечает один из своих заказов как "
599
+ "отправленный"
600
+
601
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:31
602
+ msgid "Your order has been shipped"
603
+ msgstr "Ваш заказ отправлен"
604
+
605
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:32
606
+ msgid ""
607
+ "[{blogname}] Your order has been shipped ({order_number}) - {order_date}"
608
+ msgstr "[{blogname}] Ваш заказ отправлен ({order_number}) - {order_date}"
609
+
610
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:112
611
+ msgid "Subtotal:"
612
+ msgstr "Итого:"
613
+
614
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:27
615
+ msgid "Notify vendors"
616
+ msgstr "Уведомить продавцов"
617
+
618
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:28
619
+ msgid "New order emails are sent when an order is received/paid by a customer."
620
+ msgstr ""
621
+ "Новые письма о заказах отправляются когда заказ получен или оплачен клиентом."
622
+
623
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:30
624
+ msgid "New customer order"
625
+ msgstr "Новый заказ от клиента"
626
+
627
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:31
628
+ msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
629
+ msgstr "[{blogname}] Новый заказ от клиента ({order_number}) - {order_date}"
630
+
631
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:103
632
+ msgid "Commission Subtotal:"
633
+ msgstr "Итого комиссии:"
634
+
635
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:109
636
+ msgid "Tax Subtotal:"
637
+ msgstr "Итого пошлины:"
638
+
639
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:117
640
+ msgid "Shipping Subtotal:"
641
+ msgstr "Доставка Итого:"
642
+
643
+ #: ../classes/admin/settings/classes/sf-class-format-options.php:211
644
+ #: ../classes/admin/settings/classes/sf-class-settings.php:776
645
+ msgid "Select a page..."
646
+ msgstr "Выберите страницу..."
647
+
648
+ #: ../classes/admin/settings/classes/sf-class-settings.php:153
649
+ #: ../templates/dashboard/settings/settings.php:1
650
+ msgid "Settings"
651
+ msgstr "Настройки"
652
+
653
+ #: ../classes/admin/settings/classes/sf-class-settings.php:300
654
+ msgid "Could not load settings at: "
655
+ msgstr "Не удалось загрузить настройки по адресу:"
656
+
657
+ #: ../classes/admin/settings/classes/sf-class-settings.php:300
658
+ msgid "Error - WP Settings Framework"
659
+ msgstr "Ошибка - WP Settings Framework"
660
+
661
+ #: ../classes/admin/settings/classes/sf-class-settings.php:482
662
+ #, php-format
663
+ msgid "Save %s changes"
664
+ msgstr "Сохраните %s изменения"
665
+
666
+ #: ../classes/admin/settings/sf-options.php:5
667
+ msgid "General options"
668
+ msgstr "Основные параметры"
669
+
670
+ #: ../classes/admin/settings/sf-options.php:8
671
+ msgid "Default commission (%)"
672
+ msgstr "Комиссия по умолчанию (%)"
673
+
674
+ #: ../classes/admin/settings/sf-options.php:9
675
+ msgid ""
676
+ "The default rate you pay each vendor for a product sale. If a product has a "
677
+ "commission rate already set, this value will be ignored for that product."
678
+ msgstr ""
679
+ "Ставка которую вы по умолчанию платите каждому продавцу при продаже его "
680
+ "товара. Если у продукта установлена своя комиссионная ставка, то это "
681
+ "значение игнорируется."
682
+
683
+ #: ../classes/admin/settings/sf-options.php:20
684
+ msgid "Registration"
685
+ msgstr "Регистрация"
686
+
687
+ #: ../classes/admin/settings/sf-options.php:21
688
+ msgid "Allow users or guests to apply to become a vendor"
689
+ msgstr ""
690
+ "Разрешить пользователям или гостям подать заявку, чтобы стать продавцом"
691
+
692
+ #: ../classes/admin/settings/sf-options.php:22
693
+ msgid ""
694
+ "This will show a checkbox on the My Account page's registration form asking "
695
+ "if the user would like to apply to be a vendor. Also, on the Vendor "
696
+ "Dashboard, users can still apply to become a vendor even if this is disabled."
697
+ msgstr ""
698
+ "На странице Мой Аккаунт при регистрации показывать флажок с предложением "
699
+ "стать продавцом. Кроме того, на панели поставщиков, пользователи могут "
700
+ "принять приглашение, чтобы стать продавцом, даже если эта функция отключена."
701
+
702
+ #: ../classes/admin/settings/sf-options.php:29
703
+ msgid "Approve vendor applications manually"
704
+ msgstr "Подтверждать заявки поставщика в ручную"
705
+
706
+ #: ../classes/admin/settings/sf-options.php:30
707
+ msgid ""
708
+ "With this unchecked, all vendor applications are automatically accepted. "
709
+ "Otherwise, you must approve each manually."
710
+ msgstr ""
711
+ "Без галочки все заявки продавцов принимаются автоматически. В противном "
712
+ "случае вы каждую подтверждаете вручную."
713
+
714
+ #: ../classes/admin/settings/sf-options.php:37
715
+ #: ../classes/admin/settings/sf-options.php:144
716
+ msgid "Taxes"
717
+ msgstr "Пошлины"
718
+
719
+ #: ../classes/admin/settings/sf-options.php:38
720
+ msgid "Give vendors any tax collected per-product"
721
+ msgstr "Установите продавцу любую пошлину взимаемую за товар"
722
+
723
+ #: ../classes/admin/settings/sf-options.php:39
724
+ msgid "The tax collected on a vendor's product will be given in its entirety"
725
+ msgstr "Пошлина собранная с товаров продавцов будет дана в полном объеме"
726
+
727
+ #: ../classes/admin/settings/sf-options.php:47
728
+ msgid "Give vendors any shipping collected per-product"
729
+ msgstr "Предложите продавцам какую-либо доставку товаров"
730
+
731
+ #: ../classes/admin/settings/sf-options.php:48
732
+ msgid ""
733
+ "The shipping collected on a vendor's product will be given in its entirety"
734
+ msgstr "Отгрузка собирается на товар продавца и будет отправлена по готовности"
735
+
736
+ #: ../classes/admin/settings/sf-options.php:54
737
+ msgid "Shop options"
738
+ msgstr "Опции магазина"
739
+
740
+ #: ../classes/admin/settings/sf-options.php:57
741
+ msgid "Shop HTML"
742
+ msgstr "HTML магазина"
743
+
744
+ #: ../classes/admin/settings/sf-options.php:58
745
+ msgid ""
746
+ "Enable HTML for a vendor's shop description by default. You can enable or "
747
+ "disable this per vendor by editing the vendors username."
748
+ msgstr ""
749
+ "Включить HTML для описания магазина продавца по умолчанию. Вы можете "
750
+ "включить или выключить это за продавца путем редактирования пользователя."
751
+
752
+ #: ../classes/admin/settings/sf-options.php:65
753
+ msgid "Vendor shop page"
754
+ msgstr "Страница магазина продавца"
755
+
756
+ #: ../classes/admin/settings/sf-options.php:66
757
+ msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
758
+ msgstr ""
759
+ "Пример: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
760
+
761
+ #: ../classes/admin/settings/sf-options.php:73
762
+ msgid "Shop Headers"
763
+ msgstr "Заголовок магазина"
764
+
765
+ #: ../classes/admin/settings/sf-options.php:74
766
+ msgid "Enable vendor shop headers"
767
+ msgstr "Включить заголовки магазина продавца"
768
+
769
+ #: ../classes/admin/settings/sf-options.php:75
770
+ msgid ""
771
+ "This will override the HTML Shop description output on product-archive "
772
+ "pages. In order to customize the shop headers visit wcvendors.com and read "
773
+ "the article in the Knowledgebase titled Changing the Vendor Templates."
774
+ msgstr ""
775
+ "Это переопределит HTML-описание магазина вывод на продукт-архивных страниц. "
776
+ "Для того, чтобы настроить заголовки магазинов посетите wcvendors.com и "
777
+ "прочитайте статьи в базе знаний под названием Изменение шаблонов поставщиков."
778
+
779
+ #: ../classes/admin/settings/sf-options.php:82
780
+ msgid "Vendor Display Name"
781
+ msgstr "Отображаемое имя продавца"
782
+
783
+ #: ../classes/admin/settings/sf-options.php:83
784
+ msgid ""
785
+ "Select what will be displayed for the sold by text throughout the store."
786
+ msgstr "Выберите что будет отображаться в качестве продает по всему магазину."
787
+
788
+ #: ../classes/admin/settings/sf-options.php:87
789
+ msgid "Display Name"
790
+ msgstr "Отображаемое имя"
791
+
792
+ #: ../classes/admin/settings/sf-options.php:88
793
+ #: ../classes/admin/views/html-vendor-settings-page.php:22
794
+ #: ../templates/dashboard/settings/shop-name.php:2
795
+ msgid "Shop Name"
796
+ msgstr "Название магазина"
797
+
798
+ #: ../classes/admin/settings/sf-options.php:89
799
+ msgid "User Login"
800
+ msgstr "Логин"
801
+
802
+ #: ../classes/admin/settings/sf-options.php:90
803
+ msgid "User Email"
804
+ msgstr "Пользовательский Email"
805
+
806
+ #: ../classes/admin/settings/sf-options.php:97
807
+ msgid "Product Add Page"
808
+ msgstr "Добавить страницу товара"
809
+
810
+ #: ../classes/admin/settings/sf-options.php:97
811
+ msgid "Configure what to hide from all vendors when adding a product"
812
+ msgstr "Настройте что спрятать от продавцов при добавлении ими товаров"
813
+
814
+ #: ../classes/admin/settings/sf-options.php:100
815
+ msgid "Left side panel"
816
+ msgstr "Панель с левой стороны"
817
+
818
+ #: ../classes/admin/settings/sf-options.php:101
819
+ msgid ""
820
+ "CHECKING these boxes will HIDE these areas of the add product page for "
821
+ "vendors"
822
+ msgstr "ПРОВЕРЬТЕ эти области будут Скрыты от продавцов при добавлении товара"
823
+
824
+ #: ../classes/admin/settings/sf-options.php:104
825
+ msgid "Inventory"
826
+ msgstr "Инвентаризация"
827
+
828
+ #: ../classes/admin/settings/sf-options.php:106
829
+ msgid "Linked Products"
830
+ msgstr "Связанные товары"
831
+
832
+ #: ../classes/admin/settings/sf-options.php:107
833
+ msgid "Attributes"
834
+ msgstr "Атрибуты"
835
+
836
+ #: ../classes/admin/settings/sf-options.php:108
837
+ msgid "Advanced"
838
+ msgstr "Рекомендованные"
839
+
840
+ #: ../classes/admin/settings/sf-options.php:115
841
+ msgid "Types"
842
+ msgstr "Типы"
843
+
844
+ #: ../classes/admin/settings/sf-options.php:116
845
+ msgid "CHECKING these boxes will HIDE these product types from the vendor"
846
+ msgstr ""
847
+ "ПРОВЕРЬТЕ эти области будут СКРЫВАТЬ эти характеристики товаров от продавца"
848
+
849
+ #: ../classes/admin/settings/sf-options.php:119
850
+ msgid "Simple"
851
+ msgstr "Простой"
852
+
853
+ #: ../classes/admin/settings/sf-options.php:120
854
+ msgid "Variable"
855
+ msgstr "Вариативный"
856
+
857
+ #: ../classes/admin/settings/sf-options.php:121
858
+ msgid "Grouped"
859
+ msgstr "Сгруппированный"
860
+
861
+ #: ../classes/admin/settings/sf-options.php:122
862
+ msgid "External / affiliate"
863
+ msgstr "Внешний/партнерский"
864
+
865
+ #: ../classes/admin/settings/sf-options.php:129
866
+ msgid "Type options"
867
+ msgstr "Введите значения"
868
+
869
+ #: ../classes/admin/settings/sf-options.php:130
870
+ msgid "CHECKING these boxes will HIDE these product options from the vendor"
871
+ msgstr "ПРОВЕРКА эти области будут СКРЫВАТЬ эти значения товаров от продавца"
872
+
873
+ #: ../classes/admin/settings/sf-options.php:133
874
+ msgid "Virtual"
875
+ msgstr "Виртуальный"
876
+
877
+ #: ../classes/admin/settings/sf-options.php:134
878
+ msgid "Downloadable"
879
+ msgstr "Скачиваемый"
880
+
881
+ #: ../classes/admin/settings/sf-options.php:141
882
+ msgid "Miscellaneous"
883
+ msgstr "Прочее"
884
+
885
+ #: ../classes/admin/settings/sf-options.php:145
886
+ msgid "SKU"
887
+ msgstr "Артикул"
888
+
889
+ #: ../classes/admin/settings/sf-options.php:146
890
+ msgid "Featured"
891
+ msgstr "Рекомендуемые"
892
+
893
+ #: ../classes/admin/settings/sf-options.php:147
894
+ msgid "Duplicate Product"
895
+ msgstr "Дублировать товар"
896
+
897
+ #: ../classes/admin/settings/sf-options.php:154
898
+ msgid "Stylesheet"
899
+ msgstr "Таблица стилей"
900
+
901
+ #: ../classes/admin/settings/sf-options.php:155
902
+ msgid ""
903
+ "You can add CSS in this textarea, which will be loaded on the product add/"
904
+ "edit page for vendors."
905
+ msgstr ""
906
+ "Вы можете добавить CSS в эту область , которая будет добавлена к товару "
907
+ "добавить/отредактировать страницу для продавцов."
908
+
909
+ #: ../classes/admin/settings/sf-options.php:162
910
+ msgid "Permissions"
911
+ msgstr "Разрешения"
912
+
913
+ #: ../classes/admin/settings/sf-options.php:162
914
+ msgid "General permissions used around the shop"
915
+ msgstr "Общие разрешения используемые ко всему магазину"
916
+
917
+ #: ../classes/admin/settings/sf-options.php:166
918
+ msgid "View orders"
919
+ msgstr "Просмотреть заказы"
920
+
921
+ #: ../classes/admin/settings/sf-options.php:167
922
+ msgid "Show customer details such as email, address, name, etc, for each order"
923
+ msgstr ""
924
+ "Показать информацию о клиенте, такие как электронная почта, адрес, имя и т."
925
+ "д., для каждого заказа"
926
+
927
+ #: ../classes/admin/settings/sf-options.php:174
928
+ msgid "View comments"
929
+ msgstr "Посмотреть комментарии"
930
+
931
+ #: ../classes/admin/settings/sf-options.php:175
932
+ msgid "View all vendor comments for an order on the frontend"
933
+ msgstr "Просмотреть все комментарии продавца для заказа во фронтенде"
934
+
935
+ #: ../classes/admin/settings/sf-options.php:182
936
+ msgid "Submit comments"
937
+ msgstr "Отправить комментарии"
938
+
939
+ #: ../classes/admin/settings/sf-options.php:183
940
+ msgid ""
941
+ "Submit comments for an order on the frontend. Eg, tracking ID for a product"
942
+ msgstr ""
943
+ "Отправить комментарии для заказа во фронтенде. Например, номер отслеживания "
944
+ "товара"
945
+
946
+ #: ../classes/admin/settings/sf-options.php:190
947
+ msgid "View email addresses"
948
+ msgstr "Посмотреть email адрес"
949
+
950
+ #: ../classes/admin/settings/sf-options.php:191
951
+ msgid ""
952
+ "While viewing order details on the frontend, you can disable or enable email "
953
+ "addresses"
954
+ msgstr ""
955
+ "При просмотре деталей заказа во фронтенде, вы можете отключить или включить "
956
+ "адреса электронной почты"
957
+
958
+ #: ../classes/admin/settings/sf-options.php:198
959
+ msgid "Export a CSV file of orders for a product"
960
+ msgstr "Экспорт файла CSV заказов на товары"
961
+
962
+ #: ../classes/admin/settings/sf-options.php:199
963
+ msgid "Vendors could export orders for a product on the frontend"
964
+ msgstr "Продавцы могут экспортировать заказы на товары на фронтенде"
965
+
966
+ #: ../classes/admin/settings/sf-options.php:206
967
+ msgid "Reports"
968
+ msgstr "Отчеты"
969
+
970
+ #: ../classes/admin/settings/sf-options.php:207
971
+ msgid ""
972
+ "<strike>View backend sales reports</strike>. <strong>Depreciated</strong>"
973
+ msgstr ""
974
+ "<strike>Просмотреть бекенд отчеты по продажам</strike>. <strong>Устаревшие</"
975
+ "strong>"
976
+
977
+ #: ../classes/admin/settings/sf-options.php:208
978
+ msgid ""
979
+ "This option has been removed and will no longer function. It will be "
980
+ "completely removed in future versions. Use front end reports if you require "
981
+ "them. "
982
+ msgstr ""
983
+ "Эта опция была удалена и больше не будет функционировать. Полностью удалено "
984
+ "будет в будущих версиях. Используйте фронтенд отчеты, если вы в них "
985
+ "нуждаетесь."
986
+
987
+ #: ../classes/admin/settings/sf-options.php:215
988
+ msgid "View Frontend sales reports"
989
+ msgstr "Просмотреть фронтенд отчеты о продажах "
990
+
991
+ #: ../classes/admin/settings/sf-options.php:216
992
+ msgid ""
993
+ "Sales table on the frontend on the My Account page. The table will only "
994
+ "display sales data that pertain to their products"
995
+ msgstr ""
996
+ "Таблица продаж на внешнем интерфейсе расположена на странице Мой аккаунт. В "
997
+ "таблице будет отображаться только данные о продажах, которые относятся к их "
998
+ "товарам"
999
+
1000
+ #: ../classes/admin/settings/sf-options.php:224
1001
+ msgid "Submit products"
1002
+ msgstr "Разместить товары"
1003
+
1004
+ #: ../classes/admin/settings/sf-options.php:225
1005
+ msgid ""
1006
+ "Vendors could submit a product through the backend, and an admin would "
1007
+ "approve or deny it"
1008
+ msgstr ""
1009
+ "Продавцы могут отправить товар через бэкэнд и администратор утвердит или "
1010
+ "отклонит его"
1011
+
1012
+ #: ../classes/admin/settings/sf-options.php:232
1013
+ msgid "Edit live products"
1014
+ msgstr "Редактировать товары"
1015
+
1016
+ #: ../classes/admin/settings/sf-options.php:233
1017
+ msgid ""
1018
+ "Vendors could edit an approved product after it has already gone live. There "
1019
+ "is no approval or review after editing a live product. This could be "
1020
+ "dangerous with malicious vendors, so take caution."
1021
+ msgstr ""
1022
+ "Продавцы могут редактировать утвержденный товар, который уже прошел "
1023
+ "одобрение. После редактирования товара нет утверждения или пересмотра . Это "
1024
+ "может быть опасно с не добросовестными продавцами, так что будьте бдительны."
1025
+
1026
+ #: ../classes/admin/settings/sf-options.php:240
1027
+ msgid "Submit products live without requiring approval"
1028
+ msgstr "Размещать товары сразу без запроса на утверждение"
1029
+
1030
+ #: ../classes/admin/settings/sf-options.php:241
1031
+ msgid ""
1032
+ "Vendors can submit products without review or approval from a shop admin. "
1033
+ "This could be dangerous with malicious vendors, so take caution."
1034
+ msgstr ""
1035
+ "Продавцы могут размещать товары без просмотра и одобрения администратора. "
1036
+ "Это может быть опасно с не добросовестными продавцами, так что будьте "
1037
+ "бдительны."
1038
+
1039
+ #: ../classes/admin/settings/sf-options.php:247
1040
+ msgid "Pages"
1041
+ msgstr "Страницы"
1042
+
1043
+ #: ../classes/admin/settings/sf-options.php:248
1044
+ msgid "Page configuration"
1045
+ msgstr "Конфигурация страницы"
1046
+
1047
+ #: ../classes/admin/settings/sf-options.php:251
1048
+ msgid "Vendor dashboard"
1049
+ msgstr "Область продавца"
1050
+
1051
+ #: ../classes/admin/settings/sf-options.php:252
1052
+ msgid ""
1053
+ "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
1054
+ "code><br/>By default, My Account > Vendor Dashboard should have the "
1055
+ "shortcode."
1056
+ msgstr ""
1057
+ "Выберите страницу которая имеет шорткод <code>[wcv_vendor_dashboard]</"
1058
+ "code><br/> По умолчанию, Мой аккаунт> Область продавца должна иметь шорткод."
1059
+
1060
+ #: ../classes/admin/settings/sf-options.php:259
1061
+ msgid "Shop settings"
1062
+ msgstr "Настройки магазина"
1063
+
1064
+ #: ../classes/admin/settings/sf-options.php:260
1065
+ msgid ""
1066
+ "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
1067
+ ">These are the shop settings a vendor can configure."
1068
+ msgstr ""
1069
+ "Выберите страницу которая имеет шорткод <code>[wcv_shop_settings]</code><br/"
1070
+ "> Эти настройки магазина продавец может править сам."
1071
+
1072
+ #: ../classes/admin/settings/sf-options.php:267
1073
+ msgid "Orders page"
1074
+ msgstr "Страница заказов"
1075
+
1076
+ #: ../classes/admin/settings/sf-options.php:268
1077
+ msgid ""
1078
+ "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
1079
+ "default, My Account > Orders should have the shortcode."
1080
+ msgstr ""
1081
+ "Выберите страницу которая имеет шорткод <code>[wcv_orders]</code><br/> По "
1082
+ "умолчанию, Мой аккаунт > Заказы будут иметь шорткод."
1083
+
1084
+ #: ../classes/admin/settings/sf-options.php:275
1085
+ msgid "Vendor terms"
1086
+ msgstr "Условия продавца"
1087
+
1088
+ #: ../classes/admin/settings/sf-options.php:276
1089
+ msgid ""
1090
+ "These terms are shown to a user when submitting an application to become a "
1091
+ "vendor.<br/>If left blank, no terms will be shown to the applicant."
1092
+ msgstr ""
1093
+ "Эти условия показываются пользователю при отправке запроса стать продавцом. "
1094
+ "<br/> Если оставить пустым, то никаких условий не будет показано заявителю."
1095
+
1096
+ #: ../classes/admin/settings/sf-options.php:283
1097
+ msgid "payments"
1098
+ msgstr "платежи"
1099
+
1100
+ #: ../classes/admin/settings/sf-options.php:294
1101
+ msgid "Payments"
1102
+ msgstr "Платежи"
1103
+
1104
+ #: ../classes/admin/settings/sf-options.php:296
1105
+ msgid "User payments"
1106
+ msgstr "Система платежей"
1107
+
1108
+ #: ../classes/admin/settings/sf-options.php:297
1109
+ #, php-format
1110
+ msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
1111
+ msgstr "Итоговая сумма комиссии: %s. <a href=\"%s\">Подробнее</a>."
1112
+
1113
+ #: ../classes/admin/settings/sf-options.php:298
1114
+ #, php-format
1115
+ msgid ""
1116
+ "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
1117
+ "\">here</a>."
1118
+ msgstr ""
1119
+ "Убедитесь что вы обновили параметры PayPal Adaptive Payments <a href=\"%s"
1120
+ "\">здесь</a>."
1121
+
1122
+ #: ../classes/admin/settings/sf-options.php:302
1123
+ msgid "Instant pay"
1124
+ msgstr "Мгновенная оплата"
1125
+
1126
+ #: ../classes/admin/settings/sf-options.php:303
1127
+ msgid "Instantly pay vendors their commission when an order is made"
1128
+ msgstr "Мгновенно оплачивать продавцам комиссию при выполнении заказа"
1129
+
1130
+ #: ../classes/admin/settings/sf-options.php:304
1131
+ msgid ""
1132
+ "For this to work, customers must checkout with the PayPal Adaptive Payments "
1133
+ "gateway. Using any other gateways will not pay vendors instantly"
1134
+ msgstr ""
1135
+ "Для этого, чтобы это работало, клиенты должны использовать PayPal Adaptive "
1136
+ "Payments. Использование любых других способов не позволит платить "
1137
+ "поставщикам мгновенно"
1138
+
1139
+ #: ../classes/admin/settings/sf-options.php:311
1140
+ msgid "Payment schedule"
1141
+ msgstr "График оплаты"
1142
+
1143
+ #: ../classes/admin/settings/sf-options.php:312
1144
+ msgid "Note: Schedule will only work if instant pay is unchecked"
1145
+ msgstr ""
1146
+ "Примечание: График оплат будет работать, только если не отмечено мгновенной "
1147
+ "оплаты"
1148
+
1149
+ #: ../classes/admin/settings/sf-options.php:317
1150
+ msgid "Weekly"
1151
+ msgstr "Еженедельно"
1152
+
1153
+ #: ../classes/admin/settings/sf-options.php:318
1154
+ msgid "Biweekly"
1155
+ msgstr "Раз в две недели"
1156
+
1157
+ #: ../classes/admin/settings/sf-options.php:319
1158
+ msgid "Monthly"
1159
+ msgstr "Ежемесячно"
1160
+
1161
+ #: ../classes/admin/settings/sf-options.php:320
1162
+ msgid "Manual"
1163
+ msgstr "Вручную"
1164
+
1165
+ #: ../classes/admin/settings/sf-options.php:321
1166
+ msgid "Now"
1167
+ msgstr "Сейчас"
1168
+
1169
+ #: ../classes/admin/settings/sf-options.php:326
1170
+ msgid "Email notification"
1171
+ msgstr "Уведомление по электронной почте"
1172
+
1173
+ #: ../classes/admin/settings/sf-options.php:327
1174
+ msgid ""
1175
+ "Send the WooCommerce admin an email each time a payment has been made via "
1176
+ "the payment schedule options above"
1177
+ msgstr ""
1178
+ "Отправлять Админу WooCommerce уведомления по электронной почте каждый раз, "
1179
+ "когда оплата была сделана с помощью графика оплаты"
1180
+
1181
+ #: ../classes/admin/views/html-vendor-settings-page.php:11
1182
+ #: ../templates/dashboard/settings/paypal-email-form.php:2
1183
+ msgid "PayPal Address"
1184
+ msgstr "PayPal адрес"
1185
+
1186
+ #: ../classes/admin/views/html-vendor-settings-page.php:15
1187
+ #: ../templates/dashboard/settings/paypal-email-form.php:3
1188
+ msgid "Your PayPal address is used to send you your commission."
1189
+ msgstr "Ваш PayPal адрес используется для оплаты вам."
1190
+
1191
+ #: ../classes/admin/views/html-vendor-settings-page.php:24
1192
+ #: ../templates/dashboard/settings/shop-name.php:3
1193
+ msgid "Your shop name is public and must be unique."
1194
+ msgstr "Ваше название магазина является публичным и должно быть уникальным."
1195
+
1196
+ #: ../classes/admin/views/html-vendor-settings-page.php:43
1197
+ #: ../templates/dashboard/settings/seller-info.php:4
1198
+ msgid "This is displayed on each of your products."
1199
+ msgstr "Это отображается на каждом из ваших товаров."
1200
+
1201
+ #: ../classes/admin/views/html-vendor-settings-page.php:49
1202
+ #: ../templates/dashboard/settings/shop-description.php:2
1203
+ msgid "Shop Description"
1204
+ msgstr "Описание магазина"
1205
+
1206
+ #: ../classes/admin/views/html-vendor-settings-page.php:61
1207
+ #: ../templates/dashboard/settings/shop-description.php:3
1208
+ #, php-format
1209
+ msgid "This is displayed on your <a href=\"%s\">shop page</a>."
1210
+ msgstr "Это отображается на вашей <a href=\"%s\">странице магазина</a>."
1211
+
1212
+ #: ../classes/admin/views/html-vendor-settings-page.php:70
1213
+ msgid "Save Shop Settings"
1214
+ msgstr "Сохранить настройки магазина"
1215
+
1216
+ #: ../classes/class-cron.php:87
1217
+ #, php-format
1218
+ msgid "Payment total: %s"
1219
+ msgstr "Общая сумма: %s"
1220
+
1221
+ #: ../classes/class-cron.php:148
1222
+ msgid "Once Weekly"
1223
+ msgstr "Один раз в неделю"
1224
+
1225
+ #: ../classes/class-cron.php:153
1226
+ msgid "Once every two weeks"
1227
+ msgstr "Один раз в две недели"
1228
+
1229
+ #: ../classes/class-cron.php:158
1230
+ msgid "Once a month"
1231
+ msgstr "Один раз в месяц"
1232
+
1233
+ #: ../classes/class-install.php:59 ../classes/class-install.php:213
1234
+ msgid "Pending Vendor"
1235
+ msgstr "Продавец в ожидании"
1236
+
1237
+ #: ../classes/class-install.php:164
1238
+ msgid "Vendor Dashboard"
1239
+ msgstr "Область продавца"
1240
+
1241
+ #: ../classes/front/class-vendor-cart.php:41
1242
+ #: ../classes/front/class-vendor-shop.php:283
1243
+ msgid "Sold by"
1244
+ msgstr "Продается"
1245
+
1246
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:48
1247
+ msgid "Order marked shipped."
1248
+ msgstr "Заказ отмечен как отправлен."
1249
+
1250
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:49
1251
+ msgid " has marked as shipped. "
1252
+ msgstr "был отмечен как отправленный."
1253
+
1254
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:75
1255
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:76
1256
+ msgid "Tracking number"
1257
+ msgstr "Номер для отслеживания"
1258
+
1259
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:78
1260
+ msgid "Success. Your tracking number has been updated."
1261
+ msgstr "Удача. Ваш номер для отслеживания был обновлен."
1262
+
1263
+ #: ../classes/front/orders/class-export-csv.php:19
1264
+ #: ../templates/dashboard/reports.php:18
1265
+ #: ../templates/emails/notify-vendor-shipped.php:23
1266
+ #: ../templates/emails/vendor-new-order.php:23
1267
+ msgid "Quantity"
1268
+ msgstr "Количество"
1269
+
1270
+ #: ../classes/front/orders/class-orders.php:107
1271
+ msgid ""
1272
+ "You haven't selected a product's orders to view! Please go back to the "
1273
+ "Vendor Dashboard and click Show Orders on the product you'd like to view."
1274
+ msgstr ""
1275
+ "Вы не выбрали заказы товара, чтобы просмотреть! Пожалуйста, вернитесь к "
1276
+ "области продавца и нажмите Показать Заказы на товар, который вы хотели бы "
1277
+ "просмотреть."
1278
+
1279
+ #: ../classes/front/orders/class-orders.php:111
1280
+ msgid "No orders."
1281
+ msgstr "Нет заказов."
1282
+
1283
+ #: ../classes/front/orders/class-orders.php:174
1284
+ msgid "Product Title"
1285
+ msgstr "Название товара"
1286
+
1287
+ #: ../classes/front/orders/class-orders.php:175
1288
+ msgid "Full name"
1289
+ msgstr "Полное имя"
1290
+
1291
+ #: ../classes/front/orders/class-orders.php:176
1292
+ msgid "Address"
1293
+ msgstr "Адрес"
1294
+
1295
+ #: ../classes/front/orders/class-orders.php:177
1296
+ msgid "City"
1297
+ msgstr "Город"
1298
+
1299
+ #: ../classes/front/orders/class-orders.php:178
1300
+ msgid "State"
1301
+ msgstr "Край, область"
1302
+
1303
+ #: ../classes/front/orders/class-orders.php:179
1304
+ msgid "Zip"
1305
+ msgstr "Индекс"
1306
+
1307
+ #: ../classes/front/orders/class-orders.php:180
1308
+ msgid "Email address"
1309
+ msgstr "Email адрес"
1310
+
1311
+ #: ../classes/front/orders/class-submit-comment.php:41
1312
+ msgid "You've left the comment field empty!"
1313
+ msgstr "Вы оставили поле для комментария пустым!"
1314
+
1315
+ #: ../classes/front/orders/class-submit-comment.php:63
1316
+ msgid "Success. The customer has been notified of your comment."
1317
+ msgstr "Удача. Клиент был уведомлен о вашем комментарии."
1318
+
1319
+ #: ../classes/front/signup/class-vendor-signup.php:45
1320
+ #: ../templates/dashboard/denied.php:22
1321
+ msgid "Apply to become a vendor? "
1322
+ msgstr "Хочешь стать продавцом?"
1323
+
1324
+ #: ../classes/front/signup/class-vendor-signup.php:54
1325
+ #: ../templates/dashboard/denied.php:33
1326
+ #, php-format
1327
+ msgid "I have read and accepted the <a href=\"%s\">terms and conditions</a>"
1328
+ msgstr "Я прочитал (а) и принимаю <a href=\"%s\">условия и соглашения</a>"
1329
+
1330
+ #: ../classes/front/signup/class-vendor-signup.php:88
1331
+ msgid "Application denied. You are an administrator."
1332
+ msgstr "Заявка отклонена. Вы являетесь администратором."
1333
+
1334
+ #: ../classes/front/signup/class-vendor-signup.php:90
1335
+ msgid "Your application has been submitted."
1336
+ msgstr "Ваша заявка отправлена"
1337
+
1338
+ #: ../classes/front/signup/class-vendor-signup.php:129
1339
+ #: ../classes/front/signup/class-vendor-signup.php:138
1340
+ msgid "You must accept the terms and conditions to become a vendor."
1341
+ msgstr "Вы должны принять условия и соглашения чтобы стать продавцом."
1342
+
1343
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:43
1344
+ msgid "PayPal Adaptive Payments"
1345
+ msgstr "PayPal Adaptive Payments"
1346
+
1347
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:119
1348
+ #, php-format
1349
+ msgid ""
1350
+ "Something went wrong. Response from PayPal invalidated this order. Status: "
1351
+ "%s."
1352
+ msgstr "Что-то пошло не так. Ответ PayPal аннулирует этот заказ. Статус: %s."
1353
+
1354
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:124
1355
+ msgid "IPN payment completed"
1356
+ msgstr "IPN Оплата завершена "
1357
+
1358
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:146
1359
+ msgid "Enable PayPal Adaptive Payments"
1360
+ msgstr "Включить PayPal Adaptive Payments"
1361
+
1362
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:152
1363
+ msgid "Method Title"
1364
+ msgstr "Вид Названия"
1365
+
1366
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:153
1367
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:70
1368
+ msgid "This controls the title which the user sees during checkout."
1369
+ msgstr ""
1370
+ "Это контролировать заголовок, который пользователь видит во время "
1371
+ "оформления заказа."
1372
+
1373
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:154
1374
+ msgid "PayPal"
1375
+ msgstr "PayPal"
1376
+
1377
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:159
1378
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:75
1379
+ msgid "Description"
1380
+ msgstr "Описание"
1381
+
1382
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:160
1383
+ msgid "This controls the description which the user sees during checkout."
1384
+ msgstr ""
1385
+ "Это контролирует описание, которое пользователь видит во время оформления "
1386
+ "заказа."
1387
+
1388
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:161
1389
+ msgid "Pay via PayPal!"
1390
+ msgstr "Оплатите через PayPal!"
1391
+
1392
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:172
1393
+ msgid "Live Credentials"
1394
+ msgstr "Текущие полномочия"
1395
+
1396
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:174
1397
+ #, php-format
1398
+ msgid ""
1399
+ "You must have an <a href=\"%s\">Application ID</a> to process live "
1400
+ "transactions. You do not need one for testing in Sandbox mode."
1401
+ msgstr ""
1402
+ "Вы должны иметь <a href=\"%s\">Application ID</a> для обработки сделок. Не "
1403
+ "требуется для тестирования в режиме Песочница."
1404
+
1405
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:179
1406
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:213
1407
+ msgid "PayPal Email"
1408
+ msgstr "PayPal Email"
1409
+
1410
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:180
1411
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:214
1412
+ msgid "The email address main payments should go to."
1413
+ msgstr "Адрес email на который пойдут выплаты."
1414
+
1415
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:185
1416
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:219
1417
+ msgid "API Username"
1418
+ msgstr "API Имя пользователя"
1419
+
1420
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:190
1421
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:224
1422
+ msgid "API Password"
1423
+ msgstr "API Пароль"
1424
+
1425
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:195
1426
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:229
1427
+ msgid "API Signature"
1428
+ msgstr "API Подпись"
1429
+
1430
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:200
1431
+ msgid "Application ID"
1432
+ msgstr "Application ID"
1433
+
1434
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:202
1435
+ msgid "Only required when doing live transactions."
1436
+ msgstr "Требуется только при выполнении операции."
1437
+
1438
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:206
1439
+ msgid "Sandbox Credentials"
1440
+ msgstr "Полномочия песочницы"
1441
+
1442
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:208
1443
+ #, php-format
1444
+ msgid ""
1445
+ "You can signup for a sandbox developer account <a href=\"%s\">here</a>. You "
1446
+ "need a developer account if you want to enable Sandbox mode for testing."
1447
+ msgstr ""
1448
+ "Чтобы использовать песочницу вы должны зарегистрировать аккаунт разработчика "
1449
+ "<a href=\"%s\">здесь</a>. Вы должны иметь учетную запись разработчика, если "
1450
+ "вы хотите включить режим песочницы для тестирования."
1451
+
1452
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:240
1453
+ msgid "Misc. Settings"
1454
+ msgstr "Разные настройки"
1455
+
1456
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:245
1457
+ msgid "Enable PayPal Sandbox mode"
1458
+ msgstr "Включить режим песочницы PayPal"
1459
+
1460
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:251
1461
+ msgid "Enable logging"
1462
+ msgstr "Включить ведение журнала"
1463
+
1464
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:269
1465
+ msgid ""
1466
+ "The PayPal Adaptive Payments gateway can instantly pay your vendors their "
1467
+ "due commission (if enabled). Also used to mass pay vendors on a schedule / "
1468
+ "manual method (if enabled)."
1469
+ msgstr ""
1470
+ " PayPal Adaptive Payments позволяет мгновенно платить вашим продавцам их "
1471
+ "комиссию (если включено). Также производить оплаты продавцам массово по "
1472
+ "графику или вручную (если включено)."
1473
+
1474
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1475
+ msgid "Gateway Disabled"
1476
+ msgstr "Шлюз выключен"
1477
+
1478
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1479
+ #, php-format
1480
+ msgid "%s does not support your store currency."
1481
+ msgstr "%s ваш магазин не поддерживает валюту."
1482
+
1483
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:384
1484
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:498
1485
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:153
1486
+ #, php-format
1487
+ msgid "Error: %s"
1488
+ msgstr "Ошибка: %s"
1489
+
1490
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:393
1491
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:394
1492
+ #, php-format
1493
+ msgid "Error ID: %s. %s"
1494
+ msgstr "Ошибка ID: %s. %s"
1495
+
1496
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:115
1497
+ msgid "No vendors found to pay. Maybe they haven't set a PayPal address?"
1498
+ msgstr ""
1499
+ "Не нашлось продавцов для оплаты. Может они не ввели платежный PayPal адрес?"
1500
+
1501
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:167
1502
+ msgid "All due commission has been paid for."
1503
+ msgstr "Все комиссионные были оплачены."
1504
+
1505
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:173
1506
+ msgid ""
1507
+ "All due commission has been paid for, but I could not clear it from their "
1508
+ "profiles due to an internal error. Commission will still be listed as due. "
1509
+ "Please manually mark the commission as paid from the Commissions page."
1510
+ msgstr ""
1511
+ "Вся комиссия была оплачена, но я не смог очистить ее с их профилей из-за "
1512
+ "внутренней ошибки. Комиссия по-прежнему будет перечислена как должное. "
1513
+ "Пожалуйста, вручную отметьте комиссию, как оплаченную со страницы комиссий."
1514
+
1515
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:208
1516
+ msgid "WooCommerce: Mass payments for vendors update"
1517
+ msgstr "WooCommerce: Массовые оплаты продавцам обновлены"
1518
+
1519
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:210
1520
+ msgid ""
1521
+ "Hello! A payment was just triggered to mass pay all vendors their due "
1522
+ "commission."
1523
+ msgstr ""
1524
+ "Здравствуйте! Платеж был только что запущен на массовую оплату продавцам "
1525
+ "комиссии."
1526
+
1527
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:211
1528
+ #, php-format
1529
+ msgid "Payment status: %s."
1530
+ msgstr "Статус платежа : %s."
1531
+
1532
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:212
1533
+ #, php-format
1534
+ msgid "Payment message: %s."
1535
+ msgstr "Сообщение оплаты: %s."
1536
+
1537
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:215
1538
+ #, php-format
1539
+ msgid "Payment total: %s."
1540
+ msgstr "Итоговая плата: %s."
1541
+
1542
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:35
1543
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:71
1544
+ msgid "WC Vendors Test Gateway"
1545
+ msgstr "WC Vendors тестовый шлюз"
1546
+
1547
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:36
1548
+ msgid ""
1549
+ "This gateway will set orders to processing upon receipt allowing you to test "
1550
+ "transactions in your store. Some WooCommerce included gateways have "
1551
+ "problems with this - you should use this gateway for all of your non-PayPal "
1552
+ "testing."
1553
+ msgstr ""
1554
+ "Этот шлюз позволит запустить заказ в режиме тестирования вплоть до "
1555
+ "получения, позволяя проверить сделки в вашем магазине. Некоторые шлюзы "
1556
+ "включенные в WooCommerce имеют проблемы с этим - вы должны использовать этот "
1557
+ "шлюз для всех ваших не-PayPal тестов."
1558
+
1559
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:64
1560
+ msgid "Enable WC Vendors Test Gateway Payment"
1561
+ msgstr "Включить WC Vendors тестовый шлюз оплат"
1562
+
1563
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:68
1564
+ msgid "Title"
1565
+ msgstr "Название"
1566
+
1567
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:77
1568
+ msgid "Payment method description that the customer will see on your checkout."
1569
+ msgstr ""
1570
+ "Описание оплаты, которое клиент будет видеть во время оформления заказа."
1571
+
1572
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:78
1573
+ msgid ""
1574
+ "This is a test gateway -- not to be used on live sites for live "
1575
+ "transactions. <a href=\"http://www.wcvendors.com/\" target=\"top\">Click "
1576
+ "here to visit WCVendors.com</a>."
1577
+ msgstr ""
1578
+ "Это тестовый шлюз -- не использовать с реальными сделками. <a href=\"http://"
1579
+ "www.wcvendors.com/\" target=\"top\">Кликните здесь чтобы посетить WCVendors."
1580
+ "com</a>."
1581
+
1582
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:82
1583
+ msgid "Instructions"
1584
+ msgstr "Инструкции"
1585
+
1586
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:84
1587
+ msgid ""
1588
+ "Success! Your test order is now marked as processing and any vendors will "
1589
+ "be sent an email as long as you have the Notify Vendors email enabled under "
1590
+ "WooCommerce--Settings--Emails."
1591
+ msgstr ""
1592
+ "Успех! Ваш тестовый заказ сейчас отмечен как в обработке и любым продавцам "
1593
+ "будут отправляться письма так долго, сколько у вас будет отметка на "
1594
+ "Уведомлять продавцов письмом, включенная в WooCommerce--Настройки--Emails."
1595
+
1596
+ #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:124
1597
+ msgid "Test gateway transation complete. Order processing."
1598
+ msgstr "Тестовый шлюз транзакцию завершил. Заказ в обработке."
1599
+
1600
+ #: ../templates/dashboard/denied.php:8
1601
+ msgid ""
1602
+ "Your account has not yet been approved to become a vendor. When it is, you "
1603
+ "will receive an email telling you that your account is approved!"
1604
+ msgstr ""
1605
+ "Ваш аккаунт еще не подтвержден в качестве продавца. Как только это "
1606
+ "произойдет, вы получите письмо с уведомлением!"
1607
+
1608
+ #: ../templates/dashboard/denied.php:12
1609
+ msgid "Your account is not setup as a vendor."
1610
+ msgstr "Ваш аккаунт не настроен как Продавец."
1611
+
1612
+ #: ../templates/dashboard/denied.php:53
1613
+ msgid "Submit"
1614
+ msgstr "Отправить"
1615
+
1616
+ #: ../templates/dashboard/orders.php:7 ../templates/dashboard/orders.php:10
1617
+ msgid "Hide items"
1618
+ msgstr "Скрыть детали"
1619
+
1620
+ #: ../templates/dashboard/orders.php:8 ../templates/dashboard/orders.php:75
1621
+ msgid "View items"
1622
+ msgstr "Просмотреть детали"
1623
+
1624
+ #: ../templates/dashboard/orders.php:37
1625
+ msgid "Links"
1626
+ msgstr "Ссылки, связи"
1627
+
1628
+ #: ../templates/dashboard/orders.php:76
1629
+ msgid "Unmark shipped"
1630
+ msgstr "Снять выделение отправлены"
1631
+
1632
+ #: ../templates/dashboard/orders.php:77
1633
+ msgid "Tracking"
1634
+ msgstr "Отслеживание"
1635
+
1636
+ #: ../templates/dashboard/orders.php:136
1637
+ msgid "You have no orders during this period."
1638
+ msgstr "У вас нет заказов за этот период."
1639
+
1640
+ #: ../templates/dashboard/reports.php:1
1641
+ msgid "Sales Report"
1642
+ msgstr "Отчет о продажах"
1643
+
1644
+ #: ../templates/dashboard/reports.php:20
1645
+ msgid "Rate"
1646
+ msgstr "Ставка"
1647
+
1648
+ #: ../templates/dashboard/reports.php:47
1649
+ msgid "Show Orders"
1650
+ msgstr "Показать заказы"
1651
+
1652
+ #: ../templates/dashboard/reports.php:56
1653
+ msgid "Totals"
1654
+ msgstr "Итого"
1655
+
1656
+ #: ../templates/dashboard/reports.php:71
1657
+ msgid "You have no sales during this period."
1658
+ msgstr "У вас нет продаж за этот период."
1659
+
1660
+ #: ../templates/dashboard/reports.php:82
1661
+ msgid "You haven't made any sales yet."
1662
+ msgstr "Вы еще не совершили продаж."
1663
+
1664
+ #: ../templates/dashboard/settings/settings.php:47
1665
+ msgid "Save"
1666
+ msgstr "Сохранить"
1667
+
1668
+ #: ../templates/emails/application-status.php:5
1669
+ #, php-format
1670
+ msgid "Hi there. This is a notification about a vendor application on %s."
1671
+ msgstr "Привет. Это сообщение о заявке продавца %s."
1672
+
1673
+ #: ../templates/emails/application-status.php:8
1674
+ #, php-format
1675
+ msgid "Application status: %s"
1676
+ msgstr "Статус заявки: %s"
1677
+
1678
+ #: ../templates/emails/application-status.php:9
1679
+ #, php-format
1680
+ msgid "Applicant username: %s"
1681
+ msgstr "Имя заявителя: %s"
1682
+
1683
+ #: ../templates/emails/new-product.php:5
1684
+ #, php-format
1685
+ msgid "Hi there. This is a notification about a new product on %s."
1686
+ msgstr "Привет. Это уведомление о новом товаре %s."
1687
+
1688
+ #: ../templates/emails/new-product.php:8
1689
+ #, php-format
1690
+ msgid "Product title: %s"
1691
+ msgstr "Имя товара: %s"
1692
+
1693
+ #: ../templates/emails/new-product.php:9
1694
+ #, php-format
1695
+ msgid "Submitted by: %s"
1696
+ msgstr "Отправлено: %s"
1697
+
1698
+ #: ../templates/emails/new-product.php:10
1699
+ #, php-format
1700
+ msgid "Edit product: %s"
1701
+ msgstr "Отредактируйте товар: %s"
1702
+
1703
+ #: ../templates/emails/notify-vendor-shipped.php:13
1704
+ msgid ""
1705
+ "A vendor has marked part of your order as shipped. The items that are "
1706
+ "shipped are as follows:"
1707
+ msgstr ""
1708
+ "Продавец отметил часть заказа как отправленный. Пункты которые отправлены "
1709
+ "следующие:"
1710
+
1711
+ #: ../templates/emails/notify-vendor-shipped.php:17
1712
+ #: ../templates/emails/vendor-new-order.php:17
1713
+ #, php-format
1714
+ msgid "Order: %s"
1715
+ msgstr "Заказ: %s"
1716
+
1717
+ #: ../templates/emails/notify-vendor-shipped.php:24
1718
+ #: ../templates/emails/vendor-new-order.php:24
1719
+ msgid "Price"
1720
+ msgstr "Цена"
1721
+
1722
+ #: ../templates/emails/notify-vendor-shipped.php:50
1723
+ #: ../templates/emails/vendor-new-order.php:50
1724
+ msgid "Customer details"
1725
+ msgstr "Реквизиты клиента"
1726
+
1727
+ #: ../templates/emails/notify-vendor-shipped.php:53
1728
+ #: ../templates/emails/vendor-new-order.php:53
1729
+ msgid "Email:"
1730
+ msgstr "Email:"
1731
+
1732
+ #: ../templates/emails/notify-vendor-shipped.php:56
1733
+ #: ../templates/emails/vendor-new-order.php:56
1734
+ msgid "Tel:"
1735
+ msgstr "Тел:"
1736
+
1737
+ #: ../templates/emails/vendor-new-order.php:13
1738
+ #, php-format
1739
+ msgid "You have received an order from %s. Their order is as follows:"
1740
+ msgstr "Вы получили заказ от %s. Заказ на:"
1741
+
1742
+ #: ../templates/orders/csv-export.php:6
1743
+ msgid "Export orders"
1744
+ msgstr "Экспорт заказов"
1745
+
1746
+ #: ../templates/orders/customer-note/customer-note.php:4
1747
+ msgid "Customer note"
1748
+ msgstr "Примечание клиента"
1749
+
1750
+ #: ../templates/orders/customer-note/customer-note.php:8
1751
+ msgid "No customer note."
1752
+ msgstr "Примечаний клиента нет."
1753
+
1754
+ #: ../templates/orders/shipping/shipping-form.php:6
1755
+ msgid "Provider:"
1756
+ msgstr "Поставщик:"
1757
+
1758
+ #: ../templates/orders/shipping/shipping-form.php:8
1759
+ msgid "Custom Provider"
1760
+ msgstr "Клиентский поставщик"
1761
+
1762
+ #: ../templates/orders/shipping/shipping-form.php:31
1763
+ msgid "Provider Name:"
1764
+ msgstr "Имя поставщика:"
1765
+
1766
+ #: ../templates/orders/shipping/shipping-form.php:40
1767
+ msgid "Tracking number:"
1768
+ msgstr "Номер отслеживания:"
1769
+
1770
+ #: ../templates/orders/shipping/shipping-form.php:48
1771
+ msgid "Tracking link:"
1772
+ msgstr "Ссылка отслеживания:"
1773
+
1774
+ #: ../templates/orders/shipping/shipping-form.php:58
1775
+ msgid "Date shipped:"
1776
+ msgstr "Дата доставки:"
1777
+
1778
+ #: ../templates/orders/shipping/shipping-form.php:66
1779
+ msgid "Preview:"
1780
+ msgstr "Предварительный просмотр:"
1781
+
1782
+ #: ../templates/orders/shipping/shipping-form.php:66
1783
+ msgid "Click here to track your shipment"
1784
+ msgstr "Нажмите здесь, чтобы отследить свою посылку"
1785
+
1786
+ #: ../templates/orders/shipping/shipping-form.php:75
1787
+ msgid "Update tracking number"
1788
+ msgstr "Обновите номер отслеживания"
1789
+
1790
+ #: ../templates/orders/shipping/shipping-form.php:77
1791
+ msgid "Mark as shipped"
1792
+ msgstr "Отмечено как отпралено"
1793
+
1794
+ #: ../templates/orders/table-body.php:25
1795
+ #, php-format
1796
+ msgid "Quantity: %d"
1797
+ msgstr "Количество: %d"
readme.txt CHANGED
@@ -6,7 +6,7 @@ Author URI: http://www.wcvendors.com/
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
  Tested up to: 4.3.1
9
- Stable tag: 1.8.0
10
  License: GPLv2 or later
11
 
12
  The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
@@ -113,6 +113,14 @@ No Upgrade required at this time.
113
 
114
  == Changelog ==
115
 
 
 
 
 
 
 
 
 
116
  = Version 1.8.0 - 31st October 2015 =
117
 
118
  * Fixed: Mark $0.00 commissions as paid instead of due #205
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
  Tested up to: 4.3.1
9
+ Stable tag: 1.8.1
10
  License: GPLv2 or later
11
 
12
  The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
113
 
114
  == Changelog ==
115
 
116
+ = Version 1.8.1 - 17th November 2015 =
117
+
118
+ * Added: New options updated action for settings
119
+ * Added: New plugin activation hook for testing woocommerce active
120
+ * Added: vendor id to get shipping due filter
121
+ * Added: Warning on settings page if user registration in WooCommerce is not enabled
122
+ * Added: Russian Translations thanks Natalia
123
+
124
  = Version 1.8.0 - 31st October 2015 =
125
 
126
  * Fixed: Mark $0.00 commissions as paid instead of due #205