Changeset 3277284
- Timestamp:
- 04/19/2025 05:41:55 PM (11 months ago)
- Location:
- russian-marketplaces-for-woocommerce
- Files:
-
- 22 edited
- 1 copied
-
tags/0.1.3.1 (copied) (copied from russian-marketplaces-for-woocommerce/trunk)
-
tags/0.1.3.1/readme.txt (modified) (1 diff)
-
tags/0.1.3.1/src/Assets.php (modified) (1 diff)
-
tags/0.1.3.1/src/Main.php (modified) (1 diff)
-
tags/0.1.3.1/src/Marketplace.php (modified) (9 diffs)
-
tags/0.1.3.1/src/Marketplaces/Wildberries.php (modified) (2 diffs)
-
tags/0.1.3.1/src/Metabox.php (modified) (3 diffs)
-
tags/0.1.3.1/src/Settings.php (modified) (33 diffs)
-
tags/0.1.3.1/src/Utils.php (modified) (1 diff)
-
tags/0.1.3.1/src/Widget.php (modified) (8 diffs)
-
tags/0.1.3.1/vendor/composer/installed.php (modified) (2 diffs)
-
tags/0.1.3.1/woo-russian-marketplaces.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/Assets.php (modified) (1 diff)
-
trunk/src/Main.php (modified) (1 diff)
-
trunk/src/Marketplace.php (modified) (9 diffs)
-
trunk/src/Marketplaces/Wildberries.php (modified) (2 diffs)
-
trunk/src/Metabox.php (modified) (3 diffs)
-
trunk/src/Settings.php (modified) (33 diffs)
-
trunk/src/Utils.php (modified) (1 diff)
-
trunk/src/Widget.php (modified) (8 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/woo-russian-marketplaces.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
russian-marketplaces-for-woocommerce/tags/0.1.3.1/readme.txt
r3277132 r3277284 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 0.1.3 8 Stable tag: 0.1.3.1 9 9 License: GPL-2.0-or-later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/src/Assets.php
r3277132 r3277284 3 3 * Подключает ассеты. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/src/Main.php
r3277132 r3277284 3 3 * Основной файл плагина. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/src/Marketplace.php
r3277132 r3277284 3 3 * Абстрактный класс маркетплейса. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 … … 46 46 [ 47 47 'wildberries' => [ 48 'name' => __( 'Wildberries', ' woo-russian-marketplaces' ),48 'name' => __( 'Wildberries', 'russian-marketplaces-for-woocommerce' ), 49 49 'css' => [ 50 50 'background-color' => '#CB11AB', … … 54 54 ], 55 55 'ozon' => [ 56 'name' => __( 'Ozon', ' woo-russian-marketplaces' ),56 'name' => __( 'Ozon', 'russian-marketplaces-for-woocommerce' ), 57 57 'css' => [ 58 58 'background-color' => '#005BFF', … … 62 62 ], 63 63 'yandex_market' => [ 64 'name' => __( 'Yandex Market', ' woo-russian-marketplaces' ),64 'name' => __( 'Yandex Market', 'russian-marketplaces-for-woocommerce' ), 65 65 'css' => [ 66 66 'background-color' => '#FFCC00', … … 70 70 ], 71 71 'avito' => [ 72 'name' => __( 'Avito', ' woo-russian-marketplaces' ),72 'name' => __( 'Avito', 'russian-marketplaces-for-woocommerce' ), 73 73 'css' => [ 74 74 'background-color' => '#00AAFF', … … 78 78 ], 79 79 'lamoda' => [ 80 'name' => __( 'Lamoda', ' woo-russian-marketplaces' ),80 'name' => __( 'Lamoda', 'russian-marketplaces-for-woocommerce' ), 81 81 'css' => [ 82 82 'background-color' => '#000000', … … 86 86 ], 87 87 'sbermegamarket' => [ 88 'name' => __( 'SberMegaMarket', ' woo-russian-marketplaces' ),88 'name' => __( 'SberMegaMarket', 'russian-marketplaces-for-woocommerce' ), 89 89 'css' => [ 90 90 'background-color' => '#9B38DC', … … 94 94 ], 95 95 'livemaster' => [ 96 'name' => __( 'Ярмарка мастеров', ' woo-russian-marketplaces' ),96 'name' => __( 'Ярмарка мастеров', 'russian-marketplaces-for-woocommerce' ), 97 97 'css' => [ 98 98 'background-color' => '#EA7913', … … 102 102 ], 103 103 'aliexpress' => [ 104 'name' => __( 'Aliexpress', ' woo-russian-marketplaces' ),104 'name' => __( 'Aliexpress', 'russian-marketplaces-for-woocommerce' ), 105 105 'css' => [ 106 106 'background-color' => '#CC290A', -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/src/Marketplaces/Wildberries.php
r3277132 r3277284 3 3 * Класс маркетплейса Wildberries. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 … … 29 29 */ 30 30 public function get_name(): string { 31 return __( 'Wildberries', ' woo-russian-marketplaces' );31 return __( 'Wildberries', 'russian-marketplaces-for-woocommerce' ); 32 32 } 33 33 -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/src/Metabox.php
r3277132 r3277284 3 3 * Вкладка настроек товара в метабоксе WooCommerce. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 * @link https://woocommerce.com/document/editing-product-data-tabs/ 7 7 * @link https://misha.agency/course/nastrojki-tovara-woocommerce … … 86 86 echo wp_kses_post( 87 87 /* translators: settings URL */ 88 sprintf( __( 'All marketplaces are disabled. Enable at least one in <a href="%s">Settings</a>.', ' woo-russian-marketplaces' ), Settings::get_settings_link() )88 sprintf( __( 'All marketplaces are disabled. Enable at least one in <a href="%s">Settings</a>.', 'russian-marketplaces-for-woocommerce' ), Settings::get_settings_link() ) 89 89 ); 90 90 ?> 91 91 </p> 92 92 <?php else : ?> 93 <p><?php esc_html_e( 'Insert links for this product on marketplaces into the fields', ' woo-russian-marketplaces' ); ?></p>93 <p><?php esc_html_e( 'Insert links for this product on marketplaces into the fields', 'russian-marketplaces-for-woocommerce' ); ?></p> 94 94 <?php endif; ?> 95 95 <?php … … 110 110 ?> 111 111 <div class="wplovers-gopro"> 112 <p><b><?php esc_html_e( 'Want to automatically fill in product links?', ' woo-russian-marketplaces' ); ?></b> <?php esc_html_e( 'Connect integration with marketplaces and get:', 'woo-russian-marketplaces' ); ?></p>112 <p><b><?php esc_html_e( 'Want to automatically fill in product links?', 'russian-marketplaces-for-woocommerce' ); ?></b> <?php esc_html_e( 'Connect integration with marketplaces and get:', 'russian-marketplaces-for-woocommerce' ); ?></p> 113 113 <ul> 114 <li><?php esc_html_e( 'Automatic download and upload products;', ' woo-russian-marketplaces' ); ?></li>115 <li><?php esc_html_e( 'Loading orders;', ' woo-russian-marketplaces' ); ?></li>116 <li><?php esc_html_e( 'Exchange of balances;', ' woo-russian-marketplaces' ); ?></li>117 <li><?php esc_html_e( 'Flexible pricing.', ' woo-russian-marketplaces' ); ?></li>114 <li><?php esc_html_e( 'Automatic download and upload products;', 'russian-marketplaces-for-woocommerce' ); ?></li> 115 <li><?php esc_html_e( 'Loading orders;', 'russian-marketplaces-for-woocommerce' ); ?></li> 116 <li><?php esc_html_e( 'Exchange of balances;', 'russian-marketplaces-for-woocommerce' ); ?></li> 117 <li><?php esc_html_e( 'Flexible pricing.', 'russian-marketplaces-for-woocommerce' ); ?></li> 118 118 </ul> 119 <p><a href="<?php echo esc_url( Settings::get_gopro_link() ); ?>"><b><?php esc_html_e( 'Yes, I want to automate everything!', ' woo-russian-marketplaces' ); ?></b></a></p>119 <p><a href="<?php echo esc_url( Settings::get_gopro_link() ); ?>"><b><?php esc_html_e( 'Yes, I want to automate everything!', 'russian-marketplaces-for-woocommerce' ); ?></b></a></p> 120 120 </div> 121 121 </div> -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/src/Settings.php
r3277132 r3277284 3 3 * Настройки плагина. 4 4 * 5 * @package woo-russian-marketplaces;5 * @package russian-marketplaces-for-woocommerce; 6 6 * @link https://woocommerce.com/document/adding-a-section-to-a-settings-tab/ 7 7 * @link https://www.tychesoftwares.com/how-to-add-custom-sections-fields-in-woocommerce-settings/ … … 24 24 * Идентификатор секции. 25 25 */ 26 const SECTION_SLUG = ' woo-russian-marketplaces';26 const SECTION_SLUG = 'russian-marketplaces-for-woocommerce'; 27 27 28 28 /** … … 122 122 '<a href="%s">%s</a>', 123 123 self::get_settings_link(), 124 esc_html__( 'Settings', ' woo-russian-marketplaces' )124 esc_html__( 'Settings', 'russian-marketplaces-for-woocommerce' ) 125 125 ); 126 126 … … 128 128 '<a href="%s" style="font-weight: bold; color: #524cff">%s</a>', 129 129 self::get_gopro_link(), 130 esc_html__( 'Get full integrations!', ' woo-russian-marketplaces' )130 esc_html__( 'Get full integrations!', 'russian-marketplaces-for-woocommerce' ) 131 131 ); 132 132 … … 220 220 'text' => sprintf( 221 221 '<h1>%s</h1>', 222 __( 'Russian marketplaces settings', ' woo-russian-marketplaces' )222 __( 'Russian marketplaces settings', 'russian-marketplaces-for-woocommerce' ) 223 223 ), 224 224 'id' => 'info', … … 228 228 $settings_slider[] = $this->add_field( 229 229 [ 230 'name' => __( 'Buttons block design', ' woo-russian-marketplaces' ),230 'name' => __( 'Buttons block design', 'russian-marketplaces-for-woocommerce' ), 231 231 'type' => 'title', 232 'desc' => __( 'Settings of the main block with buttons-links to marketplaces', ' woo-russian-marketplaces' ),232 'desc' => __( 'Settings of the main block with buttons-links to marketplaces', 'russian-marketplaces-for-woocommerce' ), 233 233 'id' => 'buttons_block_design', 234 234 ] … … 237 237 $settings_slider[] = $this->add_field( 238 238 [ 239 'name' => __( 'Margin top', ' woo-russian-marketplaces' ),239 'name' => __( 'Margin top', 'russian-marketplaces-for-woocommerce' ), 240 240 'type' => 'number', 241 241 'id' => 'buttons_block_design_margin_top', … … 248 248 $settings_slider[] = $this->add_field( 249 249 [ 250 'name' => __( 'Margin bottom', ' woo-russian-marketplaces' ),250 'name' => __( 'Margin bottom', 'russian-marketplaces-for-woocommerce' ), 251 251 'type' => 'number', 252 252 'id' => 'buttons_block_design_margin_bottom', … … 259 259 $settings_slider[] = $this->add_field( 260 260 [ 261 'name' => __( 'Padding', ' woo-russian-marketplaces' ),262 'desc' => __( 'Sets padding on all sides of the block', ' woo-russian-marketplaces' ),261 'name' => __( 'Padding', 'russian-marketplaces-for-woocommerce' ), 262 'desc' => __( 'Sets padding on all sides of the block', 'russian-marketplaces-for-woocommerce' ), 263 263 'type' => 'number', 264 264 'id' => 'buttons_block_design_padding', … … 271 271 $settings_slider[] = $this->add_field( 272 272 [ 273 'name' => __( 'Background color', ' woo-russian-marketplaces' ),273 'name' => __( 'Background color', 'russian-marketplaces-for-woocommerce' ), 274 274 'type' => 'color', 275 275 'id' => 'buttons_block_design_background_color', … … 282 282 $settings_slider[] = $this->add_field( 283 283 [ 284 'name' => __( 'Border width', ' woo-russian-marketplaces' ),284 'name' => __( 'Border width', 'russian-marketplaces-for-woocommerce' ), 285 285 'type' => 'number', 286 286 'id' => 'buttons_block_design_border_width', … … 293 293 $settings_slider[] = $this->add_field( 294 294 [ 295 'name' => __( 'Border radius', ' woo-russian-marketplaces' ),295 'name' => __( 'Border radius', 'russian-marketplaces-for-woocommerce' ), 296 296 'type' => 'number', 297 297 'id' => 'buttons_block_design_border_radius', … … 304 304 $settings_slider[] = $this->add_field( 305 305 [ 306 'name' => __( 'Border color', ' woo-russian-marketplaces' ),306 'name' => __( 'Border color', 'russian-marketplaces-for-woocommerce' ), 307 307 'type' => 'color', 308 308 'id' => 'buttons_block_design_border_color', … … 315 315 $settings_slider[] = $this->add_field( 316 316 [ 317 'name' => __( 'Where to place', ' woo-russian-marketplaces' ),317 'name' => __( 'Where to place', 'russian-marketplaces-for-woocommerce' ), 318 318 'type' => 'radio', 319 319 'id' => 'buttons_block_design_where_to_place', 320 320 'options' => [ 321 'before' => __( 'Before Add to cart block', ' woo-russian-marketplaces' ),322 'after' => __( 'After Add to cart block', ' woo-russian-marketplaces' ),321 'before' => __( 'Before Add to cart block', 'russian-marketplaces-for-woocommerce' ), 322 'after' => __( 'After Add to cart block', 'russian-marketplaces-for-woocommerce' ), 323 323 ], 324 324 'default' => 'after', … … 335 335 $settings_slider[] = $this->add_field( 336 336 [ 337 'name' => __( 'Block title', ' woo-russian-marketplaces' ),337 'name' => __( 'Block title', 'russian-marketplaces-for-woocommerce' ), 338 338 'type' => 'title', 339 'desc' => __( 'Write your call to buy on marketplaces', ' woo-russian-marketplaces' ),339 'desc' => __( 'Write your call to buy on marketplaces', 'russian-marketplaces-for-woocommerce' ), 340 340 'id' => 'block_title', 341 341 ] … … 344 344 $settings_slider[] = $this->add_field( 345 345 [ 346 'name' => __( 'Text', ' woo-russian-marketplaces' ),346 'name' => __( 'Text', 'russian-marketplaces-for-woocommerce' ), 347 347 'type' => 'text', 348 348 'id' => 'block_title_text', 349 'default' => __( 'Buy this product on marketplaces', ' woo-russian-marketplaces' ),349 'default' => __( 'Buy this product on marketplaces', 'russian-marketplaces-for-woocommerce' ), 350 350 'css' => 'width:260px', 351 351 ] … … 354 354 $settings_slider[] = $this->add_field( 355 355 [ 356 'name' => __( 'Margin bottom', ' woo-russian-marketplaces' ),356 'name' => __( 'Margin bottom', 'russian-marketplaces-for-woocommerce' ), 357 357 'type' => 'number', 358 358 'id' => 'block_title_margin_bottom', … … 365 365 $settings_slider[] = $this->add_field( 366 366 [ 367 'name' => __( 'Font size', ' woo-russian-marketplaces' ),367 'name' => __( 'Font size', 'russian-marketplaces-for-woocommerce' ), 368 368 'type' => 'number', 369 369 'id' => 'block_title_font_size', … … 376 376 $settings_slider[] = $this->add_field( 377 377 [ 378 'name' => __( 'Color', ' woo-russian-marketplaces' ),378 'name' => __( 'Color', 'russian-marketplaces-for-woocommerce' ), 379 379 'type' => 'color', 380 380 'id' => 'block_title_color', … … 397 397 $settings_slider[] = $this->add_field( 398 398 [ 399 'name' => __( 'Marketplaces', ' woo-russian-marketplaces' ),399 'name' => __( 'Marketplaces', 'russian-marketplaces-for-woocommerce' ), 400 400 'type' => 'title', 401 401 'id' => 'marketplaces', … … 405 405 $settings_slider[] = $this->add_field( 406 406 [ 407 'name' => __( 'Buttons border width', ' woo-russian-marketplaces' ),407 'name' => __( 'Buttons border width', 'russian-marketplaces-for-woocommerce' ), 408 408 'type' => 'number', 409 409 'id' => 'button_border_width', … … 416 416 $settings_slider[] = $this->add_field( 417 417 [ 418 'name' => __( 'Buttons border radius', ' woo-russian-marketplaces' ),418 'name' => __( 'Buttons border radius', 'russian-marketplaces-for-woocommerce' ), 419 419 'type' => 'number', 420 420 'id' => 'button_border_radius', … … 427 427 $settings_slider[] = $this->add_field( 428 428 [ 429 'name' => __( 'Buttons font size', ' woo-russian-marketplaces' ),429 'name' => __( 'Buttons font size', 'russian-marketplaces-for-woocommerce' ), 430 430 'type' => 'number', 431 431 'id' => 'button_font_size', … … 468 468 $settings_slider[] = $this->add_field( 469 469 [ 470 'name' => __( 'On/Off', ' woo-russian-marketplaces' ),470 'name' => __( 'On/Off', 'russian-marketplaces-for-woocommerce' ), 471 471 'type' => 'checkbox', 472 472 'default' => 'no', … … 477 477 $settings_slider[] = $this->add_field( 478 478 [ 479 'name' => __( 'Button background color', ' woo-russian-marketplaces' ),479 'name' => __( 'Button background color', 'russian-marketplaces-for-woocommerce' ), 480 480 'type' => 'color', 481 481 'default' => $data['css']['background-color'], … … 488 488 $settings_slider[] = $this->add_field( 489 489 [ 490 'name' => __( 'Button border color', ' woo-russian-marketplaces' ),490 'name' => __( 'Button border color', 'russian-marketplaces-for-woocommerce' ), 491 491 'type' => 'color', 492 492 'id' => 'marketplaces_' . $marketplace_id . '_border_color', … … 499 499 $settings_slider[] = $this->add_field( 500 500 [ 501 'name' => __( 'Marketplace name color', ' woo-russian-marketplaces' ),501 'name' => __( 'Marketplace name color', 'russian-marketplaces-for-woocommerce' ), 502 502 'type' => 'color', 503 503 'id' => 'marketplaces_' . $marketplace_id . '_color', … … 510 510 $settings_slider[] = $this->add_field( 511 511 [ 512 'name' => __( 'Go Pro', ' woo-russian-marketplaces' ),512 'name' => __( 'Go Pro', 'russian-marketplaces-for-woocommerce' ), 513 513 'type' => 'html', 514 514 'id' => 'marketplaces_' . $marketplace_id . '_gopro', … … 534 534 $settings_slider[] = $this->add_field( 535 535 [ 536 'name' => __( 'SEO', ' woo-russian-marketplaces' ),536 'name' => __( 'SEO', 'russian-marketplaces-for-woocommerce' ), 537 537 'type' => 'title', 538 538 'id' => 'seo', … … 542 542 $settings_slider[] = $this->add_field( 543 543 [ 544 'name' => __( 'Wrap links with noindex', ' woo-russian-marketplaces' ),544 'name' => __( 'Wrap links with noindex', 'russian-marketplaces-for-woocommerce' ), 545 545 'type' => 'checkbox', 546 546 'default' => 'no', … … 551 551 $settings_slider[] = $this->add_field( 552 552 [ 553 'name' => __( 'Add nofollow attribute to links', ' woo-russian-marketplaces' ),553 'name' => __( 'Add nofollow attribute to links', 'russian-marketplaces-for-woocommerce' ), 554 554 'type' => 'checkbox', 555 555 'default' => 'no', … … 560 560 $settings_slider[] = $this->add_field( 561 561 [ 562 'name' => __( 'Open links in a new tab', ' woo-russian-marketplaces' ),562 'name' => __( 'Open links in a new tab', 'russian-marketplaces-for-woocommerce' ), 563 563 'type' => 'checkbox', 564 564 'default' => 'no', … … 629 629 ?> 630 630 <div class="wplovers-gopro"> 631 <p><b><?php esc_html_e( 'Want to automatically fill in product links?', ' woo-russian-marketplaces' ); ?></b> <?php esc_html_e( 'Connect integration with marketplaces and get:', 'woo-russian-marketplaces' ); ?></p>631 <p><b><?php esc_html_e( 'Want to automatically fill in product links?', 'russian-marketplaces-for-woocommerce' ); ?></b> <?php esc_html_e( 'Connect integration with marketplaces and get:', 'russian-marketplaces-for-woocommerce' ); ?></p> 632 632 <ul> 633 <li><?php esc_html_e( 'Automatic download and upload products;', ' woo-russian-marketplaces' ); ?></li>634 <li><?php esc_html_e( 'Loading orders;', ' woo-russian-marketplaces' ); ?></li>635 <li><?php esc_html_e( 'Exchange of balances;', ' woo-russian-marketplaces' ); ?></li>636 <li><?php esc_html_e( 'Flexible pricing.', ' woo-russian-marketplaces' ); ?></li>633 <li><?php esc_html_e( 'Automatic download and upload products;', 'russian-marketplaces-for-woocommerce' ); ?></li> 634 <li><?php esc_html_e( 'Loading orders;', 'russian-marketplaces-for-woocommerce' ); ?></li> 635 <li><?php esc_html_e( 'Exchange of balances;', 'russian-marketplaces-for-woocommerce' ); ?></li> 636 <li><?php esc_html_e( 'Flexible pricing.', 'russian-marketplaces-for-woocommerce' ); ?></li> 637 637 </ul> 638 <p><a href="<?php echo esc_url( self::get_gopro_link() ); ?>"><b><?php esc_html_e( 'Yes, I want to automate everything!', ' woo-russian-marketplaces' ); ?></b></a></p>638 <p><a href="<?php echo esc_url( self::get_gopro_link() ); ?>"><b><?php esc_html_e( 'Yes, I want to automate everything!', 'russian-marketplaces-for-woocommerce' ); ?></b></a></p> 639 639 </div> 640 640 <?php -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/src/Utils.php
r3277132 r3277284 3 3 * Полезные утилиты для плагина. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/src/Widget.php
r3277132 r3277284 3 3 * Вывод виджета во фронтенде. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 … … 33 33 ob_start(); 34 34 ?> 35 . woo-russian-marketplaces{35 .russian-marketplaces-for-woocommerce { 36 36 background-color: <?php echo esc_html( $settings['buttons_block_design_background_color'] ); ?>; 37 37 padding: <?php echo esc_html( $settings['buttons_block_design_padding'] ); ?>px; … … 43 43 border-color: <?php echo esc_html( $settings['buttons_block_design_border_color'] ); ?>; 44 44 } 45 . woo-russian-marketplaces .woo-russian-marketplaces__header {45 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__header { 46 46 font-weight: 700; 47 47 margin-bottom: <?php echo esc_html( $settings['block_title_margin_bottom'] ); ?>px; … … 49 49 color: <?php echo esc_html( $settings['block_title_color'] ); ?>; 50 50 } 51 . woo-russian-marketplaces .woo-russian-marketplaces__list {51 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__list { 52 52 display: flex; 53 53 flex-direction: row; … … 57 57 justify-content: flex-start; 58 58 } 59 . woo-russian-marketplaces .woo-russian-marketplaces__link {59 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__link { 60 60 text-decoration: none; 61 61 text-transform: uppercase; … … 68 68 border-radius: <?php echo esc_html( $settings['button_border_radius'] ); ?>px; 69 69 } 70 . woo-russian-marketplaces .woo-russian-marketplaces__link:hover {70 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__link:hover { 71 71 opacity: 0.8; 72 72 } … … 77 77 } 78 78 ?> 79 . woo-russian-marketplaces .woo-russian-marketplaces__link--<?php echo esc_html( $marketplace ); ?> {79 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__link--<?php echo esc_html( $marketplace ); ?> { 80 80 background-color: <?php echo esc_html( $settings[ 'marketplaces_' . $marketplace . '_background_color' ] ); ?>; 81 81 border-color: <?php echo esc_html( $settings[ 'marketplaces_' . $marketplace . '_border_color' ] ); ?>; … … 102 102 sprintf( 103 103 /* translators: plugin name, settings link */ 104 __( 'Плагин "%1$s" активирован, но не настроен! <a href="%2$s">Настроить плагин.</a>', ' woo-russian-marketplaces' ),104 __( 'Плагин "%1$s" активирован, но не настроен! <a href="%2$s">Настроить плагин.</a>', 'russian-marketplaces-for-woocommerce' ), 105 105 Utils::get_plugin_name(), 106 106 Settings::get_settings_link() -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/vendor/composer/installed.php
r3277132 r3277284 2 2 'root' => array( 3 3 'name' => 'wplovers/woo-russian-marketplace', 4 'pretty_version' => '0.1.3 ',5 'version' => '0.1.3. 0',6 'reference' => '0 38513384485353994c96b39898b927d96fc33d8',4 'pretty_version' => '0.1.3.1', 5 'version' => '0.1.3.1', 6 'reference' => '067ae572fe4739943ee7488b37f3d1f913ba1fb8', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'wplovers/woo-russian-marketplace' => array( 14 'pretty_version' => '0.1.3 ',15 'version' => '0.1.3. 0',16 'reference' => '0 38513384485353994c96b39898b927d96fc33d8',14 'pretty_version' => '0.1.3.1', 15 'version' => '0.1.3.1', 16 'reference' => '067ae572fe4739943ee7488b37f3d1f913ba1fb8', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
russian-marketplaces-for-woocommerce/tags/0.1.3.1/woo-russian-marketplaces.php
r3277132 r3277284 6 6 * Author: mihdan 7 7 * Author URI: https://www.kobzarev.com/ 8 * Version: 0.1.3 8 * Version: 0.1.3.1 9 9 * Requires at least: 6.5 10 10 * Requires PHP: 7.4 11 11 * License: GPLv2 or later 12 12 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 13 * Text Domain: woo-russian-marketplaces13 * Text Domain: russian-marketplaces-for-woocommerce 14 14 * Requires Plugins: woocommerce 15 15 * 16 * @package woo-russian-marketplaces16 * @package russian-marketplaces-for-woocommerce 17 17 */ 18 18 … … 20 20 21 21 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_NAME', 'Russian marketplaces for WooCommerce' ); 22 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_SLUG', ' woo-russian-marketplaces' );23 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_PREFIX', ' woo_russian_marketplaces' );22 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_SLUG', 'russian-marketplaces-for-woocommerce' ); 23 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_PREFIX', 'russian_marketplaces_for_woocommerce' ); 24 24 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_BASENAME', plugin_basename( __FILE__ ) ); 25 25 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_URL', plugin_dir_url( __FILE__ ) ); -
russian-marketplaces-for-woocommerce/trunk/readme.txt
r3277132 r3277284 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 0.1.3 8 Stable tag: 0.1.3.1 9 9 License: GPL-2.0-or-later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
russian-marketplaces-for-woocommerce/trunk/src/Assets.php
r3277132 r3277284 3 3 * Подключает ассеты. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 -
russian-marketplaces-for-woocommerce/trunk/src/Main.php
r3277132 r3277284 3 3 * Основной файл плагина. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 -
russian-marketplaces-for-woocommerce/trunk/src/Marketplace.php
r3277132 r3277284 3 3 * Абстрактный класс маркетплейса. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 … … 46 46 [ 47 47 'wildberries' => [ 48 'name' => __( 'Wildberries', ' woo-russian-marketplaces' ),48 'name' => __( 'Wildberries', 'russian-marketplaces-for-woocommerce' ), 49 49 'css' => [ 50 50 'background-color' => '#CB11AB', … … 54 54 ], 55 55 'ozon' => [ 56 'name' => __( 'Ozon', ' woo-russian-marketplaces' ),56 'name' => __( 'Ozon', 'russian-marketplaces-for-woocommerce' ), 57 57 'css' => [ 58 58 'background-color' => '#005BFF', … … 62 62 ], 63 63 'yandex_market' => [ 64 'name' => __( 'Yandex Market', ' woo-russian-marketplaces' ),64 'name' => __( 'Yandex Market', 'russian-marketplaces-for-woocommerce' ), 65 65 'css' => [ 66 66 'background-color' => '#FFCC00', … … 70 70 ], 71 71 'avito' => [ 72 'name' => __( 'Avito', ' woo-russian-marketplaces' ),72 'name' => __( 'Avito', 'russian-marketplaces-for-woocommerce' ), 73 73 'css' => [ 74 74 'background-color' => '#00AAFF', … … 78 78 ], 79 79 'lamoda' => [ 80 'name' => __( 'Lamoda', ' woo-russian-marketplaces' ),80 'name' => __( 'Lamoda', 'russian-marketplaces-for-woocommerce' ), 81 81 'css' => [ 82 82 'background-color' => '#000000', … … 86 86 ], 87 87 'sbermegamarket' => [ 88 'name' => __( 'SberMegaMarket', ' woo-russian-marketplaces' ),88 'name' => __( 'SberMegaMarket', 'russian-marketplaces-for-woocommerce' ), 89 89 'css' => [ 90 90 'background-color' => '#9B38DC', … … 94 94 ], 95 95 'livemaster' => [ 96 'name' => __( 'Ярмарка мастеров', ' woo-russian-marketplaces' ),96 'name' => __( 'Ярмарка мастеров', 'russian-marketplaces-for-woocommerce' ), 97 97 'css' => [ 98 98 'background-color' => '#EA7913', … … 102 102 ], 103 103 'aliexpress' => [ 104 'name' => __( 'Aliexpress', ' woo-russian-marketplaces' ),104 'name' => __( 'Aliexpress', 'russian-marketplaces-for-woocommerce' ), 105 105 'css' => [ 106 106 'background-color' => '#CC290A', -
russian-marketplaces-for-woocommerce/trunk/src/Marketplaces/Wildberries.php
r3277132 r3277284 3 3 * Класс маркетплейса Wildberries. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 … … 29 29 */ 30 30 public function get_name(): string { 31 return __( 'Wildberries', ' woo-russian-marketplaces' );31 return __( 'Wildberries', 'russian-marketplaces-for-woocommerce' ); 32 32 } 33 33 -
russian-marketplaces-for-woocommerce/trunk/src/Metabox.php
r3277132 r3277284 3 3 * Вкладка настроек товара в метабоксе WooCommerce. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 * @link https://woocommerce.com/document/editing-product-data-tabs/ 7 7 * @link https://misha.agency/course/nastrojki-tovara-woocommerce … … 86 86 echo wp_kses_post( 87 87 /* translators: settings URL */ 88 sprintf( __( 'All marketplaces are disabled. Enable at least one in <a href="%s">Settings</a>.', ' woo-russian-marketplaces' ), Settings::get_settings_link() )88 sprintf( __( 'All marketplaces are disabled. Enable at least one in <a href="%s">Settings</a>.', 'russian-marketplaces-for-woocommerce' ), Settings::get_settings_link() ) 89 89 ); 90 90 ?> 91 91 </p> 92 92 <?php else : ?> 93 <p><?php esc_html_e( 'Insert links for this product on marketplaces into the fields', ' woo-russian-marketplaces' ); ?></p>93 <p><?php esc_html_e( 'Insert links for this product on marketplaces into the fields', 'russian-marketplaces-for-woocommerce' ); ?></p> 94 94 <?php endif; ?> 95 95 <?php … … 110 110 ?> 111 111 <div class="wplovers-gopro"> 112 <p><b><?php esc_html_e( 'Want to automatically fill in product links?', ' woo-russian-marketplaces' ); ?></b> <?php esc_html_e( 'Connect integration with marketplaces and get:', 'woo-russian-marketplaces' ); ?></p>112 <p><b><?php esc_html_e( 'Want to automatically fill in product links?', 'russian-marketplaces-for-woocommerce' ); ?></b> <?php esc_html_e( 'Connect integration with marketplaces and get:', 'russian-marketplaces-for-woocommerce' ); ?></p> 113 113 <ul> 114 <li><?php esc_html_e( 'Automatic download and upload products;', ' woo-russian-marketplaces' ); ?></li>115 <li><?php esc_html_e( 'Loading orders;', ' woo-russian-marketplaces' ); ?></li>116 <li><?php esc_html_e( 'Exchange of balances;', ' woo-russian-marketplaces' ); ?></li>117 <li><?php esc_html_e( 'Flexible pricing.', ' woo-russian-marketplaces' ); ?></li>114 <li><?php esc_html_e( 'Automatic download and upload products;', 'russian-marketplaces-for-woocommerce' ); ?></li> 115 <li><?php esc_html_e( 'Loading orders;', 'russian-marketplaces-for-woocommerce' ); ?></li> 116 <li><?php esc_html_e( 'Exchange of balances;', 'russian-marketplaces-for-woocommerce' ); ?></li> 117 <li><?php esc_html_e( 'Flexible pricing.', 'russian-marketplaces-for-woocommerce' ); ?></li> 118 118 </ul> 119 <p><a href="<?php echo esc_url( Settings::get_gopro_link() ); ?>"><b><?php esc_html_e( 'Yes, I want to automate everything!', ' woo-russian-marketplaces' ); ?></b></a></p>119 <p><a href="<?php echo esc_url( Settings::get_gopro_link() ); ?>"><b><?php esc_html_e( 'Yes, I want to automate everything!', 'russian-marketplaces-for-woocommerce' ); ?></b></a></p> 120 120 </div> 121 121 </div> -
russian-marketplaces-for-woocommerce/trunk/src/Settings.php
r3277132 r3277284 3 3 * Настройки плагина. 4 4 * 5 * @package woo-russian-marketplaces;5 * @package russian-marketplaces-for-woocommerce; 6 6 * @link https://woocommerce.com/document/adding-a-section-to-a-settings-tab/ 7 7 * @link https://www.tychesoftwares.com/how-to-add-custom-sections-fields-in-woocommerce-settings/ … … 24 24 * Идентификатор секции. 25 25 */ 26 const SECTION_SLUG = ' woo-russian-marketplaces';26 const SECTION_SLUG = 'russian-marketplaces-for-woocommerce'; 27 27 28 28 /** … … 122 122 '<a href="%s">%s</a>', 123 123 self::get_settings_link(), 124 esc_html__( 'Settings', ' woo-russian-marketplaces' )124 esc_html__( 'Settings', 'russian-marketplaces-for-woocommerce' ) 125 125 ); 126 126 … … 128 128 '<a href="%s" style="font-weight: bold; color: #524cff">%s</a>', 129 129 self::get_gopro_link(), 130 esc_html__( 'Get full integrations!', ' woo-russian-marketplaces' )130 esc_html__( 'Get full integrations!', 'russian-marketplaces-for-woocommerce' ) 131 131 ); 132 132 … … 220 220 'text' => sprintf( 221 221 '<h1>%s</h1>', 222 __( 'Russian marketplaces settings', ' woo-russian-marketplaces' )222 __( 'Russian marketplaces settings', 'russian-marketplaces-for-woocommerce' ) 223 223 ), 224 224 'id' => 'info', … … 228 228 $settings_slider[] = $this->add_field( 229 229 [ 230 'name' => __( 'Buttons block design', ' woo-russian-marketplaces' ),230 'name' => __( 'Buttons block design', 'russian-marketplaces-for-woocommerce' ), 231 231 'type' => 'title', 232 'desc' => __( 'Settings of the main block with buttons-links to marketplaces', ' woo-russian-marketplaces' ),232 'desc' => __( 'Settings of the main block with buttons-links to marketplaces', 'russian-marketplaces-for-woocommerce' ), 233 233 'id' => 'buttons_block_design', 234 234 ] … … 237 237 $settings_slider[] = $this->add_field( 238 238 [ 239 'name' => __( 'Margin top', ' woo-russian-marketplaces' ),239 'name' => __( 'Margin top', 'russian-marketplaces-for-woocommerce' ), 240 240 'type' => 'number', 241 241 'id' => 'buttons_block_design_margin_top', … … 248 248 $settings_slider[] = $this->add_field( 249 249 [ 250 'name' => __( 'Margin bottom', ' woo-russian-marketplaces' ),250 'name' => __( 'Margin bottom', 'russian-marketplaces-for-woocommerce' ), 251 251 'type' => 'number', 252 252 'id' => 'buttons_block_design_margin_bottom', … … 259 259 $settings_slider[] = $this->add_field( 260 260 [ 261 'name' => __( 'Padding', ' woo-russian-marketplaces' ),262 'desc' => __( 'Sets padding on all sides of the block', ' woo-russian-marketplaces' ),261 'name' => __( 'Padding', 'russian-marketplaces-for-woocommerce' ), 262 'desc' => __( 'Sets padding on all sides of the block', 'russian-marketplaces-for-woocommerce' ), 263 263 'type' => 'number', 264 264 'id' => 'buttons_block_design_padding', … … 271 271 $settings_slider[] = $this->add_field( 272 272 [ 273 'name' => __( 'Background color', ' woo-russian-marketplaces' ),273 'name' => __( 'Background color', 'russian-marketplaces-for-woocommerce' ), 274 274 'type' => 'color', 275 275 'id' => 'buttons_block_design_background_color', … … 282 282 $settings_slider[] = $this->add_field( 283 283 [ 284 'name' => __( 'Border width', ' woo-russian-marketplaces' ),284 'name' => __( 'Border width', 'russian-marketplaces-for-woocommerce' ), 285 285 'type' => 'number', 286 286 'id' => 'buttons_block_design_border_width', … … 293 293 $settings_slider[] = $this->add_field( 294 294 [ 295 'name' => __( 'Border radius', ' woo-russian-marketplaces' ),295 'name' => __( 'Border radius', 'russian-marketplaces-for-woocommerce' ), 296 296 'type' => 'number', 297 297 'id' => 'buttons_block_design_border_radius', … … 304 304 $settings_slider[] = $this->add_field( 305 305 [ 306 'name' => __( 'Border color', ' woo-russian-marketplaces' ),306 'name' => __( 'Border color', 'russian-marketplaces-for-woocommerce' ), 307 307 'type' => 'color', 308 308 'id' => 'buttons_block_design_border_color', … … 315 315 $settings_slider[] = $this->add_field( 316 316 [ 317 'name' => __( 'Where to place', ' woo-russian-marketplaces' ),317 'name' => __( 'Where to place', 'russian-marketplaces-for-woocommerce' ), 318 318 'type' => 'radio', 319 319 'id' => 'buttons_block_design_where_to_place', 320 320 'options' => [ 321 'before' => __( 'Before Add to cart block', ' woo-russian-marketplaces' ),322 'after' => __( 'After Add to cart block', ' woo-russian-marketplaces' ),321 'before' => __( 'Before Add to cart block', 'russian-marketplaces-for-woocommerce' ), 322 'after' => __( 'After Add to cart block', 'russian-marketplaces-for-woocommerce' ), 323 323 ], 324 324 'default' => 'after', … … 335 335 $settings_slider[] = $this->add_field( 336 336 [ 337 'name' => __( 'Block title', ' woo-russian-marketplaces' ),337 'name' => __( 'Block title', 'russian-marketplaces-for-woocommerce' ), 338 338 'type' => 'title', 339 'desc' => __( 'Write your call to buy on marketplaces', ' woo-russian-marketplaces' ),339 'desc' => __( 'Write your call to buy on marketplaces', 'russian-marketplaces-for-woocommerce' ), 340 340 'id' => 'block_title', 341 341 ] … … 344 344 $settings_slider[] = $this->add_field( 345 345 [ 346 'name' => __( 'Text', ' woo-russian-marketplaces' ),346 'name' => __( 'Text', 'russian-marketplaces-for-woocommerce' ), 347 347 'type' => 'text', 348 348 'id' => 'block_title_text', 349 'default' => __( 'Buy this product on marketplaces', ' woo-russian-marketplaces' ),349 'default' => __( 'Buy this product on marketplaces', 'russian-marketplaces-for-woocommerce' ), 350 350 'css' => 'width:260px', 351 351 ] … … 354 354 $settings_slider[] = $this->add_field( 355 355 [ 356 'name' => __( 'Margin bottom', ' woo-russian-marketplaces' ),356 'name' => __( 'Margin bottom', 'russian-marketplaces-for-woocommerce' ), 357 357 'type' => 'number', 358 358 'id' => 'block_title_margin_bottom', … … 365 365 $settings_slider[] = $this->add_field( 366 366 [ 367 'name' => __( 'Font size', ' woo-russian-marketplaces' ),367 'name' => __( 'Font size', 'russian-marketplaces-for-woocommerce' ), 368 368 'type' => 'number', 369 369 'id' => 'block_title_font_size', … … 376 376 $settings_slider[] = $this->add_field( 377 377 [ 378 'name' => __( 'Color', ' woo-russian-marketplaces' ),378 'name' => __( 'Color', 'russian-marketplaces-for-woocommerce' ), 379 379 'type' => 'color', 380 380 'id' => 'block_title_color', … … 397 397 $settings_slider[] = $this->add_field( 398 398 [ 399 'name' => __( 'Marketplaces', ' woo-russian-marketplaces' ),399 'name' => __( 'Marketplaces', 'russian-marketplaces-for-woocommerce' ), 400 400 'type' => 'title', 401 401 'id' => 'marketplaces', … … 405 405 $settings_slider[] = $this->add_field( 406 406 [ 407 'name' => __( 'Buttons border width', ' woo-russian-marketplaces' ),407 'name' => __( 'Buttons border width', 'russian-marketplaces-for-woocommerce' ), 408 408 'type' => 'number', 409 409 'id' => 'button_border_width', … … 416 416 $settings_slider[] = $this->add_field( 417 417 [ 418 'name' => __( 'Buttons border radius', ' woo-russian-marketplaces' ),418 'name' => __( 'Buttons border radius', 'russian-marketplaces-for-woocommerce' ), 419 419 'type' => 'number', 420 420 'id' => 'button_border_radius', … … 427 427 $settings_slider[] = $this->add_field( 428 428 [ 429 'name' => __( 'Buttons font size', ' woo-russian-marketplaces' ),429 'name' => __( 'Buttons font size', 'russian-marketplaces-for-woocommerce' ), 430 430 'type' => 'number', 431 431 'id' => 'button_font_size', … … 468 468 $settings_slider[] = $this->add_field( 469 469 [ 470 'name' => __( 'On/Off', ' woo-russian-marketplaces' ),470 'name' => __( 'On/Off', 'russian-marketplaces-for-woocommerce' ), 471 471 'type' => 'checkbox', 472 472 'default' => 'no', … … 477 477 $settings_slider[] = $this->add_field( 478 478 [ 479 'name' => __( 'Button background color', ' woo-russian-marketplaces' ),479 'name' => __( 'Button background color', 'russian-marketplaces-for-woocommerce' ), 480 480 'type' => 'color', 481 481 'default' => $data['css']['background-color'], … … 488 488 $settings_slider[] = $this->add_field( 489 489 [ 490 'name' => __( 'Button border color', ' woo-russian-marketplaces' ),490 'name' => __( 'Button border color', 'russian-marketplaces-for-woocommerce' ), 491 491 'type' => 'color', 492 492 'id' => 'marketplaces_' . $marketplace_id . '_border_color', … … 499 499 $settings_slider[] = $this->add_field( 500 500 [ 501 'name' => __( 'Marketplace name color', ' woo-russian-marketplaces' ),501 'name' => __( 'Marketplace name color', 'russian-marketplaces-for-woocommerce' ), 502 502 'type' => 'color', 503 503 'id' => 'marketplaces_' . $marketplace_id . '_color', … … 510 510 $settings_slider[] = $this->add_field( 511 511 [ 512 'name' => __( 'Go Pro', ' woo-russian-marketplaces' ),512 'name' => __( 'Go Pro', 'russian-marketplaces-for-woocommerce' ), 513 513 'type' => 'html', 514 514 'id' => 'marketplaces_' . $marketplace_id . '_gopro', … … 534 534 $settings_slider[] = $this->add_field( 535 535 [ 536 'name' => __( 'SEO', ' woo-russian-marketplaces' ),536 'name' => __( 'SEO', 'russian-marketplaces-for-woocommerce' ), 537 537 'type' => 'title', 538 538 'id' => 'seo', … … 542 542 $settings_slider[] = $this->add_field( 543 543 [ 544 'name' => __( 'Wrap links with noindex', ' woo-russian-marketplaces' ),544 'name' => __( 'Wrap links with noindex', 'russian-marketplaces-for-woocommerce' ), 545 545 'type' => 'checkbox', 546 546 'default' => 'no', … … 551 551 $settings_slider[] = $this->add_field( 552 552 [ 553 'name' => __( 'Add nofollow attribute to links', ' woo-russian-marketplaces' ),553 'name' => __( 'Add nofollow attribute to links', 'russian-marketplaces-for-woocommerce' ), 554 554 'type' => 'checkbox', 555 555 'default' => 'no', … … 560 560 $settings_slider[] = $this->add_field( 561 561 [ 562 'name' => __( 'Open links in a new tab', ' woo-russian-marketplaces' ),562 'name' => __( 'Open links in a new tab', 'russian-marketplaces-for-woocommerce' ), 563 563 'type' => 'checkbox', 564 564 'default' => 'no', … … 629 629 ?> 630 630 <div class="wplovers-gopro"> 631 <p><b><?php esc_html_e( 'Want to automatically fill in product links?', ' woo-russian-marketplaces' ); ?></b> <?php esc_html_e( 'Connect integration with marketplaces and get:', 'woo-russian-marketplaces' ); ?></p>631 <p><b><?php esc_html_e( 'Want to automatically fill in product links?', 'russian-marketplaces-for-woocommerce' ); ?></b> <?php esc_html_e( 'Connect integration with marketplaces and get:', 'russian-marketplaces-for-woocommerce' ); ?></p> 632 632 <ul> 633 <li><?php esc_html_e( 'Automatic download and upload products;', ' woo-russian-marketplaces' ); ?></li>634 <li><?php esc_html_e( 'Loading orders;', ' woo-russian-marketplaces' ); ?></li>635 <li><?php esc_html_e( 'Exchange of balances;', ' woo-russian-marketplaces' ); ?></li>636 <li><?php esc_html_e( 'Flexible pricing.', ' woo-russian-marketplaces' ); ?></li>633 <li><?php esc_html_e( 'Automatic download and upload products;', 'russian-marketplaces-for-woocommerce' ); ?></li> 634 <li><?php esc_html_e( 'Loading orders;', 'russian-marketplaces-for-woocommerce' ); ?></li> 635 <li><?php esc_html_e( 'Exchange of balances;', 'russian-marketplaces-for-woocommerce' ); ?></li> 636 <li><?php esc_html_e( 'Flexible pricing.', 'russian-marketplaces-for-woocommerce' ); ?></li> 637 637 </ul> 638 <p><a href="<?php echo esc_url( self::get_gopro_link() ); ?>"><b><?php esc_html_e( 'Yes, I want to automate everything!', ' woo-russian-marketplaces' ); ?></b></a></p>638 <p><a href="<?php echo esc_url( self::get_gopro_link() ); ?>"><b><?php esc_html_e( 'Yes, I want to automate everything!', 'russian-marketplaces-for-woocommerce' ); ?></b></a></p> 639 639 </div> 640 640 <?php -
russian-marketplaces-for-woocommerce/trunk/src/Utils.php
r3277132 r3277284 3 3 * Полезные утилиты для плагина. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 -
russian-marketplaces-for-woocommerce/trunk/src/Widget.php
r3277132 r3277284 3 3 * Вывод виджета во фронтенде. 4 4 * 5 * @package woo-russian-marketplaces5 * @package russian-marketplaces-for-woocommerce 6 6 */ 7 7 … … 33 33 ob_start(); 34 34 ?> 35 . woo-russian-marketplaces{35 .russian-marketplaces-for-woocommerce { 36 36 background-color: <?php echo esc_html( $settings['buttons_block_design_background_color'] ); ?>; 37 37 padding: <?php echo esc_html( $settings['buttons_block_design_padding'] ); ?>px; … … 43 43 border-color: <?php echo esc_html( $settings['buttons_block_design_border_color'] ); ?>; 44 44 } 45 . woo-russian-marketplaces .woo-russian-marketplaces__header {45 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__header { 46 46 font-weight: 700; 47 47 margin-bottom: <?php echo esc_html( $settings['block_title_margin_bottom'] ); ?>px; … … 49 49 color: <?php echo esc_html( $settings['block_title_color'] ); ?>; 50 50 } 51 . woo-russian-marketplaces .woo-russian-marketplaces__list {51 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__list { 52 52 display: flex; 53 53 flex-direction: row; … … 57 57 justify-content: flex-start; 58 58 } 59 . woo-russian-marketplaces .woo-russian-marketplaces__link {59 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__link { 60 60 text-decoration: none; 61 61 text-transform: uppercase; … … 68 68 border-radius: <?php echo esc_html( $settings['button_border_radius'] ); ?>px; 69 69 } 70 . woo-russian-marketplaces .woo-russian-marketplaces__link:hover {70 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__link:hover { 71 71 opacity: 0.8; 72 72 } … … 77 77 } 78 78 ?> 79 . woo-russian-marketplaces .woo-russian-marketplaces__link--<?php echo esc_html( $marketplace ); ?> {79 .russian-marketplaces-for-woocommerce .russian-marketplaces-for-woocommerce__link--<?php echo esc_html( $marketplace ); ?> { 80 80 background-color: <?php echo esc_html( $settings[ 'marketplaces_' . $marketplace . '_background_color' ] ); ?>; 81 81 border-color: <?php echo esc_html( $settings[ 'marketplaces_' . $marketplace . '_border_color' ] ); ?>; … … 102 102 sprintf( 103 103 /* translators: plugin name, settings link */ 104 __( 'Плагин "%1$s" активирован, но не настроен! <a href="%2$s">Настроить плагин.</a>', ' woo-russian-marketplaces' ),104 __( 'Плагин "%1$s" активирован, но не настроен! <a href="%2$s">Настроить плагин.</a>', 'russian-marketplaces-for-woocommerce' ), 105 105 Utils::get_plugin_name(), 106 106 Settings::get_settings_link() -
russian-marketplaces-for-woocommerce/trunk/vendor/composer/installed.php
r3277132 r3277284 2 2 'root' => array( 3 3 'name' => 'wplovers/woo-russian-marketplace', 4 'pretty_version' => '0.1.3 ',5 'version' => '0.1.3. 0',6 'reference' => '0 38513384485353994c96b39898b927d96fc33d8',4 'pretty_version' => '0.1.3.1', 5 'version' => '0.1.3.1', 6 'reference' => '067ae572fe4739943ee7488b37f3d1f913ba1fb8', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'wplovers/woo-russian-marketplace' => array( 14 'pretty_version' => '0.1.3 ',15 'version' => '0.1.3. 0',16 'reference' => '0 38513384485353994c96b39898b927d96fc33d8',14 'pretty_version' => '0.1.3.1', 15 'version' => '0.1.3.1', 16 'reference' => '067ae572fe4739943ee7488b37f3d1f913ba1fb8', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
russian-marketplaces-for-woocommerce/trunk/woo-russian-marketplaces.php
r3277132 r3277284 6 6 * Author: mihdan 7 7 * Author URI: https://www.kobzarev.com/ 8 * Version: 0.1.3 8 * Version: 0.1.3.1 9 9 * Requires at least: 6.5 10 10 * Requires PHP: 7.4 11 11 * License: GPLv2 or later 12 12 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 13 * Text Domain: woo-russian-marketplaces13 * Text Domain: russian-marketplaces-for-woocommerce 14 14 * Requires Plugins: woocommerce 15 15 * 16 * @package woo-russian-marketplaces16 * @package russian-marketplaces-for-woocommerce 17 17 */ 18 18 … … 20 20 21 21 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_NAME', 'Russian marketplaces for WooCommerce' ); 22 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_SLUG', ' woo-russian-marketplaces' );23 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_PREFIX', ' woo_russian_marketplaces' );22 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_SLUG', 'russian-marketplaces-for-woocommerce' ); 23 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_PREFIX', 'russian_marketplaces_for_woocommerce' ); 24 24 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_BASENAME', plugin_basename( __FILE__ ) ); 25 25 define( 'WPL_WOO_RUSSIAN_MARKETPLACES_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.