WC Vendors - Version 1.9.4

Version Description

No Upgrade required at this time.

Download this release

Release Info

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

Code changes from version 1.9.3 to 1.9.4

assets/js/wcv-commissions.js CHANGED
@@ -1,5 +1,11 @@
 
1
  jQuery(function(){
2
-
3
- jQuery('.select2').select2();
 
 
 
 
 
4
 
5
  });
1
+ // global variable
2
  jQuery(function(){
3
+
4
+ jQuery('.select2').select2(
5
+ {
6
+ placeholder: wcv_commissions_select.placeholder,
7
+ allowClear: wcv_commissions_select.allowclear
8
+ }
9
+ );
10
 
11
  });
changelog.txt CHANGED
@@ -1,5 +1,29 @@
1
  Changelog for WC Vendors
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  Version 1.9.3
4
 
5
  * Fixed: Only load asset on orders page in admin
1
  Changelog for WC Vendors
2
 
3
+ Version 1.9.4
4
+
5
+ * Added: Filter to add delayed payment possibility #309
6
+ * Added: WPML support configuration file
7
+ * Updated: Brazilian translation files thanks Luis!
8
+ * Fixed: Using "date_i18n" instead of just "date" #316 from CasperBraske
9
+ * Fixed: Geczy text domain in the settings file #314
10
+ * Fixed: Commissions lock on one vendor after some actions are made #311
11
+ * Fixed: Vendor dashboard Orders Export link is dead #306
12
+ * Fixed: Vendor sorting in commissions - no option to NOT choose a vendor #305
13
+ * Fixed: vendor order admin product metadata loading #298 from mikko-niemikorpi
14
+ * Fixed: Commission status translatable in reports thanks CasperBraske
15
+ * Fixed: Translatable strings thanks CasperBraske
16
+ * Fixed: Issues with translation strings
17
+ * Fixed: Incorrect variable reference
18
+ * Fixed: bp_setup_current_user was called incorrectly
19
+ * Fixed: Display of variations on main dashboard
20
+ * Fixed: Trying to get property of non-object
21
+ * Fixed: Variation data styles in order display in wp-admin
22
+ * Fixed: Save user meta fields when pending vendor
23
+ * Fixed: Incorrect url string format in french translation
24
+ * Templates Updated:
25
+ templates/dashboard/orders.php
26
+
27
  Version 1.9.3
28
 
29
  * Fixed: Only load asset on orders page in admin
class-wc-vendors.php CHANGED
@@ -8,9 +8,9 @@
8
  * Author URI: https://www.wcvendors.com
9
  * GitHub Plugin URI: https://github.com/wcvendors/wcvendors
10
  *
11
- * Version: 1.9.3
12
  * Requires at least: 4.0.0
13
- * Tested up to: 4.6.0
14
  *
15
  * Text Domain: wcvendors
16
  * Domain Path: /languages/
@@ -72,7 +72,7 @@ if ( wcv_is_woocommerce_activated() ) {
72
  if ( !defined( 'wcv_plugin_dir_path' ) ) define( 'wcv_plugin_dir_path', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
73
 
74
 
75
- define('WCV_VERSION', '1.9.3' );
76
 
77
  /**
78
  * Main Product Vendor class
@@ -107,6 +107,7 @@ if ( wcv_is_woocommerce_activated() ) {
107
  add_action( 'plugins_loaded', array( $this, 'load_settings' ) );
108
  add_action( 'plugins_loaded', array( $this, 'include_gateways' ) );
109
  add_action( 'plugins_loaded', array( $this, 'include_core' ) );
 
110
  add_action( 'current_screen', array( $this, 'include_assets' ) );
111
 
112
  add_filter( 'plugin_row_meta', array($this, 'plugin_row_meta'), 10, 2 );
@@ -239,18 +240,30 @@ if ( wcv_is_woocommerce_activated() ) {
239
  new WCV_Cron;
240
  new WCV_Orders;
241
  new WCV_Vendor_Dashboard;
242
- new WCV_Product_Meta;
243
- new WCV_Vendor_Reports;
244
  new WCV_Admin_Setup;
245
  new WCV_Vendor_Admin_Dashboard;
246
  new WCV_Admin_Reports;
247
  new WCV_Vendor_Applicants;
248
- new WCV_Admin_Users;
249
  new WCV_Emails;
250
  new WCV_Vendor_Signup;
251
  new WCV_Shortcodes;
252
  }
253
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  /**
255
  * Load plugin assets
256
  */
8
  * Author URI: https://www.wcvendors.com
9
  * GitHub Plugin URI: https://github.com/wcvendors/wcvendors
10
  *
11
+ * Version: 1.9.4
12
  * Requires at least: 4.0.0
13
+ * Tested up to: 4.6.1
14
  *
15
  * Text Domain: wcvendors
16
  * Domain Path: /languages/
72
  if ( !defined( 'wcv_plugin_dir_path' ) ) define( 'wcv_plugin_dir_path', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
73
 
74
 
75
+ define('WCV_VERSION', '1.9.4' );
76
 
77
  /**
78
  * Main Product Vendor class
107
  add_action( 'plugins_loaded', array( $this, 'load_settings' ) );
108
  add_action( 'plugins_loaded', array( $this, 'include_gateways' ) );
109
  add_action( 'plugins_loaded', array( $this, 'include_core' ) );
110
+ add_action( 'init', array( $this, 'include_init' ) );
111
  add_action( 'current_screen', array( $this, 'include_assets' ) );
112
 
113
  add_filter( 'plugin_row_meta', array($this, 'plugin_row_meta'), 10, 2 );
240
  new WCV_Cron;
241
  new WCV_Orders;
242
  new WCV_Vendor_Dashboard;
 
 
243
  new WCV_Admin_Setup;
244
  new WCV_Vendor_Admin_Dashboard;
245
  new WCV_Admin_Reports;
246
  new WCV_Vendor_Applicants;
 
247
  new WCV_Emails;
248
  new WCV_Vendor_Signup;
249
  new WCV_Shortcodes;
250
  }
251
 
252
+
253
+ /**
254
+ * These need to be initlized later in loading to fix interaction with other plugins that call current_user_can at the right time.
255
+ *
256
+ * @since 1.9.4
257
+ * @access public
258
+ */
259
+ public function include_init(){
260
+
261
+ new WCV_Vendor_Reports;
262
+ new WCV_Product_Meta;
263
+ new WCV_Admin_Users;
264
+
265
+ } // include_init()
266
+
267
  /**
268
  * Load plugin assets
269
  */
classes/admin/class-admin-page.php CHANGED
@@ -182,8 +182,16 @@ class WCV_Admin_Setup
182
 
183
  public static function commission_my_enqueue_script(){
184
 
 
 
 
 
 
185
  wp_enqueue_script( 'commissions_select2_styles_js', wcv_assets_url. 'js/select2.min.js', array('jquery') );
186
- wp_enqueue_script( 'commissions_select2_load_js', wcv_assets_url. 'js/wcv-commissions.js', array('jquery') );
 
 
 
187
 
188
  }
189
 
@@ -471,7 +479,7 @@ class WCV_Admin_Page extends WP_List_Table
471
  $m = isset( $_GET[ 'm' ] ) ? (int) $_GET[ 'm' ] : 0;
472
  ?>
473
  <select name="m" id="filter-by-date">
474
- <option<?php selected( $m, 0 ); ?> value='0'><?php _e( 'Show all dates' ); ?></option>
475
  <?php
476
  foreach ( $months as $arc_row ) {
477
  if ( 0 == $arc_row->year )
@@ -507,9 +515,9 @@ class WCV_Admin_Page extends WP_List_Table
507
  ?>
508
  <select name="com_status">
509
  <option<?php selected( $com_status, '' ); ?> value=''><?php _e( 'Show all Statuses', 'wcvendors' ); ?></option>
510
- <option<?php selected( $com_status, 'due' ); ?> value="due">Due</option>
511
- <option<?php selected( $com_status, 'paid' ); ?> value="paid">Paid</option>
512
- <option<?php selected( $com_status, 'reversed' ); ?> value="reversed">Reversed</option>
513
  </select>
514
  <?php
515
  }
@@ -532,6 +540,7 @@ class WCV_Admin_Page extends WP_List_Table
532
 
533
  // Generate the drop down
534
  $output = '<select style="width: 30%;" name="vendor_id" id="vendor_id" class="select2">';
 
535
  foreach ( (array) $users as $user ) {
536
  $select = selected( $user->ID, $vendor_id, false );
537
  $output .= "<option value='$user->ID' $select>$user->display_name</option>";
182
 
183
  public static function commission_my_enqueue_script(){
184
 
185
+ $select2_args = apply_filters( 'wcvendors_select2_commission_args', array(
186
+ 'placeholder' => __( 'Select a Vendor', 'wcvendors' ),
187
+ 'allowclear' => true,
188
+ ) );
189
+
190
  wp_enqueue_script( 'commissions_select2_styles_js', wcv_assets_url. 'js/select2.min.js', array('jquery') );
191
+
192
+ wp_register_script( 'commissions_select2_load_js', wcv_assets_url. 'js/wcv-commissions.js', array('jquery') );
193
+ wp_localize_script( 'commissions_select2_load_js', 'wcv_commissions_select', $select2_args );
194
+ wp_enqueue_script( 'commissions_select2_load_js' );
195
 
196
  }
197
 
479
  $m = isset( $_GET[ 'm' ] ) ? (int) $_GET[ 'm' ] : 0;
480
  ?>
481
  <select name="m" id="filter-by-date">
482
+ <option<?php selected( $m, 0 ); ?> value='0'><?php _e( 'Show all dates', 'wcvendors' ); ?></option>
483
  <?php
484
  foreach ( $months as $arc_row ) {
485
  if ( 0 == $arc_row->year )
515
  ?>
516
  <select name="com_status">
517
  <option<?php selected( $com_status, '' ); ?> value=''><?php _e( 'Show all Statuses', 'wcvendors' ); ?></option>
518
+ <option<?php selected( $com_status, 'due' ); ?> value="due"><?php _e( 'Due', 'wcvendors' ); ?></option>
519
+ <option<?php selected( $com_status, 'paid' ); ?> value="paid"><?php _e( 'Paid', 'wcvendors' ); ?></option>
520
+ <option<?php selected( $com_status, 'reversed' ); ?> value="reversed"><?php _e( 'Reversed', 'wcvendors' ); ?></option>
521
  </select>
522
  <?php
523
  }
540
 
541
  // Generate the drop down
542
  $output = '<select style="width: 30%;" name="vendor_id" id="vendor_id" class="select2">';
543
+ $output .= "<option></option>";
544
  foreach ( (array) $users as $user ) {
545
  $select = selected( $user->ID, $vendor_id, false );
546
  $output .= "<option value='$user->ID' $select>$user->display_name</option>";
classes/admin/class-admin-reports.php CHANGED
@@ -81,8 +81,11 @@ class WCV_Admin_Reports
81
  */
82
  function sales()
83
  {
 
84
  global $start_date, $end_date, $woocommerce, $wpdb;
85
 
 
 
86
  $start_date = !empty( $_POST[ 'start_date' ] ) ? $_POST[ 'start_date' ] : strtotime( date( 'Ymd', strtotime( date( 'Ym', current_time( 'timestamp' ) ) . '01' ) ) );
87
  $end_date = !empty( $_POST[ 'end_date' ] ) ? $_POST[ 'end_date' ] : strtotime( date( 'Ymd', current_time( 'timestamp' ) ) );
88
 
@@ -188,8 +191,8 @@ class WCV_Admin_Reports
188
  <td><?php echo get_the_title( $row->product_id ); ?></td>
189
  <td><?php echo WCV_Vendors::get_vendor_shop_name( $row->vendor_id ); ?></td>
190
  <td><?php echo woocommerce_price( $row->total_due + $row->total_shipping + $row->tax ) ?></td>
191
- <td><?php echo date( __( 'D j M Y \a\t h:ia', 'wcvendors' ), strtotime( $row->time ) ) ?></td>
192
- <td><?php echo $row->status ?></td>
193
  </tr>
194
  <?php endforeach; ?>
195
  </tbody>
81
  */
82
  function sales()
83
  {
84
+
85
  global $start_date, $end_date, $woocommerce, $wpdb;
86
 
87
+ $commission_status_labels = WCV_Commission::commission_status();
88
+
89
  $start_date = !empty( $_POST[ 'start_date' ] ) ? $_POST[ 'start_date' ] : strtotime( date( 'Ymd', strtotime( date( 'Ym', current_time( 'timestamp' ) ) . '01' ) ) );
90
  $end_date = !empty( $_POST[ 'end_date' ] ) ? $_POST[ 'end_date' ] : strtotime( date( 'Ymd', current_time( 'timestamp' ) ) );
91
 
191
  <td><?php echo get_the_title( $row->product_id ); ?></td>
192
  <td><?php echo WCV_Vendors::get_vendor_shop_name( $row->vendor_id ); ?></td>
193
  <td><?php echo woocommerce_price( $row->total_due + $row->total_shipping + $row->tax ) ?></td>
194
+ <td><?php echo date_i18n( __( 'D j M Y \a\t h:ia', 'wcvendors' ), strtotime( $row->time ) ) ?></td>
195
+ <td><?php echo $commission_status_labels[ $row->status ]; ?></td>
196
  </tr>
197
  <?php endforeach; ?>
198
  </tbody>
classes/admin/class-admin-users.php CHANGED
@@ -372,7 +372,7 @@ class WCV_Admin_Users
372
  {
373
  if ( !current_user_can( 'edit_user', $vendor_id ) ) return false;
374
 
375
- if ( ! WCV_Vendors::is_vendor( $vendor_id ) ) { return; }
376
 
377
  $users = get_users( array( 'meta_key' => 'pv_shop_slug', 'meta_value' => sanitize_title( $_POST[ 'pv_shop_name' ] ) ) );
378
  if ( empty( $users ) || $users[ 0 ]->ID == $vendor_id ) {
372
  {
373
  if ( !current_user_can( 'edit_user', $vendor_id ) ) return false;
374
 
375
+ if ( ! WCV_Vendors::is_pending( $vendor_id ) && ! WCV_Vendors::is_vendor( $vendor_id ) ) { return; }
376
 
377
  $users = get_users( array( 'meta_key' => 'pv_shop_slug', 'meta_value' => sanitize_title( $_POST[ 'pv_shop_name' ] ) ) );
378
  if ( empty( $users ) || $users[ 0 ]->ID == $vendor_id ) {
classes/admin/class-vendor-admin-dashboard.php CHANGED
@@ -213,8 +213,8 @@ class WCV_Vendor_Order_Page extends WP_List_Table
213
 
214
  //Set parent defaults
215
  parent::__construct( array(
216
- 'singular' => 'order',
217
- 'plural' => 'orders',
218
  'ajax' => false
219
  ) );
220
 
@@ -441,21 +441,21 @@ class WCV_Vendor_Order_Page extends WP_List_Table
441
 
442
  $items = $order->get_items();
443
 
444
- foreach ( $items as $key => $item) {
445
  if ( in_array( $item[ 'variation_id' ], $valid_items) || in_array( $item[ 'product_id' ], $valid_items ) ) {
446
- $valid[ ] = $item;
447
  }
448
  }
449
 
450
  $products = '';
451
 
452
- foreach ( $valid as $key => $item ) {
453
 
454
  $wc_product = new WC_Product( $item['product_id'] );
455
 
456
  $products .= '<strong>'. $item['qty'] . ' x ' . $item['name'] . '</strong><br />';
457
 
458
- if ( $metadata = $order->has_meta( $item['product_id'] ) ) {
459
  $products .= '<table cellspacing="0" class="wcv_display_meta">';
460
  foreach ( $metadata as $meta ) {
461
 
@@ -469,6 +469,8 @@ class WCV_Vendor_Order_Page extends WP_List_Table
469
  '_line_subtotal_tax',
470
  '_line_total',
471
  '_line_tax',
 
 
472
  WC_Vendors::$pv_options->get_option( 'sold_by_label' ),
473
  ) ) ) ) {
474
  continue;
@@ -488,7 +490,7 @@ class WCV_Vendor_Order_Page extends WP_List_Table
488
  $meta['meta_key'] = apply_filters( 'woocommerce_attribute_label', wc_attribute_label( $meta['meta_key'], $wc_product ), $meta['meta_key'] );
489
  }
490
 
491
- $products .= '<tr><th>' . wp_kses_post( rawurldecode( $meta['meta_key'] ) ) . ':</th><td>' . wp_kses_post( wpautop( make_clickable( rawurldecode( $meta['meta_value'] ) ) ) ) . '</td></tr>';
492
  }
493
  $products .= '</table>';
494
  }
@@ -496,7 +498,7 @@ class WCV_Vendor_Order_Page extends WP_List_Table
496
  }
497
 
498
  $shippers = (array) get_post_meta( $order->id, 'wc_pv_shipped', true );
499
- $shipped = in_array($user_id, $shippers) ? 'Yes' : 'No' ;
500
 
501
  $sum = WCV_Queries::sum_for_orders( array( $order->id ), array('vendor_id' =>get_current_user_id() ), false );
502
  $sum = reset( $sum );
213
 
214
  //Set parent defaults
215
  parent::__construct( array(
216
+ 'singular' => __( 'order', 'wcvendors' ),
217
+ 'plural' => __( 'orders', 'wcvendors' ),
218
  'ajax' => false
219
  ) );
220
 
441
 
442
  $items = $order->get_items();
443
 
444
+ foreach ( $items as $order_item_id => $item) {
445
  if ( in_array( $item[ 'variation_id' ], $valid_items) || in_array( $item[ 'product_id' ], $valid_items ) ) {
446
+ $valid[ $order_item_id ] = $item;
447
  }
448
  }
449
 
450
  $products = '';
451
 
452
+ foreach ( $valid as $order_item_id => $item ) {
453
 
454
  $wc_product = new WC_Product( $item['product_id'] );
455
 
456
  $products .= '<strong>'. $item['qty'] . ' x ' . $item['name'] . '</strong><br />';
457
 
458
+ if ( $metadata = $order->has_meta( $order_item_id ) ) {
459
  $products .= '<table cellspacing="0" class="wcv_display_meta">';
460
  foreach ( $metadata as $meta ) {
461
 
469
  '_line_subtotal_tax',
470
  '_line_total',
471
  '_line_tax',
472
+ '_vendor_order_item_id',
473
+ '_vendor_commission',
474
  WC_Vendors::$pv_options->get_option( 'sold_by_label' ),
475
  ) ) ) ) {
476
  continue;
490
  $meta['meta_key'] = apply_filters( 'woocommerce_attribute_label', wc_attribute_label( $meta['meta_key'], $wc_product ), $meta['meta_key'] );
491
  }
492
 
493
+ $products .= '<tr><th>' . wp_kses_post( rawurldecode( $meta['meta_key'] ) ) . ':</th><td>' . rawurldecode( $meta['meta_value'] ) . '</td></tr>';
494
  }
495
  $products .= '</table>';
496
  }
498
  }
499
 
500
  $shippers = (array) get_post_meta( $order->id, 'wc_pv_shipped', true );
501
+ $shipped = in_array($user_id, $shippers) ? __( 'Yes', 'wcvendors' ) : __( 'No', 'wcvendors' ) ;
502
 
503
  $sum = WCV_Queries::sum_for_orders( array( $order->id ), array('vendor_id' =>get_current_user_id() ), false );
504
  $sum = reset( $sum );
classes/admin/settings/classes/sf-class-format-options.php CHANGED
@@ -208,7 +208,7 @@ if ( !class_exists( 'SF_Format_Options' ) ) {
208
 
209
  if ( $select2 ) : ?>
210
  <script type="text/javascript">jQuery(function () {
211
- jQuery("#<?php echo $id; ?>").select2({ allowClear: true, placeholder: "<?php _e( 'Select a page...', 'geczy' ); ?>", width: '350px' });
212
  });</script>
213
  <?php endif;
214
 
208
 
209
  if ( $select2 ) : ?>
210
  <script type="text/javascript">jQuery(function () {
211
+ jQuery("#<?php echo $id; ?>").select2({ allowClear: true, placeholder: "<?php _e( 'Select a page...', 'wcvendors' ); ?>", width: '350px' });
212
  });</script>
213
  <?php endif;
214
 
classes/admin/settings/classes/sf-class-settings.php CHANGED
@@ -150,7 +150,7 @@ if ( !class_exists( 'SF_Settings_API' ) ) {
150
  $this_plugin = plugin_basename( $this->file );
151
  $page = strpos( $this->menu, '.php' ) ? $this->menu : 'admin.php';
152
  if ( $file == $this_plugin ) {
153
- $settings_link = '<a href="' . $page . '?page=' . $this->id . '">' . __( 'Settings', 'geczy' ) . '</a>';
154
  array_unshift( $links, $settings_link );
155
  }
156
 
@@ -299,7 +299,7 @@ if ( !class_exists( 'SF_Settings_API' ) ) {
299
  /* @TODO: Can prob add this to the activation hook. */
300
  $this->set_defaults( $this->current_options );
301
  } else {
302
- wp_die( __( 'Could not load settings at: ', 'geczy' ) . '<br/><code>' . $option_file . '</code>', __( 'Error - WP Settings Framework', 'geczy' ) );
303
  }
304
  }
305
 
@@ -365,7 +365,7 @@ if ( !class_exists( 'SF_Settings_API' ) ) {
365
  endforeach;
366
 
367
  do_action( $this->id . '_options_updated', $clean, $tabname );
368
- add_settings_error( $this->id, 'save_options', __( 'Settings saved.', 'geczy' ), 'updated' );
369
 
370
  update_option( WC_Vendors::$id . '_flush_rules', true );
371
 
@@ -483,7 +483,7 @@ if ( !class_exists( 'SF_Settings_API' ) ) {
483
  <p class="submit">
484
  <input type="hidden" name="currentTab" value="<?php echo $tabname; ?>">
485
  <input type="submit" name="update" class="button-primary"
486
- value="<?php echo sprintf( __( 'Save %s changes', 'geczy' ), $this->tab_headers[ $tabname ] ); ?>"/>
487
  </p>
488
  </form> <?php
489
 
@@ -496,7 +496,7 @@ if ( !class_exists( 'SF_Settings_API' ) ) {
496
  private function template_footer()
497
  {
498
 
499
- $message = apply_filters( 'wcvendors_footer_msg', __( 'Please help with a <a href="https://wordpress.org/support/view/plugin-reviews/wc-vendors?rate=5#postform" target="top">High Five!</a> | <a href="https://www.wcvendors.com/product/wc-vendors-pro/" target="top">WC Vendors Pro</a> | <a href="https://www.wcvendors.com/product/stripe-commissions-gateway/" target="top">Stripe Commissions & Gateway</a> | <a href="https://www.wcvendors.com/kb/" target="top">KnowledgeBase</a> | <a href="https://www.wcvendors.com/help/" target="top">Help Forums</a>', 'wc-vendors' ) );
500
 
501
  echo '<div><p>' . $message . '</a></p>';
502
  echo '</div>';
150
  $this_plugin = plugin_basename( $this->file );
151
  $page = strpos( $this->menu, '.php' ) ? $this->menu : 'admin.php';
152
  if ( $file == $this_plugin ) {
153
+ $settings_link = '<a href="' . $page . '?page=' . $this->id . '">' . __( 'Settings', 'wcvendors' ) . '</a>';
154
  array_unshift( $links, $settings_link );
155
  }
156
 
299
  /* @TODO: Can prob add this to the activation hook. */
300
  $this->set_defaults( $this->current_options );
301
  } else {
302
+ wp_die( __( 'Could not load settings at: ', 'wcvendors' ) . '<br/><code>' . $option_file . '</code>', __( 'Error - WP Settings Framework', 'wcvendors' ) );
303
  }
304
  }
305
 
365
  endforeach;
366
 
367
  do_action( $this->id . '_options_updated', $clean, $tabname );
368
+ add_settings_error( $this->id, 'save_options', __( 'Settings saved.', 'wcvendors' ), 'updated' );
369
 
370
  update_option( WC_Vendors::$id . '_flush_rules', true );
371
 
483
  <p class="submit">
484
  <input type="hidden" name="currentTab" value="<?php echo $tabname; ?>">
485
  <input type="submit" name="update" class="button-primary"
486
+ value="<?php echo sprintf( __( 'Save %s changes', 'wcvendors' ), $this->tab_headers[ $tabname ] ); ?>"/>
487
  </p>
488
  </form> <?php
489
 
496
  private function template_footer()
497
  {
498
 
499
+ $message = apply_filters( 'wcvendors_footer_msg', __( 'Please help with a <a href="https://wordpress.org/support/view/plugin-reviews/wc-vendors?rate=5#postform" target="top">High Five!</a> | <a href="https://www.wcvendors.com/product/wc-vendors-pro/" target="top">WC Vendors Pro</a> | <a href="https://www.wcvendors.com/product/stripe-commissions-gateway/" target="top">Stripe Commissions & Gateway</a> | <a href="https://www.wcvendors.com/kb/" target="top">KnowledgeBase</a> | <a href="https://www.wcvendors.com/help/" target="top">Help Forums</a>', 'wcvendors' ) );
500
 
501
  echo '<div><p>' . $message . '</a></p>';
502
  echo '</div>';
classes/admin/settings/sf-options.php CHANGED
@@ -326,7 +326,7 @@ $options[ ] = array( 'name' => __( 'Payments', 'wcvendors' ), 'type' => 'heading
326
  $options[ ] = array(
327
  'name' => __( 'PayPal Adaptive Payments Scheduling', 'wcvendors' ), 'type' => 'title', 'desc' =>
328
  sprintf( __( 'Total commission currently due: %s. <a href="%s">View details</a>.', 'wcvendors' ), !function_exists( 'woocommerce_price' ) ? $total_due : woocommerce_price( $total_due ), '?page=pv_admin_commissions' ) .
329
- '<br/><br/>' . sprintf( __( 'Make sure you update your PayPal Adaptive Payments settings <a href="%s">here</a>. <br><br>To instantly pay with Adaptive Payments you must activate the paypalap gateway in your Checkout settings. <br><a href="https://www.wcvendors.com/kb/configuring-paypal-adaptive-payments/" target="top">PayPal AP Application Help</a>. <br><br>Another gateway that offers instant payments to vendors that also accepts credit cards directly on your checkout page is Stripe. <br><a href="https://www.wcvendors.com/product/stripe-commissions-gateway/" target="top">Stripe Commissions & Gateway plugin</a> is $49 and specifically coded for WC Vendors and <a href="https://www.wcvendors.com/product/wc-vendors-pro/" target="top">WC Vendors Pro</a>.', 'wcvendors' ), 'admin.php?page=wc-settings&tab=checkout&section=wc_paypalap' )
330
  );
331
 
332
  $options[ ] = array(
326
  $options[ ] = array(
327
  'name' => __( 'PayPal Adaptive Payments Scheduling', 'wcvendors' ), 'type' => 'title', 'desc' =>
328
  sprintf( __( 'Total commission currently due: %s. <a href="%s">View details</a>.', 'wcvendors' ), !function_exists( 'woocommerce_price' ) ? $total_due : woocommerce_price( $total_due ), '?page=pv_admin_commissions' ) .
329
+ '<br/><br/>' . sprintf( __( 'Make sure you update your PayPal Adaptive Payments settings <a href="%s">here</a>. <br><br>To instantly pay with Adaptive Payments you must activate the PayPal AP gateway in your Checkout settings. <br><a href="https://www.wcvendors.com/kb/configuring-paypal-adaptive-payments/" target="top">PayPal AP Application Help</a>. <br><br>Another gateway that offers instant payments to vendors that also accepts credit cards directly on your checkout page is Stripe. <br><a href="https://www.wcvendors.com/product/stripe-commissions-gateway/" target="top">Stripe Commissions & Gateway plugin</a> is $49 and specifically coded for WC Vendors and <a href="https://www.wcvendors.com/product/wc-vendors-pro/" target="top">WC Vendors Pro</a>.', 'wcvendors' ), 'admin.php?page=wc-settings&tab=checkout&section=wc_paypalap' )
330
  );
331
 
332
  $options[ ] = array(
classes/class-commission.php CHANGED
@@ -60,6 +60,17 @@ class WCV_Commission
60
  }
61
  }
62
 
 
 
 
 
 
 
 
 
 
 
 
63
 
64
  /**
65
  * Reverse commission for an entire order
@@ -146,7 +157,7 @@ class WCV_Commission
146
  *
147
  * @return array
148
  */
149
- public function sum_total_due_for_order( $order_id )
150
  {
151
  global $wpdb;
152
 
@@ -171,7 +182,7 @@ class WCV_Commission
171
  'ids' => $commission_ids,
172
  );
173
 
174
- return $return;
175
  }
176
 
177
 
@@ -185,10 +196,11 @@ class WCV_Commission
185
  global $wpdb;
186
 
187
  $table_name = $wpdb->prefix . "pv_commission";
188
- $query = "SELECT id, vendor_id, total_due
189
- FROM `{$table_name}`
190
- WHERE status = %s";
191
- $results = $wpdb->get_results( $wpdb->prepare( $query, 'due' ) );
 
192
 
193
  return $results;
194
  }
60
  }
61
  }
62
 
63
+ public static function commission_status(){
64
+
65
+ return apply_filters( 'wcvendors_commission_status', array(
66
+ 'due' => __( 'Due', 'wcvendors' ),
67
+ 'paid' => __( 'Paid', 'wcvendors' ),
68
+ 'reversed' => __( 'Reversed', 'wcvendors' )
69
+ )
70
+ );
71
+
72
+ }
73
+
74
 
75
  /**
76
  * Reverse commission for an entire order
157
  *
158
  * @return array
159
  */
160
+ public function sum_total_due_for_order( $order_id, $status = 'due' )
161
  {
162
  global $wpdb;
163
 
182
  'ids' => $commission_ids,
183
  );
184
 
185
+ return $return;
186
  }
187
 
188
 
196
  global $wpdb;
197
 
198
  $table_name = $wpdb->prefix . "pv_commission";
199
+ $where = $wpdb->prepare( 'WHERE status = %s', 'due' );
200
+ $where = apply_filters( 'wcvendors_commission_all_due_where', $where );
201
+ $query = "SELECT id, vendor_id, total_due FROM `{$table_name}` $where";
202
+ $query = apply_filters( 'wcvendors_commission_all_due_sql', $wpdb->prepare( $query ) );
203
+ $results = $wpdb->get_results( $query );
204
 
205
  return $results;
206
  }
classes/class-install.php CHANGED
@@ -33,7 +33,7 @@ class WCV_Install
33
  // This is due to WC 2.6 api changes
34
  if ( is_object( $orders_page ) ) {
35
 
36
- if ( $orders_page->post_name === 'orders' ){
37
 
38
  wp_update_post(
39
  array (
33
  // This is due to WC 2.6 api changes
34
  if ( is_object( $orders_page ) ) {
35
 
36
+ if ( $orders_page && $orders_page->post_name === 'orders' ){
37
 
38
  wp_update_post(
39
  array (
classes/front/dashboard/class-vendor-dashboard.php CHANGED
@@ -341,9 +341,8 @@ class WCV_Vendor_Dashboard
341
  if ( empty( $products ) ) return false;
342
 
343
  // This is required to support existing installations after WC 2.6
344
- $orders_page_id = WC_Vendors::$pv_options->get_option( 'orders_page' );
345
- $orders_page_id = isset( $orders_page_id ) ? $orders_page_id : WC_Vendors::$pv_options->get_option( 'product_orders_page' );
346
-
347
  $orders_page = get_permalink( $orders_page_id );
348
  $default_commission = WC_Vendors::$pv_options->get_option( 'default_commission' );
349
  $total_qty = $total_cost = 0;
341
  if ( empty( $products ) ) return false;
342
 
343
  // This is required to support existing installations after WC 2.6
344
+ $orders_page_id = (string) WC_Vendors::$pv_options->get_option( 'orders_page' );
345
+ $orders_page_id = ( strlen( $orders_page_id ) > 0 ) ? $orders_page_id : WC_Vendors::$pv_options->get_option( 'product_orders_page' );
 
346
  $orders_page = get_permalink( $orders_page_id );
347
  $default_commission = WC_Vendors::$pv_options->get_option( 'default_commission' );
348
  $total_qty = $total_cost = 0;
classes/front/orders/class-export-csv.php CHANGED
@@ -17,6 +17,8 @@ class WCV_Export_CSV
17
  {
18
 
19
  $headers[ 'quantity' ] = __( 'Quantity', 'wcvendors' );
 
 
20
  $new_body = array();
21
 
22
  foreach ( $body as $i => $order ) {
@@ -40,51 +42,18 @@ class WCV_Export_CSV
40
 
41
  $product_id = !empty( $item['variation_id'] ) ? $item['variation_id'] : $item['product_id'];
42
 
 
 
43
  $new_row_with_meta = $new_row;
44
 
45
  // Add the qty row
46
  $new_row_with_meta[] = $item[ 'qty' ];
 
47
 
48
- $item_meta = $item[ 'name' ];
49
-
50
- if ( $metadata = $order->has_meta( $item['product_id'] ) ) {
51
- foreach ( $metadata as $meta ) {
52
-
53
- // Skip hidden core fields
54
- if ( in_array( $meta['meta_key'], apply_filters( 'woocommerce_hidden_order_itemmeta', array(
55
- '_qty',
56
- '_tax_class',
57
- '_product_id',
58
- '_variation_id',
59
- '_line_subtotal',
60
- '_line_subtotal_tax',
61
- '_line_total',
62
- '_line_tax',
63
- WC_Vendors::$pv_options->get_option( 'sold_by_label' ),
64
- ) ) ) ) {
65
- continue;
66
- }
67
-
68
- // Skip serialised meta
69
- if ( is_serialized( $meta['meta_value'] ) ) {
70
- continue;
71
- }
72
-
73
- // Get attribute data
74
- if ( taxonomy_exists( wc_sanitize_taxonomy_name( $meta['meta_key'] ) ) ) {
75
- $term = get_term_by( 'slug', $meta['meta_value'], wc_sanitize_taxonomy_name( $meta['meta_key'] ) );
76
- $meta['meta_key'] = wc_attribute_label( wc_sanitize_taxonomy_name( $meta['meta_key'] ) );
77
- $meta['meta_value'] = isset( $term->name ) ? $term->name : $meta['meta_value'];
78
- } else {
79
- $meta['meta_key'] = apply_filters( 'woocommerce_attribute_label', wc_attribute_label( $meta['meta_key'], $_product ), $meta['meta_key'] );
80
- }
81
-
82
- $item_meta .= wp_kses_post( rawurldecode( $meta['meta_key'] ) ) . ':' . wp_kses_post( wpautop( make_clickable( rawurldecode( $meta['meta_value'] ) ) ) );
83
- }
84
- }
85
-
86
- $new_row_with_meta['product'] = $item_meta;
87
 
 
 
88
  $new_body[] = $new_row_with_meta;
89
  }
90
  }
17
  {
18
 
19
  $headers[ 'quantity' ] = __( 'Quantity', 'wcvendors' );
20
+ $headers[ 'item_meta' ] = __( 'Item Meta', 'wcvendors' );
21
+
22
  $new_body = array();
23
 
24
  foreach ( $body as $i => $order ) {
42
 
43
  $product_id = !empty( $item['variation_id'] ) ? $item['variation_id'] : $item['product_id'];
44
 
45
+ $_product = $order->get_product_from_item( $item );
46
+
47
  $new_row_with_meta = $new_row;
48
 
49
  // Add the qty row
50
  $new_row_with_meta[] = $item[ 'qty' ];
51
+ // Add the new item meta row
52
 
53
+ $variation_detail = !empty( $item['variation_id'] ) ? WCV_Orders::get_variation_data( $item[ 'variation_id' ] ) : '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
 
55
+ $new_row_with_meta[] = $variation_detail;
56
+ $new_row_with_meta['product'] = $item[ 'name' ];
57
  $new_body[] = $new_row_with_meta;
58
  }
59
  }
classes/front/orders/class-orders.php CHANGED
@@ -22,6 +22,7 @@ class WCV_Orders
22
  $this->can_view_emails = WC_Vendors::$pv_options->get_option( 'can_view_order_emails' );
23
 
24
  add_action( 'template_redirect', array( $this, 'check_access' ) );
 
25
  // add_action( 'template_redirect', array( $this, 'display_product_orders' ) );
26
  // add_action( 'wp', array( $this, 'display_shortcodes' ) );
27
  add_shortcode( 'wcv_orders', array( $this, 'display_product_orders' ) );
@@ -87,6 +88,46 @@ class WCV_Orders
87
 
88
  }
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
  /**
92
  *
@@ -180,8 +221,6 @@ class WCV_Orders
180
  }
181
  }
182
 
183
- // ob_start();
184
-
185
  // Show the Export CSV button
186
  if ( $this->can_export_csv ) {
187
  wc_get_template( 'csv-export.php', array(), 'wc-vendors/orders/', wcv_plugin_dir . 'templates/orders/' );
@@ -196,8 +235,7 @@ class WCV_Orders
196
  'provider_array' => $provider_array,
197
  ), 'wc-vendors/orders/', wcv_plugin_dir . 'templates/orders/' );
198
 
199
- // return ob_get_clean();
200
- }
201
 
202
 
203
  /**
@@ -294,4 +332,19 @@ class WCV_Orders
294
  }
295
  }
296
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  }
22
  $this->can_view_emails = WC_Vendors::$pv_options->get_option( 'can_view_order_emails' );
23
 
24
  add_action( 'template_redirect', array( $this, 'check_access' ) );
25
+ add_action( 'template_redirect', array( $this, 'process_export_orders' ) );
26
  // add_action( 'template_redirect', array( $this, 'display_product_orders' ) );
27
  // add_action( 'wp', array( $this, 'display_shortcodes' ) );
28
  add_shortcode( 'wcv_orders', array( $this, 'display_product_orders' ) );
88
 
89
  }
90
 
91
+ /**
92
+ * Processs export orders csv request
93
+ *
94
+ * @since 1.9.4
95
+ */
96
+ public function process_export_orders( ){
97
+
98
+ if ( empty( $_GET[ 'orders_for_product' ] ) ) {
99
+
100
+ return __( 'You haven\'t selected a product\'s orders to view! Please go back to the Vendor Dashboard and click Show Orders on the product you\'d like to view.', 'wcvendors' );
101
+
102
+ } else {
103
+ $this->product_id = !empty( $_GET[ 'orders_for_product' ] ) ? (int) $_GET[ 'orders_for_product' ] : false;
104
+
105
+ $products = array( $this->product_id );
106
+
107
+ $_product = get_product( $this->product_id );
108
+
109
+ if ( is_object( $_product ) ) {
110
+
111
+ $children = $_product->get_children();
112
+
113
+ if ( !empty( $children ) ) {
114
+ $products = array_merge($products, $children);
115
+ $products = array_unique($products);
116
+ }
117
+ }
118
+
119
+ $this->orders = WCV_Queries::get_orders_for_products( $products, array( 'vendor_id' => get_current_user_id() ) );
120
+ }
121
+
122
+ if ( !$this->orders ) {
123
+ return __( 'No orders.', 'wcvendors' );
124
+ }
125
+
126
+ if ( $this->can_export_csv && !empty( $_POST[ 'export_orders' ] ) ) {
127
+ $this->download_csv();
128
+ }
129
+
130
+ } // process_export_orders()
131
 
132
  /**
133
  *
221
  }
222
  }
223
 
 
 
224
  // Show the Export CSV button
225
  if ( $this->can_export_csv ) {
226
  wc_get_template( 'csv-export.php', array(), 'wc-vendors/orders/', wcv_plugin_dir . 'templates/orders/' );
235
  'provider_array' => $provider_array,
236
  ), 'wc-vendors/orders/', wcv_plugin_dir . 'templates/orders/' );
237
 
238
+ } // display_product_orders()
 
239
 
240
 
241
  /**
332
  }
333
  }
334
 
335
+ /**
336
+ * Get the variation data for a product
337
+ *
338
+ * @since 1.9.4
339
+ * @return string variation_data
340
+ */
341
+ public static function get_variation_data( $item_id ){
342
+
343
+ $_var_product = new WC_Product_Variation( $item_id );
344
+ $variation_data = $_var_product->get_variation_attributes();
345
+ $variation_detail = wc_get_formatted_variation( $variation_data, true );
346
+ return $variation_detail;
347
+
348
+ } // get_variation_data()
349
+
350
  }
languages/wcvendors-fr_FR.mo CHANGED
Binary file
languages/wcvendors-fr_FR.po CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "Project-Id-Version: WC-Vendors\n"
8
  "Report-Msgid-Bugs-To: Woocommerce <info@Woocommerce.com>\n"
9
  "POT-Creation-Date: 2016-07-29 11:53+0200\n"
10
- "PO-Revision-Date: 2016-07-29 17:22+0700\n"
11
  "Last-Translator: Nicolas Bernier <nicolas.bernier@synagila.com>\n"
12
  "Language-Team: TWF <info@themes-wordpress-francais.com>\n"
13
  "Language: fr_FR\n"
@@ -1526,7 +1526,7 @@ msgid ""
1526
  "I have read and accepted the <a target=\"top\" href=\"%s\">terms and "
1527
  "conditions</a>"
1528
  msgstr ""
1529
- "J’ai lu et j’accepte les <a href=“%s” target=“_blank”>Conditions générales "
1530
  "d'utilisation</a>"
1531
 
1532
  #: ../classes/front/signup/class-vendor-signup.php:122
7
  "Project-Id-Version: WC-Vendors\n"
8
  "Report-Msgid-Bugs-To: Woocommerce <info@Woocommerce.com>\n"
9
  "POT-Creation-Date: 2016-07-29 11:53+0200\n"
10
+ "PO-Revision-Date: 2016-08-17 18:01+0700\n"
11
  "Last-Translator: Nicolas Bernier <nicolas.bernier@synagila.com>\n"
12
  "Language-Team: TWF <info@themes-wordpress-francais.com>\n"
13
  "Language: fr_FR\n"
1526
  "I have read and accepted the <a target=\"top\" href=\"%s\">terms and "
1527
  "conditions</a>"
1528
  msgstr ""
1529
+ "J’ai lu et j’accepte les <a target=\"top\" href=\"%s\">Conditions générales "
1530
  "d'utilisation</a>"
1531
 
1532
  #: ../classes/front/signup/class-vendor-signup.php:122
languages/wcvendors-pt_BR.mo CHANGED
Binary file
languages/wcvendors-pt_BR.po CHANGED
@@ -3,179 +3,214 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: WC Vendors\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2015-04-24 09:29+1000\n"
7
- "POT-Revision-Date: Sun May 24 2015 08:31:40 GMT-0300 (BRT)\n"
8
- "PO-Revision-Date: 2015-05-24 20:57-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: WC Vendors <support@wcvendors.com>\n"
11
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
 
 
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8\n"
17
  "X-Poedit-Basepath: .\n"
18
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
- "Language: pt_BR\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
  "X-Poedit-SearchPath-1: ..\n"
26
 
27
- #: ../class-wc-vendors.php:71 ../classes/admin/class-admin-reports.php:41
28
- #: ../classes/admin/class-admin-users.php:371
 
 
 
 
 
 
 
 
29
  msgid "WC Vendors"
30
  msgstr "WC Vendors"
31
 
32
- #: ../class-wc-vendors.php:98
33
  msgid ""
34
  "<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce "
35
- "v2.2.0."
36
  msgstr ""
37
- "<b>WC Vendors está desativado.</b>. WC Vendors requer no mínimo a versão do "
38
- "WooCommerce v2.2.0."
39
 
40
- #: ../class-wc-vendors.php:225 ../classes/admin/settings/sf-options.php:159
41
  msgid "Capabilities"
42
  msgstr "Recursos de usuário"
43
 
44
- #: ../class-wc-vendors.php:249 ../classes/admin/settings/sf-options.php:4
 
 
 
 
 
 
 
 
 
 
45
  msgid "General"
46
  msgstr "Geral"
47
 
48
- #: ../class-wc-vendors.php:284
49
  msgid "Documentation/KB"
50
- msgstr "Documentação / KB"
51
 
52
- #: ../class-wc-vendors.php:285
53
  msgid "Help Forums"
54
  msgstr "Fóruns de Ajuda"
55
 
56
- #: ../class-wc-vendors.php:286
57
  msgid "Paid Support"
58
- msgstr "Suporte Pago"
59
-
60
- #: ../class-wc-vendors.php:308
61
- #, php-format
62
- msgid ""
63
- "WC Vendors requires the Vendor shop page value be set <a href=\"%s\">click "
64
- "here to set it.</a> | <a href=\"%s\">Hide Notice</a>"
65
- msgstr ""
66
- "WC Vendors requer que o valor seja definido na página da loja do Vendedor <a "
67
- "href=“%s”>clique aqui para ajustar.</a> | <a href=“%s”>Ocultar Aviso</a>"
68
 
69
- #: ../class-wc-vendors.php:316
70
- #, php-format
71
- msgid ""
72
- "You must save your permalinks once you have modified your vendor page. <a "
73
- "href=\"%s\">click here to save</a>. | <a href=\"%s\">Hide Notice</a>"
74
- msgstr ""
75
- "Você deve salvar os seus permalinks uma vez que você tenha modificado sua "
76
- "página fornecedor. <a href=\\”%s\\”>clique aqui para salvar</a> . | <a href="
77
- "\\”%s\\”>Ocultar Aviso</a>"
78
-
79
- #: ../classes/admin/class-admin-page.php:27
80
  msgid "Vendors shipped"
81
  msgstr "Enviado pelos vendedores"
82
 
83
- #: ../classes/admin/class-admin-page.php:50
84
  msgid "Vendors Shipped"
85
  msgstr "Enviado pelos Vendedores"
86
 
87
- #: ../classes/admin/class-admin-page.php:72
88
- #: ../classes/admin/class-admin-page.php:132
89
- #: ../classes/admin/class-admin-reports.php:339
90
- #: ../classes/admin/class-product-meta.php:149
91
- #: ../classes/admin/class-product-meta.php:165
92
  #: ../templates/dashboard/reports.php:19
93
  msgid "Commission"
94
  msgstr "Comissão"
95
 
96
- #: ../classes/admin/class-admin-page.php:251
97
- #: ../classes/admin/class-admin-reports.php:168
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  #: ../templates/dashboard/reports.php:17
99
- #: ../templates/emails/admin-new-order.php:22
100
  #: ../templates/emails/notify-vendor-shipped.php:22
 
101
  msgid "Product"
102
  msgstr "Produto"
103
 
104
- #: ../classes/admin/class-admin-page.php:252
105
- #: ../classes/admin/class-vendor-admin-dashboard.php:255
106
  msgid "Order ID"
107
- msgstr "ID Pedido"
108
-
109
- #: ../classes/admin/class-admin-page.php:253
110
- #: ../classes/admin/class-admin-reports.php:169
111
- #: ../classes/admin/class-product-meta.php:44
112
- #: ../classes/admin/class-product-meta.php:185
113
- #: ../classes/admin/class-product-meta.php:221
114
- msgid "Vendor"
115
- msgstr "Vendedor"
116
 
117
- #: ../classes/admin/class-admin-page.php:254
118
- #: ../classes/admin/class-admin-reports.php:170
119
- #: ../classes/admin/class-admin-reports.php:344
120
- #: ../classes/admin/class-admin-reports.php:368
121
- #: ../classes/admin/class-vendor-admin-dashboard.php:258
122
  #: ../templates/dashboard/orders.php:35
123
  msgid "Total"
124
  msgstr "Total"
125
 
126
- #: ../classes/admin/class-admin-page.php:255
127
- #: ../classes/admin/class-admin-reports.php:172
 
128
  msgid "Status"
129
  msgstr "Condição"
130
 
131
- #: ../classes/admin/class-admin-page.php:256
132
- #: ../classes/admin/class-vendor-admin-dashboard.php:259
133
- #: ../classes/front/orders/class-orders.php:216
134
  #: ../templates/dashboard/orders.php:36
135
  msgid "Date"
136
  msgstr "Data"
137
 
138
- #: ../classes/admin/class-admin-page.php:293
139
  msgid "Mark paid"
140
- msgstr "Marcar como pago"
141
 
142
- #: ../classes/admin/class-admin-page.php:294
143
  msgid "Mark due"
144
- msgstr "Marcar como à pagar"
145
 
146
- #: ../classes/admin/class-admin-page.php:295
147
  msgid "Mark reversed"
148
- msgstr "Marcar como revertido"
149
 
150
- #: ../classes/admin/class-admin-page.php:312
151
- #: ../classes/admin/class-admin-page.php:316
152
  msgid "Filter"
153
  msgstr "Filtro"
154
 
155
- #: ../classes/admin/class-admin-page.php:351
156
  msgid "Show all dates"
157
  msgstr "Mostrar todas as datas"
158
 
159
- #: ../classes/admin/class-admin-page.php:364
160
  #, php-format
161
  msgid "%1$s %2$d"
162
  msgstr "%1$s %2$d"
163
 
164
- #: ../classes/admin/class-admin-page.php:386
165
  msgid "Show all Statuses"
166
  msgstr "Mostrar todas Condições"
167
 
168
- #: ../classes/admin/class-admin-page.php:412
169
  msgid "Commission marked paid."
170
- msgstr "Comissão paga"
171
 
172
- #: ../classes/admin/class-admin-page.php:419
173
  msgid "Commission marked due."
174
- msgstr "Comissão à pagar"
175
 
176
- #: ../classes/admin/class-admin-page.php:426
177
  msgid "Commission marked reversed."
178
- msgstr "Comissão revertida"
179
 
180
  #: ../classes/admin/class-admin-reports.php:44
181
  msgid "Overview"
@@ -189,190 +224,253 @@ msgstr "Comissão por vendedor"
189
  msgid "Commission by product"
190
  msgstr "Comissão por produto"
191
 
192
- #: ../classes/admin/class-admin-reports.php:115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  #: ../templates/dashboard/date-picker.php:3
194
  msgid "From:"
195
  msgstr "De:"
196
 
197
- #: ../classes/admin/class-admin-reports.php:117
 
198
  #: ../templates/dashboard/date-picker.php:7
199
  msgid "To:"
200
  msgstr "Para:"
201
 
202
- #: ../classes/admin/class-admin-reports.php:119
203
- #: ../classes/admin/class-admin-reports.php:277
 
204
  #: ../templates/dashboard/date-picker.php:12
205
  msgid "Show"
206
  msgstr "Mostrar"
207
 
208
- #: ../classes/admin/class-admin-reports.php:125
209
  msgid "Total paid in range"
210
  msgstr "Total pago na faixa de"
211
 
212
- #: ../classes/admin/class-admin-reports.php:128
213
- #: ../classes/admin/class-admin-reports.php:135
214
- #: ../classes/admin/class-admin-reports.php:142
215
  msgid "n/a"
216
  msgstr "n/a"
217
 
218
- #: ../classes/admin/class-admin-reports.php:132
219
  msgid "Total due in range"
220
- msgstr "Total à pagar na faixa de"
221
 
222
- #: ../classes/admin/class-admin-reports.php:139
223
  msgid "Total reversed in range"
224
  msgstr "Total revertido na faixa de"
225
 
226
- #: ../classes/admin/class-admin-reports.php:149
227
  msgid "Recent Commission"
228
  msgstr "Comissão recente"
229
 
230
- #: ../classes/admin/class-admin-reports.php:167
231
- #: ../classes/front/orders/class-orders.php:208
232
  #: ../templates/dashboard/orders.php:33
233
  msgid "Order"
234
  msgstr "Pedido"
235
 
236
- #: ../classes/admin/class-admin-reports.php:171
237
  msgid "Date &amp; Time"
238
- msgstr "Data &amp; Tempo"
239
 
240
- #: ../classes/admin/class-admin-reports.php:180
241
  msgid "N/A"
242
  msgstr "N/A"
243
 
244
- #: ../classes/admin/class-admin-reports.php:185
245
  msgid "D j M Y \\a\\t h:ia"
246
- msgstr "D j M A \\a\\t h:ia"
247
 
248
- #: ../classes/admin/class-admin-reports.php:194
249
  msgid "No commission yet"
250
  msgstr "Sem comissão no momento"
251
 
252
- #: ../classes/admin/class-admin-reports.php:228
253
  msgid "Show:"
254
  msgstr "Mostrar:"
255
 
256
- #: ../classes/admin/class-admin-reports.php:237
257
  msgid "Search for a product&hellip;"
258
  msgstr "Procurar por um produto&hellip;"
259
 
260
- #: ../classes/admin/class-admin-reports.php:240
261
  msgid "Type in a product name to start searching..."
262
  msgstr "Digite o nome de um produto para iniciar a busca..."
263
 
264
- #: ../classes/admin/class-admin-reports.php:272
265
  msgid "Select a vendor&hellip;"
266
  msgstr "Selecionar um vendedor&hellip;"
267
 
268
- #: ../classes/admin/class-admin-reports.php:338
269
  msgid "Month"
270
  msgstr "Mês"
271
 
272
- #: ../classes/admin/class-admin-reports.php:340
273
  msgid "Tax"
274
  msgstr "Imposto"
275
 
276
- #: ../classes/admin/class-admin-reports.php:341
277
- #: ../classes/admin/settings/sf-options.php:46
278
- #: ../templates/dashboard/orders.php:34 ../templates/orders/orders.php:113
 
279
  msgid "Shipping"
280
- msgstr "Enviando"
281
 
282
- #: ../classes/admin/class-admin-reports.php:342
 
283
  msgid "Reversed"
284
  msgstr "Revertido"
285
 
286
- #: ../classes/admin/class-admin-reports.php:343
 
287
  msgid "Paid"
288
  msgstr "Pago"
289
 
290
- #: ../classes/admin/class-admin-users.php:381
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  msgid "Enable HTML for the shop description"
292
  msgstr "Permitir HTML para a descrição da loja"
293
 
294
- #: ../classes/admin/class-admin-users.php:387
295
  msgid "Shop name"
296
  msgstr "Nome da loja"
297
 
298
- #: ../classes/admin/class-admin-users.php:394
299
  msgid "PayPal E-mail"
300
- msgstr "E-mail do PayPal"
301
 
302
- #: ../classes/admin/class-admin-users.php:395
303
  msgid "required"
304
  msgstr "requerido"
305
 
306
- #: ../classes/admin/class-admin-users.php:402
307
  msgid "Commission rate"
308
  msgstr "Taxa de comissão"
309
 
310
- #: ../classes/admin/class-admin-users.php:403
311
- #: ../classes/admin/class-product-meta.php:172
312
  msgid "Leave blank for default"
313
  msgstr "Deixe em branco para o padrão"
314
 
315
- #: ../classes/admin/class-admin-users.php:409
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  #: ../classes/admin/views/html-vendor-settings-page.php:30
317
- #: ../classes/front/class-vendor-shop.php:103
318
  #: ../templates/dashboard/settings/seller-info.php:3
319
  msgid "Seller info"
320
  msgstr "Informação do Vendedor"
321
 
322
- #: ../classes/admin/class-admin-users.php:414
323
  msgid "Shop description"
324
  msgstr "Descrição da Loja"
325
 
326
- #: ../classes/admin/class-vendor-admin-dashboard.php:19
327
- #: ../classes/class-install.php:166
328
  msgid "Shop Settings"
329
  msgstr "Ajustes da Loja"
330
 
331
- #: ../classes/admin/class-vendor-admin-dashboard.php:20
332
- #: ../classes/admin/class-vendor-admin-dashboard.php:142
333
- #: ../classes/admin/settings/sf-options.php:163
334
- #: ../classes/class-install.php:165 ../templates/dashboard/orders.php:24
335
  msgid "Orders"
336
  msgstr "Pedidos"
337
 
338
- #: ../classes/admin/class-vendor-admin-dashboard.php:53
339
- #: ../classes/front/dashboard/class-vendor-dashboard.php:101
340
  msgid "Your PayPal address is not a valid email address."
341
- msgstr "Seu endereço de e-mail do PayPal não é válido"
342
 
343
- #: ../classes/admin/class-vendor-admin-dashboard.php:63
344
- #: ../classes/front/dashboard/class-vendor-dashboard.php:110
345
  msgid "That shop name is already taken. Your shop name must be unique."
346
  msgstr "Este nome de loja já existe. O nome da sua loja deve ser único."
347
 
348
- #: ../classes/admin/class-vendor-admin-dashboard.php:83
349
- #: ../classes/admin/settings/classes/sf-class-settings.php:366
350
- #: ../classes/front/dashboard/class-vendor-dashboard.php:128
351
  msgid "Settings saved."
352
  msgstr "Ajustes salvos."
353
 
354
- #: ../classes/admin/class-vendor-admin-dashboard.php:256
355
  msgid "Customer"
356
  msgstr "Cliente"
357
 
358
- #: ../classes/admin/class-vendor-admin-dashboard.php:257
359
- #: ../classes/admin/settings/sf-options.php:95
360
- #: ../classes/admin/settings/sf-options.php:221
361
  msgid "Products"
362
  msgstr "Produtos"
363
 
364
- #: ../classes/admin/class-vendor-admin-dashboard.php:260
 
365
  msgid "Shipped"
366
  msgstr "Enviado"
367
 
368
- #: ../classes/admin/class-vendor-admin-dashboard.php:293
369
- #: ../templates/dashboard/orders.php:68
370
  msgid "Mark shipped"
371
- msgstr "Marcar como enviado"
372
 
373
- #: ../classes/admin/class-vendor-admin-dashboard.php:317
374
  msgid "Orders marked shipped."
375
- msgstr "Pedidos marcados como enviados"
 
 
 
 
 
376
 
377
  #: ../classes/admin/class-vendor-applicants.php:26
378
  msgid "Approve"
@@ -382,75 +480,69 @@ msgstr "Aprovar"
382
  msgid "Deny"
383
  msgstr "Negar"
384
 
385
- #: ../classes/admin/class-vendor-applicants.php:71
386
  msgid "Vendor has been <b>denied</b>."
387
  msgstr "Vendedor foi <b>negado</b>."
388
 
389
- #: ../classes/admin/class-vendor-applicants.php:82
390
  msgid "Vendor has been <b>approved</b>."
391
  msgstr "Vendedor foi <b>aprovado</b>."
392
 
393
- #: ../classes/admin/class-vendor-applicants.php:96
394
  msgid "Pending Vendors"
395
  msgstr "Vendedores Pendentes"
396
 
397
- #: ../classes/admin/emails/class-emails.php:55
398
  #: ../classes/admin/emails/class-wc-approve-vendor.php:70
399
  msgid "pending"
400
  msgstr "pendente"
401
 
402
- #: ../classes/admin/emails/class-emails.php:57
403
  msgid "approved"
404
  msgstr "aprovado"
405
 
406
- #: ../classes/admin/emails/class-emails.php:59
407
  msgid "denied"
408
  msgstr "negado"
409
 
410
- #: ../classes/admin/emails/class-emails.php:86
411
- #: ../classes/front/class-vendor-cart.php:59
412
- #: ../classes/front/class-vendor-shop.php:178
413
- msgid "Sold by: "
414
- msgstr "Vendido por: "
415
-
416
  #: ../classes/admin/emails/class-wc-approve-vendor.php:28
417
  msgid "Vendor Application"
418
- msgstr "Requerimento para Vendedor"
419
 
420
  #: ../classes/admin/emails/class-wc-approve-vendor.php:29
421
  msgid "Vendor application will either be approved, denied, or pending."
422
- msgstr "Requerimento para Vendedor será aprovado, negado, ou pendente."
423
 
424
  #: ../classes/admin/emails/class-wc-approve-vendor.php:31
425
  msgid "Application {status}"
426
- msgstr "Requerimento {status}"
427
 
428
  #: ../classes/admin/emails/class-wc-approve-vendor.php:32
429
  msgid "[{blogname}] Your vendor application has been {status}"
430
- msgstr "[{blogname}] Seu requerimento para vendedor foi {status}"
431
 
432
  #: ../classes/admin/emails/class-wc-approve-vendor.php:123
433
- #: ../classes/admin/emails/class-wc-notify-admin.php:131
434
  #: ../classes/admin/emails/class-wc-notify-shipped.php:163
435
- #: ../classes/admin/emails/class-wc-notify-vendor.php:232
436
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:62
437
  msgid "Enable/Disable"
438
- msgstr "Ativar/Desativar"
439
 
440
  #: ../classes/admin/emails/class-wc-approve-vendor.php:125
441
- #: ../classes/admin/emails/class-wc-notify-admin.php:133
442
  #: ../classes/admin/emails/class-wc-notify-shipped.php:165
443
- #: ../classes/admin/emails/class-wc-notify-vendor.php:234
444
  msgid "Enable this email notification"
445
- msgstr "Ativar este email para notificação"
446
 
447
  #: ../classes/admin/emails/class-wc-approve-vendor.php:129
448
- #: ../classes/admin/emails/class-wc-notify-admin.php:137
449
  msgid "Recipient(s)"
450
  msgstr "Destinatário(s)"
451
 
452
  #: ../classes/admin/emails/class-wc-approve-vendor.php:131
453
- #: ../classes/admin/emails/class-wc-notify-admin.php:139
454
  #, php-format
455
  msgid ""
456
  "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
@@ -460,16 +552,16 @@ msgstr ""
460
  "<code>%s</code>."
461
 
462
  #: ../classes/admin/emails/class-wc-approve-vendor.php:136
463
- #: ../classes/admin/emails/class-wc-notify-admin.php:144
464
  #: ../classes/admin/emails/class-wc-notify-shipped.php:169
465
- #: ../classes/admin/emails/class-wc-notify-vendor.php:238
466
  msgid "Subject"
467
  msgstr "Assunto"
468
 
469
  #: ../classes/admin/emails/class-wc-approve-vendor.php:138
470
- #: ../classes/admin/emails/class-wc-notify-admin.php:146
471
  #: ../classes/admin/emails/class-wc-notify-shipped.php:171
472
- #: ../classes/admin/emails/class-wc-notify-vendor.php:240
473
  #, php-format
474
  msgid ""
475
  "This controls the email subject line. Leave blank to use the default "
@@ -479,16 +571,16 @@ msgstr ""
479
  "assunto padrão: <code>%s</code>."
480
 
481
  #: ../classes/admin/emails/class-wc-approve-vendor.php:143
482
- #: ../classes/admin/emails/class-wc-notify-admin.php:151
483
  #: ../classes/admin/emails/class-wc-notify-shipped.php:176
484
- #: ../classes/admin/emails/class-wc-notify-vendor.php:245
485
  msgid "Email Heading"
486
  msgstr "Cabeçalho do Email"
487
 
488
  #: ../classes/admin/emails/class-wc-approve-vendor.php:145
489
- #: ../classes/admin/emails/class-wc-notify-admin.php:153
490
  #: ../classes/admin/emails/class-wc-notify-shipped.php:178
491
- #: ../classes/admin/emails/class-wc-notify-vendor.php:247
492
  #, php-format
493
  msgid ""
494
  "This controls the main heading contained within the email notification. "
@@ -498,43 +590,43 @@ msgstr ""
498
  "branco para usar o cabeçalho padrão: <code>%s</code>."
499
 
500
  #: ../classes/admin/emails/class-wc-approve-vendor.php:150
501
- #: ../classes/admin/emails/class-wc-notify-admin.php:158
502
  #: ../classes/admin/emails/class-wc-notify-shipped.php:183
503
- #: ../classes/admin/emails/class-wc-notify-vendor.php:252
504
  msgid "Email type"
505
  msgstr "Tipo de email"
506
 
507
  #: ../classes/admin/emails/class-wc-approve-vendor.php:152
508
- #: ../classes/admin/emails/class-wc-notify-admin.php:160
509
  #: ../classes/admin/emails/class-wc-notify-shipped.php:185
510
- #: ../classes/admin/emails/class-wc-notify-vendor.php:254
511
  msgid "Choose which format of email to send."
512
  msgstr "Escolha qual formato de email para enviar."
513
 
514
  #: ../classes/admin/emails/class-wc-approve-vendor.php:156
515
- #: ../classes/admin/emails/class-wc-notify-admin.php:164
516
  #: ../classes/admin/emails/class-wc-notify-shipped.php:189
517
- #: ../classes/admin/emails/class-wc-notify-vendor.php:258
518
  msgid "Plain text"
519
  msgstr "Texto simples"
520
 
521
  #: ../classes/admin/emails/class-wc-approve-vendor.php:157
522
- #: ../classes/admin/emails/class-wc-notify-admin.php:165
523
  #: ../classes/admin/emails/class-wc-notify-shipped.php:190
524
- #: ../classes/admin/emails/class-wc-notify-vendor.php:259
525
  msgid "HTML"
526
  msgstr "HTML"
527
 
528
  #: ../classes/admin/emails/class-wc-approve-vendor.php:158
529
- #: ../classes/admin/emails/class-wc-notify-admin.php:166
530
  #: ../classes/admin/emails/class-wc-notify-shipped.php:191
531
- #: ../classes/admin/emails/class-wc-notify-vendor.php:260
532
  msgid "Multipart"
533
  msgstr "Multipart"
534
 
535
  #: ../classes/admin/emails/class-wc-notify-admin.php:28
536
  msgid "New Vendor Product"
537
- msgstr "Novo produto do vendedor"
538
 
539
  #: ../classes/admin/emails/class-wc-notify-admin.php:29
540
  msgid "New order emails are sent when a new product is submitted by a vendor"
@@ -544,12 +636,11 @@ msgstr ""
544
 
545
  #: ../classes/admin/emails/class-wc-notify-admin.php:31
546
  msgid "New product submitted: {product_name}"
547
- msgstr "Novo produto enviado: {produto_nome}"
548
 
549
  #: ../classes/admin/emails/class-wc-notify-admin.php:32
550
  msgid "[{blogname}] New product submitted by {vendor_name} - {product_name}"
551
- msgstr ""
552
- "[{blogname}] Novo produto enviado por {vendor_name} - {product_name}"
553
 
554
  #: ../classes/admin/emails/class-wc-notify-shipped.php:28
555
  msgid "Vendor has shipped"
@@ -569,8 +660,7 @@ msgstr "Seu pedido já foi enviado"
569
  #: ../classes/admin/emails/class-wc-notify-shipped.php:32
570
  msgid ""
571
  "[{blogname}] Your order has been shipped ({order_number}) - {order_date}"
572
- msgstr ""
573
- "[{blogname}] Seu pedido já foi enviado ({order_number}) - {order_date}"
574
 
575
  #: ../classes/admin/emails/class-wc-notify-shipped.php:112
576
  msgid "Subtotal:"
@@ -592,73 +682,141 @@ msgstr "Novo pedido de cliente"
592
 
593
  #: ../classes/admin/emails/class-wc-notify-vendor.php:31
594
  msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
595
- msgstr ""
596
- "[{blogname}] Novo pedido de cliente ({order_number}) - {order_date}"
597
 
598
- #: ../classes/admin/emails/class-wc-notify-vendor.php:103
599
  msgid "Commission Subtotal:"
600
- msgstr "Subtotal de comissão:"
 
 
 
 
601
 
602
- #: ../classes/admin/emails/class-wc-notify-vendor.php:112
603
  msgid "Shipping Subtotal:"
604
- msgstr "Subtotal de envio:"
 
 
 
 
 
 
 
 
 
 
 
 
605
 
606
  #: ../classes/admin/settings/classes/sf-class-format-options.php:211
607
- #: ../classes/admin/settings/classes/sf-class-settings.php:776
608
  msgid "Select a page..."
609
  msgstr "Selecione um página…"
610
 
611
  #: ../classes/admin/settings/classes/sf-class-settings.php:153
612
  #: ../templates/dashboard/settings/settings.php:1
613
  msgid "Settings"
614
- msgstr "Ajustes"
615
 
616
- #: ../classes/admin/settings/classes/sf-class-settings.php:300
617
  msgid "Could not load settings at: "
618
- msgstr "Não puderam ser carregados os ajustes na: "
619
 
620
- #: ../classes/admin/settings/classes/sf-class-settings.php:300
621
  msgid "Error - WP Settings Framework"
622
  msgstr "Erro - WP Framework de ajustes"
623
 
624
- #: ../classes/admin/settings/classes/sf-class-settings.php:482
625
  #, php-format
626
  msgid "Save %s changes"
627
  msgstr "Salvar %s modificações"
628
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
629
  #: ../classes/admin/settings/sf-options.php:5
630
  msgid "General options"
631
  msgstr "Opções gerais"
632
 
633
- #: ../classes/admin/settings/sf-options.php:5
634
- #: ../classes/admin/settings/sf-options.php:54
635
- #: ../classes/admin/settings/sf-options.php:246
636
- msgid " "
637
- msgstr " "
638
-
639
  #: ../classes/admin/settings/sf-options.php:8
640
  msgid "Default commission (%)"
641
  msgstr "Comissão padrão (%)"
642
 
643
  #: ../classes/admin/settings/sf-options.php:9
644
  msgid ""
645
- "The default rate you pay each vendor for a product sale. If a product has a "
646
- "commission rate already set, this value will be ignored for that product."
 
 
647
  msgstr ""
648
- "A taxa de padrão que você pagará a cada vendedor pela venda de um produto. "
649
- "Se um produto tiver uma taxa de comissão já definida, este valor será "
650
- "ignorado para esse produto."
 
 
651
 
652
  #: ../classes/admin/settings/sf-options.php:20
653
- msgid "Registration"
654
- msgstr "Registro"
655
-
656
- #: ../classes/admin/settings/sf-options.php:21
657
  msgid "Allow users or guests to apply to become a vendor"
658
- msgstr "Permitir usuários ou convidados a pedirem para se tornarem um vendedor"
659
 
660
  #: ../classes/admin/settings/sf-options.php:22
661
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
  "This will show a checkbox on the My Account page's registration form asking "
663
  "if the user would like to apply to be a vendor. Also, on the Vendor "
664
  "Dashboard, users can still apply to become a vendor even if this is disabled."
@@ -669,11 +827,11 @@ msgstr ""
669
  "para se tornar um vendedor, mesmo se esta caixa de seleção estiver "
670
  "desativado."
671
 
672
- #: ../classes/admin/settings/sf-options.php:29
673
  msgid "Approve vendor applications manually"
674
  msgstr "Aprovar pedidos de vendedor manualmente"
675
 
676
- #: ../classes/admin/settings/sf-options.php:30
677
  msgid ""
678
  "With this unchecked, all vendor applications are automatically accepted. "
679
  "Otherwise, you must approve each manually."
@@ -681,64 +839,69 @@ msgstr ""
681
  "Com esta opção desligada, todos os pedidos de vendedor serão automaticamente "
682
  "aceitos. Caso contrário, você deve aprovar cada um manualmente."
683
 
684
- #: ../classes/admin/settings/sf-options.php:37
 
685
  msgid "Taxes"
686
- msgstr "Impostos"
687
 
688
- #: ../classes/admin/settings/sf-options.php:38
689
  msgid "Give vendors any tax collected per-product"
690
  msgstr "Dê aos vendedores qualquer imposto cobrado por produto"
691
 
692
- #: ../classes/admin/settings/sf-options.php:39
693
  msgid "The tax collected on a vendor's product will be given in its entirety"
694
  msgstr ""
695
  "O imposto cobrado sobre o produto de um vendedor será dado em sua totalidade"
696
 
697
- #: ../classes/admin/settings/sf-options.php:47
698
  msgid "Give vendors any shipping collected per-product"
699
  msgstr "Dê aos vendedores qualquer taxa de envio recolhida por produto"
700
 
701
- #: ../classes/admin/settings/sf-options.php:48
702
  msgid ""
703
- "The shipping collected on a vendor's product will be given in its entirety"
 
 
704
  msgstr ""
705
- "A taxa de envio recolhida do produto de um fornecedor será dada em sua "
706
- "totalidade"
707
 
708
- #: ../classes/admin/settings/sf-options.php:54
709
  msgid "Shop options"
710
  msgstr "Opções da Loja"
711
 
712
- #: ../classes/admin/settings/sf-options.php:57
713
  msgid "Shop HTML"
714
- msgstr "Loja HTML"
715
 
716
- #: ../classes/admin/settings/sf-options.php:58
717
  msgid ""
718
  "Enable HTML for a vendor's shop description by default. You can enable or "
719
- "disable this per vendor by editing the vendors username."
720
  msgstr ""
721
- "Permitir HTML para descrição da loja de um vendedor por padrão. Você pode "
722
- "ativar ou desativar esta opção para cada vendedor editando o nome de usuário "
723
- "dos vendedores."
724
 
725
- #: ../classes/admin/settings/sf-options.php:65
726
- msgid "Vendor shop page"
727
- msgstr "Página da loja do Vendedor"
728
 
729
- #: ../classes/admin/settings/sf-options.php:66
730
- msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
731
- msgstr "Eg: <code>seusite.com/[seu_ajuste_aqui]/[vendedor_nome_aqui]</code>"
 
 
 
 
 
732
 
733
- #: ../classes/admin/settings/sf-options.php:73
734
  msgid "Shop Headers"
735
  msgstr "Cabeçalhos da Loja"
736
 
737
- #: ../classes/admin/settings/sf-options.php:74
738
  msgid "Enable vendor shop headers"
739
- msgstr "Ativar cabeçalho da loja do vendedor"
740
 
741
- #: ../classes/admin/settings/sf-options.php:75
742
  msgid ""
743
  "This will override the HTML Shop description output on product-archive "
744
  "pages. In order to customize the shop headers visit wcvendors.com and read "
@@ -748,76 +911,168 @@ msgstr ""
748
  "produto-arquivo. A fim de personalizar os cabeçalhos das lojas visite o "
749
  "wcvendors.com e leia o artigo intitulado Changing the Vendor Templates."
750
 
751
- #: ../classes/admin/settings/sf-options.php:82
752
  msgid "Vendor Display Name"
753
  msgstr "Nome de exibição do Vendedor"
754
 
755
- #: ../classes/admin/settings/sf-options.php:83
756
  msgid ""
757
  "Select what will be displayed for the sold by text throughout the store."
758
  msgstr "Selecione o que será exibido no texto de vendido por em toda loja."
759
 
760
- #: ../classes/admin/settings/sf-options.php:87
761
  msgid "Display Name"
762
- msgstr "Nome de exibição"
763
 
764
- #: ../classes/admin/settings/sf-options.php:88
765
  #: ../classes/admin/views/html-vendor-settings-page.php:22
766
  #: ../templates/dashboard/settings/shop-name.php:2
767
  msgid "Shop Name"
768
  msgstr "Nome da Loja"
769
 
770
- #: ../classes/admin/settings/sf-options.php:89
771
  msgid "User Login"
772
  msgstr "Login do Usuário"
773
 
774
  #: ../classes/admin/settings/sf-options.php:96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
775
  msgid "Product Add Page"
776
  msgstr "Página Adicionar Produto"
777
 
778
- #: ../classes/admin/settings/sf-options.php:96
779
  msgid "Configure what to hide from all vendors when adding a product"
780
  msgstr ""
781
  "Configurar o que estará oculto de todos os vendedores quando adicionarem um "
782
  "produto"
783
 
784
- #: ../classes/admin/settings/sf-options.php:99
785
  msgid "Left side panel"
786
  msgstr "Painel do lado esquerdo"
787
 
788
- #: ../classes/admin/settings/sf-options.php:100
789
  msgid ""
790
- "CHECKING these boxes will HIDE these areas of the add product page for "
791
  "vendors"
792
  msgstr ""
793
- "MARCANDO estas caixas irá OCULTAR do vendedor estas áreas para na página "
794
- "Adicionar Produto"
795
 
796
- #: ../classes/admin/settings/sf-options.php:114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
797
  msgid "Types"
798
  msgstr "Tipos"
799
 
800
- #: ../classes/admin/settings/sf-options.php:115
801
  msgid "CHECKING these boxes will HIDE these product types from the vendor"
802
- msgstr "MARCANDO estas caixas irá OCULTAR do vendedor estes tipos de produtos"
 
803
 
804
- #: ../classes/admin/settings/sf-options.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
805
  msgid "Type options"
806
  msgstr "Opções de tipo"
807
 
808
- #: ../classes/admin/settings/sf-options.php:129
809
- msgid "CHECKING these boxes will HIDE these product options from the vendor"
810
- msgstr "MARCANDO estas caixas irá OCULTAR do vendedor estas opções de tipo"
 
 
 
 
 
 
811
 
812
- #: ../classes/admin/settings/sf-options.php:140
 
 
 
 
813
  msgid "Miscellaneous"
814
- msgstr "Variado"
815
 
816
- #: ../classes/admin/settings/sf-options.php:152
 
 
 
 
 
 
 
 
 
 
 
 
817
  msgid "Stylesheet"
818
- msgstr "Stylesheet"
819
 
820
- #: ../classes/admin/settings/sf-options.php:153
821
  msgid ""
822
  "You can add CSS in this textarea, which will be loaded on the product add/"
823
  "edit page for vendors."
@@ -825,47 +1080,47 @@ msgstr ""
825
  "Você pode adicionar CSS nesta área de texto que será carregado na página de "
826
  "adicionar/editar produto para vendedores."
827
 
828
- #: ../classes/admin/settings/sf-options.php:160
829
  msgid "Permissions"
830
  msgstr "Permissões"
831
 
832
- #: ../classes/admin/settings/sf-options.php:160
833
  msgid "General permissions used around the shop"
834
  msgstr "Permissões gerais usadas pela loja"
835
 
836
- #: ../classes/admin/settings/sf-options.php:164
837
  msgid "View orders"
838
  msgstr "Ver pedidos"
839
 
840
- #: ../classes/admin/settings/sf-options.php:165
841
  msgid "Show customer details such as email, address, name, etc, for each order"
842
  msgstr ""
843
  "Mostrar detalhes do cliente como email, endereço, nome, etc, em cada pedido"
844
 
845
- #: ../classes/admin/settings/sf-options.php:172
846
  msgid "View comments"
847
  msgstr "Ver comentários"
848
 
849
- #: ../classes/admin/settings/sf-options.php:173
850
  msgid "View all vendor comments for an order on the frontend"
851
  msgstr "Ver todos comentários do vendedor para um pedido no frontend"
852
 
853
- #: ../classes/admin/settings/sf-options.php:180
854
  msgid "Submit comments"
855
  msgstr "Enviar comentários"
856
 
857
- #: ../classes/admin/settings/sf-options.php:181
858
  msgid ""
859
  "Submit comments for an order on the frontend. Eg, tracking ID for a product"
860
  msgstr ""
861
  "Enviar comentários para um pedido no frontend. Ex, ID de rastreamento de um "
862
  "produto"
863
 
864
- #: ../classes/admin/settings/sf-options.php:188
865
  msgid "View email addresses"
866
  msgstr "Ver endereços de email"
867
 
868
- #: ../classes/admin/settings/sf-options.php:189
869
  msgid ""
870
  "While viewing order details on the frontend, you can disable or enable email "
871
  "addresses"
@@ -873,59 +1128,66 @@ msgstr ""
873
  "Quando estiver vendo os detalhes de um pedido no frontend, você poderá "
874
  "desativar ou ativar endereços de email"
875
 
876
- #: ../classes/admin/settings/sf-options.php:196
877
  msgid "Export a CSV file of orders for a product"
878
  msgstr "Exportar um arquivo CSV de pedidos para um produto"
879
 
880
- #: ../classes/admin/settings/sf-options.php:197
881
  msgid "Vendors could export orders for a product on the frontend"
882
  msgstr "Vendedores poderiam exportar pedidos para um produto no frontend"
883
 
884
- #: ../classes/admin/settings/sf-options.php:204
885
  msgid "Reports"
886
  msgstr "Relatórios"
887
 
888
- #: ../classes/admin/settings/sf-options.php:205
889
- msgid "View backend sales reports"
890
- msgstr "Ver relatórios de venda no backend"
 
 
 
891
 
892
- #: ../classes/admin/settings/sf-options.php:206
893
  msgid ""
894
- "Graphs and tables via the Reports page in backend. The reports will only "
895
- "display sales data that pertain to their products"
 
896
  msgstr ""
897
- "Gráficos e tabelas via página de Relatórios no backend. Os relatórios "
898
- "mostrarão somente os dados de vendas que dizem respeito a seus produtos"
 
899
 
900
- #: ../classes/admin/settings/sf-options.php:213
901
  msgid "View Frontend sales reports"
902
  msgstr "Ver relatórios de venda no frontend"
903
 
904
- #: ../classes/admin/settings/sf-options.php:214
905
  msgid ""
906
- "Sales table on the frontend on the My Account page. The table will only "
907
- "display sales data that pertain to their products"
 
908
  msgstr ""
909
- "Tabela de vendas no frontend na página Minha Conta. A tabela exibirá apenas "
910
- "dados de vendas que dizem respeito a seus produtos"
 
911
 
912
- #: ../classes/admin/settings/sf-options.php:222
913
  msgid "Submit products"
914
  msgstr "Enviar produtos"
915
 
916
- #: ../classes/admin/settings/sf-options.php:223
917
  msgid ""
918
- "Vendors could submit a product through the backend, and an admin would "
919
- "approve or deny it"
920
  msgstr ""
921
- "Vendedores poderiam enviar um produto pelo backend, e um administrador iria "
922
- "aprovar ou negar"
923
 
924
- #: ../classes/admin/settings/sf-options.php:230
925
  msgid "Edit live products"
926
  msgstr "Editar produtos ao vivo"
927
 
928
- #: ../classes/admin/settings/sf-options.php:231
929
  msgid ""
930
  "Vendors could edit an approved product after it has already gone live. There "
931
  "is no approval or review after editing a live product. This could be "
@@ -935,11 +1197,11 @@ msgstr ""
935
  "Não há aprovação ou revisão após a edição de um produto ao vivo. Isso pode "
936
  "ser perigoso com os vendedores mal intencionados, por isso tome cuidado."
937
 
938
- #: ../classes/admin/settings/sf-options.php:238
939
  msgid "Submit products live without requiring approval"
940
  msgstr "Enviar produtos ao vivo sem pedir aprovação"
941
 
942
- #: ../classes/admin/settings/sf-options.php:239
943
  msgid ""
944
  "Vendors can submit products without review or approval from a shop admin. "
945
  "This could be dangerous with malicious vendors, so take caution."
@@ -948,145 +1210,181 @@ msgstr ""
948
  "administrador de loja. Isso pode ser perigoso com os vendedores mal "
949
  "intencionados, por isso tome cuidado."
950
 
951
- #: ../classes/admin/settings/sf-options.php:245
952
  msgid "Pages"
953
  msgstr "Páginas"
954
 
955
- #: ../classes/admin/settings/sf-options.php:246
956
  msgid "Page configuration"
957
- msgstr "Configuração de Página"
958
 
959
- #: ../classes/admin/settings/sf-options.php:249
960
  msgid "Vendor dashboard"
961
  msgstr "Painel do Vendedor"
962
 
963
- #: ../classes/admin/settings/sf-options.php:250
964
  msgid ""
965
  "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
966
- "code><br/>By default, My Account > Vendor Dashboard should have the "
967
- "shortcode."
 
968
  msgstr ""
969
- "Escolha a página que terá o código <code>[wcv_vendedor_painel]</code><br/"
970
- ">Por padrão, Minha Conta > Painel do Vendedor deve ter este código."
 
 
971
 
972
- #: ../classes/admin/settings/sf-options.php:257
973
  msgid "Shop settings"
974
  msgstr "Ajustes da Loja"
975
 
976
- #: ../classes/admin/settings/sf-options.php:258
977
  msgid ""
978
  "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
979
- ">These are the shop settings a vendor can configure."
 
980
  msgstr ""
981
- "Escolha a página que terá o código <code>[wcv_loja_ajustes]</code><br/>Estes "
982
- "são ajustes da loja que um vendedor pode configurar."
 
983
 
984
- #: ../classes/admin/settings/sf-options.php:265
985
  msgid "Orders page"
986
  msgstr "Página de pedidos"
987
 
988
- #: ../classes/admin/settings/sf-options.php:266
989
  msgid ""
990
  "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
991
- "default, My Account > Orders should have the shortcode."
992
  msgstr ""
993
- "Escolha a página que terá o código <code>[wcv_pedidos]</code><br/>Por "
994
- "padrão, Minha Conta > Pedidos deve ter este código."
995
 
996
- #: ../classes/admin/settings/sf-options.php:273
997
  msgid "Vendor terms"
998
  msgstr "Termos do vendedor"
999
 
1000
- #: ../classes/admin/settings/sf-options.php:274
1001
  msgid ""
1002
  "These terms are shown to a user when submitting an application to become a "
1003
- "vendor.<br/>If left blank, no terms will be shown to the applicant."
 
1004
  msgstr ""
1005
- "Estes termos são mostrados a um usuário quando enviarem um pedido para se "
1006
- "tornar um vendedor. <br/> Se ficar em branco, nenhum termo será mostrado ao "
1007
- "requerente."
 
 
 
 
1008
 
1009
- #: ../classes/admin/settings/sf-options.php:292
1010
  msgid "Payments"
1011
  msgstr "Pagamentos"
1012
 
1013
- #: ../classes/admin/settings/sf-options.php:294
1014
- msgid "User payments"
1015
- msgstr "Pagamentos do usuário"
1016
 
1017
- #: ../classes/admin/settings/sf-options.php:295
1018
  #, php-format
1019
  msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
1020
  msgstr "Comissão atual total devida: %s. <a href=\"%s\">Ver detalhes</a>."
1021
 
1022
- #: ../classes/admin/settings/sf-options.php:296
1023
  #, php-format
1024
  msgid ""
1025
  "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
1026
- "\">here</a>."
 
 
 
 
 
 
 
 
 
1027
  msgstr ""
1028
- "Certifique-se de atualizar suas configurações dos ajustes do PayPal Adaptive "
1029
- "Payments <a href=\"%s\">aqui</a>."
1030
-
1031
- #: ../classes/admin/settings/sf-options.php:300
 
 
 
 
 
 
 
 
 
1032
  msgid "Instant pay"
1033
- msgstr "Pagamento imediato"
1034
 
1035
- #: ../classes/admin/settings/sf-options.php:301
1036
- msgid "Instantly pay vendors their commission when an order is made"
 
 
1037
  msgstr ""
1038
- "Pagar imediatamente os vendedores suas comissões quando um pedido é feito"
 
 
1039
 
1040
- #: ../classes/admin/settings/sf-options.php:302
1041
  msgid ""
1042
  "For this to work, customers must checkout with the PayPal Adaptive Payments "
1043
  "gateway. Using any other gateways will not pay vendors instantly"
1044
  msgstr ""
1045
  "Para que isso funcione, os clientes devem finalizar suas compras com o "
1046
  "gateway do PayPal Adaptive Payments. Usando quaisquer outros gateways o "
1047
- "pagamento dos vendedores não será imediato"
1048
 
1049
- #: ../classes/admin/settings/sf-options.php:309
1050
  msgid "Payment schedule"
1051
  msgstr "Programação de pagamentos"
1052
 
1053
- #: ../classes/admin/settings/sf-options.php:310
1054
  msgid "Note: Schedule will only work if instant pay is unchecked"
1055
  msgstr ""
1056
  "Nota: Programação só vai funcionar se a opção de pagamento imediato for "
1057
  "desmarcada"
1058
 
1059
- #: ../classes/admin/settings/sf-options.php:315
 
 
 
 
1060
  msgid "Weekly"
1061
  msgstr "Semanal"
1062
 
1063
- #: ../classes/admin/settings/sf-options.php:316
1064
  msgid "Biweekly"
1065
  msgstr "Quinzenal"
1066
 
1067
- #: ../classes/admin/settings/sf-options.php:317
1068
  msgid "Monthly"
1069
  msgstr "Mensal"
1070
 
1071
- #: ../classes/admin/settings/sf-options.php:318
1072
  msgid "Manual"
1073
  msgstr "Manual"
1074
 
1075
- #: ../classes/admin/settings/sf-options.php:319
1076
  msgid "Now"
1077
  msgstr "Agora"
1078
 
1079
- #: ../classes/admin/settings/sf-options.php:324
1080
  msgid "Email notification"
1081
- msgstr "Email de notificação"
1082
 
1083
- #: ../classes/admin/settings/sf-options.php:325
1084
  msgid ""
1085
  "Send the WooCommerce admin an email each time a payment has been made via "
1086
  "the payment schedule options above"
1087
  msgstr ""
1088
- "Mandar um email para o administrador do Woocommerce cada vez que um "
1089
- "pagamento foi feito por uma das opções de agendamento de pagamento acima"
1090
 
1091
  #: ../classes/admin/views/html-vendor-settings-page.php:11
1092
  #: ../templates/dashboard/settings/paypal-email-form.php:2
@@ -1117,7 +1415,7 @@ msgstr "Descrição da Loja"
1117
  #: ../templates/dashboard/settings/shop-description.php:3
1118
  #, php-format
1119
  msgid "This is displayed on your <a href=\"%s\">shop page</a>."
1120
- msgstr "Isto está na sua <a href=\"%s\">página da loja</a>."
1121
 
1122
  #: ../classes/admin/views/html-vendor-settings-page.php:70
1123
  msgid "Save Shop Settings"
@@ -1128,59 +1426,61 @@ msgstr "Salvar Ajustes da Loja"
1128
  msgid "Payment total: %s"
1129
  msgstr "Total de Pagamento: %s"
1130
 
1131
- #: ../classes/class-cron.php:148
 
 
 
 
1132
  msgid "Once Weekly"
1133
  msgstr "Uma vez por semana"
1134
 
1135
- #: ../classes/class-cron.php:153
1136
  msgid "Once every two weeks"
1137
  msgstr "Uma vez a cada duas semanas"
1138
 
1139
- #: ../classes/class-cron.php:158
1140
  msgid "Once a month"
1141
  msgstr "Uma vez por mês"
1142
 
1143
- #: ../classes/class-install.php:59 ../classes/class-install.php:213
1144
- msgid "Pending Vendor"
1145
- msgstr "Vendedor pendente"
1146
-
1147
- #: ../classes/class-install.php:164
1148
  msgid "Vendor Dashboard"
1149
  msgstr "Painel do Vendedor"
1150
 
1151
- #: ../classes/front/class-vendor-cart.php:41
1152
- #: ../classes/front/class-vendor-shop.php:263
1153
- msgid "Sold by"
1154
- msgstr "Vendido por "
1155
 
1156
- #: ../classes/front/dashboard/class-vendor-dashboard.php:46
 
 
 
 
 
1157
  msgid "Order marked shipped."
1158
- msgstr "Pedido marcado enviado"
 
 
 
 
 
1159
 
1160
- #: ../classes/front/dashboard/class-vendor-dashboard.php:72
1161
- #: ../classes/front/dashboard/class-vendor-dashboard.php:73
1162
- #: ../classes/front/orders/class-orders.php:144
1163
- #: ../classes/front/orders/class-orders.php:145
1164
  msgid "Tracking number"
1165
  msgstr "Número de rastreamento"
1166
 
1167
- #: ../classes/front/dashboard/class-vendor-dashboard.php:75
1168
- #: ../classes/front/orders/class-orders.php:147
1169
  msgid "Success. Your tracking number has been updated."
1170
  msgstr "Sucesso. Seu número de rastreamento foi atualizado."
1171
 
1172
- #: ../classes/front/orders/class-export-csv.php:37
1173
- msgid "Extra data"
1174
- msgstr "Dados extra"
1175
-
1176
- #: ../classes/front/orders/class-export-csv.php:38
1177
  #: ../templates/dashboard/reports.php:18
1178
- #: ../templates/emails/admin-new-order.php:23
1179
  #: ../templates/emails/notify-vendor-shipped.php:23
 
1180
  msgid "Quantity"
1181
  msgstr "Quantidade"
1182
 
1183
- #: ../classes/front/orders/class-orders.php:107
1184
  msgid ""
1185
  "You haven't selected a product's orders to view! Please go back to the "
1186
  "Vendor Dashboard and click Show Orders on the product you'd like to view."
@@ -1189,37 +1489,37 @@ msgstr ""
1189
  "Painel do Vendedor e clique em Mostrar Pedidos no produto que você gostaria "
1190
  "de ver."
1191
 
1192
- #: ../classes/front/orders/class-orders.php:111
1193
  msgid "No orders."
1194
  msgstr "Sem pedidos."
1195
 
1196
- #: ../classes/front/orders/class-orders.php:209
1197
  msgid "Product Title"
1198
- msgstr "Título do produto"
1199
 
1200
- #: ../classes/front/orders/class-orders.php:210
1201
  msgid "Full name"
1202
  msgstr "Nome completo"
1203
 
1204
- #: ../classes/front/orders/class-orders.php:211
1205
  msgid "Address"
1206
  msgstr "Endereço"
1207
 
1208
- #: ../classes/front/orders/class-orders.php:212
1209
  msgid "City"
1210
  msgstr "Cidade"
1211
 
1212
- #: ../classes/front/orders/class-orders.php:213
1213
  msgid "State"
1214
  msgstr "Estado"
1215
 
1216
- #: ../classes/front/orders/class-orders.php:214
1217
  msgid "Zip"
1218
  msgstr "CEP"
1219
 
1220
- #: ../classes/front/orders/class-orders.php:215
1221
  msgid "Email address"
1222
- msgstr "Endereço de Email"
1223
 
1224
  #: ../classes/front/orders/class-submit-comment.php:41
1225
  msgid "You've left the comment field empty!"
@@ -1229,26 +1529,32 @@ msgstr "Você deixou o campo de comentário vazio!"
1229
  msgid "Success. The customer has been notified of your comment."
1230
  msgstr "Sucesso. O cliente foi notificado de seu comentário."
1231
 
1232
- #: ../classes/front/signup/class-vendor-signup.php:44
 
1233
  #: ../templates/dashboard/denied.php:22
1234
  msgid "Apply to become a vendor? "
1235
- msgstr "Quer se tornar um vendedor? "
1236
 
1237
- #: ../classes/front/signup/class-vendor-signup.php:53
1238
- #: ../templates/dashboard/denied.php:33
1239
  #, php-format
1240
- msgid "I have read and accepted the <a href=\"%s\">terms and conditions</a>"
1241
- msgstr "Eu li e aceito os <a href=\"%s\">terms and conditions</a>"
 
 
 
1242
 
1243
- #: ../classes/front/signup/class-vendor-signup.php:87
1244
  msgid "Application denied. You are an administrator."
1245
- msgstr "Requerimento negado. Você é um administrador."
1246
 
1247
- #: ../classes/front/signup/class-vendor-signup.php:89
1248
  msgid "Your application has been submitted."
1249
- msgstr "O seu requerimento foi enviado."
1250
 
1251
- #: ../classes/front/signup/class-vendor-signup.php:125
 
 
1252
  msgid "You must accept the terms and conditions to become a vendor."
1253
  msgstr "Você deve aceitar os termos e as condições para se tornar um vendedor."
1254
 
@@ -1270,7 +1576,7 @@ msgstr "pagamento IPN concluido"
1270
 
1271
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:146
1272
  msgid "Enable PayPal Adaptive Payments"
1273
- msgstr "Ativar PayPal Adaptive Payments"
1274
 
1275
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:152
1276
  msgid "Method Title"
@@ -1310,9 +1616,8 @@ msgid ""
1310
  "You must have an <a href=\"%s\">Application ID</a> to process live "
1311
  "transactions. You do not need one for testing in Sandbox mode."
1312
  msgstr ""
1313
- "Você deve ter um <a href=\"%s\">Requerimento ID</a> para processar as "
1314
- "transações ao vivo. Você não precisa de um Requerimento ID para testar no "
1315
- "modo Sandbox."
1316
 
1317
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:179
1318
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:213
@@ -1327,21 +1632,21 @@ msgstr "Endereço de email para onde os pagamentos principais devem ir."
1327
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:185
1328
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:219
1329
  msgid "API Username"
1330
- msgstr "Nome de usuário do API"
1331
 
1332
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:190
1333
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:224
1334
  msgid "API Password"
1335
- msgstr "Senha do API"
1336
 
1337
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:195
1338
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:229
1339
  msgid "API Signature"
1340
- msgstr "Assinatura do API"
1341
 
1342
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:200
1343
  msgid "Application ID"
1344
- msgstr "Requerimento ID"
1345
 
1346
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:202
1347
  msgid "Only required when doing live transactions."
@@ -1367,11 +1672,11 @@ msgstr "Ajustes Variados"
1367
 
1368
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:245
1369
  msgid "Enable PayPal Sandbox mode"
1370
- msgstr "Ativar modo PayPal Sandbox"
1371
 
1372
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:251
1373
  msgid "Enable logging"
1374
- msgstr "Ativar log"
1375
 
1376
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:269
1377
  msgid ""
@@ -1385,25 +1690,25 @@ msgstr ""
1385
 
1386
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1387
  msgid "Gateway Disabled"
1388
- msgstr "Gateway Desativado"
1389
 
1390
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1391
  #, php-format
1392
  msgid "%s does not support your store currency."
1393
  msgstr "%s não suporta a moeda de sua loja."
1394
 
1395
- #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:369
1396
- #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:483
1397
- #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:150
1398
  #, php-format
1399
  msgid "Error: %s"
1400
  msgstr "Erro: %s"
1401
 
1402
- #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:378
1403
- #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:379
1404
  #, php-format
1405
  msgid "Error ID: %s. %s"
1406
- msgstr "Erro ID: %s. %s"
1407
 
1408
  #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:115
1409
  msgid "No vendors found to pay. Maybe they haven't set a PayPal address?"
@@ -1411,26 +1716,26 @@ msgstr ""
1411
  "Nenhum vendedor foi encontrado para ser pago. Talvez eles não tenha definido "
1412
  "um endereço PayPal?"
1413
 
1414
- #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:164
1415
  msgid "All due commission has been paid for."
1416
- msgstr "Todas comissões devidas já foram pagas."
1417
 
1418
- #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:170
1419
  msgid ""
1420
  "All due commission has been paid for, but I could not clear it from their "
1421
  "profiles due to an internal error. Commission will still be listed as due. "
1422
  "Please manually mark the commission as paid from the Commissions page."
1423
  msgstr ""
1424
- "Todas comissões devidas já foram pagas, mas eu não pude limpar seus perfis "
1425
- "devido a um erro interno. Comissão ainda estará marcada como devida. Por "
1426
- "favor, marque manualmente a comissão como paga a partir da página de "
1427
- "Comissões."
1428
 
1429
- #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:205
1430
  msgid "WooCommerce: Mass payments for vendors update"
1431
  msgstr "WooCommerce: Pagamentos em massa para atualização de vendedores"
1432
 
1433
- #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:207
1434
  msgid ""
1435
  "Hello! A payment was just triggered to mass pay all vendors their due "
1436
  "commission."
@@ -1438,20 +1743,20 @@ msgstr ""
1438
  "Olá! Um pagamento acabou de ser acionado para o pagamento em massa das "
1439
  "comissões devidas a todos os vendedores."
1440
 
1441
- #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:208
1442
  #, php-format
1443
  msgid "Payment status: %s."
1444
  msgstr "Condição do pagamento: %s."
1445
 
1446
- #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:209
1447
  #, php-format
1448
  msgid "Payment message: %s."
1449
  msgstr "Mensagem do pagamento: %s."
1450
 
1451
- #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:212
1452
  #, php-format
1453
  msgid "Payment total: %s."
1454
- msgstr "Total de pagamento: %s"
1455
 
1456
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:35
1457
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:71
@@ -1472,7 +1777,7 @@ msgstr ""
1472
 
1473
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:64
1474
  msgid "Enable WC Vendors Test Gateway Payment"
1475
- msgstr "Ativar Teste do Gateway de Pagamento do WC Vendors"
1476
 
1477
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:68
1478
  msgid "Title"
@@ -1524,15 +1829,36 @@ msgstr ""
1524
  msgid "Your account is not setup as a vendor."
1525
  msgstr "Sua conta não é cadastrada como vendedor."
1526
 
 
 
 
 
 
1527
  #: ../templates/dashboard/denied.php:53
1528
  msgid "Submit"
1529
  msgstr "Enviar"
1530
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1531
  #: ../templates/dashboard/orders.php:7 ../templates/dashboard/orders.php:10
1532
  msgid "Hide items"
1533
- msgstr "Ocultar itens"
1534
 
1535
- #: ../templates/dashboard/orders.php:8 ../templates/dashboard/orders.php:68
1536
  msgid "View items"
1537
  msgstr "Ver itens"
1538
 
@@ -1540,15 +1866,11 @@ msgstr "Ver itens"
1540
  msgid "Links"
1541
  msgstr "Links"
1542
 
1543
- #: ../templates/dashboard/orders.php:68
1544
- msgid "Unmark shipped"
1545
- msgstr "Desmarcar como enviado"
1546
-
1547
- #: ../templates/dashboard/orders.php:68
1548
  msgid "Tracking"
1549
  msgstr "Rastreamento"
1550
 
1551
- #: ../templates/dashboard/orders.php:118
1552
  msgid "You have no orders during this period."
1553
  msgstr "Você não tem nenhum pedido durante este período"
1554
 
@@ -1580,37 +1902,6 @@ msgstr "Você não fez nenhuma compra ainda."
1580
  msgid "Save"
1581
  msgstr "Salvar"
1582
 
1583
- #: ../templates/emails/admin-new-order.php:13
1584
- #, php-format
1585
- msgid "You have received an order from %s. Their order is as follows:"
1586
- msgstr "Você recebeu um pedido de %s. Seus pedidos são:"
1587
-
1588
- #: ../templates/emails/admin-new-order.php:17
1589
- #: ../templates/emails/notify-vendor-shipped.php:17
1590
- #, php-format
1591
- msgid "Order: %s"
1592
- msgstr "Pedido: %s"
1593
-
1594
- #: ../templates/emails/admin-new-order.php:24
1595
- #: ../templates/emails/notify-vendor-shipped.php:24
1596
- msgid "Price"
1597
- msgstr "Preço"
1598
-
1599
- #: ../templates/emails/admin-new-order.php:50
1600
- #: ../templates/emails/notify-vendor-shipped.php:50
1601
- msgid "Customer details"
1602
- msgstr "Detalhes do cliente"
1603
-
1604
- #: ../templates/emails/admin-new-order.php:53
1605
- #: ../templates/emails/notify-vendor-shipped.php:53
1606
- msgid "Email:"
1607
- msgstr "Email:"
1608
-
1609
- #: ../templates/emails/admin-new-order.php:56
1610
- #: ../templates/emails/notify-vendor-shipped.php:56
1611
- msgid "Tel:"
1612
- msgstr "Tel:"
1613
-
1614
  #: ../templates/emails/application-status.php:5
1615
  #, php-format
1616
  msgid "Hi there. This is a notification about a vendor application on %s."
@@ -1654,6 +1945,37 @@ msgstr ""
1654
  "Um vendedor marcou parte de seu pedido como enviado. Os itens que foram "
1655
  "enviados são:"
1656
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1657
  #: ../templates/orders/comments/add-new-comment.php:11
1658
  msgid "Add comment"
1659
  msgstr "Adicionar comentário"
@@ -1680,43 +2002,43 @@ msgstr "Sem nota do cliente."
1680
  msgid "Comments (%s)"
1681
  msgstr "Comentários (%s)"
1682
 
1683
- #: ../templates/orders/shipping/shipping-form.php:46
1684
  msgid "Provider:"
1685
  msgstr "Fornecedor:"
1686
 
1687
- #: ../templates/orders/shipping/shipping-form.php:48
1688
  msgid "Custom Provider"
1689
  msgstr "Fornecedor Personalizado"
1690
 
1691
- #: ../templates/orders/shipping/shipping-form.php:68
1692
  msgid "Provider Name:"
1693
  msgstr "Nome do Fornecedor:"
1694
 
1695
- #: ../templates/orders/shipping/shipping-form.php:76
1696
  msgid "Tracking number:"
1697
- msgstr "Código de rastreamento:"
1698
 
1699
- #: ../templates/orders/shipping/shipping-form.php:84
1700
  msgid "Tracking link:"
1701
  msgstr "Link de rastreamento:"
1702
 
1703
- #: ../templates/orders/shipping/shipping-form.php:93
1704
  msgid "Date shipped:"
1705
  msgstr "Data de envio:"
1706
 
1707
- #: ../templates/orders/shipping/shipping-form.php:101
1708
  msgid "Preview:"
1709
  msgstr "Visualizar:"
1710
 
1711
- #: ../templates/orders/shipping/shipping-form.php:101
1712
  msgid "Click here to track your shipment"
1713
  msgstr "Clique aqui para rastrear seu envio"
1714
 
1715
- #: ../templates/orders/shipping/shipping-form.php:110
1716
  msgid "Update tracking number"
1717
- msgstr "Atualizar código de rastreamento"
1718
 
1719
- #: ../templates/orders/shipping/shipping-form.php:112
1720
  msgid "Mark as shipped"
1721
  msgstr "Marcar como enviado"
1722
 
@@ -1724,3 +2046,150 @@ msgstr "Marcar como enviado"
1724
  #, php-format
1725
  msgid "Quantity: %d"
1726
  msgstr "Quantidade: %d"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  msgstr ""
4
  "Project-Id-Version: WC Vendors\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2016-09-14 16:15-0300\n"
7
+ "PO-Revision-Date: 2016-09-14 16:43-0300\n"
 
8
  "Last-Translator: \n"
9
  "Language-Team: WC Vendors <support@wcvendors.com>\n"
10
+ "Language: pt_BR\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "POT-Revision-Date: Sun May 24 2015 08:31:40 GMT-0300 (BRT)\n"
15
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Generator: Poedit 1.8.9\n"
18
  "X-Poedit-Basepath: .\n"
19
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
20
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
21
  "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
22
  "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
 
24
  "X-Poedit-SearchPath-0: .\n"
25
  "X-Poedit-SearchPath-1: ..\n"
26
 
27
+ #: ../class-wc-vendors.php:51
28
+ msgid ""
29
+ "WC Vendors requires WooCommerce to run. Please install WooCommerce and "
30
+ "activate before attempting to activate again."
31
+ msgstr ""
32
+ "WC Vendors requer que o WooCommerce esteja rodando. Por favor, instale e "
33
+ "ative o WooCommerce antes de tentar ativar novamente."
34
+
35
+ #: ../class-wc-vendors.php:100 ../classes/admin/class-admin-reports.php:41
36
+ #: ../classes/admin/class-admin-users.php:408
37
  msgid "WC Vendors"
38
  msgstr "WC Vendors"
39
 
40
+ #: ../class-wc-vendors.php:127
41
  msgid ""
42
  "<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of WooCommerce "
43
+ "v2.5.0."
44
  msgstr ""
45
+ "<b>WC Vendors está desabilitado</b>. WC Vendors requer no mínimo WooCommerce "
46
+ "v2.5.0."
47
 
48
+ #: ../class-wc-vendors.php:288 ../classes/admin/settings/sf-options.php:192
49
  msgid "Capabilities"
50
  msgstr "Recursos de usuário"
51
 
52
+ #: ../class-wc-vendors.php:311 ../classes/admin/class-admin-page.php:149
53
+ #: ../classes/admin/class-admin-page.php:372
54
+ #: ../classes/admin/class-admin-reports.php:175
55
+ #: ../classes/admin/class-admin-reports.php:458
56
+ #: ../classes/admin/class-product-meta.php:46
57
+ #: ../classes/admin/class-product-meta.php:187
58
+ #: ../classes/admin/class-product-meta.php:223 ../classes/class-install.php:91
59
+ msgid "Vendor"
60
+ msgstr "Vendedor"
61
+
62
+ #: ../class-wc-vendors.php:313 ../classes/admin/settings/sf-options.php:4
63
  msgid "General"
64
  msgstr "Geral"
65
 
66
+ #: ../class-wc-vendors.php:351
67
  msgid "Documentation/KB"
68
+ msgstr "Documentação/KB"
69
 
70
+ #: ../class-wc-vendors.php:352
71
  msgid "Help Forums"
72
  msgstr "Fóruns de Ajuda"
73
 
74
+ #: ../class-wc-vendors.php:353
75
  msgid "Paid Support"
76
+ msgstr "Suporte pago"
 
 
 
 
 
 
 
 
 
77
 
78
+ #: ../classes/admin/class-admin-page.php:29
 
 
 
 
 
 
 
 
 
 
79
  msgid "Vendors shipped"
80
  msgstr "Enviado pelos vendedores"
81
 
82
+ #: ../classes/admin/class-admin-page.php:52
83
  msgid "Vendors Shipped"
84
  msgstr "Enviado pelos Vendedores"
85
 
86
+ #: ../classes/admin/class-admin-page.php:78
87
+ #: ../classes/admin/class-admin-page.php:240
88
+ #: ../classes/admin/class-product-meta.php:151
89
+ #: ../classes/admin/class-product-meta.php:167
 
90
  #: ../templates/dashboard/reports.php:19
91
  msgid "Commission"
92
  msgstr "Comissão"
93
 
94
+ #: ../classes/admin/class-admin-page.php:103
95
+ msgid "Reset WC Vendors roles "
96
+ msgstr "Reinicializar funções do WC Vendor"
97
+
98
+ #: ../classes/admin/class-admin-page.php:104
99
+ msgid "Reset WC Vendor Roles"
100
+ msgstr "Reinicializar Funções do WC Vendor"
101
+
102
+ #: ../classes/admin/class-admin-page.php:105
103
+ msgid ""
104
+ "This will reset the wcvendors roles ( vendor & pending_vendor ), back to the "
105
+ "default capabilities."
106
+ msgstr ""
107
+ "Isso irá reajustar as funções de wcvendors (vendedor & vendedor pendente) "
108
+ "para as autorizações padrão. "
109
+
110
+ #: ../classes/admin/class-admin-page.php:110
111
+ msgid "Reset WC Vendors "
112
+ msgstr "Reinicializar WC Vendors"
113
+
114
+ #: ../classes/admin/class-admin-page.php:111
115
+ msgid "Reset WC Vendors Settings"
116
+ msgstr "‪Reinicializar Configurações do WC Vendor"
117
+
118
+ #: ../classes/admin/class-admin-page.php:112
119
+ msgid ""
120
+ "This will reset wcvendors back to defaults. This DELETES ALL YOUR Settings."
121
+ msgstr ""
122
+ "Isso irá reajustar wcvendors para o padrão. Isso REMOVERÁ TODOS AS SUAS "
123
+ "CONFIGURAÇÕES"
124
+
125
+ #: ../classes/admin/class-admin-page.php:152 ../classes/class-install.php:84
126
+ #: ../classes/class-install.php:239
127
+ msgid "Pending Vendor"
128
+ msgstr "Vendedor pendente"
129
+
130
+ #: ../classes/admin/class-admin-page.php:158
131
+ msgid "WC Vendor roles successfully reset."
132
+ msgstr "Funções do WC Vendor reinicializadas com sucesso."
133
+
134
+ #: ../classes/admin/class-admin-page.php:172
135
+ msgid "WC Vendors was successfully reset. All settings have been reset."
136
+ msgstr ""
137
+ "WC Vendors foi reinicializado com sucesso. Todas as configurações foram "
138
+ "reinicializadas."
139
+
140
+ #: ../classes/admin/class-admin-page.php:370
141
+ #: ../classes/admin/class-admin-reports.php:174
142
  #: ../templates/dashboard/reports.php:17
 
143
  #: ../templates/emails/notify-vendor-shipped.php:22
144
+ #: ../templates/emails/vendor-new-order.php:22
145
  msgid "Product"
146
  msgstr "Produto"
147
 
148
+ #: ../classes/admin/class-admin-page.php:371
149
+ #: ../classes/admin/class-vendor-admin-dashboard.php:283
150
  msgid "Order ID"
151
+ msgstr "ID do Pedido "
 
 
 
 
 
 
 
 
152
 
153
+ #: ../classes/admin/class-admin-page.php:373
154
+ #: ../classes/admin/class-admin-reports.php:176
155
+ #: ../classes/admin/class-admin-reports.php:374
156
+ #: ../classes/admin/class-vendor-admin-dashboard.php:286
 
157
  #: ../templates/dashboard/orders.php:35
158
  msgid "Total"
159
  msgstr "Total"
160
 
161
+ #: ../classes/admin/class-admin-page.php:374
162
+ #: ../classes/admin/class-admin-reports.php:178
163
+ #: ../classes/admin/class-admin-reports.php:461
164
  msgid "Status"
165
  msgstr "Condição"
166
 
167
+ #: ../classes/admin/class-admin-page.php:375
168
+ #: ../classes/admin/class-vendor-admin-dashboard.php:288
169
+ #: ../classes/front/orders/class-orders.php:195
170
  #: ../templates/dashboard/orders.php:36
171
  msgid "Date"
172
  msgstr "Data"
173
 
174
+ #: ../classes/admin/class-admin-page.php:412
175
  msgid "Mark paid"
176
+ msgstr "Marca de pago"
177
 
178
+ #: ../classes/admin/class-admin-page.php:413
179
  msgid "Mark due"
180
+ msgstr "Marca de à pagar"
181
 
182
+ #: ../classes/admin/class-admin-page.php:414
183
  msgid "Mark reversed"
184
+ msgstr "Marca de revertido"
185
 
186
+ #: ../classes/admin/class-admin-page.php:439
 
187
  msgid "Filter"
188
  msgstr "Filtro"
189
 
190
+ #: ../classes/admin/class-admin-page.php:474
191
  msgid "Show all dates"
192
  msgstr "Mostrar todas as datas"
193
 
194
+ #: ../classes/admin/class-admin-page.php:487
195
  #, php-format
196
  msgid "%1$s %2$d"
197
  msgstr "%1$s %2$d"
198
 
199
+ #: ../classes/admin/class-admin-page.php:509
200
  msgid "Show all Statuses"
201
  msgstr "Mostrar todas Condições"
202
 
203
+ #: ../classes/admin/class-admin-page.php:564
204
  msgid "Commission marked paid."
205
+ msgstr "Comissão marcada como paga."
206
 
207
+ #: ../classes/admin/class-admin-page.php:571
208
  msgid "Commission marked due."
209
+ msgstr "Comissão marcada como a pagar."
210
 
211
+ #: ../classes/admin/class-admin-page.php:578
212
  msgid "Commission marked reversed."
213
+ msgstr "Comissão marcada como revertida."
214
 
215
  #: ../classes/admin/class-admin-reports.php:44
216
  msgid "Overview"
224
  msgid "Commission by product"
225
  msgstr "Comissão por produto"
226
 
227
+ #: ../classes/admin/class-admin-reports.php:62
228
+ #: ../classes/admin/class-admin-reports.php:345
229
+ msgid "Commission Totals"
230
+ msgstr "Totais de Comissão"
231
+
232
+ #: ../classes/admin/class-admin-reports.php:63
233
+ msgid ""
234
+ "Commission totals for all vendors includes shipping and taxes. By default no "
235
+ "date range is used and all due commissions are returned. Use the date range "
236
+ "to filter."
237
+ msgstr ""
238
+ "Totais de comissões para todos os vendedores incluem envio e taxas. Por "
239
+ "padrão não é usado nenhum intervalo de tempo e todas as comissões a pagar "
240
+ "são devolvidas. Use o filtro de intervalo de datas."
241
+
242
+ #: ../classes/admin/class-admin-reports.php:121
243
+ #: ../classes/admin/class-admin-reports.php:437
244
  #: ../templates/dashboard/date-picker.php:3
245
  msgid "From:"
246
  msgstr "De:"
247
 
248
+ #: ../classes/admin/class-admin-reports.php:123
249
+ #: ../classes/admin/class-admin-reports.php:439
250
  #: ../templates/dashboard/date-picker.php:7
251
  msgid "To:"
252
  msgstr "Para:"
253
 
254
+ #: ../classes/admin/class-admin-reports.php:125
255
+ #: ../classes/admin/class-admin-reports.php:283
256
+ #: ../classes/admin/class-admin-reports.php:448
257
  #: ../templates/dashboard/date-picker.php:12
258
  msgid "Show"
259
  msgstr "Mostrar"
260
 
261
+ #: ../classes/admin/class-admin-reports.php:131
262
  msgid "Total paid in range"
263
  msgstr "Total pago na faixa de"
264
 
265
+ #: ../classes/admin/class-admin-reports.php:134
266
+ #: ../classes/admin/class-admin-reports.php:141
267
+ #: ../classes/admin/class-admin-reports.php:148
268
  msgid "n/a"
269
  msgstr "n/a"
270
 
271
+ #: ../classes/admin/class-admin-reports.php:138
272
  msgid "Total due in range"
273
+ msgstr "Total a pagar na faixa de"
274
 
275
+ #: ../classes/admin/class-admin-reports.php:145
276
  msgid "Total reversed in range"
277
  msgstr "Total revertido na faixa de"
278
 
279
+ #: ../classes/admin/class-admin-reports.php:155
280
  msgid "Recent Commission"
281
  msgstr "Comissão recente"
282
 
283
+ #: ../classes/admin/class-admin-reports.php:173
284
+ #: ../classes/front/orders/class-orders.php:187
285
  #: ../templates/dashboard/orders.php:33
286
  msgid "Order"
287
  msgstr "Pedido"
288
 
289
+ #: ../classes/admin/class-admin-reports.php:177
290
  msgid "Date &amp; Time"
291
+ msgstr "Data &amp; Hora"
292
 
293
+ #: ../classes/admin/class-admin-reports.php:186
294
  msgid "N/A"
295
  msgstr "N/A"
296
 
297
+ #: ../classes/admin/class-admin-reports.php:191
298
  msgid "D j M Y \\a\\t h:ia"
299
+ msgstr "D j M Y \a\\t h:ia"
300
 
301
+ #: ../classes/admin/class-admin-reports.php:200
302
  msgid "No commission yet"
303
  msgstr "Sem comissão no momento"
304
 
305
+ #: ../classes/admin/class-admin-reports.php:234
306
  msgid "Show:"
307
  msgstr "Mostrar:"
308
 
309
+ #: ../classes/admin/class-admin-reports.php:243
310
  msgid "Search for a product&hellip;"
311
  msgstr "Procurar por um produto&hellip;"
312
 
313
+ #: ../classes/admin/class-admin-reports.php:246
314
  msgid "Type in a product name to start searching..."
315
  msgstr "Digite o nome de um produto para iniciar a busca..."
316
 
317
+ #: ../classes/admin/class-admin-reports.php:278
318
  msgid "Select a vendor&hellip;"
319
  msgstr "Selecionar um vendedor&hellip;"
320
 
321
+ #: ../classes/admin/class-admin-reports.php:344
322
  msgid "Month"
323
  msgstr "Mês"
324
 
325
+ #: ../classes/admin/class-admin-reports.php:346
326
  msgid "Tax"
327
  msgstr "Imposto"
328
 
329
+ #: ../classes/admin/class-admin-reports.php:347
330
+ #: ../classes/admin/settings/sf-options.php:52
331
+ #: ../classes/admin/settings/sf-options.php:136
332
+ #: ../templates/dashboard/orders.php:34 ../templates/orders/orders.php:115
333
  msgid "Shipping"
334
+ msgstr "Frete"
335
 
336
+ #: ../classes/admin/class-admin-reports.php:348
337
+ #: ../classes/admin/class-admin-reports.php:445
338
  msgid "Reversed"
339
  msgstr "Revertido"
340
 
341
+ #: ../classes/admin/class-admin-reports.php:349
342
+ #: ../classes/admin/class-admin-reports.php:444
343
  msgid "Paid"
344
  msgstr "Pago"
345
 
346
+ #: ../classes/admin/class-admin-reports.php:350
347
+ #: ../classes/admin/class-admin-reports.php:443
348
+ msgid "Due"
349
+ msgstr "A pagar"
350
+
351
+ #: ../classes/admin/class-admin-reports.php:459
352
+ msgid "Tax Total"
353
+ msgstr "Total de Imposto"
354
+
355
+ #: ../classes/admin/class-admin-reports.php:460
356
+ msgid "Shipping Total"
357
+ msgstr "Total de Envio:"
358
+
359
+ #: ../classes/admin/class-admin-reports.php:462
360
+ msgid "Commission Total"
361
+ msgstr "Total de Commissão"
362
+
363
+ #: ../classes/admin/class-admin-reports.php:484
364
+ msgid "No commissions found."
365
+ msgstr "Nenhuma comissão foi encontrada."
366
+
367
+ #: ../classes/admin/class-admin-users.php:418
368
  msgid "Enable HTML for the shop description"
369
  msgstr "Permitir HTML para a descrição da loja"
370
 
371
+ #: ../classes/admin/class-admin-users.php:424
372
  msgid "Shop name"
373
  msgstr "Nome da loja"
374
 
375
+ #: ../classes/admin/class-admin-users.php:431
376
  msgid "PayPal E-mail"
377
+ msgstr "PayPal E-mail"
378
 
379
+ #: ../classes/admin/class-admin-users.php:432
380
  msgid "required"
381
  msgstr "requerido"
382
 
383
+ #: ../classes/admin/class-admin-users.php:439
384
  msgid "Commission rate"
385
  msgstr "Taxa de comissão"
386
 
387
+ #: ../classes/admin/class-admin-users.php:440
388
+ #: ../classes/admin/class-product-meta.php:174
389
  msgid "Leave blank for default"
390
  msgstr "Deixe em branco para o padrão"
391
 
392
+ #: ../classes/admin/class-admin-users.php:446
393
+ msgid "Give Tax"
394
+ msgstr ""
395
+
396
+ #: ../classes/admin/class-admin-users.php:451
397
+ msgid "Tax override for vendor"
398
+ msgstr "Sobrescrever taxa para o vendedor"
399
+
400
+ #: ../classes/admin/class-admin-users.php:457
401
+ msgid "Give Shipping"
402
+ msgstr ""
403
+
404
+ #: ../classes/admin/class-admin-users.php:462
405
+ msgid "Shipping override for vendor"
406
+ msgstr "Sobrescrever frete de vendedor"
407
+
408
+ #: ../classes/admin/class-admin-users.php:468
409
  #: ../classes/admin/views/html-vendor-settings-page.php:30
 
410
  #: ../templates/dashboard/settings/seller-info.php:3
411
  msgid "Seller info"
412
  msgstr "Informação do Vendedor"
413
 
414
+ #: ../classes/admin/class-admin-users.php:473
415
  msgid "Shop description"
416
  msgstr "Descrição da Loja"
417
 
418
+ #: ../classes/admin/class-vendor-admin-dashboard.php:20
419
+ #: ../classes/class-install.php:192
420
  msgid "Shop Settings"
421
  msgstr "Ajustes da Loja"
422
 
423
+ #: ../classes/admin/class-vendor-admin-dashboard.php:21
424
+ #: ../classes/admin/class-vendor-admin-dashboard.php:146
425
+ #: ../classes/admin/settings/sf-options.php:196
426
+ #: ../classes/class-install.php:191 ../templates/dashboard/orders.php:24
427
  msgid "Orders"
428
  msgstr "Pedidos"
429
 
430
+ #: ../classes/admin/class-vendor-admin-dashboard.php:58
431
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:112
432
  msgid "Your PayPal address is not a valid email address."
433
+ msgstr "Seu endereço do PayPal não é um endereço de email válido"
434
 
435
+ #: ../classes/admin/class-vendor-admin-dashboard.php:67
436
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:121
437
  msgid "That shop name is already taken. Your shop name must be unique."
438
  msgstr "Este nome de loja já existe. O nome da sua loja deve ser único."
439
 
440
+ #: ../classes/admin/class-vendor-admin-dashboard.php:87
441
+ #: ../classes/admin/settings/classes/sf-class-settings.php:368
442
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:139
443
  msgid "Settings saved."
444
  msgstr "Ajustes salvos."
445
 
446
+ #: ../classes/admin/class-vendor-admin-dashboard.php:284
447
  msgid "Customer"
448
  msgstr "Cliente"
449
 
450
+ #: ../classes/admin/class-vendor-admin-dashboard.php:285
451
+ #: ../classes/admin/settings/sf-options.php:127
452
+ #: ../classes/admin/settings/sf-options.php:254
453
  msgid "Products"
454
  msgstr "Produtos"
455
 
456
+ #: ../classes/admin/class-vendor-admin-dashboard.php:289
457
+ #: ../templates/dashboard/orders.php:92
458
  msgid "Shipped"
459
  msgstr "Enviado"
460
 
461
+ #: ../classes/admin/class-vendor-admin-dashboard.php:324
462
+ #: ../templates/dashboard/orders.php:85
463
  msgid "Mark shipped"
464
+ msgstr "Marcar enviado"
465
 
466
+ #: ../classes/admin/class-vendor-admin-dashboard.php:349
467
  msgid "Orders marked shipped."
468
+ msgstr "Pedidos marcados como enviados."
469
+
470
+ #: ../classes/admin/class-vendor-admin-dashboard.php:385
471
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:40
472
+ msgid "You are not allowed to modify this order."
473
+ msgstr "Você não tem autorização para modificar este pedido."
474
 
475
  #: ../classes/admin/class-vendor-applicants.php:26
476
  msgid "Approve"
480
  msgid "Deny"
481
  msgstr "Negar"
482
 
483
+ #: ../classes/admin/class-vendor-applicants.php:73
484
  msgid "Vendor has been <b>denied</b>."
485
  msgstr "Vendedor foi <b>negado</b>."
486
 
487
+ #: ../classes/admin/class-vendor-applicants.php:84
488
  msgid "Vendor has been <b>approved</b>."
489
  msgstr "Vendedor foi <b>aprovado</b>."
490
 
491
+ #: ../classes/admin/class-vendor-applicants.php:98
492
  msgid "Pending Vendors"
493
  msgstr "Vendedores Pendentes"
494
 
495
+ #: ../classes/admin/emails/class-emails.php:59
496
  #: ../classes/admin/emails/class-wc-approve-vendor.php:70
497
  msgid "pending"
498
  msgstr "pendente"
499
 
500
+ #: ../classes/admin/emails/class-emails.php:61
501
  msgid "approved"
502
  msgstr "aprovado"
503
 
504
+ #: ../classes/admin/emails/class-emails.php:63
505
  msgid "denied"
506
  msgstr "negado"
507
 
 
 
 
 
 
 
508
  #: ../classes/admin/emails/class-wc-approve-vendor.php:28
509
  msgid "Vendor Application"
510
+ msgstr "Pedido de Vendedor"
511
 
512
  #: ../classes/admin/emails/class-wc-approve-vendor.php:29
513
  msgid "Vendor application will either be approved, denied, or pending."
514
+ msgstr "Pedido de Vendedor será aprovado, negado, ou pendente."
515
 
516
  #: ../classes/admin/emails/class-wc-approve-vendor.php:31
517
  msgid "Application {status}"
518
+ msgstr "Requisição {status}"
519
 
520
  #: ../classes/admin/emails/class-wc-approve-vendor.php:32
521
  msgid "[{blogname}] Your vendor application has been {status}"
522
+ msgstr "[{blogname}] Seu pedido de vendedor foi {status}"
523
 
524
  #: ../classes/admin/emails/class-wc-approve-vendor.php:123
525
+ #: ../classes/admin/emails/class-wc-notify-admin.php:134
526
  #: ../classes/admin/emails/class-wc-notify-shipped.php:163
527
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:256
528
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:62
529
  msgid "Enable/Disable"
530
+ msgstr "Permitir/Não Permitir"
531
 
532
  #: ../classes/admin/emails/class-wc-approve-vendor.php:125
533
+ #: ../classes/admin/emails/class-wc-notify-admin.php:136
534
  #: ../classes/admin/emails/class-wc-notify-shipped.php:165
535
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:258
536
  msgid "Enable this email notification"
537
+ msgstr "Permitir este email para notificação"
538
 
539
  #: ../classes/admin/emails/class-wc-approve-vendor.php:129
540
+ #: ../classes/admin/emails/class-wc-notify-admin.php:140
541
  msgid "Recipient(s)"
542
  msgstr "Destinatário(s)"
543
 
544
  #: ../classes/admin/emails/class-wc-approve-vendor.php:131
545
+ #: ../classes/admin/emails/class-wc-notify-admin.php:142
546
  #, php-format
547
  msgid ""
548
  "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
552
  "<code>%s</code>."
553
 
554
  #: ../classes/admin/emails/class-wc-approve-vendor.php:136
555
+ #: ../classes/admin/emails/class-wc-notify-admin.php:147
556
  #: ../classes/admin/emails/class-wc-notify-shipped.php:169
557
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:262
558
  msgid "Subject"
559
  msgstr "Assunto"
560
 
561
  #: ../classes/admin/emails/class-wc-approve-vendor.php:138
562
+ #: ../classes/admin/emails/class-wc-notify-admin.php:149
563
  #: ../classes/admin/emails/class-wc-notify-shipped.php:171
564
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:264
565
  #, php-format
566
  msgid ""
567
  "This controls the email subject line. Leave blank to use the default "
571
  "assunto padrão: <code>%s</code>."
572
 
573
  #: ../classes/admin/emails/class-wc-approve-vendor.php:143
574
+ #: ../classes/admin/emails/class-wc-notify-admin.php:154
575
  #: ../classes/admin/emails/class-wc-notify-shipped.php:176
576
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:269
577
  msgid "Email Heading"
578
  msgstr "Cabeçalho do Email"
579
 
580
  #: ../classes/admin/emails/class-wc-approve-vendor.php:145
581
+ #: ../classes/admin/emails/class-wc-notify-admin.php:156
582
  #: ../classes/admin/emails/class-wc-notify-shipped.php:178
583
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:271
584
  #, php-format
585
  msgid ""
586
  "This controls the main heading contained within the email notification. "
590
  "branco para usar o cabeçalho padrão: <code>%s</code>."
591
 
592
  #: ../classes/admin/emails/class-wc-approve-vendor.php:150
593
+ #: ../classes/admin/emails/class-wc-notify-admin.php:161
594
  #: ../classes/admin/emails/class-wc-notify-shipped.php:183
595
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:282
596
  msgid "Email type"
597
  msgstr "Tipo de email"
598
 
599
  #: ../classes/admin/emails/class-wc-approve-vendor.php:152
600
+ #: ../classes/admin/emails/class-wc-notify-admin.php:163
601
  #: ../classes/admin/emails/class-wc-notify-shipped.php:185
602
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:284
603
  msgid "Choose which format of email to send."
604
  msgstr "Escolha qual formato de email para enviar."
605
 
606
  #: ../classes/admin/emails/class-wc-approve-vendor.php:156
607
+ #: ../classes/admin/emails/class-wc-notify-admin.php:167
608
  #: ../classes/admin/emails/class-wc-notify-shipped.php:189
609
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:288
610
  msgid "Plain text"
611
  msgstr "Texto simples"
612
 
613
  #: ../classes/admin/emails/class-wc-approve-vendor.php:157
614
+ #: ../classes/admin/emails/class-wc-notify-admin.php:168
615
  #: ../classes/admin/emails/class-wc-notify-shipped.php:190
616
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:289
617
  msgid "HTML"
618
  msgstr "HTML"
619
 
620
  #: ../classes/admin/emails/class-wc-approve-vendor.php:158
621
+ #: ../classes/admin/emails/class-wc-notify-admin.php:169
622
  #: ../classes/admin/emails/class-wc-notify-shipped.php:191
623
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:290
624
  msgid "Multipart"
625
  msgstr "Multipart"
626
 
627
  #: ../classes/admin/emails/class-wc-notify-admin.php:28
628
  msgid "New Vendor Product"
629
+ msgstr "Novo produto Vendor"
630
 
631
  #: ../classes/admin/emails/class-wc-notify-admin.php:29
632
  msgid "New order emails are sent when a new product is submitted by a vendor"
636
 
637
  #: ../classes/admin/emails/class-wc-notify-admin.php:31
638
  msgid "New product submitted: {product_name}"
639
+ msgstr "Novo produto enviado: {product_name}"
640
 
641
  #: ../classes/admin/emails/class-wc-notify-admin.php:32
642
  msgid "[{blogname}] New product submitted by {vendor_name} - {product_name}"
643
+ msgstr "[{blogname}] Novo produto enviado por {vendor_name} - {product_name}"
 
644
 
645
  #: ../classes/admin/emails/class-wc-notify-shipped.php:28
646
  msgid "Vendor has shipped"
660
  #: ../classes/admin/emails/class-wc-notify-shipped.php:32
661
  msgid ""
662
  "[{blogname}] Your order has been shipped ({order_number}) - {order_date}"
663
+ msgstr "[{blogname}] Seu pedido já foi enviado ({order_number}) - {order_date}"
 
664
 
665
  #: ../classes/admin/emails/class-wc-notify-shipped.php:112
666
  msgid "Subtotal:"
682
 
683
  #: ../classes/admin/emails/class-wc-notify-vendor.php:31
684
  msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
685
+ msgstr "[{blogname}] Novo pedido de cliente ({order_number}) - {order_date}"
 
686
 
687
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:105
688
  msgid "Commission Subtotal:"
689
+ msgstr "Subtotal de Comissão:"
690
+
691
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:111
692
+ msgid "Tax Subtotal:"
693
+ msgstr "Subtotal de Imposto:"
694
 
695
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:119
696
  msgid "Shipping Subtotal:"
697
+ msgstr "Subtotal de Envio:"
698
+
699
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:276
700
+ msgid "Product Totals"
701
+ msgstr "Totais do Produto"
702
+
703
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:278
704
+ msgid ""
705
+ "Show the commission due/paid as the product totals instead of the product "
706
+ "prices."
707
+ msgstr ""
708
+ "Mostrar \"comissão a pagar/paga\" como os totais do produto em vez de seus "
709
+ "preços."
710
 
711
  #: ../classes/admin/settings/classes/sf-class-format-options.php:211
712
+ #: ../classes/admin/settings/classes/sf-class-settings.php:791
713
  msgid "Select a page..."
714
  msgstr "Selecione um página…"
715
 
716
  #: ../classes/admin/settings/classes/sf-class-settings.php:153
717
  #: ../templates/dashboard/settings/settings.php:1
718
  msgid "Settings"
719
+ msgstr "Configurações"
720
 
721
+ #: ../classes/admin/settings/classes/sf-class-settings.php:302
722
  msgid "Could not load settings at: "
723
+ msgstr "Não puderam ser carregados os ajustes na:"
724
 
725
+ #: ../classes/admin/settings/classes/sf-class-settings.php:302
726
  msgid "Error - WP Settings Framework"
727
  msgstr "Erro - WP Framework de ajustes"
728
 
729
+ #: ../classes/admin/settings/classes/sf-class-settings.php:486
730
  #, php-format
731
  msgid "Save %s changes"
732
  msgstr "Salvar %s modificações"
733
 
734
+ #: ../classes/admin/settings/classes/sf-class-settings.php:499
735
+ msgid ""
736
+ "Please help with a <a href=\"https://wordpress.org/support/view/plugin-"
737
+ "reviews/wc-vendors?rate=5#postform\" target=\"top\">High Five!</a> | <a href="
738
+ "\"https://www.wcvendors.com/product/wc-vendors-pro/\" target=\"top\">WC "
739
+ "Vendors Pro</a> | <a href=\"https://www.wcvendors.com/product/stripe-"
740
+ "commissions-gateway/\" target=\"top\">Stripe Commissions & Gateway</a> | <a "
741
+ "href=\"https://www.wcvendors.com/kb/\" target=\"top\">KnowledgeBase</a> | <a "
742
+ "href=\"https://www.wcvendors.com/help/\" target=\"top\">Help Forums</a>"
743
+ msgstr ""
744
+ "Por favor nos ajude com um <a href=\"https://wordpress.org/support/view/"
745
+ "plugin-reviews/wc-vendors?rate=5#postform\" target=\"top\">Joinha!</a> | <a "
746
+ "href=\"https://www.wcvendors.com/product/wc-vendors-pro/\" target=\"top\">WC "
747
+ "Vendors Pro</a> | <a href=\"https://www.wcvendors.com/product/stripe-"
748
+ "commissions-gateway/\" target=\"top\">Stripe Commissions & Gateway</a> | <a "
749
+ "href=\"https://www.wcvendors.com/kb/\" target=\"top\">Documentação</a> | <a "
750
+ "href=\"https://www.wcvendors.com/help/\" target=\"top\">Fóruns de Suporte</a>"
751
+
752
+ #: ../classes/admin/settings/classes/sf-class-settings.php:784
753
+ msgid "Edit Page"
754
+ msgstr "Editar Página"
755
+
756
+ #: ../classes/admin/settings/classes/sf-class-settings.php:785
757
+ msgid "View Page"
758
+ msgstr "Ver Página"
759
+
760
+ #: ../classes/admin/settings/classes/sf-class-settings.php:848
761
+ #, php-format
762
+ msgid "Update %s"
763
+ msgstr "Atualizar %s"
764
+
765
+ #: ../classes/admin/settings/classes/sf-class-settings.php:848
766
+ #, php-format
767
+ msgid "Add %s"
768
+ msgstr "Adicionar %s"
769
+
770
+ #: ../classes/admin/settings/classes/sf-class-settings.php:848
771
+ #, php-format
772
+ msgid "Upload an image for the %s"
773
+ msgstr "Carregue uma imagem para %s"
774
+
775
  #: ../classes/admin/settings/sf-options.php:5
776
  msgid "General options"
777
  msgstr "Opções gerais"
778
 
 
 
 
 
 
 
779
  #: ../classes/admin/settings/sf-options.php:8
780
  msgid "Default commission (%)"
781
  msgstr "Comissão padrão (%)"
782
 
783
  #: ../classes/admin/settings/sf-options.php:9
784
  msgid ""
785
+ "The default rate you pay each vendor for a product sale. <br>You can also "
786
+ "give vendors their own individual commission rates by editing the vendors "
787
+ "user account.<br>Also, you can edit an individual products commission to "
788
+ "override both of these settings on a per product basis."
789
  msgstr ""
790
+ "A taxa padrão que você paga a cada vendedor pela venda de um produto. <br> "
791
+ "Você também pode dar aos vendedores suas próprias comissões individuais, "
792
+ "editando a conta de usuário dos vendedores.<br>Além disso, você pode editar "
793
+ "uma comissão para cada produto para substituir ambas as configurações "
794
+ "baseado no produto."
795
 
796
  #: ../classes/admin/settings/sf-options.php:20
797
+ #: ../classes/admin/settings/sf-options.php:27
 
 
 
798
  msgid "Allow users or guests to apply to become a vendor"
799
+ msgstr "Permitir que usuários ou convidados solicitem se tornarem vendedores"
800
 
801
  #: ../classes/admin/settings/sf-options.php:22
802
  msgid ""
803
+ "Allow users or guests to apply to become a vendor. <br><br><strong>WARNING:"
804
+ "</strong> You MUST \"<strong>Enable registration on the \"My Account\" "
805
+ "page</strong>\" in your <strong>WooCommerce > Settings > Accounts</strong> "
806
+ "page for this option to work. Currently, you have registration disabled."
807
+ msgstr ""
808
+ "Permitir que usuários ou convidados solicitem se tornarem vendedores. "
809
+ "<br><br><strong>AVISO:</strong> Você DEVE \"<strong>Habilitar registro na "
810
+ "página \"Minha Conta\"</strong>\" na sua página <strong>WooCommerce > "
811
+ "Configurações > Contas</strong> para que esta opção funcione. O registro no "
812
+ "momento está desabilitado."
813
+
814
+ #: ../classes/admin/settings/sf-options.php:26
815
+ msgid "Registration"
816
+ msgstr "Registro"
817
+
818
+ #: ../classes/admin/settings/sf-options.php:28
819
+ msgid ""
820
  "This will show a checkbox on the My Account page's registration form asking "
821
  "if the user would like to apply to be a vendor. Also, on the Vendor "
822
  "Dashboard, users can still apply to become a vendor even if this is disabled."
827
  "para se tornar um vendedor, mesmo se esta caixa de seleção estiver "
828
  "desativado."
829
 
830
+ #: ../classes/admin/settings/sf-options.php:35
831
  msgid "Approve vendor applications manually"
832
  msgstr "Aprovar pedidos de vendedor manualmente"
833
 
834
+ #: ../classes/admin/settings/sf-options.php:36
835
  msgid ""
836
  "With this unchecked, all vendor applications are automatically accepted. "
837
  "Otherwise, you must approve each manually."
839
  "Com esta opção desligada, todos os pedidos de vendedor serão automaticamente "
840
  "aceitos. Caso contrário, você deve aprovar cada um manualmente."
841
 
842
+ #: ../classes/admin/settings/sf-options.php:43
843
+ #: ../classes/admin/settings/sf-options.php:175
844
  msgid "Taxes"
845
+ msgstr "Impostos "
846
 
847
+ #: ../classes/admin/settings/sf-options.php:44
848
  msgid "Give vendors any tax collected per-product"
849
  msgstr "Dê aos vendedores qualquer imposto cobrado por produto"
850
 
851
+ #: ../classes/admin/settings/sf-options.php:45
852
  msgid "The tax collected on a vendor's product will be given in its entirety"
853
  msgstr ""
854
  "O imposto cobrado sobre o produto de um vendedor será dado em sua totalidade"
855
 
856
+ #: ../classes/admin/settings/sf-options.php:53
857
  msgid "Give vendors any shipping collected per-product"
858
  msgstr "Dê aos vendedores qualquer taxa de envio recolhida por produto"
859
 
860
+ #: ../classes/admin/settings/sf-options.php:54
861
  msgid ""
862
+ "WC Vendors Free - Give vendors shipping if using Per Product Shipping "
863
+ "gateway. WC Vendors Pro - Give vendors shipping when using Vendor "
864
+ "Shipping. No other shipping module is compatible with this option."
865
  msgstr ""
 
 
866
 
867
+ #: ../classes/admin/settings/sf-options.php:60
868
  msgid "Shop options"
869
  msgstr "Opções da Loja"
870
 
871
+ #: ../classes/admin/settings/sf-options.php:63
872
  msgid "Shop HTML"
873
+ msgstr "HTML da Loja "
874
 
875
+ #: ../classes/admin/settings/sf-options.php:64
876
  msgid ""
877
  "Enable HTML for a vendor's shop description by default. You can enable or "
878
+ "disable this per vendor by editing the vendors user account."
879
  msgstr ""
880
+ "Permitir HTML para a descrição da loja por padrão. Você pode habilitar ou "
881
+ "desabilitar por usuário editando a conta de usuário do vendedor."
 
882
 
883
+ #: ../classes/admin/settings/sf-options.php:71
884
+ msgid "Vendor Shop Page"
885
+ msgstr "Página da Loja do Vendedor"
886
 
887
+ #: ../classes/admin/settings/sf-options.php:72
888
+ msgid ""
889
+ "Enter one word for the URI. If you enter \"<strong>vendors</strong>\" your "
890
+ "vendors store will be <code>yourdomain.com/vendors/store-name/</code>"
891
+ msgstr ""
892
+ "Escreva uma palavra para a URI. Se você escrever \"<strong>vendedores</"
893
+ "strong>\", sua loja ficará como <code>seudominio.com/vendedores/nome-da-loja/"
894
+ "</code>"
895
 
896
+ #: ../classes/admin/settings/sf-options.php:79
897
  msgid "Shop Headers"
898
  msgstr "Cabeçalhos da Loja"
899
 
900
+ #: ../classes/admin/settings/sf-options.php:80
901
  msgid "Enable vendor shop headers"
902
+ msgstr "Permitir cabeçalho da loja do vendedor"
903
 
904
+ #: ../classes/admin/settings/sf-options.php:81
905
  msgid ""
906
  "This will override the HTML Shop description output on product-archive "
907
  "pages. In order to customize the shop headers visit wcvendors.com and read "
911
  "produto-arquivo. A fim de personalizar os cabeçalhos das lojas visite o "
912
  "wcvendors.com e leia o artigo intitulado Changing the Vendor Templates."
913
 
914
+ #: ../classes/admin/settings/sf-options.php:88
915
  msgid "Vendor Display Name"
916
  msgstr "Nome de exibição do Vendedor"
917
 
918
+ #: ../classes/admin/settings/sf-options.php:89
919
  msgid ""
920
  "Select what will be displayed for the sold by text throughout the store."
921
  msgstr "Selecione o que será exibido no texto de vendido por em toda loja."
922
 
923
+ #: ../classes/admin/settings/sf-options.php:93
924
  msgid "Display Name"
925
+ msgstr "Nome de Exibição"
926
 
927
+ #: ../classes/admin/settings/sf-options.php:94
928
  #: ../classes/admin/views/html-vendor-settings-page.php:22
929
  #: ../templates/dashboard/settings/shop-name.php:2
930
  msgid "Shop Name"
931
  msgstr "Nome da Loja"
932
 
933
+ #: ../classes/admin/settings/sf-options.php:95
934
  msgid "User Login"
935
  msgstr "Login do Usuário"
936
 
937
  #: ../classes/admin/settings/sf-options.php:96
938
+ msgid "User Email"
939
+ msgstr "E-mail do Usuário"
940
+
941
+ #: ../classes/admin/settings/sf-options.php:103
942
+ #: ../classes/admin/settings/sf-options.php:116
943
+ msgid "Sold By"
944
+ msgstr "Vendido Por"
945
+
946
+ #: ../classes/admin/settings/sf-options.php:104
947
+ msgid "Enable sold by labels"
948
+ msgstr "Habilitar etiquetas de \"vendido por\""
949
+
950
+ #: ../classes/admin/settings/sf-options.php:105
951
+ msgid "This will enable or disable the sold by labels."
952
+ msgstr "Isto habilitará as etiquetas de \"vendido por\"."
953
+
954
+ #: ../classes/admin/settings/sf-options.php:112
955
+ msgid "Sold By Label"
956
+ msgstr "Etiqueta de \"Vendido Por\""
957
+
958
+ #: ../classes/admin/settings/sf-options.php:113
959
+ msgid "The sold by label used on the site and emails."
960
+ msgstr "A etiqueta de \"vendido por\" usada no site e em emails."
961
+
962
+ #: ../classes/admin/settings/sf-options.php:120
963
+ msgid "Seller Info Label"
964
+ msgstr "Etiqueta de Informações do Vendedor"
965
+
966
+ #: ../classes/admin/settings/sf-options.php:121
967
+ msgid "The seller info tab title on the single product page."
968
+ msgstr "A aba de informação do vendedor na página de produto simples."
969
+
970
+ #: ../classes/admin/settings/sf-options.php:124
971
+ msgid "Seller Info"
972
+ msgstr "Informações do Vendedor"
973
+
974
+ #: ../classes/admin/settings/sf-options.php:128
975
  msgid "Product Add Page"
976
  msgstr "Página Adicionar Produto"
977
 
978
+ #: ../classes/admin/settings/sf-options.php:128
979
  msgid "Configure what to hide from all vendors when adding a product"
980
  msgstr ""
981
  "Configurar o que estará oculto de todos os vendedores quando adicionarem um "
982
  "produto"
983
 
984
+ #: ../classes/admin/settings/sf-options.php:131
985
  msgid "Left side panel"
986
  msgstr "Painel do lado esquerdo"
987
 
988
+ #: ../classes/admin/settings/sf-options.php:132
989
  msgid ""
990
+ "CHECKING these boxes will **HIDE** these areas of the add product page for "
991
  "vendors"
992
  msgstr ""
993
+ "MARCAR estas caixas irá **OCULTAR ** para o vendedor estas áreas de inserção "
994
+ "de produto"
995
 
996
+ #: ../classes/admin/settings/sf-options.php:135
997
+ msgid "Inventory"
998
+ msgstr "Balança"
999
+
1000
+ #: ../classes/admin/settings/sf-options.php:137
1001
+ msgid "Linked Products"
1002
+ msgstr "Produtos Relacionados"
1003
+
1004
+ #: ../classes/admin/settings/sf-options.php:138
1005
+ msgid "Attributes"
1006
+ msgstr "Atributos"
1007
+
1008
+ #: ../classes/admin/settings/sf-options.php:139
1009
+ msgid "Advanced"
1010
+ msgstr "Avançado"
1011
+
1012
+ #: ../classes/admin/settings/sf-options.php:146
1013
  msgid "Types"
1014
  msgstr "Tipos"
1015
 
1016
+ #: ../classes/admin/settings/sf-options.php:147
1017
  msgid "CHECKING these boxes will HIDE these product types from the vendor"
1018
+ msgstr ""
1019
+ "MARCAR estas caixas irá OCULTAR para o vendedor estes tipos de produtos"
1020
 
1021
+ #: ../classes/admin/settings/sf-options.php:150
1022
+ msgid "Simple"
1023
+ msgstr "Simples"
1024
+
1025
+ #: ../classes/admin/settings/sf-options.php:151
1026
+ msgid "Variable"
1027
+ msgstr "Variável"
1028
+
1029
+ #: ../classes/admin/settings/sf-options.php:152
1030
+ msgid "Grouped"
1031
+ msgstr "Agrupado"
1032
+
1033
+ #: ../classes/admin/settings/sf-options.php:153
1034
+ msgid "External / affiliate"
1035
+ msgstr "Externo / afiliado"
1036
+
1037
+ #: ../classes/admin/settings/sf-options.php:160
1038
  msgid "Type options"
1039
  msgstr "Opções de tipo"
1040
 
1041
+ #: ../classes/admin/settings/sf-options.php:161
1042
+ msgid ""
1043
+ "CHECKING these boxes will **HIDE** these product options from the vendor"
1044
+ msgstr ""
1045
+ "MARCAR estas caixas irá **OCULTAR ** para o vendedor estes tipos de produtos"
1046
+
1047
+ #: ../classes/admin/settings/sf-options.php:164
1048
+ msgid "Virtual"
1049
+ msgstr "Virtual"
1050
 
1051
+ #: ../classes/admin/settings/sf-options.php:165
1052
+ msgid "Downloadable"
1053
+ msgstr "Baixável"
1054
+
1055
+ #: ../classes/admin/settings/sf-options.php:172
1056
  msgid "Miscellaneous"
1057
+ msgstr "Gerais"
1058
 
1059
+ #: ../classes/admin/settings/sf-options.php:176
1060
+ msgid "SKU"
1061
+ msgstr "Ref."
1062
+
1063
+ #: ../classes/admin/settings/sf-options.php:177
1064
+ msgid "Featured"
1065
+ msgstr "Em Destaque"
1066
+
1067
+ #: ../classes/admin/settings/sf-options.php:178
1068
+ msgid "Duplicate Product"
1069
+ msgstr "Produto Duplicado"
1070
+
1071
+ #: ../classes/admin/settings/sf-options.php:185
1072
  msgid "Stylesheet"
1073
+ msgstr "CSS"
1074
 
1075
+ #: ../classes/admin/settings/sf-options.php:186
1076
  msgid ""
1077
  "You can add CSS in this textarea, which will be loaded on the product add/"
1078
  "edit page for vendors."
1080
  "Você pode adicionar CSS nesta área de texto que será carregado na página de "
1081
  "adicionar/editar produto para vendedores."
1082
 
1083
+ #: ../classes/admin/settings/sf-options.php:193
1084
  msgid "Permissions"
1085
  msgstr "Permissões"
1086
 
1087
+ #: ../classes/admin/settings/sf-options.php:193
1088
  msgid "General permissions used around the shop"
1089
  msgstr "Permissões gerais usadas pela loja"
1090
 
1091
+ #: ../classes/admin/settings/sf-options.php:197
1092
  msgid "View orders"
1093
  msgstr "Ver pedidos"
1094
 
1095
+ #: ../classes/admin/settings/sf-options.php:198
1096
  msgid "Show customer details such as email, address, name, etc, for each order"
1097
  msgstr ""
1098
  "Mostrar detalhes do cliente como email, endereço, nome, etc, em cada pedido"
1099
 
1100
+ #: ../classes/admin/settings/sf-options.php:205
1101
  msgid "View comments"
1102
  msgstr "Ver comentários"
1103
 
1104
+ #: ../classes/admin/settings/sf-options.php:206
1105
  msgid "View all vendor comments for an order on the frontend"
1106
  msgstr "Ver todos comentários do vendedor para um pedido no frontend"
1107
 
1108
+ #: ../classes/admin/settings/sf-options.php:213
1109
  msgid "Submit comments"
1110
  msgstr "Enviar comentários"
1111
 
1112
+ #: ../classes/admin/settings/sf-options.php:214
1113
  msgid ""
1114
  "Submit comments for an order on the frontend. Eg, tracking ID for a product"
1115
  msgstr ""
1116
  "Enviar comentários para um pedido no frontend. Ex, ID de rastreamento de um "
1117
  "produto"
1118
 
1119
+ #: ../classes/admin/settings/sf-options.php:221
1120
  msgid "View email addresses"
1121
  msgstr "Ver endereços de email"
1122
 
1123
+ #: ../classes/admin/settings/sf-options.php:222
1124
  msgid ""
1125
  "While viewing order details on the frontend, you can disable or enable email "
1126
  "addresses"
1128
  "Quando estiver vendo os detalhes de um pedido no frontend, você poderá "
1129
  "desativar ou ativar endereços de email"
1130
 
1131
+ #: ../classes/admin/settings/sf-options.php:229
1132
  msgid "Export a CSV file of orders for a product"
1133
  msgstr "Exportar um arquivo CSV de pedidos para um produto"
1134
 
1135
+ #: ../classes/admin/settings/sf-options.php:230
1136
  msgid "Vendors could export orders for a product on the frontend"
1137
  msgstr "Vendedores poderiam exportar pedidos para um produto no frontend"
1138
 
1139
+ #: ../classes/admin/settings/sf-options.php:237
1140
  msgid "Reports"
1141
  msgstr "Relatórios"
1142
 
1143
+ #: ../classes/admin/settings/sf-options.php:238
1144
+ msgid ""
1145
+ "<strike>View backend sales reports</strike>. <strong>Depreciated</strong>"
1146
+ msgstr ""
1147
+ "<strike>Ver relatório de vendas no painel administrativo</strike>. "
1148
+ "<strong>Obsoleto</strong>"
1149
 
1150
+ #: ../classes/admin/settings/sf-options.php:239
1151
  msgid ""
1152
+ "This option has been removed and will no longer function. It will be "
1153
+ "completely removed in future versions. Vendors should use their Vendor "
1154
+ "Dashboard for reports as all identical functionality is already there. "
1155
  msgstr ""
1156
+ "Esta opção foi removida e não funcionará. Ela será removida por completo em "
1157
+ "futuras versões. Vendedores devem usar o Painel de Vendedor para relatórios "
1158
+ "visto que ele tem as mesmas funcionalidades que aqui."
1159
 
1160
+ #: ../classes/admin/settings/sf-options.php:246
1161
  msgid "View Frontend sales reports"
1162
  msgstr "Ver relatórios de venda no frontend"
1163
 
1164
+ #: ../classes/admin/settings/sf-options.php:247
1165
  msgid ""
1166
+ "Sales table on the frontend on the Vendor Dashboard page. The table will "
1167
+ "only display sales data that pertain to their products, and only for orders "
1168
+ "that are processing or completed."
1169
  msgstr ""
1170
+ "Tabela de vendas no front-end na página do Painel de Vendedor. A tabela irá "
1171
+ "exibir dados de vendas que pertencem aos seus produtos e somente para "
1172
+ "pedidos que estão sendo processados ou completos."
1173
 
1174
+ #: ../classes/admin/settings/sf-options.php:255
1175
  msgid "Submit products"
1176
  msgstr "Enviar produtos"
1177
 
1178
+ #: ../classes/admin/settings/sf-options.php:256
1179
  msgid ""
1180
+ "Check to allow vendors to list new products. Admin must approve new "
1181
+ "products by editing the product, and clicking Publish."
1182
  msgstr ""
1183
+ "Marque para permitir que vendedores listem novos produtos. A administração "
1184
+ "deve aprovar novos produtos editando-os e clicando em \"Publicar\"."
1185
 
1186
+ #: ../classes/admin/settings/sf-options.php:263
1187
  msgid "Edit live products"
1188
  msgstr "Editar produtos ao vivo"
1189
 
1190
+ #: ../classes/admin/settings/sf-options.php:264
1191
  msgid ""
1192
  "Vendors could edit an approved product after it has already gone live. There "
1193
  "is no approval or review after editing a live product. This could be "
1197
  "Não há aprovação ou revisão após a edição de um produto ao vivo. Isso pode "
1198
  "ser perigoso com os vendedores mal intencionados, por isso tome cuidado."
1199
 
1200
+ #: ../classes/admin/settings/sf-options.php:271
1201
  msgid "Submit products live without requiring approval"
1202
  msgstr "Enviar produtos ao vivo sem pedir aprovação"
1203
 
1204
+ #: ../classes/admin/settings/sf-options.php:272
1205
  msgid ""
1206
  "Vendors can submit products without review or approval from a shop admin. "
1207
  "This could be dangerous with malicious vendors, so take caution."
1210
  "administrador de loja. Isso pode ser perigoso com os vendedores mal "
1211
  "intencionados, por isso tome cuidado."
1212
 
1213
+ #: ../classes/admin/settings/sf-options.php:278
1214
  msgid "Pages"
1215
  msgstr "Páginas"
1216
 
1217
+ #: ../classes/admin/settings/sf-options.php:279
1218
  msgid "Page configuration"
1219
+ msgstr "Configuração de página"
1220
 
1221
+ #: ../classes/admin/settings/sf-options.php:282
1222
  msgid "Vendor dashboard"
1223
  msgstr "Painel do Vendedor"
1224
 
1225
+ #: ../classes/admin/settings/sf-options.php:283
1226
  msgid ""
1227
  "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
1228
+ "code><br/>. If this page is not set, you will break your site. If you "
1229
+ "upgrade to Pro, keep this page unchanged as both Pro Dashboard and this "
1230
+ "Dashboard page must be set."
1231
  msgstr ""
1232
+ "Escolha a página que terá o shortcode <code>[wcv_vendor_dashboard]</code><br/"
1233
+ "> Se a página não for definida, seu site irá quebrar. Se você fizer upgrade "
1234
+ "para a versão Pro, mantenha esta página inalterada já que tanto as páginas "
1235
+ "de Painel Pro e de Painel devem estar definidas."
1236
 
1237
+ #: ../classes/admin/settings/sf-options.php:290
1238
  msgid "Shop settings"
1239
  msgstr "Ajustes da Loja"
1240
 
1241
+ #: ../classes/admin/settings/sf-options.php:291
1242
  msgid ""
1243
  "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
1244
+ ">These are the shop settings a vendor can configure. By default, Vendor "
1245
+ "Dashboard > Shop Settings should have this shortcode."
1246
  msgstr ""
1247
+ "Escolha a página que terá o shortcode <code>[wcv_shop_settings]</code><br/> "
1248
+ "Estas são as configurações que o vendedor pode definit. Por padrão, Painel "
1249
+ "do Vendedor > Configurações de Loja deve conter o shortcode."
1250
 
1251
+ #: ../classes/admin/settings/sf-options.php:298
1252
  msgid "Orders page"
1253
  msgstr "Página de pedidos"
1254
 
1255
+ #: ../classes/admin/settings/sf-options.php:299
1256
  msgid ""
1257
  "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
1258
+ "default, Vendor Dashboard > Orders should have the shortcode."
1259
  msgstr ""
1260
+ "Escolha a página que terá o shortcode <code>[wcv_orders]</code><br/>Por "
1261
+ "padrão, Painel do Vendedor > Pedidos deve conter o shortcode."
1262
 
1263
+ #: ../classes/admin/settings/sf-options.php:306
1264
  msgid "Vendor terms"
1265
  msgstr "Termos do vendedor"
1266
 
1267
+ #: ../classes/admin/settings/sf-options.php:307
1268
  msgid ""
1269
  "These terms are shown to a user when submitting an application to become a "
1270
+ "vendor.<br/>If left blank, no terms will be shown to the applicant. Vendor "
1271
+ "must accept terms in order to register, if set."
1272
  msgstr ""
1273
+ "Estes termos são mostrados quando um usuário envia um pedido para se tornar "
1274
+ "vendedor.<br/>Se deixado em branco, nenhum termo será mostrado ao candidato. "
1275
+ "O vendedor deve aceitar os termos, quando definidos, para se registrar."
1276
+
1277
+ #: ../classes/admin/settings/sf-options.php:314
1278
+ msgid "payments"
1279
+ msgstr "Pagamentos"
1280
 
1281
+ #: ../classes/admin/settings/sf-options.php:325
1282
  msgid "Payments"
1283
  msgstr "Pagamentos"
1284
 
1285
+ #: ../classes/admin/settings/sf-options.php:327
1286
+ msgid "PayPal Adaptive Payments Scheduling"
1287
+ msgstr "Agendamento PayPal Adaptive Payments"
1288
 
1289
+ #: ../classes/admin/settings/sf-options.php:328
1290
  #, php-format
1291
  msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
1292
  msgstr "Comissão atual total devida: %s. <a href=\"%s\">Ver detalhes</a>."
1293
 
1294
+ #: ../classes/admin/settings/sf-options.php:329
1295
  #, php-format
1296
  msgid ""
1297
  "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
1298
+ "\">here</a>. <br><br>To instantly pay with Adaptive Payments you must "
1299
+ "activate the paypalap gateway in your Checkout settings. <br><a href="
1300
+ "\"https://www.wcvendors.com/kb/configuring-paypal-adaptive-payments/\" "
1301
+ "target=\"top\">PayPal AP Application Help</a>. <br><br>Another gateway that "
1302
+ "offers instant payments to vendors that also accepts credit cards directly "
1303
+ "on your checkout page is Stripe. <br><a href=\"https://www.wcvendors.com/"
1304
+ "product/stripe-commissions-gateway/\" target=\"top\">Stripe Commissions & "
1305
+ "Gateway plugin</a> is $49 and specifically coded for WC Vendors and <a href="
1306
+ "\"https://www.wcvendors.com/product/wc-vendors-pro/\" target=\"top\">WC "
1307
+ "Vendors Pro</a>."
1308
  msgstr ""
1309
+ "Certifique-se de atualizar suas configurações do PayPal Adaptive Payments <a "
1310
+ "href=\"%s\">aqui</a>. <br><br>Para pagar instantaneamente com Adaptive "
1311
+ "Payments você deve ativar o gateway PayPal AP nas suas configurações de "
1312
+ "Checkout. <br><a href=\"https://www.wcvendors.com/kb/configuring-paypal-"
1313
+ "adaptive-payments/\" target=\"top\">PayPal AP Application Help</a>. "
1314
+ "<br><br>Outro gateway que oferece pagamentos instantâneos a vendedores que "
1315
+ "também aceita cartões de crédito diretamente na sua página de chekout é o "
1316
+ "Stripe. <br><a href=\"https://www.wcvendors.com/product/stripe-commissions-"
1317
+ "gateway/\" target=\"top\">O plugin Stripe Commissions & Gateway</a> custa "
1318
+ "$49 especialmente programado para o WC Vendors e o <a href=\"https://www."
1319
+ "wcvendors.com/product/wc-vendors-pro/\" target=\"top\">WC Vendors Pro</a>."
1320
+
1321
+ #: ../classes/admin/settings/sf-options.php:333
1322
  msgid "Instant pay"
1323
+ msgstr "Pagamento instantâneo"
1324
 
1325
+ #: ../classes/admin/settings/sf-options.php:334
1326
+ msgid ""
1327
+ "Instantly pay vendors their commission when an order is made, and if a "
1328
+ "vendor has a valid PayPal email added on their Shop Settings page."
1329
  msgstr ""
1330
+ "Pague os seus vendedores instantaneamente quando um pedido é feito se o "
1331
+ "vendedor tiver um email do PayPal válido adicionado à página de "
1332
+ "Configurações de Loja."
1333
 
1334
+ #: ../classes/admin/settings/sf-options.php:335
1335
  msgid ""
1336
  "For this to work, customers must checkout with the PayPal Adaptive Payments "
1337
  "gateway. Using any other gateways will not pay vendors instantly"
1338
  msgstr ""
1339
  "Para que isso funcione, os clientes devem finalizar suas compras com o "
1340
  "gateway do PayPal Adaptive Payments. Usando quaisquer outros gateways o "
1341
+ "pagamento dos vendedores não será instantaneo"
1342
 
1343
+ #: ../classes/admin/settings/sf-options.php:342
1344
  msgid "Payment schedule"
1345
  msgstr "Programação de pagamentos"
1346
 
1347
+ #: ../classes/admin/settings/sf-options.php:343
1348
  msgid "Note: Schedule will only work if instant pay is unchecked"
1349
  msgstr ""
1350
  "Nota: Programação só vai funcionar se a opção de pagamento imediato for "
1351
  "desmarcada"
1352
 
1353
+ #: ../classes/admin/settings/sf-options.php:348
1354
+ msgid "Daily"
1355
+ msgstr "Diariamente"
1356
+
1357
+ #: ../classes/admin/settings/sf-options.php:349
1358
  msgid "Weekly"
1359
  msgstr "Semanal"
1360
 
1361
+ #: ../classes/admin/settings/sf-options.php:350
1362
  msgid "Biweekly"
1363
  msgstr "Quinzenal"
1364
 
1365
+ #: ../classes/admin/settings/sf-options.php:351
1366
  msgid "Monthly"
1367
  msgstr "Mensal"
1368
 
1369
+ #: ../classes/admin/settings/sf-options.php:352
1370
  msgid "Manual"
1371
  msgstr "Manual"
1372
 
1373
+ #: ../classes/admin/settings/sf-options.php:353
1374
  msgid "Now"
1375
  msgstr "Agora"
1376
 
1377
+ #: ../classes/admin/settings/sf-options.php:358
1378
  msgid "Email notification"
1379
+ msgstr "Notificação de email"
1380
 
1381
+ #: ../classes/admin/settings/sf-options.php:359
1382
  msgid ""
1383
  "Send the WooCommerce admin an email each time a payment has been made via "
1384
  "the payment schedule options above"
1385
  msgstr ""
1386
+ "Mandar um email para o Woocommerce admin cada vez que um pagamento foi feito "
1387
+ "por uma das opções de agendamento de pagamento acima"
1388
 
1389
  #: ../classes/admin/views/html-vendor-settings-page.php:11
1390
  #: ../templates/dashboard/settings/paypal-email-form.php:2
1415
  #: ../templates/dashboard/settings/shop-description.php:3
1416
  #, php-format
1417
  msgid "This is displayed on your <a href=\"%s\">shop page</a>."
1418
+ msgstr "Isto será mostrado na sua <a href=\"%s\">shop page</a>."
1419
 
1420
  #: ../classes/admin/views/html-vendor-settings-page.php:70
1421
  msgid "Save Shop Settings"
1426
  msgid "Payment total: %s"
1427
  msgstr "Total de Pagamento: %s"
1428
 
1429
+ #: ../classes/class-cron.php:149
1430
+ msgid "Once Daily"
1431
+ msgstr "Uma vez por dia"
1432
+
1433
+ #: ../classes/class-cron.php:154
1434
  msgid "Once Weekly"
1435
  msgstr "Uma vez por semana"
1436
 
1437
+ #: ../classes/class-cron.php:159
1438
  msgid "Once every two weeks"
1439
  msgstr "Uma vez a cada duas semanas"
1440
 
1441
+ #: ../classes/class-cron.php:164
1442
  msgid "Once a month"
1443
  msgstr "Uma vez por mês"
1444
 
1445
+ #: ../classes/class-install.php:190
 
 
 
 
1446
  msgid "Vendor Dashboard"
1447
  msgstr "Painel do Vendedor"
1448
 
1449
+ #: ../classes/class-vendor-post-types.php:34
1450
+ msgid "Vendor Orders"
1451
+ msgstr "Pedidos do Vendedor"
 
1452
 
1453
+ #: ../classes/class-vendors.php:551
1454
+ #, php-format
1455
+ msgid "Vendor Order &ndash; %s"
1456
+ msgstr "Pedido do Vendedor &ndash; %s"
1457
+
1458
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:53
1459
  msgid "Order marked shipped."
1460
+ msgstr "Pedido marcado como enviado."
1461
+
1462
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:55
1463
+ #, php-format
1464
+ msgid "%s has marked as shipped. "
1465
+ msgstr "%s marcou como enviado."
1466
 
1467
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:83
1468
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:84
 
 
1469
  msgid "Tracking number"
1470
  msgstr "Número de rastreamento"
1471
 
1472
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:86
 
1473
  msgid "Success. Your tracking number has been updated."
1474
  msgstr "Sucesso. Seu número de rastreamento foi atualizado."
1475
 
1476
+ #: ../classes/front/orders/class-export-csv.php:19
 
 
 
 
1477
  #: ../templates/dashboard/reports.php:18
 
1478
  #: ../templates/emails/notify-vendor-shipped.php:23
1479
+ #: ../templates/emails/vendor-new-order.php:23
1480
  msgid "Quantity"
1481
  msgstr "Quantidade"
1482
 
1483
+ #: ../classes/front/orders/class-orders.php:120
1484
  msgid ""
1485
  "You haven't selected a product's orders to view! Please go back to the "
1486
  "Vendor Dashboard and click Show Orders on the product you'd like to view."
1489
  "Painel do Vendedor e clique em Mostrar Pedidos no produto que você gostaria "
1490
  "de ver."
1491
 
1492
+ #: ../classes/front/orders/class-orders.php:124
1493
  msgid "No orders."
1494
  msgstr "Sem pedidos."
1495
 
1496
+ #: ../classes/front/orders/class-orders.php:188
1497
  msgid "Product Title"
1498
+ msgstr "Título do Produto"
1499
 
1500
+ #: ../classes/front/orders/class-orders.php:189
1501
  msgid "Full name"
1502
  msgstr "Nome completo"
1503
 
1504
+ #: ../classes/front/orders/class-orders.php:190
1505
  msgid "Address"
1506
  msgstr "Endereço"
1507
 
1508
+ #: ../classes/front/orders/class-orders.php:191
1509
  msgid "City"
1510
  msgstr "Cidade"
1511
 
1512
+ #: ../classes/front/orders/class-orders.php:192
1513
  msgid "State"
1514
  msgstr "Estado"
1515
 
1516
+ #: ../classes/front/orders/class-orders.php:193
1517
  msgid "Zip"
1518
  msgstr "CEP"
1519
 
1520
+ #: ../classes/front/orders/class-orders.php:194
1521
  msgid "Email address"
1522
+ msgstr "Endereço de email"
1523
 
1524
  #: ../classes/front/orders/class-submit-comment.php:41
1525
  msgid "You've left the comment field empty!"
1529
  msgid "Success. The customer has been notified of your comment."
1530
  msgstr "Sucesso. O cliente foi notificado de seu comentário."
1531
 
1532
+ #: ../classes/front/signup/class-vendor-signup.php:58
1533
+ #: ../classes/front/signup/views/html-vendor-signup.php:21
1534
  #: ../templates/dashboard/denied.php:22
1535
  msgid "Apply to become a vendor? "
1536
+ msgstr "Pedir para se tornar um vendedor?"
1537
 
1538
+ #: ../classes/front/signup/class-vendor-signup.php:72
1539
+ #: ../classes/front/signup/views/html-vendor-signup.php:35
1540
  #, php-format
1541
+ msgid ""
1542
+ "I have read and accepted the <a target=\"top\" href=\"%s\">terms and "
1543
+ "conditions</a>"
1544
+ msgstr ""
1545
+ "Eu li e aceito os <a target=\"top\" href=\"%s\">terms and conditions</a>"
1546
 
1547
+ #: ../classes/front/signup/class-vendor-signup.php:122
1548
  msgid "Application denied. You are an administrator."
1549
+ msgstr "Requisição negada. Você é um administrador."
1550
 
1551
+ #: ../classes/front/signup/class-vendor-signup.php:124
1552
  msgid "Your application has been submitted."
1553
+ msgstr "O seu pedido foi enviado."
1554
 
1555
+ #: ../classes/front/signup/class-vendor-signup.php:171
1556
+ #: ../classes/front/signup/class-vendor-signup.php:208
1557
+ #: ../classes/front/signup/class-vendor-signup.php:220
1558
  msgid "You must accept the terms and conditions to become a vendor."
1559
  msgstr "Você deve aceitar os termos e as condições para se tornar um vendedor."
1560
 
1576
 
1577
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:146
1578
  msgid "Enable PayPal Adaptive Payments"
1579
+ msgstr "Permitir PayPal Adaptive Payments"
1580
 
1581
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:152
1582
  msgid "Method Title"
1616
  "You must have an <a href=\"%s\">Application ID</a> to process live "
1617
  "transactions. You do not need one for testing in Sandbox mode."
1618
  msgstr ""
1619
+ "Você deve ter um <a href=\"%s\">Pedido ID</a> para processar as transações "
1620
+ "ao vivo. Você não precisa de um Pedido ID para testar no modo Sandbox."
 
1621
 
1622
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:179
1623
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:213
1632
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:185
1633
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:219
1634
  msgid "API Username"
1635
+ msgstr "Nome de usuário da API "
1636
 
1637
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:190
1638
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:224
1639
  msgid "API Password"
1640
+ msgstr "Senha da API "
1641
 
1642
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:195
1643
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:229
1644
  msgid "API Signature"
1645
+ msgstr "Assinatura da API "
1646
 
1647
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:200
1648
  msgid "Application ID"
1649
+ msgstr "ID da requisição"
1650
 
1651
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:202
1652
  msgid "Only required when doing live transactions."
1672
 
1673
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:245
1674
  msgid "Enable PayPal Sandbox mode"
1675
+ msgstr "Permitir modo PayPal Sandbox"
1676
 
1677
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:251
1678
  msgid "Enable logging"
1679
+ msgstr "Permitir log"
1680
 
1681
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:269
1682
  msgid ""
1690
 
1691
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1692
  msgid "Gateway Disabled"
1693
+ msgstr "Gateway Desabilitado"
1694
 
1695
  #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1696
  #, php-format
1697
  msgid "%s does not support your store currency."
1698
  msgstr "%s não suporta a moeda de sua loja."
1699
 
1700
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:384
1701
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:500
1702
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:153
1703
  #, php-format
1704
  msgid "Error: %s"
1705
  msgstr "Erro: %s"
1706
 
1707
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:393
1708
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:394
1709
  #, php-format
1710
  msgid "Error ID: %s. %s"
1711
+ msgstr "ID do Erro: %s. %s"
1712
 
1713
  #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:115
1714
  msgid "No vendors found to pay. Maybe they haven't set a PayPal address?"
1716
  "Nenhum vendedor foi encontrado para ser pago. Talvez eles não tenha definido "
1717
  "um endereço PayPal?"
1718
 
1719
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:167
1720
  msgid "All due commission has been paid for."
1721
+ msgstr "Todas as comissões devidas já foram pagas."
1722
 
1723
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:173
1724
  msgid ""
1725
  "All due commission has been paid for, but I could not clear it from their "
1726
  "profiles due to an internal error. Commission will still be listed as due. "
1727
  "Please manually mark the commission as paid from the Commissions page."
1728
  msgstr ""
1729
+ "Todas as comissões devidas já foram pagas, mas eu não pude limpar seus "
1730
+ "perfis devido a um erro interno. A comissão ainda estará marcada como "
1731
+ "devida. Por favor, marque manualmente a comissão como paga a partir da "
1732
+ "página de Comissões."
1733
 
1734
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:208
1735
  msgid "WooCommerce: Mass payments for vendors update"
1736
  msgstr "WooCommerce: Pagamentos em massa para atualização de vendedores"
1737
 
1738
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:210
1739
  msgid ""
1740
  "Hello! A payment was just triggered to mass pay all vendors their due "
1741
  "commission."
1743
  "Olá! Um pagamento acabou de ser acionado para o pagamento em massa das "
1744
  "comissões devidas a todos os vendedores."
1745
 
1746
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:211
1747
  #, php-format
1748
  msgid "Payment status: %s."
1749
  msgstr "Condição do pagamento: %s."
1750
 
1751
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:212
1752
  #, php-format
1753
  msgid "Payment message: %s."
1754
  msgstr "Mensagem do pagamento: %s."
1755
 
1756
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:215
1757
  #, php-format
1758
  msgid "Payment total: %s."
1759
+ msgstr "Total oe pagamento: %s"
1760
 
1761
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:35
1762
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:71
1777
 
1778
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:64
1779
  msgid "Enable WC Vendors Test Gateway Payment"
1780
+ msgstr "Permitir Teste do Gateway de Pagamento do WC Vendors"
1781
 
1782
  #: ../classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php:68
1783
  msgid "Title"
1829
  msgid "Your account is not setup as a vendor."
1830
  msgstr "Sua conta não é cadastrada como vendedor."
1831
 
1832
+ #: ../templates/dashboard/denied.php:33
1833
+ #, php-format
1834
+ msgid "I have read and accepted the <a href=\"%s\">terms and conditions</a>"
1835
+ msgstr "Eu li e aceito os <a href=\"%s\">terms and conditions</a>"
1836
+
1837
  #: ../templates/dashboard/denied.php:53
1838
  msgid "Submit"
1839
  msgstr "Enviar"
1840
 
1841
+ #: ../templates/dashboard/links.php:3
1842
+ msgid "View Your Store"
1843
+ msgstr "Ver sua Loja"
1844
+
1845
+ #: ../templates/dashboard/links.php:4
1846
+ msgid "Store Settings"
1847
+ msgstr "Configurações de Loja"
1848
+
1849
+ #: ../templates/dashboard/links.php:7
1850
+ msgid "Add New Product"
1851
+ msgstr "Adicionar Novo Produto"
1852
+
1853
+ #: ../templates/dashboard/links.php:8
1854
+ msgid "Edit Products"
1855
+ msgstr "Editar Produtos "
1856
+
1857
  #: ../templates/dashboard/orders.php:7 ../templates/dashboard/orders.php:10
1858
  msgid "Hide items"
1859
+ msgstr "Esconder itens"
1860
 
1861
+ #: ../templates/dashboard/orders.php:8 ../templates/dashboard/orders.php:79
1862
  msgid "View items"
1863
  msgstr "Ver itens"
1864
 
1866
  msgid "Links"
1867
  msgstr "Links"
1868
 
1869
+ #: ../templates/dashboard/orders.php:100
 
 
 
 
1870
  msgid "Tracking"
1871
  msgstr "Rastreamento"
1872
 
1873
+ #: ../templates/dashboard/orders.php:216
1874
  msgid "You have no orders during this period."
1875
  msgstr "Você não tem nenhum pedido durante este período"
1876
 
1902
  msgid "Save"
1903
  msgstr "Salvar"
1904
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1905
  #: ../templates/emails/application-status.php:5
1906
  #, php-format
1907
  msgid "Hi there. This is a notification about a vendor application on %s."
1945
  "Um vendedor marcou parte de seu pedido como enviado. Os itens que foram "
1946
  "enviados são:"
1947
 
1948
+ #: ../templates/emails/notify-vendor-shipped.php:17
1949
+ #: ../templates/emails/vendor-new-order.php:17
1950
+ #, php-format
1951
+ msgid "Order: %s"
1952
+ msgstr "Pedido: %s"
1953
+
1954
+ #: ../templates/emails/notify-vendor-shipped.php:24
1955
+ #: ../templates/emails/vendor-new-order.php:24
1956
+ msgid "Price"
1957
+ msgstr "Preço"
1958
+
1959
+ #: ../templates/emails/notify-vendor-shipped.php:56
1960
+ #: ../templates/emails/vendor-new-order.php:56
1961
+ msgid "Customer details"
1962
+ msgstr "Detalhes do cliente"
1963
+
1964
+ #: ../templates/emails/notify-vendor-shipped.php:59
1965
+ #: ../templates/emails/vendor-new-order.php:59
1966
+ msgid "Email:"
1967
+ msgstr "Email:"
1968
+
1969
+ #: ../templates/emails/notify-vendor-shipped.php:62
1970
+ #: ../templates/emails/vendor-new-order.php:62
1971
+ msgid "Tel:"
1972
+ msgstr "Tel:"
1973
+
1974
+ #: ../templates/emails/vendor-new-order.php:13
1975
+ #, php-format
1976
+ msgid "You have received an order from %s. Their order is as follows:"
1977
+ msgstr "Você recebeu um pedido de %s. Seus pedidos são:"
1978
+
1979
  #: ../templates/orders/comments/add-new-comment.php:11
1980
  msgid "Add comment"
1981
  msgstr "Adicionar comentário"
2002
  msgid "Comments (%s)"
2003
  msgstr "Comentários (%s)"
2004
 
2005
+ #: ../templates/orders/shipping/shipping-form.php:6
2006
  msgid "Provider:"
2007
  msgstr "Fornecedor:"
2008
 
2009
+ #: ../templates/orders/shipping/shipping-form.php:8
2010
  msgid "Custom Provider"
2011
  msgstr "Fornecedor Personalizado"
2012
 
2013
+ #: ../templates/orders/shipping/shipping-form.php:31
2014
  msgid "Provider Name:"
2015
  msgstr "Nome do Fornecedor:"
2016
 
2017
+ #: ../templates/orders/shipping/shipping-form.php:40
2018
  msgid "Tracking number:"
2019
+ msgstr "Número de rastreamento:"
2020
 
2021
+ #: ../templates/orders/shipping/shipping-form.php:48
2022
  msgid "Tracking link:"
2023
  msgstr "Link de rastreamento:"
2024
 
2025
+ #: ../templates/orders/shipping/shipping-form.php:58
2026
  msgid "Date shipped:"
2027
  msgstr "Data de envio:"
2028
 
2029
+ #: ../templates/orders/shipping/shipping-form.php:66
2030
  msgid "Preview:"
2031
  msgstr "Visualizar:"
2032
 
2033
+ #: ../templates/orders/shipping/shipping-form.php:66
2034
  msgid "Click here to track your shipment"
2035
  msgstr "Clique aqui para rastrear seu envio"
2036
 
2037
+ #: ../templates/orders/shipping/shipping-form.php:75
2038
  msgid "Update tracking number"
2039
+ msgstr "Atualizar número de rastreamento"
2040
 
2041
+ #: ../templates/orders/shipping/shipping-form.php:77
2042
  msgid "Mark as shipped"
2043
  msgstr "Marcar como enviado"
2044
 
2046
  #, php-format
2047
  msgid "Quantity: %d"
2048
  msgstr "Quantidade: %d"
2049
+
2050
+ #~ msgctxt "Order date parsed by strftime"
2051
+ #~ msgid "%b %d, %Y @ %I:%M %p"
2052
+ #~ msgstr "%b %d, %Y @ %I:%M %p"
2053
+
2054
+ #~ msgid ""
2055
+ #~ "<b>WC Vendors is disabled</b>. WC Vendors requires a minimum of "
2056
+ #~ "WooCommerce v2.2.0."
2057
+ #~ msgstr ""
2058
+ #~ "<b>WC Vendors está desativado.</b>. WC Vendors requer no mínimo a versão "
2059
+ #~ "do WooCommerce v2.2.0."
2060
+
2061
+ #~ msgid ""
2062
+ #~ "WC Vendors requires the Vendor shop page value be set <a href=\"%s"
2063
+ #~ "\">click here to set it.</a> | <a href=\"%s\">Hide Notice</a>"
2064
+ #~ msgstr ""
2065
+ #~ "WC Vendors requer que o valor seja definido na página da loja do Vendedor "
2066
+ #~ "<a href=“%s”>clique aqui para ajustar.</a> | <a href=“%s”>Ocultar Aviso</"
2067
+ #~ "a>\n"
2068
+
2069
+ #~ msgid ""
2070
+ #~ "You must save your permalinks once you have modified your vendor page. <a "
2071
+ #~ "href=\"%s\">click here to save</a>. | <a href=\"%s\">Hide Notice</a>"
2072
+ #~ msgstr ""
2073
+ #~ "Você deve salvar os seus permalinks uma vez que você tenha modificado sua "
2074
+ #~ "página fornecedor. <a href=\\”%s\\”>clique aqui para salvar</a> . | <a "
2075
+ #~ "href=\\”%s\\”>Ocultar Aviso</a>"
2076
+
2077
+ #~ msgid "Sold by: "
2078
+ #~ msgstr "Vendido por:"
2079
+
2080
+ #~ msgid ""
2081
+ #~ "The default rate you pay each vendor for a product sale. If a product has "
2082
+ #~ "a commission rate already set, this value will be ignored for that "
2083
+ #~ "product."
2084
+ #~ msgstr ""
2085
+ #~ "A taxa de padrão que você pagará a cada vendedor pela venda de um "
2086
+ #~ "produto. Se um produto já tiver uma taxa de comissão já definida, este "
2087
+ #~ "valor será ignorado para esse produto."
2088
+
2089
+ #~ msgid ""
2090
+ #~ "The shipping collected on a vendor's product will be given in its entirety"
2091
+ #~ msgstr ""
2092
+ #~ "A taxa de envio recolhida do produto de um fornecedor será dada em sua "
2093
+ #~ "totalidade"
2094
+
2095
+ #~ msgid ""
2096
+ #~ "Enable HTML for a vendor's shop description by default. You can enable "
2097
+ #~ "or disable this per vendor by editing the vendors username."
2098
+ #~ msgstr ""
2099
+ #~ "Permitir HTML para descrição da loja de um vendedor por padrão. Você pode "
2100
+ #~ "ativar ou desativar esta opção para cada vendedor editando o nome de "
2101
+ #~ "usuário dos vendedores."
2102
+
2103
+ #~ msgid "Vendor shop page"
2104
+ #~ msgstr "Página da loja do Vendedor"
2105
+
2106
+ #~ msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
2107
+ #~ msgstr "Eg: <code>seusite.com/[your_setting_here]/[vendor_name_here]</code>"
2108
+
2109
+ #~ msgid ""
2110
+ #~ "CHECKING these boxes will HIDE these areas of the add product page for "
2111
+ #~ "vendors"
2112
+ #~ msgstr ""
2113
+ #~ "MARCANDO estas caixas irá OCULTAR do vendedor estas áreas para na página "
2114
+ #~ "Adicionar Produto"
2115
+
2116
+ #~ msgid "CHECKING these boxes will HIDE these product options from the vendor"
2117
+ #~ msgstr "MARCANDO estas caixas irá OCULTAR do vendedor estas opções de tipo"
2118
+
2119
+ #~ msgid "View backend sales reports"
2120
+ #~ msgstr "Ver relatórios de venda no backend"
2121
+
2122
+ #~ msgid ""
2123
+ #~ "Graphs and tables via the Reports page in backend. The reports will only "
2124
+ #~ "display sales data that pertain to their products"
2125
+ #~ msgstr ""
2126
+ #~ "Gráficos e tabelas via página de Relatórios no backend. Os relatórios "
2127
+ #~ "mostrarão somente os dados de vendas que dizem respeito a seus produtos"
2128
+
2129
+ #~ msgid ""
2130
+ #~ "Sales table on the frontend on the My Account page. The table will only "
2131
+ #~ "display sales data that pertain to their products"
2132
+ #~ msgstr ""
2133
+ #~ "Tabela de vendas no frontend na página Minha Conta. A tabela exibirá "
2134
+ #~ "apenas dados de vendas que dizem respeito a seus produtos"
2135
+
2136
+ #~ msgid ""
2137
+ #~ "Vendors could submit a product through the backend, and an admin would "
2138
+ #~ "approve or deny it"
2139
+ #~ msgstr ""
2140
+ #~ "Vendedores poderiam enviar um produto pelo backend, e um administrador "
2141
+ #~ "iria aprovar ou negar"
2142
+
2143
+ #~ msgid ""
2144
+ #~ "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
2145
+ #~ "code><br/>By default, My Account > Vendor Dashboard should have the "
2146
+ #~ "shortcode."
2147
+ #~ msgstr ""
2148
+ #~ "Escolha a página que terá o código <code>[wcv_vendor_dashboard]</code><br/"
2149
+ #~ ">Por padrão, Minha Conta > Painel do Vendedor deve ter este código."
2150
+
2151
+ #~ msgid ""
2152
+ #~ "Choose the page that has the shortcode <code>[wcv_shop_settings]</"
2153
+ #~ "code><br/>These are the shop settings a vendor can configure."
2154
+ #~ msgstr ""
2155
+ #~ "Escolha a página que terá o código <code>[wcv_shop_settings]</code><br/"
2156
+ #~ ">Estes são ajustes da loja que um vendedor pode configurar."
2157
+
2158
+ #~ msgid ""
2159
+ #~ "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
2160
+ #~ "default, My Account > Orders should have the shortcode."
2161
+ #~ msgstr ""
2162
+ #~ "Escolha a página que terá o código <code>[wcv_orders]</code><br/>Por "
2163
+ #~ "padrão, Minha Conta > Pedidos deve ter este código."
2164
+
2165
+ #~ msgid ""
2166
+ #~ "These terms are shown to a user when submitting an application to become "
2167
+ #~ "a vendor.<br/>If left blank, no terms will be shown to the applicant."
2168
+ #~ msgstr ""
2169
+ #~ "Estes termos são mostrados a um usuário quando enviarem um pedido para se "
2170
+ #~ "tornar um vendedor. <br/> Se ficar em branco, nenhum termo será mostrado "
2171
+ #~ "ao requerente."
2172
+
2173
+ #~ msgid "User payments"
2174
+ #~ msgstr "Pagamentos do usuário"
2175
+
2176
+ #~ msgid ""
2177
+ #~ "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
2178
+ #~ "\">here</a>."
2179
+ #~ msgstr ""
2180
+ #~ "Certifique-se de atualizar suas configurações dos ajustes do PayPal "
2181
+ #~ "Adaptive Payments <a href=\"%s\">aqui</a>."
2182
+
2183
+ #~ msgid "Instantly pay vendors their commission when an order is made"
2184
+ #~ msgstr ""
2185
+ #~ "Pagar os vendedores suas comissões instantaneamente quando um pedido é "
2186
+ #~ "feito"
2187
+
2188
+ #~ msgid "Sold by"
2189
+ #~ msgstr "Vendido por"
2190
+
2191
+ #~ msgid "Extra data"
2192
+ #~ msgstr "Dados extra"
2193
+
2194
+ #~ msgid "Unmark shipped"
2195
+ #~ msgstr "Desmarcar enviado"
readme.txt CHANGED
@@ -5,8 +5,8 @@ Donate link: http://www.wcvendors.com/
5
  Author URI: http://www.wcvendors.com/
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
- Tested up to: 4.6.0
9
- Stable tag: 1.9.3
10
  License: GPLv2 or later
11
 
12
  The free marketplace plugin for WooCommerce. Now you can allow anyone to open a store on your site!
@@ -121,6 +121,30 @@ No Upgrade required at this time.
121
 
122
  == Changelog ==
123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  = Version 1.9.3 - 11th of August 2016
125
 
126
  * Fixed: Only load asset on orders page in admin
5
  Author URI: http://www.wcvendors.com/
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
+ Tested up to: 4.6.1
9
+ Stable tag: 1.9.4
10
  License: GPLv2 or later
11
 
12
  The free marketplace plugin for WooCommerce. Now you can allow anyone to open a store on your site!
121
 
122
  == Changelog ==
123
 
124
+ = Version 1.9.4 - 24th September 2016 =
125
+
126
+ * Added: Filter to add delayed payment possibility #309
127
+ * Added: WPML support configuration file
128
+ * Updated: Brazilian translation files thanks Luis!
129
+ * Fixed: Using "date_i18n" instead of just "date" #316 from CasperBraske
130
+ * Fixed: Geczy text domain in the settings file #314
131
+ * Fixed: Commissions lock on one vendor after some actions are made #311
132
+ * Fixed: Vendor dashboard Orders Export link is dead #306
133
+ * Fixed: Vendor sorting in commissions - no option to NOT choose a vendor #305
134
+ * Fixed: vendor order admin product metadata loading #298 from mikko-niemikorpi
135
+ * Fixed: Commission status translatable in reports thanks CasperBraske
136
+ * Fixed: Translatable strings thanks CasperBraske
137
+ * Fixed: Issues with translation strings
138
+ * Fixed: Incorrect variable reference
139
+ * Fixed: bp_setup_current_user was called incorrectly
140
+ * Fixed: Display of variations on main dashboard
141
+ * Fixed: Trying to get property of non-object
142
+ * Fixed: Variation data styles in order display in wp-admin
143
+ * Fixed: Save user meta fields when pending vendor
144
+ * Fixed: Incorrect url string format in french translation
145
+ * Templates Updated:
146
+ templates/dashboard/orders.php
147
+
148
  = Version 1.9.3 - 11th of August 2016
149
 
150
  * Fixed: Only load asset on orders page in admin
templates/dashboard/orders.php CHANGED
@@ -1,3 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
1
  <script type="text/javascript">
2
  jQuery(function () {
3
  jQuery('a.view-items').on('click', function (e) {
@@ -126,57 +137,15 @@ jQuery(function () {
126
  $product_id = '';
127
  foreach ($valid as $key => $item):
128
 
129
- $product_id = !empty( $item['variation_id'] ) ? $item['variation_id'] : $item['product_id'];
130
-
131
- $_product = $order->get_product_from_item( $item );
132
-
133
- $item_meta = new WC_Order_Item_Meta( $item );
134
- $item_meta = $item_meta->display( false, true ); ?>
135
- <?php echo $item['qty'] . 'x ' . $item['name']; ?>
136
-
137
- <?php
138
- if ( $metadata = $order->has_meta( $item['product_id'] ) ) {
139
- echo '<table cellspacing="1" class="wcv_display_meta">';
140
- foreach ( $metadata as $meta ) {
141
-
142
- // Skip hidden core fields
143
- if ( in_array( $meta['meta_key'], apply_filters( 'woocommerce_hidden_order_itemmeta', array(
144
- '_qty',
145
- '_tax_class',
146
- '_product_id',
147
- '_variation_id',
148
- '_line_subtotal',
149
- '_line_subtotal_tax',
150
- '_line_total',
151
- '_line_tax',
152
- WC_Vendors::$pv_options->get_option( 'sold_by_label' ),
153
- ) ) ) ) {
154
- continue;
155
- }
156
-
157
- // Skip serialised meta
158
- if ( is_serialized( $meta['meta_value'] ) ) {
159
- continue;
160
- }
161
-
162
- // Get attribute data
163
- if ( taxonomy_exists( wc_sanitize_taxonomy_name( $meta['meta_key'] ) ) ) {
164
- $term = get_term_by( 'slug', $meta['meta_value'], wc_sanitize_taxonomy_name( $meta['meta_key'] ) );
165
- $meta['meta_key'] = wc_attribute_label( wc_sanitize_taxonomy_name( $meta['meta_key'] ) );
166
- $meta['meta_value'] = isset( $term->name ) ? $term->name : $meta['meta_value'];
167
- } else {
168
- $meta['meta_key'] = apply_filters( 'woocommerce_attribute_label', wc_attribute_label( $meta['meta_key'], $_product ), $meta['meta_key'] );
169
- }
170
-
171
- echo '<tr><th>' . wp_kses_post( rawurldecode( $meta['meta_key'] ) ) . ':</th><td>' . wp_kses_post( wpautop( make_clickable( rawurldecode( $meta['meta_value'] ) ) ) ) . '</td></tr>';
172
- }
173
- echo '</table>';
174
- }
175
  ?>
 
 
176
 
177
- <br/>
178
 
179
- <?php endforeach ?>
180
 
181
  </td>
182
  </tr>
1
+ <?php
2
+ /**
3
+ * The template for displaying the dashboard order
4
+ *
5
+ * Override this template by copying it to yourtheme/wc-vendors/dashboard/
6
+ *
7
+ * @package WCVendors
8
+ * @version 1.9.4
9
+ */
10
+ ?>
11
+
12
  <script type="text/javascript">
13
  jQuery(function () {
14
  jQuery('a.view-items').on('click', function (e) {
137
  $product_id = '';
138
  foreach ($valid as $key => $item):
139
 
140
+ // Get variation data if there is any.
141
+ $variation_detail = !empty( $item['variation_id'] ) ? WCV_Orders::get_variation_data( $item[ 'variation_id' ] ) : '';
142
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  ?>
144
+ <?php echo $item['qty'] . 'x ' . $item['name']; ?>
145
+ <?php if ( !empty( $variation_detail ) ) echo '<br />' . $variation_detail; ?>
146
 
 
147
 
148
+ <?php endforeach; ?>
149
 
150
  </td>
151
  </tr>
wpml-config.xml ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <wpml-config>
2
+ <admin-texts>
3
+ <key name="wc_prd_vendor_options">
4
+ <key name="show_vendor_registration"/>
5
+ <key name="manual_vendor_registration"/>
6
+ <key name="give_tax"/>
7
+ <key name="give_shipping"/>
8
+ <key name="shop_html_enabled"/>
9
+ <key name="vendor_shop_permalink"/>
10
+ <key name="shop_headers_enabled"/>
11
+ <key name="vendor_display_name"/>
12
+ <key name="sold_by_label"/>
13
+ <key name="seller_info_label"/>
14
+ <key name="can_show_orders"/>
15
+ <key name="can_view_order_comments"/>
16
+ <key name="can_submit_order_comments"/>
17
+ <key name="can_view_order_emails"/>
18
+ <key name="can_export_csv"/>
19
+ <key name="can_view_backend_reports"/>
20
+ <key name="can_view_frontend_reports"/>
21
+ <key name="can_submit_products"/>
22
+ <key name="can_edit_published_products"/>
23
+ <key name="can_submit_live_products"/>
24
+ <key name="instapay"/>
25
+ <key name="schedule"/>
26
+ <key name="mail_mass_pay_results"/>
27
+ <key name="vendor_dashboard_page"/>
28
+ <key name="orders_page"/>
29
+ <key name="shop_settings_page"/>
30
+ <key name="db_version"/>
31
+ <key name="dashboard_page_id"/>
32
+ <key name="vendor_store_header_type"/>
33
+ <key name="store_shop_headers"/>
34
+ <key name="store_single_headers"/>
35
+ <key name="disable_wp_admin_vendors"/>
36
+ <key name="product_management_cap"/>
37
+ <key name="order_management_cap"/>
38
+ <key name="shop_coupon_management_cap"/>
39
+ <key name="settings_management_cap"/>
40
+ <key name="ratings_management_cap"/>
41
+ <key name="shipping_management_cap"/>
42
+ <key name="view_store_cap"/>
43
+ <key name="delete_product_cap"/>
44
+ <key name="can_edit_approved_products"/>
45
+ <key name="vendor_product_trash"/>
46
+ <key name="vendor_coupon_trash"/>
47
+ <key name="view_your_store"/>
48
+ <key name="feedback_page_id"/>
49
+ <key name="vendor_ratings_label"/>
50
+ <key name="feedback_system"/>
51
+ <key name="feedback_display"/>
52
+ <key name="feedback_sort_order"/>
53
+ <key name="feedback_order_status"/>
54
+ <key name="commission_coupon_action"/>
55
+ <key name="commission_type"/>
56
+ <key name="commission_percent"/>
57
+ <key name="category_display"/>
58
+ <key name="product_max_gallery_count"/>
59
+ <key name="vendor_pending_notice"/>
60
+ <key name="vendor_approved_notice"/>
61
+ <key name="dashboard_date_range"/>
62
+ <key name="orders_sales_range"/>
63
+ <key name="products_per_page"/>
64
+ <key name="coupons_per_page"/>
65
+ <key name="default_store_banner_src"/>
66
+ <key name="tag_display"/>
67
+ <key name="file_display"/>
68
+ <key name="vendor_dashboard_notice"/>
69
+ <key name="commission_amount"/>
70
+ <key name="commission_fee"/>
71
+ <key name="sold_by"/>
72
+ </key>
73
+ </admin-texts>
74
+ </wpml-config>