Plugin Directory

Changeset 1144059


Ignore:
Timestamp:
04/24/2015 02:43:03 AM (11 years ago)
Author:
2bc_jason
Message:

Fixing minor issue in options screen, adding edge case when site key and secret key are valid but not a pair

Location:
2bc-form-security
Files:
23 added
7 edited

Legend:

Unmodified
Added
Removed
  • 2bc-form-security/trunk/2bc-form-security.php

    r1143993 r1144059  
    193193                             '2bc-form-security')),
    194194                        'default' => '',
    195                         'class' => 'regular-text code',
    196195                    ),
    197196
     
    202201                             '2bc-form-security')),
    203202                        'default' => '',
    204                         'class' => 'regular-text code',
    205203                    ),
    206204
     
    478476        'ERROR: The API keys are good, however Google says you are a robot… maybe you should try again?',
    479477                             'Error', '2bc-form-security')),
     478                        'errorGeneric' => esc_html(__(
     479        'ERROR: No error message provided - likely a site_key / secret_key mismatch.',
     480                             'Error', '2bc-form-security')),
     481                        'noresponse' => esc_html(__(
     482        'ERROR: No response returned from Google...',
     483                             'Error', '2bc-form-security')),
    480484                        'instructMessage1' => esc_html(__(
    481485                            'Complete the reCAPTCHA widget below to confirm the API keys.', '2bc-form-security')),
  • 2bc-form-security/trunk/includes/css/2bc-form-security-admin.css

    r1143993 r1144059  
    132132    text-align: left;
    133133    padding-left: 30px;
    134     width: 270px;
     134    padding-right: 30px;
     135    box-sizing: border-box;
     136    width: 300px;
    135137    height: 74px;
    136138    -webkit-border-radius: 3px;
  • 2bc-form-security/trunk/includes/js/2bc-form-security-admin.js

    r1130069 r1144059  
    1818            'twobcfs_secret_key': secret_key
    1919        };
     20       
    2021        $.post(ajaxurl, googleAjaxArgs, function (response) {
     22            var newdiv = document.getElementById('twobc_api_render_check');
     23            var responsemessage = document.createElement('p');
    2124            if (response) {
    22                 response = JSON.parse(response);
    23                 var responsemessage = document.createElement('p');
    24                 var newdiv = document.getElementById('twobc_api_render_check');
     25                response = JSON.parse(response);               
    2526                if ( response.success ) {
    2627                    $enable_recaptcha.prop('checked', true);
     
    3839                        if ( -1 != response['error-codes'].indexOf('invalid-input-secret') ) {
    3940                            responsemessage.innerHTML = twoBCFormSecurity.errorSecretKey;
    40                             responsemessage.className = 'return_error';
     41                            responsemessage.className = 'return_error';                         
    4142                        }
    4243                        if (-1 != response['error-codes'].indexOf('invalid-input-response')) {
     
    4445                            responsemessage.className = 'return_error';
    4546                        }
    46                         if(newdiv) {
    47                             $(newdiv).append(responsemessage);
    48                         }
    49                     }
     47                    } else {
     48                        responsemessage.innerHTML = twoBCFormSecurity.errorGeneric;
     49                        responsemessage.className = 'return_error';                     
     50                    }
     51                    if(newdiv) {
     52                        $(newdiv).append(responsemessage);
     53                    }
     54                    $('.twobc_recapt_message_instruct').remove();
    5055                    $enable_recaptcha.prop('checked', false);
    5156                    $site_and_secret.prop('disabled', false);
    5257                    $enable_recaptcha.removeClass('recaptcha_valid');
    5358                    validation_population(0);
     59                }
     60            } else {
     61                responsemessage.innerHTML = twoBCFormSecurity.noresponse;
     62                responsemessage.className = 'return_error';
     63                $('.twobc_recapt_message_instruct').remove();
     64                if(newdiv) {
     65                    $(newdiv).append(responsemessage);
    5466                }
    5567            }
  • 2bc-form-security/trunk/lang/2bc-form-security.pot

    r1130069 r1144059  
    22msgstr ""
    33"Project-Id-Version: 2bc-form-security\n"
    4 "POT-Creation-Date: 2015-04-06 15:40-0800\n"
    5 "PO-Revision-Date: 2015-04-06 15:42-0800\n"
     4"POT-Creation-Date: 2015-04-23 19:25-0800\n"
     5"PO-Revision-Date: 2015-04-23 19:25-0800\n"
    66"Last-Translator: Jason Dreher <jason@2bcoding.com>\n"
    77"Language-Team: 2BCoding <info@2bcoding.com>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "X-Generator: Poedit 1.7.5\n"
     12"X-Generator: Poedit 1.7.6\n"
    1313"X-Poedit-Basepath: ..\n"
    1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
     
    1616"X-Poedit-SearchPath-0: .\n"
    1717
    18 #: 2bc-form-security.php:168
    19 msgid "Where To Display"
    20 msgstr ""
    21 
    22 #: 2bc-form-security.php:173
    23 msgid "Registration Form"
    24 msgstr ""
    25 
    26 #: 2bc-form-security.php:176
    27 msgid "Display form security tools in the WordPress registration form"
     18#: 2bc-form-security.php:177
     19msgid "Google reCAPTCHA Options"
    2820msgstr ""
    2921
    3022#: 2bc-form-security.php:181
    31 msgid "Login Form"
    32 msgstr ""
    33 
    34 #: 2bc-form-security.php:184
    35 msgid "Display form security tools in the WordPress login form"
    36 msgstr ""
    37 
    38 #: 2bc-form-security.php:189
    39 msgid "Comment Form"
     23msgid "Enable reCAPTCHA"
     24msgstr ""
     25
     26#: 2bc-form-security.php:183
     27msgid "Enable the Google reCAPTCHA tool for the checked forms"
     28msgstr ""
     29
     30#: 2bc-form-security.php:190
     31msgid "Site Key"
    4032msgstr ""
    4133
    4234#: 2bc-form-security.php:192
    43 msgid "Display form security tools in the WordPress comment form"
     35msgid "Enter your Google reCAPTCHA Site key for this site"
     36msgstr ""
     37
     38#: 2bc-form-security.php:198
     39msgid "Secret Key"
    4440msgstr ""
    4541
    4642#: 2bc-form-security.php:200
    47 msgid "Google reCAPTCHA Options"
    48 msgstr ""
    49 
    50 #: 2bc-form-security.php:205
    51 msgid "Enable reCAPTCHA"
    52 msgstr ""
    53 
    54 #: 2bc-form-security.php:207
    55 msgid "Enable the Google reCAPTCHA tool for the checked forms"
    56 msgstr ""
    57 
    58 #: 2bc-form-security.php:213
    59 msgid "Site Key"
    60 msgstr ""
    61 
    62 #: 2bc-form-security.php:215
    63 msgid "Enter your Google reCAPTCHA Site key for this site"
    64 msgstr ""
    65 
    66 #: 2bc-form-security.php:221
    67 msgid "Secret Key"
    68 msgstr ""
    69 
    70 #: 2bc-form-security.php:223
    7143msgid "Enter your Google reCAPTCHA Secret key for this site"
    7244msgstr ""
    7345
    74 #: 2bc-form-security.php:229
     46#: 2bc-form-security.php:206
    7547msgid "Record Users IP"
    7648msgstr ""
    7749
    78 #: 2bc-form-security.php:231
     50#: 2bc-form-security.php:209
    7951msgid ""
    8052"Attempt to get the users IP.  Will send to Google for extra security "
     
    8254msgstr ""
    8355
    84 #: 2bc-form-security.php:238
     56#: 2bc-form-security.php:216
    8557msgid "reCAPTCHA Theme"
    8658msgstr ""
    8759
    88 #: 2bc-form-security.php:240
     60#: 2bc-form-security.php:218
    8961msgid "Select which theme to display the Google reCAPTCHA tool in"
    9062msgstr ""
    9163
    92 #: 2bc-form-security.php:243
     64#: 2bc-form-security.php:222
    9365msgid "Light"
    9466msgstr ""
    9567
     68#: 2bc-form-security.php:223
     69msgid "Dark"
     70msgstr ""
     71
     72#: 2bc-form-security.php:230
     73msgid "Where To Display reCAPTCHA"
     74msgstr ""
     75
     76#: 2bc-form-security.php:235
     77msgid "Registration Form"
     78msgstr ""
     79
     80#: 2bc-form-security.php:239
     81msgid "Display form security tools in the WordPress registration form"
     82msgstr ""
     83
    9684#: 2bc-form-security.php:244
    97 msgid "Dark"
     85msgid "Login Form"
     86msgstr ""
     87
     88#: 2bc-form-security.php:248
     89msgid "Display form security tools in the WordPress login form"
    9890msgstr ""
    9991
    10092#: 2bc-form-security.php:253
     93msgid "Comment Form"
     94msgstr ""
     95
     96#: 2bc-form-security.php:257
     97msgid "Display form security tools in the WordPress comment form"
     98msgstr ""
     99
     100#: 2bc-form-security.php:265
    101101msgid "Error Handling"
    102102msgstr ""
    103103
    104 #: 2bc-form-security.php:257
     104#: 2bc-form-security.php:269
    105105msgid "Login Errors"
    106106msgstr ""
    107107
    108 #: 2bc-form-security.php:259
     108#: 2bc-form-security.php:271
    109109msgid "Select how to handle login errors"
    110110msgstr ""
    111111
    112 #: 2bc-form-security.php:262
     112#: 2bc-form-security.php:275
    113113msgid ""
    114114"<strong>2BC Form Security Error</strong> &ndash; Return a "
     
    117117msgstr ""
    118118
    119 #: 2bc-form-security.php:263
     119#: 2bc-form-security.php:278
    120120msgid ""
    121121"<strong>Generic Errors</strong> &ndash; Return a generic <code>login_failed</"
     
    124124msgstr ""
    125125
    126 #: 2bc-form-security.php:267
     126#: 2bc-form-security.php:283
    127127msgid "Comment Status"
    128128msgstr ""
    129129
    130 #: 2bc-form-security.php:269
     130#: 2bc-form-security.php:286
    131131msgid ""
    132132"Control how failed comments are handled.  Options are to automatically mark "
     
    135135msgstr ""
    136136
    137 #: 2bc-form-security.php:272
     137#: 2bc-form-security.php:290
    138138msgid "Spam"
    139139msgstr ""
    140140
    141 #: 2bc-form-security.php:273
     141#: 2bc-form-security.php:291
    142142msgid "Moderation Queue"
    143143msgstr ""
    144144
    145 #: 2bc-form-security.php:280 2bc-form-security.php:648
     145#: 2bc-form-security.php:298 2bc-form-security.php:703
    146146msgid "Reports"
    147147msgstr ""
    148148
    149 #: 2bc-form-security.php:284
     149#: 2bc-form-security.php:302
    150150msgid "Enable Reporting"
    151151msgstr ""
    152152
    153 #: 2bc-form-security.php:287
     153#: 2bc-form-security.php:306
    154154msgid ""
    155155"Record security failures in the <strong>Reports</strong> tab to help gauge "
    156 "the effectivness of the fields"
    157 msgstr ""
    158 
    159 #: 2bc-form-security.php:403 2bc-form-security.php:404
     156"the effectiveness of the fields"
     157msgstr ""
     158
     159#: 2bc-form-security.php:438 2bc-form-security.php:439
    160160msgid "2BC Form Security"
    161161msgstr ""
    162162
    163 #: 2bc-form-security.php:444
     163#: 2bc-form-security.php:474
    164164msgid "ERROR: Invalid Secret Key"
    165165msgstr ""
    166166
    167 #: 2bc-form-security.php:445
     167#: 2bc-form-security.php:476
    168168msgid ""
    169169"ERROR: The API keys are good, however Google says you are a robot&hellip; "
     
    171171msgstr ""
    172172
    173 #: 2bc-form-security.php:446
     173#: 2bc-form-security.php:479
     174msgid ""
     175"ERROR: No error message provided - likely a site_key / secret_key mismatch."
     176msgstr ""
     177
     178#: 2bc-form-security.php:482
     179msgid "ERROR: No response returned from Google..."
     180msgstr ""
     181
     182#: 2bc-form-security.php:485
    174183msgid "Complete the reCAPTCHA widget below to confirm the API keys."
    175184msgstr ""
    176185
    177 #: 2bc-form-security.php:447
     186#: 2bc-form-security.php:487
    178187msgid ""
    179188"API Keys Confirmed! Click the <strong>Save all settings</strong> button to "
     
    181190msgstr ""
    182191
    183 #: 2bc-form-security.php:448
     192#: 2bc-form-security.php:490
    184193msgid "Are you sure you want to clear the tracking log?"
    185194msgstr ""
    186195
    187 #: 2bc-form-security.php:555
     196#: 2bc-form-security.php:598
    188197#, php-format
    189198msgid ""
    190199"Enter your Google reCAPTCHA V2 API keys below.  If you do not have API keys, "
    191 "see the 2BC blog post on<br>\n"
     200"see the 2BCoding blog post on<br>\n"
    192201"%1$sHow To Get Google reCAPTCHA V2 API Keys%2$s"
    193202msgstr ""
    194203
    195 #: 2bc-form-security.php:595
     204#: 2bc-form-security.php:639
    196205msgid "Change API Keys"
    197206msgstr ""
    198207
    199 #: 2bc-form-security.php:609 2bc-form-security.php:2037
    200 #: 2bc-form-security.php:2059
     208#: 2bc-form-security.php:650
     209msgid "BuddyPress detected!"
     210msgstr ""
     211
     212#: 2bc-form-security.php:661 2bc-form-security.php:2159
     213#: 2bc-form-security.php:2181
    201214msgid "You do not have sufficient permissions to access this page."
    202215msgstr ""
    203216
    204 #: 2bc-form-security.php:646
     217#: 2bc-form-security.php:700
    205218msgid "Settings"
    206219msgstr ""
    207220
    208 #: 2bc-form-security.php:653
     221#: 2bc-form-security.php:708
    209222msgid "2BC Form Security Options"
    210223msgstr ""
    211224
    212 #: 2bc-form-security.php:656
     225#: 2bc-form-security.php:711
    213226#, php-format
    214227msgid ""
     
    216229msgstr ""
    217230
    218 #: 2bc-form-security.php:674
     231#: 2bc-form-security.php:732
    219232msgid "Save all settings"
    220233msgstr ""
    221234
    222 #: 2bc-form-security.php:694
     235#: 2bc-form-security.php:752
    223236msgid "<strong>ERROR:</strong> Invalid tab!"
    224237msgstr ""
    225238
    226 #: 2bc-form-security.php:834
     239#: 2bc-form-security.php:893
    227240msgid "Settings saved."
    228241msgstr ""
    229242
    230 #: 2bc-form-security.php:1056 2bc-form-security.php:1171
     243#: 2bc-form-security.php:1115 2bc-form-security.php:1237
    231244msgid "Total"
    232245msgstr ""
    233246
    234 #: 2bc-form-security.php:1066
     247#: 2bc-form-security.php:1125
    235248msgid "Security checks failed:"
    236249msgstr ""
    237250
    238 #: 2bc-form-security.php:1071
     251#: 2bc-form-security.php:1131
    239252msgid "Security Methods"
    240253msgstr ""
    241254
    242 #: 2bc-form-security.php:1092
     255#: 2bc-form-security.php:1152
    243256msgid "Honeypot failures:"
    244257msgstr ""
    245258
    246 #: 2bc-form-security.php:1094
     259#: 2bc-form-security.php:1155
    247260msgid "Google reCAPTCHA &ndash; empty:"
    248261msgstr ""
    249262
    250 #: 2bc-form-security.php:1096
     263#: 2bc-form-security.php:1158
    251264msgid "Google reCAPTCHA &ndash; failures:"
    252265msgstr ""
    253266
    254 #: 2bc-form-security.php:1102
     267#: 2bc-form-security.php:1165
    255268msgid "Locations"
    256269msgstr ""
    257270
    258 #: 2bc-form-security.php:1123
     271#: 2bc-form-security.php:1186
    259272msgid "Registration form failures:"
    260273msgstr ""
    261274
    262 #: 2bc-form-security.php:1125
     275#: 2bc-form-security.php:1189
    263276msgid "Login form failures:"
    264277msgstr ""
    265278
    266 #: 2bc-form-security.php:1127
     279#: 2bc-form-security.php:1192
    267280msgid "Comment form failures:"
    268281msgstr ""
    269282
    270 #: 2bc-form-security.php:1133
     283#: 2bc-form-security.php:1199
    271284msgid "Log"
    272285msgstr ""
    273286
    274 #: 2bc-form-security.php:1155
     287#: 2bc-form-security.php:1221
    275288msgid "ID"
    276289msgstr ""
    277290
    278 #: 2bc-form-security.php:1157
     291#: 2bc-form-security.php:1223
    279292msgid "IP Address"
    280293msgstr ""
    281294
    282 #: 2bc-form-security.php:1159
     295#: 2bc-form-security.php:1225
    283296msgid "Registration"
    284297msgstr ""
    285298
    286 #: 2bc-form-security.php:1161
     299#: 2bc-form-security.php:1227
    287300msgid "Login"
    288301msgstr ""
    289302
    290 #: 2bc-form-security.php:1163
     303#: 2bc-form-security.php:1229
    291304msgid "Comment"
    292305msgstr ""
    293306
    294 #: 2bc-form-security.php:1165
     307#: 2bc-form-security.php:1231
    295308msgid "Honeypots"
    296309msgstr ""
    297310
    298 #: 2bc-form-security.php:1167
     311#: 2bc-form-security.php:1233
    299312msgid "reCAPTCHA | null"
    300313msgstr ""
    301314
    302 #: 2bc-form-security.php:1169
     315#: 2bc-form-security.php:1235
    303316msgid "reCAPTCHA | bad"
    304317msgstr ""
    305318
    306 #: 2bc-form-security.php:1249
     319#: 2bc-form-security.php:1330
    307320msgid "Clear Log"
    308321msgstr ""
    309322
    310 #: 2bc-form-security.php:1273
     323#: 2bc-form-security.php:1356
    311324msgid "&laquo; Previous Page "
    312325msgstr ""
    313326
    314 #: 2bc-form-security.php:1275
     327#: 2bc-form-security.php:1360
    315328msgid "Next Page &raquo;"
    316329msgstr ""
    317330
    318 #: 2bc-form-security.php:1314
     331#: 2bc-form-security.php:1400
    319332msgid ""
    320333"<strong>ERROR:</strong> Reporting is not currently enabled! Click the "
     
    322335msgstr ""
    323336
    324 #: 2bc-form-security.php:1333
     337#: 2bc-form-security.php:1421
    325338#, php-format
    326339msgid ""
    327340"<strong>2BC Form Security</strong> has been activated! Visit the "
    328 "%1$sSettings Page%2$s to choose which forms to protect. Save the settings to "
    329 "dismiss this message."
    330 msgstr ""
    331 
    332 #: 2bc-form-security.php:1614
     341"%1$sSettings Page%2$s to activate reCAPTCHA. Save the settings to dismiss "
     342"this message."
     343msgstr ""
     344
     345#: 2bc-form-security.php:1712
    333346msgid "<strong>ERROR:</strong> Security checks failed"
    334347msgstr ""
    335348
    336 #: 2bc-form-security.php:1749
     349#: 2bc-form-security.php:1848
    337350msgid "2BC Form Security Summary"
    338351msgstr ""
    339352
    340 #: 2bc-form-security.php:1773
     353#: 2bc-form-security.php:1873
    341354msgid "Report Summary"
    342355msgstr ""
    343356
    344 #: 2bc-form-security.php:1782
     357#: 2bc-form-security.php:1882
    345358#, php-format
    346359msgid "Total events: %s"
    347360msgstr ""
    348361
    349 #: 2bc-form-security.php:1795
     362#: 2bc-form-security.php:1896
    350363#, php-format
    351364msgid "Honeypot events: %s"
    352365msgstr ""
    353366
    354 #: 2bc-form-security.php:1803
     367#: 2bc-form-security.php:1905
    355368#, php-format
    356369msgid "reCAPTCHA | null: %s"
    357370msgstr ""
    358371
    359 #: 2bc-form-security.php:1810
     372#: 2bc-form-security.php:1913
    360373#, php-format
    361374msgid "reCAPTCHA | bad: %s"
    362375msgstr ""
    363376
    364 #: 2bc-form-security.php:1823
     377#: 2bc-form-security.php:1927
    365378#, php-format
    366379msgid "Registration form: %s"
    367380msgstr ""
    368381
    369 #: 2bc-form-security.php:1830 2bc-form-security.php:1858
     382#: 2bc-form-security.php:1934 2bc-form-security.php:1968
    370383#, php-format
    371384msgid "Login form: %s"
    372385msgstr ""
    373386
    374 #: 2bc-form-security.php:1837 2bc-form-security.php:1859
     387#: 2bc-form-security.php:1942 2bc-form-security.php:1970
    375388#, php-format
    376389msgid "Comment form: %s"
    377390msgstr ""
    378391
    379 #: 2bc-form-security.php:1846
     392#: 2bc-form-security.php:1953
    380393msgid "Current Settings"
    381394msgstr ""
    382395
    383 #: 2bc-form-security.php:1851
     396#: 2bc-form-security.php:1958
    384397msgid "Yes"
    385398msgstr ""
    386399
    387 #: 2bc-form-security.php:1852
     400#: 2bc-form-security.php:1959
    388401msgid "No"
    389402msgstr ""
    390403
    391 #: 2bc-form-security.php:1855
     404#: 2bc-form-security.php:1962
    392405#, php-format
    393406msgid "reCAPTCHA enabled: %s"
    394407msgstr ""
    395408
    396 #: 2bc-form-security.php:1856
     409#: 2bc-form-security.php:1964
    397410#, php-format
    398411msgid "reCAPTCHA valid: %s"
    399412msgstr ""
    400413
    401 #: 2bc-form-security.php:1857
     414#: 2bc-form-security.php:1966
    402415#, php-format
    403416msgid "Register form: %s"
    404417msgstr ""
    405418
    406 #: 2bc-form-security.php:1860
     419#: 2bc-form-security.php:1972
    407420#, php-format
    408421msgid "Record IPs: %s"
    409422msgstr ""
    410423
    411 #: 2bc-form-security.php:1861
     424#: 2bc-form-security.php:1974
    412425#, php-format
    413426msgid "Reporting Enabled: %s"
    414427msgstr ""
    415428
    416 #: 2bc-form-security.php:1928
     429#: 2bc-form-security.php:2042
    417430msgid "<strong>ERROR:</strong> Security checks failed."
    418431msgstr ""
    419432
    420 #: 2bc-form-security.php:1929
     433#: 2bc-form-security.php:2043
    421434msgid "<strong>ERROR:</strong> Login failed."
    422435msgstr ""
    423436
    424 #: 2bc-form-security.php:2065
     437#: 2bc-form-security.php:2187
    425438msgid "Google reCAPTCHA API keys missing or invalid."
    426439msgstr ""
    427440
    428 #: 2bc-form-security.php:2070
     441#: 2bc-form-security.php:2193
    429442msgid "Google reCAPTCHA not clicked."
    430443msgstr ""
    431444
    432 #: 2bc-form-security.php:2073
     445#: 2bc-form-security.php:2196
    433446msgid "Could not get secret key"
    434447msgstr ""
    435448
    436 #: includes/class_twobc_wpadmin_input_fields_1_0_1.php:94
    437 msgid "Error - type cannot be empty"
    438 msgstr ""
    439 
    440 #: includes/class_twobc_wpadmin_input_fields_1_0_1.php:110
    441 #, php-format
    442 msgid "Error - invalid type - %s"
    443 msgstr ""
    444 
    445 #: includes/class_twobc_wpadmin_input_fields_1_0_1.php:116
     449#: 2bc-form-security.php:2274
     450msgid "Security checks failed."
     451msgstr ""
     452
     453#: includes/class_twobc_wpadmin_input_fields_1_0_2.php:91
     454msgid "Error: type cannot be empty"
     455msgstr ""
     456
     457#: includes/class_twobc_wpadmin_input_fields_1_0_2.php:107
     458#, php-format
     459msgid "Error: invalid type - %s"
     460msgstr ""
     461
     462#: includes/class_twobc_wpadmin_input_fields_1_0_2.php:113
    446463msgid "Error - name cannot be empty"
    447464msgstr ""
    448465
    449 #: includes/class_twobc_wpadmin_input_fields_1_0_1.php:120
     466#: includes/class_twobc_wpadmin_input_fields_1_0_2.php:117
    450467#, php-format
    451468msgid "Error - invalid name - %s"
  • 2bc-form-security/trunk/lang/en_US.po

    r1130069 r1144059  
    22msgstr ""
    33"Project-Id-Version: 2bc-form-security\n"
    4 "POT-Creation-Date: 2015-04-06 15:42-0800\n"
    5 "PO-Revision-Date: 2015-04-06 15:42-0800\n"
     4"POT-Creation-Date: 2015-04-23 19:25-0800\n"
     5"PO-Revision-Date: 2015-04-23 19:25-0800\n"
    66"Last-Translator: Jason Dreher <jason@2bcoding.com>\n"
    77"Language-Team: 2BCoding <info@2bcoding.com>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "X-Generator: Poedit 1.7.5\n"
     12"X-Generator: Poedit 1.7.6\n"
    1313"X-Poedit-Basepath: ..\n"
    1414"Plural-Forms: nplurals=2; plural=(n != 1);\n"
     
    1616"X-Poedit-SearchPath-0: .\n"
    1717
    18 #: 2bc-form-security.php:168
    19 msgid "Where To Display"
    20 msgstr "Where To Display"
    21 
    22 #: 2bc-form-security.php:173
     18#: 2bc-form-security.php:177
     19msgid "Google reCAPTCHA Options"
     20msgstr "Google reCAPTCHA Options"
     21
     22#: 2bc-form-security.php:181
     23msgid "Enable reCAPTCHA"
     24msgstr "Enable reCAPTCHA"
     25
     26#: 2bc-form-security.php:183
     27msgid "Enable the Google reCAPTCHA tool for the checked forms"
     28msgstr "Enable the Google reCAPTCHA tool for the checked forms"
     29
     30#: 2bc-form-security.php:190
     31msgid "Site Key"
     32msgstr "Site Key"
     33
     34#: 2bc-form-security.php:192
     35msgid "Enter your Google reCAPTCHA Site key for this site"
     36msgstr "Enter your Google reCAPTCHA Site key for this site"
     37
     38#: 2bc-form-security.php:198
     39msgid "Secret Key"
     40msgstr "Secret Key"
     41
     42#: 2bc-form-security.php:200
     43msgid "Enter your Google reCAPTCHA Secret key for this site"
     44msgstr "Enter your Google reCAPTCHA Secret key for this site"
     45
     46#: 2bc-form-security.php:206
     47msgid "Record Users IP"
     48msgstr "Record Users IP"
     49
     50#: 2bc-form-security.php:209
     51msgid ""
     52"Attempt to get the users IP.  Will send to Google for extra security "
     53"validation, and will be displayed in the Reports tab."
     54msgstr ""
     55"Attempt to get the users IP.  Will send to Google for extra security "
     56"validation, and will be displayed in the Reports tab."
     57
     58#: 2bc-form-security.php:216
     59msgid "reCAPTCHA Theme"
     60msgstr "reCAPTCHA Theme"
     61
     62#: 2bc-form-security.php:218
     63msgid "Select which theme to display the Google reCAPTCHA tool in"
     64msgstr "Select which theme to display the Google reCAPTCHA tool in"
     65
     66#: 2bc-form-security.php:222
     67msgid "Light"
     68msgstr "Light"
     69
     70#: 2bc-form-security.php:223
     71msgid "Dark"
     72msgstr "Dark"
     73
     74#: 2bc-form-security.php:230
     75msgid "Where To Display reCAPTCHA"
     76msgstr "Where To Display reCAPTCHA"
     77
     78#: 2bc-form-security.php:235
    2379msgid "Registration Form"
    2480msgstr "Registration Form"
    2581
    26 #: 2bc-form-security.php:176
     82#: 2bc-form-security.php:239
    2783msgid "Display form security tools in the WordPress registration form"
    2884msgstr "Display form security tools in the WordPress registration form"
    2985
    30 #: 2bc-form-security.php:181
     86#: 2bc-form-security.php:244
    3187msgid "Login Form"
    3288msgstr "Login Form"
    3389
    34 #: 2bc-form-security.php:184
     90#: 2bc-form-security.php:248
    3591msgid "Display form security tools in the WordPress login form"
    3692msgstr "Display form security tools in the WordPress login form"
    3793
    38 #: 2bc-form-security.php:189
     94#: 2bc-form-security.php:253
    3995msgid "Comment Form"
    4096msgstr "Comment Form"
    4197
    42 #: 2bc-form-security.php:192
     98#: 2bc-form-security.php:257
    4399msgid "Display form security tools in the WordPress comment form"
    44100msgstr "Display form security tools in the WordPress comment form"
    45101
    46 #: 2bc-form-security.php:200
    47 msgid "Google reCAPTCHA Options"
    48 msgstr "Google reCAPTCHA Options"
    49 
    50 #: 2bc-form-security.php:205
    51 msgid "Enable reCAPTCHA"
    52 msgstr "Enable reCAPTCHA"
    53 
    54 #: 2bc-form-security.php:207
    55 msgid "Enable the Google reCAPTCHA tool for the checked forms"
    56 msgstr "Enable the Google reCAPTCHA tool for the checked forms"
    57 
    58 #: 2bc-form-security.php:213
    59 msgid "Site Key"
    60 msgstr "Site Key"
    61 
    62 #: 2bc-form-security.php:215
    63 msgid "Enter your Google reCAPTCHA Site key for this site"
    64 msgstr "Enter your Google reCAPTCHA Site key for this site"
    65 
    66 #: 2bc-form-security.php:221
    67 msgid "Secret Key"
    68 msgstr "Secret Key"
    69 
    70 #: 2bc-form-security.php:223
    71 msgid "Enter your Google reCAPTCHA Secret key for this site"
    72 msgstr "Enter your Google reCAPTCHA Secret key for this site"
    73 
    74 #: 2bc-form-security.php:229
    75 msgid "Record Users IP"
    76 msgstr "Record Users IP"
    77 
    78 #: 2bc-form-security.php:231
    79 msgid ""
    80 "Attempt to get the users IP.  Will send to Google for extra security "
    81 "validation, and will be displayed in the Reports tab."
    82 msgstr ""
    83 "Attempt to get the users IP.  Will send to Google for extra security "
    84 "validation, and will be displayed in the Reports tab."
    85 
    86 #: 2bc-form-security.php:238
    87 msgid "reCAPTCHA Theme"
    88 msgstr "reCAPTCHA Theme"
    89 
    90 #: 2bc-form-security.php:240
    91 msgid "Select which theme to display the Google reCAPTCHA tool in"
    92 msgstr "Select which theme to display the Google reCAPTCHA tool in"
    93 
    94 #: 2bc-form-security.php:243
    95 msgid "Light"
    96 msgstr "Light"
    97 
    98 #: 2bc-form-security.php:244
    99 msgid "Dark"
    100 msgstr "Dark"
    101 
    102 #: 2bc-form-security.php:253
     102#: 2bc-form-security.php:265
    103103msgid "Error Handling"
    104104msgstr "Error Handling"
    105105
    106 #: 2bc-form-security.php:257
     106#: 2bc-form-security.php:269
    107107msgid "Login Errors"
    108108msgstr "Login Errors"
    109109
    110 #: 2bc-form-security.php:259
     110#: 2bc-form-security.php:271
    111111msgid "Select how to handle login errors"
    112112msgstr "Select how to handle login errors"
    113113
    114 #: 2bc-form-security.php:262
     114#: 2bc-form-security.php:275
    115115msgid ""
    116116"<strong>2BC Form Security Error</strong> &ndash; Return a "
     
    122122"failed</em>"
    123123
    124 #: 2bc-form-security.php:263
     124#: 2bc-form-security.php:278
    125125msgid ""
    126126"<strong>Generic Errors</strong> &ndash; Return a generic <code>login_failed</"
     
    132132"learning valid user account names"
    133133
    134 #: 2bc-form-security.php:267
     134#: 2bc-form-security.php:283
    135135msgid "Comment Status"
    136136msgstr "Comment Status"
    137137
    138 #: 2bc-form-security.php:269
     138#: 2bc-form-security.php:286
    139139msgid ""
    140140"Control how failed comments are handled.  Options are to automatically mark "
     
    146146"Queue</strong>."
    147147
    148 #: 2bc-form-security.php:272
     148#: 2bc-form-security.php:290
    149149msgid "Spam"
    150150msgstr "Spam"
    151151
    152 #: 2bc-form-security.php:273
     152#: 2bc-form-security.php:291
    153153msgid "Moderation Queue"
    154154msgstr "Moderation Queue"
    155155
    156 #: 2bc-form-security.php:280 2bc-form-security.php:648
     156#: 2bc-form-security.php:298 2bc-form-security.php:703
    157157msgid "Reports"
    158158msgstr "Reports"
    159159
    160 #: 2bc-form-security.php:284
     160#: 2bc-form-security.php:302
    161161msgid "Enable Reporting"
    162162msgstr "Enable Reporting"
    163163
    164 #: 2bc-form-security.php:287
     164#: 2bc-form-security.php:306
    165165msgid ""
    166166"Record security failures in the <strong>Reports</strong> tab to help gauge "
    167 "the effectivness of the fields"
     167"the effectiveness of the fields"
    168168msgstr ""
    169169"Record security failures in the <strong>Reports</strong> tab to help gauge "
    170 "the effectivness of the fields"
    171 
    172 #: 2bc-form-security.php:403 2bc-form-security.php:404
     170"the effectiveness of the fields"
     171
     172#: 2bc-form-security.php:438 2bc-form-security.php:439
    173173msgid "2BC Form Security"
    174174msgstr "2BC Form Security"
    175175
    176 #: 2bc-form-security.php:444
     176#: 2bc-form-security.php:474
    177177msgid "ERROR: Invalid Secret Key"
    178178msgstr "ERROR: Invalid Secret Key"
    179179
    180 #: 2bc-form-security.php:445
     180#: 2bc-form-security.php:476
    181181msgid ""
    182182"ERROR: The API keys are good, however Google says you are a robot&hellip; "
     
    186186"maybe you should try again?"
    187187
    188 #: 2bc-form-security.php:446
     188#: 2bc-form-security.php:479
     189msgid ""
     190"ERROR: No error message provided - likely a site_key / secret_key mismatch."
     191msgstr ""
     192"ERROR: No error message provided - likely a site_key / secret_key mismatch."
     193
     194#: 2bc-form-security.php:482
     195msgid "ERROR: No response returned from Google..."
     196msgstr "ERROR: No response returned from Google..."
     197
     198#: 2bc-form-security.php:485
    189199msgid "Complete the reCAPTCHA widget below to confirm the API keys."
    190200msgstr "Complete the reCAPTCHA widget below to confirm the API keys."
    191201
    192 #: 2bc-form-security.php:447
     202#: 2bc-form-security.php:487
    193203msgid ""
    194204"API Keys Confirmed! Click the <strong>Save all settings</strong> button to "
     
    198208"activate the reCAPTCHA widget."
    199209
    200 #: 2bc-form-security.php:448
     210#: 2bc-form-security.php:490
    201211msgid "Are you sure you want to clear the tracking log?"
    202212msgstr "Are you sure you want to clear the tracking log?"
    203213
    204 #: 2bc-form-security.php:555
     214#: 2bc-form-security.php:598
    205215#, php-format
    206216msgid ""
    207217"Enter your Google reCAPTCHA V2 API keys below.  If you do not have API keys, "
    208 "see the 2BC blog post on<br>\n"
     218"see the 2BCoding blog post on<br>\n"
    209219"%1$sHow To Get Google reCAPTCHA V2 API Keys%2$s"
    210220msgstr ""
    211221"Enter your Google reCAPTCHA V2 API keys below.  If you do not have API keys, "
    212 "see the 2BC blog post on<br>\n"
     222"see the 2BCoding blog post on<br>\n"
    213223"%1$sHow To Get Google reCAPTCHA V2 API Keys%2$s"
    214224
    215 #: 2bc-form-security.php:595
     225#: 2bc-form-security.php:639
    216226msgid "Change API Keys"
    217227msgstr "Change API Keys"
    218228
    219 #: 2bc-form-security.php:609 2bc-form-security.php:2037
    220 #: 2bc-form-security.php:2059
     229#: 2bc-form-security.php:650
     230msgid "BuddyPress detected!"
     231msgstr "BuddyPress detected!"
     232
     233#: 2bc-form-security.php:661 2bc-form-security.php:2159
     234#: 2bc-form-security.php:2181
    221235msgid "You do not have sufficient permissions to access this page."
    222236msgstr "You do not have sufficient permissions to access this page."
    223237
    224 #: 2bc-form-security.php:646
     238#: 2bc-form-security.php:700
    225239msgid "Settings"
    226240msgstr "Settings"
    227241
    228 #: 2bc-form-security.php:653
     242#: 2bc-form-security.php:708
    229243msgid "2BC Form Security Options"
    230244msgstr "2BC Form Security Options"
    231245
    232 #: 2bc-form-security.php:656
     246#: 2bc-form-security.php:711
    233247#, php-format
    234248msgid ""
     
    237251"More help available at the %1$s2BC Form Security documentation page%2$s."
    238252
    239 #: 2bc-form-security.php:674
     253#: 2bc-form-security.php:732
    240254msgid "Save all settings"
    241255msgstr "Save all settings"
    242256
    243 #: 2bc-form-security.php:694
     257#: 2bc-form-security.php:752
    244258msgid "<strong>ERROR:</strong> Invalid tab!"
    245259msgstr "<strong>ERROR:</strong> Invalid tab!"
    246260
    247 #: 2bc-form-security.php:834
     261#: 2bc-form-security.php:893
    248262msgid "Settings saved."
    249263msgstr "Settings saved."
    250264
    251 #: 2bc-form-security.php:1056 2bc-form-security.php:1171
     265#: 2bc-form-security.php:1115 2bc-form-security.php:1237
    252266msgid "Total"
    253267msgstr "Total"
    254268
    255 #: 2bc-form-security.php:1066
     269#: 2bc-form-security.php:1125
    256270msgid "Security checks failed:"
    257271msgstr "Security checks failed:"
    258272
    259 #: 2bc-form-security.php:1071
     273#: 2bc-form-security.php:1131
    260274msgid "Security Methods"
    261275msgstr "Security Methods"
    262276
    263 #: 2bc-form-security.php:1092
     277#: 2bc-form-security.php:1152
    264278msgid "Honeypot failures:"
    265279msgstr "Honeypot failures:"
    266280
    267 #: 2bc-form-security.php:1094
     281#: 2bc-form-security.php:1155
    268282msgid "Google reCAPTCHA &ndash; empty:"
    269283msgstr "Google reCAPTCHA &ndash; empty:"
    270284
    271 #: 2bc-form-security.php:1096
     285#: 2bc-form-security.php:1158
    272286msgid "Google reCAPTCHA &ndash; failures:"
    273287msgstr "Google reCAPTCHA &ndash; failures:"
    274288
    275 #: 2bc-form-security.php:1102
     289#: 2bc-form-security.php:1165
    276290msgid "Locations"
    277291msgstr "Locations"
    278292
    279 #: 2bc-form-security.php:1123
     293#: 2bc-form-security.php:1186
    280294msgid "Registration form failures:"
    281295msgstr "Registration form failures:"
    282296
    283 #: 2bc-form-security.php:1125
     297#: 2bc-form-security.php:1189
    284298msgid "Login form failures:"
    285299msgstr "Login form failures:"
    286300
    287 #: 2bc-form-security.php:1127
     301#: 2bc-form-security.php:1192
    288302msgid "Comment form failures:"
    289303msgstr "Comment form failures:"
    290304
    291 #: 2bc-form-security.php:1133
     305#: 2bc-form-security.php:1199
    292306msgid "Log"
    293307msgstr "Log"
    294308
    295 #: 2bc-form-security.php:1155
     309#: 2bc-form-security.php:1221
    296310msgid "ID"
    297311msgstr "ID"
    298312
    299 #: 2bc-form-security.php:1157
     313#: 2bc-form-security.php:1223
    300314msgid "IP Address"
    301315msgstr "IP Address"
    302316
    303 #: 2bc-form-security.php:1159
     317#: 2bc-form-security.php:1225
    304318msgid "Registration"
    305319msgstr "Registration"
    306320
    307 #: 2bc-form-security.php:1161
     321#: 2bc-form-security.php:1227
    308322msgid "Login"
    309323msgstr "Login"
    310324
    311 #: 2bc-form-security.php:1163
     325#: 2bc-form-security.php:1229
    312326msgid "Comment"
    313327msgstr "Comment"
    314328
    315 #: 2bc-form-security.php:1165
     329#: 2bc-form-security.php:1231
    316330msgid "Honeypots"
    317331msgstr "Honeypots"
    318332
    319 #: 2bc-form-security.php:1167
     333#: 2bc-form-security.php:1233
    320334msgid "reCAPTCHA | null"
    321335msgstr "reCAPTCHA | null"
    322336
    323 #: 2bc-form-security.php:1169
     337#: 2bc-form-security.php:1235
    324338msgid "reCAPTCHA | bad"
    325339msgstr "reCAPTCHA | bad"
    326340
    327 #: 2bc-form-security.php:1249
     341#: 2bc-form-security.php:1330
    328342msgid "Clear Log"
    329343msgstr "Clear Log"
    330344
    331 #: 2bc-form-security.php:1273
     345#: 2bc-form-security.php:1356
    332346msgid "&laquo; Previous Page "
    333347msgstr "&laquo; Previous Page "
    334348
    335 #: 2bc-form-security.php:1275
     349#: 2bc-form-security.php:1360
    336350msgid "Next Page &raquo;"
    337351msgstr "Next Page &raquo;"
    338352
    339 #: 2bc-form-security.php:1314
     353#: 2bc-form-security.php:1400
    340354msgid ""
    341355"<strong>ERROR:</strong> Reporting is not currently enabled! Click the "
     
    345359"Settings tab to turn reporting on."
    346360
    347 #: 2bc-form-security.php:1333
     361#: 2bc-form-security.php:1421
    348362#, php-format
    349363msgid ""
    350364"<strong>2BC Form Security</strong> has been activated! Visit the "
    351 "%1$sSettings Page%2$s to choose which forms to protect. Save the settings to "
    352 "dismiss this message."
     365"%1$sSettings Page%2$s to activate reCAPTCHA. Save the settings to dismiss "
     366"this message."
    353367msgstr ""
    354368"<strong>2BC Form Security</strong> has been activated! Visit the "
    355 "%1$sSettings Page%2$s to choose which forms to protect. Save the settings to "
    356 "dismiss this message."
    357 
    358 #: 2bc-form-security.php:1614
     369"%1$sSettings Page%2$s to activate reCAPTCHA. Save the settings to dismiss "
     370"this message."
     371
     372#: 2bc-form-security.php:1712
    359373msgid "<strong>ERROR:</strong> Security checks failed"
    360374msgstr "<strong>ERROR:</strong> Security checks failed"
    361375
    362 #: 2bc-form-security.php:1749
     376#: 2bc-form-security.php:1848
    363377msgid "2BC Form Security Summary"
    364378msgstr "2BC Form Security Summary"
    365379
    366 #: 2bc-form-security.php:1773
     380#: 2bc-form-security.php:1873
    367381msgid "Report Summary"
    368382msgstr "Report Summary"
    369383
    370 #: 2bc-form-security.php:1782
     384#: 2bc-form-security.php:1882
    371385#, php-format
    372386msgid "Total events: %s"
    373387msgstr "Total events: %s"
    374388
    375 #: 2bc-form-security.php:1795
     389#: 2bc-form-security.php:1896
    376390#, php-format
    377391msgid "Honeypot events: %s"
    378392msgstr "Honeypot events: %s"
    379393
    380 #: 2bc-form-security.php:1803
     394#: 2bc-form-security.php:1905
    381395#, php-format
    382396msgid "reCAPTCHA | null: %s"
    383397msgstr "reCAPTCHA | null: %s"
    384398
    385 #: 2bc-form-security.php:1810
     399#: 2bc-form-security.php:1913
    386400#, php-format
    387401msgid "reCAPTCHA | bad: %s"
    388402msgstr "reCAPTCHA | bad: %s"
    389403
    390 #: 2bc-form-security.php:1823
     404#: 2bc-form-security.php:1927
    391405#, php-format
    392406msgid "Registration form: %s"
    393407msgstr "Registration form: %s"
    394408
    395 #: 2bc-form-security.php:1830 2bc-form-security.php:1858
     409#: 2bc-form-security.php:1934 2bc-form-security.php:1968
    396410#, php-format
    397411msgid "Login form: %s"
    398412msgstr "Login form: %s"
    399413
    400 #: 2bc-form-security.php:1837 2bc-form-security.php:1859
     414#: 2bc-form-security.php:1942 2bc-form-security.php:1970
    401415#, php-format
    402416msgid "Comment form: %s"
    403417msgstr "Comment form: %s"
    404418
    405 #: 2bc-form-security.php:1846
     419#: 2bc-form-security.php:1953
    406420msgid "Current Settings"
    407421msgstr "Current Settings"
    408422
    409 #: 2bc-form-security.php:1851
     423#: 2bc-form-security.php:1958
    410424msgid "Yes"
    411425msgstr "Yes"
    412426
    413 #: 2bc-form-security.php:1852
     427#: 2bc-form-security.php:1959
    414428msgid "No"
    415429msgstr "No"
    416430
    417 #: 2bc-form-security.php:1855
     431#: 2bc-form-security.php:1962
    418432#, php-format
    419433msgid "reCAPTCHA enabled: %s"
    420434msgstr "reCAPTCHA enabled: %s"
    421435
    422 #: 2bc-form-security.php:1856
     436#: 2bc-form-security.php:1964
    423437#, php-format
    424438msgid "reCAPTCHA valid: %s"
    425439msgstr "reCAPTCHA valid: %s"
    426440
    427 #: 2bc-form-security.php:1857
     441#: 2bc-form-security.php:1966
    428442#, php-format
    429443msgid "Register form: %s"
    430444msgstr "Register form: %s"
    431445
    432 #: 2bc-form-security.php:1860
     446#: 2bc-form-security.php:1972
    433447#, php-format
    434448msgid "Record IPs: %s"
    435449msgstr "Record IPs: %s"
    436450
    437 #: 2bc-form-security.php:1861
     451#: 2bc-form-security.php:1974
    438452#, php-format
    439453msgid "Reporting Enabled: %s"
    440454msgstr "Reporting Enabled: %s"
    441455
    442 #: 2bc-form-security.php:1928
     456#: 2bc-form-security.php:2042
    443457msgid "<strong>ERROR:</strong> Security checks failed."
    444458msgstr "<strong>ERROR:</strong> Security checks failed."
    445459
    446 #: 2bc-form-security.php:1929
     460#: 2bc-form-security.php:2043
    447461msgid "<strong>ERROR:</strong> Login failed."
    448462msgstr "<strong>ERROR:</strong> Login failed."
    449463
    450 #: 2bc-form-security.php:2065
     464#: 2bc-form-security.php:2187
    451465msgid "Google reCAPTCHA API keys missing or invalid."
    452466msgstr "Google reCAPTCHA API keys missing or invalid."
    453467
    454 #: 2bc-form-security.php:2070
     468#: 2bc-form-security.php:2193
    455469msgid "Google reCAPTCHA not clicked."
    456470msgstr "Google reCAPTCHA not clicked."
    457471
    458 #: 2bc-form-security.php:2073
     472#: 2bc-form-security.php:2196
    459473msgid "Could not get secret key"
    460474msgstr "Could not get secret key"
    461475
    462 #: includes/class_twobc_wpadmin_input_fields_1_0_1.php:94
    463 msgid "Error - type cannot be empty"
    464 msgstr "Error - type cannot be empty"
    465 
    466 #: includes/class_twobc_wpadmin_input_fields_1_0_1.php:110
    467 #, php-format
    468 msgid "Error - invalid type - %s"
    469 msgstr "Error - invalid type - %s"
    470 
    471 #: includes/class_twobc_wpadmin_input_fields_1_0_1.php:116
     476#: 2bc-form-security.php:2274
     477msgid "Security checks failed."
     478msgstr "Security checks failed."
     479
     480#: includes/class_twobc_wpadmin_input_fields_1_0_2.php:91
     481msgid "Error: type cannot be empty"
     482msgstr "Error: type cannot be empty"
     483
     484#: includes/class_twobc_wpadmin_input_fields_1_0_2.php:107
     485#, php-format
     486msgid "Error: invalid type - %s"
     487msgstr "Error: invalid type - %s"
     488
     489#: includes/class_twobc_wpadmin_input_fields_1_0_2.php:113
    472490msgid "Error - name cannot be empty"
    473491msgstr "Error - name cannot be empty"
    474492
    475 #: includes/class_twobc_wpadmin_input_fields_1_0_1.php:120
     493#: includes/class_twobc_wpadmin_input_fields_1_0_2.php:117
    476494#, php-format
    477495msgid "Error - invalid name - %s"
    478496msgstr "Error - invalid name - %s"
    479 
    480 #~ msgid ""
    481 #~ "<strong>Incorrect Password</strong> &ndash; Return the WordPress "
    482 #~ "<code>incorrect_password</code> error, with a custom <em>Security checks "
    483 #~ "failed</em> message so that other security plugins will continue to work"
    484 #~ msgstr ""
    485 #~ "<strong>Incorrect Password</strong> &ndash; Return the WordPress "
    486 #~ "<code>incorrect_password</code> error, with a custom <em>Security checks "
    487 #~ "failed</em> message so that other security plugins will continue to work"
    488 
    489 #~ msgid "Invalid tab!"
    490 #~ msgstr "Invalid tab!"
  • 2bc-form-security/trunk/readme.txt

    r1143993 r1144059  
    77Requires at least: 3.6
    88Tested up to: 4.2
    9 Stable tag: 2.0.0
     9Stable tag: 2.0.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090== Changelog ==
    9191
     92= 2.0.1 =
     93* Fixed minor styling issues in options screen
     94* Added error when site key and secret key are valid, but not paired
     95
    9296= 2.0.0 =
    9397* Added integration with BuddyPress registration form
     
    103107== Upgrade Notice ==
    104108
     109= 2.0.1 =
     110Fixed issues in admin screen
     111
    105112= 2.0.0 =
    106113BuddyPress integration, fixes some issues in admin screen
Note: See TracChangeset for help on using the changeset viewer.