WC Vendors - Version 1.7.1

Version Description

No Upgrade required at this time.

Download this release

Release Info

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

Code changes from version 1.7.0 to 1.7.1

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