Changeset 3098419
- Timestamp:
- 06/06/2024 08:33:43 AM (22 months ago)
- Location:
- mono-checkout
- Files:
-
- 7 edited
- 22 copied
-
tags/1.8.2 (copied) (copied from mono-checkout/trunk)
-
tags/1.8.2/css (copied) (copied from mono-checkout/trunk/css)
-
tags/1.8.2/css/admin-method.css (copied) (copied from mono-checkout/trunk/css/admin-method.css)
-
tags/1.8.2/css/mono-admin.css (copied) (copied from mono-checkout/trunk/css/mono-admin.css)
-
tags/1.8.2/css/mono-btn.css (copied) (copied from mono-checkout/trunk/css/mono-btn.css)
-
tags/1.8.2/images (copied) (copied from mono-checkout/trunk/images)
-
tags/1.8.2/includes (copied) (copied from mono-checkout/trunk/includes)
-
tags/1.8.2/includes/MonoApi.php (copied) (copied from mono-checkout/trunk/includes/MonoApi.php)
-
tags/1.8.2/includes/class.gateway.php (copied) (copied from mono-checkout/trunk/includes/class.gateway.php) (5 diffs)
-
tags/1.8.2/includes/class.mono.php (copied) (copied from mono-checkout/trunk/includes/class.mono.php) (3 diffs)
-
tags/1.8.2/js (copied) (copied from mono-checkout/trunk/js)
-
tags/1.8.2/js/admin-handlers.js (copied) (copied from mono-checkout/trunk/js/admin-handlers.js)
-
tags/1.8.2/js/frontend-handlers.js (copied) (copied from mono-checkout/trunk/js/frontend-handlers.js)
-
tags/1.8.2/languages (copied) (copied from mono-checkout/trunk/languages)
-
tags/1.8.2/languages/mono-checkout-uk.mo (copied) (copied from mono-checkout/trunk/languages/mono-checkout-uk.mo)
-
tags/1.8.2/languages/mono-checkout-uk.po (copied) (copied from mono-checkout/trunk/languages/mono-checkout-uk.po) (23 diffs)
-
tags/1.8.2/languages/mono-checkout.pot (copied) (copied from mono-checkout/trunk/languages/mono-checkout.pot) (4 diffs)
-
tags/1.8.2/mono.php (copied) (copied from mono-checkout/trunk/mono.php) (2 diffs)
-
tags/1.8.2/readme.txt (copied) (copied from mono-checkout/trunk/readme.txt) (2 diffs)
-
tags/1.8.2/templates (copied) (copied from mono-checkout/trunk/templates)
-
tags/1.8.2/templates/base_button.php (copied) (copied from mono-checkout/trunk/templates/base_button.php)
-
tags/1.8.2/templates/button_error.php (copied) (copied from mono-checkout/trunk/templates/button_error.php)
-
trunk/includes/class.gateway.php (modified) (5 diffs)
-
trunk/includes/class.mono.php (modified) (3 diffs)
-
trunk/languages/mono-checkout-uk.mo (modified) (previous)
-
trunk/languages/mono-checkout-uk.po (modified) (23 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.8.2/includes/class.gateway.php
r3047124 r3098419 53 53 'show_in_admin_all_list' => true, 54 54 'exclude_from_search' => false, 55 'label_count' => _n_noop( __( 'Not authorized <span class="count">(%s)</span>' ), __( 'Not authorized <span class="count">(%s)</span>' ) )55 'label_count' => _n_noop( __( 'Not authorized <span class="count">(%s)</span>', 'mono-checkout' ), __( 'Not authorized <span class="count">(%s)</span>', 'mono-checkout' ) ) 56 56 ); 57 57 $order_statuses['wc-not_confirmed'] = array( … … 61 61 'show_in_admin_all_list' => true, 62 62 'exclude_from_search' => false, 63 'label_count' => _n_noop( __( 'Not confirmed <span class="count">(%s)</span>' ), __( 'Not confirmed <span class="count">(%s)</span>' ) )63 'label_count' => _n_noop( __( 'Not confirmed <span class="count">(%s)</span>', 'mono-checkout' ), __( 'Not confirmed <span class="count">(%s)</span>', 'mono-checkout' ) ) 64 64 ); 65 65 $order_statuses['wc-cash_on_delivery'] = array( … … 69 69 'show_in_admin_all_list' => true, 70 70 'exclude_from_search' => false, 71 'label_count' => _n_noop( __( 'Payment on delivery <span class="count">(%s)</span>' ), __( 'Payment on delivery <span class="count">(%s)</span>' ) )71 'label_count' => _n_noop( __( 'Payment on delivery <span class="count">(%s)</span>', 'mono-checkout' ), __( 'Payment on delivery <span class="count">(%s)</span>', 'mono-checkout' ) ) 72 72 ); 73 73 return $order_statuses; … … 217 217 ), 218 218 'description' => array( 219 'title' => __( 'Checkout description', ' woocommerce' ),219 'title' => __( 'Checkout description', 'mono-checkout' ), 220 220 'type' => 'textarea', 221 221 'default' => '' … … 373 373 <div> 374 374 <div> 375 <p><a href="#faq"><?php esc_html(__( 'Need help? Check out our FAQ or contact our support.' )); ?></a></p>375 <p><a href="#faq"><?php esc_html(__( 'Need help? Check out our FAQ or contact our support.', 'mono-checkout' )); ?></a></p> 376 376 </div> 377 377 <div> -
mono-checkout/tags/1.8.2/includes/class.mono.php
r3045127 r3098419 66 66 67 67 $this->setup_notifications(); 68 $this->configure_order_email(); 68 69 69 70 $this->init_gateway(); … … 123 124 } 124 125 126 public function configure_order_email() { 127 add_filter('woocommerce_mail_callback_params', [$this, 'replace_np_id_with_address'], 10, 2); 128 } 129 130 /** 131 * @param $parameters array - array( $to, wp_specialchars_decode( $subject ), $message, $headers, $attachments ) 132 * @param $new_order_email \WC_Email_New_Order 133 */ 134 public function replace_np_id_with_address( $parameters, $new_order_email ) { 135 /** @var \WC_Order $order */ 136 $order = $new_order_email->object; 137 if (Mono_Gateway::is_mono_order_by_id($order->get_id())) { 138 if ($this->is_valid_branch_id($order->get_billing_address_1())) { 139 $parameters[2] = str_replace($order->get_billing_address_1(), $order->get_shipping_address_1(), $parameters[2]); 140 } 141 142 } 143 return $parameters; 144 } 145 146 public function is_valid_branch_id( $branch_id ) { 147 return preg_match('/^[^\s]+$/i', $branch_id); 148 } 149 125 150 public function can_run() { 126 151 return $this->canRun; … … 310 335 if ($this->has_order_coupon()) { 311 336 if (current_user_can( 'activate_plugins' )) { 312 $this->render('button_error', ['message' => __( "mono checkout does not support order with coupons", "mono " )] );337 $this->render('button_error', ['message' => __( "mono checkout does not support order with coupons", "mono-checkout" )] ); 313 338 } 314 339 return; -
mono-checkout/tags/1.8.2/languages/mono-checkout-uk.po
r3045127 r3098419 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mono\n" 7 7 "Last-Translator: \n" 8 "Language-Team: Ukrainian\n"8 "Language-Team: Українська\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 12 "POT-Creation-Date: 2023-10-25T00:58:42+03:00\n" 13 "PO-Revision-Date: 2024-0 2-29 09:50+0000\n"13 "PO-Revision-Date: 2024-03-11 13:32+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:41 621 #: includes/class.gateway.php:419 22 22 msgid "" 23 23 "<strong>Important:</strong> mono checkout does not support orders with " … … 30 30 msgstr "Відповідь API" 31 31 32 #: includes/class.gateway.php:20 432 #: includes/class.gateway.php:207 33 33 #| msgid "" 34 34 #| "API token from monopay. Get your token at <a href=\"https://web.monobank." … … 41 41 "monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 42 42 43 #: includes/class.gateway.php:29 543 #: includes/class.gateway.php:298 44 44 msgid "Base URL" 45 45 msgstr "Базовий URL" 46 46 47 #: includes/class.gateway.php: 29747 #: includes/class.gateway.php:300 48 48 msgid "Base URL for mono checkout API." 49 49 msgstr "Базовий URL для API mono checkout" 50 50 51 #: includes/class.gateway.php:26 351 #: includes/class.gateway.php:266 52 52 msgid "Button style" 53 53 msgstr "Стиль кнопки" … … 57 57 msgstr "Оформити через mono checkout" 58 58 59 #: includes/class.gateway.php: 8859 #: includes/class.gateway.php:91 60 60 msgid "Call client" 61 61 msgstr "Передзвонити клієнту" 62 62 63 #: includes/class.gateway.php:33 063 #: includes/class.gateway.php:333 64 64 msgid "Card" 65 65 msgstr "Картка" 66 66 67 #: includes/class.gateway.php:2 5967 #: includes/class.gateway.php:262 68 68 msgid "Cart button height (px)" 69 69 msgstr "Висота кнопки в кошику (px)" 70 70 71 #: includes/class.gateway.php:25 571 #: includes/class.gateway.php:258 72 72 msgid "Cart button width (px)" 73 73 msgstr "Ширина кнопки в кошику (px)" 74 74 75 #: includes/class.gateway.php:43 5 includes/class.gateway.php:61375 #: includes/class.gateway.php:438 includes/class.gateway.php:616 76 76 msgid "Check your mono checkout Token." 77 77 msgstr "Будь-ласка, перевірте Токен чекауту для Вашого магазину." 78 78 79 #: includes/class.gateway.php:23 179 #: includes/class.gateway.php:234 80 80 msgid "Checkout button height (px)" 81 81 msgstr "Висота кнопки на чекауті (px)" 82 82 83 #: includes/class.gateway.php:2 2783 #: includes/class.gateway.php:230 84 84 msgid "Checkout button width (px)" 85 85 msgstr "Ширина кнопки на чекауті (px)" 86 86 87 #: includes/class.gateway.php:441 includes/class.gateway.php:636 87 #: includes/class.gateway.php:219 88 msgid "Checkout description" 89 msgstr "Опис" 90 91 #: includes/class.gateway.php:444 includes/class.gateway.php:639 88 92 msgid "Checkout is disabled in your account." 89 93 msgstr "Чекаут відключений у Вашому аккаунті." 90 94 91 #: includes/class.gateway.php:10 095 #: includes/class.gateway.php:103 92 96 msgid "City" 93 97 msgstr "Місто" 94 98 95 #: includes/class.gateway.php: 99 includes/class.gateway.php:10199 #: includes/class.gateway.php:102 includes/class.gateway.php:104 96 100 msgid "copy code" 97 101 msgstr "скопіювати код" 98 102 99 #: includes/class.gateway.php:32 1103 #: includes/class.gateway.php:324 100 104 msgid "Courier" 101 105 msgstr "Кур'єр" 102 106 103 #: includes/class.gateway.php:63 1107 #: includes/class.gateway.php:634 104 108 msgid "Delivery method \"%s\" is not available for your store." 105 109 msgstr "Спосіб доставки \"%s\" недоступний для Вашого магазину." 106 110 107 #: includes/class.gateway.php:4 39111 #: includes/class.gateway.php:442 108 112 msgid "Delivery method X is not available for your store." 109 113 msgstr "Спосіб доставки X недоступний для Вашого магазину." 110 114 111 #: includes/class.gateway.php:2 69115 #: includes/class.gateway.php:272 112 116 msgid "Delivery options" 113 117 msgstr "Методи доставки" 114 118 115 #: includes/class.gateway.php:2 49119 #: includes/class.gateway.php:252 116 120 msgid "Enable in cart" 117 121 msgstr "Відобразити в кошику" 118 122 119 #: includes/class.gateway.php:19 6123 #: includes/class.gateway.php:199 120 124 msgid "Enable module" 121 125 msgstr "Активувати модуль" 122 126 123 #: includes/class.gateway.php:22 1127 #: includes/class.gateway.php:224 124 128 msgid "Enable on checkout" 125 129 msgstr "Відобразити на чекауті" 126 130 127 #: includes/class.gateway.php:23 5131 #: includes/class.gateway.php:238 128 132 msgid "Enable on product details" 129 133 msgstr "Відобразити на деталях продукту" 130 134 131 #: includes/class.gateway.php:43 3 includes/class.gateway.php:608135 #: includes/class.gateway.php:436 includes/class.gateway.php:611 132 136 msgid "Fill in your mono checkout Token." 133 137 msgstr "Будь-ласка, заповніть Токен чекауту для Вашого магазину." 134 138 135 #: includes/class.gateway.php:27 6139 #: includes/class.gateway.php:279 136 140 msgid "Free delivery from" 137 141 msgstr "Безкоштовна доставка від" 138 142 139 #: includes/class.gateway.php:2 79143 #: includes/class.gateway.php:282 140 144 msgid "Free delivery from this order subtotal. Empty for paid delivery." 141 145 msgstr "" … … 143 147 "доставки." 144 148 145 #: includes/class.gateway.php:43 1149 #: includes/class.gateway.php:434 146 150 msgid "Frequent errors" 147 151 msgstr "Часті помилки" … … 151 155 msgstr "Загальна помилка" 152 156 153 #: includes/class.gateway.php:38 1157 #: includes/class.gateway.php:384 154 158 msgid "Get your monobank app now:" 155 159 msgstr "Скачайте додаток monobank" 156 160 157 #: includes/class.gateway.php: 17161 #: includes/class.gateway.php:20 158 162 msgid "Go to mono checkout" 159 163 msgstr "Перейти до mono checkout" … … 161 165 #. Plugin URI of the plugin 162 166 msgid "https://checkout.mono.bank/woocomerce" 163 msgstr " "167 msgstr "https://checkout.mono.bank/woocomerce" 164 168 165 169 #. Author URI of the plugin 166 170 msgid "https://monobank.ua/" 167 msgstr " "171 msgstr "https://monobank.ua/" 168 172 169 173 #: templates/base_button.php:25 … … 176 180 msgstr "Оформлення через mono checkout" 177 181 178 #: includes/class.gateway.php:6 78182 #: includes/class.gateway.php:681 179 183 #| msgid "" 180 184 #| "monopay declined order: %1$s (code: %2$s)<br/><a class=\"mono-code-" … … 187 191 "code-toggle\">Відповідь API</a><pre class=\"mono-api-answer\">%3$s</pre>" 188 192 189 #: includes/class.gateway.php:66 1193 #: includes/class.gateway.php:664 190 194 #| msgid "" 191 195 #| "monopay declined order: %1$s<br/><a class=\"mono-code-toggle\">API " … … 198 202 "Відповідь API</a><pre class=\"mono-api-answer\">%2$s</pre>" 199 203 200 #: includes/class.gateway.php:743 204 #: includes/class.mono.php:312 205 msgid "mono checkout does not support order with coupons" 206 msgstr "mono чекаут не підтримує замовлення з купонами" 207 208 #: includes/class.gateway.php:758 201 209 #| msgid "" 202 210 #| "monopay status update:<strong>%1$s</strong><br/><a class=\"mono-code-" … … 220 228 "cPanel</a>)" 221 229 222 #: includes/class.gateway.php:69 6230 #: includes/class.gateway.php:699 223 231 msgid "" 224 232 "mono ID: <strong>%1$s</strong><br/><a href=\"%2$s\" target=\"_blank\">" … … 238 246 #. Author of the plugin 239 247 msgid "monobank" 240 msgstr " "241 242 #: includes/class.gateway.php:37 6248 msgstr "monobank" 249 250 #: includes/class.gateway.php:379 243 251 msgid "" 244 252 "More details on <a href=\"https://www.monobank.ua/\" target=\"_blank\">" … … 248 256 "monobank.ua</a>" 249 257 250 #: includes/class.gateway.php:61 0 includes/class.gateway.php:615251 #: includes/class.gateway.php:62 4 includes/class.gateway.php:633252 #: includes/class.gateway.php:6 38258 #: includes/class.gateway.php:613 includes/class.gateway.php:618 259 #: includes/class.gateway.php:627 includes/class.gateway.php:636 260 #: includes/class.gateway.php:641 253 261 msgid "More info" 254 262 msgstr "Детальніше" 255 263 256 #: includes/class.gateway.php:88 264 #: includes/class.gateway.php:375 265 msgid "Need help? Check out our FAQ or contact our support." 266 msgstr "Потрібна допомога? Подивіться наші ЧаПи або зверніться до підтримки." 267 268 #: includes/class.gateway.php:91 257 269 msgid "No" 258 270 msgstr "Ні" 259 271 260 #: includes/class.gateway.php: 47 includes/class.gateway.php:78272 #: includes/class.gateway.php:50 includes/class.gateway.php:81 261 273 msgid "Not authorized" 262 274 msgstr "Не авторизоване" 263 275 264 #: includes/class.gateway.php:55 includes/class.gateway.php:79 276 #: includes/class.gateway.php:55 277 msgid "Not authorized <span class=\"count\">(%s)</span>" 278 msgstr "Не авторизоване <span class=\"count\">(%s)</span>" 279 280 #: includes/class.gateway.php:58 includes/class.gateway.php:82 265 281 msgid "Not confirmed" 266 282 msgstr "Не підтверджене" 267 283 268 #: includes/class.gateway.php:322 284 #: includes/class.gateway.php:63 285 msgid "Not confirmed <span class=\"count\">(%s)</span>" 286 msgstr "Не підтверджене <span class=\"count\">(%s)</span>" 287 288 #: includes/class.gateway.php:325 269 289 msgid "Nova Poshta" 270 290 msgstr "Нова Пошта" 271 291 272 #: includes/class.gateway.php:32 3292 #: includes/class.gateway.php:326 273 293 msgid "NP Postbox" 274 294 msgstr "Поштомат НП" 275 295 276 #: includes/class.gateway.php:2 89296 #: includes/class.gateway.php:292 277 297 msgid "Number of payments" 278 298 msgstr "Кількість платежів" 279 299 280 #: includes/class.gateway.php:29 2300 #: includes/class.gateway.php:295 281 301 msgid "Number of payments for Purchase in parts." 282 302 msgstr "Кількість платежів в покупці частинами" 283 303 284 #: includes/class.gateway.php:2 09304 #: includes/class.gateway.php:212 285 305 msgid "Order prefix" 286 306 msgstr "Префікс замовлення" 287 307 288 #: includes/class.gateway.php:64 1 includes/class.gateway.php:657289 #: includes/class.gateway.php:67 4308 #: includes/class.gateway.php:644 includes/class.gateway.php:660 309 #: includes/class.gateway.php:677 290 310 msgid "Payment error: %s" 291 311 msgstr "Помилка платежу: %s" 292 312 293 #: includes/class.gateway.php:62 2313 #: includes/class.gateway.php:625 294 314 msgid "Payment method \"%s\" is not available for your store." 295 315 msgstr "Платіжний метод \"%s\" недоступний для Вашого магазину." 296 316 297 #: includes/class.gateway.php:4 37317 #: includes/class.gateway.php:440 298 318 msgid "Payment method X is not available for your store." 299 319 msgstr "Платіжний метод X недоступний для Вашого магазину." 300 320 301 #: includes/class.gateway.php:28 2321 #: includes/class.gateway.php:285 302 322 msgid "Payment methods" 303 323 msgstr "Платіжні методи" 304 324 305 #: includes/class.gateway.php:6 3 includes/class.gateway.php:80306 #: includes/class.gateway.php:33 1325 #: includes/class.gateway.php:66 includes/class.gateway.php:83 326 #: includes/class.gateway.php:334 307 327 msgid "Payment on delivery" 308 328 msgstr "Оплата при отриманні" 309 329 310 #: includes/class.gateway.php:348 330 #: includes/class.gateway.php:71 331 msgid "Payment on delivery <span class=\"count\">(%s)</span>" 332 msgstr "Оплата при отриманні <span class=\"count\">(%s)</span>" 333 334 #: includes/class.gateway.php:351 311 335 msgid "Pending payment" 312 336 msgstr "Очікування оплати" 313 337 314 #: includes/class.gateway.php:32 0338 #: includes/class.gateway.php:323 315 339 msgid "Pickup" 316 340 msgstr "Самовивіз" 317 341 318 #: includes/class.gateway.php:44 0342 #: includes/class.gateway.php:443 319 343 msgid "" 320 344 "Please, contact our support at <a href=\"https://web.monobank.ua\" " … … 328 352 "в налаштуваннях чекауту." 329 353 330 #: includes/class.gateway.php:4 38354 #: includes/class.gateway.php:441 331 355 #| msgid "" 332 356 #| "Please, contact our support at <a href=\"https://web.monobank.ua\" " … … 343 367 "в налаштуваннях чекауту." 344 368 345 #: includes/class.gateway.php:44 2369 #: includes/class.gateway.php:445 346 370 msgid "" 347 371 "Please, enable your checkout in your account at <a href=\"https://web." … … 351 375 "monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 352 376 353 #: includes/class.gateway.php:43 4377 #: includes/class.gateway.php:437 354 378 msgid "" 355 379 "Please, get your token at <a href=\"https://web.monobank.ua\" " … … 359 383 "ua\" target=\"_blank\">web.monobank.ua</a>" 360 384 361 #: includes/class.gateway.php:43 6385 #: includes/class.gateway.php:439 362 386 msgid "" 363 387 "Please, make sure you used correct token from <a href=\"https://web.monobank." … … 367 391 "href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 368 392 369 #: includes/class.gateway.php:21 1393 #: includes/class.gateway.php:214 370 394 msgid "Prepended to order numbers to distinguish between different stores." 371 395 msgstr "" 372 396 "Додається до номеру замовлення, щоб розрізняти замовлення з різних магазинів" 373 397 374 #: includes/class.gateway.php:24 5398 #: includes/class.gateway.php:248 375 399 msgid "Product details button height (px)" 376 400 msgstr "Висота кнопки на деталях продукту (px)" 377 401 378 #: includes/class.gateway.php:24 1402 #: includes/class.gateway.php:244 379 403 msgid "Product details button width (px)" 380 404 msgstr "Ширина кнопки на деталях продукту (px)" 381 405 382 #: includes/class.gateway.php:33 2406 #: includes/class.gateway.php:335 383 407 msgid "Purchase in parts" 384 408 msgstr "Покупка частинами" 385 409 386 #: includes/class.gateway.php: 98410 #: includes/class.gateway.php:101 387 411 msgid "Region" 388 412 msgstr "Область" 389 413 390 #: includes/class.gateway.php:42 0414 #: includes/class.gateway.php:423 391 415 msgid "Settings" 392 416 msgstr "Налаштування" 393 417 394 #: includes/class.gateway.php:40 1418 #: includes/class.gateway.php:404 395 419 msgid "Statuses of mono checkout orders:" 396 420 msgstr "Статуси замовлень mono checkout:" 397 421 398 #: includes/class.gateway.php:1 27 includes/class.gateway.php:606422 #: includes/class.gateway.php:130 includes/class.gateway.php:609 399 423 msgid "Technical error" 400 424 msgstr "Технічна помилка" … … 404 428 msgstr "Цей платіжний метод не підтримує замовлення з купонами." 405 429 406 #: includes/class.gateway.php:37 5430 #: includes/class.gateway.php:378 407 431 msgid "" 408 432 "To get token, please, send request in your monobank app and then visit <a " … … 413 437 "web.monobank.ua</a>" 414 438 415 #: includes/class.gateway.php:20 2439 #: includes/class.gateway.php:205 416 440 msgid "Token" 417 441 msgstr "Токен" 418 442 419 #: includes/class.gateway.php:1 09 includes/class.gateway.php:148443 #: includes/class.gateway.php:112 includes/class.gateway.php:151 420 444 msgid "Update payment status" 421 445 msgstr "Оновити статус платежу" 422 446 423 #: includes/class.gateway.php:27 3 includes/class.gateway.php:286447 #: includes/class.gateway.php:276 includes/class.gateway.php:289 424 448 msgid "Use Ctrl for multiple choices" 425 449 msgstr "Натисніть Ctrl, щоб обрати декілька варіантів" 426 450 427 #: includes/class.gateway.php:64 5451 #: includes/class.gateway.php:648 428 452 #| msgid "" 429 453 #| "Wrong answer from monopay.<br/><a class=\"mono-code-toggle\">API " … … 436 460 "Відповідь API</a><pre class=\"mono-api-answer\">%s</pre>" 437 461 438 #: includes/class.gateway.php: 88462 #: includes/class.gateway.php:91 439 463 msgid "Yes" 440 464 msgstr "Так" 441 465 442 #: includes/class.gateway.php:3 77466 #: includes/class.gateway.php:380 443 467 msgid "Your callback URL: %s" 444 468 msgstr "Ваш URL колбеку: %s" 445 469 446 #: includes/class.gateway.php:3 78470 #: includes/class.gateway.php:381 447 471 msgid "Your return URL: %s" 448 472 msgstr "Ваш URL після успішної оплати (return URL): %s" … … 456 480 "підключений інтернет-еквайринг від monobank" 457 481 msgstr "" 482 "модуль Чекауту від monobank це спосіб автоматизувати процес оформлення " 483 "покупки на вашому сайті. Доступний функціонал: предзаповнення даних " 484 "отримувача, рекомендації по доставці та оплаті, всі доступні способи оплати " 485 "від monobank: еквайринг, Покупка частинами та оплата при отриманні. Має бути " 486 "підключений інтернет-еквайринг від monobank" -
mono-checkout/tags/1.8.2/languages/mono-checkout.pot
r3045127 r3098419 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: mono checkout 1.8. 0\n"5 "Project-Id-Version: mono checkout 1.8.1\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: 2024-0 2-29T09:49:07+00:00\n"12 "POT-Creation-Date: 2024-03-11T13:29:23+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" … … 35 35 msgstr "" 36 36 37 #: includes/class.gateway.php: 1737 #: includes/class.gateway.php:20 38 38 msgid "Go to mono checkout" 39 39 msgstr "" 40 40 41 #: includes/class.gateway.php: 4742 #: includes/class.gateway.php: 7841 #: includes/class.gateway.php:50 42 #: includes/class.gateway.php:81 43 43 msgid "Not authorized" 44 44 msgstr "" 45 45 46 46 #: includes/class.gateway.php:55 47 #: includes/class.gateway.php:79 47 msgid "Not authorized <span class=\"count\">(%s)</span>" 48 msgstr "" 49 50 #: includes/class.gateway.php:58 51 #: includes/class.gateway.php:82 48 52 msgid "Not confirmed" 49 53 msgstr "" 50 54 51 55 #: includes/class.gateway.php:63 52 #: includes/class.gateway.php:80 53 #: includes/class.gateway.php:331 56 msgid "Not confirmed <span class=\"count\">(%s)</span>" 57 msgstr "" 58 59 #: includes/class.gateway.php:66 60 #: includes/class.gateway.php:83 61 #: includes/class.gateway.php:334 54 62 msgid "Payment on delivery" 55 63 msgstr "" 56 64 57 #: includes/class.gateway.php:88 65 #: includes/class.gateway.php:71 66 msgid "Payment on delivery <span class=\"count\">(%s)</span>" 67 msgstr "" 68 69 #: includes/class.gateway.php:91 58 70 msgid "Call client" 59 71 msgstr "" 60 72 61 #: includes/class.gateway.php: 8873 #: includes/class.gateway.php:91 62 74 msgid "Yes" 63 75 msgstr "" 64 76 65 #: includes/class.gateway.php: 8877 #: includes/class.gateway.php:91 66 78 msgid "No" 67 79 msgstr "" 68 80 69 #: includes/class.gateway.php: 9881 #: includes/class.gateway.php:101 70 82 msgid "Region" 71 83 msgstr "" 72 84 73 #: includes/class.gateway.php: 9974 #: includes/class.gateway.php:10 185 #: includes/class.gateway.php:102 86 #: includes/class.gateway.php:104 75 87 msgid "copy code" 76 88 msgstr "" 77 89 78 #: includes/class.gateway.php:10 090 #: includes/class.gateway.php:103 79 91 msgid "City" 80 92 msgstr "" 81 93 82 #: includes/class.gateway.php:1 0983 #: includes/class.gateway.php:1 4894 #: includes/class.gateway.php:112 95 #: includes/class.gateway.php:151 84 96 msgid "Update payment status" 85 97 msgstr "" 86 98 87 #: includes/class.gateway.php:1 2788 #: includes/class.gateway.php:60 699 #: includes/class.gateway.php:130 100 #: includes/class.gateway.php:609 89 101 msgid "Technical error" 90 102 msgstr "" 91 103 92 #: includes/class.gateway.php:19 6104 #: includes/class.gateway.php:199 93 105 msgid "Enable module" 94 106 msgstr "" 95 107 96 #: includes/class.gateway.php:20 2108 #: includes/class.gateway.php:205 97 109 msgid "Token" 98 110 msgstr "" 99 111 100 #: includes/class.gateway.php:20 4112 #: includes/class.gateway.php:207 101 113 msgid "API token from mono checkout. Get your token at <a href=\"https://web.monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 102 114 msgstr "" 103 115 104 #: includes/class.gateway.php:2 09116 #: includes/class.gateway.php:212 105 117 msgid "Order prefix" 106 118 msgstr "" 107 119 108 #: includes/class.gateway.php:21 1120 #: includes/class.gateway.php:214 109 121 msgid "Prepended to order numbers to distinguish between different stores." 110 122 msgstr "" 111 123 112 #: includes/class.gateway.php:221 124 #: includes/class.gateway.php:219 125 msgid "Checkout description" 126 msgstr "" 127 128 #: includes/class.gateway.php:224 113 129 msgid "Enable on checkout" 114 130 msgstr "" 115 131 116 #: includes/class.gateway.php:2 27132 #: includes/class.gateway.php:230 117 133 msgid "Checkout button width (px)" 118 134 msgstr "" 119 135 120 #: includes/class.gateway.php:23 1136 #: includes/class.gateway.php:234 121 137 msgid "Checkout button height (px)" 122 138 msgstr "" 123 139 124 #: includes/class.gateway.php:23 5140 #: includes/class.gateway.php:238 125 141 msgid "Enable on product details" 126 142 msgstr "" 127 143 128 #: includes/class.gateway.php:24 1144 #: includes/class.gateway.php:244 129 145 msgid "Product details button width (px)" 130 146 msgstr "" 131 147 132 #: includes/class.gateway.php:24 5148 #: includes/class.gateway.php:248 133 149 msgid "Product details button height (px)" 134 150 msgstr "" 135 151 136 #: includes/class.gateway.php:2 49152 #: includes/class.gateway.php:252 137 153 msgid "Enable in cart" 138 154 msgstr "" 139 155 140 #: includes/class.gateway.php:25 5156 #: includes/class.gateway.php:258 141 157 msgid "Cart button width (px)" 142 158 msgstr "" 143 159 144 #: includes/class.gateway.php:2 59160 #: includes/class.gateway.php:262 145 161 msgid "Cart button height (px)" 146 162 msgstr "" 147 163 148 #: includes/class.gateway.php:26 3164 #: includes/class.gateway.php:266 149 165 msgid "Button style" 150 166 msgstr "" 151 167 152 #: includes/class.gateway.php:2 69168 #: includes/class.gateway.php:272 153 169 msgid "Delivery options" 154 170 msgstr "" 155 171 156 #: includes/class.gateway.php:27 3157 #: includes/class.gateway.php:28 6172 #: includes/class.gateway.php:276 173 #: includes/class.gateway.php:289 158 174 msgid "Use Ctrl for multiple choices" 159 175 msgstr "" 160 176 161 #: includes/class.gateway.php:27 6177 #: includes/class.gateway.php:279 162 178 msgid "Free delivery from" 163 179 msgstr "" 164 180 165 #: includes/class.gateway.php:2 79181 #: includes/class.gateway.php:282 166 182 msgid "Free delivery from this order subtotal. Empty for paid delivery." 167 183 msgstr "" 168 184 169 #: includes/class.gateway.php:28 2185 #: includes/class.gateway.php:285 170 186 msgid "Payment methods" 171 187 msgstr "" 172 188 173 #: includes/class.gateway.php:2 89189 #: includes/class.gateway.php:292 174 190 msgid "Number of payments" 175 191 msgstr "" 176 192 177 #: includes/class.gateway.php:29 2193 #: includes/class.gateway.php:295 178 194 msgid "Number of payments for Purchase in parts." 179 195 msgstr "" 180 196 181 #: includes/class.gateway.php:29 5197 #: includes/class.gateway.php:298 182 198 msgid "Base URL" 183 199 msgstr "" 184 200 185 #: includes/class.gateway.php: 297201 #: includes/class.gateway.php:300 186 202 msgid "Base URL for mono checkout API." 187 203 msgstr "" 188 204 189 #: includes/class.gateway.php:32 0205 #: includes/class.gateway.php:323 190 206 msgid "Pickup" 191 207 msgstr "" 192 208 193 #: includes/class.gateway.php:32 1209 #: includes/class.gateway.php:324 194 210 msgid "Courier" 195 211 msgstr "" 196 212 197 #: includes/class.gateway.php:32 2213 #: includes/class.gateway.php:325 198 214 msgid "Nova Poshta" 199 215 msgstr "" 200 216 201 #: includes/class.gateway.php:32 3217 #: includes/class.gateway.php:326 202 218 msgid "NP Postbox" 203 219 msgstr "" 204 220 205 #: includes/class.gateway.php:33 0221 #: includes/class.gateway.php:333 206 222 msgid "Card" 207 223 msgstr "" 208 224 209 #: includes/class.gateway.php:33 2225 #: includes/class.gateway.php:335 210 226 msgid "Purchase in parts" 211 227 msgstr "" 212 228 213 #: includes/class.gateway.php:3 48229 #: includes/class.gateway.php:351 214 230 msgid "Pending payment" 215 231 msgstr "" 216 232 217 233 #: includes/class.gateway.php:375 234 msgid "Need help? Check out our FAQ or contact our support." 235 msgstr "" 236 237 #: includes/class.gateway.php:378 218 238 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>" 219 239 msgstr "" 220 240 221 #: includes/class.gateway.php:37 6241 #: includes/class.gateway.php:379 222 242 msgid "More details on <a href=\"https://www.monobank.ua/\" target=\"_blank\">monobank.ua</a>" 223 243 msgstr "" 224 244 225 #: includes/class.gateway.php:3 77245 #: includes/class.gateway.php:380 226 246 msgid "Your callback URL: %s" 227 247 msgstr "" 228 248 229 #: includes/class.gateway.php:3 78249 #: includes/class.gateway.php:381 230 250 msgid "Your return URL: %s" 231 251 msgstr "" 232 252 233 #: includes/class.gateway.php:38 1253 #: includes/class.gateway.php:384 234 254 msgid "Get your monobank app now:" 235 255 msgstr "" 236 256 237 #: includes/class.gateway.php:40 1257 #: includes/class.gateway.php:404 238 258 msgid "Statuses of mono checkout orders:" 239 259 msgstr "" 240 260 241 #: includes/class.gateway.php:41 6261 #: includes/class.gateway.php:419 242 262 msgid "<strong>Important:</strong> mono checkout does not support orders with coupons." 243 263 msgstr "" 244 264 245 #: includes/class.gateway.php:42 0265 #: includes/class.gateway.php:423 246 266 msgid "Settings" 247 267 msgstr "" 248 268 249 #: includes/class.gateway.php:43 1269 #: includes/class.gateway.php:434 250 270 msgid "Frequent errors" 251 271 msgstr "" 252 272 253 #: includes/class.gateway.php:43 3254 #: includes/class.gateway.php:6 08273 #: includes/class.gateway.php:436 274 #: includes/class.gateway.php:611 255 275 msgid "Fill in your mono checkout Token." 256 276 msgstr "" 257 277 258 #: includes/class.gateway.php:43 4278 #: includes/class.gateway.php:437 259 279 msgid "Please, get your token at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 260 280 msgstr "" 261 281 262 #: includes/class.gateway.php:435 282 #: includes/class.gateway.php:438 283 #: includes/class.gateway.php:616 284 msgid "Check your mono checkout Token." 285 msgstr "" 286 287 #: includes/class.gateway.php:439 288 msgid "Please, make sure you used correct token from <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 289 msgstr "" 290 291 #: includes/class.gateway.php:440 292 msgid "Payment method X is not available for your store." 293 msgstr "" 294 295 #: includes/class.gateway.php:441 296 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." 297 msgstr "" 298 299 #: includes/class.gateway.php:442 300 msgid "Delivery method X is not available for your store." 301 msgstr "" 302 303 #: includes/class.gateway.php:443 304 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." 305 msgstr "" 306 307 #: includes/class.gateway.php:444 308 #: includes/class.gateway.php:639 309 msgid "Checkout is disabled in your account." 310 msgstr "" 311 312 #: includes/class.gateway.php:445 313 msgid "Please, enable your checkout in your account at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 314 msgstr "" 315 263 316 #: includes/class.gateway.php:613 264 msgid "Check your mono checkout Token." 265 msgstr "" 266 267 #: includes/class.gateway.php:436 268 msgid "Please, make sure you used correct token from <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 269 msgstr "" 270 271 #: includes/class.gateway.php:437 272 msgid "Payment method X is not available for your store." 273 msgstr "" 274 275 #: includes/class.gateway.php:438 276 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." 277 msgstr "" 278 279 #: includes/class.gateway.php:439 280 msgid "Delivery method X is not available for your store." 281 msgstr "" 282 283 #: includes/class.gateway.php:440 284 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." 285 msgstr "" 286 287 #: includes/class.gateway.php:441 317 #: includes/class.gateway.php:618 318 #: includes/class.gateway.php:627 288 319 #: includes/class.gateway.php:636 289 msgid "Checkout is disabled in your account." 290 msgstr "" 291 292 #: includes/class.gateway.php:442 293 msgid "Please, enable your checkout in your account at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 294 msgstr "" 295 296 #: includes/class.gateway.php:610 297 #: includes/class.gateway.php:615 298 #: includes/class.gateway.php:624 299 #: includes/class.gateway.php:633 300 #: includes/class.gateway.php:638 320 #: includes/class.gateway.php:641 301 321 msgid "More info" 302 322 msgstr "" 303 323 304 #: includes/class.gateway.php:62 2324 #: includes/class.gateway.php:625 305 325 msgid "Payment method \"%s\" is not available for your store." 306 326 msgstr "" 307 327 308 #: includes/class.gateway.php:63 1328 #: includes/class.gateway.php:634 309 329 msgid "Delivery method \"%s\" is not available for your store." 310 330 msgstr "" 311 331 312 #: includes/class.gateway.php:64 1313 #: includes/class.gateway.php:6 57314 #: includes/class.gateway.php:67 4332 #: includes/class.gateway.php:644 333 #: includes/class.gateway.php:660 334 #: includes/class.gateway.php:677 315 335 msgid "Payment error: %s" 316 336 msgstr "" 317 337 318 #: includes/class.gateway.php:64 5338 #: includes/class.gateway.php:648 319 339 msgid "Wrong answer from mono checkout.<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%s</pre>" 320 340 msgstr "" 321 341 322 #: includes/class.gateway.php:66 1342 #: includes/class.gateway.php:664 323 343 msgid "mono checkout declined order: %1$s<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%2$s</pre>" 324 344 msgstr "" 325 345 326 #: includes/class.gateway.php:6 78346 #: includes/class.gateway.php:681 327 347 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>" 328 348 msgstr "" 329 349 330 #: includes/class.gateway.php:69 6350 #: includes/class.gateway.php:699 331 351 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>" 332 352 msgstr "" 333 353 334 #: includes/class.gateway.php:7 43354 #: includes/class.gateway.php:758 335 355 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>" 336 356 msgstr "" … … 349 369 msgstr "" 350 370 371 #: includes/class.mono.php:312 372 msgid "mono checkout does not support order with coupons" 373 msgstr "" 374 351 375 #: includes/class.mono.php:393 352 376 msgid "This payment method is not applicable to orders with coupons." -
mono-checkout/tags/1.8.2/mono.php
r3047124 r3098419 7 7 Plugin URI: https://checkout.mono.bank/woocomerce 8 8 Description: модуль Чекауту від monobank це спосіб автоматизувати процес оформлення покупки на вашому сайті. Доступний функціонал: предзаповнення даних отримувача, рекомендації по доставці та оплаті, всі доступні способи оплати від monobank: еквайринг, Покупка частинами та оплата при отриманні. Має бути підключений інтернет-еквайринг від monobank 9 Version: 1.8. 19 Version: 1.8.2 10 10 Requires at least: 5.8 11 11 Requires PHP: 7.4 … … 18 18 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 19 19 20 define( 'MONO_VERSION', '1.8. 0' );20 define( 'MONO_VERSION', '1.8.2' ); 21 21 define( 'MONO__MINIMUM_WP_VERSION', '5.8' ); 22 22 define( 'MONO__PLUGIN_FILE', __FILE__ ); -
mono-checkout/tags/1.8.2/readme.txt
r3047124 r3098419 4 4 Requires at least: 5.8 5 5 Tested up to: 6.4 6 Stable tag: 1.8. 16 Stable tag: 1.8.2 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 = 1.8.2 = 53 * Виправлення платіжної адреси в імейлі про замовлення при доставці у відділення або поштомат Нової Пошти 54 52 55 = 1.8.1 = 53 56 * Покращення безпеки -
mono-checkout/trunk/includes/class.gateway.php
r3047124 r3098419 53 53 'show_in_admin_all_list' => true, 54 54 'exclude_from_search' => false, 55 'label_count' => _n_noop( __( 'Not authorized <span class="count">(%s)</span>' ), __( 'Not authorized <span class="count">(%s)</span>' ) )55 'label_count' => _n_noop( __( 'Not authorized <span class="count">(%s)</span>', 'mono-checkout' ), __( 'Not authorized <span class="count">(%s)</span>', 'mono-checkout' ) ) 56 56 ); 57 57 $order_statuses['wc-not_confirmed'] = array( … … 61 61 'show_in_admin_all_list' => true, 62 62 'exclude_from_search' => false, 63 'label_count' => _n_noop( __( 'Not confirmed <span class="count">(%s)</span>' ), __( 'Not confirmed <span class="count">(%s)</span>' ) )63 'label_count' => _n_noop( __( 'Not confirmed <span class="count">(%s)</span>', 'mono-checkout' ), __( 'Not confirmed <span class="count">(%s)</span>', 'mono-checkout' ) ) 64 64 ); 65 65 $order_statuses['wc-cash_on_delivery'] = array( … … 69 69 'show_in_admin_all_list' => true, 70 70 'exclude_from_search' => false, 71 'label_count' => _n_noop( __( 'Payment on delivery <span class="count">(%s)</span>' ), __( 'Payment on delivery <span class="count">(%s)</span>' ) )71 'label_count' => _n_noop( __( 'Payment on delivery <span class="count">(%s)</span>', 'mono-checkout' ), __( 'Payment on delivery <span class="count">(%s)</span>', 'mono-checkout' ) ) 72 72 ); 73 73 return $order_statuses; … … 217 217 ), 218 218 'description' => array( 219 'title' => __( 'Checkout description', ' woocommerce' ),219 'title' => __( 'Checkout description', 'mono-checkout' ), 220 220 'type' => 'textarea', 221 221 'default' => '' … … 373 373 <div> 374 374 <div> 375 <p><a href="#faq"><?php esc_html(__( 'Need help? Check out our FAQ or contact our support.' )); ?></a></p>375 <p><a href="#faq"><?php esc_html(__( 'Need help? Check out our FAQ or contact our support.', 'mono-checkout' )); ?></a></p> 376 376 </div> 377 377 <div> -
mono-checkout/trunk/includes/class.mono.php
r3045127 r3098419 66 66 67 67 $this->setup_notifications(); 68 $this->configure_order_email(); 68 69 69 70 $this->init_gateway(); … … 123 124 } 124 125 126 public function configure_order_email() { 127 add_filter('woocommerce_mail_callback_params', [$this, 'replace_np_id_with_address'], 10, 2); 128 } 129 130 /** 131 * @param $parameters array - array( $to, wp_specialchars_decode( $subject ), $message, $headers, $attachments ) 132 * @param $new_order_email \WC_Email_New_Order 133 */ 134 public function replace_np_id_with_address( $parameters, $new_order_email ) { 135 /** @var \WC_Order $order */ 136 $order = $new_order_email->object; 137 if (Mono_Gateway::is_mono_order_by_id($order->get_id())) { 138 if ($this->is_valid_branch_id($order->get_billing_address_1())) { 139 $parameters[2] = str_replace($order->get_billing_address_1(), $order->get_shipping_address_1(), $parameters[2]); 140 } 141 142 } 143 return $parameters; 144 } 145 146 public function is_valid_branch_id( $branch_id ) { 147 return preg_match('/^[^\s]+$/i', $branch_id); 148 } 149 125 150 public function can_run() { 126 151 return $this->canRun; … … 310 335 if ($this->has_order_coupon()) { 311 336 if (current_user_can( 'activate_plugins' )) { 312 $this->render('button_error', ['message' => __( "mono checkout does not support order with coupons", "mono " )] );337 $this->render('button_error', ['message' => __( "mono checkout does not support order with coupons", "mono-checkout" )] ); 313 338 } 314 339 return; -
mono-checkout/trunk/languages/mono-checkout-uk.po
r3045127 r3098419 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mono\n" 7 7 "Last-Translator: \n" 8 "Language-Team: Ukrainian\n"8 "Language-Team: Українська\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 12 "POT-Creation-Date: 2023-10-25T00:58:42+03:00\n" 13 "PO-Revision-Date: 2024-0 2-29 09:50+0000\n"13 "PO-Revision-Date: 2024-03-11 13:32+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:41 621 #: includes/class.gateway.php:419 22 22 msgid "" 23 23 "<strong>Important:</strong> mono checkout does not support orders with " … … 30 30 msgstr "Відповідь API" 31 31 32 #: includes/class.gateway.php:20 432 #: includes/class.gateway.php:207 33 33 #| msgid "" 34 34 #| "API token from monopay. Get your token at <a href=\"https://web.monobank." … … 41 41 "monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 42 42 43 #: includes/class.gateway.php:29 543 #: includes/class.gateway.php:298 44 44 msgid "Base URL" 45 45 msgstr "Базовий URL" 46 46 47 #: includes/class.gateway.php: 29747 #: includes/class.gateway.php:300 48 48 msgid "Base URL for mono checkout API." 49 49 msgstr "Базовий URL для API mono checkout" 50 50 51 #: includes/class.gateway.php:26 351 #: includes/class.gateway.php:266 52 52 msgid "Button style" 53 53 msgstr "Стиль кнопки" … … 57 57 msgstr "Оформити через mono checkout" 58 58 59 #: includes/class.gateway.php: 8859 #: includes/class.gateway.php:91 60 60 msgid "Call client" 61 61 msgstr "Передзвонити клієнту" 62 62 63 #: includes/class.gateway.php:33 063 #: includes/class.gateway.php:333 64 64 msgid "Card" 65 65 msgstr "Картка" 66 66 67 #: includes/class.gateway.php:2 5967 #: includes/class.gateway.php:262 68 68 msgid "Cart button height (px)" 69 69 msgstr "Висота кнопки в кошику (px)" 70 70 71 #: includes/class.gateway.php:25 571 #: includes/class.gateway.php:258 72 72 msgid "Cart button width (px)" 73 73 msgstr "Ширина кнопки в кошику (px)" 74 74 75 #: includes/class.gateway.php:43 5 includes/class.gateway.php:61375 #: includes/class.gateway.php:438 includes/class.gateway.php:616 76 76 msgid "Check your mono checkout Token." 77 77 msgstr "Будь-ласка, перевірте Токен чекауту для Вашого магазину." 78 78 79 #: includes/class.gateway.php:23 179 #: includes/class.gateway.php:234 80 80 msgid "Checkout button height (px)" 81 81 msgstr "Висота кнопки на чекауті (px)" 82 82 83 #: includes/class.gateway.php:2 2783 #: includes/class.gateway.php:230 84 84 msgid "Checkout button width (px)" 85 85 msgstr "Ширина кнопки на чекауті (px)" 86 86 87 #: includes/class.gateway.php:441 includes/class.gateway.php:636 87 #: includes/class.gateway.php:219 88 msgid "Checkout description" 89 msgstr "Опис" 90 91 #: includes/class.gateway.php:444 includes/class.gateway.php:639 88 92 msgid "Checkout is disabled in your account." 89 93 msgstr "Чекаут відключений у Вашому аккаунті." 90 94 91 #: includes/class.gateway.php:10 095 #: includes/class.gateway.php:103 92 96 msgid "City" 93 97 msgstr "Місто" 94 98 95 #: includes/class.gateway.php: 99 includes/class.gateway.php:10199 #: includes/class.gateway.php:102 includes/class.gateway.php:104 96 100 msgid "copy code" 97 101 msgstr "скопіювати код" 98 102 99 #: includes/class.gateway.php:32 1103 #: includes/class.gateway.php:324 100 104 msgid "Courier" 101 105 msgstr "Кур'єр" 102 106 103 #: includes/class.gateway.php:63 1107 #: includes/class.gateway.php:634 104 108 msgid "Delivery method \"%s\" is not available for your store." 105 109 msgstr "Спосіб доставки \"%s\" недоступний для Вашого магазину." 106 110 107 #: includes/class.gateway.php:4 39111 #: includes/class.gateway.php:442 108 112 msgid "Delivery method X is not available for your store." 109 113 msgstr "Спосіб доставки X недоступний для Вашого магазину." 110 114 111 #: includes/class.gateway.php:2 69115 #: includes/class.gateway.php:272 112 116 msgid "Delivery options" 113 117 msgstr "Методи доставки" 114 118 115 #: includes/class.gateway.php:2 49119 #: includes/class.gateway.php:252 116 120 msgid "Enable in cart" 117 121 msgstr "Відобразити в кошику" 118 122 119 #: includes/class.gateway.php:19 6123 #: includes/class.gateway.php:199 120 124 msgid "Enable module" 121 125 msgstr "Активувати модуль" 122 126 123 #: includes/class.gateway.php:22 1127 #: includes/class.gateway.php:224 124 128 msgid "Enable on checkout" 125 129 msgstr "Відобразити на чекауті" 126 130 127 #: includes/class.gateway.php:23 5131 #: includes/class.gateway.php:238 128 132 msgid "Enable on product details" 129 133 msgstr "Відобразити на деталях продукту" 130 134 131 #: includes/class.gateway.php:43 3 includes/class.gateway.php:608135 #: includes/class.gateway.php:436 includes/class.gateway.php:611 132 136 msgid "Fill in your mono checkout Token." 133 137 msgstr "Будь-ласка, заповніть Токен чекауту для Вашого магазину." 134 138 135 #: includes/class.gateway.php:27 6139 #: includes/class.gateway.php:279 136 140 msgid "Free delivery from" 137 141 msgstr "Безкоштовна доставка від" 138 142 139 #: includes/class.gateway.php:2 79143 #: includes/class.gateway.php:282 140 144 msgid "Free delivery from this order subtotal. Empty for paid delivery." 141 145 msgstr "" … … 143 147 "доставки." 144 148 145 #: includes/class.gateway.php:43 1149 #: includes/class.gateway.php:434 146 150 msgid "Frequent errors" 147 151 msgstr "Часті помилки" … … 151 155 msgstr "Загальна помилка" 152 156 153 #: includes/class.gateway.php:38 1157 #: includes/class.gateway.php:384 154 158 msgid "Get your monobank app now:" 155 159 msgstr "Скачайте додаток monobank" 156 160 157 #: includes/class.gateway.php: 17161 #: includes/class.gateway.php:20 158 162 msgid "Go to mono checkout" 159 163 msgstr "Перейти до mono checkout" … … 161 165 #. Plugin URI of the plugin 162 166 msgid "https://checkout.mono.bank/woocomerce" 163 msgstr " "167 msgstr "https://checkout.mono.bank/woocomerce" 164 168 165 169 #. Author URI of the plugin 166 170 msgid "https://monobank.ua/" 167 msgstr " "171 msgstr "https://monobank.ua/" 168 172 169 173 #: templates/base_button.php:25 … … 176 180 msgstr "Оформлення через mono checkout" 177 181 178 #: includes/class.gateway.php:6 78182 #: includes/class.gateway.php:681 179 183 #| msgid "" 180 184 #| "monopay declined order: %1$s (code: %2$s)<br/><a class=\"mono-code-" … … 187 191 "code-toggle\">Відповідь API</a><pre class=\"mono-api-answer\">%3$s</pre>" 188 192 189 #: includes/class.gateway.php:66 1193 #: includes/class.gateway.php:664 190 194 #| msgid "" 191 195 #| "monopay declined order: %1$s<br/><a class=\"mono-code-toggle\">API " … … 198 202 "Відповідь API</a><pre class=\"mono-api-answer\">%2$s</pre>" 199 203 200 #: includes/class.gateway.php:743 204 #: includes/class.mono.php:312 205 msgid "mono checkout does not support order with coupons" 206 msgstr "mono чекаут не підтримує замовлення з купонами" 207 208 #: includes/class.gateway.php:758 201 209 #| msgid "" 202 210 #| "monopay status update:<strong>%1$s</strong><br/><a class=\"mono-code-" … … 220 228 "cPanel</a>)" 221 229 222 #: includes/class.gateway.php:69 6230 #: includes/class.gateway.php:699 223 231 msgid "" 224 232 "mono ID: <strong>%1$s</strong><br/><a href=\"%2$s\" target=\"_blank\">" … … 238 246 #. Author of the plugin 239 247 msgid "monobank" 240 msgstr " "241 242 #: includes/class.gateway.php:37 6248 msgstr "monobank" 249 250 #: includes/class.gateway.php:379 243 251 msgid "" 244 252 "More details on <a href=\"https://www.monobank.ua/\" target=\"_blank\">" … … 248 256 "monobank.ua</a>" 249 257 250 #: includes/class.gateway.php:61 0 includes/class.gateway.php:615251 #: includes/class.gateway.php:62 4 includes/class.gateway.php:633252 #: includes/class.gateway.php:6 38258 #: includes/class.gateway.php:613 includes/class.gateway.php:618 259 #: includes/class.gateway.php:627 includes/class.gateway.php:636 260 #: includes/class.gateway.php:641 253 261 msgid "More info" 254 262 msgstr "Детальніше" 255 263 256 #: includes/class.gateway.php:88 264 #: includes/class.gateway.php:375 265 msgid "Need help? Check out our FAQ or contact our support." 266 msgstr "Потрібна допомога? Подивіться наші ЧаПи або зверніться до підтримки." 267 268 #: includes/class.gateway.php:91 257 269 msgid "No" 258 270 msgstr "Ні" 259 271 260 #: includes/class.gateway.php: 47 includes/class.gateway.php:78272 #: includes/class.gateway.php:50 includes/class.gateway.php:81 261 273 msgid "Not authorized" 262 274 msgstr "Не авторизоване" 263 275 264 #: includes/class.gateway.php:55 includes/class.gateway.php:79 276 #: includes/class.gateway.php:55 277 msgid "Not authorized <span class=\"count\">(%s)</span>" 278 msgstr "Не авторизоване <span class=\"count\">(%s)</span>" 279 280 #: includes/class.gateway.php:58 includes/class.gateway.php:82 265 281 msgid "Not confirmed" 266 282 msgstr "Не підтверджене" 267 283 268 #: includes/class.gateway.php:322 284 #: includes/class.gateway.php:63 285 msgid "Not confirmed <span class=\"count\">(%s)</span>" 286 msgstr "Не підтверджене <span class=\"count\">(%s)</span>" 287 288 #: includes/class.gateway.php:325 269 289 msgid "Nova Poshta" 270 290 msgstr "Нова Пошта" 271 291 272 #: includes/class.gateway.php:32 3292 #: includes/class.gateway.php:326 273 293 msgid "NP Postbox" 274 294 msgstr "Поштомат НП" 275 295 276 #: includes/class.gateway.php:2 89296 #: includes/class.gateway.php:292 277 297 msgid "Number of payments" 278 298 msgstr "Кількість платежів" 279 299 280 #: includes/class.gateway.php:29 2300 #: includes/class.gateway.php:295 281 301 msgid "Number of payments for Purchase in parts." 282 302 msgstr "Кількість платежів в покупці частинами" 283 303 284 #: includes/class.gateway.php:2 09304 #: includes/class.gateway.php:212 285 305 msgid "Order prefix" 286 306 msgstr "Префікс замовлення" 287 307 288 #: includes/class.gateway.php:64 1 includes/class.gateway.php:657289 #: includes/class.gateway.php:67 4308 #: includes/class.gateway.php:644 includes/class.gateway.php:660 309 #: includes/class.gateway.php:677 290 310 msgid "Payment error: %s" 291 311 msgstr "Помилка платежу: %s" 292 312 293 #: includes/class.gateway.php:62 2313 #: includes/class.gateway.php:625 294 314 msgid "Payment method \"%s\" is not available for your store." 295 315 msgstr "Платіжний метод \"%s\" недоступний для Вашого магазину." 296 316 297 #: includes/class.gateway.php:4 37317 #: includes/class.gateway.php:440 298 318 msgid "Payment method X is not available for your store." 299 319 msgstr "Платіжний метод X недоступний для Вашого магазину." 300 320 301 #: includes/class.gateway.php:28 2321 #: includes/class.gateway.php:285 302 322 msgid "Payment methods" 303 323 msgstr "Платіжні методи" 304 324 305 #: includes/class.gateway.php:6 3 includes/class.gateway.php:80306 #: includes/class.gateway.php:33 1325 #: includes/class.gateway.php:66 includes/class.gateway.php:83 326 #: includes/class.gateway.php:334 307 327 msgid "Payment on delivery" 308 328 msgstr "Оплата при отриманні" 309 329 310 #: includes/class.gateway.php:348 330 #: includes/class.gateway.php:71 331 msgid "Payment on delivery <span class=\"count\">(%s)</span>" 332 msgstr "Оплата при отриманні <span class=\"count\">(%s)</span>" 333 334 #: includes/class.gateway.php:351 311 335 msgid "Pending payment" 312 336 msgstr "Очікування оплати" 313 337 314 #: includes/class.gateway.php:32 0338 #: includes/class.gateway.php:323 315 339 msgid "Pickup" 316 340 msgstr "Самовивіз" 317 341 318 #: includes/class.gateway.php:44 0342 #: includes/class.gateway.php:443 319 343 msgid "" 320 344 "Please, contact our support at <a href=\"https://web.monobank.ua\" " … … 328 352 "в налаштуваннях чекауту." 329 353 330 #: includes/class.gateway.php:4 38354 #: includes/class.gateway.php:441 331 355 #| msgid "" 332 356 #| "Please, contact our support at <a href=\"https://web.monobank.ua\" " … … 343 367 "в налаштуваннях чекауту." 344 368 345 #: includes/class.gateway.php:44 2369 #: includes/class.gateway.php:445 346 370 msgid "" 347 371 "Please, enable your checkout in your account at <a href=\"https://web." … … 351 375 "monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 352 376 353 #: includes/class.gateway.php:43 4377 #: includes/class.gateway.php:437 354 378 msgid "" 355 379 "Please, get your token at <a href=\"https://web.monobank.ua\" " … … 359 383 "ua\" target=\"_blank\">web.monobank.ua</a>" 360 384 361 #: includes/class.gateway.php:43 6385 #: includes/class.gateway.php:439 362 386 msgid "" 363 387 "Please, make sure you used correct token from <a href=\"https://web.monobank." … … 367 391 "href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 368 392 369 #: includes/class.gateway.php:21 1393 #: includes/class.gateway.php:214 370 394 msgid "Prepended to order numbers to distinguish between different stores." 371 395 msgstr "" 372 396 "Додається до номеру замовлення, щоб розрізняти замовлення з різних магазинів" 373 397 374 #: includes/class.gateway.php:24 5398 #: includes/class.gateway.php:248 375 399 msgid "Product details button height (px)" 376 400 msgstr "Висота кнопки на деталях продукту (px)" 377 401 378 #: includes/class.gateway.php:24 1402 #: includes/class.gateway.php:244 379 403 msgid "Product details button width (px)" 380 404 msgstr "Ширина кнопки на деталях продукту (px)" 381 405 382 #: includes/class.gateway.php:33 2406 #: includes/class.gateway.php:335 383 407 msgid "Purchase in parts" 384 408 msgstr "Покупка частинами" 385 409 386 #: includes/class.gateway.php: 98410 #: includes/class.gateway.php:101 387 411 msgid "Region" 388 412 msgstr "Область" 389 413 390 #: includes/class.gateway.php:42 0414 #: includes/class.gateway.php:423 391 415 msgid "Settings" 392 416 msgstr "Налаштування" 393 417 394 #: includes/class.gateway.php:40 1418 #: includes/class.gateway.php:404 395 419 msgid "Statuses of mono checkout orders:" 396 420 msgstr "Статуси замовлень mono checkout:" 397 421 398 #: includes/class.gateway.php:1 27 includes/class.gateway.php:606422 #: includes/class.gateway.php:130 includes/class.gateway.php:609 399 423 msgid "Technical error" 400 424 msgstr "Технічна помилка" … … 404 428 msgstr "Цей платіжний метод не підтримує замовлення з купонами." 405 429 406 #: includes/class.gateway.php:37 5430 #: includes/class.gateway.php:378 407 431 msgid "" 408 432 "To get token, please, send request in your monobank app and then visit <a " … … 413 437 "web.monobank.ua</a>" 414 438 415 #: includes/class.gateway.php:20 2439 #: includes/class.gateway.php:205 416 440 msgid "Token" 417 441 msgstr "Токен" 418 442 419 #: includes/class.gateway.php:1 09 includes/class.gateway.php:148443 #: includes/class.gateway.php:112 includes/class.gateway.php:151 420 444 msgid "Update payment status" 421 445 msgstr "Оновити статус платежу" 422 446 423 #: includes/class.gateway.php:27 3 includes/class.gateway.php:286447 #: includes/class.gateway.php:276 includes/class.gateway.php:289 424 448 msgid "Use Ctrl for multiple choices" 425 449 msgstr "Натисніть Ctrl, щоб обрати декілька варіантів" 426 450 427 #: includes/class.gateway.php:64 5451 #: includes/class.gateway.php:648 428 452 #| msgid "" 429 453 #| "Wrong answer from monopay.<br/><a class=\"mono-code-toggle\">API " … … 436 460 "Відповідь API</a><pre class=\"mono-api-answer\">%s</pre>" 437 461 438 #: includes/class.gateway.php: 88462 #: includes/class.gateway.php:91 439 463 msgid "Yes" 440 464 msgstr "Так" 441 465 442 #: includes/class.gateway.php:3 77466 #: includes/class.gateway.php:380 443 467 msgid "Your callback URL: %s" 444 468 msgstr "Ваш URL колбеку: %s" 445 469 446 #: includes/class.gateway.php:3 78470 #: includes/class.gateway.php:381 447 471 msgid "Your return URL: %s" 448 472 msgstr "Ваш URL після успішної оплати (return URL): %s" … … 456 480 "підключений інтернет-еквайринг від monobank" 457 481 msgstr "" 482 "модуль Чекауту від monobank це спосіб автоматизувати процес оформлення " 483 "покупки на вашому сайті. Доступний функціонал: предзаповнення даних " 484 "отримувача, рекомендації по доставці та оплаті, всі доступні способи оплати " 485 "від monobank: еквайринг, Покупка частинами та оплата при отриманні. Має бути " 486 "підключений інтернет-еквайринг від monobank" -
mono-checkout/trunk/languages/mono-checkout.pot
r3045127 r3098419 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: mono checkout 1.8. 0\n"5 "Project-Id-Version: mono checkout 1.8.1\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: 2024-0 2-29T09:49:07+00:00\n"12 "POT-Creation-Date: 2024-03-11T13:29:23+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" … … 35 35 msgstr "" 36 36 37 #: includes/class.gateway.php: 1737 #: includes/class.gateway.php:20 38 38 msgid "Go to mono checkout" 39 39 msgstr "" 40 40 41 #: includes/class.gateway.php: 4742 #: includes/class.gateway.php: 7841 #: includes/class.gateway.php:50 42 #: includes/class.gateway.php:81 43 43 msgid "Not authorized" 44 44 msgstr "" 45 45 46 46 #: includes/class.gateway.php:55 47 #: includes/class.gateway.php:79 47 msgid "Not authorized <span class=\"count\">(%s)</span>" 48 msgstr "" 49 50 #: includes/class.gateway.php:58 51 #: includes/class.gateway.php:82 48 52 msgid "Not confirmed" 49 53 msgstr "" 50 54 51 55 #: includes/class.gateway.php:63 52 #: includes/class.gateway.php:80 53 #: includes/class.gateway.php:331 56 msgid "Not confirmed <span class=\"count\">(%s)</span>" 57 msgstr "" 58 59 #: includes/class.gateway.php:66 60 #: includes/class.gateway.php:83 61 #: includes/class.gateway.php:334 54 62 msgid "Payment on delivery" 55 63 msgstr "" 56 64 57 #: includes/class.gateway.php:88 65 #: includes/class.gateway.php:71 66 msgid "Payment on delivery <span class=\"count\">(%s)</span>" 67 msgstr "" 68 69 #: includes/class.gateway.php:91 58 70 msgid "Call client" 59 71 msgstr "" 60 72 61 #: includes/class.gateway.php: 8873 #: includes/class.gateway.php:91 62 74 msgid "Yes" 63 75 msgstr "" 64 76 65 #: includes/class.gateway.php: 8877 #: includes/class.gateway.php:91 66 78 msgid "No" 67 79 msgstr "" 68 80 69 #: includes/class.gateway.php: 9881 #: includes/class.gateway.php:101 70 82 msgid "Region" 71 83 msgstr "" 72 84 73 #: includes/class.gateway.php: 9974 #: includes/class.gateway.php:10 185 #: includes/class.gateway.php:102 86 #: includes/class.gateway.php:104 75 87 msgid "copy code" 76 88 msgstr "" 77 89 78 #: includes/class.gateway.php:10 090 #: includes/class.gateway.php:103 79 91 msgid "City" 80 92 msgstr "" 81 93 82 #: includes/class.gateway.php:1 0983 #: includes/class.gateway.php:1 4894 #: includes/class.gateway.php:112 95 #: includes/class.gateway.php:151 84 96 msgid "Update payment status" 85 97 msgstr "" 86 98 87 #: includes/class.gateway.php:1 2788 #: includes/class.gateway.php:60 699 #: includes/class.gateway.php:130 100 #: includes/class.gateway.php:609 89 101 msgid "Technical error" 90 102 msgstr "" 91 103 92 #: includes/class.gateway.php:19 6104 #: includes/class.gateway.php:199 93 105 msgid "Enable module" 94 106 msgstr "" 95 107 96 #: includes/class.gateway.php:20 2108 #: includes/class.gateway.php:205 97 109 msgid "Token" 98 110 msgstr "" 99 111 100 #: includes/class.gateway.php:20 4112 #: includes/class.gateway.php:207 101 113 msgid "API token from mono checkout. Get your token at <a href=\"https://web.monobank.ua/\" target=\"_blank\">web.monobank.ua</a>" 102 114 msgstr "" 103 115 104 #: includes/class.gateway.php:2 09116 #: includes/class.gateway.php:212 105 117 msgid "Order prefix" 106 118 msgstr "" 107 119 108 #: includes/class.gateway.php:21 1120 #: includes/class.gateway.php:214 109 121 msgid "Prepended to order numbers to distinguish between different stores." 110 122 msgstr "" 111 123 112 #: includes/class.gateway.php:221 124 #: includes/class.gateway.php:219 125 msgid "Checkout description" 126 msgstr "" 127 128 #: includes/class.gateway.php:224 113 129 msgid "Enable on checkout" 114 130 msgstr "" 115 131 116 #: includes/class.gateway.php:2 27132 #: includes/class.gateway.php:230 117 133 msgid "Checkout button width (px)" 118 134 msgstr "" 119 135 120 #: includes/class.gateway.php:23 1136 #: includes/class.gateway.php:234 121 137 msgid "Checkout button height (px)" 122 138 msgstr "" 123 139 124 #: includes/class.gateway.php:23 5140 #: includes/class.gateway.php:238 125 141 msgid "Enable on product details" 126 142 msgstr "" 127 143 128 #: includes/class.gateway.php:24 1144 #: includes/class.gateway.php:244 129 145 msgid "Product details button width (px)" 130 146 msgstr "" 131 147 132 #: includes/class.gateway.php:24 5148 #: includes/class.gateway.php:248 133 149 msgid "Product details button height (px)" 134 150 msgstr "" 135 151 136 #: includes/class.gateway.php:2 49152 #: includes/class.gateway.php:252 137 153 msgid "Enable in cart" 138 154 msgstr "" 139 155 140 #: includes/class.gateway.php:25 5156 #: includes/class.gateway.php:258 141 157 msgid "Cart button width (px)" 142 158 msgstr "" 143 159 144 #: includes/class.gateway.php:2 59160 #: includes/class.gateway.php:262 145 161 msgid "Cart button height (px)" 146 162 msgstr "" 147 163 148 #: includes/class.gateway.php:26 3164 #: includes/class.gateway.php:266 149 165 msgid "Button style" 150 166 msgstr "" 151 167 152 #: includes/class.gateway.php:2 69168 #: includes/class.gateway.php:272 153 169 msgid "Delivery options" 154 170 msgstr "" 155 171 156 #: includes/class.gateway.php:27 3157 #: includes/class.gateway.php:28 6172 #: includes/class.gateway.php:276 173 #: includes/class.gateway.php:289 158 174 msgid "Use Ctrl for multiple choices" 159 175 msgstr "" 160 176 161 #: includes/class.gateway.php:27 6177 #: includes/class.gateway.php:279 162 178 msgid "Free delivery from" 163 179 msgstr "" 164 180 165 #: includes/class.gateway.php:2 79181 #: includes/class.gateway.php:282 166 182 msgid "Free delivery from this order subtotal. Empty for paid delivery." 167 183 msgstr "" 168 184 169 #: includes/class.gateway.php:28 2185 #: includes/class.gateway.php:285 170 186 msgid "Payment methods" 171 187 msgstr "" 172 188 173 #: includes/class.gateway.php:2 89189 #: includes/class.gateway.php:292 174 190 msgid "Number of payments" 175 191 msgstr "" 176 192 177 #: includes/class.gateway.php:29 2193 #: includes/class.gateway.php:295 178 194 msgid "Number of payments for Purchase in parts." 179 195 msgstr "" 180 196 181 #: includes/class.gateway.php:29 5197 #: includes/class.gateway.php:298 182 198 msgid "Base URL" 183 199 msgstr "" 184 200 185 #: includes/class.gateway.php: 297201 #: includes/class.gateway.php:300 186 202 msgid "Base URL for mono checkout API." 187 203 msgstr "" 188 204 189 #: includes/class.gateway.php:32 0205 #: includes/class.gateway.php:323 190 206 msgid "Pickup" 191 207 msgstr "" 192 208 193 #: includes/class.gateway.php:32 1209 #: includes/class.gateway.php:324 194 210 msgid "Courier" 195 211 msgstr "" 196 212 197 #: includes/class.gateway.php:32 2213 #: includes/class.gateway.php:325 198 214 msgid "Nova Poshta" 199 215 msgstr "" 200 216 201 #: includes/class.gateway.php:32 3217 #: includes/class.gateway.php:326 202 218 msgid "NP Postbox" 203 219 msgstr "" 204 220 205 #: includes/class.gateway.php:33 0221 #: includes/class.gateway.php:333 206 222 msgid "Card" 207 223 msgstr "" 208 224 209 #: includes/class.gateway.php:33 2225 #: includes/class.gateway.php:335 210 226 msgid "Purchase in parts" 211 227 msgstr "" 212 228 213 #: includes/class.gateway.php:3 48229 #: includes/class.gateway.php:351 214 230 msgid "Pending payment" 215 231 msgstr "" 216 232 217 233 #: includes/class.gateway.php:375 234 msgid "Need help? Check out our FAQ or contact our support." 235 msgstr "" 236 237 #: includes/class.gateway.php:378 218 238 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>" 219 239 msgstr "" 220 240 221 #: includes/class.gateway.php:37 6241 #: includes/class.gateway.php:379 222 242 msgid "More details on <a href=\"https://www.monobank.ua/\" target=\"_blank\">monobank.ua</a>" 223 243 msgstr "" 224 244 225 #: includes/class.gateway.php:3 77245 #: includes/class.gateway.php:380 226 246 msgid "Your callback URL: %s" 227 247 msgstr "" 228 248 229 #: includes/class.gateway.php:3 78249 #: includes/class.gateway.php:381 230 250 msgid "Your return URL: %s" 231 251 msgstr "" 232 252 233 #: includes/class.gateway.php:38 1253 #: includes/class.gateway.php:384 234 254 msgid "Get your monobank app now:" 235 255 msgstr "" 236 256 237 #: includes/class.gateway.php:40 1257 #: includes/class.gateway.php:404 238 258 msgid "Statuses of mono checkout orders:" 239 259 msgstr "" 240 260 241 #: includes/class.gateway.php:41 6261 #: includes/class.gateway.php:419 242 262 msgid "<strong>Important:</strong> mono checkout does not support orders with coupons." 243 263 msgstr "" 244 264 245 #: includes/class.gateway.php:42 0265 #: includes/class.gateway.php:423 246 266 msgid "Settings" 247 267 msgstr "" 248 268 249 #: includes/class.gateway.php:43 1269 #: includes/class.gateway.php:434 250 270 msgid "Frequent errors" 251 271 msgstr "" 252 272 253 #: includes/class.gateway.php:43 3254 #: includes/class.gateway.php:6 08273 #: includes/class.gateway.php:436 274 #: includes/class.gateway.php:611 255 275 msgid "Fill in your mono checkout Token." 256 276 msgstr "" 257 277 258 #: includes/class.gateway.php:43 4278 #: includes/class.gateway.php:437 259 279 msgid "Please, get your token at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 260 280 msgstr "" 261 281 262 #: includes/class.gateway.php:435 282 #: includes/class.gateway.php:438 283 #: includes/class.gateway.php:616 284 msgid "Check your mono checkout Token." 285 msgstr "" 286 287 #: includes/class.gateway.php:439 288 msgid "Please, make sure you used correct token from <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 289 msgstr "" 290 291 #: includes/class.gateway.php:440 292 msgid "Payment method X is not available for your store." 293 msgstr "" 294 295 #: includes/class.gateway.php:441 296 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." 297 msgstr "" 298 299 #: includes/class.gateway.php:442 300 msgid "Delivery method X is not available for your store." 301 msgstr "" 302 303 #: includes/class.gateway.php:443 304 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." 305 msgstr "" 306 307 #: includes/class.gateway.php:444 308 #: includes/class.gateway.php:639 309 msgid "Checkout is disabled in your account." 310 msgstr "" 311 312 #: includes/class.gateway.php:445 313 msgid "Please, enable your checkout in your account at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 314 msgstr "" 315 263 316 #: includes/class.gateway.php:613 264 msgid "Check your mono checkout Token." 265 msgstr "" 266 267 #: includes/class.gateway.php:436 268 msgid "Please, make sure you used correct token from <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 269 msgstr "" 270 271 #: includes/class.gateway.php:437 272 msgid "Payment method X is not available for your store." 273 msgstr "" 274 275 #: includes/class.gateway.php:438 276 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." 277 msgstr "" 278 279 #: includes/class.gateway.php:439 280 msgid "Delivery method X is not available for your store." 281 msgstr "" 282 283 #: includes/class.gateway.php:440 284 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." 285 msgstr "" 286 287 #: includes/class.gateway.php:441 317 #: includes/class.gateway.php:618 318 #: includes/class.gateway.php:627 288 319 #: includes/class.gateway.php:636 289 msgid "Checkout is disabled in your account." 290 msgstr "" 291 292 #: includes/class.gateway.php:442 293 msgid "Please, enable your checkout in your account at <a href=\"https://web.monobank.ua\" target=\"_blank\">web.monobank.ua</a>" 294 msgstr "" 295 296 #: includes/class.gateway.php:610 297 #: includes/class.gateway.php:615 298 #: includes/class.gateway.php:624 299 #: includes/class.gateway.php:633 300 #: includes/class.gateway.php:638 320 #: includes/class.gateway.php:641 301 321 msgid "More info" 302 322 msgstr "" 303 323 304 #: includes/class.gateway.php:62 2324 #: includes/class.gateway.php:625 305 325 msgid "Payment method \"%s\" is not available for your store." 306 326 msgstr "" 307 327 308 #: includes/class.gateway.php:63 1328 #: includes/class.gateway.php:634 309 329 msgid "Delivery method \"%s\" is not available for your store." 310 330 msgstr "" 311 331 312 #: includes/class.gateway.php:64 1313 #: includes/class.gateway.php:6 57314 #: includes/class.gateway.php:67 4332 #: includes/class.gateway.php:644 333 #: includes/class.gateway.php:660 334 #: includes/class.gateway.php:677 315 335 msgid "Payment error: %s" 316 336 msgstr "" 317 337 318 #: includes/class.gateway.php:64 5338 #: includes/class.gateway.php:648 319 339 msgid "Wrong answer from mono checkout.<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%s</pre>" 320 340 msgstr "" 321 341 322 #: includes/class.gateway.php:66 1342 #: includes/class.gateway.php:664 323 343 msgid "mono checkout declined order: %1$s<br/><a class=\"mono-code-toggle\">API answer</a><pre class=\"mono-api-answer\">%2$s</pre>" 324 344 msgstr "" 325 345 326 #: includes/class.gateway.php:6 78346 #: includes/class.gateway.php:681 327 347 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>" 328 348 msgstr "" 329 349 330 #: includes/class.gateway.php:69 6350 #: includes/class.gateway.php:699 331 351 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>" 332 352 msgstr "" 333 353 334 #: includes/class.gateway.php:7 43354 #: includes/class.gateway.php:758 335 355 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>" 336 356 msgstr "" … … 349 369 msgstr "" 350 370 371 #: includes/class.mono.php:312 372 msgid "mono checkout does not support order with coupons" 373 msgstr "" 374 351 375 #: includes/class.mono.php:393 352 376 msgid "This payment method is not applicable to orders with coupons." -
mono-checkout/trunk/mono.php
r3047124 r3098419 7 7 Plugin URI: https://checkout.mono.bank/woocomerce 8 8 Description: модуль Чекауту від monobank це спосіб автоматизувати процес оформлення покупки на вашому сайті. Доступний функціонал: предзаповнення даних отримувача, рекомендації по доставці та оплаті, всі доступні способи оплати від monobank: еквайринг, Покупка частинами та оплата при отриманні. Має бути підключений інтернет-еквайринг від monobank 9 Version: 1.8. 19 Version: 1.8.2 10 10 Requires at least: 5.8 11 11 Requires PHP: 7.4 … … 18 18 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 19 19 20 define( 'MONO_VERSION', '1.8. 0' );20 define( 'MONO_VERSION', '1.8.2' ); 21 21 define( 'MONO__MINIMUM_WP_VERSION', '5.8' ); 22 22 define( 'MONO__PLUGIN_FILE', __FILE__ ); -
mono-checkout/trunk/readme.txt
r3047124 r3098419 4 4 Requires at least: 5.8 5 5 Tested up to: 6.4 6 Stable tag: 1.8. 16 Stable tag: 1.8.2 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 = 1.8.2 = 53 * Виправлення платіжної адреси в імейлі про замовлення при доставці у відділення або поштомат Нової Пошти 54 52 55 = 1.8.1 = 53 56 * Покращення безпеки
Note: See TracChangeset
for help on using the changeset viewer.