From d2af1b4a86533c81446005d0836b75c76e3d6286 Mon Sep 17 00:00:00 2001 From: devansh bawari Date: Thu, 5 Aug 2021 14:35:29 +0530 Subject: [PATCH 1/8] Testing --- CHANGELOG for v1.x.x.md | 52 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/CHANGELOG for v1.x.x.md b/CHANGELOG for v1.x.x.md index 1261eb7f0..23b643a1d 100644 --- a/CHANGELOG for v1.x.x.md +++ b/CHANGELOG for v1.x.x.md @@ -2,6 +2,58 @@ This changelog consists of the bug & security fixes and new features being included in the releases listed below. +## **v1.3.2 (Comming Soon)** - *Release* + +* #5033 - order status options after invoice generation on payment methods Bug Bug Fixed + +* #5029 - header menu content list layout need to fix Bug Bug Fixed + +* #5027 - Fix customer account menu visibility in safari browser Bug Bug Fixed + +* #5018 - Invoice ID is not recognized in Transaction when invoice id contains custom prefix/suffix Bug Bug Fixed + +* #5013 - No warning visible when user password doesn't match on reset password page Bug Bug Fixed + +* #5011 - admin filter options are not working in Safari Bug Bug Fixed + +* #4992 - Products image are getting stretch on search page Bug Bug Fixed + +* #4989 - In Sales module Create refund Subtotal is showing different Bug Bug Fixed + +* #4977 - configurable product are not visible in category page if allow out of stock is disabled Bug Bug Fixed + +* #4969 - muliselect attribute options ID should not visible in compare product Bug Bug Fixed + +* #4965 - Filter labels in datagrids are not translated Bug Bug Fixed + +* #4964 - Search icon is missing in velocity theme datagrid Bug Bug Fixed Velocity + +* #4963 - French locale translations are missing Bug Bug Fixed + +* #4962 - Able to access downloadable product even i have not purchased Bug Bug Fixed + +* #4960 - The invoice date is missing on invoices Done Optimization + +* #4959 - getting exception when merge guest cart with customer cart with configurable item Bug Bug Fixed + +* #4951 - Realtime compare number is not decreased when deleting product from compare page Bug Bug Fixed Velocity + +* #4948 - translation issue for the minimum order at cart checkout + +* #4947 - Getting all invoices (that are not linked to customer or customer's order) in customer section in admin panel Bug Bug Fixed + +* #4943 - Virtual products are not buyable without inventory stock Bug Discussion + +* #4941 - Locale option should be visible with field that are locale based Done Optimization + +* #4935 - slider is not remove from the store if slider date get expired Bug Bug Fixed + +* #4931 - Root category name is missing when admin locale is not en Admin Bug Bug Fixed + +* #4927 - Allow the admin to set a payment term for invoices Done Enhancement + +* #4926 - Allow admin to set a invoice prefix and the first invoice number Done Enhancement + ## **v1.3.1 (22nd of February 2021)** - *Release* * #4659 [fixed] - Only show defaults option in Shipping. From 2087978c3b5a6223db71ec24b841b70f274bf629 Mon Sep 17 00:00:00 2001 From: devansh bawari Date: Thu, 5 Aug 2021 15:33:30 +0530 Subject: [PATCH 2/8] Fixed Mail For Guest --- .../Webkul/Marketing/src/Helpers/Campaign.php | 43 ++++++++----------- 1 file changed, 18 insertions(+), 25 deletions(-) diff --git a/packages/Webkul/Marketing/src/Helpers/Campaign.php b/packages/Webkul/Marketing/src/Helpers/Campaign.php index dbbee67d8..4c1369e10 100644 --- a/packages/Webkul/Marketing/src/Helpers/Campaign.php +++ b/packages/Webkul/Marketing/src/Helpers/Campaign.php @@ -4,10 +4,10 @@ namespace Webkul\Marketing\Helpers; use Carbon\Carbon; use Illuminate\Support\Facades\Mail; -use Webkul\Marketing\Repositories\EventRepository; -use Webkul\Marketing\Repositories\CampaignRepository; -use Webkul\Marketing\Repositories\TemplateRepository; +use Webkul\Core\Models\SubscribersList; use Webkul\Marketing\Mail\NewsletterMail; +use Webkul\Marketing\Repositories\CampaignRepository; +use Webkul\Marketing\Repositories\EventRepository; class Campaign { @@ -45,8 +45,7 @@ class Campaign EventRepository $eventRepository, CampaignRepository $campaignRepository, CampaignRepository $templateRepository - ) - { + ) { $this->eventRepository = $eventRepository; $this->campaignRepository = $campaignRepository; @@ -55,6 +54,8 @@ class Campaign } /** + * Process the email. + * * @return void */ public function process(): void @@ -85,43 +86,35 @@ class Campaign } /** - * Build the message. + * Get the email address. * * @param \Webkul\Marketing\Contracts\Campaign $campaign * @return array */ public function getEmailAddresses($campaign) { - $emails = []; - - $customerGroupEmails = $campaign->customer_group->customers()->where('subscribed_to_news_letter', 1)->get('email'); - - foreach ($customerGroupEmails as $row) { - $emails[] = $row->email; + if ($campaign->customer_group->code === 'guest') { + $customerGroupEmails = SubscribersList::whereNull('customer_id'); + } else { + $customerGroupEmails = $campaign->customer_group->customers()->where('subscribed_to_news_letter', 1); } - return array_unique($emails); + return array_unique($customerGroupEmails->pluck('email')->toArray()); } /** - * Return customer's emails who has a birthday today + * Return customer's emails who has a birthday today. * * @param \Webkul\Marketing\Contracts\Campaign $campaign * @return array */ public function getBirthdayEmails($campaign) { - $customerGroupEmails = $campaign->customer_group->customers() + return $campaign->customer_group + ->customers() ->whereRaw('DATE_FORMAT(date_of_birth, "%m-%d") = ?', [Carbon::now()->format('m-d')]) ->where('subscribed_to_news_letter', 1) - ->get('email'); - - $emails = []; - - foreach ($customerGroupEmails as $row) { - $emails[] = $row->email; - } - - return $emails; + ->pluck('email') + ->toArray(); } -} \ No newline at end of file +} From 612379dc7e4435d312be5e94dcdeba7c482bec40 Mon Sep 17 00:00:00 2001 From: devansh bawari Date: Thu, 5 Aug 2021 16:25:18 +0530 Subject: [PATCH 3/8] List Added --- CHANGELOG for v1.x.x.md | 138 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) diff --git a/CHANGELOG for v1.x.x.md b/CHANGELOG for v1.x.x.md index 23b643a1d..fbfe8be5f 100644 --- a/CHANGELOG for v1.x.x.md +++ b/CHANGELOG for v1.x.x.md @@ -54,6 +54,144 @@ This changelog consists of the bug & security fixes and new features being inclu * #4926 - Allow admin to set a invoice prefix and the first invoice number Done Enhancement +* #4924 - coupon code button should not disable if one coupon code is already applied Bug Bug Fixed Velocity + +* #4921 - Flag icons are missing when the locale is not en Bug Bug Fixed Velocity + +* #4911 - By default variant selection is not there in the configurable product Bug Fixed Enhancement + +* #4903 - Contribution guide is missing Bug Bug Fixed + +* #4901 - Issue in Configurable Product Addition Done Enhancement + +* #4896 - group product sort order functionality is not working Bug Bug Fixed + +* #4886 - Make Sample optional for downloadable products Done Optimization + +* #4885 - Hide shipping for virtual products Bug Bug Fixed + +* #4855 - Quantity to shipped need to be auto filled from qty ordered Done Feature Request Optimization + +* #4854 - filtering customer address page is always redirect to customer profile tab Bug Bug Fixed + +* #4853 - Sliders are not visible on store when save for multiple locale Bug Invalid + +* #4848 - Fix selected filter options alignment at customer panel Bug Bug Fixed UI + +* #4847 - add ACL for customer order list Bug Bug Fixed + +* #4840 - pagination alignment issue on customer end Bug Bug Fixed + +* #4827 - Shop by category dissapears on hover + +* #4823 - UI Bug at customer Invoice page if multiple invoice exist for same order id Bug Bug Fixed UI/UX Mess + +* #4818 - getting qty error when move item to cart from the wishlist Bug Bug Fixed + +* #4813 - Compare product in velocity theme showing duplicated attribute after adding a new attribute family Bug Bug Fixed + +* #4811 - getting error when redirect on review page Bug Bug Fixed + +* #4807 - Category logo icon is missing in API API Bug Bug Fixed + +* #4806 - Not able to see the configurable products in the API API Bug + +* #4804 - the city field is missing in order confirmation emails Bug Bug Fixed Shop Velocity + +* #4800 - filter is not working in customer grid Bug Bug Fixed + +* #4799 - Product image resizing Done Optimization Product + +* #4794 - Admin logo is getting hidden when scroll down the menu bar Bug Bug Fixed + +* #4779 - image search is not working when out of stock is disabled Bug Bug Fixed + +* #4773 - category condition is not getting set in catalog rule Bug Bug Fixed + +* #4771 - datetime component should be enhanced as date component in UI package Done Enhancement UI + +* #4758 - BUG When adding an item twice in the cart from the API Bug Bug Fixed + +* #4752 - Add endpoints for transactions API Done Enhancement + +* #4751 - side bar menu icon should be removed from admin Done Optimization + +* #4748 - address is not saved on checkout Bug Bug Fixed + +* #4735 - Price filter is not working,getting this issue because of Customer group pricing.Discount is applicable for logged in user only but in filter its filtering the product in same way for guest user also Bug Bug Fixed + +* #4730 - All products are getting deleted when associated category is deleted Bug Fixed Critical Bug + +* #4729 - Products do not exist inside a category, still they are visible on the category page Bug Bug Fixed + +* #4727 - Error addToCartHtml is not defined on the compare page Bug Fixed Critical Bug Shop + +* #4722 - getting exception on wishlist when add configurable item on wishlist Bug Fixed Critical Bug + +* #4715 - product name is breaking in invoice PDF Bug Bug Fixed + +* #4713 - Paypal IPN Issue Fixed - SA6 + +* #4710 - FIX: currencies "value"s and "phone" fields formated for API + +* #4709 - getting exception when update inactive item on cart Bug Bug Fixed + +* #4708 - getting issue while selecting variant with no image Bug Bug Fixed + +* #4707 - Fixed admin theme not loading with custom admin url + +* #4702 - Issue during exporting Customers data Bug Bug Fixed + +* #4698 - category slug should not translation based Bug Bug Fixed + +* #4694 - Possible bugs in the API API Bug + +* #4692 - linked products are not visible on checkout Bug Invalid + +* #4691 - distorted image issue + +* #4690 - variant images are not visible in a sorted manner as uploaded in backend Bug Bug Fixed + +* #4686 - configurable item is still visible on search page when out of stock is disabled Bug Bug Fixed + +* #4685 - blank space remains on the homepage when disabling out of stock item from backend Bug Bug Fixed + +* #4682 - Catalog rules and product price filter Bug Bug Fixed + +* #4680 - Check out page extremely slow Done Optimization + +* #4677 - API addresses, returns an error on create + not all fields are manipulated API Bug Bug Fixed + +* #4668 - customer profile header is missing in responsive view Bug Bug Fixed + +* #4632 - Captcha must be implemented on User Registration so that Bot Registration can be eliminated. Done Enhancement + +* #4564 - getting exception on admin interface when setup using webinstaller Bug Fixed Critical Bug + +* #4557 - There is no feature for sorting product review at customer's end. Done Enhancement Feature Request + +* #4519 - Tax should not be state or Pincode-dependent. It should be product category dependent. Done Optimization Tax + +* #4463 - Show prices with or without taxes Done Enhancement Feature Request + +* #4449 - Laravel 8 Support Done Enhancement + +* #4257 - Multi-lang support in admin Admin Done Enhancement + +* #4102 - Add a payment history for orders Done Enhancement Feature Request + +* #3902 - Duplicate Order number getting generated when placed order simultaneously Bug Bug Fixed + +* #3834 - Make it possible to use multiple datagrids on one page Done Enhancement UI + +* #3477 - Add image column in configurable products for variants Bug Fixed Enhancement + +* #3453 - Invoice state is always set to paid Bug Bug Fixed + +* #3251 - Add orders list to the customers details view Done Enhancement + +* #3196 - L x W x H/D on product description Done Optimization + ## **v1.3.1 (22nd of February 2021)** - *Release* * #4659 [fixed] - Only show defaults option in Shipping. From 5403cbd1c5e9b213c6de0435c06b1c1528481a93 Mon Sep 17 00:00:00 2001 From: devansh bawari Date: Thu, 5 Aug 2021 16:47:51 +0530 Subject: [PATCH 4/8] Label Added --- CHANGELOG for v1.x.x.md | 188 +++++++++++++++++++--------------------- 1 file changed, 90 insertions(+), 98 deletions(-) diff --git a/CHANGELOG for v1.x.x.md b/CHANGELOG for v1.x.x.md index fbfe8be5f..f09784706 100644 --- a/CHANGELOG for v1.x.x.md +++ b/CHANGELOG for v1.x.x.md @@ -4,193 +4,185 @@ This changelog consists of the bug & security fixes and new features being inclu ## **v1.3.2 (Comming Soon)** - *Release* -* #5033 - order status options after invoice generation on payment methods Bug Bug Fixed +* #5033 [fixed] - order status options after invoice generation on payment methods -* #5029 - header menu content list layout need to fix Bug Bug Fixed +* #5029 [fixed] - header menu content list layout need to fix -* #5027 - Fix customer account menu visibility in safari browser Bug Bug Fixed +* #5027 [fixed] - Fix customer account menu visibility in safari browser -* #5018 - Invoice ID is not recognized in Transaction when invoice id contains custom prefix/suffix Bug Bug Fixed +* #5018 [fixed] - Invoice ID is not recognized in Transaction when invoice id contains custom prefix/suffix -* #5013 - No warning visible when user password doesn't match on reset password page Bug Bug Fixed +* #5013 [fixed] - No warning visible when user password doesn't match on reset password page -* #5011 - admin filter options are not working in Safari Bug Bug Fixed +* #5011 [fixed] - admin filter options are not working in Safari -* #4992 - Products image are getting stretch on search page Bug Bug Fixed +* #4992 [fixed] - Products image are getting stretch on search page -* #4989 - In Sales module Create refund Subtotal is showing different Bug Bug Fixed +* #4989 [fixed] - In Sales module Create refund Subtotal is showing different -* #4977 - configurable product are not visible in category page if allow out of stock is disabled Bug Bug Fixed +* #4977 [fixed] - configurable product are not visible in category page if allow out of stock is disabled -* #4969 - muliselect attribute options ID should not visible in compare product Bug Bug Fixed +* #4969 [fixed] - muliselect attribute options ID should not visible in compare product -* #4965 - Filter labels in datagrids are not translated Bug Bug Fixed +* #4965 [fixed] - Filter labels in datagrids are not translated -* #4964 - Search icon is missing in velocity theme datagrid Bug Bug Fixed Velocity +* #4964 [fixed] - Search icon is missing in velocity theme datagrid -* #4963 - French locale translations are missing Bug Bug Fixed +* #4963 [fixed] - French locale translations are missing -* #4962 - Able to access downloadable product even i have not purchased Bug Bug Fixed +* #4962 [fixed] - Able to access downloadable product even i have not purchased -* #4960 - The invoice date is missing on invoices Done Optimization +* #4960 [fixed] - The invoice date is missing on invoices -* #4959 - getting exception when merge guest cart with customer cart with configurable item Bug Bug Fixed +* #4959 [fixed] - getting exception when merge guest cart with customer cart with configurable item -* #4951 - Realtime compare number is not decreased when deleting product from compare page Bug Bug Fixed Velocity +* #4951 [fixed] - Realtime compare number is not decreased when deleting product from compare page -* #4948 - translation issue for the minimum order at cart checkout +* #4948 [fixed] - translation issue for the minimum order at cart checkout -* #4947 - Getting all invoices (that are not linked to customer or customer's order) in customer section in admin panel Bug Bug Fixed +* #4947 [fixed] - Getting all invoices (that are not linked to customer or customer's order) in customer section in admin panel -* #4943 - Virtual products are not buyable without inventory stock Bug Discussion +* #4941 [fixed] - Locale option should be visible with field that are locale based -* #4941 - Locale option should be visible with field that are locale based Done Optimization +* #4935 [fixed] - slider is not remove from the store if slider date get expired -* #4935 - slider is not remove from the store if slider date get expired Bug Bug Fixed +* #4931 [fixed] - Root category name is missing when admin locale is not en -* #4931 - Root category name is missing when admin locale is not en Admin Bug Bug Fixed +* #4927 [enhancement] - Allow the admin to set a payment term for invoices -* #4927 - Allow the admin to set a payment term for invoices Done Enhancement +* #4926 [enhancement] - Allow admin to set a invoice prefix and the first invoice number -* #4926 - Allow admin to set a invoice prefix and the first invoice number Done Enhancement +* #4924 [fixed] - coupon code button should not disable if one coupon code is already applied -* #4924 - coupon code button should not disable if one coupon code is already applied Bug Bug Fixed Velocity +* #4921 [fixed] - Flag icons are missing when the locale is not en -* #4921 - Flag icons are missing when the locale is not en Bug Bug Fixed Velocity +* #4911 [enhancement] - By default variant selection is not there in the configurable product -* #4911 - By default variant selection is not there in the configurable product Bug Fixed Enhancement +* #4903 [fixed] - Contribution guide is missing -* #4903 - Contribution guide is missing Bug Bug Fixed +* #4901 [enhancement] - Issue in Configurable Product Addition Done Enhancement -* #4901 - Issue in Configurable Product Addition Done Enhancement +* #4896 [fixed] - group product sort order functionality is not working -* #4896 - group product sort order functionality is not working Bug Bug Fixed +* #4886 [fixed] - Make Sample optional for downloadable products -* #4886 - Make Sample optional for downloadable products Done Optimization +* #4885 [fixed] - Hide shipping for virtual products -* #4885 - Hide shipping for virtual products Bug Bug Fixed +* #4855 [feature] - Quantity to shipped need to be auto filled from qty ordered -* #4855 - Quantity to shipped need to be auto filled from qty ordered Done Feature Request Optimization +* #4854 [fixed] - filtering customer address page is always redirect to customer profile tab -* #4854 - filtering customer address page is always redirect to customer profile tab Bug Bug Fixed +* #4848 [fixed] - Fix selected filter options alignment at customer panel -* #4853 - Sliders are not visible on store when save for multiple locale Bug Invalid +* #4847 [fixed] - add ACL for customer order list -* #4848 - Fix selected filter options alignment at customer panel Bug Bug Fixed UI +* #4840 [fixed] - pagination alignment issue on customer end -* #4847 - add ACL for customer order list Bug Bug Fixed +* #4827 [fixed] - Shop by category dissapears on hover -* #4840 - pagination alignment issue on customer end Bug Bug Fixed +* #4823 [fixed] - UI Bug at customer Invoice page if multiple invoice exist for same order id -* #4827 - Shop by category dissapears on hover +* #4818 [fixed] - getting qty error when move item to cart from the wishlist -* #4823 - UI Bug at customer Invoice page if multiple invoice exist for same order id Bug Bug Fixed UI/UX Mess +* #4813 [fixed] - Compare product in velocity theme showing duplicated attribute after adding a new attribute family -* #4818 - getting qty error when move item to cart from the wishlist Bug Bug Fixed +* #4811 [fixed] - getting error when redirect on review page -* #4813 - Compare product in velocity theme showing duplicated attribute after adding a new attribute family Bug Bug Fixed +* #4807 [fixed] - Category logo icon is missing in API -* #4811 - getting error when redirect on review page Bug Bug Fixed +* #4806 [fixed] - Not able to see the configurable products in the API -* #4807 - Category logo icon is missing in API API Bug Bug Fixed +* #4804 [fixed] - the city field is missing in order confirmation emails -* #4806 - Not able to see the configurable products in the API API Bug +* #4800 [fixed] - filter is not working in customer grid -* #4804 - the city field is missing in order confirmation emails Bug Bug Fixed Shop Velocity +* #4799 [fixed] - Product image resizing -* #4800 - filter is not working in customer grid Bug Bug Fixed +* #4794 [fixed] - Admin logo is getting hidden when scroll down the menu bar -* #4799 - Product image resizing Done Optimization Product +* #4779 [fixed] - image search is not working when out of stock is disabled -* #4794 - Admin logo is getting hidden when scroll down the menu bar Bug Bug Fixed +* #4773 [fixed] - category condition is not getting set in catalog rule -* #4779 - image search is not working when out of stock is disabled Bug Bug Fixed +* #4771 [fixed] - datetime component should be enhanced as date component in UI package Done Enhancement UI -* #4773 - category condition is not getting set in catalog rule Bug Bug Fixed +* #4758 [fixed] - BUG When adding an item twice in the cart from the API -* #4771 - datetime component should be enhanced as date component in UI package Done Enhancement UI +* #4752 [fixed] - Add endpoints for transactions API Done Enhancement -* #4758 - BUG When adding an item twice in the cart from the API Bug Bug Fixed +* #4751 [fixed] - side bar menu icon should be removed from admin -* #4752 - Add endpoints for transactions API Done Enhancement +* #4748 [fixed] - address is not saved on checkout -* #4751 - side bar menu icon should be removed from admin Done Optimization +* #4735 [fixed] - Price filter is not working,getting this issue because of Customer group pricing.Discount is applicable for logged in user only but in filter its filtering the product in same way for guest user also -* #4748 - address is not saved on checkout Bug Bug Fixed +* #4730 [fixed] - All products are getting deleted when associated category is deleted -* #4735 - Price filter is not working,getting this issue because of Customer group pricing.Discount is applicable for logged in user only but in filter its filtering the product in same way for guest user also Bug Bug Fixed +* #4729 [fixed] - Products do not exist inside a category, still they are visible on the category page -* #4730 - All products are getting deleted when associated category is deleted Bug Fixed Critical Bug +* #4727 [fixed] - Error addToCartHtml is not defined on the compare page -* #4729 - Products do not exist inside a category, still they are visible on the category page Bug Bug Fixed +* #4722 [fixed] - getting exception on wishlist when add configurable item on wishlist -* #4727 - Error addToCartHtml is not defined on the compare page Bug Fixed Critical Bug Shop +* #4715 [fixed] - product name is breaking in invoice PDF -* #4722 - getting exception on wishlist when add configurable item on wishlist Bug Fixed Critical Bug +* #4713 [fixed] - Paypal IPN Issue Fixed - SA6 -* #4715 - product name is breaking in invoice PDF Bug Bug Fixed +* #4710 [fixed] - FIX: currencies "value"s and "phone" fields formated for API -* #4713 - Paypal IPN Issue Fixed - SA6 +* #4709 [fixed] - getting exception when update inactive item on cart -* #4710 - FIX: currencies "value"s and "phone" fields formated for API +* #4708 [fixed] - getting issue while selecting variant with no image -* #4709 - getting exception when update inactive item on cart Bug Bug Fixed +* #4707 [fixed] - Fixed admin theme not loading with custom admin url -* #4708 - getting issue while selecting variant with no image Bug Bug Fixed +* #4702 [fixed] - Issue during exporting Customers data -* #4707 - Fixed admin theme not loading with custom admin url +* #4698 [fixed] - category slug should not translation based -* #4702 - Issue during exporting Customers data Bug Bug Fixed +* #4691 [fixed] - distorted image issue -* #4698 - category slug should not translation based Bug Bug Fixed +* #4690 [fixed] - variant images are not visible in a sorted manner as uploaded in backend -* #4694 - Possible bugs in the API API Bug +* #4686 [fixed] - configurable item is still visible on search page when out of stock is disabled -* #4692 - linked products are not visible on checkout Bug Invalid +* #4685 [fixed] - blank space remains on the homepage when disabling out of stock item from backend -* #4691 - distorted image issue +* #4682 [fixed] - Catalog rules and product price filter -* #4690 - variant images are not visible in a sorted manner as uploaded in backend Bug Bug Fixed +* #4680 [fixed] - Check out page extremely slow -* #4686 - configurable item is still visible on search page when out of stock is disabled Bug Bug Fixed +* #4677 [fixed] - API addresses, returns an error on create + not all fields are manipulated API -* #4685 - blank space remains on the homepage when disabling out of stock item from backend Bug Bug Fixed +* #4668 [fixed] - customer profile header is missing in responsive view -* #4682 - Catalog rules and product price filter Bug Bug Fixed +* #4632 [feature] - Captcha must be implemented on User Registration so that Bot Registration can be eliminated. -* #4680 - Check out page extremely slow Done Optimization +* #4564 [fixed] - getting exception on admin interface when setup using webinstaller -* #4677 - API addresses, returns an error on create + not all fields are manipulated API Bug Bug Fixed +* #4557 [feature] - There is no feature for sorting product review at customer's end. -* #4668 - customer profile header is missing in responsive view Bug Bug Fixed +* #4519 [fixed] - Tax should not be state or Pincode-dependent. It should be product category dependent. -* #4632 - Captcha must be implemented on User Registration so that Bot Registration can be eliminated. Done Enhancement +* #4463 [feature] - Show prices with or without taxes -* #4564 - getting exception on admin interface when setup using webinstaller Bug Fixed Critical Bug +* #4449 [enhancement] - Laravel 8 Support -* #4557 - There is no feature for sorting product review at customer's end. Done Enhancement Feature Request +* #4257 [feature] - Multi-lang support in admin Admin -* #4519 - Tax should not be state or Pincode-dependent. It should be product category dependent. Done Optimization Tax +* #4102 [feature] - Add a payment history for orders -* #4463 - Show prices with or without taxes Done Enhancement Feature Request +* #3902 [fixed] - Duplicate Order number getting generated when placed order simultaneously -* #4449 - Laravel 8 Support Done Enhancement +* #3834 [enhancement] - Make it possible to use multiple datagrids on one page -* #4257 - Multi-lang support in admin Admin Done Enhancement +* #3477 [feature] - Add image column in configurable products for variants -* #4102 - Add a payment history for orders Done Enhancement Feature Request +* #3453 [fixed] - Invoice state is always set to paid -* #3902 - Duplicate Order number getting generated when placed order simultaneously Bug Bug Fixed +* #3251 [enhancement] - Add orders list to the customers details view -* #3834 - Make it possible to use multiple datagrids on one page Done Enhancement UI - -* #3477 - Add image column in configurable products for variants Bug Fixed Enhancement - -* #3453 - Invoice state is always set to paid Bug Bug Fixed - -* #3251 - Add orders list to the customers details view Done Enhancement - -* #3196 - L x W x H/D on product description Done Optimization +* #3196 [fixed] - L x W x H/D on product description ## **v1.3.1 (22nd of February 2021)** - *Release* From 667449ff70a38e7dd78c0172a9582b8b6ab1e23f Mon Sep 17 00:00:00 2001 From: devansh bawari Date: Thu, 5 Aug 2021 18:10:20 +0530 Subject: [PATCH 5/8] Change Log Updated --- CHANGELOG for v1.x.x.md | 62 +++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 30 deletions(-) diff --git a/CHANGELOG for v1.x.x.md b/CHANGELOG for v1.x.x.md index f09784706..fbc1cf2ab 100644 --- a/CHANGELOG for v1.x.x.md +++ b/CHANGELOG for v1.x.x.md @@ -2,7 +2,37 @@ This changelog consists of the bug & security fixes and new features being included in the releases listed below. -## **v1.3.2 (Comming Soon)** - *Release* +## **v1.3.2 (6th of August 2021)** - *Release* + +* #5020 [feature] - Webvital + +* #4855 [feature] - Quantity to shipped need to be auto filled from qty ordered + +* #4632 [feature] - Captcha must be implemented on User Registration so that Bot Registration can be eliminated. + +* #4557 [feature] - There is no feature for sorting product review at customer's end. + +* #4463 [feature] - Show prices with or without taxes + +* #4257 [feature] - Multi-lang support in admin Admin + +* #4102 [feature] - Add a payment history for orders + +* #3477 [feature] - Add image column in configurable products for variants + +* #4927 [enhancement] - Allow the admin to set a payment term for invoices + +* #4926 [enhancement] - Allow admin to set a invoice prefix and the first invoice number + +* #4911 [enhancement] - By default variant selection is not there in the configurable product + +* #4901 [enhancement] - Issue in Configurable Product Addition + +* #4449 [enhancement] - Laravel 8 Support + +* #3834 [enhancement] - Make it possible to use multiple datagrids on one page + +* #3251 [enhancement] - Add orders list to the customers details view * #5033 [fixed] - order status options after invoice generation on payment methods @@ -48,28 +78,18 @@ This changelog consists of the bug & security fixes and new features being inclu * #4931 [fixed] - Root category name is missing when admin locale is not en -* #4927 [enhancement] - Allow the admin to set a payment term for invoices - -* #4926 [enhancement] - Allow admin to set a invoice prefix and the first invoice number - * #4924 [fixed] - coupon code button should not disable if one coupon code is already applied * #4921 [fixed] - Flag icons are missing when the locale is not en -* #4911 [enhancement] - By default variant selection is not there in the configurable product - * #4903 [fixed] - Contribution guide is missing -* #4901 [enhancement] - Issue in Configurable Product Addition Done Enhancement - * #4896 [fixed] - group product sort order functionality is not working * #4886 [fixed] - Make Sample optional for downloadable products * #4885 [fixed] - Hide shipping for virtual products -* #4855 [feature] - Quantity to shipped need to be auto filled from qty ordered - * #4854 [fixed] - filtering customer address page is always redirect to customer profile tab * #4848 [fixed] - Fix selected filter options alignment at customer panel @@ -114,7 +134,7 @@ This changelog consists of the bug & security fixes and new features being inclu * #4748 [fixed] - address is not saved on checkout -* #4735 [fixed] - Price filter is not working,getting this issue because of Customer group pricing.Discount is applicable for logged in user only but in filter its filtering the product in same way for guest user also +* #4735 [fixed] - Price filter issue * #4730 [fixed] - All products are getting deleted when associated category is deleted @@ -156,32 +176,14 @@ This changelog consists of the bug & security fixes and new features being inclu * #4668 [fixed] - customer profile header is missing in responsive view -* #4632 [feature] - Captcha must be implemented on User Registration so that Bot Registration can be eliminated. - * #4564 [fixed] - getting exception on admin interface when setup using webinstaller -* #4557 [feature] - There is no feature for sorting product review at customer's end. - * #4519 [fixed] - Tax should not be state or Pincode-dependent. It should be product category dependent. -* #4463 [feature] - Show prices with or without taxes - -* #4449 [enhancement] - Laravel 8 Support - -* #4257 [feature] - Multi-lang support in admin Admin - -* #4102 [feature] - Add a payment history for orders - * #3902 [fixed] - Duplicate Order number getting generated when placed order simultaneously -* #3834 [enhancement] - Make it possible to use multiple datagrids on one page - -* #3477 [feature] - Add image column in configurable products for variants - * #3453 [fixed] - Invoice state is always set to paid -* #3251 [enhancement] - Add orders list to the customers details view - * #3196 [fixed] - L x W x H/D on product description ## **v1.3.1 (22nd of February 2021)** - *Release* From 27ce3889594ba154045735abdb544b5e27313766 Mon Sep 17 00:00:00 2001 From: devansh bawari Date: Thu, 5 Aug 2021 18:29:13 +0530 Subject: [PATCH 6/8] Typo Fixed --- CHANGELOG for v1.x.x.md | 180 ++++++++++++++++++++-------------------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/CHANGELOG for v1.x.x.md b/CHANGELOG for v1.x.x.md index fbc1cf2ab..549a4606b 100644 --- a/CHANGELOG for v1.x.x.md +++ b/CHANGELOG for v1.x.x.md @@ -4,187 +4,187 @@ This changelog consists of the bug & security fixes and new features being inclu ## **v1.3.2 (6th of August 2021)** - *Release* -* #5020 [feature] - Webvital +* #5020 [feature] - Webvital score improvement. -* #4855 [feature] - Quantity to shipped need to be auto filled from qty ordered +* #4855 [feature] - Autofilling of quantity. -* #4632 [feature] - Captcha must be implemented on User Registration so that Bot Registration can be eliminated. +* #4632 [feature] - Gooogle captcha integration. -* #4557 [feature] - There is no feature for sorting product review at customer's end. +* #4557 [feature] - Feature for sorting product review at customer's end. -* #4463 [feature] - Show prices with or without taxes +* #4463 [feature] - Show prices with or without taxes. -* #4257 [feature] - Multi-lang support in admin Admin +* #4257 [feature] - Multi-lang support in admin. -* #4102 [feature] - Add a payment history for orders +* #4102 [feature] - Payment history for orders. -* #3477 [feature] - Add image column in configurable products for variants +* #3477 [feature] - Image column in configurable products for variants. -* #4927 [enhancement] - Allow the admin to set a payment term for invoices +* #4927 [enhancement] - Allow the admin to set a payment term for invoices. -* #4926 [enhancement] - Allow admin to set a invoice prefix and the first invoice number +* #4926 [enhancement] - Allow admin to set an invoice prefix and the first invoice number. -* #4911 [enhancement] - By default variant selection is not there in the configurable product +* #4911 [enhancement] - Default variant selection for configurable product. -* #4901 [enhancement] - Issue in Configurable Product Addition +* #4901 [enhancement] - Configurable product addition issue. * #4449 [enhancement] - Laravel 8 Support -* #3834 [enhancement] - Make it possible to use multiple datagrids on one page +* #3834 [enhancement] - Ability to use multiple datagrids on single page. -* #3251 [enhancement] - Add orders list to the customers details view +* #3251 [enhancement] - Add orders list to the customers details view. -* #5033 [fixed] - order status options after invoice generation on payment methods +* #5033 [fixed] - Order status options after invoice generation on payment methods. -* #5029 [fixed] - header menu content list layout need to fix +* #5029 [fixed] - Header menu content list layout need to fix. -* #5027 [fixed] - Fix customer account menu visibility in safari browser +* #5027 [fixed] - Fix customer account menu visibility in safari browser. -* #5018 [fixed] - Invoice ID is not recognized in Transaction when invoice id contains custom prefix/suffix +* #5018 [fixed] - Invoice ID is not recognized in transactions when invoice id contains custom prefix/suffix. -* #5013 [fixed] - No warning visible when user password doesn't match on reset password page +* #5013 [fixed] - No warning visible when user password doesn't match on the reset password page. -* #5011 [fixed] - admin filter options are not working in Safari +* #5011 [fixed] - Admin filter options are not working in Safari. -* #4992 [fixed] - Products image are getting stretch on search page +* #4992 [fixed] - Products image are getting stretch on search page. -* #4989 [fixed] - In Sales module Create refund Subtotal is showing different +* #4989 [fixed] - In sales, the module that creates refund subtotal is showing different. -* #4977 [fixed] - configurable product are not visible in category page if allow out of stock is disabled +* #4977 [fixed] - Configurable products are not visible on the category page if allow out of stock is disabled. +. +* #4969 [fixed] - Muliselect attribute options ID should not visible in compare product. -* #4969 [fixed] - muliselect attribute options ID should not visible in compare product +* #4965 [fixed] - Filter labels in datagrids are not translated. -* #4965 [fixed] - Filter labels in datagrids are not translated +* #4964 [fixed] - Search icon is missing in velocity theme Datagrid. -* #4964 [fixed] - Search icon is missing in velocity theme datagrid +* #4963 [fixed] - French locale translations are missing. -* #4963 [fixed] - French locale translations are missing +* #4962 [fixed] - Able to access downloadable products even I have not purchased. -* #4962 [fixed] - Able to access downloadable product even i have not purchased +* #4960 [fixed] - The invoice date is missing on invoices. -* #4960 [fixed] - The invoice date is missing on invoices +* #4959 [fixed] - Getting exception when merging guest cart with customer cart with the configurable item. -* #4959 [fixed] - getting exception when merge guest cart with customer cart with configurable item +* #4951 [fixed] - Real-time compare number is not decreased when deleting a product from compare page. -* #4951 [fixed] - Realtime compare number is not decreased when deleting product from compare page +* #4948 [fixed] - Translation issue for the minimum order at cart checkout. -* #4948 [fixed] - translation issue for the minimum order at cart checkout +* #4947 [fixed] - Getting all invoices (that are not linked to customer or customer's order) in the customer section in the admin panel. -* #4947 [fixed] - Getting all invoices (that are not linked to customer or customer's order) in customer section in admin panel +* #4941 [fixed] - The locale option should be visible with fields that are locale-based. -* #4941 [fixed] - Locale option should be visible with field that are locale based +* #4935 [fixed] - Slider is not removed from the store if slider date gets expired. -* #4935 [fixed] - slider is not remove from the store if slider date get expired +* #4931 [fixed] - Root category name is missing when admin locale is not en. -* #4931 [fixed] - Root category name is missing when admin locale is not en +* #4924 [fixed] - The coupon code button should not disable if one coupon code is already applied. -* #4924 [fixed] - coupon code button should not disable if one coupon code is already applied +* #4921 [fixed] - Flag icons are missing when the locale is not en. -* #4921 [fixed] - Flag icons are missing when the locale is not en +* #4903 [fixed] - Contribution guide is missing. -* #4903 [fixed] - Contribution guide is missing +* #4896 [fixed] - Group product sort order functionality is not working. -* #4896 [fixed] - group product sort order functionality is not working - -* #4886 [fixed] - Make Sample optional for downloadable products +* #4886 [fixed] - Make Sample optional for downloadable products. * #4885 [fixed] - Hide shipping for virtual products -* #4854 [fixed] - filtering customer address page is always redirect to customer profile tab +* #4854 [fixed] - Filtering customer address page is always redirect to the customer profile tab. -* #4848 [fixed] - Fix selected filter options alignment at customer panel +* #4848 [fixed] - Fix selected filter options alignment at customer panel. -* #4847 [fixed] - add ACL for customer order list +* #4847 [fixed] - Add ACL for customer order list. -* #4840 [fixed] - pagination alignment issue on customer end +* #4840 [fixed] - Pagination alignment issue on customer end. -* #4827 [fixed] - Shop by category dissapears on hover +* #4827 [fixed] - Shop by category disappears on hover. -* #4823 [fixed] - UI Bug at customer Invoice page if multiple invoice exist for same order id +* #4823 [fixed] - UI bug at customer Invoice page if multiple invoices exist for same order id. -* #4818 [fixed] - getting qty error when move item to cart from the wishlist +* #4818 [fixed] - Getting qty error when move item to cart from the wishlist. -* #4813 [fixed] - Compare product in velocity theme showing duplicated attribute after adding a new attribute family +* #4813 [fixed] - Compare product in velocity theme showing duplicated attribute after adding a new attribute family. -* #4811 [fixed] - getting error when redirect on review page +* #4811 [fixed] - Getting error when redirect on review page. -* #4807 [fixed] - Category logo icon is missing in API +* #4807 [fixed] - Category logo icon is missing in API. -* #4806 [fixed] - Not able to see the configurable products in the API +* #4806 [fixed] - Not able to see the configurable products in the API. -* #4804 [fixed] - the city field is missing in order confirmation emails +* #4804 [fixed] - The city field is missing in order confirmation emails. -* #4800 [fixed] - filter is not working in customer grid +* #4800 [fixed] - Filter is not working in customer grid. -* #4799 [fixed] - Product image resizing +* #4799 [fixed] - Product image resizing. -* #4794 [fixed] - Admin logo is getting hidden when scroll down the menu bar +* #4794 [fixed] - Admin logo is getting hidden when scrolling down the menu bar. -* #4779 [fixed] - image search is not working when out of stock is disabled +* #4779 [fixed] - Image search is not working when out of stock is disabled. -* #4773 [fixed] - category condition is not getting set in catalog rule +* #4773 [fixed] - Category condition is not getting set in catalog rule. -* #4771 [fixed] - datetime component should be enhanced as date component in UI package Done Enhancement UI +* #4771 [fixed] - Datetime component should be enhanced as date component in UI package. -* #4758 [fixed] - BUG When adding an item twice in the cart from the API +* #4758 [fixed] - Bug when adding an item twice in the cart from the API. -* #4752 [fixed] - Add endpoints for transactions API Done Enhancement +* #4752 [fixed] - Add endpoints for transactions API Done Enhancement. -* #4751 [fixed] - side bar menu icon should be removed from admin +* #4751 [fixed] - The sidebar menu icon should be removed from admin. -* #4748 [fixed] - address is not saved on checkout +* #4748 [fixed] - Address is not saved on checkout. -* #4735 [fixed] - Price filter issue +* #4735 [fixed] - Price filter issue. -* #4730 [fixed] - All products are getting deleted when associated category is deleted +* #4730 [fixed] - All products are getting deleted when the associated category is deleted. -* #4729 [fixed] - Products do not exist inside a category, still they are visible on the category page +* #4729 [fixed] - Products do not exist inside a category, still they are visible on the category page. -* #4727 [fixed] - Error addToCartHtml is not defined on the compare page +* #4727 [fixed] - Error `addToCartHtml` is not defined on the compare page. -* #4722 [fixed] - getting exception on wishlist when add configurable item on wishlist +* #4722 [fixed] - Getting exception on wishlist when adding a configurable item on wishlist. -* #4715 [fixed] - product name is breaking in invoice PDF +* #4715 [fixed] - Product name is breaking in invoice PDF. -* #4713 [fixed] - Paypal IPN Issue Fixed - SA6 +* #4713 [fixed] - Paypal IPN Issue Fixed - SA6. -* #4710 [fixed] - FIX: currencies "value"s and "phone" fields formated for API +* #4710 [fixed] - Fixed currencies "value"s and "phone" fields formated for API. -* #4709 [fixed] - getting exception when update inactive item on cart +* #4709 [fixed] - Getting exception when update inactive item on cart. -* #4708 [fixed] - getting issue while selecting variant with no image +* #4708 [fixed] - Getting issue while selecting variant with no image. -* #4707 [fixed] - Fixed admin theme not loading with custom admin url +* #4707 [fixed] - Fixed admin theme not loading with custom admin URL. -* #4702 [fixed] - Issue during exporting Customers data +* #4702 [fixed] - Issue during exporting customers data. -* #4698 [fixed] - category slug should not translation based +* #4698 [fixed] - Category slug should not translation based. -* #4691 [fixed] - distorted image issue +* #4691 [fixed] - Distorted image issue. -* #4690 [fixed] - variant images are not visible in a sorted manner as uploaded in backend +* #4690 [fixed] - Variant images are not visible in a sorted manner as uploaded in the backend. -* #4686 [fixed] - configurable item is still visible on search page when out of stock is disabled +* #4686 [fixed] - Configurable item is still visible on the search page when out of stock is disabled. -* #4685 [fixed] - blank space remains on the homepage when disabling out of stock item from backend +* #4685 [fixed] - Blank space remains on the homepage when disabling out-of-stock items from the backend. -* #4682 [fixed] - Catalog rules and product price filter +* #4682 [fixed] - Catalog rules and product price filter. -* #4680 [fixed] - Check out page extremely slow +* #4680 [fixed] - Check out page extremely slow. -* #4677 [fixed] - API addresses, returns an error on create + not all fields are manipulated API +* #4677 [fixed] - API addresses, returns an error on create + not all fields are manipulated API. -* #4668 [fixed] - customer profile header is missing in responsive view +* #4668 [fixed] - Customer profile header is missing in responsive view. -* #4564 [fixed] - getting exception on admin interface when setup using webinstaller +* #4564 [fixed] - Getting exception on admin interface when setup using webinstaller. -* #4519 [fixed] - Tax should not be state or Pincode-dependent. It should be product category dependent. +* #4519 [fixed] - Tax should not be state or Pincode-dependent. It should be product category-dependent. -* #3902 [fixed] - Duplicate Order number getting generated when placed order simultaneously +* #3902 [fixed] - Duplicate order number getting generated when placed order simultaneously. -* #3453 [fixed] - Invoice state is always set to paid +* #3453 [fixed] - Invoice state is always set to paid. -* #3196 [fixed] - L x W x H/D on product description +* #3196 [fixed] - L x W x H/D on product description. ## **v1.3.1 (22nd of February 2021)** - *Release* From 8e8829c82a378b3c7d19ff932b0c0b82babf5bb9 Mon Sep 17 00:00:00 2001 From: devansh bawari Date: Thu, 5 Aug 2021 19:49:13 +0530 Subject: [PATCH 7/8] Messsage Updated --- packages/Webkul/Admin/src/Resources/lang/en/app.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/Webkul/Admin/src/Resources/lang/en/app.php b/packages/Webkul/Admin/src/Resources/lang/en/app.php index 60f68a00f..6e8f8f490 100755 --- a/packages/Webkul/Admin/src/Resources/lang/en/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/en/app.php @@ -978,11 +978,11 @@ return [ 'create-btn-title' => 'Add Address', 'save-btn-title' => 'Save Address', 'general' => 'General', - 'success-create' => 'Success: Customer address created successfully.', - 'success-update' => 'Success: Customer address updated successfully.', - 'success-delete' => 'Success: Customer address deleted successfully.', - 'success-mass-delete' => 'Success: selected addresses deleted successfully.', - 'error-create' => 'Error: Customer address not created.', + 'success-create' => 'Customer address created successfully.', + 'success-update' => 'Customer address updated successfully.', + 'success-delete' => 'Customer address deleted successfully.', + 'success-mass-delete' => 'Selected addresses deleted successfully.', + 'error-create' => 'Customer address not created.', ], 'note' => [ From 637cff70273d981248313f1f6e49751372279026 Mon Sep 17 00:00:00 2001 From: devansh bawari Date: Thu, 5 Aug 2021 19:52:51 +0530 Subject: [PATCH 8/8] Other Language Issue Fixed --- packages/Webkul/Admin/src/Resources/lang/ar/app.php | 10 +++++----- packages/Webkul/Admin/src/Resources/lang/fa/app.php | 8 ++++---- packages/Webkul/Admin/src/Resources/lang/it/app.php | 10 +++++----- packages/Webkul/Admin/src/Resources/lang/nl/app.php | 8 ++++---- packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php | 8 ++++---- 5 files changed, 22 insertions(+), 22 deletions(-) diff --git a/packages/Webkul/Admin/src/Resources/lang/ar/app.php b/packages/Webkul/Admin/src/Resources/lang/ar/app.php index 835d0bd1c..c3c0dbe40 100644 --- a/packages/Webkul/Admin/src/Resources/lang/ar/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/ar/app.php @@ -970,11 +970,11 @@ return [ 'create-btn-title' => 'اضف عنوان', 'save-btn-title' => 'حفظ العنوان', 'general' => 'جنرال لواء', - 'success-create' => 'تم إنشاء عنوان العميل بنجاح Success:', - 'success-update' => 'تم تحديث عنوان العميل بنجاح Success:', - 'success-delete' => 'تم حذف عنوان العميل بنجاح Success:', - 'success-mass-delete' => 'تم حذف العناوين المحددة بنجاح Success:', - 'error-create' => 'لم يتم إنشاء عنوان العميل Error:', + 'success-create' => 'تم إنشاء عنوان العميل بنجاح', + 'success-update' => 'تم تحديث عنوان العميل بنجاح', + 'success-delete' => 'تم حذف عنوان العميل بنجاح', + 'success-mass-delete' => 'تم حذف العناوين المحددة بنجاح', + 'error-create' => 'لم يتم إنشاء عنوان العميل', ], 'note' => [ diff --git a/packages/Webkul/Admin/src/Resources/lang/fa/app.php b/packages/Webkul/Admin/src/Resources/lang/fa/app.php index c828cb44e..6827bcce5 100644 --- a/packages/Webkul/Admin/src/Resources/lang/fa/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/fa/app.php @@ -966,10 +966,10 @@ return [ 'create-btn-title' => 'اضافه کردن آدرس', 'save-btn-title' => 'ذخیره آدرس', 'general' => 'عمومی', - 'success-create' => 'آدرس مشتری با موفقیت ایجاد شد Success:', - 'success-update' => 'آدرس مشتری با موفقیت به روز شد Success:', - 'success-delete' => 'آدرس مشتری با موفقیت حذف شد Success:', - 'success-mass-delete' => 'آدرس های انتخاب شده با موفقیت حذف شدند Success:', + 'success-create' => 'آدرس مشتری با موفقیت ایجاد شد ', + 'success-update' => 'آدرس مشتری با موفقیت به روز شد ', + 'success-delete' => 'آدرس مشتری با موفقیت حذف شد ', + 'success-mass-delete' => 'آدرس های انتخاب شده با موفقیت حذف شدند ', 'error-create' => 'آدرس مشتری ایجاد نشده است Error:', ], diff --git a/packages/Webkul/Admin/src/Resources/lang/it/app.php b/packages/Webkul/Admin/src/Resources/lang/it/app.php index a71ab5ed4..a205bb379 100644 --- a/packages/Webkul/Admin/src/Resources/lang/it/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/it/app.php @@ -972,11 +972,11 @@ return [ 'create-btn-title' => 'Aggiungi Indirizzo', 'save-btn-title' => 'Salva Indirizzo', 'general' => 'Generale', - 'success-create' => 'Success: Indirizzo cliente creato con successo.', - 'success-update' => 'Success: Indirizzo cliente aggiornato con successo.', - 'success-delete' => 'Success: Indirizzo cliente eliminato con successo.', - 'success-mass-delete' => 'Success: indirizzi selezionati eliminati con successo.', - 'error-create' => 'Error: Indirizzo cliente non creato.', + 'success-create' => 'Indirizzo cliente creato con successo.', + 'success-update' => 'Indirizzo cliente aggiornato con successo.', + 'success-delete' => 'Indirizzo cliente eliminato con successo.', + 'success-mass-delete' => 'indirizzi selezionati eliminati con successo.', + 'error-create' => 'Indirizzo cliente non creato.', ], 'note' => [ diff --git a/packages/Webkul/Admin/src/Resources/lang/nl/app.php b/packages/Webkul/Admin/src/Resources/lang/nl/app.php index eeda1a43b..13eccfcb1 100644 --- a/packages/Webkul/Admin/src/Resources/lang/nl/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/nl/app.php @@ -967,10 +967,10 @@ return [ 'create-btn-title' => 'Adres toevoegen', 'save-btn-title' => 'Bewaar adres', 'general' => 'Algemeen', - 'success-create' => 'Success: Klantadres succesvol aangemaakt.', - 'success-update' => 'Success: Klantadres succesvol bijgewerkt.', - 'success-delete' => 'Success: Klantadres succesvol verwijderd.', - 'success-mass-delete' => 'Success: geselecteerde adressen zijn succesvol verwijderd.', + 'success-create' => 'Klantadres succesvol aangemaakt.', + 'success-update' => 'Klantadres succesvol bijgewerkt.', + 'success-delete' => 'Klantadres succesvol verwijderd.', + 'success-mass-delete' => 'geselecteerde adressen zijn succesvol verwijderd.', 'error-create' => 'Error: Klantadres niet aangemaakt.', ], diff --git a/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php b/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php index 50173b297..c6d0d001c 100755 --- a/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php @@ -969,10 +969,10 @@ return [ 'create-btn-title' => 'Adicionar endereço', 'save-btn-title' => 'Salvar endereço', 'general' => 'Geral', - 'success-create' => 'Success: Endereço do cliente criado com sucesso.', - 'success-update' => 'Success: Endereço do cliente atualizado com sucesso.', - 'success-delete' => 'Success: Endereço do cliente excluído com sucesso.', - 'success-mass-delete' => 'Success: endereços selecionados excluídos com sucesso.', + 'success-create' => 'Endereço do cliente criado com sucesso.', + 'success-update' => 'Endereço do cliente atualizado com sucesso.', + 'success-delete' => 'Endereço do cliente excluído com sucesso.', + 'success-mass-delete' => 'endereços selecionados excluídos com sucesso.', 'error-create' => 'Error: Endereço do cliente não criado.', ],