Changeset 1575805
- Timestamp:
- 01/16/2017 04:37:24 PM (9 years ago)
- Location:
- lead-assign/trunk
- Files:
-
- 2 edited
-
functions.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lead-assign/trunk/functions.php
r1571372 r1575805 43 43 if (defined('WPCF7_PLUGIN')) { 44 44 $leadassign_contact_form_status = 45 sprintf( 46 /* translators note: %s = success classname */ 47 __("<span class='%s'>ACTIVE</span>",'lead-assign'), 48 'leadassign-success' 49 ); 45 "<span class=leadassign-success>". 46 __("ACTIVE",'lead-assign') 47 ."</span>" 48 ; 50 49 // if recaptcha configured 51 50 if (WPCF7_RECAPTCHA::get_instance()->is_active()) { 52 51 $leadassign_recaptcha_status = 53 sprintf( 54 /* translators note: %s = success classname */ 55 __("<span class='%s'>CONFIGURED</span>",'lead-assign'), 56 'leadassign-success' 57 ); 52 "<span class=leadassign-success>". 53 __("CONFIGURED",'lead-assign') 54 ."</span>" 55 ; 58 56 59 57 // All dependencies are loaded and ready … … 80 78 // contact form 7 isn't installed, so recaptcha can't be configured, either 81 79 $leadassign_recaptcha_status = 82 sprintf( 83 /* translators note: %s = failure classname */ 84 __("<span class='%s'>NOT CONFIGURED.</span>",'lead-assign'), 85 'leadassign-failure' 86 ); 80 "<span class=leadassign-failure>". 81 __("NOT CONFIGURED",'lead-assign') 82 ."</span>" 83 ; 87 84 } 88 85 } -
lead-assign/trunk/readme.txt
r1571400 r1575805 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 9 10 Adds a widget to your site that forwards leads directlyto your Lead Assign account10 Forwards leads straight to your Lead Assign account 11 11 12 12 == Description == 13 13 14 14 The Lead Assign plugin contains a widget that you can use to send leads directly to your Lead Assign account. 15 16 Lead Assign routes leads to the most applicable agents, instantly. Find out more at [Lead Assign]("https://leadassign.com"). 15 17 16 18 Contact Form 7 is required to use this plugin.
Note: See TracChangeset
for help on using the changeset viewer.