WC Vendors - Version 1.5.0

Version Description

No Upgrade required at this time.

Download this release

Release Info

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

Code changes from version 1.4.5 to 1.5.0

WCVendors/classes/admin/class-admin-page.php CHANGED
@@ -89,7 +89,7 @@ class WCV_Admin_Setup
89
  *
90
  * @return unknown
91
  */
92
- public function set_table_option( $status, $option, $value )
93
  {
94
  if ( $option == 'commission_per_page' ) {
95
  return $value;
89
  *
90
  * @return unknown
91
  */
92
+ public static function set_table_option( $status, $option, $value )
93
  {
94
  if ( $option == 'commission_per_page' ) {
95
  return $value;
WCVendors/classes/admin/emails/class-emails.php CHANGED
@@ -84,7 +84,7 @@ class WCV_Emails
84
  ? sprintf( '<a href="%s">%s</a>', WCV_Vendors::get_vendor_shop_page( $product->post_author ), WCV_Vendors::get_vendor_shop_name( $product->post_author ) )
85
  : get_bloginfo( 'name' );
86
 
87
- $name .= '<small><br />' . apply_filters('wcvendors_sold_by_in_email', __( 'Sold by: ', 'wcvendors' )). $sold_by . '</small><br />';
88
 
89
  return $name;
90
  }
84
  ? sprintf( '<a href="%s">%s</a>', WCV_Vendors::get_vendor_shop_page( $product->post_author ), WCV_Vendors::get_vendor_shop_name( $product->post_author ) )
85
  : get_bloginfo( 'name' );
86
 
87
+ $name .= '<small class="wcvendors_sold_by_in_email"><br />' . apply_filters('wcvendors_sold_by_in_email', __( 'Sold by: ', 'wcvendors' )). $sold_by . '</small><br />';
88
 
89
  return $name;
90
  }
WCVendors/classes/admin/emails/class-wc-notify-admin.php CHANGED
@@ -63,6 +63,8 @@ class WC_Email_Notify_Admin extends WC_Email
63
  return;
64
  }
65
 
 
 
66
  $this->find[ ] = '{product_name}';
67
  $this->product_name = $post->post_title;
68
  $this->replace[ ] = $this->product_name;
63
  return;
64
  }
65
 
66
+ if ( !$this->is_enabled() ) return;
67
+
68
  $this->find[ ] = '{product_name}';
69
  $this->product_name = $post->post_title;
70
  $this->replace[ ] = $this->product_name;
WCVendors/classes/admin/settings/sf-options.php CHANGED
@@ -6,7 +6,7 @@ $options[ ] = array( 'name' => __( 'General options', 'wcvendors' ), 'type' => '
6
 
7
  $options[ ] = array(
8
  'name' => __( 'Default commission (%)', 'wcvendors' ),
9
- 'desc' => __( 'The default rate the vendor receives for each product. If a product has a commission rate already set, this value will be ignored for that product.', 'wcvendors' ),
10
  'id' => 'default_commission',
11
  'css' => 'width:70px;',
12
  'type' => 'number',
@@ -19,7 +19,7 @@ $options[ ] = array(
19
  $options[ ] = array(
20
  'name' => __( 'Registration', 'wcvendors' ),
21
  'desc' => __( 'Allow users or guests to apply to become a vendor', 'wcvendors' ),
22
- 'tip' => __( 'This will show a checkbox on the My Account page\'s registration form asking if the user would like to apply to be a vendor. Also, on the Vendor Dashboard, users can apply to become a vendor.', 'wcvendors' ),
23
  'id' => 'show_vendor_registration',
24
  'type' => 'checkbox',
25
  'std' => true,
@@ -36,17 +36,26 @@ $options[ ] = array(
36
  $options[ ] = array(
37
  'name' => __( 'Taxes', 'wcvendors' ),
38
  'desc' => __( 'Give vendors any tax collected per-product', 'wcvendors' ),
39
- 'tip' => __( 'The tax collected on a vendor\'s product will be given to him in its entirety', 'wcvendors' ),
40
  'id' => 'give_tax',
41
  'type' => 'checkbox',
42
  'std' => false,
43
  );
44
 
 
 
 
 
 
 
 
 
 
45
  $options[ ] = array( 'name' => __( 'Shop options', 'wcvendors' ), 'type' => 'title', 'desc' => __( ' ', 'wcvendors' ) );
46
 
47
  $options[ ] = array(
48
  'name' => __( 'Shop HTML', 'wcvendors' ),
49
- 'desc' => __( 'Enable HTML for a vendor\'s shop description by default', 'wcvendors' ),
50
  'id' => 'shop_html_enabled',
51
  'type' => 'checkbox',
52
  'std' => true,
@@ -63,7 +72,7 @@ $options[ ] = array(
63
  $options[ ] = array(
64
  'name' => __( 'Shop Headers', 'wcvendors' ),
65
  'desc' => __( 'Enable vendor shop headers', 'wcvendors' ),
66
- 'tip' => __( 'This will override the HTML Shop description output on product-archive pages.', 'wcvendors' ),
67
  'id' => 'shop_headers_enabled',
68
  'type' => 'checkbox',
69
  'std' => false,
@@ -74,7 +83,7 @@ $options[ ] = array( 'name' => __( 'Product Add Page', 'wcvendors' ), 'type' =>
74
 
75
  $options[ ] = array(
76
  'name' => __( 'Left side panel', 'wcvendors' ),
77
- 'desc' => __( 'Hide these areas of the add product page for vendors', 'wcvendors' ),
78
  'id' => 'hide_product_panel',
79
  'options' => array(
80
  'inventory' => 'Inventory',
@@ -89,7 +98,7 @@ $options[ ] = array(
89
 
90
  $options[ ] = array(
91
  'name' => __( 'Types', 'wcvendors' ),
92
- 'desc' => __( 'Hide these product types from the vendor', 'wcvendors' ),
93
  'id' => 'hide_product_types',
94
  'options' => array(
95
  'simple' => 'Simple',
@@ -103,7 +112,7 @@ $options[ ] = array(
103
 
104
  $options[ ] = array(
105
  'name' => __( 'Type options', 'wcvendors' ),
106
- 'desc' => __( 'Hide these product options from the vendor', 'wcvendors' ),
107
  'id' => 'hide_product_type_options',
108
  'options' => array(
109
  'virtual' => 'Virtual',
@@ -276,7 +285,7 @@ $options[ ] = array(
276
  $options[ ] = array(
277
  'name' => __( 'Instant pay', 'wcvendors' ),
278
  'desc' => __( 'Instantly pay vendors their commission when an order is made', 'wcvendors' ),
279
- 'tip' => __( 'For this to work, customers must checkout with the PayPal Adaptive Payments gateway. Using other gateways will not pay vendors instantly', 'wcvendors' ),
280
  'id' => 'instapay',
281
  'type' => 'checkbox',
282
  'std' => true,
6
 
7
  $options[ ] = array(
8
  'name' => __( 'Default commission (%)', 'wcvendors' ),
9
+ 'desc' => __( 'The default rate you pay each vendor for a product sale. If a product has a commission rate already set, this value will be ignored for that product.', 'wcvendors' ),
10
  'id' => 'default_commission',
11
  'css' => 'width:70px;',
12
  'type' => 'number',
19
  $options[ ] = array(
20
  'name' => __( 'Registration', 'wcvendors' ),
21
  'desc' => __( 'Allow users or guests to apply to become a vendor', 'wcvendors' ),
22
+ 'tip' => __( 'This will show a checkbox on the My Account page\'s registration form asking if the user would like to apply to be a vendor. Also, on the Vendor Dashboard, users can still apply to become a vendor even if this is disabled.', 'wcvendors' ),
23
  'id' => 'show_vendor_registration',
24
  'type' => 'checkbox',
25
  'std' => true,
36
  $options[ ] = array(
37
  'name' => __( 'Taxes', 'wcvendors' ),
38
  'desc' => __( 'Give vendors any tax collected per-product', 'wcvendors' ),
39
+ 'tip' => __( 'The tax collected on a vendor\'s product will be given in its entirety', 'wcvendors' ),
40
  'id' => 'give_tax',
41
  'type' => 'checkbox',
42
  'std' => false,
43
  );
44
 
45
+ $options[ ] = array(
46
+ 'name' => __( 'Shipping', 'wcvendors' ),
47
+ 'desc' => __( 'Give vendors any shipping collected per-product', 'wcvendors' ),
48
+ 'tip' => __( 'The shipping collected on a vendor\'s product will be given in its entirety', 'wcvendors' ),
49
+ 'id' => 'give_shipping',
50
+ 'type' => 'checkbox',
51
+ 'std' => true,
52
+ );
53
+
54
  $options[ ] = array( 'name' => __( 'Shop options', 'wcvendors' ), 'type' => 'title', 'desc' => __( ' ', 'wcvendors' ) );
55
 
56
  $options[ ] = array(
57
  'name' => __( 'Shop HTML', 'wcvendors' ),
58
+ 'desc' => __( 'Enable HTML for a vendor\'s shop description by default. You can enable or disable this per vendor by editing the vendors username.', 'wcvendors' ),
59
  'id' => 'shop_html_enabled',
60
  'type' => 'checkbox',
61
  'std' => true,
72
  $options[ ] = array(
73
  'name' => __( 'Shop Headers', 'wcvendors' ),
74
  'desc' => __( 'Enable vendor shop headers', 'wcvendors' ),
75
+ 'tip' => __( 'This will override the HTML Shop description output on product-archive pages. In order to customize the shop headers visit wcvendors.com and read the article in the Knowledgebase titled Changing the Vendor Templates.', 'wcvendors' ),
76
  'id' => 'shop_headers_enabled',
77
  'type' => 'checkbox',
78
  'std' => false,
83
 
84
  $options[ ] = array(
85
  'name' => __( 'Left side panel', 'wcvendors' ),
86
+ 'desc' => __( 'CHECKING these boxes will HIDE these areas of the add product page for vendors', 'wcvendors' ),
87
  'id' => 'hide_product_panel',
88
  'options' => array(
89
  'inventory' => 'Inventory',
98
 
99
  $options[ ] = array(
100
  'name' => __( 'Types', 'wcvendors' ),
101
+ 'desc' => __( 'CHECKING these boxes will HIDE these product types from the vendor', 'wcvendors' ),
102
  'id' => 'hide_product_types',
103
  'options' => array(
104
  'simple' => 'Simple',
112
 
113
  $options[ ] = array(
114
  'name' => __( 'Type options', 'wcvendors' ),
115
+ 'desc' => __( 'CHECKING these boxes will HIDE these product options from the vendor', 'wcvendors' ),
116
  'id' => 'hide_product_type_options',
117
  'options' => array(
118
  'virtual' => 'Virtual',
285
  $options[ ] = array(
286
  'name' => __( 'Instant pay', 'wcvendors' ),
287
  'desc' => __( 'Instantly pay vendors their commission when an order is made', 'wcvendors' ),
288
+ 'tip' => __( 'For this to work, customers must checkout with the PayPal Adaptive Payments gateway. Using any other gateways will not pay vendors instantly', 'wcvendors' ),
289
  'id' => 'instapay',
290
  'type' => 'checkbox',
291
  'std' => true,
WCVendors/classes/class-install.php CHANGED
@@ -19,59 +19,19 @@ class WCV_Install
19
  {
20
  $db_version = WC_Vendors::$pv_options->get_option( 'db_version' );
21
 
22
- // 1.0 install
23
  if ( version_compare( $db_version, '1.0', '<' ) ) {
24
- $this->install_prdtvendor();
25
- WC_Vendors::$pv_options->update_option( 'db_version', '1.4.2' );
26
- }
27
-
28
- // 1.0.1 allows vendors to upload roles
29
- if ( version_compare( $db_version, '1.0.1', '<' ) ) {
30
- $this->add_new_roles();
31
- WC_Vendors::$pv_options->update_option( 'db_version', '1.0.1' );
32
- }
33
-
34
- // 1.3.0 add a 'vendor dashboard' page
35
- if ( version_compare( $db_version, '1.3.0', '<' ) ) {
36
- $this->create_new_pages();
37
- WC_Vendors::$pv_options->update_option( 'db_version', '1.3.0' );
38
- }
39
-
40
- // 1.3.2 adds 'qty' to the pv_commission table
41
- if ( version_compare( $db_version, '1.3.2', '<' ) ) {
42
- $this->update_to( '1.3.2' );
43
- WC_Vendors::$pv_options->update_option( 'db_version', '1.3.2' );
44
- }
45
-
46
- // 1.4.0 adds 'pending_vendor' role
47
- if ( version_compare( $db_version, '1.4.0', '<' ) ) {
48
- $this->update_to( '1.4.0' );
49
- WC_Vendors::$pv_options->update_option( 'db_version', '1.4.0' );
50
- flush_rewrite_rules();
51
- }
52
-
53
- if ( version_compare( $db_version, '1.4.2', '<' ) ) {
54
- $this->update_to( '1.4.2' );
55
- WC_Vendors::$pv_options->update_option( 'db_version', '1.4.2' );
56
- }
57
-
58
- if ( version_compare( $db_version, '1.4.3', '<' ) ) {
59
- $this->update_to( '1.4.3' );
60
- WC_Vendors::$pv_options->update_option( 'db_version', '1.4.3' );
61
- }
62
-
63
- if ( version_compare( $db_version, '1.4.5', '<' ) ) {
64
- $this->update_to( '1.4.5' );
65
- WC_Vendors::$pv_options->update_option( 'db_version', '1.4.5' );
66
  }
67
 
68
  }
69
 
70
 
71
  /**
72
- * Grouped functions for installing the Product Vendor plugin
73
  */
74
- private function install_prdtvendor()
75
  {
76
  // Clear the cron
77
  wp_clear_scheduled_hook( 'pv_schedule_mass_payments' );
@@ -208,7 +168,7 @@ class WCV_Install
208
 
209
 
210
  /**
211
- *
212
  *
213
  * @param unknown $version
214
  */
19
  {
20
  $db_version = WC_Vendors::$pv_options->get_option( 'db_version' );
21
 
22
+ // Initial Install
23
  if ( version_compare( $db_version, '1.0', '<' ) ) {
24
+ $this->install_wcvendor();
25
+ WC_Vendors::$pv_options->update_option( 'db_version', '1.5.0' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  }
27
 
28
  }
29
 
30
 
31
  /**
32
+ * Grouped functions for installing the WC Vendor plugin
33
  */
34
+ private function install_wcvendor()
35
  {
36
  // Clear the cron
37
  wp_clear_scheduled_hook( 'pv_schedule_mass_payments' );
168
 
169
 
170
  /**
171
+ * Depreciated
172
  *
173
  * @param unknown $version
174
  */
WCVendors/classes/class-vendors.php CHANGED
@@ -79,6 +79,7 @@ class WCV_Vendors
79
  global $woocommerce;
80
 
81
  $give_tax = WC_Vendors::$pv_options->get_option( 'give_tax' );
 
82
  $receiver = array();
83
  $shipping_given = 0;
84
  $tax_given = 0;
@@ -92,19 +93,19 @@ class WCV_Vendors
92
  $is_vendor = WCV_Vendors::is_vendor( $author );
93
  $commission = $is_vendor ? WCV_Commission::calculate_commission( $product[ 'line_subtotal' ], $product_id, $order ) : 0;
94
  $tax = !empty( $product[ 'line_tax' ] ) ? (float) $product[ 'line_tax' ] : 0;
95
- // Check if shipping is enabled
96
- if ( get_option('woocommerce_calc_shipping') === 'no' ) { $shipping = 0; } else {
97
- $shipping = WCV_Shipping::get_shipping_due( $order->id, $product, $author );
98
  }
99
 
100
  if ( $is_vendor ) {
101
 
102
- $shipping_given += $shipping;
103
  $tax_given += $give_tax ? $tax : 0;
104
 
105
  $give = 0;
106
  $give += !empty( $receiver[ $author ][ 'total' ] ) ? $receiver[ $author ][ 'total' ] : 0;
107
- $give += $shipping;
108
  $give += $commission;
109
  $give += $give_tax ? $tax : 0;
110
 
@@ -113,7 +114,7 @@ class WCV_Vendors
113
  $receiver[ $author ] = array(
114
  'vendor_id' => (int) $author,
115
  'commission' => !empty( $receiver[ $author ][ 'commission' ] ) ? $receiver[ $author ][ 'commission' ] + $commission : $commission,
116
- 'shipping' => !empty( $receiver[ $author ][ 'shipping' ] ) ? $receiver[ $author ][ 'shipping' ] + $shipping : $shipping,
117
  'tax' => $give_tax ? ( !empty( $receiver[ $author ][ 'tax' ] ) ? $receiver[ $author ][ 'tax' ] + $tax : $tax ) : 0,
118
  'qty' => !empty( $receiver[ $author ][ 'qty' ] ) ? $receiver[ $author ][ 'qty' ] + $product[ 'qty' ] : $product[ 'qty' ],
119
  'total' => $give,
@@ -125,10 +126,10 @@ class WCV_Vendors
125
  'vendor_id' => (int) $author,
126
  'product_id' => $product_id,
127
  'commission' => $commission,
128
- 'shipping' => $shipping,
129
  'tax' => $give_tax ? $tax : 0,
130
  'qty' => $product[ 'qty' ],
131
- 'total' => $shipping + $commission + ( $give_tax ? $tax : 0 ),
132
  );
133
 
134
  }
79
  global $woocommerce;
80
 
81
  $give_tax = WC_Vendors::$pv_options->get_option( 'give_tax' );
82
+ $give_shipping = WC_Vendors::$pv_options->get_option( 'give_shipping' );
83
  $receiver = array();
84
  $shipping_given = 0;
85
  $tax_given = 0;
93
  $is_vendor = WCV_Vendors::is_vendor( $author );
94
  $commission = $is_vendor ? WCV_Commission::calculate_commission( $product[ 'line_subtotal' ], $product_id, $order ) : 0;
95
  $tax = !empty( $product[ 'line_tax' ] ) ? (float) $product[ 'line_tax' ] : 0;
96
+ // Check if shipping is enabled
97
+ if ( get_option('woocommerce_calc_shipping') === 'no' ) { $shipping = 0; } else {
98
+ $shipping = WCV_Shipping::get_shipping_due( $order->id, $product, $author );
99
  }
100
 
101
  if ( $is_vendor ) {
102
 
103
+ $shipping_given += $give_shipping ? $shipping : 0;
104
  $tax_given += $give_tax ? $tax : 0;
105
 
106
  $give = 0;
107
  $give += !empty( $receiver[ $author ][ 'total' ] ) ? $receiver[ $author ][ 'total' ] : 0;
108
+ $give += $give_shipping ? $shipping : 0;
109
  $give += $commission;
110
  $give += $give_tax ? $tax : 0;
111
 
114
  $receiver[ $author ] = array(
115
  'vendor_id' => (int) $author,
116
  'commission' => !empty( $receiver[ $author ][ 'commission' ] ) ? $receiver[ $author ][ 'commission' ] + $commission : $commission,
117
+ 'shipping' => $give_shipping ? ( !empty( $receiver[ $author ][ 'shipping' ] ) ? $receiver[ $author ][ 'shipping' ] + $shipping : $shipping) : 0,
118
  'tax' => $give_tax ? ( !empty( $receiver[ $author ][ 'tax' ] ) ? $receiver[ $author ][ 'tax' ] + $tax : $tax ) : 0,
119
  'qty' => !empty( $receiver[ $author ][ 'qty' ] ) ? $receiver[ $author ][ 'qty' ] + $product[ 'qty' ] : $product[ 'qty' ],
120
  'total' => $give,
126
  'vendor_id' => (int) $author,
127
  'product_id' => $product_id,
128
  'commission' => $commission,
129
+ 'shipping' => $give_shipping ? $shipping : 0,
130
  'tax' => $give_tax ? $tax : 0,
131
  'qty' => $product[ 'qty' ],
132
+ 'total' => ($give_shipping ? $shipping : 0) + $commission + ( $give_tax ? $tax : 0 ),
133
  );
134
 
135
  }
WCVendors/classes/front/class-vendor-cart.php CHANGED
@@ -54,7 +54,7 @@ class WCV_Vendor_Cart
54
  $author_id = get_the_author_meta( 'ID' );
55
 
56
  $sold_by = WCV_Vendors::is_vendor( $author_id )
57
- ? sprintf( '<a href="%s">%s</a>', WCV_Vendors::get_vendor_shop_page( $author_id ), WCV_Vendors::get_vendor_shop_name( $author_id ) )
58
  : get_bloginfo( 'name' );
59
 
60
  echo apply_filters('wcvendors_cart_sold_by_meta', __( 'Sold by: ', 'wcvendors' )) . $sold_by . '<br/>';
54
  $author_id = get_the_author_meta( 'ID' );
55
 
56
  $sold_by = WCV_Vendors::is_vendor( $author_id )
57
+ ? sprintf( '<a href="%s" class="wcvendors_cart_sold_by_meta">%s</a>', WCV_Vendors::get_vendor_shop_page( $author_id ), WCV_Vendors::get_vendor_shop_name( $author_id ) )
58
  : get_bloginfo( 'name' );
59
 
60
  echo apply_filters('wcvendors_cart_sold_by_meta', __( 'Sold by: ', 'wcvendors' )) . $sold_by . '<br/>';
WCVendors/classes/front/class-vendor-shop.php CHANGED
@@ -175,7 +175,7 @@ class WCV_Vendor_Shop
175
  $sold_by = WCV_Vendors::is_vendor( $author )
176
  ? sprintf( '<a href="%s">%s</a>', WCV_Vendors::get_vendor_shop_page( $author), WCV_Vendors::get_vendor_shop_name( $author ) )
177
  : get_bloginfo( 'name' );
178
- echo '<small>' . apply_filters('wcvendors_sold_by_in_loop', __( 'Sold by: ', 'wcvendors' )). $sold_by . '</small> <br />';
179
  }
180
 
181
 
175
  $sold_by = WCV_Vendors::is_vendor( $author )
176
  ? sprintf( '<a href="%s">%s</a>', WCV_Vendors::get_vendor_shop_page( $author), WCV_Vendors::get_vendor_shop_name( $author ) )
177
  : get_bloginfo( 'name' );
178
+ echo '<small class="wcvendors_sold_by_in_loop">' . apply_filters('wcvendors_sold_by_in_loop', __( 'Sold by: ', 'wcvendors' )). $sold_by . '</small> <br />';
179
  }
180
 
181
 
WCVendors/classes/front/dashboard/class-vendor-dashboard.php CHANGED
@@ -34,23 +34,15 @@ class WCV_Vendor_Dashboard
34
  $order_id = $_GET['wc_pv_mark_shipped'];
35
  $shippers = (array) get_post_meta( $order_id, 'wc_pv_shipped', true );
36
 
37
- if( in_array($user_id, $shippers)) {
38
- foreach ($shippers as $key => $value) {
39
- if ( $value == $user_id ) {
40
- unset($shippers[$key]);
41
- + do_action('wcvendors_vendor_unship', $order_id, $user_id);
42
- wc_add_notice( __( 'Order unmarked shipped. <br><br>Caution: Clicking Reload in your browser will mark the order as shipped and email the buyer again, potentially spamming them.', 'wcvendors' ), 'success');
43
- break;
44
- }
45
- }
46
- } else {
47
  $shippers[] = $user_id;
48
  $mails = $woocommerce->mailer()->get_emails();
49
  if ( !empty( $mails ) ) {
50
  $mails[ 'WC_Email_Notify_Shipped' ]->trigger( $order_id, $user_id );
51
  }
52
- + do_action('wcvendors_vendor_ship', $order_id, $user_id);
53
- wc_add_notice( __( 'Order marked shipped. <br><br>Caution: Clicking Reload in your browser will unmark the order as shipped.', 'wcvendors' ), 'success' );
54
  }
55
 
56
  update_post_meta( $order_id, 'wc_pv_shipped', $shippers );
@@ -168,6 +160,7 @@ class WCV_Vendor_Dashboard
168
  $settings_page = get_permalink( WC_Vendors::$pv_options->get_option( 'shop_settings_page' ) );
169
  $can_submit = WC_Vendors::$pv_options->get_option( 'can_submit_products' );
170
  if ( $can_submit ) $submit_link = admin_url( 'post-new.php?post_type=product' );
 
171
 
172
  if ( !$this->can_view_vendor_page() ) {
173
  return false;
@@ -213,6 +206,7 @@ class WCV_Vendor_Dashboard
213
  'settings_page' => $settings_page,
214
  'can_submit' => $can_submit,
215
  'submit_link' => $submit_link,
 
216
  ), 'wc-product-vendor/dashboard/', wcv_plugin_dir . 'views/dashboard/' );
217
 
218
  if ( $can_view_sales = WC_Vendors::$pv_options->get_option( 'can_view_frontend_reports' ) ) {
34
  $order_id = $_GET['wc_pv_mark_shipped'];
35
  $shippers = (array) get_post_meta( $order_id, 'wc_pv_shipped', true );
36
 
37
+ // If not in the shippers array mark as shipped otherwise do nothing.
38
+ if( !in_array($user_id, $shippers)) {
 
 
 
 
 
 
 
 
39
  $shippers[] = $user_id;
40
  $mails = $woocommerce->mailer()->get_emails();
41
  if ( !empty( $mails ) ) {
42
  $mails[ 'WC_Email_Notify_Shipped' ]->trigger( $order_id, $user_id );
43
  }
44
+ do_action('wcvendors_vendor_ship', $order_id, $user_id);
45
+ wc_add_notice( __( 'Order marked shipped.', 'wcvendors' ), 'success' );
46
  }
47
 
48
  update_post_meta( $order_id, 'wc_pv_shipped', $shippers );
160
  $settings_page = get_permalink( WC_Vendors::$pv_options->get_option( 'shop_settings_page' ) );
161
  $can_submit = WC_Vendors::$pv_options->get_option( 'can_submit_products' );
162
  if ( $can_submit ) $submit_link = admin_url( 'post-new.php?post_type=product' );
163
+ if ( $can_submit ) $edit_link = admin_url( 'edit.php?post_type=product' );
164
 
165
  if ( !$this->can_view_vendor_page() ) {
166
  return false;
206
  'settings_page' => $settings_page,
207
  'can_submit' => $can_submit,
208
  'submit_link' => $submit_link,
209
+ 'edit_link' => $edit_link,
210
  ), 'wc-product-vendor/dashboard/', wcv_plugin_dir . 'views/dashboard/' );
211
 
212
  if ( $can_view_sales = WC_Vendors::$pv_options->get_option( 'can_view_frontend_reports' ) ) {
WCVendors/classes/gateways/PayPal_AdvPayments/paypal_ap.php CHANGED
@@ -340,7 +340,7 @@ class WC_PaypalAP extends WC_Payment_Gateway
340
  $actionType = 'CREATE';
341
  $cancelUrl = $order->get_cancel_order_url();
342
  $currencyCode = get_woocommerce_currency();
343
- $returnUrl = add_query_arg( 'key', $order->order_key, add_query_arg( 'order', $order->id, get_permalink( apply_filters( 'woocommerce_get_checkout_redirect_page_id', woocommerce_get_page_id( 'thanks' ) ) ) ) );
344
 
345
  $payRequest = new PayRequest( new RequestEnvelope( "en_US" ), $actionType, $cancelUrl, $currencyCode, $receiverList, $returnUrl );
346
 
@@ -353,9 +353,9 @@ class WC_PaypalAP extends WC_Payment_Gateway
353
  $payRequest->feesPayer = 'EACHRECEIVER';
354
 
355
  $args = array(
356
- 'wc-api' => 'WC_PayPalAP',
357
- 'paypal_chain_ipn' => '1',
358
- 'order_id' => $order_id,
359
  );
360
 
361
  $payRequest->ipnNotificationUrl = str_replace( 'https:', 'http:', add_query_arg( $args, home_url( '/' ) ) );
@@ -537,6 +537,4 @@ class WC_PaypalAP extends WC_Payment_Gateway
537
  );
538
 
539
  }
540
-
541
-
542
  }
340
  $actionType = 'CREATE';
341
  $cancelUrl = $order->get_cancel_order_url();
342
  $currencyCode = get_woocommerce_currency();
343
+ $returnUrl = add_query_arg( 'key', $order->order_key, add_query_arg( 'order', $order->id, $order->get_checkout_order_received_url() ) );
344
 
345
  $payRequest = new PayRequest( new RequestEnvelope( "en_US" ), $actionType, $cancelUrl, $currencyCode, $receiverList, $returnUrl );
346
 
353
  $payRequest->feesPayer = 'EACHRECEIVER';
354
 
355
  $args = array(
356
+ 'wc-api' => 'WC_PayPalAP',
357
+ 'paypal_chain_ipn' => '1',
358
+ 'order_id' => $order_id,
359
  );
360
 
361
  $payRequest->ipnNotificationUrl = str_replace( 'https:', 'http:', add_query_arg( $args, home_url( '/' ) ) );
537
  );
538
 
539
  }
 
 
540
  }
WCVendors/classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit; // Exit if accessed directly
5
+ }
6
+
7
+ /**
8
+ * WC Vendors TEST SANDBOX Payment Gateway
9
+ *
10
+ * Provides a test Payment Gateway, mainly for WC Vendors testing purposes.
11
+ *
12
+ * @class WC_Gateway_WCV_Gateway_Test
13
+ * @extends WC_Payment_Gateway
14
+ * @version 1.0.0
15
+ * @package WooCommerce/Classes/Payment
16
+ * @author WC Vendors Ben Agresta
17
+ */
18
+
19
+ function add_wcvendors_test_gateway( $methods )
20
+ {
21
+ $methods[ ] = 'WC_Gateway_WCV_Gateway_Test';
22
+ return $methods;
23
+ }
24
+ add_filter( 'woocommerce_payment_gateways', 'add_wcvendors_test_gateway' );
25
+
26
+ class WC_Gateway_WCV_Gateway_Test extends WC_Payment_Gateway {
27
+
28
+ /**
29
+ * Constructor for the gateway.
30
+ */
31
+ public function __construct() {
32
+ $this->id = 'wcvendors_test_gateway';
33
+ $this->icon = apply_filters('woocommerce_cheque_icon', '');
34
+ $this->has_fields = false;
35
+ $this->method_title = __( 'WC Vendors Test Gateway', 'woocommerce' );
36
+ $this->method_description = __( 'This gateway will set orders to processing upon receipt allowing you to test transactions in your store. Some WooCommerce included gateways have problems with this - you should use this gateway for all of your non-PayPal testing.', 'woocommerce' );
37
+
38
+ // Load the settings.
39
+ $this->init_form_fields();
40
+ $this->init_settings();
41
+
42
+ // Define user set variables
43
+ $this->title = $this->get_option( 'title' );
44
+ $this->description = $this->get_option( 'description' );
45
+ $this->instructions = $this->get_option( 'instructions', $this->description );
46
+
47
+ // Actions
48
+ add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
49
+ add_action( 'woocommerce_thankyou_wcvendors_test_gateway', array( $this, 'thankyou_page' ) );
50
+
51
+ // Customer Emails
52
+ add_action( 'woocommerce_email_before_order_table', array( $this, 'email_instructions' ), 10, 3 );
53
+ }
54
+
55
+ /**
56
+ * Initialise Gateway Settings Form Fields
57
+ */
58
+ public function init_form_fields() {
59
+
60
+ $this->form_fields = array(
61
+ 'enabled' => array(
62
+ 'title' => __( 'Enable/Disable', 'woocommerce' ),
63
+ 'type' => 'checkbox',
64
+ 'label' => __( 'Enable WC Vendors Test Gateway Payment', 'woocommerce' ),
65
+ 'default' => 'no'
66
+ ),
67
+ 'title' => array(
68
+ 'title' => __( 'Title', 'woocommerce' ),
69
+ 'type' => 'text',
70
+ 'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce' ),
71
+ 'default' => __( 'WC Vendors Test Gateway', 'woocommerce' ),
72
+ 'desc_tip' => true,
73
+ ),
74
+ 'description' => array(
75
+ 'title' => __( 'Description', 'woocommerce' ),
76
+ 'type' => 'textarea',
77
+ 'description' => __( 'Payment method description that the customer will see on your checkout.', 'woocommerce' ),
78
+ 'default' => __( 'This is a test gateway -- not to be used on live sites for live transactions. <a href="http://www.wcvendors.com/" target="top">Click here to visit WCVendors.com</a>.', 'woocommerce' ),
79
+ 'desc_tip' => true,
80
+ ),
81
+ 'instructions' => array(
82
+ 'title' => __( 'Instructions', 'woocommerce' ),
83
+ 'type' => 'textarea',
84
+ 'description' => __( 'Success! Your test order is now marked as processing and any vendors will be sent an email as long as you have the Notify Vendors email enabled under WooCommerce--Settings--Emails.', 'woocommerce' ),
85
+ 'default' => '',
86
+ 'desc_tip' => true,
87
+ ),
88
+ );
89
+ }
90
+
91
+ /**
92
+ * Output for the order received page.
93
+ */
94
+ public function thankyou_page() {
95
+ if ( $this->instructions )
96
+ echo wpautop( wptexturize( $this->instructions ) );
97
+ }
98
+
99
+ /**
100
+ * Add content to the WC emails.
101
+ *
102
+ * @access public
103
+ * @param WC_Order $order
104
+ * @param bool $sent_to_admin
105
+ * @param bool $plain_text
106
+ */
107
+ public function email_instructions( $order, $sent_to_admin, $plain_text = false ) {
108
+ if ( $this->instructions && ! $sent_to_admin && 'wcvendors_test_gateway' === $order->payment_method && $order->has_status( 'processing' ) ) {
109
+ echo wpautop( wptexturize( $this->instructions ) ) . PHP_EOL;
110
+ }
111
+ }
112
+
113
+ /**
114
+ * Process the payment and return the result
115
+ *
116
+ * @param int $order_id
117
+ * @return array
118
+ */
119
+ public function process_payment( $order_id ) {
120
+
121
+ $order = wc_get_order( $order_id );
122
+
123
+ // Mark as processing
124
+ $order->update_status( 'processing', __( 'Test gateway transation complete. Order processing.', 'woocommerce' ) );
125
+
126
+ // Reduce stock levels
127
+ $order->reduce_order_stock();
128
+
129
+ // Remove cart
130
+ WC()->cart->empty_cart();
131
+
132
+ // Return thankyou redirect
133
+ return array(
134
+ 'result' => 'success',
135
+ 'redirect' => $this->get_return_url( $order )
136
+ );
137
+ }
138
+ }
WCVendors/languages/wcvendors-es_ES.mo ADDED
Binary file
WCVendors/languages/wcvendors-es_ES.po ADDED
@@ -0,0 +1,1539 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WC Vendors\n"
4
+ "POT-Creation-Date: 2015-02-17 17:37+1000\n"
5
+ "PO-Revision-Date: 2015-02-18 13:19-0400\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: WC Vendors <support@wcvendors.com>\n"
8
+ "Language: es\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.4\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+ "X-Poedit-SearchPath-1: ..\n"
19
+
20
+ #: ../classes/admin/class-admin-page.php:28
21
+ msgid "Vendors shipped"
22
+ msgstr "Vendedores han despachado"
23
+
24
+ #: ../classes/admin/class-admin-page.php:51
25
+ msgid "Vendors Shipped"
26
+ msgstr "Vendedores han despachado"
27
+
28
+ #: ../classes/admin/class-admin-page.php:73
29
+ #: ../classes/admin/class-admin-page.php:133
30
+ #: ../classes/admin/class-admin-reports.php:345
31
+ #: ../classes/admin/class-product-meta.php:148
32
+ #: ../classes/admin/class-product-meta.php:164
33
+ #: ../views/dashboard/reports.php:19
34
+ msgid "Commission"
35
+ msgstr "Comisión"
36
+
37
+ #: ../classes/admin/class-admin-page.php:252
38
+ #: ../classes/admin/class-admin-reports.php:175
39
+ #: ../views/dashboard/reports.php:17 ../views/emails/admin-new-order.php:22
40
+ #: ../views/emails/notify-vendor-shipped.php:22
41
+ msgid "Product"
42
+ msgstr "Producto"
43
+
44
+ #: ../classes/admin/class-admin-page.php:253
45
+ msgid "Order ID"
46
+ msgstr "ID de la Orden"
47
+
48
+ #: ../classes/admin/class-admin-page.php:254
49
+ #: ../classes/admin/class-admin-reports.php:176
50
+ #: ../classes/admin/class-product-meta.php:44
51
+ #: ../classes/admin/class-product-meta.php:184
52
+ #: ../classes/admin/class-product-meta.php:220
53
+ msgid "Vendor"
54
+ msgstr "Vendedor"
55
+
56
+ #: ../classes/admin/class-admin-page.php:255
57
+ #: ../classes/admin/class-admin-reports.php:177
58
+ #: ../classes/admin/class-admin-reports.php:350
59
+ #: ../classes/admin/class-admin-reports.php:374
60
+ #: ../views/dashboard/orders.php:25
61
+ msgid "Total"
62
+ msgstr "Total"
63
+
64
+ #: ../classes/admin/class-admin-page.php:256
65
+ #: ../classes/admin/class-admin-reports.php:179
66
+ msgid "Status"
67
+ msgstr "Estado"
68
+
69
+ #: ../classes/admin/class-admin-page.php:257
70
+ #: ../classes/front/orders/class-orders.php:216
71
+ #: ../views/dashboard/orders.php:26
72
+ msgid "Date"
73
+ msgstr "Fecha"
74
+
75
+ #: ../classes/admin/class-admin-page.php:294
76
+ msgid "Mark paid"
77
+ msgstr "Marcar pagado"
78
+
79
+ #: ../classes/admin/class-admin-page.php:295
80
+ msgid "Mark due"
81
+ msgstr "Marcar adeudado"
82
+
83
+ #: ../classes/admin/class-admin-page.php:296
84
+ msgid "Mark reversed"
85
+ msgstr "Marcar revertido"
86
+
87
+ #: ../classes/admin/class-admin-page.php:313
88
+ msgid "Filter"
89
+ msgstr "Filtrar"
90
+
91
+ #: ../classes/admin/class-admin-page.php:347
92
+ msgid "Show all dates"
93
+ msgstr "Todas las fechas"
94
+
95
+ #: ../classes/admin/class-admin-page.php:360
96
+ #, php-format
97
+ msgid "%1$s %2$d"
98
+ msgstr "%1$s %2$d"
99
+
100
+ #: ../classes/admin/class-admin-page.php:386
101
+ msgid "Commission marked paid."
102
+ msgstr "Comisión marcada pagada."
103
+
104
+ #: ../classes/admin/class-admin-page.php:393
105
+ msgid "Commission marked due."
106
+ msgstr "Comisión marcada adeudada."
107
+
108
+ #: ../classes/admin/class-admin-page.php:400
109
+ msgid "Commission marked reversed."
110
+ msgstr "Comisión marcada revertida."
111
+
112
+ #: ../classes/admin/class-admin-reports.php:41
113
+ #: ../classes/admin/class-admin-users.php:349
114
+ msgid "WC Vendors"
115
+ msgstr "WC Vendors"
116
+
117
+ #: ../classes/admin/class-admin-reports.php:44
118
+ msgid "Overview"
119
+ msgstr "Resumen"
120
+
121
+ #: ../classes/admin/class-admin-reports.php:50
122
+ msgid "Commission by vendor"
123
+ msgstr "Comisión por vendedor"
124
+
125
+ #: ../classes/admin/class-admin-reports.php:56
126
+ msgid "Commission by product"
127
+ msgstr "Comisión por producto"
128
+
129
+ #: ../classes/admin/class-admin-reports.php:115
130
+ #: ../views/dashboard/date-picker.php:3
131
+ msgid "From:"
132
+ msgstr "De:"
133
+
134
+ #: ../classes/admin/class-admin-reports.php:119
135
+ #: ../views/dashboard/date-picker.php:7
136
+ msgid "To:"
137
+ msgstr "Para:"
138
+
139
+ #: ../classes/admin/class-admin-reports.php:122
140
+ #: ../classes/admin/class-admin-reports.php:283
141
+ #: ../views/dashboard/date-picker.php:12
142
+ msgid "Show"
143
+ msgstr "Mostrar"
144
+
145
+ #: ../classes/admin/class-admin-reports.php:133
146
+ msgid "Total paid in range"
147
+ msgstr "Total pagado en el rango"
148
+
149
+ #: ../classes/admin/class-admin-reports.php:136
150
+ #: ../classes/admin/class-admin-reports.php:143
151
+ #: ../classes/admin/class-admin-reports.php:150
152
+ msgid "n/a"
153
+ msgstr "n/a"
154
+
155
+ #: ../classes/admin/class-admin-reports.php:140
156
+ msgid "Total due in range"
157
+ msgstr "Total adeudado en el rango"
158
+
159
+ #: ../classes/admin/class-admin-reports.php:147
160
+ msgid "Total reversed in range"
161
+ msgstr "Total revertido en el rango"
162
+
163
+ #: ../classes/admin/class-admin-reports.php:157
164
+ msgid "Recent Commission"
165
+ msgstr "Comisión Reciente"
166
+
167
+ #: ../classes/admin/class-admin-reports.php:174
168
+ #: ../classes/front/orders/class-orders.php:208
169
+ #: ../views/dashboard/orders.php:23
170
+ msgid "Order"
171
+ msgstr "Orden"
172
+
173
+ #: ../classes/admin/class-admin-reports.php:178
174
+ msgid "Date &amp; Time"
175
+ msgstr "Fecha &amp; Hora"
176
+
177
+ #: ../classes/admin/class-admin-reports.php:187
178
+ msgid "N/A"
179
+ msgstr "N/A"
180
+
181
+ #: ../classes/admin/class-admin-reports.php:192
182
+ msgid "D j M Y \\a\\t h:ia"
183
+ msgstr "D j M Y \\a\\t h:ia"
184
+
185
+ #: ../classes/admin/class-admin-reports.php:201
186
+ msgid "No commission yet"
187
+ msgstr "No hay comisión aún"
188
+
189
+ #: ../classes/admin/class-admin-reports.php:232
190
+ msgid "Show:"
191
+ msgstr "Mostrar:"
192
+
193
+ #: ../classes/admin/class-admin-reports.php:243
194
+ msgid "Year"
195
+ msgstr "Año"
196
+
197
+ #: ../classes/admin/class-admin-reports.php:276
198
+ msgid "Select a vendor&hellip;"
199
+ msgstr "Seleccionar un vendedor&hellip;"
200
+
201
+ #: ../classes/admin/class-admin-reports.php:344
202
+ msgid "Month"
203
+ msgstr "Mes"
204
+
205
+ #: ../classes/admin/class-admin-reports.php:346
206
+ msgid "Tax"
207
+ msgstr "Impuesto"
208
+
209
+ #: ../classes/admin/class-admin-reports.php:347
210
+ #: ../views/dashboard/orders.php:24 ../views/orders/orders.php:113
211
+ msgid "Shipping"
212
+ msgstr "Despacho"
213
+
214
+ #: ../classes/admin/class-admin-reports.php:348
215
+ msgid "Reversed"
216
+ msgstr "Revertido"
217
+
218
+ #: ../classes/admin/class-admin-reports.php:349
219
+ msgid "Paid"
220
+ msgstr "Pagado"
221
+
222
+ #: ../classes/admin/class-admin-users.php:359
223
+ msgid "Enable HTML for the shop description"
224
+ msgstr "Permitir HTML en la descripción de la tienda"
225
+
226
+ #: ../classes/admin/class-admin-users.php:365
227
+ msgid "Shop name"
228
+ msgstr "Nombre de la tienda"
229
+
230
+ #: ../classes/admin/class-admin-users.php:372
231
+ msgid "PayPal E-mail"
232
+ msgstr "E-mail de PayPal"
233
+
234
+ #: ../classes/admin/class-admin-users.php:373
235
+ msgid "required"
236
+ msgstr "requerido"
237
+
238
+ #: ../classes/admin/class-admin-users.php:380
239
+ msgid "Commission rate"
240
+ msgstr "Taza de comisión"
241
+
242
+ #: ../classes/admin/class-admin-users.php:381
243
+ #: ../classes/admin/class-product-meta.php:171
244
+ msgid "Leave blank for default"
245
+ msgstr "Dejar en blanco para \"por defecto\""
246
+
247
+ #: ../classes/admin/class-admin-users.php:387
248
+ #: ../classes/front/class-vendor-shop.php:103
249
+ #: ../views/dashboard/settings/seller-info.php:3
250
+ msgid "Seller info"
251
+ msgstr "Información del vendedor"
252
+
253
+ #: ../classes/admin/class-admin-users.php:392
254
+ msgid "Shop description"
255
+ msgstr "Descripción de la tienda"
256
+
257
+ #: ../classes/admin/class-vendor-applicants.php:26
258
+ msgid "Approve"
259
+ msgstr "Aprobar"
260
+
261
+ #: ../classes/admin/class-vendor-applicants.php:27
262
+ msgid "Deny"
263
+ msgstr "Rechazar"
264
+
265
+ #: ../classes/admin/class-vendor-applicants.php:71
266
+ msgid "Vendor has been <b>denied</b>."
267
+ msgstr "Vendedor ha sido <b>rechazado</b>"
268
+
269
+ #: ../classes/admin/class-vendor-applicants.php:82
270
+ msgid "Vendor has been <b>approved</b>."
271
+ msgstr "Vendedor ha sido <b>aprobado</b>."
272
+
273
+ #: ../classes/admin/class-vendor-applicants.php:96
274
+ msgid "Pending Vendors"
275
+ msgstr "Vendedores Pendientes"
276
+
277
+ #: ../classes/admin/emails/class-emails.php:55
278
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:70
279
+ msgid "pending"
280
+ msgstr "pendientes"
281
+
282
+ #: ../classes/admin/emails/class-emails.php:57
283
+ msgid "approved"
284
+ msgstr "aprobados"
285
+
286
+ #: ../classes/admin/emails/class-emails.php:59
287
+ msgid "denied"
288
+ msgstr "denegados"
289
+
290
+ #: ../classes/admin/emails/class-emails.php:87
291
+ #: ../classes/front/class-vendor-cart.php:60
292
+ #: ../classes/front/class-vendor-shop.php:178
293
+ msgid "Sold by: "
294
+ msgstr "Ordenar por: "
295
+
296
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:28
297
+ msgid "Vendor Application"
298
+ msgstr "Postulación del Vendedor"
299
+
300
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:29
301
+ msgid "Vendor application will either be approved, denied, or pending."
302
+ msgstr "La postulación del Vendedor puede ser aprobada, denegada o pendiente."
303
+
304
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:31
305
+ msgid "Application {status}"
306
+ msgstr "Postulación {status}"
307
+
308
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:32
309
+ msgid "[{blogname}] Your vendor application has been {status}"
310
+ msgstr "[{blogname}] Tu postulación a vendedor está {status}"
311
+
312
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:123
313
+ #: ../classes/admin/emails/class-wc-notify-admin.php:129
314
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:163
315
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:230
316
+ msgid "Enable/Disable"
317
+ msgstr "Habilitar/Deshabilitar"
318
+
319
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:125
320
+ #: ../classes/admin/emails/class-wc-notify-admin.php:131
321
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:165
322
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:232
323
+ msgid "Enable this email notification"
324
+ msgstr "Habilitar notificación por email"
325
+
326
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:129
327
+ #: ../classes/admin/emails/class-wc-notify-admin.php:135
328
+ msgid "Recipient(s)"
329
+ msgstr "Receptor(es)"
330
+
331
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:131
332
+ #: ../classes/admin/emails/class-wc-notify-admin.php:137
333
+ #, php-format
334
+ msgid ""
335
+ "Enter recipients (comma separated) for this email. Defaults to <code>%s</"
336
+ "code>."
337
+ msgstr ""
338
+ "Entrar los receptores (separados por coma) de este email. Por defecto a "
339
+ "<code>%s</code>."
340
+
341
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:136
342
+ #: ../classes/admin/emails/class-wc-notify-admin.php:142
343
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:169
344
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:236
345
+ msgid "Subject"
346
+ msgstr "Asunto"
347
+
348
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:138
349
+ #: ../classes/admin/emails/class-wc-notify-admin.php:144
350
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:171
351
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:238
352
+ #, php-format
353
+ msgid ""
354
+ "This controls the email subject line. Leave blank to use the default "
355
+ "subject: <code>%s</code>."
356
+ msgstr ""
357
+ "Esto controla el asunto del email. Dejar en blanco para usar el por defecto: "
358
+ "<code>%s</code>."
359
+
360
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:143
361
+ #: ../classes/admin/emails/class-wc-notify-admin.php:149
362
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:176
363
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:243
364
+ msgid "Email Heading"
365
+ msgstr "Título del Email"
366
+
367
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:145
368
+ #: ../classes/admin/emails/class-wc-notify-admin.php:151
369
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:178
370
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:245
371
+ #, php-format
372
+ msgid ""
373
+ "This controls the main heading contained within the email notification. "
374
+ "Leave blank to use the default heading: <code>%s</code>."
375
+ msgstr ""
376
+ "Esto controla el título principal de la notificación por email. Dejar en "
377
+ "blanco para utilizar el por defecto: <code>%s</code>."
378
+
379
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:150
380
+ #: ../classes/admin/emails/class-wc-notify-admin.php:156
381
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:183
382
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:250
383
+ msgid "Email type"
384
+ msgstr "Tipo de email"
385
+
386
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:152
387
+ #: ../classes/admin/emails/class-wc-notify-admin.php:158
388
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:185
389
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:252
390
+ msgid "Choose which format of email to send."
391
+ msgstr "Elegir cuál formato de email se mandará."
392
+
393
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:156
394
+ #: ../classes/admin/emails/class-wc-notify-admin.php:162
395
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:189
396
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:256
397
+ msgid "Plain text"
398
+ msgstr "Texto plano"
399
+
400
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:157
401
+ #: ../classes/admin/emails/class-wc-notify-admin.php:163
402
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:190
403
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:257
404
+ msgid "HTML"
405
+ msgstr "HTML"
406
+
407
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:158
408
+ #: ../classes/admin/emails/class-wc-notify-admin.php:164
409
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:191
410
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:258
411
+ msgid "Multipart"
412
+ msgstr "Multiparte"
413
+
414
+ #: ../classes/admin/emails/class-wc-notify-admin.php:28
415
+ msgid "New Vendor Product"
416
+ msgstr "Nuevo Producto del Vendedor"
417
+
418
+ #: ../classes/admin/emails/class-wc-notify-admin.php:29
419
+ msgid "New order emails are sent when a new product is submitted by a vendor"
420
+ msgstr ""
421
+ "Nuevos emails de pedido se envían cuando un nuevo producto es ingresado por "
422
+ "un vendedor"
423
+
424
+ #: ../classes/admin/emails/class-wc-notify-admin.php:31
425
+ msgid "New product submitted: {product_name}"
426
+ msgstr "Nuevo producto ingresado: {product_name}"
427
+
428
+ #: ../classes/admin/emails/class-wc-notify-admin.php:32
429
+ msgid "[{blogname}] New product submitted by {vendor_name} - {product_name}"
430
+ msgstr ""
431
+ "[{blogname}] Nuevo producto ingresado por {vendor_name} - {product_name}"
432
+
433
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:28
434
+ msgid "Vendor has shipped"
435
+ msgstr "Vendedor ha despachado"
436
+
437
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:29
438
+ msgid ""
439
+ "An email is sent when a vendor has marked one of their orders as shipped."
440
+ msgstr ""
441
+ "Un email es enviado cada vez que un vendedor marca una orden como despachada."
442
+
443
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:31
444
+ msgid "Your order has been shipped"
445
+ msgstr "Tu orden ha sido despachada"
446
+
447
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:32
448
+ msgid ""
449
+ "[{blogname}] Your order has been shipped ({order_number}) - {order_date}"
450
+ msgstr ""
451
+ "[{blogname}] Tu orden ha sido despachada ({order_number}) - {order_date}"
452
+
453
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:112
454
+ msgid "Subtotal:"
455
+ msgstr "Subtotal:"
456
+
457
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:27
458
+ msgid "Notify vendors"
459
+ msgstr "Notificar vendedores"
460
+
461
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:28
462
+ msgid "New order emails are sent when an order is received/paid by a customer."
463
+ msgstr ""
464
+ "Nuevos emails de pedido son enviados cada vez que una orden es recibida/"
465
+ "pagada por un usuario."
466
+
467
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:30
468
+ msgid "New customer order"
469
+ msgstr "Nueva orden de cliente"
470
+
471
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:31
472
+ msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
473
+ msgstr "[{blogname}] Nueva orden de cliente ({order_number}) - {order_date}"
474
+
475
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:103
476
+ msgid "Commission Subtotal:"
477
+ msgstr "Subtotal de Comisión:"
478
+
479
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:110
480
+ msgid "Shipping Subtotal:"
481
+ msgstr "Subtotal Despacho:"
482
+
483
+ #: ../classes/admin/settings/classes/sf-class-format-options.php:211
484
+ #: ../classes/admin/settings/classes/sf-class-settings.php:773
485
+ msgid "Select a page..."
486
+ msgstr "Seleccionar una página..."
487
+
488
+ #: ../classes/admin/settings/classes/sf-class-settings.php:153
489
+ #: ../views/dashboard/settings/settings.php:1
490
+ msgid "Settings"
491
+ msgstr "Ajustes"
492
+
493
+ #: ../classes/admin/settings/classes/sf-class-settings.php:297
494
+ msgid "Could not load settings at: "
495
+ msgstr "No se pueden cargar ajustes en: "
496
+
497
+ #: ../classes/admin/settings/classes/sf-class-settings.php:297
498
+ msgid "Error - WP Settings Framework"
499
+ msgstr "Error - WP Settings Framework"
500
+
501
+ #: ../classes/admin/settings/classes/sf-class-settings.php:363
502
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:96
503
+ msgid "Settings saved."
504
+ msgstr "Ajustes guardados."
505
+
506
+ #: ../classes/admin/settings/classes/sf-class-settings.php:479
507
+ #, php-format
508
+ msgid "Save %s changes"
509
+ msgstr "Guardar %s cambios"
510
+
511
+ #: ../classes/admin/settings/sf-options.php:4
512
+ msgid "General"
513
+ msgstr "General"
514
+
515
+ #: ../classes/admin/settings/sf-options.php:5
516
+ msgid "General options"
517
+ msgstr "Opciones generales"
518
+
519
+ #: ../classes/admin/settings/sf-options.php:5
520
+ #: ../classes/admin/settings/sf-options.php:45
521
+ #: ../classes/admin/settings/sf-options.php:223
522
+ msgid " "
523
+ msgstr ""
524
+
525
+ #: ../classes/admin/settings/sf-options.php:8
526
+ msgid "Default commission (%)"
527
+ msgstr "Comisión por defecto (%)"
528
+
529
+ #: ../classes/admin/settings/sf-options.php:9
530
+ msgid ""
531
+ "The default rate the vendor receives for each product. If a product has a "
532
+ "commission rate already set, this value will be ignored for that product."
533
+ msgstr ""
534
+ "La tarifa por defecto que cada vendedor recibe por producto. Si un producto "
535
+ "tiene una tarifa de comisión configurada, el valor será ignorado para ese "
536
+ "producto."
537
+
538
+ #: ../classes/admin/settings/sf-options.php:20
539
+ msgid "Registration"
540
+ msgstr "Registro"
541
+
542
+ #: ../classes/admin/settings/sf-options.php:21
543
+ msgid "Allow users or guests to apply to become a vendor"
544
+ msgstr "Permitir a los usuarios o visitas solicitar ser vendedores"
545
+
546
+ #: ../classes/admin/settings/sf-options.php:22
547
+ msgid ""
548
+ "This will show a checkbox on the My Account page's registration form asking "
549
+ "if the user would like to apply to be a vendor. Also, on the Vendor "
550
+ "Dashboard, users can apply to become a vendor."
551
+ msgstr ""
552
+ "Esto va a mostrar un checkbox en el formulario de registro de la página de "
553
+ "Mi Cuenta, preguntando al usuario si quiere solicitar ser un vendedor. "
554
+ "También, en el Dashboard del Vendedor, los usuarios pueden postular para "
555
+ "convertirse en vendedor."
556
+
557
+ #: ../classes/admin/settings/sf-options.php:29
558
+ msgid "Approve vendor applications manually"
559
+ msgstr "Aprobar las postulaciones de vendedor automáticamente"
560
+
561
+ #: ../classes/admin/settings/sf-options.php:30
562
+ msgid ""
563
+ "With this unchecked, all vendor applications are automatically accepted. "
564
+ "Otherwise, you must approve each manually."
565
+ msgstr ""
566
+ "Si no está chequeado, todas las postulaciones a vendedores se aprobarán "
567
+ "automáticamente. De lo contrario, debes aprobarlas manualmente."
568
+
569
+ #: ../classes/admin/settings/sf-options.php:37
570
+ msgid "Taxes"
571
+ msgstr "Impuestos"
572
+
573
+ #: ../classes/admin/settings/sf-options.php:38
574
+ msgid "Give vendors any tax collected per-product"
575
+ msgstr "Dar a los vendedores todo el impuesto recolectado por producto"
576
+
577
+ #: ../classes/admin/settings/sf-options.php:39
578
+ msgid ""
579
+ "The tax collected on a vendor's product will be given to him in its entirety"
580
+ msgstr "El impuesto recolectado por producto será dado completo al vendedor."
581
+
582
+ #: ../classes/admin/settings/sf-options.php:45
583
+ msgid "Shop options"
584
+ msgstr "Opciones de la tienda"
585
+
586
+ #: ../classes/admin/settings/sf-options.php:48
587
+ msgid "Shop HTML"
588
+ msgstr "HTML de la tienda"
589
+
590
+ #: ../classes/admin/settings/sf-options.php:49
591
+ msgid "Enable HTML for a vendor's shop description by default"
592
+ msgstr "Habilitar por defecto HTML para la descripción de la tienda"
593
+
594
+ #: ../classes/admin/settings/sf-options.php:56
595
+ msgid "Vendor shop page"
596
+ msgstr "Página de la Tienda del Vendedor"
597
+
598
+ #: ../classes/admin/settings/sf-options.php:57
599
+ msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
600
+ msgstr "Ej: <code>tusitio.com/[your_setting_here]/[vendor_name_here]</code>"
601
+
602
+ #: ../classes/admin/settings/sf-options.php:64
603
+ msgid "Shop Headers"
604
+ msgstr "Encabezados de la Tienda"
605
+
606
+ #: ../classes/admin/settings/sf-options.php:65
607
+ msgid "Enable vendor shop headers"
608
+ msgstr "Habilitar encabezados de la Tienda del Vendedor"
609
+
610
+ #: ../classes/admin/settings/sf-options.php:66
611
+ msgid ""
612
+ "This will override the HTML Shop description output on product-archive pages."
613
+ msgstr ""
614
+ "Esto va a sobrescribir el HTML de la descripción de la Tienda en las páginas "
615
+ "de producto-archivo."
616
+
617
+ #: ../classes/admin/settings/sf-options.php:72
618
+ #: ../classes/admin/settings/sf-options.php:198
619
+ msgid "Products"
620
+ msgstr "Productos"
621
+
622
+ #: ../classes/admin/settings/sf-options.php:73
623
+ msgid "Product Add Page"
624
+ msgstr "Página de Agregar Producto"
625
+
626
+ #: ../classes/admin/settings/sf-options.php:73
627
+ msgid "Configure what to hide from all vendors when adding a product"
628
+ msgstr ""
629
+ "Configurar qué esconder de todos los vendedores cuando se agrega un producto"
630
+
631
+ #: ../classes/admin/settings/sf-options.php:76
632
+ msgid "Left side panel"
633
+ msgstr "Panel de la izquierda"
634
+
635
+ #: ../classes/admin/settings/sf-options.php:77
636
+ msgid "Hide these areas of the add product page for vendors"
637
+ msgstr "Esconder estas áreas de la Página de Agregar Producto"
638
+
639
+ #: ../classes/admin/settings/sf-options.php:91
640
+ msgid "Types"
641
+ msgstr "Tipos"
642
+
643
+ #: ../classes/admin/settings/sf-options.php:92
644
+ msgid "Hide these product types from the vendor"
645
+ msgstr "Esconder estos tipos de productos para el vendedor"
646
+
647
+ #: ../classes/admin/settings/sf-options.php:105
648
+ msgid "Type options"
649
+ msgstr "Opciones de tipos"
650
+
651
+ #: ../classes/admin/settings/sf-options.php:106
652
+ msgid "Hide these product options from the vendor"
653
+ msgstr "Esconder estas opciones de productos para el vendedor"
654
+
655
+ #: ../classes/admin/settings/sf-options.php:117
656
+ msgid "Miscellaneous"
657
+ msgstr "Misceláneos"
658
+
659
+ #: ../classes/admin/settings/sf-options.php:129
660
+ msgid "Stylesheet"
661
+ msgstr "Hojas de estilos"
662
+
663
+ #: ../classes/admin/settings/sf-options.php:130
664
+ msgid ""
665
+ "You can add CSS in this textarea, which will be loaded on the product add/"
666
+ "edit page for vendors."
667
+ msgstr ""
668
+ "Puedes agregar CSS en esta área, éste va a ser cargado en la página de "
669
+ "agregar/editar productos del vendedor."
670
+
671
+ #: ../classes/admin/settings/sf-options.php:136
672
+ msgid "Capabilities"
673
+ msgstr "Capacidades"
674
+
675
+ #: ../classes/admin/settings/sf-options.php:137
676
+ msgid "Permissions"
677
+ msgstr "Permisos"
678
+
679
+ #: ../classes/admin/settings/sf-options.php:137
680
+ msgid "General permissions used around the shop"
681
+ msgstr "Permisos generales usados en la tienda"
682
+
683
+ #: ../classes/admin/settings/sf-options.php:140
684
+ #: ../classes/class-install.php:205 ../views/dashboard/orders.php:18
685
+ msgid "Orders"
686
+ msgstr "Órdenes"
687
+
688
+ #: ../classes/admin/settings/sf-options.php:141
689
+ msgid "View orders"
690
+ msgstr "Ver órdenes"
691
+
692
+ #: ../classes/admin/settings/sf-options.php:142
693
+ msgid "Show customer details such as email, address, name, etc, for each order"
694
+ msgstr ""
695
+ "Mostrar detalles del cliente como email, dirección y nombre para cada orden"
696
+
697
+ #: ../classes/admin/settings/sf-options.php:149
698
+ msgid "View comments"
699
+ msgstr "Ver comentarios"
700
+
701
+ #: ../classes/admin/settings/sf-options.php:150
702
+ msgid "View all vendor comments for an order on the frontend"
703
+ msgstr ""
704
+ "Ver todos los comentarios de los vendedores para una orden en el frontend"
705
+
706
+ #: ../classes/admin/settings/sf-options.php:157
707
+ msgid "Submit comments"
708
+ msgstr "Enviar comentarios"
709
+
710
+ #: ../classes/admin/settings/sf-options.php:158
711
+ msgid ""
712
+ "Submit comments for an order on the frontend. Eg, tracking ID for a product"
713
+ msgstr ""
714
+ "Enviar comentarios de una orden en el frontend. Eg: ID de tracking del "
715
+ "producto"
716
+
717
+ #: ../classes/admin/settings/sf-options.php:165
718
+ msgid "View email addresses"
719
+ msgstr "Ver dirección de email"
720
+
721
+ #: ../classes/admin/settings/sf-options.php:166
722
+ msgid ""
723
+ "While viewing order details on the frontend, you can disable or enable email "
724
+ "addresses"
725
+ msgstr ""
726
+ "Al ver los detalles de la orden en el frontend se puede habilitar o "
727
+ "deshabitar la dirección de email"
728
+
729
+ #: ../classes/admin/settings/sf-options.php:173
730
+ msgid "Export a CSV file of orders for a product"
731
+ msgstr "Exportar un archivo CSV de las órdenes de productos"
732
+
733
+ #: ../classes/admin/settings/sf-options.php:174
734
+ msgid "Vendors could export orders for a product on the frontend"
735
+ msgstr "Los vendedores pueden exportar ordenes de un producto en el frontend"
736
+
737
+ #: ../classes/admin/settings/sf-options.php:181
738
+ msgid "Reports"
739
+ msgstr "Reportes"
740
+
741
+ #: ../classes/admin/settings/sf-options.php:182
742
+ msgid "View backend sales reports"
743
+ msgstr "Ver reportes de venta en el backend"
744
+
745
+ #: ../classes/admin/settings/sf-options.php:183
746
+ msgid ""
747
+ "Graphs and tables via the Reports page in backend. The reports will only "
748
+ "display sales data that pertain to their products"
749
+ msgstr ""
750
+ "Gráficos y tablas vía la página de Reportes en el backend. Los reportes solo "
751
+ "mostrarán datos de ventas que perteneces a sus productos."
752
+
753
+ #: ../classes/admin/settings/sf-options.php:190
754
+ msgid "View Frontend sales reports"
755
+ msgstr "Ver reportes de venta en el Frontend"
756
+
757
+ #: ../classes/admin/settings/sf-options.php:191
758
+ msgid ""
759
+ "Sales table on the frontend on the My Account page. The table will only "
760
+ "display sales data that pertain to their products"
761
+ msgstr ""
762
+ "Tabla de ventas en el frontend en la página de Mi Cuenta. La tabla va a "
763
+ "mostrar sólo datos de sus productos."
764
+
765
+ #: ../classes/admin/settings/sf-options.php:199
766
+ msgid "Submit products"
767
+ msgstr "Enviar productos"
768
+
769
+ #: ../classes/admin/settings/sf-options.php:200
770
+ msgid ""
771
+ "Vendors could submit a product through the backend, and an admin would "
772
+ "approve or deny it"
773
+ msgstr ""
774
+ "Los vendedores pueden enviar un producto a través del backend, un "
775
+ "administrador pueden aprobarlos o rechazarlos."
776
+
777
+ #: ../classes/admin/settings/sf-options.php:207
778
+ msgid "Edit live products"
779
+ msgstr "Editar productos en publicados"
780
+
781
+ #: ../classes/admin/settings/sf-options.php:208
782
+ msgid ""
783
+ "Vendors could edit an approved product after it has already gone live. There "
784
+ "is no approval or review after editing a live product. This could be "
785
+ "dangerous with malicious vendors, so take caution."
786
+ msgstr ""
787
+ "Los vendedores pueden editar un producto aprobado después de que ya ha sido "
788
+ "publicado. No es necesario la aprobación o revisión. Esto puede ser "
789
+ "peligroso con vendedores maliciosos, tomar con cuidado."
790
+
791
+ #: ../classes/admin/settings/sf-options.php:215
792
+ msgid "Submit products live without requiring approval"
793
+ msgstr "Publicar productos sin necesitar aprobación"
794
+
795
+ #: ../classes/admin/settings/sf-options.php:216
796
+ msgid ""
797
+ "Vendors can submit products without review or approval from a shop admin. "
798
+ "This could be dangerous with malicious vendors, so take caution."
799
+ msgstr ""
800
+ "Los vendedores pueden publicar un producto. No es necesario la aprobación o "
801
+ "revisión. Esto puede ser peligroso con vendedores maliciosos, tomar con "
802
+ "cuidado."
803
+
804
+ #: ../classes/admin/settings/sf-options.php:222
805
+ msgid "Pages"
806
+ msgstr "Páginas"
807
+
808
+ #: ../classes/admin/settings/sf-options.php:223
809
+ msgid "Page configuration"
810
+ msgstr "Configuración de la página"
811
+
812
+ #: ../classes/admin/settings/sf-options.php:226
813
+ msgid "Vendor dashboard"
814
+ msgstr "Dashboard del vendedor"
815
+
816
+ #: ../classes/admin/settings/sf-options.php:227
817
+ msgid ""
818
+ "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</"
819
+ "code><br/>By default, My Account > Vendor Dashboard should have the "
820
+ "shortcode."
821
+ msgstr ""
822
+ "Elegir la página que tiene el shortcode <code>[wcv_vendor_dashboard]</"
823
+ "code><br/> Por defecto es Mi Cuenta > Dashboard del Vendedor"
824
+
825
+ #: ../classes/admin/settings/sf-options.php:234
826
+ msgid "Shop settings"
827
+ msgstr "Ajustes de la Tienda"
828
+
829
+ #: ../classes/admin/settings/sf-options.php:235
830
+ msgid ""
831
+ "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/"
832
+ ">These are the shop settings a vendor can configure."
833
+ msgstr ""
834
+ "Elegir la página que tiene el shortcode <code>[wcv_shop_settings]</code><br/"
835
+ ">Estos son los ajustes de la tienda que el vendedor puede configurar"
836
+
837
+ #: ../classes/admin/settings/sf-options.php:242
838
+ msgid "Orders page"
839
+ msgstr "Página de órdenes"
840
+
841
+ #: ../classes/admin/settings/sf-options.php:243
842
+ msgid ""
843
+ "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By "
844
+ "default, My Account > Orders should have the shortcode."
845
+ msgstr ""
846
+ "Elegir la página que tiene el shorcode <code>[wcv_orders]</code><br/>Por "
847
+ "defecto es Mi Cuenta > Órdenes"
848
+
849
+ #: ../classes/admin/settings/sf-options.php:250
850
+ msgid "Vendor terms"
851
+ msgstr "Condiciones de los vendedores"
852
+
853
+ #: ../classes/admin/settings/sf-options.php:251
854
+ msgid ""
855
+ "These terms are shown to a user when submitting an application to become a "
856
+ "vendor.<br/>If left blank, no terms will be shown to the applicant."
857
+ msgstr ""
858
+ "Estas condiciones se muestran a un usuario cuando envía una postulación a "
859
+ "ser vendedor.<br/>Si se deja en blanco no se mostrará ninguna."
860
+
861
+ #: ../classes/admin/settings/sf-options.php:269
862
+ msgid "Payments"
863
+ msgstr "Pagos"
864
+
865
+ #: ../classes/admin/settings/sf-options.php:271
866
+ msgid "User payments"
867
+ msgstr "Pagos de Usuarios"
868
+
869
+ #: ../classes/admin/settings/sf-options.php:272
870
+ #, php-format
871
+ msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
872
+ msgstr "Deuda total de comisiones: %s. <a href=\"%s\">Ver detalles</a>."
873
+
874
+ #: ../classes/admin/settings/sf-options.php:273
875
+ #, php-format
876
+ msgid ""
877
+ "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s"
878
+ "\">here</a>."
879
+ msgstr ""
880
+ "Asegúrate de actualizar tus ajustes de PayPal Adaptive Payments <a href=\"%s"
881
+ "\">acá</a>."
882
+
883
+ #: ../classes/admin/settings/sf-options.php:277
884
+ msgid "Instant pay"
885
+ msgstr "Pago instantáneo"
886
+
887
+ #: ../classes/admin/settings/sf-options.php:278
888
+ msgid "Instantly pay vendors their commission when an order is made"
889
+ msgstr ""
890
+ "Pagar instantáneamente la comisión a los vendedores cuando se hace una orden"
891
+
892
+ #: ../classes/admin/settings/sf-options.php:279
893
+ msgid ""
894
+ "For this to work, customers must checkout with the PayPal Adaptive Payments "
895
+ "gateway. Using other gateways will not pay vendors instantly"
896
+ msgstr ""
897
+ "Para que esto funcione los clientes debe pagar por PayPal Adaptive Payments. "
898
+ "No se podrá pagar automáticamente a los vendedores si es de otra forma."
899
+
900
+ #: ../classes/admin/settings/sf-options.php:286
901
+ msgid "Payment schedule"
902
+ msgstr "Calendario de pagos"
903
+
904
+ #: ../classes/admin/settings/sf-options.php:287
905
+ msgid "Note: Schedule will only work if instant pay is unchecked"
906
+ msgstr ""
907
+ "Nota: El calendario sólo va a funcionar si el \"Pago instantáneo\" no está "
908
+ "chequeado"
909
+
910
+ #: ../classes/admin/settings/sf-options.php:292
911
+ msgid "Weekly"
912
+ msgstr "Semanal"
913
+
914
+ #: ../classes/admin/settings/sf-options.php:293
915
+ msgid "Biweekly"
916
+ msgstr "Bisemanal"
917
+
918
+ #: ../classes/admin/settings/sf-options.php:294
919
+ msgid "Monthly"
920
+ msgstr "Mensual"
921
+
922
+ #: ../classes/admin/settings/sf-options.php:295
923
+ msgid "Manual"
924
+ msgstr "Manual"
925
+
926
+ #: ../classes/admin/settings/sf-options.php:296
927
+ msgid "Now"
928
+ msgstr "Ahora"
929
+
930
+ #: ../classes/admin/settings/sf-options.php:301
931
+ msgid "Email notification"
932
+ msgstr "Notificaciones por email"
933
+
934
+ #: ../classes/admin/settings/sf-options.php:302
935
+ msgid ""
936
+ "Send the WooCommerce admin an email each time a payment has been made via "
937
+ "the payment schedule options above"
938
+ msgstr ""
939
+ "Mandar un mail al administrador de WooCommerce cada vez que se realice un "
940
+ "pago por medio del Caledario de Pagos"
941
+
942
+ #: ../classes/class-cron.php:87
943
+ #, php-format
944
+ msgid "Payment total: %s"
945
+ msgstr "Total de pago: %s"
946
+
947
+ #: ../classes/class-cron.php:148
948
+ msgid "Once Weekly"
949
+ msgstr "Semanal"
950
+
951
+ #: ../classes/class-cron.php:153
952
+ msgid "Once every two weeks"
953
+ msgstr "Bisemanal"
954
+
955
+ #: ../classes/class-cron.php:158
956
+ msgid "Once a month"
957
+ msgstr "Mensual"
958
+
959
+ #: ../classes/class-install.php:99 ../classes/class-install.php:253
960
+ msgid "Pending Vendor"
961
+ msgstr "Vendedor Pendiente"
962
+
963
+ #: ../classes/class-install.php:204
964
+ msgid "Vendor Dashboard"
965
+ msgstr "Dashboard del Vendedor"
966
+
967
+ #: ../classes/class-install.php:206
968
+ msgid "Shop Settings"
969
+ msgstr "Ajustes de Tienda"
970
+
971
+ #: ../classes/front/class-vendor-cart.php:41
972
+ #: ../classes/front/class-vendor-shop.php:255
973
+ msgid "Sold by"
974
+ msgstr "Vendido por"
975
+
976
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:41
977
+ msgid "Order unmarked shipped."
978
+ msgstr "Desmarcar como orden enviada."
979
+
980
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:51
981
+ msgid "Order marked shipped."
982
+ msgstr "Marcar como orden enviada."
983
+
984
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:69
985
+ msgid "Your PayPal address is not a valid email address."
986
+ msgstr "Tu dirección de PayPal no es una dirección de email válida."
987
+
988
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:78
989
+ msgid "That shop name is already taken. Your shop name must be unique."
990
+ msgstr "Ese nombre de tienda ya está tomado. Tu tienda debe ser única."
991
+
992
+ #: ../classes/front/orders/class-export-csv.php:37
993
+ msgid "Extra data"
994
+ msgstr "Data adicional"
995
+
996
+ #: ../classes/front/orders/class-export-csv.php:38
997
+ #: ../views/dashboard/reports.php:18 ../views/emails/admin-new-order.php:23
998
+ #: ../views/emails/notify-vendor-shipped.php:23
999
+ msgid "Quantity"
1000
+ msgstr "Cantidad"
1001
+
1002
+ #: ../classes/front/orders/class-orders.php:107
1003
+ msgid ""
1004
+ "You haven't selected a product's orders to view! Please go back to the "
1005
+ "Vendor Dashboard and click Show Orders on the product you'd like to view."
1006
+ msgstr ""
1007
+ "¡No has seleccionado órdenes de productos para ver! Por favor anda al "
1008
+ "Dashboard del Vendedor y haz click en Mostrar Órdenes en el producto que "
1009
+ "quieres ver."
1010
+
1011
+ #: ../classes/front/orders/class-orders.php:111
1012
+ msgid "No orders."
1013
+ msgstr "No hay órdenes."
1014
+
1015
+ #: ../classes/front/orders/class-orders.php:144
1016
+ #: ../classes/front/orders/class-orders.php:145
1017
+ msgid "Tracking number"
1018
+ msgstr "Número de Tracking"
1019
+
1020
+ #: ../classes/front/orders/class-orders.php:147
1021
+ msgid "Success. Your tracking number has been updated."
1022
+ msgstr "Éxito. Tu número de tracking ha sido actualizado."
1023
+
1024
+ #: ../classes/front/orders/class-orders.php:209
1025
+ msgid "Product Title"
1026
+ msgstr "Título del Producto"
1027
+
1028
+ #: ../classes/front/orders/class-orders.php:210
1029
+ msgid "Full name"
1030
+ msgstr "Nombre completo"
1031
+
1032
+ #: ../classes/front/orders/class-orders.php:211
1033
+ msgid "Address"
1034
+ msgstr "Dirección"
1035
+
1036
+ #: ../classes/front/orders/class-orders.php:212
1037
+ msgid "City"
1038
+ msgstr "Ciudad"
1039
+
1040
+ #: ../classes/front/orders/class-orders.php:213
1041
+ msgid "State"
1042
+ msgstr "Estado"
1043
+
1044
+ #: ../classes/front/orders/class-orders.php:214
1045
+ msgid "Zip"
1046
+ msgstr "Zip"
1047
+
1048
+ #: ../classes/front/orders/class-orders.php:215
1049
+ msgid "Email address"
1050
+ msgstr "Dirección de email"
1051
+
1052
+ #: ../classes/front/orders/class-submit-comment.php:41
1053
+ msgid "You've left the comment field empty!"
1054
+ msgstr "¡Has dejado el campo de comentarios vacío!"
1055
+
1056
+ #: ../classes/front/orders/class-submit-comment.php:63
1057
+ msgid "Success. The customer has been notified of your comment."
1058
+ msgstr "Éxito. El cliente ha sido notificado de tu comentario."
1059
+
1060
+ #: ../classes/front/signup/class-vendor-signup.php:44
1061
+ #: ../views/dashboard/denied.php:22
1062
+ msgid "Apply to become a vendor? "
1063
+ msgstr "Postula a ser un vendedor "
1064
+
1065
+ #: ../classes/front/signup/class-vendor-signup.php:53
1066
+ #: ../views/dashboard/denied.php:33
1067
+ #, php-format
1068
+ msgid "I have read and accepted the <a href=\"%s\">terms and conditions</a>"
1069
+ msgstr "Leí y acepto los <a href=\"%s\">términos y condiciones</a>"
1070
+
1071
+ #: ../classes/front/signup/class-vendor-signup.php:87
1072
+ msgid "Application denied. You are an administrator."
1073
+ msgstr "Aplicación denegada. Eres un administrador."
1074
+
1075
+ #: ../classes/front/signup/class-vendor-signup.php:89
1076
+ msgid "Your application has been submitted."
1077
+ msgstr "La postulación ha sido enviada."
1078
+
1079
+ #: ../classes/front/signup/class-vendor-signup.php:125
1080
+ msgid "You must accept the terms and conditions to become a vendor."
1081
+ msgstr "Debes aceptar los términos y condiciones para postular a vendedor."
1082
+
1083
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:43
1084
+ msgid "PayPal Adaptive Payments"
1085
+ msgstr "PayPal Adaptive Payments"
1086
+
1087
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:119
1088
+ #, php-format
1089
+ msgid ""
1090
+ "Something went wrong. Response from PayPal invalidated this order. Status: "
1091
+ "%s."
1092
+ msgstr ""
1093
+ "Algo salió mal. La respuesta de PayPal invalidó esta orden. Estado: %s."
1094
+
1095
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:124
1096
+ msgid "IPN payment completed"
1097
+ msgstr "Pago IPN completado"
1098
+
1099
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:146
1100
+ msgid "Enable PayPal Adaptive Payments"
1101
+ msgstr "Habilitar PayPal Adaptive Payments"
1102
+
1103
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:152
1104
+ msgid "Method Title"
1105
+ msgstr "Título del Método"
1106
+
1107
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:153
1108
+ msgid "This controls the title which the user sees during checkout."
1109
+ msgstr "Esto controla el título que el usuario verá durante el checkout."
1110
+
1111
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:154
1112
+ msgid "PayPal"
1113
+ msgstr "PayPal"
1114
+
1115
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:159
1116
+ msgid "Description"
1117
+ msgstr "Descripción"
1118
+
1119
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:160
1120
+ msgid "This controls the description which the user sees during checkout."
1121
+ msgstr "Esto controla la descripción que el usuario verá durante el checkout."
1122
+
1123
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:161
1124
+ msgid "Pay via PayPal!"
1125
+ msgstr "¡Pagar vía PayPal!"
1126
+
1127
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:172
1128
+ msgid "Live Credentials"
1129
+ msgstr "Credenciales Publicadas"
1130
+
1131
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:174
1132
+ #, php-format
1133
+ msgid ""
1134
+ "You must have an <a href=\"%s\">Application ID</a> to process live "
1135
+ "transactions. You do not need one for testing in Sandbox mode."
1136
+ msgstr ""
1137
+ "Debes tener un <a href=\"%s\">ID de postulación</a> para procesar "
1138
+ "transacciones. No se necesita uno para probar en modo Sandbox."
1139
+
1140
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:179
1141
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:213
1142
+ msgid "PayPal Email"
1143
+ msgstr "Email de PayPal"
1144
+
1145
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:180
1146
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:214
1147
+ msgid "The email address main payments should go to."
1148
+ msgstr "El email es la dirección principal a la que deben ir los pagos"
1149
+
1150
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:185
1151
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:219
1152
+ msgid "API Username"
1153
+ msgstr "API Nombre de Usuario"
1154
+
1155
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:190
1156
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:224
1157
+ msgid "API Password"
1158
+ msgstr "API Contraseña"
1159
+
1160
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:195
1161
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:229
1162
+ msgid "API Signature"
1163
+ msgstr "API Firma"
1164
+
1165
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:200
1166
+ msgid "Application ID"
1167
+ msgstr "ID de Postuación"
1168
+
1169
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:202
1170
+ msgid "Only required when doing live transactions."
1171
+ msgstr "Solo requerida para hacer transacciones."
1172
+
1173
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:206
1174
+ msgid "Sandbox Credentials"
1175
+ msgstr "Credenciales de Sandbox"
1176
+
1177
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:208
1178
+ #, php-format
1179
+ msgid ""
1180
+ "You can signup for a sandbox developer account <a href=\"%s\">here</a>. You "
1181
+ "need a developer account if you want to enable Sandbox mode for testing."
1182
+ msgstr ""
1183
+ "Puedes hacer signup para una cuenta de Sandbox Developer <a href=\"%s"
1184
+ "\">aquí</a>. Necesitas una cuenta de Developer si quieres habilitar el modo "
1185
+ "de Sandbox para hacer pruebas."
1186
+
1187
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:240
1188
+ msgid "Misc. Settings"
1189
+ msgstr "Otros Ajustes"
1190
+
1191
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:245
1192
+ msgid "Enable PayPal Sandbox mode"
1193
+ msgstr "Habilitar modo Sandbox para PayPal"
1194
+
1195
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:251
1196
+ msgid "Enable logging"
1197
+ msgstr "Habilitar logging"
1198
+
1199
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:269
1200
+ msgid ""
1201
+ "The PayPal Adaptive Payments gateway can instantly pay your vendors their "
1202
+ "due commission (if enabled). Also used to mass pay vendors on a schedule / "
1203
+ "manual method (if enabled)."
1204
+ msgstr ""
1205
+ "El gateway de PayPal Adaptive Payments puede pagar instantáneamente a los "
1206
+ "vendedores la comisión adeudada (si está habilitado). Además puede ser usado "
1207
+ "para pagar en masa a los vendedores en una fecha o método manual (si está "
1208
+ "habilitado)."
1209
+
1210
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1211
+ msgid "Gateway Disabled"
1212
+ msgstr "Gateway Deshabilitado"
1213
+
1214
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1215
+ #, php-format
1216
+ msgid "%s does not support your store currency."
1217
+ msgstr "%s no soporta la moneda de tu cuenta."
1218
+
1219
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:369
1220
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:483
1221
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:150
1222
+ #, php-format
1223
+ msgid "Error: %s"
1224
+ msgstr "Error: %s"
1225
+
1226
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:378
1227
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:379
1228
+ #, php-format
1229
+ msgid "Error ID: %s. %s"
1230
+ msgstr "Error ID: %s. %s"
1231
+
1232
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:115
1233
+ msgid "No vendors found to pay. Maybe they haven't set a PayPal address?"
1234
+ msgstr ""
1235
+ "No se encontraron vendedores que pagar. Puede que no tengan configurada su "
1236
+ "dirección de PayPal."
1237
+
1238
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:164
1239
+ msgid "All due commission has been paid for."
1240
+ msgstr "Se han pagado todas las comisiones adeudadas."
1241
+
1242
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:170
1243
+ msgid ""
1244
+ "All due commission has been paid for, but I could not clear it from their "
1245
+ "profiles due to an internal error. Commission will still be listed as due. "
1246
+ "Please manually mark the commission as paid from the Commissions page."
1247
+ msgstr ""
1248
+ "Se han pagado todas las comisiones adeudadas, pero no se han limpiado del "
1249
+ "perfil por un error interno. Las comisiones van a seguir como adeudadas. Por "
1250
+ "favor marcar manualmente como pagadas desde la Página de Comisiones."
1251
+
1252
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:205
1253
+ msgid "WooCommerce: Mass payments for vendors update"
1254
+ msgstr "WooCommerce: Actualizar los pagos en masa de vendedores"
1255
+
1256
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:207
1257
+ msgid ""
1258
+ "Hello! A payment was just triggered to mass pay all vendors their due "
1259
+ "commission."
1260
+ msgstr ""
1261
+ "Hola! Un pago ha sido desatado para pagar a todos los vendedores su comisión "
1262
+ "adeudada."
1263
+
1264
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:208
1265
+ #, php-format
1266
+ msgid "Payment status: %s."
1267
+ msgstr "Estado del Pago: %s."
1268
+
1269
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:209
1270
+ #, php-format
1271
+ msgid "Payment message: %s."
1272
+ msgstr "Mensaje del Pago: %s."
1273
+
1274
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:212
1275
+ #, php-format
1276
+ msgid "Payment total: %s."
1277
+ msgstr "Total del Pago: %s."
1278
+
1279
+ #: ../views/dashboard/denied.php:8
1280
+ msgid ""
1281
+ "Your account has not yet been approved to become a vendor. When it is, you "
1282
+ "will receive an email telling you that your account is approved!"
1283
+ msgstr ""
1284
+ "Tu cuenta no ha sido aprobada para convertirte en un vendedor. ¡De ser "
1285
+ "aprobada, se te enviará un email!"
1286
+
1287
+ #: ../views/dashboard/denied.php:12
1288
+ msgid ""
1289
+ "Your account is not setup as a vendor yet. If you would like to register, "
1290
+ "please complete this page!"
1291
+ msgstr ""
1292
+ "Tu cuenta no está configurada como vendedor aún. ¡Si quieres registrarte "
1293
+ "completa esta página!"
1294
+
1295
+ #: ../views/dashboard/denied.php:53
1296
+ msgid "Submit"
1297
+ msgstr "Enviar"
1298
+
1299
+ #: ../views/dashboard/links.php:1
1300
+ msgid "Control Center"
1301
+ msgstr "Centro de Mando"
1302
+
1303
+ #: ../views/dashboard/links.php:3
1304
+ msgid "My shop"
1305
+ msgstr "Mi tienda"
1306
+
1307
+ #: ../views/dashboard/links.php:7
1308
+ msgid "My settings"
1309
+ msgstr "Mis ajustes"
1310
+
1311
+ #: ../views/dashboard/links.php:13
1312
+ msgid "Submit a product"
1313
+ msgstr "Enviar un producto"
1314
+
1315
+ #: ../views/dashboard/orders.php:7 ../views/dashboard/orders.php:10
1316
+ msgid "Hide items"
1317
+ msgstr "Esconder elementos"
1318
+
1319
+ #: ../views/dashboard/orders.php:8 ../views/dashboard/orders.php:58
1320
+ msgid "View items"
1321
+ msgstr "Ver elementos"
1322
+
1323
+ #: ../views/dashboard/orders.php:27
1324
+ msgid "Links"
1325
+ msgstr "Links"
1326
+
1327
+ #: ../views/dashboard/orders.php:58
1328
+ msgid "Unmark shipped"
1329
+ msgstr "Desmarcar enviado"
1330
+
1331
+ #: ../views/dashboard/orders.php:58
1332
+ msgid "Mark shipped"
1333
+ msgstr "Marcar enviado"
1334
+
1335
+ #: ../views/dashboard/orders.php:90
1336
+ msgid "You have no orders during this period."
1337
+ msgstr "No tienes órdenes durante este periodo."
1338
+
1339
+ #: ../views/dashboard/reports.php:1
1340
+ msgid "Sales Report"
1341
+ msgstr "Reporte de Ventas"
1342
+
1343
+ #: ../views/dashboard/reports.php:20
1344
+ msgid "Rate"
1345
+ msgstr "Evaluar"
1346
+
1347
+ #: ../views/dashboard/reports.php:47
1348
+ msgid "Show Orders"
1349
+ msgstr "Mostrar Órdenes"
1350
+
1351
+ #: ../views/dashboard/reports.php:56
1352
+ msgid "Totals"
1353
+ msgstr "Totales"
1354
+
1355
+ #: ../views/dashboard/reports.php:71
1356
+ msgid "You have no sales during this period."
1357
+ msgstr "No has tenido ventas durante este periodo."
1358
+
1359
+ #: ../views/dashboard/reports.php:82
1360
+ msgid "You haven't made any sales yet."
1361
+ msgstr "No ha hecho ninguna venta por ahora."
1362
+
1363
+ #: ../views/dashboard/settings/paypal-email-form.php:2
1364
+ msgid "PayPal Address"
1365
+ msgstr "Dirección de PayPal"
1366
+
1367
+ #: ../views/dashboard/settings/paypal-email-form.php:3
1368
+ msgid "Your PayPal address is used to send you your commission."
1369
+ msgstr "Tu dirección de PayPal es usada para enviarte tu comisión."
1370
+
1371
+ #: ../views/dashboard/settings/seller-info.php:4
1372
+ msgid "This is displayed on each of your products."
1373
+ msgstr "Esto se muestra en cada uno de tus productos."
1374
+
1375
+ #: ../views/dashboard/settings/settings.php:47
1376
+ msgid "Save"
1377
+ msgstr "Guardar"
1378
+
1379
+ #: ../views/dashboard/settings/shop-description.php:2
1380
+ msgid "Shop Description"
1381
+ msgstr "Descripción de la Tienda"
1382
+
1383
+ #: ../views/dashboard/settings/shop-description.php:3
1384
+ #, php-format
1385
+ msgid "This is displayed on your <a href=\"%s\">shop page</a>."
1386
+ msgstr "Esto será mostrado en la <a href=\"%s\">página de tu tienda</a>."
1387
+
1388
+ #: ../views/dashboard/settings/shop-name.php:2
1389
+ msgid "Shop Name"
1390
+ msgstr "Nombre de la Tienda"
1391
+
1392
+ #: ../views/dashboard/settings/shop-name.php:3
1393
+ msgid "Your shop name is public and must be unique."
1394
+ msgstr "El nombre de tu tienda es público y único."
1395
+
1396
+ #: ../views/emails/admin-new-order.php:13
1397
+ #, php-format
1398
+ msgid "You have received an order from %s. Their order is as follows:"
1399
+ msgstr "Has recibido una orden de %s. La orden la siguiente:"
1400
+
1401
+ #: ../views/emails/admin-new-order.php:17
1402
+ #: ../views/emails/notify-vendor-shipped.php:17
1403
+ #, php-format
1404
+ msgid "Order: %s"
1405
+ msgstr "Orden: %s"
1406
+
1407
+ #: ../views/emails/admin-new-order.php:24
1408
+ #: ../views/emails/notify-vendor-shipped.php:24
1409
+ msgid "Price"
1410
+ msgstr "Precio"
1411
+
1412
+ #: ../views/emails/admin-new-order.php:50
1413
+ #: ../views/emails/notify-vendor-shipped.php:50
1414
+ msgid "Customer details"
1415
+ msgstr "Detalle del cliente"
1416
+
1417
+ #: ../views/emails/admin-new-order.php:53
1418
+ #: ../views/emails/notify-vendor-shipped.php:53
1419
+ msgid "Email:"
1420
+ msgstr "Email:"
1421
+
1422
+ #: ../views/emails/admin-new-order.php:56
1423
+ #: ../views/emails/notify-vendor-shipped.php:56
1424
+ msgid "Tel:"
1425
+ msgstr "Tel:"
1426
+
1427
+ #: ../views/emails/application-status.php:5
1428
+ #, php-format
1429
+ msgid "Hi there. This is a notification about a vendor application on %s."
1430
+ msgstr "Hola. Esta es una notificación de la postulación de un vendedor en %s."
1431
+
1432
+ #: ../views/emails/application-status.php:8
1433
+ #, php-format
1434
+ msgid "Application status: %s"
1435
+ msgstr "Estado de la postulación: %s"
1436
+
1437
+ #: ../views/emails/application-status.php:9
1438
+ #, php-format
1439
+ msgid "Applicant username: %s"
1440
+ msgstr "Username del postulante: %s"
1441
+
1442
+ #: ../views/emails/new-product.php:5
1443
+ #, php-format
1444
+ msgid "Hi there. This is a notification about a new product on %s."
1445
+ msgstr "Hola. Esta es una notificación sobre un nuevo producto en %s."
1446
+
1447
+ #: ../views/emails/new-product.php:8
1448
+ #, php-format
1449
+ msgid "Product title: %s"
1450
+ msgstr "Título del producto: %s"
1451
+
1452
+ #: ../views/emails/new-product.php:9
1453
+ #, php-format
1454
+ msgid "Submitted by: %s"
1455
+ msgstr "Enviado por: %s"
1456
+
1457
+ #: ../views/emails/new-product.php:10
1458
+ #, php-format
1459
+ msgid "Edit product: %s"
1460
+ msgstr "Editar producto: %s"
1461
+
1462
+ #: ../views/emails/notify-vendor-shipped.php:13
1463
+ msgid ""
1464
+ "A vendor has marked part of your order as shipped. The items that are "
1465
+ "shipped are as follows:"
1466
+ msgstr ""
1467
+ "Un vendedor ha marcado parte de tu orden como enviada. Los elementos serán "
1468
+ "enviados de la siguiente forma:"
1469
+
1470
+ #: ../views/orders/comments/add-new-comment.php:11
1471
+ msgid "Add comment"
1472
+ msgstr "Agregar comentario"
1473
+
1474
+ #: ../views/orders/comments/existing-comments.php:9
1475
+ #, php-format
1476
+ msgid "added %s ago"
1477
+ msgstr "Agregado %s atrás"
1478
+
1479
+ #: ../views/orders/csv-export.php:6
1480
+ msgid "Export orders"
1481
+ msgstr "Exportar órdenes"
1482
+
1483
+ #: ../views/orders/customer-note/customer-note.php:4
1484
+ msgid "Customer note"
1485
+ msgstr "Nota del cliente"
1486
+
1487
+ #: ../views/orders/customer-note/customer-note.php:8
1488
+ msgid "No customer note."
1489
+ msgstr "No hay nota del cliente."
1490
+
1491
+ #: ../views/orders/orders.php:84
1492
+ #, php-format
1493
+ msgid "Comments (%s)"
1494
+ msgstr "Comentarios (%s)"
1495
+
1496
+ #: ../views/orders/shipping/shipping-form.php:46
1497
+ msgid "Provider:"
1498
+ msgstr "Proveedor:"
1499
+
1500
+ #: ../views/orders/shipping/shipping-form.php:48
1501
+ msgid "Custom Provider"
1502
+ msgstr "Proveedor Personalizado"
1503
+
1504
+ #: ../views/orders/shipping/shipping-form.php:68
1505
+ msgid "Provider Name:"
1506
+ msgstr "Nombre del Proveedor:"
1507
+
1508
+ #: ../views/orders/shipping/shipping-form.php:76
1509
+ msgid "Tracking number:"
1510
+ msgstr "Número de Tracking:"
1511
+
1512
+ #: ../views/orders/shipping/shipping-form.php:84
1513
+ msgid "Tracking link:"
1514
+ msgstr "Enlace de Tracking:"
1515
+
1516
+ #: ../views/orders/shipping/shipping-form.php:93
1517
+ msgid "Date shipped:"
1518
+ msgstr "Fecha de envío:"
1519
+
1520
+ #: ../views/orders/shipping/shipping-form.php:101
1521
+ msgid "Preview:"
1522
+ msgstr "Previsualizar:"
1523
+
1524
+ #: ../views/orders/shipping/shipping-form.php:101
1525
+ msgid "Click here to track your shipment"
1526
+ msgstr "Haz click para trackear tu envío"
1527
+
1528
+ #: ../views/orders/shipping/shipping-form.php:110
1529
+ msgid "Update tracking number"
1530
+ msgstr "Actualizar el numero de tracking"
1531
+
1532
+ #: ../views/orders/shipping/shipping-form.php:112
1533
+ msgid "Mark as shipped"
1534
+ msgstr "Marcar como enviada"
1535
+
1536
+ #: ../views/orders/table-body.php:25
1537
+ #, php-format
1538
+ msgid "Quantity: %d"
1539
+ msgstr "Cantidad: %d"
WCVendors/languages/wcvendors-fr_FR.mo ADDED
Binary file
WCVendors/languages/wcvendors-fr_FR.po ADDED
@@ -0,0 +1,1578 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Woocommerce translation strings
2
+ # Copyright (C) 2011-2012
3
+ # This file is distributed under the same license as the Woocommerce package.
4
+ # Last Updated: August 17, 2013.
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WC-Vendors\n"
8
+ "Report-Msgid-Bugs-To: Woocommerce <info@Woocommerce.com>\n"
9
+ "POT-Creation-Date: 2015-02-18 22:58-0500\n"
10
+ "PO-Revision-Date: 2015-02-18 23:55-0500\n"
11
+ "Last-Translator: TWF <info@themes-wordpress-francais.com>\n"
12
+ "Language-Team: TWF <info@themes-wordpress-francais.com>\n"
13
+ "Language: fr_FR\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Generator: Poedit 1.7.3\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: __;_e\n"
20
+ "X-Poedit-Basepath: .\n"
21
+ "X-Poedit-SearchPath-0: ..\n"
22
+
23
+ #: ../classes/admin/class-admin-page.php:28
24
+ msgid "Vendors shipped"
25
+ msgstr "Envoyé par le vendeur"
26
+
27
+ #: ../classes/admin/class-admin-page.php:51
28
+ msgid "Vendors Shipped"
29
+ msgstr "Envoyé par le vendeur"
30
+
31
+ #: ../classes/admin/class-admin-page.php:73 ../classes/admin/class-admin-page.php:133
32
+ #: ../classes/admin/class-admin-reports.php:339 ../classes/admin/class-product-meta.php:148
33
+ #: ../classes/admin/class-product-meta.php:164 ../views/dashboard/reports.php:19
34
+ msgid "Commission"
35
+ msgstr "Commission"
36
+
37
+ #: ../classes/admin/class-admin-page.php:252 ../classes/admin/class-admin-reports.php:168
38
+ #: ../views/dashboard/reports.php:17 ../views/emails/admin-new-order.php:22
39
+ #: ../views/emails/notify-vendor-shipped.php:22
40
+ msgid "Product"
41
+ msgstr "Produit"
42
+
43
+ #: ../classes/admin/class-admin-page.php:253
44
+ msgid "Order ID"
45
+ msgstr "Numero de commande"
46
+
47
+ #: ../classes/admin/class-admin-page.php:254 ../classes/admin/class-admin-reports.php:169
48
+ #: ../classes/admin/class-product-meta.php:44 ../classes/admin/class-product-meta.php:184
49
+ #: ../classes/admin/class-product-meta.php:220
50
+ msgid "Vendor"
51
+ msgstr "Vendeur"
52
+
53
+ #: ../classes/admin/class-admin-page.php:255 ../classes/admin/class-admin-reports.php:170
54
+ #: ../classes/admin/class-admin-reports.php:344 ../classes/admin/class-admin-reports.php:368
55
+ #: ../views/dashboard/orders.php:35
56
+ msgid "Total"
57
+ msgstr "Total"
58
+
59
+ #: ../classes/admin/class-admin-page.php:256 ../classes/admin/class-admin-reports.php:172
60
+ msgid "Status"
61
+ msgstr "Statut"
62
+
63
+ #: ../classes/admin/class-admin-page.php:257 ../classes/front/orders/class-orders.php:216
64
+ #: ../views/dashboard/orders.php:36
65
+ msgid "Date"
66
+ msgstr "Date"
67
+
68
+ #: ../classes/admin/class-admin-page.php:294
69
+ msgid "Mark paid"
70
+ msgstr "Indiquer Payer"
71
+
72
+ #: ../classes/admin/class-admin-page.php:295
73
+ msgid "Mark due"
74
+ msgstr "Indiquer A Payer"
75
+
76
+ #: ../classes/admin/class-admin-page.php:296
77
+ msgid "Mark reversed"
78
+ msgstr "Indiquer reverser"
79
+
80
+ #: ../classes/admin/class-admin-page.php:313 ../classes/admin/class-admin-page.php:317
81
+ msgid "Filter"
82
+ msgstr "Filtres"
83
+
84
+ #: ../classes/admin/class-admin-page.php:351
85
+ msgid "Show all dates"
86
+ msgstr "Montrer Toutes Les Dates"
87
+
88
+ #. translators: 1: month name, 2: 4-digit year
89
+ #: ../classes/admin/class-admin-page.php:364
90
+ #, php-format
91
+ msgid "%1$s %2$d"
92
+ msgstr "%1$s %2$d"
93
+
94
+ #: ../classes/admin/class-admin-page.php:385
95
+ msgid "Show all Statuses"
96
+ msgstr "Montrer Toutes Les Dates"
97
+
98
+ #: ../classes/admin/class-admin-page.php:411
99
+ msgid "Commission marked paid."
100
+ msgstr "Commission payée"
101
+
102
+ #: ../classes/admin/class-admin-page.php:418
103
+ msgid "Commission marked due."
104
+ msgstr "Commission à payer"
105
+
106
+ #: ../classes/admin/class-admin-page.php:425
107
+ msgid "Commission marked reversed."
108
+ msgstr "Commission reversée"
109
+
110
+ #: ../classes/admin/class-admin-reports.php:41 ../classes/admin/class-admin-users.php:349
111
+ msgid "WC Vendors"
112
+ msgstr "WC Vendors"
113
+
114
+ #: ../classes/admin/class-admin-reports.php:44
115
+ msgid "Overview"
116
+ msgstr "Vue d'ensemble"
117
+
118
+ #: ../classes/admin/class-admin-reports.php:50
119
+ msgid "Commission by vendor"
120
+ msgstr "Commission par vendeur"
121
+
122
+ #: ../classes/admin/class-admin-reports.php:56
123
+ msgid "Commission by product"
124
+ msgstr "Commission par produit"
125
+
126
+ #: ../classes/admin/class-admin-reports.php:115 ../views/dashboard/date-picker.php:3
127
+ msgid "From:"
128
+ msgstr "De:"
129
+
130
+ #: ../classes/admin/class-admin-reports.php:117 ../views/dashboard/date-picker.php:7
131
+ msgid "To:"
132
+ msgstr "A:"
133
+
134
+ #: ../classes/admin/class-admin-reports.php:119 ../classes/admin/class-admin-reports.php:277
135
+ #: ../views/dashboard/date-picker.php:12
136
+ msgid "Show"
137
+ msgstr "Voir"
138
+
139
+ #: ../classes/admin/class-admin-reports.php:125
140
+ msgid "Total paid in range"
141
+ msgstr "Total des sommes versées"
142
+
143
+ #: ../classes/admin/class-admin-reports.php:128 ../classes/admin/class-admin-reports.php:135
144
+ #: ../classes/admin/class-admin-reports.php:142
145
+ msgid "n/a"
146
+ msgstr "s/o"
147
+
148
+ #: ../classes/admin/class-admin-reports.php:132
149
+ msgid "Total due in range"
150
+ msgstr "Total des sommes dues"
151
+
152
+ #: ../classes/admin/class-admin-reports.php:139
153
+ msgid "Total reversed in range"
154
+ msgstr "Total des sommes reversées"
155
+
156
+ #: ../classes/admin/class-admin-reports.php:149
157
+ msgid "Recent Commission"
158
+ msgstr "Commission Recentes"
159
+
160
+ #: ../classes/admin/class-admin-reports.php:167 ../classes/front/orders/class-orders.php:208
161
+ #: ../views/dashboard/orders.php:33
162
+ msgid "Order"
163
+ msgstr "Commande"
164
+
165
+ #: ../classes/admin/class-admin-reports.php:171
166
+ msgid "Date &amp; Time"
167
+ msgstr "Date &amp; Heure"
168
+
169
+ #: ../classes/admin/class-admin-reports.php:180
170
+ msgid "N/A"
171
+ msgstr "N/A"
172
+
173
+ #: ../classes/admin/class-admin-reports.php:185
174
+ msgid "D j M Y \\a\\t h:ia"
175
+ msgstr "D j M Y \\à h:ia"
176
+
177
+ #: ../classes/admin/class-admin-reports.php:194
178
+ msgid "No commission yet"
179
+ msgstr "Pas encore de commission"
180
+
181
+ #: ../classes/admin/class-admin-reports.php:228
182
+ msgid "Show:"
183
+ msgstr "Montrer:"
184
+
185
+ #: ../classes/admin/class-admin-reports.php:237
186
+ msgid "Search for a product&hellip;"
187
+ msgstr "Recherche d'un produit&hellip;"
188
+
189
+ #: ../classes/admin/class-admin-reports.php:240
190
+ msgid "Type in a product name to start searching..."
191
+ msgstr "Ecrivez le nom du produit pour lancer la recherche ..."
192
+
193
+ #: ../classes/admin/class-admin-reports.php:272
194
+ msgid "Select a vendor&hellip;"
195
+ msgstr "Choisir un Vendeur&hellip;"
196
+
197
+ #: ../classes/admin/class-admin-reports.php:338
198
+ msgid "Month"
199
+ msgstr "Mois"
200
+
201
+ #: ../classes/admin/class-admin-reports.php:340
202
+ msgid "Tax"
203
+ msgstr "Taxes"
204
+
205
+ #: ../classes/admin/class-admin-reports.php:341 ../views/dashboard/orders.php:34
206
+ #: ../views/orders/orders.php:113
207
+ msgid "Shipping"
208
+ msgstr "Livraison"
209
+
210
+ #: ../classes/admin/class-admin-reports.php:342
211
+ msgid "Reversed"
212
+ msgstr "Reverser"
213
+
214
+ #: ../classes/admin/class-admin-reports.php:343
215
+ msgid "Paid"
216
+ msgstr "Payer"
217
+
218
+ #: ../classes/admin/class-admin-users.php:359
219
+ msgid "Enable HTML for the shop description"
220
+ msgstr "Activer le HTML pour la description de la boutique."
221
+
222
+ #: ../classes/admin/class-admin-users.php:365
223
+ msgid "Shop name"
224
+ msgstr "Nom de la boutique"
225
+
226
+ #: ../classes/admin/class-admin-users.php:372
227
+ msgid "PayPal E-mail"
228
+ msgstr "E-Mail Paypal"
229
+
230
+ #: ../classes/admin/class-admin-users.php:373
231
+ msgid "required"
232
+ msgstr "required"
233
+
234
+ #: ../classes/admin/class-admin-users.php:380
235
+ msgid "Commission rate"
236
+ msgstr "Taux de la commission"
237
+
238
+ #: ../classes/admin/class-admin-users.php:381 ../classes/admin/class-product-meta.php:171
239
+ msgid "Leave blank for default"
240
+ msgstr "Laisser blanc par défaut"
241
+
242
+ #: ../classes/admin/class-admin-users.php:387 ../classes/front/class-vendor-shop.php:103
243
+ #: ../views/dashboard/settings/seller-info.php:3
244
+ msgid "Seller info"
245
+ msgstr "Information du vendeur"
246
+
247
+ #: ../classes/admin/class-admin-users.php:392
248
+ msgid "Shop description"
249
+ msgstr "Description de la boutique"
250
+
251
+ #: ../classes/admin/class-vendor-applicants.php:26
252
+ msgid "Approve"
253
+ msgstr "Accepter"
254
+
255
+ #: ../classes/admin/class-vendor-applicants.php:27
256
+ msgid "Deny"
257
+ msgstr "Refuser"
258
+
259
+ #: ../classes/admin/class-vendor-applicants.php:71
260
+ msgid "Vendor has been <b>denied</b>."
261
+ msgstr "Le vendeur a été <b>refusé</b>."
262
+
263
+ #: ../classes/admin/class-vendor-applicants.php:82
264
+ msgid "Vendor has been <b>approved</b>."
265
+ msgstr "Le vendeur a été <b>accepté</b>."
266
+
267
+ #: ../classes/admin/class-vendor-applicants.php:96
268
+ msgid "Pending Vendors"
269
+ msgstr "Vendeur en attente"
270
+
271
+ #: ../classes/admin/emails/class-emails.php:55
272
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:70
273
+ msgid "pending"
274
+ msgstr "en attente"
275
+
276
+ #: ../classes/admin/emails/class-emails.php:57
277
+ msgid "approved"
278
+ msgstr "approuvé"
279
+
280
+ #: ../classes/admin/emails/class-emails.php:59
281
+ msgid "denied"
282
+ msgstr "refusé"
283
+
284
+ #: ../classes/admin/emails/class-emails.php:87 ../classes/front/class-vendor-cart.php:60
285
+ #: ../classes/front/class-vendor-shop.php:178
286
+ msgid "Sold by: "
287
+ msgstr "Vendu par:"
288
+
289
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:28
290
+ msgid "Vendor Application"
291
+ msgstr "Demande de vendeur"
292
+
293
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:29
294
+ msgid "Vendor application will either be approved, denied, or pending."
295
+ msgstr "La demande du vendeur sera soit approuvée, refusée, ou en attente."
296
+
297
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:31
298
+ msgid "Application {status}"
299
+ msgstr "Demande {status}"
300
+
301
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:32
302
+ msgid "[{blogname}] Your vendor application has been {status}"
303
+ msgstr "[{blogname}] Votre demande pour etre vendeur a été {status}"
304
+
305
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:123
306
+ #: ../classes/admin/emails/class-wc-notify-admin.php:129
307
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:163
308
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:230
309
+ msgid "Enable/Disable"
310
+ msgstr "Activer / Désactiver"
311
+
312
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:125
313
+ #: ../classes/admin/emails/class-wc-notify-admin.php:131
314
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:165
315
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:232
316
+ msgid "Enable this email notification"
317
+ msgstr "Activer cette notification "
318
+
319
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:129
320
+ #: ../classes/admin/emails/class-wc-notify-admin.php:135
321
+ msgid "Recipient(s)"
322
+ msgstr "Destinataire(s)"
323
+
324
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:131
325
+ #: ../classes/admin/emails/class-wc-notify-admin.php:137
326
+ #, php-format
327
+ msgid "Enter recipients (comma separated) for this email. Defaults to <code>%s</code>."
328
+ msgstr ""
329
+ "Entrez les destinataires (séparés par une virgule) pour cet email. Par défaut <code>%s</"
330
+ "code>."
331
+
332
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:136
333
+ #: ../classes/admin/emails/class-wc-notify-admin.php:142
334
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:169
335
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:236
336
+ msgid "Subject"
337
+ msgstr "Sujet"
338
+
339
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:138
340
+ #: ../classes/admin/emails/class-wc-notify-admin.php:144
341
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:171
342
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:238
343
+ #, php-format
344
+ msgid ""
345
+ "This controls the email subject line. Leave blank to use the default subject: <code>%s</"
346
+ "code>."
347
+ msgstr "Control du sujet. Laissez vide pour utiliser l'objet par défaut: <code>%s</code>."
348
+
349
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:143
350
+ #: ../classes/admin/emails/class-wc-notify-admin.php:149
351
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:176
352
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:243
353
+ msgid "Email Heading"
354
+ msgstr "Entête de l'email"
355
+
356
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:145
357
+ #: ../classes/admin/emails/class-wc-notify-admin.php:151
358
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:178
359
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:245
360
+ #, php-format
361
+ msgid ""
362
+ "This controls the main heading contained within the email notification. Leave blank to use "
363
+ "the default heading: <code>%s</code>."
364
+ msgstr "Control du entête. Laissez vide pour utiliser l'entête par défaut: <code>%s</code>."
365
+
366
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:150
367
+ #: ../classes/admin/emails/class-wc-notify-admin.php:156
368
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:183
369
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:250
370
+ msgid "Email type"
371
+ msgstr "Email type"
372
+
373
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:152
374
+ #: ../classes/admin/emails/class-wc-notify-admin.php:158
375
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:185
376
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:252
377
+ msgid "Choose which format of email to send."
378
+ msgstr "Choisir le format d'email"
379
+
380
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:156
381
+ #: ../classes/admin/emails/class-wc-notify-admin.php:162
382
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:189
383
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:256
384
+ msgid "Plain text"
385
+ msgstr "Texte"
386
+
387
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:157
388
+ #: ../classes/admin/emails/class-wc-notify-admin.php:163
389
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:190
390
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:257
391
+ msgid "HTML"
392
+ msgstr "HTML"
393
+
394
+ #: ../classes/admin/emails/class-wc-approve-vendor.php:158
395
+ #: ../classes/admin/emails/class-wc-notify-admin.php:164
396
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:191
397
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:258
398
+ msgid "Multipart"
399
+ msgstr "Multipart"
400
+
401
+ #: ../classes/admin/emails/class-wc-notify-admin.php:28
402
+ msgid "New Vendor Product"
403
+ msgstr "Nouveau Produit"
404
+
405
+ #: ../classes/admin/emails/class-wc-notify-admin.php:29
406
+ msgid "New order emails are sent when a new product is submitted by a vendor"
407
+ msgstr ""
408
+ "E-mails de nouvelles commandes envoyées quand un nouveau produit est présentée par un "
409
+ "fournisseur"
410
+
411
+ #: ../classes/admin/emails/class-wc-notify-admin.php:31
412
+ msgid "New product submitted: {product_name}"
413
+ msgstr "Nouveau produit soumis: {product_name}"
414
+
415
+ #: ../classes/admin/emails/class-wc-notify-admin.php:32
416
+ msgid "[{blogname}] New product submitted by {vendor_name} - {product_name}"
417
+ msgstr "[{blogname}] Nouveau produit soumis par {vendor_name} - {product_name}"
418
+
419
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:28
420
+ msgid "Vendor has shipped"
421
+ msgstr "Le vendeur à expédié"
422
+
423
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:29
424
+ msgid "An email is sent when a vendor has marked one of their orders as shipped."
425
+ msgstr "Un email sera envoyé quand un vendeur aura marqué une de commande comme envoyée."
426
+
427
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:31
428
+ msgid "Your order has been shipped"
429
+ msgstr "Votre commande a été expédiée"
430
+
431
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:32
432
+ msgid "[{blogname}] Your order has been shipped ({order_number}) - {order_date}"
433
+ msgstr "[{blogname}] Votre commande ({order_number} du {order_date}) a été expediée."
434
+
435
+ #: ../classes/admin/emails/class-wc-notify-shipped.php:112
436
+ msgid "Subtotal:"
437
+ msgstr "Sous-total:"
438
+
439
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:27
440
+ msgid "Notify vendors"
441
+ msgstr "Notifier les vendeurs"
442
+
443
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:28
444
+ msgid "New order emails are sent when an order is received/paid by a customer."
445
+ msgstr "E-mails de nouvelles commandes envoyées quand un ordre est reçu / payé par un client."
446
+
447
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:30
448
+ msgid "New customer order"
449
+ msgstr "Nouvelle Commande"
450
+
451
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:31
452
+ msgid "[{blogname}] New customer order ({order_number}) - {order_date}"
453
+ msgstr "[{blogname}] Nouvelle Commande {order_number}) - {order_date}"
454
+
455
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:103
456
+ msgid "Commission Subtotal:"
457
+ msgstr "Sous-Total Commission :"
458
+
459
+ #: ../classes/admin/emails/class-wc-notify-vendor.php:110
460
+ msgid "Shipping Subtotal:"
461
+ msgstr "Sous-total livraison:"
462
+
463
+ #: ../classes/admin/settings/classes/sf-class-format-options.php:211
464
+ #: ../classes/admin/settings/classes/sf-class-settings.php:773
465
+ msgid "Select a page..."
466
+ msgstr "Choisir une page..."
467
+
468
+ #: ../classes/admin/settings/classes/sf-class-settings.php:153
469
+ #: ../views/dashboard/settings/settings.php:1
470
+ msgid "Settings"
471
+ msgstr "Paramètres"
472
+
473
+ #: ../classes/admin/settings/classes/sf-class-settings.php:297
474
+ msgid "Could not load settings at: "
475
+ msgstr "Impossible de charger les paramètres à l'adresse:"
476
+
477
+ #: ../classes/admin/settings/classes/sf-class-settings.php:297
478
+ msgid "Error - WP Settings Framework"
479
+ msgstr "Erreur"
480
+
481
+ #: ../classes/admin/settings/classes/sf-class-settings.php:363
482
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:133
483
+ msgid "Settings saved."
484
+ msgstr "Paramètres sauvegardés"
485
+
486
+ #: ../classes/admin/settings/classes/sf-class-settings.php:479
487
+ #, php-format
488
+ msgid "Save %s changes"
489
+ msgstr "Enregistrer les %s changements"
490
+
491
+ #: ../classes/admin/settings/sf-options.php:4
492
+ msgid "General"
493
+ msgstr "Général"
494
+
495
+ #: ../classes/admin/settings/sf-options.php:5
496
+ msgid "General options"
497
+ msgstr "Options Générales"
498
+
499
+ #: ../classes/admin/settings/sf-options.php:5 ../classes/admin/settings/sf-options.php:45
500
+ #: ../classes/admin/settings/sf-options.php:223
501
+ msgid " "
502
+ msgstr ""
503
+
504
+ #: ../classes/admin/settings/sf-options.php:8
505
+ msgid "Default commission (%)"
506
+ msgstr "Commission par défaut(%)"
507
+
508
+ #: ../classes/admin/settings/sf-options.php:9
509
+ msgid ""
510
+ "The default rate the vendor receives for each product. If a product has a commission rate "
511
+ "already set, this value will be ignored for that product."
512
+ msgstr ""
513
+ "Le taux par défaut que le vendeur reçoit pour chaque produit. Si un produit a un taux de "
514
+ "commission déjà défini, cette valeur sera ignorée pour ce produit."
515
+
516
+ #: ../classes/admin/settings/sf-options.php:20
517
+ msgid "Registration"
518
+ msgstr "Inscription"
519
+
520
+ #: ../classes/admin/settings/sf-options.php:21
521
+ msgid "Allow users or guests to apply to become a vendor"
522
+ msgstr "Autoriser les utilisateurs ou les invités à s'inscrire pour devenir un vendeur"
523
+
524
+ #: ../classes/admin/settings/sf-options.php:22
525
+ msgid ""
526
+ "This will show a checkbox on the My Account page's registration form asking if the user "
527
+ "would like to apply to be a vendor. Also, on the Vendor Dashboard, users can apply to "
528
+ "become a vendor."
529
+ msgstr ""
530
+ "Cela fera apparaître une case à cocher sur le formulaire d'inscription de la page Mon "
531
+ "Compte demandant si l'utilisateur souhaite s'inscrire pour être un vendeur. En outre, sur "
532
+ "le tableau de bord du vendeur, les utilisateurs peuvent demander à devenir un vendeur."
533
+
534
+ #: ../classes/admin/settings/sf-options.php:29
535
+ msgid "Approve vendor applications manually"
536
+ msgstr "Approuver les demandes des vendeurs manuellement"
537
+
538
+ #: ../classes/admin/settings/sf-options.php:30
539
+ msgid ""
540
+ "With this unchecked, all vendor applications are automatically accepted. Otherwise, you "
541
+ "must approve each manually."
542
+ msgstr ""
543
+ "Avec cette cochée, toutes les actions de vendeurs sont automatiquement acceptés. Sinon, "
544
+ "vous devez approuver chacune manuellement."
545
+
546
+ #: ../classes/admin/settings/sf-options.php:37
547
+ msgid "Taxes"
548
+ msgstr "Taxes"
549
+
550
+ #: ../classes/admin/settings/sf-options.php:38
551
+ msgid "Give vendors any tax collected per-product"
552
+ msgstr "Donnez au vendeur toutes taxes perçues par produit"
553
+
554
+ #: ../classes/admin/settings/sf-options.php:39
555
+ msgid "The tax collected on a vendor's product will be given to him in its entirety"
556
+ msgstr "La taxe perçue sur le produit d'un vendeur va lui être donnée dans son intégralité"
557
+
558
+ #: ../classes/admin/settings/sf-options.php:45
559
+ msgid "Shop options"
560
+ msgstr "Options de la boutique"
561
+
562
+ #: ../classes/admin/settings/sf-options.php:48
563
+ msgid "Shop HTML"
564
+ msgstr "Boutique HTML"
565
+
566
+ #: ../classes/admin/settings/sf-options.php:49
567
+ msgid "Enable HTML for a vendor's shop description by default"
568
+ msgstr "Activer la description HTML pour la boutique d'un vendeur par défaut"
569
+
570
+ #: ../classes/admin/settings/sf-options.php:56
571
+ msgid "Vendor shop page"
572
+ msgstr "Page de la boutique d'un vendeur"
573
+
574
+ #: ../classes/admin/settings/sf-options.php:57
575
+ msgid "Eg: <code>yoursite.com/[your_setting_here]/[vendor_name_here]</code>"
576
+ msgstr "Ex: <code>votre-site.com/[le_reglage_ici]/[le_nom_du_vendeur_ici]</code>"
577
+
578
+ #: ../classes/admin/settings/sf-options.php:64
579
+ msgid "Shop Headers"
580
+ msgstr "Entêtes des boutiques"
581
+
582
+ #: ../classes/admin/settings/sf-options.php:65
583
+ msgid "Enable vendor shop headers"
584
+ msgstr "Activer les entêtes vendeurs"
585
+
586
+ #: ../classes/admin/settings/sf-options.php:66
587
+ msgid "This will override the HTML Shop description output on product-archive pages."
588
+ msgstr ""
589
+ "Ceci remplacera le code HTML de la description de la boutique sur les pages archives "
590
+ "produit ."
591
+
592
+ #: ../classes/admin/settings/sf-options.php:72 ../classes/admin/settings/sf-options.php:198
593
+ msgid "Products"
594
+ msgstr "Produits"
595
+
596
+ #: ../classes/admin/settings/sf-options.php:73
597
+ msgid "Product Add Page"
598
+ msgstr "Page pour ajouter un produit"
599
+
600
+ #: ../classes/admin/settings/sf-options.php:73
601
+ msgid "Configure what to hide from all vendors when adding a product"
602
+ msgstr ""
603
+ "Configurez ce que vous voulez cacher pour tous les vendeurs lors de l'ajout d'un produit"
604
+
605
+ #: ../classes/admin/settings/sf-options.php:76
606
+ msgid "Left side panel"
607
+ msgstr "Panneau latéral gauche"
608
+
609
+ #: ../classes/admin/settings/sf-options.php:77
610
+ msgid "Hide these areas of the add product page for vendors"
611
+ msgstr "Masquer ces zones de la page ajout produit pour les vendeurs"
612
+
613
+ #: ../classes/admin/settings/sf-options.php:91
614
+ msgid "Types"
615
+ msgstr "Types"
616
+
617
+ #: ../classes/admin/settings/sf-options.php:92
618
+ msgid "Hide these product types from the vendor"
619
+ msgstr "Masquer ces types produits pour le vendeur"
620
+
621
+ #: ../classes/admin/settings/sf-options.php:105
622
+ msgid "Type options"
623
+ msgstr "Type options"
624
+
625
+ #: ../classes/admin/settings/sf-options.php:106
626
+ msgid "Hide these product options from the vendor"
627
+ msgstr "Masquer ces options produits pour le vendeur"
628
+
629
+ #: ../classes/admin/settings/sf-options.php:117
630
+ msgid "Miscellaneous"
631
+ msgstr "Divers"
632
+
633
+ #: ../classes/admin/settings/sf-options.php:129
634
+ msgid "Stylesheet"
635
+ msgstr "Feuille de style"
636
+
637
+ #: ../classes/admin/settings/sf-options.php:130
638
+ msgid ""
639
+ "You can add CSS in this textarea, which will be loaded on the product add/edit page for "
640
+ "vendors."
641
+ msgstr ""
642
+ "Vous pouvez ajouter des CSS dans cette zone de texte, qui sera chargée sur la page "
643
+ "ajouter / modifier produit pour les vendeurs."
644
+
645
+ #: ../classes/admin/settings/sf-options.php:136
646
+ msgid "Capabilities"
647
+ msgstr "Fonctionnalités"
648
+
649
+ #: ../classes/admin/settings/sf-options.php:137
650
+ msgid "Permissions"
651
+ msgstr "Autorisations"
652
+
653
+ #: ../classes/admin/settings/sf-options.php:137
654
+ msgid "General permissions used around the shop"
655
+ msgstr "Autorisations générales utiliséespour la boutique"
656
+
657
+ #: ../classes/admin/settings/sf-options.php:140 ../classes/class-install.php:205
658
+ #: ../views/dashboard/orders.php:24
659
+ msgid "Orders"
660
+ msgstr "Commandes"
661
+
662
+ #: ../classes/admin/settings/sf-options.php:141
663
+ msgid "View orders"
664
+ msgstr "Voir Commandes"
665
+
666
+ #: ../classes/admin/settings/sf-options.php:142
667
+ msgid "Show customer details such as email, address, name, etc, for each order"
668
+ msgstr ""
669
+ "Afficher les détails des clients tels que e-mail, adresse, nom, etc, pour chaque commande"
670
+
671
+ #: ../classes/admin/settings/sf-options.php:149
672
+ msgid "View comments"
673
+ msgstr "Voir les commentaires"
674
+
675
+ #: ../classes/admin/settings/sf-options.php:150
676
+ msgid "View all vendor comments for an order on the frontend"
677
+ msgstr "Voir tous les commentaires des vendeurs pour une commande sur le frontend"
678
+
679
+ #: ../classes/admin/settings/sf-options.php:157
680
+ msgid "Submit comments"
681
+ msgstr "Envois commentaires"
682
+
683
+ #: ../classes/admin/settings/sf-options.php:158
684
+ msgid "Submit comments for an order on the frontend. Eg, tracking ID for a product"
685
+ msgstr "Envois commentaires pour une commande en frontend. Ex numero de suivi par produit"
686
+
687
+ #: ../classes/admin/settings/sf-options.php:165
688
+ msgid "View email addresses"
689
+ msgstr "Voir adresse email"
690
+
691
+ #: ../classes/admin/settings/sf-options.php:166
692
+ msgid "While viewing order details on the frontend, you can disable or enable email addresses"
693
+ msgstr ""
694
+ "Lors de l'affichage des détails de la commande sur l'interface, vous pouvez activer ou "
695
+ "désactiver les adresses e-mail"
696
+
697
+ #: ../classes/admin/settings/sf-options.php:173
698
+ msgid "Export a CSV file of orders for a product"
699
+ msgstr "Export CSV des commandes pour un produit"
700
+
701
+ #: ../classes/admin/settings/sf-options.php:174
702
+ msgid "Vendors could export orders for a product on the frontend"
703
+ msgstr "Les vendeurs peuvent exporter les commandes pour un produit sur le frontend"
704
+
705
+ #: ../classes/admin/settings/sf-options.php:181
706
+ msgid "Reports"
707
+ msgstr "Rapports"
708
+
709
+ #: ../classes/admin/settings/sf-options.php:182
710
+ msgid "View backend sales reports"
711
+ msgstr "Voir les commandes dans l'administration"
712
+
713
+ #: ../classes/admin/settings/sf-options.php:183
714
+ msgid ""
715
+ "Graphs and tables via the Reports page in backend. The reports will only display sales data "
716
+ "that pertain to their products"
717
+ msgstr ""
718
+ "Graphiques et tableaux via la page Rapports en backend. Les rapports n'affichent que les "
719
+ "données sur les ventes qui se rapportent à leurs produits"
720
+
721
+ #: ../classes/admin/settings/sf-options.php:190
722
+ msgid "View Frontend sales reports"
723
+ msgstr "Voir les rapports de ventes en frontend"
724
+
725
+ #: ../classes/admin/settings/sf-options.php:191
726
+ msgid ""
727
+ "Sales table on the frontend on the My Account page. The table will only display sales data "
728
+ "that pertain to their products"
729
+ msgstr ""
730
+ "Tableau des ventes sur le frontend sur la page Mon compte. Le tableau n'affiche que les "
731
+ "données de ventes qui s'appliquent à leurs produits"
732
+
733
+ #: ../classes/admin/settings/sf-options.php:199
734
+ msgid "Submit products"
735
+ msgstr "Soummettre produits"
736
+
737
+ #: ../classes/admin/settings/sf-options.php:200
738
+ msgid ""
739
+ "Vendors could submit a product through the backend, and an admin would approve or deny it"
740
+ msgstr ""
741
+ "Les vendeurs peuvent soumettre un produit à travers le backend, et un admin devra approuver "
742
+ "ou refuser."
743
+
744
+ #: ../classes/admin/settings/sf-options.php:207
745
+ msgid "Edit live products"
746
+ msgstr "Editer produit en ligne"
747
+
748
+ #: ../classes/admin/settings/sf-options.php:208
749
+ msgid ""
750
+ "Vendors could edit an approved product after it has already gone live. There is no approval "
751
+ "or review after editing a live product. This could be dangerous with malicious vendors, so "
752
+ "take caution."
753
+ msgstr ""
754
+ "Les vendeurs peuvent modifier un produit approuvé après qu'il soit en ligne. Il n'y a pas "
755
+ "d'approbation ou d'examen après la modification d'un produit vivant. Cela pourrait être "
756
+ "dangereux avec les vendeurs malveillants. Soyez vigileant."
757
+
758
+ #: ../classes/admin/settings/sf-options.php:215
759
+ msgid "Submit products live without requiring approval"
760
+ msgstr "Soumettre Produits en ligne sans approbation"
761
+
762
+ #: ../classes/admin/settings/sf-options.php:216
763
+ msgid ""
764
+ "Vendors can submit products without review or approval from a shop admin. This could be "
765
+ "dangerous with malicious vendors, so take caution."
766
+ msgstr ""
767
+ "Les vendeurs peuvent soumettre produits sans révision ou l'approbation d'un administrateur "
768
+ "de la boutique. Cela pourrait être dangereux avec les vendeurs malveillants. Soyez "
769
+ "vigileant."
770
+
771
+ #: ../classes/admin/settings/sf-options.php:222
772
+ msgid "Pages"
773
+ msgstr "Pages"
774
+
775
+ #: ../classes/admin/settings/sf-options.php:223
776
+ msgid "Page configuration"
777
+ msgstr "Page de configuration"
778
+
779
+ #: ../classes/admin/settings/sf-options.php:226
780
+ msgid "Vendor dashboard"
781
+ msgstr "Panneau vendeur"
782
+
783
+ #: ../classes/admin/settings/sf-options.php:227
784
+ msgid ""
785
+ "Choose the page that has the shortcode <code>[wcv_vendor_dashboard]</code><br/>By default, "
786
+ "My Account > Vendor Dashboard should have the shortcode."
787
+ msgstr ""
788
+ "Choisir la page qui a le shortcode <code>[pv_vendor_dashboard]</code><br/>Par defaut, My "
789
+ "Account > Vendor Dashboard a le shortcode."
790
+
791
+ #: ../classes/admin/settings/sf-options.php:234
792
+ msgid "Shop settings"
793
+ msgstr "Paramètres de la boutique"
794
+
795
+ #: ../classes/admin/settings/sf-options.php:235
796
+ msgid ""
797
+ "Choose the page that has the shortcode <code>[wcv_shop_settings]</code><br/>These are the "
798
+ "shop settings a vendor can configure."
799
+ msgstr ""
800
+ "Choisir la page qui a le shortcode <code>[pv_shop_settings]</code><br/>Ce sont les "
801
+ "paramètres de la boutique du vendeur"
802
+
803
+ #: ../classes/admin/settings/sf-options.php:242
804
+ msgid "Orders page"
805
+ msgstr "Page Commandes"
806
+
807
+ #: ../classes/admin/settings/sf-options.php:243
808
+ msgid ""
809
+ "Choose the page that has the shortcode <code>[wcv_orders]</code><br/>By default, My Account "
810
+ "> Orders should have the shortcode."
811
+ msgstr ""
812
+ "Choisir la page qui a le shortcode <code>[pv_orders]</code><br/>par défaut, My Account > "
813
+ "Orders a le shortcode."
814
+
815
+ #: ../classes/admin/settings/sf-options.php:250
816
+ msgid "Vendor terms"
817
+ msgstr "Termes du vendeur"
818
+
819
+ #: ../classes/admin/settings/sf-options.php:251
820
+ msgid ""
821
+ "These terms are shown to a user when submitting an application to become a vendor.<br/>If "
822
+ "left blank, no terms will be shown to the applicant."
823
+ msgstr ""
824
+ "Ces termes sont présentés à l'utilisateur lors de la soumission d'une demande pour devenir "
825
+ "un fournisseur. <br/> Si laissé vide, aucun terme seront affichés au demandeur."
826
+
827
+ #: ../classes/admin/settings/sf-options.php:269
828
+ msgid "Payments"
829
+ msgstr "Paiements"
830
+
831
+ #: ../classes/admin/settings/sf-options.php:271
832
+ msgid "User payments"
833
+ msgstr "Paiements Utilisateur"
834
+
835
+ #: ../classes/admin/settings/sf-options.php:272
836
+ #, php-format
837
+ msgid "Total commission currently due: %s. <a href=\"%s\">View details</a>."
838
+ msgstr "Total des commissions dues: %s. <a href=\"%s\">Voir Détails</a>."
839
+
840
+ #: ../classes/admin/settings/sf-options.php:273
841
+ #, php-format
842
+ msgid "Make sure you update your PayPal Adaptive Payments settings <a href=\"%s\">here</a>."
843
+ msgstr ""
844
+ "Assurez-vous que vous avez mis à jour vos paramètres de paiements PayPal <a href=\"%s"
845
+ "\">ici</a>."
846
+
847
+ #: ../classes/admin/settings/sf-options.php:277
848
+ msgid "Instant pay"
849
+ msgstr "Paiement instantané"
850
+
851
+ #: ../classes/admin/settings/sf-options.php:278
852
+ msgid "Instantly pay vendors their commission when an order is made"
853
+ msgstr "Payer instantanément les vendeurs quand une commande est finalisée"
854
+
855
+ #: ../classes/admin/settings/sf-options.php:279
856
+ msgid ""
857
+ "For this to work, customers must checkout with the PayPal Adaptive Payments gateway. Using "
858
+ "other gateways will not pay vendors instantly"
859
+ msgstr ""
860
+ "Pour que cela fonctionne, les clients doivent accéder à la passerelle Adaptive PayPal. "
861
+ "L'utilisation d'autres passerelles ne paiera pas les vendeurs instantanément"
862
+
863
+ #: ../classes/admin/settings/sf-options.php:286
864
+ msgid "Payment schedule"
865
+ msgstr "Calendrier des paiements"
866
+
867
+ #: ../classes/admin/settings/sf-options.php:287
868
+ msgid "Note: Schedule will only work if instant pay is unchecked"
869
+ msgstr ""
870
+ "Note: Calendrier des paiements ne fonctionne que si le paiement instantané est décoché"
871
+
872
+ #: ../classes/admin/settings/sf-options.php:292
873
+ msgid "Weekly"
874
+ msgstr "Par semaine"
875
+
876
+ #: ../classes/admin/settings/sf-options.php:293
877
+ msgid "Biweekly"
878
+ msgstr "Par 2 semaines"
879
+
880
+ #: ../classes/admin/settings/sf-options.php:294
881
+ msgid "Monthly"
882
+ msgstr "Par mois"
883
+
884
+ #: ../classes/admin/settings/sf-options.php:295
885
+ msgid "Manual"
886
+ msgstr "Manuel"
887
+
888
+ #: ../classes/admin/settings/sf-options.php:296
889
+ msgid "Now"
890
+ msgstr "Maintenant"
891
+
892
+ #: ../classes/admin/settings/sf-options.php:301
893
+ msgid "Email notification"
894
+ msgstr "Email de notification"
895
+
896
+ #: ../classes/admin/settings/sf-options.php:302
897
+ msgid ""
898
+ "Send the WooCommerce admin an email each time a payment has been made via the payment "
899
+ "schedule options above"
900
+ msgstr ""
901
+ "Envoyer a l'admin WooCommerce un email chaque fois qu'un paiement a été effectué via les "
902
+ "options du calendrier de paiement ci-dessus"
903
+
904
+ #: ../classes/class-cron.php:87
905
+ #, php-format
906
+ msgid "Payment total: %s"
907
+ msgstr "Total a payer: %s"
908
+
909
+ #: ../classes/class-cron.php:148
910
+ msgid "Once Weekly"
911
+ msgstr "Chaque semaine"
912
+
913
+ #: ../classes/class-cron.php:153
914
+ msgid "Once every two weeks"
915
+ msgstr "Aux 2 semaines"
916
+
917
+ #: ../classes/class-cron.php:158
918
+ msgid "Once a month"
919
+ msgstr "Chaque mois"
920
+
921
+ #: ../classes/class-install.php:99 ../classes/class-install.php:253
922
+ msgid "Pending Vendor"
923
+ msgstr "Vendeur En Attente"
924
+
925
+ #: ../classes/class-install.php:204
926
+ msgid "Vendor Dashboard"
927
+ msgstr "Tableau de bord Du vendeur"
928
+
929
+ #: ../classes/class-install.php:206
930
+ msgid "Shop Settings"
931
+ msgstr "Paramètres de votre boutique"
932
+
933
+ #: ../classes/front/class-vendor-cart.php:41 ../classes/front/class-vendor-shop.php:263
934
+ msgid "Sold by"
935
+ msgstr "Vendu par"
936
+
937
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:42
938
+ msgid ""
939
+ "Order unmarked shipped. <br><br>Caution: Clicking Reload in your browser will mark the "
940
+ "order as shipped and email the buyer again, potentially spamming them."
941
+ msgstr ""
942
+ "Commande envoyée. <br><br>Attension: Si vous rechargez la page la commande peut être "
943
+ "marquée envoyée et le courriel pour le vendeur peut être envoyé une nouvelle fois, ceci "
944
+ "peut être considéré comme du spam."
945
+
946
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:53
947
+ msgid ""
948
+ "Order marked shipped. <br><br>Caution: Clicking Reload in your browser will unmark the "
949
+ "order as shipped."
950
+ msgstr ""
951
+ "Commande envoyée. <br><br>Attension: Si vous rechargez la page la commande peut être "
952
+ "marquée comme non-envoyée."
953
+
954
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:79
955
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:80
956
+ #: ../classes/front/orders/class-orders.php:144 ../classes/front/orders/class-orders.php:145
957
+ msgid "Tracking number"
958
+ msgstr "Numero de suivi"
959
+
960
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:82
961
+ #: ../classes/front/orders/class-orders.php:147
962
+ msgid "Success. Your tracking number has been updated."
963
+ msgstr "Succes. Votre numéro de suivi a ete mis a jour"
964
+
965
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:106
966
+ msgid "Your PayPal address is not a valid email address."
967
+ msgstr "Votre E-mail PayPal n'est pas valide."
968
+
969
+ #: ../classes/front/dashboard/class-vendor-dashboard.php:115
970
+ msgid "That shop name is already taken. Your shop name must be unique."
971
+ msgstr "Ce nom de la boutique est déjà pris. Votre nom de la boutique doit être unique."
972
+
973
+ #: ../classes/front/orders/class-export-csv.php:37
974
+ msgid "Extra data"
975
+ msgstr "Extra data"
976
+
977
+ #: ../classes/front/orders/class-export-csv.php:38 ../views/dashboard/reports.php:18
978
+ #: ../views/emails/admin-new-order.php:23 ../views/emails/notify-vendor-shipped.php:23
979
+ msgid "Quantity"
980
+ msgstr "Quantité"
981
+
982
+ #: ../classes/front/orders/class-orders.php:107
983
+ msgid ""
984
+ "You haven't selected a product's orders to view! Please go back to the Vendor Dashboard and "
985
+ "click Show Orders on the product you'd like to view."
986
+ msgstr ""
987
+ "Vous n'avez pas choisi les commandes d'un produit a voir ! S'il vous plaît revenir au "
988
+ "tableau de bord du vendeur et cliquez sur Afficher les commandes du produit que vous "
989
+ "souhaitez consulter."
990
+
991
+ #: ../classes/front/orders/class-orders.php:111
992
+ msgid "No orders."
993
+ msgstr "Pas de Commandes"
994
+
995
+ #: ../classes/front/orders/class-orders.php:209
996
+ msgid "Product Title"
997
+ msgstr "Titre du Produit"
998
+
999
+ #: ../classes/front/orders/class-orders.php:210
1000
+ msgid "Full name"
1001
+ msgstr "Nom Complet"
1002
+
1003
+ #: ../classes/front/orders/class-orders.php:211
1004
+ msgid "Address"
1005
+ msgstr "Adresse"
1006
+
1007
+ #: ../classes/front/orders/class-orders.php:212
1008
+ msgid "City"
1009
+ msgstr "Ville"
1010
+
1011
+ #: ../classes/front/orders/class-orders.php:213
1012
+ msgid "State"
1013
+ msgstr "Etat"
1014
+
1015
+ #: ../classes/front/orders/class-orders.php:214
1016
+ msgid "Zip"
1017
+ msgstr "Code Postal "
1018
+
1019
+ #: ../classes/front/orders/class-orders.php:215
1020
+ msgid "Email address"
1021
+ msgstr "Adresse Email"
1022
+
1023
+ #: ../classes/front/orders/class-submit-comment.php:41
1024
+ msgid "You've left the comment field empty!"
1025
+ msgstr "Vous avez laissé le champ de commentaire vide!"
1026
+
1027
+ #: ../classes/front/orders/class-submit-comment.php:63
1028
+ msgid "Success. The customer has been notified of your comment."
1029
+ msgstr "Succès. Le client a été avisé de votre commentaire."
1030
+
1031
+ #: ../classes/front/signup/class-vendor-signup.php:44 ../views/dashboard/denied.php:22
1032
+ msgid "Apply to become a vendor? "
1033
+ msgstr "S'incrire pour devenir vendeur ?"
1034
+
1035
+ #: ../classes/front/signup/class-vendor-signup.php:53 ../views/dashboard/denied.php:33
1036
+ #, php-format
1037
+ msgid "I have read and accepted the <a href=\"%s\">terms and conditions</a>"
1038
+ msgstr "J'ai lu et accepté <a href=\"%s\">les termes et conditions</a>"
1039
+
1040
+ #: ../classes/front/signup/class-vendor-signup.php:87
1041
+ msgid "Application denied. You are an administrator."
1042
+ msgstr "Demande rejetée. Vous êtes un administrateur."
1043
+
1044
+ #: ../classes/front/signup/class-vendor-signup.php:89
1045
+ msgid "Your application has been submitted."
1046
+ msgstr "Votre demande a été soumise."
1047
+
1048
+ #: ../classes/front/signup/class-vendor-signup.php:125
1049
+ msgid "You must accept the terms and conditions to become a vendor."
1050
+ msgstr "Vous devez accepter les termes et conditions pour devenir un vendeur."
1051
+
1052
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:43
1053
+ msgid "PayPal Adaptive Payments"
1054
+ msgstr "PayPal Adaptive Payments"
1055
+
1056
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:119
1057
+ #, php-format
1058
+ msgid "Something went wrong. Response from PayPal invalidated this order. Status: %s."
1059
+ msgstr "Something went wrong. Response from PayPal invalidated this order. Status: %s."
1060
+
1061
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:124
1062
+ msgid "IPN payment completed"
1063
+ msgstr "IPN payment completed"
1064
+
1065
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:146
1066
+ msgid "Enable PayPal Adaptive Payments"
1067
+ msgstr "Activer PayPal Adaptive Payments"
1068
+
1069
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:152
1070
+ msgid "Method Title"
1071
+ msgstr "Titre de la méthode"
1072
+
1073
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:153
1074
+ msgid "This controls the title which the user sees during checkout."
1075
+ msgstr "Contrôle du titre que voit l'utilisateur lors de la commande."
1076
+
1077
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:154
1078
+ msgid "PayPal"
1079
+ msgstr "PayPal"
1080
+
1081
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:159
1082
+ msgid "Description"
1083
+ msgstr "Description"
1084
+
1085
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:160
1086
+ msgid "This controls the description which the user sees during checkout."
1087
+ msgstr "Contrôle la description que voit l'utilisateur lors de la commande."
1088
+
1089
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:161
1090
+ msgid "Pay via PayPal!"
1091
+ msgstr "Payer via Paypal!"
1092
+
1093
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:172
1094
+ msgid "Live Credentials"
1095
+ msgstr "Certificats en ligne"
1096
+
1097
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:174
1098
+ #, php-format
1099
+ msgid ""
1100
+ "You must have an <a href=\"%s\">Application ID</a> to process live transactions. You do not "
1101
+ "need one for testing in Sandbox mode."
1102
+ msgstr ""
1103
+ "You must have an <a href=\"%s\">Application ID</a> to process live transactions. You do not "
1104
+ "need one for testing in Sandbox mode."
1105
+
1106
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:179
1107
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:213
1108
+ msgid "PayPal Email"
1109
+ msgstr "Email PayPal"
1110
+
1111
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:180
1112
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:214
1113
+ msgid "The email address main payments should go to."
1114
+ msgstr "L'email principal de paiement"
1115
+
1116
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:185
1117
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:219
1118
+ msgid "API Username"
1119
+ msgstr "API Username"
1120
+
1121
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:190
1122
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:224
1123
+ msgid "API Password"
1124
+ msgstr "API Password"
1125
+
1126
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:195
1127
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:229
1128
+ msgid "API Signature"
1129
+ msgstr "API Signature"
1130
+
1131
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:200
1132
+ msgid "Application ID"
1133
+ msgstr "Application ID"
1134
+
1135
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:202
1136
+ msgid "Only required when doing live transactions."
1137
+ msgstr "N'est nécessaire que lorsque vous effectuez des transactions en direct."
1138
+
1139
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:206
1140
+ msgid "Sandbox Credentials"
1141
+ msgstr "Sandbox Credentials"
1142
+
1143
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:208
1144
+ #, php-format
1145
+ msgid ""
1146
+ "You can signup for a sandbox developer account <a href=\"%s\">here</a>. You need a "
1147
+ "developer account if you want to enable Sandbox mode for testing."
1148
+ msgstr "Vous devez souscrire un compte développeur Sandox <a href=\"%s\">ici</a>. "
1149
+
1150
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:240
1151
+ msgid "Misc. Settings"
1152
+ msgstr "Configurations diverses"
1153
+
1154
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:245
1155
+ msgid "Enable PayPal Sandbox mode"
1156
+ msgstr "Activer le mode PayPal Sandbox"
1157
+
1158
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:251
1159
+ msgid "Enable logging"
1160
+ msgstr "Activer logging"
1161
+
1162
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:269
1163
+ msgid ""
1164
+ "The PayPal Adaptive Payments gateway can instantly pay your vendors their due commission "
1165
+ "(if enabled). Also used to mass pay vendors on a schedule / manual method (if enabled)."
1166
+ msgstr ""
1167
+ "La passerelle PayPal Adaptive Payments peut instantanément payer les vendeurs selon leur "
1168
+ "commission (si activé). Également utilisé pour les fournisseurs de rémunération en masse "
1169
+ "programmée ou par la méthode manuelle (si activé)."
1170
+
1171
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1172
+ msgid "Gateway Disabled"
1173
+ msgstr "Passerelle désactivée"
1174
+
1175
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:280
1176
+ #, php-format
1177
+ msgid "%s does not support your store currency."
1178
+ msgstr "%s ne supporte pas votre système monétaire."
1179
+
1180
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:369
1181
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:483
1182
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:150
1183
+ #, php-format
1184
+ msgid "Error: %s"
1185
+ msgstr "Erreur: %s"
1186
+
1187
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:378
1188
+ #: ../classes/gateways/PayPal_AdvPayments/paypal_ap.php:379
1189
+ #, php-format
1190
+ msgid "Error ID: %s. %s"
1191
+ msgstr "Erreur ID: %s. %s"
1192
+
1193
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:115
1194
+ msgid "No vendors found to pay. Maybe they haven't set a PayPal address?"
1195
+ msgstr ""
1196
+ "Pas de vendeurs trouvés à payer. Peut-être qu'ils n'ont pas défini une adresse PayPal?"
1197
+
1198
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:164
1199
+ msgid "All due commission has been paid for."
1200
+ msgstr "Toutes les commissions ont été payée."
1201
+
1202
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:170
1203
+ msgid ""
1204
+ "All due commission has been paid for, but I could not clear it from their profiles due to "
1205
+ "an internal error. Commission will still be listed as due. Please manually mark the "
1206
+ "commission as paid from the Commissions page."
1207
+ msgstr ""
1208
+ "Toutes les commission ont été payé, mais je ne pouvais pas le faire disparaître de leurs "
1209
+ "profils en raison d'une erreur interne. Les commissions seront toujours listé comme a "
1210
+ "payer. S'il vous plaît marquer manuellement les commissions comme payés à la page des "
1211
+ "commissions."
1212
+
1213
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:205
1214
+ msgid "WooCommerce: Mass payments for vendors update"
1215
+ msgstr "WooCommerce: mise à jour des paiements groupés des vendeurs"
1216
+
1217
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:207
1218
+ msgid "Hello! A payment was just triggered to mass pay all vendors their due commission."
1219
+ msgstr ""
1220
+ "Bonjour! Un paiement a été déclenché pour payer tous les vendeurs leurs commissions dues."
1221
+
1222
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:208
1223
+ #, php-format
1224
+ msgid "Payment status: %s."
1225
+ msgstr "Statut des paiement: %s."
1226
+
1227
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:209
1228
+ #, php-format
1229
+ msgid "Payment message: %s."
1230
+ msgstr "Message Paiement: %s."
1231
+
1232
+ #: ../classes/gateways/PayPal_Masspay/class-paypal-masspay.php:212
1233
+ #, php-format
1234
+ msgid "Payment total: %s."
1235
+ msgstr "Paiement total: %s."
1236
+
1237
+ #: ../views/dashboard/denied.php:8
1238
+ msgid ""
1239
+ "Your account has not yet been approved to become a vendor. When it is, you will receive an "
1240
+ "email telling you that your account is approved!"
1241
+ msgstr ""
1242
+ "Votre compte vendeur n'est pas encore approuvé. Quand il y sera, vous recevrez un email "
1243
+ "vous indiquant que votre compte est approuvé!"
1244
+
1245
+ #: ../views/dashboard/denied.php:12
1246
+ msgid ""
1247
+ "Your account is not setup as a vendor yet. If you would like to register, please complete "
1248
+ "this page!"
1249
+ msgstr ""
1250
+ "Votre compte n'est pas configuré comme vendeur. <br />Si vous souhaitez vous inscrire, "
1251
+ "merci compléter cette page!"
1252
+
1253
+ #: ../views/dashboard/denied.php:53
1254
+ msgid "Submit"
1255
+ msgstr "Soumettre"
1256
+
1257
+ #: ../views/dashboard/links.php:1
1258
+ msgid "Control Center"
1259
+ msgstr "Mon Espace"
1260
+
1261
+ #: ../views/dashboard/links.php:3
1262
+ msgid "My shop"
1263
+ msgstr "Ma boutique"
1264
+
1265
+ #: ../views/dashboard/links.php:7
1266
+ msgid "My settings"
1267
+ msgstr "Mes paramètres"
1268
+
1269
+ #: ../views/dashboard/links.php:13
1270
+ msgid "Submit a product"
1271
+ msgstr "Soumettre un produit"
1272
+
1273
+ #: ../views/dashboard/orders.php:7 ../views/dashboard/orders.php:10
1274
+ msgid "Hide items"
1275
+ msgstr "Masquer les items"
1276
+
1277
+ #: ../views/dashboard/orders.php:8 ../views/dashboard/orders.php:67
1278
+ msgid "View items"
1279
+ msgstr "Voir les articles"
1280
+
1281
+ #: ../views/dashboard/orders.php:37
1282
+ msgid "Links"
1283
+ msgstr "Liens"
1284
+
1285
+ #: ../views/dashboard/orders.php:67
1286
+ msgid "Unmark shipped"
1287
+ msgstr "Marqué comme non-envoyé"
1288
+
1289
+ #: ../views/dashboard/orders.php:67
1290
+ msgid "Mark shipped"
1291
+ msgstr "Marquer comme envoyé"
1292
+
1293
+ #: ../views/dashboard/orders.php:67
1294
+ msgid "Tracking"
1295
+ msgstr "Suivi d'envoi"
1296
+
1297
+ #: ../views/dashboard/orders.php:117
1298
+ msgid "You have no orders during this period."
1299
+ msgstr "Vous n'avez pas de commande pendant cette période."
1300
+
1301
+ #: ../views/dashboard/reports.php:1
1302
+ msgid "Sales Report"
1303
+ msgstr "Rapport des ventes"
1304
+
1305
+ #: ../views/dashboard/reports.php:20
1306
+ msgid "Rate"
1307
+ msgstr "Taux"
1308
+
1309
+ #: ../views/dashboard/reports.php:47
1310
+ msgid "Show Orders"
1311
+ msgstr "Voir Commandes"
1312
+
1313
+ #: ../views/dashboard/reports.php:56
1314
+ msgid "Totals"
1315
+ msgstr "Totales"
1316
+
1317
+ #: ../views/dashboard/reports.php:71
1318
+ msgid "You have no sales during this period."
1319
+ msgstr "Vous n'avez pas de ventes au cours de cette période."
1320
+
1321
+ #: ../views/dashboard/reports.php:82
1322
+ msgid "You haven't made any sales yet."
1323
+ msgstr "Vous n'avez pas encore fait de vente."
1324
+
1325
+ #: ../views/dashboard/settings/paypal-email-form.php:2
1326
+ msgid "PayPal Address"
1327
+ msgstr "Adresse Email Paypal"
1328
+
1329
+ #: ../views/dashboard/settings/paypal-email-form.php:3
1330
+ msgid "Your PayPal address is used to send you your commission."
1331
+ msgstr "Votre adresse PayPal est utilisée pour vous payer votre commission."
1332
+
1333
+ #: ../views/dashboard/settings/seller-info.php:4
1334
+ msgid "This is displayed on each of your products."
1335
+ msgstr "Ce message s'affiche sur chacun de vos produits."
1336
+
1337
+ #: ../views/dashboard/settings/settings.php:47
1338
+ msgid "Save"
1339
+ msgstr "Sauvegarder"
1340
+
1341
+ #: ../views/dashboard/settings/shop-description.php:2
1342
+ msgid "Shop Description"
1343
+ msgstr "Description de votre boutique"
1344
+
1345
+ #: ../views/dashboard/settings/shop-description.php:3
1346
+ #, php-format
1347
+ msgid "This is displayed on your <a href=\"%s\">shop page</a>."
1348
+ msgstr "Ceci est affiché sur <a href=\"%s\">page boutique</a>. "
1349
+
1350
+ #: ../views/dashboard/settings/shop-name.php:2
1351
+ msgid "Shop Name"
1352
+ msgstr "Nom de votre boutique"
1353
+
1354
+ #: ../views/dashboard/settings/shop-name.php:3
1355
+ msgid "Your shop name is public and must be unique."
1356
+ msgstr "Le nom de votre boutique est publique et doit être unique."
1357
+
1358
+ #: ../views/emails/admin-new-order.php:13
1359
+ #, php-format
1360
+ msgid "You have received an order from %s. Their order is as follows:"
1361
+ msgstr "Vous avez reçu une commande de %s. Cette commande est la suivante:"
1362
+
1363
+ #: ../views/emails/admin-new-order.php:17 ../views/emails/notify-vendor-shipped.php:17
1364
+ #, php-format
1365
+ msgid "Order: %s"
1366
+ msgstr "Commande: %s"
1367
+
1368
+ #: ../views/emails/admin-new-order.php:24 ../views/emails/notify-vendor-shipped.php:24
1369
+ msgid "Price"
1370
+ msgstr "Prix"
1371
+
1372
+ #: ../views/emails/admin-new-order.php:50 ../views/emails/notify-vendor-shipped.php:50
1373
+ msgid "Customer details"
1374
+ msgstr "Détails client"
1375
+
1376
+ #: ../views/emails/admin-new-order.php:53 ../views/emails/notify-vendor-shipped.php:53
1377
+ msgid "Email:"
1378
+ msgstr "Courriel:"
1379
+
1380
+ #: ../views/emails/admin-new-order.php:56 ../views/emails/notify-vendor-shipped.php:56
1381
+ msgid "Tel:"
1382
+ msgstr "Tél:"
1383
+
1384
+ #: ../views/emails/application-status.php:5
1385
+ #, php-format
1386
+ msgid "Hi there. This is a notification about a vendor application on %s."
1387
+ msgstr "Il s'agit d'une notification pour une inscription Vendeur sur % s."
1388
+
1389
+ #: ../views/emails/application-status.php:8
1390
+ #, php-format
1391
+ msgid "Application status: %s"
1392
+ msgstr "Statut du Candidat: %s"
1393
+
1394
+ #: ../views/emails/application-status.php:9
1395
+ #, php-format
1396
+ msgid "Applicant username: %s"
1397
+ msgstr "Nom d'utilisateur du Candidat: %s"
1398
+
1399
+ #: ../views/emails/new-product.php:5
1400
+ #, php-format
1401
+ msgid "Hi there. This is a notification about a new product on %s."
1402
+ msgstr "Hello. Il s'agit d'une notification a propos d'un nouveau produit sur​​% s."
1403
+
1404
+ #: ../views/emails/new-product.php:8
1405
+ #, php-format
1406
+ msgid "Product title: %s"
1407
+ msgstr "Titre du Produit: %s"
1408
+
1409
+ #: ../views/emails/new-product.php:9
1410
+ #, php-format
1411
+ msgid "Submitted by: %s"
1412
+ msgstr "Soumis par: %s"
1413
+
1414
+ #: ../views/emails/new-product.php:10
1415
+ #, php-format
1416
+ msgid "Edit product: %s"
1417
+ msgstr "Editer produit: %s"
1418
+
1419
+ #: ../views/emails/notify-vendor-shipped.php:13
1420
+ msgid ""
1421
+ "A vendor has marked part of your order as shipped. The items that are shipped are as "
1422
+ "follows:"
1423
+ msgstr ""
1424
+ "Un vendeur a marqué une partie de votre commande comme envoyée. Les articles envoyés sont "
1425
+ "les suivants:"
1426
+
1427
+ #: ../views/orders/comments/add-new-comment.php:11
1428
+ msgid "Add comment"
1429
+ msgstr "Ajouter Commentaire"
1430
+
1431
+ #: ../views/orders/comments/existing-comments.php:9
1432
+ #, php-format
1433
+ msgid "added %s ago"
1434
+ msgstr "Ajouter il y a %s"
1435
+
1436
+ #: ../views/orders/csv-export.php:6
1437
+ msgid "Export orders"
1438
+ msgstr "Export Commandes"
1439
+
1440
+ #: ../views/orders/customer-note/customer-note.php:4
1441
+ msgid "Customer note"
1442
+ msgstr "Note de l'acheteur"
1443
+
1444
+ #: ../views/orders/customer-note/customer-note.php:8
1445
+ msgid "No customer note."
1446
+ msgstr "Pas de note de l'acheteur"
1447
+
1448
+ #: ../views/orders/orders.php:84
1449
+ #, php-format
1450
+ msgid "Comments (%s)"
1451
+ msgstr "Commentaires (%s)"
1452
+
1453
+ #: ../views/orders/shipping/shipping-form.php:46
1454
+ msgid "Provider:"
1455
+ msgstr "Fournisseur"
1456
+
1457
+ #: ../views/orders/shipping/shipping-form.php:48
1458
+ msgid "Custom Provider"
1459
+ msgstr "Fournisseur personnalisé"
1460
+
1461
+ #: ../views/orders/shipping/shipping-form.php:68
1462
+ msgid "Provider Name:"
1463
+ msgstr "Nom du fournisseur:"
1464
+
1465
+ #: ../views/orders/shipping/shipping-form.php:76
1466
+ msgid "Tracking number:"
1467
+ msgstr "Numéro de suivi:"
1468
+
1469
+ #: ../views/orders/shipping/shipping-form.php:84
1470
+ msgid "Tracking link:"
1471
+ msgstr "Lien de suivi:"
1472
+
1473
+ #: ../views/orders/shipping/shipping-form.php:93
1474
+ msgid "Date shipped:"
1475
+ msgstr "Date de l'expédition:"
1476
+
1477
+ #: ../views/orders/shipping/shipping-form.php:101
1478
+ msgid "Preview:"
1479
+ msgstr "Aperçu:"
1480
+
1481
+ #: ../views/orders/shipping/shipping-form.php:101
1482
+ msgid "Click here to track your shipment"
1483
+ msgstr "Cliquez ici pour votre numero de tracking"
1484
+
1485
+ #: ../views/orders/shipping/shipping-form.php:110
1486
+ msgid "Update tracking number"
1487
+ msgstr "Update numéro de tracking"
1488
+
1489
+ #: ../views/orders/shipping/shipping-form.php:112
1490
+ msgid "Mark as shipped"
1491
+ msgstr "Marquer comme envoyé"
1492
+
1493
+ #: ../views/orders/table-body.php:25
1494
+ #, php-format
1495
+ msgid "Quantity: %d"
1496
+ msgstr "Quantité: %d"
1497
+
1498
+ #~ msgid "Product Vendor"
1499
+ #~ msgstr "Product Vendor"
1500
+
1501
+ #~ msgid "<b>Product Vendor is disabled</b>. Product Vendor requires WooCommerce v2.0.1."
1502
+ #~ msgstr "<b>Product Vendor est désactivé</b>. Product Vendor nécessite WooCommerce v2.0.1."
1503
+
1504
+ #~ msgid "Product Vendors"
1505
+ #~ msgstr "Vendeurs"
1506
+
1507
+ #~ msgid "Commission Due"
1508
+ #~ msgstr "Commission due"
1509
+
1510
+ #~ msgid ""
1511
+ #~ "<b>Important:</b> Unless you're using the <a href=\"%s\">beta version of TRS2</a>, all "
1512
+ #~ "shipping costs will be given to the shop admin. Vendors will not receive shipping costs."
1513
+ #~ msgstr ""
1514
+ #~ "<b>Important:</b> Unless you're using the <a href=\"%s\">beta version of TRS2</a>, all "
1515
+ #~ "shipping costs will be given to the shop admin. Vendors will not receive shipping costs."
1516
+
1517
+ #~ msgid ""
1518
+ #~ "The plugin has been updated, but could not be reactivated. Please reactivate it manually."
1519
+ #~ msgstr ""
1520
+ #~ "The plugin has been updated, but could not be reactivated. Please reactivate it manually."
1521
+
1522
+ #~ msgid "Plugin reactivated successfully."
1523
+ #~ msgstr "Plugin réactivé avec succès."
1524
+
1525
+ #~ msgid "MGates.me Updates"
1526
+ #~ msgstr "Mises a jour MGates.me"
1527
+
1528
+ #~ msgid "MGates.me Plugin Updater"
1529
+ #~ msgstr "MGates.me Plugin Updater"
1530
+
1531
+ #~ msgid "Enter your license key to automatically receive updates."
1532
+ #~ msgstr "Entrez votre numéro de licence afin de recevoir automatiquement les mises à jour."
1533
+
1534
+ #~ msgid "Check for updates <b>now</b>"
1535
+ #~ msgstr "Check for updates <b>now</b>"
1536
+
1537
+ #~ msgid ""
1538
+ #~ "<b style=\"color: #468847;\">Key deactivated.</b> License key for <i>%s</i> has been "
1539
+ #~ "<b>deactivated</b>."
1540
+ #~ msgstr ""
1541
+ #~ "<b style=\"color: #468847;\">Key deactivated.</b> License key for <i>%s</i> has been "
1542
+ #~ "<b>deactivated</b>."
1543
+
1544
+ #~ msgid ""
1545
+ #~ "<b style=\"color: #B94A48;\">Error.</b> License key for <i>%s</i> could not be "
1546
+ #~ "deactivated."
1547
+ #~ msgstr ""
1548
+ #~ "<b style=\"color: #B94A48;\">Error.</b> License key for <i>%s</i> could not be "
1549
+ #~ "deactivated."
1550
+
1551
+ #~ msgid ""
1552
+ #~ "<b style=\"color: #468847;\">Key activated.</b> License key for <i>%s</i> has been "
1553
+ #~ "<b>activated</b>."
1554
+ #~ msgstr ""
1555
+ #~ "<b style=\"color: #468847;\">Key activated.</b> License key for <i>%s</i> has been "
1556
+ #~ "<b>activated</b>."
1557
+
1558
+ #~ msgid ""
1559
+ #~ "<b style=\"color: #B94A48;\">Erreur.</b> La clé de licence pour <i>%s</i> est invalide."
1560
+ #~ msgstr ""
1561
+ #~ "<b style=\"color: #B94A48;\">Erreur.</b> La clé de licence pour <i>%s</i> est invalide."
1562
+
1563
+ #~ msgid "Enable MGates.me Plugin Updates."
1564
+ #~ msgstr "Authoriser les mises a jour des plugin MGates.me."
1565
+
1566
+ #~ msgid "<a href=\"%1$s\">Add your license keys</a> to enable automatic plugin updates."
1567
+ #~ msgstr ""
1568
+ #~ "<a href=\"%1$s\">Ajouter votre clé de licence</a> pour activer le plugin automatiquement "
1569
+ #~ "updates."
1570
+
1571
+ #~ msgid "Hide This Message"
1572
+ #~ msgstr "Masquer ce message"
1573
+
1574
+ #~ msgid "Your account has not yet been approved to become a vendor."
1575
+ #~ msgstr "Votre compte n'a pas encore été approuvé pour devenir Vendeur."
1576
+
1577
+ #~ msgid "Your account is not vendor capable."
1578
+ #~ msgstr "Votre compte n'a pas les authorisations vendeur."
WCVendors/views/dashboard/links.php CHANGED
@@ -1,18 +1,12 @@
1
- <h2><?php _e( 'Control Center', 'wcvendors' ); ?></h2>
2
  <p>
3
- <b><?php _e( 'My shop', 'wcvendors' ); ?></b><br/>
4
- <a href="<?php echo $shop_page; ?>"><?php echo $shop_page; ?></a>
5
- </p>
6
- <p>
7
- <b><?php _e( 'My settings', 'wcvendors' ); ?></b><br/>
8
- <a href="<?php echo $settings_page; ?>"><?php echo $settings_page; ?></a>
9
- </p>
10
 
11
  <?php if ( $can_submit ) { ?>
12
- <p>
13
- <b><?php _e( 'Submit a product', 'wcvendors' ); ?></b><br/>
14
- <a target="_TOP" href="<?php echo $submit_link; ?>"><?php echo $submit_link; ?></a>
15
- </p>
16
  <?php } ?>
 
17
 
18
  <hr>
1
+ <center>
2
  <p>
3
+ <a href="<?php echo $shop_page; ?>" class="button">View Your Store</a>
4
+ <a href="<?php echo $settings_page; ?>" class="button">Store Settings</a>
 
 
 
 
 
5
 
6
  <?php if ( $can_submit ) { ?>
7
+ <a target="_TOP" href="<?php echo $submit_link; ?>" class="button">Add New Product</a>
8
+ <a target="_TOP" href="<?php echo $edit_link; ?>" class="button">Edit Products</a>
 
 
9
  <?php } ?>
10
+ </center>
11
 
12
  <hr>
changelog.txt CHANGED
@@ -1,5 +1,19 @@
1
  Changelog for WC Vendors
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  Version 1.4.5
4
 
5
  * Updated: select2 3.5.2 for settings api
1
  Changelog for WC Vendors
2
 
3
+ Version 1.5.0
4
+
5
+ * Added: Spanish translation thanks Mauricio
6
+ * Added: French translation thanks JP
7
+ * Added: CSS class for sold by (classes same as filters in those files)
8
+ * Fixed: Paypal return URL
9
+ * Added: Vendor Dashboard UI Improvements
10
+ * Added: WC Vendors Test Gateway
11
+ * Updated: ToolTips to be more helpful
12
+ * Added: Admin option for not giving shipping cost to vendor
13
+ * Fixed: Disable notify admin
14
+ * Fixed: Mark as shipped/unshipped
15
+ * Fixed: Duplicate column name
16
+
17
  Version 1.4.5
18
 
19
  * Updated: select2 3.5.2 for settings api
class-wc-vendors.php CHANGED
@@ -7,7 +7,7 @@
7
  * Author: WC Vendors
8
  * Author URI: http://wcvendors.com
9
  *
10
- * Version: 1.4.5
11
  * Requires at least: 4.0.0
12
  * Tested up to: 4.1.1
13
  *
@@ -201,6 +201,7 @@ if ( is_woocommerce_activated() ) {
201
  {
202
  require_once wcv_plugin_dir . 'classes/gateways/PayPal_AdvPayments/paypal_ap.php';
203
  require_once wcv_plugin_dir . 'classes/gateways/PayPal_Masspay/class-paypal-masspay.php';
 
204
  }
205
 
206
 
7
  * Author: WC Vendors
8
  * Author URI: http://wcvendors.com
9
  *
10
+ * Version: 1.5.0
11
  * Requires at least: 4.0.0
12
  * Tested up to: 4.1.1
13
  *
201
  {
202
  require_once wcv_plugin_dir . 'classes/gateways/PayPal_AdvPayments/paypal_ap.php';
203
  require_once wcv_plugin_dir . 'classes/gateways/PayPal_Masspay/class-paypal-masspay.php';
204
+ require_once wcv_plugin_dir . 'classes/gateways/WCV_Gateway_Test/class-wcv-gateway-test.php';
205
  }
206
 
207
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Author URI: http://www.wcvendors.com/
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
  Tested up to: 4.1.1
9
- Stable tag: 1.4.5
10
  License: GPLv2 or later
11
 
12
  The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
@@ -58,6 +58,20 @@ No Upgrade required at this time.
58
 
59
  == Changelog ==
60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  = Version 1.4.5 - February 22nd 2015 =
62
 
63
  * Updated: select2 3.5.2 for settings api
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
  Tested up to: 4.1.1
9
+ Stable tag: 1.5.0
10
  License: GPLv2 or later
11
 
12
  The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
58
 
59
  == Changelog ==
60
 
61
+ = Version 1.5.0 - March 11th 2015 =
62
+
63
+ * Added: Spanish translation thanks Mauricio
64
+ * Added: French translation thanks JP
65
+ * Added: CSS class for sold by (classes same as filters in those files)
66
+ * Fixed: Paypal return URL
67
+ * Added: Vendor Dashboard UI Improvements
68
+ * Added: WC Vendors Test Gateway
69
+ * Updated: ToolTips to be more helpful
70
+ * Added: Admin option for not giving shipping cost to vendor
71
+ * Fixed: Disable notify admin
72
+ * Fixed: Mark as shipped/unshipped
73
+ * Fixed: Duplicate column name
74
+
75
  = Version 1.4.5 - February 22nd 2015 =
76
 
77
  * Updated: select2 3.5.2 for settings api