Plugin Directory

Changeset 3495635


Ignore:
Timestamp:
03/31/2026 01:34:36 PM (4 days ago)
Author:
estogroup
Message:

Deploy version 3.0.19 to trunk

Location:
esto-payment-methods/trunk
Files:
3 added
7 edited

Legend:

Unmodified
Added
Removed
  • esto-payment-methods/trunk/Readme.txt

    r3494688 r3495635  
    11=== ESTO payment methods ===
    22Contributors: estogroup
    3 Stable tag: 3.0.18
     3Stable tag: 3.0.19
    44Requires at least: 4.2
    55Tested up to: 6.9
     
    8181
    8282== Changelog ==
     83= 3.0.19 =
     84* Added: Russian (ru_RU) language support — translations, locale-based logos, checkout captions aligned with official ESTO documentation
     85
    8386= 3.0.18 =
    8487* Improved: Callbacks improvements
  • esto-payment-methods/trunk/esto-payment-methods.php

    r3494688 r3495635  
    44 * Plugin URI: https://www.esto.ee
    55 * Description: Adds ESTO payment methods to webshop
    6  * Version: 3.0.18
     6 * Version: 3.0.19
    77 * Author: ESTO AS
    88 * Author URI: https://www.esto.eu
  • esto-payment-methods/trunk/includes/block-gateways/class-esto-pay-later-payment-block.php

    r3403858 r3495635  
    3636                'lv'      => $icon_base_path . 'esto-pay-later/ESTO_pay_later_LV.svg',
    3737                'lt'      => $icon_base_path . 'esto-pay-later/ESTO_pay_later_LT.svg',
     38
     39                'ru'      => $icon_base_path . 'esto-pay-later/ESTO_pay_later_RU.svg',
    3840            ),
    3941        );
  • esto-payment-methods/trunk/includes/block-gateways/class-esto-payment-block.php

    r3403896 r3495635  
    107107                'lv'      => $icon_base_path . 'esto-hp/ESTO_hp_LV.svg',
    108108                'lt'      => $icon_base_path . 'esto-hp/ESTO_hp_LT.svg',
     109
     110                'ru'      => $icon_base_path . 'esto-hp/ESTO_hp_RU.svg',
    109111            ),
    110112        );
  • esto-payment-methods/trunk/includes/block-gateways/class-esto-x-payment-block.php

    r3403858 r3495635  
    4949                'lv'      => $icon_base_path . "esto-x/ESTO_{$period}_LV.svg",
    5050                'lt'      => $icon_base_path . "esto-x/ESTO_{$period}_LT.svg",
     51                'ru'      => $icon_base_path . "esto-x/ESTO_{$period}_RU.svg",
    5152            ),
    5253        );
  • esto-payment-methods/trunk/includes/class-esto-payment.php

    r3403935 r3495635  
    244244                    'lv'      => $icon_base_path . 'esto-hp/ESTO_hp_LV.svg',
    245245                    'lt'      => $icon_base_path . 'esto-hp/ESTO_hp_LT.svg',
     246                    'ru'      => $icon_base_path . 'esto-hp/ESTO_hp_RU.svg',
    246247                ),
    247248                'esto_pay'  => array(
     
    250251                    'lv'      => $icon_base_path . 'esto-pay/logo-esto_pay.svg',
    251252                    'lt'      => $icon_base_path . 'esto-pay/logo-esto_pay.svg',
     253                    'ru'      => $icon_base_path . 'esto-pay/logo-esto_pay.svg',
    252254                ),
    253255                'esto_x'    => array(
     
    256258                    'lv'      => $icon_base_path . 'esto-x/ESTO_3_LV.svg',
    257259                    'lt'      => $icon_base_path . 'esto-x/ESTO_3_LT.svg',
     260                    'ru'      => $icon_base_path . 'esto-x/ESTO_3_RU.svg',
    258261                ),
    259262                'esto_card' => array(
     
    262265                    'lv'      => $icon_base_path . 'esto-pay/logo-esto_card.svg',
    263266                    'lt'      => $icon_base_path . 'esto-pay/logo-esto_card.svg',
     267                    'ru'      => $icon_base_path . 'esto-pay/logo-esto_card.svg',
    264268                ),
    265269                'pay_later' => array(
     
    268272                    'lv'      => $icon_base_path . 'esto-pay-later/ESTO_pay_later_LV.svg',
    269273                    'lt'      => $icon_base_path . 'esto-pay-later/ESTO_pay_later_LT.svg',
     274                    'ru'      => $icon_base_path . 'esto-pay-later/ESTO_pay_later_RU.svg',
    270275                ),
    271276            );
  • esto-payment-methods/trunk/includes/class-esto-x-payment.php

    r3439262 r3495635  
    7777            'lv' => 'LV',
    7878            'lt' => 'LT',
     79            'ru' => 'RU',
    7980        );
    8081        $icon_lang      = $country_codes[ $current_language ] ?? 'EN';
Note: See TracChangeset for help on using the changeset viewer.