Plugin Directory

Changeset 818398


Ignore:
Timestamp:
12/10/2013 06:44:46 PM (12 years ago)
Author:
StuartSequeira
Message:

Update text domain for translations

Location:
comment-gatekeeper
Files:
6 added
4 edited

Legend:

Unmodified
Added
Removed
  • comment-gatekeeper/trunk/comment-gatekeeper.php

    r815240 r818398  
    66Author: Stuart Sequeira
    77Author URI: http://lb3computingsolutions.com/about/
    8 Version: 0.9.1
     8Version: 0.9.3
     9Text Domain: comment-gatekeeper
    910*/
    1011
     
    2829}
    2930
    30 define('LB3CGK_VERSION', '0.9');
     31define('LB3CGK_VERSION', '0.9.3');
    3132
    3233
  • comment-gatekeeper/trunk/includes/comment-form.php

    r815240 r818398  
    6464            if( '' == $_POST['gatekey']){
    6565
    66                 wp_die( __('<strong>ERROR</strong>: please enter a valid spam-filtering answer.' , 'lb3cgk' ) ); //no gatekey was entered
     66                wp_die( __('<strong>ERROR</strong>: please enter a valid spam-filtering answer.' , 'comment-gatekeeper' ) ); //no gatekey was entered
    6767
    6868            }
     
    7373       
    7474            //$gatekey = 'nonce_al_pass'; //no key was entered so set a fake key to fail
    75             wp_die( __('<strong>ERROR</strong>: please enter a valid spam-filtering answer.' , 'lb3cgk' ) );//gatekey was not set
     75            wp_die( __('<strong>ERROR</strong>: please enter a valid spam-filtering answer.' , 'comment-gatekeeper' ) );//gatekey was not set
    7676           
    7777        }
     
    8282       
    8383            //$_POST['comment'] = ''; //empty the post comment and let it fail
    84             wp_die( __('<strong>SORRY</strong>: you did not answer to gatekeeper question correctly.' , 'lb3cgk' ) );
     84            wp_die( __('<strong>SORRY</strong>: you did not answer to gatekeeper question correctly.' , 'comment-gatekeeper' ) );
    8585       
    8686        }
  • comment-gatekeeper/trunk/includes/settings.php

    r814784 r818398  
    2121   
    2222    $section_id = 'lb3cgk_settings_section'; //id for our section
    23     $section_title = __( 'Comment Gatekeeper Settings' , 'lb3cgk' ); // title our section
     23    $section_title = __( 'Comment Gatekeeper Settings' , 'comment-gatekeeper' ); // title our section
    2424    $section_output_function = 'lb3cgk_settings_section_output'; // function to output section html
    2525   
     
    4747    $options_array['challenge_question' ] = array(
    4848        'field_id'      => 'lb3cgk_gatekeeper_default',
    49         'field_title'   => __( 'Default comment gatekeeper question' , 'lb3cgk' )
     49        'field_title'   => __( 'Default comment gatekeeper question' , 'comment-gatekeeper' )
    5050        ,'field_output_function'    => 'lb3cgk_gatekeeper_default_field_output'
    5151   
     
    5656    $options_array['gatelock' ] = array(
    5757        'field_id'      => 'lb3cgk_gatelock_default',
    58         'field_title'   => __( 'Default gatelock' , 'lb3cgk' )
     58        'field_title'   => __( 'Default gatelock' , 'comment-gatekeeper' )
    5959        ,'field_output_function'    => 'lb3cgk_gatelock_default_field_output'
    6060   
     
    9090function lb3cgk_settings_section_output(){
    9191   
    92     echo __("Please complete these site-wide comment gatekeeper settings" , 'lb3cgk' );
     92    echo __("Please complete these site-wide comment gatekeeper settings" , 'comment-gatekeeper' );
    9393   
    9494} // end lb3cgk_settings_section_output
  • comment-gatekeeper/trunk/readme.txt

    r816574 r818398  
    55Requires at least: 3.0.3
    66Tested up to: 3.7.1
    7 Stable tag: 0.9.2
     7Stable tag: 0.9.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.