Changeset 3304826
- Timestamp:
- 06/02/2025 10:32:44 AM (10 months ago)
- Location:
- mono-checkout
- Files:
-
- 8 edited
- 23 copied
-
tags/1.11.0 (copied) (copied from mono-checkout/trunk)
-
tags/1.11.0/css (copied) (copied from mono-checkout/trunk/css)
-
tags/1.11.0/css/admin-method.css (copied) (copied from mono-checkout/trunk/css/admin-method.css)
-
tags/1.11.0/css/mono-admin.css (copied) (copied from mono-checkout/trunk/css/mono-admin.css)
-
tags/1.11.0/css/mono-btn.css (copied) (copied from mono-checkout/trunk/css/mono-btn.css)
-
tags/1.11.0/images (copied) (copied from mono-checkout/trunk/images)
-
tags/1.11.0/includes (copied) (copied from mono-checkout/trunk/includes)
-
tags/1.11.0/includes/MonoApi.php (copied) (copied from mono-checkout/trunk/includes/MonoApi.php)
-
tags/1.11.0/includes/class.gateway.php (copied) (copied from mono-checkout/trunk/includes/class.gateway.php) (3 diffs)
-
tags/1.11.0/includes/class.mono.php (copied) (copied from mono-checkout/trunk/includes/class.mono.php) (1 diff)
-
tags/1.11.0/js (copied) (copied from mono-checkout/trunk/js)
-
tags/1.11.0/js/admin-handlers.js (copied) (copied from mono-checkout/trunk/js/admin-handlers.js)
-
tags/1.11.0/js/frontend-handlers.js (copied) (copied from mono-checkout/trunk/js/frontend-handlers.js) (1 diff)
-
tags/1.11.0/languages (copied) (copied from mono-checkout/trunk/languages)
-
tags/1.11.0/languages/mono-checkout-uk.mo (copied) (copied from mono-checkout/trunk/languages/mono-checkout-uk.mo)
-
tags/1.11.0/languages/mono-checkout-uk.po (copied) (copied from mono-checkout/trunk/languages/mono-checkout-uk.po) (30 diffs)
-
tags/1.11.0/languages/mono-checkout.pot (copied) (copied from mono-checkout/trunk/languages/mono-checkout.pot) (4 diffs)
-
tags/1.11.0/mono.php (copied) (copied from mono-checkout/trunk/mono.php) (2 diffs)
-
tags/1.11.0/readme.txt (copied) (copied from mono-checkout/trunk/readme.txt) (2 diffs)
-
tags/1.11.0/templates (copied) (copied from mono-checkout/trunk/templates)
-
tags/1.11.0/templates/base_button.php (copied) (copied from mono-checkout/trunk/templates/base_button.php)
-
tags/1.11.0/templates/button_error.php (copied) (copied from mono-checkout/trunk/templates/button_error.php)
-
tags/1.11.0/templates/wooommerce (copied) (copied from mono-checkout/trunk/templates/wooommerce)
-
trunk/includes/class.gateway.php (modified) (3 diffs)
-
trunk/includes/class.mono.php (modified) (1 diff)
-
trunk/js/frontend-handlers.js (modified) (1 diff)
-
trunk/languages/mono-checkout-uk.mo (modified) (previous)
-
trunk/languages/mono-checkout-uk.po (modified) (30 diffs)
-
trunk/languages/mono-checkout.pot (modified) (4 diffs)
-
trunk/mono.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mono-checkout/tags/1.11.0/includes/class.gateway.php
r3286209 r3304826 411 411 return array_keys($this->getShippingOptions()); 412 412 } 413 $result = $option; 413 414 if (!is_array($option)) { 414 return [$option]; 415 } 416 return $option; 415 $result = [$option]; 416 } 417 if (in_array('np_brnm', $result) and !in_array('np_cargo', $result)) { 418 $result[] = 'np_cargo'; 419 } 420 return $result; 417 421 } 418 422 … … 435 439 'np_brnm' => __( 'Nova Poshta', 'mono-checkout' ), 436 440 'np_box' => __( 'NP Postbox', 'mono-checkout' ), 441 'np_cargo' => __( 'NP Cargo', 'mono-checkout' ), 437 442 ]; 438 443 } … … 687 692 688 693 $delivery_methods = array_values(array_unique(array_merge($this->getSelectedShippingOptions(), $individualShippingMethods))); 694 695 if ( 696 in_array('np_cargo', $individualShippingMethods) 697 and !in_array('np_box', $individualShippingMethods) 698 and !in_array('np_brnm', $individualShippingMethods) 699 ) { 700 $delivery_methods = array_values(array_diff($delivery_methods, ['np_box', 'np_brnm'])); 701 } 689 702 $free_delivery_from = $this->get_option('free_delivery_from'); 690 703 $payment_methods = array_values(array_unique(array_merge($this->getSelectedPaymentMethods(), $individualPaymentMethods))); -
mono-checkout/tags/1.11.0/includes/class.mono.php
r3242725 r3304826 76 76 77 77 add_shortcode( 'monobank_checkout', [$this, 'shortcode_monobank_checkout'] ); 78 add_shortcode( 'mono_checkout', [$this, 'shortcode_monobank_checkout'] ); 78 79 79 80 add_filter( 'woocommerce_valid_order_statuses_for_cancel', [ $this, 'cancel_statuses' ], 10, 2 ); -
mono-checkout/tags/1.11.0/js/frontend-handlers.js
r3169137 r3304826 56 56 if (formData) { 57 57 let product_id = formData.get('product_id'); 58 if (!product_id) { product_id = el.closest('form').getAttribute('data-product_id'); }58 if (!product_id) { product_id = form.getAttribute('data-product_id'); } 59 59 if (!product_id) { product_id = el.getAttribute('data-product-id'); } 60 60 if (!product_id) { product_id = form.querySelector('[name=add-to-cart]') ? form.querySelector('[name=add-to-cart]').value : null; } -
mono-checkout/tags/1.11.0/languages/mono-checkout-uk.po
r3249513 r3304826 11 11 "Content-Transfer-Encoding: 8bit\n" 12 12 "POT-Creation-Date: 2023-10-25T00:58:42+03:00\n" 13 "PO-Revision-Date: 2025-0 2-28 07:55+0000\n"13 "PO-Revision-Date: 2025-05-29 06:59+0000\n" 14 14 "X-Generator: Loco https://localise.biz/\n" 15 15 "X-Domain: mono\n" … … 19 19 "X-Loco-Version: 2.6.6; wp-6.3.2" 20 20 21 #: includes/class.gateway.php: 49621 #: includes/class.gateway.php:534 22 22 msgid "" 23 23 "<strong>Important:</strong> mono checkout does not support orders with " … … 34 34 msgstr "Додаткові методи доставки" 35 35 36 #: includes/class.mono.php:18 0 includes/class.mono.php:18136 #: includes/class.mono.php:181 includes/class.mono.php:182 37 37 msgid "API answer" 38 38 msgstr "Відповідь API" 39 39 40 #: includes/class.gateway.php:2 6340 #: includes/class.gateway.php:274 41 41 #| msgid "" 42 42 #| "API token from monopay. Get your token at <a href=\"https://web.monobank." … … 49 49 "monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 50 50 51 #: includes/class.gateway.php:3 6151 #: includes/class.gateway.php:372 52 52 msgid "Automatically complete \"Cash on delivery\" orders" 53 53 msgstr "Автоматично закривати замовленням з оплатою при доставці" 54 54 55 #: includes/class.gateway.php:3 5455 #: includes/class.gateway.php:365 56 56 msgid "Automatically complete paid monocheckout orders" 57 57 msgstr "Автоматично ставити статус \"Виконано\" сплаченим замовленням" 58 58 59 #: includes/class.gateway.php:3 6859 #: includes/class.gateway.php:379 60 60 msgid "Automatically fail unpaid orders" 61 61 msgstr "Автоматично скасовувати несплачені замовлення" 62 62 63 #: includes/class.gateway.php:3 7563 #: includes/class.gateway.php:386 64 64 msgid "Base URL" 65 65 msgstr "Базовий URL" 66 66 67 #: includes/class.gateway.php:3 7767 #: includes/class.gateway.php:388 68 68 msgid "Base URL for mono checkout API." 69 69 msgstr "Базовий URL для API mono checkout" 70 70 71 #: includes/class.gateway.php:3 2271 #: includes/class.gateway.php:333 72 72 msgid "Button style" 73 73 msgstr "Стиль кнопки" … … 81 81 msgstr "Передзвонити клієнту" 82 82 83 #: includes/class.gateway.php:4 1083 #: includes/class.gateway.php:448 84 84 msgid "Card" 85 85 msgstr "Картка" 86 86 87 #: includes/class.gateway.php:3 1887 #: includes/class.gateway.php:329 88 88 msgid "Cart button height (px)" 89 89 msgstr "Висота кнопки в кошику (px)" 90 90 91 #: includes/class.gateway.php:3 1491 #: includes/class.gateway.php:325 92 92 msgid "Cart button width (px)" 93 93 msgstr "Ширина кнопки в кошику (px)" 94 94 95 #: includes/class.gateway.php:5 15 includes/class.gateway.php:69895 #: includes/class.gateway.php:553 includes/class.gateway.php:745 96 96 msgid "Check your mono checkout Token." 97 97 msgstr "Будь-ласка, перевірте Токен чекауту для Вашого магазину." 98 98 99 #: includes/class.gateway.php: 29099 #: includes/class.gateway.php:301 100 100 msgid "Checkout button height (px)" 101 101 msgstr "Висота кнопки на чекауті (px)" 102 102 103 #: includes/class.gateway.php:2 86103 #: includes/class.gateway.php:297 104 104 msgid "Checkout button width (px)" 105 105 msgstr "Ширина кнопки на чекауті (px)" 106 106 107 #: includes/class.gateway.php:2 75107 #: includes/class.gateway.php:286 108 108 msgid "Checkout description" 109 109 msgstr "Опис" 110 110 111 #: includes/class.gateway.php:5 21 includes/class.gateway.php:721111 #: includes/class.gateway.php:559 includes/class.gateway.php:768 112 112 msgid "Checkout is disabled in your account." 113 113 msgstr "Чекаут відключений у Вашому аккаунті." … … 125 125 msgstr "скопіювати код" 126 126 127 #: includes/class.gateway.php:4 01127 #: includes/class.gateway.php:438 128 128 msgid "Courier" 129 129 msgstr "Кур'єр" 130 130 131 #: includes/class.gateway.php:7 16131 #: includes/class.gateway.php:763 132 132 msgid "Delivery method \"%s\" is not available for your store." 133 133 msgstr "Спосіб доставки \"%s\" недоступний для Вашого магазину." 134 134 135 #: includes/class.gateway.php:5 19135 #: includes/class.gateway.php:557 136 136 msgid "Delivery method X is not available for your store." 137 137 msgstr "Спосіб доставки X недоступний для Вашого магазину." 138 138 139 #: includes/class.gateway.php:3 28139 #: includes/class.gateway.php:339 140 140 msgid "Delivery options" 141 141 msgstr "Методи доставки" 142 142 143 #: includes/class.gateway.php:3 08143 #: includes/class.gateway.php:319 144 144 msgid "Enable in cart" 145 145 msgstr "Відобразити в кошику" 146 146 147 #: includes/class.gateway.php:2 55147 #: includes/class.gateway.php:266 148 148 msgid "Enable module" 149 149 msgstr "Активувати модуль" 150 150 151 #: includes/class.gateway.php:2 80151 #: includes/class.gateway.php:291 152 152 msgid "Enable on checkout" 153 153 msgstr "Відобразити на чекауті" 154 154 155 #: includes/class.gateway.php: 294155 #: includes/class.gateway.php:305 156 156 msgid "Enable on product details" 157 157 msgstr "Відобразити на деталях продукту" 158 158 159 #: includes/class.gateway.php:5 13 includes/class.gateway.php:693159 #: includes/class.gateway.php:551 includes/class.gateway.php:740 160 160 msgid "Fill in your mono checkout Token." 161 161 msgstr "Будь-ласка, заповніть Токен чекауту для Вашого магазину." 162 162 163 #: includes/class.gateway.php:3 35163 #: includes/class.gateway.php:346 164 164 msgid "Free delivery from" 165 165 msgstr "Безкоштовна доставка від" 166 166 167 #: includes/class.gateway.php:3 38167 #: includes/class.gateway.php:349 168 168 msgid "Free delivery from this order subtotal. Empty for paid delivery." 169 169 msgstr "" … … 171 171 "доставки." 172 172 173 #: includes/class.gateway.php:5 11173 #: includes/class.gateway.php:549 174 174 msgid "Frequent errors" 175 175 msgstr "Часті помилки" … … 179 179 msgstr "Загальна помилка" 180 180 181 #: includes/class.gateway.php:4 61181 #: includes/class.gateway.php:499 182 182 msgid "Get your monobank app now:" 183 183 msgstr "Скачайте додаток monobank" … … 205 205 msgstr "Оформлення через mono checkout" 206 206 207 #: includes/class.gateway.php: 763207 #: includes/class.gateway.php:810 208 208 #| msgid "" 209 209 #| "monopay declined order: %1$s (code: %2$s)<br/><a class=\"mono-code-" … … 216 216 "code-toggle\">Відповідь API</a><pre class=\"mono-api-answer\">%3$s</pre>" 217 217 218 #: includes/class.gateway.php:7 46218 #: includes/class.gateway.php:793 219 219 #| msgid "" 220 220 #| "monopay declined order: %1$s<br/><a class=\"mono-code-toggle\">API " … … 227 227 "Відповідь API</a><pre class=\"mono-api-answer\">%2$s</pre>" 228 228 229 #: includes/class.mono.php:35 4229 #: includes/class.mono.php:355 230 230 msgid "mono checkout does not support order with coupons" 231 231 msgstr "mono чекаут не підтримує замовлення з купонами" 232 232 233 #: includes/class.gateway.php: 858233 #: includes/class.gateway.php:905 234 234 #| msgid "" 235 235 #| "monopay status update:<strong>%1$s</strong><br/><a class=\"mono-code-" … … 242 242 "Відповідь API</a><pre class=\"mono-api-answer\">%2$s</pre>" 243 243 244 #: includes/class.mono.php:23 6244 #: includes/class.mono.php:237 245 245 msgid "" 246 246 "mono checkout: Please, enable <code>allow_url_fopen</code> setting in PHP " … … 253 253 "cPanel</a>)" 254 254 255 #: includes/class.gateway.php: 781255 #: includes/class.gateway.php:828 256 256 msgid "" 257 257 "mono ID: <strong>%1$s</strong><br/><a href=\"%2$s\" target=\"_blank\">" … … 263 263 "<pre class=\"mono-api-answer\">%3$s</pre>" 264 264 265 #: includes/class.gateway.php:3 72265 #: includes/class.gateway.php:383 266 266 msgid "" 267 267 "mono orders that haven't been paid in 30 minutes will become failed. The " … … 271 271 "Перевірятись будуть тільки замовлення, додані за останню годину." 272 272 273 #: includes/class.mono.php:23 8273 #: includes/class.mono.php:239 274 274 msgid "mono requires Woocommerce to be activated. Plugin features are paused." 275 275 msgstr "" … … 281 281 msgstr "monobank" 282 282 283 #: includes/class.gateway.php:4 56283 #: includes/class.gateway.php:494 284 284 msgid "" 285 285 "More details on <a href=\"https://www.monobank.ua/\" target=\"_blank\">" … … 289 289 "monobank.ua</a>" 290 290 291 #: includes/class.gateway.php: 695 includes/class.gateway.php:700292 #: includes/class.gateway.php:7 09 includes/class.gateway.php:718293 #: includes/class.gateway.php:7 23291 #: includes/class.gateway.php:742 includes/class.gateway.php:747 292 #: includes/class.gateway.php:756 includes/class.gateway.php:765 293 #: includes/class.gateway.php:770 294 294 msgid "More info" 295 295 msgstr "Детальніше" 296 296 297 #: includes/class.gateway.php:4 52297 #: includes/class.gateway.php:490 298 298 msgid "Need help? Check out our FAQ or contact our support." 299 299 msgstr "Потрібна допомога? Подивіться наші ЧаПи або зверніться до підтримки." … … 319 319 msgstr "Не підтверджене <span class=\"count\">(%s)</span>" 320 320 321 #: includes/class.gateway.php:4 02321 #: includes/class.gateway.php:439 322 322 msgid "Nova Poshta" 323 323 msgstr "Нова Пошта" 324 324 325 #: includes/class.gateway.php:403 325 #: includes/class.gateway.php:441 326 msgid "NP Cargo" 327 msgstr "Вантажне відділення НП" 328 329 #: includes/class.gateway.php:440 326 330 msgid "NP Postbox" 327 331 msgstr "Поштомат НП" 328 332 329 #: includes/class.gateway.php:3 48333 #: includes/class.gateway.php:359 330 334 msgid "Number of payments" 331 335 msgstr "Кількість платежів" 332 336 333 #: includes/class.gateway.php:3 51337 #: includes/class.gateway.php:362 334 338 msgid "Number of payments for Purchase in parts." 335 339 msgstr "Кількість платежів в покупці частинами" 336 340 337 #: includes/class.gateway.php:2 68341 #: includes/class.gateway.php:279 338 342 msgid "Order prefix" 339 343 msgstr "Префікс замовлення" 340 344 341 #: includes/class.gateway.php:3 65345 #: includes/class.gateway.php:376 342 346 msgid "" 343 347 "Orders with payment type \"Cash on delivery\" will automatically be " … … 347 351 "\"Виконано\"." 348 352 349 #: includes/class.gateway.php:3 58353 #: includes/class.gateway.php:369 350 354 msgid "" 351 355 "Paid orders will automatically be transitioned to Completed status. However " … … 355 359 "Однак замовлення з оплатою при доставці не автоматично закриті." 356 360 357 #: includes/class.gateway.php:7 26 includes/class.gateway.php:742358 #: includes/class.gateway.php: 759361 #: includes/class.gateway.php:773 includes/class.gateway.php:789 362 #: includes/class.gateway.php:806 359 363 msgid "Payment error: %s" 360 364 msgstr "Помилка платежу: %s" 361 365 362 #: includes/class.gateway.php:7 07366 #: includes/class.gateway.php:754 363 367 msgid "Payment method \"%s\" is not available for your store." 364 368 msgstr "Платіжний метод \"%s\" недоступний для Вашого магазину." 365 369 366 #: includes/class.gateway.php:5 17370 #: includes/class.gateway.php:555 367 371 msgid "Payment method X is not available for your store." 368 372 msgstr "Платіжний метод X недоступний для Вашого магазину." 369 373 370 #: includes/class.gateway.php:3 41374 #: includes/class.gateway.php:352 371 375 msgid "Payment methods" 372 376 msgstr "Платіжні методи" 373 377 374 378 #: includes/class.gateway.php:72 includes/class.gateway.php:89 375 #: includes/class.gateway.php:4 11379 #: includes/class.gateway.php:449 376 380 msgid "Payment on delivery" 377 381 msgstr "Оплата при отриманні" … … 381 385 msgstr "Оплата при отриманні <span class=\"count\">(%s)</span>" 382 386 383 #: includes/class.gateway.php:4 28387 #: includes/class.gateway.php:466 384 388 msgid "Pending payment" 385 389 msgstr "Очікування оплати" 386 390 387 #: includes/class.gateway.php:4 00391 #: includes/class.gateway.php:437 388 392 msgid "Pickup" 389 393 msgstr "Самовивіз" 390 394 391 #: includes/class.gateway.php:5 20395 #: includes/class.gateway.php:558 392 396 msgid "" 393 397 "Please, contact our support at <a href=\"https://web.monobank.ua\" " … … 401 405 "в налаштуваннях чекауту." 402 406 403 #: includes/class.gateway.php:5 18407 #: includes/class.gateway.php:556 404 408 #| msgid "" 405 409 #| "Please, contact our support at <a href=\"https://web.monobank.ua\" " … … 416 420 "в налаштуваннях чекауту." 417 421 418 #: includes/class.gateway.php:5 22422 #: includes/class.gateway.php:560 419 423 msgid "" 420 424 "Please, enable your checkout in your account at <a href=\"https://web." … … 424 428 "monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 425 429 426 #: includes/class.gateway.php:5 14430 #: includes/class.gateway.php:552 427 431 msgid "" 428 432 "Please, get your token at <a href=\"https://web.monobank.ua\" " … … 432 436 "ua\" target=\"_blank\">web.monobank.ua</a>" 433 437 434 #: includes/class.gateway.php:5 16438 #: includes/class.gateway.php:554 435 439 msgid "" 436 440 "Please, make sure you used correct token from <a href=\"https://web.monobank." … … 440 444 "href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 441 445 442 #: includes/class.gateway.php:2 70446 #: includes/class.gateway.php:281 443 447 msgid "Prepended to order numbers to distinguish between different stores." 444 448 msgstr "" 445 449 "Додається до номеру замовлення, щоб розрізняти замовлення з різних магазинів" 446 450 447 #: includes/class.gateway.php:3 04451 #: includes/class.gateway.php:315 448 452 msgid "Product details button height (px)" 449 453 msgstr "Висота кнопки на деталях продукту (px)" 450 454 451 #: includes/class.gateway.php:3 00455 #: includes/class.gateway.php:311 452 456 msgid "Product details button width (px)" 453 457 msgstr "Ширина кнопки на деталях продукту (px)" 454 458 455 #: includes/class.gateway.php:4 12459 #: includes/class.gateway.php:450 456 460 msgid "Purchase in parts" 457 461 msgstr "Покупка частинами" … … 477 481 "методів." 478 482 479 #: includes/class.gateway.php:5 00483 #: includes/class.gateway.php:538 480 484 msgid "Settings" 481 485 msgstr "Налаштування" 482 486 483 #: includes/class.gateway.php: 481487 #: includes/class.gateway.php:519 484 488 msgid "Statuses of mono checkout orders:" 485 489 msgstr "Статуси замовлень mono checkout:" 486 490 487 #: includes/class.gateway.php:143 includes/class.gateway.php: 691491 #: includes/class.gateway.php:143 includes/class.gateway.php:738 488 492 msgid "Technical error" 489 493 msgstr "Технічна помилка" 490 494 491 #: includes/class.mono.php:43 5495 #: includes/class.mono.php:436 492 496 msgid "This payment method is not applicable to orders with coupons." 493 497 msgstr "Цей платіжний метод не підтримує замовлення з купонами." 494 498 495 #: includes/class.gateway.php:4 55499 #: includes/class.gateway.php:493 496 500 msgid "" 497 501 "To get token, please, send request in your monobank app and then visit <a " … … 502 506 "web.monobank.ua</a>" 503 507 504 #: includes/class.gateway.php:2 61508 #: includes/class.gateway.php:272 505 509 msgid "Token" 506 510 msgstr "Токен" … … 510 514 msgstr "Оновити статус платежу" 511 515 512 #: includes/class.gateway.php:3 32 includes/class.gateway.php:345516 #: includes/class.gateway.php:343 includes/class.gateway.php:356 513 517 msgid "Use Ctrl for multiple choices" 514 518 msgstr "Натисніть Ctrl, щоб обрати декілька варіантів" 515 519 516 #: includes/class.gateway.php:7 30520 #: includes/class.gateway.php:777 517 521 #| msgid "" 518 522 #| "Wrong answer from monopay.<br/><a class=\"mono-code-toggle\">API " … … 529 533 msgstr "Так" 530 534 531 #: includes/class.gateway.php:4 57535 #: includes/class.gateway.php:495 532 536 msgid "Your callback URL: %s" 533 537 msgstr "Ваш URL колбеку: %s" 534 538 535 #: includes/class.gateway.php:4 58539 #: includes/class.gateway.php:496 536 540 msgid "Your return URL: %s" 537 541 msgstr "Ваш URL після успішної оплати (return URL): %s" -
mono-checkout/tags/1.11.0/languages/mono-checkout.pot
r3249513 r3304826 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: mono checkout 1.10. 0\n"5 "Project-Id-Version: mono checkout 1.10.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mono\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 2-28T07:53:27+00:00\n"12 "POT-Creation-Date: 2025-05-29T06:57:35+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.8.1\n" … … 60 60 #: includes/class.gateway.php:72 61 61 #: includes/class.gateway.php:89 62 #: includes/class.gateway.php:4 1162 #: includes/class.gateway.php:449 63 63 msgid "Payment on delivery" 64 64 msgstr "" … … 103 103 104 104 #: includes/class.gateway.php:143 105 #: includes/class.gateway.php: 691105 #: includes/class.gateway.php:738 106 106 msgid "Technical error" 107 107 msgstr "" 108 108 109 #: includes/class.gateway.php:2 55109 #: includes/class.gateway.php:266 110 110 msgid "Enable module" 111 111 msgstr "" 112 112 113 #: includes/class.gateway.php:2 61113 #: includes/class.gateway.php:272 114 114 msgid "Token" 115 115 msgstr "" 116 116 117 #: includes/class.gateway.php:2 63117 #: includes/class.gateway.php:274 118 118 msgid "API token from mono checkout. Get your token at <a href=\"https://web.monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 119 119 msgstr "" 120 120 121 #: includes/class.gateway.php:2 68121 #: includes/class.gateway.php:279 122 122 msgid "Order prefix" 123 123 msgstr "" 124 124 125 #: includes/class.gateway.php:2 70125 #: includes/class.gateway.php:281 126 126 msgid "Prepended to order numbers to distinguish between different stores." 127 127 msgstr "" 128 128 129 #: includes/class.gateway.php:2 75129 #: includes/class.gateway.php:286 130 130 msgid "Checkout description" 131 131 msgstr "" 132 132 133 #: includes/class.gateway.php:2 80133 #: includes/class.gateway.php:291 134 134 msgid "Enable on checkout" 135 135 msgstr "" 136 136 137 #: includes/class.gateway.php:2 86137 #: includes/class.gateway.php:297 138 138 msgid "Checkout button width (px)" 139 139 msgstr "" 140 140 141 #: includes/class.gateway.php: 290141 #: includes/class.gateway.php:301 142 142 msgid "Checkout button height (px)" 143 143 msgstr "" 144 144 145 #: includes/class.gateway.php: 294145 #: includes/class.gateway.php:305 146 146 msgid "Enable on product details" 147 147 msgstr "" 148 148 149 #: includes/class.gateway.php:3 00149 #: includes/class.gateway.php:311 150 150 msgid "Product details button width (px)" 151 151 msgstr "" 152 152 153 #: includes/class.gateway.php:3 04153 #: includes/class.gateway.php:315 154 154 msgid "Product details button height (px)" 155 155 msgstr "" 156 156 157 #: includes/class.gateway.php:3 08157 #: includes/class.gateway.php:319 158 158 msgid "Enable in cart" 159 159 msgstr "" 160 160 161 #: includes/class.gateway.php:3 14161 #: includes/class.gateway.php:325 162 162 msgid "Cart button width (px)" 163 163 msgstr "" 164 164 165 #: includes/class.gateway.php:3 18165 #: includes/class.gateway.php:329 166 166 msgid "Cart button height (px)" 167 167 msgstr "" 168 168 169 #: includes/class.gateway.php:3 22169 #: includes/class.gateway.php:333 170 170 msgid "Button style" 171 171 msgstr "" 172 172 173 #: includes/class.gateway.php:3 28173 #: includes/class.gateway.php:339 174 174 msgid "Delivery options" 175 175 msgstr "" 176 176 177 #: includes/class.gateway.php:3 32178 #: includes/class.gateway.php:3 45177 #: includes/class.gateway.php:343 178 #: includes/class.gateway.php:356 179 179 msgid "Use Ctrl for multiple choices" 180 180 msgstr "" 181 181 182 #: includes/class.gateway.php:3 35182 #: includes/class.gateway.php:346 183 183 msgid "Free delivery from" 184 184 msgstr "" 185 185 186 #: includes/class.gateway.php:3 38186 #: includes/class.gateway.php:349 187 187 msgid "Free delivery from this order subtotal. Empty for paid delivery." 188 188 msgstr "" 189 189 190 #: includes/class.gateway.php:3 41190 #: includes/class.gateway.php:352 191 191 msgid "Payment methods" 192 192 msgstr "" 193 193 194 #: includes/class.gateway.php:3 48194 #: includes/class.gateway.php:359 195 195 msgid "Number of payments" 196 196 msgstr "" 197 197 198 #: includes/class.gateway.php:3 51198 #: includes/class.gateway.php:362 199 199 msgid "Number of payments for Purchase in parts." 200 200 msgstr "" 201 201 202 #: includes/class.gateway.php:3 54202 #: includes/class.gateway.php:365 203 203 msgid "Automatically complete paid monocheckout orders" 204 204 msgstr "" 205 205 206 #: includes/class.gateway.php:3 58206 #: includes/class.gateway.php:369 207 207 msgid "Paid orders will automatically be transitioned to Completed status. However \"Cash on delivery\" orders will not be closed automatically." 208 208 msgstr "" 209 209 210 #: includes/class.gateway.php:3 61210 #: includes/class.gateway.php:372 211 211 msgid "Automatically complete \"Cash on delivery\" orders" 212 212 msgstr "" 213 213 214 #: includes/class.gateway.php:3 65214 #: includes/class.gateway.php:376 215 215 msgid "Orders with payment type \"Cash on delivery\" will automatically be transitioned to Completed status." 216 216 msgstr "" 217 217 218 #: includes/class.gateway.php:3 68218 #: includes/class.gateway.php:379 219 219 msgid "Automatically fail unpaid orders" 220 220 msgstr "" 221 221 222 #: includes/class.gateway.php:3 72222 #: includes/class.gateway.php:383 223 223 msgid "mono orders that haven't been paid in 30 minutes will become failed. The check is performed for orders placed in the last hour only." 224 224 msgstr "" 225 225 226 #: includes/class.gateway.php:3 75226 #: includes/class.gateway.php:386 227 227 msgid "Base URL" 228 228 msgstr "" 229 229 230 #: includes/class.gateway.php:3 77230 #: includes/class.gateway.php:388 231 231 msgid "Base URL for mono checkout API." 232 232 msgstr "" 233 233 234 #: includes/class.gateway.php:4 00234 #: includes/class.gateway.php:437 235 235 msgid "Pickup" 236 236 msgstr "" 237 237 238 #: includes/class.gateway.php:4 01238 #: includes/class.gateway.php:438 239 239 msgid "Courier" 240 240 msgstr "" 241 241 242 #: includes/class.gateway.php:4 02242 #: includes/class.gateway.php:439 243 243 msgid "Nova Poshta" 244 244 msgstr "" 245 245 246 #: includes/class.gateway.php:4 03246 #: includes/class.gateway.php:440 247 247 msgid "NP Postbox" 248 248 msgstr "" 249 249 250 #: includes/class.gateway.php:410 250 #: includes/class.gateway.php:441 251 msgid "NP Cargo" 252 msgstr "" 253 254 #: includes/class.gateway.php:448 251 255 msgid "Card" 252 256 msgstr "" 253 257 254 #: includes/class.gateway.php:4 12258 #: includes/class.gateway.php:450 255 259 msgid "Purchase in parts" 256 260 msgstr "" 257 261 258 #: includes/class.gateway.php:4 28262 #: includes/class.gateway.php:466 259 263 msgid "Pending payment" 260 264 msgstr "" 261 265 262 #: includes/class.gateway.php:4 52266 #: includes/class.gateway.php:490 263 267 msgid "Need help? Check out our FAQ or contact our support." 264 268 msgstr "" 265 269 266 #: includes/class.gateway.php:4 55270 #: includes/class.gateway.php:493 267 271 msgid "To get token, please, send request in your monobank app and then visit <a href=\"https://web.monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 268 272 msgstr "" 269 273 270 #: includes/class.gateway.php:4 56274 #: includes/class.gateway.php:494 271 275 msgid "More details on <a href=\"https://www.monobank.ua/\" target=\"_blank\">monobank.ua</a>" 272 276 msgstr "" 273 277 274 #: includes/class.gateway.php:4 57278 #: includes/class.gateway.php:495 275 279 msgid "Your callback URL: %s" 276 280 msgstr "" 277 281 278 #: includes/class.gateway.php:4 58282 #: includes/class.gateway.php:496 279 283 msgid "Your return URL: %s" 280 284 msgstr "" 281 285 282 #: includes/class.gateway.php:4 61286 #: includes/class.gateway.php:499 283 287 msgid "Get your monobank app now:" 284 288 msgstr "" 285 289 286 #: includes/class.gateway.php: 481290 #: includes/class.gateway.php:519 287 291 msgid "Statuses of mono checkout orders:" 288 292 msgstr "" 289 293 290 #: includes/class.gateway.php: 496294 #: includes/class.gateway.php:534 291 295 msgid "<strong>Important:</strong> mono checkout does not support orders with coupons." 292 296 msgstr "" 293 297 294 #: includes/class.gateway.php:5 00298 #: includes/class.gateway.php:538 295 299 msgid "Settings" 296 300 msgstr "" 297 301 298 #: includes/class.gateway.php:5 11302 #: includes/class.gateway.php:549 299 303 msgid "Frequent errors" 300 304 msgstr "" 301 305 302 #: includes/class.gateway.php:5 13303 #: includes/class.gateway.php: 693306 #: includes/class.gateway.php:551 307 #: includes/class.gateway.php:740 304 308 msgid "Fill in your mono checkout Token." 305 309 msgstr "" 306 310 307 #: includes/class.gateway.php:5 14311 #: includes/class.gateway.php:552 308 312 msgid "Please, get your token at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 309 313 msgstr "" 310 314 311 #: includes/class.gateway.php:5 15312 #: includes/class.gateway.php: 698315 #: includes/class.gateway.php:553 316 #: includes/class.gateway.php:745 313 317 msgid "Check your mono checkout Token." 314 318 msgstr "" 315 319 316 #: includes/class.gateway.php:5 16320 #: includes/class.gateway.php:554 317 321 msgid "Please, make sure you used correct token from <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 318 322 msgstr "" 319 323 320 #: includes/class.gateway.php:5 17324 #: includes/class.gateway.php:555 321 325 msgid "Payment method X is not available for your store." 322 326 msgstr "" 323 327 324 #: includes/class.gateway.php:5 18328 #: includes/class.gateway.php:556 325 329 msgid "Please, contact our support at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a> to enable corresponding payment method for your account. You can disable it temporarily to keep using mono checkout." 326 330 msgstr "" 327 331 328 #: includes/class.gateway.php:5 19332 #: includes/class.gateway.php:557 329 333 msgid "Delivery method X is not available for your store." 330 334 msgstr "" 331 335 332 #: includes/class.gateway.php:5 20336 #: includes/class.gateway.php:558 333 337 msgid "Please, contact our support at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a> to enable corresponding delivery method for your account. You can disable it temporarily to keep using mono checkout." 334 338 msgstr "" 335 339 336 #: includes/class.gateway.php:5 21337 #: includes/class.gateway.php:7 21340 #: includes/class.gateway.php:559 341 #: includes/class.gateway.php:768 338 342 msgid "Checkout is disabled in your account." 339 343 msgstr "" 340 344 341 #: includes/class.gateway.php:5 22345 #: includes/class.gateway.php:560 342 346 msgid "Please, enable your checkout in your account at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 343 347 msgstr "" 344 348 345 #: includes/class.gateway.php: 695346 #: includes/class.gateway.php:7 00347 #: includes/class.gateway.php:7 09348 #: includes/class.gateway.php:7 18349 #: includes/class.gateway.php:7 23349 #: includes/class.gateway.php:742 350 #: includes/class.gateway.php:747 351 #: includes/class.gateway.php:756 352 #: includes/class.gateway.php:765 353 #: includes/class.gateway.php:770 350 354 msgid "More info" 351 355 msgstr "" 352 356 353 #: includes/class.gateway.php:7 07357 #: includes/class.gateway.php:754 354 358 msgid "Payment method \"%s\" is not available for your store." 355 359 msgstr "" 356 360 357 #: includes/class.gateway.php:7 16361 #: includes/class.gateway.php:763 358 362 msgid "Delivery method \"%s\" is not available for your store." 359 363 msgstr "" 360 364 361 #: includes/class.gateway.php:7 26362 #: includes/class.gateway.php:7 42363 #: includes/class.gateway.php: 759365 #: includes/class.gateway.php:773 366 #: includes/class.gateway.php:789 367 #: includes/class.gateway.php:806 364 368 msgid "Payment error: %s" 365 369 msgstr "" 366 370 367 #: includes/class.gateway.php:7 30371 #: includes/class.gateway.php:777 368 372 msgid "Wrong answer from mono checkout.<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%s</pre>" 369 373 msgstr "" 370 374 371 #: includes/class.gateway.php:7 46375 #: includes/class.gateway.php:793 372 376 msgid "mono checkout declined order: %1$s<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%2$s</pre>" 373 377 msgstr "" 374 378 375 #: includes/class.gateway.php: 763379 #: includes/class.gateway.php:810 376 380 msgid "mono checkout declined order: %1$s (code: %2$s)<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%3$s</pre>" 377 381 msgstr "" 378 382 379 #: includes/class.gateway.php: 781383 #: includes/class.gateway.php:828 380 384 msgid "mono ID: <strong>%1$s</strong><br/><a href=\"%2$s\" target=\"_blank\">Checkout link</a><br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%3$s</pre>" 381 385 msgstr "" 382 386 383 #: includes/class.gateway.php: 858387 #: includes/class.gateway.php:905 384 388 msgid "mono checkout status update:<strong>%1$s</strong><br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%2$s</pre>" 385 389 msgstr "" 386 390 387 #: includes/class.mono.php:180388 391 #: includes/class.mono.php:181 392 #: includes/class.mono.php:182 389 393 msgid "API answer" 390 394 msgstr "" 391 395 392 #: includes/class.mono.php:23 6396 #: includes/class.mono.php:237 393 397 msgid "mono checkout: Please, enable <code>allow_url_fopen</code> setting in PHP configuration (<a href=\"https://chemicloud.com/kb/article/how-to-enable-or-disable-allow_url_fopen-in-cpanel/\" target=\"_blank\">cPanel manual</a>)" 394 398 msgstr "" 395 399 396 #: includes/class.mono.php:23 8400 #: includes/class.mono.php:239 397 401 msgid "mono requires Woocommerce to be activated. Plugin features are paused." 398 402 msgstr "" 399 403 400 #: includes/class.mono.php:35 4404 #: includes/class.mono.php:355 401 405 msgid "mono checkout does not support order with coupons" 402 406 msgstr "" 403 407 404 #: includes/class.mono.php:43 5408 #: includes/class.mono.php:436 405 409 msgid "This payment method is not applicable to orders with coupons." 406 410 msgstr "" -
mono-checkout/tags/1.11.0/mono.php
r3286209 r3304826 7 7 Plugin URI: https://checkout.mono.bank/woocomerce 8 8 Description: модуль Чекауту від monobank це спосіб автоматизувати процес оформлення покупки на вашому сайті. Доступний функціонал: предзаповнення даних отримувача, рекомендації по доставці та оплаті, всі доступні способи оплати від monobank: еквайринг, Покупка частинами та оплата при отриманні. Має бути підключений інтернет-еквайринг від monobank 9 Version: 1.1 0.39 Version: 1.11.0 10 10 Requires at least: 5.8 11 11 Requires PHP: 7.4 … … 19 19 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 20 20 21 define( 'MONO_VERSION', '1.1 0.3' );21 define( 'MONO_VERSION', '1.11.0' ); 22 22 define( 'MONO__MINIMUM_WP_VERSION', '5.8' ); 23 23 define( 'MONO__PLUGIN_FILE', __FILE__ ); -
mono-checkout/tags/1.11.0/readme.txt
r3286209 r3304826 4 4 Requires at least: 5.8 5 5 Tested up to: 6.8.1 6 Stable tag: 1.1 0.36 Stable tag: 1.11.0 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 54 54 55 55 == Changelog == 56 57 = 1.11.0 = 58 * Додано метод доставки "Вантажні відділення НП" 59 60 = 1.10.4 = 61 * Додано аліас шорткоду - [mono_checkout] 62 * Виправлення помилок, пов'язаних з шорткодами 56 63 57 64 = 1.10.3 = -
mono-checkout/trunk/includes/class.gateway.php
r3286209 r3304826 411 411 return array_keys($this->getShippingOptions()); 412 412 } 413 $result = $option; 413 414 if (!is_array($option)) { 414 return [$option]; 415 } 416 return $option; 415 $result = [$option]; 416 } 417 if (in_array('np_brnm', $result) and !in_array('np_cargo', $result)) { 418 $result[] = 'np_cargo'; 419 } 420 return $result; 417 421 } 418 422 … … 435 439 'np_brnm' => __( 'Nova Poshta', 'mono-checkout' ), 436 440 'np_box' => __( 'NP Postbox', 'mono-checkout' ), 441 'np_cargo' => __( 'NP Cargo', 'mono-checkout' ), 437 442 ]; 438 443 } … … 687 692 688 693 $delivery_methods = array_values(array_unique(array_merge($this->getSelectedShippingOptions(), $individualShippingMethods))); 694 695 if ( 696 in_array('np_cargo', $individualShippingMethods) 697 and !in_array('np_box', $individualShippingMethods) 698 and !in_array('np_brnm', $individualShippingMethods) 699 ) { 700 $delivery_methods = array_values(array_diff($delivery_methods, ['np_box', 'np_brnm'])); 701 } 689 702 $free_delivery_from = $this->get_option('free_delivery_from'); 690 703 $payment_methods = array_values(array_unique(array_merge($this->getSelectedPaymentMethods(), $individualPaymentMethods))); -
mono-checkout/trunk/includes/class.mono.php
r3242725 r3304826 76 76 77 77 add_shortcode( 'monobank_checkout', [$this, 'shortcode_monobank_checkout'] ); 78 add_shortcode( 'mono_checkout', [$this, 'shortcode_monobank_checkout'] ); 78 79 79 80 add_filter( 'woocommerce_valid_order_statuses_for_cancel', [ $this, 'cancel_statuses' ], 10, 2 ); -
mono-checkout/trunk/js/frontend-handlers.js
r3169137 r3304826 56 56 if (formData) { 57 57 let product_id = formData.get('product_id'); 58 if (!product_id) { product_id = el.closest('form').getAttribute('data-product_id'); }58 if (!product_id) { product_id = form.getAttribute('data-product_id'); } 59 59 if (!product_id) { product_id = el.getAttribute('data-product-id'); } 60 60 if (!product_id) { product_id = form.querySelector('[name=add-to-cart]') ? form.querySelector('[name=add-to-cart]').value : null; } -
mono-checkout/trunk/languages/mono-checkout-uk.po
r3249513 r3304826 11 11 "Content-Transfer-Encoding: 8bit\n" 12 12 "POT-Creation-Date: 2023-10-25T00:58:42+03:00\n" 13 "PO-Revision-Date: 2025-0 2-28 07:55+0000\n"13 "PO-Revision-Date: 2025-05-29 06:59+0000\n" 14 14 "X-Generator: Loco https://localise.biz/\n" 15 15 "X-Domain: mono\n" … … 19 19 "X-Loco-Version: 2.6.6; wp-6.3.2" 20 20 21 #: includes/class.gateway.php: 49621 #: includes/class.gateway.php:534 22 22 msgid "" 23 23 "<strong>Important:</strong> mono checkout does not support orders with " … … 34 34 msgstr "Додаткові методи доставки" 35 35 36 #: includes/class.mono.php:18 0 includes/class.mono.php:18136 #: includes/class.mono.php:181 includes/class.mono.php:182 37 37 msgid "API answer" 38 38 msgstr "Відповідь API" 39 39 40 #: includes/class.gateway.php:2 6340 #: includes/class.gateway.php:274 41 41 #| msgid "" 42 42 #| "API token from monopay. Get your token at <a href=\"https://web.monobank." … … 49 49 "monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 50 50 51 #: includes/class.gateway.php:3 6151 #: includes/class.gateway.php:372 52 52 msgid "Automatically complete \"Cash on delivery\" orders" 53 53 msgstr "Автоматично закривати замовленням з оплатою при доставці" 54 54 55 #: includes/class.gateway.php:3 5455 #: includes/class.gateway.php:365 56 56 msgid "Automatically complete paid monocheckout orders" 57 57 msgstr "Автоматично ставити статус \"Виконано\" сплаченим замовленням" 58 58 59 #: includes/class.gateway.php:3 6859 #: includes/class.gateway.php:379 60 60 msgid "Automatically fail unpaid orders" 61 61 msgstr "Автоматично скасовувати несплачені замовлення" 62 62 63 #: includes/class.gateway.php:3 7563 #: includes/class.gateway.php:386 64 64 msgid "Base URL" 65 65 msgstr "Базовий URL" 66 66 67 #: includes/class.gateway.php:3 7767 #: includes/class.gateway.php:388 68 68 msgid "Base URL for mono checkout API." 69 69 msgstr "Базовий URL для API mono checkout" 70 70 71 #: includes/class.gateway.php:3 2271 #: includes/class.gateway.php:333 72 72 msgid "Button style" 73 73 msgstr "Стиль кнопки" … … 81 81 msgstr "Передзвонити клієнту" 82 82 83 #: includes/class.gateway.php:4 1083 #: includes/class.gateway.php:448 84 84 msgid "Card" 85 85 msgstr "Картка" 86 86 87 #: includes/class.gateway.php:3 1887 #: includes/class.gateway.php:329 88 88 msgid "Cart button height (px)" 89 89 msgstr "Висота кнопки в кошику (px)" 90 90 91 #: includes/class.gateway.php:3 1491 #: includes/class.gateway.php:325 92 92 msgid "Cart button width (px)" 93 93 msgstr "Ширина кнопки в кошику (px)" 94 94 95 #: includes/class.gateway.php:5 15 includes/class.gateway.php:69895 #: includes/class.gateway.php:553 includes/class.gateway.php:745 96 96 msgid "Check your mono checkout Token." 97 97 msgstr "Будь-ласка, перевірте Токен чекауту для Вашого магазину." 98 98 99 #: includes/class.gateway.php: 29099 #: includes/class.gateway.php:301 100 100 msgid "Checkout button height (px)" 101 101 msgstr "Висота кнопки на чекауті (px)" 102 102 103 #: includes/class.gateway.php:2 86103 #: includes/class.gateway.php:297 104 104 msgid "Checkout button width (px)" 105 105 msgstr "Ширина кнопки на чекауті (px)" 106 106 107 #: includes/class.gateway.php:2 75107 #: includes/class.gateway.php:286 108 108 msgid "Checkout description" 109 109 msgstr "Опис" 110 110 111 #: includes/class.gateway.php:5 21 includes/class.gateway.php:721111 #: includes/class.gateway.php:559 includes/class.gateway.php:768 112 112 msgid "Checkout is disabled in your account." 113 113 msgstr "Чекаут відключений у Вашому аккаунті." … … 125 125 msgstr "скопіювати код" 126 126 127 #: includes/class.gateway.php:4 01127 #: includes/class.gateway.php:438 128 128 msgid "Courier" 129 129 msgstr "Кур'єр" 130 130 131 #: includes/class.gateway.php:7 16131 #: includes/class.gateway.php:763 132 132 msgid "Delivery method \"%s\" is not available for your store." 133 133 msgstr "Спосіб доставки \"%s\" недоступний для Вашого магазину." 134 134 135 #: includes/class.gateway.php:5 19135 #: includes/class.gateway.php:557 136 136 msgid "Delivery method X is not available for your store." 137 137 msgstr "Спосіб доставки X недоступний для Вашого магазину." 138 138 139 #: includes/class.gateway.php:3 28139 #: includes/class.gateway.php:339 140 140 msgid "Delivery options" 141 141 msgstr "Методи доставки" 142 142 143 #: includes/class.gateway.php:3 08143 #: includes/class.gateway.php:319 144 144 msgid "Enable in cart" 145 145 msgstr "Відобразити в кошику" 146 146 147 #: includes/class.gateway.php:2 55147 #: includes/class.gateway.php:266 148 148 msgid "Enable module" 149 149 msgstr "Активувати модуль" 150 150 151 #: includes/class.gateway.php:2 80151 #: includes/class.gateway.php:291 152 152 msgid "Enable on checkout" 153 153 msgstr "Відобразити на чекауті" 154 154 155 #: includes/class.gateway.php: 294155 #: includes/class.gateway.php:305 156 156 msgid "Enable on product details" 157 157 msgstr "Відобразити на деталях продукту" 158 158 159 #: includes/class.gateway.php:5 13 includes/class.gateway.php:693159 #: includes/class.gateway.php:551 includes/class.gateway.php:740 160 160 msgid "Fill in your mono checkout Token." 161 161 msgstr "Будь-ласка, заповніть Токен чекауту для Вашого магазину." 162 162 163 #: includes/class.gateway.php:3 35163 #: includes/class.gateway.php:346 164 164 msgid "Free delivery from" 165 165 msgstr "Безкоштовна доставка від" 166 166 167 #: includes/class.gateway.php:3 38167 #: includes/class.gateway.php:349 168 168 msgid "Free delivery from this order subtotal. Empty for paid delivery." 169 169 msgstr "" … … 171 171 "доставки." 172 172 173 #: includes/class.gateway.php:5 11173 #: includes/class.gateway.php:549 174 174 msgid "Frequent errors" 175 175 msgstr "Часті помилки" … … 179 179 msgstr "Загальна помилка" 180 180 181 #: includes/class.gateway.php:4 61181 #: includes/class.gateway.php:499 182 182 msgid "Get your monobank app now:" 183 183 msgstr "Скачайте додаток monobank" … … 205 205 msgstr "Оформлення через mono checkout" 206 206 207 #: includes/class.gateway.php: 763207 #: includes/class.gateway.php:810 208 208 #| msgid "" 209 209 #| "monopay declined order: %1$s (code: %2$s)<br/><a class=\"mono-code-" … … 216 216 "code-toggle\">Відповідь API</a><pre class=\"mono-api-answer\">%3$s</pre>" 217 217 218 #: includes/class.gateway.php:7 46218 #: includes/class.gateway.php:793 219 219 #| msgid "" 220 220 #| "monopay declined order: %1$s<br/><a class=\"mono-code-toggle\">API " … … 227 227 "Відповідь API</a><pre class=\"mono-api-answer\">%2$s</pre>" 228 228 229 #: includes/class.mono.php:35 4229 #: includes/class.mono.php:355 230 230 msgid "mono checkout does not support order with coupons" 231 231 msgstr "mono чекаут не підтримує замовлення з купонами" 232 232 233 #: includes/class.gateway.php: 858233 #: includes/class.gateway.php:905 234 234 #| msgid "" 235 235 #| "monopay status update:<strong>%1$s</strong><br/><a class=\"mono-code-" … … 242 242 "Відповідь API</a><pre class=\"mono-api-answer\">%2$s</pre>" 243 243 244 #: includes/class.mono.php:23 6244 #: includes/class.mono.php:237 245 245 msgid "" 246 246 "mono checkout: Please, enable <code>allow_url_fopen</code> setting in PHP " … … 253 253 "cPanel</a>)" 254 254 255 #: includes/class.gateway.php: 781255 #: includes/class.gateway.php:828 256 256 msgid "" 257 257 "mono ID: <strong>%1$s</strong><br/><a href=\"%2$s\" target=\"_blank\">" … … 263 263 "<pre class=\"mono-api-answer\">%3$s</pre>" 264 264 265 #: includes/class.gateway.php:3 72265 #: includes/class.gateway.php:383 266 266 msgid "" 267 267 "mono orders that haven't been paid in 30 minutes will become failed. The " … … 271 271 "Перевірятись будуть тільки замовлення, додані за останню годину." 272 272 273 #: includes/class.mono.php:23 8273 #: includes/class.mono.php:239 274 274 msgid "mono requires Woocommerce to be activated. Plugin features are paused." 275 275 msgstr "" … … 281 281 msgstr "monobank" 282 282 283 #: includes/class.gateway.php:4 56283 #: includes/class.gateway.php:494 284 284 msgid "" 285 285 "More details on <a href=\"https://www.monobank.ua/\" target=\"_blank\">" … … 289 289 "monobank.ua</a>" 290 290 291 #: includes/class.gateway.php: 695 includes/class.gateway.php:700292 #: includes/class.gateway.php:7 09 includes/class.gateway.php:718293 #: includes/class.gateway.php:7 23291 #: includes/class.gateway.php:742 includes/class.gateway.php:747 292 #: includes/class.gateway.php:756 includes/class.gateway.php:765 293 #: includes/class.gateway.php:770 294 294 msgid "More info" 295 295 msgstr "Детальніше" 296 296 297 #: includes/class.gateway.php:4 52297 #: includes/class.gateway.php:490 298 298 msgid "Need help? Check out our FAQ or contact our support." 299 299 msgstr "Потрібна допомога? Подивіться наші ЧаПи або зверніться до підтримки." … … 319 319 msgstr "Не підтверджене <span class=\"count\">(%s)</span>" 320 320 321 #: includes/class.gateway.php:4 02321 #: includes/class.gateway.php:439 322 322 msgid "Nova Poshta" 323 323 msgstr "Нова Пошта" 324 324 325 #: includes/class.gateway.php:403 325 #: includes/class.gateway.php:441 326 msgid "NP Cargo" 327 msgstr "Вантажне відділення НП" 328 329 #: includes/class.gateway.php:440 326 330 msgid "NP Postbox" 327 331 msgstr "Поштомат НП" 328 332 329 #: includes/class.gateway.php:3 48333 #: includes/class.gateway.php:359 330 334 msgid "Number of payments" 331 335 msgstr "Кількість платежів" 332 336 333 #: includes/class.gateway.php:3 51337 #: includes/class.gateway.php:362 334 338 msgid "Number of payments for Purchase in parts." 335 339 msgstr "Кількість платежів в покупці частинами" 336 340 337 #: includes/class.gateway.php:2 68341 #: includes/class.gateway.php:279 338 342 msgid "Order prefix" 339 343 msgstr "Префікс замовлення" 340 344 341 #: includes/class.gateway.php:3 65345 #: includes/class.gateway.php:376 342 346 msgid "" 343 347 "Orders with payment type \"Cash on delivery\" will automatically be " … … 347 351 "\"Виконано\"." 348 352 349 #: includes/class.gateway.php:3 58353 #: includes/class.gateway.php:369 350 354 msgid "" 351 355 "Paid orders will automatically be transitioned to Completed status. However " … … 355 359 "Однак замовлення з оплатою при доставці не автоматично закриті." 356 360 357 #: includes/class.gateway.php:7 26 includes/class.gateway.php:742358 #: includes/class.gateway.php: 759361 #: includes/class.gateway.php:773 includes/class.gateway.php:789 362 #: includes/class.gateway.php:806 359 363 msgid "Payment error: %s" 360 364 msgstr "Помилка платежу: %s" 361 365 362 #: includes/class.gateway.php:7 07366 #: includes/class.gateway.php:754 363 367 msgid "Payment method \"%s\" is not available for your store." 364 368 msgstr "Платіжний метод \"%s\" недоступний для Вашого магазину." 365 369 366 #: includes/class.gateway.php:5 17370 #: includes/class.gateway.php:555 367 371 msgid "Payment method X is not available for your store." 368 372 msgstr "Платіжний метод X недоступний для Вашого магазину." 369 373 370 #: includes/class.gateway.php:3 41374 #: includes/class.gateway.php:352 371 375 msgid "Payment methods" 372 376 msgstr "Платіжні методи" 373 377 374 378 #: includes/class.gateway.php:72 includes/class.gateway.php:89 375 #: includes/class.gateway.php:4 11379 #: includes/class.gateway.php:449 376 380 msgid "Payment on delivery" 377 381 msgstr "Оплата при отриманні" … … 381 385 msgstr "Оплата при отриманні <span class=\"count\">(%s)</span>" 382 386 383 #: includes/class.gateway.php:4 28387 #: includes/class.gateway.php:466 384 388 msgid "Pending payment" 385 389 msgstr "Очікування оплати" 386 390 387 #: includes/class.gateway.php:4 00391 #: includes/class.gateway.php:437 388 392 msgid "Pickup" 389 393 msgstr "Самовивіз" 390 394 391 #: includes/class.gateway.php:5 20395 #: includes/class.gateway.php:558 392 396 msgid "" 393 397 "Please, contact our support at <a href=\"https://web.monobank.ua\" " … … 401 405 "в налаштуваннях чекауту." 402 406 403 #: includes/class.gateway.php:5 18407 #: includes/class.gateway.php:556 404 408 #| msgid "" 405 409 #| "Please, contact our support at <a href=\"https://web.monobank.ua\" " … … 416 420 "в налаштуваннях чекауту." 417 421 418 #: includes/class.gateway.php:5 22422 #: includes/class.gateway.php:560 419 423 msgid "" 420 424 "Please, enable your checkout in your account at <a href=\"https://web." … … 424 428 "monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 425 429 426 #: includes/class.gateway.php:5 14430 #: includes/class.gateway.php:552 427 431 msgid "" 428 432 "Please, get your token at <a href=\"https://web.monobank.ua\" " … … 432 436 "ua\" target=\"_blank\">web.monobank.ua</a>" 433 437 434 #: includes/class.gateway.php:5 16438 #: includes/class.gateway.php:554 435 439 msgid "" 436 440 "Please, make sure you used correct token from <a href=\"https://web.monobank." … … 440 444 "href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 441 445 442 #: includes/class.gateway.php:2 70446 #: includes/class.gateway.php:281 443 447 msgid "Prepended to order numbers to distinguish between different stores." 444 448 msgstr "" 445 449 "Додається до номеру замовлення, щоб розрізняти замовлення з різних магазинів" 446 450 447 #: includes/class.gateway.php:3 04451 #: includes/class.gateway.php:315 448 452 msgid "Product details button height (px)" 449 453 msgstr "Висота кнопки на деталях продукту (px)" 450 454 451 #: includes/class.gateway.php:3 00455 #: includes/class.gateway.php:311 452 456 msgid "Product details button width (px)" 453 457 msgstr "Ширина кнопки на деталях продукту (px)" 454 458 455 #: includes/class.gateway.php:4 12459 #: includes/class.gateway.php:450 456 460 msgid "Purchase in parts" 457 461 msgstr "Покупка частинами" … … 477 481 "методів." 478 482 479 #: includes/class.gateway.php:5 00483 #: includes/class.gateway.php:538 480 484 msgid "Settings" 481 485 msgstr "Налаштування" 482 486 483 #: includes/class.gateway.php: 481487 #: includes/class.gateway.php:519 484 488 msgid "Statuses of mono checkout orders:" 485 489 msgstr "Статуси замовлень mono checkout:" 486 490 487 #: includes/class.gateway.php:143 includes/class.gateway.php: 691491 #: includes/class.gateway.php:143 includes/class.gateway.php:738 488 492 msgid "Technical error" 489 493 msgstr "Технічна помилка" 490 494 491 #: includes/class.mono.php:43 5495 #: includes/class.mono.php:436 492 496 msgid "This payment method is not applicable to orders with coupons." 493 497 msgstr "Цей платіжний метод не підтримує замовлення з купонами." 494 498 495 #: includes/class.gateway.php:4 55499 #: includes/class.gateway.php:493 496 500 msgid "" 497 501 "To get token, please, send request in your monobank app and then visit <a " … … 502 506 "web.monobank.ua</a>" 503 507 504 #: includes/class.gateway.php:2 61508 #: includes/class.gateway.php:272 505 509 msgid "Token" 506 510 msgstr "Токен" … … 510 514 msgstr "Оновити статус платежу" 511 515 512 #: includes/class.gateway.php:3 32 includes/class.gateway.php:345516 #: includes/class.gateway.php:343 includes/class.gateway.php:356 513 517 msgid "Use Ctrl for multiple choices" 514 518 msgstr "Натисніть Ctrl, щоб обрати декілька варіантів" 515 519 516 #: includes/class.gateway.php:7 30520 #: includes/class.gateway.php:777 517 521 #| msgid "" 518 522 #| "Wrong answer from monopay.<br/><a class=\"mono-code-toggle\">API " … … 529 533 msgstr "Так" 530 534 531 #: includes/class.gateway.php:4 57535 #: includes/class.gateway.php:495 532 536 msgid "Your callback URL: %s" 533 537 msgstr "Ваш URL колбеку: %s" 534 538 535 #: includes/class.gateway.php:4 58539 #: includes/class.gateway.php:496 536 540 msgid "Your return URL: %s" 537 541 msgstr "Ваш URL після успішної оплати (return URL): %s" -
mono-checkout/trunk/languages/mono-checkout.pot
r3249513 r3304826 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: mono checkout 1.10. 0\n"5 "Project-Id-Version: mono checkout 1.10.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mono\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 2-28T07:53:27+00:00\n"12 "POT-Creation-Date: 2025-05-29T06:57:35+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.8.1\n" … … 60 60 #: includes/class.gateway.php:72 61 61 #: includes/class.gateway.php:89 62 #: includes/class.gateway.php:4 1162 #: includes/class.gateway.php:449 63 63 msgid "Payment on delivery" 64 64 msgstr "" … … 103 103 104 104 #: includes/class.gateway.php:143 105 #: includes/class.gateway.php: 691105 #: includes/class.gateway.php:738 106 106 msgid "Technical error" 107 107 msgstr "" 108 108 109 #: includes/class.gateway.php:2 55109 #: includes/class.gateway.php:266 110 110 msgid "Enable module" 111 111 msgstr "" 112 112 113 #: includes/class.gateway.php:2 61113 #: includes/class.gateway.php:272 114 114 msgid "Token" 115 115 msgstr "" 116 116 117 #: includes/class.gateway.php:2 63117 #: includes/class.gateway.php:274 118 118 msgid "API token from mono checkout. Get your token at <a href=\"https://web.monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 119 119 msgstr "" 120 120 121 #: includes/class.gateway.php:2 68121 #: includes/class.gateway.php:279 122 122 msgid "Order prefix" 123 123 msgstr "" 124 124 125 #: includes/class.gateway.php:2 70125 #: includes/class.gateway.php:281 126 126 msgid "Prepended to order numbers to distinguish between different stores." 127 127 msgstr "" 128 128 129 #: includes/class.gateway.php:2 75129 #: includes/class.gateway.php:286 130 130 msgid "Checkout description" 131 131 msgstr "" 132 132 133 #: includes/class.gateway.php:2 80133 #: includes/class.gateway.php:291 134 134 msgid "Enable on checkout" 135 135 msgstr "" 136 136 137 #: includes/class.gateway.php:2 86137 #: includes/class.gateway.php:297 138 138 msgid "Checkout button width (px)" 139 139 msgstr "" 140 140 141 #: includes/class.gateway.php: 290141 #: includes/class.gateway.php:301 142 142 msgid "Checkout button height (px)" 143 143 msgstr "" 144 144 145 #: includes/class.gateway.php: 294145 #: includes/class.gateway.php:305 146 146 msgid "Enable on product details" 147 147 msgstr "" 148 148 149 #: includes/class.gateway.php:3 00149 #: includes/class.gateway.php:311 150 150 msgid "Product details button width (px)" 151 151 msgstr "" 152 152 153 #: includes/class.gateway.php:3 04153 #: includes/class.gateway.php:315 154 154 msgid "Product details button height (px)" 155 155 msgstr "" 156 156 157 #: includes/class.gateway.php:3 08157 #: includes/class.gateway.php:319 158 158 msgid "Enable in cart" 159 159 msgstr "" 160 160 161 #: includes/class.gateway.php:3 14161 #: includes/class.gateway.php:325 162 162 msgid "Cart button width (px)" 163 163 msgstr "" 164 164 165 #: includes/class.gateway.php:3 18165 #: includes/class.gateway.php:329 166 166 msgid "Cart button height (px)" 167 167 msgstr "" 168 168 169 #: includes/class.gateway.php:3 22169 #: includes/class.gateway.php:333 170 170 msgid "Button style" 171 171 msgstr "" 172 172 173 #: includes/class.gateway.php:3 28173 #: includes/class.gateway.php:339 174 174 msgid "Delivery options" 175 175 msgstr "" 176 176 177 #: includes/class.gateway.php:3 32178 #: includes/class.gateway.php:3 45177 #: includes/class.gateway.php:343 178 #: includes/class.gateway.php:356 179 179 msgid "Use Ctrl for multiple choices" 180 180 msgstr "" 181 181 182 #: includes/class.gateway.php:3 35182 #: includes/class.gateway.php:346 183 183 msgid "Free delivery from" 184 184 msgstr "" 185 185 186 #: includes/class.gateway.php:3 38186 #: includes/class.gateway.php:349 187 187 msgid "Free delivery from this order subtotal. Empty for paid delivery." 188 188 msgstr "" 189 189 190 #: includes/class.gateway.php:3 41190 #: includes/class.gateway.php:352 191 191 msgid "Payment methods" 192 192 msgstr "" 193 193 194 #: includes/class.gateway.php:3 48194 #: includes/class.gateway.php:359 195 195 msgid "Number of payments" 196 196 msgstr "" 197 197 198 #: includes/class.gateway.php:3 51198 #: includes/class.gateway.php:362 199 199 msgid "Number of payments for Purchase in parts." 200 200 msgstr "" 201 201 202 #: includes/class.gateway.php:3 54202 #: includes/class.gateway.php:365 203 203 msgid "Automatically complete paid monocheckout orders" 204 204 msgstr "" 205 205 206 #: includes/class.gateway.php:3 58206 #: includes/class.gateway.php:369 207 207 msgid "Paid orders will automatically be transitioned to Completed status. However \"Cash on delivery\" orders will not be closed automatically." 208 208 msgstr "" 209 209 210 #: includes/class.gateway.php:3 61210 #: includes/class.gateway.php:372 211 211 msgid "Automatically complete \"Cash on delivery\" orders" 212 212 msgstr "" 213 213 214 #: includes/class.gateway.php:3 65214 #: includes/class.gateway.php:376 215 215 msgid "Orders with payment type \"Cash on delivery\" will automatically be transitioned to Completed status." 216 216 msgstr "" 217 217 218 #: includes/class.gateway.php:3 68218 #: includes/class.gateway.php:379 219 219 msgid "Automatically fail unpaid orders" 220 220 msgstr "" 221 221 222 #: includes/class.gateway.php:3 72222 #: includes/class.gateway.php:383 223 223 msgid "mono orders that haven't been paid in 30 minutes will become failed. The check is performed for orders placed in the last hour only." 224 224 msgstr "" 225 225 226 #: includes/class.gateway.php:3 75226 #: includes/class.gateway.php:386 227 227 msgid "Base URL" 228 228 msgstr "" 229 229 230 #: includes/class.gateway.php:3 77230 #: includes/class.gateway.php:388 231 231 msgid "Base URL for mono checkout API." 232 232 msgstr "" 233 233 234 #: includes/class.gateway.php:4 00234 #: includes/class.gateway.php:437 235 235 msgid "Pickup" 236 236 msgstr "" 237 237 238 #: includes/class.gateway.php:4 01238 #: includes/class.gateway.php:438 239 239 msgid "Courier" 240 240 msgstr "" 241 241 242 #: includes/class.gateway.php:4 02242 #: includes/class.gateway.php:439 243 243 msgid "Nova Poshta" 244 244 msgstr "" 245 245 246 #: includes/class.gateway.php:4 03246 #: includes/class.gateway.php:440 247 247 msgid "NP Postbox" 248 248 msgstr "" 249 249 250 #: includes/class.gateway.php:410 250 #: includes/class.gateway.php:441 251 msgid "NP Cargo" 252 msgstr "" 253 254 #: includes/class.gateway.php:448 251 255 msgid "Card" 252 256 msgstr "" 253 257 254 #: includes/class.gateway.php:4 12258 #: includes/class.gateway.php:450 255 259 msgid "Purchase in parts" 256 260 msgstr "" 257 261 258 #: includes/class.gateway.php:4 28262 #: includes/class.gateway.php:466 259 263 msgid "Pending payment" 260 264 msgstr "" 261 265 262 #: includes/class.gateway.php:4 52266 #: includes/class.gateway.php:490 263 267 msgid "Need help? Check out our FAQ or contact our support." 264 268 msgstr "" 265 269 266 #: includes/class.gateway.php:4 55270 #: includes/class.gateway.php:493 267 271 msgid "To get token, please, send request in your monobank app and then visit <a href=\"https://web.monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 268 272 msgstr "" 269 273 270 #: includes/class.gateway.php:4 56274 #: includes/class.gateway.php:494 271 275 msgid "More details on <a href=\"https://www.monobank.ua/\" target=\"_blank\">monobank.ua</a>" 272 276 msgstr "" 273 277 274 #: includes/class.gateway.php:4 57278 #: includes/class.gateway.php:495 275 279 msgid "Your callback URL: %s" 276 280 msgstr "" 277 281 278 #: includes/class.gateway.php:4 58282 #: includes/class.gateway.php:496 279 283 msgid "Your return URL: %s" 280 284 msgstr "" 281 285 282 #: includes/class.gateway.php:4 61286 #: includes/class.gateway.php:499 283 287 msgid "Get your monobank app now:" 284 288 msgstr "" 285 289 286 #: includes/class.gateway.php: 481290 #: includes/class.gateway.php:519 287 291 msgid "Statuses of mono checkout orders:" 288 292 msgstr "" 289 293 290 #: includes/class.gateway.php: 496294 #: includes/class.gateway.php:534 291 295 msgid "<strong>Important:</strong> mono checkout does not support orders with coupons." 292 296 msgstr "" 293 297 294 #: includes/class.gateway.php:5 00298 #: includes/class.gateway.php:538 295 299 msgid "Settings" 296 300 msgstr "" 297 301 298 #: includes/class.gateway.php:5 11302 #: includes/class.gateway.php:549 299 303 msgid "Frequent errors" 300 304 msgstr "" 301 305 302 #: includes/class.gateway.php:5 13303 #: includes/class.gateway.php: 693306 #: includes/class.gateway.php:551 307 #: includes/class.gateway.php:740 304 308 msgid "Fill in your mono checkout Token." 305 309 msgstr "" 306 310 307 #: includes/class.gateway.php:5 14311 #: includes/class.gateway.php:552 308 312 msgid "Please, get your token at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 309 313 msgstr "" 310 314 311 #: includes/class.gateway.php:5 15312 #: includes/class.gateway.php: 698315 #: includes/class.gateway.php:553 316 #: includes/class.gateway.php:745 313 317 msgid "Check your mono checkout Token." 314 318 msgstr "" 315 319 316 #: includes/class.gateway.php:5 16320 #: includes/class.gateway.php:554 317 321 msgid "Please, make sure you used correct token from <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 318 322 msgstr "" 319 323 320 #: includes/class.gateway.php:5 17324 #: includes/class.gateway.php:555 321 325 msgid "Payment method X is not available for your store." 322 326 msgstr "" 323 327 324 #: includes/class.gateway.php:5 18328 #: includes/class.gateway.php:556 325 329 msgid "Please, contact our support at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a> to enable corresponding payment method for your account. You can disable it temporarily to keep using mono checkout." 326 330 msgstr "" 327 331 328 #: includes/class.gateway.php:5 19332 #: includes/class.gateway.php:557 329 333 msgid "Delivery method X is not available for your store." 330 334 msgstr "" 331 335 332 #: includes/class.gateway.php:5 20336 #: includes/class.gateway.php:558 333 337 msgid "Please, contact our support at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a> to enable corresponding delivery method for your account. You can disable it temporarily to keep using mono checkout." 334 338 msgstr "" 335 339 336 #: includes/class.gateway.php:5 21337 #: includes/class.gateway.php:7 21340 #: includes/class.gateway.php:559 341 #: includes/class.gateway.php:768 338 342 msgid "Checkout is disabled in your account." 339 343 msgstr "" 340 344 341 #: includes/class.gateway.php:5 22345 #: includes/class.gateway.php:560 342 346 msgid "Please, enable your checkout in your account at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 343 347 msgstr "" 344 348 345 #: includes/class.gateway.php: 695346 #: includes/class.gateway.php:7 00347 #: includes/class.gateway.php:7 09348 #: includes/class.gateway.php:7 18349 #: includes/class.gateway.php:7 23349 #: includes/class.gateway.php:742 350 #: includes/class.gateway.php:747 351 #: includes/class.gateway.php:756 352 #: includes/class.gateway.php:765 353 #: includes/class.gateway.php:770 350 354 msgid "More info" 351 355 msgstr "" 352 356 353 #: includes/class.gateway.php:7 07357 #: includes/class.gateway.php:754 354 358 msgid "Payment method \"%s\" is not available for your store." 355 359 msgstr "" 356 360 357 #: includes/class.gateway.php:7 16361 #: includes/class.gateway.php:763 358 362 msgid "Delivery method \"%s\" is not available for your store." 359 363 msgstr "" 360 364 361 #: includes/class.gateway.php:7 26362 #: includes/class.gateway.php:7 42363 #: includes/class.gateway.php: 759365 #: includes/class.gateway.php:773 366 #: includes/class.gateway.php:789 367 #: includes/class.gateway.php:806 364 368 msgid "Payment error: %s" 365 369 msgstr "" 366 370 367 #: includes/class.gateway.php:7 30371 #: includes/class.gateway.php:777 368 372 msgid "Wrong answer from mono checkout.<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%s</pre>" 369 373 msgstr "" 370 374 371 #: includes/class.gateway.php:7 46375 #: includes/class.gateway.php:793 372 376 msgid "mono checkout declined order: %1$s<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%2$s</pre>" 373 377 msgstr "" 374 378 375 #: includes/class.gateway.php: 763379 #: includes/class.gateway.php:810 376 380 msgid "mono checkout declined order: %1$s (code: %2$s)<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%3$s</pre>" 377 381 msgstr "" 378 382 379 #: includes/class.gateway.php: 781383 #: includes/class.gateway.php:828 380 384 msgid "mono ID: <strong>%1$s</strong><br/><a href=\"%2$s\" target=\"_blank\">Checkout link</a><br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%3$s</pre>" 381 385 msgstr "" 382 386 383 #: includes/class.gateway.php: 858387 #: includes/class.gateway.php:905 384 388 msgid "mono checkout status update:<strong>%1$s</strong><br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%2$s</pre>" 385 389 msgstr "" 386 390 387 #: includes/class.mono.php:180388 391 #: includes/class.mono.php:181 392 #: includes/class.mono.php:182 389 393 msgid "API answer" 390 394 msgstr "" 391 395 392 #: includes/class.mono.php:23 6396 #: includes/class.mono.php:237 393 397 msgid "mono checkout: Please, enable <code>allow_url_fopen</code> setting in PHP configuration (<a href=\"https://chemicloud.com/kb/article/how-to-enable-or-disable-allow_url_fopen-in-cpanel/\" target=\"_blank\">cPanel manual</a>)" 394 398 msgstr "" 395 399 396 #: includes/class.mono.php:23 8400 #: includes/class.mono.php:239 397 401 msgid "mono requires Woocommerce to be activated. Plugin features are paused." 398 402 msgstr "" 399 403 400 #: includes/class.mono.php:35 4404 #: includes/class.mono.php:355 401 405 msgid "mono checkout does not support order with coupons" 402 406 msgstr "" 403 407 404 #: includes/class.mono.php:43 5408 #: includes/class.mono.php:436 405 409 msgid "This payment method is not applicable to orders with coupons." 406 410 msgstr "" -
mono-checkout/trunk/mono.php
r3286209 r3304826 7 7 Plugin URI: https://checkout.mono.bank/woocomerce 8 8 Description: модуль Чекауту від monobank це спосіб автоматизувати процес оформлення покупки на вашому сайті. Доступний функціонал: предзаповнення даних отримувача, рекомендації по доставці та оплаті, всі доступні способи оплати від monobank: еквайринг, Покупка частинами та оплата при отриманні. Має бути підключений інтернет-еквайринг від monobank 9 Version: 1.1 0.39 Version: 1.11.0 10 10 Requires at least: 5.8 11 11 Requires PHP: 7.4 … … 19 19 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 20 20 21 define( 'MONO_VERSION', '1.1 0.3' );21 define( 'MONO_VERSION', '1.11.0' ); 22 22 define( 'MONO__MINIMUM_WP_VERSION', '5.8' ); 23 23 define( 'MONO__PLUGIN_FILE', __FILE__ ); -
mono-checkout/trunk/readme.txt
r3286209 r3304826 4 4 Requires at least: 5.8 5 5 Tested up to: 6.8.1 6 Stable tag: 1.1 0.36 Stable tag: 1.11.0 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 54 54 55 55 == Changelog == 56 57 = 1.11.0 = 58 * Додано метод доставки "Вантажні відділення НП" 59 60 = 1.10.4 = 61 * Додано аліас шорткоду - [mono_checkout] 62 * Виправлення помилок, пов'язаних з шорткодами 56 63 57 64 = 1.10.3 =
Note: See TracChangeset
for help on using the changeset viewer.