Changeset 3234688
- Timestamp:
- 02/04/2025 12:18:10 PM (14 months ago)
- Location:
- art-woocommerce-order-one-click
- Files:
-
- 2 deleted
- 14 edited
- 1 copied
-
tags/3.1.2 (copied) (copied from art-woocommerce-order-one-click/trunk)
-
tags/3.1.2/.eslintignore (deleted)
-
tags/3.1.2/art-woo-order-one-click.php (modified) (1 diff)
-
tags/3.1.2/classes/Admin/Settings.php (modified) (1 diff)
-
tags/3.1.2/classes/RequestProcessing/OrderCreator.php (modified) (2 diffs)
-
tags/3.1.2/languages/art-woocommerce-order-one-click-ru_RU.mo (modified) (previous)
-
tags/3.1.2/languages/art-woocommerce-order-one-click-ru_RU.po (modified) (11 diffs)
-
tags/3.1.2/readme.txt (modified) (2 diffs)
-
tags/3.1.2/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/.eslintignore (deleted)
-
trunk/art-woo-order-one-click.php (modified) (1 diff)
-
trunk/classes/Admin/Settings.php (modified) (1 diff)
-
trunk/classes/RequestProcessing/OrderCreator.php (modified) (2 diffs)
-
trunk/languages/art-woocommerce-order-one-click-ru_RU.mo (modified) (previous)
-
trunk/languages/art-woocommerce-order-one-click-ru_RU.po (modified) (11 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
art-woocommerce-order-one-click/tags/3.1.2/art-woo-order-one-click.php
r3232939 r3234688 6 6 * Domain Path: /languages 7 7 * Description: Plugin for WooCommerce. It includes the catalog mode in the store (there are no prices and the Buy button) and can turn on the Buy/Order button in one click. WooCommerce and Contact Form 7 are required for proper operation. 8 * Version: 3.1. 18 * Version: 3.1.2 9 9 * Author: Artem Abramovich 10 10 * Author URI: https://wpruse.ru/ -
art-woocommerce-order-one-click/tags/3.1.2/classes/Admin/Settings.php
r3232179 r3234688 256 256 ), 257 257 'id' => 'woocommerce_awooc_change_subject', 258 'default' => 'no', 259 'type' => 'checkbox', 260 'autoload' => false, 261 ], 262 263 [ 264 'title' => __( 'Change name', 'art-woocommerce-order-one-click' ), 265 'desc' => __( 266 'When enabled, the order name in the order listing will be changed from #12345 SamBoy to #12345 Order one click +1 (234) 123-45-67', 267 'art-woocommerce-order-one-click' 268 ), 269 'id' => 'woocommerce_awooc_change_name', 258 270 'default' => 'no', 259 271 'type' => 'checkbox', -
art-woocommerce-order-one-click/tags/3.1.2/classes/RequestProcessing/OrderCreator.php
r3232179 r3234688 22 22 * @since 1.8.2 23 23 */ 24 class OrderCreator extends RequestHandler {24 class OrderCreator extends RequestHandler { 25 25 26 26 /** … … 57 57 public function add_name( string $buyer, \WC_Order $order ): string { 58 58 59 if ( $order->get_meta( '_awooc_order' ) ) {59 if ( $order->get_meta( '_awooc_order' ) && get_option( 'woocommerce_awooc_change_name' ) ) { 60 60 $buyer = __( 'Order One Click: ', 'art-woocommerce-order-fast' ) . $order->get_billing_phone(); 61 61 } -
art-woocommerce-order-one-click/tags/3.1.2/languages/art-woocommerce-order-one-click-ru_RU.po
r3232179 r3234688 2 2 msgstr "" 3 3 "Project-Id-Version: art-woocommerce-order-one-click\n" 4 "POT-Creation-Date: 2025-0 1-30 01:23+0400\n"5 "PO-Revision-Date: 2025-0 1-30 01:23+0400\n"4 "POT-Creation-Date: 2025-02-04 15:14+0400\n" 5 "PO-Revision-Date: 2025-02-04 15:15+0400\n" 6 6 "Last-Translator: Абрамович Артем | artabr.ru <artikus.sol@gmail.com>\n" 7 7 "Language-Team: \n" … … 71 71 msgstr "Заказ в один клик" 72 72 73 #: classes/Admin/Settings.php:35 classes/ Orders.php:14773 #: classes/Admin/Settings.php:35 classes/RequestProcessing/OrderCreator.php:149 74 74 msgid "One click order" 75 75 msgstr "Заказ в один клик" … … 177 177 #: classes/Admin/Settings.php:252 178 178 msgid "Change subject" 179 msgstr "Изменить заголовок"179 msgstr "Изменить тему письма" 180 180 181 181 #: classes/Admin/Settings.php:254 … … 187 187 "в формате \"Тема письма №112233\"" 188 188 189 #: classes/Admin/Settings.php:263 189 #: classes/Admin/Settings.php:264 190 msgid "Change name" 191 msgstr "Изменить заголовок" 192 193 #: classes/Admin/Settings.php:266 194 msgid "" 195 "When enabled, the order name in the order listing will be changed from " 196 "#12345 SamBoy to #12345 Order one click +1 (234) 123-45-67" 197 msgstr "" 198 "При включении, в листинге заказов название заказа будет изменено с #12345 " 199 "SamBoy на #12345 Order one click +1 (234) 123-45-67" 200 201 #: classes/Admin/Settings.php:275 190 202 msgid "Custom letter template" 191 203 msgstr "Произвольный шаблон письма" 192 204 193 #: classes/Admin/Settings.php:2 65205 #: classes/Admin/Settings.php:277 194 206 msgid "" 195 207 "When enabled, it will not use the template specified in CF7, but an " … … 199 211 "шаблон письма из плагина" 200 212 201 #: classes/Admin/Settings.php:2 78213 #: classes/Admin/Settings.php:290 202 214 msgid "Others" 203 215 msgstr "Разное" 204 216 205 #: classes/Admin/Settings.php:2 85217 #: classes/Admin/Settings.php:297 206 218 msgid "Do not delete settings" 207 219 msgstr "Не удалять настройки" 208 220 209 #: classes/Admin/Settings.php:2 87221 #: classes/Admin/Settings.php:299 210 222 msgid "" 211 223 "If enabled, then the settings when you remove the plugin will NOT be deleted" 212 224 msgstr "Если включено, то настройки при удалении плагина НЕ будут удалены" 213 225 214 #: classes/Admin/Settings.php:3 25226 #: classes/Admin/Settings.php:337 215 227 msgid "Useful links" 216 228 msgstr "Социальные ссылки" 217 229 218 #: classes/Admin/Settings.php:3 35230 #: classes/Admin/Settings.php:347 219 231 msgid "Donate" 220 232 msgstr "Поддержать" 221 233 222 #: classes/Admin/Settings.php:3 68234 #: classes/Admin/Settings.php:380 223 235 msgid "Catalog mode" 224 236 msgstr "Режим каталога" 225 237 226 #: classes/Admin/Settings.php:3 69238 #: classes/Admin/Settings.php:381 227 239 msgid "Normal mode" 228 240 msgstr "Штатный режим" 229 241 230 #: classes/Admin/Settings.php:3 70242 #: classes/Admin/Settings.php:382 231 243 msgid "Pre-order mode" 232 244 msgstr "Режим предзаказа" 233 245 234 #: classes/Admin/Settings.php:3 71246 #: classes/Admin/Settings.php:383 235 247 msgid "Special mode" 236 248 msgstr "Специальный режим" 237 249 238 #: classes/Admin/Settings.php:4 12250 #: classes/Admin/Settings.php:424 239 251 msgid "Title" 240 252 msgstr "Наименование" 241 253 242 #: classes/Admin/Settings.php:4 13254 #: classes/Admin/Settings.php:425 243 255 msgid "Image" 244 256 msgstr "Изображение" 245 257 246 #: classes/Admin/Settings.php:4 14258 #: classes/Admin/Settings.php:426 247 259 msgid "Price" 248 260 msgstr "Цена" 249 261 250 #: classes/Admin/Settings.php:4 15262 #: classes/Admin/Settings.php:427 251 263 msgid "SKU" 252 264 msgstr "Артикул" 253 265 254 #: classes/Admin/Settings.php:4 16266 #: classes/Admin/Settings.php:428 255 267 msgid "Attributes" 256 268 msgstr "Атрибуты" 257 269 258 #: classes/Admin/Settings.php:4 17templates/quantity-input.php:41270 #: classes/Admin/Settings.php:429 templates/quantity-input.php:41 259 271 msgid "Quantity" 260 272 msgstr "Количество" 261 273 262 #: classes/Admin/Settings.php:4 18274 #: classes/Admin/Settings.php:430 263 275 msgid "Amount" 264 276 msgstr "Итого" 265 277 266 #: classes/Admin/Settings.php:4 35278 #: classes/Admin/Settings.php:447 267 279 msgid "" 268 280 "<strong>Warning! The functionality is under development. </strong> For the " … … 274 286 "c именами:" 275 287 276 #: classes/Admin/Settings.php:4 40288 #: classes/Admin/Settings.php:452 277 289 msgid "field Name - <code>awooc-text</code>;" 278 290 msgstr "поле Имя - <code>awooc-text</code>;" 279 291 280 #: classes/Admin/Settings.php:4 41292 #: classes/Admin/Settings.php:453 281 293 msgid "field Email - <code>awooc-email</code>;" 282 294 msgstr "поле Емайл - <code>awooc-email</code>;" 283 295 284 #: classes/Admin/Settings.php:4 42296 #: classes/Admin/Settings.php:454 285 297 msgid "field Phone - <code>awooc-tel</code>;" 286 298 msgstr "поле Телефон - <code>awooc-tel</code>;" 287 299 288 #: classes/Admin/Settings.php:4 77300 #: classes/Admin/Settings.php:489 289 301 #, php-format 290 302 msgid "" … … 295 307 "большое спасибо!" 296 308 297 #: classes/Admin/Settings.php:4 78 classes/Admin/Settings.php:532309 #: classes/Admin/Settings.php:490 classes/Admin/Settings.php:544 298 310 msgid "Art WooCommerce Order One Click" 299 311 msgstr "Art WooCommerce Order One Click" 300 312 301 #: classes/Admin/Settings.php:4 81313 #: classes/Admin/Settings.php:493 302 314 msgid "five star" 303 315 msgstr "пять звезд" 304 316 305 #: classes/Admin/Settings.php:4 83317 #: classes/Admin/Settings.php:495 306 318 msgid "Thanks :)" 307 319 msgstr "Пожалуйста, не загружайте эту страницу напрямую. Спасибо!" 308 320 309 #: classes/Admin/Settings.php: 494321 #: classes/Admin/Settings.php:506 310 322 msgid "Thank you for using the plugin!" 311 323 msgstr "Спасибо, что используете плагин!" 312 324 313 #: classes/Admin/Settings.php:5 18325 #: classes/Admin/Settings.php:530 314 326 msgid "Yandex Money" 315 327 msgstr "Яндекс Деньги" 316 328 317 #: classes/Admin/Settings.php:5 19329 #: classes/Admin/Settings.php:531 318 330 msgid "Make a donation through the Yandex Money system. You can use bank cards" 319 331 msgstr "Поддержать через Яндекс Деньги. Можно использовать банковские карты" 320 332 321 #: classes/Admin/Settings.php:5 23333 #: classes/Admin/Settings.php:535 322 334 msgid "WPRUSe" 323 335 msgstr "WPRUSe" 324 336 325 #: classes/Admin/Settings.php:5 24337 #: classes/Admin/Settings.php:536 326 338 msgid "WPRUSe project site" 327 339 msgstr "Описание проекта" 328 340 329 #: classes/Admin/Settings.php:5 31341 #: classes/Admin/Settings.php:543 330 342 #, php-format 331 343 msgid "You can make a donation to make the plugin %1$s even better!" … … 334 346 "%1$s еще лучше!" 335 347 336 #: classes/Admin/Settings.php:5 63348 #: classes/Admin/Settings.php:575 337 349 msgid "" 338 350 "Detailed step by step instructions for setting up the plugin (in Russian)." 339 351 msgstr "Подробная инструкция по настройке плагина (на русском)." 340 352 341 #: classes/Admin/Settings.php:5 64353 #: classes/Admin/Settings.php:576 342 354 msgid "Read more..." 343 355 msgstr "Подробнее..." 344 356 345 #: classes/Admin/Settings.php:5 68357 #: classes/Admin/Settings.php:580 346 358 msgid "" 347 359 "Plugin on GitHub, you can write there suggestions, wishes or participate in " … … 351 363 "разработке" 352 364 353 #: classes/Admin/Settings.php:5 69365 #: classes/Admin/Settings.php:581 354 366 msgid "Plugin on GitHub" 355 367 msgstr "Смотреть на GitHub" 356 357 #: classes/Ajax.php:87358 msgid ""359 "Something is wrong with sending data. Unable to get product ID. Disable the "360 "output in the popup window or contact the developers of the plugin"361 msgstr ""362 "Что-то не так с отправкой данных. Невозможно получить ID товара. Отключите "363 "вывод данных во всплывающем окне или обратитесь к разработчикам плагина"364 365 #: classes/Email.php:129366 msgid "IP"367 msgstr "IP"368 369 #: classes/Email.php:133370 msgid "Date"371 msgstr "Дата"372 373 #: classes/Email.php:137374 msgid "Domain"375 msgstr "Домен"376 368 377 369 #: classes/Enqueue.php:101 … … 457 449 msgstr "Читать" 458 450 459 #: classes/Main.php:1 38451 #: classes/Main.php:140 460 452 msgid "Settings" 461 453 msgstr "Настройки" 462 463 #: classes/Orders.php:59464 msgid "Order One Click: "465 msgstr "Заказ в один клик: "466 467 #: classes/Orders.php:145468 msgid "The order was created by using the One-click Order button"469 msgstr "Заказ был создан с помощью кнопки \"Заказ в один клик\""470 454 471 455 #: classes/Prepare/Mail.php:123 … … 491 475 "Если включить, то на этом товаре кнопка Заказать будет не видна. Товар " 492 476 "вернется к исходному состоянию." 477 478 #: classes/RequestHandler.php:87 479 msgid "" 480 "Something is wrong with sending data. Unable to get product ID. Disable the " 481 "output in the popup window or contact the developers of the plugin" 482 msgstr "" 483 "Что-то не так с отправкой данных. Невозможно получить ID товара. Отключите " 484 "вывод данных во всплывающем окне или обратитесь к разработчикам плагина" 485 486 #: classes/RequestProcessing/EmailModifier.php:129 487 msgid "IP" 488 msgstr "IP" 489 490 #: classes/RequestProcessing/EmailModifier.php:133 491 msgid "Date" 492 msgstr "Дата" 493 494 #: classes/RequestProcessing/EmailModifier.php:137 495 msgid "Domain" 496 msgstr "Домен" 497 498 #: classes/RequestProcessing/OrderCreator.php:61 499 msgid "Order One Click: " 500 msgstr "Заказ в один клик: " 501 502 #: classes/RequestProcessing/OrderCreator.php:147 503 msgid "The order was created by using the One-click Order button" 504 msgstr "Заказ был создан с помощью кнопки \"Заказ в один клик\"" 493 505 494 506 #: classes/Requirements.php:102 -
art-woocommerce-order-one-click/tags/3.1.2/readme.txt
r3232939 r3234688 5 5 Requires at least: 5.5 6 6 Tested up to: 6.7 7 Stable tag: 3.1. 17 Stable tag: 3.1.2 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 100 100 101 101 == Changelog == 102 = [3.1.2] - 2025-02-04 = 103 * Добавлено: настройка для включения изменения названия заказа в литинге заказов 102 104 103 105 = [3.1.1] - 2025-02-01 = -
art-woocommerce-order-one-click/tags/3.1.2/vendor/composer/installed.php
r3232939 r3234688 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 0b375e6df0327fb38eb308c0ae3ad42b50a8047e',6 'reference' => '93014740b6443630729b439a1707fb794eb4ec0b', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-master', 15 15 'version' => 'dev-master', 16 'reference' => ' 0b375e6df0327fb38eb308c0ae3ad42b50a8047e',16 'reference' => '93014740b6443630729b439a1707fb794eb4ec0b', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
art-woocommerce-order-one-click/trunk/art-woo-order-one-click.php
r3232939 r3234688 6 6 * Domain Path: /languages 7 7 * Description: Plugin for WooCommerce. It includes the catalog mode in the store (there are no prices and the Buy button) and can turn on the Buy/Order button in one click. WooCommerce and Contact Form 7 are required for proper operation. 8 * Version: 3.1. 18 * Version: 3.1.2 9 9 * Author: Artem Abramovich 10 10 * Author URI: https://wpruse.ru/ -
art-woocommerce-order-one-click/trunk/classes/Admin/Settings.php
r3232179 r3234688 256 256 ), 257 257 'id' => 'woocommerce_awooc_change_subject', 258 'default' => 'no', 259 'type' => 'checkbox', 260 'autoload' => false, 261 ], 262 263 [ 264 'title' => __( 'Change name', 'art-woocommerce-order-one-click' ), 265 'desc' => __( 266 'When enabled, the order name in the order listing will be changed from #12345 SamBoy to #12345 Order one click +1 (234) 123-45-67', 267 'art-woocommerce-order-one-click' 268 ), 269 'id' => 'woocommerce_awooc_change_name', 258 270 'default' => 'no', 259 271 'type' => 'checkbox', -
art-woocommerce-order-one-click/trunk/classes/RequestProcessing/OrderCreator.php
r3232179 r3234688 22 22 * @since 1.8.2 23 23 */ 24 class OrderCreator extends RequestHandler {24 class OrderCreator extends RequestHandler { 25 25 26 26 /** … … 57 57 public function add_name( string $buyer, \WC_Order $order ): string { 58 58 59 if ( $order->get_meta( '_awooc_order' ) ) {59 if ( $order->get_meta( '_awooc_order' ) && get_option( 'woocommerce_awooc_change_name' ) ) { 60 60 $buyer = __( 'Order One Click: ', 'art-woocommerce-order-fast' ) . $order->get_billing_phone(); 61 61 } -
art-woocommerce-order-one-click/trunk/languages/art-woocommerce-order-one-click-ru_RU.po
r3232179 r3234688 2 2 msgstr "" 3 3 "Project-Id-Version: art-woocommerce-order-one-click\n" 4 "POT-Creation-Date: 2025-0 1-30 01:23+0400\n"5 "PO-Revision-Date: 2025-0 1-30 01:23+0400\n"4 "POT-Creation-Date: 2025-02-04 15:14+0400\n" 5 "PO-Revision-Date: 2025-02-04 15:15+0400\n" 6 6 "Last-Translator: Абрамович Артем | artabr.ru <artikus.sol@gmail.com>\n" 7 7 "Language-Team: \n" … … 71 71 msgstr "Заказ в один клик" 72 72 73 #: classes/Admin/Settings.php:35 classes/ Orders.php:14773 #: classes/Admin/Settings.php:35 classes/RequestProcessing/OrderCreator.php:149 74 74 msgid "One click order" 75 75 msgstr "Заказ в один клик" … … 177 177 #: classes/Admin/Settings.php:252 178 178 msgid "Change subject" 179 msgstr "Изменить заголовок"179 msgstr "Изменить тему письма" 180 180 181 181 #: classes/Admin/Settings.php:254 … … 187 187 "в формате \"Тема письма №112233\"" 188 188 189 #: classes/Admin/Settings.php:263 189 #: classes/Admin/Settings.php:264 190 msgid "Change name" 191 msgstr "Изменить заголовок" 192 193 #: classes/Admin/Settings.php:266 194 msgid "" 195 "When enabled, the order name in the order listing will be changed from " 196 "#12345 SamBoy to #12345 Order one click +1 (234) 123-45-67" 197 msgstr "" 198 "При включении, в листинге заказов название заказа будет изменено с #12345 " 199 "SamBoy на #12345 Order one click +1 (234) 123-45-67" 200 201 #: classes/Admin/Settings.php:275 190 202 msgid "Custom letter template" 191 203 msgstr "Произвольный шаблон письма" 192 204 193 #: classes/Admin/Settings.php:2 65205 #: classes/Admin/Settings.php:277 194 206 msgid "" 195 207 "When enabled, it will not use the template specified in CF7, but an " … … 199 211 "шаблон письма из плагина" 200 212 201 #: classes/Admin/Settings.php:2 78213 #: classes/Admin/Settings.php:290 202 214 msgid "Others" 203 215 msgstr "Разное" 204 216 205 #: classes/Admin/Settings.php:2 85217 #: classes/Admin/Settings.php:297 206 218 msgid "Do not delete settings" 207 219 msgstr "Не удалять настройки" 208 220 209 #: classes/Admin/Settings.php:2 87221 #: classes/Admin/Settings.php:299 210 222 msgid "" 211 223 "If enabled, then the settings when you remove the plugin will NOT be deleted" 212 224 msgstr "Если включено, то настройки при удалении плагина НЕ будут удалены" 213 225 214 #: classes/Admin/Settings.php:3 25226 #: classes/Admin/Settings.php:337 215 227 msgid "Useful links" 216 228 msgstr "Социальные ссылки" 217 229 218 #: classes/Admin/Settings.php:3 35230 #: classes/Admin/Settings.php:347 219 231 msgid "Donate" 220 232 msgstr "Поддержать" 221 233 222 #: classes/Admin/Settings.php:3 68234 #: classes/Admin/Settings.php:380 223 235 msgid "Catalog mode" 224 236 msgstr "Режим каталога" 225 237 226 #: classes/Admin/Settings.php:3 69238 #: classes/Admin/Settings.php:381 227 239 msgid "Normal mode" 228 240 msgstr "Штатный режим" 229 241 230 #: classes/Admin/Settings.php:3 70242 #: classes/Admin/Settings.php:382 231 243 msgid "Pre-order mode" 232 244 msgstr "Режим предзаказа" 233 245 234 #: classes/Admin/Settings.php:3 71246 #: classes/Admin/Settings.php:383 235 247 msgid "Special mode" 236 248 msgstr "Специальный режим" 237 249 238 #: classes/Admin/Settings.php:4 12250 #: classes/Admin/Settings.php:424 239 251 msgid "Title" 240 252 msgstr "Наименование" 241 253 242 #: classes/Admin/Settings.php:4 13254 #: classes/Admin/Settings.php:425 243 255 msgid "Image" 244 256 msgstr "Изображение" 245 257 246 #: classes/Admin/Settings.php:4 14258 #: classes/Admin/Settings.php:426 247 259 msgid "Price" 248 260 msgstr "Цена" 249 261 250 #: classes/Admin/Settings.php:4 15262 #: classes/Admin/Settings.php:427 251 263 msgid "SKU" 252 264 msgstr "Артикул" 253 265 254 #: classes/Admin/Settings.php:4 16266 #: classes/Admin/Settings.php:428 255 267 msgid "Attributes" 256 268 msgstr "Атрибуты" 257 269 258 #: classes/Admin/Settings.php:4 17templates/quantity-input.php:41270 #: classes/Admin/Settings.php:429 templates/quantity-input.php:41 259 271 msgid "Quantity" 260 272 msgstr "Количество" 261 273 262 #: classes/Admin/Settings.php:4 18274 #: classes/Admin/Settings.php:430 263 275 msgid "Amount" 264 276 msgstr "Итого" 265 277 266 #: classes/Admin/Settings.php:4 35278 #: classes/Admin/Settings.php:447 267 279 msgid "" 268 280 "<strong>Warning! The functionality is under development. </strong> For the " … … 274 286 "c именами:" 275 287 276 #: classes/Admin/Settings.php:4 40288 #: classes/Admin/Settings.php:452 277 289 msgid "field Name - <code>awooc-text</code>;" 278 290 msgstr "поле Имя - <code>awooc-text</code>;" 279 291 280 #: classes/Admin/Settings.php:4 41292 #: classes/Admin/Settings.php:453 281 293 msgid "field Email - <code>awooc-email</code>;" 282 294 msgstr "поле Емайл - <code>awooc-email</code>;" 283 295 284 #: classes/Admin/Settings.php:4 42296 #: classes/Admin/Settings.php:454 285 297 msgid "field Phone - <code>awooc-tel</code>;" 286 298 msgstr "поле Телефон - <code>awooc-tel</code>;" 287 299 288 #: classes/Admin/Settings.php:4 77300 #: classes/Admin/Settings.php:489 289 301 #, php-format 290 302 msgid "" … … 295 307 "большое спасибо!" 296 308 297 #: classes/Admin/Settings.php:4 78 classes/Admin/Settings.php:532309 #: classes/Admin/Settings.php:490 classes/Admin/Settings.php:544 298 310 msgid "Art WooCommerce Order One Click" 299 311 msgstr "Art WooCommerce Order One Click" 300 312 301 #: classes/Admin/Settings.php:4 81313 #: classes/Admin/Settings.php:493 302 314 msgid "five star" 303 315 msgstr "пять звезд" 304 316 305 #: classes/Admin/Settings.php:4 83317 #: classes/Admin/Settings.php:495 306 318 msgid "Thanks :)" 307 319 msgstr "Пожалуйста, не загружайте эту страницу напрямую. Спасибо!" 308 320 309 #: classes/Admin/Settings.php: 494321 #: classes/Admin/Settings.php:506 310 322 msgid "Thank you for using the plugin!" 311 323 msgstr "Спасибо, что используете плагин!" 312 324 313 #: classes/Admin/Settings.php:5 18325 #: classes/Admin/Settings.php:530 314 326 msgid "Yandex Money" 315 327 msgstr "Яндекс Деньги" 316 328 317 #: classes/Admin/Settings.php:5 19329 #: classes/Admin/Settings.php:531 318 330 msgid "Make a donation through the Yandex Money system. You can use bank cards" 319 331 msgstr "Поддержать через Яндекс Деньги. Можно использовать банковские карты" 320 332 321 #: classes/Admin/Settings.php:5 23333 #: classes/Admin/Settings.php:535 322 334 msgid "WPRUSe" 323 335 msgstr "WPRUSe" 324 336 325 #: classes/Admin/Settings.php:5 24337 #: classes/Admin/Settings.php:536 326 338 msgid "WPRUSe project site" 327 339 msgstr "Описание проекта" 328 340 329 #: classes/Admin/Settings.php:5 31341 #: classes/Admin/Settings.php:543 330 342 #, php-format 331 343 msgid "You can make a donation to make the plugin %1$s even better!" … … 334 346 "%1$s еще лучше!" 335 347 336 #: classes/Admin/Settings.php:5 63348 #: classes/Admin/Settings.php:575 337 349 msgid "" 338 350 "Detailed step by step instructions for setting up the plugin (in Russian)." 339 351 msgstr "Подробная инструкция по настройке плагина (на русском)." 340 352 341 #: classes/Admin/Settings.php:5 64353 #: classes/Admin/Settings.php:576 342 354 msgid "Read more..." 343 355 msgstr "Подробнее..." 344 356 345 #: classes/Admin/Settings.php:5 68357 #: classes/Admin/Settings.php:580 346 358 msgid "" 347 359 "Plugin on GitHub, you can write there suggestions, wishes or participate in " … … 351 363 "разработке" 352 364 353 #: classes/Admin/Settings.php:5 69365 #: classes/Admin/Settings.php:581 354 366 msgid "Plugin on GitHub" 355 367 msgstr "Смотреть на GitHub" 356 357 #: classes/Ajax.php:87358 msgid ""359 "Something is wrong with sending data. Unable to get product ID. Disable the "360 "output in the popup window or contact the developers of the plugin"361 msgstr ""362 "Что-то не так с отправкой данных. Невозможно получить ID товара. Отключите "363 "вывод данных во всплывающем окне или обратитесь к разработчикам плагина"364 365 #: classes/Email.php:129366 msgid "IP"367 msgstr "IP"368 369 #: classes/Email.php:133370 msgid "Date"371 msgstr "Дата"372 373 #: classes/Email.php:137374 msgid "Domain"375 msgstr "Домен"376 368 377 369 #: classes/Enqueue.php:101 … … 457 449 msgstr "Читать" 458 450 459 #: classes/Main.php:1 38451 #: classes/Main.php:140 460 452 msgid "Settings" 461 453 msgstr "Настройки" 462 463 #: classes/Orders.php:59464 msgid "Order One Click: "465 msgstr "Заказ в один клик: "466 467 #: classes/Orders.php:145468 msgid "The order was created by using the One-click Order button"469 msgstr "Заказ был создан с помощью кнопки \"Заказ в один клик\""470 454 471 455 #: classes/Prepare/Mail.php:123 … … 491 475 "Если включить, то на этом товаре кнопка Заказать будет не видна. Товар " 492 476 "вернется к исходному состоянию." 477 478 #: classes/RequestHandler.php:87 479 msgid "" 480 "Something is wrong with sending data. Unable to get product ID. Disable the " 481 "output in the popup window or contact the developers of the plugin" 482 msgstr "" 483 "Что-то не так с отправкой данных. Невозможно получить ID товара. Отключите " 484 "вывод данных во всплывающем окне или обратитесь к разработчикам плагина" 485 486 #: classes/RequestProcessing/EmailModifier.php:129 487 msgid "IP" 488 msgstr "IP" 489 490 #: classes/RequestProcessing/EmailModifier.php:133 491 msgid "Date" 492 msgstr "Дата" 493 494 #: classes/RequestProcessing/EmailModifier.php:137 495 msgid "Domain" 496 msgstr "Домен" 497 498 #: classes/RequestProcessing/OrderCreator.php:61 499 msgid "Order One Click: " 500 msgstr "Заказ в один клик: " 501 502 #: classes/RequestProcessing/OrderCreator.php:147 503 msgid "The order was created by using the One-click Order button" 504 msgstr "Заказ был создан с помощью кнопки \"Заказ в один клик\"" 493 505 494 506 #: classes/Requirements.php:102 -
art-woocommerce-order-one-click/trunk/readme.txt
r3232939 r3234688 5 5 Requires at least: 5.5 6 6 Tested up to: 6.7 7 Stable tag: 3.1. 17 Stable tag: 3.1.2 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 100 100 101 101 == Changelog == 102 = [3.1.2] - 2025-02-04 = 103 * Добавлено: настройка для включения изменения названия заказа в литинге заказов 102 104 103 105 = [3.1.1] - 2025-02-01 = -
art-woocommerce-order-one-click/trunk/vendor/composer/installed.php
r3232939 r3234688 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 0b375e6df0327fb38eb308c0ae3ad42b50a8047e',6 'reference' => '93014740b6443630729b439a1707fb794eb4ec0b', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-master', 15 15 'version' => 'dev-master', 16 'reference' => ' 0b375e6df0327fb38eb308c0ae3ad42b50a8047e',16 'reference' => '93014740b6443630729b439a1707fb794eb4ec0b', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.