Changeset 3145670
- Timestamp:
- 09/03/2024 04:18:35 AM (19 months ago)
- Location:
- pay-via-barion-for-woocommerce/trunk
- Files:
-
- 12 edited
-
assets/checkout.js (modified) (2 diffs)
-
class-wc-gateway-barion.php (modified) (1 diff)
-
includes/class-wc-gateway-barion-block-checkout.php (modified) (1 diff)
-
includes/class-wc-gateway-barion-ipn-handler.php (modified) (4 diffs)
-
includes/class-wc-gateway-barion-request.php (modified) (2 diffs)
-
includes/class-wc-gateway-barion-return-from-payment.php (modified) (2 diffs)
-
includes/settings-barion.php (modified) (1 diff)
-
index.php (modified) (3 diffs)
-
languages/pay-via-barion-for-woocommerce-hu_HU.mo (modified) (previous)
-
languages/pay-via-barion-for-woocommerce-hu_HU.po (modified) (13 diffs)
-
languages/pay-via-barion-for-woocommerce.pot (modified) (8 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pay-via-barion-for-woocommerce/trunk/assets/checkout.js
r3065659 r3145670 1 const settings = window.wc.wcSettings.getSetting( 'barion_data', {} );2 const label = window.wp.htmlEntities.decodeEntities( settings.title ) || window.wp.i18n.__( 'Barion', 'pay-via-barion-for-woocommerce' );3 const Content = () => {4 return React.createElement("div", { dangerouslySetInnerHTML: { __html: window.wp.htmlEntities.decodeEntities( settings.description || '') } });1 const barionSettings = window.wc.wcSettings.getSetting( 'barion_data', {} ); 2 const barionLabel = window.wp.htmlEntities.decodeEntities( barionSettings.title ) || window.wp.i18n.__( 'Barion', 'pay-via-barion-for-woocommerce' ); 3 const barionContent = () => { 4 return React.createElement("div", { dangerouslySetInnerHTML: { __html: window.wp.htmlEntities.decodeEntities(barionSettings.description || '') } }); 5 5 }; 6 6 7 7 const createLabel = () => { 8 8 return React.createElement('div', {}, 9 React.createElement('img', { 10 src: settings.logo, 11 alt: window.wp.htmlEntities.decodeEntities(settings.title || __('Barion', 'pay-via-barion-for-woocommerce')), 12 }), 13 React.createElement('span', { 9 React.createElement('span', { 14 10 'aria-hidden': "true" 15 }, window.wp.htmlEntities.decodeEntities(settings.title || __('Barion', 'pay-via-barion-for-woocommerce'))) 16 ); 11 }, window.wp.htmlEntities.decodeEntities(barionSettings.title || __('Barion', 'pay-via-barion-for-woocommerce'))) 12 ), 13 React.createElement('img', { 14 src: barionSettings.logo, 15 alt: window.wp.htmlEntities.decodeEntities(barionSettings.title || __('Barion', 'pay-via-barion-for-woocommerce')), 16 }); 17 17 }; 18 18 … … 20 20 name: 'barion', 21 21 label: createLabel(), 22 content: Object(window.wp.element.createElement)( Content, null),23 edit: Object(window.wp.element.createElement)( Content, null),22 content: Object(window.wp.element.createElement)(barionContent, null), 23 edit: Object(window.wp.element.createElement)(barionContent, null), 24 24 canMakePayment: () => true, 25 placeOrderButtonLabel: window.wp.i18n.__('Proceed to Barion', 'pay-via-barion-for-woocommerce'),26 ariaLabel: window.wp.htmlEntities.decodeEntities( settings.title || __('Barion', 'pay-via-barion-for-woocommerce')),25 placeOrderButtonLabel: barionSettings.order_button_label, 26 ariaLabel: window.wp.htmlEntities.decodeEntities(barionSettings.title || __('Barion', 'pay-via-barion-for-woocommerce')), 27 27 supports: { 28 features: settings.supports,28 features: barionSettings.supports, 29 29 }, 30 30 }; -
pay-via-barion-for-woocommerce/trunk/class-wc-gateway-barion.php
r3065339 r3145670 126 126 return 'https://www.barion.com/en/'; 127 127 } 128 129 public function get_order_button_text() { 130 return $this->order_button_text; 131 } 132 133 public function get_rejected_status() { 134 return $this->settings["rejected_status"]; 135 } 136 public function get_expired_status() { 137 return $this->settings["expired_status"]; 138 } 128 139 129 140 function init_form_fields() { -
pay-via-barion-for-woocommerce/trunk/includes/class-wc-gateway-barion-block-checkout.php
r3065339 r3145670 44 44 'title' => $this->gateway->title, 45 45 'description' => $this->gateway->description, 46 'logo' => $this->gateway->plugin_url().'/assets/barion-strip.svg' 46 'logo' => $this->gateway->plugin_url().'/assets/barion-strip.svg', 47 'order_button_label' =>$this->gateway->get_order_button_text() 47 48 ]; 48 49 } -
pay-via-barion-for-woocommerce/trunk/includes/class-wc-gateway-barion-ipn-handler.php
r3065339 r3145670 22 22 public function check_barion_ipn() { 23 23 if(empty($_GET) || empty($_GET['paymentId'])) 24 return;24 exit; 25 25 26 26 … … 30 30 WC_Gateway_Barion::log('GetPaymentState returned errors. Payment details: ' . json_encode($payment_details)); 31 31 32 return;32 exit; 33 33 } 34 $args = array( 35 'numberposts' => 1, 36 'meta_key' => '_order_number', 37 'meta_value' => $payment_details->PaymentRequestId, 38 'post_type' => 'shop_order', 39 'post_status' => 'any' 40 ); 34 41 35 $order = new WC_Order($payment_details->PaymentRequestId);42 $orders = get_posts($args); 36 43 44 if ($orders) { 45 $order_id = $orders[0]->ID; 46 47 // A WC_Order objektum létrehozása a rendelés azonosító alapján 48 $order = wc_get_order($order_id); 49 50 } else { 51 $order = new WC_Order($payment_details->PaymentRequestId); 52 } 53 54 37 55 if(empty($order)) { 38 56 WC_Gateway_Barion::log('Invalid PaymentRequestId: ' . $_GET['paymentId'] . '. Payment details: ' . json_encode($payment_details)); 39 57 40 return;58 exit; 41 59 } 42 60 … … 45 63 if(apply_filters('woocommerce_barion_custom_callback_handler', false, $order, $payment_details)) { 46 64 $order->add_order_note(__('Barion callback was handled by a custom handler.', 'pay-via-barion-for-woocommerce')); 47 return; 65 exit; 66 } 67 $payment_method = $order->get_payment_method(); 68 if($payment_method !='barion') { 69 $order->add_order_note(__('Barion callback ignored as the user has chosen another payment method.', 'pay-via-barion-for-woocommerce')); 70 exit; 48 71 } 49 72 50 73 if($order->has_status(array('processing', 'completed'))) { 51 74 $order->add_order_note(__('Barion callback ignored as the payment was already completed.', 'pay-via-barion-for-woocommerce')); 52 return;75 exit; 53 76 } 54 77 55 78 if($order->has_status(array('on-hold'))) { 56 79 $order->add_order_note(__('Barion callback ignored as the user has chosen another payment method.', 'pay-via-barion-for-woocommerce')); 57 return;80 exit; 58 81 } 59 82 60 83 if($payment_details->Status == PaymentStatus::Succeeded) { 61 84 if($order->has_status('completed')) { 62 return;85 exit; 63 86 } 64 87 … … 66 89 $this->gateway->payment_complete($order, $this->find_transaction_id($payment_details, $order)); 67 90 68 return;91 exit; 69 92 } 70 93 71 94 if($payment_details->Status == PaymentStatus::Canceled) { 95 if (empty($this->gateway->get_rejected_status()) ||$this->gateway->get_rejected_status() =='no') { 72 96 $order->update_status('cancelled', __('Payment canceled via Barion.', 'pay-via-barion-for-woocommerce')); 97 } else { 98 $order->update_status($this->gateway->get_rejected_status(), __('Payment changed via Barion.', 'pay-via-barion-for-woocommerce')); 99 } 73 100 74 return;101 exit; 75 102 } 76 103 77 104 if($payment_details->Status == PaymentStatus::Expired) { 105 if (empty($this->gateway->get_expired_status()) ||$this->gateway->get_expired_status() =='no') { 78 106 $order->update_status('cancelled', __('Payment is expired (customer progressed to Barion, but then left the page without paying).', 'pay-via-barion-for-woocommerce')); 107 } else { 108 $order->update_status($this->gateway->get_expired_status(), __('Payment is expired (customer progressed to Barion, but then left the page without paying).', 'pay-via-barion-for-woocommerce')); 109 } 110 79 111 80 return;112 exit; 81 113 } 82 114 83 115 $order->update_status('failed', __('Payment failed via Barion.', 'pay-via-barion-for-woocommerce')); 84 116 WC_Gateway_Barion::log('Payment failed. Payment details: ' . json_encode($payment_details)); 117 exit; 85 118 } 86 119 -
pay-via-barion-for-woocommerce/trunk/includes/class-wc-gateway-barion-request.php
r2812576 r3145670 199 199 $shippingAddress->City = $order->get_shipping_city(); 200 200 $shippingAddress->Zip = $order->get_shipping_postcode(); 201 $shippingAddress->Street = $order->get_shipping_address_1();202 $shippingAddress->Street2 = $order->get_shipping_address_2();201 $shippingAddress->Street = substr($order->get_shipping_address_1(), 0, 50); 202 $shippingAddress->Street2 =substr($order->get_shipping_address_2(), 0, 50); 203 203 $shippingAddress->Street3 = ""; 204 204 $shippingAddress->FullName = $order->get_formatted_shipping_full_name(); … … 227 227 $billingAddress->City = $order->get_billing_city(); 228 228 $billingAddress->Zip = $order->get_billing_postcode(); 229 $billingAddress->Street = $order->get_billing_address_1();230 $billingAddress->Street2 = $order->get_billing_address_2();229 $billingAddress->Street =substr($order->get_billing_address_1(), 0, 50); 230 $billingAddress->Street2 = substr($order->get_billing_address_2(), 0, 50); 231 231 $billingAddress->Street3 = ""; 232 232 -
pay-via-barion-for-woocommerce/trunk/includes/class-wc-gateway-barion-return-from-payment.php
r3065339 r3145670 31 31 32 32 if($order->has_status('cancelled')) { 33 wp_redirect($order->get_cancel_order_url_raw()); 33 //wp_redirect($order->get_cancel_order_url_raw()); 34 wp_redirect($order->get_cancel_order_url()); 34 35 exit; 35 36 } … … 45 46 46 47 if($payment_details->Status == PaymentStatus::Canceled) { 47 wp_redirect($order->get_cancel_order_url_raw()); 48 //wp_redirect($order->get_cancel_order_url_raw()); 49 wp_redirect($order->get_cancel_order_url()); 48 50 exit; 49 51 } -
pay-via-barion-for-woocommerce/trunk/includes/settings-barion.php
r2149182 r3145670 63 63 'class' => 'wc-enhanced-select' 64 64 ), 65 'environment' => array( 65 'rejected_status' => array( 66 'title' => __('Order status after rejected payment', 'pay-via-barion-for-woocommerce'), 67 'type' => 'select', 68 'options' => array_merge(array("no" =>__("Default", "pay-via-barion-for-woocommerce")), wc_get_order_statuses()), 69 'default' => 'no', 70 'description' => __('Choose the status of the order after rejected Barion payment.', 'pay-via-barion-for-woocommerce'), 71 'desc_tip' => true, 72 'class' => 'wc-enhanced-select' 73 ), 74 'expired_status' => array( 75 'title' => __('Order status after expired payment', 'pay-via-barion-for-woocommerce'), 76 'type' => 'select', 77 'options' => array_merge(array("no" =>__("Default", "pay-via-barion-for-woocommerce")), wc_get_order_statuses()), 78 'default' => 'no', 79 'description' => __('Choose the status of the order after expired Barion payment.', 'pay-via-barion-for-woocommerce'), 80 'desc_tip' => true, 81 'class' => 'wc-enhanced-select' 82 ), 83 84 'environment' => array( 66 85 'title' => __('Barion Environment', 'pay-via-barion-for-woocommerce'), 67 86 'type' => 'select', -
pay-via-barion-for-woocommerce/trunk/index.php
r3065660 r3145670 4 4 Plugin URI: http://github.com/szelpe/woocommerce-barion 5 5 Description: Adds the ability to WooCommerce to pay via Barion 6 Version: 3. 6.17 Author: Aron Ocsvari <u fgyfelszolgalat@bitron.hu>6 Version: 3.7 7 Author: Aron Ocsvari <ugyfelszolgalat@bitron.hu> 8 8 Author URI: https://bitron.hu 9 9 License: GNU General Public License v3.0 … … 11 11 12 12 WC requires at least: 3.0.0 13 WC tested up to: 8.7.013 WC tested up to: 9.2.3 14 14 15 15 Text Domain: pay-via-barion-for-woocommerce … … 74 74 75 75 } ); 76 //Adds notification to dashboard 77 add_action('admin_notices', array($this, 'custom_admin_ad_notice')); 78 add_action('wp_ajax_custom_admin_ad_dismiss', array($this, 'custom_admin_ad_dismiss')); 76 79 } 80 /** 81 * Shows a notification about Full Barion pixel 82 **/ 83 function custom_admin_ad_notice() { 84 if (get_user_meta(get_current_user_id(), 'custom_admin_ad_dismissed', true)) { 85 return; // Ha igen, nem jelenítjük meg az értesítést 86 } 77 87 88 ?> 89 <div class="notice notice-info is-dismissible custom-admin-ad-notice"> 90 <p><?php _e('Reduce your Barion commission by using Full Pixel. Click here for more information: <a target ="_blank" href ="https://bitron.hu/barion-pixel-for-woocommerce">Full Barion Pixel for WooCommerce</a>', 'pay-via-barion-for-woocommerce'); ?></p> 91 </div> 92 93 <script> 94 jQuery(document).on('click', '.custom-admin-ad-notice .notice-dismiss', function() { 95 jQuery.post(ajaxurl, { 96 action: 'custom_admin_ad_dismiss' 97 }); 98 99 }); 100 </script> 101 <?php 102 } 103 104 /** 105 * Saves the dismiss option 106 **/ 107 function custom_admin_ad_dismiss() { 108 update_user_meta(get_current_user_id(), 'custom_admin_ad_dismissed', true); 109 wp_die(); 110 } 78 111 /** 79 112 * Add the Gateway to WooCommerce -
pay-via-barion-for-woocommerce/trunk/languages/pay-via-barion-for-woocommerce-hu_HU.po
r3065339 r3145670 5 5 "Project-Id-Version: Barion Payment Gateway for WooCommerce 0.5.0\n" 6 6 "Report-Msgid-Bugs-To: https://github.com/szelpe/woocommerce-barion/issues\n" 7 "POT-Creation-Date: 2024-0 4-02 20:48:07+00:00\n"8 "PO-Revision-Date: 2024-0 4-02 23:01+0100\n"7 "POT-Creation-Date: 2024-08-27 13:25:36+00:00\n" 8 "PO-Revision-Date: 2024-08-27 15:36+0100\n" 9 9 "Last-Translator: \n" 10 10 "Language-Team: EMAIL@ADDRESS\n" … … 16 16 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 17 17 18 #: class-wc-gateway-barion.php:4 3includes/settings-barion.php:2018 #: class-wc-gateway-barion.php:47 includes/settings-barion.php:20 19 19 msgid "Barion" 20 20 msgstr "Barion" 21 21 22 #: class-wc-gateway-barion.php:4 422 #: class-wc-gateway-barion.php:48 23 23 msgid "" 24 24 "Barion payment gateway sends customers to Barion to enter their payment " … … 31 31 "információkért tekintsd meg a %srendszerállapot%s oldalt." 32 32 33 #: class-wc-gateway-barion.php: 4633 #: class-wc-gateway-barion.php:50 34 34 msgid "Proceed to Barion" 35 35 msgstr "Fizetés Barionnal" 36 36 37 #: class-wc-gateway-barion.php:6 237 #: class-wc-gateway-barion.php:66 38 38 msgid " [TEST MODE]" 39 39 msgstr " [TESZT MÓD]" 40 40 41 #: class-wc-gateway-barion.php:6 341 #: class-wc-gateway-barion.php:67 42 42 msgid "" 43 43 "<br/><br/>Test mode is <strong>active</strong>. Test credit card details: %s" 44 44 msgstr "<br/><br/>A teszt mód <strong>aktív</strong>. Teszt kártyaadatok: %s" 45 45 46 #: class-wc-gateway-barion.php:11 346 #: class-wc-gateway-barion.php:117 47 47 msgid "Barion acceptance mark" 48 48 msgstr "Barion védjegy" 49 49 50 #: class-wc-gateway-barion.php:1 3650 #: class-wc-gateway-barion.php:151 51 51 msgid "Gateway Disabled" 52 52 msgstr "" 53 53 54 #: class-wc-gateway-barion.php:1 3754 #: class-wc-gateway-barion.php:152 55 55 msgid "Barion does not support your store currency. Supported currencies: %s" 56 56 msgstr "A Barion nem támogatja az üzleted pénznemét. Támogatott pénznemek: %s" 57 57 58 #: class-wc-gateway-barion.php:2 2258 #: class-wc-gateway-barion.php:237 59 59 msgid "User redirected to the Barion payment page." 60 60 msgstr "A felhasználó át lesz irányítva a Barion fizetési oldalára." 61 61 62 #: class-wc-gateway-barion.php:2 4262 #: class-wc-gateway-barion.php:257 63 63 msgid "Refund Failed: No transaction ID" 64 64 msgstr "Visszatérítés sikertelen. Nincs transaction ID" 65 65 66 #: class-wc-gateway-barion.php:2 5066 #: class-wc-gateway-barion.php:265 67 67 msgid "Refunded %s - Refund ID: %s" 68 68 msgstr "%s visszatérítve - Refund ID: %s" 69 69 70 #: class-wc-gateway-barion.php:2 5570 #: class-wc-gateway-barion.php:270 71 71 msgid "Barion refund failed." 72 72 msgstr "Barion visszatérítés sikertelen." 73 73 74 #: class-wc-gateway-barion.php:3 0374 #: class-wc-gateway-barion.php:318 75 75 msgid "Order status updated based on the settings." 76 76 msgstr "A rendelés állapota a beállításoknak megfelelően frissítve lett." 77 77 78 #: includes/class-wc-gateway-barion-ipn-handler.php: 3578 #: includes/class-wc-gateway-barion-ipn-handler.php:61 79 79 msgid "Barion callback received." 80 80 msgstr "Barion visszahívás." 81 81 82 #: includes/class-wc-gateway-barion-ipn-handler.php:38 83 #, fuzzy 82 #: includes/class-wc-gateway-barion-ipn-handler.php:64 84 83 msgid "Barion callback was handled by a custom handler." 84 msgstr "A Barion visszahívását egy egyedi hívás kezelte." 85 86 #: includes/class-wc-gateway-barion-ipn-handler.php:69 87 msgid "Barion callback ignored as the payment was already completed." 85 88 msgstr "" 86 89 "A Barion visszahívás figyelmen kívül lett hagyva, mivel a fizetés már " 87 90 "befejeződött." 88 91 89 #: includes/class-wc-gateway-barion-ipn-handler.php:43 90 msgid "Barion callback ignored as the payment was already completed." 91 msgstr "" 92 "A Barion visszahívás figyelmen kívül lett hagyva, mivel a fizetés már " 93 "befejeződött." 94 95 #: includes/class-wc-gateway-barion-ipn-handler.php:48 92 #: includes/class-wc-gateway-barion-ipn-handler.php:74 96 93 msgid "Barion callback ignored as the user has chosen another payment method." 97 94 msgstr "" … … 99 96 "közben meg lett változtatva." 100 97 101 #: includes/class-wc-gateway-barion-ipn-handler.php: 5798 #: includes/class-wc-gateway-barion-ipn-handler.php:83 102 99 msgid "Payment succeeded via Barion." 103 100 msgstr "Sikeres fizetés a Barionon keresztül." 104 101 105 #: includes/class-wc-gateway-barion-ipn-handler.php: 64102 #: includes/class-wc-gateway-barion-ipn-handler.php:91 106 103 msgid "Payment canceled via Barion." 107 104 msgstr "Visszamondott vásárlás a Barion oldalán." 108 105 109 #: includes/class-wc-gateway-barion-ipn-handler.php:70 106 #: includes/class-wc-gateway-barion-ipn-handler.php:93 107 msgid "Payment changed via Barion." 108 msgstr "A fizetés Barionon keresztül módosult" 109 110 #: includes/class-wc-gateway-barion-ipn-handler.php:101 111 #: includes/class-wc-gateway-barion-ipn-handler.php:103 110 112 msgid "" 111 113 "Payment is expired (customer progressed to Barion, but then left the page " … … 115 117 "nélkül elhagyta)" 116 118 117 #: includes/class-wc-gateway-barion-ipn-handler.php: 75119 #: includes/class-wc-gateway-barion-ipn-handler.php:110 118 120 msgid "Payment failed via Barion." 119 121 msgstr "Meghiúsult vásárlás a Barion oldalán." … … 129 131 #: includes/settings-barion.php:12 130 132 msgid "Enable/Disable" 131 msgstr " "133 msgstr "Engedélyezés/Letiltás" 132 134 133 135 #: includes/settings-barion.php:14 … … 137 139 #: includes/settings-barion.php:18 138 140 msgid "Title" 139 msgstr " "141 msgstr "Cím" 140 142 141 143 #: includes/settings-barion.php:21 142 144 msgid "This controls the title which the user sees during checkout." 143 msgstr " "145 msgstr "Itt adható meg a fizetési mód címe, ami a pénztár oldalon jelenik meg." 144 146 145 147 #: includes/settings-barion.php:25 146 148 msgid "Description" 147 msgstr " "149 msgstr "Leírás" 148 150 149 151 #: includes/settings-barion.php:27 … … 157 159 msgid "This controls the description which the user sees during checkout." 158 160 msgstr "" 161 "Itt adható meg a fizetési módhoz tartozó leírás, amit a felhasználó a " 162 "pénztár oldalon lát." 159 163 160 164 #: includes/settings-barion.php:32 … … 168 172 #: includes/settings-barion.php:38 169 173 msgid "Barion Email" 170 msgstr " "174 msgstr "Barion e-mail" 171 175 172 176 #: includes/settings-barion.php:40 … … 176 180 #: includes/settings-barion.php:46 177 181 msgid "Barion Pixel Id" 178 msgstr " "182 msgstr "Barion Pixel azonosító" 179 183 180 184 #: includes/settings-barion.php:48 181 #, fuzzy182 185 msgid "Your Barion Pixel Id" 183 msgstr "Barion on regisztrált e-mail címed"186 msgstr "Barion pixel azonosítód" 184 187 185 188 #: includes/settings-barion.php:52 … … 197 200 198 201 #: includes/settings-barion.php:66 202 msgid "Order status after rejected payment" 203 msgstr "Rendelés állapota visszautasított fizetés után" 204 205 #: includes/settings-barion.php:68 includes/settings-barion.php:77 206 msgid "Default" 207 msgstr "" 208 209 #: includes/settings-barion.php:70 210 msgid "Choose the status of the order after rejected Barion payment." 211 msgstr "" 212 "Kiválaszthatod, hogy visszautasított fizetés után milyen állapotba kerüljön " 213 "a rendelés." 214 215 #: includes/settings-barion.php:75 216 msgid "Order status after expired payment" 217 msgstr "Rendelés állapota lejárt fizetés után" 218 219 #: includes/settings-barion.php:79 220 msgid "Choose the status of the order after expired Barion payment." 221 msgstr "" 222 "Kiválaszthatod, hogy lejárt fizetés után milyen állapotba kerüljön a " 223 "rendelés." 224 225 #: includes/settings-barion.php:85 199 226 msgid "Barion Environment" 200 227 msgstr "Barion Környezet" 201 228 202 #: includes/settings-barion.php: 70229 #: includes/settings-barion.php:89 203 230 msgid "" 204 231 "You can select the Test environment to test payments. You'll need to create " … … 208 235 "nyitnod a <a href=\"%s\" target=\"_blank\">Barion teszt oldalon</a>." 209 236 210 #: includes/settings-barion.php: 75237 #: includes/settings-barion.php:94 211 238 msgid "Newsletter" 212 239 msgstr "Hírlevél" 213 240 214 #: includes/settings-barion.php: 76241 #: includes/settings-barion.php:95 215 242 msgid "Get free emails on how to grow your business like crazy" 216 243 msgstr "Kérek ingyenes tippeket az üzletem robbanásszerű növeléséhez" 217 244 218 #: includes/settings-barion.php: 79245 #: includes/settings-barion.php:98 219 246 msgid "" 220 247 "You may unsubscribe any time and we will never share your email address." 221 248 msgstr "" 222 249 "Bármikor leiratkozhatsz és soha nem osztjuk meg senkivel az email címedet." 250 251 #: index.php:90 252 msgid "" 253 "Reduce your Barion commission by using Full Pixel. Click here for more " 254 "information: <a target =\"_blank\" href =\"https://bitron.hu/barion-pixel-" 255 "for-woocommerce\">Full Barion Pixel for WooCommerce</a>" 256 msgstr "" 257 "Csökkentsük a Barion jutalékát a full pixel integrációval. Bővebb " 258 "infórmációért katt ide: <a target =\"_blank\" href =\"https://bitron.hu/" 259 "barion-pixel-for-woocommerce\">Full Barion Pixel for WooCommerce</a>" 223 260 224 261 #. Plugin Name of the plugin/theme … … 232 269 #. Description of the plugin/theme 233 270 msgid "Adds the ability to WooCommerce to pay via Barion" 234 msgstr " "271 msgstr "Bankkártyás fizetési lehetőséget biztosít a Barion használatával." 235 272 236 273 #. Author of the plugin/theme 237 msgid " Peter Szel <szelpeter@szelpeter.hu>"274 msgid "Aron Ocsvari <ugyfelszolgalat@bitron.hu>" 238 275 msgstr "" 239 276 240 277 #. Author URI of the plugin/theme 241 msgid "http ://szelpeter.hu"278 msgid "https://bitron.hu" 242 279 msgstr "" 243 280 -
pay-via-barion-for-woocommerce/trunk/languages/pay-via-barion-for-woocommerce.pot
r3065339 r3145670 1 # Copyright (C) 2024 Peter Szel <szelpeter@szelpeter.hu>1 # Copyright (C) 2024 Aron Ocsvari <ugyfelszolgalat@bitron.hu> 2 2 # This file is distributed under the GNU General Public License v3.0. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Barion Payment Gateway for WooCommerce 3. 5.1\n"5 "Project-Id-Version: Barion Payment Gateway for WooCommerce 3.6.1\n" 6 6 "Report-Msgid-Bugs-To: https://github.com/szelpe/woocommerce-barion/issues\n" 7 "POT-Creation-Date: 2024-0 4-02 20:48:07+00:00\n"7 "POT-Creation-Date: 2024-08-27 13:25:36+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" … … 14 14 "X-Generator: grunt-wp-i18n 1.0.3\n" 15 15 16 #: class-wc-gateway-barion.php:4 3includes/settings-barion.php:2016 #: class-wc-gateway-barion.php:47 includes/settings-barion.php:20 17 17 msgid "Barion" 18 18 msgstr "" 19 19 20 #: class-wc-gateway-barion.php:4 420 #: class-wc-gateway-barion.php:48 21 21 msgid "" 22 22 "Barion payment gateway sends customers to Barion to enter their payment " … … 25 25 msgstr "" 26 26 27 #: class-wc-gateway-barion.php: 4627 #: class-wc-gateway-barion.php:50 28 28 msgid "Proceed to Barion" 29 29 msgstr "" 30 30 31 #: class-wc-gateway-barion.php:6 231 #: class-wc-gateway-barion.php:66 32 32 msgid " [TEST MODE]" 33 33 msgstr "" 34 34 35 #: class-wc-gateway-barion.php:6 335 #: class-wc-gateway-barion.php:67 36 36 msgid "" 37 37 "<br/><br/>Test mode is <strong>active</strong>. Test credit card details: " … … 39 39 msgstr "" 40 40 41 #: class-wc-gateway-barion.php:11 341 #: class-wc-gateway-barion.php:117 42 42 msgid "Barion acceptance mark" 43 43 msgstr "" 44 44 45 #: class-wc-gateway-barion.php:1 3645 #: class-wc-gateway-barion.php:151 46 46 msgid "Gateway Disabled" 47 47 msgstr "" 48 48 49 #: class-wc-gateway-barion.php:1 3749 #: class-wc-gateway-barion.php:152 50 50 msgid "Barion does not support your store currency. Supported currencies: %s" 51 51 msgstr "" 52 52 53 #: class-wc-gateway-barion.php:2 2253 #: class-wc-gateway-barion.php:237 54 54 msgid "User redirected to the Barion payment page." 55 55 msgstr "" 56 56 57 #: class-wc-gateway-barion.php:2 4257 #: class-wc-gateway-barion.php:257 58 58 msgid "Refund Failed: No transaction ID" 59 59 msgstr "" 60 60 61 #: class-wc-gateway-barion.php:2 5061 #: class-wc-gateway-barion.php:265 62 62 msgid "Refunded %s - Refund ID: %s" 63 63 msgstr "" 64 64 65 #: class-wc-gateway-barion.php:2 5565 #: class-wc-gateway-barion.php:270 66 66 msgid "Barion refund failed." 67 67 msgstr "" 68 68 69 #: class-wc-gateway-barion.php:3 0369 #: class-wc-gateway-barion.php:318 70 70 msgid "Order status updated based on the settings." 71 71 msgstr "" 72 72 73 #: includes/class-wc-gateway-barion-ipn-handler.php: 3573 #: includes/class-wc-gateway-barion-ipn-handler.php:61 74 74 msgid "Barion callback received." 75 75 msgstr "" 76 76 77 #: includes/class-wc-gateway-barion-ipn-handler.php: 3877 #: includes/class-wc-gateway-barion-ipn-handler.php:64 78 78 msgid "Barion callback was handled by a custom handler." 79 79 msgstr "" 80 80 81 #: includes/class-wc-gateway-barion-ipn-handler.php: 4381 #: includes/class-wc-gateway-barion-ipn-handler.php:69 82 82 msgid "Barion callback ignored as the payment was already completed." 83 83 msgstr "" 84 84 85 #: includes/class-wc-gateway-barion-ipn-handler.php: 4885 #: includes/class-wc-gateway-barion-ipn-handler.php:74 86 86 msgid "Barion callback ignored as the user has chosen another payment method." 87 87 msgstr "" 88 88 89 #: includes/class-wc-gateway-barion-ipn-handler.php: 5789 #: includes/class-wc-gateway-barion-ipn-handler.php:83 90 90 msgid "Payment succeeded via Barion." 91 91 msgstr "" 92 92 93 #: includes/class-wc-gateway-barion-ipn-handler.php: 6493 #: includes/class-wc-gateway-barion-ipn-handler.php:91 94 94 msgid "Payment canceled via Barion." 95 95 msgstr "" 96 96 97 #: includes/class-wc-gateway-barion-ipn-handler.php:70 97 #: includes/class-wc-gateway-barion-ipn-handler.php:93 98 msgid "Payment changed via Barion." 99 msgstr "" 100 101 #: includes/class-wc-gateway-barion-ipn-handler.php:101 102 #: includes/class-wc-gateway-barion-ipn-handler.php:103 98 103 msgid "" 99 104 "Payment is expired (customer progressed to Barion, but then left the page " … … 101 106 msgstr "" 102 107 103 #: includes/class-wc-gateway-barion-ipn-handler.php: 75108 #: includes/class-wc-gateway-barion-ipn-handler.php:110 104 109 msgid "Payment failed via Barion." 105 110 msgstr "" … … 180 185 181 186 #: includes/settings-barion.php:66 187 msgid "Order status after rejected payment" 188 msgstr "" 189 190 #: includes/settings-barion.php:68 includes/settings-barion.php:77 191 msgid "Default" 192 msgstr "" 193 194 #: includes/settings-barion.php:70 195 msgid "Choose the status of the order after rejected Barion payment." 196 msgstr "" 197 198 #: includes/settings-barion.php:75 199 msgid "Order status after expired payment" 200 msgstr "" 201 202 #: includes/settings-barion.php:79 203 msgid "Choose the status of the order after expired Barion payment." 204 msgstr "" 205 206 #: includes/settings-barion.php:85 182 207 msgid "Barion Environment" 183 208 msgstr "" 184 209 185 #: includes/settings-barion.php: 70210 #: includes/settings-barion.php:89 186 211 msgid "" 187 212 "You can select the Test environment to test payments. You'll need to create " … … 189 214 msgstr "" 190 215 191 #: includes/settings-barion.php: 75216 #: includes/settings-barion.php:94 192 217 msgid "Newsletter" 193 218 msgstr "" 194 219 195 #: includes/settings-barion.php: 76220 #: includes/settings-barion.php:95 196 221 msgid "Get free emails on how to grow your business like crazy" 197 222 msgstr "" 198 223 199 #: includes/settings-barion.php: 79224 #: includes/settings-barion.php:98 200 225 msgid "You may unsubscribe any time and we will never share your email address." 226 msgstr "" 227 228 #: index.php:90 229 msgid "" 230 "Reduce your Barion commission by using Full Pixel. Click here for more " 231 "information: <a target =\"_blank\" href " 232 "=\"https://bitron.hu/barion-pixel-for-woocommerce\">Full Barion Pixel for " 233 "WooCommerce</a>" 201 234 msgstr "" 202 235 … … 214 247 215 248 #. Author of the plugin/theme 216 msgid " Peter Szel <szelpeter@szelpeter.hu>"249 msgid "Aron Ocsvari <ugyfelszolgalat@bitron.hu>" 217 250 msgstr "" 218 251 219 252 #. Author URI of the plugin/theme 220 msgid "http ://szelpeter.hu"253 msgid "https://bitron.hu" 221 254 msgstr "" 222 255 -
pay-via-barion-for-woocommerce/trunk/readme.txt
r3084619 r3145670 5 5 Tested up to: 6.5 6 6 WC requires at least: 3.0.0 7 WC tested up to: 8.7.07 WC tested up to: 9.2.3 8 8 Requires PHP: 5.6 9 9 Stable tag: trunk … … 89 89 90 90 == Changelog == 91 = 3.7 = 92 - Fixed labels on order buttons in checkout blocks; 93 - Resolved issues with IPN failures; 94 - Added support for Sequential Order Number for WooCommerce. 95 - Handle rejected and expired statuses 96 - Limit the length of Street fields to a maximum of 50 characters 97 - Show notification about Full Barion pixel 91 98 = 3.6.1 = 92 99 - Display payment method name alongside the logo
Note: See TracChangeset
for help on using the changeset viewer.