Plugin Directory

Changeset 3447759


Ignore:
Timestamp:
01/27/2026 10:45:40 AM (3 weeks ago)
Author:
allpay
Message:

Update to 1.2.0

Location:
allpay-payment-gateway/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • allpay-payment-gateway/trunk/allpay-gateway.php

    r3365680 r3447759  
    33 * Plugin Name: Allpay payment gateway
    44 * Plugin URI: https://www.allpay.co.il/integrations/wordpress
    5  * Description: Allpay Payment Gateway for WooCommerce to accepts Visa, Mastercard, Diners, AmEx and other brands.
     5 * Description: Allpay payment gateway for WooCommerce to accepts Visa, Mastercard, Diners, AmEx and other brands, and Apple Pay and Bit.
    66 * Author: Allpay
    77 * Author URI: https://allpay.co.il
    8  * Version: 1.1.3
     8 * Version: 1.2.0
    99 * Text Domain: allpay-payment-gateway
    1010 * Domain Path: /languages
    11  * Tested up to: 6.8.2
    12  * WC tested up to: 9.6.2
     11 * Tested up to: 6.9
     12 * WC tested up to: 9.8.6
    1313 * WC requires at least: 3.0
    1414 *
  • allpay-payment-gateway/trunk/classes/class-allpay.php

    r3386517 r3447759  
    66class WC_Allpay extends WC_Payment_Gateway {
    77
     8    public $enabled;
     9    public $title;
     10    public $description;
     11
     12    public $api_login;
     13    public $api_key;
     14
     15    public $installment_n;
     16    public $installment_min_order;
     17
     18    public $display_tehudat_mode;
     19
     20    public $currency_payment;
     21
     22    public $debug;
     23
    824    function __construct() {
    925        $this->id = "allpay-payment-gateway";
    10         $this->method_title = __( 'Bank cards payments via Allpay', 'allpay-payment-gateway' );
    11         $this->method_description = __( 'Allpay Payment Gateway Plug-in for WooCommerce', 'allpay-payment-gateway' );
    12         $this->title = __( 'Bank cards payments via Allpay', 'allpay-payment-gateway' );
    13         $this->description = __( 'Allpay Payment Gateway Plug-in for WooCommerce', 'allpay-payment-gateway' );
     26        $this->method_title = __( 'Credit card payment via Allpay', 'allpay-payment-gateway' );
     27        $this->method_description = __( 'Allpay payment gateway plug-in for WooCommerce', 'allpay-payment-gateway' );
     28        $this->title = __( 'Credit card payment via Allpay', 'allpay-payment-gateway' );
     29        $this->description = __( 'Allpay payment gateway plug-in for WooCommerce', 'allpay-payment-gateway' );
    1430        $this->icon = null;
    1531        $this->has_fields = true;
     
    1834        $this->init_settings();
    1935       
    20         foreach ( $this->settings as $setting_key => $value ) {
    21             $this->$setting_key = $value;
    22         }
     36        $this->enabled               = $this->get_option( 'enabled' );
     37        $this->title                 = $this->get_option( 'title' );
     38        $this->description           = $this->get_option( 'description' );
     39
     40        $this->api_login             = $this->get_option( 'api_login' );
     41        $this->api_key               = $this->get_option( 'api_key' );
     42
     43        $this->installment_n         = (int) $this->get_option( 'installment_n', 0 );
     44        $this->installment_min_order = (float) $this->get_option( 'installment_min_order', 1000 );
     45
     46        $this->display_tehudat_mode  = (int) $this->get_option( 'display_tehudat_mode', 2 );
     47
     48        $this->currency_payment      = $this->get_option( 'currency_payment', 'ILS' );
    2349
    2450        add_action( 'woocommerce_api_allpay' , array($this, 'webhook') );
     
    4066
    4167        $chunks = [];
    42         $wh_params = ['name', 'items', 'amount', 'order_id', 'currency', 'status', 'client_name',
     68        $wh_params = ['name', 'items', 'amount', 'inst', 'order_id', 'currency', 'status', 'client_name',
    4369            'client_email', 'client_tehudat', 'client_phone', 'card_mask', 'card_brand', 'foreign_card',
    4470            'add_field_1', 'add_field_2', 'receipt'];
     
    5682            $transaction_id = (int)$_REQUEST['order_id'];
    5783            $customer_order->payment_complete($transaction_id);
    58             wc_reduce_stock_levels($customer_order);   
    5984        } else {
    60             echo 'Notification error: ' . json_encode($_REQUEST) . ' / ' . $sign;
     85            echo 'Notification error: ' . json_encode($_REQUEST) . ' / ' . $sign . ' / ' . $this->debug;
    6186        }
    6287        exit();
     
    7499                'title'     => __( 'Title', 'allpay-payment-gateway' ),
    75100                'type'      => 'text',
    76                 'desc_tip'  => __( 'Payment title the customer will see during the checkout process.', 'allpay-payment-gateway' ),
    77                 'default'   => __( 'Credit card', 'allpay-payment-gateway' ),
     101                'description' => __( 'Payment method name shown to customers at checkout', 'allpay-payment-gateway' ),
     102                'desc_tip'  => __( 'Recommended: Credit card payment via Allpay', 'allpay-payment-gateway' ),
     103                'default'   => __( 'Credit card payment via Allpay', 'allpay-payment-gateway' ),
    78104            ),
    79105            'description' => array(
    80106                'title'     => __( 'Description', 'allpay-payment-gateway' ),
    81107                'type'      => 'textarea',
    82                 'desc_tip'  => __( 'Payment description the customer will see during the checkout process.', 'allpay-payment-gateway' ),
    83                 'default'   => __( 'Pay securely using your credit card.', 'allpay-payment-gateway' ),
     108                'description' => __( 'Payment method description shown to customers at checkout', 'allpay-payment-gateway' ),
     109                'desc_tip'  => __( 'Recommended: Pay securely with a credit/debit card, Apple Pay, or Bit', 'allpay-payment-gateway' ),
     110                'default'   => __( 'Pay securely with a credit/debit card, Apple Pay, or Bit.', 'allpay-payment-gateway' ),
    84111                'css'       => 'max-width:350px;'
    85112            ),
     
    87114                'title'     => __( 'API login', 'allpay-payment-gateway' ),
    88115                'type'      => 'text',
    89                 'desc_tip'  => __( 'Allpay API Login', 'allpay-payment-gateway' ),
     116                'desc_tip'  => __( 'Crate API Login in your Allpay account: Settings -> Integrations -> WordPress', 'allpay-payment-gateway' ),
    90117            ),
    91118            'api_key' => array(
    92119                'title'     => __( 'API key', 'allpay-payment-gateway' ),
    93120                'type'      => 'password',
    94                 'desc_tip'  => __( 'Allpay API Key', 'allpay-payment-gateway' ),
     121                'desc_tip'  => __( 'Crate API key in your Allpay account: Settings -> Integrations -> WordPress', 'allpay-payment-gateway' ),
    95122            ),
    96123            'installment_n' => array(
    97124                'title' => __( 'Installment max payments', 'allpay-payment-gateway' ),
    98125                'type' => 'number',
    99                 'description' => __( 'Maximum number of installment payments. Up to 12, zero to disable.', 'allpay-payment-gateway' ),
     126                'description' => __( 'Maximum number of installment payments. Up to 12, zero to disable', 'allpay-payment-gateway' ),
    100127                'desc_tip'  => __( 'Allows client to choose number of payments. Valid for credit cards only (no debit cards)', 'allpay-payment-gateway' ),
    101128                'default' => 0
     
    104131                'title' => __( 'Installment min order amount', 'allpay-payment-gateway' ),
    105132                'type' => 'number',
    106                 'description' => __( 'Minimum order amount for installments. Zero for orders of any amount.', 'allpay-payment-gateway' ),
     133                'description' => __( 'Minimum order amount for installments. Zero for orders of any amount', 'allpay-payment-gateway' ),
    107134                'desc_tip'  => __( 'Enables installment option when payment amount equals or above this value', 'allpay-payment-gateway' ),
    108135                'default' => 1000
    109             )
     136            ),
     137            'currency_payment' => array(
     138                'title'       => __( 'Payment currency', 'allpay-payment-gateway' ),
     139                'type'        => 'select',
     140                'description' => __( 'Before selecting USD or EUR, make sure these currencies are enabled on your Allpay account', 'allpay-payment-gateway' ),
     141                'desc_tip'  => __( 'The currency in which the payment will be processed. Any price shown in another currency will be converted to this currency', 'allpay-payment-gateway' ),
     142                'default'     => 'ILS',
     143                'options'     => array(
     144                    'ILS' => __( 'Israeli Shekel (ILS)', 'allpay-payment-gateway' ),
     145                    'USD' => __( 'US Dollar (USD)', 'allpay-payment-gateway' ),
     146                    'EUR' => __( 'Euro (EUR)', 'allpay-payment-gateway' ),
     147                ),
     148            ),
     149            'display_tehudat_mode' => array(
     150                'title'       => __( 'Teudat zeut field', 'allpay-payment-gateway' ),
     151                'type'        => 'select',
     152                'description' => __( 'Request Teudat Zehut (Israeli ID) on the payment page', 'allpay-payment-gateway' ),
     153                'desc_tip'  => __( 'When customers should be asked to provide their Teudat Zehut number', 'allpay-payment-gateway' ),
     154                'default'     => 2,
     155                'options'     => array(
     156                    1 => __( 'Only for customers from Israel', 'allpay-payment-gateway' ),
     157                    2 => __( 'For all customers', 'allpay-payment-gateway' ),
     158                    0 => __( 'Do not request', 'allpay-payment-gateway' ),
     159                ),
     160            )
    110161        );     
    111162    }
     
    115166        $customer_order = wc_get_order( $order_id );
    116167
    117         $environment_url = 'https://allpay.to/app/?show=getpayment&mode=api8';
     168        $environment_url = 'https://allpay.to/app/?show=getpayment&mode=api10';
    118169       
    119170        $user_id = get_current_user_id();
     
    140191            "login"                 => $this->api_login,
    141192            "amount"                => $customer_order->get_total(),
    142             "currency"              => get_woocommerce_currency(),
     193            "currency"              => ($this->currency_payment ?? 'ILS'),
     194            "currency_display"      => get_woocommerce_currency(),
    143195            "lang"                  => $this->get_lang(),
    144196            "order_id"              => str_replace( "#", "", $customer_order->get_order_number() ),
     
    148200            "notifications_url"     => get_home_url() . '/?wc-api=allpay',
    149201            "success_url"           => $customer_order->get_checkout_order_received_url(),
    150             "backlink_url"          => home_url()
     202            "backlink_url"          => wc_get_checkout_url()
    151203        );
    152204
     
    158210        }
    159211
     212        if($this->display_tehudat_mode == 0 || $this->display_tehudat_mode == 1 && $customer_order->get_billing_country() != 'IL') {
     213            $request['client_tehudat'] = '000000000';
     214        }
     215
    160216        $tax_included = wc_tax_enabled() && wc_prices_include_tax() && $customer_order->get_total_tax() > 0;
    161217
    162         // Items
    163         $items = [];
    164         foreach ($customer_order->get_items() as $item_id => $item) {
    165             $quantity = $item->get_quantity();
    166             $price = ($quantity > 0) ? ( $item->get_total() + $item->get_total_tax() ) / $quantity : 0;
    167 
    168             $items[] = [
    169                 'name' => $item->get_name(),
    170                 'price' => $price,
    171                 'qty' => $quantity,
    172                 'vat' => ($tax_included ? 1 : 0)
    173             ];
    174         }
    175         foreach ($customer_order->get_fees() as $fee_id => $fee) {
    176             $items[] = [
    177                 'name' => $fee->get_name(),
    178                 'price' => $fee->get_total(),
    179                 'qty' => 1,
    180                 'vat' => ($tax_included ? 1 : 0)
    181             ];
    182         }
    183         if ($shipping_total = $customer_order->get_shipping_total()) {
    184             $items[] = [
    185                 'name' => $customer_order->get_shipping_method(),
    186                 'price' => $shipping_total,
    187                 'qty' => 1,
    188                 'vat' => ($tax_included ? 1 : 0)
    189             ];
    190         }
    191         $request['items'] = $items;
     218        // Items
     219        $items = [];
     220
     221        foreach ($customer_order->get_items() as $item_id => $item) {
     222            $qty = (int) $item->get_quantity();
     223
     224            $line_total     = (float) $item->get_total();     
     225            $line_total_tax = (float) $item->get_total_tax();   
     226
     227            $unit_price_gross = ($qty > 0) ? (($line_total + $line_total_tax) / $qty) : 0;
     228
     229            $items[] = [
     230                'name'  => $item->get_name(),
     231                'price' => $unit_price_gross,
     232                'qty'   => $qty,
     233                'vat'   => ($line_total_tax > 0 ? 1 : 0),
     234            ];
     235        }
     236
     237        foreach ($customer_order->get_fees() as $fee_id => $fee) {
     238            $fee_total     = (float) $fee->get_total();       
     239            $fee_total_tax = (float) $fee->get_total_tax();   
     240
     241            $items[] = [
     242                'name'  => $fee->get_name(),
     243                'price' => ($fee_total + $fee_total_tax),     
     244                'qty'   => 1,
     245                'vat'   => ($fee_total_tax > 0 ? 1 : 0),
     246            ];
     247        }
     248
     249        $shipping_total     = (float) $customer_order->get_shipping_total();
     250        $shipping_total_tax = (float) $customer_order->get_shipping_tax(); 
     251
     252        if ($shipping_total > 0 || $shipping_total_tax > 0) {
     253            $items[] = [
     254                'name'  => $customer_order->get_shipping_method(),
     255                'price' => ($shipping_total + $shipping_total_tax),         
     256                'qty'   => 1,
     257                'vat'   => ($shipping_total_tax > 0 ? 1 : 0),
     258            ];
     259        }
     260
     261        $request['items'] = $items;
    192262
    193263        $request['sign'] = $this->get_signature($request);
     
    233303                        ksort($item);
    234304                        foreach($item as $name => $val) {
    235                             if ($val !== '') {
     305                            if ($val !== null && $val !== '') {
    236306                                $chunks[] = $val;
    237307                            }   
    238308                        }
    239                     } elseif ($item !== '') {
     309                    } elseif ($item !== null && $item !== '') {
    240310                        $chunks[] = $item;
    241311                    }     
    242312                }
    243             } elseif ($v !== '') {
     313            } elseif ($v !== null && $v !== '') {
    244314                $chunks[] = $v;
    245315            }                   
    246316        }
    247        
     317        $this->debug = implode(':', $chunks);
    248318        $signature = implode(':', $chunks) . ':' . $this->api_key;
    249319        $signature = hash('sha256', $signature);
  • allpay-payment-gateway/trunk/languages/allpay-payment-gateway-he_IL.po

    r3365680 r3447759  
    1 # Copyright (C) 2023 Allpay
     1# Copyright (C) 2026 Allpay
    22# This file is distributed under the GPLv2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Allpay payment gateway 1.0.2\n"
    6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/allpay-payment-"
    7 "gateway.1.0.2\n"
    8 "POT-Creation-Date: 2023-07-19T19:35:49+03:00\n"
    9 "PO-Revision-Date: 2023-07-19 21:02+0300\n"
    10 "Last-Translator: \n"
    11 "Language-Team: \n"
     5"Project-Id-Version: Allpay payment gateway 1.2\n"
     6"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/allpay-payment-gateway\n"
     7"Last-Translator: FULL NAME <[email protected]>\n"
     8"Language-Team: Hebrew <[email protected]>\n"
    129"Language: he_IL\n"
    1310"MIME-Version: 1.0\n"
    1411"Content-Type: text/plain; charset=UTF-8\n"
    1512"Content-Transfer-Encoding: 8bit\n"
    16 "X-Generator: Poedit 3.3.2\n"
     13"POT-Creation-Date: 2026-01-26T12:46:43+00:00\n"
     14"PO-Revision-Date: 2026-01-26 15:20+0200\n"
     15"X-Generator: WP-CLI 2.12.0\n"
    1716"X-Domain: allpay-payment-gateway\n"
    1817
    1918#. Plugin Name of the plugin
     19#: allpay-gateway.php
    2020msgid "Allpay payment gateway"
    21 msgstr "שער תשלום של Allpay"
     21msgstr "שער תשלומים Allpay"
    2222
    2323#. Plugin URI of the plugin
    24 msgid "https://www.allpay.co.il/integrations/woocommerce"
    25 msgstr ""
     24#: allpay-gateway.php
     25msgid "https://www.allpay.co.il/integrations/wordpress"
     26msgstr "https://www.allpay.co.il/integrations/wordpress"
    2627
    2728#. Description of the plugin
    28 msgid "Allpay Payment Gateway for WooCommerce."
    29 msgstr "שער תשלום של Allpay לWooCommerce."
     29#: allpay-gateway.php
     30msgid "Allpay payment gateway for WooCommerce to accepts Visa, Mastercard, Diners, AmEx and other brands, and Apple Pay and Bit."
     31msgstr "שער התשלומים Allpay ל־WooCommerce תומך בכרטיסי Visa, Mastercard, Diners, American Express ומותגים נוספים, וכן Apple Pay ו-Bit."
    3032
    3133#. Author of the plugin
     34#: allpay-gateway.php
    3235msgid "Allpay"
    33 msgstr ""
     36msgstr "Allpay"
    3437
    3538#. Author URI of the plugin
     39#: allpay-gateway.php
    3640msgid "https://allpay.co.il"
    37 msgstr ""
     41msgstr "https://allpay.co.il"
    3842
    39 #: allpay-gateway.php:47
     43#: allpay-gateway.php:55
    4044msgid "Settings"
    4145msgstr "הגדרות"
    4246
    43 #: allpay.php:12 allpay.php:16
    44 msgid "Bank cards payments Allpay"
    45 msgstr "תשלום בכרטיסי בנק דרך Allpay"
     47#: classes/class-allpay.php:26
     48#: classes/class-allpay.php:28
     49#: classes/class-allpay.php:103
     50msgid "Credit card payment via Allpay"
     51msgstr "תשלום בכרטיס אשראי באמצעות Allpay"
    4652
    47 #: allpay.php:14
    48 msgid "Allpay Payment Gateway Plug-in for WooCommerce"
    49 msgstr "פלאגין שער תשלום של Allpay עבור WooCommerce"
     53#: classes/class-allpay.php:27
     54#: classes/class-allpay.php:29
     55msgid "Allpay payment gateway plug-in for WooCommerce"
     56msgstr "תוסף שער התשלומים Allpay ל־WooCommerce"
    5057
    51 #: allpay.php:55
     58#: classes/class-allpay.php:93
    5259msgid "Enable / Disable"
    53 msgstr "להפעיל / לכבות"
     60msgstr "הפעלה / השבתה"
    5461
    55 #: allpay.php:56
     62#: classes/class-allpay.php:94
    5663msgid "Enable this payment gateway"
    57 msgstr "הפעל את אמצעי התשלום הזה"
     64msgstr "הפעלת שער תשלומים זה"
    5865
    59 #: allpay.php:61
     66#: classes/class-allpay.php:99
    6067msgid "Title"
    6168msgstr "כותרת"
    6269
    63 #: allpay.php:63
    64 msgid "Payment title the customer will see during the checkout process."
    65 msgstr "כותרת התשלום שהקונה יראה בעת ביצוע ההזמנה."
     70#: classes/class-allpay.php:101
     71msgid "Payment method name shown to customers at checkout"
     72msgstr "שם אמצעי התשלום המוצג ללקוחות בעמוד התשלום"
    6673
    67 #: allpay.php:64
    68 msgid "Credit card"
    69 msgstr "כרטיס אשראי"
     74#: classes/class-allpay.php:102
     75msgid "Recommended: Credit card payment via Allpay"
     76msgstr "מומלץ: תשלום בכרטיס אשראי באמצעות Allpay"
    7077
    71 #: allpay.php:67
     78#: classes/class-allpay.php:106
    7279msgid "Description"
    7380msgstr "תיאור"
    7481
    75 #: allpay.php:69
    76 msgid "Payment description the customer will see during the checkout process."
    77 msgstr "תיאור התשלום שיראה הקונה בעת ביצוע ההזמנה."
     82#: classes/class-allpay.php:108
     83msgid "Payment method description shown to customers at checkout"
     84msgstr "תיאור אמצעי התשלום המוצג ללקוחות בעמוד התשלום"
    7885
    79 #: allpay.php:70
    80 msgid "Pay securely using your credit card."
    81 msgstr "שלם בצורה מאובטחת עם כרטיס האשראי שלך."
     86#: classes/class-allpay.php:109
     87msgid "Recommended: Pay securely with a credit/debit card, Apple Pay, or Bit"
     88msgstr "מומלץ: תשלום מאובטח בכרטיס אשראי/דביט, Apple Pay או Bit"
    8289
    83 #: allpay.php:74
     90#: classes/class-allpay.php:110
     91msgid "Pay securely with a credit/debit card, Apple Pay, or Bit."
     92msgstr "שלם בצורה מאובטחת באמצעות כרטיס אשראי/דביט, Apple Pay או Bit."
     93
     94#: classes/class-allpay.php:114
    8495msgid "API login"
    8596msgstr "שם משתמש API"
    8697
    87 #: allpay.php:76
    88 msgid "Allpay API Login"
    89 msgstr "שם משתמש API בAllpay"
     98#: classes/class-allpay.php:116
     99msgid "Crate API Login in your Allpay account: Settings -> Integrations -> WordPress"
     100msgstr "צור שם משתמש API בחשבון Allpay שלך: הגדרות → אינטגרציות → WordPress"
    90101
    91 #: allpay.php:79
     102#: classes/class-allpay.php:119
    92103msgid "API key"
    93104msgstr "מפתח API"
    94105
    95 #: allpay.php:81
    96 msgid "Allpay API Key"
    97 msgstr "מפתח API בAllpay"
     106#: classes/class-allpay.php:121
     107msgid "Crate API key in your Allpay account: Settings -> Integrations -> WordPress"
     108msgstr "צור מפתח API בחשבון Allpay שלך: הגדרות → אינטגרציות → WordPress"
    98109
    99 #: allpay.php:84
     110#: classes/class-allpay.php:124
    100111msgid "Installment max payments"
    101 msgstr "תשלומים מקסימליים"
     112msgstr "מספר תשלומים מרבי"
    102113
    103 #: allpay.php:86
    104 msgid "Maximum number of installment payments. Up to 12, zero to disable."
    105 msgstr "מספר מקסימלי של תשלומים. עד 12, אפס כדי להשבית."
     114#: classes/class-allpay.php:126
     115msgid "Maximum number of installment payments. Up to 12, zero to disable"
     116msgstr "מספר תשלומים מרבי. עד 12, 0 לביטול האפשרות"
    106117
    107 #: allpay.php:87
    108 msgid ""
    109 "Allows client to choose number of payments. Valid for credit cards only (no "
    110 "debit cards)"
    111 msgstr ""
    112 "מאפשר ללקוח לבחור מספר תשלומים. עובד עבור כרטיסי אשראי בלבד (ללא כרטיסי "
    113 "דיירכט)"
     118#: classes/class-allpay.php:127
     119msgid "Allows client to choose number of payments. Valid for credit cards only (no debit cards)"
     120msgstr "מאפשר ללקוח לבחור את מספר התשלומים. זמין לכרטיסי אשראי בלבד (לא כרטיסי דביט)"
    114121
    115 #: allpay.php:91
     122#: classes/class-allpay.php:131
    116123msgid "Installment min order amount"
    117 msgstr "סכום הזמנה מינימלי בתשלומים"
     124msgstr "סכום הזמנה מינימלי לתשלומים"
    118125
    119 #: allpay.php:93
    120 msgid "Minimum order amount for installments. Zero for orders of any amount."
    121 msgstr "מינימום הזמנה בתשלומים. אפס עבור הזמנות בכל סכום."
     126#: classes/class-allpay.php:133
     127msgid "Minimum order amount for installments. Zero for orders of any amount"
     128msgstr "סכום הזמנה מינימלי לתשלומים. 0 להזמנות בכל סכום"
    122129
    123 #: allpay.php:94
    124 msgid ""
    125 "Enables installment option when payment amount equals or above this value"
    126 msgstr "מפעיל את אפשרות התשלומים כאשר סכום התשלום שווה או גדול מערך זה"
     130#: classes/class-allpay.php:134
     131msgid "Enables installment option when payment amount equals or above this value"
     132msgstr "מאפשר תשלומים כאשר סכום התשלום שווה או גבוה מערך זה"
    127133
    128 #: allpay.php:98
    129 msgid "First payment amount"
    130 msgstr "סכום התשלום הראשון"
     134#: classes/class-allpay.php:138
     135msgid "Payment currency"
     136msgstr "מטבע התשלום"
    131137
    132 #: allpay.php:100
    133 msgid "First Installment payment. Zero for auto."
    134 msgstr "סכום התשלום הראשון. אפס לחישוב אוטומטי."
     138#: classes/class-allpay.php:140
     139msgid "Before selecting USD or EUR, make sure these currencies are enabled on your Allpay account"
     140msgstr "לפני בחירת USD או EUR, ודא שמטבעות אלה מופעלים בחשבון Allpay שלך"
    135141
    136 #: allpay.php:101
    137 msgid ""
    138 "Makes first payment amount fixed. If set to 0, the system will calculate the "
    139 "first payment"
    140 msgstr "קובע את סכום התשלום הראשון. אם מוגדר ל-0, המערכת תחשב את התשלום הראשון"
     142#: classes/class-allpay.php:141
     143msgid "The currency in which the payment will be processed. Any price shown in another currency will be converted to this currency"
     144msgstr "המטבע שבו התשלום יעובד. כל מחיר המוצג במטבע אחר יומר למטבע זה"
    141145
    142 #: allpay.php:146
    143 msgid ""
    144 "We are currently experiencing problems trying to connect to this payment "
    145 "gateway. Sorry for the inconvenience."
    146 msgstr ""
    147 "אנו נתקלים כעת בבעיות בניסיון להתחבר לשער תשלום זה.אנו מצטערים על אי הנוחות."
     146#: classes/class-allpay.php:144
     147msgid "Israeli Shekel (ILS)"
     148msgstr "שקל ישראלי (ILS)"
    148149
    149 #: allpay.php:149
    150 msgid "Allpay's Response was empty."
    151 msgstr "תגובה ריקה משער התשלום."
     150#: classes/class-allpay.php:145
     151msgid "US Dollar (USD)"
     152msgstr "דולר אמריקאי (USD)"
     153
     154#: classes/class-allpay.php:146
     155msgid "Euro (EUR)"
     156msgstr "אירו (EUR)"
     157
     158#: classes/class-allpay.php:150
     159msgid "Teudat zeut field"
     160msgstr "שדה תעודת זהות"
     161
     162#: classes/class-allpay.php:152
     163#: classes/class-allpay.php:153
     164msgid "Request Teudat Zehut (Israeli ID) on the payment page"
     165msgstr "לבקש תעודת זהות (ת״ז) בעמוד התשלום"
     166
     167#: classes/class-allpay.php:156
     168msgid "Only for Israeli customers"
     169msgstr "רק ללקוחות מישראל"
     170
     171#: classes/class-allpay.php:157
     172msgid "For all customers"
     173msgstr "לכל הלקוחות"
     174
     175#: classes/class-allpay.php:158
     176msgid "Do not request"
     177msgstr "לא לבקש"
     178
     179#: classes/class-allpay.php:272
     180msgid "We are currently experiencing problems trying to connect to this payment gateway. Sorry for the inconvenience."
     181msgstr "אנו חווים כעת בעיות בהתחברות לשער התשלומים. עמכם הסליחה על אי הנוחות."
     182
     183#: classes/class-allpay.php:290
     184msgid "Unknown error"
     185msgstr "שגיאה לא ידועה"
  • allpay-payment-gateway/trunk/languages/allpay-payment-gateway-ru_RU.po

    r3365680 r3447759  
    1 # Copyright (C) 2024 Allpay
     1# Copyright (C) 2026 Allpay
    22# This file is distributed under the GPLv2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Allpay payment gateway 1.1.0\n"
     5"Project-Id-Version: Allpay payment gateway 1.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/allpay-payment-gateway\n"
    7 "POT-Creation-Date: 2023-07-19T19:35:49+03:00\n"
    8 "PO-Revision-Date: 2024-11-06 10:02+0200\n"
    9 "Last-Translator: \n"
    10 "Language-Team: \n"
    11 "Language: ru_RU\n"
     7"Last-Translator: Allpay <[email protected]>\n"
     8"Language-Team: Russian <[email protected]>\n"
     9"Language: ru\n"
    1210"MIME-Version: 1.0\n"
    1311"Content-Type: text/plain; charset=UTF-8\n"
    1412"Content-Transfer-Encoding: 8bit\n"
    15 "X-Generator: Poedit 3.5\n"
     13"POT-Creation-Date: 2026-01-26T12:46:43+00:00\n"
     14"PO-Revision-Date: 2026-01-26 15:00+0200\n"
     15"X-Generator: WP-CLI 2.12.0\n"
    1616"X-Domain: allpay-payment-gateway\n"
    1717
    1818#. Plugin Name of the plugin
     19#: allpay-gateway.php
    1920msgid "Allpay payment gateway"
    2021msgstr "Платежный шлюз Allpay"
    2122
    2223#. Plugin URI of the plugin
    23 msgid "https://www.allpay.co.il/integrations/woocommerce"
    24 msgstr ""
     24#: allpay-gateway.php
     25msgid "https://www.allpay.co.il/integrations/wordpress"
     26msgstr "https://www.allpay.co.il/integrations/wordpress"
    2527
    2628#. Description of the plugin
    27 msgid "Allpay Payment Gateway for WooCommerce to accepts Visa, Mastercard, Diners, AmEx and other brands. Fast payment with Bit included."
    28 msgstr "Платежный шлюз Allpay для WooCommerce для получения оплат картами Visa, Mastercard, AmEx, Diners и другими, а также через кнопку Bit."
     29#: allpay-gateway.php
     30msgid "Allpay payment gateway for WooCommerce to accepts Visa, Mastercard, Diners, AmEx and other brands, and Apple Pay and Bit."
     31msgstr "Платежный шлюз Allpay для WooCommerce с поддержкой Visa, Mastercard, Diners, American Express и других брендов, а также Apple Pay и Bit."
    2932
    3033#. Author of the plugin
     34#: allpay-gateway.php
    3135msgid "Allpay"
    32 msgstr ""
     36msgstr "Allpay"
    3337
    3438#. Author URI of the plugin
     39#: allpay-gateway.php
    3540msgid "https://allpay.co.il"
    36 msgstr ""
     41msgstr "https://allpay.co.il"
    3742
    38 #: allpay-gateway.php:47
     43#: allpay-gateway.php:55
    3944msgid "Settings"
    4045msgstr "Настройки"
    4146
    42 #: allpay.php:12 allpay.php:16
    43 msgid "Bank cards payments Allpay"
    44 msgstr "Оплата банковскими картами Allpay"
     47#: classes/class-allpay.php:26
     48#: classes/class-allpay.php:28
     49#: classes/class-allpay.php:103
     50msgid "Credit card payment via Allpay"
     51msgstr "Оплата банковской картой через Allpay"
    4552
    46 #: allpay.php:14
    47 msgid "Allpay Payment Gateway Plug-in for WooCommerce"
     53#: classes/class-allpay.php:27
     54#: classes/class-allpay.php:29
     55msgid "Allpay payment gateway plug-in for WooCommerce"
    4856msgstr "Плагин платежного шлюза Allpay для WooCommerce"
    4957
    50 #: allpay.php:55
     58#: classes/class-allpay.php:93
    5159msgid "Enable / Disable"
    52 msgstr "Включить/ Выключить"
     60msgstr "Включить / отключить"
    5361
    54 #: allpay.php:56
     62#: classes/class-allpay.php:94
    5563msgid "Enable this payment gateway"
    56 msgstr "Включить этот метод оплаты"
     64msgstr "Включить этот платежный шлюз"
    5765
    58 #: allpay.php:61
     66#: classes/class-allpay.php:99
    5967msgid "Title"
    60 msgstr "Заголовок"
     68msgstr "Название"
    6169
    62 #: allpay.php:63
    63 msgid "Payment title the customer will see during the checkout process."
    64 msgstr "Заголовок платежа, который покупатель увидит в процессе оформления заказа."
     70#: classes/class-allpay.php:101
     71msgid "Payment method name shown to customers at checkout"
     72msgstr "Название способа оплаты, отображаемое покупателям при оформлении заказа"
    6573
    66 #: allpay.php:64
    67 msgid "Credit card"
    68 msgstr "Кредитная карта"
     74#: classes/class-allpay.php:102
     75msgid "Recommended: Credit card payment via Allpay"
     76msgstr "Рекомендуется: оплата банковской картой через Allpay"
    6977
    70 #: allpay.php:67
     78#: classes/class-allpay.php:106
    7179msgid "Description"
    7280msgstr "Описание"
    7381
    74 #: allpay.php:69
    75 msgid "Payment description the customer will see during the checkout process."
    76 msgstr "Описание платежа, которое покупатель увидит в процессе оформления заказа."
     82#: classes/class-allpay.php:108
     83msgid "Payment method description shown to customers at checkout"
     84msgstr "Описание способа оплаты, отображаемое покупателям при оформлении заказа"
    7785
    78 #: allpay.php:70
    79 msgid "Pay securely using your credit card."
    80 msgstr "Платите безопасно с помощью кредитной карты."
     86#: classes/class-allpay.php:109
     87msgid "Recommended: Pay securely with a credit/debit card, Apple Pay, or Bit"
     88msgstr "Рекомендуется: безопасная оплата картой, Apple Pay или Bit"
    8189
    82 #: allpay.php:74
     90#: classes/class-allpay.php:110
     91msgid "Pay securely with a credit/debit card, Apple Pay, or Bit."
     92msgstr "Оплачивайте безопасно с помощью карты, Apple Pay или Bit."
     93
     94#: classes/class-allpay.php:114
    8395msgid "API login"
    8496msgstr "API логин"
    8597
    86 #: allpay.php:76
    87 msgid "Allpay API Login"
    88 msgstr "Логин API Allpay"
     98#: classes/class-allpay.php:116
     99msgid "Crate API Login in your Allpay account: Settings -> Integrations -> WordPress"
     100msgstr "Создайте API логин в личном кабинете Allpay: Настройки → Интеграции → WordPress"
    89101
    90 #: allpay.php:79
     102#: classes/class-allpay.php:119
    91103msgid "API key"
    92104msgstr "API ключ"
    93105
    94 #: allpay.php:81
    95 msgid "Allpay API Key"
    96 msgstr "Ключ API Allpay"
     106#: classes/class-allpay.php:121
     107msgid "Crate API key in your Allpay account: Settings -> Integrations -> WordPress"
     108msgstr "Создайте API ключ в личном кабинете Allpay: Настройки → Интеграции → WordPress"
    97109
    98 #: allpay.php:84
     110#: classes/class-allpay.php:124
    99111msgid "Installment max payments"
    100 msgstr "Платежей в рассрочку до"
     112msgstr "Максимальное количество платежей в рассрочку"
    101113
    102 #: allpay.php:86
    103 msgid "Maximum number of installment payments. Up to 12, zero to disable."
    104 msgstr "Максимальное количество платежей в рассрочку. Максимум до12-и платежей. 0 для отключения."
     114#: classes/class-allpay.php:126
     115msgid "Maximum number of installment payments. Up to 12, zero to disable"
     116msgstr "Максимальное количество платежей в рассрочку. До 12, 0 — отключить"
    105117
    106 #: allpay.php:87
     118#: classes/class-allpay.php:127
    107119msgid "Allows client to choose number of payments. Valid for credit cards only (no debit cards)"
    108 msgstr "Позволяет клиенту выбрать количество платежей. Действительно только для кредитных карт (без дебетовых карт)"
     120msgstr "Позволяет клиенту выбрать количество платежей. Доступно только для кредитных карт (не для дебетовых)"
    109121
    110 #: allpay.php:91
     122#: classes/class-allpay.php:131
    111123msgid "Installment min order amount"
    112 msgstr "Минимальная сумма заказа в рассрочку"
     124msgstr "Минимальная сумма заказа для рассрочки"
    113125
    114 #: allpay.php:93
    115 msgid "Minimum order amount for installments. Zero for orders of any amount."
    116 msgstr "Минимальная сумма заказа в рассрочку. Ноль для заказов на любую сумму."
     126#: classes/class-allpay.php:133
     127msgid "Minimum order amount for installments. Zero for orders of any amount"
     128msgstr "Минимальная сумма заказа для рассрочки. 0 — для заказов на любую сумму"
    117129
    118 #: allpay.php:94
     130#: classes/class-allpay.php:134
    119131msgid "Enables installment option when payment amount equals or above this value"
    120 msgstr "Включает опцию рассрочки, когда сумма платежа равна или превышает это значение"
     132msgstr "Включает возможность рассрочки, если сумма платежа равна или превышает указанное значение"
    121133
    122 #: allpay.php:98
    123 msgid "First payment amount"
    124 msgstr "Сумма первого платежа"
     134#: classes/class-allpay.php:138
     135msgid "Payment currency"
     136msgstr "Валюта платежа"
    125137
    126 #: allpay.php:100
    127 msgid "First Installment payment. Zero for auto."
    128 msgstr "Оплата первого взноса. Ноль для автоматического расчета."
     138#: classes/class-allpay.php:140
     139msgid "Before selecting USD or EUR, make sure these currencies are enabled on your Allpay account"
     140msgstr "Перед выбором USD или EUR убедитесь, что эти валюты активированы в вашем аккаунте Allpay"
    129141
    130 #: allpay.php:101
    131 msgid "Makes first payment amount fixed. If set to 0, the system will calculate the first payment"
    132 msgstr "Фиксирует сумму первого платежа. Если установлено 0, система рассчитает первый платеж"
     142#: classes/class-allpay.php:141
     143msgid "The currency in which the payment will be processed. Any price shown in another currency will be converted to this currency"
     144msgstr "Валюта, в которой будет обработан платеж. Любая цена, указанная в другой валюте, будет сконвертирована в эту валюту"
    133145
    134 #: allpay.php:146
     146#: classes/class-allpay.php:144
     147msgid "Israeli Shekel (ILS)"
     148msgstr "Израильский шекель (ILS)"
     149
     150#: classes/class-allpay.php:145
     151msgid "US Dollar (USD)"
     152msgstr "Доллар США (USD)"
     153
     154#: classes/class-allpay.php:146
     155msgid "Euro (EUR)"
     156msgstr "Евро (EUR)"
     157
     158#: classes/class-allpay.php:150
     159msgid "Teudat zeut field"
     160msgstr "Поле Teudat Zehut"
     161
     162#: classes/class-allpay.php:152
     163#: classes/class-allpay.php:153
     164msgid "Request Teudat Zehut (Israeli ID) on the payment page"
     165msgstr "Запрашивать Teudat Zehut (израильский ID) на странице оплаты"
     166
     167#: classes/class-allpay.php:156
     168msgid "Only for Israeli customers"
     169msgstr "Только у покупателей из Израиля"
     170
     171#: classes/class-allpay.php:157
     172msgid "For all customers"
     173msgstr "У всех покупателей"
     174
     175#: classes/class-allpay.php:158
     176msgid "Do not request"
     177msgstr "Не запрашивать"
     178
     179#: classes/class-allpay.php:272
    135180msgid "We are currently experiencing problems trying to connect to this payment gateway. Sorry for the inconvenience."
    136 msgstr "В настоящее время у нас возникают проблемы с подключением к этому платежному шлюзу. Приносим извинения за неудобства."
     181msgstr "В данный момент возникли проблемы с подключением к платежному шлюзу. Приносим извинения за неудобства."
    137182
    138 #: allpay.php:149
    139 msgid "Allpay's Response was empty."
    140 msgstr "Пустой ответ от платежного шлюза."
     183#: classes/class-allpay.php:290
     184msgid "Unknown error"
     185msgstr "Неизвестная ошибка"
  • allpay-payment-gateway/trunk/languages/allpay-payment-gateway.pot

    r3365680 r3447759  
    1 # Copyright (C) 2024 Allpay
     1# Copyright (C) 2026 Allpay
    22# This file is distributed under the GPLv2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Allpay payment gateway 1.1.0\n"
     5"Project-Id-Version: Allpay payment gateway 1.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/allpay-payment-gateway\n"
    7 "Last-Translator: Pavel Freedman <[email protected]>\n"
     7"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    88"Language-Team: LANGUAGE <[email protected]>\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-07-19T19:35:49+03:00\n"
     12"POT-Creation-Date: 2026-01-26T12:46:43+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.8.1\n"
     14"X-Generator: WP-CLI 2.12.0\n"
    1515"X-Domain: allpay-payment-gateway\n"
    1616
    1717#. Plugin Name of the plugin
     18#: allpay-gateway.php
    1819msgid "Allpay payment gateway"
    1920msgstr ""
    2021
    2122#. Plugin URI of the plugin
    22 msgid "https://www.allpay.co.il/integrations/woocommerce"
     23#: allpay-gateway.php
     24msgid "https://www.allpay.co.il/integrations/wordpress"
    2325msgstr ""
    2426
    2527#. Description of the plugin
    26 msgid "Allpay Payment Gateway for WooCommerce to accepts Visa, Mastercard, Diners, AmEx and other brands. Fast payment with Bit included."
     28#: allpay-gateway.php
     29msgid "Allpay payment gateway for WooCommerce to accepts Visa, Mastercard, Diners, AmEx and other brands, and Apple Pay and Bit."
    2730msgstr ""
    2831
    2932#. Author of the plugin
     33#: allpay-gateway.php
    3034msgid "Allpay"
    3135msgstr ""
    3236
    3337#. Author URI of the plugin
     38#: allpay-gateway.php
    3439msgid "https://allpay.co.il"
    3540msgstr ""
    3641
    37 #: allpay-gateway.php:47
     42#: allpay-gateway.php:55
    3843msgid "Settings"
    3944msgstr ""
    4045
    41 #: allpay.php:12
    42 #: allpay.php:16
    43 msgid "Bank cards payments via Allpay"
     46#: classes/class-allpay.php:26
     47#: classes/class-allpay.php:28
     48#: classes/class-allpay.php:103
     49msgid "Credit card payment via Allpay"
    4450msgstr ""
    4551
    46 #: allpay.php:14
    47 msgid "Allpay Payment Gateway Plug-in for WooCommerce"
     52#: classes/class-allpay.php:27
     53#: classes/class-allpay.php:29
     54msgid "Allpay payment gateway plug-in for WooCommerce"
    4855msgstr ""
    4956
    50 #: allpay.php:55
     57#: classes/class-allpay.php:93
    5158msgid "Enable / Disable"
    5259msgstr ""
    5360
    54 #: allpay.php:56
     61#: classes/class-allpay.php:94
    5562msgid "Enable this payment gateway"
    5663msgstr ""
    5764
    58 #: allpay.php:61
     65#: classes/class-allpay.php:99
    5966msgid "Title"
    6067msgstr ""
    6168
    62 #: allpay.php:63
    63 msgid "Payment title the customer will see during the checkout process."
     69#: classes/class-allpay.php:101
     70msgid "Payment method name shown to customers at checkout"
    6471msgstr ""
    6572
    66 #: allpay.php:64
    67 msgid "Credit card"
     73#: classes/class-allpay.php:102
     74msgid "Recommended: Credit card payment via Allpay"
    6875msgstr ""
    6976
    70 #: allpay.php:67
     77#: classes/class-allpay.php:106
    7178msgid "Description"
    7279msgstr ""
    7380
    74 #: allpay.php:69
    75 msgid "Payment description the customer will see during the checkout process."
     81#: classes/class-allpay.php:108
     82msgid "Payment method description shown to customers at checkout"
    7683msgstr ""
    7784
    78 #: allpay.php:70
    79 msgid "Pay securely using your credit card."
     85#: classes/class-allpay.php:109
     86msgid "Recommended: Pay securely with a credit/debit card, Apple Pay, or Bit"
    8087msgstr ""
    8188
    82 #: allpay.php:74
     89#: classes/class-allpay.php:110
     90msgid "Pay securely with a credit/debit card, Apple Pay, or Bit."
     91msgstr ""
     92
     93#: classes/class-allpay.php:114
    8394msgid "API login"
    8495msgstr ""
    8596
    86 #: allpay.php:76
    87 msgid "Allpay API Login"
     97#: classes/class-allpay.php:116
     98msgid "Crate API Login in your Allpay account: Settings -> Integrations -> WordPress"
    8899msgstr ""
    89100
    90 #: allpay.php:79
     101#: classes/class-allpay.php:119
    91102msgid "API key"
    92103msgstr ""
    93104
    94 #: allpay.php:81
    95 msgid "Allpay API Key"
     105#: classes/class-allpay.php:121
     106msgid "Crate API key in your Allpay account: Settings -> Integrations -> WordPress"
    96107msgstr ""
    97108
    98 #: allpay.php:84
     109#: classes/class-allpay.php:124
    99110msgid "Installment max payments"
    100111msgstr ""
    101112
    102 #: allpay.php:86
    103 msgid "Maximum number of installment payments. Up to 12, zero to disable."
     113#: classes/class-allpay.php:126
     114msgid "Maximum number of installment payments. Up to 12, zero to disable"
    104115msgstr ""
    105116
    106 #: allpay.php:87
     117#: classes/class-allpay.php:127
    107118msgid "Allows client to choose number of payments. Valid for credit cards only (no debit cards)"
    108119msgstr ""
    109120
    110 #: allpay.php:91
     121#: classes/class-allpay.php:131
    111122msgid "Installment min order amount"
    112123msgstr ""
    113124
    114 #: allpay.php:93
    115 msgid "Minimum order amount for installments. Zero for orders of any amount."
     125#: classes/class-allpay.php:133
     126msgid "Minimum order amount for installments. Zero for orders of any amount"
    116127msgstr ""
    117128
    118 #: allpay.php:94
     129#: classes/class-allpay.php:134
    119130msgid "Enables installment option when payment amount equals or above this value"
    120131msgstr ""
    121132
    122 #: allpay.php:98
    123 msgid "First payment amount"
     133#: classes/class-allpay.php:138
     134msgid "Payment currency"
    124135msgstr ""
    125136
    126 #: allpay.php:100
    127 msgid "First Installment payment. Zero for auto."
     137#: classes/class-allpay.php:140
     138msgid "Before selecting USD or EUR, make sure these currencies are enabled on your Allpay account"
    128139msgstr ""
    129140
    130 #: allpay.php:101
    131 msgid "Makes first payment amount fixed. If set to 0, the system will calculate the first payment"
     141#: classes/class-allpay.php:141
     142msgid "The currency in which the payment will be processed. Any price shown in another currency will be converted to this currency"
    132143msgstr ""
    133144
    134 #: allpay.php:146
     145#: classes/class-allpay.php:144
     146msgid "Israeli Shekel (ILS)"
     147msgstr ""
     148
     149#: classes/class-allpay.php:145
     150msgid "US Dollar (USD)"
     151msgstr ""
     152
     153#: classes/class-allpay.php:146
     154msgid "Euro (EUR)"
     155msgstr ""
     156
     157#: classes/class-allpay.php:150
     158msgid "Teudat zeut field"
     159msgstr ""
     160
     161#: classes/class-allpay.php:152
     162#: classes/class-allpay.php:153
     163msgid "Request Teudat Zehut (Israeli ID) on the payment page"
     164msgstr ""
     165
     166#: classes/class-allpay.php:156
     167msgid "Only for customers from Israel"
     168msgstr ""
     169
     170#: classes/class-allpay.php:157
     171msgid "For all customers"
     172msgstr ""
     173
     174#: classes/class-allpay.php:158
     175msgid "Do not request"
     176msgstr ""
     177
     178#: classes/class-allpay.php:272
    135179msgid "We are currently experiencing problems trying to connect to this payment gateway. Sorry for the inconvenience."
    136180msgstr ""
    137181
    138 #: allpay.php:149
    139 msgid "Allpay's Response was empty."
     182#: classes/class-allpay.php:290
     183msgid "Unknown error"
    140184msgstr ""
  • allpay-payment-gateway/trunk/readme.txt

    r3365680 r3447759  
    44Requires PHP: 5.6
    55Requires at least: 4.7
    6 Tested up to: 6.8.2
    7 Stable tag: 1.1.3
     6Tested up to: 6.9
     7Stable tag: 1.2.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    2929### Features
    30301. Low commission.
    31 2. Support via email, Telegram, and WhatsApp in English, Russian, and Hebrew.
     312. Support via email, Telegram, and WhatsApp.
    32323. Supported cards: Visa, Mastercard, American Express, Diners, Isracard, JCB.
    33 4. Fast payment buttons for Apple Pay and Bit.
    34 5. Payments from all over the world (except for the Russian Federation).
     334. Fast payment buttons: Apple Pay and Bit.
     345. Payments from all countries (except the Russian Federation).
    35356. Installments (tashlumim).
    36 7. Integration with digital invoices (receipts).
    37 8. Automatic currency conversion.
    38 9. Mobile application for Android and iPhone.
    39 10. Payment page available in English, Hebrew, Russian, and Arabic.
    40 11. Your logo on the payment page.
     367. Integration with digital receipts.
     378. Mobile app for Android and iOS.
     389. Automatic detection of payment page language. Supports 8 languages, including English, Hebrew, Russian, Arabic, and French.
     3910. Your logo on the payment page.
     4011. Currency display option: show prices in a customer-friendly currency while charging in ILS, USD, or EUR.
    4141
    4242== Screenshots ==
     
    6464
    6565== Changelog ==
     66= 1.2.0 – 27 January 2026 =
     67* New: Payment currency selector added to plugin settings.
     68* New: Currency converter: show prices in a customer-friendly currency while charging in ILS, USD, or EUR.
     69* New: Tehudat Zehut (Israeli ID) field control
     70* New: Support of WP 6.9
     71* Fix: VAT calculation for delivery.
     72* Fix: Double stock deduction.
     73* Fix: Issue where orders were not marked as paid.
     74
    6675= 1.1.3 - 22 SEPTEMBER 2025 =
    6776* New: VAT calculation support.
Note: See TracChangeset for help on using the changeset viewer.