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

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.3
Comparing to
See all releases

Code changes from version 3.0.2 to 3.0.3

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.2
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.2';
58
 
59
  /**
60
  * Instance of self
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.3
7
  Author: weDevs
8
  Author URI: https://wedevs.com/
9
  Text Domain: dokan-lite
54
  *
55
  * @var string
56
  */
57
+ public $version = '3.0.3';
58
 
59
  /**
60
  * Instance of self
includes/Admin/SetupWizard.php CHANGED
@@ -33,8 +33,6 @@ class SetupWizard {
33
  if ( current_user_can( 'manage_woocommerce' ) ) {
34
  add_action( 'admin_menu', array( $this, 'admin_menus' ) );
35
  add_action( 'admin_init', array( $this, 'setup_wizard' ), 99 );
36
- add_action( 'activated_plugin', array( $this, 'activated_plugin' ) );
37
- add_action( 'weforms_loaded', [ $this, 'after_weforms_activate' ] );
38
 
39
  if ( get_transient( 'dokan_setup_wizard_no_wc' ) ) {
40
  add_filter( 'dokan_admin_setup_wizard_steps', array( SetupWizardNoWC::class, 'add_wc_steps_to_wizard' ) );
@@ -559,17 +557,6 @@ class SetupWizard {
559
  'plugins' => array( array( 'name' => __( 'WooCommerce Conversion Tracking', 'dokan-lite' ), 'slug' => 'woocommerce-conversion-tracking' ) ),
560
  ) );
561
  }
562
-
563
- if ( ! $this->is_weforms_active() ) {
564
- $this->display_recommended_item( array(
565
- 'type' => 'weforms',
566
- 'title' => __( 'weForms', 'dokan-lite' ),
567
- 'description' => __( 'Best Contact Form Plugin for WordPress.', 'dokan-lite' ),
568
- 'img_url' => DOKAN_PLUGIN_ASSEST . '/images/weforms-logo.png',
569
- 'img_alt' => __( 'weForms logo', 'dokan-lite' ),
570
- 'plugins' => array( array( 'name' => __( 'weForms', 'dokan-lite' ), 'slug' => 'weforms' ) ),
571
- ) );
572
- }
573
  };
574
  ?>
575
  </ul>
@@ -593,7 +580,6 @@ class SetupWizard {
593
  check_admin_referer( 'dokan-setup' );
594
 
595
  $setup_wc_conversion_tracking = isset( $_POST['setup_wc_conversion_tracking'] ) && 'yes' === $_POST['setup_wc_conversion_tracking'];
596
- $setup_weforms = isset( $_POST['setup_weforms'] ) && 'yes' === $_POST['setup_weforms'];
597
 
598
  if ( $setup_wc_conversion_tracking && ! $this->is_wc_conversion_tracking_active() ) {
599
  $this->install_plugin(
@@ -606,17 +592,6 @@ class SetupWizard {
606
  );
607
  }
608
 
609
- if ( $setup_weforms && ! $this->is_weforms_active() ) {
610
- $this->install_plugin(
611
- 'weforms',
612
- array(
613
- 'name' => __( 'weForms', 'dokan-lite' ),
614
- 'repo-slug' => 'weforms',
615
- 'file' => 'weforms.php',
616
- )
617
- );
618
- }
619
-
620
  /**
621
  * WooCoomerce settings manipulation
622
  */
@@ -694,7 +669,7 @@ class SetupWizard {
694
  return false;
695
  }
696
 
697
- if ( $this->is_wc_conversion_tracking_active() && $this->is_weforms_active() ) {
698
  return false;
699
  }
700
 
@@ -712,17 +687,6 @@ class SetupWizard {
712
  return is_plugin_active( 'woocommerce-conversion-tracking/conversion-tracking.php' );
713
  }
714
 
715
- /**
716
- * Check if weForms is active or not
717
- *
718
- * @since 2.8.7
719
- *
720
- * @return bool
721
- */
722
- protected function is_weforms_active() {
723
- return is_plugin_active( 'weforms/weforms.php' );
724
- }
725
-
726
  /**
727
  * Should we show the WooCommerce Conversion Tracking install option?
728
  *
@@ -865,56 +829,4 @@ class SetupWizard {
865
  flush();
866
  }
867
  }
868
-
869
- /**
870
- * activate_plugin hook
871
- *
872
- * @since 2.8.7
873
- *
874
- * @param string $plugin
875
- *
876
- * @return void
877
- */
878
- public function activated_plugin( $plugin ) {
879
- if ( 'weforms/weforms.php' === $plugin ) {
880
- update_option( 'dokan_setup_wizard_activated_weforms', true );
881
- }
882
- }
883
-
884
- /**
885
- * Action after weForms activate
886
- *
887
- * @since 2.8.7
888
- *
889
- * @return void
890
- */
891
- public function after_weforms_activate() {
892
- $did_activate = get_option( 'dokan_setup_wizard_activated_weforms', false );
893
-
894
- if ( ! $did_activate ) {
895
- return;
896
- }
897
-
898
- add_action( 'shutdown', 'flush_rewrite_rules' );
899
-
900
- $forms_data = weforms()->form->all();
901
-
902
- $forms = $forms_data['forms'];
903
-
904
- if ( empty( $forms_data['forms'][0] ) ) {
905
- return;
906
- }
907
-
908
- $form = $forms_data['forms'][0];
909
-
910
- $settings = array(
911
- 'allow_vendor_contact_form' => 'on',
912
- 'vendor_contact_section_label' => __( 'Contact Admin', 'dokan-lite' ),
913
- 'vendor_contact_form' => $form->id,
914
- );
915
-
916
- update_option( 'weforms_integration', $settings );
917
-
918
- delete_option( 'dokan_setup_wizard_activated_weforms' );
919
- }
920
  }
33
  if ( current_user_can( 'manage_woocommerce' ) ) {
34
  add_action( 'admin_menu', array( $this, 'admin_menus' ) );
35
  add_action( 'admin_init', array( $this, 'setup_wizard' ), 99 );
 
 
36
 
37
  if ( get_transient( 'dokan_setup_wizard_no_wc' ) ) {
38
  add_filter( 'dokan_admin_setup_wizard_steps', array( SetupWizardNoWC::class, 'add_wc_steps_to_wizard' ) );
557
  'plugins' => array( array( 'name' => __( 'WooCommerce Conversion Tracking', 'dokan-lite' ), 'slug' => 'woocommerce-conversion-tracking' ) ),
558
  ) );
559
  }
 
 
 
 
 
 
 
 
 
 
 
560
  };
561
  ?>
562
  </ul>
580
  check_admin_referer( 'dokan-setup' );
581
 
582
  $setup_wc_conversion_tracking = isset( $_POST['setup_wc_conversion_tracking'] ) && 'yes' === $_POST['setup_wc_conversion_tracking'];
 
583
 
584
  if ( $setup_wc_conversion_tracking && ! $this->is_wc_conversion_tracking_active() ) {
585
  $this->install_plugin(
592
  );
593
  }
594
 
 
 
 
 
 
 
 
 
 
 
 
595
  /**
596
  * WooCoomerce settings manipulation
597
  */
669
  return false;
670
  }
671
 
672
+ if ( $this->is_wc_conversion_tracking_active() ) {
673
  return false;
674
  }
675
 
687
  return is_plugin_active( 'woocommerce-conversion-tracking/conversion-tracking.php' );
688
  }
689
 
 
 
 
 
 
 
 
 
 
 
 
690
  /**
691
  * Should we show the WooCommerce Conversion Tracking install option?
692
  *
829
  flush();
830
  }
831
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
832
  }
includes/Emails/VendorNewOrder.php CHANGED
@@ -97,7 +97,7 @@ class VendorNewOrder extends WC_Email {
97
  }
98
 
99
  // check has sub order
100
- if ( ! dokan_is_sub_order( $order_id ) ) {
101
  foreach ($sellers as $seller) {
102
  $seller_info = get_userdata( $seller );
103
  $seller_email = $seller_info->user_email;
97
  }
98
 
99
  // check has sub order
100
+ if ( $order->get_meta('has_sub_order') ) {
101
  foreach ($sellers as $seller) {
102
  $seller_info = get_userdata( $seller );
103
  $seller_email = $seller_info->user_email;
includes/Order/Hooks.php CHANGED
@@ -1,6 +1,9 @@
1
  <?php
 
2
  namespace WeDevs\Dokan\Order;
3
 
 
 
4
  /**
5
  * Admin Hooks
6
  *
1
  <?php
2
+
3
  namespace WeDevs\Dokan\Order;
4
 
5
+ use Exception;
6
+
7
  /**
8
  * Admin Hooks
9
  *
includes/functions.php CHANGED
@@ -2757,6 +2757,7 @@ function dokan_cache_reset_order_data_on_status( $order_id, $from_status, $to_st
2757
  function dokan_cache_clear_seller_product_data( $product_id, $post_data = array() ) {
2758
  $seller_id = dokan_get_current_user_id();
2759
 
 
2760
  dokan_cache_clear_group( 'dokan_seller_product_data_' . $seller_id );
2761
  delete_transient( 'dokan-store-category-' . $seller_id );
2762
  }
@@ -3799,3 +3800,33 @@ function dokan_has_map_api_key() {
3799
  }
3800
  return false;
3801
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2757
  function dokan_cache_clear_seller_product_data( $product_id, $post_data = array() ) {
2758
  $seller_id = dokan_get_current_user_id();
2759
 
2760
+ dokan_clear_product_caches( $product_id );
2761
  dokan_cache_clear_group( 'dokan_seller_product_data_' . $seller_id );
2762
  delete_transient( 'dokan-store-category-' . $seller_id );
2763
  }
3800
  }
3801
  return false;
3802
  }
3803
+
3804
+ /**
3805
+ * Dokan clear product caches.
3806
+ * We'll be calling `WC_Product_Data_Store_CPT::clear_caches()` to clear product caches.
3807
+ *
3808
+ * @since 3.0.3
3809
+ *
3810
+ * @param int|\WC_Product $product
3811
+ *
3812
+ * @return void
3813
+ */
3814
+ function dokan_clear_product_caches( $product ) {
3815
+ if ( ! $product instanceof \WC_Product ) {
3816
+ $product = wc_get_product( $product );
3817
+ }
3818
+
3819
+ $store = \WC_Data_Store::load( 'product-' . $product->get_type() );
3820
+ $class = $store->get_current_class_name();
3821
+ $class = is_object( $class ) ? $class : new $class;
3822
+ $reflection = new \ReflectionClass( $class );
3823
+ $method_name = 'clear_caches';
3824
+
3825
+ if ( ! $reflection->hasMethod( $method_name ) ) {
3826
+ return;
3827
+ }
3828
+
3829
+ $method = $reflection->getMethod( $method_name );
3830
+ $method->setAccessible( true );
3831
+ $method->invokeArgs( $class, [ &$product ] );
3832
+ }
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.2\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
- "POT-Creation-Date: 2020-03-23 06:25:51+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -500,7 +500,7 @@ msgid "Page %s"
500
  msgstr ""
501
 
502
  #: includes/Dashboard/Templates/Dashboard.php:101
503
- #: includes/Order/functions.php:490 includes/admin/SetupWizard.php:504
504
  #: templates/dashboard/orders-widget.php:26
505
  msgid "Completed"
506
  msgstr ""
@@ -511,7 +511,7 @@ msgid "Pending"
511
  msgstr ""
512
 
513
  #: includes/Dashboard/Templates/Dashboard.php:111
514
- #: includes/Order/functions.php:505 includes/admin/SetupWizard.php:510
515
  #: templates/dashboard/orders-widget.php:36 templates/orders/listing.php:138
516
  msgid "Processing"
517
  msgstr ""
@@ -709,7 +709,7 @@ msgstr ""
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:338
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"
@@ -730,15 +730,15 @@ msgstr ""
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 ""
@@ -747,7 +747,7 @@ msgstr ""
747
  msgid "Pending Payment"
748
  msgstr ""
749
 
750
- #: includes/Order/functions.php:500 includes/admin/SetupWizard.php:516
751
  msgid "On-hold"
752
  msgstr ""
753
 
@@ -2605,11 +2605,11 @@ msgstr ""
2605
  msgid "Email is not valid"
2606
  msgstr ""
2607
 
2608
- #: includes/Vendor/SetupWizard.php:70 includes/admin/SetupWizard.php:145
2609
  msgid "Introduction"
2610
  msgstr ""
2611
 
2612
- #: includes/Vendor/SetupWizard.php:75 includes/admin/SetupWizard.php:149
2613
  #: includes/template-tags.php:368
2614
  msgid "Store"
2615
  msgstr ""
@@ -2619,7 +2619,7 @@ msgstr ""
2619
  msgid "Payment"
2620
  msgstr ""
2621
 
2622
- #: includes/Vendor/SetupWizard.php:85 includes/admin/SetupWizard.php:169
2623
  msgid "Ready!"
2624
  msgstr ""
2625
 
@@ -2648,12 +2648,12 @@ msgid ""
2648
  "and return to the Store!"
2649
  msgstr ""
2650
 
2651
- #: includes/Vendor/SetupWizard.php:155 includes/admin/SetupWizard.php:317
2652
  #: templates/admin-setup-wizard/step-no-wc-introduction.php:54
2653
  msgid "Let's Go!"
2654
  msgstr ""
2655
 
2656
- #: includes/Vendor/SetupWizard.php:156 includes/admin/SetupWizard.php:318
2657
  msgid "Not right now"
2658
  msgstr ""
2659
 
@@ -2696,7 +2696,7 @@ msgid "Show email address in store"
2696
  msgstr ""
2697
 
2698
  #: includes/Vendor/SetupWizard.php:243 includes/Vendor/SetupWizard.php:396
2699
- #: includes/admin/SetupWizard.php:526 includes/admin/SetupWizard.php:578
2700
  #: includes/admin/SetupWizardWCAdmin.php:232
2701
  #: templates/admin-setup-wizard/step-selling.php:53
2702
  #: templates/admin-setup-wizard/step-store.php:100
@@ -2704,7 +2704,7 @@ msgid "Continue"
2704
  msgstr ""
2705
 
2706
  #: includes/Vendor/SetupWizard.php:244 includes/Vendor/SetupWizard.php:397
2707
- #: includes/admin/SetupWizard.php:527
2708
  #: templates/admin-setup-wizard/step-selling.php:54
2709
  #: templates/admin-setup-wizard/step-store.php:101
2710
  msgid "Skip this step"
@@ -2845,8 +2845,8 @@ msgid "Swift code"
2845
  msgstr ""
2846
 
2847
  #: includes/admin/AdminBar.php:54 includes/admin/Menu.php:32
2848
- #: includes/admin/Menu.php:43 includes/admin/SetupWizard.php:159
2849
- #: includes/functions.php:2960 includes/template-tags.php:345
2850
  #: templates/withdraw/header.php:11
2851
  msgid "Withdraw"
2852
  msgstr ""
@@ -3147,7 +3147,7 @@ msgid "Who will be receiving the Shipping fees"
3147
  msgstr ""
3148
 
3149
  #: includes/admin/Settings.php:340 includes/admin/Settings.php:348
3150
- #: includes/admin/SetupWizard.php:339
3151
  msgid "Admin"
3152
  msgstr ""
3153
 
@@ -3189,7 +3189,7 @@ msgstr ""
3189
  msgid "Allow/Disallow vendor to update order status"
3190
  msgstr ""
3191
 
3192
- #: includes/admin/Settings.php:394 includes/admin/SetupWizard.php:454
3193
  msgid "Withdraw Methods"
3194
  msgstr ""
3195
 
@@ -3197,7 +3197,7 @@ msgstr ""
3197
  msgid "Select suitable Withdraw methods for Vendors"
3198
  msgstr ""
3199
 
3200
- #: includes/admin/Settings.php:402 includes/admin/SetupWizard.php:491
3201
  msgid "Minimum Withdraw Limit"
3202
  msgstr ""
3203
 
@@ -3261,11 +3261,11 @@ msgstr ""
3261
  msgid "Which Map API source you want to use in your site?"
3262
  msgstr ""
3263
 
3264
- #: includes/admin/Settings.php:459 includes/admin/SetupWizard.php:351
3265
  msgid "Google Maps"
3266
  msgstr ""
3267
 
3268
- #: includes/admin/Settings.php:460 includes/admin/SetupWizard.php:352
3269
  msgid "Mapbox"
3270
  msgstr ""
3271
 
@@ -3338,124 +3338,107 @@ msgstr ""
3338
  msgid "Select a page to show your privacy policy"
3339
  msgstr ""
3340
 
3341
- #: includes/admin/Settings.php:540 includes/functions.php:3497
3342
  msgid ""
3343
  "Your personal data will be used to support your experience throughout this "
3344
  "website, to manage access to your account, and for other purposes described "
3345
  "in our [dokan_privacy_policy]"
3346
  msgstr ""
3347
 
3348
- #: includes/admin/SetupWizard.php:154 includes/admin/UserProfile.php:294
3349
  msgid "Selling"
3350
  msgstr ""
3351
 
3352
- #: includes/admin/SetupWizard.php:164
3353
  msgid "Recommended"
3354
  msgstr ""
3355
 
3356
- #: includes/admin/SetupWizard.php:246
3357
  msgid "Dokan &rsaquo; Setup Wizard"
3358
  msgstr ""
3359
 
3360
- #: includes/admin/SetupWizard.php:266 includes/admin/SetupWizardNoWC.php:96
3361
  msgid "Return to the WordPress Dashboard"
3362
  msgstr ""
3363
 
3364
- #: includes/admin/SetupWizard.php:313
3365
  #: templates/admin-setup-wizard/step-no-wc-introduction.php:2
3366
  msgid "Welcome to the world of Dokan!"
3367
  msgstr ""
3368
 
3369
- #: includes/admin/SetupWizard.php:314
3370
  msgid ""
3371
  "Thank you for choosing Dokan to power your online marketplace! This quick "
3372
  "setup wizard will help you configure the basic settings. <strong>It’s "
3373
  "completely optional and shouldn’t take longer than three minutes.</strong>"
3374
  msgstr ""
3375
 
3376
- #: includes/admin/SetupWizard.php:315
3377
  msgid ""
3378
  "No time right now? If you don’t want to go through the wizard, you can skip "
3379
  "and return to the WordPress dashboard. Come back anytime if you change your "
3380
  "mind!"
3381
  msgstr ""
3382
 
3383
- #: includes/admin/SetupWizard.php:450
3384
  msgid "Withdraw Setup"
3385
  msgstr ""
3386
 
3387
- #: includes/admin/SetupWizard.php:466
3388
  msgid "Enable %s for your vendor as a withdraw method"
3389
  msgstr ""
3390
 
3391
- #: includes/admin/SetupWizard.php:494
3392
  msgid ""
3393
  "Minimum balance required to make a withdraw request ( Leave it blank to set "
3394
  "no limits )"
3395
  msgstr ""
3396
 
3397
- #: includes/admin/SetupWizard.php:498
3398
  msgid "Order Status for Withdraw"
3399
  msgstr ""
3400
 
3401
- #: includes/admin/SetupWizard.php:521
3402
  msgid "Order status for which vendor can make a withdraw request."
3403
  msgstr ""
3404
 
3405
- #: includes/admin/SetupWizard.php:543
3406
  msgid "Recommended for All Dokan Marketplaces"
3407
  msgstr ""
3408
 
3409
- #: includes/admin/SetupWizard.php:545
3410
  msgid "Enhance your store with these recommended features."
3411
  msgstr ""
3412
 
3413
- #: includes/admin/SetupWizard.php:555 includes/admin/SetupWizard.php:559
3414
- #: includes/admin/SetupWizard.php:602
3415
  msgid "WooCommerce Conversion Tracking"
3416
  msgstr ""
3417
 
3418
- #: includes/admin/SetupWizard.php:556
3419
  msgid "Track conversions on your WooCommerce store like a pro!"
3420
  msgstr ""
3421
 
3422
- #: includes/admin/SetupWizard.php:558
3423
  msgid "WooCommerce Conversion Tracking logo"
3424
  msgstr ""
3425
 
3426
- #: includes/admin/SetupWizard.php:566 includes/admin/SetupWizard.php:570
3427
- #: includes/admin/SetupWizard.php:613
3428
- msgid "weForms"
3429
- msgstr ""
3430
-
3431
- #: includes/admin/SetupWizard.php:567
3432
- msgid "Best Contact Form Plugin for WordPress."
3433
- msgstr ""
3434
-
3435
- #: includes/admin/SetupWizard.php:569
3436
- msgid "weForms logo"
3437
- msgstr ""
3438
-
3439
- #: includes/admin/SetupWizard.php:673
3440
  msgid "Your Marketplace is Ready!"
3441
  msgstr ""
3442
 
3443
- #: includes/admin/SetupWizard.php:678
3444
  msgid "Visit Dokan Dashboard"
3445
  msgstr ""
3446
 
3447
- #: includes/admin/SetupWizard.php:679
3448
  msgid "More Settings"
3449
  msgstr ""
3450
 
3451
- #: includes/admin/SetupWizard.php:780
3452
  msgid "The following plugins will be installed and activated for you:"
3453
  msgstr ""
3454
 
3455
- #: includes/admin/SetupWizard.php:912
3456
- msgid "Contact Admin"
3457
- msgstr ""
3458
-
3459
  #: includes/admin/SetupWizardNoWC.php:20
3460
  msgid "Welcome to Dokan"
3461
  msgstr ""
@@ -4114,251 +4097,251 @@ msgstr ""
4114
  msgid "Dokan Store Sidebar"
4115
  msgstr ""
4116
 
4117
- #: includes/functions.php:2882
4118
  msgid "View sales overview"
4119
  msgstr ""
4120
 
4121
- #: includes/functions.php:2883
4122
  msgid "View sales report chart"
4123
  msgstr ""
4124
 
4125
- #: includes/functions.php:2884
4126
  msgid "View announcement"
4127
  msgstr ""
4128
 
4129
- #: includes/functions.php:2885
4130
  msgid "View order report"
4131
  msgstr ""
4132
 
4133
- #: includes/functions.php:2886
4134
  msgid "View review report"
4135
  msgstr ""
4136
 
4137
- #: includes/functions.php:2887
4138
  msgid "View product status report"
4139
  msgstr ""
4140
 
4141
- #: includes/functions.php:2890
4142
  msgid "View overview report"
4143
  msgstr ""
4144
 
4145
- #: includes/functions.php:2891
4146
  msgid "View daily sales report"
4147
  msgstr ""
4148
 
4149
- #: includes/functions.php:2892
4150
  msgid "View top selling report"
4151
  msgstr ""
4152
 
4153
- #: includes/functions.php:2893
4154
  msgid "View top earning report"
4155
  msgstr ""
4156
 
4157
- #: includes/functions.php:2894
4158
  msgid "View statement report"
4159
  msgstr ""
4160
 
4161
- #: includes/functions.php:2897
4162
  msgid "View order"
4163
  msgstr ""
4164
 
4165
- #: includes/functions.php:2898
4166
  msgid "Manage order"
4167
  msgstr ""
4168
 
4169
- #: includes/functions.php:2899
4170
  msgid "Manage order note"
4171
  msgstr ""
4172
 
4173
- #: includes/functions.php:2900
4174
  msgid "Manage refund"
4175
  msgstr ""
4176
 
4177
- #: includes/functions.php:2904
4178
  msgid "Add coupon"
4179
  msgstr ""
4180
 
4181
- #: includes/functions.php:2905
4182
  msgid "Edit coupon"
4183
  msgstr ""
4184
 
4185
- #: includes/functions.php:2906
4186
  msgid "Delete coupon"
4187
  msgstr ""
4188
 
4189
- #: includes/functions.php:2909
4190
  msgid "View reviews"
4191
  msgstr ""
4192
 
4193
- #: includes/functions.php:2910
4194
  msgid "Manage reviews"
4195
  msgstr ""
4196
 
4197
- #: includes/functions.php:2914
4198
  msgid "Manage withdraw"
4199
  msgstr ""
4200
 
4201
- #: includes/functions.php:2917
4202
  msgid "Add product"
4203
  msgstr ""
4204
 
4205
- #: includes/functions.php:2918
4206
  msgid "Edit product"
4207
  msgstr ""
4208
 
4209
- #: includes/functions.php:2919
4210
  msgid "Delete product"
4211
  msgstr ""
4212
 
4213
- #: includes/functions.php:2920
4214
  msgid "View product"
4215
  msgstr ""
4216
 
4217
- #: includes/functions.php:2921
4218
  msgid "Duplicate product"
4219
  msgstr ""
4220
 
4221
- #: includes/functions.php:2922
4222
  msgid "Import product"
4223
  msgstr ""
4224
 
4225
- #: includes/functions.php:2923
4226
  msgid "Export product"
4227
  msgstr ""
4228
 
4229
- #: includes/functions.php:2926
4230
  msgid "View overview menu"
4231
  msgstr ""
4232
 
4233
- #: includes/functions.php:2927
4234
  msgid "View product menu"
4235
  msgstr ""
4236
 
4237
- #: includes/functions.php:2928
4238
  msgid "View order menu"
4239
  msgstr ""
4240
 
4241
- #: includes/functions.php:2929
4242
  msgid "View coupon menu"
4243
  msgstr ""
4244
 
4245
- #: includes/functions.php:2930
4246
  msgid "View report menu"
4247
  msgstr ""
4248
 
4249
- #: includes/functions.php:2931
4250
  msgid "Vuew review menu"
4251
  msgstr ""
4252
 
4253
- #: includes/functions.php:2932
4254
  msgid "View withdraw menu"
4255
  msgstr ""
4256
 
4257
- #: includes/functions.php:2933
4258
  msgid "View store settings menu"
4259
  msgstr ""
4260
 
4261
- #: includes/functions.php:2934
4262
  msgid "View payment settings menu"
4263
  msgstr ""
4264
 
4265
- #: includes/functions.php:2935
4266
  msgid "View shipping settings menu"
4267
  msgstr ""
4268
 
4269
- #: includes/functions.php:2936
4270
  msgid "View social settings menu"
4271
  msgstr ""
4272
 
4273
- #: includes/functions.php:2937
4274
  msgid "View seo settings menu"
4275
  msgstr ""
4276
 
4277
- #: includes/functions.php:2955 src/admin/pages/Dashboard.vue:103
4278
  msgid "Overview"
4279
  msgstr ""
4280
 
4281
- #: includes/functions.php:2956
4282
  msgid "Report"
4283
  msgstr ""
4284
 
4285
- #: includes/functions.php:2957 templates/dashboard/big-counter-widget.php:29
4286
  #: templates/my-orders.php:27 templates/orders/details.php:21
4287
  #: templates/orders/listing.php:51 templates/orders/listing.php:70
4288
  #: templates/sub-orders.php:25
4289
  msgid "Order"
4290
  msgstr ""
4291
 
4292
- #: includes/functions.php:2958
4293
  msgid "Coupon"
4294
  msgstr ""
4295
 
4296
- #: includes/functions.php:2959
4297
  msgid "Review"
4298
  msgstr ""
4299
 
4300
- #: includes/functions.php:2961 templates/emails/vendor-new-order.php:47
4301
  msgid "Product"
4302
  msgstr ""
4303
 
4304
- #: includes/functions.php:2962
4305
  msgid "Menu"
4306
  msgstr ""
4307
 
4308
- #: includes/functions.php:3138
4309
  msgid "Saturday"
4310
  msgstr ""
4311
 
4312
- #: includes/functions.php:3141
4313
  msgid "Sunday"
4314
  msgstr ""
4315
 
4316
- #: includes/functions.php:3144
4317
  msgid "Monday"
4318
  msgstr ""
4319
 
4320
- #: includes/functions.php:3147
4321
  msgid "Tuesday"
4322
  msgstr ""
4323
 
4324
- #: includes/functions.php:3150
4325
  msgid "Wednesday"
4326
  msgstr ""
4327
 
4328
- #: includes/functions.php:3153
4329
  msgid "Thursday"
4330
  msgstr ""
4331
 
4332
- #: includes/functions.php:3156
4333
  msgid "Friday"
4334
  msgstr ""
4335
 
4336
- #: includes/functions.php:3159
4337
  msgid "Off Day"
4338
  msgstr ""
4339
 
4340
- #: includes/functions.php:3477
4341
  msgid "privacy policy"
4342
  msgstr ""
4343
 
4344
- #: includes/functions.php:3521 src/admin/pages/VendorPaymentFields.vue:140
4345
  #: src/admin/pages/VendorPaymentFields.vue:144
4346
  msgid "Flat"
4347
  msgstr ""
4348
 
4349
- #: includes/functions.php:3522 src/admin/pages/VendorPaymentFields.vue:141
4350
  msgid "Percentage"
4351
  msgstr ""
4352
 
4353
- #: includes/functions.php:3538
4354
  msgid "Please Login to Continue"
4355
  msgstr ""
4356
 
4357
- #: includes/functions.php:3706
4358
  msgid "Unable to fetch plugin information from wordpress.org for %s."
4359
  msgstr ""
4360
 
4361
- #: includes/functions.php:3718
4362
  msgid "Unable to install %s from wordpress.org"
4363
  msgstr ""
4364
 
@@ -6650,62 +6633,62 @@ msgctxt "number of pages"
6650
  msgid "of"
6651
  msgstr ""
6652
 
6653
- #: includes/admin/SetupWizard.php:76
6654
  msgctxt "enhanced select"
6655
  msgid "One result is available, press enter to select it."
6656
  msgstr ""
6657
 
6658
- #: includes/admin/SetupWizard.php:77
6659
  msgctxt "enhanced select"
6660
  msgid "%qty% results are available, use up and down arrow keys to navigate."
6661
  msgstr ""
6662
 
6663
- #: includes/admin/SetupWizard.php:78
6664
  msgctxt "enhanced select"
6665
  msgid "No matches found"
6666
  msgstr ""
6667
 
6668
- #: includes/admin/SetupWizard.php:79
6669
  msgctxt "enhanced select"
6670
  msgid "Loading failed"
6671
  msgstr ""
6672
 
6673
- #: includes/admin/SetupWizard.php:80
6674
  msgctxt "enhanced select"
6675
  msgid "Please enter 1 or more characters"
6676
  msgstr ""
6677
 
6678
- #: includes/admin/SetupWizard.php:81
6679
  msgctxt "enhanced select"
6680
  msgid "Please enter %qty% or more characters"
6681
  msgstr ""
6682
 
6683
- #: includes/admin/SetupWizard.php:82
6684
  msgctxt "enhanced select"
6685
  msgid "Please delete 1 character"
6686
  msgstr ""
6687
 
6688
- #: includes/admin/SetupWizard.php:83
6689
  msgctxt "enhanced select"
6690
  msgid "Please delete %qty% characters"
6691
  msgstr ""
6692
 
6693
- #: includes/admin/SetupWizard.php:84
6694
  msgctxt "enhanced select"
6695
  msgid "You can only select 1 item"
6696
  msgstr ""
6697
 
6698
- #: includes/admin/SetupWizard.php:85
6699
  msgctxt "enhanced select"
6700
  msgid "You can only select %qty% items"
6701
  msgstr ""
6702
 
6703
- #: includes/admin/SetupWizard.php:86
6704
  msgctxt "enhanced select"
6705
  msgid "Loading more results&hellip;"
6706
  msgstr ""
6707
 
6708
- #: includes/admin/SetupWizard.php:87
6709
  msgctxt "enhanced select"
6710
  msgid "Searching&hellip;"
6711
  msgstr ""
2
  # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Dokan 3.0.3\n"
6
  "Report-Msgid-Bugs-To: https://wedevs.com/contact/\n"
7
+ "POT-Creation-Date: 2020-04-03 15:39:25+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
500
  msgstr ""
501
 
502
  #: includes/Dashboard/Templates/Dashboard.php:101
503
+ #: includes/Order/functions.php:490 includes/admin/SetupWizard.php:502
504
  #: templates/dashboard/orders-widget.php:26
505
  msgid "Completed"
506
  msgstr ""
511
  msgstr ""
512
 
513
  #: includes/Dashboard/Templates/Dashboard.php:111
514
+ #: includes/Order/functions.php:505 includes/admin/SetupWizard.php:508
515
  #: templates/dashboard/orders-widget.php:36 templates/orders/listing.php:138
516
  msgid "Processing"
517
  msgstr ""
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:336
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"
730
  msgid "My Orders"
731
  msgstr ""
732
 
733
+ #: includes/Order/Hooks.php:143
734
  msgid "Mark parent order completed when all child orders are completed."
735
  msgstr ""
736
 
737
+ #: includes/Order/Hooks.php:185
738
  msgid "A coupon must be restricted with a vendor product."
739
  msgstr ""
740
 
741
+ #: includes/Order/Hooks.php:240
742
  #. translators: %s item name.
743
  msgid "Unable to restore stock for item %s."
744
  msgstr ""
747
  msgid "Pending Payment"
748
  msgstr ""
749
 
750
+ #: includes/Order/functions.php:500 includes/admin/SetupWizard.php:514
751
  msgid "On-hold"
752
  msgstr ""
753
 
2605
  msgid "Email is not valid"
2606
  msgstr ""
2607
 
2608
+ #: includes/Vendor/SetupWizard.php:70 includes/admin/SetupWizard.php:143
2609
  msgid "Introduction"
2610
  msgstr ""
2611
 
2612
+ #: includes/Vendor/SetupWizard.php:75 includes/admin/SetupWizard.php:147
2613
  #: includes/template-tags.php:368
2614
  msgid "Store"
2615
  msgstr ""
2619
  msgid "Payment"
2620
  msgstr ""
2621
 
2622
+ #: includes/Vendor/SetupWizard.php:85 includes/admin/SetupWizard.php:167
2623
  msgid "Ready!"
2624
  msgstr ""
2625
 
2648
  "and return to the Store!"
2649
  msgstr ""
2650
 
2651
+ #: includes/Vendor/SetupWizard.php:155 includes/admin/SetupWizard.php:315
2652
  #: templates/admin-setup-wizard/step-no-wc-introduction.php:54
2653
  msgid "Let's Go!"
2654
  msgstr ""
2655
 
2656
+ #: includes/Vendor/SetupWizard.php:156 includes/admin/SetupWizard.php:316
2657
  msgid "Not right now"
2658
  msgstr ""
2659
 
2696
  msgstr ""
2697
 
2698
  #: includes/Vendor/SetupWizard.php:243 includes/Vendor/SetupWizard.php:396
2699
+ #: includes/admin/SetupWizard.php:524 includes/admin/SetupWizard.php:565
2700
  #: includes/admin/SetupWizardWCAdmin.php:232
2701
  #: templates/admin-setup-wizard/step-selling.php:53
2702
  #: templates/admin-setup-wizard/step-store.php:100
2704
  msgstr ""
2705
 
2706
  #: includes/Vendor/SetupWizard.php:244 includes/Vendor/SetupWizard.php:397
2707
+ #: includes/admin/SetupWizard.php:525
2708
  #: templates/admin-setup-wizard/step-selling.php:54
2709
  #: templates/admin-setup-wizard/step-store.php:101
2710
  msgid "Skip this step"
2845
  msgstr ""
2846
 
2847
  #: includes/admin/AdminBar.php:54 includes/admin/Menu.php:32
2848
+ #: includes/admin/Menu.php:43 includes/admin/SetupWizard.php:157
2849
+ #: includes/functions.php:2961 includes/template-tags.php:345
2850
  #: templates/withdraw/header.php:11
2851
  msgid "Withdraw"
2852
  msgstr ""
3147
  msgstr ""
3148
 
3149
  #: includes/admin/Settings.php:340 includes/admin/Settings.php:348
3150
+ #: includes/admin/SetupWizard.php:337
3151
  msgid "Admin"
3152
  msgstr ""
3153
 
3189
  msgid "Allow/Disallow vendor to update order status"
3190
  msgstr ""
3191
 
3192
+ #: includes/admin/Settings.php:394 includes/admin/SetupWizard.php:452
3193
  msgid "Withdraw Methods"
3194
  msgstr ""
3195
 
3197
  msgid "Select suitable Withdraw methods for Vendors"
3198
  msgstr ""
3199
 
3200
+ #: includes/admin/Settings.php:402 includes/admin/SetupWizard.php:489
3201
  msgid "Minimum Withdraw Limit"
3202
  msgstr ""
3203
 
3261
  msgid "Which Map API source you want to use in your site?"
3262
  msgstr ""
3263
 
3264
+ #: includes/admin/Settings.php:459 includes/admin/SetupWizard.php:349
3265
  msgid "Google Maps"
3266
  msgstr ""
3267
 
3268
+ #: includes/admin/Settings.php:460 includes/admin/SetupWizard.php:350
3269
  msgid "Mapbox"
3270
  msgstr ""
3271
 
3338
  msgid "Select a page to show your privacy policy"
3339
  msgstr ""
3340
 
3341
+ #: includes/admin/Settings.php:540 includes/functions.php:3498
3342
  msgid ""
3343
  "Your personal data will be used to support your experience throughout this "
3344
  "website, to manage access to your account, and for other purposes described "
3345
  "in our [dokan_privacy_policy]"
3346
  msgstr ""
3347
 
3348
+ #: includes/admin/SetupWizard.php:152 includes/admin/UserProfile.php:294
3349
  msgid "Selling"
3350
  msgstr ""
3351
 
3352
+ #: includes/admin/SetupWizard.php:162
3353
  msgid "Recommended"
3354
  msgstr ""
3355
 
3356
+ #: includes/admin/SetupWizard.php:244
3357
  msgid "Dokan &rsaquo; Setup Wizard"
3358
  msgstr ""
3359
 
3360
+ #: includes/admin/SetupWizard.php:264 includes/admin/SetupWizardNoWC.php:96
3361
  msgid "Return to the WordPress Dashboard"
3362
  msgstr ""
3363
 
3364
+ #: includes/admin/SetupWizard.php:311
3365
  #: templates/admin-setup-wizard/step-no-wc-introduction.php:2
3366
  msgid "Welcome to the world of Dokan!"
3367
  msgstr ""
3368
 
3369
+ #: includes/admin/SetupWizard.php:312
3370
  msgid ""
3371
  "Thank you for choosing Dokan to power your online marketplace! This quick "
3372
  "setup wizard will help you configure the basic settings. <strong>It’s "
3373
  "completely optional and shouldn’t take longer than three minutes.</strong>"
3374
  msgstr ""
3375
 
3376
+ #: includes/admin/SetupWizard.php:313
3377
  msgid ""
3378
  "No time right now? If you don’t want to go through the wizard, you can skip "
3379
  "and return to the WordPress dashboard. Come back anytime if you change your "
3380
  "mind!"
3381
  msgstr ""
3382
 
3383
+ #: includes/admin/SetupWizard.php:448
3384
  msgid "Withdraw Setup"
3385
  msgstr ""
3386
 
3387
+ #: includes/admin/SetupWizard.php:464
3388
  msgid "Enable %s for your vendor as a withdraw method"
3389
  msgstr ""
3390
 
3391
+ #: includes/admin/SetupWizard.php:492
3392
  msgid ""
3393
  "Minimum balance required to make a withdraw request ( Leave it blank to set "
3394
  "no limits )"
3395
  msgstr ""
3396
 
3397
+ #: includes/admin/SetupWizard.php:496
3398
  msgid "Order Status for Withdraw"
3399
  msgstr ""
3400
 
3401
+ #: includes/admin/SetupWizard.php:519
3402
  msgid "Order status for which vendor can make a withdraw request."
3403
  msgstr ""
3404
 
3405
+ #: includes/admin/SetupWizard.php:541
3406
  msgid "Recommended for All Dokan Marketplaces"
3407
  msgstr ""
3408
 
3409
+ #: includes/admin/SetupWizard.php:543
3410
  msgid "Enhance your store with these recommended features."
3411
  msgstr ""
3412
 
3413
+ #: includes/admin/SetupWizard.php:553 includes/admin/SetupWizard.php:557
3414
+ #: includes/admin/SetupWizard.php:588
3415
  msgid "WooCommerce Conversion Tracking"
3416
  msgstr ""
3417
 
3418
+ #: includes/admin/SetupWizard.php:554
3419
  msgid "Track conversions on your WooCommerce store like a pro!"
3420
  msgstr ""
3421
 
3422
+ #: includes/admin/SetupWizard.php:556
3423
  msgid "WooCommerce Conversion Tracking logo"
3424
  msgstr ""
3425
 
3426
+ #: includes/admin/SetupWizard.php:648
 
 
 
 
 
 
 
 
 
 
 
 
 
3427
  msgid "Your Marketplace is Ready!"
3428
  msgstr ""
3429
 
3430
+ #: includes/admin/SetupWizard.php:653
3431
  msgid "Visit Dokan Dashboard"
3432
  msgstr ""
3433
 
3434
+ #: includes/admin/SetupWizard.php:654
3435
  msgid "More Settings"
3436
  msgstr ""
3437
 
3438
+ #: includes/admin/SetupWizard.php:744
3439
  msgid "The following plugins will be installed and activated for you:"
3440
  msgstr ""
3441
 
 
 
 
 
3442
  #: includes/admin/SetupWizardNoWC.php:20
3443
  msgid "Welcome to Dokan"
3444
  msgstr ""
4097
  msgid "Dokan Store Sidebar"
4098
  msgstr ""
4099
 
4100
+ #: includes/functions.php:2883
4101
  msgid "View sales overview"
4102
  msgstr ""
4103
 
4104
+ #: includes/functions.php:2884
4105
  msgid "View sales report chart"
4106
  msgstr ""
4107
 
4108
+ #: includes/functions.php:2885
4109
  msgid "View announcement"
4110
  msgstr ""
4111
 
4112
+ #: includes/functions.php:2886
4113
  msgid "View order report"
4114
  msgstr ""
4115
 
4116
+ #: includes/functions.php:2887
4117
  msgid "View review report"
4118
  msgstr ""
4119
 
4120
+ #: includes/functions.php:2888
4121
  msgid "View product status report"
4122
  msgstr ""
4123
 
4124
+ #: includes/functions.php:2891
4125
  msgid "View overview report"
4126
  msgstr ""
4127
 
4128
+ #: includes/functions.php:2892
4129
  msgid "View daily sales report"
4130
  msgstr ""
4131
 
4132
+ #: includes/functions.php:2893
4133
  msgid "View top selling report"
4134
  msgstr ""
4135
 
4136
+ #: includes/functions.php:2894
4137
  msgid "View top earning report"
4138
  msgstr ""
4139
 
4140
+ #: includes/functions.php:2895
4141
  msgid "View statement report"
4142
  msgstr ""
4143
 
4144
+ #: includes/functions.php:2898
4145
  msgid "View order"
4146
  msgstr ""
4147
 
4148
+ #: includes/functions.php:2899
4149
  msgid "Manage order"
4150
  msgstr ""
4151
 
4152
+ #: includes/functions.php:2900
4153
  msgid "Manage order note"
4154
  msgstr ""
4155
 
4156
+ #: includes/functions.php:2901
4157
  msgid "Manage refund"
4158
  msgstr ""
4159
 
4160
+ #: includes/functions.php:2905
4161
  msgid "Add coupon"
4162
  msgstr ""
4163
 
4164
+ #: includes/functions.php:2906
4165
  msgid "Edit coupon"
4166
  msgstr ""
4167
 
4168
+ #: includes/functions.php:2907
4169
  msgid "Delete coupon"
4170
  msgstr ""
4171
 
4172
+ #: includes/functions.php:2910
4173
  msgid "View reviews"
4174
  msgstr ""
4175
 
4176
+ #: includes/functions.php:2911
4177
  msgid "Manage reviews"
4178
  msgstr ""
4179
 
4180
+ #: includes/functions.php:2915
4181
  msgid "Manage withdraw"
4182
  msgstr ""
4183
 
4184
+ #: includes/functions.php:2918
4185
  msgid "Add product"
4186
  msgstr ""
4187
 
4188
+ #: includes/functions.php:2919
4189
  msgid "Edit product"
4190
  msgstr ""
4191
 
4192
+ #: includes/functions.php:2920
4193
  msgid "Delete product"
4194
  msgstr ""
4195
 
4196
+ #: includes/functions.php:2921
4197
  msgid "View product"
4198
  msgstr ""
4199
 
4200
+ #: includes/functions.php:2922
4201
  msgid "Duplicate product"
4202
  msgstr ""
4203
 
4204
+ #: includes/functions.php:2923
4205
  msgid "Import product"
4206
  msgstr ""
4207
 
4208
+ #: includes/functions.php:2924
4209
  msgid "Export product"
4210
  msgstr ""
4211
 
4212
+ #: includes/functions.php:2927
4213
  msgid "View overview menu"
4214
  msgstr ""
4215
 
4216
+ #: includes/functions.php:2928
4217
  msgid "View product menu"
4218
  msgstr ""
4219
 
4220
+ #: includes/functions.php:2929
4221
  msgid "View order menu"
4222
  msgstr ""
4223
 
4224
+ #: includes/functions.php:2930
4225
  msgid "View coupon menu"
4226
  msgstr ""
4227
 
4228
+ #: includes/functions.php:2931
4229
  msgid "View report menu"
4230
  msgstr ""
4231
 
4232
+ #: includes/functions.php:2932
4233
  msgid "Vuew review menu"
4234
  msgstr ""
4235
 
4236
+ #: includes/functions.php:2933
4237
  msgid "View withdraw menu"
4238
  msgstr ""
4239
 
4240
+ #: includes/functions.php:2934
4241
  msgid "View store settings menu"
4242
  msgstr ""
4243
 
4244
+ #: includes/functions.php:2935
4245
  msgid "View payment settings menu"
4246
  msgstr ""
4247
 
4248
+ #: includes/functions.php:2936
4249
  msgid "View shipping settings menu"
4250
  msgstr ""
4251
 
4252
+ #: includes/functions.php:2937
4253
  msgid "View social settings menu"
4254
  msgstr ""
4255
 
4256
+ #: includes/functions.php:2938
4257
  msgid "View seo settings menu"
4258
  msgstr ""
4259
 
4260
+ #: includes/functions.php:2956 src/admin/pages/Dashboard.vue:103
4261
  msgid "Overview"
4262
  msgstr ""
4263
 
4264
+ #: includes/functions.php:2957
4265
  msgid "Report"
4266
  msgstr ""
4267
 
4268
+ #: includes/functions.php:2958 templates/dashboard/big-counter-widget.php:29
4269
  #: templates/my-orders.php:27 templates/orders/details.php:21
4270
  #: templates/orders/listing.php:51 templates/orders/listing.php:70
4271
  #: templates/sub-orders.php:25
4272
  msgid "Order"
4273
  msgstr ""
4274
 
4275
+ #: includes/functions.php:2959
4276
  msgid "Coupon"
4277
  msgstr ""
4278
 
4279
+ #: includes/functions.php:2960
4280
  msgid "Review"
4281
  msgstr ""
4282
 
4283
+ #: includes/functions.php:2962 templates/emails/vendor-new-order.php:47
4284
  msgid "Product"
4285
  msgstr ""
4286
 
4287
+ #: includes/functions.php:2963
4288
  msgid "Menu"
4289
  msgstr ""
4290
 
4291
+ #: includes/functions.php:3139
4292
  msgid "Saturday"
4293
  msgstr ""
4294
 
4295
+ #: includes/functions.php:3142
4296
  msgid "Sunday"
4297
  msgstr ""
4298
 
4299
+ #: includes/functions.php:3145
4300
  msgid "Monday"
4301
  msgstr ""
4302
 
4303
+ #: includes/functions.php:3148
4304
  msgid "Tuesday"
4305
  msgstr ""
4306
 
4307
+ #: includes/functions.php:3151
4308
  msgid "Wednesday"
4309
  msgstr ""
4310
 
4311
+ #: includes/functions.php:3154
4312
  msgid "Thursday"
4313
  msgstr ""
4314
 
4315
+ #: includes/functions.php:3157
4316
  msgid "Friday"
4317
  msgstr ""
4318
 
4319
+ #: includes/functions.php:3160
4320
  msgid "Off Day"
4321
  msgstr ""
4322
 
4323
+ #: includes/functions.php:3478
4324
  msgid "privacy policy"
4325
  msgstr ""
4326
 
4327
+ #: includes/functions.php:3522 src/admin/pages/VendorPaymentFields.vue:140
4328
  #: src/admin/pages/VendorPaymentFields.vue:144
4329
  msgid "Flat"
4330
  msgstr ""
4331
 
4332
+ #: includes/functions.php:3523 src/admin/pages/VendorPaymentFields.vue:141
4333
  msgid "Percentage"
4334
  msgstr ""
4335
 
4336
+ #: includes/functions.php:3539
4337
  msgid "Please Login to Continue"
4338
  msgstr ""
4339
 
4340
+ #: includes/functions.php:3707
4341
  msgid "Unable to fetch plugin information from wordpress.org for %s."
4342
  msgstr ""
4343
 
4344
+ #: includes/functions.php:3719
4345
  msgid "Unable to install %s from wordpress.org"
4346
  msgstr ""
4347
 
6633
  msgid "of"
6634
  msgstr ""
6635
 
6636
+ #: includes/admin/SetupWizard.php:74
6637
  msgctxt "enhanced select"
6638
  msgid "One result is available, press enter to select it."
6639
  msgstr ""
6640
 
6641
+ #: includes/admin/SetupWizard.php:75
6642
  msgctxt "enhanced select"
6643
  msgid "%qty% results are available, use up and down arrow keys to navigate."
6644
  msgstr ""
6645
 
6646
+ #: includes/admin/SetupWizard.php:76
6647
  msgctxt "enhanced select"
6648
  msgid "No matches found"
6649
  msgstr ""
6650
 
6651
+ #: includes/admin/SetupWizard.php:77
6652
  msgctxt "enhanced select"
6653
  msgid "Loading failed"
6654
  msgstr ""
6655
 
6656
+ #: includes/admin/SetupWizard.php:78
6657
  msgctxt "enhanced select"
6658
  msgid "Please enter 1 or more characters"
6659
  msgstr ""
6660
 
6661
+ #: includes/admin/SetupWizard.php:79
6662
  msgctxt "enhanced select"
6663
  msgid "Please enter %qty% or more characters"
6664
  msgstr ""
6665
 
6666
+ #: includes/admin/SetupWizard.php:80
6667
  msgctxt "enhanced select"
6668
  msgid "Please delete 1 character"
6669
  msgstr ""
6670
 
6671
+ #: includes/admin/SetupWizard.php:81
6672
  msgctxt "enhanced select"
6673
  msgid "Please delete %qty% characters"
6674
  msgstr ""
6675
 
6676
+ #: includes/admin/SetupWizard.php:82
6677
  msgctxt "enhanced select"
6678
  msgid "You can only select 1 item"
6679
  msgstr ""
6680
 
6681
+ #: includes/admin/SetupWizard.php:83
6682
  msgctxt "enhanced select"
6683
  msgid "You can only select %qty% items"
6684
  msgstr ""
6685
 
6686
+ #: includes/admin/SetupWizard.php:84
6687
  msgctxt "enhanced select"
6688
  msgid "Loading more results&hellip;"
6689
  msgstr ""
6690
 
6691
+ #: includes/admin/SetupWizard.php:85
6692
  msgctxt "enhanced select"
6693
  msgid "Searching&hellip;"
6694
  msgstr ""
package.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "dokan",
3
- "version": "3.0.2",
4
  "description": "A WordPress marketplace plugin",
5
  "author": "weDevs",
6
  "license": "GPL",
1
  {
2
  "name": "dokan",
3
+ "version": "3.0.3",
4
  "description": "A WordPress marketplace plugin",
5
  "author": "weDevs",
6
  "license": "GPL",
readme.txt CHANGED
@@ -1,5 +1,5 @@
1
  === Dokan - Best WooCommerce Multivendor Marketplace Solution - Build Your Own Amazon, eBay, Etsy ===
2
- Contributors: tareq1988, wedevs, sabbir1991, nizamuddinbabu, sk.shaikat, ediamin, saimonh
3
  Donate Link: http://tareq.co/donate/
4
  Tags: WooCommerce multivendor marketplace, multi vendor marketplace, multi seller store, product vendors, woocommerce vendor, commission rate, e-commerce, ebay, ecommerce, yith, yithemes
5
  Requires at least: 4.4
@@ -7,7 +7,7 @@ Tested up to: 5.3.2
7
  WC requires at least: 3.0
8
  WC tested up to: 4.0.1
9
  Requires PHP: 5.6
10
- Stable tag: 3.0.2
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -291,6 +291,12 @@ A. Just install and activate the PRO version without deleting the free plugin. A
291
 
292
  == Changelog ==
293
 
 
 
 
 
 
 
294
  = v3.0.2 (March 23, 2020) =
295
 
296
  - **Fix:** Unable to remove attributes in vendor product edit page #637
1
  === Dokan - Best WooCommerce Multivendor Marketplace Solution - Build Your Own Amazon, eBay, Etsy ===
2
+ Contributors: tareq1988, wedevs, nizamuddinbabu
3
  Donate Link: http://tareq.co/donate/
4
  Tags: WooCommerce multivendor marketplace, multi vendor marketplace, multi seller store, product vendors, woocommerce vendor, commission rate, e-commerce, ebay, ecommerce, yith, yithemes
5
  Requires at least: 4.4
7
  WC requires at least: 3.0
8
  WC tested up to: 4.0.1
9
  Requires PHP: 5.6
10
+ Stable tag: 3.0.3
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.3 (April 03, 2020) =
295
+
296
+ - **Fix:** Clear caches on product update #804
297
+ - **Fix:** Vendor is not receiving email for new order #803
298
+ - **Fix:** Remove weForms promotion from admin setup wizard #798
299
+
300
  = v3.0.2 (March 23, 2020) =
301
 
302
  - **Fix:** Unable to remove attributes in vendor product edit page #637
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit7bd51a58648b9e0e707345ee63c2b00b::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit9cd13a6069f7576cc03c1a692845d073::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit7bd51a58648b9e0e707345ee63c2b00b
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit7bd51a58648b9e0e707345ee63c2b00b
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit7bd51a58648b9e0e707345ee63c2b00b', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit7bd51a58648b9e0e707345ee63c2b00b', '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\ComposerStaticInit7bd51a58648b9e0e707345ee63c2b00b::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 ComposerAutoloaderInit9cd13a6069f7576cc03c1a692845d073
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit9cd13a6069f7576cc03c1a692845d073', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit9cd13a6069f7576cc03c1a692845d073', '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\ComposerStaticInit9cd13a6069f7576cc03c1a692845d073::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 ComposerStaticInit7bd51a58648b9e0e707345ee63c2b00b
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'W' =>
@@ -163,9 +163,9 @@ class ComposerStaticInit7bd51a58648b9e0e707345ee63c2b00b
163
  public static function getInitializer(ClassLoader $loader)
164
  {
165
  return \Closure::bind(function () use ($loader) {
166
- $loader->prefixLengthsPsr4 = ComposerStaticInit7bd51a58648b9e0e707345ee63c2b00b::$prefixLengthsPsr4;
167
- $loader->prefixDirsPsr4 = ComposerStaticInit7bd51a58648b9e0e707345ee63c2b00b::$prefixDirsPsr4;
168
- $loader->classMap = ComposerStaticInit7bd51a58648b9e0e707345ee63c2b00b::$classMap;
169
 
170
  }, null, ClassLoader::class);
171
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit9cd13a6069f7576cc03c1a692845d073
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
  'W' =>
163
  public static function getInitializer(ClassLoader $loader)
164
  {
165
  return \Closure::bind(function () use ($loader) {
166
+ $loader->prefixLengthsPsr4 = ComposerStaticInit9cd13a6069f7576cc03c1a692845d073::$prefixLengthsPsr4;
167
+ $loader->prefixDirsPsr4 = ComposerStaticInit9cd13a6069f7576cc03c1a692845d073::$prefixDirsPsr4;
168
+ $loader->classMap = ComposerStaticInit9cd13a6069f7576cc03c1a692845d073::$classMap;
169
 
170
  }, null, ClassLoader::class);
171
  }