Plugin Directory

Changeset 1575805


Ignore:
Timestamp:
01/16/2017 04:37:24 PM (9 years ago)
Author:
ted537
Message:

Simplified translation, updated readme

Location:
lead-assign/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lead-assign/trunk/functions.php

    r1571372 r1575805  
    4343  if (defined('WPCF7_PLUGIN')) {
    4444    $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    ;
    5049    // if recaptcha configured
    5150    if (WPCF7_RECAPTCHA::get_instance()->is_active()) {
    5251      $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      ;
    5856
    5957      // All dependencies are loaded and ready
     
    8078    // contact form 7 isn't installed, so recaptcha can't be configured, either
    8179    $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    ;
    8784  }
    8885}
  • lead-assign/trunk/readme.txt

    r1571400 r1575805  
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
    99
    10 Adds a widget to your site that forwards leads directly to your Lead Assign account
     10Forwards leads straight to your Lead Assign account
    1111
    1212== Description ==
    1313
    1414The Lead Assign plugin contains a widget that you can use to send leads directly to your Lead Assign account.
     15
     16Lead Assign routes leads to the most applicable agents, instantly. Find out more at [Lead Assign]("https://leadassign.com").
    1517
    1618Contact Form 7 is required to use this plugin.
Note: See TracChangeset for help on using the changeset viewer.