Changeset 2168677
- Timestamp:
- 10/05/2019 09:08:43 AM (6 years ago)
- Location:
- wc-webmoney/trunk
- Files:
-
- 7 edited
-
includes/class-wc-webmoney-method.php (modified) (26 diffs)
-
includes/class-wc-webmoney.php (modified) (1 diff)
-
languages/wc-webmoney-ru_RU.mo (modified) (previous)
-
languages/wc-webmoney-ru_RU.po (modified) (13 diffs)
-
languages/wc-webmoney.pot (modified) (4 diffs)
-
readme.txt (modified) (3 diffs)
-
wc-webmoney.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wc-webmoney/trunk/includes/class-wc-webmoney-method.php
r2167781 r2168677 1065 1065 1066 1066 /** 1067 * Debug 1068 */ 1069 WC_Webmoney::instance()->get_logger()->addDebug('input_payment_notifications get', $_GET); 1070 WC_Webmoney::instance()->get_logger()->addDebug('input_payment_notifications post', $_POST); 1071 1072 /** 1067 1073 * Action not found 1068 1074 */ … … 1079 1085 */ 1080 1086 $LMI_PAYMENT_NO = 0; 1081 if(array_key_exists('LMI_PAYMENT_NO', $_REQUEST))1082 { 1083 $LMI_PAYMENT_NO = $_ REQUEST['LMI_PAYMENT_NO'];1087 if(array_key_exists('LMI_PAYMENT_NO', $_POST)) 1088 { 1089 $LMI_PAYMENT_NO = $_POST['LMI_PAYMENT_NO']; 1084 1090 } 1085 1091 … … 1088 1094 */ 1089 1095 $LMI_PAYMENT_AMOUNT = 0; 1090 if(array_key_exists('LMI_PAYMENT_AMOUNT', $_ REQUEST))1091 { 1092 $LMI_PAYMENT_AMOUNT = $_ REQUEST['LMI_PAYMENT_AMOUNT'];1096 if(array_key_exists('LMI_PAYMENT_AMOUNT', $_POST)) 1097 { 1098 $LMI_PAYMENT_AMOUNT = $_POST['LMI_PAYMENT_AMOUNT']; 1093 1099 } 1094 1100 … … 1097 1103 */ 1098 1104 $LMI_PREREQUEST = 0; 1099 if(array_key_exists('LMI_PREREQUEST', $_ REQUEST))1100 { 1101 $LMI_PREREQUEST = (int) $_ REQUEST['LMI_PREREQUEST'];1105 if(array_key_exists('LMI_PREREQUEST', $_POST)) 1106 { 1107 $LMI_PREREQUEST = (int) $_POST['LMI_PREREQUEST']; 1102 1108 } 1103 1109 … … 1106 1112 */ 1107 1113 $LMI_PAYEE_PURSE = ''; 1108 if(array_key_exists('LMI_PAYEE_PURSE', $_ REQUEST))1109 { 1110 $LMI_PAYEE_PURSE = $_ REQUEST['LMI_PAYEE_PURSE'];1114 if(array_key_exists('LMI_PAYEE_PURSE', $_POST)) 1115 { 1116 $LMI_PAYEE_PURSE = $_POST['LMI_PAYEE_PURSE']; 1111 1117 } 1112 1118 … … 1115 1121 */ 1116 1122 $LMI_MODE = 0; 1117 if(array_key_exists('LMI_MODE', $_ REQUEST))1118 { 1119 $LMI_MODE = (int) $_ REQUEST['LMI_MODE'];1123 if(array_key_exists('LMI_MODE', $_POST)) 1124 { 1125 $LMI_MODE = (int) $_POST['LMI_MODE']; 1120 1126 } 1121 1127 … … 1124 1130 */ 1125 1131 $LMI_SECRET_KEY = ''; 1126 if(array_key_exists('LMI_SECRET_KEY', $_ REQUEST))1127 { 1128 $LMI_SECRET_KEY = $_ REQUEST['LMI_SECRET_KEY'];1132 if(array_key_exists('LMI_SECRET_KEY', $_POST)) 1133 { 1134 $LMI_SECRET_KEY = $_POST['LMI_SECRET_KEY']; 1129 1135 } 1130 1136 … … 1133 1139 */ 1134 1140 $LMI_SYS_INVS_NO = 0; 1135 if(array_key_exists('LMI_SYS_INVS_NO', $_ REQUEST))1136 { 1137 $LMI_SYS_INVS_NO = $_ REQUEST['LMI_SYS_INVS_NO'];1141 if(array_key_exists('LMI_SYS_INVS_NO', $_POST)) 1142 { 1143 $LMI_SYS_INVS_NO = $_POST['LMI_SYS_INVS_NO']; 1138 1144 } 1139 1145 … … 1142 1148 */ 1143 1149 $LMI_SYS_TRANS_NO = 0; 1144 if(array_key_exists('LMI_SYS_TRANS_NO', $_ REQUEST))1145 { 1146 $LMI_SYS_TRANS_NO = $_ REQUEST['LMI_SYS_TRANS_NO'];1150 if(array_key_exists('LMI_SYS_TRANS_NO', $_POST)) 1151 { 1152 $LMI_SYS_TRANS_NO = $_POST['LMI_SYS_TRANS_NO']; 1147 1153 } 1148 1154 … … 1151 1157 */ 1152 1158 $LMI_SYS_TRANS_DATE = ''; 1153 if(array_key_exists('LMI_SYS_TRANS_DATE', $_ REQUEST))1154 { 1155 $LMI_SYS_TRANS_DATE = $_ REQUEST['LMI_SYS_TRANS_DATE'];1159 if(array_key_exists('LMI_SYS_TRANS_DATE', $_POST)) 1160 { 1161 $LMI_SYS_TRANS_DATE = $_POST['LMI_SYS_TRANS_DATE']; 1156 1162 } 1157 1163 … … 1160 1166 */ 1161 1167 $LMI_PAYER_PURSE = ''; 1162 if(array_key_exists('LMI_PAYER_PURSE', $_ REQUEST))1163 { 1164 $LMI_PAYER_PURSE = $_ REQUEST['LMI_PAYER_PURSE'];1168 if(array_key_exists('LMI_PAYER_PURSE', $_POST)) 1169 { 1170 $LMI_PAYER_PURSE = $_POST['LMI_PAYER_PURSE']; 1165 1171 } 1166 1172 … … 1169 1175 */ 1170 1176 $LMI_PAYER_WM = ''; 1171 if(array_key_exists('LMI_PAYER_WM', $_ REQUEST))1172 { 1173 $LMI_PAYER_WM = $_ REQUEST['LMI_PAYER_WM'];1177 if(array_key_exists('LMI_PAYER_WM', $_POST)) 1178 { 1179 $LMI_PAYER_WM = $_POST['LMI_PAYER_WM']; 1174 1180 } 1175 1181 … … 1178 1184 */ 1179 1185 $LMI_CAPITALLER_WMID = ''; 1180 if(array_key_exists('LMI_CAPITALLER_WMID', $_ REQUEST))1181 { 1182 $LMI_CAPITALLER_WMID = $_ REQUEST['LMI_CAPITALLER_WMID'];1186 if(array_key_exists('LMI_CAPITALLER_WMID', $_POST)) 1187 { 1188 $LMI_CAPITALLER_WMID = $_POST['LMI_CAPITALLER_WMID']; 1183 1189 } 1184 1190 … … 1187 1193 */ 1188 1194 $LMI_PAYMER_EMAIL = ''; 1189 if(array_key_exists('LMI_PAYMER_EMAIL', $_ REQUEST))1190 { 1191 $LMI_PAYMER_EMAIL = $_ REQUEST['LMI_PAYMER_EMAIL'];1195 if(array_key_exists('LMI_PAYMER_EMAIL', $_POST)) 1196 { 1197 $LMI_PAYMER_EMAIL = $_POST['LMI_PAYMER_EMAIL']; 1192 1198 } 1193 1199 … … 1196 1202 */ 1197 1203 $LMI_PAYER_IP = ''; 1198 if(array_key_exists('LMI_PAYER_IP', $_ REQUEST))1199 { 1200 $LMI_PAYER_IP = $_ REQUEST['LMI_PAYER_IP'];1204 if(array_key_exists('LMI_PAYER_IP', $_POST)) 1205 { 1206 $LMI_PAYER_IP = $_POST['LMI_PAYER_IP']; 1201 1207 } 1202 1208 … … 1205 1211 */ 1206 1212 $LMI_HASH = ''; 1207 if(array_key_exists('LMI_HASH', $_ REQUEST))1208 { 1209 $LMI_HASH = $_ REQUEST['LMI_HASH'];1213 if(array_key_exists('LMI_HASH', $_POST)) 1214 { 1215 $LMI_HASH = $_POST['LMI_HASH']; 1210 1216 } 1211 1217 … … 1232 1238 * Order not found 1233 1239 */ 1234 if($order === false) 1235 { 1240 if($order === false && $_GET['action'] !== 'result') 1241 { 1242 /** 1243 * Debug 1244 */ 1245 WC_Webmoney::instance()->get_logger()->addError('input_payment_notifications order not found by id: '. $LMI_PAYMENT_NO); 1246 1236 1247 /** 1237 1248 * Send Service unavailable … … 1245 1256 if ($_GET['action'] === 'result') 1246 1257 { 1258 /** 1259 * Check in settings 1260 */ 1261 if($order === false) 1262 { 1263 /** 1264 * Debug 1265 */ 1266 WC_Webmoney::instance()->get_logger()->addInfo('input_payment_notifications check result url'); 1267 1268 /** 1269 * Send Service available 1270 */ 1271 die('Ok'); 1272 } 1247 1273 /** 1248 1274 * Check pre request … … 1250 1276 if($LMI_PREREQUEST === 1) 1251 1277 { 1278 /** 1279 * Debug 1280 */ 1281 WC_Webmoney::instance()->get_logger()->addInfo('input_payment_notifications PRE request success'. $LMI_PAYMENT_NO); 1282 1252 1283 /** 1253 1284 * Add order note … … 1269 1300 if($local_hash !== $LMI_HASH) 1270 1301 { 1302 /** 1303 * Debug 1304 */ 1305 WC_Webmoney::instance()->get_logger()->addError('input_payment_notifications Validate hash error'. $LMI_PAYMENT_NO); 1306 1271 1307 $validate = false; 1272 1308 … … 1282 1318 if($LMI_SECRET_KEY !== '' && $this->secret_key !== $LMI_SECRET_KEY) 1283 1319 { 1320 /** 1321 * Debug 1322 */ 1323 WC_Webmoney::instance()->get_logger()->addError('input_payment_notifications Validate secret key error'. $LMI_PAYMENT_NO); 1324 1284 1325 $validate = false; 1285 1326 … … 1326 1367 1327 1368 /** 1369 * Debug 1370 */ 1371 WC_Webmoney::instance()->get_logger()->addError('input_payment_notifications payment_complete'. $LMI_SYS_TRANS_NO); 1372 1373 /** 1328 1374 * Set status is payment 1329 1375 */ … … 1334 1380 { 1335 1381 /** 1382 * Debug 1383 */ 1384 WC_Webmoney::instance()->get_logger()->addError('input_payment_notifications Validate false'. $LMI_SYS_TRANS_NO); 1385 1386 /** 1336 1387 * Send Service unavailable 1337 1388 */ … … 1341 1392 1342 1393 /** 1394 * Debug 1395 */ 1396 WC_Webmoney::instance()->get_logger()->addError('input_payment_notifications Result final error'. $LMI_SYS_TRANS_NO); 1397 1398 /** 1343 1399 * Send Service unavailable 1344 1400 */ … … 1350 1406 else if ($_GET['action'] === 'success') 1351 1407 { 1408 /** 1409 * Debug 1410 */ 1411 WC_Webmoney::instance()->get_logger()->addDebug('input_payment_notifications Success'); 1412 1352 1413 /** 1353 1414 * Add order note … … 1372 1433 { 1373 1434 /** 1435 * Debug 1436 */ 1437 WC_Webmoney::instance()->get_logger()->addDebug('input_payment_notifications Fail'); 1438 1439 /** 1374 1440 * Add order note 1375 1441 */ 1376 $order->add_order_note( sprintf(__('The order has not been paid. WMID: %1$s and purse: %2$s and IP: %3$s', 'wc-webmoney'), $LMI_PAYER_WM, $LMI_PAYER_PURSE, $LMI_PAYER_IP));1442 $order->add_order_note(__('Client return to fail url. The order has not been paid.', 'wc-webmoney')); 1377 1443 1378 1444 /** 1379 1445 * Set status is failed 1380 1446 */ 1381 $order->update_status('failed');1447 //$order->update_status('failed'); 1382 1448 1383 1449 /** -
wc-webmoney/trunk/includes/class-wc-webmoney.php
r2167781 r2168677 328 328 $wp_dir = wp_upload_dir(); 329 329 330 $this->set_logger(new WC_Gatework_Logger( $wp_dir['basedir'] . '/wc-webmoney.txt', 400)); 330 $options = get_option('woocommerce_webmoney_settings', array()); 331 $level = 400; 332 333 if(isset($options['logger']) && $options['logger'] !== '') 334 { 335 $level = $options['logger']; 336 } 337 338 $this->set_logger(new WC_Gatework_Logger( $wp_dir['basedir'] . '/wc-webmoney.txt', $level)); 331 339 } 332 340 } -
wc-webmoney/trunk/languages/wc-webmoney-ru_RU.po
r2167781 r2168677 2 2 msgstr "" 3 3 "Project-Id-Version: Webmoney - payment gateway for WooCommerce\n" 4 "POT-Creation-Date: 2019-10-0 3 20:04+0300\n"5 "PO-Revision-Date: 2019-10-0 3 20:21+0300\n"4 "POT-Creation-Date: 2019-10-05 11:56+0300\n" 5 "PO-Revision-Date: 2019-10-05 12:01+0300\n" 6 6 "Last-Translator: Mofsy <ru.mofsy@yandex.ru>\n" 7 7 "Language-Team: Mofsy <support@mofsy.ru>\n" … … 28 28 #: includes/class-wc-webmoney-method.php:88 29 29 msgid "Pay via Webmoney." 30 msgstr "Оплата с помощью Webmoney "30 msgstr "Оплата с помощью Webmoney." 31 31 32 32 #: includes/class-wc-webmoney-method.php:397 … … 130 130 131 131 #: includes/class-wc-webmoney-method.php:467 132 #, fuzzy, php-format 133 #| msgid "" 134 #| "80%% of test payments will be successful, 20%% of test payments will fail" 132 #, php-format 135 133 msgid "80% of will be successful, 20% of will be fail" 136 msgstr " 80%% платежей успешно, 20%% не успешно"134 msgstr "" 137 135 138 136 #: includes/class-wc-webmoney-method.php:473 … … 211 209 212 210 #: includes/class-wc-webmoney-method.php:549 213 #, fuzzy214 #| msgid "Webmoney"215 211 msgid "webmoney" 216 msgstr " Webmoney"212 msgstr "webmoney" 217 213 218 214 #: includes/class-wc-webmoney-method.php:554 … … 242 238 #: includes/class-wc-webmoney-method.php:565 243 239 msgid "Payment via Webmoney." 244 msgstr "Оплата с помощью Webmoney "240 msgstr "Оплата с помощью Webmoney." 245 241 246 242 #: includes/class-wc-webmoney-method.php:582 247 243 msgid "Purse type: WMR" 248 msgstr " КошелекWMR"244 msgstr "Тип кошелька: WMR" 249 245 250 246 #: includes/class-wc-webmoney-method.php:584 … … 276 272 #: includes/class-wc-webmoney-method.php:599 277 273 msgid "Please write Secret key for WMR purse." 278 msgstr "Пожалуйста, введите Секретный ключ для WMR "274 msgstr "Пожалуйста, введите Секретный ключ для WMR." 279 275 280 276 #: includes/class-wc-webmoney-method.php:617 281 277 msgid "Purse type: WMP" 282 msgstr " КошелекWMP"278 msgstr "Тип кошелька: WMP" 283 279 284 280 #: includes/class-wc-webmoney-method.php:624 … … 332 328 #: includes/class-wc-webmoney-method.php:687 333 329 msgid "Purse type: WMZ" 334 msgstr " КошелекWMZ"330 msgstr "Тип кошелька: WMZ" 335 331 336 332 #: includes/class-wc-webmoney-method.php:689 … … 422 418 msgstr "Отменить и вернутся в корзину" 423 419 424 #: includes/class-wc-webmoney-method.php:10 74420 #: includes/class-wc-webmoney-method.php:1080 425 421 msgid "Action error." 426 422 msgstr "Ошибка действия." 427 423 428 #: includes/class-wc-webmoney-method.php:12 39424 #: includes/class-wc-webmoney-method.php:1250 429 425 msgid "Order not found." 430 426 msgstr "Заказ не найден." 431 427 432 #: includes/class-wc-webmoney-method.php:12 55428 #: includes/class-wc-webmoney-method.php:1286 433 429 #, php-format 434 430 msgid "Webmoney PRE request success. WMID: %1$s and purse: %2$s and IP: %3$s" 435 431 msgstr "Webmoney предзапрос выполнен. WMID: %1$s Кошелек: %2$s IP: %3$s" 436 432 437 #: includes/class-wc-webmoney-method.php:1 276433 #: includes/class-wc-webmoney-method.php:1312 438 434 #, php-format 439 435 msgid "Validate hash error. Local: %1$s Remote: %2$s" 440 436 msgstr "Ошибка валидации хеша. Локальный: %1$s Удаленный: %2$s" 441 437 442 #: includes/class-wc-webmoney-method.php:1 289438 #: includes/class-wc-webmoney-method.php:1330 443 439 #, php-format 444 440 msgid "Validate secret key error. Local: %1$s Remote: %2$s" 445 441 msgstr "Ошибка проверки секретного ключа. Локальный: %1$s Удаленный: %2$s" 446 442 447 #: includes/class-wc-webmoney-method.php:13 14443 #: includes/class-wc-webmoney-method.php:1355 448 444 #, php-format 449 445 msgid "" … … 452 448 "Счет успешно оплачен (ТЕСТОВЫЙ ПЛАТЕЖ). WMID: %1$s Кошелек: %2$s IP: %3$s" 453 449 454 #: includes/class-wc-webmoney-method.php:13 24450 #: includes/class-wc-webmoney-method.php:1365 455 451 #, php-format 456 452 msgid "Order successfully paid. WMID: %1$s and purse: %2$s and IP: %3$s" 457 453 msgstr "Счет успешно оплачен. WMID: %1$s Кошелек: %2$s IP: %3$s" 458 454 459 #: includes/class-wc-webmoney-method.php:13 38460 #: includes/class-wc-webmoney-method.php:1 345455 #: includes/class-wc-webmoney-method.php:1389 456 #: includes/class-wc-webmoney-method.php:1401 461 457 msgid "Payment error, please pay other time." 462 458 msgstr "Ошибка платежа, пожалуйста повторите попытку позже." 463 459 464 #: includes/class-wc-webmoney-method.php:1 355460 #: includes/class-wc-webmoney-method.php:1416 465 461 msgid "Client return to success page." 466 462 msgstr "Клиент вернулся на страницу успешного платежа." 467 463 468 #: includes/class-wc-webmoney-method.php:1376 469 #, php-format 470 msgid "The order has not been paid. WMID: %1$s and purse: %2$s and IP: %3$s" 471 msgstr "Счет не был оплачен. WMID: %1$s Кошелек: %2$s IP: %3$s" 472 473 #: includes/class-wc-webmoney-method.php:1393 464 #: includes/class-wc-webmoney-method.php:1442 465 msgid "Client return to fail url. The order has not been paid." 466 msgstr "Клиент вернулся на fail url. Счет не был оплачен." 467 468 #: includes/class-wc-webmoney-method.php:1459 474 469 msgid "Api request error. Action not found." 475 470 msgstr "Ошибка запроса Api. Действие не найдено." 476 471 477 #: includes/class-wc-webmoney.php:3 65472 #: includes/class-wc-webmoney.php:373 478 473 msgid "Buy Premium add-on" 479 474 msgstr "Купить премиум" 480 475 481 #: includes/class-wc-webmoney.php:38 0476 #: includes/class-wc-webmoney.php:388 482 477 msgid "Settings" 483 478 msgstr "Настройки" 484 479 485 #: includes/class-wc-webmoney.php:41 0480 #: includes/class-wc-webmoney.php:418 486 481 msgid "" 487 482 "The plugin for accepting payments through Webmoney for WooCommerce has been " … … 491 486 "версии, требующей дополнительной настройки." 492 487 493 #: includes/class-wc-webmoney.php:4 12488 #: includes/class-wc-webmoney.php:420 494 489 msgid "here" 495 490 msgstr "сюда" 496 491 497 #: includes/class-wc-webmoney.php:4 13492 #: includes/class-wc-webmoney.php:421 498 493 #, php-format 499 494 msgid "Press %s (to go to payment gateway settings)." 500 495 msgstr "Нажмите %s (для перехода к настройкам платежного шлюза)." 501 496 502 #: includes/class-wc-webmoney.php:5 18497 #: includes/class-wc-webmoney.php:526 503 498 msgid "Useful information" 504 499 msgstr "Полезная информация" 505 500 506 #: includes/class-wc-webmoney.php:52 1 includes/class-wc-webmoney.php:543501 #: includes/class-wc-webmoney.php:529 includes/class-wc-webmoney.php:551 507 502 msgid "Official plugin page" 508 503 msgstr "Официальная страница плагина" 509 504 510 #: includes/class-wc-webmoney.php:5 22505 #: includes/class-wc-webmoney.php:530 511 506 msgid "Related news: webmoney" 512 507 msgstr "Новости по теме: webmoney" 513 508 514 #: includes/class-wc-webmoney.php:5 23509 #: includes/class-wc-webmoney.php:531 515 510 msgid "Plugins for WooCommerce" 516 511 msgstr "Плагины для WooCommerce" 517 512 518 #: includes/class-wc-webmoney.php:5 24513 #: includes/class-wc-webmoney.php:532 519 514 msgid "Feedback to author" 520 515 msgstr "Связь с автором" 521 516 522 #: includes/class-wc-webmoney.php:5 36517 #: includes/class-wc-webmoney.php:544 523 518 msgid "Paid supplement" 524 519 msgstr "Платное дополнение" 525 520 526 #: includes/class-wc-webmoney.php:54 1521 #: includes/class-wc-webmoney.php:549 527 522 msgid "Even more opportunities to accept payments. Increase conversion." 528 523 msgstr "Еще больше возможностей принимать платежи. Увеличьте конверсию." … … 533 528 534 529 #. Plugin URI of the plugin/theme 535 #| msgid "https://mofsy.ru/projects/woocommerce-webmoney-payment-gateway"536 530 msgid "https://mofsy.ru/projects/wc-webmoney" 537 531 msgstr "https://mofsy.ru/projects/wc-webmoney" … … 548 542 msgid "https://mofsy.ru" 549 543 msgstr "https://mofsy.ru" 544 545 #~ msgid "The order has not been paid. WMID: %1$s and purse: %2$s and IP: %3$s" 546 #~ msgstr "Счет не был оплачен. WMID: %1$s Кошелек: %2$s IP: %3$s" 550 547 551 548 #~ msgid "" … … 610 607 #~ msgstr "Счет успешно оплачен." 611 608 612 #~ msgid "The order has not been paid."613 #~ msgstr "Счет не был оплачен."614 615 609 #~ msgid "Wallets" 616 610 #~ msgstr "Кошельки" -
wc-webmoney/trunk/languages/wc-webmoney.pot
r2167781 r2168677 4 4 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 5 5 "Project-Id-Version: Webmoney - payment gateway for WooCommerce\n" 6 "POT-Creation-Date: 2019-10-0 3 20:02+0300\n"6 "POT-Creation-Date: 2019-10-05 11:56+0300\n" 7 7 "PO-Revision-Date: 2016-01-05 19:06+0300\n" 8 8 "Last-Translator: Mofsy <ru.mofsy@yandex.ru>\n" … … 385 385 msgstr "" 386 386 387 #: includes/class-wc-webmoney-method.php:10 74387 #: includes/class-wc-webmoney-method.php:1080 388 388 msgid "Action error." 389 389 msgstr "" 390 390 391 #: includes/class-wc-webmoney-method.php:12 39391 #: includes/class-wc-webmoney-method.php:1250 392 392 msgid "Order not found." 393 393 msgstr "" 394 394 395 #: includes/class-wc-webmoney-method.php:12 55395 #: includes/class-wc-webmoney-method.php:1286 396 396 #, php-format 397 397 msgid "Webmoney PRE request success. WMID: %1$s and purse: %2$s and IP: %3$s" 398 398 msgstr "" 399 399 400 #: includes/class-wc-webmoney-method.php:1 276400 #: includes/class-wc-webmoney-method.php:1312 401 401 #, php-format 402 402 msgid "Validate hash error. Local: %1$s Remote: %2$s" 403 403 msgstr "" 404 404 405 #: includes/class-wc-webmoney-method.php:1 289405 #: includes/class-wc-webmoney-method.php:1330 406 406 #, php-format 407 407 msgid "Validate secret key error. Local: %1$s Remote: %2$s" 408 408 msgstr "" 409 409 410 #: includes/class-wc-webmoney-method.php:13 14410 #: includes/class-wc-webmoney-method.php:1355 411 411 #, php-format 412 412 msgid "" … … 414 414 msgstr "" 415 415 416 #: includes/class-wc-webmoney-method.php:13 24416 #: includes/class-wc-webmoney-method.php:1365 417 417 #, php-format 418 418 msgid "Order successfully paid. WMID: %1$s and purse: %2$s and IP: %3$s" 419 419 msgstr "" 420 420 421 #: includes/class-wc-webmoney-method.php:13 38422 #: includes/class-wc-webmoney-method.php:1 345421 #: includes/class-wc-webmoney-method.php:1389 422 #: includes/class-wc-webmoney-method.php:1401 423 423 msgid "Payment error, please pay other time." 424 424 msgstr "" 425 425 426 #: includes/class-wc-webmoney-method.php:1 355426 #: includes/class-wc-webmoney-method.php:1416 427 427 msgid "Client return to success page." 428 428 msgstr "" 429 429 430 #: includes/class-wc-webmoney-method.php:1376 431 #, php-format 432 msgid "The order has not been paid. WMID: %1$s and purse: %2$s and IP: %3$s" 433 msgstr "" 434 435 #: includes/class-wc-webmoney-method.php:1393 430 #: includes/class-wc-webmoney-method.php:1442 431 msgid "Client return to fail url. The order has not been paid." 432 msgstr "" 433 434 #: includes/class-wc-webmoney-method.php:1459 436 435 msgid "Api request error. Action not found." 437 436 msgstr "" 438 437 439 #: includes/class-wc-webmoney.php:3 65438 #: includes/class-wc-webmoney.php:373 440 439 msgid "Buy Premium add-on" 441 440 msgstr "" 442 441 443 #: includes/class-wc-webmoney.php:38 0442 #: includes/class-wc-webmoney.php:388 444 443 msgid "Settings" 445 444 msgstr "" 446 445 447 #: includes/class-wc-webmoney.php:41 0446 #: includes/class-wc-webmoney.php:418 448 447 msgid "" 449 448 "The plugin for accepting payments through Webmoney for WooCommerce has been " … … 451 450 msgstr "" 452 451 453 #: includes/class-wc-webmoney.php:4 12452 #: includes/class-wc-webmoney.php:420 454 453 msgid "here" 455 454 msgstr "" 456 455 457 #: includes/class-wc-webmoney.php:4 13456 #: includes/class-wc-webmoney.php:421 458 457 #, php-format 459 458 msgid "Press %s (to go to payment gateway settings)." 460 459 msgstr "" 461 460 462 #: includes/class-wc-webmoney.php:5 18461 #: includes/class-wc-webmoney.php:526 463 462 msgid "Useful information" 464 463 msgstr "" 465 464 466 #: includes/class-wc-webmoney.php:52 1 includes/class-wc-webmoney.php:543465 #: includes/class-wc-webmoney.php:529 includes/class-wc-webmoney.php:551 467 466 msgid "Official plugin page" 468 467 msgstr "" 469 468 470 #: includes/class-wc-webmoney.php:5 22469 #: includes/class-wc-webmoney.php:530 471 470 msgid "Related news: webmoney" 472 471 msgstr "" 473 472 474 #: includes/class-wc-webmoney.php:5 23473 #: includes/class-wc-webmoney.php:531 475 474 msgid "Plugins for WooCommerce" 476 475 msgstr "" 477 476 478 #: includes/class-wc-webmoney.php:5 24477 #: includes/class-wc-webmoney.php:532 479 478 msgid "Feedback to author" 480 479 msgstr "" 481 480 482 #: includes/class-wc-webmoney.php:5 36481 #: includes/class-wc-webmoney.php:544 483 482 msgid "Paid supplement" 484 483 msgstr "" 485 484 486 #: includes/class-wc-webmoney.php:54 1485 #: includes/class-wc-webmoney.php:549 487 486 msgid "Even more opportunities to accept payments. Increase conversion." 488 487 msgstr "" -
wc-webmoney/trunk/readme.txt
r2167781 r2168677 17 17 18 18 This is the best payment gateway plugin for Webmoney, because it is the most integrated with Webmoney Merchant capabilities and is available for most versions WooCommerce and Wordpress. 19 [More description](https://mofsy.ru/projects/wc-webmoney 19 [More description](https://mofsy.ru/projects/wc-webmoney) 20 20 21 21 Questions and answers: … … 24 24 = Support external plugins = 25 25 1. WPML (http://wpml.org) 26 2. WooCommerce Currency Switcher (https://currency-switcher.com) )26 2. WooCommerce Currency Switcher (https://currency-switcher.com) 27 27 28 28 = Support currency = … … 53 53 54 54 == Changelog == 55 56 = 2.0.1.1 = 57 * Fix logger 58 * Fix language files 59 * Fix result url 60 * More fix 55 61 56 62 = 2.0.0.1 = -
wc-webmoney/trunk/wc-webmoney.php
r2167781 r2168677 4 4 Plugin URI: https://mofsy.ru/projects/wc-webmoney 5 5 Description: Allows you to use Webmoney payment gateway with the WooCommerce plugin. 6 Version: 2.0. 0.16 Version: 2.0.1.1 7 7 WC requires at least: 3.0 8 8 WC tested up to: 3.7
Note: See TracChangeset
for help on using the changeset viewer.