WC Vendors - Version 1.9.5

Version Description

No Upgrade required at this time.

Download this release

Release Info

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

Code changes from version 1.9.4 to 1.9.5

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