Changeset 1144059
- Timestamp:
- 04/24/2015 02:43:03 AM (11 years ago)
- Location:
- 2bc-form-security
- Files:
-
- 23 added
- 7 edited
-
tags/2.0.1 (added)
-
tags/2.0.1/2bc-form-security.php (added)
-
tags/2.0.1/images (added)
-
tags/2.0.1/images/Thumbs.db (added)
-
tags/2.0.1/images/buddypress.png (added)
-
tags/2.0.1/includes (added)
-
tags/2.0.1/includes/class_twobc_wpadmin_input_fields_1_0_2.php (added)
-
tags/2.0.1/includes/css (added)
-
tags/2.0.1/includes/css/2bc-form-security-admin.css (added)
-
tags/2.0.1/includes/css/2bc-form-security.css (added)
-
tags/2.0.1/includes/css/index.php (added)
-
tags/2.0.1/includes/index.php (added)
-
tags/2.0.1/includes/js (added)
-
tags/2.0.1/includes/js/2bc-form-security-admin.js (added)
-
tags/2.0.1/includes/js/index.php (added)
-
tags/2.0.1/index.php (added)
-
tags/2.0.1/lang (added)
-
tags/2.0.1/lang/2bc-form-security.pot (added)
-
tags/2.0.1/lang/en_US.mo (added)
-
tags/2.0.1/lang/en_US.po (added)
-
tags/2.0.1/lang/index.php (added)
-
tags/2.0.1/readme.txt (added)
-
tags/2.0.1/uninstall.php (added)
-
trunk/2bc-form-security.php (modified) (3 diffs)
-
trunk/includes/css/2bc-form-security-admin.css (modified) (1 diff)
-
trunk/includes/js/2bc-form-security-admin.js (modified) (3 diffs)
-
trunk/lang/2bc-form-security.pot (modified) (11 diffs)
-
trunk/lang/en_US.mo (modified) (previous)
-
trunk/lang/en_US.po (modified) (10 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
2bc-form-security/trunk/2bc-form-security.php
r1143993 r1144059 193 193 '2bc-form-security')), 194 194 'default' => '', 195 'class' => 'regular-text code',196 195 ), 197 196 … … 202 201 '2bc-form-security')), 203 202 'default' => '', 204 'class' => 'regular-text code',205 203 ), 206 204 … … 478 476 'ERROR: The API keys are good, however Google says you are a robot… maybe you should try again?', 479 477 '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')), 480 484 'instructMessage1' => esc_html(__( 481 485 '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 132 132 text-align: left; 133 133 padding-left: 30px; 134 width: 270px; 134 padding-right: 30px; 135 box-sizing: border-box; 136 width: 300px; 135 137 height: 74px; 136 138 -webkit-border-radius: 3px; -
2bc-form-security/trunk/includes/js/2bc-form-security-admin.js
r1130069 r1144059 18 18 'twobcfs_secret_key': secret_key 19 19 }; 20 20 21 $.post(ajaxurl, googleAjaxArgs, function (response) { 22 var newdiv = document.getElementById('twobc_api_render_check'); 23 var responsemessage = document.createElement('p'); 21 24 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); 25 26 if ( response.success ) { 26 27 $enable_recaptcha.prop('checked', true); … … 38 39 if ( -1 != response['error-codes'].indexOf('invalid-input-secret') ) { 39 40 responsemessage.innerHTML = twoBCFormSecurity.errorSecretKey; 40 responsemessage.className = 'return_error'; 41 responsemessage.className = 'return_error'; 41 42 } 42 43 if (-1 != response['error-codes'].indexOf('invalid-input-response')) { … … 44 45 responsemessage.className = 'return_error'; 45 46 } 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(); 50 55 $enable_recaptcha.prop('checked', false); 51 56 $site_and_secret.prop('disabled', false); 52 57 $enable_recaptcha.removeClass('recaptcha_valid'); 53 58 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); 54 66 } 55 67 } -
2bc-form-security/trunk/lang/2bc-form-security.pot
r1130069 r1144059 2 2 msgstr "" 3 3 "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" 6 6 "Last-Translator: Jason Dreher <jason@2bcoding.com>\n" 7 7 "Language-Team: 2BCoding <info@2bcoding.com>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 1.7. 5\n"12 "X-Generator: Poedit 1.7.6\n" 13 13 "X-Poedit-Basepath: ..\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" … … 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 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 19 msgid "Google reCAPTCHA Options" 28 20 msgstr "" 29 21 30 22 #: 2bc-form-security.php:181 31 msgid " Login Form"32 msgstr "" 33 34 #: 2bc-form-security.php:18 435 msgid " Display form security tools in the WordPress login form"36 msgstr "" 37 38 #: 2bc-form-security.php:1 8939 msgid " Comment Form"23 msgid "Enable reCAPTCHA" 24 msgstr "" 25 26 #: 2bc-form-security.php:183 27 msgid "Enable the Google reCAPTCHA tool for the checked forms" 28 msgstr "" 29 30 #: 2bc-form-security.php:190 31 msgid "Site Key" 40 32 msgstr "" 41 33 42 34 #: 2bc-form-security.php:192 43 msgid "Display form security tools in the WordPress comment form" 35 msgid "Enter your Google reCAPTCHA Site key for this site" 36 msgstr "" 37 38 #: 2bc-form-security.php:198 39 msgid "Secret Key" 44 40 msgstr "" 45 41 46 42 #: 2bc-form-security.php:200 47 msgid "Google reCAPTCHA Options"48 msgstr ""49 50 #: 2bc-form-security.php:20551 msgid "Enable reCAPTCHA"52 msgstr ""53 54 #: 2bc-form-security.php:20755 msgid "Enable the Google reCAPTCHA tool for the checked forms"56 msgstr ""57 58 #: 2bc-form-security.php:21359 msgid "Site Key"60 msgstr ""61 62 #: 2bc-form-security.php:21563 msgid "Enter your Google reCAPTCHA Site key for this site"64 msgstr ""65 66 #: 2bc-form-security.php:22167 msgid "Secret Key"68 msgstr ""69 70 #: 2bc-form-security.php:22371 43 msgid "Enter your Google reCAPTCHA Secret key for this site" 72 44 msgstr "" 73 45 74 #: 2bc-form-security.php:2 2946 #: 2bc-form-security.php:206 75 47 msgid "Record Users IP" 76 48 msgstr "" 77 49 78 #: 2bc-form-security.php:2 3150 #: 2bc-form-security.php:209 79 51 msgid "" 80 52 "Attempt to get the users IP. Will send to Google for extra security " … … 82 54 msgstr "" 83 55 84 #: 2bc-form-security.php:2 3856 #: 2bc-form-security.php:216 85 57 msgid "reCAPTCHA Theme" 86 58 msgstr "" 87 59 88 #: 2bc-form-security.php:2 4060 #: 2bc-form-security.php:218 89 61 msgid "Select which theme to display the Google reCAPTCHA tool in" 90 62 msgstr "" 91 63 92 #: 2bc-form-security.php:2 4364 #: 2bc-form-security.php:222 93 65 msgid "Light" 94 66 msgstr "" 95 67 68 #: 2bc-form-security.php:223 69 msgid "Dark" 70 msgstr "" 71 72 #: 2bc-form-security.php:230 73 msgid "Where To Display reCAPTCHA" 74 msgstr "" 75 76 #: 2bc-form-security.php:235 77 msgid "Registration Form" 78 msgstr "" 79 80 #: 2bc-form-security.php:239 81 msgid "Display form security tools in the WordPress registration form" 82 msgstr "" 83 96 84 #: 2bc-form-security.php:244 97 msgid "Dark" 85 msgid "Login Form" 86 msgstr "" 87 88 #: 2bc-form-security.php:248 89 msgid "Display form security tools in the WordPress login form" 98 90 msgstr "" 99 91 100 92 #: 2bc-form-security.php:253 93 msgid "Comment Form" 94 msgstr "" 95 96 #: 2bc-form-security.php:257 97 msgid "Display form security tools in the WordPress comment form" 98 msgstr "" 99 100 #: 2bc-form-security.php:265 101 101 msgid "Error Handling" 102 102 msgstr "" 103 103 104 #: 2bc-form-security.php:2 57104 #: 2bc-form-security.php:269 105 105 msgid "Login Errors" 106 106 msgstr "" 107 107 108 #: 2bc-form-security.php:2 59108 #: 2bc-form-security.php:271 109 109 msgid "Select how to handle login errors" 110 110 msgstr "" 111 111 112 #: 2bc-form-security.php:2 62112 #: 2bc-form-security.php:275 113 113 msgid "" 114 114 "<strong>2BC Form Security Error</strong> – Return a " … … 117 117 msgstr "" 118 118 119 #: 2bc-form-security.php:2 63119 #: 2bc-form-security.php:278 120 120 msgid "" 121 121 "<strong>Generic Errors</strong> – Return a generic <code>login_failed</" … … 124 124 msgstr "" 125 125 126 #: 2bc-form-security.php:2 67126 #: 2bc-form-security.php:283 127 127 msgid "Comment Status" 128 128 msgstr "" 129 129 130 #: 2bc-form-security.php:2 69130 #: 2bc-form-security.php:286 131 131 msgid "" 132 132 "Control how failed comments are handled. Options are to automatically mark " … … 135 135 msgstr "" 136 136 137 #: 2bc-form-security.php:2 72137 #: 2bc-form-security.php:290 138 138 msgid "Spam" 139 139 msgstr "" 140 140 141 #: 2bc-form-security.php:2 73141 #: 2bc-form-security.php:291 142 142 msgid "Moderation Queue" 143 143 msgstr "" 144 144 145 #: 2bc-form-security.php:2 80 2bc-form-security.php:648145 #: 2bc-form-security.php:298 2bc-form-security.php:703 146 146 msgid "Reports" 147 147 msgstr "" 148 148 149 #: 2bc-form-security.php: 284149 #: 2bc-form-security.php:302 150 150 msgid "Enable Reporting" 151 151 msgstr "" 152 152 153 #: 2bc-form-security.php: 287153 #: 2bc-form-security.php:306 154 154 msgid "" 155 155 "Record security failures in the <strong>Reports</strong> tab to help gauge " 156 "the effectiv ness of the fields"157 msgstr "" 158 159 #: 2bc-form-security.php:4 03 2bc-form-security.php:404156 "the effectiveness of the fields" 157 msgstr "" 158 159 #: 2bc-form-security.php:438 2bc-form-security.php:439 160 160 msgid "2BC Form Security" 161 161 msgstr "" 162 162 163 #: 2bc-form-security.php:4 44163 #: 2bc-form-security.php:474 164 164 msgid "ERROR: Invalid Secret Key" 165 165 msgstr "" 166 166 167 #: 2bc-form-security.php:4 45167 #: 2bc-form-security.php:476 168 168 msgid "" 169 169 "ERROR: The API keys are good, however Google says you are a robot… " … … 171 171 msgstr "" 172 172 173 #: 2bc-form-security.php:446 173 #: 2bc-form-security.php:479 174 msgid "" 175 "ERROR: No error message provided - likely a site_key / secret_key mismatch." 176 msgstr "" 177 178 #: 2bc-form-security.php:482 179 msgid "ERROR: No response returned from Google..." 180 msgstr "" 181 182 #: 2bc-form-security.php:485 174 183 msgid "Complete the reCAPTCHA widget below to confirm the API keys." 175 184 msgstr "" 176 185 177 #: 2bc-form-security.php:4 47186 #: 2bc-form-security.php:487 178 187 msgid "" 179 188 "API Keys Confirmed! Click the <strong>Save all settings</strong> button to " … … 181 190 msgstr "" 182 191 183 #: 2bc-form-security.php:4 48192 #: 2bc-form-security.php:490 184 193 msgid "Are you sure you want to clear the tracking log?" 185 194 msgstr "" 186 195 187 #: 2bc-form-security.php:5 55196 #: 2bc-form-security.php:598 188 197 #, php-format 189 198 msgid "" 190 199 "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" 192 201 "%1$sHow To Get Google reCAPTCHA V2 API Keys%2$s" 193 202 msgstr "" 194 203 195 #: 2bc-form-security.php: 595204 #: 2bc-form-security.php:639 196 205 msgid "Change API Keys" 197 206 msgstr "" 198 207 199 #: 2bc-form-security.php:609 2bc-form-security.php:2037 200 #: 2bc-form-security.php:2059 208 #: 2bc-form-security.php:650 209 msgid "BuddyPress detected!" 210 msgstr "" 211 212 #: 2bc-form-security.php:661 2bc-form-security.php:2159 213 #: 2bc-form-security.php:2181 201 214 msgid "You do not have sufficient permissions to access this page." 202 215 msgstr "" 203 216 204 #: 2bc-form-security.php: 646217 #: 2bc-form-security.php:700 205 218 msgid "Settings" 206 219 msgstr "" 207 220 208 #: 2bc-form-security.php: 653221 #: 2bc-form-security.php:708 209 222 msgid "2BC Form Security Options" 210 223 msgstr "" 211 224 212 #: 2bc-form-security.php: 656225 #: 2bc-form-security.php:711 213 226 #, php-format 214 227 msgid "" … … 216 229 msgstr "" 217 230 218 #: 2bc-form-security.php: 674231 #: 2bc-form-security.php:732 219 232 msgid "Save all settings" 220 233 msgstr "" 221 234 222 #: 2bc-form-security.php: 694235 #: 2bc-form-security.php:752 223 236 msgid "<strong>ERROR:</strong> Invalid tab!" 224 237 msgstr "" 225 238 226 #: 2bc-form-security.php:8 34239 #: 2bc-form-security.php:893 227 240 msgid "Settings saved." 228 241 msgstr "" 229 242 230 #: 2bc-form-security.php:1 056 2bc-form-security.php:1171243 #: 2bc-form-security.php:1115 2bc-form-security.php:1237 231 244 msgid "Total" 232 245 msgstr "" 233 246 234 #: 2bc-form-security.php:1 066247 #: 2bc-form-security.php:1125 235 248 msgid "Security checks failed:" 236 249 msgstr "" 237 250 238 #: 2bc-form-security.php:1 071251 #: 2bc-form-security.php:1131 239 252 msgid "Security Methods" 240 253 msgstr "" 241 254 242 #: 2bc-form-security.php:1 092255 #: 2bc-form-security.php:1152 243 256 msgid "Honeypot failures:" 244 257 msgstr "" 245 258 246 #: 2bc-form-security.php:1 094259 #: 2bc-form-security.php:1155 247 260 msgid "Google reCAPTCHA – empty:" 248 261 msgstr "" 249 262 250 #: 2bc-form-security.php:1 096263 #: 2bc-form-security.php:1158 251 264 msgid "Google reCAPTCHA – failures:" 252 265 msgstr "" 253 266 254 #: 2bc-form-security.php:11 02267 #: 2bc-form-security.php:1165 255 268 msgid "Locations" 256 269 msgstr "" 257 270 258 #: 2bc-form-security.php:11 23271 #: 2bc-form-security.php:1186 259 272 msgid "Registration form failures:" 260 273 msgstr "" 261 274 262 #: 2bc-form-security.php:11 25275 #: 2bc-form-security.php:1189 263 276 msgid "Login form failures:" 264 277 msgstr "" 265 278 266 #: 2bc-form-security.php:11 27279 #: 2bc-form-security.php:1192 267 280 msgid "Comment form failures:" 268 281 msgstr "" 269 282 270 #: 2bc-form-security.php:11 33283 #: 2bc-form-security.php:1199 271 284 msgid "Log" 272 285 msgstr "" 273 286 274 #: 2bc-form-security.php:1 155287 #: 2bc-form-security.php:1221 275 288 msgid "ID" 276 289 msgstr "" 277 290 278 #: 2bc-form-security.php:1 157291 #: 2bc-form-security.php:1223 279 292 msgid "IP Address" 280 293 msgstr "" 281 294 282 #: 2bc-form-security.php:1 159295 #: 2bc-form-security.php:1225 283 296 msgid "Registration" 284 297 msgstr "" 285 298 286 #: 2bc-form-security.php:1 161299 #: 2bc-form-security.php:1227 287 300 msgid "Login" 288 301 msgstr "" 289 302 290 #: 2bc-form-security.php:1 163303 #: 2bc-form-security.php:1229 291 304 msgid "Comment" 292 305 msgstr "" 293 306 294 #: 2bc-form-security.php:1 165307 #: 2bc-form-security.php:1231 295 308 msgid "Honeypots" 296 309 msgstr "" 297 310 298 #: 2bc-form-security.php:1 167311 #: 2bc-form-security.php:1233 299 312 msgid "reCAPTCHA | null" 300 313 msgstr "" 301 314 302 #: 2bc-form-security.php:1 169315 #: 2bc-form-security.php:1235 303 316 msgid "reCAPTCHA | bad" 304 317 msgstr "" 305 318 306 #: 2bc-form-security.php:1 249319 #: 2bc-form-security.php:1330 307 320 msgid "Clear Log" 308 321 msgstr "" 309 322 310 #: 2bc-form-security.php:1 273323 #: 2bc-form-security.php:1356 311 324 msgid "« Previous Page " 312 325 msgstr "" 313 326 314 #: 2bc-form-security.php:1 275327 #: 2bc-form-security.php:1360 315 328 msgid "Next Page »" 316 329 msgstr "" 317 330 318 #: 2bc-form-security.php:1 314331 #: 2bc-form-security.php:1400 319 332 msgid "" 320 333 "<strong>ERROR:</strong> Reporting is not currently enabled! Click the " … … 322 335 msgstr "" 323 336 324 #: 2bc-form-security.php:1 333337 #: 2bc-form-security.php:1421 325 338 #, php-format 326 339 msgid "" 327 340 "<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 " dismissthis message."330 msgstr "" 331 332 #: 2bc-form-security.php:1 614341 "%1$sSettings Page%2$s to activate reCAPTCHA. Save the settings to dismiss " 342 "this message." 343 msgstr "" 344 345 #: 2bc-form-security.php:1712 333 346 msgid "<strong>ERROR:</strong> Security checks failed" 334 347 msgstr "" 335 348 336 #: 2bc-form-security.php:1 749349 #: 2bc-form-security.php:1848 337 350 msgid "2BC Form Security Summary" 338 351 msgstr "" 339 352 340 #: 2bc-form-security.php:1 773353 #: 2bc-form-security.php:1873 341 354 msgid "Report Summary" 342 355 msgstr "" 343 356 344 #: 2bc-form-security.php:1 782357 #: 2bc-form-security.php:1882 345 358 #, php-format 346 359 msgid "Total events: %s" 347 360 msgstr "" 348 361 349 #: 2bc-form-security.php:1 795362 #: 2bc-form-security.php:1896 350 363 #, php-format 351 364 msgid "Honeypot events: %s" 352 365 msgstr "" 353 366 354 #: 2bc-form-security.php:1 803367 #: 2bc-form-security.php:1905 355 368 #, php-format 356 369 msgid "reCAPTCHA | null: %s" 357 370 msgstr "" 358 371 359 #: 2bc-form-security.php:1 810372 #: 2bc-form-security.php:1913 360 373 #, php-format 361 374 msgid "reCAPTCHA | bad: %s" 362 375 msgstr "" 363 376 364 #: 2bc-form-security.php:1 823377 #: 2bc-form-security.php:1927 365 378 #, php-format 366 379 msgid "Registration form: %s" 367 380 msgstr "" 368 381 369 #: 2bc-form-security.php:1 830 2bc-form-security.php:1858382 #: 2bc-form-security.php:1934 2bc-form-security.php:1968 370 383 #, php-format 371 384 msgid "Login form: %s" 372 385 msgstr "" 373 386 374 #: 2bc-form-security.php:1 837 2bc-form-security.php:1859387 #: 2bc-form-security.php:1942 2bc-form-security.php:1970 375 388 #, php-format 376 389 msgid "Comment form: %s" 377 390 msgstr "" 378 391 379 #: 2bc-form-security.php:1 846392 #: 2bc-form-security.php:1953 380 393 msgid "Current Settings" 381 394 msgstr "" 382 395 383 #: 2bc-form-security.php:1 851396 #: 2bc-form-security.php:1958 384 397 msgid "Yes" 385 398 msgstr "" 386 399 387 #: 2bc-form-security.php:1 852400 #: 2bc-form-security.php:1959 388 401 msgid "No" 389 402 msgstr "" 390 403 391 #: 2bc-form-security.php:1 855404 #: 2bc-form-security.php:1962 392 405 #, php-format 393 406 msgid "reCAPTCHA enabled: %s" 394 407 msgstr "" 395 408 396 #: 2bc-form-security.php:1 856409 #: 2bc-form-security.php:1964 397 410 #, php-format 398 411 msgid "reCAPTCHA valid: %s" 399 412 msgstr "" 400 413 401 #: 2bc-form-security.php:1 857414 #: 2bc-form-security.php:1966 402 415 #, php-format 403 416 msgid "Register form: %s" 404 417 msgstr "" 405 418 406 #: 2bc-form-security.php:1 860419 #: 2bc-form-security.php:1972 407 420 #, php-format 408 421 msgid "Record IPs: %s" 409 422 msgstr "" 410 423 411 #: 2bc-form-security.php:1 861424 #: 2bc-form-security.php:1974 412 425 #, php-format 413 426 msgid "Reporting Enabled: %s" 414 427 msgstr "" 415 428 416 #: 2bc-form-security.php: 1928429 #: 2bc-form-security.php:2042 417 430 msgid "<strong>ERROR:</strong> Security checks failed." 418 431 msgstr "" 419 432 420 #: 2bc-form-security.php: 1929433 #: 2bc-form-security.php:2043 421 434 msgid "<strong>ERROR:</strong> Login failed." 422 435 msgstr "" 423 436 424 #: 2bc-form-security.php:2 065437 #: 2bc-form-security.php:2187 425 438 msgid "Google reCAPTCHA API keys missing or invalid." 426 439 msgstr "" 427 440 428 #: 2bc-form-security.php:2 070441 #: 2bc-form-security.php:2193 429 442 msgid "Google reCAPTCHA not clicked." 430 443 msgstr "" 431 444 432 #: 2bc-form-security.php:2 073445 #: 2bc-form-security.php:2196 433 446 msgid "Could not get secret key" 434 447 msgstr "" 435 448 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 450 msgid "Security checks failed." 451 msgstr "" 452 453 #: includes/class_twobc_wpadmin_input_fields_1_0_2.php:91 454 msgid "Error: type cannot be empty" 455 msgstr "" 456 457 #: includes/class_twobc_wpadmin_input_fields_1_0_2.php:107 458 #, php-format 459 msgid "Error: invalid type - %s" 460 msgstr "" 461 462 #: includes/class_twobc_wpadmin_input_fields_1_0_2.php:113 446 463 msgid "Error - name cannot be empty" 447 464 msgstr "" 448 465 449 #: includes/class_twobc_wpadmin_input_fields_1_0_ 1.php:120466 #: includes/class_twobc_wpadmin_input_fields_1_0_2.php:117 450 467 #, php-format 451 468 msgid "Error - invalid name - %s" -
2bc-form-security/trunk/lang/en_US.po
r1130069 r1144059 2 2 msgstr "" 3 3 "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" 6 6 "Last-Translator: Jason Dreher <jason@2bcoding.com>\n" 7 7 "Language-Team: 2BCoding <info@2bcoding.com>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 1.7. 5\n"12 "X-Generator: Poedit 1.7.6\n" 13 13 "X-Poedit-Basepath: ..\n" 14 14 "Plural-Forms: nplurals=2; plural=(n != 1);\n" … … 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 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 19 msgid "Google reCAPTCHA Options" 20 msgstr "Google reCAPTCHA Options" 21 22 #: 2bc-form-security.php:181 23 msgid "Enable reCAPTCHA" 24 msgstr "Enable reCAPTCHA" 25 26 #: 2bc-form-security.php:183 27 msgid "Enable the Google reCAPTCHA tool for the checked forms" 28 msgstr "Enable the Google reCAPTCHA tool for the checked forms" 29 30 #: 2bc-form-security.php:190 31 msgid "Site Key" 32 msgstr "Site Key" 33 34 #: 2bc-form-security.php:192 35 msgid "Enter your Google reCAPTCHA Site key for this site" 36 msgstr "Enter your Google reCAPTCHA Site key for this site" 37 38 #: 2bc-form-security.php:198 39 msgid "Secret Key" 40 msgstr "Secret Key" 41 42 #: 2bc-form-security.php:200 43 msgid "Enter your Google reCAPTCHA Secret key for this site" 44 msgstr "Enter your Google reCAPTCHA Secret key for this site" 45 46 #: 2bc-form-security.php:206 47 msgid "Record Users IP" 48 msgstr "Record Users IP" 49 50 #: 2bc-form-security.php:209 51 msgid "" 52 "Attempt to get the users IP. Will send to Google for extra security " 53 "validation, and will be displayed in the Reports tab." 54 msgstr "" 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 59 msgid "reCAPTCHA Theme" 60 msgstr "reCAPTCHA Theme" 61 62 #: 2bc-form-security.php:218 63 msgid "Select which theme to display the Google reCAPTCHA tool in" 64 msgstr "Select which theme to display the Google reCAPTCHA tool in" 65 66 #: 2bc-form-security.php:222 67 msgid "Light" 68 msgstr "Light" 69 70 #: 2bc-form-security.php:223 71 msgid "Dark" 72 msgstr "Dark" 73 74 #: 2bc-form-security.php:230 75 msgid "Where To Display reCAPTCHA" 76 msgstr "Where To Display reCAPTCHA" 77 78 #: 2bc-form-security.php:235 23 79 msgid "Registration Form" 24 80 msgstr "Registration Form" 25 81 26 #: 2bc-form-security.php: 17682 #: 2bc-form-security.php:239 27 83 msgid "Display form security tools in the WordPress registration form" 28 84 msgstr "Display form security tools in the WordPress registration form" 29 85 30 #: 2bc-form-security.php: 18186 #: 2bc-form-security.php:244 31 87 msgid "Login Form" 32 88 msgstr "Login Form" 33 89 34 #: 2bc-form-security.php: 18490 #: 2bc-form-security.php:248 35 91 msgid "Display form security tools in the WordPress login form" 36 92 msgstr "Display form security tools in the WordPress login form" 37 93 38 #: 2bc-form-security.php: 18994 #: 2bc-form-security.php:253 39 95 msgid "Comment Form" 40 96 msgstr "Comment Form" 41 97 42 #: 2bc-form-security.php: 19298 #: 2bc-form-security.php:257 43 99 msgid "Display form security tools in the WordPress comment form" 44 100 msgstr "Display form security tools in the WordPress comment form" 45 101 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 103 103 msgid "Error Handling" 104 104 msgstr "Error Handling" 105 105 106 #: 2bc-form-security.php:2 57106 #: 2bc-form-security.php:269 107 107 msgid "Login Errors" 108 108 msgstr "Login Errors" 109 109 110 #: 2bc-form-security.php:2 59110 #: 2bc-form-security.php:271 111 111 msgid "Select how to handle login errors" 112 112 msgstr "Select how to handle login errors" 113 113 114 #: 2bc-form-security.php:2 62114 #: 2bc-form-security.php:275 115 115 msgid "" 116 116 "<strong>2BC Form Security Error</strong> – Return a " … … 122 122 "failed</em>" 123 123 124 #: 2bc-form-security.php:2 63124 #: 2bc-form-security.php:278 125 125 msgid "" 126 126 "<strong>Generic Errors</strong> – Return a generic <code>login_failed</" … … 132 132 "learning valid user account names" 133 133 134 #: 2bc-form-security.php:2 67134 #: 2bc-form-security.php:283 135 135 msgid "Comment Status" 136 136 msgstr "Comment Status" 137 137 138 #: 2bc-form-security.php:2 69138 #: 2bc-form-security.php:286 139 139 msgid "" 140 140 "Control how failed comments are handled. Options are to automatically mark " … … 146 146 "Queue</strong>." 147 147 148 #: 2bc-form-security.php:2 72148 #: 2bc-form-security.php:290 149 149 msgid "Spam" 150 150 msgstr "Spam" 151 151 152 #: 2bc-form-security.php:2 73152 #: 2bc-form-security.php:291 153 153 msgid "Moderation Queue" 154 154 msgstr "Moderation Queue" 155 155 156 #: 2bc-form-security.php:2 80 2bc-form-security.php:648156 #: 2bc-form-security.php:298 2bc-form-security.php:703 157 157 msgid "Reports" 158 158 msgstr "Reports" 159 159 160 #: 2bc-form-security.php: 284160 #: 2bc-form-security.php:302 161 161 msgid "Enable Reporting" 162 162 msgstr "Enable Reporting" 163 163 164 #: 2bc-form-security.php: 287164 #: 2bc-form-security.php:306 165 165 msgid "" 166 166 "Record security failures in the <strong>Reports</strong> tab to help gauge " 167 "the effectiv ness of the fields"167 "the effectiveness of the fields" 168 168 msgstr "" 169 169 "Record security failures in the <strong>Reports</strong> tab to help gauge " 170 "the effectiv ness of the fields"171 172 #: 2bc-form-security.php:4 03 2bc-form-security.php:404170 "the effectiveness of the fields" 171 172 #: 2bc-form-security.php:438 2bc-form-security.php:439 173 173 msgid "2BC Form Security" 174 174 msgstr "2BC Form Security" 175 175 176 #: 2bc-form-security.php:4 44176 #: 2bc-form-security.php:474 177 177 msgid "ERROR: Invalid Secret Key" 178 178 msgstr "ERROR: Invalid Secret Key" 179 179 180 #: 2bc-form-security.php:4 45180 #: 2bc-form-security.php:476 181 181 msgid "" 182 182 "ERROR: The API keys are good, however Google says you are a robot… " … … 186 186 "maybe you should try again?" 187 187 188 #: 2bc-form-security.php:446 188 #: 2bc-form-security.php:479 189 msgid "" 190 "ERROR: No error message provided - likely a site_key / secret_key mismatch." 191 msgstr "" 192 "ERROR: No error message provided - likely a site_key / secret_key mismatch." 193 194 #: 2bc-form-security.php:482 195 msgid "ERROR: No response returned from Google..." 196 msgstr "ERROR: No response returned from Google..." 197 198 #: 2bc-form-security.php:485 189 199 msgid "Complete the reCAPTCHA widget below to confirm the API keys." 190 200 msgstr "Complete the reCAPTCHA widget below to confirm the API keys." 191 201 192 #: 2bc-form-security.php:4 47202 #: 2bc-form-security.php:487 193 203 msgid "" 194 204 "API Keys Confirmed! Click the <strong>Save all settings</strong> button to " … … 198 208 "activate the reCAPTCHA widget." 199 209 200 #: 2bc-form-security.php:4 48210 #: 2bc-form-security.php:490 201 211 msgid "Are you sure you want to clear the tracking log?" 202 212 msgstr "Are you sure you want to clear the tracking log?" 203 213 204 #: 2bc-form-security.php:5 55214 #: 2bc-form-security.php:598 205 215 #, php-format 206 216 msgid "" 207 217 "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" 209 219 "%1$sHow To Get Google reCAPTCHA V2 API Keys%2$s" 210 220 msgstr "" 211 221 "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" 213 223 "%1$sHow To Get Google reCAPTCHA V2 API Keys%2$s" 214 224 215 #: 2bc-form-security.php: 595225 #: 2bc-form-security.php:639 216 226 msgid "Change API Keys" 217 227 msgstr "Change API Keys" 218 228 219 #: 2bc-form-security.php:609 2bc-form-security.php:2037 220 #: 2bc-form-security.php:2059 229 #: 2bc-form-security.php:650 230 msgid "BuddyPress detected!" 231 msgstr "BuddyPress detected!" 232 233 #: 2bc-form-security.php:661 2bc-form-security.php:2159 234 #: 2bc-form-security.php:2181 221 235 msgid "You do not have sufficient permissions to access this page." 222 236 msgstr "You do not have sufficient permissions to access this page." 223 237 224 #: 2bc-form-security.php: 646238 #: 2bc-form-security.php:700 225 239 msgid "Settings" 226 240 msgstr "Settings" 227 241 228 #: 2bc-form-security.php: 653242 #: 2bc-form-security.php:708 229 243 msgid "2BC Form Security Options" 230 244 msgstr "2BC Form Security Options" 231 245 232 #: 2bc-form-security.php: 656246 #: 2bc-form-security.php:711 233 247 #, php-format 234 248 msgid "" … … 237 251 "More help available at the %1$s2BC Form Security documentation page%2$s." 238 252 239 #: 2bc-form-security.php: 674253 #: 2bc-form-security.php:732 240 254 msgid "Save all settings" 241 255 msgstr "Save all settings" 242 256 243 #: 2bc-form-security.php: 694257 #: 2bc-form-security.php:752 244 258 msgid "<strong>ERROR:</strong> Invalid tab!" 245 259 msgstr "<strong>ERROR:</strong> Invalid tab!" 246 260 247 #: 2bc-form-security.php:8 34261 #: 2bc-form-security.php:893 248 262 msgid "Settings saved." 249 263 msgstr "Settings saved." 250 264 251 #: 2bc-form-security.php:1 056 2bc-form-security.php:1171265 #: 2bc-form-security.php:1115 2bc-form-security.php:1237 252 266 msgid "Total" 253 267 msgstr "Total" 254 268 255 #: 2bc-form-security.php:1 066269 #: 2bc-form-security.php:1125 256 270 msgid "Security checks failed:" 257 271 msgstr "Security checks failed:" 258 272 259 #: 2bc-form-security.php:1 071273 #: 2bc-form-security.php:1131 260 274 msgid "Security Methods" 261 275 msgstr "Security Methods" 262 276 263 #: 2bc-form-security.php:1 092277 #: 2bc-form-security.php:1152 264 278 msgid "Honeypot failures:" 265 279 msgstr "Honeypot failures:" 266 280 267 #: 2bc-form-security.php:1 094281 #: 2bc-form-security.php:1155 268 282 msgid "Google reCAPTCHA – empty:" 269 283 msgstr "Google reCAPTCHA – empty:" 270 284 271 #: 2bc-form-security.php:1 096285 #: 2bc-form-security.php:1158 272 286 msgid "Google reCAPTCHA – failures:" 273 287 msgstr "Google reCAPTCHA – failures:" 274 288 275 #: 2bc-form-security.php:11 02289 #: 2bc-form-security.php:1165 276 290 msgid "Locations" 277 291 msgstr "Locations" 278 292 279 #: 2bc-form-security.php:11 23293 #: 2bc-form-security.php:1186 280 294 msgid "Registration form failures:" 281 295 msgstr "Registration form failures:" 282 296 283 #: 2bc-form-security.php:11 25297 #: 2bc-form-security.php:1189 284 298 msgid "Login form failures:" 285 299 msgstr "Login form failures:" 286 300 287 #: 2bc-form-security.php:11 27301 #: 2bc-form-security.php:1192 288 302 msgid "Comment form failures:" 289 303 msgstr "Comment form failures:" 290 304 291 #: 2bc-form-security.php:11 33305 #: 2bc-form-security.php:1199 292 306 msgid "Log" 293 307 msgstr "Log" 294 308 295 #: 2bc-form-security.php:1 155309 #: 2bc-form-security.php:1221 296 310 msgid "ID" 297 311 msgstr "ID" 298 312 299 #: 2bc-form-security.php:1 157313 #: 2bc-form-security.php:1223 300 314 msgid "IP Address" 301 315 msgstr "IP Address" 302 316 303 #: 2bc-form-security.php:1 159317 #: 2bc-form-security.php:1225 304 318 msgid "Registration" 305 319 msgstr "Registration" 306 320 307 #: 2bc-form-security.php:1 161321 #: 2bc-form-security.php:1227 308 322 msgid "Login" 309 323 msgstr "Login" 310 324 311 #: 2bc-form-security.php:1 163325 #: 2bc-form-security.php:1229 312 326 msgid "Comment" 313 327 msgstr "Comment" 314 328 315 #: 2bc-form-security.php:1 165329 #: 2bc-form-security.php:1231 316 330 msgid "Honeypots" 317 331 msgstr "Honeypots" 318 332 319 #: 2bc-form-security.php:1 167333 #: 2bc-form-security.php:1233 320 334 msgid "reCAPTCHA | null" 321 335 msgstr "reCAPTCHA | null" 322 336 323 #: 2bc-form-security.php:1 169337 #: 2bc-form-security.php:1235 324 338 msgid "reCAPTCHA | bad" 325 339 msgstr "reCAPTCHA | bad" 326 340 327 #: 2bc-form-security.php:1 249341 #: 2bc-form-security.php:1330 328 342 msgid "Clear Log" 329 343 msgstr "Clear Log" 330 344 331 #: 2bc-form-security.php:1 273345 #: 2bc-form-security.php:1356 332 346 msgid "« Previous Page " 333 347 msgstr "« Previous Page " 334 348 335 #: 2bc-form-security.php:1 275349 #: 2bc-form-security.php:1360 336 350 msgid "Next Page »" 337 351 msgstr "Next Page »" 338 352 339 #: 2bc-form-security.php:1 314353 #: 2bc-form-security.php:1400 340 354 msgid "" 341 355 "<strong>ERROR:</strong> Reporting is not currently enabled! Click the " … … 345 359 "Settings tab to turn reporting on." 346 360 347 #: 2bc-form-security.php:1 333361 #: 2bc-form-security.php:1421 348 362 #, php-format 349 363 msgid "" 350 364 "<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 " dismissthis message."365 "%1$sSettings Page%2$s to activate reCAPTCHA. Save the settings to dismiss " 366 "this message." 353 367 msgstr "" 354 368 "<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 " dismissthis message."357 358 #: 2bc-form-security.php:1 614369 "%1$sSettings Page%2$s to activate reCAPTCHA. Save the settings to dismiss " 370 "this message." 371 372 #: 2bc-form-security.php:1712 359 373 msgid "<strong>ERROR:</strong> Security checks failed" 360 374 msgstr "<strong>ERROR:</strong> Security checks failed" 361 375 362 #: 2bc-form-security.php:1 749376 #: 2bc-form-security.php:1848 363 377 msgid "2BC Form Security Summary" 364 378 msgstr "2BC Form Security Summary" 365 379 366 #: 2bc-form-security.php:1 773380 #: 2bc-form-security.php:1873 367 381 msgid "Report Summary" 368 382 msgstr "Report Summary" 369 383 370 #: 2bc-form-security.php:1 782384 #: 2bc-form-security.php:1882 371 385 #, php-format 372 386 msgid "Total events: %s" 373 387 msgstr "Total events: %s" 374 388 375 #: 2bc-form-security.php:1 795389 #: 2bc-form-security.php:1896 376 390 #, php-format 377 391 msgid "Honeypot events: %s" 378 392 msgstr "Honeypot events: %s" 379 393 380 #: 2bc-form-security.php:1 803394 #: 2bc-form-security.php:1905 381 395 #, php-format 382 396 msgid "reCAPTCHA | null: %s" 383 397 msgstr "reCAPTCHA | null: %s" 384 398 385 #: 2bc-form-security.php:1 810399 #: 2bc-form-security.php:1913 386 400 #, php-format 387 401 msgid "reCAPTCHA | bad: %s" 388 402 msgstr "reCAPTCHA | bad: %s" 389 403 390 #: 2bc-form-security.php:1 823404 #: 2bc-form-security.php:1927 391 405 #, php-format 392 406 msgid "Registration form: %s" 393 407 msgstr "Registration form: %s" 394 408 395 #: 2bc-form-security.php:1 830 2bc-form-security.php:1858409 #: 2bc-form-security.php:1934 2bc-form-security.php:1968 396 410 #, php-format 397 411 msgid "Login form: %s" 398 412 msgstr "Login form: %s" 399 413 400 #: 2bc-form-security.php:1 837 2bc-form-security.php:1859414 #: 2bc-form-security.php:1942 2bc-form-security.php:1970 401 415 #, php-format 402 416 msgid "Comment form: %s" 403 417 msgstr "Comment form: %s" 404 418 405 #: 2bc-form-security.php:1 846419 #: 2bc-form-security.php:1953 406 420 msgid "Current Settings" 407 421 msgstr "Current Settings" 408 422 409 #: 2bc-form-security.php:1 851423 #: 2bc-form-security.php:1958 410 424 msgid "Yes" 411 425 msgstr "Yes" 412 426 413 #: 2bc-form-security.php:1 852427 #: 2bc-form-security.php:1959 414 428 msgid "No" 415 429 msgstr "No" 416 430 417 #: 2bc-form-security.php:1 855431 #: 2bc-form-security.php:1962 418 432 #, php-format 419 433 msgid "reCAPTCHA enabled: %s" 420 434 msgstr "reCAPTCHA enabled: %s" 421 435 422 #: 2bc-form-security.php:1 856436 #: 2bc-form-security.php:1964 423 437 #, php-format 424 438 msgid "reCAPTCHA valid: %s" 425 439 msgstr "reCAPTCHA valid: %s" 426 440 427 #: 2bc-form-security.php:1 857441 #: 2bc-form-security.php:1966 428 442 #, php-format 429 443 msgid "Register form: %s" 430 444 msgstr "Register form: %s" 431 445 432 #: 2bc-form-security.php:1 860446 #: 2bc-form-security.php:1972 433 447 #, php-format 434 448 msgid "Record IPs: %s" 435 449 msgstr "Record IPs: %s" 436 450 437 #: 2bc-form-security.php:1 861451 #: 2bc-form-security.php:1974 438 452 #, php-format 439 453 msgid "Reporting Enabled: %s" 440 454 msgstr "Reporting Enabled: %s" 441 455 442 #: 2bc-form-security.php: 1928456 #: 2bc-form-security.php:2042 443 457 msgid "<strong>ERROR:</strong> Security checks failed." 444 458 msgstr "<strong>ERROR:</strong> Security checks failed." 445 459 446 #: 2bc-form-security.php: 1929460 #: 2bc-form-security.php:2043 447 461 msgid "<strong>ERROR:</strong> Login failed." 448 462 msgstr "<strong>ERROR:</strong> Login failed." 449 463 450 #: 2bc-form-security.php:2 065464 #: 2bc-form-security.php:2187 451 465 msgid "Google reCAPTCHA API keys missing or invalid." 452 466 msgstr "Google reCAPTCHA API keys missing or invalid." 453 467 454 #: 2bc-form-security.php:2 070468 #: 2bc-form-security.php:2193 455 469 msgid "Google reCAPTCHA not clicked." 456 470 msgstr "Google reCAPTCHA not clicked." 457 471 458 #: 2bc-form-security.php:2 073472 #: 2bc-form-security.php:2196 459 473 msgid "Could not get secret key" 460 474 msgstr "Could not get secret key" 461 475 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 477 msgid "Security checks failed." 478 msgstr "Security checks failed." 479 480 #: includes/class_twobc_wpadmin_input_fields_1_0_2.php:91 481 msgid "Error: type cannot be empty" 482 msgstr "Error: type cannot be empty" 483 484 #: includes/class_twobc_wpadmin_input_fields_1_0_2.php:107 485 #, php-format 486 msgid "Error: invalid type - %s" 487 msgstr "Error: invalid type - %s" 488 489 #: includes/class_twobc_wpadmin_input_fields_1_0_2.php:113 472 490 msgid "Error - name cannot be empty" 473 491 msgstr "Error - name cannot be empty" 474 492 475 #: includes/class_twobc_wpadmin_input_fields_1_0_ 1.php:120493 #: includes/class_twobc_wpadmin_input_fields_1_0_2.php:117 476 494 #, php-format 477 495 msgid "Error - invalid name - %s" 478 496 msgstr "Error - invalid name - %s" 479 480 #~ msgid ""481 #~ "<strong>Incorrect Password</strong> – 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> – 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 7 7 Requires at least: 3.6 8 8 Tested up to: 4.2 9 Stable tag: 2.0. 09 Stable tag: 2.0.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 91 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 92 96 = 2.0.0 = 93 97 * Added integration with BuddyPress registration form … … 103 107 == Upgrade Notice == 104 108 109 = 2.0.1 = 110 Fixed issues in admin screen 111 105 112 = 2.0.0 = 106 113 BuddyPress integration, fixes some issues in admin screen
Note: See TracChangeset
for help on using the changeset viewer.