diff --git a/CHANGELOG.md b/CHANGELOG.md index b3640832..ac8c8d35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2025-07-04 4.8.30 +* Added description for canceling of bonus operations + ## 2025-06-30 4.8.29 * Fixed zero VAT handling diff --git a/VERSION b/VERSION index 1be12ee8..86220344 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.8.29 +4.8.30 diff --git a/src/include/components/class-wc-retailcrm-loyalty-form.php b/src/include/components/class-wc-retailcrm-loyalty-form.php index 0cd9c1a4..ce71facb 100644 --- a/src/include/components/class-wc-retailcrm-loyalty-form.php +++ b/src/include/components/class-wc-retailcrm-loyalty-form.php @@ -73,7 +73,9 @@ public function getInfoLoyalty(array $loyaltyAccount) 'credit_for_order' => __('Сredited for order ', 'retailcrm'), 'burn' => __('Burn','retailcrm'), 'charge_for_order' => __('Сharged for order ', 'retailcrm'), - 'credit_for_event' => __('Credited for event', 'retailcrm') + 'credit_for_event' => __('Credited for event', 'retailcrm'), + 'cancel_of_charge' => __('Сancel of charge for order ', 'retailcrm'), + 'cancel_of_credit' => __('Сancel of credit for order ', 'retailcrm'), ]; $currency = ' ' . $loyaltyAccount['loyalty']['currency']; $burnInfo = $loyaltyAccount['burnBonuses'][0] ?: []; diff --git a/src/languages/retailcrm-es_ES.l10n.php b/src/languages/retailcrm-es_ES.l10n.php index 4219f92c..65c4e685 100644 --- a/src/languages/retailcrm-es_ES.l10n.php +++ b/src/languages/retailcrm-es_ES.l10n.php @@ -226,11 +226,13 @@ "Total order summ " => "Total de compras ", "Total summ for next level: " => "Falta para el siguiente nivel: ", "History" => "Historial de operaciones", - "Сredited for order" => "Acreditado por el pedido", - "Сharged for order" => "Cargado por el pedido", + "Сredited for order " => "Acreditado por el pedido ", + "Сharged for order " => "Cargado por el pedido ", "Сharged by manager" => "Cobrado por el gerente", "Сredited by manager" => "Acreditado por el gerente", "Credited for event" => "Acreditado por evento", + "Сancel of charge for order " => "Cancelación de cobro de un pedido ", + "Сancel of credit for order " => "Cancelación de cargos de un pedido ", "%s bonuses will expire %s" => "%s bonos expirarán %s", "%s bonuses will active %s" => "%s bonos se activarán %s", "Send" => "Enviar", diff --git a/src/languages/retailcrm-ru_RU.l10n.php b/src/languages/retailcrm-ru_RU.l10n.php index 3836240b..371540f9 100644 --- a/src/languages/retailcrm-ru_RU.l10n.php +++ b/src/languages/retailcrm-ru_RU.l10n.php @@ -226,11 +226,13 @@ "Total order summ " => "Сумма покупок ", "Total summ for next level: " => "Сумма, оставшаяся до перехода на следующий уровень: ", "History" => "История операций", - "Сredited for order " => "Начислено за заказ", + "Сredited for order " => "Начислено за заказ ", "Сharged for order " => "Списано за заказ ", "Сharged by manager" => "Списано менеджером", "Сredited by manager" => "Начислено менеджером", "Credited for event" => "Начислено за событие", + "Сancel of charge for order " => "Отмена списания за заказ ", + "Сancel of credit for order " => "Отмена начисления за заказ ", "%s bonuses will expire %s" => "%s бонусов сгорят %s", "%s bonuses will active %s" => "%s бонусов ожидают активации %s", "Send" => "Отправить", diff --git a/src/readme.txt b/src/readme.txt index 152cd153..103dc596 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla Requires PHP: 7.1 Requires at least: 5.3 Tested up to: 6.8 -Stable tag: 4.8.29 +Stable tag: 4.8.30 License: GPLv1 or later License URI: http://www.gnu.org/licenses/gpl-1.0.html @@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i == Changelog == += 4.8.30 = +* Added description for canceling of bonus operations + = 4.8.29 = * Fixed zero VAT handling diff --git a/src/retailcrm.php b/src/retailcrm.php index f9463610..b205fb6e 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -5,7 +5,7 @@ * Description: Integration plugin for WooCommerce & Simla.com * Author: RetailDriver LLC * Author URI: http://retailcrm.pro/ - * Version: 4.8.29 + * Version: 4.8.30 * Tested up to: 6.8 * Requires Plugins: woocommerce * WC requires at least: 5.4 @@ -27,7 +27,7 @@ class WC_Integration_Retailcrm { const WOOCOMMERCE_SLUG = 'woocommerce'; const WOOCOMMERCE_PLUGIN_PATH = 'woocommerce/woocommerce.php'; - const MODULE_VERSION = '4.8.29'; + const MODULE_VERSION = '4.8.30'; private static $instance; diff --git a/src/uninstall.php b/src/uninstall.php index dde5f8f3..1349a2b8 100644 --- a/src/uninstall.php +++ b/src/uninstall.php @@ -16,7 +16,7 @@ * * @link https://wordpress.org/plugins/woo-retailcrm/ * - * @version 4.8.29 + * @version 4.8.30 * * @package RetailCRM */