Plugin Directory

Changeset 3443263


Ignore:
Timestamp:
01/20/2026 01:01:29 PM (2 months ago)
Author:
yoomoney
Message:

v2.14.0

  • Удалена поддержка НДС 20%
  • Удалена поддержка отправки чеков для СМЗ
Location:
yookassa/trunk
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • yookassa/trunk/README.txt

    r3426839 r3443263  
    55Requires at least: 5.2
    66Tested up to: 6.9
    7 Stable tag: 2.13.2
     7Stable tag: 2.14.0
    88License: GPLv3
    99License URI: https://yoomoney.ru/doc.xml?id=527132
     
    6363
    6464== Changelog ==
     65= 2.14.0 =
     66* Удалена поддержка НДС 20%
     67* Удалена поддержка отправки чеков для СМЗ
     68
    6569= 2.13.2 =
    6670* Добавлена поддержка НДС 22%
  • yookassa/trunk/admin/YooKassaAdmin.php

    r3426839 r3443263  
    211211        register_setting('woocommerce-yookassa', 'yookassa_access_token');
    212212        register_setting('woocommerce-yookassa', 'yookassa_save_card');
    213         register_setting('woocommerce-yookassa', 'yookassa_self_employed');
    214213        register_setting('woocommerce-yookassa', 'yookassa_marking_enabled');
    215214        register_setting('woocommerce-yookassa', 'yookassa_apple_pay_enabled');
     
    222221                VatDataRate::RATE_7  => '7%',
    223222                VatDataRate::RATE_10 => '10%',
    224                 VatDataRate::RATE_20 => '20%',
    225223                VatDataRate::RATE_22 => '22%',
    226224            )
     
    235233                8 => '7%',
    236234                3 => '10%',
    237                 4 => '20%',
    238235               11 => '22%',
    239236                9 => __('Расчетная ставка 5/105', 'yookassa'),
    240237               10 => __('Расчетная ставка 7/107', 'yookassa'),
    241238                5 => __('Расчетная ставка 10/110', 'yookassa'),
    242                 6 => __('Расчетная ставка 20/120', 'yookassa'),
    243239               12 => __('Расчетная ставка 22/122', 'yookassa'),
    244240            )
     
    260256    private function get_all_settings()
    261257    {
     258        YooKassaHandler::replaceOldTaxRates();
    262259        $shopInfo               = self::getShopInfo();
    263260        $wcTaxes                = $this->getAllTaxes();
     
    303300            $isTestShop = isset($shopInfo['test']) && $shopInfo['test'];
    304301            $isFiscalizationEnabled = isset($shopInfo['fiscalization_enabled']) && $shopInfo['fiscalization_enabled'];
    305             $isSberLoanAvailable = isset($shopInfo['payment_methods']) && in_array(PaymentMethodType::SBER_LOAN, $shopInfo['payment_methods']);
     302            $isSberLoanAvailable = isset($shopInfo['payment_methods']) && in_array(PaymentMethodType::SBER_LOAN, $shopInfo['payment_methods'], true);
    306303            $validCredentials = true;
    307304        }
    308305
    309306        $isSaveCard             = (bool)get_option('yookassa_save_card', '1');
    310         $isSelfEmployed         = (bool)get_option('yookassa_self_employed', '0');
    311307
    312308        $isNeededShowNps = time() > (int)$npsVoteTime + $this->npsRetryAfterDays * 86400
    313             && substr($password, 0, 5) === 'live_'
     309            && !$isTestShop
    314310            && get_locale() === 'ru_RU';
    315311
     
    391387            'yookassaNonce'          => wp_create_nonce('yookassa-nonce'),
    392388            'isSaveCard'             => $isSaveCard,
    393             'isSelfEmployed'         => $isSelfEmployed,
    394389            'isSberLoanAvailable'    => $isSberLoanAvailable,
    395390            'defaultTaxSystemCode'   => $defaultTaxSystemCode,
     
    640635
    641636    /**
    642      * @return array|void|null
    643      */
    644     public static function getShopInfo()
     637     * @param bool $reset
     638     * @return array|false|mixed|null
     639     */
     640    public static function getShopInfo($reset=false)
    645641    {
    646642        $cache = new YooKassaFileCache(60*60);
     643        if ($reset) {
     644            $cache->delete('shop_info');
     645        }
    647646        $shopInfo = $cache->get('shop_info');
    648         if (!$shopInfo) {
     647        if ($reset || !$shopInfo) {
    649648            YooKassaLogger::sendHeka(array('oauth.get-shop.init'));
    650649            try {
     
    675674    private function saveShopIdByOauth()
    676675    {
    677         $shopInfo = self::getShopInfo();
     676        $shopInfo = self::getShopInfo(true);
    678677
    679678        if (!isset($shopInfo['account_id'])) {
  • yookassa/trunk/admin/partials/tabs/section2.php

    r3426839 r3443263  
    168168                    <?= __('При оплате через СберБанк Бизнес Онлайн есть ограничение: в одном чеке могут быть только товары с одинаковой ставкой НДС. Если клиент захочет оплатить за один раз товары с разными ставками — мы покажем ему сообщение, что так сделать не получится.', 'yookassa') ?>
    169169                </div>
    170                 <div class="info-block very-important" id="if-sbbol-nds-20" style="display: <?= $selected20 ? 'block' : 'none' ?>">
    171                     <span class="dashicons dashicons-info" aria-hidden="true"></span>
    172                     <span><?= __('Чтобы соответствовать закону 54-ФЗ, 1 января ставку 20% нужно будет поменять на 22% — новые платежи будут проходить по ней. Если не поменять, возможны вопросы и штрафы от ФНС, а операции придётся исправлять вручную', 'yookassa'); ?></span>
    173                 </div>
    174170            </div>
    175171        </div>
  • yookassa/trunk/admin/partials/tabs/section4.php

    r3426839 r3443263  
    1212/** @var array $paymentModeEnum */
    1313/** @var array $wcOrderStatuses */
    14 /** @var bool $isSelfEmployed */
    1514/** @var string $yookassaNonce */
    1615/** @var string $isMarkingEnabled */
     
    2827                    </label>
    2928                </div>
     29                <p class="help-block text-muted qa-enable-receipt-control-info">
     30                    <?= __('Автоотправка доступна только ИП и юрлицам. Самозанятым нужно формировать чеки вручную — через сервис «Мой налог»', 'yookassa');?>
     31                </p>
    3032            </div>
    3133        </div>
     
    3335        <div id="tax-collapsible" class="in collapse<?=($isReceiptEnabled) ? ' show' : ''; ?>">
    3436
    35             <h6 class="qa-title"><?= __('Выберите ваш статус:', 'yookassa'); ?></h6>
    36 
    37             <div class="row">
    38                 <div class="col-sm-4 col-md-4 col-lg-3 form-group">
    39                     <div class="custom-control custom-switch-radio qa-enable-self-employed-control">
    40                         <label for="yookassa_legal_entity" data-target="yookassa_legal_entity">
    41                             <input <?= (!$isSelfEmployed) ? ' checked' : ''; ?> type="radio" id="yookassa_legal_entity" name="yookassa_self_employed" value="0">
    42                             <span><?= __('ИП или юрлицо', 'yookassa'); ?></span>
    43                         </label>
    44                         <label for="yookassa_self_employed" data-target="yookassa_self_employed">
    45                             <input <?= ($isSelfEmployed) ? ' checked' : ''; ?> type="radio" id="yookassa_self_employed" name="yookassa_self_employed" value="1">
    46                             <span><?= __('Самозанятый', 'yookassa'); ?></span>
    47                         </label>
    48                     </div>
    49                 </div>
    50             </div>
    51 
    52 
    53             <div class="content yookassa_self_employed in collapse <?= ($isSelfEmployed) ? 'show' : ''; ?>">
    54                 <div><strong><?= __('Чтобы платёж прошёл и чек отправился:', 'yookassa');?></strong></div>
    55                 <ul>
    56                     <li>
    57                         <?= __('В нём должно быть не больше 6 позиций. Позиции — это разные наименования, а не экземпляры одного и того же товара.', 'yookassa');?>
    58                     </li>
    59                     <li>
    60                         <?= __('Количество должно выражаться целым числом, дробные использовать нельзя. Например, 1.5 — не пройдёт, а 2 — пройдёт.', 'yookassa');?>
    61                     </li>
    62                     <li>
    63                         <?= __('Цена каждой позиции должна быть больше 0 ₽ — иначе платёж не пройдёт. Если доставка бесплатная — она автоматически удалится из чека.', 'yookassa');?>
    64                     </li>
    65                 </ul>
    66             </div>
    67 
    68             <div class="content yookassa_legal_entity in collapse <?= (!$isSelfEmployed) ? 'show' : ''; ?>">
     37            <div class="content yookassa_legal_entity in collapse show">
    6938                <div class="row">
    7039                    <div class="col-md-12">
     
    9362                                <div class="qa-vat-control">
    9463                                    <p class="help-block text-muted"><?= __('Выберите ставку, которая будет в чеке, если в карточке товара не указана другая ставка.', 'yookassa'); ?></p>
    95                                     <?php $selected20 = get_option('yookassa_default_tax_rate') == '4'; ?>
    96                                     <?php $selected120 = get_option('yookassa_default_tax_rate') == '6'; ?>
    9764                                    <select id="yookassa_default_tax_rate" name="yookassa_default_tax_rate" class="form-control yookassa_tax_rate_select">
    9865                                        <?php foreach ($ymTaxRatesEnum as $taxId => $taxName) : ?>
     
    12491                                            <?php
    12592                                                $selected = isset($ymTaxes[$wcTax->tax_rate_id]) ? $ymTaxes[$wcTax->tax_rate_id] : null;
    126                                                 if ($selected == '4') { $selected20 = true; }
    127                                                 if ($selected == '6') { $selected120 = true; }
    12893                                            ?>
    12994                                            <select id="yookassa_tax_rate[<?= $wcTax->tax_rate_id ?>]" name="yookassa_tax_rate[<?= $wcTax->tax_rate_id ?>]" class="form-control qa-control yookassa_tax_rate_select">
     
    140105                    </div>
    141106                    <div class="col-md-5 col-md-offset-2 help-side ">
    142                         <div id="if-nds-20" class="info-block very-important" style="display: <?= $selected20 || $selected120 ? 'block' : 'none' ?>">
    143                             <span class="dashicons dashicons-info" aria-hidden="true"></span>
    144                             <span class="qa-info-text"><?= __('С 1 января для соответствия 54-ФЗ ставку НДС и расчётную ставку нужно изменить с 20% и 20/120 на 22% и 22/122 — новые платежи будут проходить по ним. Если не поменять, возможны вопросы и штрафы от ФНС, а операции придётся исправлять вручную.', 'yookassa'); ?></span>
    145                         </div>
    146107                    </div>
    147108                </div>
  • yookassa/trunk/assets/js/yookassa-admin.js

    r3426839 r3443263  
    265265    }
    266266
    267     $(document).on('change', '.yookassa_sbbol_tax_rate_select', function() {
    268         const infoSbbol20 = $('#if-sbbol-nds-20');
    269         const hasSelected20 = $('.yookassa_sbbol_tax_rate_select').filter(function() {return $(this).val() === '20';}).length > 0;
    270 
    271         infoSbbol20.toggle(hasSelected20);
    272     });
    273 
    274     $(document).on('change', '.yookassa_tax_rate_select', function() {
    275         const infoTaxRate20 = $('#if-nds-20');
    276         const taxRateSelects = $('.yookassa_tax_rate_select');
    277         const hasSelected20 = taxRateSelects.filter(function() {return $(this).val() === '4';}).length > 0;
    278         const hasSelected120 = taxRateSelects.filter(function() {return $(this).val() === '6';}).length > 0;
    279 
    280         infoTaxRate20.toggle(hasSelected20||hasSelected120);
    281     });
    282 
    283267    $(document).on('click', '#yookassa_marking_enabled', function() {
    284268        updateReceiptSection();
  • yookassa/trunk/gateway/YooKassaGateway.php

    r3403472 r3443263  
    162162        $this->addReceiptAttribute('yookassa_payment_subject', __('Признак предмета расчета', 'yookassa'), $paymentSubjectEnum);
    163163        $this->addReceiptAttribute('yookassa_payment_mode', __('Признак способа расчёта', 'yookassa'), $paymentModeEnum);
     164
     165        $isSelfEmployed = (bool)get_option('yookassa_self_employed', '0');
     166
     167        if ($isSelfEmployed) {
     168            update_option('yookassa_self_employed', '0');
     169            update_option('yookassa_enable_receipt', '0');
     170        }
    164171    }
    165172
     
    363370        $order = new WC_Order($order_id);
    364371
    365         if (YooKassaHandler::isReceiptEnabled() && YooKassaHandler::isSelfEmployed()) {
    366             try {
    367                 YooKassaHandler::checkConditionForSelfEmployed($order);
    368             } catch (Exception $e) {
    369                 YooKassaLogger::warning(sprintf(__('Не удалось создать платеж. Для заказа %1$s', 'yookassa'), $order_id) . ' ' . strip_tags($e->getMessage()));
    370                 YooKassaNotice::front_notice_error($e->getMessage());
    371                 return array('result' => 'failure', 'redirect' => '');
    372             }
    373         }
    374 
    375372        try {
    376373            $this->prepareSubscription();
  • yookassa/trunk/gateway/YooKassaGatewayB2bSberbank.php

    r3371789 r3443263  
    8585    {
    8686        YooKassaLogger::sendHeka(array('payment.create.init'));
     87        YooKassaHandler::replaceOldTaxRates();
    8788        $paymentData = new PaymentDataB2bSberbank();
    8889        $order_total = YooKassaOrderHelper::getTotal($order);
  • yookassa/trunk/includes/YooKassa.php

    r3426839 r3443263  
    5555    {
    5656        $this->plugin_name = 'yookassa';
    57         $this->version     = '2.13.2';
     57        $this->version     = '2.14.0';
    5858        self::$pluginUrl   = plugin_dir_url(dirname(__FILE__));
    5959        self::$pluginPath  = plugin_dir_path(dirname(__FILE__));
  • yookassa/trunk/includes/YooKassaFileCache.php

    r3371789 r3443263  
    3131
    3232        if ($files) {
    33             $handle = fopen($files[0], 'r');
     33            $handle = fopen($files[0], 'rb');
    3434
    3535            flock($handle, LOCK_SH);
     
    5353        $file = $this->getCacheDir() . preg_replace('/[^A-Z0-9\._-]/i', '', $key) . '.' . (time() + $this->expire);
    5454
    55         $handle = fopen($file, 'w');
     55        $handle = fopen($file, 'wb');
    5656
    5757        flock($handle, LOCK_EX);
  • yookassa/trunk/includes/YooKassaHandler.php

    r3371789 r3443263  
    22
    33use YooKassa\Client;
     4use YooKassa\Model\PaymentData\B2b\Sberbank\VatDataRate;
    45use YooKassa\Model\PaymentInterface;
    56use YooKassa\Model\PaymentMethodType;
     
    5758        }
    5859        YooKassaLogger::sendHeka(array('receipt.create.init'));
     60        self::replaceOldTaxRates();
    5961        if ($order->get_billing_email()) {
    6062            $builder->setReceiptEmail($order->get_billing_email());
     
    7375            }
    7476
    75             if (self::isSelfEmployed()) {
    76                 $builder->addReceiptItem(
    77                     $item['name'],
    78                     $amount->getValue(),
    79                     $item->get_quantity(),
    80                     self::VAT_CODE_1
    81                 );
    82             }
    83 
    84             if (self::isLegalEntity()) {
    85                 $builder->addReceiptItem(
    86                     $item['name'],
    87                     $amount->getValue(),
    88                     $item->get_quantity(),
    89                     self::getYmTaxRate($item->get_taxes()),
    90                     self::getPaymentMode($item),
    91                     self::getPaymentSubject($item)
    92                 );
    93             }
     77            $builder->addReceiptItem(
     78                $item['name'],
     79                $amount->getValue(),
     80                $item->get_quantity(),
     81                self::getYmTaxRate($item->get_taxes()),
     82                self::getPaymentMode($item),
     83                self::getPaymentSubject($item)
     84            );
    9485        }
    9586
     
    327318    }
    328319
     320    public static function replaceOldTaxRates()
     321    {
     322        $defaultTaxRate = get_option('yookassa_default_tax_rate');
     323        if ($defaultTaxRate === '4') {
     324            update_option('yookassa_default_tax_rate', '11');
     325        }
     326        if ($defaultTaxRate === '6') {
     327            update_option('yookassa_default_tax_rate', '12');
     328        }
     329        $sbbolDefaultTaxRate    = get_option('yookassa_sbbol_default_tax_rate');
     330        if ($sbbolDefaultTaxRate === VatDataRate::RATE_20) {
     331            update_option('yookassa_sbbol_default_tax_rate', VatDataRate::RATE_22);
     332        }
     333        $ymTaxes = get_option('yookassa_tax_rate');
     334        if (in_array('4', $ymTaxes, true) || in_array('6', $ymTaxes, true)) {
     335            $ymTaxes = array_map(static function($a) {
     336                $mappings = array('4' => '11', '6' => '12');
     337                return isset($mappings[$a]) ? $mappings[$a] : $a;
     338            }, $ymTaxes);
     339            update_option('yookassa_tax_rate', $ymTaxes);
     340        }
     341        $sbbolTaxRates = get_option('yookassa_sbbol_tax_rate');
     342        if (in_array('20', $sbbolTaxRates, true)) {
     343            $sbbolTaxRates = array_map(static function($a) {
     344                return $a === '20' ? '22' : $a;
     345            }, $sbbolTaxRates);
     346            update_option('yookassa_sbbol_tax_rate', $sbbolTaxRates);
     347        }
     348    }
     349
    329350    /**
    330351     * @param $taxes
  • yookassa/trunk/languages/yookassa-en.po

    r3426839 r3443263  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: ЮKassa для WooCommerce 2.13.2\n"
     5"Project-Id-Version: ЮKassa для WooCommerce 2.14.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yookassa\n"
    7 "POT-Creation-Date: 2025-12-17 13:24+0300\n"
    8 "PO-Revision-Date: 2025-12-17 15:43+0300\n"
     7"POT-Creation-Date: 2026-01-20 14:55+0300\n"
     8"PO-Revision-Date: 2026-01-20 15:04+0300\n"
    99"Last-Translator: yoomoney <cms@yoomoney.ru>\n"
    1010"Language-Team: yoomoney <cms@yoomoney.ru>\n"
     
    194194
    195195#: admin/partials/tabs/oauth_form.php:60 admin/partials/tabs/section1.php:57
    196 #: admin/partials/tabs/section2.php:181 admin/partials/tabs/section3.php:165
    197 #: admin/partials/tabs/section4.php:263 admin/partials/tabs/section5.php:45
     196#: admin/partials/tabs/section2.php:177 admin/partials/tabs/section3.php:165
     197#: admin/partials/tabs/section4.php:224 admin/partials/tabs/section5.php:45
    198198msgid "Сохранить и продолжить"
    199199msgstr "Save & continue"
     
    382382"that it will not work."
    383383
    384 #: admin/partials/tabs/section2.php:172
    385 msgid ""
    386 "Чтобы соответствовать закону 54-ФЗ, 1 января ставку 20% нужно будет поменять "
    387 "на 22% — новые платежи будут проходить по ней. Если не поменять, возможны "
    388 "вопросы и штрафы от ФНС, а операции придётся исправлять вручную"
    389 msgstr ""
    390 "In order to comply with the Federal Law No. 54-FZ, you must change rate 20% "
    391 "to 22% before January 1, so that it is applied to all new payments. If you "
    392 "don't change the rate, you might get questions and fines from the Federal "
    393 "Tax Service, and you will have to manually correct the transactions"
    394 
    395 #: admin/partials/tabs/section2.php:180 admin/partials/tabs/section3.php:164
    396 #: admin/partials/tabs/section4.php:262 admin/partials/tabs/section5.php:44
     384#: admin/partials/tabs/section2.php:176 admin/partials/tabs/section3.php:164
     385#: admin/partials/tabs/section4.php:223 admin/partials/tabs/section5.php:44
    397386msgid "Назад"
    398387msgstr "Back"
     
    482471msgstr "Download the log"
    483472
    484 #: admin/partials/tabs/section4.php:27
     473#: admin/partials/tabs/section4.php:26
    485474msgid "Автоматическая отправка чеков"
    486475msgstr "Send receipts automatically"
    487476
    488 #: admin/partials/tabs/section4.php:35
    489 msgid "Выберите ваш статус:"
    490 msgstr "Select your status:"
    491 
    492 #: admin/partials/tabs/section4.php:42
    493 msgid "ИП или юрлицо"
    494 msgstr "Sole proprietor or legal entity"
    495 
    496 #: admin/partials/tabs/section4.php:46
    497 msgid "Самозанятый"
    498 msgstr "Self-employed"
    499 
    500 #: admin/partials/tabs/section4.php:54
    501 msgid "Чтобы платёж прошёл и чек отправился:"
    502 msgstr "In order for a payment to go through and for the receipt to get sent:"
    503 
    504 #: admin/partials/tabs/section4.php:57
    505 msgid ""
    506 "В нём должно быть не больше 6 позиций. Позиции — это разные наименования, а "
    507 "не экземпляры одного и того же товара."
    508 msgstr ""
    509 "It must have up to 6 items. Items refer to the number of different products, "
    510 "not the quantity of the same product."
    511 
    512 #: admin/partials/tabs/section4.php:60
    513 msgid ""
    514 "Количество должно выражаться целым числом, дробные использовать нельзя. "
    515 "Например, 1.5 — не пройдёт, а 2 — пройдёт."
    516 msgstr ""
    517 "The quantity must be a whole number, decimals are not supported. For "
    518 "example, 2 is going to work, while 1.5 isn't."
    519 
    520 #: admin/partials/tabs/section4.php:63
    521 msgid ""
    522 "Цена каждой позиции должна быть больше 0 ₽ — иначе платёж не пройдёт. Если "
    523 "доставка бесплатная — она автоматически удалится из чека."
    524 msgstr ""
    525 "The price of each item must be greater than 0 ₽, otherwise, the payment "
    526 "won't go through. If the delivery is free, it'll be removed from the receipt "
    527 "automatically."
    528 
    529 #: admin/partials/tabs/section4.php:71
     477#: admin/partials/tabs/section4.php:30
     478msgid ""
     479"Автоотправка доступна только ИП и юрлицам. Самозанятым нужно формировать "
     480"чеки вручную — через сервис «Мой налог»"
     481msgstr ""
     482"The option to submit receipts automatically is only available to sole "
     483"proprietors and companies. Self-employed individuals must generate receipts "
     484"manually via the Moi Nalog service."
     485
     486#: admin/partials/tabs/section4.php:40
    530487msgid "Налоги"
    531488msgstr "Taxes"
    532489
    533 #: admin/partials/tabs/section4.php:76
     490#: admin/partials/tabs/section4.php:45
    534491msgid "Система налогообложения по умолчанию"
    535492msgstr "Default tax system"
    536493
    537 #: admin/partials/tabs/section4.php:78
     494#: admin/partials/tabs/section4.php:47
    538495msgid ""
    539496"Выберите систему налогообложения по умолчанию. Параметр необходим, только "
     
    544501"several tax systems, otherwise it is not passed."
    545502
    546 #: admin/partials/tabs/section4.php:92
     503#: admin/partials/tabs/section4.php:61
    547504msgid "Ставка НДС по умолчанию"
    548505msgstr "Default rate"
    549506
    550 #: admin/partials/tabs/section4.php:94
     507#: admin/partials/tabs/section4.php:63
    551508msgid ""
    552509"Выберите ставку, которая будет в чеке, если в карточке товара не указана "
     
    555512"The default rate applies if another rate is not set on the product's page."
    556513
    557 #: admin/partials/tabs/section4.php:109
     514#: admin/partials/tabs/section4.php:76
    558515msgid "Сопоставьте ставки"
    559516msgstr "Compare rates"
    560517
    561 #: admin/partials/tabs/section4.php:114
     518#: admin/partials/tabs/section4.php:81
    562519msgid "Ставка в вашем магазине"
    563520msgstr "Rate at your store"
    564521
    565 #: admin/partials/tabs/section4.php:117
     522#: admin/partials/tabs/section4.php:84
    566523msgid "Ставка для чека в налоговую"
    567524msgstr "Rate for the receipt to the tax service"
    568525
    569 #: admin/partials/tabs/section4.php:144
    570 msgid ""
    571 "С 1 января для соответствия 54-ФЗ ставку НДС и расчётную ставку нужно "
    572 "изменить с 20% и 20/120 на 22% и 22/122 — новые платежи будут проходить по "
    573 "ним. Если не поменять, возможны вопросы и штрафы от ФНС, а операции придётся "
    574 "исправлять вручную."
    575 msgstr ""
    576 "In order to comply with the Federal Law No. 54-FZ, the VAT rate and estimate "
    577 "rate will be changed from 20% and 20/120 to 22% and 22/122 starting from "
    578 "January 1, and the new rates will be applied to all new payments. If you "
    579 "don't change the rates, you might get questions and fines from the Federal "
    580 "Tax Service, and you will have to manually correct the transactions."
    581 
    582 #: admin/partials/tabs/section4.php:153
     526#: admin/partials/tabs/section4.php:114
    583527msgid "54-ФЗ"
    584528msgstr "54-FZ"
    585529
    586 #: admin/partials/tabs/section4.php:158
     530#: admin/partials/tabs/section4.php:119
    587531msgid "Предмет расчёта и способ расчёта"
    588532msgstr "Subject of calculation and method of calculation"
    589533
    590 #: admin/partials/tabs/section4.php:159
     534#: admin/partials/tabs/section4.php:120
    591535msgid ""
    592536"Выберите значения, которые будут передаваться по умолчанию. Эти признаки "
     
    596540"up for each item separately - in the item card."
    597541
    598 #: admin/partials/tabs/section4.php:165
     542#: admin/partials/tabs/section4.php:126
    599543msgid "Предмет расчёта"
    600544msgstr "Subject of calculation"
    601545
    602 #: admin/partials/tabs/section4.php:174
     546#: admin/partials/tabs/section4.php:135
    603547msgid "Способ расчёта"
    604548msgstr "Method of calculation"
    605549
    606 #: admin/partials/tabs/section4.php:186
     550#: admin/partials/tabs/section4.php:147
    607551msgid "Предмет расчёта для доставки"
    608552msgstr "Subject of calculation for delivery"
    609553
    610 #: admin/partials/tabs/section4.php:195
     554#: admin/partials/tabs/section4.php:156
    611555msgid "Способ расчёта для доставки"
    612556msgstr "Payment method for delivery"
    613557
    614 #: admin/partials/tabs/section4.php:212
     558#: admin/partials/tabs/section4.php:173
    615559msgid "Указывать маркировку товара"
    616560msgstr "Specify product labeling"
    617561
    618 #: admin/partials/tabs/section4.php:216
     562#: admin/partials/tabs/section4.php:177
    619563msgid ""
    620564"Актуальный список товарных категорий, которые нужно маркировать, можно "
     
    626570"a> website."
    627571
    628 #: admin/partials/tabs/section4.php:228
     572#: admin/partials/tabs/section4.php:189
    629573msgid "Формировать второй чек"
    630574msgstr "To form the second check"
    631575
    632 #: admin/partials/tabs/section4.php:237
     576#: admin/partials/tabs/section4.php:198
    633577msgid "При переходе заказа в статус"
    634578msgstr "When the order goes to the status"
    635579
    636 #: admin/partials/tabs/section4.php:245
     580#: admin/partials/tabs/section4.php:206
    637581msgid ""
    638582"Если в заказе будут позиции с признаками «Полная предоплата» — второй чек "
     
    643587"status."
    644588
    645 #: admin/partials/tabs/section4.php:249
     589#: admin/partials/tabs/section4.php:210
    646590msgid "Второй чек"
    647591msgstr "Second check"
    648592
    649 #: admin/partials/tabs/section4.php:250
     593#: admin/partials/tabs/section4.php:211
    650594msgid ""
    651595"Два чека нужно формировать, если покупатель вносит предоплату и потом "
     
    657601"to your account, the second — when shipping goods or performing services."
    658602
    659 #: admin/partials/tabs/section4.php:251
     603#: admin/partials/tabs/section4.php:212
    660604msgid "Читать про второй чек в ЮKassa &gt;"
    661605msgstr "Read about the second check in YooKassa &gt;"
     
    701645msgstr "YooKassa settings"
    702646
    703 #: admin/YooKassaAdmin.php:220
     647#: admin/YooKassaAdmin.php:219
    704648msgid "Без НДС"
    705649msgstr "Tax free"
    706650
    707 #: admin/YooKassaAdmin.php:232
     651#: admin/YooKassaAdmin.php:230
    708652msgid "Не облагается"
    709653msgstr "Tax free"
    710654
    711 #: admin/YooKassaAdmin.php:239
     655#: admin/YooKassaAdmin.php:236
    712656msgid "Расчетная ставка 5/105"
    713657msgstr "Tax rate 5/105"
    714658
    715 #: admin/YooKassaAdmin.php:240
     659#: admin/YooKassaAdmin.php:237
    716660msgid "Расчетная ставка 7/107"
    717661msgstr "Tax rate 7/107"
    718662
    719 #: admin/YooKassaAdmin.php:241
     663#: admin/YooKassaAdmin.php:238
    720664msgid "Расчетная ставка 10/110"
    721665msgstr "Tax rate 10/110"
    722666
    723 #: admin/YooKassaAdmin.php:242
    724 msgid "Расчетная ставка 20/120"
    725 msgstr "Tax rate 20/120"
    726 
    727 #: admin/YooKassaAdmin.php:243
     667#: admin/YooKassaAdmin.php:239
    728668msgid "Расчетная ставка 22/122"
    729669msgstr "Tax rate 22/122"
    730670
    731 #: admin/YooKassaAdmin.php:250
     671#: admin/YooKassaAdmin.php:246
    732672msgid "Общая система налогообложения"
    733673msgstr "General tax system"
    734674
    735 #: admin/YooKassaAdmin.php:251
     675#: admin/YooKassaAdmin.php:247
    736676msgid "Упрощенная (УСН, доходы)"
    737677msgstr "Simplified (STS, income)"
    738678
    739 #: admin/YooKassaAdmin.php:252
     679#: admin/YooKassaAdmin.php:248
    740680msgid "Упрощенная (УСН, доходы минус расходы)"
    741681msgstr "Simplified (STS, income with costs deducted)"
    742682
    743 #: admin/YooKassaAdmin.php:253
     683#: admin/YooKassaAdmin.php:249
    744684msgid "Единый налог на вмененный доход (ЕНВД)"
    745685msgstr "Unified tax on imputed income (ENVD)"
    746686
    747 #: admin/YooKassaAdmin.php:254
     687#: admin/YooKassaAdmin.php:250
    748688msgid "Единый сельскохозяйственный налог (ЕСН)"
    749689msgstr "Unified agricultural tax (ESN)"
    750690
    751 #: admin/YooKassaAdmin.php:255
     691#: admin/YooKassaAdmin.php:251
    752692msgid "Патентная система налогообложения"
    753693msgstr "Patent Based Tax System"
    754694
    755 #: admin/YooKassaAdmin.php:272 admin/YooKassaAdmin.php:285
    756 #: gateway/YooKassaGateway.php:589 gateway/YooKassaGatewayB2bSberbank.php:175
     695#: admin/YooKassaAdmin.php:269 admin/YooKassaAdmin.php:282
     696#: gateway/YooKassaGateway.php:586 gateway/YooKassaGatewayB2bSberbank.php:176
    757697#, php-format
    758698msgid "Оплата заказа №%order_number%"
    759699msgstr "Payment for order No. %order_number%"
    760700
    761 #: admin/YooKassaAdmin.php:317
     701#: admin/YooKassaAdmin.php:313
    762702msgid "Товар"
    763703msgstr "Commodity"
    764704
    765 #: admin/YooKassaAdmin.php:318
     705#: admin/YooKassaAdmin.php:314
    766706msgid "Подакцизный товар"
    767707msgstr "Excisable commodity"
    768708
    769 #: admin/YooKassaAdmin.php:319
     709#: admin/YooKassaAdmin.php:315
    770710msgid "Работа"
    771711msgstr "Job"
    772712
    773 #: admin/YooKassaAdmin.php:320
     713#: admin/YooKassaAdmin.php:316
    774714msgid "Услуга"
    775715msgstr "Service"
    776716
    777 #: admin/YooKassaAdmin.php:321
     717#: admin/YooKassaAdmin.php:317
    778718msgid "Ставка в азартной игре"
    779719msgstr "Bet in a gambling game"
    780720
    781 #: admin/YooKassaAdmin.php:322
     721#: admin/YooKassaAdmin.php:318
    782722msgid "Выигрыш в азартной игре"
    783723msgstr "The gambling winnings"
    784724
    785 #: admin/YooKassaAdmin.php:323
     725#: admin/YooKassaAdmin.php:319
    786726msgid "Лотерейный билет"
    787727msgstr "Lottery ticket"
    788728
    789 #: admin/YooKassaAdmin.php:324
     729#: admin/YooKassaAdmin.php:320
    790730msgid "Выигрыш в лотерею"
    791731msgstr "Winning the lottery"
    792732
    793 #: admin/YooKassaAdmin.php:325
     733#: admin/YooKassaAdmin.php:321
    794734msgid "Результаты интеллектуальной деятельности"
    795735msgstr "Results of intellectual activity"
    796736
    797 #: admin/YooKassaAdmin.php:326
     737#: admin/YooKassaAdmin.php:322
    798738msgid "Платеж"
    799739msgstr "Payment"
    800740
    801 #: admin/YooKassaAdmin.php:327
     741#: admin/YooKassaAdmin.php:323
    802742msgid "Агентское вознаграждение"
    803743msgstr "Agent's commission"
    804744
    805 #: admin/YooKassaAdmin.php:328
     745#: admin/YooKassaAdmin.php:324
    806746msgid "Несколько вариантов"
    807747msgstr "Several options"
    808748
    809 #: admin/YooKassaAdmin.php:329 admin/YooKassaMarkingProduct.php:402
     749#: admin/YooKassaAdmin.php:325 admin/YooKassaMarkingProduct.php:402
    810750msgid "Другое"
    811751msgstr "Another"
    812752
    813 #: admin/YooKassaAdmin.php:333
     753#: admin/YooKassaAdmin.php:329
    814754msgid "Полная предоплата"
    815755msgstr "Full prepayment"
    816756
    817 #: admin/YooKassaAdmin.php:334
     757#: admin/YooKassaAdmin.php:330
    818758msgid "Частичная предоплата"
    819759msgstr "Partial prepayment"
    820760
    821 #: admin/YooKassaAdmin.php:335
     761#: admin/YooKassaAdmin.php:331
    822762msgid "Аванс"
    823763msgstr "Advance payment"
    824764
    825 #: admin/YooKassaAdmin.php:336
     765#: admin/YooKassaAdmin.php:332
    826766msgid "Полный расчет"
    827767msgstr "Full payment"
    828768
    829 #: admin/YooKassaAdmin.php:337
     769#: admin/YooKassaAdmin.php:333
    830770msgid "Частичный расчет и кредит"
    831771msgstr "Partial payment and credit"
    832772
    833 #: admin/YooKassaAdmin.php:338
     773#: admin/YooKassaAdmin.php:334
    834774msgid "Кредит"
    835775msgstr "Credit"
    836776
    837 #: admin/YooKassaAdmin.php:339
     777#: admin/YooKassaAdmin.php:335
    838778msgid "Выплата по кредиту"
    839779msgstr "Payment on the loan"
     
    11631103msgstr "Payment method"
    11641104
    1165 #: gateway/YooKassaGateway.php:170
     1105#: gateway/YooKassaGateway.php:177
    11661106msgid "Включить/Выключить"
    11671107msgstr "Enable/Disable"
    11681108
    1169 #: gateway/YooKassaGateway.php:176
     1109#: gateway/YooKassaGateway.php:183
    11701110msgid "Заголовок"
    11711111msgstr "Header"
    11721112
    1173 #: gateway/YooKassaGateway.php:178
     1113#: gateway/YooKassaGateway.php:185
    11741114msgid "Название, которое пользователь видит во время оплаты"
    11751115msgstr "The header that the user will see during checkout"
    11761116
    1177 #: gateway/YooKassaGateway.php:182
     1117#: gateway/YooKassaGateway.php:189
    11781118msgid "Описание"
    11791119msgstr "Description"
    11801120
    1181 #: gateway/YooKassaGateway.php:184
     1121#: gateway/YooKassaGateway.php:191
    11821122msgid "Описание, которое пользователь видит во время оплаты"
    11831123msgstr "The description that the user will see during checkout"
    11841124
    1185 #: gateway/YooKassaGateway.php:192
     1125#: gateway/YooKassaGateway.php:199
    11861126msgid ""
    11871127"Для работы с модулем необходимо <a href=\"https://yoomoney.ru/joinups/"
     
    11911131"href=\"https://yookassa.ru/en//\">connect your store to YooKassa</a>."
    11921132
    1193 #: gateway/YooKassaGateway.php:225
     1133#: gateway/YooKassaGateway.php:232
    11941134#, php-format
    11951135msgid ""
     
    12001140"%2$s."
    12011141
     1142#: gateway/YooKassaGateway.php:382 gateway/YooKassaGateway.php:415
     1143#: gateway/YooKassaGateway.php:424 gateway/YooKassaWidgetGateway.php:240
     1144#: gateway/YooKassaWidgetGateway.php:269 gateway/YooKassaWidgetGateway.php:277
     1145msgid "Платеж не прошел. Попробуйте еще или выберите другой способ оплаты"
     1146msgstr "Payment wasn't processed. Try again or choose another payment method"
     1147
    12021148#. translators: %1$s - order_id
    1203 #: gateway/YooKassaGateway.php:369 gateway/YooKassaGateway.php:416
    1204 #: gateway/YooKassaGateway.php:425 gateway/YooKassaWidgetGateway.php:218
    1205 #: gateway/YooKassaWidgetGateway.php:268 gateway/YooKassaWidgetGateway.php:276
     1149#: gateway/YooKassaGateway.php:413 gateway/YooKassaGateway.php:422
     1150#: gateway/YooKassaWidgetGateway.php:218 gateway/YooKassaWidgetGateway.php:268
     1151#: gateway/YooKassaWidgetGateway.php:276
    12061152#, php-format
    12071153msgid "Не удалось создать платеж. Для заказа %1$s"
    12081154msgstr "Unable to make a payment. For order %1$s"
    12091155
    1210 #: gateway/YooKassaGateway.php:385 gateway/YooKassaGateway.php:418
    1211 #: gateway/YooKassaGateway.php:427 gateway/YooKassaWidgetGateway.php:240
    1212 #: gateway/YooKassaWidgetGateway.php:269 gateway/YooKassaWidgetGateway.php:277
    1213 msgid "Платеж не прошел. Попробуйте еще или выберите другой способ оплаты"
    1214 msgstr "Payment wasn't processed. Try again or choose another payment method"
    1215 
    1216 #: gateway/YooKassaGateway.php:690
     1156#: gateway/YooKassaGateway.php:687
    12171157msgid "Тестовое списание для привязки карты, средства будут возвращены."
    12181158msgstr "Test payment to link the card, money will be refunded."
     
    12871227#: includes/WC_Payment_Token_SBP.php:11
    12881228msgid "Система быстрых платежей"
    1289 msgstr "Quick payment system"
     1229msgstr "Faster Payments System (SBP)"
    12901230
    12911231#: includes/WC_Payment_Token_YooKassa.php:15 includes/YooKassaPayment.php:685
     
    12931233msgstr "YooMoney"
    12941234
    1295 #: includes/YooKassaHandler.php:103 includes/YooKassaHandler.php:113
     1235#: includes/YooKassaHandler.php:94 includes/YooKassaHandler.php:104
    12961236msgid "Доставка"
    12971237msgstr "Shipping"
    12981238
    1299 #: includes/YooKassaHandler.php:219
     1239#: includes/YooKassaHandler.php:210
    13001240#, php-format
    13011241msgid "Успешный платеж. Id заказа - %1$s. Данные платежа - %2$s."
    13021242msgstr "Payment successful. Order Id - %1$s. Payment information - %2$s."
    13031243
    1304 #: includes/YooKassaHandler.php:225
     1244#: includes/YooKassaHandler.php:216
    13051245#, php-format
    13061246msgid "Номер транзакции в ЮKassa: %1$s. Сумма: %2$s"
    13071247msgstr "Transaction number in YooKassa: %1$s. Amount: %2$s"
    13081248
    1309 #: includes/YooKassaHandler.php:242
     1249#: includes/YooKassaHandler.php:233
    13101250#, php-format
    13111251msgid "Успешная подписка. Id заказа - %1$s. Данные платежа - %2$s."
    13121252msgstr "Subscribe successful. Order Id - %1$s. Payment information - %2$s."
    13131253
    1314 #: includes/YooKassaHandler.php:255
     1254#: includes/YooKassaHandler.php:246
    13151255#, php-format
    13161256msgid "Неуспешный платеж. Id заказа - %1$s. Данные платежа - %2$s."
    13171257msgstr "Payment unsuccessful. Order Id - %1$s. Payment information - %2$s."
    13181258
    1319 #: includes/YooKassaHandler.php:268
     1259#: includes/YooKassaHandler.php:259
    13201260#, php-format
    13211261msgid "Платеж в ожидании оплаты. Id заказа - %1$s. Данные платежа - %2$s."
    13221262msgstr "Payment pending payment. Order Id - %1$s. Payment details - %2$s."
    13231263
    1324 #: includes/YooKassaHandler.php:281
     1264#: includes/YooKassaHandler.php:272
    13251265#, php-format
    13261266msgid "Платеж ждет подтверждения. Id заказа - %1$s. Данные платежа - %2$s."
     
    13281268"Payment is waiting for confirmation. Order Id - %1$s. Payment details - %2$s."
    13291269
    1330 #: includes/YooKassaHandler.php:286
     1270#: includes/YooKassaHandler.php:277
    13311271#, php-format
    13321272msgid ""
     
    13371277"automatically cancels"
    13381278
    1339 #: includes/YooKassaHandler.php:297
     1279#: includes/YooKassaHandler.php:288
    13401280#, php-format
    13411281msgid "Статус заказа. %1$s"
    13421282msgstr "Order status. %1$s"
    13431283
    1344 #: includes/YooKassaHandler.php:310
     1284#: includes/YooKassaHandler.php:301
    13451285msgid ""
    13461286"<b>Нельзя добавить больше 6 разных позиций </b><br>Такое ограничение для "
     
    13521292"cart: you can add the rest of them in a new order."
    13531293
    1354 #: includes/YooKassaHandler.php:317
     1294#: includes/YooKassaHandler.php:308
    13551295msgid ""
    13561296"<b>Нельзя добавить позицию с дробным количеством </b><br>Только с целым. "
     
    13611301"the order."
    13621302
    1363 #: includes/YooKassaHandler.php:323
     1303#: includes/YooKassaHandler.php:314
    13641304msgid ""
    13651305"<b>Не получается создать чек </b><br>Цена позиции должна быть больше 0 ₽. "
     
    14151355"a> plugin to be active!"
    14161356
    1417 #~ msgid "ЮKassa"
    1418 #~ msgstr "YooMoney"
     1357#~ msgid ""
     1358#~ "Чтобы соответствовать закону 54-ФЗ, 1 января ставку 20% нужно будет "
     1359#~ "поменять на 22% — новые платежи будут проходить по ней. Если не поменять, "
     1360#~ "возможны вопросы и штрафы от ФНС, а операции придётся исправлять вручную"
     1361#~ msgstr ""
     1362#~ "In order to comply with the Federal Law No. 54-FZ, you must change rate "
     1363#~ "20% to 22% before January 1, so that it is applied to all new payments. "
     1364#~ "If you don't change the rate, you might get questions and fines from the "
     1365#~ "Federal Tax Service, and you will have to manually correct the "
     1366#~ "transactions"
     1367
     1368#~ msgid ""
     1369#~ "С 1 января для соответствия 54-ФЗ ставку НДС и расчётную ставку нужно "
     1370#~ "изменить с 20% и 20/120 на 22% и 22/122 — новые платежи будут проходить "
     1371#~ "по ним. Если не поменять, возможны вопросы и штрафы от ФНС, а операции "
     1372#~ "придётся исправлять вручную."
     1373#~ msgstr ""
     1374#~ "In order to comply with the Federal Law No. 54-FZ, the VAT rate and "
     1375#~ "estimate rate will be changed from 20% and 20/120 to 22% and 22/122 "
     1376#~ "starting from January 1, and the new rates will be applied to all new "
     1377#~ "payments. If you don't change the rates, you might get questions and "
     1378#~ "fines from the Federal Tax Service, and you will have to manually correct "
     1379#~ "the transactions."
     1380
     1381#~ msgid "Расчетная ставка 20/120"
     1382#~ msgstr "Tax rate 20/120"
  • yookassa/trunk/languages/yookassa-en_GB.po

    r3426839 r3443263  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: ЮKassa для WooCommerce 2.13.2\n"
     5"Project-Id-Version: ЮKassa для WooCommerce 2.14.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yookassa\n"
    7 "POT-Creation-Date: 2025-12-17 13:24+0300\n"
    8 "PO-Revision-Date: 2025-12-17 15:45+0300\n"
     7"POT-Creation-Date: 2026-01-20 14:55+0300\n"
     8"PO-Revision-Date: 2026-01-20 15:06+0300\n"
    99"Last-Translator: yoomoney <cms@yoomoney.ru>\n"
    1010"Language-Team: yoomoney <cms@yoomoney.ru>\n"
     
    194194
    195195#: admin/partials/tabs/oauth_form.php:60 admin/partials/tabs/section1.php:57
    196 #: admin/partials/tabs/section2.php:181 admin/partials/tabs/section3.php:165
    197 #: admin/partials/tabs/section4.php:263 admin/partials/tabs/section5.php:45
     196#: admin/partials/tabs/section2.php:177 admin/partials/tabs/section3.php:165
     197#: admin/partials/tabs/section4.php:224 admin/partials/tabs/section5.php:45
    198198msgid "Сохранить и продолжить"
    199199msgstr "Save & continue"
     
    382382"that it will not work."
    383383
    384 #: admin/partials/tabs/section2.php:172
    385 msgid ""
    386 "Чтобы соответствовать закону 54-ФЗ, 1 января ставку 20% нужно будет поменять "
    387 "на 22% — новые платежи будут проходить по ней. Если не поменять, возможны "
    388 "вопросы и штрафы от ФНС, а операции придётся исправлять вручную"
    389 msgstr ""
    390 "In order to comply with the Federal Law No. 54-FZ, you must change the 20% "
    391 "rate to 22% before January 1, so that it is applied to all new payments. If "
    392 "you don't change the rate, you might get questions and fines from the "
    393 "Federal Tax Service, and you will have to manually correct the transactions"
    394 
    395 #: admin/partials/tabs/section2.php:180 admin/partials/tabs/section3.php:164
    396 #: admin/partials/tabs/section4.php:262 admin/partials/tabs/section5.php:44
     384#: admin/partials/tabs/section2.php:176 admin/partials/tabs/section3.php:164
     385#: admin/partials/tabs/section4.php:223 admin/partials/tabs/section5.php:44
    397386msgid "Назад"
    398387msgstr "Back"
     
    482471msgstr "Download the log"
    483472
    484 #: admin/partials/tabs/section4.php:27
     473#: admin/partials/tabs/section4.php:26
    485474msgid "Автоматическая отправка чеков"
    486475msgstr "Send receipts automatically"
    487476
    488 #: admin/partials/tabs/section4.php:35
    489 msgid "Выберите ваш статус:"
    490 msgstr "Select your status:"
    491 
    492 #: admin/partials/tabs/section4.php:42
    493 msgid "ИП или юрлицо"
    494 msgstr "Sole proprietor or legal entity"
    495 
    496 #: admin/partials/tabs/section4.php:46
    497 msgid "Самозанятый"
    498 msgstr "Self-employed"
    499 
    500 #: admin/partials/tabs/section4.php:54
    501 msgid "Чтобы платёж прошёл и чек отправился:"
    502 msgstr "In order for a payment to go through and for the receipt to get sent:"
    503 
    504 #: admin/partials/tabs/section4.php:57
    505 msgid ""
    506 "В нём должно быть не больше 6 позиций. Позиции — это разные наименования, а "
    507 "не экземпляры одного и того же товара."
    508 msgstr ""
    509 "It must have up to 6 items. Items refer to the number of different products, "
    510 "not the quantity of the same product."
    511 
    512 #: admin/partials/tabs/section4.php:60
    513 msgid ""
    514 "Количество должно выражаться целым числом, дробные использовать нельзя. "
    515 "Например, 1.5 — не пройдёт, а 2 — пройдёт."
    516 msgstr ""
    517 "The quantity must be a whole number, decimals are not supported. For "
    518 "example, 2 is going to work, while 1.5 isn't."
    519 
    520 #: admin/partials/tabs/section4.php:63
    521 msgid ""
    522 "Цена каждой позиции должна быть больше 0 ₽ — иначе платёж не пройдёт. Если "
    523 "доставка бесплатная — она автоматически удалится из чека."
    524 msgstr ""
    525 "The price of each item must be greater than 0 ₽, otherwise, the payment "
    526 "won't go through. If the delivery is free, it'll be removed from the receipt "
    527 "automatically."
    528 
    529 #: admin/partials/tabs/section4.php:71
     477#: admin/partials/tabs/section4.php:30
     478msgid ""
     479"Автоотправка доступна только ИП и юрлицам. Самозанятым нужно формировать "
     480"чеки вручную — через сервис «Мой налог»"
     481msgstr ""
     482"The option to submit receipts automatically is only available to sole "
     483"proprietors and companies. Self-employed individuals must generate receipts "
     484"manually via the Moi Nalog service."
     485
     486#: admin/partials/tabs/section4.php:40
    530487msgid "Налоги"
    531488msgstr "Taxes"
    532489
    533 #: admin/partials/tabs/section4.php:76
     490#: admin/partials/tabs/section4.php:45
    534491msgid "Система налогообложения по умолчанию"
    535492msgstr "Default tax system"
    536493
    537 #: admin/partials/tabs/section4.php:78
     494#: admin/partials/tabs/section4.php:47
    538495msgid ""
    539496"Выберите систему налогообложения по умолчанию. Параметр необходим, только "
     
    544501"several tax systems, otherwise it is not passed."
    545502
    546 #: admin/partials/tabs/section4.php:92
     503#: admin/partials/tabs/section4.php:61
    547504msgid "Ставка НДС по умолчанию"
    548505msgstr "Default rate"
    549506
    550 #: admin/partials/tabs/section4.php:94
     507#: admin/partials/tabs/section4.php:63
    551508msgid ""
    552509"Выберите ставку, которая будет в чеке, если в карточке товара не указана "
     
    555512"The default rate applies if another rate is not set on the product's page."
    556513
    557 #: admin/partials/tabs/section4.php:109
     514#: admin/partials/tabs/section4.php:76
    558515msgid "Сопоставьте ставки"
    559516msgstr "Compare rates"
    560517
    561 #: admin/partials/tabs/section4.php:114
     518#: admin/partials/tabs/section4.php:81
    562519msgid "Ставка в вашем магазине"
    563520msgstr "Rate at your store"
    564521
    565 #: admin/partials/tabs/section4.php:117
     522#: admin/partials/tabs/section4.php:84
    566523msgid "Ставка для чека в налоговую"
    567524msgstr "Rate for the receipt to the tax service"
    568525
    569 #: admin/partials/tabs/section4.php:144
    570 msgid ""
    571 "С 1 января для соответствия 54-ФЗ ставку НДС и расчётную ставку нужно "
    572 "изменить с 20% и 20/120 на 22% и 22/122 — новые платежи будут проходить по "
    573 "ним. Если не поменять, возможны вопросы и штрафы от ФНС, а операции придётся "
    574 "исправлять вручную."
    575 msgstr ""
    576 "In order to comply with the Federal Law No. 54-FZ, the VAT rate and estimate "
    577 "rate will be changed from 20% and 20/120 to 22% and 22/122 starting from "
    578 "January 1, and the new rates will be applied to all new payments. If you "
    579 "don't change the rates, you might get questions and fines from the Federal "
    580 "Tax Service, and you will have to manually correct the transactions."
    581 
    582 #: admin/partials/tabs/section4.php:153
     526#: admin/partials/tabs/section4.php:114
    583527msgid "54-ФЗ"
    584528msgstr "54-FZ"
    585529
    586 #: admin/partials/tabs/section4.php:158
     530#: admin/partials/tabs/section4.php:119
    587531msgid "Предмет расчёта и способ расчёта"
    588532msgstr "Subject of calculation and method of calculation"
    589533
    590 #: admin/partials/tabs/section4.php:159
     534#: admin/partials/tabs/section4.php:120
    591535msgid ""
    592536"Выберите значения, которые будут передаваться по умолчанию. Эти признаки "
     
    596540"up for each item separately - in the item card."
    597541
    598 #: admin/partials/tabs/section4.php:165
     542#: admin/partials/tabs/section4.php:126
    599543msgid "Предмет расчёта"
    600544msgstr "Subject of calculation"
    601545
    602 #: admin/partials/tabs/section4.php:174
     546#: admin/partials/tabs/section4.php:135
    603547msgid "Способ расчёта"
    604548msgstr "Method of calculation"
    605549
    606 #: admin/partials/tabs/section4.php:186
     550#: admin/partials/tabs/section4.php:147
    607551msgid "Предмет расчёта для доставки"
    608552msgstr "Subject of calculation for delivery"
    609553
    610 #: admin/partials/tabs/section4.php:195
     554#: admin/partials/tabs/section4.php:156
    611555msgid "Способ расчёта для доставки"
    612556msgstr "Payment method for delivery"
    613557
    614 #: admin/partials/tabs/section4.php:212
     558#: admin/partials/tabs/section4.php:173
    615559msgid "Указывать маркировку товара"
    616560msgstr "Specify product labeling"
    617561
    618 #: admin/partials/tabs/section4.php:216
     562#: admin/partials/tabs/section4.php:177
    619563msgid ""
    620564"Актуальный список товарных категорий, которые нужно маркировать, можно "
     
    626570"a> website."
    627571
    628 #: admin/partials/tabs/section4.php:228
     572#: admin/partials/tabs/section4.php:189
    629573msgid "Формировать второй чек"
    630574msgstr "To form the second check"
    631575
    632 #: admin/partials/tabs/section4.php:237
     576#: admin/partials/tabs/section4.php:198
    633577msgid "При переходе заказа в статус"
    634578msgstr "When the order goes to the status"
    635579
    636 #: admin/partials/tabs/section4.php:245
     580#: admin/partials/tabs/section4.php:206
    637581msgid ""
    638582"Если в заказе будут позиции с признаками «Полная предоплата» — второй чек "
     
    643587"status."
    644588
    645 #: admin/partials/tabs/section4.php:249
     589#: admin/partials/tabs/section4.php:210
    646590msgid "Второй чек"
    647591msgstr "Second check"
    648592
    649 #: admin/partials/tabs/section4.php:250
     593#: admin/partials/tabs/section4.php:211
    650594msgid ""
    651595"Два чека нужно формировать, если покупатель вносит предоплату и потом "
     
    657601"to your account, the second — when shipping goods or performing services."
    658602
    659 #: admin/partials/tabs/section4.php:251
     603#: admin/partials/tabs/section4.php:212
    660604msgid "Читать про второй чек в ЮKassa &gt;"
    661605msgstr "Read about the second check in YooKassa &gt;"
     
    701645msgstr "YooKassa settings"
    702646
    703 #: admin/YooKassaAdmin.php:220
     647#: admin/YooKassaAdmin.php:219
    704648msgid "Без НДС"
    705649msgstr "Tax free"
    706650
    707 #: admin/YooKassaAdmin.php:232
     651#: admin/YooKassaAdmin.php:230
    708652msgid "Не облагается"
    709653msgstr "Tax free"
    710654
    711 #: admin/YooKassaAdmin.php:239
     655#: admin/YooKassaAdmin.php:236
    712656msgid "Расчетная ставка 5/105"
    713657msgstr "Tax rate 5/105"
    714658
    715 #: admin/YooKassaAdmin.php:240
     659#: admin/YooKassaAdmin.php:237
    716660msgid "Расчетная ставка 7/107"
    717661msgstr "Tax rate 7/107"
    718662
    719 #: admin/YooKassaAdmin.php:241
     663#: admin/YooKassaAdmin.php:238
    720664msgid "Расчетная ставка 10/110"
    721665msgstr "Tax rate 10/110"
    722666
    723 #: admin/YooKassaAdmin.php:242
    724 msgid "Расчетная ставка 20/120"
    725 msgstr "Tax rate 20/120"
    726 
    727 #: admin/YooKassaAdmin.php:243
     667#: admin/YooKassaAdmin.php:239
    728668msgid "Расчетная ставка 22/122"
    729669msgstr "Tax rate 22/122"
    730670
    731 #: admin/YooKassaAdmin.php:250
     671#: admin/YooKassaAdmin.php:246
    732672msgid "Общая система налогообложения"
    733673msgstr "General tax system"
    734674
    735 #: admin/YooKassaAdmin.php:251
     675#: admin/YooKassaAdmin.php:247
    736676msgid "Упрощенная (УСН, доходы)"
    737677msgstr "Simplified (STS, income)"
    738678
    739 #: admin/YooKassaAdmin.php:252
     679#: admin/YooKassaAdmin.php:248
    740680msgid "Упрощенная (УСН, доходы минус расходы)"
    741681msgstr "Simplified (STS, income with costs deducted)"
    742682
    743 #: admin/YooKassaAdmin.php:253
     683#: admin/YooKassaAdmin.php:249
    744684msgid "Единый налог на вмененный доход (ЕНВД)"
    745685msgstr "Unified tax on imputed income (ENVD)"
    746686
    747 #: admin/YooKassaAdmin.php:254
     687#: admin/YooKassaAdmin.php:250
    748688msgid "Единый сельскохозяйственный налог (ЕСН)"
    749689msgstr "Unified agricultural tax (ESN)"
    750690
    751 #: admin/YooKassaAdmin.php:255
     691#: admin/YooKassaAdmin.php:251
    752692msgid "Патентная система налогообложения"
    753693msgstr "Patent Based Tax System"
    754694
    755 #: admin/YooKassaAdmin.php:272 admin/YooKassaAdmin.php:285
    756 #: gateway/YooKassaGateway.php:589 gateway/YooKassaGatewayB2bSberbank.php:175
     695#: admin/YooKassaAdmin.php:269 admin/YooKassaAdmin.php:282
     696#: gateway/YooKassaGateway.php:586 gateway/YooKassaGatewayB2bSberbank.php:176
    757697#, php-format
    758698msgid "Оплата заказа №%order_number%"
    759699msgstr "Payment for order No. %order_number%"
    760700
    761 #: admin/YooKassaAdmin.php:317
     701#: admin/YooKassaAdmin.php:313
    762702msgid "Товар"
    763703msgstr "Commodity"
    764704
    765 #: admin/YooKassaAdmin.php:318
     705#: admin/YooKassaAdmin.php:314
    766706msgid "Подакцизный товар"
    767707msgstr "Excisable commodity"
    768708
    769 #: admin/YooKassaAdmin.php:319
     709#: admin/YooKassaAdmin.php:315
    770710msgid "Работа"
    771711msgstr "Job"
    772712
    773 #: admin/YooKassaAdmin.php:320
     713#: admin/YooKassaAdmin.php:316
    774714msgid "Услуга"
    775715msgstr "Service"
    776716
    777 #: admin/YooKassaAdmin.php:321
     717#: admin/YooKassaAdmin.php:317
    778718msgid "Ставка в азартной игре"
    779719msgstr "Bet in a gambling game"
    780720
    781 #: admin/YooKassaAdmin.php:322
     721#: admin/YooKassaAdmin.php:318
    782722msgid "Выигрыш в азартной игре"
    783723msgstr "The gambling winnings"
    784724
    785 #: admin/YooKassaAdmin.php:323
     725#: admin/YooKassaAdmin.php:319
    786726msgid "Лотерейный билет"
    787727msgstr "Lottery ticket"
    788728
    789 #: admin/YooKassaAdmin.php:324
     729#: admin/YooKassaAdmin.php:320
    790730msgid "Выигрыш в лотерею"
    791731msgstr "Winning the lottery"
    792732
    793 #: admin/YooKassaAdmin.php:325
     733#: admin/YooKassaAdmin.php:321
    794734msgid "Результаты интеллектуальной деятельности"
    795735msgstr "Results of intellectual activity"
    796736
    797 #: admin/YooKassaAdmin.php:326
     737#: admin/YooKassaAdmin.php:322
    798738msgid "Платеж"
    799739msgstr "Payment"
    800740
    801 #: admin/YooKassaAdmin.php:327
     741#: admin/YooKassaAdmin.php:323
    802742msgid "Агентское вознаграждение"
    803743msgstr "Agent's commission"
    804744
    805 #: admin/YooKassaAdmin.php:328
     745#: admin/YooKassaAdmin.php:324
    806746msgid "Несколько вариантов"
    807747msgstr "Several options"
    808748
    809 #: admin/YooKassaAdmin.php:329 admin/YooKassaMarkingProduct.php:402
     749#: admin/YooKassaAdmin.php:325 admin/YooKassaMarkingProduct.php:402
    810750msgid "Другое"
    811751msgstr "Another"
    812752
    813 #: admin/YooKassaAdmin.php:333
     753#: admin/YooKassaAdmin.php:329
    814754msgid "Полная предоплата"
    815755msgstr "Full prepayment"
    816756
    817 #: admin/YooKassaAdmin.php:334
     757#: admin/YooKassaAdmin.php:330
    818758msgid "Частичная предоплата"
    819759msgstr "Partial prepayment"
    820760
    821 #: admin/YooKassaAdmin.php:335
     761#: admin/YooKassaAdmin.php:331
    822762msgid "Аванс"
    823763msgstr "Advance payment"
    824764
    825 #: admin/YooKassaAdmin.php:336
     765#: admin/YooKassaAdmin.php:332
    826766msgid "Полный расчет"
    827767msgstr "Full payment"
    828768
    829 #: admin/YooKassaAdmin.php:337
     769#: admin/YooKassaAdmin.php:333
    830770msgid "Частичный расчет и кредит"
    831771msgstr "Partial payment and credit"
    832772
    833 #: admin/YooKassaAdmin.php:338
     773#: admin/YooKassaAdmin.php:334
    834774msgid "Кредит"
    835775msgstr "Credit"
    836776
    837 #: admin/YooKassaAdmin.php:339
     777#: admin/YooKassaAdmin.php:335
    838778msgid "Выплата по кредиту"
    839779msgstr "Payment on the loan"
     
    11631103msgstr "Payment method"
    11641104
    1165 #: gateway/YooKassaGateway.php:170
     1105#: gateway/YooKassaGateway.php:177
    11661106msgid "Включить/Выключить"
    11671107msgstr "Enable/Disable"
    11681108
    1169 #: gateway/YooKassaGateway.php:176
     1109#: gateway/YooKassaGateway.php:183
    11701110msgid "Заголовок"
    11711111msgstr "Header"
    11721112
    1173 #: gateway/YooKassaGateway.php:178
     1113#: gateway/YooKassaGateway.php:185
    11741114msgid "Название, которое пользователь видит во время оплаты"
    11751115msgstr "The header that the user will see during checkout"
    11761116
    1177 #: gateway/YooKassaGateway.php:182
     1117#: gateway/YooKassaGateway.php:189
    11781118msgid "Описание"
    11791119msgstr "Description"
    11801120
    1181 #: gateway/YooKassaGateway.php:184
     1121#: gateway/YooKassaGateway.php:191
    11821122msgid "Описание, которое пользователь видит во время оплаты"
    11831123msgstr "The description that the user will see during checkout"
    11841124
    1185 #: gateway/YooKassaGateway.php:192
     1125#: gateway/YooKassaGateway.php:199
    11861126msgid ""
    11871127"Для работы с модулем необходимо <a href=\"https://yoomoney.ru/joinups/"
     
    11911131"href=\"https://yookassa.ru/en//\">connect your store to YooKassa</a>."
    11921132
    1193 #: gateway/YooKassaGateway.php:225
     1133#: gateway/YooKassaGateway.php:232
    11941134#, php-format
    11951135msgid ""
     
    12001140"%2$s."
    12011141
     1142#: gateway/YooKassaGateway.php:382 gateway/YooKassaGateway.php:415
     1143#: gateway/YooKassaGateway.php:424 gateway/YooKassaWidgetGateway.php:240
     1144#: gateway/YooKassaWidgetGateway.php:269 gateway/YooKassaWidgetGateway.php:277
     1145msgid "Платеж не прошел. Попробуйте еще или выберите другой способ оплаты"
     1146msgstr "Payment wasn't processed. Try again or choose another payment method"
     1147
    12021148#. translators: %1$s - order_id
    1203 #: gateway/YooKassaGateway.php:369 gateway/YooKassaGateway.php:416
    1204 #: gateway/YooKassaGateway.php:425 gateway/YooKassaWidgetGateway.php:218
    1205 #: gateway/YooKassaWidgetGateway.php:268 gateway/YooKassaWidgetGateway.php:276
     1149#: gateway/YooKassaGateway.php:413 gateway/YooKassaGateway.php:422
     1150#: gateway/YooKassaWidgetGateway.php:218 gateway/YooKassaWidgetGateway.php:268
     1151#: gateway/YooKassaWidgetGateway.php:276
    12061152#, php-format
    12071153msgid "Не удалось создать платеж. Для заказа %1$s"
    12081154msgstr "Unable to make a payment. For order %1$s"
    12091155
    1210 #: gateway/YooKassaGateway.php:385 gateway/YooKassaGateway.php:418
    1211 #: gateway/YooKassaGateway.php:427 gateway/YooKassaWidgetGateway.php:240
    1212 #: gateway/YooKassaWidgetGateway.php:269 gateway/YooKassaWidgetGateway.php:277
    1213 msgid "Платеж не прошел. Попробуйте еще или выберите другой способ оплаты"
    1214 msgstr "Payment wasn't processed. Try again or choose another payment method"
    1215 
    1216 #: gateway/YooKassaGateway.php:690
     1156#: gateway/YooKassaGateway.php:687
    12171157msgid "Тестовое списание для привязки карты, средства будут возвращены."
    12181158msgstr "Test payment to link the card, money will be refunded."
     
    12871227#: includes/WC_Payment_Token_SBP.php:11
    12881228msgid "Система быстрых платежей"
    1289 msgstr "Quick payment system"
     1229msgstr "Faster Payments System (SBP)"
    12901230
    12911231#: includes/WC_Payment_Token_YooKassa.php:15 includes/YooKassaPayment.php:685
     
    12931233msgstr "YooMoney"
    12941234
    1295 #: includes/YooKassaHandler.php:103 includes/YooKassaHandler.php:113
     1235#: includes/YooKassaHandler.php:94 includes/YooKassaHandler.php:104
    12961236msgid "Доставка"
    12971237msgstr "Shipping"
    12981238
    1299 #: includes/YooKassaHandler.php:219
     1239#: includes/YooKassaHandler.php:210
    13001240#, php-format
    13011241msgid "Успешный платеж. Id заказа - %1$s. Данные платежа - %2$s."
    13021242msgstr "Payment successful. Order Id - %1$s. Payment information - %2$s."
    13031243
    1304 #: includes/YooKassaHandler.php:225
     1244#: includes/YooKassaHandler.php:216
    13051245#, php-format
    13061246msgid "Номер транзакции в ЮKassa: %1$s. Сумма: %2$s"
    13071247msgstr "Transaction number in YooKassa: %1$s. Amount: %2$s"
    13081248
    1309 #: includes/YooKassaHandler.php:242
     1249#: includes/YooKassaHandler.php:233
    13101250#, php-format
    13111251msgid "Успешная подписка. Id заказа - %1$s. Данные платежа - %2$s."
    13121252msgstr "Subscribe successful. Order Id - %1$s. Payment information - %2$s."
    13131253
    1314 #: includes/YooKassaHandler.php:255
     1254#: includes/YooKassaHandler.php:246
    13151255#, php-format
    13161256msgid "Неуспешный платеж. Id заказа - %1$s. Данные платежа - %2$s."
    13171257msgstr "Payment unsuccessful. Order Id - %1$s. Payment information - %2$s."
    13181258
    1319 #: includes/YooKassaHandler.php:268
     1259#: includes/YooKassaHandler.php:259
    13201260#, php-format
    13211261msgid "Платеж в ожидании оплаты. Id заказа - %1$s. Данные платежа - %2$s."
    13221262msgstr "Payment pending payment. Order Id - %1$s. Payment details - %2$s."
    13231263
    1324 #: includes/YooKassaHandler.php:281
     1264#: includes/YooKassaHandler.php:272
    13251265#, php-format
    13261266msgid "Платеж ждет подтверждения. Id заказа - %1$s. Данные платежа - %2$s."
     
    13281268"Payment is waiting for confirmation. Order Id - %1$s. Payment details - %2$s."
    13291269
    1330 #: includes/YooKassaHandler.php:286
     1270#: includes/YooKassaHandler.php:277
    13311271#, php-format
    13321272msgid ""
     
    13371277"automatically cancels"
    13381278
    1339 #: includes/YooKassaHandler.php:297
     1279#: includes/YooKassaHandler.php:288
    13401280#, php-format
    13411281msgid "Статус заказа. %1$s"
    13421282msgstr "Order status. %1$s"
    13431283
    1344 #: includes/YooKassaHandler.php:310
     1284#: includes/YooKassaHandler.php:301
    13451285msgid ""
    13461286"<b>Нельзя добавить больше 6 разных позиций </b><br>Такое ограничение для "
     
    13521292"cart: you can add the rest of them in a new order."
    13531293
    1354 #: includes/YooKassaHandler.php:317
     1294#: includes/YooKassaHandler.php:308
    13551295msgid ""
    13561296"<b>Нельзя добавить позицию с дробным количеством </b><br>Только с целым. "
     
    13611301"the order."
    13621302
    1363 #: includes/YooKassaHandler.php:323
     1303#: includes/YooKassaHandler.php:314
    13641304msgid ""
    13651305"<b>Не получается создать чек </b><br>Цена позиции должна быть больше 0 ₽. "
     
    14151355"a> plugin to be active!"
    14161356
    1417 #~ msgid "ЮKassa"
    1418 #~ msgstr "YooMoney"
     1357#~ msgid ""
     1358#~ "Чтобы соответствовать закону 54-ФЗ, 1 января ставку 20% нужно будет "
     1359#~ "поменять на 22% — новые платежи будут проходить по ней. Если не поменять, "
     1360#~ "возможны вопросы и штрафы от ФНС, а операции придётся исправлять вручную"
     1361#~ msgstr ""
     1362#~ "In order to comply with the Federal Law No. 54-FZ, you must change the "
     1363#~ "20% rate to 22% before January 1, so that it is applied to all new "
     1364#~ "payments. If you don't change the rate, you might get questions and fines "
     1365#~ "from the Federal Tax Service, and you will have to manually correct the "
     1366#~ "transactions"
     1367
     1368#~ msgid ""
     1369#~ "С 1 января для соответствия 54-ФЗ ставку НДС и расчётную ставку нужно "
     1370#~ "изменить с 20% и 20/120 на 22% и 22/122 — новые платежи будут проходить "
     1371#~ "по ним. Если не поменять, возможны вопросы и штрафы от ФНС, а операции "
     1372#~ "придётся исправлять вручную."
     1373#~ msgstr ""
     1374#~ "In order to comply with the Federal Law No. 54-FZ, the VAT rate and "
     1375#~ "estimate rate will be changed from 20% and 20/120 to 22% and 22/122 "
     1376#~ "starting from January 1, and the new rates will be applied to all new "
     1377#~ "payments. If you don't change the rates, you might get questions and "
     1378#~ "fines from the Federal Tax Service, and you will have to manually correct "
     1379#~ "the transactions."
     1380
     1381#~ msgid "Расчетная ставка 20/120"
     1382#~ msgstr "Tax rate 20/120"
  • yookassa/trunk/languages/yookassa-en_US.po

    r3426839 r3443263  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: ЮKassa для WooCommerce 2.13.2\n"
     5"Project-Id-Version: ЮKassa для WooCommerce 2.14.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yookassa\n"
    7 "POT-Creation-Date: 2025-12-17 13:24+0300\n"
    8 "PO-Revision-Date: 2025-12-17 15:46+0300\n"
     7"POT-Creation-Date: 2026-01-20 14:55+0300\n"
     8"PO-Revision-Date: 2026-01-20 15:05+0300\n"
    99"Last-Translator: yoomoney <cms@yoomoney.ru>\n"
    1010"Language-Team: yoomoney <cms@yoomoney.ru>\n"
     
    194194
    195195#: admin/partials/tabs/oauth_form.php:60 admin/partials/tabs/section1.php:57
    196 #: admin/partials/tabs/section2.php:181 admin/partials/tabs/section3.php:165
    197 #: admin/partials/tabs/section4.php:263 admin/partials/tabs/section5.php:45
     196#: admin/partials/tabs/section2.php:177 admin/partials/tabs/section3.php:165
     197#: admin/partials/tabs/section4.php:224 admin/partials/tabs/section5.php:45
    198198msgid "Сохранить и продолжить"
    199199msgstr "Save & continue"
     
    382382"that it will not work."
    383383
    384 #: admin/partials/tabs/section2.php:172
    385 msgid ""
    386 "Чтобы соответствовать закону 54-ФЗ, 1 января ставку 20% нужно будет поменять "
    387 "на 22% — новые платежи будут проходить по ней. Если не поменять, возможны "
    388 "вопросы и штрафы от ФНС, а операции придётся исправлять вручную"
    389 msgstr ""
    390 "In order to comply with the Federal Law No. 54-FZ, you must change the 20% "
    391 "rate to 22% before January 1, so that it is applied to all new payments. If "
    392 "you don't change the rate, you might get questions and fines from the "
    393 "Federal Tax Service, and you will have to manually correct the transactions"
    394 
    395 #: admin/partials/tabs/section2.php:180 admin/partials/tabs/section3.php:164
    396 #: admin/partials/tabs/section4.php:262 admin/partials/tabs/section5.php:44
     384#: admin/partials/tabs/section2.php:176 admin/partials/tabs/section3.php:164
     385#: admin/partials/tabs/section4.php:223 admin/partials/tabs/section5.php:44
    397386msgid "Назад"
    398387msgstr "Back"
     
    482471msgstr "Download the log"
    483472
    484 #: admin/partials/tabs/section4.php:27
     473#: admin/partials/tabs/section4.php:26
    485474msgid "Автоматическая отправка чеков"
    486475msgstr "Send receipts automatically"
    487476
    488 #: admin/partials/tabs/section4.php:35
    489 msgid "Выберите ваш статус:"
    490 msgstr "Select your status:"
    491 
    492 #: admin/partials/tabs/section4.php:42
    493 msgid "ИП или юрлицо"
    494 msgstr "Sole proprietor or legal entity"
    495 
    496 #: admin/partials/tabs/section4.php:46
    497 msgid "Самозанятый"
    498 msgstr "Self-employed"
    499 
    500 #: admin/partials/tabs/section4.php:54
    501 msgid "Чтобы платёж прошёл и чек отправился:"
    502 msgstr "In order for a payment to go through and for the receipt to get sent:"
    503 
    504 #: admin/partials/tabs/section4.php:57
    505 msgid ""
    506 "В нём должно быть не больше 6 позиций. Позиции — это разные наименования, а "
    507 "не экземпляры одного и того же товара."
    508 msgstr ""
    509 "It must have up to 6 items. Items refer to the number of different products, "
    510 "not the quantity of the same product."
    511 
    512 #: admin/partials/tabs/section4.php:60
    513 msgid ""
    514 "Количество должно выражаться целым числом, дробные использовать нельзя. "
    515 "Например, 1.5 — не пройдёт, а 2 — пройдёт."
    516 msgstr ""
    517 "The quantity must be a whole number, decimals are not supported. For "
    518 "example, 2 is going to work, while 1.5 isn't."
    519 
    520 #: admin/partials/tabs/section4.php:63
    521 msgid ""
    522 "Цена каждой позиции должна быть больше 0 ₽ — иначе платёж не пройдёт. Если "
    523 "доставка бесплатная — она автоматически удалится из чека."
    524 msgstr ""
    525 "The price of each item must be greater than 0 ₽, otherwise, the payment "
    526 "won't go through. If the delivery is free, it'll be removed from the receipt "
    527 "automatically."
    528 
    529 #: admin/partials/tabs/section4.php:71
     477#: admin/partials/tabs/section4.php:30
     478msgid ""
     479"Автоотправка доступна только ИП и юрлицам. Самозанятым нужно формировать "
     480"чеки вручную — через сервис «Мой налог»"
     481msgstr ""
     482"The option to submit receipts automatically is only available to sole "
     483"proprietors and companies. Self-employed individuals must generate receipts "
     484"manually via the Moi Nalog service."
     485
     486#: admin/partials/tabs/section4.php:40
    530487msgid "Налоги"
    531488msgstr "Taxes"
    532489
    533 #: admin/partials/tabs/section4.php:76
     490#: admin/partials/tabs/section4.php:45
    534491msgid "Система налогообложения по умолчанию"
    535492msgstr "Default tax system"
    536493
    537 #: admin/partials/tabs/section4.php:78
     494#: admin/partials/tabs/section4.php:47
    538495msgid ""
    539496"Выберите систему налогообложения по умолчанию. Параметр необходим, только "
     
    544501"several tax systems, otherwise it is not passed."
    545502
    546 #: admin/partials/tabs/section4.php:92
     503#: admin/partials/tabs/section4.php:61
    547504msgid "Ставка НДС по умолчанию"
    548505msgstr "Default rate"
    549506
    550 #: admin/partials/tabs/section4.php:94
     507#: admin/partials/tabs/section4.php:63
    551508msgid ""
    552509"Выберите ставку, которая будет в чеке, если в карточке товара не указана "
     
    555512"The default rate applies if another rate is not set on the product's page."
    556513
    557 #: admin/partials/tabs/section4.php:109
     514#: admin/partials/tabs/section4.php:76
    558515msgid "Сопоставьте ставки"
    559516msgstr "Compare rates"
    560517
    561 #: admin/partials/tabs/section4.php:114
     518#: admin/partials/tabs/section4.php:81
    562519msgid "Ставка в вашем магазине"
    563520msgstr "Rate at your store"
    564521
    565 #: admin/partials/tabs/section4.php:117
     522#: admin/partials/tabs/section4.php:84
    566523msgid "Ставка для чека в налоговую"
    567524msgstr "Rate for the receipt to the tax service"
    568525
    569 #: admin/partials/tabs/section4.php:144
    570 msgid ""
    571 "С 1 января для соответствия 54-ФЗ ставку НДС и расчётную ставку нужно "
    572 "изменить с 20% и 20/120 на 22% и 22/122 — новые платежи будут проходить по "
    573 "ним. Если не поменять, возможны вопросы и штрафы от ФНС, а операции придётся "
    574 "исправлять вручную."
    575 msgstr ""
    576 "In order to comply with the Federal Law No. 54-FZ, the VAT rate and estimate "
    577 "rate will be changed from 20% and 20/120 to 22% and 22/122 starting from "
    578 "January 1, and the new rates will be applied to all new payments. If you "
    579 "don't change the rates, you might get questions and fines from the Federal "
    580 "Tax Service, and you will have to manually correct the transactions."
    581 
    582 #: admin/partials/tabs/section4.php:153
     526#: admin/partials/tabs/section4.php:114
    583527msgid "54-ФЗ"
    584528msgstr "54-FZ"
    585529
    586 #: admin/partials/tabs/section4.php:158
     530#: admin/partials/tabs/section4.php:119
    587531msgid "Предмет расчёта и способ расчёта"
    588532msgstr "Subject of calculation and method of calculation"
    589533
    590 #: admin/partials/tabs/section4.php:159
     534#: admin/partials/tabs/section4.php:120
    591535msgid ""
    592536"Выберите значения, которые будут передаваться по умолчанию. Эти признаки "
     
    596540"up for each item separately - in the item card."
    597541
    598 #: admin/partials/tabs/section4.php:165
     542#: admin/partials/tabs/section4.php:126
    599543msgid "Предмет расчёта"
    600544msgstr "Subject of calculation"
    601545
    602 #: admin/partials/tabs/section4.php:174
     546#: admin/partials/tabs/section4.php:135
    603547msgid "Способ расчёта"
    604548msgstr "Method of calculation"
    605549
    606 #: admin/partials/tabs/section4.php:186
     550#: admin/partials/tabs/section4.php:147
    607551msgid "Предмет расчёта для доставки"
    608552msgstr "Subject of calculation for delivery"
    609553
    610 #: admin/partials/tabs/section4.php:195
     554#: admin/partials/tabs/section4.php:156
    611555msgid "Способ расчёта для доставки"
    612556msgstr "Payment method for delivery"
    613557
    614 #: admin/partials/tabs/section4.php:212
     558#: admin/partials/tabs/section4.php:173
    615559msgid "Указывать маркировку товара"
    616560msgstr "Specify product labeling"
    617561
    618 #: admin/partials/tabs/section4.php:216
     562#: admin/partials/tabs/section4.php:177
    619563msgid ""
    620564"Актуальный список товарных категорий, которые нужно маркировать, можно "
     
    626570"a> website."
    627571
    628 #: admin/partials/tabs/section4.php:228
     572#: admin/partials/tabs/section4.php:189
    629573msgid "Формировать второй чек"
    630574msgstr "To form the second check"
    631575
    632 #: admin/partials/tabs/section4.php:237
     576#: admin/partials/tabs/section4.php:198
    633577msgid "При переходе заказа в статус"
    634578msgstr "When the order goes to the status"
    635579
    636 #: admin/partials/tabs/section4.php:245
     580#: admin/partials/tabs/section4.php:206
    637581msgid ""
    638582"Если в заказе будут позиции с признаками «Полная предоплата» — второй чек "
     
    643587"status."
    644588
    645 #: admin/partials/tabs/section4.php:249
     589#: admin/partials/tabs/section4.php:210
    646590msgid "Второй чек"
    647591msgstr "Second check"
    648592
    649 #: admin/partials/tabs/section4.php:250
     593#: admin/partials/tabs/section4.php:211
    650594msgid ""
    651595"Два чека нужно формировать, если покупатель вносит предоплату и потом "
     
    657601"to your account, the second — when shipping goods or performing services."
    658602
    659 #: admin/partials/tabs/section4.php:251
     603#: admin/partials/tabs/section4.php:212
    660604msgid "Читать про второй чек в ЮKassa &gt;"
    661605msgstr "Read about the second check in YooKassa &gt;"
     
    701645msgstr "YooKassa settings"
    702646
    703 #: admin/YooKassaAdmin.php:220
     647#: admin/YooKassaAdmin.php:219
    704648msgid "Без НДС"
    705649msgstr "Tax free"
    706650
    707 #: admin/YooKassaAdmin.php:232
     651#: admin/YooKassaAdmin.php:230
    708652msgid "Не облагается"
    709653msgstr "Tax free"
    710654
    711 #: admin/YooKassaAdmin.php:239
     655#: admin/YooKassaAdmin.php:236
    712656msgid "Расчетная ставка 5/105"
    713657msgstr "Tax rate 5/105"
    714658
    715 #: admin/YooKassaAdmin.php:240
     659#: admin/YooKassaAdmin.php:237
    716660msgid "Расчетная ставка 7/107"
    717661msgstr "Tax rate 7/107"
    718662
    719 #: admin/YooKassaAdmin.php:241
     663#: admin/YooKassaAdmin.php:238
    720664msgid "Расчетная ставка 10/110"
    721665msgstr "Tax rate 10/110"
    722666
    723 #: admin/YooKassaAdmin.php:242
    724 msgid "Расчетная ставка 20/120"
    725 msgstr "Tax rate 20/120"
    726 
    727 #: admin/YooKassaAdmin.php:243
     667#: admin/YooKassaAdmin.php:239
    728668#, fuzzy
    729669#| msgid "Расчетная ставка 20/120"
     
    731671msgstr "Tax rate 20/120"
    732672
    733 #: admin/YooKassaAdmin.php:250
     673#: admin/YooKassaAdmin.php:246
    734674msgid "Общая система налогообложения"
    735675msgstr "General tax system"
    736676
    737 #: admin/YooKassaAdmin.php:251
     677#: admin/YooKassaAdmin.php:247
    738678msgid "Упрощенная (УСН, доходы)"
    739679msgstr "Simplified (STS, income)"
    740680
    741 #: admin/YooKassaAdmin.php:252
     681#: admin/YooKassaAdmin.php:248
    742682msgid "Упрощенная (УСН, доходы минус расходы)"
    743683msgstr "Simplified (STS, income with costs deducted)"
    744684
    745 #: admin/YooKassaAdmin.php:253
     685#: admin/YooKassaAdmin.php:249
    746686msgid "Единый налог на вмененный доход (ЕНВД)"
    747687msgstr "Unified tax on imputed income (ENVD)"
    748688
    749 #: admin/YooKassaAdmin.php:254
     689#: admin/YooKassaAdmin.php:250
    750690msgid "Единый сельскохозяйственный налог (ЕСН)"
    751691msgstr "Unified agricultural tax (ESN)"
    752692
    753 #: admin/YooKassaAdmin.php:255
     693#: admin/YooKassaAdmin.php:251
    754694msgid "Патентная система налогообложения"
    755695msgstr "Patent Based Tax System"
    756696
    757 #: admin/YooKassaAdmin.php:272 admin/YooKassaAdmin.php:285
    758 #: gateway/YooKassaGateway.php:589 gateway/YooKassaGatewayB2bSberbank.php:175
     697#: admin/YooKassaAdmin.php:269 admin/YooKassaAdmin.php:282
     698#: gateway/YooKassaGateway.php:586 gateway/YooKassaGatewayB2bSberbank.php:176
    759699#, php-format
    760700msgid "Оплата заказа №%order_number%"
    761701msgstr "Payment for order No. %order_number%"
    762702
    763 #: admin/YooKassaAdmin.php:317
     703#: admin/YooKassaAdmin.php:313
    764704msgid "Товар"
    765705msgstr "Commodity"
    766706
    767 #: admin/YooKassaAdmin.php:318
     707#: admin/YooKassaAdmin.php:314
    768708msgid "Подакцизный товар"
    769709msgstr "Excisable commodity"
    770710
    771 #: admin/YooKassaAdmin.php:319
     711#: admin/YooKassaAdmin.php:315
    772712msgid "Работа"
    773713msgstr "Job"
    774714
    775 #: admin/YooKassaAdmin.php:320
     715#: admin/YooKassaAdmin.php:316
    776716msgid "Услуга"
    777717msgstr "Service"
    778718
    779 #: admin/YooKassaAdmin.php:321
     719#: admin/YooKassaAdmin.php:317
    780720msgid "Ставка в азартной игре"
    781721msgstr "Bet in a gambling game"
    782722
    783 #: admin/YooKassaAdmin.php:322
     723#: admin/YooKassaAdmin.php:318
    784724msgid "Выигрыш в азартной игре"
    785725msgstr "The gambling winnings"
    786726
    787 #: admin/YooKassaAdmin.php:323
     727#: admin/YooKassaAdmin.php:319
    788728msgid "Лотерейный билет"
    789729msgstr "Lottery ticket"
    790730
    791 #: admin/YooKassaAdmin.php:324
     731#: admin/YooKassaAdmin.php:320
    792732msgid "Выигрыш в лотерею"
    793733msgstr "Winning the lottery"
    794734
    795 #: admin/YooKassaAdmin.php:325
     735#: admin/YooKassaAdmin.php:321
    796736msgid "Результаты интеллектуальной деятельности"
    797737msgstr "Results of intellectual activity"
    798738
    799 #: admin/YooKassaAdmin.php:326
     739#: admin/YooKassaAdmin.php:322
    800740msgid "Платеж"
    801741msgstr "Payment"
    802742
    803 #: admin/YooKassaAdmin.php:327
     743#: admin/YooKassaAdmin.php:323
    804744msgid "Агентское вознаграждение"
    805745msgstr "Agent's commission"
    806746
    807 #: admin/YooKassaAdmin.php:328
     747#: admin/YooKassaAdmin.php:324
    808748msgid "Несколько вариантов"
    809749msgstr "Several options"
    810750
    811 #: admin/YooKassaAdmin.php:329 admin/YooKassaMarkingProduct.php:402
     751#: admin/YooKassaAdmin.php:325 admin/YooKassaMarkingProduct.php:402
    812752msgid "Другое"
    813753msgstr "Another"
    814754
    815 #: admin/YooKassaAdmin.php:333
     755#: admin/YooKassaAdmin.php:329
    816756msgid "Полная предоплата"
    817757msgstr "Full prepayment"
    818758
    819 #: admin/YooKassaAdmin.php:334
     759#: admin/YooKassaAdmin.php:330
    820760msgid "Частичная предоплата"
    821761msgstr "Partial prepayment"
    822762
    823 #: admin/YooKassaAdmin.php:335
     763#: admin/YooKassaAdmin.php:331
    824764msgid "Аванс"
    825765msgstr "Advance payment"
    826766
    827 #: admin/YooKassaAdmin.php:336
     767#: admin/YooKassaAdmin.php:332
    828768msgid "Полный расчет"
    829769msgstr "Full payment"
    830770
    831 #: admin/YooKassaAdmin.php:337
     771#: admin/YooKassaAdmin.php:333
    832772msgid "Частичный расчет и кредит"
    833773msgstr "Partial payment and credit"
    834774
    835 #: admin/YooKassaAdmin.php:338
     775#: admin/YooKassaAdmin.php:334
    836776msgid "Кредит"
    837777msgstr "Credit"
    838778
    839 #: admin/YooKassaAdmin.php:339
     779#: admin/YooKassaAdmin.php:335
    840780msgid "Выплата по кредиту"
    841781msgstr "Payment on the loan"
     
    11651105msgstr "Payment method"
    11661106
    1167 #: gateway/YooKassaGateway.php:170
     1107#: gateway/YooKassaGateway.php:177
    11681108msgid "Включить/Выключить"
    11691109msgstr "Enable/Disable"
    11701110
    1171 #: gateway/YooKassaGateway.php:176
     1111#: gateway/YooKassaGateway.php:183
    11721112msgid "Заголовок"
    11731113msgstr "Header"
    11741114
    1175 #: gateway/YooKassaGateway.php:178
     1115#: gateway/YooKassaGateway.php:185
    11761116msgid "Название, которое пользователь видит во время оплаты"
    11771117msgstr "The header that the user will see during checkout"
    11781118
    1179 #: gateway/YooKassaGateway.php:182
     1119#: gateway/YooKassaGateway.php:189
    11801120msgid "Описание"
    11811121msgstr "Description"
    11821122
    1183 #: gateway/YooKassaGateway.php:184
     1123#: gateway/YooKassaGateway.php:191
    11841124msgid "Описание, которое пользователь видит во время оплаты"
    11851125msgstr "The description that the user will see during checkout"
    11861126
    1187 #: gateway/YooKassaGateway.php:192
     1127#: gateway/YooKassaGateway.php:199
    11881128msgid ""
    11891129"Для работы с модулем необходимо <a href=\"https://yoomoney.ru/joinups/"
     
    11931133"href=\"https://yookassa.ru/en//\">connect your store to YooKassa</a>."
    11941134
    1195 #: gateway/YooKassaGateway.php:225
     1135#: gateway/YooKassaGateway.php:232
    11961136#, php-format
    11971137msgid ""
     
    12021142"%2$s."
    12031143
     1144#: gateway/YooKassaGateway.php:382 gateway/YooKassaGateway.php:415
     1145#: gateway/YooKassaGateway.php:424 gateway/YooKassaWidgetGateway.php:240
     1146#: gateway/YooKassaWidgetGateway.php:269 gateway/YooKassaWidgetGateway.php:277
     1147msgid "Платеж не прошел. Попробуйте еще или выберите другой способ оплаты"
     1148msgstr "Payment wasn't processed. Try again or choose another payment method"
     1149
    12041150#. translators: %1$s - order_id
    1205 #: gateway/YooKassaGateway.php:369 gateway/YooKassaGateway.php:416
    1206 #: gateway/YooKassaGateway.php:425 gateway/YooKassaWidgetGateway.php:218
    1207 #: gateway/YooKassaWidgetGateway.php:268 gateway/YooKassaWidgetGateway.php:276
     1151#: gateway/YooKassaGateway.php:413 gateway/YooKassaGateway.php:422
     1152#: gateway/YooKassaWidgetGateway.php:218 gateway/YooKassaWidgetGateway.php:268
     1153#: gateway/YooKassaWidgetGateway.php:276
    12081154#, php-format
    12091155msgid "Не удалось создать платеж. Для заказа %1$s"
    12101156msgstr "Unable to make a payment. For order %1$s"
    12111157
    1212 #: gateway/YooKassaGateway.php:385 gateway/YooKassaGateway.php:418
    1213 #: gateway/YooKassaGateway.php:427 gateway/YooKassaWidgetGateway.php:240
    1214 #: gateway/YooKassaWidgetGateway.php:269 gateway/YooKassaWidgetGateway.php:277
    1215 msgid "Платеж не прошел. Попробуйте еще или выберите другой способ оплаты"
    1216 msgstr "Payment wasn't processed. Try again or choose another payment method"
    1217 
    1218 #: gateway/YooKassaGateway.php:690
     1158#: gateway/YooKassaGateway.php:687
    12191159msgid "Тестовое списание для привязки карты, средства будут возвращены."
    12201160msgstr "Test payment to link the card, money will be refunded."
     
    12891229#: includes/WC_Payment_Token_SBP.php:11
    12901230msgid "Система быстрых платежей"
    1291 msgstr "Quick payment system"
     1231msgstr "Faster Payments System (SBP)"
    12921232
    12931233#: includes/WC_Payment_Token_YooKassa.php:15 includes/YooKassaPayment.php:685
     
    12951235msgstr "YooMoney"
    12961236
    1297 #: includes/YooKassaHandler.php:103 includes/YooKassaHandler.php:113
     1237#: includes/YooKassaHandler.php:94 includes/YooKassaHandler.php:104
    12981238msgid "Доставка"
    12991239msgstr "Shipping"
    13001240
    1301 #: includes/YooKassaHandler.php:219
     1241#: includes/YooKassaHandler.php:210
    13021242#, php-format
    13031243msgid "Успешный платеж. Id заказа - %1$s. Данные платежа - %2$s."
    13041244msgstr "Payment successful. Order Id - %1$s. Payment information - %2$s."
    13051245
    1306 #: includes/YooKassaHandler.php:225
     1246#: includes/YooKassaHandler.php:216
    13071247#, php-format
    13081248msgid "Номер транзакции в ЮKassa: %1$s. Сумма: %2$s"
    13091249msgstr "Transaction number in YooKassa: %1$s. Amount: %2$s"
    13101250
    1311 #: includes/YooKassaHandler.php:242
     1251#: includes/YooKassaHandler.php:233
    13121252#, php-format
    13131253msgid "Успешная подписка. Id заказа - %1$s. Данные платежа - %2$s."
    13141254msgstr "Subscribe successful. Order Id - %1$s. Payment information - %2$s."
    13151255
    1316 #: includes/YooKassaHandler.php:255
     1256#: includes/YooKassaHandler.php:246
    13171257#, php-format
    13181258msgid "Неуспешный платеж. Id заказа - %1$s. Данные платежа - %2$s."
    13191259msgstr "Payment unsuccessful. Order Id - %1$s. Payment information - %2$s."
    13201260
    1321 #: includes/YooKassaHandler.php:268
     1261#: includes/YooKassaHandler.php:259
    13221262#, php-format
    13231263msgid "Платеж в ожидании оплаты. Id заказа - %1$s. Данные платежа - %2$s."
    13241264msgstr "Payment pending payment. Order Id - %1$s. Payment details - %2$s."
    13251265
    1326 #: includes/YooKassaHandler.php:281
     1266#: includes/YooKassaHandler.php:272
    13271267#, php-format
    13281268msgid "Платеж ждет подтверждения. Id заказа - %1$s. Данные платежа - %2$s."
     
    13301270"Payment is waiting for confirmation. Order Id - %1$s. Payment details - %2$s."
    13311271
    1332 #: includes/YooKassaHandler.php:286
     1272#: includes/YooKassaHandler.php:277
    13331273#, php-format
    13341274msgid ""
     
    13391279"automatically cancels"
    13401280
    1341 #: includes/YooKassaHandler.php:297
     1281#: includes/YooKassaHandler.php:288
    13421282#, php-format
    13431283msgid "Статус заказа. %1$s"
    13441284msgstr "Order status. %1$s"
    13451285
    1346 #: includes/YooKassaHandler.php:310
     1286#: includes/YooKassaHandler.php:301
    13471287msgid ""
    13481288"<b>Нельзя добавить больше 6 разных позиций </b><br>Такое ограничение для "
     
    13541294"cart: you can add the rest of them in a new order."
    13551295
    1356 #: includes/YooKassaHandler.php:317
     1296#: includes/YooKassaHandler.php:308
    13571297msgid ""
    13581298"<b>Нельзя добавить позицию с дробным количеством </b><br>Только с целым. "
     
    13631303"the order."
    13641304
    1365 #: includes/YooKassaHandler.php:323
     1305#: includes/YooKassaHandler.php:314
    13661306msgid ""
    13671307"<b>Не получается создать чек </b><br>Цена позиции должна быть больше 0 ₽. "
     
    14171357"a> plugin to be active!"
    14181358
    1419 #~ msgid "ЮKassa"
    1420 #~ msgstr "YooMoney"
     1359#~ msgid ""
     1360#~ "Чтобы соответствовать закону 54-ФЗ, 1 января ставку 20% нужно будет "
     1361#~ "поменять на 22% — новые платежи будут проходить по ней. Если не поменять, "
     1362#~ "возможны вопросы и штрафы от ФНС, а операции придётся исправлять вручную"
     1363#~ msgstr ""
     1364#~ "In order to comply with the Federal Law No. 54-FZ, you must change the "
     1365#~ "20% rate to 22% before January 1, so that it is applied to all new "
     1366#~ "payments. If you don't change the rate, you might get questions and fines "
     1367#~ "from the Federal Tax Service, and you will have to manually correct the "
     1368#~ "transactions"
     1369
     1370#~ msgid ""
     1371#~ "С 1 января для соответствия 54-ФЗ ставку НДС и расчётную ставку нужно "
     1372#~ "изменить с 20% и 20/120 на 22% и 22/122 — новые платежи будут проходить "
     1373#~ "по ним. Если не поменять, возможны вопросы и штрафы от ФНС, а операции "
     1374#~ "придётся исправлять вручную."
     1375#~ msgstr ""
     1376#~ "In order to comply with the Federal Law No. 54-FZ, the VAT rate and "
     1377#~ "estimate rate will be changed from 20% and 20/120 to 22% and 22/122 "
     1378#~ "starting from January 1, and the new rates will be applied to all new "
     1379#~ "payments. If you don't change the rates, you might get questions and "
     1380#~ "fines from the Federal Tax Service, and you will have to manually correct "
     1381#~ "the transactions."
     1382
     1383#~ msgid "Расчетная ставка 20/120"
     1384#~ msgstr "Tax rate 20/120"
  • yookassa/trunk/languages/yookassa.pot

    r3426839 r3443263  
    1 # Copyright (C) 2025 YooMoney
     1# Copyright (C) 2026 YooMoney
    22# This file is distributed under the same license as the ЮKassa для WooCommerce plugin.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: yookassa 2.13.2\n"
     5"Project-Id-Version: yookassa 2.14.0\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/yookassa\n"
    7 "POT-Creation-Date: 2025-12-17 13:24+0300\n"
    8 "PO-Revision-Date: 2025-12-17 13:24+0300\n"
     7"POT-Creation-Date: 2026-01-20 14:55+0300\n"
     8"PO-Revision-Date: 2026-01-20 14:55+0300\n"
    99"Last-Translator: yoomoney <cms@yoomoney.ru>\n"
    1010"Language-Team: RU <cms@yoomoney.ru>\n"
     
    156156#: admin/partials/tabs/oauth_form.php:60
    157157#: admin/partials/tabs/section1.php:57
    158 #: admin/partials/tabs/section2.php:181
     158#: admin/partials/tabs/section2.php:177
    159159#: admin/partials/tabs/section3.php:165
    160 #: admin/partials/tabs/section4.php:263
     160#: admin/partials/tabs/section4.php:224
    161161#: admin/partials/tabs/section5.php:45
    162162msgid "Сохранить и продолжить"
     
    297297msgstr ""
    298298
    299 #: admin/partials/tabs/section2.php:172
    300 msgid "Чтобы соответствовать закону 54-ФЗ, 1 января ставку 20% нужно будет поменять на 22% — новые платежи будут проходить по ней. Если не поменять, возможны вопросы и штрафы от ФНС, а операции придётся исправлять вручную"
    301 msgstr ""
    302 
    303 #: admin/partials/tabs/section2.php:180
     299#: admin/partials/tabs/section2.php:176
    304300#: admin/partials/tabs/section3.php:164
    305 #: admin/partials/tabs/section4.php:262
     301#: admin/partials/tabs/section4.php:223
    306302#: admin/partials/tabs/section5.php:44
    307303msgid "Назад"
     
    378374msgstr ""
    379375
    380 #: admin/partials/tabs/section4.php:27
     376#: admin/partials/tabs/section4.php:26
    381377msgid "Автоматическая отправка чеков"
    382378msgstr ""
    383379
    384 #: admin/partials/tabs/section4.php:35
    385 msgid "Выберите ваш статус:"
    386 msgstr ""
    387 
    388 #: admin/partials/tabs/section4.php:42
    389 msgid "ИП или юрлицо"
    390 msgstr ""
    391 
    392 #: admin/partials/tabs/section4.php:46
    393 msgid "Самозанятый"
    394 msgstr ""
    395 
    396 #: admin/partials/tabs/section4.php:54
    397 msgid "Чтобы платёж прошёл и чек отправился:"
    398 msgstr ""
    399 
    400 #: admin/partials/tabs/section4.php:57
    401 msgid "В нём должно быть не больше 6 позиций. Позиции — это разные наименования, а не экземпляры одного и того же товара."
    402 msgstr ""
    403 
    404 #: admin/partials/tabs/section4.php:60
    405 msgid "Количество должно выражаться целым числом, дробные использовать нельзя. Например, 1.5 — не пройдёт, а 2 — пройдёт."
     380#: admin/partials/tabs/section4.php:30
     381msgid "Автоотправка доступна только ИП и юрлицам. Самозанятым нужно формировать чеки вручную — через сервис «Мой налог»"
     382msgstr ""
     383
     384#: admin/partials/tabs/section4.php:40
     385msgid "Налоги"
     386msgstr ""
     387
     388#: admin/partials/tabs/section4.php:45
     389msgid "Система налогообложения по умолчанию"
     390msgstr ""
     391
     392#: admin/partials/tabs/section4.php:47
     393msgid "Выберите систему налогообложения по умолчанию. Параметр необходим, только если у вас несколько систем налогообложения, в остальных случаях не передается."
     394msgstr ""
     395
     396#: admin/partials/tabs/section4.php:61
     397msgid "Ставка НДС по умолчанию"
    406398msgstr ""
    407399
    408400#: admin/partials/tabs/section4.php:63
    409 msgid "Цена каждой позиции должна быть больше 0 ₽ — иначе платёж не пройдёт. Если доставка бесплатная — она автоматически удалится из чека."
    410 msgstr ""
    411 
    412 #: admin/partials/tabs/section4.php:71
    413 msgid "Налоги"
     401msgid "Выберите ставку, которая будет в чеке, если в карточке товара не указана другая ставка."
    414402msgstr ""
    415403
    416404#: admin/partials/tabs/section4.php:76
    417 msgid "Система налогообложения по умолчанию"
    418 msgstr ""
    419 
    420 #: admin/partials/tabs/section4.php:78
    421 msgid "Выберите систему налогообложения по умолчанию. Параметр необходим, только если у вас несколько систем налогообложения, в остальных случаях не передается."
    422 msgstr ""
    423 
    424 #: admin/partials/tabs/section4.php:92
    425 msgid "Ставка НДС по умолчанию"
    426 msgstr ""
    427 
    428 #: admin/partials/tabs/section4.php:94
    429 msgid "Выберите ставку, которая будет в чеке, если в карточке товара не указана другая ставка."
    430 msgstr ""
    431 
    432 #: admin/partials/tabs/section4.php:109
    433405msgid "Сопоставьте ставки"
    434406msgstr ""
    435407
     408#: admin/partials/tabs/section4.php:81
     409msgid "Ставка в вашем магазине"
     410msgstr ""
     411
     412#: admin/partials/tabs/section4.php:84
     413msgid "Ставка для чека в налоговую"
     414msgstr ""
     415
    436416#: admin/partials/tabs/section4.php:114
    437 msgid "Ставка в вашем магазине"
    438 msgstr ""
    439 
    440 #: admin/partials/tabs/section4.php:117
    441 msgid "Ставка для чека в налоговую"
    442 msgstr ""
    443 
    444 #: admin/partials/tabs/section4.php:144
    445 msgid "С 1 января для соответствия 54-ФЗ ставку НДС и расчётную ставку нужно изменить с 20% и 20/120 на 22% и 22/122 — новые платежи будут проходить по ним. Если не поменять, возможны вопросы и штрафы от ФНС, а операции придётся исправлять вручную."
    446 msgstr ""
    447 
    448 #: admin/partials/tabs/section4.php:153
    449417msgid "54-ФЗ"
    450418msgstr ""
    451419
    452 #: admin/partials/tabs/section4.php:158
     420#: admin/partials/tabs/section4.php:119
    453421msgid "Предмет расчёта и способ расчёта"
    454422msgstr ""
    455423
    456 #: admin/partials/tabs/section4.php:159
     424#: admin/partials/tabs/section4.php:120
    457425msgid "Выберите значения, которые будут передаваться по умолчанию. Эти признаки можно настроить у каждой позиции отдельно — в карточке товара."
    458426msgstr ""
    459427
    460 #: admin/partials/tabs/section4.php:165
     428#: admin/partials/tabs/section4.php:126
    461429msgid "Предмет расчёта"
    462430msgstr ""
    463431
    464 #: admin/partials/tabs/section4.php:174
     432#: admin/partials/tabs/section4.php:135
    465433msgid "Способ расчёта"
    466434msgstr ""
    467435
    468 #: admin/partials/tabs/section4.php:186
     436#: admin/partials/tabs/section4.php:147
    469437msgid "Предмет расчёта для доставки"
    470438msgstr ""
    471439
    472 #: admin/partials/tabs/section4.php:195
     440#: admin/partials/tabs/section4.php:156
    473441msgid "Способ расчёта для доставки"
    474442msgstr ""
    475443
     444#: admin/partials/tabs/section4.php:173
     445msgid "Указывать маркировку товара"
     446msgstr ""
     447
     448#: admin/partials/tabs/section4.php:177
     449msgid "Актуальный список товарных категорий, которые нужно маркировать, можно посмотреть на сайте <a href=\"https://честныйзнак.рф/\" target=\"_blank\">Честного знака</a>."
     450msgstr ""
     451
     452#: admin/partials/tabs/section4.php:189
     453msgid "Формировать второй чек"
     454msgstr ""
     455
     456#: admin/partials/tabs/section4.php:198
     457msgid "При переходе заказа в статус"
     458msgstr ""
     459
     460#: admin/partials/tabs/section4.php:206
     461msgid "Если в заказе будут позиции с признаками «Полная предоплата» — второй чек отправится автоматически, когда заказ перейдёт в выбранный статус."
     462msgstr ""
     463
     464#: admin/partials/tabs/section4.php:210
     465msgid "Второй чек"
     466msgstr ""
     467
     468#: admin/partials/tabs/section4.php:211
     469msgid "Два чека нужно формировать, если покупатель вносит предоплату и потом получает товар или услугу. Первый чек — когда деньги поступают вам на счёт, второй — при отгрузке товаров или выполнении услуг."
     470msgstr ""
     471
    476472#: admin/partials/tabs/section4.php:212
    477 msgid "Указывать маркировку товара"
    478 msgstr ""
    479 
    480 #: admin/partials/tabs/section4.php:216
    481 msgid "Актуальный список товарных категорий, которые нужно маркировать, можно посмотреть на сайте <a href=\"https://честныйзнак.рф/\" target=\"_blank\">Честного знака</a>."
    482 msgstr ""
    483 
    484 #: admin/partials/tabs/section4.php:228
    485 msgid "Формировать второй чек"
    486 msgstr ""
    487 
    488 #: admin/partials/tabs/section4.php:237
    489 msgid "При переходе заказа в статус"
    490 msgstr ""
    491 
    492 #: admin/partials/tabs/section4.php:245
    493 msgid "Если в заказе будут позиции с признаками «Полная предоплата» — второй чек отправится автоматически, когда заказ перейдёт в выбранный статус."
    494 msgstr ""
    495 
    496 #: admin/partials/tabs/section4.php:249
    497 msgid "Второй чек"
    498 msgstr ""
    499 
    500 #: admin/partials/tabs/section4.php:250
    501 msgid "Два чека нужно формировать, если покупатель вносит предоплату и потом получает товар или услугу. Первый чек — когда деньги поступают вам на счёт, второй — при отгрузке товаров или выполнении услуг."
    502 msgstr ""
    503 
    504 #: admin/partials/tabs/section4.php:251
    505473msgid "Читать про второй чек в ЮKassa &gt;"
    506474msgstr ""
     
    539507msgstr ""
    540508
    541 #: admin/YooKassaAdmin.php:220
     509#: admin/YooKassaAdmin.php:219
    542510msgid "Без НДС"
    543511msgstr ""
    544512
    545 #: admin/YooKassaAdmin.php:232
     513#: admin/YooKassaAdmin.php:230
    546514msgid "Не облагается"
    547515msgstr ""
    548516
     517#: admin/YooKassaAdmin.php:236
     518msgid "Расчетная ставка 5/105"
     519msgstr ""
     520
     521#: admin/YooKassaAdmin.php:237
     522msgid "Расчетная ставка 7/107"
     523msgstr ""
     524
     525#: admin/YooKassaAdmin.php:238
     526msgid "Расчетная ставка 10/110"
     527msgstr ""
     528
    549529#: admin/YooKassaAdmin.php:239
    550 msgid "Расчетная ставка 5/105"
    551 msgstr ""
    552 
    553 #: admin/YooKassaAdmin.php:240
    554 msgid "Расчетная ставка 7/107"
    555 msgstr ""
    556 
    557 #: admin/YooKassaAdmin.php:241
    558 msgid "Расчетная ставка 10/110"
    559 msgstr ""
    560 
    561 #: admin/YooKassaAdmin.php:242
    562 msgid "Расчетная ставка 20/120"
    563 msgstr ""
    564 
    565 #: admin/YooKassaAdmin.php:243
    566530msgid "Расчетная ставка 22/122"
    567531msgstr ""
    568532
     533#: admin/YooKassaAdmin.php:246
     534msgid "Общая система налогообложения"
     535msgstr ""
     536
     537#: admin/YooKassaAdmin.php:247
     538msgid "Упрощенная (УСН, доходы)"
     539msgstr ""
     540
     541#: admin/YooKassaAdmin.php:248
     542msgid "Упрощенная (УСН, доходы минус расходы)"
     543msgstr ""
     544
     545#: admin/YooKassaAdmin.php:249
     546msgid "Единый налог на вмененный доход (ЕНВД)"
     547msgstr ""
     548
    569549#: admin/YooKassaAdmin.php:250
    570 msgid "Общая система налогообложения"
     550msgid "Единый сельскохозяйственный налог (ЕСН)"
    571551msgstr ""
    572552
    573553#: admin/YooKassaAdmin.php:251
    574 msgid "Упрощенная (УСН, доходы)"
    575 msgstr ""
    576 
    577 #: admin/YooKassaAdmin.php:252
    578 msgid "Упрощенная (УСН, доходы минус расходы)"
    579 msgstr ""
    580 
    581 #: admin/YooKassaAdmin.php:253
    582 msgid "Единый налог на вмененный доход (ЕНВД)"
    583 msgstr ""
    584 
    585 #: admin/YooKassaAdmin.php:254
    586 msgid "Единый сельскохозяйственный налог (ЕСН)"
    587 msgstr ""
    588 
    589 #: admin/YooKassaAdmin.php:255
    590554msgid "Патентная система налогообложения"
    591555msgstr ""
    592556
    593 #: admin/YooKassaAdmin.php:272
    594 #: admin/YooKassaAdmin.php:285
    595 #: gateway/YooKassaGateway.php:589
    596 #: gateway/YooKassaGatewayB2bSberbank.php:175
     557#: admin/YooKassaAdmin.php:269
     558#: admin/YooKassaAdmin.php:282
     559#: gateway/YooKassaGateway.php:586
     560#: gateway/YooKassaGatewayB2bSberbank.php:176
    597561#, php-format
    598562msgid "Оплата заказа №%order_number%"
    599563msgstr ""
    600564
     565#: admin/YooKassaAdmin.php:313
     566msgid "Товар"
     567msgstr ""
     568
     569#: admin/YooKassaAdmin.php:314
     570msgid "Подакцизный товар"
     571msgstr ""
     572
     573#: admin/YooKassaAdmin.php:315
     574msgid "Работа"
     575msgstr ""
     576
     577#: admin/YooKassaAdmin.php:316
     578msgid "Услуга"
     579msgstr ""
     580
    601581#: admin/YooKassaAdmin.php:317
    602 msgid "Товар"
     582msgid "Ставка в азартной игре"
    603583msgstr ""
    604584
    605585#: admin/YooKassaAdmin.php:318
    606 msgid "Подакцизный товар"
     586msgid "Выигрыш в азартной игре"
    607587msgstr ""
    608588
    609589#: admin/YooKassaAdmin.php:319
    610 msgid "Работа"
     590msgid "Лотерейный билет"
    611591msgstr ""
    612592
    613593#: admin/YooKassaAdmin.php:320
    614 msgid "Услуга"
     594msgid "Выигрыш в лотерею"
    615595msgstr ""
    616596
    617597#: admin/YooKassaAdmin.php:321
    618 msgid "Ставка в азартной игре"
     598msgid "Результаты интеллектуальной деятельности"
    619599msgstr ""
    620600
    621601#: admin/YooKassaAdmin.php:322
    622 msgid "Выигрыш в азартной игре"
     602msgid "Платеж"
    623603msgstr ""
    624604
    625605#: admin/YooKassaAdmin.php:323
    626 msgid "Лотерейный билет"
     606msgid "Агентское вознаграждение"
    627607msgstr ""
    628608
    629609#: admin/YooKassaAdmin.php:324
    630 msgid "Выигрыш в лотерею"
     610msgid "Несколько вариантов"
    631611msgstr ""
    632612
    633613#: admin/YooKassaAdmin.php:325
    634 msgid "Результаты интеллектуальной деятельности"
    635 msgstr ""
    636 
    637 #: admin/YooKassaAdmin.php:326
    638 msgid "Платеж"
    639 msgstr ""
    640 
    641 #: admin/YooKassaAdmin.php:327
    642 msgid "Агентское вознаграждение"
    643 msgstr ""
    644 
    645 #: admin/YooKassaAdmin.php:328
    646 msgid "Несколько вариантов"
    647 msgstr ""
    648 
    649 #: admin/YooKassaAdmin.php:329
    650614#: admin/YooKassaMarkingProduct.php:402
    651615msgid "Другое"
    652616msgstr ""
    653617
     618#: admin/YooKassaAdmin.php:329
     619msgid "Полная предоплата"
     620msgstr ""
     621
     622#: admin/YooKassaAdmin.php:330
     623msgid "Частичная предоплата"
     624msgstr ""
     625
     626#: admin/YooKassaAdmin.php:331
     627msgid "Аванс"
     628msgstr ""
     629
     630#: admin/YooKassaAdmin.php:332
     631msgid "Полный расчет"
     632msgstr ""
     633
    654634#: admin/YooKassaAdmin.php:333
    655 msgid "Полная предоплата"
     635msgid "Частичный расчет и кредит"
    656636msgstr ""
    657637
    658638#: admin/YooKassaAdmin.php:334
    659 msgid "Частичная предоплата"
     639msgid "Кредит"
    660640msgstr ""
    661641
    662642#: admin/YooKassaAdmin.php:335
    663 msgid "Аванс"
    664 msgstr ""
    665 
    666 #: admin/YooKassaAdmin.php:336
    667 msgid "Полный расчет"
    668 msgstr ""
    669 
    670 #: admin/YooKassaAdmin.php:337
    671 msgid "Частичный расчет и кредит"
    672 msgstr ""
    673 
    674 #: admin/YooKassaAdmin.php:338
    675 msgid "Кредит"
    676 msgstr ""
    677 
    678 #: admin/YooKassaAdmin.php:339
    679643msgid "Выплата по кредиту"
    680644msgstr ""
     
    984948msgstr ""
    985949
    986 #: gateway/YooKassaGateway.php:170
     950#: gateway/YooKassaGateway.php:177
    987951msgid "Включить/Выключить"
    988952msgstr ""
    989953
    990 #: gateway/YooKassaGateway.php:176
     954#: gateway/YooKassaGateway.php:183
    991955msgid "Заголовок"
    992956msgstr ""
    993957
    994 #: gateway/YooKassaGateway.php:178
     958#: gateway/YooKassaGateway.php:185
    995959msgid "Название, которое пользователь видит во время оплаты"
    996960msgstr ""
    997961
    998 #: gateway/YooKassaGateway.php:182
     962#: gateway/YooKassaGateway.php:189
    999963msgid "Описание"
    1000964msgstr ""
    1001965
    1002 #: gateway/YooKassaGateway.php:184
     966#: gateway/YooKassaGateway.php:191
    1003967msgid "Описание, которое пользователь видит во время оплаты"
    1004968msgstr ""
    1005969
    1006 #: gateway/YooKassaGateway.php:192
     970#: gateway/YooKassaGateway.php:199
    1007971msgid "Для работы с модулем необходимо <a href=\"https://yoomoney.ru/joinups/\">подключить магазин к ЮKassa</a>."
    1008972msgstr ""
    1009973
    1010 #: gateway/YooKassaGateway.php:225
     974#: gateway/YooKassaGateway.php:232
    1011975#, php-format
    1012976msgid "Пользователь вернулся с формы оплаты. Id заказа - %1$s. Идентификатор платежа - %2$s."
    1013977msgstr ""
    1014978
    1015 #. translators: %1$s - order_id
    1016 #: gateway/YooKassaGateway.php:369
    1017 #: gateway/YooKassaGateway.php:416
    1018 #: gateway/YooKassaGateway.php:425
    1019 #: gateway/YooKassaWidgetGateway.php:218
    1020 #: gateway/YooKassaWidgetGateway.php:268
    1021 #: gateway/YooKassaWidgetGateway.php:276
    1022 #, php-format
    1023 msgid "Не удалось создать платеж. Для заказа %1$s"
    1024 msgstr ""
    1025 
    1026 #: gateway/YooKassaGateway.php:385
    1027 #: gateway/YooKassaGateway.php:418
    1028 #: gateway/YooKassaGateway.php:427
     979#: gateway/YooKassaGateway.php:382
     980#: gateway/YooKassaGateway.php:415
     981#: gateway/YooKassaGateway.php:424
    1029982#: gateway/YooKassaWidgetGateway.php:240
    1030983#: gateway/YooKassaWidgetGateway.php:269
     
    1033986msgstr ""
    1034987
    1035 #: gateway/YooKassaGateway.php:690
     988#. translators: %1$s - order_id
     989#: gateway/YooKassaGateway.php:413
     990#: gateway/YooKassaGateway.php:422
     991#: gateway/YooKassaWidgetGateway.php:218
     992#: gateway/YooKassaWidgetGateway.php:268
     993#: gateway/YooKassaWidgetGateway.php:276
     994#, php-format
     995msgid "Не удалось создать платеж. Для заказа %1$s"
     996msgstr ""
     997
     998#: gateway/YooKassaGateway.php:687
    1036999msgid "Тестовое списание для привязки карты, средства будут возвращены."
    10371000msgstr ""
     
    10921055msgstr ""
    10931056
    1094 #: includes/YooKassaHandler.php:103
    1095 #: includes/YooKassaHandler.php:113
     1057#: includes/YooKassaHandler.php:94
     1058#: includes/YooKassaHandler.php:104
    10961059msgid "Доставка"
    10971060msgstr ""
    10981061
    1099 #: includes/YooKassaHandler.php:219
     1062#: includes/YooKassaHandler.php:210
    11001063#, php-format
    11011064msgid "Успешный платеж. Id заказа - %1$s. Данные платежа - %2$s."
    11021065msgstr ""
    11031066
    1104 #: includes/YooKassaHandler.php:225
     1067#: includes/YooKassaHandler.php:216
    11051068#, php-format
    11061069msgid "Номер транзакции в ЮKassa: %1$s. Сумма: %2$s"
    11071070msgstr ""
    11081071
    1109 #: includes/YooKassaHandler.php:242
     1072#: includes/YooKassaHandler.php:233
    11101073#, php-format
    11111074msgid "Успешная подписка. Id заказа - %1$s. Данные платежа - %2$s."
    11121075msgstr ""
    11131076
    1114 #: includes/YooKassaHandler.php:255
     1077#: includes/YooKassaHandler.php:246
    11151078#, php-format
    11161079msgid "Неуспешный платеж. Id заказа - %1$s. Данные платежа - %2$s."
    11171080msgstr ""
    11181081
    1119 #: includes/YooKassaHandler.php:268
     1082#: includes/YooKassaHandler.php:259
    11201083#, php-format
    11211084msgid "Платеж в ожидании оплаты. Id заказа - %1$s. Данные платежа - %2$s."
    11221085msgstr ""
    11231086
    1124 #: includes/YooKassaHandler.php:281
     1087#: includes/YooKassaHandler.php:272
    11251088#, php-format
    11261089msgid "Платеж ждет подтверждения. Id заказа - %1$s. Данные платежа - %2$s."
    11271090msgstr ""
    11281091
    1129 #: includes/YooKassaHandler.php:286
     1092#: includes/YooKassaHandler.php:277
    11301093#, php-format
    11311094msgid "Поступил новый платёж. Он ожидает подтверждения до %1$s, после чего автоматически отменится"
    11321095msgstr ""
    11331096
    1134 #: includes/YooKassaHandler.php:297
     1097#: includes/YooKassaHandler.php:288
    11351098#, php-format
    11361099msgid "Статус заказа. %1$s"
    11371100msgstr ""
    11381101
    1139 #: includes/YooKassaHandler.php:310
     1102#: includes/YooKassaHandler.php:301
    11401103msgid "<b>Нельзя добавить больше 6 разных позиций </b><br>Такое ограничение для владельца магазина. Уберите лишние позиции из корзины — остальные можно добавить в другом заказе."
    11411104msgstr ""
    11421105
    1143 #: includes/YooKassaHandler.php:317
     1106#: includes/YooKassaHandler.php:308
    11441107msgid "<b>Нельзя добавить позицию с дробным количеством </b><br>Только с целым. Свяжитесь с магазином, чтобы исправили значение и помогли сделать заказ."
    11451108msgstr ""
    11461109
    1147 #: includes/YooKassaHandler.php:323
     1110#: includes/YooKassaHandler.php:314
    11481111msgid "<b>Не получается создать чек </b><br>Цена позиции должна быть больше 0 ₽. Уберите позицию из корзины и попробуйте ещё раз."
    11491112msgstr ""
  • yookassa/trunk/yookassa.php

    r3426839 r3443263  
    1616 * Plugin URI:        https://wordpress.org/plugins/yookassa/
    1717 * Description:       Платежный модуль для работы с сервисом ЮKassa через плагин WooCommerce
    18  * Version:           2.13.2
     18 * Version:           2.14.0
    1919 * Author:            YooMoney
    2020 * Author URI:        http://yookassa.ru
     
    8888}
    8989
     90add_action( 'upgrader_process_complete', 'yookassa_upgrade_function', 10, 2);
     91function yookassa_upgrade_function( $upgrader_object, $options ) {
     92    $current_plugin_path_name = plugin_basename( __FILE__ );
     93    if ($options['action'] === 'update' && $options['type'] === 'plugin' && !empty($options['plugins'])) {
     94        foreach($options['plugins'] as $each_plugin) {
     95            if ($each_plugin === $current_plugin_path_name) {
     96                YooKassaLogger::info("Upgrade plugin $current_plugin_path_name start");
     97                YooKassaHandler::replaceOldTaxRates();
     98                YooKassaLogger::info("Upgrade plugin $current_plugin_path_name end");
     99            }
     100        }
     101    }
     102}
     103
    90104add_action( 'woocommerce_blocks_loaded', 'yookassa_gateway_block_support' );
    91105function yookassa_gateway_block_support() {
Note: See TracChangeset for help on using the changeset viewer.