Changeset 2270227
- Timestamp:
- 03/29/2020 03:34:31 PM (5 years ago)
- Location:
- multi-currency-wallet
- Files:
-
- 192 added
- 2 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
multi-currency-wallet/tags/1.0.1/includes/enqueue_scripts/wp_enqueue_scripts.php
r2269682 r2270227 12 12 /* Google Fonts */ 13 13 wp_register_style( 'mcwallet-google-fonts', mcwallet_fonts_url(), array(), null ); 14 wp_register_style( 'mcwallet-app', MCWALLET_URL . ' build/app.css', false, MCWALLET_BUILD_VER );14 wp_register_style( 'mcwallet-app', MCWALLET_URL . 'vendors/swap/app.css', false, MCWALLET_BUILD_VER ); 15 15 /* Register Scripts */ 16 16 wp_register_script( 'swiper', MCWALLET_URL . 'assets/js/swiper.min.js', array(), '4.5.1', true ); 17 wp_register_script( 'mcwallet-vendor', MCWALLET_URL . ' build/vendor.js', array( 'react-dom', 'swiper' ), MCWALLET_BUILD_VER, true );18 wp_register_script( 'mcwallet-app', MCWALLET_URL . ' build/app.js', array( 'mcwallet-vendor' ), esc_attr( MCWALLET_BUILD_VER ), true );17 wp_register_script( 'mcwallet-vendor', MCWALLET_URL . 'vendors/swap/vendor.js', array( 'react-dom', 'swiper' ), MCWALLET_BUILD_VER, true ); 18 wp_register_script( 'mcwallet-app', MCWALLET_URL . 'vendors/swap/app.js', array( 'mcwallet-vendor' ), esc_attr( MCWALLET_BUILD_VER ), true ); 19 19 20 20 wp_add_inline_script( 'mcwallet-vendor', mcwallet_inline_build_script(), 'before' ); … … 143 143 window.logoUrl = "' . mcwallet_logo_url() . '"; 144 144 145 window.imagesUrl = "' . MCWALLET_URL . ' build/images/";145 window.imagesUrl = "' . MCWALLET_URL . 'vendors/swap/images/"; 146 146 147 147 imagesUrl = window.imagesUrl; -
multi-currency-wallet/tags/1.0.1/lang/multi-currency-wallet.pot
r2269682 r2270227 3 3 msgstr "" 4 4 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 5 "Project-Id-Version: Multi Currency Wallet Pro\n"6 "POT-Creation-Date: 2020-03-28 09:40+0200\n"7 "PO-Revision-Date: 2020-0 2-11 07:35+0200\n"5 "Project-Id-Version: Multi Currency Wallet\n" 6 "POT-Creation-Date: 2020-03-28 13:02+0200\n" 7 "PO-Revision-Date: 2020-03-28 13:02+0200\n" 8 8 "Last-Translator: \n" 9 9 "Language-Team: \n" … … 13 13 "X-Generator: Poedit 1.8.8\n" 14 14 "X-Poedit-Basepath: ..\n" 15 "X-Poedit-WPHeader: multi-currency-wallet -pro.php\n"15 "X-Poedit-WPHeader: multi-currency-wallet.php\n" 16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 17 "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" … … 21 21 "X-Poedit-SearchPathExcluded-0: *.js\n" 22 22 23 #. Plugin Name of the plugin/theme 23 24 #: includes/admin_page/admin_page.php:7 24 25 msgid "Multi Currency Wallet" … … 227 228 msgstr "" 228 229 229 #. Plugin Name of the plugin/theme230 msgid "Multi Currency Wallet Pro"231 msgstr ""232 233 230 #. Plugin URI of the plugin/theme 234 msgid "https:// swaponline.io"231 msgid "https://plugins.wordpress.org/multi-currency-wallet" 235 232 msgstr "" 236 233 … … 240 237 241 238 #. Author of the plugin/theme 242 msgid "Noxon Themes"239 msgid "Noxonsu" 243 240 msgstr "" 244 241 245 242 #. Author URI of the plugin/theme 246 msgid "https:// themeforest.net/user/noxonthemes"247 msgstr "" 243 msgid "https://profiles.wordpress.org/noxonsu" 244 msgstr "" -
multi-currency-wallet/tags/1.0.1/multi-currency-wallet.php
r2269682 r2270227 20 20 define( 'MCWALLET_URL', plugin_dir_url( __FILE__ ) ); 21 21 define( 'MCWALLET_VER', '1.0.1' ); 22 define( 'MCWALLET_BUILD_VER' , 'a10c51x 01' );22 define( 'MCWALLET_BUILD_VER' , 'a10c51x2' ); 23 23 24 24 /** -
multi-currency-wallet/tags/1.0.1/readme.txt
r2270118 r2270227 1 1 === Multi Currency Wallet === 2 2 Contributors: noxonsu, burdianov 3 Tags: adress generation, bitcoin, blockchain, crypto, cryptocurrency, eos, ethereum, exchange, shortcode, wallet, widget , erc203 Tags: adress generation, bitcoin, blockchain, crypto, cryptocurrency, eos, ethereum, exchange, shortcode, wallet, widget 4 4 Requires at least: 4.6 5 5 Tested up to: 5.3 -
multi-currency-wallet/trunk/includes/admin_page/admin_page_settings.php
r2269692 r2270227 17 17 ?> 18 18 19 <h3><?php _e( 'Add new token', 'multi-currency-wallet' );?></h3>19 <h3><?php esc_html_e( 'Add new token', 'multi-currency-wallet' );?></h3> 20 20 21 21 <table class="form-table"> -
multi-currency-wallet/trunk/includes/enqueue_scripts/wp_enqueue_scripts.php
r2269663 r2270227 12 12 /* Google Fonts */ 13 13 wp_register_style( 'mcwallet-google-fonts', mcwallet_fonts_url(), array(), null ); 14 wp_register_style( 'mcwallet-app', MCWALLET_URL . ' build/app.css', false, MCWALLET_BUILD_VER );14 wp_register_style( 'mcwallet-app', MCWALLET_URL . 'vendors/swap/app.css', false, MCWALLET_BUILD_VER ); 15 15 /* Register Scripts */ 16 16 wp_register_script( 'swiper', MCWALLET_URL . 'assets/js/swiper.min.js', array(), '4.5.1', true ); 17 wp_register_script( 'mcwallet-vendor', MCWALLET_URL . ' build/vendor.js', array( 'react-dom', 'swiper' ), MCWALLET_BUILD_VER, true );18 wp_register_script( 'mcwallet-app', MCWALLET_URL . ' build/app.js', array( 'mcwallet-vendor' ), esc_attr( MCWALLET_BUILD_VER ), true );17 wp_register_script( 'mcwallet-vendor', MCWALLET_URL . 'vendors/swap/vendor.js', array( 'react-dom', 'swiper' ), MCWALLET_BUILD_VER, true ); 18 wp_register_script( 'mcwallet-app', MCWALLET_URL . 'vendors/swap/app.js', array( 'mcwallet-vendor' ), esc_attr( MCWALLET_BUILD_VER ), true ); 19 19 20 20 wp_add_inline_script( 'mcwallet-vendor', mcwallet_inline_build_script(), 'before' ); … … 143 143 window.logoUrl = "' . mcwallet_logo_url() . '"; 144 144 145 window.imagesUrl = "' . MCWALLET_URL . ' build/images/";145 window.imagesUrl = "' . MCWALLET_URL . 'vendors/swap/images/"; 146 146 147 147 imagesUrl = window.imagesUrl; -
multi-currency-wallet/trunk/multi-currency-wallet.php
r2269663 r2270227 20 20 define( 'MCWALLET_URL', plugin_dir_url( __FILE__ ) ); 21 21 define( 'MCWALLET_VER', '1.0.1' ); 22 define( 'MCWALLET_BUILD_VER' , 'a10c51x 01' );22 define( 'MCWALLET_BUILD_VER' , 'a10c51x2' ); 23 23 24 24 /** -
multi-currency-wallet/trunk/readme.txt
r2270118 r2270227 1 1 === Multi Currency Wallet === 2 2 Contributors: noxonsu, burdianov 3 Tags: adress generation, bitcoin, blockchain, crypto, cryptocurrency, eos, ethereum, exchange, shortcode, wallet, widget , erc203 Tags: adress generation, bitcoin, blockchain, crypto, cryptocurrency, eos, ethereum, exchange, shortcode, wallet, widget 4 4 Requires at least: 4.6 5 5 Tested up to: 5.3
Note: See TracChangeset
for help on using the changeset viewer.