Dokan – Best WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy - Version 3.0.1

Version Description

Download this release

Release Info

Developer tareq1988
Plugin Icon wp plugin Dokan – Best WooCommerce Multivendor Marketplace Solution – Build Your Own Amazon, eBay, Etsy
Version 3.0.1
Comparing to
See all releases

Code changes from version 3.0.0 to 3.0.1

Files changed (60) hide show
  1. assets/js/dokan.js +48 -0
  2. depricated/depricated-functions.php +2 -2
  3. depricated/depricated-hooks.php +1 -1
  4. dokan.php +4 -4
  5. includes/Abstracts/DokanBackgroundProcesses.php +2 -2
  6. includes/Abstracts/DokanModel.php +6 -6
  7. includes/Abstracts/DokanPromotion.php +2 -2
  8. includes/Abstracts/DokanRESTAdminController.php +1 -1
  9. includes/Abstracts/DokanShortcode.php +1 -1
  10. includes/Abstracts/DokanUpgrader.php +3 -3
  11. includes/Admin/AdminBar.php +1 -1
  12. includes/Admin/Hooks.php +2 -2
  13. includes/Admin/Menu.php +4 -4
  14. includes/Admin/Settings.php +2 -2
  15. includes/Admin/SetupWizard.php +2 -2
  16. includes/Ajax.php +1 -1
  17. includes/Assets.php +2 -1
  18. includes/Commission.php +1 -1
  19. includes/Dashboard/Manager.php +1 -1
  20. includes/Dashboard/Templates/Manager.php +1 -1
  21. includes/Dashboard/Templates/Products.php +3 -3
  22. includes/Dashboard/Templates/Withdraw.php +6 -6
  23. includes/Exceptions/DokanException.php +1 -1
  24. includes/Order/Hooks.php +3 -3
  25. includes/Order/Manager.php +2 -2
  26. includes/Product/Hooks.php +2 -2
  27. includes/Product/Manager.php +4 -4
  28. includes/Product/functions.php +1 -1
  29. includes/REST/StoreController.php +2 -2
  30. includes/REST/WithdrawController.php +11 -11
  31. includes/Rewrites.php +1 -1
  32. includes/Shortcodes/Shortcodes.php +2 -2
  33. includes/ThemeSupport/Rehub.php +1 -1
  34. includes/Traits/AjaxResponseError.php +1 -1
  35. includes/Traits/ChainableContainer.php +1 -1
  36. includes/Traits/RESTResponseError.php +1 -1
  37. includes/Upgrade/AdminNotice.php +3 -3
  38. includes/Upgrade/Hooks.php +1 -1
  39. includes/Upgrade/Manager.php +7 -7
  40. includes/Upgrade/Upgrades.php +5 -5
  41. includes/Vendor/Manager.php +1 -1
  42. includes/Vendor/Vendor.php +2 -2
  43. includes/Widgets/Manager.php +3 -3
  44. includes/Withdraw/Export/CSV.php +2 -2
  45. includes/Withdraw/Export/Manager.php +2 -2
  46. includes/Withdraw/Hooks.php +3 -3
  47. includes/Withdraw/Manager.php +10 -10
  48. includes/Withdraw/Withdraw.php +25 -25
  49. includes/Withdraw/Withdraws.php +5 -5
  50. includes/Withdraw/functions.php +1 -1
  51. includes/functions.php +5 -5
  52. languages/dokan-lite.pot +2299 -2296
  53. lib/class.category-walker.php +1 -1
  54. lib/class.taxonomy-walker.php +1 -1
  55. package.json +1 -1
  56. readme.txt +8 -1
  57. templates/orders/date-export.php +1 -1
  58. vendor/autoload.php +1 -1
  59. vendor/composer/autoload_real.php +4 -4
  60. vendor/composer/autoload_static.php +4 -4
assets/js/dokan.js CHANGED
@@ -1445,6 +1445,54 @@ jQuery(function($) {
1445
 
1446
  }, 750 ) );
1447
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1448
  });
1449
 
1450
  })(jQuery);
1445
 
1446
  }, 750 ) );
1447
 
1448
+ function debounce_delay( callback, ms ) {
1449
+ var timer = 0;
1450
+ return function() {
1451
+ var context = this, args = arguments;
1452
+ clearTimeout(timer);
1453
+ timer = setTimeout(function () {
1454
+ callback.apply(context, args);
1455
+ }, ms || 0);
1456
+ };
1457
+ }
1458
+
1459
+ $('body').on( 'keyup', '.dokan-product-sales-price, .dokan-product-regular-price', debounce_delay( function(evt) {
1460
+ evt.preventDefault();
1461
+ var product_price = $( 'input.dokan-product-regular-price' ).val();
1462
+ var sale_price_wrap = $( 'input.dokan-product-sales-price' );
1463
+ var sale_price = sale_price_wrap.val();
1464
+ var sale_price_input_div = sale_price_wrap.parent( 'div.dokan-input-group' );
1465
+ var sale_price_input_msg = "<span class='error'>" + dokan.i18n_sales_price_error + "</span>";
1466
+ var sale_price_parent_div = sale_price_input_div.parent( 'div.sale-price' ).find( 'span.error' );
1467
+
1468
+ if ( '' == product_price ) {
1469
+
1470
+ sale_price_parent_div.remove();
1471
+ sale_price_input_div.after( sale_price_input_msg );
1472
+
1473
+ sale_price_wrap.val('');
1474
+ setTimeout(function(){
1475
+ sale_price_parent_div.remove();
1476
+ }, 5000);
1477
+
1478
+ } else if( parseFloat( product_price ) <= parseFloat( sale_price ) ) {
1479
+
1480
+ sale_price_parent_div.remove();
1481
+ sale_price_input_div.after( sale_price_input_msg );
1482
+
1483
+ sale_price_wrap.val('');
1484
+ setTimeout(function(){
1485
+ sale_price_parent_div.remove();
1486
+ }, 5000);
1487
+
1488
+ } else {
1489
+
1490
+ sale_price_parent_div.remove();
1491
+
1492
+ }
1493
+
1494
+ } ,600 ) );
1495
+
1496
  });
1497
 
1498
  })(jQuery);
depricated/depricated-functions.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Wrapper for wc_doing_it_wrong.
5
  *
6
- * @since DOKAN_LITE_SINCE
7
  *
8
  * @param string $function Function used.
9
  * @param string $message Message to log.
@@ -39,7 +39,7 @@ function dokan_get_product_status( $status ) {
39
  /**
40
  * Load depericated widget class dynamically
41
  *
42
- * @since DOKAN_LITE_SINCE
43
  *
44
  * @return void
45
  */
3
  /**
4
  * Wrapper for wc_doing_it_wrong.
5
  *
6
+ * @since 3.0.0
7
  *
8
  * @param string $function Function used.
9
  * @param string $message Message to log.
39
  /**
40
  * Load depericated widget class dynamically
41
  *
42
+ * @since 3.0.0
43
  *
44
  * @return void
45
  */
depricated/depricated-hooks.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Support for Elementor Store Widgets
5
  *
6
- * @since DOKAN_LITE_SINCE
7
  *
8
  * @param array $default_widget_args
9
  * @param \Widget_WordPress $widget_wordpress
3
  /**
4
  * Support for Elementor Store Widgets
5
  *
6
+ * @since 3.0.0
7
  *
8
  * @param array $default_widget_args
9
  * @param \Widget_WordPress $widget_wordpress
dokan.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Dokan
4
  Plugin URI: https://wordpress.org/plugins/dokan-lite/
5
  Description: An e-commerce marketplace plugin for WordPress. Powered by WooCommerce and weDevs.
6
- Version: 3.0.0
7
  Author: weDevs
8
  Author URI: https://wedevs.com/
9
  Text Domain: dokan-lite
@@ -54,7 +54,7 @@ final class WeDevs_Dokan {
54
  *
55
  * @var string
56
  */
57
- public $version = '3.0.0';
58
 
59
  /**
60
  * Instance of self
@@ -82,7 +82,7 @@ final class WeDevs_Dokan {
82
  /**
83
  * Databse version key
84
  *
85
- * @since DOKAN_LITE_SINCE
86
  *
87
  * @var string
88
  */
@@ -534,7 +534,7 @@ final class WeDevs_Dokan {
534
  /**
535
  * Get Dokan db version key
536
  *
537
- * @since DOKAN_LITE_SINCE
538
  *
539
  * @return string
540
  */
3
  Plugin Name: Dokan
4
  Plugin URI: https://wordpress.org/plugins/dokan-lite/
5
  Description: An e-commerce marketplace plugin for WordPress. Powered by WooCommerce and weDevs.
6
+ Version: 3.0.1
7
  Author: weDevs
8
  Author URI: https://wedevs.com/
9
  Text Domain: dokan-lite
54
  *
55
  * @var string
56
  */
57
+ public $version = '3.0.1';
58
 
59
  /**
60
  * Instance of self
82
  /**
83
  * Databse version key
84
  *
85
+ * @since 3.0.0
86
  *
87
  * @var string
88
  */
534
  /**
535
  * Get Dokan db version key
536
  *
537
+ * @since 3.0.0
538
  *
539
  * @return string
540
  */
includes/Abstracts/DokanBackgroundProcesses.php CHANGED
@@ -31,7 +31,7 @@ abstract class DokanBackgroundProcesses extends \WP_Background_Process {
31
  /**
32
  * Class constructor
33
  *
34
- * @since DOKAN_LITE_SINCE
35
  *
36
  * @return void
37
  */
@@ -106,7 +106,7 @@ abstract class DokanBackgroundProcesses extends \WP_Background_Process {
106
  /**
107
  * Set process action
108
  *
109
- * @since DOKAN_LITE_SINCE
110
  *
111
  * @return void
112
  */
31
  /**
32
  * Class constructor
33
  *
34
+ * @since 3.0.0
35
  *
36
  * @return void
37
  */
106
  /**
107
  * Set process action
108
  *
109
+ * @since 3.0.0
110
  *
111
  * @return void
112
  */
includes/Abstracts/DokanModel.php CHANGED
@@ -7,7 +7,7 @@ abstract class DokanModel {
7
  /**
8
  * Set model data
9
  *
10
- * @since DOKAN_LITE_SINCE
11
  *
12
  * @param array $data
13
  */
@@ -16,7 +16,7 @@ abstract class DokanModel {
16
  /**
17
  * Get model data
18
  *
19
- * @since DOKAN_LITE_SINCE
20
  *
21
  * @return array
22
  */
@@ -27,7 +27,7 @@ abstract class DokanModel {
27
  /**
28
  * Save model data
29
  *
30
- * @since DOKAN_LITE_SINCE
31
  *
32
  * @return \WeDevs\Dokan\Abstracts\Model
33
  */
@@ -36,7 +36,7 @@ abstract class DokanModel {
36
  /**
37
  * Create a model
38
  *
39
- * @since DOKAN_LITE_SINCE
40
  *
41
  * @return \WeDevs\Dokan\Abstracts\Model
42
  */
@@ -45,7 +45,7 @@ abstract class DokanModel {
45
  /**
46
  * Update a model
47
  *
48
- * @since DOKAN_LITE_SINCE
49
  *
50
  * @return \WeDevs\Dokan\Abstracts\Model
51
  */
@@ -54,7 +54,7 @@ abstract class DokanModel {
54
  /**
55
  * Delete a model
56
  *
57
- * @since DOKAN_LITE_SINCE
58
  *
59
  * @return \WeDevs\Dokan\Abstracts\Model
60
  */
7
  /**
8
  * Set model data
9
  *
10
+ * @since 3.0.0
11
  *
12
  * @param array $data
13
  */
16
  /**
17
  * Get model data
18
  *
19
+ * @since 3.0.0
20
  *
21
  * @return array
22
  */
27
  /**
28
  * Save model data
29
  *
30
+ * @since 3.0.0
31
  *
32
  * @return \WeDevs\Dokan\Abstracts\Model
33
  */
36
  /**
37
  * Create a model
38
  *
39
+ * @since 3.0.0
40
  *
41
  * @return \WeDevs\Dokan\Abstracts\Model
42
  */
45
  /**
46
  * Update a model
47
  *
48
+ * @since 3.0.0
49
  *
50
  * @return \WeDevs\Dokan\Abstracts\Model
51
  */
54
  /**
55
  * Delete a model
56
  *
57
+ * @since 3.0.0
58
  *
59
  * @return \WeDevs\Dokan\Abstracts\Model
60
  */
includes/Abstracts/DokanPromotion.php CHANGED
@@ -54,7 +54,7 @@ abstract class DokanPromotion {
54
  * @return void
55
  */
56
  public function show_promotions() {
57
- if ( ! current_user_can( 'manage_options' ) ) {
58
  return;
59
  }
60
 
@@ -182,7 +182,7 @@ abstract class DokanPromotion {
182
  public function dismiss_upgrade_promo() {
183
  $post_data = wp_unslash( $_POST );
184
 
185
- if ( ! current_user_can( 'manage_options' ) ) {
186
  wp_send_json_error( __( 'You have no permission to do that', 'dokan-lite' ) );
187
  }
188
 
54
  * @return void
55
  */
56
  public function show_promotions() {
57
+ if ( ! current_user_can( 'manage_woocommerce' ) ) {
58
  return;
59
  }
60
 
182
  public function dismiss_upgrade_promo() {
183
  $post_data = wp_unslash( $_POST );
184
 
185
+ if ( ! current_user_can( 'manage_woocommerce' ) ) {
186
  wp_send_json_error( __( 'You have no permission to do that', 'dokan-lite' ) );
187
  }
188
 
includes/Abstracts/DokanRESTAdminController.php CHANGED
@@ -28,7 +28,7 @@ abstract class DokanRESTAdminController extends WP_REST_Controller {
28
  * @return void
29
  */
30
  public function check_permission() {
31
- return current_user_can( 'manage_options' );
32
  }
33
 
34
  /**
28
  * @return void
29
  */
30
  public function check_permission() {
31
+ return current_user_can( 'manage_woocommerce' );
32
  }
33
 
34
  /**
includes/Abstracts/DokanShortcode.php CHANGED
@@ -8,7 +8,7 @@ abstract class DokanShortcode {
8
 
9
  public function __construct() {
10
  if ( empty( $this->shortcode ) ) {
11
- dokan_doing_it_wrong( static::class, __( '$shortcode property is empty.', 'dokan-lite' ), 'DOKAN_LITE_SINCE' );
12
  }
13
 
14
  add_shortcode( $this->shortcode, [ $this, 'render_shortcode' ] );
8
 
9
  public function __construct() {
10
  if ( empty( $this->shortcode ) ) {
11
+ dokan_doing_it_wrong( static::class, __( '$shortcode property is empty.', 'dokan-lite' ), '3.0.0' );
12
  }
13
 
14
  add_shortcode( $this->shortcode, [ $this, 'render_shortcode' ] );
includes/Abstracts/DokanUpgrader.php CHANGED
@@ -13,7 +13,7 @@ abstract class DokanUpgrader {
13
  * upgrader class dynamically. Keep in mind that methods
14
  * should be public static function.
15
  *
16
- * @since DOKAN_LITE_SINCE
17
  *
18
  * @param string $required_lite_version Required in case of Pro upgraders
19
  *
@@ -49,7 +49,7 @@ abstract class DokanUpgrader {
49
  * for version 1.23.40, the the filename should be
50
  * V_1_23_40.php.
51
  *
52
- * @since DOKAN_LITE_SINCE
53
  *
54
  * @return void
55
  */
@@ -66,7 +66,7 @@ abstract class DokanUpgrader {
66
  *
67
  * This method should be overriden in Dokan Pro
68
  *
69
- * @since DOKAN_LITE_SINCE
70
  *
71
  * @return string
72
  */
13
  * upgrader class dynamically. Keep in mind that methods
14
  * should be public static function.
15
  *
16
+ * @since 3.0.0
17
  *
18
  * @param string $required_lite_version Required in case of Pro upgraders
19
  *
49
  * for version 1.23.40, the the filename should be
50
  * V_1_23_40.php.
51
  *
52
+ * @since 3.0.0
53
  *
54
  * @return void
55
  */
66
  *
67
  * This method should be overriden in Dokan Pro
68
  *
69
+ * @since 3.0.0
70
  *
71
  * @return string
72
  */
includes/Admin/AdminBar.php CHANGED
@@ -29,7 +29,7 @@ class AdminBar {
29
  public function dokan_admin_toolbar() {
30
  global $wp_admin_bar;
31
 
32
- if ( ! current_user_can( 'manage_options' ) ) {
33
  return;
34
  }
35
 
29
  public function dokan_admin_toolbar() {
30
  global $wp_admin_bar;
31
 
32
+ if ( ! current_user_can( 'manage_woocommerce' ) ) {
33
  return;
34
  }
35
 
includes/Admin/Hooks.php CHANGED
@@ -6,14 +6,14 @@ namespace WeDevs\Dokan\Admin;
6
  *
7
  * @package dokan
8
  *
9
- * @since DOKAN_LITE_SINCE
10
  */
11
  class Hooks {
12
 
13
  /**
14
  * Load autometically when class initiate
15
  *
16
- * @since DOKAN_LITE_SINCE
17
  */
18
  public function __construct() {
19
  // Load all actions
6
  *
7
  * @package dokan
8
  *
9
+ * @since 3.0.0
10
  */
11
  class Hooks {
12
 
13
  /**
14
  * Load autometically when class initiate
15
  *
16
+ * @since 3.0.0
17
  */
18
  public function __construct() {
19
  // Load all actions
includes/Admin/Menu.php CHANGED
@@ -7,7 +7,7 @@ class Menu {
7
  /**
8
  * Class constructor
9
  *
10
- * @since DOKAN_LITE_SINCE
11
  *
12
  * @return void
13
  */
@@ -19,7 +19,7 @@ class Menu {
19
  * Add Dokan admin menu
20
  *
21
  * @since 1.0.0
22
- * @since DOKAN_LITE_SINCE Moved to Menu class
23
  *
24
  * @return void
25
  */
@@ -66,7 +66,7 @@ class Menu {
66
  * Dashboard scripts and styles
67
  *
68
  * @since 1.0
69
- * @since DOKAN_LITE_SINCE Moved to Menu class
70
  *
71
  * @return void
72
  */
@@ -86,7 +86,7 @@ class Menu {
86
  * Load Dashboard Template
87
  *
88
  * @since 1.0
89
- * @since DOKAN_LITE_SINCE Moved to Menu class
90
  *
91
  * @return void
92
  */
7
  /**
8
  * Class constructor
9
  *
10
+ * @since 3.0.0
11
  *
12
  * @return void
13
  */
19
  * Add Dokan admin menu
20
  *
21
  * @since 1.0.0
22
+ * @since 3.0.0 Moved to Menu class
23
  *
24
  * @return void
25
  */
66
  * Dashboard scripts and styles
67
  *
68
  * @since 1.0
69
+ * @since 3.0.0 Moved to Menu class
70
  *
71
  * @return void
72
  */
86
  * Load Dashboard Template
87
  *
88
  * @since 1.0
89
+ * @since 3.0.0 Moved to Menu class
90
  *
91
  * @return void
92
  */
includes/Admin/Settings.php CHANGED
@@ -33,7 +33,7 @@ class Settings {
33
  * @return void
34
  */
35
  public function get_settings_value() {
36
- if ( ! current_user_can( 'manage_options' ) ) {
37
  wp_send_json_error( __( 'You have no permission to get settings value', 'dokan-lite' ) );
38
  }
39
 
@@ -61,7 +61,7 @@ class Settings {
61
  */
62
  public function save_settings_value() {
63
  try {
64
- if ( ! current_user_can( 'manage_options' ) ) {
65
  throw new DokanException( 'dokan_settings_unauthorized_operation', __( 'You are not authorized to perform this action.', 'dokan-lite' ), 401 );
66
  }
67
 
33
  * @return void
34
  */
35
  public function get_settings_value() {
36
+ if ( ! current_user_can( 'manage_woocommerce' ) ) {
37
  wp_send_json_error( __( 'You have no permission to get settings value', 'dokan-lite' ) );
38
  }
39
 
61
  */
62
  public function save_settings_value() {
63
  try {
64
+ if ( ! current_user_can( 'manage_woocommerce' ) ) {
65
  throw new DokanException( 'dokan_settings_unauthorized_operation', __( 'You are not authorized to perform this action.', 'dokan-lite' ), 401 );
66
  }
67
 
includes/Admin/SetupWizard.php CHANGED
@@ -26,7 +26,7 @@ class SetupWizard {
26
  * Hook in tabs.
27
  */
28
  public function __construct() {
29
- if ( current_user_can( 'manage_options' ) ) {
30
  add_action( 'admin_menu', array( $this, 'admin_menus' ) );
31
  add_action( 'admin_init', array( $this, 'setup_wizard' ), 99 );
32
  add_action( 'activated_plugin', array( $this, 'activated_plugin' ) );
@@ -110,7 +110,7 @@ class SetupWizard {
110
  * Add admin menus/screens.
111
  */
112
  public function admin_menus() {
113
- add_submenu_page( null, '', '', 'manage_options', 'dokan-setup', '' );
114
  }
115
 
116
  /**
26
  * Hook in tabs.
27
  */
28
  public function __construct() {
29
+ if ( current_user_can( 'manage_woocommerce' ) ) {
30
  add_action( 'admin_menu', array( $this, 'admin_menus' ) );
31
  add_action( 'admin_init', array( $this, 'setup_wizard' ), 99 );
32
  add_action( 'activated_plugin', array( $this, 'activated_plugin' ) );
110
  * Add admin menus/screens.
111
  */
112
  public function admin_menus() {
113
+ add_submenu_page( null, '', '', 'manage_woocommerce', 'dokan-setup', '' );
114
  }
115
 
116
  /**
includes/Ajax.php CHANGED
@@ -935,7 +935,7 @@ class Ajax {
935
  /**
936
  * Export witdraw requests
937
  *
938
- * @since DOKAN_LITE_SINCE
939
  *
940
  * @return void
941
  */
935
  /**
936
  * Export witdraw requests
937
  *
938
+ * @since 3.0.0
939
  *
940
  * @return void
941
  */
includes/Assets.php CHANGED
@@ -642,6 +642,7 @@ class Assets {
642
  'i18n_variation_count_single' => esc_js( __( '%qty% variation', 'dokan-lite' ) ),
643
  'i18n_variation_count_plural' => esc_js( __( '%qty% variations', 'dokan-lite' ) ),
644
  'i18n_no_result_found' => esc_js( __( 'No Result Found', 'dokan-lite' ) ),
 
645
  'variations_per_page' => absint( apply_filters( 'dokan_product_variations_per_page', 10 ) ),
646
  'store_banner_dimension' => [ 'width' => $banner_width, 'height' => $banner_height, 'flex-width' => $has_flex_width, 'flex-height' => $has_flex_height ],
647
  'selectAndCrop' => __( 'Select and Crop', 'dokan-lite' ),
@@ -744,7 +745,7 @@ class Assets {
744
  /**
745
  * Admin localized scripts
746
  *
747
- * @since DOKAN_LITE_SINCE
748
  *
749
  * @return array
750
  */
642
  'i18n_variation_count_single' => esc_js( __( '%qty% variation', 'dokan-lite' ) ),
643
  'i18n_variation_count_plural' => esc_js( __( '%qty% variations', 'dokan-lite' ) ),
644
  'i18n_no_result_found' => esc_js( __( 'No Result Found', 'dokan-lite' ) ),
645
+ 'i18n_sales_price_error' => esc_js( __( 'Please insert value less than the regular price!', 'dokan-lite' ) ),
646
  'variations_per_page' => absint( apply_filters( 'dokan_product_variations_per_page', 10 ) ),
647
  'store_banner_dimension' => [ 'width' => $banner_width, 'height' => $banner_height, 'flex-width' => $has_flex_width, 'flex-height' => $has_flex_height ],
648
  'selectAndCrop' => __( 'Select and Crop', 'dokan-lite' ),
745
  /**
746
  * Admin localized scripts
747
  *
748
+ * @since 3.0.0
749
  *
750
  * @return array
751
  */
includes/Commission.php CHANGED
@@ -458,7 +458,7 @@ class Commission {
458
  * Then make the commission type 'flat'. We are making it flat cause when commission type is there in database
459
  * But in option field, looks like flat commission is selected.
460
  *
461
- * @since DOKAN_LITE_SINCE
462
  */
463
  if ( ! dokan()->is_pro_exists() && 'combine' === $commission_type ) {
464
  $commission_type = 'flat';
458
  * Then make the commission type 'flat'. We are making it flat cause when commission type is there in database
459
  * But in option field, looks like flat commission is selected.
460
  *
461
+ * @since 3.0.0
462
  */
463
  if ( ! dokan()->is_pro_exists() && 'combine' === $commission_type ) {
464
  $commission_type = 'flat';
includes/Dashboard/Manager.php CHANGED
@@ -12,7 +12,7 @@ class Manager {
12
  /**
13
  * Class constructor
14
  *
15
- * @since DOKAN_LITE_SINCE
16
  *
17
  * @return void
18
  */
12
  /**
13
  * Class constructor
14
  *
15
+ * @since 3.0.0
16
  *
17
  * @return void
18
  */
includes/Dashboard/Templates/Manager.php CHANGED
@@ -17,7 +17,7 @@ class Manager {
17
  /**
18
  * Class constructor
19
  *
20
- * @since DOKAN_LITE_SINCE
21
  *
22
  * @return void
23
  */
17
  /**
18
  * Class constructor
19
  *
20
+ * @since 3.0.0
21
  *
22
  * @return void
23
  */
includes/Dashboard/Templates/Products.php CHANGED
@@ -40,7 +40,7 @@ class Products {
40
  /**
41
  * Set errors
42
  *
43
- * @since DOKAN_LITE_SINCE
44
  *
45
  * @param void $errors
46
  *
@@ -53,7 +53,7 @@ class Products {
53
  /**
54
  * Verify if the instance contains errors
55
  *
56
- * @since DOKAN_LITE_SINCE
57
  *
58
  * @return bool
59
  */
@@ -64,7 +64,7 @@ class Products {
64
  /**
65
  * Retrieve all errors
66
  *
67
- * @since DOKAN_LITE_SINCE
68
  *
69
  * @return array
70
  */
40
  /**
41
  * Set errors
42
  *
43
+ * @since 3.0.0
44
  *
45
  * @param void $errors
46
  *
53
  /**
54
  * Verify if the instance contains errors
55
  *
56
+ * @since 3.0.0
57
  *
58
  * @return bool
59
  */
64
  /**
65
  * Retrieve all errors
66
  *
67
+ * @since 3.0.0
68
  *
69
  * @return array
70
  */
includes/Dashboard/Templates/Withdraw.php CHANGED
@@ -50,7 +50,7 @@ class Withdraw {
50
  /**
51
  * Add error to error bag
52
  *
53
- * @since DOKAN_LITE_SINCE
54
  *
55
  * @param string $message
56
  * @param string $code
@@ -62,7 +62,7 @@ class Withdraw {
62
  /**
63
  * Get current withdraw status
64
  *
65
- * @since DOKAN_LITE_SINCE
66
  *
67
  * @return string
68
  */
@@ -95,7 +95,7 @@ class Withdraw {
95
  /**
96
  * Handle withdraw cancellation request
97
  *
98
- * @since DOKAN_LITE_SINCE
99
  *
100
  * @return void
101
  */
@@ -154,7 +154,7 @@ class Withdraw {
154
  /**
155
  * Handle withdraw approval request
156
  *
157
- * @since DOKAN_LITE_SINCE
158
  *
159
  * @return void
160
  */
@@ -235,7 +235,7 @@ class Withdraw {
235
  /**
236
  * Print error messages
237
  *
238
- * @since DOKAN_LITE_SINCE
239
  *
240
  * @param string $message
241
  * @param bool $deleted
@@ -258,7 +258,7 @@ class Withdraw {
258
  /**
259
  * Print warning message
260
  *
261
- * @since DOKAN_LITE_SINCE
262
  *
263
  * @param string $message
264
  * @param bool $deleted
50
  /**
51
  * Add error to error bag
52
  *
53
+ * @since 3.0.0
54
  *
55
  * @param string $message
56
  * @param string $code
62
  /**
63
  * Get current withdraw status
64
  *
65
+ * @since 3.0.0
66
  *
67
  * @return string
68
  */
95
  /**
96
  * Handle withdraw cancellation request
97
  *
98
+ * @since 3.0.0
99
  *
100
  * @return void
101
  */
154
  /**
155
  * Handle withdraw approval request
156
  *
157
+ * @since 3.0.0
158
  *
159
  * @return void
160
  */
235
  /**
236
  * Print error messages
237
  *
238
+ * @since 3.0.0
239
  *
240
  * @param string $message
241
  * @param bool $deleted
258
  /**
259
  * Print warning message
260
  *
261
+ * @since 3.0.0
262
  *
263
  * @param string $message
264
  * @param bool $deleted
includes/Exceptions/DokanException.php CHANGED
@@ -19,7 +19,7 @@ class DokanException extends Exception {
19
  * Class constructor
20
  *
21
  * @since 2.9.16
22
- * @since DOKAN_LITE_SINCE $error_code can be instance of WP_Error which is
23
  * useful for multiple error codes and messages in
24
  * a single WP_Error instance.
25
  *
19
  * Class constructor
20
  *
21
  * @since 2.9.16
22
+ * @since 3.0.0 $error_code can be instance of WP_Error which is
23
  * useful for multiple error codes and messages in
24
  * a single WP_Error instance.
25
  *
includes/Order/Hooks.php CHANGED
@@ -6,14 +6,14 @@ namespace WeDevs\Dokan\Order;
6
  *
7
  * @package dokan
8
  *
9
- * @since DOKAN_LITE_SINCE
10
  */
11
  class Hooks {
12
 
13
  /**
14
  * Load autometically when class initiate
15
  *
16
- * @since DOKAN_LITE_SINCE
17
  */
18
  public function __construct() {
19
  // on order status change
@@ -144,7 +144,7 @@ class Hooks {
144
  /**
145
  * Split order for vendor
146
  *
147
- * @since DOKAN_LITE_SINCE
148
  *
149
  * @return void
150
  */
6
  *
7
  * @package dokan
8
  *
9
+ * @since 3.0.0
10
  */
11
  class Hooks {
12
 
13
  /**
14
  * Load autometically when class initiate
15
  *
16
+ * @since 3.0.0
17
  */
18
  public function __construct() {
19
  // on order status change
144
  /**
145
  * Split order for vendor
146
  *
147
+ * @since 3.0.0
148
  *
149
  * @return void
150
  */
includes/Order/Manager.php CHANGED
@@ -12,7 +12,7 @@ class Manager {
12
  /**
13
  * Get all orders
14
  *
15
- * @since DOKAN_LITE_SINCE
16
  *
17
  * @return void
18
  */
@@ -71,7 +71,7 @@ class Manager {
71
  /**
72
  * Get single order details
73
  *
74
- * @since DOKAN_LITE_SINCE
75
  *
76
  * @return void
77
  */
12
  /**
13
  * Get all orders
14
  *
15
+ * @since 3.0.0
16
  *
17
  * @return void
18
  */
71
  /**
72
  * Get single order details
73
  *
74
+ * @since 3.0.0
75
  *
76
  * @return void
77
  */
includes/Product/Hooks.php CHANGED
@@ -7,14 +7,14 @@ namespace WeDevs\Dokan\Product;
7
  *
8
  * @package dokan
9
  *
10
- * @since DOKAN_LITE_SINCE
11
  */
12
  class Hooks {
13
 
14
  /**
15
  * Load autometically when class initiate
16
  *
17
- * @since DOKAN_LITE_SINCE
18
  */
19
  public function __construct() {
20
  add_action( 'template_redirect', [ $this, 'bulk_product_status_change' ] );
7
  *
8
  * @package dokan
9
  *
10
+ * @since 3.0.0
11
  */
12
  class Hooks {
13
 
14
  /**
15
  * Load autometically when class initiate
16
  *
17
+ * @since 3.0.0
18
  */
19
  public function __construct() {
20
  add_action( 'template_redirect', [ $this, 'bulk_product_status_change' ] );
includes/Product/Manager.php CHANGED
@@ -39,7 +39,7 @@ class Manager {
39
  /**
40
  * Get single product
41
  *
42
- * @since DOKAN_LITE_SINCE
43
  *
44
  * @return wc_get_product OBJECT
45
  */
@@ -50,7 +50,7 @@ class Manager {
50
  /**
51
  * Save Product
52
  *
53
- * @since DOKAN_LITE_SINCE
54
  *
55
  * @return product object | wc_get_product
56
  */
@@ -381,7 +381,7 @@ class Manager {
381
  /**
382
  * Update product data
383
  *
384
- * @since DOKAN_LITE_SINCE
385
  *
386
  * @return wc_get_product OBJECT
387
  */
@@ -398,7 +398,7 @@ class Manager {
398
  /**
399
  * Delete product data
400
  *
401
- * @since DOKAN_LITE_SINCE
402
  *
403
  * @return void
404
  */
39
  /**
40
  * Get single product
41
  *
42
+ * @since 3.0.0
43
  *
44
  * @return wc_get_product OBJECT
45
  */
50
  /**
51
  * Save Product
52
  *
53
+ * @since 3.0.0
54
  *
55
  * @return product object | wc_get_product
56
  */
381
  /**
382
  * Update product data
383
  *
384
+ * @since 3.0.0
385
  *
386
  * @return wc_get_product OBJECT
387
  */
398
  /**
399
  * Delete product data
400
  *
401
+ * @since 3.0.0
402
  *
403
  * @return void
404
  */
includes/Product/functions.php CHANGED
@@ -493,7 +493,7 @@ function dokan_get_vendor_by_product( $product ) {
493
  /**
494
  * Get translated product stock status
495
  *
496
- * @since DOKAN_LITE_SINCE
497
  *
498
  * @param mix $stock
499
  *
493
  /**
494
  * Get translated product stock status
495
  *
496
+ * @since 3.0.0
497
  *
498
  * @param mix $stock
499
  *
includes/REST/StoreController.php CHANGED
@@ -353,7 +353,7 @@ class StoreController extends WP_REST_Controller {
353
  * @return void
354
  */
355
  public function permission_check_for_manageable_part() {
356
- return current_user_can( 'manage_options' );
357
  }
358
 
359
  /**
@@ -394,7 +394,7 @@ class StoreController extends WP_REST_Controller {
394
  $page = (int) ( ! empty( $request['page'] ) ? $request['page'] : 1 );
395
  $max_pages = ceil( $total_items / $per_page );
396
 
397
- if ( function_exists( 'dokan_get_seller_status_count' ) && current_user_can( 'manage_options' ) ) {
398
  $counts = dokan_get_seller_status_count();
399
  $response->header( 'X-Status-Pending', (int) $counts['inactive'] );
400
  $response->header( 'X-Status-Approved', (int) $counts['active'] );
353
  * @return void
354
  */
355
  public function permission_check_for_manageable_part() {
356
+ return current_user_can( 'manage_woocommerce' );
357
  }
358
 
359
  /**
394
  $page = (int) ( ! empty( $request['page'] ) ? $request['page'] : 1 );
395
  $max_pages = ceil( $total_items / $per_page );
396
 
397
+ if ( function_exists( 'dokan_get_seller_status_count' ) && current_user_can( 'manage_woocommerce' ) ) {
398
  $counts = dokan_get_seller_status_count();
399
  $response->header( 'X-Status-Pending', (int) $counts['inactive'] );
400
  $response->header( 'X-Status-Approved', (int) $counts['active'] );
includes/REST/WithdrawController.php CHANGED
@@ -110,7 +110,7 @@ class WithdrawController extends WP_REST_Controller {
110
  /**
111
  * Check permission for get a withdraw
112
  *
113
- * @since DOKAN_LITE_SINCE
114
  *
115
  * @param \WP_Request $request
116
  *
@@ -134,7 +134,7 @@ class WithdrawController extends WP_REST_Controller {
134
  /**
135
  * Check permission for creating a withdraw request
136
  *
137
- * @since DOKAN_LITE_SINCE
138
  *
139
  * @return bool
140
  */
@@ -145,7 +145,7 @@ class WithdrawController extends WP_REST_Controller {
145
  /**
146
  * Check permission for update a withdraw
147
  *
148
- * @since DOKAN_LITE_SINCE
149
  *
150
  * @param \WP_Request $request
151
  *
@@ -180,7 +180,7 @@ class WithdrawController extends WP_REST_Controller {
180
  /**
181
  * Validate a withdraw is exists
182
  *
183
- * @since DOKAN_LITE_SINCE
184
  *
185
  * @param int $id
186
  *
@@ -216,7 +216,7 @@ class WithdrawController extends WP_REST_Controller {
216
  /**
217
  * Get withdraws
218
  *
219
- * @since DOKAN_LITE_SINCE
220
  *
221
  * @return \WP_REST_Response
222
  */
@@ -230,7 +230,7 @@ class WithdrawController extends WP_REST_Controller {
230
 
231
  $user_id = null;
232
 
233
- if ( ! current_user_can( 'manage_options' ) ) {
234
  // Vendors can only see their own requests
235
  $user_id = dokan_get_current_user_id();
236
 
@@ -273,7 +273,7 @@ class WithdrawController extends WP_REST_Controller {
273
  /**
274
  * Make a withdraw request
275
  *
276
- * @since DOKAN_LITE_SINCE
277
  *
278
  * @return \WP_REST_Response
279
  */
@@ -338,7 +338,7 @@ class WithdrawController extends WP_REST_Controller {
338
  /**
339
  * Get a withdraw
340
  *
341
- * @since DOKAN_LITE_SINCE
342
  *
343
  * @param \WP_Request $request
344
  *
@@ -355,7 +355,7 @@ class WithdrawController extends WP_REST_Controller {
355
  /**
356
  * Cancel withdraw status
357
  *
358
- * @since DOKAN_LITE_SINCE
359
  *
360
  * @return void
361
  */
@@ -421,7 +421,7 @@ class WithdrawController extends WP_REST_Controller {
421
  /**
422
  * Delete a withdraw
423
  *
424
- * @since DOKAN_LITE_SINCE
425
  *
426
  * @return \WP_REST_Request
427
  */
@@ -714,7 +714,7 @@ class WithdrawController extends WP_REST_Controller {
714
  /**
715
  * Schema for batch processing
716
  *
717
- * @since DOKAN_LITE_SINCE
718
  *
719
  * @return array
720
  */
110
  /**
111
  * Check permission for get a withdraw
112
  *
113
+ * @since 3.0.0
114
  *
115
  * @param \WP_Request $request
116
  *
134
  /**
135
  * Check permission for creating a withdraw request
136
  *
137
+ * @since 3.0.0
138
  *
139
  * @return bool
140
  */
145
  /**
146
  * Check permission for update a withdraw
147
  *
148
+ * @since 3.0.0
149
  *
150
  * @param \WP_Request $request
151
  *
180
  /**
181
  * Validate a withdraw is exists
182
  *
183
+ * @since 3.0.0
184
  *
185
  * @param int $id
186
  *
216
  /**
217
  * Get withdraws
218
  *
219
+ * @since 3.0.0
220
  *
221
  * @return \WP_REST_Response
222
  */
230
 
231
  $user_id = null;
232
 
233
+ if ( ! current_user_can( 'manage_woocommerce' ) ) {
234
  // Vendors can only see their own requests
235
  $user_id = dokan_get_current_user_id();
236
 
273
  /**
274
  * Make a withdraw request
275
  *
276
+ * @since 3.0.0
277
  *
278
  * @return \WP_REST_Response
279
  */
338
  /**
339
  * Get a withdraw
340
  *
341
+ * @since 3.0.0
342
  *
343
  * @param \WP_Request $request
344
  *
355
  /**
356
  * Cancel withdraw status
357
  *
358
+ * @since 3.0.0
359
  *
360
  * @return void
361
  */
421
  /**
422
  * Delete a withdraw
423
  *
424
+ * @since 3.0.0
425
  *
426
  * @return \WP_REST_Request
427
  */
714
  /**
715
  * Schema for batch processing
716
  *
717
+ * @since 3.0.0
718
  *
719
  * @return array
720
  */
includes/Rewrites.php CHANGED
@@ -43,7 +43,7 @@ class Rewrites {
43
  return $crumbs;
44
  }
45
 
46
- if ( function_exists( 'yoast_breadcrumb' ) && WPSEO_Options::get( 'breadcrumbs-enable' ) ) {
47
  unset( $crumbs );
48
  return;
49
  }
43
  return $crumbs;
44
  }
45
 
46
+ if ( function_exists( 'yoast_breadcrumb' ) && \WPSEO_Options::get( 'breadcrumbs-enable' ) ) {
47
  unset( $crumbs );
48
  return;
49
  }
includes/Shortcodes/Shortcodes.php CHANGED
@@ -16,7 +16,7 @@ class Shortcodes {
16
  /**
17
  * Register Dokan shortcodes
18
  *
19
- * @since DOKAN_LITE_SINCE
20
  *
21
  * @return void
22
  */
@@ -34,7 +34,7 @@ class Shortcodes {
34
  /**
35
  * Get registered shortcode classes
36
  *
37
- * @since DOKAN_LITE_SINCE
38
  *
39
  * @return array
40
  */
16
  /**
17
  * Register Dokan shortcodes
18
  *
19
+ * @since 3.0.0
20
  *
21
  * @return void
22
  */
34
  /**
35
  * Get registered shortcode classes
36
  *
37
+ * @since 3.0.0
38
  *
39
  * @return array
40
  */
includes/ThemeSupport/Rehub.php CHANGED
@@ -30,7 +30,7 @@ class Rehub {
30
  /**
31
  * Make store listing page full width
32
  *
33
- * @since DOKAN_LITE_SINCE
34
  *
35
  * @return void
36
  */
30
  /**
31
  * Make store listing page full width
32
  *
33
+ * @since 3.0.0
34
  *
35
  * @return void
36
  */
includes/Traits/AjaxResponseError.php CHANGED
@@ -11,7 +11,7 @@ trait AjaxResponseError {
11
  /**
12
  * Send Ajax error response
13
  *
14
- * @since DOKAN_LITE_SINCE
15
  *
16
  * @param \Exception $e
17
  * @param string $default_message
11
  /**
12
  * Send Ajax error response
13
  *
14
+ * @since 3.0.0
15
  *
16
  * @param \Exception $e
17
  * @param string $default_message
includes/Traits/ChainableContainer.php CHANGED
@@ -14,7 +14,7 @@ trait ChainableContainer {
14
  /**
15
  * Magic getter to get chainable container instance
16
  *
17
- * @since DOKAN_LITE_SINCE
18
  *
19
  * @param string $prop
20
  *
14
  /**
15
  * Magic getter to get chainable container instance
16
  *
17
+ * @since 3.0.0
18
  *
19
  * @param string $prop
20
  *
includes/Traits/RESTResponseError.php CHANGED
@@ -11,7 +11,7 @@ trait RESTResponseError {
11
  /**
12
  * Send REST error response
13
  *
14
- * @since DOKAN_LITE_SINCE
15
  *
16
  * @param \Exception $e
17
  * @param string $default_message
11
  /**
12
  * Send REST error response
13
  *
14
+ * @since 3.0.0
15
  *
16
  * @param \Exception $e
17
  * @param string $default_message
includes/Upgrade/AdminNotice.php CHANGED
@@ -13,7 +13,7 @@ class AdminNotice {
13
  /**
14
  * Show admin notice to upgrade Dokan
15
  *
16
- * @since DOKAN_LITE_SINCE
17
  *
18
  * @return void
19
  */
@@ -26,7 +26,7 @@ class AdminNotice {
26
  /**
27
  * Fires when upgrade is not required
28
  *
29
- * @since DOKAN_LITE_SINCE
30
  */
31
  do_action( 'dokan_upgrade_is_not_required' );
32
  return;
@@ -41,7 +41,7 @@ class AdminNotice {
41
  /**
42
  * Ajax handler method to initiate Dokan upgrade process
43
  *
44
- * @since DOKAN_LITE_SINCE
45
  *
46
  * @return void
47
  */
13
  /**
14
  * Show admin notice to upgrade Dokan
15
  *
16
+ * @since 3.0.0
17
  *
18
  * @return void
19
  */
26
  /**
27
  * Fires when upgrade is not required
28
  *
29
+ * @since 3.0.0
30
  */
31
  do_action( 'dokan_upgrade_is_not_required' );
32
  return;
41
  /**
42
  * Ajax handler method to initiate Dokan upgrade process
43
  *
44
+ * @since 3.0.0
45
  *
46
  * @return void
47
  */
includes/Upgrade/Hooks.php CHANGED
@@ -7,7 +7,7 @@ class Hooks {
7
  /**
8
  * Class constructor
9
  *
10
- * @since DOKAN_LITE_SINCE
11
  *
12
  * @return void
13
  */
7
  /**
8
  * Class constructor
9
  *
10
+ * @since 3.0.0
11
  *
12
  * @return void
13
  */
includes/Upgrade/Manager.php CHANGED
@@ -9,7 +9,7 @@ class Manager {
9
  /**
10
  * Checks if update is required or not
11
  *
12
- * @since DOKAN_LITE_SINCE
13
  *
14
  * @return bool
15
  */
@@ -17,7 +17,7 @@ class Manager {
17
  /**
18
  * Filter to upgrade is required or not
19
  *
20
- * @since DOKAN_LITE_SINCE
21
  *
22
  * @param bool $is_required Is upgrade required
23
  */
@@ -27,7 +27,7 @@ class Manager {
27
  /**
28
  * Checks for any ongoing process
29
  *
30
- * @since DOKAN_LITE_SINCE
31
  *
32
  * @return bool
33
  */
@@ -38,7 +38,7 @@ class Manager {
38
  /**
39
  * Get upgradable upgrades
40
  *
41
- * @since DOKAN_LITE_SINCE
42
  *
43
  * @return array
44
  */
@@ -52,7 +52,7 @@ class Manager {
52
  /**
53
  * Filter upgrades
54
  *
55
- * @since DOKAN_LITE_SINCE
56
  *
57
  * @var array
58
  */
@@ -76,7 +76,7 @@ class Manager {
76
  * `update_db_version` will update the db version
77
  * reference in database.
78
  *
79
- * @since DOKAN_LITE_SINCE
80
  *
81
  * @return void
82
  */
@@ -105,7 +105,7 @@ class Manager {
105
  * At this point plugin should update the
106
  * db version key to version constant like DOKAN_PLUGIN_VERSION
107
  *
108
- * @since DOKAN_LITE_SINCE
109
  */
110
  do_action( 'dokan_upgrade_finished' );
111
  }
9
  /**
10
  * Checks if update is required or not
11
  *
12
+ * @since 3.0.0
13
  *
14
  * @return bool
15
  */
17
  /**
18
  * Filter to upgrade is required or not
19
  *
20
+ * @since 3.0.0
21
  *
22
  * @param bool $is_required Is upgrade required
23
  */
27
  /**
28
  * Checks for any ongoing process
29
  *
30
+ * @since 3.0.0
31
  *
32
  * @return bool
33
  */
38
  /**
39
  * Get upgradable upgrades
40
  *
41
+ * @since 3.0.0
42
  *
43
  * @return array
44
  */
52
  /**
53
  * Filter upgrades
54
  *
55
+ * @since 3.0.0
56
  *
57
  * @var array
58
  */
76
  * `update_db_version` will update the db version
77
  * reference in database.
78
  *
79
+ * @since 3.0.0
80
  *
81
  * @return void
82
  */
105
  * At this point plugin should update the
106
  * db version key to version constant like DOKAN_PLUGIN_VERSION
107
  *
108
+ * @since 3.0.0
109
  */
110
  do_action( 'dokan_upgrade_finished' );
111
  }
includes/Upgrade/Upgrades.php CHANGED
@@ -7,7 +7,7 @@ class Upgrades {
7
  /**
8
  * Dokan Lite upgraders
9
  *
10
- * @since DOKAN_LITE_SINCE
11
  *
12
  * @var array
13
  */
@@ -34,7 +34,7 @@ class Upgrades {
34
  /**
35
  * Get DB installed version number
36
  *
37
- * @since DOKAN_LITE_SINCE
38
  *
39
  * @return string
40
  */
@@ -45,7 +45,7 @@ class Upgrades {
45
  /**
46
  * Checks if upgrade is required or not
47
  *
48
- * @since DOKAN_LITE_SINCE
49
  *
50
  * @param bool $is_required
51
  *
@@ -65,7 +65,7 @@ class Upgrades {
65
  /**
66
  * Update Dokan DB version
67
  *
68
- * @since DOKAN_LITE_SINCE
69
  *
70
  * @return void
71
  */
@@ -80,7 +80,7 @@ class Upgrades {
80
  /**
81
  * Get upgrades
82
  *
83
- * @since DOKAN_LITE_SINCE
84
  *
85
  * @param array $upgrades
86
  *
7
  /**
8
  * Dokan Lite upgraders
9
  *
10
+ * @since 3.0.0
11
  *
12
  * @var array
13
  */
34
  /**
35
  * Get DB installed version number
36
  *
37
+ * @since 3.0.0
38
  *
39
  * @return string
40
  */
45
  /**
46
  * Checks if upgrade is required or not
47
  *
48
+ * @since 3.0.0
49
  *
50
  * @param bool $is_required
51
  *
65
  /**
66
  * Update Dokan DB version
67
  *
68
+ * @since 3.0.0
69
  *
70
  * @return void
71
  */
80
  /**
81
  * Get upgrades
82
  *
83
+ * @since 3.0.0
84
  *
85
  * @param array $upgrades
86
  *
includes/Vendor/Manager.php CHANGED
@@ -58,7 +58,7 @@ class Manager {
58
  $status = $args['status'];
59
 
60
  // check if the user has permission to see pending vendors
61
- if ( 'approved' != $args['status'] && current_user_can( 'manage_options' ) ) {
62
  $status = $args['status'];
63
  }
64
 
58
  $status = $args['status'];
59
 
60
  // check if the user has permission to see pending vendors
61
+ if ( 'approved' != $args['status'] && current_user_can( 'manage_woocommerce' ) ) {
62
  $status = $args['status'];
63
  }
64
 
includes/Vendor/Vendor.php CHANGED
@@ -531,7 +531,7 @@ class Vendor {
531
  /**
532
  * Get vendor orders
533
  *
534
- * @since DOKAN_LITE_SINCE
535
  *
536
  * @return wc_get_order objects
537
  */
@@ -873,7 +873,7 @@ class Vendor {
873
  /**
874
  * Set store tnc
875
  *
876
- * @since DOKAN_LITE_SINCE
877
  *
878
  * @param string
879
  *
531
  /**
532
  * Get vendor orders
533
  *
534
+ * @since 3.0.0
535
  *
536
  * @return wc_get_order objects
537
  */
873
  /**
874
  * Set store tnc
875
  *
876
+ * @since 3.0.0
877
  *
878
  * @param string
879
  *
includes/Widgets/Manager.php CHANGED
@@ -11,7 +11,7 @@ class Manager {
11
  /**
12
  * Class constructor
13
  *
14
- * @since DOKAN_LITE_SINCE
15
  *
16
  * @return void
17
  */
@@ -36,7 +36,7 @@ class Manager {
36
  /**
37
  * Check if widget class exists
38
  *
39
- * @since DOKAN_LITE_SINCE
40
  *
41
  * @param string $widget_id
42
  *
@@ -49,7 +49,7 @@ class Manager {
49
  /**
50
  * Get widget id from widget class
51
  *
52
- * @since DOKAN_LITE_SINCE
53
  *
54
  * @param string $widget_class
55
  *
11
  /**
12
  * Class constructor
13
  *
14
+ * @since 3.0.0
15
  *
16
  * @return void
17
  */
36
  /**
37
  * Check if widget class exists
38
  *
39
+ * @since 3.0.0
40
  *
41
  * @param string $widget_id
42
  *
49
  /**
50
  * Get widget id from widget class
51
  *
52
+ * @since 3.0.0
53
  *
54
  * @param string $widget_class
55
  *
includes/Withdraw/Export/CSV.php CHANGED
@@ -14,7 +14,7 @@ class CSV {
14
  /**
15
  * Class constructor
16
  *
17
- * @since DOKAN_LITE_SINCE
18
  *
19
  * @param array $withdraws
20
  */
@@ -25,7 +25,7 @@ class CSV {
25
  /**
26
  * Export withdraws
27
  *
28
- * @since DOKAN_LITE_SINCE
29
  *
30
  * @return void
31
  */
14
  /**
15
  * Class constructor
16
  *
17
+ * @since 3.0.0
18
  *
19
  * @param array $withdraws
20
  */
25
  /**
26
  * Export withdraws
27
  *
28
+ * @since 3.0.0
29
  *
30
  * @return void
31
  */
includes/Withdraw/Export/Manager.php CHANGED
@@ -15,7 +15,7 @@ class Manager {
15
  /**
16
  * Class constructor
17
  *
18
- * @since DOKAN_LITE_SINCE
19
  *
20
  * @param array $args
21
  */
@@ -26,7 +26,7 @@ class Manager {
26
  /**
27
  * Export data in CSV
28
  *
29
- * @since DOKAN_LITE_SINCE
30
  *
31
  * @return void
32
  */
15
  /**
16
  * Class constructor
17
  *
18
+ * @since 3.0.0
19
  *
20
  * @param array $args
21
  */
26
  /**
27
  * Export data in CSV
28
  *
29
+ * @since 3.0.0
30
  *
31
  * @return void
32
  */
includes/Withdraw/Hooks.php CHANGED
@@ -7,7 +7,7 @@ class Hooks {
7
  /**
8
  * Class constructor
9
  *
10
- * @since DOKAN_LITE_SINCE
11
  *
12
  * @return void
13
  */
@@ -19,7 +19,7 @@ class Hooks {
19
  /**
20
  * Delete seller balance cache after a withdraw update
21
  *
22
- * @since DOKAN_LITE_SINCE
23
  *
24
  * @param string $status
25
  * @param int $user_id
@@ -34,7 +34,7 @@ class Hooks {
34
  /**
35
  * Update vendor balance after approve a request
36
  *
37
- * @since DOKAN_LITE_SINCE
38
  *
39
  * @param \WeDevs\Dokan\Withdraw\Withdraw $withdraw
40
  *
7
  /**
8
  * Class constructor
9
  *
10
+ * @since 3.0.0
11
  *
12
  * @return void
13
  */
19
  /**
20
  * Delete seller balance cache after a withdraw update
21
  *
22
+ * @since 3.0.0
23
  *
24
  * @param string $status
25
  * @param int $user_id
34
  /**
35
  * Update vendor balance after approve a request
36
  *
37
+ * @since 3.0.0
38
  *
39
  * @param \WeDevs\Dokan\Withdraw\Withdraw $withdraw
40
  *
includes/Withdraw/Manager.php CHANGED
@@ -20,7 +20,7 @@ class Manager {
20
  /**
21
  * Validate approval request
22
  *
23
- * @since DOKAN_LITE_SINCE
24
  *
25
  * @param array $args
26
  *
@@ -60,7 +60,7 @@ class Manager {
60
  /**
61
  * Filter validated withdraw request
62
  *
63
- * @since DOKAN_LITE_SINCE
64
  *
65
  * @param bool
66
  * @param array $args
@@ -71,7 +71,7 @@ class Manager {
71
  /**
72
  * Validate cancellation request
73
  *
74
- * @since DOKAN_LITE_SINCE
75
  *
76
  * @param array $args
77
  *
@@ -174,7 +174,7 @@ class Manager {
174
  /**
175
  * After completed withdraw request
176
  *
177
- * @since DOKAN_LITE_SINCE move action from template class to here.
178
  * Change first param from global $current_user
179
  * to dynamic $user_id
180
  *
@@ -266,7 +266,7 @@ class Manager {
266
  /**
267
  * Get withdraw status from code
268
  *
269
- * @since DOKAN_LITE_SINCE
270
  *
271
  * @param int $code
272
  *
@@ -293,7 +293,7 @@ class Manager {
293
  /**
294
  * Get list of withdraws
295
  *
296
- * @since DOKAN_LITE_SINCE
297
  *
298
  * @param array $args
299
  *
@@ -316,9 +316,9 @@ class Manager {
316
  /**
317
  * Get a single withdraw
318
  *
319
- * @since DOKAN_LITE_SINCE
320
  *
321
- * @param DOKAN_LITE_SINCE $id
322
  *
323
  * @return \WeDevs\Dokan\Withdraw\Withdraw|null
324
  */
@@ -367,7 +367,7 @@ class Manager {
367
  /**
368
  * Create a withdraw request
369
  *
370
- * @since DOKAN_LITE_SINCE
371
  *
372
  * @param array $args
373
  *
@@ -425,7 +425,7 @@ class Manager {
425
  /**
426
  * Export withdraw data
427
  *
428
- * @since DOKAN_LITE_SINCE
429
  *
430
  * @param array $args
431
  *
20
  /**
21
  * Validate approval request
22
  *
23
+ * @since 3.0.0
24
  *
25
  * @param array $args
26
  *
60
  /**
61
  * Filter validated withdraw request
62
  *
63
+ * @since 3.0.0
64
  *
65
  * @param bool
66
  * @param array $args
71
  /**
72
  * Validate cancellation request
73
  *
74
+ * @since 3.0.0
75
  *
76
  * @param array $args
77
  *
174
  /**
175
  * After completed withdraw request
176
  *
177
+ * @since 3.0.0 move action from template class to here.
178
  * Change first param from global $current_user
179
  * to dynamic $user_id
180
  *
266
  /**
267
  * Get withdraw status from code
268
  *
269
+ * @since 3.0.0
270
  *
271
  * @param int $code
272
  *
293
  /**
294
  * Get list of withdraws
295
  *
296
+ * @since 3.0.0
297
  *
298
  * @param array $args
299
  *
316
  /**
317
  * Get a single withdraw
318
  *
319
+ * @since 3.0.0
320
  *
321
+ * @param 3.0.0 $id
322
  *
323
  * @return \WeDevs\Dokan\Withdraw\Withdraw|null
324
  */
367
  /**
368
  * Create a withdraw request
369
  *
370
+ * @since 3.0.0
371
  *
372
  * @param array $args
373
  *
425
  /**
426
  * Export withdraw data
427
  *
428
+ * @since 3.0.0
429
  *
430
  * @param array $args
431
  *
includes/Withdraw/Withdraw.php CHANGED
@@ -16,7 +16,7 @@ class Withdraw {
16
  /**
17
  * Class constructor
18
  *
19
- * @since DOKAN_LITE_SINCE
20
  *
21
  * @return void
22
  */
@@ -49,7 +49,7 @@ class Withdraw {
49
  /**
50
  * Get withdraw data
51
  *
52
- * @since DOKAN_LITE_SINCE
53
  *
54
  * @return array
55
  */
@@ -60,7 +60,7 @@ class Withdraw {
60
  /**
61
  * Get withdraw id
62
  *
63
- * @since DOKAN_LITE_SINCE
64
  *
65
  * @return int
66
  */
@@ -71,7 +71,7 @@ class Withdraw {
71
  /**
72
  * Get user_id
73
  *
74
- * @since DOKAN_LITE_SINCE
75
  *
76
  * @return int
77
  */
@@ -82,7 +82,7 @@ class Withdraw {
82
  /**
83
  * Get amount
84
  *
85
- * @since DOKAN_LITE_SINCE
86
  *
87
  * @return string
88
  */
@@ -93,7 +93,7 @@ class Withdraw {
93
  /**
94
  * Get date
95
  *
96
- * @since DOKAN_LITE_SINCE
97
  *
98
  * @return string
99
  */
@@ -104,7 +104,7 @@ class Withdraw {
104
  /**
105
  * Get status
106
  *
107
- * @since DOKAN_LITE_SINCE
108
  *
109
  * @return string
110
  */
@@ -115,7 +115,7 @@ class Withdraw {
115
  /**
116
  * Get ip
117
  *
118
- * @since DOKAN_LITE_SINCE
119
  *
120
  * @return string
121
  */
@@ -126,7 +126,7 @@ class Withdraw {
126
  /**
127
  * Get note
128
  *
129
- * @since DOKAN_LITE_SINCE
130
  *
131
  * @return string
132
  */
@@ -137,7 +137,7 @@ class Withdraw {
137
  /**
138
  * Get ip
139
  *
140
- * @since DOKAN_LITE_SINCE
141
  *
142
  * @return string
143
  */
@@ -148,7 +148,7 @@ class Withdraw {
148
  /**
149
  * Set user_id
150
  *
151
- * @since DOKAN_LITE_SINCE
152
  *
153
  * @param int $user_id
154
  *
@@ -162,7 +162,7 @@ class Withdraw {
162
  /**
163
  * Set amount
164
  *
165
- * @since DOKAN_LITE_SINCE
166
  *
167
  * @param string $amount
168
  *
@@ -176,7 +176,7 @@ class Withdraw {
176
  /**
177
  * Set date
178
  *
179
- * @since DOKAN_LITE_SINCE
180
  *
181
  * @param string $date
182
  *
@@ -190,7 +190,7 @@ class Withdraw {
190
  /**
191
  * Set status
192
  *
193
- * @since DOKAN_LITE_SINCE
194
  *
195
  * @param string $status
196
  *
@@ -204,7 +204,7 @@ class Withdraw {
204
  /**
205
  * Set method
206
  *
207
- * @since DOKAN_LITE_SINCE
208
  *
209
  * @param string $method
210
  *
@@ -218,7 +218,7 @@ class Withdraw {
218
  /**
219
  * Set note
220
  *
221
- * @since DOKAN_LITE_SINCE
222
  *
223
  * @param string $note
224
  *
@@ -232,7 +232,7 @@ class Withdraw {
232
  /**
233
  * Set ip
234
  *
235
- * @since DOKAN_LITE_SINCE
236
  *
237
  * @param string $ip
238
  *
@@ -246,7 +246,7 @@ class Withdraw {
246
  /**
247
  * Create or update a withdraw
248
  *
249
- * @since DOKAN_LITE_SINCE
250
  *
251
  * @return \WeDevs\Dokan\Withdraw\Withdraw|\WP_Error
252
  */
@@ -261,7 +261,7 @@ class Withdraw {
261
  /**
262
  * Create or add a withdraw request
263
  *
264
- * @since DOKAN_LITE_SINCE
265
  *
266
  * @return \WeDevs\Dokan\Withdraw\Withdraw|\WP_Error
267
  */
@@ -285,7 +285,7 @@ class Withdraw {
285
  /**
286
  * After completed withdraw request
287
  *
288
- * @since DOKAN_LITE_SINCE
289
  *
290
  * @param int $user_id
291
  * @param float $amount
@@ -299,7 +299,7 @@ class Withdraw {
299
  /**
300
  * Update a withdraw
301
  *
302
- * @since DOKAN_LITE_SINCE
303
  *
304
  * @return \WeDevs\Dokan\Withdraw\Withdraw|\WP_Error
305
  */
@@ -329,7 +329,7 @@ class Withdraw {
329
  /**
330
  * Action based on withdraw status
331
  *
332
- * @since DOKAN_LITE_SINCE
333
  *
334
  * @param \WeDevs\Dokan\Withdraw\Withdraw $this
335
  */
@@ -338,7 +338,7 @@ class Withdraw {
338
  /**
339
  * Fires after update a withdraw
340
  *
341
- * @since DOKAN_LITE_SINCE
342
  *
343
  * @param \WeDevs\Dokan\Withdraw\Withdraw $this
344
  */
@@ -350,7 +350,7 @@ class Withdraw {
350
  /**
351
  * Delete a withdraw
352
  *
353
- * @since DOKAN_LITE_SINCE
354
  *
355
  * @return \WeDevs\Dokan\Withdraw\Withdraw|\WP_Error
356
  */
@@ -370,7 +370,7 @@ class Withdraw {
370
  /**
371
  * Fires after delete a withdraw
372
  *
373
- * @since DOKAN_LITE_SINCE
374
  *
375
  * @param array $data
376
  */
16
  /**
17
  * Class constructor
18
  *
19
+ * @since 3.0.0
20
  *
21
  * @return void
22
  */
49
  /**
50
  * Get withdraw data
51
  *
52
+ * @since 3.0.0
53
  *
54
  * @return array
55
  */
60
  /**
61
  * Get withdraw id
62
  *
63
+ * @since 3.0.0
64
  *
65
  * @return int
66
  */
71
  /**
72
  * Get user_id
73
  *
74
+ * @since 3.0.0
75
  *
76
  * @return int
77
  */
82
  /**
83
  * Get amount
84
  *
85
+ * @since 3.0.0
86
  *
87
  * @return string
88
  */
93
  /**
94
  * Get date
95
  *
96
+ * @since 3.0.0
97
  *
98
  * @return string
99
  */
104
  /**
105
  * Get status
106
  *
107
+ * @since 3.0.0
108
  *
109
  * @return string
110
  */
115
  /**
116
  * Get ip
117
  *
118
+ * @since 3.0.0
119
  *
120
  * @return string
121
  */
126
  /**
127
  * Get note
128
  *
129
+ * @since 3.0.0
130
  *
131
  * @return string
132
  */
137
  /**
138
  * Get ip
139
  *
140
+ * @since 3.0.0
141
  *
142
  * @return string
143
  */
148
  /**
149
  * Set user_id
150
  *
151
+ * @since 3.0.0
152
  *
153
  * @param int $user_id
154
  *
162
  /**
163
  * Set amount
164
  *
165
+ * @since 3.0.0
166
  *
167
  * @param string $amount
168
  *
176
  /**
177
  * Set date
178
  *
179
+ * @since 3.0.0
180
  *
181
  * @param string $date
182
  *
190
  /**
191
  * Set status
192
  *
193
+ * @since 3.0.0
194
  *
195
  * @param string $status
196
  *
204
  /**
205
  * Set method
206
  *
207
+ * @since 3.0.0
208
  *
209
  * @param string $method
210
  *
218
  /**
219
  * Set note
220
  *
221
+ * @since 3.0.0
222
  *
223
  * @param string $note
224
  *
232
  /**
233
  * Set ip
234
  *
235
+ * @since 3.0.0
236
  *
237
  * @param string $ip
238
  *
246
  /**
247
  * Create or update a withdraw
248
  *
249
+ * @since 3.0.0
250
  *
251
  * @return \WeDevs\Dokan\Withdraw\Withdraw|\WP_Error
252
  */
261
  /**
262
  * Create or add a withdraw request
263
  *
264
+ * @since 3.0.0
265
  *
266
  * @return \WeDevs\Dokan\Withdraw\Withdraw|\WP_Error
267
  */
285
  /**
286
  * After completed withdraw request
287
  *
288
+ * @since 3.0.0
289
  *
290
  * @param int $user_id
291
  * @param float $amount
299
  /**
300
  * Update a withdraw
301
  *
302
+ * @since 3.0.0
303
  *
304
  * @return \WeDevs\Dokan\Withdraw\Withdraw|\WP_Error
305
  */
329
  /**
330
  * Action based on withdraw status
331
  *
332
+ * @since 3.0.0
333
  *
334
  * @param \WeDevs\Dokan\Withdraw\Withdraw $this
335
  */
338
  /**
339
  * Fires after update a withdraw
340
  *
341
+ * @since 3.0.0
342
  *
343
  * @param \WeDevs\Dokan\Withdraw\Withdraw $this
344
  */
350
  /**
351
  * Delete a withdraw
352
  *
353
+ * @since 3.0.0
354
  *
355
  * @return \WeDevs\Dokan\Withdraw\Withdraw|\WP_Error
356
  */
370
  /**
371
  * Fires after delete a withdraw
372
  *
373
+ * @since 3.0.0
374
  *
375
  * @param array $data
376
  */
includes/Withdraw/Withdraws.php CHANGED
@@ -35,7 +35,7 @@ class Withdraws {
35
  /**
36
  * Class constructor
37
  *
38
- * @since DOKAN_LITE_SINCE
39
  *
40
  * @param array $args
41
  *
@@ -55,7 +55,7 @@ class Withdraws {
55
  /**
56
  * Get withdraws
57
  *
58
- * @since DOKAN_LITE_SINCE
59
  *
60
  * @return array
61
  */
@@ -66,7 +66,7 @@ class Withdraws {
66
  /**
67
  * Query withdraws
68
  *
69
- * @since DOKAN_LITE_SINCE
70
  *
71
  * @return \WeDevs\Dokan\Withdraw\Withdraws
72
  */
@@ -160,7 +160,7 @@ class Withdraws {
160
  /**
161
  * Get total number of withdraws
162
  *
163
- * @since DOKAN_LITE_SINCE
164
  *
165
  * @return int
166
  */
@@ -177,7 +177,7 @@ class Withdraws {
177
  /**
178
  * Get maximum number of pages
179
  *
180
- * @since DOKAN_LITE_SINCE
181
  *
182
  * @return int
183
  */
35
  /**
36
  * Class constructor
37
  *
38
+ * @since 3.0.0
39
  *
40
  * @param array $args
41
  *
55
  /**
56
  * Get withdraws
57
  *
58
+ * @since 3.0.0
59
  *
60
  * @return array
61
  */
66
  /**
67
  * Query withdraws
68
  *
69
+ * @since 3.0.0
70
  *
71
  * @return \WeDevs\Dokan\Withdraw\Withdraws
72
  */
160
  /**
161
  * Get total number of withdraws
162
  *
163
+ * @since 3.0.0
164
  *
165
  * @return int
166
  */
177
  /**
178
  * Get maximum number of pages
179
  *
180
+ * @since 3.0.0
181
  *
182
  * @return int
183
  */
includes/Withdraw/functions.php CHANGED
@@ -50,7 +50,7 @@ function dokan_withdraw_get_active_methods() {
50
  /**
51
  * Get active withdraw methods for seller.
52
  *
53
- * @since DOKAN_LITE_SINCE add $vendor_id param
54
  *
55
  * @param int $vendor_id Seller vendor id
56
  *
50
  /**
51
  * Get active withdraw methods for seller.
52
  *
53
+ * @since 3.0.0 add $vendor_id param
54
  *
55
  * @param int $vendor_id Seller vendor id
56
  *
includes/functions.php CHANGED
@@ -18,7 +18,7 @@ function dokan_admin_menu_position() {
18
  * @return void
19
  */
20
  function dokana_admin_menu_capability() {
21
- return apply_filters( 'dokan_menu_capability', 'manage_options' );
22
  }
23
 
24
  /**
@@ -1165,7 +1165,7 @@ function dokan_log( $message, $level = 'debug' ) {
1165
  * @return array
1166
  */
1167
  function dokan_media_uploader_restrict( $args ) {
1168
- if ( current_user_can( 'manage_options' ) ) {
1169
  return $args;
1170
  }
1171
 
@@ -3738,7 +3738,7 @@ function dokan_redirect_to_admin_setup_wizard() {
3738
  /**
3739
  * Dokan generate star ratings
3740
  *
3741
- * @since DOKAN_LITE_SINCE
3742
  *
3743
  * @param int $rating Number of rating point
3744
  * @param int $starts Total number of stars
@@ -3764,7 +3764,7 @@ function dokan_generate_ratings( $rating, $stars ) {
3764
  /**
3765
  * Check if current PHP version met the minimum requried PHP version for WooCommerce
3766
  *
3767
- * @since DOKAN_LITE_SINCE
3768
  *
3769
  * @param string $required_version
3770
  *
@@ -3772,4 +3772,4 @@ function dokan_generate_ratings( $rating, $stars ) {
3772
  */
3773
  function dokan_met_minimum_php_version_for_wc( $required_version = '7.0' ) {
3774
  return apply_filters( 'dokan_met_minimum_php_version_for_wc', version_compare( PHP_VERSION, $required_version, '>=' ), $required_version );
3775
- }
18
  * @return void
19
  */
20
  function dokana_admin_menu_capability() {
21
+ return apply_filters( 'dokan_menu_capability', 'manage_woocommerce' );
22
  }
23
 
24
  /**
1165
  * @return array
1166
  */
1167
  function dokan_media_uploader_restrict( $args ) {
1168
+ if ( current_user_can( 'manage_woocommerce' ) ) {
1169
  return $args;
1170
  }
1171
 
3738
  /**
3739
  * Dokan generate star ratings
3740
  *
3741
+ * @since 3.0.0
3742
  *
3743
  * @param int $rating Number of rating point
3744
  * @param int $starts Total number of stars
3764
  /**
3765
  * Check if current PHP version met the minimum requried PHP version for WooCommerce
3766
  *
3767
+ * @since 3.0.0
3768
  *
3769
  * @param string $required_version
3770
  *
3772
  */
3773
  function dokan_met_minimum_php_version_for_wc( $required_version = '7.0' ) {
3774
  return apply_filters( 'dokan_met_minimum_php_version_for_wc', version_compare( PHP_VERSION, $required_version, '>=' ), $required_version );
3775
+ }
languages/dokan-lite.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Dokan 3.0.0\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
- "POT-Creation-Date: 2020-02-03 10:09:54+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -49,9 +49,9 @@ msgstr ""
49
  msgid "Get Pro"
50
  msgstr ""
51
 
52
- #: dokan.php:438 includes/Admin/AdminBar.php:68 includes/Admin/Menu.php:59
53
- #: includes/Dashboard/Templates/Settings.php:58
54
- #: includes/Dashboard/Templates/Settings.php:62 includes/template-tags.php:354
55
  #: src/admin/pages/Settings.vue:3
56
  msgid "Settings"
57
  msgstr ""
@@ -78,8 +78,8 @@ msgstr ""
78
  msgid "You have no permission to do that"
79
  msgstr ""
80
 
81
- #: includes/Abstracts/DokanPromotion.php:190 includes/Admin/Settings.php:43
82
- #: includes/Admin/Settings.php:71
83
  msgid "Invalid nonce"
84
  msgstr ""
85
 
@@ -112,3944 +112,3842 @@ msgstr ""
112
  msgid "$shortcode property is empty."
113
  msgstr ""
114
 
115
- #. Plugin Name of the plugin/theme
116
- msgid "Dokan"
 
 
117
  msgstr ""
118
 
119
- #: includes/Admin/AdminBar.php:47 includes/Admin/Menu.php:42
120
- #: includes/Admin/Settings.php:411 includes/Install/Installer.php:157
121
- #: includes/template-tags.php:323 src/admin/pages/Dashboard.vue:3
122
- msgid "Dashboard"
123
  msgstr ""
124
 
125
- #: includes/Admin/AdminBar.php:54 includes/Admin/Menu.php:32
126
- #: includes/Admin/Menu.php:43 includes/Admin/SetupWizard.php:140
127
- #: includes/template-tags.php:345 templates/withdraw/header.php:11
128
- msgid "Withdraw"
 
 
 
 
 
 
 
129
  msgstr ""
130
 
131
- #: includes/Admin/AdminBar.php:61 includes/Admin/Menu.php:51
132
- msgid "PRO Features"
 
 
 
 
133
  msgstr ""
134
 
135
- #: includes/Admin/Hooks.php:78 includes/Admin/Hooks.php:84
136
- #: includes/Admin/Hooks.php:367 includes/Admin/Hooks.php:384
137
- #: includes/Admin/Settings.php:340 includes/Admin/Settings.php:348
138
- #: includes/Admin/SetupWizard.php:319 includes/Install/Installer.php:93
139
- #: includes/wc-template.php:17 includes/wc-template.php:150
140
- #: includes/wc-template.php:292 templates/my-orders.php:31
141
- msgid "Vendor"
142
  msgstr ""
143
 
144
- #: includes/Admin/Hooks.php:79
145
- msgid "Actions"
146
  msgstr ""
147
 
148
- #: includes/Admin/Hooks.php:80 includes/Admin/Hooks.php:85
149
- msgid "Sub Order"
150
  msgstr ""
151
 
152
- #: includes/Admin/Hooks.php:133
153
- msgid "&nbsp;Sub Order of"
154
  msgstr ""
155
 
156
- #: includes/Admin/Hooks.php:143
157
- msgid "Show Sub-Orders"
158
  msgstr ""
159
 
160
- #: includes/Admin/Hooks.php:143
161
- msgid "Hide Sub-Orders"
162
  msgstr ""
163
 
164
- #: includes/Admin/Hooks.php:153
165
- msgid "(no name)"
166
  msgstr ""
167
 
168
- #: includes/Admin/Hooks.php:338
169
- msgid "Toggle Sub-orders"
170
  msgstr ""
171
 
172
- #: includes/Admin/Menu.php:36
173
- msgid "Withdraw %s"
174
  msgstr ""
175
 
176
- #: includes/Admin/Menu.php:47 src/admin/pages/Vendors.vue:3
177
- msgid "Vendors"
178
  msgstr ""
179
 
180
- #: includes/Admin/Menu.php:58
181
- msgid "<span style=\"color:#f18500\">Help</span>"
182
  msgstr ""
183
 
184
- #: includes/Admin/Pointers.php:107
185
- msgid "Important Details At a Glance"
186
  msgstr ""
187
 
188
- #: includes/Admin/Pointers.php:108
189
- msgid ""
190
- "View the status of your marketplace including vendors and withdraw from "
191
- "here."
192
  msgstr ""
193
 
194
- #: includes/Admin/Pointers.php:114 includes/Admin/Pointers.php:131
195
- #: includes/Admin/Pointers.php:181 includes/Admin/Pointers.php:198
196
- #: includes/Admin/Pointers.php:215 src/admin/pages/AddVendor.vue:64
197
- msgid "Next"
198
  msgstr ""
199
 
200
- #: includes/Admin/Pointers.php:124
201
- msgid "Your Sales Overview"
202
  msgstr ""
203
 
204
- #: includes/Admin/Pointers.php:125
205
- msgid "Get a complete overview of your sales, orders and commissions."
 
206
  msgstr ""
207
 
208
- #: includes/Admin/Pointers.php:138
209
- msgid "News & Updates"
210
  msgstr ""
211
 
212
- #: includes/Admin/Pointers.php:139
213
- msgid "Get all the latest news and updates of Dokan from here."
214
  msgstr ""
215
 
216
- #: includes/Admin/Pointers.php:174
217
- msgid "General Settings"
218
  msgstr ""
219
 
220
- #: includes/Admin/Pointers.php:175
221
- msgid "Configure all general settings for your marketplace from this tab."
222
  msgstr ""
223
 
224
- #: includes/Admin/Pointers.php:191 includes/Admin/Settings.php:222
225
- msgid "Selling Options"
 
 
226
  msgstr ""
227
 
228
- #: includes/Admin/Pointers.php:192
229
- msgid "You can configure different selling options for your vendors"
230
  msgstr ""
231
 
232
- #: includes/Admin/Pointers.php:208 includes/Admin/Settings.php:227
233
- msgid "Withdraw Options"
234
  msgstr ""
235
 
236
- #: includes/Admin/Pointers.php:209
237
- msgid "Configure your vendor's balance withdrawal options"
238
  msgstr ""
239
 
240
- #: includes/Admin/Pointers.php:221
241
- msgid "Dokan Pages"
242
  msgstr ""
243
 
244
- #: includes/Admin/Pointers.php:222
245
- msgid "Dokan requires some pages to be configured and you can set them up here"
246
  msgstr ""
247
 
248
- #: includes/Admin/Promotion.php:39
249
- msgid "Create Customizable Paid Subscription Packs For Your Vendors"
250
  msgstr ""
251
 
252
- #: includes/Admin/Promotion.php:40
253
- msgid ""
254
- "By using this module, make it mandatory for your vendors to buy a "
255
- "subscription pack to sell products in your marketplace."
256
  msgstr ""
257
 
258
- #: includes/Admin/Promotion.php:47
259
- msgid "Increase conversions 270% by displaying reviews"
260
  msgstr ""
261
 
262
- #: includes/Admin/Promotion.php:48
263
- msgid ""
264
- "This extension enables your customers to post a review for each store "
265
- "available on your site."
266
  msgstr ""
267
 
268
- #: includes/Admin/Promotion.php:55
269
- msgid "Verify Your Sellers To Earn Customer Reliability"
270
  msgstr ""
271
 
272
- #: includes/Admin/Promotion.php:56
273
- msgid ""
274
- "Allow your vendors to verify their stores using social profiles, phone, "
275
- "photo ID etc. using this advanced and handy module."
276
  msgstr ""
277
 
278
- #: includes/Admin/Promotion.php:63
279
- msgid "Earn more from multiple commission type"
280
  msgstr ""
281
 
282
- #: includes/Admin/Promotion.php:64
283
- msgid ""
284
- "With this feature, you will be able to set different type of commission for "
285
- "each vendor according to the products they are selling. Meaning more "
286
- "earning for you."
287
  msgstr ""
288
 
289
- #: includes/Admin/Promotion.php:71
290
- msgid "Get priority support 24/7/365"
291
  msgstr ""
292
 
293
- #: includes/Admin/Promotion.php:72
294
- msgid ""
295
- "Need to solve a conflict with your plugins, have a theme layout issues with "
296
- "Dokan or any kind of problem you might face, we are here for you"
297
  msgstr ""
298
 
299
- #: includes/Admin/Promotion.php:79
300
- msgid "97% of consumers look for deals when they shop"
301
  msgstr ""
302
 
303
- #: includes/Admin/Promotion.php:80
304
- msgid ""
305
- "No matter what type of coupon you want to create you can do that easily "
306
- "using the pro version of Dokan. Set the coupon title, fix discount types, "
307
- "restrict email addresses and much more."
308
  msgstr ""
309
 
310
- #: includes/Admin/Promotion.php:87
311
- msgid "Exciting premium features to take your marketplace"
312
  msgstr ""
313
 
314
- #: includes/Admin/Promotion.php:88
315
- msgid ""
316
- "With the simplest configuration options available, only by enabling a "
317
- "single toggle button you will be able to do everything your competitors are "
318
- "doing and even more."
319
  msgstr ""
320
 
321
- #: includes/Admin/Settings.php:37
322
- msgid "You have no permission to get settings value"
323
  msgstr ""
324
 
325
- #: includes/Admin/Settings.php:65
326
- msgid "You are not authorized to perform this action."
327
  msgstr ""
328
 
329
- #: includes/Admin/Settings.php:75
330
- msgid "`section` parameter is required."
331
  msgstr ""
332
 
333
- #: includes/Admin/Settings.php:93
334
- msgid "Setting has been saved successfully."
335
  msgstr ""
336
 
337
- #: includes/Admin/Settings.php:217
338
- msgid "General"
339
  msgstr ""
340
 
341
- #: includes/Admin/Settings.php:232
342
- msgid "Page Settings"
343
  msgstr ""
344
 
345
- #: includes/Admin/Settings.php:237
346
- msgid "Appearance"
 
 
347
  msgstr ""
348
 
349
- #: includes/Admin/Settings.php:242 includes/Admin/Settings.php:537
350
- msgid "Privacy Policy"
351
  msgstr ""
352
 
353
- #: includes/Admin/Settings.php:265
354
- msgid "Site Options"
355
  msgstr ""
356
 
357
- #: includes/Admin/Settings.php:270
358
- msgid "Admin area access"
 
 
 
359
  msgstr ""
360
 
361
- #: includes/Admin/Settings.php:271
362
- msgid "Disallow Vendors and Customers from accessing the wp-admin dashboard area"
363
  msgstr ""
364
 
365
- #: includes/Admin/Settings.php:277
366
- #: templates/admin-setup-wizard/step-store.php:7
367
- msgid "Vendor Store URL"
368
  msgstr ""
369
 
370
- #: includes/Admin/Settings.php:278
371
- msgid "Define the Vendor store URL (%s<strong>[this-text]</strong>/[vendor-name])"
372
  msgstr ""
373
 
374
- #: includes/Admin/Settings.php:284
375
- msgid "Vendor Setup Wizard Logo"
376
  msgstr ""
377
 
378
- #: includes/Admin/Settings.php:286
379
- msgid ""
380
- "Recommended Logo size ( 270px X 90px ). If no logo is uploaded, site title "
381
- "is shown by default."
382
  msgstr ""
383
 
384
- #: includes/Admin/Settings.php:290
385
- msgid "Disable Welcome Wizard"
386
  msgstr ""
387
 
388
- #: includes/Admin/Settings.php:291
389
- msgid "Disable welcome wizard for newly registered vendors"
390
  msgstr ""
391
 
392
- #: includes/Admin/Settings.php:300
393
- msgid "Vendor Store Options"
394
  msgstr ""
395
 
396
- #: includes/Admin/Settings.php:305
397
- msgid "Store Terms and Conditions"
398
  msgstr ""
399
 
400
- #: includes/Admin/Settings.php:306
401
- msgid "Enable Terms and Conditions for vendor stores"
402
  msgstr ""
403
 
404
- #: includes/Admin/Settings.php:315
405
- msgid "Commission"
406
  msgstr ""
407
 
408
- #: includes/Admin/Settings.php:320
409
- msgid "Commission Type "
410
  msgstr ""
411
 
412
- #: includes/Admin/Settings.php:321
413
- msgid "Select a commission type for Vendor"
414
  msgstr ""
415
 
416
- #: includes/Admin/Settings.php:328 src/admin/pages/VendorPaymentFields.vue:69
417
- #: src/admin/pages/VendorPaymentFields.vue:78
418
- #: templates/admin-setup-wizard/step-selling.php:31
419
- msgid "Admin Commission"
420
  msgstr ""
421
 
422
- #: includes/Admin/Settings.php:329
423
- msgid "Amount you get from each sale"
424
  msgstr ""
425
 
426
- #: includes/Admin/Settings.php:337
427
- #: templates/admin-setup-wizard/step-store.php:14
428
- msgid "Shipping Fee Recipient"
429
  msgstr ""
430
 
431
- #: includes/Admin/Settings.php:338
432
- msgid "Who will be receiving the Shipping fees"
433
  msgstr ""
434
 
435
- #: includes/Admin/Settings.php:340 includes/Admin/Settings.php:348
436
- #: includes/Admin/SetupWizard.php:320
437
- msgid "Admin"
438
  msgstr ""
439
 
440
- #: includes/Admin/Settings.php:345
441
- #: templates/admin-setup-wizard/step-store.php:28
442
- msgid "Tax Fee Recipient"
443
  msgstr ""
444
 
445
- #: includes/Admin/Settings.php:346
446
- msgid "Who will be receiving the Tax fees"
447
  msgstr ""
448
 
449
- #: includes/Admin/Settings.php:356
450
- msgid "Vendor Capability"
451
  msgstr ""
452
 
453
- #: includes/Admin/Settings.php:361
454
- msgid "New Vendor Product Upload"
455
  msgstr ""
456
 
457
- #: includes/Admin/Settings.php:362
458
- msgid "Allow newly registered vendors to add products"
459
  msgstr ""
460
 
461
- #: includes/Admin/Settings.php:368
462
- msgid "Disable Product Popup"
463
  msgstr ""
464
 
465
- #: includes/Admin/Settings.php:369
466
- msgid "Disable add new product in popup view"
467
  msgstr ""
468
 
469
- #: includes/Admin/Settings.php:375
470
- #: templates/admin-setup-wizard/step-selling.php:39
471
- msgid "Order Status Change"
472
  msgstr ""
473
 
474
- #: includes/Admin/Settings.php:376
475
- msgid "Allow/Disallow vendor to update order status"
476
  msgstr ""
477
 
478
- #: includes/Admin/Settings.php:394 includes/Admin/SetupWizard.php:435
479
- msgid "Withdraw Methods"
480
  msgstr ""
481
 
482
- #: includes/Admin/Settings.php:395
483
- msgid "Select suitable Withdraw methods for Vendors"
484
  msgstr ""
485
 
486
- #: includes/Admin/Settings.php:402 includes/Admin/SetupWizard.php:493
487
- msgid "Minimum Withdraw Limit"
488
  msgstr ""
489
 
490
- #: includes/Admin/Settings.php:403
491
- msgid ""
492
- "Minimum balance required to make a withdraw request. Leave blank to set no "
493
- "minimum limits."
494
  msgstr ""
495
 
496
- #: includes/Admin/Settings.php:412
497
- msgid "Select a page to show Vendor Dashboard"
498
  msgstr ""
499
 
500
- #: includes/Admin/Settings.php:414 includes/Admin/Settings.php:422
501
- #: includes/Admin/Settings.php:430 includes/Admin/Settings.php:438
502
- #: includes/Admin/Settings.php:532
503
- msgid "Select page"
504
  msgstr ""
505
 
506
- #: includes/Admin/Settings.php:419 includes/Install/Installer.php:169
507
- #: templates/global/header-menu.php:46
508
- msgid "My Orders"
509
  msgstr ""
510
 
511
- #: includes/Admin/Settings.php:420
512
- msgid "Select a page to show My Orders"
513
  msgstr ""
514
 
515
- #: includes/Admin/Settings.php:427
516
- msgid "Store Listing"
517
  msgstr ""
518
 
519
- #: includes/Admin/Settings.php:428
520
- msgid "Select a page to show all Stores"
521
  msgstr ""
522
 
523
- #: includes/Admin/Settings.php:435
524
- msgid "Terms and Conditions Page"
 
 
525
  msgstr ""
526
 
527
- #: includes/Admin/Settings.php:436
528
- msgid "Select a page to show Terms and Conditions"
 
529
  msgstr ""
530
 
531
- #: includes/Admin/Settings.php:440
532
- msgid ""
533
- "Select where you want to add Dokan pages <a target=\"_blank\" href=\"%s\"> "
534
- "Learn More </a>"
535
  msgstr ""
536
 
537
- #: includes/Admin/Settings.php:446
538
- msgid "Show Map on Store Page"
 
539
  msgstr ""
540
 
541
- #: includes/Admin/Settings.php:447
542
- msgid "Enable Map of the Store Location in the store sidebar"
 
543
  msgstr ""
544
 
545
- #: includes/Admin/Settings.php:453
546
- #: templates/admin-setup-wizard/step-store.php:42
547
- msgid "Map API Source"
548
  msgstr ""
549
 
550
- #: includes/Admin/Settings.php:454
551
- #: templates/admin-setup-wizard/step-store.php:52
552
- msgid "Which Map API source you want to use in your site?"
553
  msgstr ""
554
 
555
- #: includes/Admin/Settings.php:459 includes/Admin/SetupWizard.php:332
556
- msgid "Google Maps"
 
 
 
557
  msgstr ""
558
 
559
- #: includes/Admin/Settings.php:460 includes/Admin/SetupWizard.php:333
560
- msgid "Mapbox"
 
561
  msgstr ""
562
 
563
- #: includes/Admin/Settings.php:470
564
- #: templates/admin-setup-wizard/step-store.php:56
565
- msgid "Google Map API Key"
566
  msgstr ""
567
 
568
- #: includes/Admin/Settings.php:471
569
- msgid ""
570
- "<a href=\"https://developers.google.com/maps/documentation/javascript/\" "
571
- "target=\"_blank\" rel=\"noopener noreferrer\">API Key</a> is needed to "
572
- "display map on store page"
573
  msgstr ""
574
 
575
- #: includes/Admin/Settings.php:481
576
- #: templates/admin-setup-wizard/step-store.php:71
577
- msgid "Mapbox Access Token"
 
578
  msgstr ""
579
 
580
- #: includes/Admin/Settings.php:482
581
- #: templates/admin-setup-wizard/step-store.php:75
582
- msgid ""
583
- "<a href=\"https://docs.mapbox.com/help/how-mapbox-works/access-tokens/\" "
584
- "target=\"_blank\" rel=\"noopener noreferrer\">Access Token</a> is needed to "
585
- "display map on store page"
586
  msgstr ""
587
 
588
- #: includes/Admin/Settings.php:487
589
- msgid "Show Contact Form on Store Page"
 
 
590
  msgstr ""
591
 
592
- #: includes/Admin/Settings.php:488
593
- msgid "Display a vendor contact form in the store sidebar"
594
  msgstr ""
595
 
596
- #: includes/Admin/Settings.php:494
597
- msgid "Store Header Template"
 
598
  msgstr ""
599
 
600
- #: includes/Admin/Settings.php:506
601
- msgid "Store Opening Closing Time Widget"
602
  msgstr ""
603
 
604
- #: includes/Admin/Settings.php:507
605
- msgid "Enable store opening & closing time widget in the store sidebar"
 
 
 
606
  msgstr ""
607
 
608
- #: includes/Admin/Settings.php:513
609
- msgid "Enable Store Sidebar From Theme"
610
  msgstr ""
611
 
612
- #: includes/Admin/Settings.php:514
613
- msgid "Enable showing Store Sidebar From Your Theme."
 
614
  msgstr ""
615
 
616
- #: includes/Admin/Settings.php:522
617
- msgid "Enable Privacy Policy"
618
  msgstr ""
619
 
620
- #: includes/Admin/Settings.php:524
621
- msgid "Enable privacy policy for Vendor store contact form"
 
622
  msgstr ""
623
 
624
- #: includes/Admin/Settings.php:529
625
- msgid "Privacy Page"
 
 
626
  msgstr ""
627
 
628
- #: includes/Admin/Settings.php:531
629
- msgid "Select a page to show your privacy policy"
 
 
 
630
  msgstr ""
631
 
632
- #: includes/Admin/Settings.php:540 includes/functions.php:3488
633
- msgid ""
634
- "Your personal data will be used to support your experience throughout this "
635
- "website, to manage access to your account, and for other purposes described "
636
- "in our [dokan_privacy_policy]"
637
  msgstr ""
638
 
639
- #: includes/Admin/SetupWizard.php:126 includes/Vendor/SetupWizard.php:70
640
- msgid "Introduction"
641
  msgstr ""
642
 
643
- #: includes/Admin/SetupWizard.php:130 includes/Vendor/SetupWizard.php:75
644
- #: includes/template-tags.php:368
645
- msgid "Store"
646
  msgstr ""
647
 
648
- #: includes/Admin/SetupWizard.php:135 includes/Admin/UserProfile.php:294
649
- msgid "Selling"
650
  msgstr ""
651
 
652
- #: includes/Admin/SetupWizard.php:145
653
- msgid "Recommended"
654
  msgstr ""
655
 
656
- #: includes/Admin/SetupWizard.php:150 includes/Vendor/SetupWizard.php:85
657
- msgid "Ready!"
 
658
  msgstr ""
659
 
660
- #: includes/Admin/SetupWizard.php:227
661
- msgid "Dokan &rsaquo; Setup Wizard"
662
  msgstr ""
663
 
664
- #: includes/Admin/SetupWizard.php:247 includes/Admin/SetupWizardNoWC.php:96
665
- msgid "Return to the WordPress Dashboard"
666
  msgstr ""
667
 
668
- #: includes/Admin/SetupWizard.php:294
669
- #: templates/admin-setup-wizard/step-no-wc-introduction.php:2
670
- msgid "Welcome to the world of Dokan!"
671
  msgstr ""
672
 
673
- #: includes/Admin/SetupWizard.php:295
674
- msgid ""
675
- "Thank you for choosing Dokan to power your online marketplace! This quick "
676
- "setup wizard will help you configure the basic settings. <strong>It’s "
677
- "completely optional and shouldn’t take longer than three minutes.</strong>"
678
  msgstr ""
679
 
680
- #: includes/Admin/SetupWizard.php:296
681
- msgid ""
682
- "No time right now? If you don’t want to go through the wizard, you can skip "
683
- "and return to the WordPress dashboard. Come back anytime if you change your "
684
- "mind!"
685
  msgstr ""
686
 
687
- #: includes/Admin/SetupWizard.php:298 includes/Vendor/SetupWizard.php:155
688
- #: templates/admin-setup-wizard/step-no-wc-introduction.php:54
689
- msgid "Let's Go!"
690
  msgstr ""
691
 
692
- #: includes/Admin/SetupWizard.php:299 includes/Vendor/SetupWizard.php:156
693
- msgid "Not right now"
694
  msgstr ""
695
 
696
- #: includes/Admin/SetupWizard.php:431
697
- msgid "Withdraw Setup"
698
  msgstr ""
699
 
700
- #: includes/Admin/SetupWizard.php:442 includes/Withdraw/functions.php:12
701
- msgid "PayPal"
 
 
702
  msgstr ""
703
 
704
- #: includes/Admin/SetupWizard.php:445
705
- msgid "Enable PayPal for your vendor as a withdraw method"
706
  msgstr ""
707
 
708
- #: includes/Admin/SetupWizard.php:455
709
- msgid "Bank"
 
 
710
  msgstr ""
711
 
712
- #: includes/Admin/SetupWizard.php:458
713
- msgid "Enable bank transfer for your vendor as a withdraw method"
714
  msgstr ""
715
 
716
- #: includes/Admin/SetupWizard.php:468
717
- msgid "Skrill"
 
718
  msgstr ""
719
 
720
- #: includes/Admin/SetupWizard.php:471
721
- msgid "Enable skrill for your vendor as a withdraw method"
 
 
 
 
 
722
  msgstr ""
723
 
724
- #: includes/Admin/SetupWizard.php:496
725
- msgid ""
726
- "Minimum balance required to make a withdraw request ( Leave it blank to set "
727
- "no limits )"
728
  msgstr ""
729
 
730
- #: includes/Admin/SetupWizard.php:500
731
- msgid "Order Status for Withdraw"
732
  msgstr ""
733
 
734
- #: includes/Admin/SetupWizard.php:506
735
- #: includes/Dashboard/Templates/Dashboard.php:101
736
- #: includes/Order/functions.php:490 templates/dashboard/orders-widget.php:26
737
- msgid "Completed"
738
  msgstr ""
739
 
740
- #: includes/Admin/SetupWizard.php:512
741
- #: includes/Dashboard/Templates/Dashboard.php:111
742
- #: includes/Order/functions.php:505 templates/dashboard/orders-widget.php:36
743
- #: templates/orders/listing.php:138
744
- msgid "Processing"
745
  msgstr ""
746
 
747
- #: includes/Admin/SetupWizard.php:518 includes/Order/functions.php:500
748
- msgid "On-hold"
749
  msgstr ""
750
 
751
- #: includes/Admin/SetupWizard.php:523
752
- msgid "Order status for which vendor can make a withdraw request."
 
753
  msgstr ""
754
 
755
- #: includes/Admin/SetupWizard.php:528 includes/Admin/SetupWizard.php:580
756
- #: includes/Admin/SetupWizardWCAdmin.php:232
757
- #: includes/Vendor/SetupWizard.php:243 includes/Vendor/SetupWizard.php:396
758
- #: templates/admin-setup-wizard/step-selling.php:53
759
- #: templates/admin-setup-wizard/step-store.php:100
760
- msgid "Continue"
761
  msgstr ""
762
 
763
- #: includes/Admin/SetupWizard.php:529 includes/Vendor/SetupWizard.php:244
764
- #: includes/Vendor/SetupWizard.php:397
765
- #: templates/admin-setup-wizard/step-selling.php:54
766
- #: templates/admin-setup-wizard/step-store.php:101
767
- msgid "Skip this step"
768
  msgstr ""
769
 
770
- #: includes/Admin/SetupWizard.php:545
771
- msgid "Recommended for All Dokan Marketplaces"
772
  msgstr ""
773
 
774
- #: includes/Admin/SetupWizard.php:547
775
- msgid "Enhance your store with these recommended features."
776
  msgstr ""
777
 
778
- #: includes/Admin/SetupWizard.php:557 includes/Admin/SetupWizard.php:561
779
- #: includes/Admin/SetupWizard.php:604
780
- msgid "WooCommerce Conversion Tracking"
781
  msgstr ""
782
 
783
- #: includes/Admin/SetupWizard.php:558
784
- msgid "Track conversions on your WooCommerce store like a pro!"
785
  msgstr ""
786
 
787
- #: includes/Admin/SetupWizard.php:560
788
- msgid "WooCommerce Conversion Tracking logo"
789
  msgstr ""
790
 
791
- #: includes/Admin/SetupWizard.php:568 includes/Admin/SetupWizard.php:572
792
- #: includes/Admin/SetupWizard.php:615
793
- msgid "weForms"
794
  msgstr ""
795
 
796
- #: includes/Admin/SetupWizard.php:569
797
- msgid "Best Contact Form Plugin for WordPress."
 
798
  msgstr ""
799
 
800
- #: includes/Admin/SetupWizard.php:571
801
- msgid "weForms logo"
802
  msgstr ""
803
 
804
- #: includes/Admin/SetupWizard.php:675
805
- msgid "Your Marketplace is Ready!"
806
  msgstr ""
807
 
808
- #: includes/Admin/SetupWizard.php:680
809
- msgid "Visit Dokan Dashboard"
810
  msgstr ""
811
 
812
- #: includes/Admin/SetupWizard.php:681
813
- msgid "More Settings"
814
  msgstr ""
815
 
816
- #: includes/Admin/SetupWizard.php:782
817
- msgid "The following plugins will be installed and activated for you:"
818
  msgstr ""
819
 
820
- #: includes/Admin/SetupWizard.php:914
821
- msgid "Contact Admin"
822
  msgstr ""
823
 
824
- #: includes/Admin/SetupWizardNoWC.php:20
825
- msgid "Welcome to Dokan"
826
  msgstr ""
827
 
828
- #: includes/Admin/SetupWizardNoWC.php:133
829
- msgid "Error installing WooCommerce plugin"
830
  msgstr ""
831
 
832
- #: includes/Admin/SetupWizardNoWC.php:177 includes/Vendor/SetupWizard.php:80
833
- #: includes/template-tags.php:375
834
- msgid "Payment"
835
  msgstr ""
836
 
837
- #: includes/Admin/SetupWizardNoWC.php:183
838
- #: includes/Admin/SetupWizardWCAdmin.php:84 includes/Product/functions.php:184
839
- msgid "Shipping"
840
  msgstr ""
841
 
842
- #: includes/Admin/SetupWizardWCAdmin.php:75
843
- #. translators: %s: country name including the 'the' prefix if needed
844
- msgid ""
845
- "We've created two Shipping Zones - for %s and for the rest of the world. "
846
- "Below you can set Flat Rate shipping costs for these Zones or offer Free "
847
- "Shipping."
848
  msgstr ""
849
 
850
- #: includes/Admin/SetupWizardWCAdmin.php:96
851
- #: includes/Admin/SetupWizardWCAdmin.php:107
852
- msgid "Did you know you can print shipping labels at home?"
853
  msgstr ""
854
 
855
- #: includes/Admin/SetupWizardWCAdmin.php:97
856
- msgid ""
857
- "Use WooCommerce Shipping (powered by WooCommerce Services & Jetpack) to "
858
- "save time at the post office by printing your shipping labels at home."
859
  msgstr ""
860
 
861
- #: includes/Admin/SetupWizardWCAdmin.php:99
862
- msgid "WooCommerce Services icon"
863
  msgstr ""
864
 
865
- #: includes/Admin/SetupWizardWCAdmin.php:108
866
- msgid ""
867
- "We recommend using ShipStation to save time at the post office by printing "
868
- "your shipping labels at home. Try ShipStation free for 30 days."
869
  msgstr ""
870
 
871
- #: includes/Admin/SetupWizardWCAdmin.php:110
872
- msgid "ShipStation icon"
873
  msgstr ""
874
 
875
- #: includes/Admin/SetupWizardWCAdmin.php:113
876
- msgid "ShipStation"
877
  msgstr ""
878
 
879
- #: includes/Admin/SetupWizardWCAdmin.php:128
880
- msgid "Shipping Zone"
881
  msgstr ""
882
 
883
- #: includes/Admin/SetupWizardWCAdmin.php:131
884
- msgid "Shipping Method"
885
  msgstr ""
886
 
887
- #: includes/Admin/SetupWizardWCAdmin.php:156
888
- msgid "Locations not covered by your other zones"
889
  msgstr ""
890
 
891
- #: includes/Admin/SetupWizardWCAdmin.php:180
892
- #. translators: %1$s: live rates tooltip text, %2$s: shipping extensions URL
893
- msgid ""
894
- "If you'd like to offer <span class=\"help_tip\" data-tip=\"%1$s\">live "
895
- "rates</span> from a specific carrier (e.g. UPS) you can find a variety of "
896
- "extensions available for WooCommerce <a href=\"%2$s\" "
897
- "target=\"_blank\">here</a>."
898
  msgstr ""
899
 
900
- #: includes/Admin/SetupWizardWCAdmin.php:192
901
- msgid ""
902
- "A live rate is the exact cost to ship an order, quoted directly from the "
903
- "shipping carrier."
904
  msgstr ""
905
 
906
- #: includes/Admin/SetupWizardWCAdmin.php:207
907
- #. translators: %1$s: weight unit dropdown, %2$s: dimension unit dropdown
908
- msgid "We'll use %1$s for product weight and %2$s for product dimensions."
909
  msgstr ""
910
 
911
- #: includes/Admin/UserProfile.php:38 includes/Ajax.php:139
912
- #: includes/Assets.php:398 src/admin/pages/VendorAccountFields.vue:279
913
- #: src/admin/pages/VendorAccountFields.vue:311
914
- #: src/admin/pages/VendorAccountFields.vue:343
915
- msgid "Available"
916
  msgstr ""
917
 
918
- #: includes/Admin/UserProfile.php:39 includes/Assets.php:399
919
- #: src/admin/pages/VendorAccountFields.vue:287
920
- #: src/admin/pages/VendorAccountFields.vue:319
921
- msgid "Not Available"
922
  msgstr ""
923
 
924
- #: includes/Admin/UserProfile.php:88 includes/Privacy.php:227
925
- #: includes/Vendor/SetupWizard.php:213
926
- #: src/admin/pages/VendorAddressFields.vue:31
927
- #: templates/admin-setup-wizard/step-store-wc-fields.php:24
928
- msgid "Country"
929
  msgstr ""
930
 
931
- #: includes/Admin/UserProfile.php:92
932
- msgid "Select a country&hellip;"
933
  msgstr ""
934
 
935
- #: includes/Admin/UserProfile.php:95
936
- msgid "State/County"
937
  msgstr ""
938
 
939
- #: includes/Admin/UserProfile.php:96
940
- msgid "State/County or state code"
 
 
 
 
 
 
941
  msgstr ""
942
 
943
- #: includes/Admin/UserProfile.php:101
944
- msgid "Dokan Options"
945
  msgstr ""
946
 
947
- #: includes/Admin/UserProfile.php:106
948
- msgid "Banner"
949
  msgstr ""
950
 
951
- #: includes/Admin/UserProfile.php:118 templates/settings/store-form.php:74
952
- msgid "Upload banner"
953
  msgstr ""
954
 
955
- #: includes/Admin/UserProfile.php:122
956
- msgid "Upload a banner for your store. Banner size is (%1$sx%2$s) pixels."
 
 
957
  msgstr ""
958
 
959
- #: includes/Admin/UserProfile.php:134
960
- msgid "Store name"
 
 
961
  msgstr ""
962
 
963
- #: includes/Admin/UserProfile.php:141
964
- #: src/admin/pages/VendorAccountFields.vue:53
965
- msgid "Store URL"
 
966
  msgstr ""
967
 
968
- #: includes/Admin/UserProfile.php:149 includes/Privacy.php:223
969
- msgid "Address 1"
 
 
970
  msgstr ""
971
 
972
- #: includes/Admin/UserProfile.php:156 includes/Privacy.php:224
973
- msgid "Address 2"
 
 
974
  msgstr ""
975
 
976
- #: includes/Admin/UserProfile.php:163
977
- msgid "Town/City"
 
 
978
  msgstr ""
979
 
980
- #: includes/Admin/UserProfile.php:170
981
- msgid "Zip Code"
 
 
 
 
982
  msgstr ""
983
 
984
- #: includes/Admin/UserProfile.php:211
985
- #: src/admin/pages/VendorAccountFields.vue:64
986
- #: templates/account/vendor-registration.php:33
987
- #: templates/global/seller-registration-form.php:38
988
- msgid "Phone Number"
989
  msgstr ""
990
 
991
- #: includes/Admin/UserProfile.php:229
992
- msgid "Payment Options : "
993
  msgstr ""
994
 
995
- #: includes/Admin/UserProfile.php:234
996
- msgid "Paypal Email "
997
  msgstr ""
998
 
999
- #: includes/Admin/UserProfile.php:242
1000
- msgid "Skrill Email "
1001
  msgstr ""
1002
 
1003
- #: includes/Admin/UserProfile.php:251
1004
- msgid "Bank name "
1005
  msgstr ""
1006
 
1007
- #: includes/Admin/UserProfile.php:257
1008
- msgid "Account Name "
1009
  msgstr ""
1010
 
1011
- #: includes/Admin/UserProfile.php:263
1012
- msgid "Account Number "
1013
  msgstr ""
1014
 
1015
- #: includes/Admin/UserProfile.php:269
1016
- msgid "Bank Address "
 
 
1017
  msgstr ""
1018
 
1019
- #: includes/Admin/UserProfile.php:275 includes/Privacy.php:284
1020
- #: src/admin/pages/VendorPaymentFields.vue:30
1021
- msgid "Routing Number"
 
 
 
 
1022
  msgstr ""
1023
 
1024
- #: includes/Admin/UserProfile.php:281
1025
- msgid "Bank IBAN "
1026
- msgstr ""
1027
-
1028
- #: includes/Admin/UserProfile.php:287
1029
- msgid "Bank Swift "
1030
  msgstr ""
1031
 
1032
- #: includes/Admin/UserProfile.php:299
1033
- msgid "Enable Adding Products"
1034
  msgstr ""
1035
 
1036
- #: includes/Admin/UserProfile.php:302
1037
- msgid "Enable or disable product adding capability"
 
 
1038
  msgstr ""
1039
 
1040
- #: includes/Admin/UserProfile.php:307
1041
- msgid "Publishing"
 
 
1042
  msgstr ""
1043
 
1044
- #: includes/Admin/UserProfile.php:312
1045
- msgid "Publish product directly"
 
 
1046
  msgstr ""
1047
 
1048
- #: includes/Admin/UserProfile.php:315
1049
- msgid "Bypass pending, publish products directly"
 
 
1050
  msgstr ""
1051
 
1052
- #: includes/Admin/UserProfile.php:320
1053
- msgid "Admin Commission Type "
1054
  msgstr ""
1055
 
1056
- #: includes/Admin/UserProfile.php:327
1057
- msgid "Set the commmission type admin gets from this seller"
 
 
 
1058
  msgstr ""
1059
 
1060
- #: includes/Admin/UserProfile.php:331
1061
- msgid "Admin Commission "
 
 
1062
  msgstr ""
1063
 
1064
- #: includes/Admin/UserProfile.php:335
1065
- msgid "It will override the default commission admin gets from each sales"
1066
  msgstr ""
1067
 
1068
- #: includes/Admin/UserProfile.php:340
1069
- msgid "Featured vendor"
 
 
 
 
1070
  msgstr ""
1071
 
1072
- #: includes/Admin/UserProfile.php:345
1073
- msgid "Mark as featured vendor"
 
 
 
1074
  msgstr ""
1075
 
1076
- #: includes/Admin/UserProfile.php:348
1077
- msgid "This vendor will be marked as a featured vendor."
 
 
 
1078
  msgstr ""
1079
 
1080
- #: includes/Admin/functions.php:211 includes/Admin/functions.php:485
1081
- #: includes/REST/AdminReportController.php:134
1082
- msgid "Total Sales"
1083
  msgstr ""
1084
 
1085
- #: includes/Admin/functions.php:218 includes/Admin/functions.php:492
1086
- msgid "Total: "
 
 
 
 
1087
  msgstr ""
1088
 
1089
- #: includes/Admin/functions.php:221 includes/Admin/functions.php:495
1090
- #: includes/REST/AdminReportController.php:142 includes/reports.php:359
1091
- msgid "Number of orders"
 
1092
  msgstr ""
1093
 
1094
- #: includes/Admin/functions.php:228 includes/Admin/functions.php:502
1095
- msgid "sales"
1096
  msgstr ""
1097
 
1098
- #: includes/Admin/functions.php:231 includes/Admin/functions.php:505
1099
- #: includes/REST/AdminReportController.php:149
1100
- msgid "Commision"
1101
  msgstr ""
1102
 
1103
- #: includes/Admin/functions.php:238 includes/Admin/functions.php:512
1104
- msgid "Commision: "
 
 
 
 
1105
  msgstr ""
1106
 
1107
- #: includes/Ajax.php:71 includes/Ajax.php:946
1108
- #: includes/Dashboard/Templates/Withdraw.php:110
1109
- #: includes/Dashboard/Templates/Withdraw.php:169
1110
- msgid "You have no permission to do this action"
1111
  msgstr ""
1112
 
1113
- #: includes/Ajax.php:93
1114
- msgid "Something wrong, please try again later"
1115
  msgstr ""
1116
 
1117
- #: includes/Ajax.php:108 includes/Dashboard/Templates/Settings.php:211
1118
- #: includes/Dashboard/Templates/Settings.php:225
1119
- #: includes/Dashboard/Templates/Settings.php:237
1120
- #: includes/Dashboard/Templates/Settings.php:249
1121
- #: includes/Dashboard/Templates/Settings.php:286
1122
- #: includes/Dashboard/Templates/Settings.php:352
1123
- #: includes/Dashboard/Templates/Settings.php:393
1124
- #: includes/Dashboard/Templates/Settings.php:443
1125
- #: includes/Dashboard/Templates/Withdraw.php:106
1126
- #: includes/Dashboard/Templates/Withdraw.php:165
1127
- msgid "Are you cheating?"
1128
  msgstr ""
1129
 
1130
- #: includes/Ajax.php:156 includes/Ajax.php:191
1131
- msgid "You do not have sufficient permissions to access this page."
 
1132
  msgstr ""
1133
 
1134
- #: includes/Ajax.php:160 includes/Ajax.php:195
1135
- msgid "You have taken too long. Please go back and retry."
 
1136
  msgstr ""
1137
 
1138
- #: includes/Ajax.php:170 includes/Ajax.php:205
1139
- msgid "You do not have permission to change this order"
 
1140
  msgstr ""
1141
 
1142
- #: includes/Ajax.php:268
1143
- msgid "File %d"
 
1144
  msgstr ""
1145
 
1146
- #: includes/Ajax.php:290
1147
- msgid "You have no permission to manage this order"
1148
  msgstr ""
1149
 
1150
- #: includes/Ajax.php:325 includes/Ajax.php:330
1151
- msgid "Please provide your name."
 
1152
  msgstr ""
1153
 
1154
- #: includes/Ajax.php:337 includes/template-tags.php:140
1155
- msgid "Something went wrong!"
 
1156
  msgstr ""
1157
 
1158
- #: includes/Ajax.php:343 includes/REST/StoreController.php:759
1159
- msgid "Email sent successfully!"
 
1160
  msgstr ""
1161
 
1162
- #: includes/Ajax.php:402 templates/orders/details.php:288
1163
- msgid "Delete note"
1164
  msgstr ""
1165
 
1166
- #: includes/Ajax.php:432
1167
- msgid "Shipping provider: "
1168
  msgstr ""
1169
 
1170
- #: includes/Ajax.php:432
1171
- msgid "Shipping number: "
 
 
 
 
1172
  msgstr ""
1173
 
1174
- #: includes/Ajax.php:432
1175
- msgid "Shipped date: "
1176
  msgstr ""
1177
 
1178
- #: includes/Ajax.php:469 includes/woo-views/html-product-download.php:14
1179
- msgid "Delete"
 
 
1180
  msgstr ""
1181
 
1182
- #: includes/Ajax.php:514
1183
- msgid "Error: Nonce verification failed"
 
 
 
 
1184
  msgstr ""
1185
 
1186
- #: includes/Ajax.php:601
1187
- msgid "Image could not be processed. Please go back and try again."
1188
  msgstr ""
1189
 
1190
- #: includes/Ajax.php:722
1191
- #. translators: 1: user display name 2: user ID 3: user email
1192
- msgid "%1$s (#%2$s &ndash; %3$s)"
1193
  msgstr ""
1194
 
1195
- #: includes/Ajax.php:867
1196
- msgid "Invalid username or password."
1197
  msgstr ""
1198
 
1199
- #: includes/Ajax.php:876
1200
- msgid "Wrong username or password."
 
1201
  msgstr ""
1202
 
1203
- #: includes/Ajax.php:903
1204
- msgid "User logged in successfully."
 
1205
  msgstr ""
1206
 
1207
- #: includes/Ajax.php:952
1208
- msgid "id param is required"
 
1209
  msgstr ""
1210
 
1211
- #: includes/Assets.php:401
1212
- msgid "Are you sure?"
 
1213
  msgstr ""
1214
 
1215
- #: includes/Assets.php:402
1216
- msgid "Something went wrong. Please try again."
1217
  msgstr ""
1218
 
1219
- #: includes/Assets.php:477
1220
- msgid "This field is required"
1221
  msgstr ""
1222
 
1223
- #: includes/Assets.php:478
1224
- msgid "Please fix this field."
1225
  msgstr ""
1226
 
1227
- #: includes/Assets.php:479
1228
- msgid "Please enter a valid email address."
1229
  msgstr ""
1230
 
1231
- #: includes/Assets.php:480
1232
- msgid "Please enter a valid URL."
1233
  msgstr ""
1234
 
1235
- #: includes/Assets.php:481
1236
- msgid "Please enter a valid date."
 
 
1237
  msgstr ""
1238
 
1239
- #: includes/Assets.php:482
1240
- msgid "Please enter a valid date (ISO)."
1241
  msgstr ""
1242
 
1243
- #: includes/Assets.php:483
1244
- msgid "Please enter a valid number."
1245
  msgstr ""
1246
 
1247
- #: includes/Assets.php:484
1248
- msgid "Please enter only digits."
1249
  msgstr ""
1250
 
1251
- #: includes/Assets.php:485
1252
- msgid "Please enter a valid credit card number."
 
 
 
 
1253
  msgstr ""
1254
 
1255
- #: includes/Assets.php:486
1256
- msgid "Please enter the same value again."
1257
  msgstr ""
1258
 
1259
- #: includes/Assets.php:487
1260
- msgid "Please enter no more than {0} characters."
1261
  msgstr ""
1262
 
1263
- #: includes/Assets.php:488
1264
- msgid "Please enter at least {0} characters."
1265
  msgstr ""
1266
 
1267
- #: includes/Assets.php:489
1268
- msgid "Please enter a value between {0} and {1} characters long."
1269
  msgstr ""
1270
 
1271
- #: includes/Assets.php:490
1272
- msgid "Please enter a value between {0} and {1}."
1273
  msgstr ""
1274
 
1275
- #: includes/Assets.php:491
1276
- msgid "Please enter a value less than or equal to {0}."
1277
  msgstr ""
1278
 
1279
- #: includes/Assets.php:492
1280
- msgid "Please enter a value greater than or equal to {0}."
1281
  msgstr ""
1282
 
1283
- #: includes/Assets.php:610
1284
- msgid "Upload featured image"
1285
  msgstr ""
1286
 
1287
- #: includes/Assets.php:611
1288
- msgid "Choose a file"
1289
  msgstr ""
1290
 
1291
- #: includes/Assets.php:612
1292
- msgid "Add Images to Product Gallery"
1293
  msgstr ""
1294
 
1295
- #: includes/Assets.php:613
1296
- msgid "Set featured image"
1297
  msgstr ""
1298
 
1299
- #: includes/Assets.php:614 includes/woo-views/html-product-download.php:8
1300
- msgid "Insert file URL"
1301
  msgstr ""
1302
 
1303
- #: includes/Assets.php:615
1304
- msgid "Add to gallery"
1305
  msgstr ""
1306
 
1307
- #: includes/Assets.php:616
1308
- msgid "Sorry, this attribute option already exists, Try a different one."
 
 
1309
  msgstr ""
1310
 
1311
- #: includes/Assets.php:617
1312
- msgid ""
1313
- "Warning! This product will not have any variations if this option is not "
1314
- "checked."
1315
  msgstr ""
1316
 
1317
- #: includes/Assets.php:618
1318
- msgid "Enter a name for the new attribute term:"
1319
  msgstr ""
1320
 
1321
- #: includes/Assets.php:619
1322
- msgid "Remove this attribute?"
1323
  msgstr ""
1324
 
1325
- #: includes/Assets.php:627
1326
- msgid ""
1327
- "Are you sure you want to link all variations? This will create a new "
1328
- "variation for each and every possible combination of variation attributes "
1329
- "(max %d per run)."
1330
  msgstr ""
1331
 
1332
- #: includes/Assets.php:628
1333
- msgid "Enter a value"
1334
  msgstr ""
1335
 
1336
- #: includes/Assets.php:629
1337
- msgid "Variation menu order (determines position in the list of variations)"
1338
  msgstr ""
1339
 
1340
- #: includes/Assets.php:630
1341
- msgid "Enter a value (fixed or %)"
1342
  msgstr ""
1343
 
1344
- #: includes/Assets.php:631
1345
- msgid "Are you sure you want to delete all variations? This cannot be undone."
1346
  msgstr ""
1347
 
1348
- #: includes/Assets.php:632
1349
- msgid "Last warning, are you sure?"
1350
  msgstr ""
1351
 
1352
- #: includes/Assets.php:633
1353
- msgid "Choose an image"
 
 
1354
  msgstr ""
1355
 
1356
- #: includes/Assets.php:634
1357
- msgid "Set variation image"
1358
  msgstr ""
1359
 
1360
- #: includes/Assets.php:635
1361
- msgid "variation added"
1362
  msgstr ""
1363
 
1364
- #: includes/Assets.php:636
1365
- msgid "variations added"
 
 
 
 
 
 
 
 
1366
  msgstr ""
1367
 
1368
- #: includes/Assets.php:637
1369
- msgid "No variations added"
 
 
 
 
 
 
1370
  msgstr ""
1371
 
1372
- #: includes/Assets.php:638
1373
- msgid "Are you sure you want to remove this variation?"
 
 
1374
  msgstr ""
1375
 
1376
- #: includes/Assets.php:639
1377
- msgid "Sale start date (YYYY-MM-DD format or leave blank)"
1378
  msgstr ""
1379
 
1380
- #: includes/Assets.php:640
1381
- msgid "Sale end date (YYYY-MM-DD format or leave blank)"
1382
  msgstr ""
1383
 
1384
- #: includes/Assets.php:641
1385
- msgid "Save changes before changing page?"
1386
  msgstr ""
1387
 
1388
- #: includes/Assets.php:642
1389
- msgid "%qty% variation"
1390
  msgstr ""
1391
 
1392
- #: includes/Assets.php:643
1393
- msgid "%qty% variations"
1394
  msgstr ""
1395
 
1396
- #: includes/Assets.php:644
1397
- msgid "No Result Found"
1398
  msgstr ""
1399
 
1400
- #: includes/Assets.php:647
1401
- msgid "Select and Crop"
1402
  msgstr ""
1403
 
1404
- #: includes/Assets.php:648
1405
- msgid "Choose Image"
1406
  msgstr ""
1407
 
1408
- #: includes/Assets.php:649
1409
- msgid "Product title is required"
1410
  msgstr ""
1411
 
1412
- #: includes/Assets.php:650
1413
- msgid "Product category is required"
 
1414
  msgstr ""
1415
 
1416
- #: includes/Assets.php:653
1417
- msgid "One result is available, press enter to select it."
1418
  msgstr ""
1419
 
1420
- #: includes/Assets.php:654
1421
- msgid "%qty% results are available, use up and down arrow keys to navigate."
 
1422
  msgstr ""
1423
 
1424
- #: includes/Assets.php:655
1425
- msgid "No matches found"
1426
  msgstr ""
1427
 
1428
- #: includes/Assets.php:656
1429
- msgid "Loading failed"
1430
  msgstr ""
1431
 
1432
- #: includes/Assets.php:657
1433
- msgid "Please enter 1 or more characters"
1434
  msgstr ""
1435
 
1436
- #: includes/Assets.php:658
1437
- msgid "Please enter %qty% or more characters"
1438
  msgstr ""
1439
 
1440
- #: includes/Assets.php:659
1441
- msgid "Please delete 1 character"
 
 
1442
  msgstr ""
1443
 
1444
- #: includes/Assets.php:660
1445
- msgid "Please delete %qty% characters"
1446
  msgstr ""
1447
 
1448
- #: includes/Assets.php:661
1449
- msgid "You can only select 1 item"
 
1450
  msgstr ""
1451
 
1452
- #: includes/Assets.php:662
1453
- msgid "You can only select %qty% items"
 
 
 
1454
  msgstr ""
1455
 
1456
- #: includes/Assets.php:663
1457
- msgid "Loading more results&hellip;"
 
1458
  msgstr ""
1459
 
1460
- #: includes/Assets.php:664
1461
- msgid "Searching&hellip;"
 
1462
  msgstr ""
1463
 
1464
- #: includes/Commission.php:128
1465
- msgid "Product not found"
 
1466
  msgstr ""
1467
 
1468
- #: includes/Commission.php:156
1469
- msgid "Order not found"
 
 
 
 
 
 
 
1470
  msgstr ""
1471
 
1472
- #: includes/Core.php:143
1473
- msgid "Page %s"
1474
  msgstr ""
1475
 
1476
- #: includes/Dashboard/Templates/Dashboard.php:106
1477
- #: templates/dashboard/orders-widget.php:31
1478
- msgid "Pending"
1479
  msgstr ""
1480
 
1481
- #: includes/Dashboard/Templates/Dashboard.php:116
1482
- #: includes/Order/functions.php:515 templates/dashboard/orders-widget.php:41
1483
- msgid "Cancelled"
 
1484
  msgstr ""
1485
 
1486
- #: includes/Dashboard/Templates/Dashboard.php:121
1487
- #: includes/Order/functions.php:510 templates/dashboard/orders-widget.php:46
1488
- msgid "Refunded"
 
1489
  msgstr ""
1490
 
1491
- #: includes/Dashboard/Templates/Dashboard.php:126
1492
- msgid "On Hold"
1493
  msgstr ""
1494
 
1495
- #: includes/Dashboard/Templates/Orders.php:69
1496
- msgid "You have no permission to view this order"
1497
  msgstr ""
1498
 
1499
- #: includes/Dashboard/Templates/Products.php:184
1500
- #: includes/Dashboard/Templates/Settings.php:141
1501
- #: includes/Dashboard/Templates/Settings.php:152
1502
- #: includes/Shortcodes/Dashboard.php:29 templates/global/no-permission.php:53
1503
- msgid "You have no permission to view this page"
1504
  msgstr ""
1505
 
1506
- #: includes/Dashboard/Templates/Products.php:201
1507
- #: templates/orders/listing.php:11
1508
- msgid "Bulk Actions"
1509
  msgstr ""
1510
 
1511
- #: includes/Dashboard/Templates/Products.php:202
1512
- #: includes/Product/functions.php:434
1513
- msgid "Delete Permanently"
1514
  msgstr ""
1515
 
1516
- #: includes/Dashboard/Templates/Products.php:235
1517
- msgid "Details of your product ..."
 
1518
  msgstr ""
1519
 
1520
- #: includes/Dashboard/Templates/Products.php:244
1521
- #: includes/Dashboard/Templates/Products.php:392
1522
- #: includes/Product/functions.php:33
1523
- msgid "Please enter product title"
1524
  msgstr ""
1525
 
1526
- #: includes/Dashboard/Templates/Products.php:251
1527
- #: includes/Dashboard/Templates/Products.php:399
1528
- #: includes/Product/functions.php:38
1529
- msgid "Please select a category"
1530
  msgstr ""
1531
 
1532
- #: includes/Dashboard/Templates/Products.php:256
1533
- #: includes/Dashboard/Templates/Products.php:404
1534
- #: includes/Product/functions.php:42
1535
- msgid "Please select AT LEAST ONE category"
1536
  msgstr ""
1537
 
1538
- #: includes/Dashboard/Templates/Products.php:411
1539
- msgid "No product found!"
1540
  msgstr ""
1541
 
1542
- #: includes/Dashboard/Templates/Products.php:415
1543
- #: includes/Product/functions.php:66
1544
- msgid "I swear this is not your product!"
1545
  msgstr ""
1546
 
1547
- #: includes/Dashboard/Templates/Settings.php:60
1548
- msgid "Payment Settings"
1549
  msgstr ""
1550
 
1551
- #: includes/Dashboard/Templates/Settings.php:81
1552
- msgid ""
1553
- "These are the withdraw methods available for you. Please update your "
1554
- "payment information below to submit withdraw requests and get your store "
1555
- "payments seamlessly."
1556
  msgstr ""
1557
 
1558
- #: includes/Dashboard/Templates/Settings.php:221
1559
- msgid "Pemission denied social"
1560
  msgstr ""
1561
 
1562
- #: includes/Dashboard/Templates/Settings.php:233
1563
- #: includes/Dashboard/Templates/Settings.php:245
1564
- msgid "Pemission denied"
1565
  msgstr ""
1566
 
1567
- #: includes/Dashboard/Templates/Settings.php:263
1568
- msgid "Your information has been saved successfully"
1569
  msgstr ""
1570
 
1571
- #: includes/Dashboard/Templates/Settings.php:294
1572
- #: includes/Dashboard/Templates/Settings.php:401
1573
- msgid "Store name required"
1574
  msgstr ""
1575
 
1576
- #: includes/Dashboard/Templates/Settings.php:300
1577
- #: includes/Dashboard/Templates/Settings.php:360
1578
- #: includes/Dashboard/Templates/Settings.php:407
1579
- msgid "Store type required"
1580
  msgstr ""
1581
 
1582
- #: includes/Dashboard/Templates/Settings.php:308
1583
- #: includes/Dashboard/Templates/Settings.php:368
1584
- #: includes/Dashboard/Templates/Settings.php:415
1585
- #: includes/Dashboard/Templates/Settings.php:452
1586
- msgid "Invalid email"
1587
  msgstr ""
1588
 
1589
- #: includes/Dashboard/Templates/Settings.php:327
1590
- msgid "Address field for %s is required"
1591
  msgstr ""
1592
 
1593
- #: includes/Dashboard/Templates/Settings.php:604
1594
- msgid "Book"
1595
  msgstr ""
1596
 
1597
- #: includes/Dashboard/Templates/Settings.php:605
1598
- msgid "Dress"
1599
  msgstr ""
1600
 
1601
- #: includes/Dashboard/Templates/Settings.php:606
1602
- msgid "Electronic"
1603
  msgstr ""
1604
 
1605
- #: includes/Dashboard/Templates/Withdraw.php:114
1606
- msgid "Missing withdraw id."
1607
  msgstr ""
1608
 
1609
- #: includes/Dashboard/Templates/Withdraw.php:125
1610
- #: templates/global/seller-warning.php:12
1611
- msgid "Your account is not enabled for selling, please contact the admin"
1612
  msgstr ""
1613
 
1614
- #: includes/Dashboard/Templates/Withdraw.php:173
1615
- msgid "withdraw_amount is required"
1616
  msgstr ""
1617
 
1618
- #: includes/Dashboard/Templates/Withdraw.php:177
1619
- msgid "withdraw_method is required"
1620
  msgstr ""
1621
 
1622
- #: includes/Dashboard/Templates/Withdraw.php:311
1623
- msgid "Current Balance: %s "
1624
  msgstr ""
1625
 
1626
- #: includes/Dashboard/Templates/Withdraw.php:314
1627
- msgid "<br>Minimum Withdraw amount: %s "
1628
  msgstr ""
1629
 
1630
- #: includes/Dashboard/Templates/Withdraw.php:318
1631
- msgid "<br>Withdraw Threshold: %d days "
1632
  msgstr ""
1633
 
1634
- #: includes/Dashboard/Templates/Withdraw.php:375
1635
- msgid "Your request has been cancelled successfully!"
1636
  msgstr ""
1637
 
1638
- #: includes/Dashboard/Templates/Withdraw.php:379
1639
- msgid "Your request has been received successfully and being reviewed!"
1640
  msgstr ""
1641
 
1642
- #: includes/Dashboard/Templates/Withdraw.php:383
1643
- msgid "Unknown error!"
1644
  msgstr ""
1645
 
1646
- #: includes/Dashboard/Templates/Withdraw.php:419
1647
- msgid ""
1648
- "You have already withdrawn %s. This amount will be deducted from your "
1649
- "balance."
1650
  msgstr ""
1651
 
1652
- #: includes/Dashboard/Templates/Withdraw.php:428
1653
- msgid "You already have pending withdraw request(s)."
1654
  msgstr ""
1655
 
1656
- #: includes/Dashboard/Templates/Withdraw.php:428
1657
- msgid ""
1658
- "Please submit your request after approval or cancellation of your previous "
1659
- "request."
1660
  msgstr ""
1661
 
1662
- #: includes/Dashboard/Templates/Withdraw.php:438
1663
- msgid "You don't have sufficient balance for a withdraw request!"
1664
  msgstr ""
1665
 
1666
- #: includes/Dashboard/Templates/Withdraw.php:498
1667
- #: includes/Dashboard/Templates/Withdraw.php:524
1668
- msgid "Sorry, no transactions were found!"
1669
  msgstr ""
1670
 
1671
- #: includes/Emails/ContactSeller.php:22
1672
- msgid "Dokan Contact Vendor"
 
1673
  msgstr ""
1674
 
1675
- #: includes/Emails/ContactSeller.php:23
1676
- msgid ""
1677
- "These emails are sent to a vendor who is contacted by customer via contact "
1678
- "form widget "
1679
  msgstr ""
1680
 
1681
- #: includes/Emails/ContactSeller.php:45
1682
- msgid "[{customer_name}] sent you a message from your store at - {site_name}"
 
 
1683
  msgstr ""
1684
 
1685
- #: includes/Emails/ContactSeller.php:55
1686
- msgid "{customer_name} - Sent a message from {site_name}"
 
1687
  msgstr ""
1688
 
1689
- #: includes/Emails/ContactSeller.php:131 includes/Emails/NewProduct.php:159
1690
- #: includes/Emails/NewProductPending.php:151 includes/Emails/NewSeller.php:136
1691
- #: includes/Emails/ProductPublished.php:144
1692
- #: includes/Emails/VendorWithdrawRequest.php:144
1693
- #: includes/Emails/WithdrawApproved.php:140
1694
- #: includes/Emails/WithdrawCancelled.php:140
1695
- msgid "Enable/Disable"
1696
  msgstr ""
1697
 
1698
- #: includes/Emails/ContactSeller.php:133 includes/Emails/NewProduct.php:161
1699
- #: includes/Emails/NewProductPending.php:153 includes/Emails/NewSeller.php:138
1700
- #: includes/Emails/ProductPublished.php:146
1701
- #: includes/Emails/VendorWithdrawRequest.php:146
1702
- #: includes/Emails/WithdrawApproved.php:142
1703
- #: includes/Emails/WithdrawCancelled.php:142
1704
- msgid "Enable this email notification"
1705
  msgstr ""
1706
 
1707
- #: includes/Emails/ContactSeller.php:138 includes/Emails/NewProduct.php:173
1708
- #: includes/Emails/NewProductPending.php:165 includes/Emails/NewSeller.php:150
1709
- #: includes/Emails/ProductPublished.php:151
1710
- #: includes/Emails/VendorWithdrawRequest.php:158
1711
- #: includes/Emails/WithdrawApproved.php:146
1712
- #: includes/Emails/WithdrawCancelled.php:146
1713
- msgid "Subject"
1714
  msgstr ""
1715
 
1716
- #: includes/Emails/ContactSeller.php:142 includes/Emails/ContactSeller.php:151
1717
- #: includes/Emails/NewProduct.php:177 includes/Emails/NewProduct.php:186
1718
- #: includes/Emails/NewProductPending.php:169
1719
- #: includes/Emails/NewProductPending.php:178 includes/Emails/NewSeller.php:154
1720
- #: includes/Emails/NewSeller.php:163 includes/Emails/ProductPublished.php:155
1721
- #: includes/Emails/ProductPublished.php:164
1722
- #: includes/Emails/VendorWithdrawRequest.php:162
1723
- #: includes/Emails/VendorWithdrawRequest.php:171
1724
- #: includes/Emails/WithdrawApproved.php:150
1725
- #: includes/Emails/WithdrawApproved.php:159
1726
- #: includes/Emails/WithdrawCancelled.php:150
1727
- #: includes/Emails/WithdrawCancelled.php:159
1728
- #. translators: %s: list of placeholders
1729
- msgid "Available placeholders: %s"
1730
  msgstr ""
1731
 
1732
- #: includes/Emails/ContactSeller.php:147 includes/Emails/NewProduct.php:182
1733
- #: includes/Emails/NewProductPending.php:174 includes/Emails/NewSeller.php:159
1734
- #: includes/Emails/ProductPublished.php:160
1735
- #: includes/Emails/VendorWithdrawRequest.php:167
1736
- #: includes/Emails/WithdrawApproved.php:155
1737
- #: includes/Emails/WithdrawCancelled.php:155
1738
- msgid "Email heading"
1739
  msgstr ""
1740
 
1741
- #: includes/Emails/ContactSeller.php:156 includes/Emails/NewProduct.php:191
1742
- #: includes/Emails/NewProductPending.php:183 includes/Emails/NewSeller.php:168
1743
- #: includes/Emails/ProductPublished.php:169
1744
- #: includes/Emails/VendorWithdrawRequest.php:176
1745
- #: includes/Emails/WithdrawApproved.php:164
1746
- #: includes/Emails/WithdrawCancelled.php:164
1747
- msgid "Email type"
1748
  msgstr ""
1749
 
1750
- #: includes/Emails/ContactSeller.php:158 includes/Emails/NewProduct.php:193
1751
- #: includes/Emails/NewProductPending.php:185 includes/Emails/NewSeller.php:170
1752
- #: includes/Emails/ProductPublished.php:171
1753
- #: includes/Emails/VendorWithdrawRequest.php:178
1754
- #: includes/Emails/WithdrawApproved.php:166
1755
- #: includes/Emails/WithdrawCancelled.php:166
1756
- msgid "Choose which format of email to send."
1757
  msgstr ""
1758
 
1759
- #: includes/Emails/Manager.php:195
1760
- msgid "\"%s\" sent you a message from your \"%s\" store"
1761
  msgstr ""
1762
 
1763
- #: includes/Emails/Manager.php:244
1764
- msgid "[%s] Refund Request %s"
1765
  msgstr ""
1766
 
1767
- #: includes/Emails/Manager.php:278
1768
- msgid "[%s] New Refund Request"
1769
- msgstr ""
1770
 
1771
- #: includes/Emails/Manager.php:335
1772
- msgid "[%s] New Withdraw Request"
1773
  msgstr ""
1774
 
1775
- #: includes/Emails/Manager.php:357
1776
- msgid "[%s] Your Withdraw Request has been approved"
1777
  msgstr ""
1778
 
1779
- #: includes/Emails/Manager.php:380
1780
- msgid "[%s] Your Withdraw Request has been cancelled"
1781
  msgstr ""
1782
 
1783
- #: includes/Emails/Manager.php:419
1784
- msgid "[%s] New Vendor Registered"
1785
  msgstr ""
1786
 
1787
- #: includes/Emails/Manager.php:472
1788
- msgid "[%s] New Product Added"
 
 
 
 
 
 
1789
  msgstr ""
1790
 
1791
- #: includes/Emails/Manager.php:512
1792
- msgid "[%s] Your product has been approved!"
 
 
 
 
 
 
1793
  msgstr ""
1794
 
1795
- #: includes/Emails/NewProduct.php:24
1796
- msgid "Dokan New Product"
 
 
 
 
 
 
1797
  msgstr ""
1798
 
1799
- #: includes/Emails/NewProduct.php:25
1800
- msgid ""
1801
- "New Product emails are sent to chosen recipient(s) when a new product is "
1802
- "created by vendors."
 
 
 
 
1803
  msgstr ""
1804
 
1805
- #: includes/Emails/NewProduct.php:47
1806
- msgid "[{site_name}] A New product is added by ({seller_name}) - {product_title}"
1807
  msgstr ""
1808
 
1809
- #: includes/Emails/NewProduct.php:57
1810
- msgid "New product added by Vendor {seller_name}"
 
 
 
 
1811
  msgstr ""
1812
 
1813
- #: includes/Emails/NewProduct.php:165 includes/Emails/NewProductPending.php:157
1814
- #: includes/Emails/NewSeller.php:142
1815
- #: includes/Emails/VendorWithdrawRequest.php:150
1816
- msgid "Recipient(s)"
1817
  msgstr ""
1818
 
1819
- #: includes/Emails/NewProduct.php:167 includes/Emails/NewProductPending.php:159
1820
- #: includes/Emails/NewSeller.php:144
1821
- #: includes/Emails/VendorWithdrawRequest.php:152
1822
- msgid "Enter recipients (comma separated) for this email. Defaults to %s."
1823
  msgstr ""
1824
 
1825
- #: includes/Emails/NewProductPending.php:25
1826
- msgid "Dokan New Pending Product"
1827
  msgstr ""
1828
 
1829
- #: includes/Emails/NewProductPending.php:26
1830
- msgid ""
1831
- "New Pending Product emails are sent to chosen recipient(s) when a new "
1832
- "product is created by vendors."
1833
  msgstr ""
1834
 
1835
- #: includes/Emails/NewProductPending.php:48
1836
- msgid ""
1837
- "[{site_title}] A New product is pending from ({seller_name}) - "
1838
- "{product_title}"
1839
  msgstr ""
1840
 
1841
- #: includes/Emails/NewProductPending.php:58
1842
- msgid "New pending product added by Vendor {seller_name}"
1843
  msgstr ""
1844
 
1845
- #: includes/Emails/NewSeller.php:22
1846
- msgid "Dokan New Seller Registered"
1847
  msgstr ""
1848
 
1849
- #: includes/Emails/NewSeller.php:23
1850
- msgid ""
1851
- "These emails are sent to chosen recipient(s) when a new vendor registers in "
1852
- "marketplace"
1853
  msgstr ""
1854
 
1855
- #: includes/Emails/NewSeller.php:45
1856
- msgid "[{site_name}] A New vendor has registered"
 
 
1857
  msgstr ""
1858
 
1859
- #: includes/Emails/NewSeller.php:55
1860
- msgid "New Vendor Registered - {seller_name}"
 
 
1861
  msgstr ""
1862
 
1863
- #: includes/Emails/ProductPublished.php:24
1864
- msgid "Dokan Pending Product Published"
 
 
 
1865
  msgstr ""
1866
 
1867
- #: includes/Emails/ProductPublished.php:25
1868
- msgid ""
1869
- "These emails are sent to vendor of the product when a pending product is "
1870
- "published."
1871
  msgstr ""
1872
 
1873
- #: includes/Emails/ProductPublished.php:47
1874
- msgid "[{site_name}] Your product - {product_title} - is now published"
 
1875
  msgstr ""
1876
 
1877
- #: includes/Emails/ProductPublished.php:57
1878
- msgid "{product_title} - is published"
1879
  msgstr ""
1880
 
1881
- #: includes/Emails/VendorWithdrawRequest.php:24
1882
- msgid "Dokan New Withdrawal Request"
1883
  msgstr ""
1884
 
1885
- #: includes/Emails/VendorWithdrawRequest.php:25
1886
- msgid ""
1887
- "These emails are sent to chosen recipient(s) when a vendor send request to "
1888
- "withdraw"
1889
  msgstr ""
1890
 
1891
- #: includes/Emails/VendorWithdrawRequest.php:47
1892
- msgid "[{site_name}] A New withdrawal request is made by {user_name}"
1893
  msgstr ""
1894
 
1895
- #: includes/Emails/VendorWithdrawRequest.php:57
1896
- msgid "New Withdraw Request from - {user_name}"
1897
  msgstr ""
1898
 
1899
- #: includes/Emails/WithdrawApproved.php:24
1900
- msgid "Dokan Withdraw Approved"
1901
  msgstr ""
1902
 
1903
- #: includes/Emails/WithdrawApproved.php:25
1904
- msgid "These emails are sent to vendor when a vendor withdraw request is approved"
1905
  msgstr ""
1906
 
1907
- #: includes/Emails/WithdrawApproved.php:47
1908
- msgid "[{site_name}] Your withdrawal request was approved"
1909
  msgstr ""
1910
 
1911
- #: includes/Emails/WithdrawApproved.php:57
1912
- msgid "Withdrawal request for {amount} is approved"
1913
  msgstr ""
1914
 
1915
- #: includes/Emails/WithdrawCancelled.php:24
1916
- msgid "Dokan Withdraw cancelled"
1917
  msgstr ""
1918
 
1919
- #: includes/Emails/WithdrawCancelled.php:25
1920
- msgid "These emails are sent to vendor when a vendor withdraw request is cancelled"
1921
  msgstr ""
1922
 
1923
- #: includes/Emails/WithdrawCancelled.php:47
1924
- msgid "[{site_name}] Your withdrawal request was cancelled"
1925
  msgstr ""
1926
 
1927
- #: includes/Emails/WithdrawCancelled.php:57
1928
- msgid "Withdrawal request for {amount} is cancelled"
1929
  msgstr ""
1930
 
1931
- #: includes/Install/Installer.php:163
1932
- msgid "Store List"
1933
  msgstr ""
1934
 
1935
- #: includes/Order/Hooks.php:140
1936
- msgid "Mark parent order completed when all child orders are completed."
1937
  msgstr ""
1938
 
1939
- #: includes/Order/Hooks.php:182
1940
- msgid "A coupon must be restricted with a vendor product."
1941
  msgstr ""
1942
 
1943
- #: includes/Order/Hooks.php:237
1944
- #. translators: %s item name.
1945
- msgid "Unable to restore stock for item %s."
1946
  msgstr ""
1947
 
1948
- #: includes/Order/functions.php:495
1949
- msgid "Pending Payment"
1950
  msgstr ""
1951
 
1952
- #: includes/Order/functions.php:520
1953
- msgid "Failed"
1954
  msgstr ""
1955
 
1956
- #: includes/Order/functions.php:761
1957
- msgid "Order No"
1958
  msgstr ""
1959
 
1960
- #: includes/Order/functions.php:762 templates/orders/details.php:21
1961
- msgid "Order Items"
1962
  msgstr ""
1963
 
1964
- #: includes/Order/functions.php:763
1965
- msgid "Shipping method"
1966
  msgstr ""
1967
 
1968
- #: includes/Order/functions.php:764
1969
- msgid "Shipping Cost"
1970
  msgstr ""
1971
 
1972
- #: includes/Order/functions.php:765
1973
- msgid "Payment method"
 
 
1974
  msgstr ""
1975
 
1976
- #: includes/Order/functions.php:766 templates/orders/listing.php:52
1977
- #: templates/orders/listing.php:77
1978
- msgid "Order Total"
 
1979
  msgstr ""
1980
 
1981
- #: includes/Order/functions.php:767 includes/REST/OrderController.php:99
1982
- msgid "Order Status"
1983
  msgstr ""
1984
 
1985
- #: includes/Order/functions.php:768
1986
- msgid "Order Date"
1987
  msgstr ""
1988
 
1989
- #: includes/Order/functions.php:769
1990
- msgid "Billing Company"
1991
  msgstr ""
1992
 
1993
- #: includes/Order/functions.php:770
1994
- msgid "Billing First Name"
 
 
 
 
1995
  msgstr ""
1996
 
1997
- #: includes/Order/functions.php:771
1998
- msgid "Billing Last Name"
 
 
 
1999
  msgstr ""
2000
 
2001
- #: includes/Order/functions.php:772
2002
- msgid "Billing Full Name"
 
 
 
2003
  msgstr ""
2004
 
2005
- #: includes/Order/functions.php:773
2006
- msgid "Billing Email"
2007
  msgstr ""
2008
 
2009
- #: includes/Order/functions.php:774
2010
- msgid "Billing Phone"
2011
- msgstr ""
2012
-
2013
- #: includes/Order/functions.php:775
2014
- msgid "Billing Address 1"
2015
- msgstr ""
2016
-
2017
- #: includes/Order/functions.php:776
2018
- msgid "Billing Address 2"
2019
- msgstr ""
2020
-
2021
- #: includes/Order/functions.php:777
2022
- msgid "Billing City"
2023
- msgstr ""
2024
-
2025
- #: includes/Order/functions.php:778
2026
- msgid "Billing State"
2027
- msgstr ""
2028
-
2029
- #: includes/Order/functions.php:779
2030
- msgid "Billing Postcode"
2031
- msgstr ""
2032
-
2033
- #: includes/Order/functions.php:780
2034
- msgid "Billing Country"
2035
- msgstr ""
2036
-
2037
- #: includes/Order/functions.php:781
2038
- msgid "Shipping Company"
2039
- msgstr ""
2040
-
2041
- #: includes/Order/functions.php:782
2042
- msgid "Shipping First Name"
2043
- msgstr ""
2044
-
2045
- #: includes/Order/functions.php:783
2046
- msgid "Shipping Last Name"
2047
- msgstr ""
2048
-
2049
- #: includes/Order/functions.php:784
2050
- msgid "Shipping Full Name"
2051
- msgstr ""
2052
-
2053
- #: includes/Order/functions.php:785
2054
- msgid "Shipping Address 1"
2055
- msgstr ""
2056
-
2057
- #: includes/Order/functions.php:786
2058
- msgid "Shipping Address 2"
2059
  msgstr ""
2060
 
2061
- #: includes/Order/functions.php:787
2062
- msgid "Shipping City"
2063
  msgstr ""
2064
 
2065
- #: includes/Order/functions.php:788
2066
- msgid "Shipping State"
 
2067
  msgstr ""
2068
 
2069
- #: includes/Order/functions.php:789
2070
- msgid "Shipping Postcode"
 
2071
  msgstr ""
2072
 
2073
- #: includes/Order/functions.php:790
2074
- msgid "Shipping Country"
2075
  msgstr ""
2076
 
2077
- #: includes/Order/functions.php:791
2078
- msgid "Customer IP"
2079
  msgstr ""
2080
 
2081
- #: includes/Order/functions.php:792
2082
- msgid "Customer Note"
2083
  msgstr ""
2084
 
2085
- #: includes/Privacy.php:33 includes/Privacy.php:36 includes/Privacy.php:152
2086
- msgid "Vendor Data"
2087
  msgstr ""
2088
 
2089
- #: includes/Privacy.php:51
2090
- msgid ""
2091
- "This sample privacy policy includes the basics around what personal data "
2092
- "your multivendor store may be collecting, storing and sharing, as well as "
2093
- "who may have access to that data. Depending on what settings are enabled "
2094
- "and which additional plugins are used, the specific information shared by "
2095
- "your store will vary. We recommend consulting with a lawyer when deciding "
2096
- "what information to disclose on your privacy policy."
2097
  msgstr ""
2098
 
2099
- #: includes/Privacy.php:54
2100
- msgid "We collect information about you during the checkout process on our store."
2101
  msgstr ""
2102
 
2103
- #: includes/Privacy.php:55
2104
- msgid "What we collect and store"
2105
  msgstr ""
2106
 
2107
- #: includes/Privacy.php:56
2108
- msgid "While you visit our site, we’ll track:"
2109
  msgstr ""
2110
 
2111
- #: includes/Privacy.php:58
2112
- msgid ""
2113
- "Stores you’ve viewed: we’ll use this to, for example, show you vendor "
2114
- "stores you’ve recently viewed"
2115
  msgstr ""
2116
 
2117
- #: includes/Privacy.php:59
2118
- msgid ""
2119
- "Products you’ve viewed: we’ll use this to, for example, show you products "
2120
- "you’ve recently viewed"
2121
  msgstr ""
2122
 
2123
- #: includes/Privacy.php:60
2124
- msgid ""
2125
- "Location, IP address and browser type: we’ll use this for purposes like "
2126
- "estimating taxes and shipping"
2127
  msgstr ""
2128
 
2129
- #: includes/Privacy.php:61
2130
- msgid ""
2131
- "Shipping address: we’ll ask you to enter this so we can, for instance, "
2132
- "estimate shipping before you place an order, and send you the order!"
2133
  msgstr ""
2134
 
2135
- #: includes/Privacy.php:63
2136
- msgid ""
2137
- "We’ll also use cookies to keep track of cart contents while you’re browsing "
2138
- "our site."
2139
  msgstr ""
2140
 
2141
- #: includes/Privacy.php:65
2142
- msgid ""
2143
- "Note: you may want to further detail your cookie policy, and link to that "
2144
- "section from here."
2145
  msgstr ""
2146
 
2147
- #: includes/Privacy.php:67
2148
- msgid ""
2149
- "When you purchase from us, we’ll ask you to provide information including "
2150
- "your name, billing address, shipping address, email address, phone number, "
2151
- "credit card/payment details and optional account information like username "
2152
- "and password. We’ll use this information for purposes, such as, to:"
2153
  msgstr ""
2154
 
2155
- #: includes/Privacy.php:69
2156
- msgid "Send you information about your account and order"
2157
  msgstr ""
2158
 
2159
- #: includes/Privacy.php:70
2160
- msgid "Respond to your requests, including refunds and complaints"
2161
  msgstr ""
2162
 
2163
- #: includes/Privacy.php:71
2164
- msgid "Process payments and prevent fraud"
2165
  msgstr ""
2166
 
2167
- #: includes/Privacy.php:72
2168
- msgid "Set up your account for our store"
2169
  msgstr ""
2170
 
2171
- #: includes/Privacy.php:73
2172
- msgid "Comply with any legal obligations we have, such as calculating taxes"
2173
  msgstr ""
2174
 
2175
- #: includes/Privacy.php:74
2176
- msgid "Improve our store offerings"
2177
  msgstr ""
2178
 
2179
- #: includes/Privacy.php:75
2180
- msgid "Send you marketing messages, if you choose to receive them"
2181
  msgstr ""
2182
 
2183
- #: includes/Privacy.php:77
2184
- msgid ""
2185
- "If you create an account, we will store your name, address, email and phone "
2186
- "number, which will be used to populate the checkout for future orders."
2187
  msgstr ""
2188
 
2189
- #: includes/Privacy.php:78
2190
- msgid ""
2191
- "We generally store information about you for as long as we need the "
2192
- "information for the purposes for which we collect and use it, and we are "
2193
- "not legally required to continue to keep it. For example, we will store "
2194
- "order information for XXX years for tax and accounting purposes. This "
2195
- "includes your name, email address and billing and shipping addresses."
2196
  msgstr ""
2197
 
2198
- #: includes/Privacy.php:79
2199
- msgid "We will also store comments or reviews, if you choose to leave them."
2200
  msgstr ""
2201
 
2202
- #: includes/Privacy.php:80
2203
- msgid "Who on our team has access"
2204
  msgstr ""
2205
 
2206
- #: includes/Privacy.php:81
2207
- msgid ""
2208
- "Members of our team have access to the information you provide us. For "
2209
- "example, both Administrators and Shop Managers can access:"
2210
  msgstr ""
2211
 
2212
- #: includes/Privacy.php:83
2213
- msgid ""
2214
- "Order information like what was purchased, when it was purchased and where "
2215
- "it should be sent, and"
2216
  msgstr ""
2217
 
2218
- #: includes/Privacy.php:84
2219
- msgid ""
2220
- "Customer information like your name, email address, and billing and "
2221
- "shipping information."
2222
  msgstr ""
2223
 
2224
- #: includes/Privacy.php:86
2225
- msgid ""
2226
- "Our team members have access to this information to help fulfill orders, "
2227
- "process refunds and support you."
2228
  msgstr ""
2229
 
2230
- #: includes/Privacy.php:87
2231
- msgid "What we share with others"
2232
  msgstr ""
2233
 
2234
- #: includes/Privacy.php:89
2235
- msgid ""
2236
- "In this section you should list who you’re sharing data with, and for what "
2237
- "purpose. This could include, but may not be limited to, analytics, "
2238
- "marketing, payment gateways, shipping providers, and third party embeds."
2239
  msgstr ""
2240
 
2241
- #: includes/Privacy.php:91
2242
- msgid ""
2243
- "We share information with third parties who help us provide our orders and "
2244
- "store services to you; for example --"
2245
  msgstr ""
2246
 
2247
- #: includes/Privacy.php:92
2248
- msgid "Payments"
2249
  msgstr ""
2250
 
2251
- #: includes/Privacy.php:94
2252
- msgid ""
2253
- "In this subsection you should list which third party payment processors "
2254
- "you’re using to take payments on your store since these may handle customer "
2255
- "data. We’ve included PayPal as an example, but you should remove this if "
2256
- "you’re not using PayPal."
2257
  msgstr ""
2258
 
2259
- #: includes/Privacy.php:96
2260
- msgid ""
2261
- "We accept payments through PayPal. When processing payments, some of your "
2262
- "data will be passed to PayPal, including information required to process or "
2263
- "support the payment, such as the purchase total and billing information."
2264
  msgstr ""
2265
 
2266
- #: includes/Privacy.php:97
2267
- msgid ""
2268
- "Please see the <a "
2269
- "href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-full\">PayPal "
2270
- "Privacy Policy</a> for more details."
2271
  msgstr ""
2272
 
2273
- #: includes/Privacy.php:98
2274
- msgid "Modules"
2275
  msgstr ""
2276
 
2277
- #: includes/Privacy.php:100
2278
  msgid ""
2279
- "Dokan has premium modules that perform specific and special purpose tasks. "
2280
- "Each of the modules collect additional information. Also third party "
2281
- "extensions and integrations collect data that is applicable to the each of "
2282
- "their individual privacy policy."
2283
- msgstr ""
2284
-
2285
- #: includes/Privacy.php:180 src/admin/pages/VendorAccountFields.vue:43
2286
- #: src/admin/pages/VendorAccountFields.vue:49
2287
- #: templates/settings/store-form.php:116
2288
- msgid "Store Name"
2289
- msgstr ""
2290
-
2291
- #: includes/Privacy.php:181
2292
- msgid "Social"
2293
- msgstr ""
2294
-
2295
- #: includes/Privacy.php:182
2296
- msgid "Phone"
2297
- msgstr ""
2298
-
2299
- #: includes/Privacy.php:183 src/admin/components/Mapbox.vue:8
2300
- #: src/admin/pages/AddVendor.vue:73 src/admin/pages/VendorAddressFields.vue:4
2301
- #: templates/admin-setup-wizard/step-store-wc-fields.php:33
2302
- #: templates/maps/mapbox-with-search.php:5
2303
- #: templates/settings/address-form.php:23
2304
- msgid "Address"
2305
- msgstr ""
2306
-
2307
- #: includes/Privacy.php:184
2308
- msgid "GEO Locations"
2309
- msgstr ""
2310
-
2311
- #: includes/Privacy.php:185
2312
- msgid "Banner Url"
2313
- msgstr ""
2314
-
2315
- #: includes/Privacy.php:186
2316
- msgid "Gravatar Url"
2317
- msgstr ""
2318
-
2319
- #: includes/Privacy.php:201 includes/functions.php:2333
2320
- #: src/admin/pages/VendorSocialFields.vue:11
2321
- msgid "Facebook"
2322
- msgstr ""
2323
-
2324
- #: includes/Privacy.php:202 includes/functions.php:2337
2325
- #: src/admin/pages/VendorSocialFields.vue:21
2326
- msgid "Google Plus"
2327
- msgstr ""
2328
-
2329
- #: includes/Privacy.php:203 includes/functions.php:2341
2330
- #: src/admin/pages/VendorSocialFields.vue:26
2331
- msgid "Twitter"
2332
  msgstr ""
2333
 
2334
- #: includes/Privacy.php:204 includes/functions.php:2345
2335
- #: src/admin/pages/VendorSocialFields.vue:41
2336
- msgid "Pinterest"
2337
  msgstr ""
2338
 
2339
- #: includes/Privacy.php:205 src/admin/pages/VendorSocialFields.vue:36
2340
- msgid "Linkedin"
2341
  msgstr ""
2342
 
2343
- #: includes/Privacy.php:206 includes/functions.php:2353
2344
- #: src/admin/pages/VendorSocialFields.vue:31
2345
- msgid "Youtube"
2346
  msgstr ""
2347
 
2348
- #: includes/Privacy.php:207 includes/functions.php:2357
2349
- #: src/admin/pages/VendorSocialFields.vue:46
2350
- msgid "Instagram"
2351
  msgstr ""
2352
 
2353
- #: includes/Privacy.php:208 includes/functions.php:2361
2354
- #: src/admin/pages/VendorSocialFields.vue:16
2355
- msgid "Flickr"
2356
  msgstr ""
2357
 
2358
- #: includes/Privacy.php:225 includes/Vendor/SetupWizard.php:203
2359
- #: src/admin/pages/VendorAddressFields.vue:21
2360
- #: src/admin/pages/VendorAddressFields.vue:22
2361
- #: templates/admin-setup-wizard/step-store-wc-fields.php:51
2362
- #: templates/settings/address-form.php:57
2363
- msgid "City"
2364
  msgstr ""
2365
 
2366
- #: includes/Privacy.php:226
2367
- msgid "Postal Code"
 
2368
  msgstr ""
2369
 
2370
- #: includes/Privacy.php:228 includes/Vendor/SetupWizard.php:221
2371
- #: src/admin/pages/VendorAddressFields.vue:36
2372
- #: src/admin/pages/VendorAddressFields.vue:38
2373
- #: templates/admin-setup-wizard/step-store-wc-fields.php:58
2374
- #: templates/admin-setup-wizard/step-store-wc-fields.php:59
2375
- msgid "State"
2376
  msgstr ""
2377
 
2378
- #: includes/Privacy.php:278
2379
- msgid "Bank Details"
 
2380
  msgstr ""
2381
 
2382
- #: includes/Privacy.php:280 src/admin/pages/VendorPaymentFields.vue:10
2383
- #: src/admin/pages/VendorPaymentFields.vue:11
2384
- msgid "Account Name"
2385
  msgstr ""
2386
 
2387
- #: includes/Privacy.php:281 src/admin/pages/VendorPaymentFields.vue:15
2388
- msgid "Account Number"
2389
  msgstr ""
2390
 
2391
- #: includes/Privacy.php:282 src/admin/pages/VendorPaymentFields.vue:20
2392
- #: src/admin/pages/VendorPaymentFields.vue:21
2393
- msgid "Bank Name"
2394
  msgstr ""
2395
 
2396
- #: includes/Privacy.php:283 src/admin/pages/VendorPaymentFields.vue:25
2397
- #: src/admin/pages/VendorPaymentFields.vue:26
2398
- msgid "Bank Address"
2399
  msgstr ""
2400
 
2401
- #: includes/Privacy.php:285 includes/Withdraw/functions.php:203
2402
- #: src/admin/pages/VendorPaymentFields.vue:35
2403
- msgid "IBAN"
2404
  msgstr ""
2405
 
2406
- #: includes/Privacy.php:286
2407
- msgid "Swift Code"
2408
  msgstr ""
2409
 
2410
- #: includes/Privacy.php:297 src/admin/pages/VendorPaymentFields.vue:55
2411
- msgid "PayPal Email"
2412
  msgstr ""
2413
 
2414
- #: includes/Privacy.php:302
2415
- msgid "Skrill Email"
2416
  msgstr ""
2417
 
2418
- #: includes/Privacy.php:373
2419
- msgid "Vendor %s data is removed."
2420
  msgstr ""
2421
 
2422
- #: includes/Product/Manager.php:392
2423
- msgid "No product ID found for updating"
2424
  msgstr ""
2425
 
2426
- #: includes/Product/functions.php:153
2427
- msgid ""
2428
- "Before you can add a variation you need to add some variation attributes on "
2429
- "the <strong>Attributes</strong> section"
2430
  msgstr ""
2431
 
2432
- #: includes/Product/functions.php:163
2433
- msgid "Add variation"
2434
  msgstr ""
2435
 
2436
- #: includes/Product/functions.php:164
2437
- msgid "Create variations from all attributes"
2438
  msgstr ""
2439
 
2440
- #: includes/Product/functions.php:165
2441
- msgid "Delete all variations"
2442
  msgstr ""
2443
 
2444
- #: includes/Product/functions.php:166 templates/my-orders.php:29
2445
- #: templates/orders/listing.php:53 templates/orders/listing.php:80
2446
- #: templates/products/products-listing-row.php:53
2447
- #: templates/products/products-listing.php:89 templates/sub-orders.php:27
2448
- #: templates/withdraw/pending-request-listing.php:18
2449
- msgid "Status"
2450
  msgstr ""
2451
 
2452
- #: includes/Product/functions.php:167
2453
- msgid "Toggle &quot;Enabled&quot;"
2454
  msgstr ""
2455
 
2456
- #: includes/Product/functions.php:168
2457
- msgid "Toggle &quot;Downloadable&quot;"
2458
  msgstr ""
2459
 
2460
- #: includes/Product/functions.php:169
2461
- msgid "Toggle &quot;Virtual&quot;"
2462
  msgstr ""
2463
 
2464
- #: includes/Product/functions.php:171
2465
- msgid "Pricing"
2466
  msgstr ""
2467
 
2468
- #: includes/Product/functions.php:172
2469
- msgid "Set regular prices"
2470
  msgstr ""
2471
 
2472
- #: includes/Product/functions.php:173
2473
- msgid "Increase regular prices (fixed amount or percentage)"
2474
  msgstr ""
2475
 
2476
- #: includes/Product/functions.php:174
2477
- msgid "Decrease regular prices (fixed amount or percentage)"
2478
  msgstr ""
2479
 
2480
- #: includes/Product/functions.php:175
2481
- msgid "Set sale prices"
2482
  msgstr ""
2483
 
2484
- #: includes/Product/functions.php:176
2485
- msgid "Increase sale prices (fixed amount or percentage)"
2486
  msgstr ""
2487
 
2488
- #: includes/Product/functions.php:177
2489
- msgid "Decrease sale prices (fixed amount or percentage)"
2490
  msgstr ""
2491
 
2492
- #: includes/Product/functions.php:178
2493
- msgid "Set scheduled sale dates"
2494
  msgstr ""
2495
 
2496
- #: includes/Product/functions.php:180 templates/products/inventory.php:3
2497
- msgid "Inventory"
2498
  msgstr ""
2499
 
2500
- #: includes/Product/functions.php:181
2501
- msgid "Toggle &quot;Manage stock&quot;"
2502
  msgstr ""
2503
 
2504
- #: includes/Product/functions.php:182
2505
- #: templates/products/products-listing-row.php:68
2506
- #: templates/products/products-listing.php:94
2507
- msgid "Stock"
2508
  msgstr ""
2509
 
2510
- #: includes/Product/functions.php:185
2511
- msgid "Length"
2512
  msgstr ""
2513
 
2514
- #: includes/Product/functions.php:186
2515
- msgid "Width"
2516
  msgstr ""
2517
 
2518
- #: includes/Product/functions.php:187
2519
- msgid "Height"
 
2520
  msgstr ""
2521
 
2522
- #: includes/Product/functions.php:188
2523
- msgid "Weight"
 
2524
  msgstr ""
2525
 
2526
- #: includes/Product/functions.php:190
2527
- msgid "Downloadable products"
2528
  msgstr ""
2529
 
2530
- #: includes/Product/functions.php:191
2531
- msgid "Download limit"
 
 
2532
  msgstr ""
2533
 
2534
- #: includes/Product/functions.php:192
2535
- msgid "Download expiry"
2536
  msgstr ""
2537
 
2538
- #: includes/Product/functions.php:196
2539
- msgid "Go"
2540
  msgstr ""
2541
 
2542
- #: includes/Product/functions.php:203
2543
- msgid ""
2544
- "Default Form Values: These are the attributes that will be pre-selected on "
2545
- "the frontend."
2546
  msgstr ""
2547
 
2548
- #: includes/Product/functions.php:221
2549
- msgid "No default"
2550
  msgstr ""
2551
 
2552
- #: includes/Product/functions.php:261
2553
- msgid "Save Variations"
2554
  msgstr ""
2555
 
2556
- #: includes/Product/functions.php:262 lib/appsero/Insights.php:764
2557
- #: templates/my-orders.php:83 templates/orders/details.php:199
2558
- #: templates/products/new-product-single.php:217
2559
- #: templates/products/new-product.php:167
2560
- #: templates/products/tmpl-add-product-popup.php:68
2561
- #: templates/store-lists-filter.php:81
2562
- #: templates/withdraw/pending-request-listing.php:17
2563
- #: templates/withdraw/pending-request-listing.php:35
2564
- #: vendor/appsero/client/src/Insights.php:764
2565
- msgid "Cancel"
2566
  msgstr ""
2567
 
2568
- #: includes/Product/functions.php:267
2569
- msgid "%s item"
2570
- msgid_plural "%s items"
2571
- msgstr[0] ""
2572
- msgstr[1] ""
2573
 
2574
- #: includes/Product/functions.php:272
2575
- msgid "Expand"
2576
  msgstr ""
2577
 
2578
- #: includes/Product/functions.php:272 src/admin/components/ColorPicker.vue:31
2579
- #: src/upgrade/App.vue:49 templates/orders/details.php:353
2580
- #: templates/settings/store-form.php:256
2581
- msgid "Close"
2582
  msgstr ""
2583
 
2584
- #: includes/Product/functions.php:275
2585
- msgid "Go to the first page"
2586
  msgstr ""
2587
 
2588
- #: includes/Product/functions.php:276
2589
- msgid "Go to the previous page"
2590
  msgstr ""
2591
 
2592
- #: includes/Product/functions.php:278
2593
- msgid "Select Page"
2594
  msgstr ""
2595
 
2596
- #: includes/Product/functions.php:279
2597
- msgid "Current page"
 
2598
  msgstr ""
2599
 
2600
- #: includes/Product/functions.php:286
2601
- msgid "Go to the next page"
2602
  msgstr ""
2603
 
2604
- #: includes/Product/functions.php:287
2605
- msgid "Go to the last page"
2606
  msgstr ""
2607
 
2608
- #: includes/Product/functions.php:310
2609
- msgid "Visible"
2610
  msgstr ""
2611
 
2612
- #: includes/Product/functions.php:311
2613
- msgid "Catalog"
2614
  msgstr ""
2615
 
2616
- #: includes/Product/functions.php:312 templates/products/listing-filter.php:56
2617
- msgid "Search"
2618
  msgstr ""
2619
 
2620
- #: includes/Product/functions.php:313
2621
- #: templates/products/new-product-single.php:119
2622
- msgid "Hidden"
2623
  msgstr ""
2624
 
2625
- #: includes/Product/functions.php:426
2626
- msgid "Edit"
2627
  msgstr ""
2628
 
2629
- #: includes/Product/functions.php:443 templates/my-orders.php:88
2630
- #: templates/orders/listing.php:157 templates/sub-orders.php:59
2631
- msgid "View"
2632
  msgstr ""
2633
 
2634
- #: includes/REST/AdminDashboardController.php:40
2635
- msgid "Number of feed item"
2636
  msgstr ""
2637
 
2638
- #: includes/REST/AdminDashboardController.php:46
2639
- msgid "Flag for showing summary"
 
2640
  msgstr ""
2641
 
2642
- #: includes/REST/AdminDashboardController.php:52
2643
- msgid "Flag for showing author"
2644
  msgstr ""
2645
 
2646
- #: includes/REST/AdminDashboardController.php:58
2647
- msgid "Flag for showing date"
2648
  msgstr ""
2649
 
2650
- #: includes/REST/AdminDashboardController.php:94
2651
- msgid ""
2652
- "An error has occurred, which probably means the feed is down. Try again "
2653
- "later."
2654
  msgstr ""
2655
 
2656
- #: includes/REST/AdminDashboardController.php:109
2657
- msgid "Untitled"
 
 
2658
  msgstr ""
2659
 
2660
- #: includes/REST/AdminReportController.php:138
2661
- #: templates/dashboard/orders-widget.php:21
2662
- #: templates/dashboard/products-widget.php:26 templates/my-orders.php:30
2663
- #: templates/orders/order-fee-html.php:17 templates/sub-orders.php:28
2664
- msgid "Total"
2665
  msgstr ""
2666
 
2667
- #: includes/REST/AdminReportController.php:146 includes/template-tags.php:337
2668
- #: templates/dashboard/orders-widget.php:15
2669
- msgid "Orders"
2670
  msgstr ""
2671
 
2672
- #: includes/REST/OrderController.php:82 includes/REST/OrderController.php:111
2673
- #: includes/REST/OrderController.php:138 includes/REST/ProductController.php:58
2674
- #: includes/REST/ProductController.php:80
2675
- #: includes/REST/ProductController.php:121 includes/REST/StoreController.php:57
2676
- #: includes/REST/StoreController.php:87 includes/REST/StoreController.php:101
2677
- #: includes/REST/StoreController.php:122 includes/REST/StoreController.php:153
2678
- #: includes/REST/WithdrawController.php:63
2679
- #: includes/REST/WithdrawController.php:651
2680
- msgid "Unique identifier for the object."
2681
  msgstr ""
2682
 
2683
- #: includes/REST/OrderController.php:128
2684
- msgid "Order note content."
2685
  msgstr ""
2686
 
2687
- #: includes/REST/OrderController.php:142
2688
- msgid "Unique identifier for the note object."
2689
  msgstr ""
2690
 
2691
- #: includes/REST/OrderController.php:194
2692
- #: includes/REST/ProductController.php:252
2693
- #: includes/REST/ProductController.php:289
2694
- msgid "No seller found"
2695
  msgstr ""
2696
 
2697
- #: includes/REST/OrderController.php:206
2698
- #: includes/REST/ProductController.php:301
2699
- #: includes/REST/ProductController.php:326
2700
- msgid "Sorry, you have no permission to do this. Since it's not your product."
2701
  msgstr ""
2702
 
2703
- #: includes/REST/OrderController.php:331
2704
- msgid "Invalid order ID"
2705
  msgstr ""
2706
 
2707
- #: includes/REST/OrderController.php:337
2708
- msgid "Order status must me required"
2709
  msgstr ""
2710
 
2711
- #: includes/REST/OrderController.php:343
2712
- msgid "Order status not valid"
2713
  msgstr ""
2714
 
2715
- #: includes/REST/OrderController.php:351
2716
- msgid "Invalid order"
2717
  msgstr ""
2718
 
2719
- #: includes/REST/OrderController.php:508 includes/REST/OrderController.php:613
2720
- #: includes/REST/OrderController.php:644
2721
- msgid "You have no permission to view this notes"
2722
  msgstr ""
2723
 
2724
- #: includes/REST/OrderController.php:512 includes/REST/OrderController.php:575
2725
- #: includes/REST/OrderController.php:617 includes/REST/OrderController.php:648
2726
- msgid "Invalid order ID."
2727
  msgstr ""
2728
 
2729
- #: includes/REST/OrderController.php:564
2730
- #: includes/REST/ProductController.php:256
2731
- msgid "Cannot create existing %s."
2732
  msgstr ""
2733
 
2734
- #: includes/REST/OrderController.php:571
2735
- msgid "You have no permission to create this notes"
2736
  msgstr ""
2737
 
2738
- #: includes/REST/OrderController.php:582
2739
- msgid "Cannot create order note, please try again."
2740
  msgstr ""
2741
 
2742
- #: includes/REST/OrderController.php:623 includes/REST/OrderController.php:654
2743
- msgid "Invalid resource ID."
2744
  msgstr ""
2745
 
2746
- #: includes/REST/OrderController.php:843
2747
- #: includes/REST/ProductController.php:1692
2748
- msgid "Unique identifier for the resource."
2749
  msgstr ""
2750
 
2751
- #: includes/REST/OrderController.php:849
2752
- msgid "Parent order ID."
2753
  msgstr ""
2754
 
2755
- #: includes/REST/OrderController.php:854
2756
- msgid "Orders belongs to specific seller"
2757
  msgstr ""
2758
 
2759
- #: includes/REST/OrderController.php:859
2760
- msgid "Order number."
2761
  msgstr ""
2762
 
2763
- #: includes/REST/OrderController.php:865
2764
- msgid "Order key."
2765
  msgstr ""
2766
 
2767
- #: includes/REST/OrderController.php:871
2768
- msgid "Shows where the order was created."
 
2769
  msgstr ""
2770
 
2771
- #: includes/REST/OrderController.php:877
2772
- msgid "Version of WooCommerce which last updated the order."
 
2773
  msgstr ""
2774
 
2775
- #: includes/REST/OrderController.php:883
2776
- msgid "Order status."
2777
  msgstr ""
2778
 
2779
- #: includes/REST/OrderController.php:890
2780
- msgid "Currency the order was created with, in ISO format."
2781
  msgstr ""
2782
 
2783
- #: includes/REST/OrderController.php:897
2784
- msgid "The date the order was created, in the site's timezone."
2785
  msgstr ""
2786
 
2787
- #: includes/REST/OrderController.php:904
2788
- msgid "The date the order was created, as GMT."
2789
  msgstr ""
2790
 
2791
- #: includes/REST/OrderController.php:910
2792
- msgid "The date the order was last modified, in the site's timezone."
 
 
 
2793
  msgstr ""
2794
 
2795
- #: includes/REST/OrderController.php:916
2796
- msgid "The date the order was last modified, as GMT."
 
 
2797
  msgstr ""
2798
 
2799
- #: includes/REST/OrderController.php:922
2800
- msgid "Total discount amount for the order."
 
2801
  msgstr ""
2802
 
2803
- #: includes/REST/OrderController.php:928
2804
- msgid "Total discount tax amount for the order."
2805
  msgstr ""
2806
 
2807
- #: includes/REST/OrderController.php:934
2808
- msgid "Total shipping amount for the order."
 
2809
  msgstr ""
2810
 
2811
- #: includes/REST/OrderController.php:940
2812
- msgid "Total shipping tax amount for the order."
2813
  msgstr ""
2814
 
2815
- #: includes/REST/OrderController.php:946
2816
- msgid "Sum of line item taxes only."
2817
  msgstr ""
2818
 
2819
- #: includes/REST/OrderController.php:952
2820
- msgid "Grand total."
 
 
 
2821
  msgstr ""
2822
 
2823
- #: includes/REST/OrderController.php:958
2824
- msgid "Sum of all taxes."
2825
  msgstr ""
2826
 
2827
- #: includes/REST/OrderController.php:964
2828
- msgid "True the prices included tax during checkout."
2829
  msgstr ""
2830
 
2831
- #: includes/REST/OrderController.php:970
2832
- msgid "User ID who owns the order. 0 for guests."
 
 
2833
  msgstr ""
2834
 
2835
- #: includes/REST/OrderController.php:976
2836
- msgid "Customer's IP address."
2837
  msgstr ""
2838
 
2839
- #: includes/REST/OrderController.php:982
2840
- msgid "User agent of the customer."
 
 
 
 
2841
  msgstr ""
2842
 
2843
- #: includes/REST/OrderController.php:988
2844
- msgid "Note left by customer during checkout."
 
 
 
2845
  msgstr ""
2846
 
2847
- #: includes/REST/OrderController.php:993
2848
- msgid "Billing address."
2849
  msgstr ""
2850
 
2851
- #: includes/REST/OrderController.php:998 includes/REST/OrderController.php:1061
2852
- msgid "First name."
2853
  msgstr ""
2854
 
2855
- #: includes/REST/OrderController.php:1003
2856
- #: includes/REST/OrderController.php:1066
2857
- msgid "Last name."
2858
  msgstr ""
2859
 
2860
- #: includes/REST/OrderController.php:1008
2861
- #: includes/REST/OrderController.php:1071
2862
- msgid "Company name."
2863
  msgstr ""
2864
 
2865
- #: includes/REST/OrderController.php:1013
2866
- #: includes/REST/OrderController.php:1076
2867
- #: templates/admin-setup-wizard/step-store-wc-fields.php:37
2868
- msgid "Address line 1"
2869
  msgstr ""
2870
 
2871
- #: includes/REST/OrderController.php:1018
2872
- #: includes/REST/OrderController.php:1081
2873
- #: templates/admin-setup-wizard/step-store-wc-fields.php:44
2874
- msgid "Address line 2"
2875
  msgstr ""
2876
 
2877
- #: includes/REST/OrderController.php:1023
2878
- #: includes/REST/OrderController.php:1086
2879
- msgid "City name."
2880
  msgstr ""
2881
 
2882
- #: includes/REST/OrderController.php:1028
2883
- #: includes/REST/OrderController.php:1091
2884
- msgid "ISO code or name of the state, province or district."
2885
- msgstr ""
 
2886
 
2887
- #: includes/REST/OrderController.php:1033
2888
- #: includes/REST/OrderController.php:1096
2889
- msgid "Postal code."
2890
  msgstr ""
2891
 
2892
- #: includes/REST/OrderController.php:1038
2893
- #: includes/REST/OrderController.php:1101
2894
- msgid "Country code in ISO 3166-1 alpha-2 format."
2895
  msgstr ""
2896
 
2897
- #: includes/REST/OrderController.php:1043
2898
- msgid "Email address."
2899
  msgstr ""
2900
 
2901
- #: includes/REST/OrderController.php:1049
2902
- msgid "Phone number."
2903
  msgstr ""
2904
 
2905
- #: includes/REST/OrderController.php:1056
2906
- msgid "Shipping address."
2907
  msgstr ""
2908
 
2909
- #: includes/REST/OrderController.php:1108
2910
- msgid "Payment method ID."
2911
  msgstr ""
2912
 
2913
- #: includes/REST/OrderController.php:1113
2914
- msgid "Payment method title."
2915
  msgstr ""
2916
 
2917
- #: includes/REST/OrderController.php:1118
2918
- msgid "Unique transaction ID."
2919
  msgstr ""
2920
 
2921
- #: includes/REST/OrderController.php:1123
2922
- msgid "The date the order was paid, in the site's timezone."
2923
  msgstr ""
2924
 
2925
- #: includes/REST/OrderController.php:1129
2926
- msgid "The date the order was paid, as GMT."
2927
  msgstr ""
2928
 
2929
- #: includes/REST/OrderController.php:1135
2930
- msgid "The date the order was completed, in the site's timezone."
2931
  msgstr ""
2932
 
2933
- #: includes/REST/OrderController.php:1141
2934
- msgid "The date the order was completed, as GMT."
2935
  msgstr ""
2936
 
2937
- #: includes/REST/OrderController.php:1147
2938
- msgid "MD5 hash of cart items to ensure orders are not modified."
2939
  msgstr ""
2940
 
2941
- #: includes/REST/OrderController.php:1153
2942
- #: includes/REST/OrderController.php:1265
2943
- #: includes/REST/OrderController.php:1356
2944
- #: includes/REST/OrderController.php:1442
2945
- #: includes/REST/OrderController.php:1540
2946
- #: includes/REST/OrderController.php:1598
2947
- #: includes/REST/ProductController.php:2269
2948
- msgid "Meta data."
2949
  msgstr ""
2950
 
2951
- #: includes/REST/OrderController.php:1160
2952
- #: includes/REST/OrderController.php:1272
2953
- #: includes/REST/OrderController.php:1363
2954
- #: includes/REST/OrderController.php:1449
2955
- #: includes/REST/OrderController.php:1547
2956
- #: includes/REST/OrderController.php:1605
2957
- #: includes/REST/ProductController.php:2276
2958
- msgid "Meta ID."
2959
  msgstr ""
2960
 
2961
- #: includes/REST/OrderController.php:1166
2962
- #: includes/REST/OrderController.php:1278
2963
- #: includes/REST/OrderController.php:1369
2964
- #: includes/REST/OrderController.php:1455
2965
- #: includes/REST/OrderController.php:1553
2966
- #: includes/REST/OrderController.php:1611
2967
- #: includes/REST/ProductController.php:2282
2968
- msgid "Meta key."
2969
  msgstr ""
2970
 
2971
- #: includes/REST/OrderController.php:1171
2972
- #: includes/REST/OrderController.php:1283
2973
- #: includes/REST/OrderController.php:1374
2974
- #: includes/REST/OrderController.php:1460
2975
- #: includes/REST/OrderController.php:1558
2976
- #: includes/REST/OrderController.php:1616
2977
- #: includes/REST/ProductController.php:2287
2978
- msgid "Meta value."
2979
  msgstr ""
2980
 
2981
- #: includes/REST/OrderController.php:1179
2982
- msgid "Line items data."
2983
  msgstr ""
2984
 
2985
- #: includes/REST/OrderController.php:1186
2986
- #: includes/REST/OrderController.php:1314
2987
- #: includes/REST/OrderController.php:1392
2988
- #: includes/REST/OrderController.php:1478
2989
- #: includes/REST/OrderController.php:1576
2990
- msgid "Item ID."
2991
  msgstr ""
2992
 
2993
- #: includes/REST/OrderController.php:1192
2994
- #: includes/REST/ProductController.php:1698
2995
- msgid "Product name."
2996
  msgstr ""
2997
 
2998
- #: includes/REST/OrderController.php:1197
2999
- msgid "Product ID."
3000
  msgstr ""
3001
 
3002
- #: includes/REST/OrderController.php:1202
3003
- msgid "Variation ID, if applicable."
3004
  msgstr ""
3005
 
3006
- #: includes/REST/OrderController.php:1207
3007
- msgid "Quantity ordered."
3008
  msgstr ""
3009
 
3010
- #: includes/REST/OrderController.php:1212
3011
- msgid "Tax class of product."
3012
  msgstr ""
3013
 
3014
- #: includes/REST/OrderController.php:1217
3015
- msgid "Line subtotal (before discounts)."
3016
  msgstr ""
3017
 
3018
- #: includes/REST/OrderController.php:1222
3019
- msgid "Line subtotal tax (before discounts)."
 
 
3020
  msgstr ""
3021
 
3022
- #: includes/REST/OrderController.php:1228
3023
- #: includes/REST/OrderController.php:1408
3024
- #: includes/REST/OrderController.php:1500
3025
- msgid "Line total (after discounts)."
3026
  msgstr ""
3027
 
3028
- #: includes/REST/OrderController.php:1233
3029
- #: includes/REST/OrderController.php:1413
3030
- #: includes/REST/OrderController.php:1505
3031
- msgid "Line total tax (after discounts)."
3032
  msgstr ""
3033
 
3034
- #: includes/REST/OrderController.php:1239
3035
- #: includes/REST/OrderController.php:1419
3036
- #: includes/REST/OrderController.php:1511
3037
- msgid "Line taxes."
3038
  msgstr ""
3039
 
3040
- #: includes/REST/OrderController.php:1247
3041
- #: includes/REST/OrderController.php:1326
3042
- #: includes/REST/OrderController.php:1427
3043
- #: includes/REST/OrderController.php:1519
3044
- msgid "Tax rate ID."
3045
  msgstr ""
3046
 
3047
- #: includes/REST/OrderController.php:1252
3048
- #: includes/REST/OrderController.php:1433
3049
- #: includes/REST/OrderController.php:1525
3050
- msgid "Tax total."
3051
  msgstr ""
3052
 
3053
- #: includes/REST/OrderController.php:1257
3054
- #: includes/REST/OrderController.php:1531
3055
- msgid "Tax subtotal."
3056
  msgstr ""
3057
 
3058
- #: includes/REST/OrderController.php:1291
3059
- msgid "Product SKU."
3060
  msgstr ""
3061
 
3062
- #: includes/REST/OrderController.php:1297
3063
- msgid "Product price."
3064
  msgstr ""
3065
 
3066
- #: includes/REST/OrderController.php:1306
3067
- msgid "Tax lines data."
3068
  msgstr ""
3069
 
3070
- #: includes/REST/OrderController.php:1320
3071
- msgid "Tax rate code."
3072
  msgstr ""
3073
 
3074
- #: includes/REST/OrderController.php:1332
3075
- msgid "Tax rate label."
3076
  msgstr ""
3077
 
3078
- #: includes/REST/OrderController.php:1338
3079
- msgid "Show if is a compound tax rate."
3080
  msgstr ""
3081
 
3082
- #: includes/REST/OrderController.php:1344
3083
- msgid "Tax total (not including shipping taxes)."
 
 
3084
  msgstr ""
3085
 
3086
- #: includes/REST/OrderController.php:1350
3087
- msgid "Shipping tax total."
 
 
3088
  msgstr ""
3089
 
3090
- #: includes/REST/OrderController.php:1385
3091
- msgid "Shipping lines data."
3092
  msgstr ""
3093
 
3094
- #: includes/REST/OrderController.php:1398
3095
- msgid "Shipping method name."
3096
  msgstr ""
3097
 
3098
- #: includes/REST/OrderController.php:1403
3099
- msgid "Shipping method ID."
3100
  msgstr ""
3101
 
3102
- #: includes/REST/OrderController.php:1471
3103
- msgid "Fee lines data."
3104
  msgstr ""
3105
 
3106
- #: includes/REST/OrderController.php:1484
3107
- msgid "Fee name."
3108
  msgstr ""
3109
 
3110
- #: includes/REST/OrderController.php:1489
3111
- msgid "Tax class of fee."
3112
  msgstr ""
3113
 
3114
- #: includes/REST/OrderController.php:1494
3115
- msgid "Tax status of fee."
3116
  msgstr ""
3117
 
3118
- #: includes/REST/OrderController.php:1569
3119
- msgid "Coupons line data."
3120
  msgstr ""
3121
 
3122
- #: includes/REST/OrderController.php:1582
3123
- msgid "Coupon code."
3124
  msgstr ""
3125
 
3126
- #: includes/REST/OrderController.php:1587
3127
- msgid "Discount total."
3128
  msgstr ""
3129
 
3130
- #: includes/REST/OrderController.php:1592
3131
- msgid "Discount total tax."
3132
  msgstr ""
3133
 
3134
- #: includes/REST/OrderController.php:1627
3135
- msgid "List of refunds."
3136
  msgstr ""
3137
 
3138
- #: includes/REST/OrderController.php:1635
3139
- msgid "Refund ID."
3140
  msgstr ""
3141
 
3142
- #: includes/REST/OrderController.php:1641
3143
- msgid "Refund reason."
 
 
3144
  msgstr ""
3145
 
3146
- #: includes/REST/OrderController.php:1647
3147
- msgid "Refund total."
3148
  msgstr ""
3149
 
3150
- #: includes/REST/OrderController.php:1656
3151
  msgid ""
3152
- "Define if the order is paid. It will set the status to processing and "
3153
- "reduce stock items."
3154
  msgstr ""
3155
 
3156
- #: includes/REST/ProductAttributeController.php:66
3157
- #: includes/REST/ProductAttributeController.php:80
3158
- #: includes/REST/ProductAttributeController.php:94
3159
- msgid "Resource does not exist."
3160
  msgstr ""
3161
 
3162
- #: includes/REST/ProductAttributeTermsController.php:86
3163
- msgid "The term cannot found"
 
 
3164
  msgstr ""
3165
 
3166
- #: includes/REST/ProductAttributeTermsController.php:94
3167
- msgid "The resource cannot be deleted."
3168
  msgstr ""
3169
 
3170
- #: includes/REST/ProductController.php:104
3171
- msgid "Whether to bypass trash and force deletion."
 
 
 
3172
  msgstr ""
3173
 
3174
- #: includes/REST/ProductController.php:126
3175
- #: includes/REST/ProductController.php:140
3176
- #: includes/REST/ProductController.php:163
3177
- #: includes/REST/ProductController.php:186
3178
- #: includes/REST/ProductController.php:209
3179
- msgid "Number of product you want to get top rated product"
3180
  msgstr ""
3181
 
3182
- #: includes/REST/ProductController.php:145
3183
- #: includes/REST/ProductController.php:168
3184
- #: includes/REST/ProductController.php:191
3185
- #: includes/REST/ProductController.php:214
3186
- msgid "Number of page number"
3187
  msgstr ""
3188
 
3189
- #: includes/REST/ProductController.php:150
3190
- #: includes/REST/ProductController.php:173
3191
- #: includes/REST/ProductController.php:196
3192
- #: includes/REST/ProductController.php:219
3193
- msgid "Top rated product for specific vendor"
3194
  msgstr ""
3195
 
3196
- #: includes/REST/ProductController.php:260
3197
- msgid "Product title must be required"
 
 
 
3198
  msgstr ""
3199
 
3200
- #: includes/REST/ProductController.php:266
3201
- msgid "Category must be required"
3202
  msgstr ""
3203
 
3204
- #: includes/REST/ProductController.php:271
3205
- msgid "You can not select more than category"
 
 
 
3206
  msgstr ""
3207
 
3208
- #: includes/REST/ProductController.php:1271
3209
- #: includes/REST/ProductController.php:1272
3210
- msgid "Placeholder"
3211
  msgstr ""
3212
 
3213
- #: includes/REST/ProductController.php:1484
3214
- #. translators: %s: attachment id
3215
- msgid "#%s is an invalid image ID."
3216
  msgstr ""
3217
 
3218
- #: includes/REST/ProductController.php:1703
3219
- msgid "Product slug."
3220
  msgstr ""
3221
 
3222
- #: includes/REST/ProductController.php:1708
3223
- msgid "Product URL."
3224
  msgstr ""
3225
 
3226
- #: includes/REST/ProductController.php:1715
3227
- msgid "The date the product was created, in the site's timezone."
3228
  msgstr ""
3229
 
3230
- #: includes/REST/ProductController.php:1721
3231
- msgid "The date the product was created, as GMT."
3232
  msgstr ""
3233
 
3234
- #: includes/REST/ProductController.php:1727
3235
- msgid "The date the product was last modified, in the site's timezone."
3236
  msgstr ""
3237
 
3238
- #: includes/REST/ProductController.php:1733
3239
- msgid "The date the product was last modified, as GMT."
3240
  msgstr ""
3241
 
3242
- #: includes/REST/ProductController.php:1739
3243
- msgid "Product type."
3244
  msgstr ""
3245
 
3246
- #: includes/REST/ProductController.php:1746
3247
- msgid "Product status (post status)."
3248
  msgstr ""
3249
 
3250
- #: includes/REST/ProductController.php:1753
3251
- msgid "Featured product."
3252
  msgstr ""
3253
 
3254
- #: includes/REST/ProductController.php:1759
3255
- msgid "Catalog visibility."
 
3256
  msgstr ""
3257
 
3258
- #: includes/REST/ProductController.php:1766
3259
- msgid "Product description."
3260
  msgstr ""
3261
 
3262
- #: includes/REST/ProductController.php:1771
3263
- msgid "Product short description."
3264
  msgstr ""
3265
 
3266
- #: includes/REST/ProductController.php:1776
3267
- msgid "Unique identifier."
 
 
3268
  msgstr ""
3269
 
3270
- #: includes/REST/ProductController.php:1781
3271
- msgid "Current product price."
3272
  msgstr ""
3273
 
3274
- #: includes/REST/ProductController.php:1787
3275
- msgid "Product regular price."
3276
  msgstr ""
3277
 
3278
- #: includes/REST/ProductController.php:1792
3279
- msgid "Product sale price."
3280
  msgstr ""
3281
 
3282
- #: includes/REST/ProductController.php:1797
3283
- msgid "Start date of sale price, in the site's timezone."
3284
  msgstr ""
3285
 
3286
- #: includes/REST/ProductController.php:1802
3287
- msgid "Start date of sale price, as GMT."
3288
  msgstr ""
3289
 
3290
- #: includes/REST/ProductController.php:1807
3291
- msgid "End date of sale price, in the site's timezone."
3292
  msgstr ""
3293
 
3294
- #: includes/REST/ProductController.php:1812
3295
- msgid "End date of sale price, as GMT."
3296
  msgstr ""
3297
 
3298
- #: includes/REST/ProductController.php:1817
3299
- msgid "Price formatted in HTML."
3300
  msgstr ""
3301
 
3302
- #: includes/REST/ProductController.php:1823
3303
- msgid "Shows if the product is on sale."
 
 
3304
  msgstr ""
3305
 
3306
- #: includes/REST/ProductController.php:1829
3307
- msgid "Shows if the product can be bought."
3308
  msgstr ""
3309
 
3310
- #: includes/REST/ProductController.php:1835
3311
- msgid "Amount of sales."
 
3312
  msgstr ""
3313
 
3314
- #: includes/REST/ProductController.php:1841
3315
- msgid "If the product is virtual."
3316
  msgstr ""
3317
 
3318
- #: includes/REST/ProductController.php:1847
3319
- msgid "If the product is downloadable."
 
3320
  msgstr ""
3321
 
3322
- #: includes/REST/ProductController.php:1853
3323
- msgid "List of downloadable files."
 
3324
  msgstr ""
3325
 
3326
- #: includes/REST/ProductController.php:1860
3327
- msgid "File MD5 hash."
3328
  msgstr ""
3329
 
3330
- #: includes/REST/ProductController.php:1866
3331
- msgid "File name."
3332
  msgstr ""
3333
 
3334
- #: includes/REST/ProductController.php:1871
3335
- msgid "File URL."
3336
  msgstr ""
3337
 
3338
- #: includes/REST/ProductController.php:1879
3339
- msgid "Number of times downloadable files can be downloaded after purchase."
3340
  msgstr ""
3341
 
3342
- #: includes/REST/ProductController.php:1885
3343
- msgid "Number of days until access to downloadable files expires."
3344
  msgstr ""
3345
 
3346
- #: includes/REST/ProductController.php:1891
3347
- msgid "Product external URL. Only for external products."
3348
  msgstr ""
3349
 
3350
- #: includes/REST/ProductController.php:1897
3351
- msgid "Product external button text. Only for external products."
 
3352
  msgstr ""
3353
 
3354
- #: includes/REST/ProductController.php:1902
3355
- msgid "Tax status."
3356
  msgstr ""
3357
 
3358
- #: includes/REST/ProductController.php:1909
3359
- msgid "Tax class."
3360
  msgstr ""
3361
 
3362
- #: includes/REST/ProductController.php:1914
3363
- msgid "Stock management at product level."
3364
  msgstr ""
3365
 
3366
- #: includes/REST/ProductController.php:1920
3367
- msgid "Stock quantity."
3368
  msgstr ""
3369
 
3370
- #: includes/REST/ProductController.php:1925
3371
  msgid ""
3372
- "Controls whether or not the product is listed as \"in stock\" or \"out of "
3373
- "stock\" on the frontend."
3374
  msgstr ""
3375
 
3376
- #: includes/REST/ProductController.php:1931
3377
- msgid "If managing stock, this controls if backorders are allowed."
3378
  msgstr ""
3379
 
3380
- #: includes/REST/ProductController.php:1938
3381
- msgid "Shows if backorders are allowed."
 
 
3382
  msgstr ""
3383
 
3384
- #: includes/REST/ProductController.php:1944
3385
- msgid "Shows if the product is on backordered."
3386
  msgstr ""
3387
 
3388
- #: includes/REST/ProductController.php:1950
3389
- msgid "Allow one item to be bought in a single order."
3390
  msgstr ""
3391
 
3392
- #: includes/REST/ProductController.php:1957
3393
- #. translators: %s: weight unit
3394
- msgid "Product weight (%s)."
3395
  msgstr ""
3396
 
3397
- #: includes/REST/ProductController.php:1962
3398
- msgid "Product dimensions."
3399
  msgstr ""
3400
 
3401
- #: includes/REST/ProductController.php:1968
3402
- #. translators: %s: dimension unit
3403
- msgid "Product length (%s)."
3404
  msgstr ""
3405
 
3406
- #: includes/REST/ProductController.php:1974
3407
- #. translators: %s: dimension unit
3408
- msgid "Product width (%s)."
 
3409
  msgstr ""
3410
 
3411
- #: includes/REST/ProductController.php:1980
3412
- #. translators: %s: dimension unit
3413
- msgid "Product height (%s)."
3414
  msgstr ""
3415
 
3416
- #: includes/REST/ProductController.php:1987
3417
- msgid "Shows if the product need to be shipped."
3418
  msgstr ""
3419
 
3420
- #: includes/REST/ProductController.php:1993
3421
- msgid "Shows whether or not the product shipping is taxable."
 
3422
  msgstr ""
3423
 
3424
- #: includes/REST/ProductController.php:1999
3425
- msgid "Shipping class slug."
 
3426
  msgstr ""
3427
 
3428
- #: includes/REST/ProductController.php:2004
3429
- msgid "Shipping class ID."
3430
  msgstr ""
3431
 
3432
- #: includes/REST/ProductController.php:2010
3433
- msgid "Allow reviews."
3434
  msgstr ""
3435
 
3436
- #: includes/REST/ProductController.php:2016
3437
- msgid "Reviews average rating."
 
3438
  msgstr ""
3439
 
3440
- #: includes/REST/ProductController.php:2022
3441
- msgid "Amount of reviews that the product have."
 
 
 
3442
  msgstr ""
3443
 
3444
- #: includes/REST/ProductController.php:2028
3445
- msgid "List of related products IDs."
 
3446
  msgstr ""
3447
 
3448
- #: includes/REST/ProductController.php:2037
3449
- msgid "List of up-sell products IDs."
 
 
 
 
3450
  msgstr ""
3451
 
3452
- #: includes/REST/ProductController.php:2045
3453
- msgid "List of cross-sell products IDs."
3454
  msgstr ""
3455
 
3456
- #: includes/REST/ProductController.php:2053
3457
- msgid "Product parent ID."
3458
  msgstr ""
3459
 
3460
- #: includes/REST/ProductController.php:2058
3461
- msgid "Optional note to send the customer after purchase."
3462
  msgstr ""
3463
 
3464
- #: includes/REST/ProductController.php:2063
3465
- msgid "List of categories."
3466
  msgstr ""
3467
 
3468
- #: includes/REST/ProductController.php:2070
3469
- msgid "Category ID."
3470
  msgstr ""
3471
 
3472
- #: includes/REST/ProductController.php:2075
3473
- msgid "Category name."
3474
  msgstr ""
3475
 
3476
- #: includes/REST/ProductController.php:2081
3477
- msgid "Category slug."
3478
  msgstr ""
3479
 
3480
- #: includes/REST/ProductController.php:2090
3481
- msgid "List of tags."
3482
  msgstr ""
3483
 
3484
- #: includes/REST/ProductController.php:2097
3485
- msgid "Tag ID."
3486
  msgstr ""
3487
 
3488
- #: includes/REST/ProductController.php:2102
3489
- msgid "Tag name."
3490
  msgstr ""
3491
 
3492
- #: includes/REST/ProductController.php:2108
3493
- msgid "Tag slug."
3494
  msgstr ""
3495
 
3496
- #: includes/REST/ProductController.php:2117
3497
- msgid "List of images."
 
 
 
3498
  msgstr ""
3499
 
3500
- #: includes/REST/ProductController.php:2124
3501
- msgid "Image ID."
3502
  msgstr ""
3503
 
3504
- #: includes/REST/ProductController.php:2129
3505
- msgid "The date the image was created, in the site's timezone."
3506
  msgstr ""
3507
 
3508
- #: includes/REST/ProductController.php:2135
3509
- msgid "The date the image was created, as GMT."
3510
  msgstr ""
3511
 
3512
- #: includes/REST/ProductController.php:2141
3513
- msgid "The date the image was last modified, in the site's timezone."
3514
  msgstr ""
3515
 
3516
- #: includes/REST/ProductController.php:2147
3517
- msgid "The date the image was last modified, as GMT."
 
3518
  msgstr ""
3519
 
3520
- #: includes/REST/ProductController.php:2153
3521
- msgid "Image URL."
 
 
 
3522
  msgstr ""
3523
 
3524
- #: includes/REST/ProductController.php:2159
3525
- msgid "Image name."
 
 
 
3526
  msgstr ""
3527
 
3528
- #: includes/REST/ProductController.php:2164
3529
- msgid "Image alternative text."
3530
  msgstr ""
3531
 
3532
- #: includes/REST/ProductController.php:2169
3533
- msgid "Image position. 0 means that the image is featured."
3534
  msgstr ""
3535
 
3536
- #: includes/REST/ProductController.php:2177
3537
- msgid "List of attributes."
3538
  msgstr ""
3539
 
3540
- #: includes/REST/ProductController.php:2184
3541
- #: includes/REST/ProductController.php:2229
3542
- msgid "Attribute ID."
3543
  msgstr ""
3544
 
3545
- #: includes/REST/ProductController.php:2189
3546
- #: includes/REST/ProductController.php:2234
3547
- msgid "Attribute name."
3548
  msgstr ""
3549
 
3550
- #: includes/REST/ProductController.php:2194
3551
- msgid "Attribute position."
3552
  msgstr ""
3553
 
3554
- #: includes/REST/ProductController.php:2199
3555
  msgid ""
3556
- "Define if the attribute is visible on the \"Additional information\" tab in "
3557
- "the product's page."
3558
  msgstr ""
3559
 
3560
- #: includes/REST/ProductController.php:2205
3561
- msgid "Define if the attribute can be used as variation."
3562
  msgstr ""
3563
 
3564
- #: includes/REST/ProductController.php:2211
3565
- msgid "List of available term names of the attribute."
3566
  msgstr ""
3567
 
3568
- #: includes/REST/ProductController.php:2222
3569
- msgid "Defaults variation attributes."
3570
  msgstr ""
3571
 
3572
- #: includes/REST/ProductController.php:2239
3573
- msgid "Selected attribute term name."
3574
  msgstr ""
3575
 
3576
- #: includes/REST/ProductController.php:2247
3577
- msgid "List of variations IDs."
 
3578
  msgstr ""
3579
 
3580
- #: includes/REST/ProductController.php:2256
3581
- msgid "List of grouped products ID."
3582
  msgstr ""
3583
 
3584
- #: includes/REST/ProductController.php:2264
3585
- msgid "Menu order, used to custom sort products."
3586
  msgstr ""
3587
 
3588
- #: includes/REST/StoreController.php:72
3589
- msgid "Reassign the deleted user's posts and links to this user ID."
 
3590
  msgstr ""
3591
 
3592
- #: includes/REST/StoreController.php:132
3593
- #: templates/widgets/store-contact-form.php:15
3594
- msgid "Your Name"
3595
  msgstr ""
3596
 
3597
- #: includes/REST/StoreController.php:138
3598
- msgid "Your email"
3599
  msgstr ""
3600
 
3601
- #: includes/REST/StoreController.php:143
3602
- msgid "Your Message"
3603
  msgstr ""
3604
 
3605
- #: includes/REST/StoreController.php:158
3606
- msgid "Status for the store object."
3607
  msgstr ""
3608
 
3609
- #: includes/REST/StoreController.php:244 includes/REST/StoreController.php:311
3610
- #: includes/REST/StoreController.php:464
3611
- msgid "No store found"
3612
  msgstr ""
3613
 
3614
- #: includes/REST/StoreController.php:265 includes/REST/StoreController.php:783
3615
- msgid "No vendor found for updating status"
3616
  msgstr ""
3617
 
3618
- #: includes/REST/StoreController.php:270
3619
- msgid "Invalid user ID for reassignment."
3620
  msgstr ""
3621
 
3622
- #: includes/REST/StoreController.php:481 includes/REST/StoreController.php:500
3623
- msgid "No reviews found"
3624
  msgstr ""
3625
 
3626
- #: includes/REST/StoreController.php:689
3627
- msgid "This email address is not valid"
3628
  msgstr ""
3629
 
3630
- #: includes/REST/StoreController.php:732
3631
- msgid "No vendor is found to be send an email."
 
 
 
 
3632
  msgstr ""
3633
 
3634
- #: includes/REST/StoreController.php:777
3635
- msgid "Status parameter must be active or inactive"
 
3636
  msgstr ""
3637
 
3638
- #: includes/REST/StoreController.php:808
3639
- msgid "No items found for bulk updating"
 
 
3640
  msgstr ""
3641
 
3642
- #: includes/REST/WithdrawController.php:42
3643
- msgid "IDs of withdraws"
3644
  msgstr ""
3645
 
3646
- #: includes/REST/WithdrawController.php:197
3647
- msgid "Withdraw not found"
 
 
3648
  msgstr ""
3649
 
3650
- #: includes/REST/WithdrawController.php:238
3651
- #: includes/REST/WithdrawController.php:302
3652
- msgid "No vendor found"
3653
  msgstr ""
3654
 
3655
- #: includes/REST/WithdrawController.php:292
3656
- msgid "User does not have permission to withdraw"
3657
  msgstr ""
3658
 
3659
- #: includes/REST/WithdrawController.php:657
3660
- msgid "Requested User"
3661
  msgstr ""
3662
 
3663
- #: includes/REST/WithdrawController.php:664
3664
- msgid "Requested User ID"
3665
  msgstr ""
3666
 
3667
- #: includes/REST/WithdrawController.php:670
 
 
 
 
 
3668
  msgid ""
3669
- "The amount of discount. Should always be numeric, even if setting a "
3670
- "percentage."
 
 
3671
  msgstr ""
3672
 
3673
- #: includes/REST/WithdrawController.php:675
3674
- msgid "The date the withdraw request has beed created in the site's timezone."
 
 
3675
  msgstr ""
3676
 
3677
- #: includes/REST/WithdrawController.php:682
3678
- msgid "Withdraw status"
 
3679
  msgstr ""
3680
 
3681
- #: includes/REST/WithdrawController.php:690
3682
- msgid "Withdraw Method"
3683
  msgstr ""
3684
 
3685
- #: includes/REST/WithdrawController.php:697
3686
- msgid "Withdraw Notes"
3687
  msgstr ""
3688
 
3689
- #: includes/REST/WithdrawController.php:703
3690
- msgid "User IP"
3691
  msgstr ""
3692
 
3693
- #: includes/REST/WithdrawController.php:729
3694
- msgid "List of withdraw IDs to be approved"
3695
  msgstr ""
3696
 
3697
- #: includes/REST/WithdrawController.php:739
3698
- msgid "List of withdraw IDs to be cancelled"
3699
  msgstr ""
3700
 
3701
- #: includes/REST/WithdrawController.php:749
3702
- msgid "List of withdraw IDs to be deleted"
3703
  msgstr ""
3704
 
3705
- #: includes/Registration.php:48
3706
- msgid "Nonce verification failed"
3707
  msgstr ""
3708
 
3709
- #: includes/Registration.php:56
3710
- msgid "Cheating, eh?"
3711
  msgstr ""
3712
 
3713
- #: includes/Registration.php:62
3714
- msgid "Please enter your first name."
 
3715
  msgstr ""
3716
 
3717
- #: includes/Registration.php:63
3718
- msgid "Please enter your last name."
3719
  msgstr ""
3720
 
3721
- #: includes/Registration.php:64
3722
- msgid "Please enter your phone number."
3723
  msgstr ""
3724
 
3725
- #: includes/Registration.php:65
3726
- msgid "Please provide a shop name."
 
 
 
3727
  msgstr ""
3728
 
3729
- #: includes/Shortcodes/Dashboard.php:25
3730
- msgid "Please install <a href=\"%s\"><strong>WooCommerce</strong></a> plugin first"
3731
  msgstr ""
3732
 
3733
- #: includes/Shortcodes/VendorRegistration.php:18
3734
- msgid "You are already logged in"
3735
  msgstr ""
3736
 
3737
- #: includes/Traits/AjaxResponseError.php:32
3738
- #: includes/Traits/RESTResponseError.php:30
3739
- msgid "Something went wrong"
3740
  msgstr ""
3741
 
3742
- #: includes/Upgrade/AdminNotice.php:53
3743
- msgid "You are not authorize to perform this operation."
3744
  msgstr ""
3745
 
3746
- #: includes/Upgrade/AdminNotice.php:57
3747
- msgid "There is an upgrading process going on."
3748
  msgstr ""
3749
 
3750
- #: includes/Upgrade/AdminNotice.php:61
3751
- msgid "Update is not required."
3752
  msgstr ""
3753
 
3754
- #: includes/Vendor/Manager.php:174
3755
- msgid "Unable to create vendor"
3756
  msgstr ""
3757
 
3758
- #: includes/Vendor/Manager.php:258
3759
- msgid "Email is not valid"
3760
  msgstr ""
3761
 
3762
- #: includes/Vendor/SetupWizard.php:119
3763
- msgid "Vendor &rsaquo; Setup Wizard"
3764
  msgstr ""
3765
 
3766
- #: includes/Vendor/SetupWizard.php:138
3767
- msgid "Return to the Marketplace"
3768
  msgstr ""
3769
 
3770
- #: includes/Vendor/SetupWizard.php:151
3771
- msgid "Welcome to the Marketplace!"
3772
  msgstr ""
3773
 
3774
- #: includes/Vendor/SetupWizard.php:152
3775
- msgid ""
3776
- "Thank you for choosing The Marketplace to power your online store! This "
3777
- "quick setup wizard will help you configure the basic settings. <strong>It’s "
3778
- "completely optional and shouldn’t take longer than two minutes.</strong>"
3779
  msgstr ""
3780
 
3781
- #: includes/Vendor/SetupWizard.php:153
3782
- msgid ""
3783
- "No time right now? If you don’t want to go through the wizard, you can skip "
3784
- "and return to the Store!"
3785
  msgstr ""
3786
 
3787
- #: includes/Vendor/SetupWizard.php:181
3788
- #: templates/admin-setup-wizard/step-store.php:1
3789
- msgid "Store Setup"
3790
  msgstr ""
3791
 
3792
- #: includes/Vendor/SetupWizard.php:185 templates/settings/store-form.php:126
3793
- msgid "Store Product Per Page"
3794
  msgstr ""
3795
 
3796
- #: includes/Vendor/SetupWizard.php:191
3797
- msgid "Street"
3798
  msgstr ""
3799
 
3800
- #: includes/Vendor/SetupWizard.php:197
3801
- #: src/admin/pages/VendorAddressFields.vue:16
3802
- #: src/admin/pages/VendorAddressFields.vue:17
3803
- #: templates/settings/address-form.php:41
3804
- msgid "Street 2"
3805
  msgstr ""
3806
 
3807
- #: includes/Vendor/SetupWizard.php:208
3808
- msgid "Post/Zip Code"
3809
  msgstr ""
3810
 
3811
- #: includes/Vendor/SetupWizard.php:223
3812
- msgid "State Name"
3813
  msgstr ""
3814
 
3815
- #: includes/Vendor/SetupWizard.php:230
3816
- #: src/admin/pages/VendorAccountFields.vue:69
3817
- #: templates/settings/store-form.php:156
3818
- msgid "Email"
3819
  msgstr ""
3820
 
3821
- #: includes/Vendor/SetupWizard.php:234 templates/settings/store-form.php:161
3822
- msgid "Show email address in store"
3823
  msgstr ""
3824
 
3825
- #: includes/Vendor/SetupWizard.php:263
3826
- msgid "Select an option&hellip;"
3827
  msgstr ""
3828
 
3829
- #: includes/Vendor/SetupWizard.php:374
3830
- msgid "Payment Setup"
3831
  msgstr ""
3832
 
3833
- #: includes/Vendor/SetupWizard.php:478
3834
- msgid "Your Store is Ready!"
3835
  msgstr ""
3836
 
3837
- #: includes/Vendor/SetupWizard.php:483
3838
- msgid "Go to your Store Dashboard!"
3839
  msgstr ""
3840
 
3841
- #: includes/Vendor/StoreListsFilter.php:82
3842
- msgid "Most Recent"
 
 
3843
  msgstr ""
3844
 
3845
- #: includes/Vendor/StoreListsFilter.php:83
3846
- msgid "Most Popular"
3847
  msgstr ""
3848
 
3849
- #: includes/Vendor/Vendor.php:707
3850
- msgid "No ratings found yet!"
3851
  msgstr ""
3852
 
3853
- #: includes/Vendor/Vendor.php:709
3854
- msgid "%s rating from %d review"
3855
- msgid_plural "%s rating from %d reviews"
3856
- msgstr[0] ""
3857
- msgstr[1] ""
3858
-
3859
- #: includes/Vendor/Vendor.php:710
3860
- msgid "Rated %s out of %d"
3861
  msgstr ""
3862
 
3863
- #: includes/Vendor/Vendor.php:839 templates/settings/store-form.php:280
3864
- msgid "Store is open"
 
 
 
 
 
3865
  msgstr ""
3866
 
3867
- #: includes/Vendor/Vendor.php:853 templates/settings/store-form.php:290
3868
- msgid "Store is closed"
 
 
 
 
 
3869
  msgstr ""
3870
 
3871
- #: includes/Widgets/BestSellingProducts.php:58
3872
- msgid "Best Selling Product"
 
 
 
 
 
 
 
 
 
 
 
 
3873
  msgstr ""
3874
 
3875
- #: includes/Widgets/BestSellingProducts.php:65
3876
- #: includes/Widgets/ProductCategoryMenu.php:119
3877
- #: includes/Widgets/StoreCategoryMenu.php:122
3878
- #: includes/Widgets/StoreContactForm.php:120
3879
- #: includes/Widgets/StoreLocation.php:104
3880
- #: includes/Widgets/StoreOpenClose.php:111
3881
- #: includes/Widgets/TopratedProducts.php:64
3882
- msgid "Title:"
3883
  msgstr ""
3884
 
3885
- #: includes/Widgets/BestSellingProducts.php:69
3886
- #: includes/Widgets/TopratedProducts.php:68
3887
- msgid "No of Product:"
 
 
 
 
3888
  msgstr ""
3889
 
3890
- #: includes/Widgets/BestSellingProducts.php:74
3891
- #: includes/Widgets/TopratedProducts.php:73
3892
- msgid "Show Product Rating"
 
 
 
 
3893
  msgstr ""
3894
 
3895
- #: includes/Widgets/BestSellingProducts.php:78
3896
- msgid "Hide Out of Stock"
3897
  msgstr ""
3898
 
3899
- #: includes/Widgets/ProductCategoryMenu.php:16
3900
- msgid "Dokan product category menu"
3901
  msgstr ""
3902
 
3903
- #: includes/Widgets/ProductCategoryMenu.php:113
3904
- msgid "Product Category"
3905
  msgstr ""
3906
 
3907
- #: includes/Widgets/StoreCategoryMenu.php:15
3908
- msgid "Dokan Seller Store Menu"
3909
  msgstr ""
3910
 
3911
- #: includes/Widgets/StoreCategoryMenu.php:16
3912
- msgid "Dokan: Store Category Menu"
3913
  msgstr ""
3914
 
3915
- #: includes/Widgets/StoreCategoryMenu.php:33
3916
- #: includes/Widgets/StoreCategoryMenu.php:116 templates/store-sidebar.php:15
3917
- msgid "Store Product Category"
3918
  msgstr ""
3919
 
3920
- #: includes/Widgets/StoreContactForm.php:22
3921
- msgid "Dokan Vendor Contact Form"
3922
  msgstr ""
3923
 
3924
- #: includes/Widgets/StoreContactForm.php:23
3925
- msgid "Dokan: Store Contact Form"
3926
  msgstr ""
3927
 
3928
- #: includes/Widgets/StoreContactForm.php:40
3929
- #: includes/Widgets/StoreContactForm.php:114 templates/store-sidebar.php:27
3930
- msgid "Contact Vendor"
3931
  msgstr ""
3932
 
3933
- #: includes/Widgets/StoreLocation.php:22
3934
- msgid "Dokan Vendor Store Location"
3935
  msgstr ""
3936
 
3937
- #: includes/Widgets/StoreLocation.php:23
3938
- msgid "Dokan: Store Location"
 
 
3939
  msgstr ""
3940
 
3941
- #: includes/Widgets/StoreLocation.php:40 includes/Widgets/StoreLocation.php:98
3942
- #: templates/store-sidebar.php:19
3943
- msgid "Store Location"
3944
  msgstr ""
3945
 
3946
- #: includes/Widgets/StoreOpenClose.php:21
3947
- msgid "Dokan Store Opening Closing Time"
3948
  msgstr ""
3949
 
3950
- #: includes/Widgets/StoreOpenClose.php:22
3951
- msgid "Dokan: Store Opening Closing Time Widget"
 
 
3952
  msgstr ""
3953
 
3954
- #: includes/Widgets/StoreOpenClose.php:38
3955
- #: includes/Widgets/StoreOpenClose.php:105 templates/store-sidebar.php:23
3956
- msgid "Store Time"
 
3957
  msgstr ""
3958
 
3959
- #: includes/Widgets/TopratedProducts.php:13
3960
- msgid "Dokan: Top Rated Product Widget"
3961
  msgstr ""
3962
 
3963
- #: includes/Widgets/TopratedProducts.php:14
3964
- msgid "A Widget for displaying To rated products for dokan"
 
 
3965
  msgstr ""
3966
 
3967
- #: includes/Widgets/TopratedProducts.php:57
3968
- msgid "Top Rated Product"
 
 
3969
  msgstr ""
3970
 
3971
- #: includes/Withdraw/Manager.php:37
3972
- msgid "Withdraw amount required "
3973
  msgstr ""
3974
 
3975
- #: includes/Withdraw/Manager.php:41
3976
- msgid "You don't have enough balance for this request"
3977
  msgstr ""
3978
 
3979
- #: includes/Withdraw/Manager.php:45
3980
- msgid "Withdraw amount must be greater than %d"
 
 
3981
  msgstr ""
3982
 
3983
- #: includes/Withdraw/Manager.php:49
3984
- msgid "Withdraw method is not active."
3985
  msgstr ""
3986
 
3987
- #: includes/Withdraw/Manager.php:53
3988
- msgid "Vendor is not enabled for selling, please contact site admin"
3989
  msgstr ""
3990
 
3991
- #: includes/Withdraw/Manager.php:57
3992
- msgid "Withdraw is already approved."
3993
  msgstr ""
3994
 
3995
- #: includes/Withdraw/Manager.php:92
3996
- msgid "Invalid permission to cancel the request."
 
 
3997
  msgstr ""
3998
 
3999
- #: includes/Withdraw/Manager.php:98
4000
- msgid "Invalid cancel withdraw request"
4001
  msgstr ""
4002
 
4003
- #: includes/Withdraw/Manager.php:138
4004
- msgid "Could not update withdraw status"
4005
  msgstr ""
4006
 
4007
- #: includes/Withdraw/Manager.php:171
4008
- msgid "Could not add new withdraw approval request."
4009
  msgstr ""
4010
 
4011
- #: includes/Withdraw/Withdraw.php:280
4012
- msgid "Could not create new withdraw"
 
 
4013
  msgstr ""
4014
 
4015
- #: includes/Withdraw/Withdraw.php:326
4016
- msgid "Could not update withdraw"
4017
  msgstr ""
4018
 
4019
- #: includes/Withdraw/Withdraw.php:367
4020
- msgid "Could not delete withdraw"
4021
  msgstr ""
4022
 
4023
- #: includes/Withdraw/functions.php:16
4024
- msgid "Bank Transfer"
4025
  msgstr ""
4026
 
4027
- #: includes/Withdraw/functions.php:126
4028
- msgid "E-mail"
4029
  msgstr ""
4030
 
4031
- #: includes/Withdraw/functions.php:173
4032
- msgid "Your bank account name"
4033
  msgstr ""
4034
 
4035
- #: includes/Withdraw/functions.php:179
4036
- msgid "Your bank account number"
4037
  msgstr ""
4038
 
4039
- #: includes/Withdraw/functions.php:185
4040
- msgid "Name of bank"
4041
  msgstr ""
4042
 
4043
- #: includes/Withdraw/functions.php:191
4044
- msgid "Address of your bank"
4045
  msgstr ""
4046
 
4047
- #: includes/Withdraw/functions.php:197
4048
- msgid "Routing number"
4049
  msgstr ""
4050
 
4051
- #: includes/Withdraw/functions.php:209
4052
- msgid "Swift code"
4053
  msgstr ""
4054
 
4055
  #: includes/functions.php:762 templates/products/others.php:16
@@ -4487,6 +4385,11 @@ msgstr ""
4487
  msgid "Log out"
4488
  msgstr ""
4489
 
 
 
 
 
 
4490
  #: includes/wc-functions.php:103
4491
  msgid "Product SKU must be unique"
4492
  msgstr ""
@@ -4574,47 +4477,116 @@ msgstr ""
4574
  msgid "Go to Vendor Dashboard"
4575
  msgstr ""
4576
 
4577
- #: includes/woo-views/html-product-download.php:3
4578
- msgid "File Name"
4579
  msgstr ""
4580
 
4581
- #: includes/woo-views/html-product-download.php:7
4582
- msgid "http://"
 
 
 
 
 
 
4583
  msgstr ""
4584
 
4585
- #: includes/woo-views/html-product-download.php:8
4586
- msgid "Choose file"
 
4587
  msgstr ""
4588
 
4589
- #: lib/appsero/Insights.php:369 vendor/appsero/client/src/Insights.php:369
4590
- msgid ""
4591
- "Want to help make <strong>%1$s</strong> even more awesome? Allow %1$s to "
4592
- "collect non-sensitive diagnostic data and usage information."
4593
  msgstr ""
4594
 
4595
- #: lib/appsero/Insights.php:374 vendor/appsero/client/src/Insights.php:374
4596
- msgid "what we collect"
4597
  msgstr ""
4598
 
4599
- #: lib/appsero/Insights.php:381 templates/products/inventory.php:55
4600
- #: vendor/appsero/client/src/Insights.php:381
4601
- msgid "Allow"
4602
  msgstr ""
4603
 
4604
- #: lib/appsero/Insights.php:382 vendor/appsero/client/src/Insights.php:382
4605
- msgid "No thanks"
4606
  msgstr ""
4607
 
4608
- #: lib/appsero/Insights.php:747 vendor/appsero/client/src/Insights.php:747
4609
- msgid "If you have a moment, please let us know why you are deactivating:"
4610
  msgstr ""
4611
 
4612
- #: lib/appsero/Insights.php:762 vendor/appsero/client/src/Insights.php:762
4613
- msgid "I rather wouldn't say"
4614
  msgstr ""
4615
 
4616
- #: lib/appsero/Insights.php:763 vendor/appsero/client/src/Insights.php:763
4617
- msgid "Submit & Deactivate"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4618
  msgstr ""
4619
 
4620
  #: lib/class.category-walker.php:13
@@ -5622,7 +5594,7 @@ msgid "Filter by Date"
5622
  msgstr ""
5623
 
5624
  #: templates/orders/date-export.php:36
5625
- msgid "Filter by Customer"
5626
  msgstr ""
5627
 
5628
  #: templates/orders/date-export.php:39 templates/products/listing-filter.php:48
@@ -5996,6 +5968,11 @@ msgstr ""
5996
  msgid "Allow but notify customer"
5997
  msgstr ""
5998
 
 
 
 
 
 
5999
  #: templates/products/inventory.php:65
6000
  msgid "Allow only one quantity of this product to be bought in a single order"
6001
  msgstr ""
@@ -6558,6 +6535,32 @@ msgstr ""
6558
  msgid "Cancelled Requests"
6559
  msgstr ""
6560
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6561
  #. Plugin URI of the plugin/theme
6562
  msgid "https://wordpress.org/plugins/dokan-lite/"
6563
  msgstr ""
@@ -6576,71 +6579,71 @@ msgstr ""
6576
  msgid "https://wedevs.com/"
6577
  msgstr ""
6578
 
6579
- #: includes/Admin/SetupWizard.php:57
 
 
 
 
 
6580
  msgctxt "enhanced select"
6581
  msgid "One result is available, press enter to select it."
6582
  msgstr ""
6583
 
6584
- #: includes/Admin/SetupWizard.php:58
6585
  msgctxt "enhanced select"
6586
  msgid "%qty% results are available, use up and down arrow keys to navigate."
6587
  msgstr ""
6588
 
6589
- #: includes/Admin/SetupWizard.php:59
6590
  msgctxt "enhanced select"
6591
  msgid "No matches found"
6592
  msgstr ""
6593
 
6594
- #: includes/Admin/SetupWizard.php:60
6595
  msgctxt "enhanced select"
6596
  msgid "Loading failed"
6597
  msgstr ""
6598
 
6599
- #: includes/Admin/SetupWizard.php:61
6600
  msgctxt "enhanced select"
6601
  msgid "Please enter 1 or more characters"
6602
  msgstr ""
6603
 
6604
- #: includes/Admin/SetupWizard.php:62
6605
  msgctxt "enhanced select"
6606
  msgid "Please enter %qty% or more characters"
6607
  msgstr ""
6608
 
6609
- #: includes/Admin/SetupWizard.php:63
6610
  msgctxt "enhanced select"
6611
  msgid "Please delete 1 character"
6612
  msgstr ""
6613
 
6614
- #: includes/Admin/SetupWizard.php:64
6615
  msgctxt "enhanced select"
6616
  msgid "Please delete %qty% characters"
6617
  msgstr ""
6618
 
6619
- #: includes/Admin/SetupWizard.php:65
6620
  msgctxt "enhanced select"
6621
  msgid "You can only select 1 item"
6622
  msgstr ""
6623
 
6624
- #: includes/Admin/SetupWizard.php:66
6625
  msgctxt "enhanced select"
6626
  msgid "You can only select %qty% items"
6627
  msgstr ""
6628
 
6629
- #: includes/Admin/SetupWizard.php:67
6630
  msgctxt "enhanced select"
6631
  msgid "Loading more results&hellip;"
6632
  msgstr ""
6633
 
6634
- #: includes/Admin/SetupWizard.php:68
6635
  msgctxt "enhanced select"
6636
  msgid "Searching&hellip;"
6637
  msgstr ""
6638
 
6639
- #: includes/Product/functions.php:284
6640
- msgctxt "number of pages"
6641
- msgid "of"
6642
- msgstr ""
6643
-
6644
  #: includes/template-tags.php:45
6645
  msgctxt "Previous post link"
6646
  msgid "&larr;"
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Dokan 3.0.1\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
+ "POT-Creation-Date: 2020-02-07 06:31:35+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
49
  msgid "Get Pro"
50
  msgstr ""
51
 
52
+ #: dokan.php:438 includes/Dashboard/Templates/Settings.php:58
53
+ #: includes/Dashboard/Templates/Settings.php:62 includes/admin/AdminBar.php:68
54
+ #: includes/admin/Menu.php:59 includes/template-tags.php:354
55
  #: src/admin/pages/Settings.vue:3
56
  msgid "Settings"
57
  msgstr ""
78
  msgid "You have no permission to do that"
79
  msgstr ""
80
 
81
+ #: includes/Abstracts/DokanPromotion.php:190 includes/admin/Settings.php:43
82
+ #: includes/admin/Settings.php:71
83
  msgid "Invalid nonce"
84
  msgstr ""
85
 
112
  msgid "$shortcode property is empty."
113
  msgstr ""
114
 
115
+ #: includes/Ajax.php:71 includes/Ajax.php:946
116
+ #: includes/Dashboard/Templates/Withdraw.php:110
117
+ #: includes/Dashboard/Templates/Withdraw.php:169
118
+ msgid "You have no permission to do this action"
119
  msgstr ""
120
 
121
+ #: includes/Ajax.php:93
122
+ msgid "Something wrong, please try again later"
 
 
123
  msgstr ""
124
 
125
+ #: includes/Ajax.php:108 includes/Dashboard/Templates/Settings.php:211
126
+ #: includes/Dashboard/Templates/Settings.php:225
127
+ #: includes/Dashboard/Templates/Settings.php:237
128
+ #: includes/Dashboard/Templates/Settings.php:249
129
+ #: includes/Dashboard/Templates/Settings.php:286
130
+ #: includes/Dashboard/Templates/Settings.php:352
131
+ #: includes/Dashboard/Templates/Settings.php:393
132
+ #: includes/Dashboard/Templates/Settings.php:443
133
+ #: includes/Dashboard/Templates/Withdraw.php:106
134
+ #: includes/Dashboard/Templates/Withdraw.php:165
135
+ msgid "Are you cheating?"
136
  msgstr ""
137
 
138
+ #: includes/Ajax.php:139 includes/Assets.php:398
139
+ #: includes/admin/UserProfile.php:38
140
+ #: src/admin/pages/VendorAccountFields.vue:279
141
+ #: src/admin/pages/VendorAccountFields.vue:311
142
+ #: src/admin/pages/VendorAccountFields.vue:343
143
+ msgid "Available"
144
  msgstr ""
145
 
146
+ #: includes/Ajax.php:156 includes/Ajax.php:191
147
+ msgid "You do not have sufficient permissions to access this page."
 
 
 
 
 
148
  msgstr ""
149
 
150
+ #: includes/Ajax.php:160 includes/Ajax.php:195
151
+ msgid "You have taken too long. Please go back and retry."
152
  msgstr ""
153
 
154
+ #: includes/Ajax.php:170 includes/Ajax.php:205
155
+ msgid "You do not have permission to change this order"
156
  msgstr ""
157
 
158
+ #: includes/Ajax.php:268
159
+ msgid "File %d"
160
  msgstr ""
161
 
162
+ #: includes/Ajax.php:290
163
+ msgid "You have no permission to manage this order"
164
  msgstr ""
165
 
166
+ #: includes/Ajax.php:325 includes/Ajax.php:330
167
+ msgid "Please provide your name."
168
  msgstr ""
169
 
170
+ #: includes/Ajax.php:337 includes/template-tags.php:140
171
+ msgid "Something went wrong!"
172
  msgstr ""
173
 
174
+ #: includes/Ajax.php:343 includes/REST/StoreController.php:759
175
+ msgid "Email sent successfully!"
176
  msgstr ""
177
 
178
+ #: includes/Ajax.php:402 templates/orders/details.php:288
179
+ msgid "Delete note"
180
  msgstr ""
181
 
182
+ #: includes/Ajax.php:432
183
+ msgid "Shipping provider: "
184
  msgstr ""
185
 
186
+ #: includes/Ajax.php:432
187
+ msgid "Shipping number: "
188
  msgstr ""
189
 
190
+ #: includes/Ajax.php:432
191
+ msgid "Shipped date: "
192
  msgstr ""
193
 
194
+ #: includes/Ajax.php:469 includes/woo-views/html-product-download.php:14
195
+ msgid "Delete"
 
 
196
  msgstr ""
197
 
198
+ #: includes/Ajax.php:514
199
+ msgid "Error: Nonce verification failed"
 
 
200
  msgstr ""
201
 
202
+ #: includes/Ajax.php:601
203
+ msgid "Image could not be processed. Please go back and try again."
204
  msgstr ""
205
 
206
+ #: includes/Ajax.php:722
207
+ #. translators: 1: user display name 2: user ID 3: user email
208
+ msgid "%1$s (#%2$s &ndash; %3$s)"
209
  msgstr ""
210
 
211
+ #: includes/Ajax.php:867
212
+ msgid "Invalid username or password."
213
  msgstr ""
214
 
215
+ #: includes/Ajax.php:876
216
+ msgid "Wrong username or password."
217
  msgstr ""
218
 
219
+ #: includes/Ajax.php:903
220
+ msgid "User logged in successfully."
221
  msgstr ""
222
 
223
+ #: includes/Ajax.php:952
224
+ msgid "id param is required"
225
  msgstr ""
226
 
227
+ #: includes/Assets.php:399 includes/admin/UserProfile.php:39
228
+ #: src/admin/pages/VendorAccountFields.vue:287
229
+ #: src/admin/pages/VendorAccountFields.vue:319
230
+ msgid "Not Available"
231
  msgstr ""
232
 
233
+ #: includes/Assets.php:401
234
+ msgid "Are you sure?"
235
  msgstr ""
236
 
237
+ #: includes/Assets.php:402
238
+ msgid "Something went wrong. Please try again."
239
  msgstr ""
240
 
241
+ #: includes/Assets.php:477
242
+ msgid "This field is required"
243
  msgstr ""
244
 
245
+ #: includes/Assets.php:478
246
+ msgid "Please fix this field."
247
  msgstr ""
248
 
249
+ #: includes/Assets.php:479
250
+ msgid "Please enter a valid email address."
251
  msgstr ""
252
 
253
+ #: includes/Assets.php:480
254
+ msgid "Please enter a valid URL."
255
  msgstr ""
256
 
257
+ #: includes/Assets.php:481
258
+ msgid "Please enter a valid date."
 
 
259
  msgstr ""
260
 
261
+ #: includes/Assets.php:482
262
+ msgid "Please enter a valid date (ISO)."
263
  msgstr ""
264
 
265
+ #: includes/Assets.php:483
266
+ msgid "Please enter a valid number."
 
 
267
  msgstr ""
268
 
269
+ #: includes/Assets.php:484
270
+ msgid "Please enter only digits."
271
  msgstr ""
272
 
273
+ #: includes/Assets.php:485
274
+ msgid "Please enter a valid credit card number."
 
 
275
  msgstr ""
276
 
277
+ #: includes/Assets.php:486
278
+ msgid "Please enter the same value again."
279
  msgstr ""
280
 
281
+ #: includes/Assets.php:487
282
+ msgid "Please enter no more than {0} characters."
 
 
 
283
  msgstr ""
284
 
285
+ #: includes/Assets.php:488
286
+ msgid "Please enter at least {0} characters."
287
  msgstr ""
288
 
289
+ #: includes/Assets.php:489
290
+ msgid "Please enter a value between {0} and {1} characters long."
 
 
291
  msgstr ""
292
 
293
+ #: includes/Assets.php:490
294
+ msgid "Please enter a value between {0} and {1}."
295
  msgstr ""
296
 
297
+ #: includes/Assets.php:491
298
+ msgid "Please enter a value less than or equal to {0}."
 
 
 
299
  msgstr ""
300
 
301
+ #: includes/Assets.php:492
302
+ msgid "Please enter a value greater than or equal to {0}."
303
  msgstr ""
304
 
305
+ #: includes/Assets.php:610
306
+ msgid "Upload featured image"
 
 
 
307
  msgstr ""
308
 
309
+ #: includes/Assets.php:611
310
+ msgid "Choose a file"
311
  msgstr ""
312
 
313
+ #: includes/Assets.php:612
314
+ msgid "Add Images to Product Gallery"
315
  msgstr ""
316
 
317
+ #: includes/Assets.php:613
318
+ msgid "Set featured image"
319
  msgstr ""
320
 
321
+ #: includes/Assets.php:614 includes/woo-views/html-product-download.php:8
322
+ msgid "Insert file URL"
323
  msgstr ""
324
 
325
+ #: includes/Assets.php:615
326
+ msgid "Add to gallery"
327
  msgstr ""
328
 
329
+ #: includes/Assets.php:616
330
+ msgid "Sorry, this attribute option already exists, Try a different one."
331
  msgstr ""
332
 
333
+ #: includes/Assets.php:617
334
+ msgid ""
335
+ "Warning! This product will not have any variations if this option is not "
336
+ "checked."
337
  msgstr ""
338
 
339
+ #: includes/Assets.php:618
340
+ msgid "Enter a name for the new attribute term:"
341
  msgstr ""
342
 
343
+ #: includes/Assets.php:619
344
+ msgid "Remove this attribute?"
345
  msgstr ""
346
 
347
+ #: includes/Assets.php:627
348
+ msgid ""
349
+ "Are you sure you want to link all variations? This will create a new "
350
+ "variation for each and every possible combination of variation attributes "
351
+ "(max %d per run)."
352
  msgstr ""
353
 
354
+ #: includes/Assets.php:628
355
+ msgid "Enter a value"
356
  msgstr ""
357
 
358
+ #: includes/Assets.php:629
359
+ msgid "Variation menu order (determines position in the list of variations)"
 
360
  msgstr ""
361
 
362
+ #: includes/Assets.php:630
363
+ msgid "Enter a value (fixed or %)"
364
  msgstr ""
365
 
366
+ #: includes/Assets.php:631
367
+ msgid "Are you sure you want to delete all variations? This cannot be undone."
368
  msgstr ""
369
 
370
+ #: includes/Assets.php:632
371
+ msgid "Last warning, are you sure?"
 
 
372
  msgstr ""
373
 
374
+ #: includes/Assets.php:633
375
+ msgid "Choose an image"
376
  msgstr ""
377
 
378
+ #: includes/Assets.php:634
379
+ msgid "Set variation image"
380
  msgstr ""
381
 
382
+ #: includes/Assets.php:635
383
+ msgid "variation added"
384
  msgstr ""
385
 
386
+ #: includes/Assets.php:636
387
+ msgid "variations added"
388
  msgstr ""
389
 
390
+ #: includes/Assets.php:637
391
+ msgid "No variations added"
392
  msgstr ""
393
 
394
+ #: includes/Assets.php:638
395
+ msgid "Are you sure you want to remove this variation?"
396
  msgstr ""
397
 
398
+ #: includes/Assets.php:639
399
+ msgid "Sale start date (YYYY-MM-DD format or leave blank)"
400
  msgstr ""
401
 
402
+ #: includes/Assets.php:640
403
+ msgid "Sale end date (YYYY-MM-DD format or leave blank)"
404
  msgstr ""
405
 
406
+ #: includes/Assets.php:641
407
+ msgid "Save changes before changing page?"
 
 
408
  msgstr ""
409
 
410
+ #: includes/Assets.php:642
411
+ msgid "%qty% variation"
412
  msgstr ""
413
 
414
+ #: includes/Assets.php:643
415
+ msgid "%qty% variations"
 
416
  msgstr ""
417
 
418
+ #: includes/Assets.php:644
419
+ msgid "No Result Found"
420
  msgstr ""
421
 
422
+ #: includes/Assets.php:645
423
+ msgid "Please insert value less than the regular price!"
 
424
  msgstr ""
425
 
426
+ #: includes/Assets.php:648
427
+ msgid "Select and Crop"
 
428
  msgstr ""
429
 
430
+ #: includes/Assets.php:649
431
+ msgid "Choose Image"
432
  msgstr ""
433
 
434
+ #: includes/Assets.php:650
435
+ msgid "Product title is required"
436
  msgstr ""
437
 
438
+ #: includes/Assets.php:651
439
+ msgid "Product category is required"
440
  msgstr ""
441
 
442
+ #: includes/Assets.php:654
443
+ msgid "One result is available, press enter to select it."
444
  msgstr ""
445
 
446
+ #: includes/Assets.php:655
447
+ msgid "%qty% results are available, use up and down arrow keys to navigate."
448
  msgstr ""
449
 
450
+ #: includes/Assets.php:656
451
+ msgid "No matches found"
452
  msgstr ""
453
 
454
+ #: includes/Assets.php:657
455
+ msgid "Loading failed"
 
456
  msgstr ""
457
 
458
+ #: includes/Assets.php:658
459
+ msgid "Please enter 1 or more characters"
460
  msgstr ""
461
 
462
+ #: includes/Assets.php:659
463
+ msgid "Please enter %qty% or more characters"
464
  msgstr ""
465
 
466
+ #: includes/Assets.php:660
467
+ msgid "Please delete 1 character"
468
  msgstr ""
469
 
470
+ #: includes/Assets.php:661
471
+ msgid "Please delete %qty% characters"
472
  msgstr ""
473
 
474
+ #: includes/Assets.php:662
475
+ msgid "You can only select 1 item"
 
 
476
  msgstr ""
477
 
478
+ #: includes/Assets.php:663
479
+ msgid "You can only select %qty% items"
480
  msgstr ""
481
 
482
+ #: includes/Assets.php:664
483
+ msgid "Loading more results&hellip;"
 
 
484
  msgstr ""
485
 
486
+ #: includes/Assets.php:665
487
+ msgid "Searching&hellip;"
 
488
  msgstr ""
489
 
490
+ #: includes/Commission.php:128
491
+ msgid "Product not found"
492
  msgstr ""
493
 
494
+ #: includes/Commission.php:156
495
+ msgid "Order not found"
496
  msgstr ""
497
 
498
+ #: includes/Core.php:143
499
+ msgid "Page %s"
500
  msgstr ""
501
 
502
+ #: includes/Dashboard/Templates/Dashboard.php:101
503
+ #: includes/Order/functions.php:490 includes/admin/SetupWizard.php:506
504
+ #: templates/dashboard/orders-widget.php:26
505
+ msgid "Completed"
506
  msgstr ""
507
 
508
+ #: includes/Dashboard/Templates/Dashboard.php:106
509
+ #: templates/dashboard/orders-widget.php:31
510
+ msgid "Pending"
511
  msgstr ""
512
 
513
+ #: includes/Dashboard/Templates/Dashboard.php:111
514
+ #: includes/Order/functions.php:505 includes/admin/SetupWizard.php:512
515
+ #: templates/dashboard/orders-widget.php:36 templates/orders/listing.php:138
516
+ msgid "Processing"
517
  msgstr ""
518
 
519
+ #: includes/Dashboard/Templates/Dashboard.php:116
520
+ #: includes/Order/functions.php:515 templates/dashboard/orders-widget.php:41
521
+ msgid "Cancelled"
522
  msgstr ""
523
 
524
+ #: includes/Dashboard/Templates/Dashboard.php:121
525
+ #: includes/Order/functions.php:510 templates/dashboard/orders-widget.php:46
526
+ msgid "Refunded"
527
  msgstr ""
528
 
529
+ #: includes/Dashboard/Templates/Dashboard.php:126
530
+ msgid "On Hold"
 
531
  msgstr ""
532
 
533
+ #: includes/Dashboard/Templates/Orders.php:69
534
+ msgid "You have no permission to view this order"
 
535
  msgstr ""
536
 
537
+ #: includes/Dashboard/Templates/Products.php:184
538
+ #: includes/Dashboard/Templates/Settings.php:141
539
+ #: includes/Dashboard/Templates/Settings.php:152
540
+ #: includes/Shortcodes/Dashboard.php:29 templates/global/no-permission.php:53
541
+ msgid "You have no permission to view this page"
542
  msgstr ""
543
 
544
+ #: includes/Dashboard/Templates/Products.php:201
545
+ #: templates/orders/listing.php:11
546
+ msgid "Bulk Actions"
547
  msgstr ""
548
 
549
+ #: includes/Dashboard/Templates/Products.php:202
550
+ #: includes/Product/functions.php:434
551
+ msgid "Delete Permanently"
552
  msgstr ""
553
 
554
+ #: includes/Dashboard/Templates/Products.php:235
555
+ msgid "Details of your product ..."
 
 
 
556
  msgstr ""
557
 
558
+ #: includes/Dashboard/Templates/Products.php:244
559
+ #: includes/Dashboard/Templates/Products.php:392
560
+ #: includes/Product/functions.php:33
561
+ msgid "Please enter product title"
562
  msgstr ""
563
 
564
+ #: includes/Dashboard/Templates/Products.php:251
565
+ #: includes/Dashboard/Templates/Products.php:399
566
+ #: includes/Product/functions.php:38
567
+ msgid "Please select a category"
 
 
568
  msgstr ""
569
 
570
+ #: includes/Dashboard/Templates/Products.php:256
571
+ #: includes/Dashboard/Templates/Products.php:404
572
+ #: includes/Product/functions.php:42
573
+ msgid "Please select AT LEAST ONE category"
574
  msgstr ""
575
 
576
+ #: includes/Dashboard/Templates/Products.php:411
577
+ msgid "No product found!"
578
  msgstr ""
579
 
580
+ #: includes/Dashboard/Templates/Products.php:415
581
+ #: includes/Product/functions.php:66
582
+ msgid "I swear this is not your product!"
583
  msgstr ""
584
 
585
+ #: includes/Dashboard/Templates/Settings.php:60
586
+ msgid "Payment Settings"
587
  msgstr ""
588
 
589
+ #: includes/Dashboard/Templates/Settings.php:81
590
+ msgid ""
591
+ "These are the withdraw methods available for you. Please update your "
592
+ "payment information below to submit withdraw requests and get your store "
593
+ "payments seamlessly."
594
  msgstr ""
595
 
596
+ #: includes/Dashboard/Templates/Settings.php:221
597
+ msgid "Pemission denied social"
598
  msgstr ""
599
 
600
+ #: includes/Dashboard/Templates/Settings.php:233
601
+ #: includes/Dashboard/Templates/Settings.php:245
602
+ msgid "Pemission denied"
603
  msgstr ""
604
 
605
+ #: includes/Dashboard/Templates/Settings.php:263
606
+ msgid "Your information has been saved successfully"
607
  msgstr ""
608
 
609
+ #: includes/Dashboard/Templates/Settings.php:294
610
+ #: includes/Dashboard/Templates/Settings.php:401
611
+ msgid "Store name required"
612
  msgstr ""
613
 
614
+ #: includes/Dashboard/Templates/Settings.php:300
615
+ #: includes/Dashboard/Templates/Settings.php:360
616
+ #: includes/Dashboard/Templates/Settings.php:407
617
+ msgid "Store type required"
618
  msgstr ""
619
 
620
+ #: includes/Dashboard/Templates/Settings.php:308
621
+ #: includes/Dashboard/Templates/Settings.php:368
622
+ #: includes/Dashboard/Templates/Settings.php:415
623
+ #: includes/Dashboard/Templates/Settings.php:452
624
+ msgid "Invalid email"
625
  msgstr ""
626
 
627
+ #: includes/Dashboard/Templates/Settings.php:327
628
+ msgid "Address field for %s is required"
 
 
 
629
  msgstr ""
630
 
631
+ #: includes/Dashboard/Templates/Settings.php:604
632
+ msgid "Book"
633
  msgstr ""
634
 
635
+ #: includes/Dashboard/Templates/Settings.php:605
636
+ msgid "Dress"
 
637
  msgstr ""
638
 
639
+ #: includes/Dashboard/Templates/Settings.php:606
640
+ msgid "Electronic"
641
  msgstr ""
642
 
643
+ #: includes/Dashboard/Templates/Withdraw.php:114
644
+ msgid "Missing withdraw id."
645
  msgstr ""
646
 
647
+ #: includes/Dashboard/Templates/Withdraw.php:125
648
+ #: templates/global/seller-warning.php:12
649
+ msgid "Your account is not enabled for selling, please contact the admin"
650
  msgstr ""
651
 
652
+ #: includes/Dashboard/Templates/Withdraw.php:173
653
+ msgid "withdraw_amount is required"
654
  msgstr ""
655
 
656
+ #: includes/Dashboard/Templates/Withdraw.php:177
657
+ msgid "withdraw_method is required"
658
  msgstr ""
659
 
660
+ #: includes/Dashboard/Templates/Withdraw.php:311
661
+ msgid "Current Balance: %s "
 
662
  msgstr ""
663
 
664
+ #: includes/Dashboard/Templates/Withdraw.php:314
665
+ msgid "<br>Minimum Withdraw amount: %s "
 
 
 
666
  msgstr ""
667
 
668
+ #: includes/Dashboard/Templates/Withdraw.php:318
669
+ msgid "<br>Withdraw Threshold: %d days "
 
 
 
670
  msgstr ""
671
 
672
+ #: includes/Dashboard/Templates/Withdraw.php:375
673
+ msgid "Your request has been cancelled successfully!"
 
674
  msgstr ""
675
 
676
+ #: includes/Dashboard/Templates/Withdraw.php:379
677
+ msgid "Your request has been received successfully and being reviewed!"
678
  msgstr ""
679
 
680
+ #: includes/Dashboard/Templates/Withdraw.php:383
681
+ msgid "Unknown error!"
682
  msgstr ""
683
 
684
+ #: includes/Dashboard/Templates/Withdraw.php:419
685
+ msgid ""
686
+ "You have already withdrawn %s. This amount will be deducted from your "
687
+ "balance."
688
  msgstr ""
689
 
690
+ #: includes/Dashboard/Templates/Withdraw.php:428
691
+ msgid "You already have pending withdraw request(s)."
692
  msgstr ""
693
 
694
+ #: includes/Dashboard/Templates/Withdraw.php:428
695
+ msgid ""
696
+ "Please submit your request after approval or cancellation of your previous "
697
+ "request."
698
  msgstr ""
699
 
700
+ #: includes/Dashboard/Templates/Withdraw.php:438
701
+ msgid "You don't have sufficient balance for a withdraw request!"
702
  msgstr ""
703
 
704
+ #: includes/Dashboard/Templates/Withdraw.php:498
705
+ #: includes/Dashboard/Templates/Withdraw.php:524
706
+ msgid "Sorry, no transactions were found!"
707
  msgstr ""
708
 
709
+ #: includes/Install/Installer.php:93 includes/admin/Hooks.php:78
710
+ #: includes/admin/Hooks.php:84 includes/admin/Hooks.php:367
711
+ #: includes/admin/Hooks.php:384 includes/admin/Settings.php:340
712
+ #: includes/admin/Settings.php:348 includes/admin/SetupWizard.php:319
713
+ #: includes/wc-template.php:17 includes/wc-template.php:150
714
+ #: includes/wc-template.php:292 templates/my-orders.php:31
715
+ msgid "Vendor"
716
  msgstr ""
717
 
718
+ #: includes/Install/Installer.php:157 includes/admin/AdminBar.php:47
719
+ #: includes/admin/Menu.php:42 includes/admin/Settings.php:411
720
+ #: includes/template-tags.php:323 src/admin/pages/Dashboard.vue:3
721
+ msgid "Dashboard"
722
  msgstr ""
723
 
724
+ #: includes/Install/Installer.php:163
725
+ msgid "Store List"
726
  msgstr ""
727
 
728
+ #: includes/Install/Installer.php:169 includes/admin/Settings.php:419
729
+ #: templates/global/header-menu.php:46
730
+ msgid "My Orders"
 
731
  msgstr ""
732
 
733
+ #: includes/Order/Hooks.php:140
734
+ msgid "Mark parent order completed when all child orders are completed."
 
 
 
735
  msgstr ""
736
 
737
+ #: includes/Order/Hooks.php:182
738
+ msgid "A coupon must be restricted with a vendor product."
739
  msgstr ""
740
 
741
+ #: includes/Order/Hooks.php:237
742
+ #. translators: %s item name.
743
+ msgid "Unable to restore stock for item %s."
744
  msgstr ""
745
 
746
+ #: includes/Order/functions.php:495
747
+ msgid "Pending Payment"
 
 
 
 
748
  msgstr ""
749
 
750
+ #: includes/Order/functions.php:500 includes/admin/SetupWizard.php:518
751
+ msgid "On-hold"
 
 
 
752
  msgstr ""
753
 
754
+ #: includes/Order/functions.php:520
755
+ msgid "Failed"
756
  msgstr ""
757
 
758
+ #: includes/Order/functions.php:761
759
+ msgid "Order No"
760
  msgstr ""
761
 
762
+ #: includes/Order/functions.php:762 templates/orders/details.php:21
763
+ msgid "Order Items"
 
764
  msgstr ""
765
 
766
+ #: includes/Order/functions.php:763
767
+ msgid "Shipping method"
768
  msgstr ""
769
 
770
+ #: includes/Order/functions.php:764
771
+ msgid "Shipping Cost"
772
  msgstr ""
773
 
774
+ #: includes/Order/functions.php:765
775
+ msgid "Payment method"
 
776
  msgstr ""
777
 
778
+ #: includes/Order/functions.php:766 templates/orders/listing.php:52
779
+ #: templates/orders/listing.php:77
780
+ msgid "Order Total"
781
  msgstr ""
782
 
783
+ #: includes/Order/functions.php:767 includes/REST/OrderController.php:99
784
+ msgid "Order Status"
785
  msgstr ""
786
 
787
+ #: includes/Order/functions.php:768
788
+ msgid "Order Date"
789
  msgstr ""
790
 
791
+ #: includes/Order/functions.php:769
792
+ msgid "Billing Company"
793
  msgstr ""
794
 
795
+ #: includes/Order/functions.php:770
796
+ msgid "Billing First Name"
797
  msgstr ""
798
 
799
+ #: includes/Order/functions.php:771
800
+ msgid "Billing Last Name"
801
  msgstr ""
802
 
803
+ #: includes/Order/functions.php:772
804
+ msgid "Billing Full Name"
805
  msgstr ""
806
 
807
+ #: includes/Order/functions.php:773
808
+ msgid "Billing Email"
809
  msgstr ""
810
 
811
+ #: includes/Order/functions.php:774
812
+ msgid "Billing Phone"
813
  msgstr ""
814
 
815
+ #: includes/Order/functions.php:775
816
+ msgid "Billing Address 1"
 
817
  msgstr ""
818
 
819
+ #: includes/Order/functions.php:776
820
+ msgid "Billing Address 2"
 
821
  msgstr ""
822
 
823
+ #: includes/Order/functions.php:777
824
+ msgid "Billing City"
 
 
 
 
825
  msgstr ""
826
 
827
+ #: includes/Order/functions.php:778
828
+ msgid "Billing State"
 
829
  msgstr ""
830
 
831
+ #: includes/Order/functions.php:779
832
+ msgid "Billing Postcode"
 
 
833
  msgstr ""
834
 
835
+ #: includes/Order/functions.php:780
836
+ msgid "Billing Country"
837
  msgstr ""
838
 
839
+ #: includes/Order/functions.php:781
840
+ msgid "Shipping Company"
 
 
841
  msgstr ""
842
 
843
+ #: includes/Order/functions.php:782
844
+ msgid "Shipping First Name"
845
  msgstr ""
846
 
847
+ #: includes/Order/functions.php:783
848
+ msgid "Shipping Last Name"
849
  msgstr ""
850
 
851
+ #: includes/Order/functions.php:784
852
+ msgid "Shipping Full Name"
853
  msgstr ""
854
 
855
+ #: includes/Order/functions.php:785
856
+ msgid "Shipping Address 1"
857
  msgstr ""
858
 
859
+ #: includes/Order/functions.php:786
860
+ msgid "Shipping Address 2"
861
  msgstr ""
862
 
863
+ #: includes/Order/functions.php:787
864
+ msgid "Shipping City"
 
 
 
 
 
865
  msgstr ""
866
 
867
+ #: includes/Order/functions.php:788
868
+ msgid "Shipping State"
 
 
869
  msgstr ""
870
 
871
+ #: includes/Order/functions.php:789
872
+ msgid "Shipping Postcode"
 
873
  msgstr ""
874
 
875
+ #: includes/Order/functions.php:790
876
+ msgid "Shipping Country"
 
 
 
877
  msgstr ""
878
 
879
+ #: includes/Order/functions.php:791
880
+ msgid "Customer IP"
 
 
881
  msgstr ""
882
 
883
+ #: includes/Order/functions.php:792
884
+ msgid "Customer Note"
 
 
 
885
  msgstr ""
886
 
887
+ #. Plugin Name of the plugin/theme
888
+ msgid "Dokan"
889
  msgstr ""
890
 
891
+ #: includes/Privacy.php:33 includes/Privacy.php:36 includes/Privacy.php:152
892
+ msgid "Vendor Data"
893
  msgstr ""
894
 
895
+ #: includes/Privacy.php:51
896
+ msgid ""
897
+ "This sample privacy policy includes the basics around what personal data "
898
+ "your multivendor store may be collecting, storing and sharing, as well as "
899
+ "who may have access to that data. Depending on what settings are enabled "
900
+ "and which additional plugins are used, the specific information shared by "
901
+ "your store will vary. We recommend consulting with a lawyer when deciding "
902
+ "what information to disclose on your privacy policy."
903
  msgstr ""
904
 
905
+ #: includes/Privacy.php:54
906
+ msgid "We collect information about you during the checkout process on our store."
907
  msgstr ""
908
 
909
+ #: includes/Privacy.php:55
910
+ msgid "What we collect and store"
911
  msgstr ""
912
 
913
+ #: includes/Privacy.php:56
914
+ msgid "While you visit our site, we’ll track:"
915
  msgstr ""
916
 
917
+ #: includes/Privacy.php:58
918
+ msgid ""
919
+ "Stores you’ve viewed: we’ll use this to, for example, show you vendor "
920
+ "stores you’ve recently viewed"
921
  msgstr ""
922
 
923
+ #: includes/Privacy.php:59
924
+ msgid ""
925
+ "Products you’ve viewed: we’ll use this to, for example, show you products "
926
+ "you’ve recently viewed"
927
  msgstr ""
928
 
929
+ #: includes/Privacy.php:60
930
+ msgid ""
931
+ "Location, IP address and browser type: we’ll use this for purposes like "
932
+ "estimating taxes and shipping"
933
  msgstr ""
934
 
935
+ #: includes/Privacy.php:61
936
+ msgid ""
937
+ "Shipping address: we’ll ask you to enter this so we can, for instance, "
938
+ "estimate shipping before you place an order, and send you the order!"
939
  msgstr ""
940
 
941
+ #: includes/Privacy.php:63
942
+ msgid ""
943
+ "We’ll also use cookies to keep track of cart contents while you’re browsing "
944
+ "our site."
945
  msgstr ""
946
 
947
+ #: includes/Privacy.php:65
948
+ msgid ""
949
+ "Note: you may want to further detail your cookie policy, and link to that "
950
+ "section from here."
951
  msgstr ""
952
 
953
+ #: includes/Privacy.php:67
954
+ msgid ""
955
+ "When you purchase from us, we’ll ask you to provide information including "
956
+ "your name, billing address, shipping address, email address, phone number, "
957
+ "credit card/payment details and optional account information like username "
958
+ "and password. We’ll use this information for purposes, such as, to:"
959
  msgstr ""
960
 
961
+ #: includes/Privacy.php:69
962
+ msgid "Send you information about your account and order"
 
 
 
963
  msgstr ""
964
 
965
+ #: includes/Privacy.php:70
966
+ msgid "Respond to your requests, including refunds and complaints"
967
  msgstr ""
968
 
969
+ #: includes/Privacy.php:71
970
+ msgid "Process payments and prevent fraud"
971
  msgstr ""
972
 
973
+ #: includes/Privacy.php:72
974
+ msgid "Set up your account for our store"
975
  msgstr ""
976
 
977
+ #: includes/Privacy.php:73
978
+ msgid "Comply with any legal obligations we have, such as calculating taxes"
979
  msgstr ""
980
 
981
+ #: includes/Privacy.php:74
982
+ msgid "Improve our store offerings"
983
  msgstr ""
984
 
985
+ #: includes/Privacy.php:75
986
+ msgid "Send you marketing messages, if you choose to receive them"
987
  msgstr ""
988
 
989
+ #: includes/Privacy.php:77
990
+ msgid ""
991
+ "If you create an account, we will store your name, address, email and phone "
992
+ "number, which will be used to populate the checkout for future orders."
993
  msgstr ""
994
 
995
+ #: includes/Privacy.php:78
996
+ msgid ""
997
+ "We generally store information about you for as long as we need the "
998
+ "information for the purposes for which we collect and use it, and we are "
999
+ "not legally required to continue to keep it. For example, we will store "
1000
+ "order information for XXX years for tax and accounting purposes. This "
1001
+ "includes your name, email address and billing and shipping addresses."
1002
  msgstr ""
1003
 
1004
+ #: includes/Privacy.php:79
1005
+ msgid "We will also store comments or reviews, if you choose to leave them."
 
 
 
 
1006
  msgstr ""
1007
 
1008
+ #: includes/Privacy.php:80
1009
+ msgid "Who on our team has access"
1010
  msgstr ""
1011
 
1012
+ #: includes/Privacy.php:81
1013
+ msgid ""
1014
+ "Members of our team have access to the information you provide us. For "
1015
+ "example, both Administrators and Shop Managers can access:"
1016
  msgstr ""
1017
 
1018
+ #: includes/Privacy.php:83
1019
+ msgid ""
1020
+ "Order information like what was purchased, when it was purchased and where "
1021
+ "it should be sent, and"
1022
  msgstr ""
1023
 
1024
+ #: includes/Privacy.php:84
1025
+ msgid ""
1026
+ "Customer information like your name, email address, and billing and "
1027
+ "shipping information."
1028
  msgstr ""
1029
 
1030
+ #: includes/Privacy.php:86
1031
+ msgid ""
1032
+ "Our team members have access to this information to help fulfill orders, "
1033
+ "process refunds and support you."
1034
  msgstr ""
1035
 
1036
+ #: includes/Privacy.php:87
1037
+ msgid "What we share with others"
1038
  msgstr ""
1039
 
1040
+ #: includes/Privacy.php:89
1041
+ msgid ""
1042
+ "In this section you should list who you’re sharing data with, and for what "
1043
+ "purpose. This could include, but may not be limited to, analytics, "
1044
+ "marketing, payment gateways, shipping providers, and third party embeds."
1045
  msgstr ""
1046
 
1047
+ #: includes/Privacy.php:91
1048
+ msgid ""
1049
+ "We share information with third parties who help us provide our orders and "
1050
+ "store services to you; for example --"
1051
  msgstr ""
1052
 
1053
+ #: includes/Privacy.php:92
1054
+ msgid "Payments"
1055
  msgstr ""
1056
 
1057
+ #: includes/Privacy.php:94
1058
+ msgid ""
1059
+ "In this subsection you should list which third party payment processors "
1060
+ "you’re using to take payments on your store since these may handle customer "
1061
+ "data. We’ve included PayPal as an example, but you should remove this if "
1062
+ "you’re not using PayPal."
1063
  msgstr ""
1064
 
1065
+ #: includes/Privacy.php:96
1066
+ msgid ""
1067
+ "We accept payments through PayPal. When processing payments, some of your "
1068
+ "data will be passed to PayPal, including information required to process or "
1069
+ "support the payment, such as the purchase total and billing information."
1070
  msgstr ""
1071
 
1072
+ #: includes/Privacy.php:97
1073
+ msgid ""
1074
+ "Please see the <a "
1075
+ "href=\"https://www.paypal.com/us/webapps/mpp/ua/privacy-full\">PayPal "
1076
+ "Privacy Policy</a> for more details."
1077
  msgstr ""
1078
 
1079
+ #: includes/Privacy.php:98
1080
+ msgid "Modules"
 
1081
  msgstr ""
1082
 
1083
+ #: includes/Privacy.php:100
1084
+ msgid ""
1085
+ "Dokan has premium modules that perform specific and special purpose tasks. "
1086
+ "Each of the modules collect additional information. Also third party "
1087
+ "extensions and integrations collect data that is applicable to the each of "
1088
+ "their individual privacy policy."
1089
  msgstr ""
1090
 
1091
+ #: includes/Privacy.php:180 src/admin/pages/VendorAccountFields.vue:43
1092
+ #: src/admin/pages/VendorAccountFields.vue:49
1093
+ #: templates/settings/store-form.php:116
1094
+ msgid "Store Name"
1095
  msgstr ""
1096
 
1097
+ #: includes/Privacy.php:181
1098
+ msgid "Social"
1099
  msgstr ""
1100
 
1101
+ #: includes/Privacy.php:182
1102
+ msgid "Phone"
 
1103
  msgstr ""
1104
 
1105
+ #: includes/Privacy.php:183 src/admin/components/Mapbox.vue:8
1106
+ #: src/admin/pages/AddVendor.vue:73 src/admin/pages/VendorAddressFields.vue:4
1107
+ #: templates/admin-setup-wizard/step-store-wc-fields.php:33
1108
+ #: templates/maps/mapbox-with-search.php:5
1109
+ #: templates/settings/address-form.php:23
1110
+ msgid "Address"
1111
  msgstr ""
1112
 
1113
+ #: includes/Privacy.php:184
1114
+ msgid "GEO Locations"
 
 
1115
  msgstr ""
1116
 
1117
+ #: includes/Privacy.php:185
1118
+ msgid "Banner Url"
1119
  msgstr ""
1120
 
1121
+ #: includes/Privacy.php:186
1122
+ msgid "Gravatar Url"
 
 
 
 
 
 
 
 
 
1123
  msgstr ""
1124
 
1125
+ #: includes/Privacy.php:201 includes/functions.php:2333
1126
+ #: src/admin/pages/VendorSocialFields.vue:11
1127
+ msgid "Facebook"
1128
  msgstr ""
1129
 
1130
+ #: includes/Privacy.php:202 includes/functions.php:2337
1131
+ #: src/admin/pages/VendorSocialFields.vue:21
1132
+ msgid "Google Plus"
1133
  msgstr ""
1134
 
1135
+ #: includes/Privacy.php:203 includes/functions.php:2341
1136
+ #: src/admin/pages/VendorSocialFields.vue:26
1137
+ msgid "Twitter"
1138
  msgstr ""
1139
 
1140
+ #: includes/Privacy.php:204 includes/functions.php:2345
1141
+ #: src/admin/pages/VendorSocialFields.vue:41
1142
+ msgid "Pinterest"
1143
  msgstr ""
1144
 
1145
+ #: includes/Privacy.php:205 src/admin/pages/VendorSocialFields.vue:36
1146
+ msgid "Linkedin"
1147
  msgstr ""
1148
 
1149
+ #: includes/Privacy.php:206 includes/functions.php:2353
1150
+ #: src/admin/pages/VendorSocialFields.vue:31
1151
+ msgid "Youtube"
1152
  msgstr ""
1153
 
1154
+ #: includes/Privacy.php:207 includes/functions.php:2357
1155
+ #: src/admin/pages/VendorSocialFields.vue:46
1156
+ msgid "Instagram"
1157
  msgstr ""
1158
 
1159
+ #: includes/Privacy.php:208 includes/functions.php:2361
1160
+ #: src/admin/pages/VendorSocialFields.vue:16
1161
+ msgid "Flickr"
1162
  msgstr ""
1163
 
1164
+ #: includes/Privacy.php:223 includes/admin/UserProfile.php:149
1165
+ msgid "Address 1"
1166
  msgstr ""
1167
 
1168
+ #: includes/Privacy.php:224 includes/admin/UserProfile.php:156
1169
+ msgid "Address 2"
1170
  msgstr ""
1171
 
1172
+ #: includes/Privacy.php:225 includes/Vendor/SetupWizard.php:203
1173
+ #: src/admin/pages/VendorAddressFields.vue:21
1174
+ #: src/admin/pages/VendorAddressFields.vue:22
1175
+ #: templates/admin-setup-wizard/step-store-wc-fields.php:51
1176
+ #: templates/settings/address-form.php:57
1177
+ msgid "City"
1178
  msgstr ""
1179
 
1180
+ #: includes/Privacy.php:226
1181
+ msgid "Postal Code"
1182
  msgstr ""
1183
 
1184
+ #: includes/Privacy.php:227 includes/Vendor/SetupWizard.php:213
1185
+ #: includes/admin/UserProfile.php:88 src/admin/pages/VendorAddressFields.vue:31
1186
+ #: templates/admin-setup-wizard/step-store-wc-fields.php:24
1187
+ msgid "Country"
1188
  msgstr ""
1189
 
1190
+ #: includes/Privacy.php:228 includes/Vendor/SetupWizard.php:221
1191
+ #: src/admin/pages/VendorAddressFields.vue:36
1192
+ #: src/admin/pages/VendorAddressFields.vue:38
1193
+ #: templates/admin-setup-wizard/step-store-wc-fields.php:58
1194
+ #: templates/admin-setup-wizard/step-store-wc-fields.php:59
1195
+ msgid "State"
1196
  msgstr ""
1197
 
1198
+ #: includes/Privacy.php:278
1199
+ msgid "Bank Details"
1200
  msgstr ""
1201
 
1202
+ #: includes/Privacy.php:280 src/admin/pages/VendorPaymentFields.vue:10
1203
+ #: src/admin/pages/VendorPaymentFields.vue:11
1204
+ msgid "Account Name"
1205
  msgstr ""
1206
 
1207
+ #: includes/Privacy.php:281 src/admin/pages/VendorPaymentFields.vue:15
1208
+ msgid "Account Number"
1209
  msgstr ""
1210
 
1211
+ #: includes/Privacy.php:282 src/admin/pages/VendorPaymentFields.vue:20
1212
+ #: src/admin/pages/VendorPaymentFields.vue:21
1213
+ msgid "Bank Name"
1214
  msgstr ""
1215
 
1216
+ #: includes/Privacy.php:283 src/admin/pages/VendorPaymentFields.vue:25
1217
+ #: src/admin/pages/VendorPaymentFields.vue:26
1218
+ msgid "Bank Address"
1219
  msgstr ""
1220
 
1221
+ #: includes/Privacy.php:284 includes/admin/UserProfile.php:275
1222
+ #: src/admin/pages/VendorPaymentFields.vue:30
1223
+ msgid "Routing Number"
1224
  msgstr ""
1225
 
1226
+ #: includes/Privacy.php:285 includes/Withdraw/functions.php:203
1227
+ #: src/admin/pages/VendorPaymentFields.vue:35
1228
+ msgid "IBAN"
1229
  msgstr ""
1230
 
1231
+ #: includes/Privacy.php:286
1232
+ msgid "Swift Code"
1233
  msgstr ""
1234
 
1235
+ #: includes/Privacy.php:297 src/admin/pages/VendorPaymentFields.vue:55
1236
+ msgid "PayPal Email"
1237
  msgstr ""
1238
 
1239
+ #: includes/Privacy.php:302
1240
+ msgid "Skrill Email"
1241
  msgstr ""
1242
 
1243
+ #: includes/Privacy.php:373
1244
+ msgid "Vendor %s data is removed."
1245
  msgstr ""
1246
 
1247
+ #: includes/Product/Manager.php:392
1248
+ msgid "No product ID found for updating"
1249
  msgstr ""
1250
 
1251
+ #: includes/Product/functions.php:153
1252
+ msgid ""
1253
+ "Before you can add a variation you need to add some variation attributes on "
1254
+ "the <strong>Attributes</strong> section"
1255
  msgstr ""
1256
 
1257
+ #: includes/Product/functions.php:163
1258
+ msgid "Add variation"
1259
  msgstr ""
1260
 
1261
+ #: includes/Product/functions.php:164
1262
+ msgid "Create variations from all attributes"
1263
  msgstr ""
1264
 
1265
+ #: includes/Product/functions.php:165
1266
+ msgid "Delete all variations"
1267
  msgstr ""
1268
 
1269
+ #: includes/Product/functions.php:166 templates/my-orders.php:29
1270
+ #: templates/orders/listing.php:53 templates/orders/listing.php:80
1271
+ #: templates/products/products-listing-row.php:53
1272
+ #: templates/products/products-listing.php:89 templates/sub-orders.php:27
1273
+ #: templates/withdraw/pending-request-listing.php:18
1274
+ msgid "Status"
1275
  msgstr ""
1276
 
1277
+ #: includes/Product/functions.php:167
1278
+ msgid "Toggle &quot;Enabled&quot;"
1279
  msgstr ""
1280
 
1281
+ #: includes/Product/functions.php:168
1282
+ msgid "Toggle &quot;Downloadable&quot;"
1283
  msgstr ""
1284
 
1285
+ #: includes/Product/functions.php:169
1286
+ msgid "Toggle &quot;Virtual&quot;"
1287
  msgstr ""
1288
 
1289
+ #: includes/Product/functions.php:171
1290
+ msgid "Pricing"
1291
  msgstr ""
1292
 
1293
+ #: includes/Product/functions.php:172
1294
+ msgid "Set regular prices"
1295
  msgstr ""
1296
 
1297
+ #: includes/Product/functions.php:173
1298
+ msgid "Increase regular prices (fixed amount or percentage)"
1299
  msgstr ""
1300
 
1301
+ #: includes/Product/functions.php:174
1302
+ msgid "Decrease regular prices (fixed amount or percentage)"
1303
  msgstr ""
1304
 
1305
+ #: includes/Product/functions.php:175
1306
+ msgid "Set sale prices"
1307
  msgstr ""
1308
 
1309
+ #: includes/Product/functions.php:176
1310
+ msgid "Increase sale prices (fixed amount or percentage)"
1311
  msgstr ""
1312
 
1313
+ #: includes/Product/functions.php:177
1314
+ msgid "Decrease sale prices (fixed amount or percentage)"
1315
  msgstr ""
1316
 
1317
+ #: includes/Product/functions.php:178
1318
+ msgid "Set scheduled sale dates"
1319
  msgstr ""
1320
 
1321
+ #: includes/Product/functions.php:180 templates/products/inventory.php:3
1322
+ msgid "Inventory"
1323
  msgstr ""
1324
 
1325
+ #: includes/Product/functions.php:181
1326
+ msgid "Toggle &quot;Manage stock&quot;"
1327
  msgstr ""
1328
 
1329
+ #: includes/Product/functions.php:182
1330
+ #: templates/products/products-listing-row.php:68
1331
+ #: templates/products/products-listing.php:94
1332
+ msgid "Stock"
1333
  msgstr ""
1334
 
1335
+ #: includes/Product/functions.php:184 includes/admin/SetupWizardNoWC.php:183
1336
+ #: includes/admin/SetupWizardWCAdmin.php:84
1337
+ msgid "Shipping"
 
1338
  msgstr ""
1339
 
1340
+ #: includes/Product/functions.php:185
1341
+ msgid "Length"
1342
  msgstr ""
1343
 
1344
+ #: includes/Product/functions.php:186
1345
+ msgid "Width"
1346
  msgstr ""
1347
 
1348
+ #: includes/Product/functions.php:187
1349
+ msgid "Height"
 
 
 
1350
  msgstr ""
1351
 
1352
+ #: includes/Product/functions.php:188
1353
+ msgid "Weight"
1354
  msgstr ""
1355
 
1356
+ #: includes/Product/functions.php:190
1357
+ msgid "Downloadable products"
1358
  msgstr ""
1359
 
1360
+ #: includes/Product/functions.php:191
1361
+ msgid "Download limit"
1362
  msgstr ""
1363
 
1364
+ #: includes/Product/functions.php:192
1365
+ msgid "Download expiry"
1366
  msgstr ""
1367
 
1368
+ #: includes/Product/functions.php:196
1369
+ msgid "Go"
1370
  msgstr ""
1371
 
1372
+ #: includes/Product/functions.php:203
1373
+ msgid ""
1374
+ "Default Form Values: These are the attributes that will be pre-selected on "
1375
+ "the frontend."
1376
  msgstr ""
1377
 
1378
+ #: includes/Product/functions.php:221
1379
+ msgid "No default"
1380
  msgstr ""
1381
 
1382
+ #: includes/Product/functions.php:261
1383
+ msgid "Save Variations"
1384
  msgstr ""
1385
 
1386
+ #: includes/Product/functions.php:262 templates/my-orders.php:83
1387
+ #: templates/orders/details.php:199
1388
+ #: templates/products/new-product-single.php:217
1389
+ #: templates/products/new-product.php:167
1390
+ #: templates/products/tmpl-add-product-popup.php:68
1391
+ #: templates/store-lists-filter.php:81
1392
+ #: templates/withdraw/pending-request-listing.php:17
1393
+ #: templates/withdraw/pending-request-listing.php:35
1394
+ #: vendor/appsero/client/src/Insights.php:764
1395
+ msgid "Cancel"
1396
  msgstr ""
1397
 
1398
+ #: includes/Product/functions.php:267
1399
+ msgid "%s item"
1400
+ msgid_plural "%s items"
1401
+ msgstr[0] ""
1402
+ msgstr[1] ""
1403
+
1404
+ #: includes/Product/functions.php:272
1405
+ msgid "Expand"
1406
  msgstr ""
1407
 
1408
+ #: includes/Product/functions.php:272 src/admin/components/ColorPicker.vue:31
1409
+ #: src/upgrade/App.vue:49 templates/orders/details.php:353
1410
+ #: templates/settings/store-form.php:256
1411
+ msgid "Close"
1412
  msgstr ""
1413
 
1414
+ #: includes/Product/functions.php:275
1415
+ msgid "Go to the first page"
1416
  msgstr ""
1417
 
1418
+ #: includes/Product/functions.php:276
1419
+ msgid "Go to the previous page"
1420
  msgstr ""
1421
 
1422
+ #: includes/Product/functions.php:278
1423
+ msgid "Select Page"
1424
  msgstr ""
1425
 
1426
+ #: includes/Product/functions.php:279
1427
+ msgid "Current page"
1428
  msgstr ""
1429
 
1430
+ #: includes/Product/functions.php:286
1431
+ msgid "Go to the next page"
1432
  msgstr ""
1433
 
1434
+ #: includes/Product/functions.php:287
1435
+ msgid "Go to the last page"
1436
  msgstr ""
1437
 
1438
+ #: includes/Product/functions.php:310
1439
+ msgid "Visible"
1440
  msgstr ""
1441
 
1442
+ #: includes/Product/functions.php:311
1443
+ msgid "Catalog"
1444
  msgstr ""
1445
 
1446
+ #: includes/Product/functions.php:312 templates/products/listing-filter.php:56
1447
+ msgid "Search"
1448
  msgstr ""
1449
 
1450
+ #: includes/Product/functions.php:313
1451
+ #: templates/products/new-product-single.php:119
1452
+ msgid "Hidden"
1453
  msgstr ""
1454
 
1455
+ #: includes/Product/functions.php:426
1456
+ msgid "Edit"
1457
  msgstr ""
1458
 
1459
+ #: includes/Product/functions.php:443 templates/my-orders.php:88
1460
+ #: templates/orders/listing.php:157 templates/sub-orders.php:59
1461
+ msgid "View"
1462
  msgstr ""
1463
 
1464
+ #: includes/REST/AdminDashboardController.php:40
1465
+ msgid "Number of feed item"
1466
  msgstr ""
1467
 
1468
+ #: includes/REST/AdminDashboardController.php:46
1469
+ msgid "Flag for showing summary"
1470
  msgstr ""
1471
 
1472
+ #: includes/REST/AdminDashboardController.php:52
1473
+ msgid "Flag for showing author"
1474
  msgstr ""
1475
 
1476
+ #: includes/REST/AdminDashboardController.php:58
1477
+ msgid "Flag for showing date"
1478
  msgstr ""
1479
 
1480
+ #: includes/REST/AdminDashboardController.php:94
1481
+ msgid ""
1482
+ "An error has occurred, which probably means the feed is down. Try again "
1483
+ "later."
1484
  msgstr ""
1485
 
1486
+ #: includes/REST/AdminDashboardController.php:109
1487
+ msgid "Untitled"
1488
  msgstr ""
1489
 
1490
+ #: includes/REST/AdminReportController.php:134 includes/admin/functions.php:211
1491
+ #: includes/admin/functions.php:485
1492
+ msgid "Total Sales"
1493
  msgstr ""
1494
 
1495
+ #: includes/REST/AdminReportController.php:138
1496
+ #: templates/dashboard/orders-widget.php:21
1497
+ #: templates/dashboard/products-widget.php:26 templates/my-orders.php:30
1498
+ #: templates/orders/order-fee-html.php:17 templates/sub-orders.php:28
1499
+ msgid "Total"
1500
  msgstr ""
1501
 
1502
+ #: includes/REST/AdminReportController.php:142 includes/admin/functions.php:221
1503
+ #: includes/admin/functions.php:495 includes/reports.php:359
1504
+ msgid "Number of orders"
1505
  msgstr ""
1506
 
1507
+ #: includes/REST/AdminReportController.php:146 includes/template-tags.php:337
1508
+ #: templates/dashboard/orders-widget.php:15
1509
+ msgid "Orders"
1510
  msgstr ""
1511
 
1512
+ #: includes/REST/AdminReportController.php:149 includes/admin/functions.php:231
1513
+ #: includes/admin/functions.php:505
1514
+ msgid "Commision"
1515
  msgstr ""
1516
 
1517
+ #: includes/REST/OrderController.php:82 includes/REST/OrderController.php:111
1518
+ #: includes/REST/OrderController.php:138 includes/REST/ProductController.php:58
1519
+ #: includes/REST/ProductController.php:80
1520
+ #: includes/REST/ProductController.php:121 includes/REST/StoreController.php:57
1521
+ #: includes/REST/StoreController.php:87 includes/REST/StoreController.php:101
1522
+ #: includes/REST/StoreController.php:122 includes/REST/StoreController.php:153
1523
+ #: includes/REST/WithdrawController.php:63
1524
+ #: includes/REST/WithdrawController.php:651
1525
+ msgid "Unique identifier for the object."
1526
  msgstr ""
1527
 
1528
+ #: includes/REST/OrderController.php:128
1529
+ msgid "Order note content."
1530
  msgstr ""
1531
 
1532
+ #: includes/REST/OrderController.php:142
1533
+ msgid "Unique identifier for the note object."
 
1534
  msgstr ""
1535
 
1536
+ #: includes/REST/OrderController.php:194
1537
+ #: includes/REST/ProductController.php:252
1538
+ #: includes/REST/ProductController.php:289
1539
+ msgid "No seller found"
1540
  msgstr ""
1541
 
1542
+ #: includes/REST/OrderController.php:206
1543
+ #: includes/REST/ProductController.php:301
1544
+ #: includes/REST/ProductController.php:326
1545
+ msgid "Sorry, you have no permission to do this. Since it's not your product."
1546
  msgstr ""
1547
 
1548
+ #: includes/REST/OrderController.php:331
1549
+ msgid "Invalid order ID"
1550
  msgstr ""
1551
 
1552
+ #: includes/REST/OrderController.php:337
1553
+ msgid "Order status must me required"
1554
  msgstr ""
1555
 
1556
+ #: includes/REST/OrderController.php:343
1557
+ msgid "Order status not valid"
 
 
 
1558
  msgstr ""
1559
 
1560
+ #: includes/REST/OrderController.php:351
1561
+ msgid "Invalid order"
 
1562
  msgstr ""
1563
 
1564
+ #: includes/REST/OrderController.php:508 includes/REST/OrderController.php:613
1565
+ #: includes/REST/OrderController.php:644
1566
+ msgid "You have no permission to view this notes"
1567
  msgstr ""
1568
 
1569
+ #: includes/REST/OrderController.php:512 includes/REST/OrderController.php:575
1570
+ #: includes/REST/OrderController.php:617 includes/REST/OrderController.php:648
1571
+ msgid "Invalid order ID."
1572
  msgstr ""
1573
 
1574
+ #: includes/REST/OrderController.php:564
1575
+ #: includes/REST/ProductController.php:256
1576
+ msgid "Cannot create existing %s."
 
1577
  msgstr ""
1578
 
1579
+ #: includes/REST/OrderController.php:571
1580
+ msgid "You have no permission to create this notes"
 
 
1581
  msgstr ""
1582
 
1583
+ #: includes/REST/OrderController.php:582
1584
+ msgid "Cannot create order note, please try again."
 
 
1585
  msgstr ""
1586
 
1587
+ #: includes/REST/OrderController.php:623 includes/REST/OrderController.php:654
1588
+ msgid "Invalid resource ID."
1589
  msgstr ""
1590
 
1591
+ #: includes/REST/OrderController.php:843
1592
+ #: includes/REST/ProductController.php:1692
1593
+ msgid "Unique identifier for the resource."
1594
  msgstr ""
1595
 
1596
+ #: includes/REST/OrderController.php:849
1597
+ msgid "Parent order ID."
1598
  msgstr ""
1599
 
1600
+ #: includes/REST/OrderController.php:854
1601
+ msgid "Orders belongs to specific seller"
 
 
 
1602
  msgstr ""
1603
 
1604
+ #: includes/REST/OrderController.php:859
1605
+ msgid "Order number."
1606
  msgstr ""
1607
 
1608
+ #: includes/REST/OrderController.php:865
1609
+ msgid "Order key."
 
1610
  msgstr ""
1611
 
1612
+ #: includes/REST/OrderController.php:871
1613
+ msgid "Shows where the order was created."
1614
  msgstr ""
1615
 
1616
+ #: includes/REST/OrderController.php:877
1617
+ msgid "Version of WooCommerce which last updated the order."
 
1618
  msgstr ""
1619
 
1620
+ #: includes/REST/OrderController.php:883
1621
+ msgid "Order status."
 
 
1622
  msgstr ""
1623
 
1624
+ #: includes/REST/OrderController.php:890
1625
+ msgid "Currency the order was created with, in ISO format."
 
 
 
1626
  msgstr ""
1627
 
1628
+ #: includes/REST/OrderController.php:897
1629
+ msgid "The date the order was created, in the site's timezone."
1630
  msgstr ""
1631
 
1632
+ #: includes/REST/OrderController.php:904
1633
+ msgid "The date the order was created, as GMT."
1634
  msgstr ""
1635
 
1636
+ #: includes/REST/OrderController.php:910
1637
+ msgid "The date the order was last modified, in the site's timezone."
1638
  msgstr ""
1639
 
1640
+ #: includes/REST/OrderController.php:916
1641
+ msgid "The date the order was last modified, as GMT."
1642
  msgstr ""
1643
 
1644
+ #: includes/REST/OrderController.php:922
1645
+ msgid "Total discount amount for the order."
1646
  msgstr ""
1647
 
1648
+ #: includes/REST/OrderController.php:928
1649
+ msgid "Total discount tax amount for the order."
 
1650
  msgstr ""
1651
 
1652
+ #: includes/REST/OrderController.php:934
1653
+ msgid "Total shipping amount for the order."
1654
  msgstr ""
1655
 
1656
+ #: includes/REST/OrderController.php:940
1657
+ msgid "Total shipping tax amount for the order."
1658
  msgstr ""
1659
 
1660
+ #: includes/REST/OrderController.php:946
1661
+ msgid "Sum of line item taxes only."
1662
  msgstr ""
1663
 
1664
+ #: includes/REST/OrderController.php:952
1665
+ msgid "Grand total."
1666
  msgstr ""
1667
 
1668
+ #: includes/REST/OrderController.php:958
1669
+ msgid "Sum of all taxes."
1670
  msgstr ""
1671
 
1672
+ #: includes/REST/OrderController.php:964
1673
+ msgid "True the prices included tax during checkout."
1674
  msgstr ""
1675
 
1676
+ #: includes/REST/OrderController.php:970
1677
+ msgid "User ID who owns the order. 0 for guests."
1678
  msgstr ""
1679
 
1680
+ #: includes/REST/OrderController.php:976
1681
+ msgid "Customer's IP address."
1682
  msgstr ""
1683
 
1684
+ #: includes/REST/OrderController.php:982
1685
+ msgid "User agent of the customer."
 
 
1686
  msgstr ""
1687
 
1688
+ #: includes/REST/OrderController.php:988
1689
+ msgid "Note left by customer during checkout."
1690
  msgstr ""
1691
 
1692
+ #: includes/REST/OrderController.php:993
1693
+ msgid "Billing address."
 
 
1694
  msgstr ""
1695
 
1696
+ #: includes/REST/OrderController.php:998 includes/REST/OrderController.php:1061
1697
+ msgid "First name."
1698
  msgstr ""
1699
 
1700
+ #: includes/REST/OrderController.php:1003
1701
+ #: includes/REST/OrderController.php:1066
1702
+ msgid "Last name."
1703
  msgstr ""
1704
 
1705
+ #: includes/REST/OrderController.php:1008
1706
+ #: includes/REST/OrderController.php:1071
1707
+ msgid "Company name."
1708
  msgstr ""
1709
 
1710
+ #: includes/REST/OrderController.php:1013
1711
+ #: includes/REST/OrderController.php:1076
1712
+ #: templates/admin-setup-wizard/step-store-wc-fields.php:37
1713
+ msgid "Address line 1"
1714
  msgstr ""
1715
 
1716
+ #: includes/REST/OrderController.php:1018
1717
+ #: includes/REST/OrderController.php:1081
1718
+ #: templates/admin-setup-wizard/step-store-wc-fields.php:44
1719
+ msgid "Address line 2"
1720
  msgstr ""
1721
 
1722
+ #: includes/REST/OrderController.php:1023
1723
+ #: includes/REST/OrderController.php:1086
1724
+ msgid "City name."
1725
  msgstr ""
1726
 
1727
+ #: includes/REST/OrderController.php:1028
1728
+ #: includes/REST/OrderController.php:1091
1729
+ msgid "ISO code or name of the state, province or district."
 
 
 
 
1730
  msgstr ""
1731
 
1732
+ #: includes/REST/OrderController.php:1033
1733
+ #: includes/REST/OrderController.php:1096
1734
+ msgid "Postal code."
 
 
 
 
1735
  msgstr ""
1736
 
1737
+ #: includes/REST/OrderController.php:1038
1738
+ #: includes/REST/OrderController.php:1101
1739
+ msgid "Country code in ISO 3166-1 alpha-2 format."
 
 
 
 
1740
  msgstr ""
1741
 
1742
+ #: includes/REST/OrderController.php:1043
1743
+ msgid "Email address."
 
 
 
 
 
 
 
 
 
 
 
 
1744
  msgstr ""
1745
 
1746
+ #: includes/REST/OrderController.php:1049
1747
+ msgid "Phone number."
 
 
 
 
 
1748
  msgstr ""
1749
 
1750
+ #: includes/REST/OrderController.php:1056
1751
+ msgid "Shipping address."
 
 
 
 
 
1752
  msgstr ""
1753
 
1754
+ #: includes/REST/OrderController.php:1108
1755
+ msgid "Payment method ID."
 
 
 
 
 
1756
  msgstr ""
1757
 
1758
+ #: includes/REST/OrderController.php:1113
1759
+ msgid "Payment method title."
1760
  msgstr ""
1761
 
1762
+ #: includes/REST/OrderController.php:1118
1763
+ msgid "Unique transaction ID."
1764
  msgstr ""
1765
 
1766
+ #: includes/REST/OrderController.php:1123
1767
+ msgid "The date the order was paid, in the site's timezone."
1768
+ msgstr ""
1769
 
1770
+ #: includes/REST/OrderController.php:1129
1771
+ msgid "The date the order was paid, as GMT."
1772
  msgstr ""
1773
 
1774
+ #: includes/REST/OrderController.php:1135
1775
+ msgid "The date the order was completed, in the site's timezone."
1776
  msgstr ""
1777
 
1778
+ #: includes/REST/OrderController.php:1141
1779
+ msgid "The date the order was completed, as GMT."
1780
  msgstr ""
1781
 
1782
+ #: includes/REST/OrderController.php:1147
1783
+ msgid "MD5 hash of cart items to ensure orders are not modified."
1784
  msgstr ""
1785
 
1786
+ #: includes/REST/OrderController.php:1153
1787
+ #: includes/REST/OrderController.php:1265
1788
+ #: includes/REST/OrderController.php:1356
1789
+ #: includes/REST/OrderController.php:1442
1790
+ #: includes/REST/OrderController.php:1540
1791
+ #: includes/REST/OrderController.php:1598
1792
+ #: includes/REST/ProductController.php:2269
1793
+ msgid "Meta data."
1794
  msgstr ""
1795
 
1796
+ #: includes/REST/OrderController.php:1160
1797
+ #: includes/REST/OrderController.php:1272
1798
+ #: includes/REST/OrderController.php:1363
1799
+ #: includes/REST/OrderController.php:1449
1800
+ #: includes/REST/OrderController.php:1547
1801
+ #: includes/REST/OrderController.php:1605
1802
+ #: includes/REST/ProductController.php:2276
1803
+ msgid "Meta ID."
1804
  msgstr ""
1805
 
1806
+ #: includes/REST/OrderController.php:1166
1807
+ #: includes/REST/OrderController.php:1278
1808
+ #: includes/REST/OrderController.php:1369
1809
+ #: includes/REST/OrderController.php:1455
1810
+ #: includes/REST/OrderController.php:1553
1811
+ #: includes/REST/OrderController.php:1611
1812
+ #: includes/REST/ProductController.php:2282
1813
+ msgid "Meta key."
1814
  msgstr ""
1815
 
1816
+ #: includes/REST/OrderController.php:1171
1817
+ #: includes/REST/OrderController.php:1283
1818
+ #: includes/REST/OrderController.php:1374
1819
+ #: includes/REST/OrderController.php:1460
1820
+ #: includes/REST/OrderController.php:1558
1821
+ #: includes/REST/OrderController.php:1616
1822
+ #: includes/REST/ProductController.php:2287
1823
+ msgid "Meta value."
1824
  msgstr ""
1825
 
1826
+ #: includes/REST/OrderController.php:1179
1827
+ msgid "Line items data."
1828
  msgstr ""
1829
 
1830
+ #: includes/REST/OrderController.php:1186
1831
+ #: includes/REST/OrderController.php:1314
1832
+ #: includes/REST/OrderController.php:1392
1833
+ #: includes/REST/OrderController.php:1478
1834
+ #: includes/REST/OrderController.php:1576
1835
+ msgid "Item ID."
1836
  msgstr ""
1837
 
1838
+ #: includes/REST/OrderController.php:1192
1839
+ #: includes/REST/ProductController.php:1698
1840
+ msgid "Product name."
 
1841
  msgstr ""
1842
 
1843
+ #: includes/REST/OrderController.php:1197
1844
+ msgid "Product ID."
 
 
1845
  msgstr ""
1846
 
1847
+ #: includes/REST/OrderController.php:1202
1848
+ msgid "Variation ID, if applicable."
1849
  msgstr ""
1850
 
1851
+ #: includes/REST/OrderController.php:1207
1852
+ msgid "Quantity ordered."
 
 
1853
  msgstr ""
1854
 
1855
+ #: includes/REST/OrderController.php:1212
1856
+ msgid "Tax class of product."
 
 
1857
  msgstr ""
1858
 
1859
+ #: includes/REST/OrderController.php:1217
1860
+ msgid "Line subtotal (before discounts)."
1861
  msgstr ""
1862
 
1863
+ #: includes/REST/OrderController.php:1222
1864
+ msgid "Line subtotal tax (before discounts)."
1865
  msgstr ""
1866
 
1867
+ #: includes/REST/OrderController.php:1228
1868
+ #: includes/REST/OrderController.php:1408
1869
+ #: includes/REST/OrderController.php:1500
1870
+ msgid "Line total (after discounts)."
1871
  msgstr ""
1872
 
1873
+ #: includes/REST/OrderController.php:1233
1874
+ #: includes/REST/OrderController.php:1413
1875
+ #: includes/REST/OrderController.php:1505
1876
+ msgid "Line total tax (after discounts)."
1877
  msgstr ""
1878
 
1879
+ #: includes/REST/OrderController.php:1239
1880
+ #: includes/REST/OrderController.php:1419
1881
+ #: includes/REST/OrderController.php:1511
1882
+ msgid "Line taxes."
1883
  msgstr ""
1884
 
1885
+ #: includes/REST/OrderController.php:1247
1886
+ #: includes/REST/OrderController.php:1326
1887
+ #: includes/REST/OrderController.php:1427
1888
+ #: includes/REST/OrderController.php:1519
1889
+ msgid "Tax rate ID."
1890
  msgstr ""
1891
 
1892
+ #: includes/REST/OrderController.php:1252
1893
+ #: includes/REST/OrderController.php:1433
1894
+ #: includes/REST/OrderController.php:1525
1895
+ msgid "Tax total."
1896
  msgstr ""
1897
 
1898
+ #: includes/REST/OrderController.php:1257
1899
+ #: includes/REST/OrderController.php:1531
1900
+ msgid "Tax subtotal."
1901
  msgstr ""
1902
 
1903
+ #: includes/REST/OrderController.php:1291
1904
+ msgid "Product SKU."
1905
  msgstr ""
1906
 
1907
+ #: includes/REST/OrderController.php:1297
1908
+ msgid "Product price."
1909
  msgstr ""
1910
 
1911
+ #: includes/REST/OrderController.php:1306
1912
+ msgid "Tax lines data."
 
 
1913
  msgstr ""
1914
 
1915
+ #: includes/REST/OrderController.php:1320
1916
+ msgid "Tax rate code."
1917
  msgstr ""
1918
 
1919
+ #: includes/REST/OrderController.php:1332
1920
+ msgid "Tax rate label."
1921
  msgstr ""
1922
 
1923
+ #: includes/REST/OrderController.php:1338
1924
+ msgid "Show if is a compound tax rate."
1925
  msgstr ""
1926
 
1927
+ #: includes/REST/OrderController.php:1344
1928
+ msgid "Tax total (not including shipping taxes)."
1929
  msgstr ""
1930
 
1931
+ #: includes/REST/OrderController.php:1350
1932
+ msgid "Shipping tax total."
1933
  msgstr ""
1934
 
1935
+ #: includes/REST/OrderController.php:1385
1936
+ msgid "Shipping lines data."
1937
  msgstr ""
1938
 
1939
+ #: includes/REST/OrderController.php:1398
1940
+ msgid "Shipping method name."
1941
  msgstr ""
1942
 
1943
+ #: includes/REST/OrderController.php:1403
1944
+ msgid "Shipping method ID."
1945
  msgstr ""
1946
 
1947
+ #: includes/REST/OrderController.php:1471
1948
+ msgid "Fee lines data."
1949
  msgstr ""
1950
 
1951
+ #: includes/REST/OrderController.php:1484
1952
+ msgid "Fee name."
1953
  msgstr ""
1954
 
1955
+ #: includes/REST/OrderController.php:1489
1956
+ msgid "Tax class of fee."
1957
  msgstr ""
1958
 
1959
+ #: includes/REST/OrderController.php:1494
1960
+ msgid "Tax status of fee."
1961
  msgstr ""
1962
 
1963
+ #: includes/REST/OrderController.php:1569
1964
+ msgid "Coupons line data."
1965
  msgstr ""
1966
 
1967
+ #: includes/REST/OrderController.php:1582
1968
+ msgid "Coupon code."
 
1969
  msgstr ""
1970
 
1971
+ #: includes/REST/OrderController.php:1587
1972
+ msgid "Discount total."
1973
  msgstr ""
1974
 
1975
+ #: includes/REST/OrderController.php:1592
1976
+ msgid "Discount total tax."
1977
  msgstr ""
1978
 
1979
+ #: includes/REST/OrderController.php:1627
1980
+ msgid "List of refunds."
1981
  msgstr ""
1982
 
1983
+ #: includes/REST/OrderController.php:1635
1984
+ msgid "Refund ID."
1985
  msgstr ""
1986
 
1987
+ #: includes/REST/OrderController.php:1641
1988
+ msgid "Refund reason."
1989
  msgstr ""
1990
 
1991
+ #: includes/REST/OrderController.php:1647
1992
+ msgid "Refund total."
1993
  msgstr ""
1994
 
1995
+ #: includes/REST/OrderController.php:1656
1996
+ msgid ""
1997
+ "Define if the order is paid. It will set the status to processing and "
1998
+ "reduce stock items."
1999
  msgstr ""
2000
 
2001
+ #: includes/REST/ProductAttributeController.php:66
2002
+ #: includes/REST/ProductAttributeController.php:80
2003
+ #: includes/REST/ProductAttributeController.php:94
2004
+ msgid "Resource does not exist."
2005
  msgstr ""
2006
 
2007
+ #: includes/REST/ProductAttributeTermsController.php:86
2008
+ msgid "The term cannot found"
2009
  msgstr ""
2010
 
2011
+ #: includes/REST/ProductAttributeTermsController.php:94
2012
+ msgid "The resource cannot be deleted."
2013
  msgstr ""
2014
 
2015
+ #: includes/REST/ProductController.php:104
2016
+ msgid "Whether to bypass trash and force deletion."
2017
  msgstr ""
2018
 
2019
+ #: includes/REST/ProductController.php:126
2020
+ #: includes/REST/ProductController.php:140
2021
+ #: includes/REST/ProductController.php:163
2022
+ #: includes/REST/ProductController.php:186
2023
+ #: includes/REST/ProductController.php:209
2024
+ msgid "Number of product you want to get top rated product"
2025
  msgstr ""
2026
 
2027
+ #: includes/REST/ProductController.php:145
2028
+ #: includes/REST/ProductController.php:168
2029
+ #: includes/REST/ProductController.php:191
2030
+ #: includes/REST/ProductController.php:214
2031
+ msgid "Number of page number"
2032
  msgstr ""
2033
 
2034
+ #: includes/REST/ProductController.php:150
2035
+ #: includes/REST/ProductController.php:173
2036
+ #: includes/REST/ProductController.php:196
2037
+ #: includes/REST/ProductController.php:219
2038
+ msgid "Top rated product for specific vendor"
2039
  msgstr ""
2040
 
2041
+ #: includes/REST/ProductController.php:260
2042
+ msgid "Product title must be required"
2043
  msgstr ""
2044
 
2045
+ #: includes/REST/ProductController.php:266
2046
+ msgid "Category must be required"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2047
  msgstr ""
2048
 
2049
+ #: includes/REST/ProductController.php:271
2050
+ msgid "You can not select more than category"
2051
  msgstr ""
2052
 
2053
+ #: includes/REST/ProductController.php:1271
2054
+ #: includes/REST/ProductController.php:1272
2055
+ msgid "Placeholder"
2056
  msgstr ""
2057
 
2058
+ #: includes/REST/ProductController.php:1484
2059
+ #. translators: %s: attachment id
2060
+ msgid "#%s is an invalid image ID."
2061
  msgstr ""
2062
 
2063
+ #: includes/REST/ProductController.php:1703
2064
+ msgid "Product slug."
2065
  msgstr ""
2066
 
2067
+ #: includes/REST/ProductController.php:1708
2068
+ msgid "Product URL."
2069
  msgstr ""
2070
 
2071
+ #: includes/REST/ProductController.php:1715
2072
+ msgid "The date the product was created, in the site's timezone."
2073
  msgstr ""
2074
 
2075
+ #: includes/REST/ProductController.php:1721
2076
+ msgid "The date the product was created, as GMT."
2077
  msgstr ""
2078
 
2079
+ #: includes/REST/ProductController.php:1727
2080
+ msgid "The date the product was last modified, in the site's timezone."
 
 
 
 
 
 
2081
  msgstr ""
2082
 
2083
+ #: includes/REST/ProductController.php:1733
2084
+ msgid "The date the product was last modified, as GMT."
2085
  msgstr ""
2086
 
2087
+ #: includes/REST/ProductController.php:1739
2088
+ msgid "Product type."
2089
  msgstr ""
2090
 
2091
+ #: includes/REST/ProductController.php:1746
2092
+ msgid "Product status (post status)."
2093
  msgstr ""
2094
 
2095
+ #: includes/REST/ProductController.php:1753
2096
+ msgid "Featured product."
 
 
2097
  msgstr ""
2098
 
2099
+ #: includes/REST/ProductController.php:1759
2100
+ msgid "Catalog visibility."
 
 
2101
  msgstr ""
2102
 
2103
+ #: includes/REST/ProductController.php:1766
2104
+ msgid "Product description."
 
 
2105
  msgstr ""
2106
 
2107
+ #: includes/REST/ProductController.php:1771
2108
+ msgid "Product short description."
 
 
2109
  msgstr ""
2110
 
2111
+ #: includes/REST/ProductController.php:1776
2112
+ msgid "Unique identifier."
 
 
2113
  msgstr ""
2114
 
2115
+ #: includes/REST/ProductController.php:1781
2116
+ msgid "Current product price."
 
 
2117
  msgstr ""
2118
 
2119
+ #: includes/REST/ProductController.php:1787
2120
+ msgid "Product regular price."
 
 
 
 
2121
  msgstr ""
2122
 
2123
+ #: includes/REST/ProductController.php:1792
2124
+ msgid "Product sale price."
2125
  msgstr ""
2126
 
2127
+ #: includes/REST/ProductController.php:1797
2128
+ msgid "Start date of sale price, in the site's timezone."
2129
  msgstr ""
2130
 
2131
+ #: includes/REST/ProductController.php:1802
2132
+ msgid "Start date of sale price, as GMT."
2133
  msgstr ""
2134
 
2135
+ #: includes/REST/ProductController.php:1807
2136
+ msgid "End date of sale price, in the site's timezone."
2137
  msgstr ""
2138
 
2139
+ #: includes/REST/ProductController.php:1812
2140
+ msgid "End date of sale price, as GMT."
2141
  msgstr ""
2142
 
2143
+ #: includes/REST/ProductController.php:1817
2144
+ msgid "Price formatted in HTML."
2145
  msgstr ""
2146
 
2147
+ #: includes/REST/ProductController.php:1823
2148
+ msgid "Shows if the product is on sale."
2149
  msgstr ""
2150
 
2151
+ #: includes/REST/ProductController.php:1829
2152
+ msgid "Shows if the product can be bought."
 
 
2153
  msgstr ""
2154
 
2155
+ #: includes/REST/ProductController.php:1835
2156
+ msgid "Amount of sales."
 
 
 
 
 
2157
  msgstr ""
2158
 
2159
+ #: includes/REST/ProductController.php:1841
2160
+ msgid "If the product is virtual."
2161
  msgstr ""
2162
 
2163
+ #: includes/REST/ProductController.php:1847
2164
+ msgid "If the product is downloadable."
2165
  msgstr ""
2166
 
2167
+ #: includes/REST/ProductController.php:1853
2168
+ msgid "List of downloadable files."
 
 
2169
  msgstr ""
2170
 
2171
+ #: includes/REST/ProductController.php:1860
2172
+ msgid "File MD5 hash."
 
 
2173
  msgstr ""
2174
 
2175
+ #: includes/REST/ProductController.php:1866
2176
+ msgid "File name."
 
 
2177
  msgstr ""
2178
 
2179
+ #: includes/REST/ProductController.php:1871
2180
+ msgid "File URL."
 
 
2181
  msgstr ""
2182
 
2183
+ #: includes/REST/ProductController.php:1879
2184
+ msgid "Number of times downloadable files can be downloaded after purchase."
2185
  msgstr ""
2186
 
2187
+ #: includes/REST/ProductController.php:1885
2188
+ msgid "Number of days until access to downloadable files expires."
 
 
 
2189
  msgstr ""
2190
 
2191
+ #: includes/REST/ProductController.php:1891
2192
+ msgid "Product external URL. Only for external products."
 
 
2193
  msgstr ""
2194
 
2195
+ #: includes/REST/ProductController.php:1897
2196
+ msgid "Product external button text. Only for external products."
2197
  msgstr ""
2198
 
2199
+ #: includes/REST/ProductController.php:1902
2200
+ msgid "Tax status."
 
 
 
 
2201
  msgstr ""
2202
 
2203
+ #: includes/REST/ProductController.php:1909
2204
+ msgid "Tax class."
 
 
 
2205
  msgstr ""
2206
 
2207
+ #: includes/REST/ProductController.php:1914
2208
+ msgid "Stock management at product level."
 
 
 
2209
  msgstr ""
2210
 
2211
+ #: includes/REST/ProductController.php:1920
2212
+ msgid "Stock quantity."
2213
  msgstr ""
2214
 
2215
+ #: includes/REST/ProductController.php:1925
2216
  msgid ""
2217
+ "Controls whether or not the product is listed as \"in stock\" or \"out of "
2218
+ "stock\" on the frontend."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2219
  msgstr ""
2220
 
2221
+ #: includes/REST/ProductController.php:1931
2222
+ msgid "If managing stock, this controls if backorders are allowed."
 
2223
  msgstr ""
2224
 
2225
+ #: includes/REST/ProductController.php:1938
2226
+ msgid "Shows if backorders are allowed."
2227
  msgstr ""
2228
 
2229
+ #: includes/REST/ProductController.php:1944
2230
+ msgid "Shows if the product is on backordered."
 
2231
  msgstr ""
2232
 
2233
+ #: includes/REST/ProductController.php:1950
2234
+ msgid "Allow one item to be bought in a single order."
 
2235
  msgstr ""
2236
 
2237
+ #: includes/REST/ProductController.php:1957
2238
+ #. translators: %s: weight unit
2239
+ msgid "Product weight (%s)."
2240
  msgstr ""
2241
 
2242
+ #: includes/REST/ProductController.php:1962
2243
+ msgid "Product dimensions."
 
 
 
 
2244
  msgstr ""
2245
 
2246
+ #: includes/REST/ProductController.php:1968
2247
+ #. translators: %s: dimension unit
2248
+ msgid "Product length (%s)."
2249
  msgstr ""
2250
 
2251
+ #: includes/REST/ProductController.php:1974
2252
+ #. translators: %s: dimension unit
2253
+ msgid "Product width (%s)."
 
 
 
2254
  msgstr ""
2255
 
2256
+ #: includes/REST/ProductController.php:1980
2257
+ #. translators: %s: dimension unit
2258
+ msgid "Product height (%s)."
2259
  msgstr ""
2260
 
2261
+ #: includes/REST/ProductController.php:1987
2262
+ msgid "Shows if the product need to be shipped."
 
2263
  msgstr ""
2264
 
2265
+ #: includes/REST/ProductController.php:1993
2266
+ msgid "Shows whether or not the product shipping is taxable."
2267
  msgstr ""
2268
 
2269
+ #: includes/REST/ProductController.php:1999
2270
+ msgid "Shipping class slug."
 
2271
  msgstr ""
2272
 
2273
+ #: includes/REST/ProductController.php:2004
2274
+ msgid "Shipping class ID."
 
2275
  msgstr ""
2276
 
2277
+ #: includes/REST/ProductController.php:2010
2278
+ msgid "Allow reviews."
 
2279
  msgstr ""
2280
 
2281
+ #: includes/REST/ProductController.php:2016
2282
+ msgid "Reviews average rating."
2283
  msgstr ""
2284
 
2285
+ #: includes/REST/ProductController.php:2022
2286
+ msgid "Amount of reviews that the product have."
2287
  msgstr ""
2288
 
2289
+ #: includes/REST/ProductController.php:2028
2290
+ msgid "List of related products IDs."
2291
  msgstr ""
2292
 
2293
+ #: includes/REST/ProductController.php:2037
2294
+ msgid "List of up-sell products IDs."
2295
  msgstr ""
2296
 
2297
+ #: includes/REST/ProductController.php:2045
2298
+ msgid "List of cross-sell products IDs."
2299
  msgstr ""
2300
 
2301
+ #: includes/REST/ProductController.php:2053
2302
+ msgid "Product parent ID."
 
 
2303
  msgstr ""
2304
 
2305
+ #: includes/REST/ProductController.php:2058
2306
+ msgid "Optional note to send the customer after purchase."
2307
  msgstr ""
2308
 
2309
+ #: includes/REST/ProductController.php:2063
2310
+ msgid "List of categories."
2311
  msgstr ""
2312
 
2313
+ #: includes/REST/ProductController.php:2070
2314
+ msgid "Category ID."
2315
  msgstr ""
2316
 
2317
+ #: includes/REST/ProductController.php:2075
2318
+ msgid "Category name."
 
 
 
 
2319
  msgstr ""
2320
 
2321
+ #: includes/REST/ProductController.php:2081
2322
+ msgid "Category slug."
2323
  msgstr ""
2324
 
2325
+ #: includes/REST/ProductController.php:2090
2326
+ msgid "List of tags."
2327
  msgstr ""
2328
 
2329
+ #: includes/REST/ProductController.php:2097
2330
+ msgid "Tag ID."
2331
  msgstr ""
2332
 
2333
+ #: includes/REST/ProductController.php:2102
2334
+ msgid "Tag name."
2335
  msgstr ""
2336
 
2337
+ #: includes/REST/ProductController.php:2108
2338
+ msgid "Tag slug."
2339
  msgstr ""
2340
 
2341
+ #: includes/REST/ProductController.php:2117
2342
+ msgid "List of images."
2343
  msgstr ""
2344
 
2345
+ #: includes/REST/ProductController.php:2124
2346
+ msgid "Image ID."
2347
  msgstr ""
2348
 
2349
+ #: includes/REST/ProductController.php:2129
2350
+ msgid "The date the image was created, in the site's timezone."
2351
  msgstr ""
2352
 
2353
+ #: includes/REST/ProductController.php:2135
2354
+ msgid "The date the image was created, as GMT."
2355
  msgstr ""
2356
 
2357
+ #: includes/REST/ProductController.php:2141
2358
+ msgid "The date the image was last modified, in the site's timezone."
2359
  msgstr ""
2360
 
2361
+ #: includes/REST/ProductController.php:2147
2362
+ msgid "The date the image was last modified, as GMT."
2363
  msgstr ""
2364
 
2365
+ #: includes/REST/ProductController.php:2153
2366
+ msgid "Image URL."
2367
  msgstr ""
2368
 
2369
+ #: includes/REST/ProductController.php:2159
2370
+ msgid "Image name."
2371
  msgstr ""
2372
 
2373
+ #: includes/REST/ProductController.php:2164
2374
+ msgid "Image alternative text."
 
 
2375
  msgstr ""
2376
 
2377
+ #: includes/REST/ProductController.php:2169
2378
+ msgid "Image position. 0 means that the image is featured."
2379
  msgstr ""
2380
 
2381
+ #: includes/REST/ProductController.php:2177
2382
+ msgid "List of attributes."
2383
  msgstr ""
2384
 
2385
+ #: includes/REST/ProductController.php:2184
2386
+ #: includes/REST/ProductController.php:2229
2387
+ msgid "Attribute ID."
2388
  msgstr ""
2389
 
2390
+ #: includes/REST/ProductController.php:2189
2391
+ #: includes/REST/ProductController.php:2234
2392
+ msgid "Attribute name."
2393
  msgstr ""
2394
 
2395
+ #: includes/REST/ProductController.php:2194
2396
+ msgid "Attribute position."
2397
  msgstr ""
2398
 
2399
+ #: includes/REST/ProductController.php:2199
2400
+ msgid ""
2401
+ "Define if the attribute is visible on the \"Additional information\" tab in "
2402
+ "the product's page."
2403
  msgstr ""
2404
 
2405
+ #: includes/REST/ProductController.php:2205
2406
+ msgid "Define if the attribute can be used as variation."
2407
  msgstr ""
2408
 
2409
+ #: includes/REST/ProductController.php:2211
2410
+ msgid "List of available term names of the attribute."
2411
  msgstr ""
2412
 
2413
+ #: includes/REST/ProductController.php:2222
2414
+ msgid "Defaults variation attributes."
 
 
2415
  msgstr ""
2416
 
2417
+ #: includes/REST/ProductController.php:2239
2418
+ msgid "Selected attribute term name."
2419
  msgstr ""
2420
 
2421
+ #: includes/REST/ProductController.php:2247
2422
+ msgid "List of variations IDs."
2423
  msgstr ""
2424
 
2425
+ #: includes/REST/ProductController.php:2256
2426
+ msgid "List of grouped products ID."
 
 
 
 
 
 
 
 
2427
  msgstr ""
2428
 
2429
+ #: includes/REST/ProductController.php:2264
2430
+ msgid "Menu order, used to custom sort products."
2431
+ msgstr ""
 
 
2432
 
2433
+ #: includes/REST/StoreController.php:72
2434
+ msgid "Reassign the deleted user's posts and links to this user ID."
2435
  msgstr ""
2436
 
2437
+ #: includes/REST/StoreController.php:132
2438
+ #: templates/widgets/store-contact-form.php:15
2439
+ msgid "Your Name"
 
2440
  msgstr ""
2441
 
2442
+ #: includes/REST/StoreController.php:138
2443
+ msgid "Your email"
2444
  msgstr ""
2445
 
2446
+ #: includes/REST/StoreController.php:143
2447
+ msgid "Your Message"
2448
  msgstr ""
2449
 
2450
+ #: includes/REST/StoreController.php:158
2451
+ msgid "Status for the store object."
2452
  msgstr ""
2453
 
2454
+ #: includes/REST/StoreController.php:244 includes/REST/StoreController.php:311
2455
+ #: includes/REST/StoreController.php:464
2456
+ msgid "No store found"
2457
  msgstr ""
2458
 
2459
+ #: includes/REST/StoreController.php:265 includes/REST/StoreController.php:783
2460
+ msgid "No vendor found for updating status"
2461
  msgstr ""
2462
 
2463
+ #: includes/REST/StoreController.php:270
2464
+ msgid "Invalid user ID for reassignment."
2465
  msgstr ""
2466
 
2467
+ #: includes/REST/StoreController.php:481 includes/REST/StoreController.php:500
2468
+ msgid "No reviews found"
2469
  msgstr ""
2470
 
2471
+ #: includes/REST/StoreController.php:689
2472
+ msgid "This email address is not valid"
2473
  msgstr ""
2474
 
2475
+ #: includes/REST/StoreController.php:732
2476
+ msgid "No vendor is found to be send an email."
2477
  msgstr ""
2478
 
2479
+ #: includes/REST/StoreController.php:777
2480
+ msgid "Status parameter must be active or inactive"
 
2481
  msgstr ""
2482
 
2483
+ #: includes/REST/StoreController.php:808
2484
+ msgid "No items found for bulk updating"
2485
  msgstr ""
2486
 
2487
+ #: includes/REST/WithdrawController.php:42
2488
+ msgid "IDs of withdraws"
 
2489
  msgstr ""
2490
 
2491
+ #: includes/REST/WithdrawController.php:197
2492
+ msgid "Withdraw not found"
2493
  msgstr ""
2494
 
2495
+ #: includes/REST/WithdrawController.php:238
2496
+ #: includes/REST/WithdrawController.php:302
2497
+ msgid "No vendor found"
2498
  msgstr ""
2499
 
2500
+ #: includes/REST/WithdrawController.php:292
2501
+ msgid "User does not have permission to withdraw"
2502
  msgstr ""
2503
 
2504
+ #: includes/REST/WithdrawController.php:657
2505
+ msgid "Requested User"
2506
  msgstr ""
2507
 
2508
+ #: includes/REST/WithdrawController.php:664
2509
+ msgid "Requested User ID"
 
 
2510
  msgstr ""
2511
 
2512
+ #: includes/REST/WithdrawController.php:670
2513
+ msgid ""
2514
+ "The amount of discount. Should always be numeric, even if setting a "
2515
+ "percentage."
2516
  msgstr ""
2517
 
2518
+ #: includes/REST/WithdrawController.php:675
2519
+ msgid "The date the withdraw request has beed created in the site's timezone."
 
 
 
2520
  msgstr ""
2521
 
2522
+ #: includes/REST/WithdrawController.php:682
2523
+ msgid "Withdraw status"
 
2524
  msgstr ""
2525
 
2526
+ #: includes/REST/WithdrawController.php:690
2527
+ msgid "Withdraw Method"
 
 
 
 
 
 
 
2528
  msgstr ""
2529
 
2530
+ #: includes/REST/WithdrawController.php:697
2531
+ msgid "Withdraw Notes"
2532
  msgstr ""
2533
 
2534
+ #: includes/REST/WithdrawController.php:703
2535
+ msgid "User IP"
2536
  msgstr ""
2537
 
2538
+ #: includes/REST/WithdrawController.php:729
2539
+ msgid "List of withdraw IDs to be approved"
 
 
2540
  msgstr ""
2541
 
2542
+ #: includes/REST/WithdrawController.php:739
2543
+ msgid "List of withdraw IDs to be cancelled"
 
 
2544
  msgstr ""
2545
 
2546
+ #: includes/REST/WithdrawController.php:749
2547
+ msgid "List of withdraw IDs to be deleted"
2548
  msgstr ""
2549
 
2550
+ #: includes/Registration.php:48
2551
+ msgid "Nonce verification failed"
2552
  msgstr ""
2553
 
2554
+ #: includes/Registration.php:56
2555
+ msgid "Cheating, eh?"
2556
  msgstr ""
2557
 
2558
+ #: includes/Registration.php:62
2559
+ msgid "Please enter your first name."
2560
  msgstr ""
2561
 
2562
+ #: includes/Registration.php:63
2563
+ msgid "Please enter your last name."
 
2564
  msgstr ""
2565
 
2566
+ #: includes/Registration.php:64
2567
+ msgid "Please enter your phone number."
 
2568
  msgstr ""
2569
 
2570
+ #: includes/Registration.php:65
2571
+ msgid "Please provide a shop name."
 
2572
  msgstr ""
2573
 
2574
+ #: includes/Shortcodes/Dashboard.php:25
2575
+ msgid "Please install <a href=\"%s\"><strong>WooCommerce</strong></a> plugin first"
2576
  msgstr ""
2577
 
2578
+ #: includes/Shortcodes/VendorRegistration.php:18
2579
+ msgid "You are already logged in"
2580
  msgstr ""
2581
 
2582
+ #: includes/Upgrade/AdminNotice.php:53
2583
+ msgid "You are not authorize to perform this operation."
2584
  msgstr ""
2585
 
2586
+ #: includes/Upgrade/AdminNotice.php:57
2587
+ msgid "There is an upgrading process going on."
 
2588
  msgstr ""
2589
 
2590
+ #: includes/Upgrade/AdminNotice.php:61
2591
+ msgid "Update is not required."
2592
  msgstr ""
2593
 
2594
+ #: includes/Vendor/Manager.php:174
2595
+ msgid "Unable to create vendor"
2596
  msgstr ""
2597
 
2598
+ #: includes/Vendor/Manager.php:258
2599
+ msgid "Email is not valid"
2600
  msgstr ""
2601
 
2602
+ #: includes/Vendor/SetupWizard.php:70 includes/admin/SetupWizard.php:126
2603
+ msgid "Introduction"
2604
  msgstr ""
2605
 
2606
+ #: includes/Vendor/SetupWizard.php:75 includes/admin/SetupWizard.php:130
2607
+ #: includes/template-tags.php:368
2608
+ msgid "Store"
2609
  msgstr ""
2610
 
2611
+ #: includes/Vendor/SetupWizard.php:80 includes/admin/SetupWizardNoWC.php:177
2612
+ #: includes/template-tags.php:375
2613
+ msgid "Payment"
2614
  msgstr ""
2615
 
2616
+ #: includes/Vendor/SetupWizard.php:85 includes/admin/SetupWizard.php:150
2617
+ msgid "Ready!"
2618
  msgstr ""
2619
 
2620
+ #: includes/Vendor/SetupWizard.php:119
2621
+ msgid "Vendor &rsaquo; Setup Wizard"
2622
  msgstr ""
2623
 
2624
+ #: includes/Vendor/SetupWizard.php:138
2625
+ msgid "Return to the Marketplace"
2626
  msgstr ""
2627
 
2628
+ #: includes/Vendor/SetupWizard.php:151
2629
+ msgid "Welcome to the Marketplace!"
2630
  msgstr ""
2631
 
2632
+ #: includes/Vendor/SetupWizard.php:152
2633
+ msgid ""
2634
+ "Thank you for choosing The Marketplace to power your online store! This "
2635
+ "quick setup wizard will help you configure the basic settings. <strong>It’s "
2636
+ "completely optional and shouldn’t take longer than two minutes.</strong>"
2637
  msgstr ""
2638
 
2639
+ #: includes/Vendor/SetupWizard.php:153
2640
+ msgid ""
2641
+ "No time right now? If you don’t want to go through the wizard, you can skip "
2642
+ "and return to the Store!"
2643
  msgstr ""
2644
 
2645
+ #: includes/Vendor/SetupWizard.php:155 includes/admin/SetupWizard.php:298
2646
+ #: templates/admin-setup-wizard/step-no-wc-introduction.php:54
2647
+ msgid "Let's Go!"
2648
  msgstr ""
2649
 
2650
+ #: includes/Vendor/SetupWizard.php:156 includes/admin/SetupWizard.php:299
2651
+ msgid "Not right now"
2652
  msgstr ""
2653
 
2654
+ #: includes/Vendor/SetupWizard.php:181
2655
+ #: templates/admin-setup-wizard/step-store.php:1
2656
+ msgid "Store Setup"
2657
  msgstr ""
2658
 
2659
+ #: includes/Vendor/SetupWizard.php:185 templates/settings/store-form.php:126
2660
+ msgid "Store Product Per Page"
2661
  msgstr ""
2662
 
2663
+ #: includes/Vendor/SetupWizard.php:191
2664
+ msgid "Street"
2665
  msgstr ""
2666
 
2667
+ #: includes/Vendor/SetupWizard.php:197
2668
+ #: src/admin/pages/VendorAddressFields.vue:16
2669
+ #: src/admin/pages/VendorAddressFields.vue:17
2670
+ #: templates/settings/address-form.php:41
2671
+ msgid "Street 2"
2672
  msgstr ""
2673
 
2674
+ #: includes/Vendor/SetupWizard.php:208
2675
+ msgid "Post/Zip Code"
2676
  msgstr ""
2677
 
2678
+ #: includes/Vendor/SetupWizard.php:223
2679
+ msgid "State Name"
2680
  msgstr ""
2681
 
2682
+ #: includes/Vendor/SetupWizard.php:230
2683
+ #: src/admin/pages/VendorAccountFields.vue:69
2684
+ #: templates/settings/store-form.php:156
2685
+ msgid "Email"
2686
  msgstr ""
2687
 
2688
+ #: includes/Vendor/SetupWizard.php:234 templates/settings/store-form.php:161
2689
+ msgid "Show email address in store"
2690
  msgstr ""
2691
 
2692
+ #: includes/Vendor/SetupWizard.php:243 includes/Vendor/SetupWizard.php:396
2693
+ #: includes/admin/SetupWizard.php:528 includes/admin/SetupWizard.php:580
2694
+ #: includes/admin/SetupWizardWCAdmin.php:232
2695
+ #: templates/admin-setup-wizard/step-selling.php:53
2696
+ #: templates/admin-setup-wizard/step-store.php:100
2697
+ msgid "Continue"
2698
  msgstr ""
2699
 
2700
+ #: includes/Vendor/SetupWizard.php:244 includes/Vendor/SetupWizard.php:397
2701
+ #: includes/admin/SetupWizard.php:529
2702
+ #: templates/admin-setup-wizard/step-selling.php:54
2703
+ #: templates/admin-setup-wizard/step-store.php:101
2704
+ msgid "Skip this step"
2705
  msgstr ""
2706
 
2707
+ #: includes/Vendor/SetupWizard.php:263
2708
+ msgid "Select an option&hellip;"
2709
  msgstr ""
2710
 
2711
+ #: includes/Vendor/SetupWizard.php:374
2712
+ msgid "Payment Setup"
2713
  msgstr ""
2714
 
2715
+ #: includes/Vendor/SetupWizard.php:478
2716
+ msgid "Your Store is Ready!"
 
2717
  msgstr ""
2718
 
2719
+ #: includes/Vendor/SetupWizard.php:483
2720
+ msgid "Go to your Store Dashboard!"
 
2721
  msgstr ""
2722
 
2723
+ #: includes/Vendor/StoreListsFilter.php:82
2724
+ msgid "Most Recent"
 
 
2725
  msgstr ""
2726
 
2727
+ #: includes/Vendor/StoreListsFilter.php:83
2728
+ msgid "Most Popular"
 
 
2729
  msgstr ""
2730
 
2731
+ #: includes/Vendor/Vendor.php:707
2732
+ msgid "No ratings found yet!"
 
2733
  msgstr ""
2734
 
2735
+ #: includes/Vendor/Vendor.php:709
2736
+ msgid "%s rating from %d review"
2737
+ msgid_plural "%s rating from %d reviews"
2738
+ msgstr[0] ""
2739
+ msgstr[1] ""
2740
 
2741
+ #: includes/Vendor/Vendor.php:710
2742
+ msgid "Rated %s out of %d"
 
2743
  msgstr ""
2744
 
2745
+ #: includes/Vendor/Vendor.php:839 templates/settings/store-form.php:280
2746
+ msgid "Store is open"
 
2747
  msgstr ""
2748
 
2749
+ #: includes/Vendor/Vendor.php:853 templates/settings/store-form.php:290
2750
+ msgid "Store is closed"
2751
  msgstr ""
2752
 
2753
+ #: includes/Withdraw/Manager.php:37
2754
+ msgid "Withdraw amount required "
2755
  msgstr ""
2756
 
2757
+ #: includes/Withdraw/Manager.php:41
2758
+ msgid "You don't have enough balance for this request"
2759
  msgstr ""
2760
 
2761
+ #: includes/Withdraw/Manager.php:45
2762
+ msgid "Withdraw amount must be greater than %d"
2763
  msgstr ""
2764
 
2765
+ #: includes/Withdraw/Manager.php:49
2766
+ msgid "Withdraw method is not active."
2767
  msgstr ""
2768
 
2769
+ #: includes/Withdraw/Manager.php:53
2770
+ msgid "Vendor is not enabled for selling, please contact site admin"
2771
  msgstr ""
2772
 
2773
+ #: includes/Withdraw/Manager.php:57
2774
+ msgid "Withdraw is already approved."
2775
  msgstr ""
2776
 
2777
+ #: includes/Withdraw/Manager.php:92
2778
+ msgid "Invalid permission to cancel the request."
2779
  msgstr ""
2780
 
2781
+ #: includes/Withdraw/Manager.php:98
2782
+ msgid "Invalid cancel withdraw request"
2783
  msgstr ""
2784
 
2785
+ #: includes/Withdraw/Manager.php:138
2786
+ msgid "Could not update withdraw status"
2787
  msgstr ""
2788
 
2789
+ #: includes/Withdraw/Manager.php:171
2790
+ msgid "Could not add new withdraw approval request."
2791
  msgstr ""
2792
 
2793
+ #: includes/Withdraw/Withdraw.php:280
2794
+ msgid "Could not create new withdraw"
 
 
 
 
 
 
2795
  msgstr ""
2796
 
2797
+ #: includes/Withdraw/Withdraw.php:326
2798
+ msgid "Could not update withdraw"
 
 
 
 
 
 
2799
  msgstr ""
2800
 
2801
+ #: includes/Withdraw/Withdraw.php:367
2802
+ msgid "Could not delete withdraw"
 
 
 
 
 
 
2803
  msgstr ""
2804
 
2805
+ #: includes/Withdraw/functions.php:12 includes/admin/SetupWizard.php:442
2806
+ msgid "PayPal"
 
 
 
 
 
 
2807
  msgstr ""
2808
 
2809
+ #: includes/Withdraw/functions.php:16
2810
+ msgid "Bank Transfer"
2811
  msgstr ""
2812
 
2813
+ #: includes/Withdraw/functions.php:126
2814
+ msgid "E-mail"
 
 
 
 
2815
  msgstr ""
2816
 
2817
+ #: includes/Withdraw/functions.php:173
2818
+ msgid "Your bank account name"
 
2819
  msgstr ""
2820
 
2821
+ #: includes/Withdraw/functions.php:179
2822
+ msgid "Your bank account number"
2823
  msgstr ""
2824
 
2825
+ #: includes/Withdraw/functions.php:185
2826
+ msgid "Name of bank"
2827
  msgstr ""
2828
 
2829
+ #: includes/Withdraw/functions.php:191
2830
+ msgid "Address of your bank"
2831
  msgstr ""
2832
 
2833
+ #: includes/Withdraw/functions.php:197
2834
+ msgid "Routing number"
2835
  msgstr ""
2836
 
2837
+ #: includes/Withdraw/functions.php:209
2838
+ msgid "Swift code"
2839
  msgstr ""
2840
 
2841
+ #: includes/admin/AdminBar.php:54 includes/admin/Menu.php:32
2842
+ #: includes/admin/Menu.php:43 includes/admin/SetupWizard.php:140
2843
+ #: includes/template-tags.php:345 templates/withdraw/header.php:11
2844
+ msgid "Withdraw"
2845
  msgstr ""
2846
 
2847
+ #: includes/admin/AdminBar.php:61 includes/admin/Menu.php:51
2848
+ msgid "PRO Features"
 
 
2849
  msgstr ""
2850
 
2851
+ #: includes/admin/Hooks.php:79
2852
+ msgid "Actions"
 
 
2853
  msgstr ""
2854
 
2855
+ #: includes/admin/Hooks.php:80 includes/admin/Hooks.php:85
2856
+ msgid "Sub Order"
 
 
2857
  msgstr ""
2858
 
2859
+ #: includes/admin/Hooks.php:133
2860
+ msgid "&nbsp;Sub Order of"
 
 
 
2861
  msgstr ""
2862
 
2863
+ #: includes/admin/Hooks.php:143
2864
+ msgid "Show Sub-Orders"
 
 
2865
  msgstr ""
2866
 
2867
+ #: includes/admin/Hooks.php:143
2868
+ msgid "Hide Sub-Orders"
 
2869
  msgstr ""
2870
 
2871
+ #: includes/admin/Hooks.php:153
2872
+ msgid "(no name)"
2873
  msgstr ""
2874
 
2875
+ #: includes/admin/Hooks.php:338
2876
+ msgid "Toggle Sub-orders"
2877
  msgstr ""
2878
 
2879
+ #: includes/admin/Menu.php:36
2880
+ msgid "Withdraw %s"
2881
  msgstr ""
2882
 
2883
+ #: includes/admin/Menu.php:47 src/admin/pages/Vendors.vue:3
2884
+ msgid "Vendors"
2885
  msgstr ""
2886
 
2887
+ #: includes/admin/Menu.php:58
2888
+ msgid "<span style=\"color:#f18500\">Help</span>"
2889
  msgstr ""
2890
 
2891
+ #: includes/admin/Pointers.php:107
2892
+ msgid "Important Details At a Glance"
2893
  msgstr ""
2894
 
2895
+ #: includes/admin/Pointers.php:108
2896
+ msgid ""
2897
+ "View the status of your marketplace including vendors and withdraw from "
2898
+ "here."
2899
  msgstr ""
2900
 
2901
+ #: includes/admin/Pointers.php:114 includes/admin/Pointers.php:131
2902
+ #: includes/admin/Pointers.php:181 includes/admin/Pointers.php:198
2903
+ #: includes/admin/Pointers.php:215 src/admin/pages/AddVendor.vue:64
2904
+ msgid "Next"
2905
  msgstr ""
2906
 
2907
+ #: includes/admin/Pointers.php:124
2908
+ msgid "Your Sales Overview"
2909
  msgstr ""
2910
 
2911
+ #: includes/admin/Pointers.php:125
2912
+ msgid "Get a complete overview of your sales, orders and commissions."
2913
  msgstr ""
2914
 
2915
+ #: includes/admin/Pointers.php:138
2916
+ msgid "News & Updates"
2917
  msgstr ""
2918
 
2919
+ #: includes/admin/Pointers.php:139
2920
+ msgid "Get all the latest news and updates of Dokan from here."
2921
  msgstr ""
2922
 
2923
+ #: includes/admin/Pointers.php:174
2924
+ msgid "General Settings"
2925
  msgstr ""
2926
 
2927
+ #: includes/admin/Pointers.php:175
2928
+ msgid "Configure all general settings for your marketplace from this tab."
2929
  msgstr ""
2930
 
2931
+ #: includes/admin/Pointers.php:191 includes/admin/Settings.php:222
2932
+ msgid "Selling Options"
2933
  msgstr ""
2934
 
2935
+ #: includes/admin/Pointers.php:192
2936
+ msgid "You can configure different selling options for your vendors"
2937
  msgstr ""
2938
 
2939
+ #: includes/admin/Pointers.php:208 includes/admin/Settings.php:227
2940
+ msgid "Withdraw Options"
2941
  msgstr ""
2942
 
2943
+ #: includes/admin/Pointers.php:209
2944
+ msgid "Configure your vendor's balance withdrawal options"
2945
  msgstr ""
2946
 
2947
+ #: includes/admin/Pointers.php:221
2948
+ msgid "Dokan Pages"
2949
  msgstr ""
2950
 
2951
+ #: includes/admin/Pointers.php:222
2952
+ msgid "Dokan requires some pages to be configured and you can set them up here"
2953
  msgstr ""
2954
 
2955
+ #: includes/admin/Promotion.php:39
2956
+ msgid "Create Customizable Paid Subscription Packs For Your Vendors"
2957
  msgstr ""
2958
 
2959
+ #: includes/admin/Promotion.php:40
2960
+ msgid ""
2961
+ "By using this module, make it mandatory for your vendors to buy a "
2962
+ "subscription pack to sell products in your marketplace."
2963
  msgstr ""
2964
 
2965
+ #: includes/admin/Promotion.php:47
2966
+ msgid "Increase conversions 270% by displaying reviews"
2967
  msgstr ""
2968
 
2969
+ #: includes/admin/Promotion.php:48
2970
  msgid ""
2971
+ "This extension enables your customers to post a review for each store "
2972
+ "available on your site."
2973
  msgstr ""
2974
 
2975
+ #: includes/admin/Promotion.php:55
2976
+ msgid "Verify Your Sellers To Earn Customer Reliability"
 
 
2977
  msgstr ""
2978
 
2979
+ #: includes/admin/Promotion.php:56
2980
+ msgid ""
2981
+ "Allow your vendors to verify their stores using social profiles, phone, "
2982
+ "photo ID etc. using this advanced and handy module."
2983
  msgstr ""
2984
 
2985
+ #: includes/admin/Promotion.php:63
2986
+ msgid "Earn more from multiple commission type"
2987
  msgstr ""
2988
 
2989
+ #: includes/admin/Promotion.php:64
2990
+ msgid ""
2991
+ "With this feature, you will be able to set different type of commission for "
2992
+ "each vendor according to the products they are selling. Meaning more "
2993
+ "earning for you."
2994
  msgstr ""
2995
 
2996
+ #: includes/admin/Promotion.php:71
2997
+ msgid "Get priority support 24/7/365"
 
 
 
 
2998
  msgstr ""
2999
 
3000
+ #: includes/admin/Promotion.php:72
3001
+ msgid ""
3002
+ "Need to solve a conflict with your plugins, have a theme layout issues with "
3003
+ "Dokan or any kind of problem you might face, we are here for you"
 
3004
  msgstr ""
3005
 
3006
+ #: includes/admin/Promotion.php:79
3007
+ msgid "97% of consumers look for deals when they shop"
 
 
 
3008
  msgstr ""
3009
 
3010
+ #: includes/admin/Promotion.php:80
3011
+ msgid ""
3012
+ "No matter what type of coupon you want to create you can do that easily "
3013
+ "using the pro version of Dokan. Set the coupon title, fix discount types, "
3014
+ "restrict email addresses and much more."
3015
  msgstr ""
3016
 
3017
+ #: includes/admin/Promotion.php:87
3018
+ msgid "Exciting premium features to take your marketplace"
3019
  msgstr ""
3020
 
3021
+ #: includes/admin/Promotion.php:88
3022
+ msgid ""
3023
+ "With the simplest configuration options available, only by enabling a "
3024
+ "single toggle button you will be able to do everything your competitors are "
3025
+ "doing and even more."
3026
  msgstr ""
3027
 
3028
+ #: includes/admin/Settings.php:37
3029
+ msgid "You have no permission to get settings value"
 
3030
  msgstr ""
3031
 
3032
+ #: includes/admin/Settings.php:65
3033
+ msgid "You are not authorized to perform this action."
 
3034
  msgstr ""
3035
 
3036
+ #: includes/admin/Settings.php:75
3037
+ msgid "`section` parameter is required."
3038
  msgstr ""
3039
 
3040
+ #: includes/admin/Settings.php:93
3041
+ msgid "Setting has been saved successfully."
3042
  msgstr ""
3043
 
3044
+ #: includes/admin/Settings.php:217
3045
+ msgid "General"
3046
  msgstr ""
3047
 
3048
+ #: includes/admin/Settings.php:232
3049
+ msgid "Page Settings"
3050
  msgstr ""
3051
 
3052
+ #: includes/admin/Settings.php:237
3053
+ msgid "Appearance"
3054
  msgstr ""
3055
 
3056
+ #: includes/admin/Settings.php:242 includes/admin/Settings.php:537
3057
+ msgid "Privacy Policy"
3058
  msgstr ""
3059
 
3060
+ #: includes/admin/Settings.php:265
3061
+ msgid "Site Options"
3062
  msgstr ""
3063
 
3064
+ #: includes/admin/Settings.php:270
3065
+ msgid "Admin area access"
3066
  msgstr ""
3067
 
3068
+ #: includes/admin/Settings.php:271
3069
+ msgid "Disallow Vendors and Customers from accessing the wp-admin dashboard area"
3070
  msgstr ""
3071
 
3072
+ #: includes/admin/Settings.php:277
3073
+ #: templates/admin-setup-wizard/step-store.php:7
3074
+ msgid "Vendor Store URL"
3075
  msgstr ""
3076
 
3077
+ #: includes/admin/Settings.php:278
3078
+ msgid "Define the Vendor store URL (%s<strong>[this-text]</strong>/[vendor-name])"
3079
  msgstr ""
3080
 
3081
+ #: includes/admin/Settings.php:284
3082
+ msgid "Vendor Setup Wizard Logo"
3083
  msgstr ""
3084
 
3085
+ #: includes/admin/Settings.php:286
3086
+ msgid ""
3087
+ "Recommended Logo size ( 270px X 90px ). If no logo is uploaded, site title "
3088
+ "is shown by default."
3089
  msgstr ""
3090
 
3091
+ #: includes/admin/Settings.php:290
3092
+ msgid "Disable Welcome Wizard"
3093
  msgstr ""
3094
 
3095
+ #: includes/admin/Settings.php:291
3096
+ msgid "Disable welcome wizard for newly registered vendors"
3097
  msgstr ""
3098
 
3099
+ #: includes/admin/Settings.php:300
3100
+ msgid "Vendor Store Options"
3101
  msgstr ""
3102
 
3103
+ #: includes/admin/Settings.php:305
3104
+ msgid "Store Terms and Conditions"
3105
  msgstr ""
3106
 
3107
+ #: includes/admin/Settings.php:306
3108
+ msgid "Enable Terms and Conditions for vendor stores"
3109
  msgstr ""
3110
 
3111
+ #: includes/admin/Settings.php:315
3112
+ msgid "Commission"
3113
  msgstr ""
3114
 
3115
+ #: includes/admin/Settings.php:320
3116
+ msgid "Commission Type "
3117
  msgstr ""
3118
 
3119
+ #: includes/admin/Settings.php:321
3120
+ msgid "Select a commission type for Vendor"
3121
  msgstr ""
3122
 
3123
+ #: includes/admin/Settings.php:328 src/admin/pages/VendorPaymentFields.vue:69
3124
+ #: src/admin/pages/VendorPaymentFields.vue:78
3125
+ #: templates/admin-setup-wizard/step-selling.php:31
3126
+ msgid "Admin Commission"
3127
  msgstr ""
3128
 
3129
+ #: includes/admin/Settings.php:329
3130
+ msgid "Amount you get from each sale"
3131
  msgstr ""
3132
 
3133
+ #: includes/admin/Settings.php:337
3134
+ #: templates/admin-setup-wizard/step-store.php:14
3135
+ msgid "Shipping Fee Recipient"
3136
  msgstr ""
3137
 
3138
+ #: includes/admin/Settings.php:338
3139
+ msgid "Who will be receiving the Shipping fees"
3140
  msgstr ""
3141
 
3142
+ #: includes/admin/Settings.php:340 includes/admin/Settings.php:348
3143
+ #: includes/admin/SetupWizard.php:320
3144
+ msgid "Admin"
3145
  msgstr ""
3146
 
3147
+ #: includes/admin/Settings.php:345
3148
+ #: templates/admin-setup-wizard/step-store.php:28
3149
+ msgid "Tax Fee Recipient"
3150
  msgstr ""
3151
 
3152
+ #: includes/admin/Settings.php:346
3153
+ msgid "Who will be receiving the Tax fees"
3154
  msgstr ""
3155
 
3156
+ #: includes/admin/Settings.php:356
3157
+ msgid "Vendor Capability"
3158
  msgstr ""
3159
 
3160
+ #: includes/admin/Settings.php:361
3161
+ msgid "New Vendor Product Upload"
3162
  msgstr ""
3163
 
3164
+ #: includes/admin/Settings.php:362
3165
+ msgid "Allow newly registered vendors to add products"
3166
  msgstr ""
3167
 
3168
+ #: includes/admin/Settings.php:368
3169
+ msgid "Disable Product Popup"
3170
  msgstr ""
3171
 
3172
+ #: includes/admin/Settings.php:369
3173
+ msgid "Disable add new product in popup view"
3174
  msgstr ""
3175
 
3176
+ #: includes/admin/Settings.php:375
3177
+ #: templates/admin-setup-wizard/step-selling.php:39
3178
+ msgid "Order Status Change"
3179
  msgstr ""
3180
 
3181
+ #: includes/admin/Settings.php:376
3182
+ msgid "Allow/Disallow vendor to update order status"
3183
  msgstr ""
3184
 
3185
+ #: includes/admin/Settings.php:394 includes/admin/SetupWizard.php:435
3186
+ msgid "Withdraw Methods"
3187
  msgstr ""
3188
 
3189
+ #: includes/admin/Settings.php:395
3190
+ msgid "Select suitable Withdraw methods for Vendors"
3191
  msgstr ""
3192
 
3193
+ #: includes/admin/Settings.php:402 includes/admin/SetupWizard.php:493
3194
+ msgid "Minimum Withdraw Limit"
3195
  msgstr ""
3196
 
3197
+ #: includes/admin/Settings.php:403
3198
  msgid ""
3199
+ "Minimum balance required to make a withdraw request. Leave blank to set no "
3200
+ "minimum limits."
3201
  msgstr ""
3202
 
3203
+ #: includes/admin/Settings.php:412
3204
+ msgid "Select a page to show Vendor Dashboard"
3205
  msgstr ""
3206
 
3207
+ #: includes/admin/Settings.php:414 includes/admin/Settings.php:422
3208
+ #: includes/admin/Settings.php:430 includes/admin/Settings.php:438
3209
+ #: includes/admin/Settings.php:532
3210
+ msgid "Select page"
3211
  msgstr ""
3212
 
3213
+ #: includes/admin/Settings.php:420
3214
+ msgid "Select a page to show My Orders"
3215
  msgstr ""
3216
 
3217
+ #: includes/admin/Settings.php:427
3218
+ msgid "Store Listing"
3219
  msgstr ""
3220
 
3221
+ #: includes/admin/Settings.php:428
3222
+ msgid "Select a page to show all Stores"
 
3223
  msgstr ""
3224
 
3225
+ #: includes/admin/Settings.php:435
3226
+ msgid "Terms and Conditions Page"
3227
  msgstr ""
3228
 
3229
+ #: includes/admin/Settings.php:436
3230
+ msgid "Select a page to show Terms and Conditions"
 
3231
  msgstr ""
3232
 
3233
+ #: includes/admin/Settings.php:440
3234
+ msgid ""
3235
+ "Select where you want to add Dokan pages <a target=\"_blank\" href=\"%s\"> "
3236
+ "Learn More </a>"
3237
  msgstr ""
3238
 
3239
+ #: includes/admin/Settings.php:446
3240
+ msgid "Show Map on Store Page"
 
3241
  msgstr ""
3242
 
3243
+ #: includes/admin/Settings.php:447
3244
+ msgid "Enable Map of the Store Location in the store sidebar"
3245
  msgstr ""
3246
 
3247
+ #: includes/admin/Settings.php:453
3248
+ #: templates/admin-setup-wizard/step-store.php:42
3249
+ msgid "Map API Source"
3250
  msgstr ""
3251
 
3252
+ #: includes/admin/Settings.php:454
3253
+ #: templates/admin-setup-wizard/step-store.php:52
3254
+ msgid "Which Map API source you want to use in your site?"
3255
  msgstr ""
3256
 
3257
+ #: includes/admin/Settings.php:459 includes/admin/SetupWizard.php:332
3258
+ msgid "Google Maps"
3259
  msgstr ""
3260
 
3261
+ #: includes/admin/Settings.php:460 includes/admin/SetupWizard.php:333
3262
+ msgid "Mapbox"
3263
  msgstr ""
3264
 
3265
+ #: includes/admin/Settings.php:470
3266
+ #: templates/admin-setup-wizard/step-store.php:56
3267
+ msgid "Google Map API Key"
3268
  msgstr ""
3269
 
3270
+ #: includes/admin/Settings.php:471
3271
+ msgid ""
3272
+ "<a href=\"https://developers.google.com/maps/documentation/javascript/\" "
3273
+ "target=\"_blank\" rel=\"noopener noreferrer\">API Key</a> is needed to "
3274
+ "display map on store page"
3275
  msgstr ""
3276
 
3277
+ #: includes/admin/Settings.php:481
3278
+ #: templates/admin-setup-wizard/step-store.php:71
3279
+ msgid "Mapbox Access Token"
3280
  msgstr ""
3281
 
3282
+ #: includes/admin/Settings.php:482
3283
+ #: templates/admin-setup-wizard/step-store.php:75
3284
+ msgid ""
3285
+ "<a href=\"https://docs.mapbox.com/help/how-mapbox-works/access-tokens/\" "
3286
+ "target=\"_blank\" rel=\"noopener noreferrer\">Access Token</a> is needed to "
3287
+ "display map on store page"
3288
  msgstr ""
3289
 
3290
+ #: includes/admin/Settings.php:487
3291
+ msgid "Show Contact Form on Store Page"
3292
  msgstr ""
3293
 
3294
+ #: includes/admin/Settings.php:488
3295
+ msgid "Display a vendor contact form in the store sidebar"
3296
  msgstr ""
3297
 
3298
+ #: includes/admin/Settings.php:494
3299
+ msgid "Store Header Template"
3300
  msgstr ""
3301
 
3302
+ #: includes/admin/Settings.php:506
3303
+ msgid "Store Opening Closing Time Widget"
3304
  msgstr ""
3305
 
3306
+ #: includes/admin/Settings.php:507
3307
+ msgid "Enable store opening & closing time widget in the store sidebar"
3308
  msgstr ""
3309
 
3310
+ #: includes/admin/Settings.php:513
3311
+ msgid "Enable Store Sidebar From Theme"
3312
  msgstr ""
3313
 
3314
+ #: includes/admin/Settings.php:514
3315
+ msgid "Enable showing Store Sidebar From Your Theme."
3316
  msgstr ""
3317
 
3318
+ #: includes/admin/Settings.php:522
3319
+ msgid "Enable Privacy Policy"
3320
  msgstr ""
3321
 
3322
+ #: includes/admin/Settings.php:524
3323
+ msgid "Enable privacy policy for Vendor store contact form"
3324
  msgstr ""
3325
 
3326
+ #: includes/admin/Settings.php:529
3327
+ msgid "Privacy Page"
3328
  msgstr ""
3329
 
3330
+ #: includes/admin/Settings.php:531
3331
+ msgid "Select a page to show your privacy policy"
3332
  msgstr ""
3333
 
3334
+ #: includes/admin/Settings.php:540 includes/functions.php:3488
3335
+ msgid ""
3336
+ "Your personal data will be used to support your experience throughout this "
3337
+ "website, to manage access to your account, and for other purposes described "
3338
+ "in our [dokan_privacy_policy]"
3339
  msgstr ""
3340
 
3341
+ #: includes/admin/SetupWizard.php:135 includes/admin/UserProfile.php:294
3342
+ msgid "Selling"
3343
  msgstr ""
3344
 
3345
+ #: includes/admin/SetupWizard.php:145
3346
+ msgid "Recommended"
3347
  msgstr ""
3348
 
3349
+ #: includes/admin/SetupWizard.php:227
3350
+ msgid "Dokan &rsaquo; Setup Wizard"
3351
  msgstr ""
3352
 
3353
+ #: includes/admin/SetupWizard.php:247 includes/admin/SetupWizardNoWC.php:96
3354
+ msgid "Return to the WordPress Dashboard"
3355
  msgstr ""
3356
 
3357
+ #: includes/admin/SetupWizard.php:294
3358
+ #: templates/admin-setup-wizard/step-no-wc-introduction.php:2
3359
+ msgid "Welcome to the world of Dokan!"
3360
  msgstr ""
3361
 
3362
+ #: includes/admin/SetupWizard.php:295
3363
+ msgid ""
3364
+ "Thank you for choosing Dokan to power your online marketplace! This quick "
3365
+ "setup wizard will help you configure the basic settings. <strong>It’s "
3366
+ "completely optional and shouldn’t take longer than three minutes.</strong>"
3367
  msgstr ""
3368
 
3369
+ #: includes/admin/SetupWizard.php:296
3370
+ msgid ""
3371
+ "No time right now? If you don’t want to go through the wizard, you can skip "
3372
+ "and return to the WordPress dashboard. Come back anytime if you change your "
3373
+ "mind!"
3374
  msgstr ""
3375
 
3376
+ #: includes/admin/SetupWizard.php:431
3377
+ msgid "Withdraw Setup"
3378
  msgstr ""
3379
 
3380
+ #: includes/admin/SetupWizard.php:445
3381
+ msgid "Enable PayPal for your vendor as a withdraw method"
3382
  msgstr ""
3383
 
3384
+ #: includes/admin/SetupWizard.php:455
3385
+ msgid "Bank"
3386
  msgstr ""
3387
 
3388
+ #: includes/admin/SetupWizard.php:458
3389
+ msgid "Enable bank transfer for your vendor as a withdraw method"
 
3390
  msgstr ""
3391
 
3392
+ #: includes/admin/SetupWizard.php:468
3393
+ msgid "Skrill"
 
3394
  msgstr ""
3395
 
3396
+ #: includes/admin/SetupWizard.php:471
3397
+ msgid "Enable skrill for your vendor as a withdraw method"
3398
  msgstr ""
3399
 
3400
+ #: includes/admin/SetupWizard.php:496
3401
  msgid ""
3402
+ "Minimum balance required to make a withdraw request ( Leave it blank to set "
3403
+ "no limits )"
3404
  msgstr ""
3405
 
3406
+ #: includes/admin/SetupWizard.php:500
3407
+ msgid "Order Status for Withdraw"
3408
  msgstr ""
3409
 
3410
+ #: includes/admin/SetupWizard.php:523
3411
+ msgid "Order status for which vendor can make a withdraw request."
3412
  msgstr ""
3413
 
3414
+ #: includes/admin/SetupWizard.php:545
3415
+ msgid "Recommended for All Dokan Marketplaces"
3416
  msgstr ""
3417
 
3418
+ #: includes/admin/SetupWizard.php:547
3419
+ msgid "Enhance your store with these recommended features."
3420
  msgstr ""
3421
 
3422
+ #: includes/admin/SetupWizard.php:557 includes/admin/SetupWizard.php:561
3423
+ #: includes/admin/SetupWizard.php:604
3424
+ msgid "WooCommerce Conversion Tracking"
3425
  msgstr ""
3426
 
3427
+ #: includes/admin/SetupWizard.php:558
3428
+ msgid "Track conversions on your WooCommerce store like a pro!"
3429
  msgstr ""
3430
 
3431
+ #: includes/admin/SetupWizard.php:560
3432
+ msgid "WooCommerce Conversion Tracking logo"
3433
  msgstr ""
3434
 
3435
+ #: includes/admin/SetupWizard.php:568 includes/admin/SetupWizard.php:572
3436
+ #: includes/admin/SetupWizard.php:615
3437
+ msgid "weForms"
3438
  msgstr ""
3439
 
3440
+ #: includes/admin/SetupWizard.php:569
3441
+ msgid "Best Contact Form Plugin for WordPress."
 
3442
  msgstr ""
3443
 
3444
+ #: includes/admin/SetupWizard.php:571
3445
+ msgid "weForms logo"
3446
  msgstr ""
3447
 
3448
+ #: includes/admin/SetupWizard.php:675
3449
+ msgid "Your Marketplace is Ready!"
3450
  msgstr ""
3451
 
3452
+ #: includes/admin/SetupWizard.php:680
3453
+ msgid "Visit Dokan Dashboard"
3454
  msgstr ""
3455
 
3456
+ #: includes/admin/SetupWizard.php:681
3457
+ msgid "More Settings"
 
3458
  msgstr ""
3459
 
3460
+ #: includes/admin/SetupWizard.php:782
3461
+ msgid "The following plugins will be installed and activated for you:"
3462
  msgstr ""
3463
 
3464
+ #: includes/admin/SetupWizard.php:914
3465
+ msgid "Contact Admin"
3466
  msgstr ""
3467
 
3468
+ #: includes/admin/SetupWizardNoWC.php:20
3469
+ msgid "Welcome to Dokan"
3470
  msgstr ""
3471
 
3472
+ #: includes/admin/SetupWizardNoWC.php:133
3473
+ msgid "Error installing WooCommerce plugin"
3474
  msgstr ""
3475
 
3476
+ #: includes/admin/SetupWizardWCAdmin.php:75
3477
+ #. translators: %s: country name including the 'the' prefix if needed
3478
+ msgid ""
3479
+ "We've created two Shipping Zones - for %s and for the rest of the world. "
3480
+ "Below you can set Flat Rate shipping costs for these Zones or offer Free "
3481
+ "Shipping."
3482
  msgstr ""
3483
 
3484
+ #: includes/admin/SetupWizardWCAdmin.php:96
3485
+ #: includes/admin/SetupWizardWCAdmin.php:107
3486
+ msgid "Did you know you can print shipping labels at home?"
3487
  msgstr ""
3488
 
3489
+ #: includes/admin/SetupWizardWCAdmin.php:97
3490
+ msgid ""
3491
+ "Use WooCommerce Shipping (powered by WooCommerce Services & Jetpack) to "
3492
+ "save time at the post office by printing your shipping labels at home."
3493
  msgstr ""
3494
 
3495
+ #: includes/admin/SetupWizardWCAdmin.php:99
3496
+ msgid "WooCommerce Services icon"
3497
  msgstr ""
3498
 
3499
+ #: includes/admin/SetupWizardWCAdmin.php:108
3500
+ msgid ""
3501
+ "We recommend using ShipStation to save time at the post office by printing "
3502
+ "your shipping labels at home. Try ShipStation free for 30 days."
3503
  msgstr ""
3504
 
3505
+ #: includes/admin/SetupWizardWCAdmin.php:110
3506
+ msgid "ShipStation icon"
 
3507
  msgstr ""
3508
 
3509
+ #: includes/admin/SetupWizardWCAdmin.php:113
3510
+ msgid "ShipStation"
3511
  msgstr ""
3512
 
3513
+ #: includes/admin/SetupWizardWCAdmin.php:128
3514
+ msgid "Shipping Zone"
3515
  msgstr ""
3516
 
3517
+ #: includes/admin/SetupWizardWCAdmin.php:131
3518
+ msgid "Shipping Method"
3519
  msgstr ""
3520
 
3521
+ #: includes/admin/SetupWizardWCAdmin.php:156
3522
+ msgid "Locations not covered by your other zones"
3523
+ msgstr ""
3524
+
3525
+ #: includes/admin/SetupWizardWCAdmin.php:180
3526
+ #. translators: %1$s: live rates tooltip text, %2$s: shipping extensions URL
3527
  msgid ""
3528
+ "If you'd like to offer <span class=\"help_tip\" data-tip=\"%1$s\">live "
3529
+ "rates</span> from a specific carrier (e.g. UPS) you can find a variety of "
3530
+ "extensions available for WooCommerce <a href=\"%2$s\" "
3531
+ "target=\"_blank\">here</a>."
3532
  msgstr ""
3533
 
3534
+ #: includes/admin/SetupWizardWCAdmin.php:192
3535
+ msgid ""
3536
+ "A live rate is the exact cost to ship an order, quoted directly from the "
3537
+ "shipping carrier."
3538
  msgstr ""
3539
 
3540
+ #: includes/admin/SetupWizardWCAdmin.php:207
3541
+ #. translators: %1$s: weight unit dropdown, %2$s: dimension unit dropdown
3542
+ msgid "We'll use %1$s for product weight and %2$s for product dimensions."
3543
  msgstr ""
3544
 
3545
+ #: includes/admin/UserProfile.php:92
3546
+ msgid "Select a country&hellip;"
3547
  msgstr ""
3548
 
3549
+ #: includes/admin/UserProfile.php:95
3550
+ msgid "State/County"
3551
  msgstr ""
3552
 
3553
+ #: includes/admin/UserProfile.php:96
3554
+ msgid "State/County or state code"
3555
  msgstr ""
3556
 
3557
+ #: includes/admin/UserProfile.php:101
3558
+ msgid "Dokan Options"
3559
  msgstr ""
3560
 
3561
+ #: includes/admin/UserProfile.php:106
3562
+ msgid "Banner"
3563
  msgstr ""
3564
 
3565
+ #: includes/admin/UserProfile.php:118 templates/settings/store-form.php:74
3566
+ msgid "Upload banner"
3567
  msgstr ""
3568
 
3569
+ #: includes/admin/UserProfile.php:122
3570
+ msgid "Upload a banner for your store. Banner size is (%1$sx%2$s) pixels."
3571
  msgstr ""
3572
 
3573
+ #: includes/admin/UserProfile.php:134
3574
+ msgid "Store name"
3575
  msgstr ""
3576
 
3577
+ #: includes/admin/UserProfile.php:141
3578
+ #: src/admin/pages/VendorAccountFields.vue:53
3579
+ msgid "Store URL"
3580
  msgstr ""
3581
 
3582
+ #: includes/admin/UserProfile.php:163
3583
+ msgid "Town/City"
3584
  msgstr ""
3585
 
3586
+ #: includes/admin/UserProfile.php:170
3587
+ msgid "Zip Code"
3588
  msgstr ""
3589
 
3590
+ #: includes/admin/UserProfile.php:211
3591
+ #: src/admin/pages/VendorAccountFields.vue:64
3592
+ #: templates/account/vendor-registration.php:33
3593
+ #: templates/global/seller-registration-form.php:38
3594
+ msgid "Phone Number"
3595
  msgstr ""
3596
 
3597
+ #: includes/admin/UserProfile.php:229
3598
+ msgid "Payment Options : "
3599
  msgstr ""
3600
 
3601
+ #: includes/admin/UserProfile.php:234
3602
+ msgid "Paypal Email "
3603
  msgstr ""
3604
 
3605
+ #: includes/admin/UserProfile.php:242
3606
+ msgid "Skrill Email "
 
3607
  msgstr ""
3608
 
3609
+ #: includes/admin/UserProfile.php:251
3610
+ msgid "Bank name "
3611
  msgstr ""
3612
 
3613
+ #: includes/admin/UserProfile.php:257
3614
+ msgid "Account Name "
3615
  msgstr ""
3616
 
3617
+ #: includes/admin/UserProfile.php:263
3618
+ msgid "Account Number "
3619
  msgstr ""
3620
 
3621
+ #: includes/admin/UserProfile.php:269
3622
+ msgid "Bank Address "
3623
  msgstr ""
3624
 
3625
+ #: includes/admin/UserProfile.php:281
3626
+ msgid "Bank IBAN "
3627
  msgstr ""
3628
 
3629
+ #: includes/admin/UserProfile.php:287
3630
+ msgid "Bank Swift "
3631
  msgstr ""
3632
 
3633
+ #: includes/admin/UserProfile.php:299
3634
+ msgid "Enable Adding Products"
3635
  msgstr ""
3636
 
3637
+ #: includes/admin/UserProfile.php:302
3638
+ msgid "Enable or disable product adding capability"
3639
  msgstr ""
3640
 
3641
+ #: includes/admin/UserProfile.php:307
3642
+ msgid "Publishing"
 
 
 
3643
  msgstr ""
3644
 
3645
+ #: includes/admin/UserProfile.php:312
3646
+ msgid "Publish product directly"
 
 
3647
  msgstr ""
3648
 
3649
+ #: includes/admin/UserProfile.php:315
3650
+ msgid "Bypass pending, publish products directly"
 
3651
  msgstr ""
3652
 
3653
+ #: includes/admin/UserProfile.php:320
3654
+ msgid "Admin Commission Type "
3655
  msgstr ""
3656
 
3657
+ #: includes/admin/UserProfile.php:327
3658
+ msgid "Set the commmission type admin gets from this seller"
3659
  msgstr ""
3660
 
3661
+ #: includes/admin/UserProfile.php:331
3662
+ msgid "Admin Commission "
 
 
 
3663
  msgstr ""
3664
 
3665
+ #: includes/admin/UserProfile.php:335
3666
+ msgid "It will override the default commission admin gets from each sales"
3667
  msgstr ""
3668
 
3669
+ #: includes/admin/UserProfile.php:340
3670
+ msgid "Featured vendor"
3671
  msgstr ""
3672
 
3673
+ #: includes/admin/UserProfile.php:345
3674
+ msgid "Mark as featured vendor"
 
 
3675
  msgstr ""
3676
 
3677
+ #: includes/admin/UserProfile.php:348
3678
+ msgid "This vendor will be marked as a featured vendor."
3679
  msgstr ""
3680
 
3681
+ #: includes/admin/functions.php:218 includes/admin/functions.php:492
3682
+ msgid "Total: "
3683
  msgstr ""
3684
 
3685
+ #: includes/admin/functions.php:228 includes/admin/functions.php:502
3686
+ msgid "sales"
3687
  msgstr ""
3688
 
3689
+ #: includes/admin/functions.php:238 includes/admin/functions.php:512
3690
+ msgid "Commision: "
3691
  msgstr ""
3692
 
3693
+ #: includes/emails/ContactSeller.php:22
3694
+ msgid "Dokan Contact Vendor"
3695
  msgstr ""
3696
 
3697
+ #: includes/emails/ContactSeller.php:23
3698
+ msgid ""
3699
+ "These emails are sent to a vendor who is contacted by customer via contact "
3700
+ "form widget "
3701
  msgstr ""
3702
 
3703
+ #: includes/emails/ContactSeller.php:45
3704
+ msgid "[{customer_name}] sent you a message from your store at - {site_name}"
3705
  msgstr ""
3706
 
3707
+ #: includes/emails/ContactSeller.php:55
3708
+ msgid "{customer_name} - Sent a message from {site_name}"
3709
  msgstr ""
3710
 
3711
+ #: includes/emails/ContactSeller.php:131 includes/emails/NewProduct.php:159
3712
+ #: includes/emails/NewProductPending.php:151 includes/emails/NewSeller.php:136
3713
+ #: includes/emails/ProductPublished.php:144
3714
+ #: includes/emails/VendorWithdrawRequest.php:144
3715
+ #: includes/emails/WithdrawApproved.php:140
3716
+ #: includes/emails/WithdrawCancelled.php:140
3717
+ msgid "Enable/Disable"
 
3718
  msgstr ""
3719
 
3720
+ #: includes/emails/ContactSeller.php:133 includes/emails/NewProduct.php:161
3721
+ #: includes/emails/NewProductPending.php:153 includes/emails/NewSeller.php:138
3722
+ #: includes/emails/ProductPublished.php:146
3723
+ #: includes/emails/VendorWithdrawRequest.php:146
3724
+ #: includes/emails/WithdrawApproved.php:142
3725
+ #: includes/emails/WithdrawCancelled.php:142
3726
+ msgid "Enable this email notification"
3727
  msgstr ""
3728
 
3729
+ #: includes/emails/ContactSeller.php:138 includes/emails/NewProduct.php:173
3730
+ #: includes/emails/NewProductPending.php:165 includes/emails/NewSeller.php:150
3731
+ #: includes/emails/ProductPublished.php:151
3732
+ #: includes/emails/VendorWithdrawRequest.php:158
3733
+ #: includes/emails/WithdrawApproved.php:146
3734
+ #: includes/emails/WithdrawCancelled.php:146
3735
+ msgid "Subject"
3736
  msgstr ""
3737
 
3738
+ #: includes/emails/ContactSeller.php:142 includes/emails/ContactSeller.php:151
3739
+ #: includes/emails/NewProduct.php:177 includes/emails/NewProduct.php:186
3740
+ #: includes/emails/NewProductPending.php:169
3741
+ #: includes/emails/NewProductPending.php:178 includes/emails/NewSeller.php:154
3742
+ #: includes/emails/NewSeller.php:163 includes/emails/ProductPublished.php:155
3743
+ #: includes/emails/ProductPublished.php:164
3744
+ #: includes/emails/VendorWithdrawRequest.php:162
3745
+ #: includes/emails/VendorWithdrawRequest.php:171
3746
+ #: includes/emails/WithdrawApproved.php:150
3747
+ #: includes/emails/WithdrawApproved.php:159
3748
+ #: includes/emails/WithdrawCancelled.php:150
3749
+ #: includes/emails/WithdrawCancelled.php:159
3750
+ #. translators: %s: list of placeholders
3751
+ msgid "Available placeholders: %s"
3752
  msgstr ""
3753
 
3754
+ #: includes/emails/ContactSeller.php:147 includes/emails/NewProduct.php:182
3755
+ #: includes/emails/NewProductPending.php:174 includes/emails/NewSeller.php:159
3756
+ #: includes/emails/ProductPublished.php:160
3757
+ #: includes/emails/VendorWithdrawRequest.php:167
3758
+ #: includes/emails/WithdrawApproved.php:155
3759
+ #: includes/emails/WithdrawCancelled.php:155
3760
+ msgid "Email heading"
 
3761
  msgstr ""
3762
 
3763
+ #: includes/emails/ContactSeller.php:156 includes/emails/NewProduct.php:191
3764
+ #: includes/emails/NewProductPending.php:183 includes/emails/NewSeller.php:168
3765
+ #: includes/emails/ProductPublished.php:169
3766
+ #: includes/emails/VendorWithdrawRequest.php:176
3767
+ #: includes/emails/WithdrawApproved.php:164
3768
+ #: includes/emails/WithdrawCancelled.php:164
3769
+ msgid "Email type"
3770
  msgstr ""
3771
 
3772
+ #: includes/emails/ContactSeller.php:158 includes/emails/NewProduct.php:193
3773
+ #: includes/emails/NewProductPending.php:185 includes/emails/NewSeller.php:170
3774
+ #: includes/emails/ProductPublished.php:171
3775
+ #: includes/emails/VendorWithdrawRequest.php:178
3776
+ #: includes/emails/WithdrawApproved.php:166
3777
+ #: includes/emails/WithdrawCancelled.php:166
3778
+ msgid "Choose which format of email to send."
3779
  msgstr ""
3780
 
3781
+ #: includes/emails/Manager.php:195
3782
+ msgid "\"%s\" sent you a message from your \"%s\" store"
3783
  msgstr ""
3784
 
3785
+ #: includes/emails/Manager.php:244
3786
+ msgid "[%s] Refund Request %s"
3787
  msgstr ""
3788
 
3789
+ #: includes/emails/Manager.php:278
3790
+ msgid "[%s] New Refund Request"
3791
  msgstr ""
3792
 
3793
+ #: includes/emails/Manager.php:335
3794
+ msgid "[%s] New Withdraw Request"
3795
  msgstr ""
3796
 
3797
+ #: includes/emails/Manager.php:357
3798
+ msgid "[%s] Your Withdraw Request has been approved"
3799
  msgstr ""
3800
 
3801
+ #: includes/emails/Manager.php:380
3802
+ msgid "[%s] Your Withdraw Request has been cancelled"
 
3803
  msgstr ""
3804
 
3805
+ #: includes/emails/Manager.php:419
3806
+ msgid "[%s] New Vendor Registered"
3807
  msgstr ""
3808
 
3809
+ #: includes/emails/Manager.php:472
3810
+ msgid "[%s] New Product Added"
3811
  msgstr ""
3812
 
3813
+ #: includes/emails/Manager.php:512
3814
+ msgid "[%s] Your product has been approved!"
 
3815
  msgstr ""
3816
 
3817
+ #: includes/emails/NewProduct.php:24
3818
+ msgid "Dokan New Product"
3819
  msgstr ""
3820
 
3821
+ #: includes/emails/NewProduct.php:25
3822
+ msgid ""
3823
+ "New Product emails are sent to chosen recipient(s) when a new product is "
3824
+ "created by vendors."
3825
  msgstr ""
3826
 
3827
+ #: includes/emails/NewProduct.php:47
3828
+ msgid "[{site_name}] A New product is added by ({seller_name}) - {product_title}"
 
3829
  msgstr ""
3830
 
3831
+ #: includes/emails/NewProduct.php:57
3832
+ msgid "New product added by Vendor {seller_name}"
3833
  msgstr ""
3834
 
3835
+ #: includes/emails/NewProduct.php:165 includes/emails/NewProductPending.php:157
3836
+ #: includes/emails/NewSeller.php:142
3837
+ #: includes/emails/VendorWithdrawRequest.php:150
3838
+ msgid "Recipient(s)"
3839
  msgstr ""
3840
 
3841
+ #: includes/emails/NewProduct.php:167 includes/emails/NewProductPending.php:159
3842
+ #: includes/emails/NewSeller.php:144
3843
+ #: includes/emails/VendorWithdrawRequest.php:152
3844
+ msgid "Enter recipients (comma separated) for this email. Defaults to %s."
3845
  msgstr ""
3846
 
3847
+ #: includes/emails/NewProductPending.php:25
3848
+ msgid "Dokan New Pending Product"
3849
  msgstr ""
3850
 
3851
+ #: includes/emails/NewProductPending.php:26
3852
+ msgid ""
3853
+ "New Pending Product emails are sent to chosen recipient(s) when a new "
3854
+ "product is created by vendors."
3855
  msgstr ""
3856
 
3857
+ #: includes/emails/NewProductPending.php:48
3858
+ msgid ""
3859
+ "[{site_title}] A New product is pending from ({seller_name}) - "
3860
+ "{product_title}"
3861
  msgstr ""
3862
 
3863
+ #: includes/emails/NewProductPending.php:58
3864
+ msgid "New pending product added by Vendor {seller_name}"
3865
  msgstr ""
3866
 
3867
+ #: includes/emails/NewSeller.php:22
3868
+ msgid "Dokan New Seller Registered"
3869
  msgstr ""
3870
 
3871
+ #: includes/emails/NewSeller.php:23
3872
+ msgid ""
3873
+ "These emails are sent to chosen recipient(s) when a new vendor registers in "
3874
+ "marketplace"
3875
  msgstr ""
3876
 
3877
+ #: includes/emails/NewSeller.php:45
3878
+ msgid "[{site_name}] A New vendor has registered"
3879
  msgstr ""
3880
 
3881
+ #: includes/emails/NewSeller.php:55
3882
+ msgid "New Vendor Registered - {seller_name}"
3883
  msgstr ""
3884
 
3885
+ #: includes/emails/ProductPublished.php:24
3886
+ msgid "Dokan Pending Product Published"
3887
  msgstr ""
3888
 
3889
+ #: includes/emails/ProductPublished.php:25
3890
+ msgid ""
3891
+ "These emails are sent to vendor of the product when a pending product is "
3892
+ "published."
3893
  msgstr ""
3894
 
3895
+ #: includes/emails/ProductPublished.php:47
3896
+ msgid "[{site_name}] Your product - {product_title} - is now published"
3897
  msgstr ""
3898
 
3899
+ #: includes/emails/ProductPublished.php:57
3900
+ msgid "{product_title} - is published"
3901
  msgstr ""
3902
 
3903
+ #: includes/emails/VendorWithdrawRequest.php:24
3904
+ msgid "Dokan New Withdrawal Request"
3905
  msgstr ""
3906
 
3907
+ #: includes/emails/VendorWithdrawRequest.php:25
3908
+ msgid ""
3909
+ "These emails are sent to chosen recipient(s) when a vendor send request to "
3910
+ "withdraw"
3911
  msgstr ""
3912
 
3913
+ #: includes/emails/VendorWithdrawRequest.php:47
3914
+ msgid "[{site_name}] A New withdrawal request is made by {user_name}"
3915
  msgstr ""
3916
 
3917
+ #: includes/emails/VendorWithdrawRequest.php:57
3918
+ msgid "New Withdraw Request from - {user_name}"
3919
  msgstr ""
3920
 
3921
+ #: includes/emails/WithdrawApproved.php:24
3922
+ msgid "Dokan Withdraw Approved"
3923
  msgstr ""
3924
 
3925
+ #: includes/emails/WithdrawApproved.php:25
3926
+ msgid "These emails are sent to vendor when a vendor withdraw request is approved"
3927
  msgstr ""
3928
 
3929
+ #: includes/emails/WithdrawApproved.php:47
3930
+ msgid "[{site_name}] Your withdrawal request was approved"
3931
  msgstr ""
3932
 
3933
+ #: includes/emails/WithdrawApproved.php:57
3934
+ msgid "Withdrawal request for {amount} is approved"
3935
  msgstr ""
3936
 
3937
+ #: includes/emails/WithdrawCancelled.php:24
3938
+ msgid "Dokan Withdraw cancelled"
3939
  msgstr ""
3940
 
3941
+ #: includes/emails/WithdrawCancelled.php:25
3942
+ msgid "These emails are sent to vendor when a vendor withdraw request is cancelled"
3943
  msgstr ""
3944
 
3945
+ #: includes/emails/WithdrawCancelled.php:47
3946
+ msgid "[{site_name}] Your withdrawal request was cancelled"
3947
  msgstr ""
3948
 
3949
+ #: includes/emails/WithdrawCancelled.php:57
3950
+ msgid "Withdrawal request for {amount} is cancelled"
3951
  msgstr ""
3952
 
3953
  #: includes/functions.php:762 templates/products/others.php:16
4385
  msgid "Log out"
4386
  msgstr ""
4387
 
4388
+ #: includes/traits/AjaxResponseError.php:32
4389
+ #: includes/traits/RESTResponseError.php:30
4390
+ msgid "Something went wrong"
4391
+ msgstr ""
4392
+
4393
  #: includes/wc-functions.php:103
4394
  msgid "Product SKU must be unique"
4395
  msgstr ""
4477
  msgid "Go to Vendor Dashboard"
4478
  msgstr ""
4479
 
4480
+ #: includes/widgets/BestSellingProducts.php:58
4481
+ msgid "Best Selling Product"
4482
  msgstr ""
4483
 
4484
+ #: includes/widgets/BestSellingProducts.php:65
4485
+ #: includes/widgets/ProductCategoryMenu.php:119
4486
+ #: includes/widgets/StoreCategoryMenu.php:122
4487
+ #: includes/widgets/StoreContactForm.php:120
4488
+ #: includes/widgets/StoreLocation.php:104
4489
+ #: includes/widgets/StoreOpenClose.php:111
4490
+ #: includes/widgets/TopratedProducts.php:64
4491
+ msgid "Title:"
4492
  msgstr ""
4493
 
4494
+ #: includes/widgets/BestSellingProducts.php:69
4495
+ #: includes/widgets/TopratedProducts.php:68
4496
+ msgid "No of Product:"
4497
  msgstr ""
4498
 
4499
+ #: includes/widgets/BestSellingProducts.php:74
4500
+ #: includes/widgets/TopratedProducts.php:73
4501
+ msgid "Show Product Rating"
 
4502
  msgstr ""
4503
 
4504
+ #: includes/widgets/BestSellingProducts.php:78
4505
+ msgid "Hide Out of Stock"
4506
  msgstr ""
4507
 
4508
+ #: includes/widgets/ProductCategoryMenu.php:16
4509
+ msgid "Dokan product category menu"
 
4510
  msgstr ""
4511
 
4512
+ #: includes/widgets/ProductCategoryMenu.php:113
4513
+ msgid "Product Category"
4514
  msgstr ""
4515
 
4516
+ #: includes/widgets/StoreCategoryMenu.php:15
4517
+ msgid "Dokan Seller Store Menu"
4518
  msgstr ""
4519
 
4520
+ #: includes/widgets/StoreCategoryMenu.php:16
4521
+ msgid "Dokan: Store Category Menu"
4522
  msgstr ""
4523
 
4524
+ #: includes/widgets/StoreCategoryMenu.php:33
4525
+ #: includes/widgets/StoreCategoryMenu.php:116 templates/store-sidebar.php:15
4526
+ msgid "Store Product Category"
4527
+ msgstr ""
4528
+
4529
+ #: includes/widgets/StoreContactForm.php:22
4530
+ msgid "Dokan Vendor Contact Form"
4531
+ msgstr ""
4532
+
4533
+ #: includes/widgets/StoreContactForm.php:23
4534
+ msgid "Dokan: Store Contact Form"
4535
+ msgstr ""
4536
+
4537
+ #: includes/widgets/StoreContactForm.php:40
4538
+ #: includes/widgets/StoreContactForm.php:114 templates/store-sidebar.php:27
4539
+ msgid "Contact Vendor"
4540
+ msgstr ""
4541
+
4542
+ #: includes/widgets/StoreLocation.php:22
4543
+ msgid "Dokan Vendor Store Location"
4544
+ msgstr ""
4545
+
4546
+ #: includes/widgets/StoreLocation.php:23
4547
+ msgid "Dokan: Store Location"
4548
+ msgstr ""
4549
+
4550
+ #: includes/widgets/StoreLocation.php:40 includes/widgets/StoreLocation.php:98
4551
+ #: templates/store-sidebar.php:19
4552
+ msgid "Store Location"
4553
+ msgstr ""
4554
+
4555
+ #: includes/widgets/StoreOpenClose.php:21
4556
+ msgid "Dokan Store Opening Closing Time"
4557
+ msgstr ""
4558
+
4559
+ #: includes/widgets/StoreOpenClose.php:22
4560
+ msgid "Dokan: Store Opening Closing Time Widget"
4561
+ msgstr ""
4562
+
4563
+ #: includes/widgets/StoreOpenClose.php:38
4564
+ #: includes/widgets/StoreOpenClose.php:105 templates/store-sidebar.php:23
4565
+ msgid "Store Time"
4566
+ msgstr ""
4567
+
4568
+ #: includes/widgets/TopratedProducts.php:13
4569
+ msgid "Dokan: Top Rated Product Widget"
4570
+ msgstr ""
4571
+
4572
+ #: includes/widgets/TopratedProducts.php:14
4573
+ msgid "A Widget for displaying To rated products for dokan"
4574
+ msgstr ""
4575
+
4576
+ #: includes/widgets/TopratedProducts.php:57
4577
+ msgid "Top Rated Product"
4578
+ msgstr ""
4579
+
4580
+ #: includes/woo-views/html-product-download.php:3
4581
+ msgid "File Name"
4582
+ msgstr ""
4583
+
4584
+ #: includes/woo-views/html-product-download.php:7
4585
+ msgid "http://"
4586
+ msgstr ""
4587
+
4588
+ #: includes/woo-views/html-product-download.php:8
4589
+ msgid "Choose file"
4590
  msgstr ""
4591
 
4592
  #: lib/class.category-walker.php:13
5594
  msgstr ""
5595
 
5596
  #: templates/orders/date-export.php:36
5597
+ msgid "Filter by registered customer"
5598
  msgstr ""
5599
 
5600
  #: templates/orders/date-export.php:39 templates/products/listing-filter.php:48
5968
  msgid "Allow but notify customer"
5969
  msgstr ""
5970
 
5971
+ #: templates/products/inventory.php:55
5972
+ #: vendor/appsero/client/src/Insights.php:381
5973
+ msgid "Allow"
5974
+ msgstr ""
5975
+
5976
  #: templates/products/inventory.php:65
5977
  msgid "Allow only one quantity of this product to be bought in a single order"
5978
  msgstr ""
6535
  msgid "Cancelled Requests"
6536
  msgstr ""
6537
 
6538
+ #: vendor/appsero/client/src/Insights.php:369
6539
+ msgid ""
6540
+ "Want to help make <strong>%1$s</strong> even more awesome? Allow %1$s to "
6541
+ "collect non-sensitive diagnostic data and usage information."
6542
+ msgstr ""
6543
+
6544
+ #: vendor/appsero/client/src/Insights.php:374
6545
+ msgid "what we collect"
6546
+ msgstr ""
6547
+
6548
+ #: vendor/appsero/client/src/Insights.php:382
6549
+ msgid "No thanks"
6550
+ msgstr ""
6551
+
6552
+ #: vendor/appsero/client/src/Insights.php:747
6553
+ msgid "If you have a moment, please let us know why you are deactivating:"
6554
+ msgstr ""
6555
+
6556
+ #: vendor/appsero/client/src/Insights.php:762
6557
+ msgid "I rather wouldn't say"
6558
+ msgstr ""
6559
+
6560
+ #: vendor/appsero/client/src/Insights.php:763
6561
+ msgid "Submit & Deactivate"
6562
+ msgstr ""
6563
+
6564
  #. Plugin URI of the plugin/theme
6565
  msgid "https://wordpress.org/plugins/dokan-lite/"
6566
  msgstr ""
6579
  msgid "https://wedevs.com/"
6580
  msgstr ""
6581
 
6582
+ #: includes/Product/functions.php:284
6583
+ msgctxt "number of pages"
6584
+ msgid "of"
6585
+ msgstr ""
6586
+
6587
+ #: includes/admin/SetupWizard.php:57
6588
  msgctxt "enhanced select"
6589
  msgid "One result is available, press enter to select it."
6590
  msgstr ""
6591
 
6592
+ #: includes/admin/SetupWizard.php:58
6593
  msgctxt "enhanced select"
6594
  msgid "%qty% results are available, use up and down arrow keys to navigate."
6595
  msgstr ""
6596
 
6597
+ #: includes/admin/SetupWizard.php:59
6598
  msgctxt "enhanced select"
6599
  msgid "No matches found"
6600
  msgstr ""
6601
 
6602
+ #: includes/admin/SetupWizard.php:60
6603
  msgctxt "enhanced select"
6604
  msgid "Loading failed"
6605
  msgstr ""
6606
 
6607
+ #: includes/admin/SetupWizard.php:61
6608
  msgctxt "enhanced select"
6609
  msgid "Please enter 1 or more characters"
6610
  msgstr ""
6611
 
6612
+ #: includes/admin/SetupWizard.php:62
6613
  msgctxt "enhanced select"
6614
  msgid "Please enter %qty% or more characters"
6615
  msgstr ""
6616
 
6617
+ #: includes/admin/SetupWizard.php:63
6618
  msgctxt "enhanced select"
6619
  msgid "Please delete 1 character"
6620
  msgstr ""
6621
 
6622
+ #: includes/admin/SetupWizard.php:64
6623
  msgctxt "enhanced select"
6624
  msgid "Please delete %qty% characters"
6625
  msgstr ""
6626
 
6627
+ #: includes/admin/SetupWizard.php:65
6628
  msgctxt "enhanced select"
6629
  msgid "You can only select 1 item"
6630
  msgstr ""
6631
 
6632
+ #: includes/admin/SetupWizard.php:66
6633
  msgctxt "enhanced select"
6634
  msgid "You can only select %qty% items"
6635
  msgstr ""
6636
 
6637
+ #: includes/admin/SetupWizard.php:67
6638
  msgctxt "enhanced select"
6639
  msgid "Loading more results&hellip;"
6640
  msgstr ""
6641
 
6642
+ #: includes/admin/SetupWizard.php:68
6643
  msgctxt "enhanced select"
6644
  msgid "Searching&hellip;"
6645
  msgstr ""
6646
 
 
 
 
 
 
6647
  #: includes/template-tags.php:45
6648
  msgctxt "Previous post link"
6649
  msgid "&larr;"
lib/class.category-walker.php CHANGED
@@ -10,7 +10,7 @@ class DokanCategoryWalker extends CategoryDropdownSingle {
10
  * @param int $post_id
11
  */
12
  public function __construct( $post_id ) {
13
- dokan_doing_it_wrong( self::class, __( 'Use `WeDevs\Dokan\Walkers\CategoryDropdownSingle` instead.', 'dokan-lite' ), 'Dokan:DOKAN_LITE_SINCE' );
14
  parent::__construct( $post_id );
15
  }
16
  }
10
  * @param int $post_id
11
  */
12
  public function __construct( $post_id ) {
13
+ dokan_doing_it_wrong( self::class, __( 'Use `WeDevs\Dokan\Walkers\CategoryDropdownSingle` instead.', 'dokan-lite' ), 'Dokan:3.0.0' );
14
  parent::__construct( $post_id );
15
  }
16
  }
lib/class.taxonomy-walker.php CHANGED
@@ -14,7 +14,7 @@ class DokanTaxonomyWalker extends TaxonomyDropdown {
14
  * @param int $post_id
15
  */
16
  public function __construct( $post_id = '' ) {
17
- // dokan_doing_it_wrong( self::class, __( 'Use `WeDevs\Dokan\Walkers\TaxonomyDropdown` instead.', 'dokan-lite' ), 'Dokan:DOKAN_LITE_SINCE' );
18
  parent::__construct( $post_id );
19
  }
20
  }
14
  * @param int $post_id
15
  */
16
  public function __construct( $post_id = '' ) {
17
+ // dokan_doing_it_wrong( self::class, __( 'Use `WeDevs\Dokan\Walkers\TaxonomyDropdown` instead.', 'dokan-lite' ), 'Dokan:3.0.0' );
18
  parent::__construct( $post_id );
19
  }
20
  }
package.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "dokan",
3
- "version": "3.0.0",
4
  "description": "A WordPress marketplace plugin",
5
  "author": "weDevs",
6
  "license": "GPL",
1
  {
2
  "name": "dokan",
3
+ "version": "3.0.1",
4
  "description": "A WordPress marketplace plugin",
5
  "author": "weDevs",
6
  "license": "GPL",
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tested up to: 5.3.2
7
  WC requires at least: 3.0
8
  WC tested up to: 3.9.1
9
  Requires PHP: 5.6
10
- Stable tag: 3.0.0
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -291,6 +291,13 @@ A. Just install and activate the PRO version without deleting the free plugin. A
291
 
292
  == Changelog ==
293
 
 
 
 
 
 
 
 
294
  = v3.0.0 (February 03, 2020) =
295
 
296
  - **Fix:** Add mapbox option in dokan admin setup wizard
7
  WC requires at least: 3.0
8
  WC tested up to: 3.9.1
9
  Requires PHP: 5.6
10
+ Stable tag: 3.0.1
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
291
 
292
  == Changelog ==
293
 
294
+ = v3.0.1 (February 07, 2020) =
295
+
296
+ - **Fix:** Fixed yoast seo causing conflict issue in single store page
297
+ - **Fix:** Permission issue fixed for shop manager
298
+ - **Fix:** Handle sales price error if its greater than regular price or empty
299
+ - **Fix:** Change placholder text for filter by customer to registered customer
300
+
301
  = v3.0.0 (February 03, 2020) =
302
 
303
  - **Fix:** Add mapbox option in dokan admin setup wizard
templates/orders/date-export.php CHANGED
@@ -33,7 +33,7 @@ $order_status = isset( $_GET['order_status'] ) ? sanitize_key( $_GET['order_stat
33
  <form action="" method="GET" class="dokan-left">
34
  <div class="dokan-form-group">
35
  <input type="text" class="datepicker" style="width:120px; padding-bottom:7px" name="order_date" id="order_date_filter" placeholder="<?php esc_attr_e( 'Filter by Date', 'dokan-lite' ); ?>" value="<?php echo esc_attr( $filter_date ); ?>">
36
- <select name="customer_id" id="dokan-filter-customer" style="width:200px" class="dokan-form-control" data-allow_clear="true" data-placeholder="<?php esc_attr_e( 'Filter by Customer', 'dokan-lite' ); ?>">
37
  <option value="<?php echo esc_attr( $user_id ); ?>" selected="selected"><?php echo wp_kses_post( $user_string ); ?><option>
38
  </select>
39
  <input type="submit" name="dokan_order_filter" class="dokan-btn dokan-btn-sm dokan-btn-danger dokan-btn-theme" value="<?php esc_attr_e( 'Filter', 'dokan-lite' ); ?>">
33
  <form action="" method="GET" class="dokan-left">
34
  <div class="dokan-form-group">
35
  <input type="text" class="datepicker" style="width:120px; padding-bottom:7px" name="order_date" id="order_date_filter" placeholder="<?php esc_attr_e( 'Filter by Date', 'dokan-lite' ); ?>" value="<?php echo esc_attr( $filter_date ); ?>">
36
+ <select name="customer_id" id="dokan-filter-customer" style="width:220px" class="dokan-form-control" data-allow_clear="true" data-placeholder="<?php esc_attr_e( 'Filter by registered customer', 'dokan-lite' ); ?>">
37
  <option value="<?php echo esc_attr( $user_id ); ?>" selected="selected"><?php echo wp_kses_post( $user_string ); ?><option>
38
  </select>
39
  <input type="submit" name="dokan_order_filter" class="dokan-btn dokan-btn-sm dokan-btn-danger dokan-btn-theme" value="<?php esc_attr_e( 'Filter', 'dokan-lite' ); ?>">
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit61b84652b76e08cee94d7a9a26ccd683::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit8bc0b3a6d9089b38a86e8cbf20228744::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit61b84652b76e08cee94d7a9a26ccd683
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit61b84652b76e08cee94d7a9a26ccd683
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit61b84652b76e08cee94d7a9a26ccd683', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit61b84652b76e08cee94d7a9a26ccd683', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
- call_user_func(\Composer\Autoload\ComposerStaticInit61b84652b76e08cee94d7a9a26ccd683::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit8bc0b3a6d9089b38a86e8cbf20228744
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit8bc0b3a6d9089b38a86e8cbf20228744', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit8bc0b3a6d9089b38a86e8cbf20228744', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
+ call_user_func(\Composer\Autoload\ComposerStaticInit8bc0b3a6d9089b38a86e8cbf20228744::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit61b84652b76e08cee94d7a9a26ccd683
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'W' =>
@@ -162,9 +162,9 @@ class ComposerStaticInit61b84652b76e08cee94d7a9a26ccd683
162
  public static function getInitializer(ClassLoader $loader)
163
  {
164
  return \Closure::bind(function () use ($loader) {
165
- $loader->prefixLengthsPsr4 = ComposerStaticInit61b84652b76e08cee94d7a9a26ccd683::$prefixLengthsPsr4;
166
- $loader->prefixDirsPsr4 = ComposerStaticInit61b84652b76e08cee94d7a9a26ccd683::$prefixDirsPsr4;
167
- $loader->classMap = ComposerStaticInit61b84652b76e08cee94d7a9a26ccd683::$classMap;
168
 
169
  }, null, ClassLoader::class);
170
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit8bc0b3a6d9089b38a86e8cbf20228744
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'W' =>
162
  public static function getInitializer(ClassLoader $loader)
163
  {
164
  return \Closure::bind(function () use ($loader) {
165
+ $loader->prefixLengthsPsr4 = ComposerStaticInit8bc0b3a6d9089b38a86e8cbf20228744::$prefixLengthsPsr4;
166
+ $loader->prefixDirsPsr4 = ComposerStaticInit8bc0b3a6d9089b38a86e8cbf20228744::$prefixDirsPsr4;
167
+ $loader->classMap = ComposerStaticInit8bc0b3a6d9089b38a86e8cbf20228744::$classMap;
168
 
169
  }, null, ClassLoader::class);
170
  }