Theme My Login - Version 6.4.12

Version Description

  • Add support for data requests
  • Utilize Bootstrap 3 colors for notices
Download this release

Release Info

Developer jfarthing84
Plugin Icon 128x128 Theme My Login
Version 6.4.12
Comparing to
See all releases

Code changes from version 6.4.11 to 6.4.12

includes/class-theme-my-login-template.php CHANGED
@@ -115,6 +115,9 @@ class Theme_My_Login_Template extends Theme_My_Login_Abstract {
115
  $template[] = $this->get_option( 'register_template' );
116
  $template[] = 'register-form.php';
117
  break;
 
 
 
118
  case 'login':
119
  default :
120
  if ( $this->get_option( 'login_template' ) )
@@ -162,6 +165,9 @@ class Theme_My_Login_Template extends Theme_My_Login_Abstract {
162
  case 'rp':
163
  $title = __( 'Lost Password', 'theme-my-login' );
164
  break;
 
 
 
165
  case 'login':
166
  default:
167
  $title = __( 'Log In', 'theme-my-login' );
@@ -459,6 +465,7 @@ class Theme_My_Login_Template extends Theme_My_Login_Abstract {
459
  THEME_MY_LOGIN_PATH . '/templates'
460
  ) );
461
 
 
462
  foreach ( (array) $template_names as $template_name ) {
463
 
464
  if ( ! $template_name )
@@ -591,4 +598,3 @@ class Theme_My_Login_Template extends Theme_My_Login_Abstract {
591
  }
592
  }
593
  endif; // Class exists
594
-
115
  $template[] = $this->get_option( 'register_template' );
116
  $template[] = 'register-form.php';
117
  break;
118
+ case 'confirmaction':
119
+ echo '<div class="tml">' . _wp_privacy_account_request_confirmed_message( $_GET['request_id'] ) . '</div>';
120
+ break;
121
  case 'login':
122
  default :
123
  if ( $this->get_option( 'login_template' ) )
165
  case 'rp':
166
  $title = __( 'Lost Password', 'theme-my-login' );
167
  break;
168
+ case 'confirmaction':
169
+ $title = __( 'Your Data Request', 'theme-my-login' );
170
+ break;
171
  case 'login':
172
  default:
173
  $title = __( 'Log In', 'theme-my-login' );
465
  THEME_MY_LOGIN_PATH . '/templates'
466
  ) );
467
 
468
+ $located = '';
469
  foreach ( (array) $template_names as $template_name ) {
470
 
471
  if ( ! $template_name )
598
  }
599
  }
600
  endif; // Class exists
 
includes/class-theme-my-login.php CHANGED
@@ -21,7 +21,7 @@ class Theme_My_Login extends Theme_My_Login_Abstract {
21
  * @since 6.3.2
22
  * @const string
23
  */
24
- const VERSION = '6.4.11';
25
 
26
  /**
27
  * Holds options key
@@ -160,6 +160,7 @@ class Theme_My_Login extends Theme_My_Login_Abstract {
160
  add_filter( 'logout_url', array( $this, 'logout_url' ), 10, 2 );
161
  add_filter( 'single_post_title', array( $this, 'single_post_title' ) );
162
  add_filter( 'the_title', array( $this, 'the_title' ), 10, 2 );
 
163
  add_filter( 'wp_setup_nav_menu_item', array( $this, 'wp_setup_nav_menu_item' ) );
164
  add_filter( 'wp_list_pages_excludes', array( $this, 'wp_list_pages_excludes' ) );
165
  add_filter( 'page_link', array( $this, 'page_link' ), 10, 2 );
@@ -476,6 +477,26 @@ class Theme_My_Login extends Theme_My_Login_Abstract {
476
  }
477
  }
478
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
479
  case 'login' :
480
  default:
481
  $secure_cookie = '';
@@ -796,13 +817,40 @@ if(typeof wpOnload=='function')wpOnload()
796
  if ( is_admin() )
797
  return $title;
798
 
799
- if ( self::is_tml_page( 'login', $post_id ) && is_user_logged_in() ) {
800
- if ( in_the_loop() )
801
- $title = $this->get_instance()->get_title( 'login' );
 
 
 
 
 
802
  }
803
  return $title;
804
  }
805
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
806
  /**
807
  * Hide Login & Register if user is logged in, hide Logout if not
808
  *
@@ -938,7 +986,9 @@ if(typeof wpOnload=='function')wpOnload()
938
  if ( ! empty( $this->request_instance ) )
939
  $instance->set_active( false );
940
 
941
- $atts['default_action'] = $this->request_page;
 
 
942
 
943
  if ( ! isset( $atts['show_title'] ) )
944
  $atts['show_title'] = false;
21
  * @since 6.3.2
22
  * @const string
23
  */
24
+ const VERSION = '6.4.12';
25
 
26
  /**
27
  * Holds options key
160
  add_filter( 'logout_url', array( $this, 'logout_url' ), 10, 2 );
161
  add_filter( 'single_post_title', array( $this, 'single_post_title' ) );
162
  add_filter( 'the_title', array( $this, 'the_title' ), 10, 2 );
163
+ add_filter( 'document_title_parts', array( $this, 'document_title_parts' ) );
164
  add_filter( 'wp_setup_nav_menu_item', array( $this, 'wp_setup_nav_menu_item' ) );
165
  add_filter( 'wp_list_pages_excludes', array( $this, 'wp_list_pages_excludes' ) );
166
  add_filter( 'page_link', array( $this, 'page_link' ), 10, 2 );
477
  }
478
  }
479
  break;
480
+ case 'confirmaction' :
481
+ if ( ! isset( $_GET['request_id'] ) ) {
482
+ wp_die( __( 'Invalid request.' ) );
483
+ }
484
+
485
+ $request_id = (int) $_GET['request_id'];
486
+
487
+ if ( isset( $_GET['confirm_key'] ) ) {
488
+ $key = sanitize_text_field( wp_unslash( $_GET['confirm_key'] ) );
489
+ $result = wp_validate_user_request_key( $request_id, $key );
490
+ } else {
491
+ $result = new WP_Error( 'invalid_key', __( 'Invalid key' ) );
492
+ }
493
+
494
+ if ( is_wp_error( $result ) ) {
495
+ wp_die( $result );
496
+ }
497
+
498
+ do_action( 'user_request_action_confirmed', $request_id );
499
+ break;
500
  case 'login' :
501
  default:
502
  $secure_cookie = '';
817
  if ( is_admin() )
818
  return $title;
819
 
820
+ if ( self::is_tml_page( 'login', $post_id ) ) {
821
+ if ( in_the_loop() ) {
822
+ if ( is_user_logged_in() ) {
823
+ $title = $this->get_instance()->get_title( 'login' );
824
+ } elseif ( 'login' != $this->request_action ) {
825
+ $title = $this->get_instance()->get_title( $this->request_action );
826
+ }
827
+ }
828
  }
829
  return $title;
830
  }
831
 
832
+ /**
833
+ * Changes wp_get_document_title() to reflect the current action
834
+ *
835
+ * Callback for "document_title_parts" hok in wp_get_document_title()
836
+ *
837
+ * @see wp_get_document_title()
838
+ * @since 6.4.12
839
+ *
840
+ * @param array $parts The title parts
841
+ * @return array The modified title parts
842
+ */
843
+ public function document_title_parts( $parts ) {
844
+ if ( self::is_tml_page( 'login' ) ) {
845
+ if ( is_user_logged_in() ) {
846
+ $parts['title'] = $this->get_instance()->get_title( 'login' );
847
+ } elseif ( 'login' != $this->request_action ) {
848
+ $parts['title'] = $this->get_instance()->get_title( $this->request_action );
849
+ }
850
+ }
851
+ return $parts;
852
+ }
853
+
854
  /**
855
  * Hide Login & Register if user is logged in, hide Logout if not
856
  *
986
  if ( ! empty( $this->request_instance ) )
987
  $instance->set_active( false );
988
 
989
+ if ( 'login' != $this->request_page ) {
990
+ $atts['default_action'] = $this->request_page;
991
+ }
992
 
993
  if ( ! isset( $atts['show_title'] ) )
994
  $atts['show_title'] = false;
languages/theme-my-login.pot CHANGED
@@ -1,101 +1,196 @@
1
- # Copyright (C) 2017 Theme My Login
2
  # This file is distributed under the same license as the Theme My Login package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Theme My Login 6.4.9\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/theme-my-"
7
- "login-6.4\n"
8
- "POT-Creation-Date: 2017-02-19 22:46:20+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
 
16
- #: admin/class-theme-my-login-admin.php:68
17
- #: admin/class-theme-my-login-admin.php:133
18
- msgid "Theme My Login Settings"
 
19
  msgstr ""
20
 
21
- #: admin/class-theme-my-login-admin.php:69
22
- msgid "TML"
23
  msgstr ""
24
 
25
- #: admin/class-theme-my-login-admin.php:77
26
- #: admin/class-theme-my-login-admin.php:78
27
- #: admin/class-theme-my-login-admin.php:103
28
- msgid "General"
 
29
  msgstr ""
30
 
31
- #: admin/class-theme-my-login-admin.php:104
32
- #: admin/class-theme-my-login-admin.php:109
33
- msgid "Modules"
 
34
  msgstr ""
35
 
36
- #: admin/class-theme-my-login-admin.php:107
37
- msgid "Stylesheet"
 
 
38
  msgstr ""
39
 
40
- #: admin/class-theme-my-login-admin.php:108
41
- msgid "Login Type"
42
  msgstr ""
43
 
44
- #: admin/class-theme-my-login-admin.php:161
45
- msgid "Enable \"theme-my-login.css\""
46
  msgstr ""
47
 
48
- #: admin/class-theme-my-login-admin.php:162
49
- msgid ""
50
- "In order to keep changes between upgrades, you can store your customized "
51
- "\"theme-my-login.css\" in your current theme directory."
52
  msgstr ""
53
 
54
- #: admin/class-theme-my-login-admin.php:178 templates/login-form.php:18
55
- msgid "Username or E-mail"
56
  msgstr ""
57
 
58
- #: admin/class-theme-my-login-admin.php:181
59
- msgid "Username only"
60
  msgstr ""
61
 
62
- #: admin/class-theme-my-login-admin.php:184
63
- msgid "E-mail only"
64
  msgstr ""
65
 
66
- #: admin/class-theme-my-login-admin.php:188
67
- msgid "Allow users to login using their username and/or e-mail address."
68
  msgstr ""
69
 
70
- #: admin/class-theme-my-login-admin.php:204
71
- msgid "Enable %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  msgstr ""
73
 
74
- #: includes/class-theme-my-login-ms-signup.php:104
75
- msgctxt "Multisite active signup type"
76
- msgid "all"
77
  msgstr ""
78
 
79
- #: includes/class-theme-my-login-ms-signup.php:105
80
- msgctxt "Multisite active signup type"
81
- msgid "none"
82
  msgstr ""
83
 
84
- #: includes/class-theme-my-login-ms-signup.php:106
85
- msgctxt "Multisite active signup type"
86
- msgid "blog"
87
  msgstr ""
88
 
89
- #: includes/class-theme-my-login-ms-signup.php:107
90
- msgctxt "Multisite active signup type"
91
- msgid "user"
92
  msgstr ""
93
 
94
  #: includes/class-theme-my-login-ms-signup.php:110
95
- msgid ""
96
- "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; "
97
- "registrations. To change or disable registration go to your <a href=\"%s"
98
- "\">Options page</a>."
99
  msgstr ""
100
 
101
  #: includes/class-theme-my-login-ms-signup.php:116
@@ -103,8 +198,7 @@ msgid "Registration has been disabled."
103
  msgstr ""
104
 
105
  #: includes/class-theme-my-login-ms-signup.php:118
106
- msgid ""
107
- "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
108
  msgstr ""
109
 
110
  #: includes/class-theme-my-login-ms-signup.php:142
@@ -112,9 +206,7 @@ msgid "%s is your new username"
112
  msgstr ""
113
 
114
  #: includes/class-theme-my-login-ms-signup.php:143
115
- msgid ""
116
- "But, before you can start using your new username, <strong>you must activate "
117
- "it</strong>."
118
  msgstr ""
119
 
120
  #: includes/class-theme-my-login-ms-signup.php:144
@@ -122,9 +214,7 @@ msgid "Check your inbox at <strong>%1$s</strong> and click the link given."
122
  msgstr ""
123
 
124
  #: includes/class-theme-my-login-ms-signup.php:145
125
- msgid ""
126
- "If you do not activate your username within two days, you will have to sign "
127
- "up again."
128
  msgstr ""
129
 
130
  #: includes/class-theme-my-login-ms-signup.php:149
@@ -136,9 +226,7 @@ msgid "Congratulations! Your new site, %s, is almost ready."
136
  msgstr ""
137
 
138
  #: includes/class-theme-my-login-ms-signup.php:183
139
- msgid ""
140
- "But, before you can start using your site, <strong>you must activate it</"
141
- "strong>."
142
  msgstr ""
143
 
144
  #: includes/class-theme-my-login-ms-signup.php:184
@@ -146,9 +234,7 @@ msgid "Check your inbox at <strong>%s</strong> and click the link given."
146
  msgstr ""
147
 
148
  #: includes/class-theme-my-login-ms-signup.php:185
149
- msgid ""
150
- "If you do not activate your site within two days, you will have to sign up "
151
- "again."
152
  msgstr ""
153
 
154
  #: includes/class-theme-my-login-ms-signup.php:186
@@ -156,27 +242,19 @@ msgid "Still waiting for your email?"
156
  msgstr ""
157
 
158
  #: includes/class-theme-my-login-ms-signup.php:188
159
- msgid ""
160
- "If you haven&#8217;t received your email yet, there are a number of things "
161
- "you can do:"
162
  msgstr ""
163
 
164
  #: includes/class-theme-my-login-ms-signup.php:190
165
- msgid ""
166
- "Wait a little longer. Sometimes delivery of email can be delayed by "
167
- "processes outside of our control."
168
  msgstr ""
169
 
170
  #: includes/class-theme-my-login-ms-signup.php:191
171
- msgid ""
172
- "Check the junk or spam folder of your email client. Sometime emails wind up "
173
- "there by mistake."
174
  msgstr ""
175
 
176
  #: includes/class-theme-my-login-ms-signup.php:192
177
- msgid ""
178
- "Have you entered your email correctly? You have entered %s, if it&#8217;s "
179
- "incorrect, you will not receive your email."
180
  msgstr ""
181
 
182
  #: includes/class-theme-my-login-ms-signup.php:198
@@ -188,9 +266,7 @@ msgid "The site %s is yours."
188
  msgstr ""
189
 
190
  #: includes/class-theme-my-login-ms-signup.php:224
191
- msgid ""
192
- "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s"
193
- "\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
194
  msgstr ""
195
 
196
  #: includes/class-theme-my-login-ms-signup.php:240
@@ -202,15 +278,11 @@ msgid "You are logged in already. No need to register again!"
202
  msgstr ""
203
 
204
  #: includes/class-theme-my-login-ms-signup.php:248
205
- msgid ""
206
- "<p><em>The site you were looking for, <strong>%s</strong> does not exist, "
207
- "but you can create it now!</em></p>"
208
  msgstr ""
209
 
210
  #: includes/class-theme-my-login-ms-signup.php:250
211
- msgid ""
212
- "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</"
213
- "em></p>"
214
  msgstr ""
215
 
216
  #: includes/class-theme-my-login-ms-signup.php:392
@@ -232,23 +304,11 @@ msgid "Your account is now active!"
232
  msgstr ""
233
 
234
  #: includes/class-theme-my-login-ms-signup.php:415
235
- msgid ""
236
- "Your account has been activated. You may now <a href=\"%1$s\">login</a> to "
237
- "the site using your chosen username of &#8220;%2$s&#8221;. Please check "
238
- "your email inbox at %3$s for your password and login instructions. If you do "
239
- "not receive an email, please check your junk or spam folder. If you still do "
240
- "not receive an email within an hour, you can <a href=\"%4$s\">reset your "
241
- "password</a>."
242
  msgstr ""
243
 
244
  #: includes/class-theme-my-login-ms-signup.php:417
245
- msgid ""
246
- "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your "
247
- "site using your chosen username of &#8220;%3$s&#8221;. Please check your "
248
- "email inbox at %4$s for your password and login instructions. If you do not "
249
- "receive an email, please check your junk or spam folder. If you still do "
250
- "not receive an email within an hour, you can <a href=\"%5$s\">reset your "
251
- "password</a>."
252
  msgstr ""
253
 
254
  #: includes/class-theme-my-login-ms-signup.php:422
@@ -266,517 +326,400 @@ msgid "Password:"
266
  msgstr ""
267
 
268
  #: includes/class-theme-my-login-ms-signup.php:439
269
- msgid ""
270
- "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a "
271
- "href=\"%2$s\">Login</a>"
272
  msgstr ""
273
 
274
  #: includes/class-theme-my-login-ms-signup.php:441
275
- msgid ""
276
- "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the "
277
- "<a href=\"%2$s\">homepage</a>."
278
  msgstr ""
279
 
280
- #: includes/class-theme-my-login-template.php:150
281
  msgid "Welcome, %s"
282
  msgstr ""
283
 
284
- #: includes/class-theme-my-login-template.php:157
285
- #: includes/class-theme-my-login-widget.php:111
286
- #: includes/class-theme-my-login.php:119 templates/register-form.php:28
287
- msgid "Register"
288
- msgstr ""
289
-
290
- #: includes/class-theme-my-login-template.php:163
291
- #: includes/class-theme-my-login-widget.php:112
292
- #: includes/class-theme-my-login.php:120
293
- msgid "Lost Password"
294
- msgstr ""
295
-
296
- #: includes/class-theme-my-login-template.php:167
297
- #: includes/class-theme-my-login.php:117 templates/login-form.php:38
298
- msgid "Log In"
299
  msgstr ""
300
 
301
- #: includes/class-theme-my-login-template.php:348
302
  #: modules/custom-user-links/custom-user-links.php:61
303
  msgid "Dashboard"
304
  msgstr ""
305
 
306
- #: includes/class-theme-my-login-template.php:351
307
  #: modules/custom-user-links/custom-user-links.php:65
308
  msgid "Profile"
309
  msgstr ""
310
 
311
- #: includes/class-theme-my-login-template.php:400
312
  msgid "Register For This Site"
313
  msgstr ""
314
 
315
- #: includes/class-theme-my-login-template.php:403
316
- msgid ""
317
- "Please enter your username or email address. You will receive a link to "
318
- "create a new password via email."
319
  msgstr ""
320
 
321
- #: includes/class-theme-my-login-template.php:406
322
  msgid "Enter your new password below."
323
  msgstr ""
324
 
325
- #: includes/class-theme-my-login-widget.php:24
326
- msgid "A login form for your blog."
 
327
  msgstr ""
328
 
329
- #. #-#-#-#-# theme-my-login.pot (Theme My Login 6.4.9) #-#-#-#-#
330
- #. Plugin Name of the plugin/theme
331
- #: includes/class-theme-my-login-widget.php:26
332
- msgid "Theme My Login"
333
  msgstr ""
334
 
335
- #: includes/class-theme-my-login-widget.php:110
336
- msgid "Login"
 
 
337
  msgstr ""
338
 
339
- #: includes/class-theme-my-login-widget.php:115
340
- msgid "Default Action"
 
341
  msgstr ""
342
 
343
- #: includes/class-theme-my-login-widget.php:123
344
- msgid "Show When Logged In"
345
  msgstr ""
346
 
347
- #: includes/class-theme-my-login-widget.php:126
348
- msgid "Show When Logged Out"
349
  msgstr ""
350
 
351
- #: includes/class-theme-my-login-widget.php:129
352
- msgid "Show Title"
353
  msgstr ""
354
 
355
- #: includes/class-theme-my-login-widget.php:132
356
- msgid "Show Login Link"
357
  msgstr ""
358
 
359
- #: includes/class-theme-my-login-widget.php:135
360
- msgid "Show Register Link"
 
361
  msgstr ""
362
 
363
- #: includes/class-theme-my-login-widget.php:138
364
- msgid "Show Lost Password Link"
365
  msgstr ""
366
 
367
- #: includes/class-theme-my-login-widget.php:141
368
- msgid "Show Gravatar"
369
  msgstr ""
370
 
371
- #: includes/class-theme-my-login-widget.php:143
372
- msgid "Gravatar Size"
373
  msgstr ""
374
 
375
- #: includes/class-theme-my-login.php:118
376
- msgid "Log Out"
377
  msgstr ""
378
 
379
- #: includes/class-theme-my-login.php:121
380
- #: modules/custom-email/admin/custom-email-admin.php:100
381
- #: templates/resetpass-form.php:35
382
- msgid "Reset Password"
383
  msgstr ""
384
 
385
- #: includes/class-theme-my-login.php:373
386
- msgid ""
387
- "Your password reset link appears to be invalid. Please request a new link "
388
- "below."
389
  msgstr ""
390
 
391
- #: includes/class-theme-my-login.php:375
392
- msgid "Your password reset link has expired. Please request a new link below."
 
393
  msgstr ""
394
 
395
- #: includes/class-theme-my-login.php:413
396
- msgid "The passwords do not match."
397
  msgstr ""
398
 
399
- #: includes/class-theme-my-login.php:512
400
- msgid "You are now logged out."
 
401
  msgstr ""
402
 
403
- #: includes/class-theme-my-login.php:514
404
- msgid "User registration is currently not allowed."
 
405
  msgstr ""
406
 
407
- #: includes/class-theme-my-login.php:516
408
- msgid "Check your e-mail for the confirmation link."
 
409
  msgstr ""
410
 
411
- #: includes/class-theme-my-login.php:518
412
- msgid "Your password has been reset."
 
413
  msgstr ""
414
 
415
- #: includes/class-theme-my-login.php:520
416
- msgid "Registration complete. Please check your e-mail."
 
417
  msgstr ""
418
 
419
- #: includes/class-theme-my-login.php:522
420
- msgid "Your session has expired. Please log-in again."
 
421
  msgstr ""
422
 
423
- #: includes/class-theme-my-login.php:524
424
- msgid ""
425
- "<strong>You have successfully updated WordPress!</strong> Please log back in "
426
- "to experience the awesomeness."
427
  msgstr ""
428
 
429
- #: includes/class-theme-my-login.php:526
430
- msgid "Please log in to continue."
 
431
  msgstr ""
432
 
433
- #: includes/class-theme-my-login.php:846
434
- msgid "<strong>ERROR</strong>: Invalid email address."
 
435
  msgstr ""
436
 
437
- #: includes/class-theme-my-login.php:1146
438
- msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
 
439
  msgstr ""
440
 
441
- #: includes/class-theme-my-login.php:1150
442
- msgid ""
443
- "<strong>ERROR</strong>: There is no user registered with that email address."
444
  msgstr ""
445
 
446
- #: includes/class-theme-my-login.php:1162
447
- msgid "<strong>ERROR</strong>: Invalid username or e-mail."
448
  msgstr ""
449
 
450
- #: includes/class-theme-my-login.php:1175
451
- msgid "Someone requested that the password be reset for the following account:"
452
  msgstr ""
453
 
454
- #: includes/class-theme-my-login.php:1177
455
- #: modules/custom-email/custom-email.php:843
456
- #: modules/custom-email/custom-email.php:872
457
- #: modules/user-moderation/admin/user-moderation-admin.php:382
458
- #: modules/user-moderation/user-moderation.php:462
459
- msgid "Username: %s"
460
  msgstr ""
461
 
462
- #: includes/class-theme-my-login.php:1178
463
- msgid "If this was a mistake, just ignore this email and nothing will happen."
464
  msgstr ""
465
 
466
- #: includes/class-theme-my-login.php:1179
467
- msgid "To reset your password, visit the following address:"
468
  msgstr ""
469
 
470
- #: includes/class-theme-my-login.php:1190
471
- msgid "[%s] Password Reset"
472
  msgstr ""
473
 
474
- #: includes/class-theme-my-login.php:1196
475
- #: modules/user-moderation/admin/user-moderation-admin.php:252
476
- #: modules/user-moderation/admin/user-moderation-admin.php:394
477
- #: modules/user-moderation/admin/user-moderation-admin.php:436
478
- msgid "The e-mail could not be sent."
479
  msgstr ""
480
 
481
- #: includes/class-theme-my-login.php:1196
482
- #: modules/user-moderation/admin/user-moderation-admin.php:252
483
- #: modules/user-moderation/admin/user-moderation-admin.php:394
484
- #: modules/user-moderation/admin/user-moderation-admin.php:436
485
- msgid "Possible reason: your host may have disabled the mail() function..."
486
  msgstr ""
487
 
488
- #: modules/custom-email/admin/custom-email-admin.php:90
489
- #: modules/custom-email/admin/custom-email-admin.php:147
490
- msgid "Theme My Login Custom E-mail Settings"
 
491
  msgstr ""
492
 
493
- #: modules/custom-email/admin/custom-email-admin.php:91
494
- #: templates/login-form.php:16 templates/profile-form.php:96
495
  #: templates/register-form.php:19
 
 
 
496
  msgid "E-mail"
497
  msgstr ""
498
 
499
- #: modules/custom-email/admin/custom-email-admin.php:97
500
- msgid "New User"
501
  msgstr ""
502
 
503
- #: modules/custom-email/admin/custom-email-admin.php:98
504
- msgid "New User Admin"
505
  msgstr ""
506
 
507
- #: modules/custom-email/admin/custom-email-admin.php:99
508
- msgid "Retrieve Password"
509
  msgstr ""
510
 
511
- #: modules/custom-email/admin/custom-email-admin.php:104
512
- msgid "User Activation"
513
  msgstr ""
514
 
515
- #: modules/custom-email/admin/custom-email-admin.php:105
516
- msgid "User Approval"
517
  msgstr ""
518
 
519
- #: modules/custom-email/admin/custom-email-admin.php:106
520
- msgid "User Approval Admin"
521
  msgstr ""
522
 
523
- #: modules/custom-email/admin/custom-email-admin.php:107
524
- msgid "User Denial"
525
  msgstr ""
526
 
527
- #: modules/custom-email/admin/custom-email-admin.php:176
528
- msgid "This e-mail will be sent to a new user upon registration."
529
  msgstr ""
530
 
531
- #: modules/custom-email/admin/custom-email-admin.php:177
532
- #: modules/custom-email/admin/custom-email-admin.php:282
533
- #: modules/custom-email/admin/custom-email-admin.php:436
534
- msgid ""
535
- "Please be sure to include the variable %reseturl% or else the user will not "
536
- "be able to recover their password!"
537
  msgstr ""
538
 
539
- #: modules/custom-email/admin/custom-email-admin.php:178
540
- #: modules/custom-email/admin/custom-email-admin.php:225
541
- #: modules/custom-email/admin/custom-email-admin.php:283
542
- #: modules/custom-email/admin/custom-email-admin.php:330
543
- #: modules/custom-email/admin/custom-email-admin.php:389
544
- #: modules/custom-email/admin/custom-email-admin.php:437
545
- #: modules/custom-email/admin/custom-email-admin.php:484
546
- #: modules/custom-email/admin/custom-email-admin.php:542
547
- msgid "If any field is left empty, the default will be used instead."
548
  msgstr ""
549
 
550
- #: modules/custom-email/admin/custom-email-admin.php:182
551
- #: modules/custom-email/admin/custom-email-admin.php:233
552
- #: modules/custom-email/admin/custom-email-admin.php:287
553
- #: modules/custom-email/admin/custom-email-admin.php:338
554
- #: modules/custom-email/admin/custom-email-admin.php:393
555
- #: modules/custom-email/admin/custom-email-admin.php:441
556
- #: modules/custom-email/admin/custom-email-admin.php:492
557
- #: modules/custom-email/admin/custom-email-admin.php:546
558
- msgid "From Name"
559
  msgstr ""
560
 
561
- #: modules/custom-email/admin/custom-email-admin.php:186
562
- #: modules/custom-email/admin/custom-email-admin.php:237
563
- #: modules/custom-email/admin/custom-email-admin.php:291
564
- #: modules/custom-email/admin/custom-email-admin.php:342
565
- #: modules/custom-email/admin/custom-email-admin.php:397
566
- #: modules/custom-email/admin/custom-email-admin.php:445
567
- #: modules/custom-email/admin/custom-email-admin.php:496
568
- #: modules/custom-email/admin/custom-email-admin.php:550
569
- msgid "From E-mail"
570
  msgstr ""
571
 
572
- #: modules/custom-email/admin/custom-email-admin.php:190
573
- #: modules/custom-email/admin/custom-email-admin.php:241
574
- #: modules/custom-email/admin/custom-email-admin.php:295
575
- #: modules/custom-email/admin/custom-email-admin.php:346
576
- #: modules/custom-email/admin/custom-email-admin.php:401
577
- #: modules/custom-email/admin/custom-email-admin.php:449
578
- #: modules/custom-email/admin/custom-email-admin.php:500
579
- #: modules/custom-email/admin/custom-email-admin.php:554
580
- msgid "E-mail Format"
581
  msgstr ""
582
 
583
- #: modules/custom-email/admin/custom-email-admin.php:193
584
- #: modules/custom-email/admin/custom-email-admin.php:244
585
- #: modules/custom-email/admin/custom-email-admin.php:298
586
- #: modules/custom-email/admin/custom-email-admin.php:349
587
- #: modules/custom-email/admin/custom-email-admin.php:404
588
- #: modules/custom-email/admin/custom-email-admin.php:452
589
- #: modules/custom-email/admin/custom-email-admin.php:503
590
- #: modules/custom-email/admin/custom-email-admin.php:557
591
- msgid "Plain Text"
592
  msgstr ""
593
 
594
- #: modules/custom-email/admin/custom-email-admin.php:194
595
- #: modules/custom-email/admin/custom-email-admin.php:245
596
- #: modules/custom-email/admin/custom-email-admin.php:299
597
- #: modules/custom-email/admin/custom-email-admin.php:350
598
- #: modules/custom-email/admin/custom-email-admin.php:405
599
- #: modules/custom-email/admin/custom-email-admin.php:453
600
- #: modules/custom-email/admin/custom-email-admin.php:504
601
- #: modules/custom-email/admin/custom-email-admin.php:558
602
- msgid "HTML"
603
  msgstr ""
604
 
605
- #: modules/custom-email/admin/custom-email-admin.php:199
606
- #: modules/custom-email/admin/custom-email-admin.php:249
607
- #: modules/custom-email/admin/custom-email-admin.php:304
608
- #: modules/custom-email/admin/custom-email-admin.php:355
609
- #: modules/custom-email/admin/custom-email-admin.php:410
610
- #: modules/custom-email/admin/custom-email-admin.php:458
611
- #: modules/custom-email/admin/custom-email-admin.php:509
612
- #: modules/custom-email/admin/custom-email-admin.php:563
613
- msgid "Subject"
614
  msgstr ""
615
 
616
- #: modules/custom-email/admin/custom-email-admin.php:203
617
- #: modules/custom-email/admin/custom-email-admin.php:253
618
- #: modules/custom-email/admin/custom-email-admin.php:308
619
- #: modules/custom-email/admin/custom-email-admin.php:359
620
- #: modules/custom-email/admin/custom-email-admin.php:414
621
- #: modules/custom-email/admin/custom-email-admin.php:462
622
- #: modules/custom-email/admin/custom-email-admin.php:513
623
- #: modules/custom-email/admin/custom-email-admin.php:567
624
- msgid "Message"
625
  msgstr ""
626
 
627
- #: modules/custom-email/admin/custom-email-admin.php:205
628
- #: modules/custom-email/admin/custom-email-admin.php:255
629
- #: modules/custom-email/admin/custom-email-admin.php:310
630
- #: modules/custom-email/admin/custom-email-admin.php:361
631
- #: modules/custom-email/admin/custom-email-admin.php:416
632
- #: modules/custom-email/admin/custom-email-admin.php:464
633
- #: modules/custom-email/admin/custom-email-admin.php:515
634
- #: modules/custom-email/admin/custom-email-admin.php:569
635
- msgid "Available Variables"
636
  msgstr ""
637
 
638
- #: modules/custom-email/admin/custom-email-admin.php:224
639
- msgid ""
640
- "This e-mail will be sent to the e-mail address or addresses (multiple "
641
- "addresses may be separated by commas) specified below, upon new user "
642
- "registration."
643
  msgstr ""
644
 
645
- #: modules/custom-email/admin/custom-email-admin.php:229
646
- #: modules/custom-email/admin/custom-email-admin.php:334
647
- #: modules/custom-email/admin/custom-email-admin.php:488
648
- msgid "To"
649
  msgstr ""
650
 
651
- #: modules/custom-email/admin/custom-email-admin.php:263
652
- #: modules/custom-email/admin/custom-email-admin.php:369
653
- #: modules/custom-email/admin/custom-email-admin.php:523
654
- msgid "Disable Admin Notification"
655
  msgstr ""
656
 
657
- #: modules/custom-email/admin/custom-email-admin.php:281
658
- msgid ""
659
- "This e-mail will be sent to a user when they attempt to recover their "
660
- "password."
661
  msgstr ""
662
 
663
- #: modules/custom-email/admin/custom-email-admin.php:329
664
- msgid ""
665
- "This e-mail will be sent to the e-mail address or addresses (multiple "
666
- "addresses may be separated by commas) specified below, upon user password "
667
- "change."
668
  msgstr ""
669
 
670
- #: modules/custom-email/admin/custom-email-admin.php:387
671
- msgid ""
672
- "This e-mail will be sent to a new user upon registration when \"E-mail "
673
- "Confirmation\" is checked for \"User Moderation\"."
674
  msgstr ""
675
 
676
- #: modules/custom-email/admin/custom-email-admin.php:388
677
- msgid ""
678
- "Please be sure to include the variable %activateurl% or else the user will "
679
- "not be able to activate their account!"
680
  msgstr ""
681
 
682
- #: modules/custom-email/admin/custom-email-admin.php:435
683
- msgid ""
684
- "This e-mail will be sent to a new user upon admin approval when \"Admin "
685
- "Approval\" is checked for \"User Moderation\"."
686
  msgstr ""
687
 
688
- #: modules/custom-email/admin/custom-email-admin.php:483
689
- msgid ""
690
- "This e-mail will be sent to the e-mail address or addresses (multiple "
691
- "addresses may be separated by commas) specified below upon user registration "
692
- "when \"Admin Approval\" is checked for \"User Moderation\"."
693
  msgstr ""
694
 
695
- #: modules/custom-email/admin/custom-email-admin.php:541
696
- msgid ""
697
- "This e-mail will be sent to a user who is deleted/denied when \"Admin "
698
- "Approval\" is checked for \"User Moderation\" and the user's role is "
699
- "\"Pending\"."
700
  msgstr ""
701
 
702
- #: modules/custom-email/admin/custom-email-admin.php:577
703
- msgid "Disable Notification"
704
  msgstr ""
705
 
706
- #: modules/custom-email/custom-email.php:842
707
- msgid "New user registration on your site %s:"
708
  msgstr ""
709
 
710
- #: modules/custom-email/custom-email.php:844
711
- #: modules/user-moderation/user-moderation.php:463
712
- msgid "E-mail: %s"
713
  msgstr ""
714
 
715
- #: modules/custom-email/custom-email.php:846
716
- msgid "[%s] New User Registration"
717
  msgstr ""
718
 
719
- #: modules/custom-email/custom-email.php:873
720
- #: modules/user-moderation/admin/user-moderation-admin.php:383
721
- msgid "To set your password, visit the following address:"
722
  msgstr ""
723
 
724
- #: modules/custom-email/custom-email.php:878
725
- msgid "[%s] Your username and password info"
726
  msgstr ""
727
 
728
- #: modules/custom-email/custom-email.php:906
729
- msgid "[%s] Password Lost/Changed"
730
  msgstr ""
731
 
732
- #: modules/custom-email/custom-email.php:907
733
- msgid "Password Lost and Changed for user: %s"
 
 
 
 
734
  msgstr ""
735
 
736
- #: modules/custom-passwords/custom-passwords.php:69
737
  #: templates/login-form.php:25
 
738
  msgid "Password"
739
  msgstr ""
740
 
741
- #: modules/custom-passwords/custom-passwords.php:73
742
- #: templates/profile-form.php:174
743
- msgid "Confirm Password"
744
- msgstr ""
745
-
746
- #: modules/custom-passwords/custom-passwords.php:104
747
- msgid "(Must be at least 6 characters.)"
748
- msgstr ""
749
-
750
- #: modules/custom-passwords/custom-passwords.php:106
751
- msgid "Confirm Password:"
752
  msgstr ""
753
 
754
- #: modules/custom-passwords/custom-passwords.php:108
755
- msgid "Confirm that you've typed your password correctly."
756
  msgstr ""
757
 
758
- #: modules/custom-passwords/custom-passwords.php:145
759
- msgid "<strong>ERROR</strong>: Please enter your password twice."
 
760
  msgstr ""
761
 
762
- #: modules/custom-passwords/custom-passwords.php:149
763
- msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
 
764
  msgstr ""
765
 
766
- #: modules/custom-passwords/custom-passwords.php:153
767
- msgid ""
768
- "<strong>ERROR</strong>: Please enter the same password in the two password "
769
- "fields."
770
  msgstr ""
771
 
772
- #: modules/custom-passwords/custom-passwords.php:157
773
- msgid ""
774
- "<strong>ERROR</strong>: Your password must be at least 6 characters in "
775
- "length."
776
  msgstr ""
777
 
778
- #: modules/custom-passwords/custom-passwords.php:286
779
- msgid "Registration complete. You may now log in."
780
  msgstr ""
781
 
782
  #: modules/custom-redirection/admin/custom-redirection-admin.php:86
@@ -788,18 +731,13 @@ msgstr ""
788
  msgid "Redirection"
789
  msgstr ""
790
 
791
- #: modules/custom-redirection/admin/custom-redirection-admin.php:166
792
- msgid "Log in"
793
- msgstr ""
794
-
795
  #: modules/custom-redirection/admin/custom-redirection-admin.php:168
796
  #: modules/custom-redirection/admin/custom-redirection-admin.php:182
797
  msgid "Default"
798
  msgstr ""
799
 
800
  #: modules/custom-redirection/admin/custom-redirection-admin.php:169
801
- msgid ""
802
- "Check this option to send the user to their WordPress Dashboard/Profile."
803
  msgstr ""
804
 
805
  #: modules/custom-redirection/admin/custom-redirection-admin.php:171
@@ -808,109 +746,20 @@ msgid "Referer"
808
  msgstr ""
809
 
810
  #: modules/custom-redirection/admin/custom-redirection-admin.php:172
811
- msgid ""
812
- "Check this option to send the user back to the page they were visiting "
813
- "before logging in."
814
  msgstr ""
815
 
816
  #: modules/custom-redirection/admin/custom-redirection-admin.php:176
817
  #: modules/custom-redirection/admin/custom-redirection-admin.php:190
818
- msgid ""
819
- "Check this option to send the user to a custom location, specified by the "
820
- "textbox above."
821
- msgstr ""
822
-
823
- #: modules/custom-redirection/admin/custom-redirection-admin.php:180
824
- msgid "Log out"
825
  msgstr ""
826
 
827
  #: modules/custom-redirection/admin/custom-redirection-admin.php:183
828
- msgid ""
829
- "Check this option to send the user to the log in page, displaying a message "
830
- "that they have successfully logged out."
831
  msgstr ""
832
 
833
  #: modules/custom-redirection/admin/custom-redirection-admin.php:186
834
- msgid ""
835
- "Check this option to send the user back to the page they were visiting "
836
- "before logging out. (Note: If the previous page being visited was an admin "
837
- "page, this can have unexpected results.)"
838
- msgstr ""
839
-
840
- #: modules/custom-user-links/admin/custom-user-links-admin.php:94
841
- #: modules/custom-user-links/admin/custom-user-links-admin.php:144
842
- msgid "Theme My Login Custom User Links Settings"
843
- msgstr ""
844
-
845
- #: modules/custom-user-links/admin/custom-user-links-admin.php:95
846
- msgid "User Links"
847
- msgstr ""
848
-
849
- #: modules/custom-user-links/admin/custom-user-links-admin.php:181
850
- #: modules/custom-user-links/admin/custom-user-links-admin.php:231
851
- msgid "Title"
852
- msgstr ""
853
-
854
- #: modules/custom-user-links/admin/custom-user-links-admin.php:182
855
- #: modules/custom-user-links/admin/custom-user-links-admin.php:232
856
- msgid "URL"
857
- msgstr ""
858
-
859
- #: modules/custom-user-links/admin/custom-user-links-admin.php:205
860
- msgid "Add Link"
861
- msgstr ""
862
-
863
- #: modules/custom-user-links/admin/custom-user-links-admin.php:235
864
- msgid "Delete"
865
- msgstr ""
866
-
867
- #: modules/custom-user-links/admin/custom-user-links-admin.php:237
868
- msgid "Update"
869
- msgstr ""
870
-
871
- #: modules/recaptcha/admin/recaptcha-admin.php:89
872
- #: modules/recaptcha/admin/recaptcha-admin.php:139
873
- msgid "Theme My Login reCAPTCHA Settings"
874
- msgstr ""
875
-
876
- #: modules/recaptcha/admin/recaptcha-admin.php:90
877
- msgid "reCAPTCHA"
878
- msgstr ""
879
-
880
- #: modules/recaptcha/admin/recaptcha-admin.php:98
881
- msgid "Site Key"
882
- msgstr ""
883
-
884
- #: modules/recaptcha/admin/recaptcha-admin.php:99
885
- msgid "Secret Key"
886
- msgstr ""
887
-
888
- #: modules/recaptcha/admin/recaptcha-admin.php:100
889
- msgid "Theme"
890
- msgstr ""
891
-
892
- #: modules/recaptcha/admin/recaptcha-admin.php:123
893
- msgctxt "recaptcha theme"
894
- msgid "Light"
895
- msgstr ""
896
-
897
- #: modules/recaptcha/admin/recaptcha-admin.php:124
898
- msgctxt "recaptcha theme"
899
- msgid "Dark"
900
- msgstr ""
901
-
902
- #: modules/recaptcha/recaptcha.php:110
903
- msgid "<strong>ERROR</strong>: Invalid reCAPTCHA secret key."
904
- msgstr ""
905
-
906
- #: modules/recaptcha/recaptcha.php:114
907
- msgid ""
908
- "<strong>ERROR</strong>: Please check the box to prove that you are not a "
909
- "robot."
910
- msgstr ""
911
-
912
- #: modules/recaptcha/recaptcha.php:118
913
- msgid "<strong>ERROR</strong>: Unable to reach the reCAPTCHA server."
914
  msgstr ""
915
 
916
  #: modules/security/admin/security-admin.php:89
@@ -955,9 +804,7 @@ msgid "day(s)"
955
  msgstr ""
956
 
957
  #: modules/security/admin/security-admin.php:190
958
- msgid ""
959
- "After %1$s failed login attempts within %2$s %3$s, lockout the account for "
960
- "%4$s %5$s."
961
  msgstr ""
962
 
963
  #: modules/security/admin/security-admin.php:241
@@ -987,18 +834,19 @@ msgstr ""
987
  msgid "Your account has been unlocked. You may now log in."
988
  msgstr ""
989
 
990
- #: modules/security/security.php:185 modules/security/security.php:188
991
- #: modules/security/security.php:191 modules/security/security.php:194
992
- #: modules/user-moderation/user-moderation.php:346
993
- #: modules/user-moderation/user-moderation.php:349
994
- #: modules/user-moderation/user-moderation.php:354
 
 
995
  msgid "Invalid key"
996
  msgstr ""
997
 
998
- #: modules/security/security.php:227 modules/security/security.php:250
999
- msgid ""
1000
- "<strong>ERROR</strong>: This account has been locked because of too many "
1001
- "failed login attempts. You may try again in %s."
1002
  msgstr ""
1003
 
1004
  #: modules/security/security.php:229
@@ -1017,7 +865,8 @@ msgstr ""
1017
  msgid "Date"
1018
  msgstr ""
1019
 
1020
- #: modules/security/security.php:302 modules/security/security.php:605
 
1021
  msgid "Y/m/d g:i:s A"
1022
  msgstr ""
1023
 
@@ -1034,39 +883,42 @@ msgid "[%s] Account Locked"
1034
  msgstr ""
1035
 
1036
  #: modules/security/security.php:598
1037
- msgid ""
1038
- "For your security, your account has been locked because of too many failed "
1039
- "login attempts. To unlock your account please click the following link: "
1040
  msgstr ""
1041
 
1042
  #: modules/security/security.php:603
1043
  msgid "The following attempts resulted in the lock:"
1044
  msgstr ""
1045
 
1046
- #: modules/themed-profiles/admin/themed-profiles-admin.php:73
1047
- msgid "Your Profile"
 
1048
  msgstr ""
1049
 
1050
- #: modules/themed-profiles/admin/themed-profiles-admin.php:108
1051
- #: modules/themed-profiles/admin/themed-profiles-admin.php:143
1052
- msgid "Theme My Login Themed Profiles Settings"
1053
  msgstr ""
1054
 
1055
- #: modules/themed-profiles/admin/themed-profiles-admin.php:109
1056
- #: modules/themed-profiles/admin/themed-profiles-admin.php:117
1057
- msgid "Themed Profiles"
1058
  msgstr ""
1059
 
1060
- #: modules/themed-profiles/admin/themed-profiles-admin.php:118
1061
- msgid "Restrict Admin Access"
 
1062
  msgstr ""
1063
 
1064
- #: modules/themed-profiles/themed-profiles.php:257
1065
- msgid "You do not have permission to edit this user."
1066
  msgstr ""
1067
 
1068
- #: modules/themed-profiles/themed-profiles.php:294
1069
- msgid "Profile updated."
 
 
 
 
1070
  msgstr ""
1071
 
1072
  #: modules/user-moderation/admin/user-moderation-admin.php:86
@@ -1099,9 +951,7 @@ msgid "E-mail Confirmation"
1099
  msgstr ""
1100
 
1101
  #: modules/user-moderation/admin/user-moderation-admin.php:187
1102
- msgid ""
1103
- "Check this option to require new users to confirm their e-mail address "
1104
- "before they may log in."
1105
  msgstr ""
1106
 
1107
  #: modules/user-moderation/admin/user-moderation-admin.php:190
@@ -1109,9 +959,7 @@ msgid "Admin Approval"
1109
  msgstr ""
1110
 
1111
  #: modules/user-moderation/admin/user-moderation-admin.php:191
1112
- msgid ""
1113
- "Check this option to require new users to be approved by an administrator "
1114
- "before they may log in."
1115
  msgstr ""
1116
 
1117
  #: modules/user-moderation/admin/user-moderation-admin.php:275
@@ -1134,6 +982,11 @@ msgstr ""
1134
  msgid "You have been approved access to %s"
1135
  msgstr ""
1136
 
 
 
 
 
 
1137
  #: modules/user-moderation/admin/user-moderation-admin.php:388
1138
  msgid "[%s] Registration Approved"
1139
  msgstr ""
@@ -1147,9 +1000,7 @@ msgid "[%s] Registration Denied"
1147
  msgstr ""
1148
 
1149
  #: modules/user-moderation/user-moderation.php:159
1150
- msgid ""
1151
- "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a "
1152
- "href=\"%s\">Resend activation</a>?"
1153
  msgstr ""
1154
 
1155
  #: modules/user-moderation/user-moderation.php:163
@@ -1157,17 +1008,11 @@ msgid "<strong>ERROR</strong>: Your registration has not yet been approved."
1157
  msgstr ""
1158
 
1159
  #: modules/user-moderation/user-moderation.php:202
1160
- msgid ""
1161
- "Your registration was successful but you must now confirm your email address "
1162
- "before you can log in. Please check your email and click on the link "
1163
- "provided."
1164
  msgstr ""
1165
 
1166
  #: modules/user-moderation/user-moderation.php:205
1167
- msgid ""
1168
- "Your registration was successful but you must now be approved by an "
1169
- "administrator before you can log in. You will be notified by e-mail once "
1170
- "your account has been reviewed."
1171
  msgstr ""
1172
 
1173
  #: modules/user-moderation/user-moderation.php:214
@@ -1175,8 +1020,7 @@ msgid "Your account has been activated. You may now log in."
1175
  msgstr ""
1176
 
1177
  #: modules/user-moderation/user-moderation.php:216
1178
- msgid ""
1179
- "Your account has been activated. Please check your e-mail for your password."
1180
  msgstr ""
1181
 
1182
  #: modules/user-moderation/user-moderation.php:219
@@ -1188,315 +1032,331 @@ msgid "<strong>ERROR</strong>: Sorry, the activation e-mail could not be sent."
1188
  msgstr ""
1189
 
1190
  #: modules/user-moderation/user-moderation.php:230
1191
- msgid ""
1192
- "The activation e-mail has been sent to the e-mail address with which you "
1193
- "registered. Please check your email and click on the link provided."
1194
  msgstr ""
1195
 
1196
- #: modules/user-moderation/user-moderation.php:422
1197
  msgid "[%s] Activate Your Account"
1198
  msgstr ""
1199
 
1200
- #: modules/user-moderation/user-moderation.php:423
1201
- msgid ""
1202
- "Thanks for registering at %s! To complete the activation of your account "
1203
- "please click the following link: "
1204
  msgstr ""
1205
 
1206
- #: modules/user-moderation/user-moderation.php:459
1207
  msgid "[%s] New User Awaiting Approval"
1208
  msgstr ""
1209
 
1210
- #: modules/user-moderation/user-moderation.php:461
1211
  msgid "New user requires approval on your blog %s:"
1212
  msgstr ""
1213
 
1214
- #: modules/user-moderation/user-moderation.php:464
1215
- msgid "To approve or deny this user:"
1216
- msgstr ""
1217
-
1218
- #: templates/login-form.php:14 templates/profile-form.php:36
1219
- #: templates/register-form.php:13
1220
- msgid "Username"
1221
- msgstr ""
1222
-
1223
- #: templates/login-form.php:34
1224
- msgid "Remember Me"
1225
- msgstr ""
1226
-
1227
- #: templates/lostpassword-form.php:14
1228
- msgid "E-mail:"
1229
- msgstr ""
1230
-
1231
- #: templates/lostpassword-form.php:16
1232
- msgid "Username or E-mail:"
1233
- msgstr ""
1234
-
1235
- #: templates/lostpassword-form.php:24
1236
- msgid "Get New Password"
1237
- msgstr ""
1238
-
1239
- #: templates/ms-signup-another-blog-form.php:7
1240
- msgid "Get <em>another</em> %s site in seconds"
1241
- msgstr ""
1242
-
1243
- #: templates/ms-signup-another-blog-form.php:10
1244
- msgid "There was a problem, please correct the form below and try again."
1245
  msgstr ""
1246
 
1247
- #: templates/ms-signup-another-blog-form.php:13
1248
- msgid ""
1249
- "Welcome back, %s. By filling out the form below, you can <strong>add another "
1250
- "site to your account</strong>. There is no limit to the number of sites you "
1251
- "can have, so create to your heart&#8217;s content, but write responsibly!"
1252
  msgstr ""
1253
 
1254
- #: templates/ms-signup-another-blog-form.php:18
1255
- msgid "Sites you are already a member of:"
1256
  msgstr ""
1257
 
1258
- #: templates/ms-signup-another-blog-form.php:27
1259
- msgid ""
1260
- "If you&#8217;re not going to use a great site domain, leave it for a new "
1261
- "user. Now have at it!"
1262
  msgstr ""
1263
 
1264
- #: templates/ms-signup-another-blog-form.php:34
1265
- #: templates/ms-signup-blog-form.php:15
1266
- msgid "Site Name:"
1267
  msgstr ""
1268
 
1269
- #: templates/ms-signup-another-blog-form.php:36
1270
- #: templates/ms-signup-blog-form.php:17
1271
- msgid "Site Domain:"
1272
  msgstr ""
1273
 
1274
- #: templates/ms-signup-another-blog-form.php:53
1275
- #: templates/ms-signup-blog-form.php:34
1276
- msgid "sitename"
1277
  msgstr ""
1278
 
1279
- #: templates/ms-signup-another-blog-form.php:55
1280
- #: templates/ms-signup-blog-form.php:36
1281
- msgid "domain"
1282
  msgstr ""
1283
 
1284
- #: templates/ms-signup-another-blog-form.php:56
1285
- #: templates/ms-signup-blog-form.php:37
1286
- msgid "Your address will be %s."
1287
  msgstr ""
1288
 
1289
- #: templates/ms-signup-another-blog-form.php:56
1290
- #: templates/ms-signup-blog-form.php:37
1291
- msgid ""
1292
- "Must be at least 4 characters, letters and numbers only. It cannot be "
1293
- "changed, so choose carefully!"
1294
  msgstr ""
1295
 
1296
- #: templates/ms-signup-another-blog-form.php:59
1297
- #: templates/ms-signup-blog-form.php:40
1298
- msgid "Site Title:"
1299
  msgstr ""
1300
 
1301
- #: templates/ms-signup-another-blog-form.php:67
1302
- #: templates/ms-signup-blog-form.php:48
1303
- msgid "Privacy:"
1304
  msgstr ""
1305
 
1306
- #: templates/ms-signup-another-blog-form.php:68
1307
- #: templates/ms-signup-blog-form.php:49
1308
- msgid "Allow search engines to index this site."
1309
  msgstr ""
1310
 
1311
- #: templates/ms-signup-another-blog-form.php:72
1312
- #: templates/ms-signup-blog-form.php:53
1313
- msgid "Yes"
1314
  msgstr ""
1315
 
1316
- #: templates/ms-signup-another-blog-form.php:76
1317
- #: templates/ms-signup-blog-form.php:57
1318
- msgid "No"
1319
  msgstr ""
1320
 
1321
- #: templates/ms-signup-another-blog-form.php:83
1322
- msgid "Create Site"
1323
  msgstr ""
1324
 
1325
- #: templates/ms-signup-blog-form.php:64
1326
- msgid "Signup"
1327
  msgstr ""
1328
 
1329
- #: templates/ms-signup-user-form.php:7
1330
- msgid "Get your own %s account in seconds"
1331
  msgstr ""
1332
 
1333
- #: templates/ms-signup-user-form.php:20
1334
- msgid "(Must be at least 4 characters, letters and numbers only.)"
 
1335
  msgstr ""
1336
 
1337
- #: templates/ms-signup-user-form.php:22
1338
- msgid "Email&nbsp;Address:"
 
1339
  msgstr ""
1340
 
1341
- #: templates/ms-signup-user-form.php:28
1342
- msgid ""
1343
- "We send your registration email to this address. (Double-check your email "
1344
- "address before continuing.)"
1345
  msgstr ""
1346
 
1347
- #: templates/ms-signup-user-form.php:42
1348
- msgid "Gimme a site!"
1349
  msgstr ""
1350
 
1351
- #: templates/ms-signup-user-form.php:45
1352
- msgid "Just a username, please."
1353
  msgstr ""
1354
 
1355
- #: templates/ms-signup-user-form.php:49
1356
- msgid "Next"
1357
  msgstr ""
1358
 
1359
- #: templates/profile-form.php:17
1360
- msgid "Personal Options"
1361
  msgstr ""
1362
 
1363
- #: templates/profile-form.php:21
1364
- msgid "Toolbar"
1365
  msgstr ""
1366
 
1367
- #: templates/profile-form.php:24
1368
- msgid "Show Toolbar when viewing site"
1369
  msgstr ""
1370
 
1371
- #: templates/profile-form.php:32
1372
- msgid "Name"
1373
  msgstr ""
1374
 
1375
- #: templates/profile-form.php:37
1376
- msgid "Usernames cannot be changed."
1377
  msgstr ""
1378
 
1379
- #: templates/profile-form.php:41
1380
- msgid "First Name"
 
 
1381
  msgstr ""
1382
 
1383
- #: templates/profile-form.php:46
1384
- msgid "Last Name"
 
 
 
 
 
 
 
1385
  msgstr ""
1386
 
1387
- #: templates/profile-form.php:51
1388
- msgid "Nickname"
 
 
 
 
 
 
 
1389
  msgstr ""
1390
 
1391
- #: templates/profile-form.php:51 templates/profile-form.php:96
1392
- msgid "(required)"
 
 
 
 
 
 
 
1393
  msgstr ""
1394
 
1395
- #: templates/profile-form.php:56
1396
- msgid "Display name publicly as"
 
 
 
 
 
 
 
1397
  msgstr ""
1398
 
1399
- #: templates/profile-form.php:92
1400
- msgid "Contact Info"
 
 
 
 
 
 
 
1401
  msgstr ""
1402
 
1403
- #: templates/profile-form.php:104
1404
- msgid ""
1405
- "There is a pending change of your e-mail to %1$s. <a href=\"%2$s\">Cancel</a>"
 
 
 
 
 
 
1406
  msgstr ""
1407
 
1408
- #: templates/profile-form.php:113
1409
- msgid "Website"
 
 
 
 
 
 
 
1410
  msgstr ""
1411
 
1412
- #: templates/profile-form.php:129
1413
- msgid "About Yourself"
 
 
 
 
 
 
 
1414
  msgstr ""
1415
 
1416
- #: templates/profile-form.php:133
1417
- msgid "Biographical Info"
 
 
 
 
 
 
 
1418
  msgstr ""
1419
 
1420
- #: templates/profile-form.php:135
1421
- msgid ""
1422
- "Share a little biographical information to fill out your profile. This may "
1423
- "be shown publicly."
1424
  msgstr ""
1425
 
1426
- #: templates/profile-form.php:144
1427
- msgid "Account Management"
 
 
1428
  msgstr ""
1429
 
1430
- #: templates/profile-form.php:147
1431
- msgid "New Password"
 
 
1432
  msgstr ""
1433
 
1434
- #: templates/profile-form.php:150
1435
- msgid "Generate Password"
1436
  msgstr ""
1437
 
1438
- #: templates/profile-form.php:156
1439
- msgid "Hide password"
1440
  msgstr ""
1441
 
1442
- #: templates/profile-form.php:158
1443
- msgid "Hide"
1444
  msgstr ""
1445
 
1446
- #: templates/profile-form.php:160
1447
- msgid "Cancel password change"
1448
  msgstr ""
1449
 
1450
- #: templates/profile-form.php:161
1451
- msgid "Cancel"
1452
  msgstr ""
1453
 
1454
- #: templates/profile-form.php:167
1455
- msgid "Repeat New Password"
1456
  msgstr ""
1457
 
1458
- #: templates/profile-form.php:170
1459
- msgid "Type your new password again."
1460
  msgstr ""
1461
 
1462
- #: templates/profile-form.php:178
1463
- msgid "Confirm use of weak password"
1464
  msgstr ""
1465
 
1466
- #: templates/profile-form.php:192
1467
- msgid "Update Profile"
1468
  msgstr ""
1469
 
1470
- #: templates/register-form.php:25
1471
- msgid "Registration confirmation will be e-mailed to you."
1472
  msgstr ""
1473
 
1474
- #: templates/resetpass-form.php:14
1475
- msgid "New password"
1476
  msgstr ""
1477
 
1478
- #: templates/resetpass-form.php:21
1479
- msgid "Strength indicator"
1480
  msgstr ""
1481
 
1482
- #: templates/resetpass-form.php:26
1483
- msgid "Confirm new password"
1484
  msgstr ""
1485
 
1486
- #. Plugin URI of the plugin/theme
1487
  msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1488
  msgstr ""
1489
 
1490
- #. Description of the plugin/theme
1491
- msgid ""
1492
- "Themes the WordPress login, registration and forgot password pages according "
1493
- "to your theme."
1494
  msgstr ""
1495
 
1496
- #. Author of the plugin/theme
1497
  msgid "Jeff Farthing"
1498
  msgstr ""
1499
 
1500
- #. Author URI of the plugin/theme
1501
  msgid "http://www.jfarthing.com"
1502
  msgstr ""
1
+ # Copyright (C) 2018 Theme My Login
2
  # This file is distributed under the same license as the Theme My Login package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Theme My Login 6.4.12\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/theme-my-login\n"
7
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
+ "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2018-05-18T11:24:10-04:00\n"
13
+ "PO-Revision-Date: 2018-05-18T11:24:10-04:00\n"
14
+ "X-Domain: theme-my-login\n"
15
 
16
+ #: includes/class-theme-my-login.php:126
17
+ #: includes/class-theme-my-login-template.php:173
18
+ #: templates/login-form.php:38
19
+ msgid "Log In"
20
  msgstr ""
21
 
22
+ #: includes/class-theme-my-login.php:127
23
+ msgid "Log Out"
24
  msgstr ""
25
 
26
+ #: includes/class-theme-my-login.php:128
27
+ #: includes/class-theme-my-login-widget.php:111
28
+ #: includes/class-theme-my-login-template.php:160
29
+ #: templates/register-form.php:28
30
+ msgid "Register"
31
  msgstr ""
32
 
33
+ #: includes/class-theme-my-login.php:129
34
+ #: includes/class-theme-my-login-widget.php:112
35
+ #: includes/class-theme-my-login-template.php:166
36
+ msgid "Lost Password"
37
  msgstr ""
38
 
39
+ #: includes/class-theme-my-login.php:130
40
+ #: templates/resetpass-form.php:44
41
+ #: modules/custom-email/admin/custom-email-admin.php:100
42
+ msgid "Reset Password"
43
  msgstr ""
44
 
45
+ #: includes/class-theme-my-login.php:400
46
+ msgid "Your password reset link appears to be invalid. Please request a new link below."
47
  msgstr ""
48
 
49
+ #: includes/class-theme-my-login.php:402
50
+ msgid "Your password reset link has expired. Please request a new link below."
51
  msgstr ""
52
 
53
+ #: includes/class-theme-my-login.php:440
54
+ msgid "The passwords do not match."
 
 
55
  msgstr ""
56
 
57
+ #: includes/class-theme-my-login.php:580
58
+ msgid "You are now logged out."
59
  msgstr ""
60
 
61
+ #: includes/class-theme-my-login.php:582
62
+ msgid "User registration is currently not allowed."
63
  msgstr ""
64
 
65
+ #: includes/class-theme-my-login.php:584
66
+ msgid "Check your e-mail for the confirmation link."
67
  msgstr ""
68
 
69
+ #: includes/class-theme-my-login.php:586
70
+ msgid "Your password has been reset."
71
  msgstr ""
72
 
73
+ #: includes/class-theme-my-login.php:588
74
+ msgid "Registration complete. Please check your e-mail."
75
+ msgstr ""
76
+
77
+ #: includes/class-theme-my-login.php:590
78
+ msgid "Your session has expired. Please log-in again."
79
+ msgstr ""
80
+
81
+ #: includes/class-theme-my-login.php:592
82
+ msgid "<strong>You have successfully updated WordPress!</strong> Please log back in to experience the awesomeness."
83
+ msgstr ""
84
+
85
+ #: includes/class-theme-my-login.php:594
86
+ msgid "Please log in to continue."
87
+ msgstr ""
88
+
89
+ #: includes/class-theme-my-login.php:940
90
+ msgid "<strong>ERROR</strong>: Invalid email address."
91
+ msgstr ""
92
+
93
+ #: includes/class-theme-my-login.php:1268
94
+ msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
95
+ msgstr ""
96
+
97
+ #: includes/class-theme-my-login.php:1272
98
+ msgid "<strong>ERROR</strong>: There is no user registered with that email address."
99
+ msgstr ""
100
+
101
+ #: includes/class-theme-my-login.php:1284
102
+ msgid "<strong>ERROR</strong>: Invalid username or e-mail."
103
+ msgstr ""
104
+
105
+ #: includes/class-theme-my-login.php:1297
106
+ msgid "Someone requested that the password be reset for the following account:"
107
+ msgstr ""
108
+
109
+ #: includes/class-theme-my-login.php:1299
110
+ #: modules/user-moderation/admin/user-moderation-admin.php:382
111
+ #: modules/user-moderation/user-moderation.php:461
112
+ #: modules/custom-email/custom-email.php:843
113
+ #: modules/custom-email/custom-email.php:872
114
+ msgid "Username: %s"
115
+ msgstr ""
116
+
117
+ #: includes/class-theme-my-login.php:1300
118
+ msgid "If this was a mistake, just ignore this email and nothing will happen."
119
+ msgstr ""
120
+
121
+ #: includes/class-theme-my-login.php:1301
122
+ msgid "To reset your password, visit the following address:"
123
+ msgstr ""
124
+
125
+ #: includes/class-theme-my-login.php:1312
126
+ msgid "[%s] Password Reset"
127
+ msgstr ""
128
+
129
+ #: includes/class-theme-my-login.php:1318
130
+ #: modules/user-moderation/admin/user-moderation-admin.php:252
131
+ #: modules/user-moderation/admin/user-moderation-admin.php:394
132
+ #: modules/user-moderation/admin/user-moderation-admin.php:436
133
+ msgid "The e-mail could not be sent."
134
+ msgstr ""
135
+
136
+ #: includes/class-theme-my-login.php:1318
137
+ #: modules/user-moderation/admin/user-moderation-admin.php:252
138
+ #: modules/user-moderation/admin/user-moderation-admin.php:394
139
+ #: modules/user-moderation/admin/user-moderation-admin.php:436
140
+ msgid "Possible reason: your host may have disabled the mail() function..."
141
+ msgstr ""
142
+
143
+ #: includes/class-theme-my-login-widget.php:24
144
+ msgid "A login form for your blog."
145
+ msgstr ""
146
+
147
+ #. Plugin Name of the plugin
148
+ #: includes/class-theme-my-login-widget.php:26
149
+ msgid "Theme My Login"
150
+ msgstr ""
151
+
152
+ #: includes/class-theme-my-login-widget.php:110
153
+ msgid "Login"
154
+ msgstr ""
155
+
156
+ #: includes/class-theme-my-login-widget.php:115
157
+ msgid "Default Action"
158
+ msgstr ""
159
+
160
+ #: includes/class-theme-my-login-widget.php:123
161
+ msgid "Show When Logged In"
162
+ msgstr ""
163
+
164
+ #: includes/class-theme-my-login-widget.php:126
165
+ msgid "Show When Logged Out"
166
+ msgstr ""
167
+
168
+ #: includes/class-theme-my-login-widget.php:129
169
+ msgid "Show Title"
170
+ msgstr ""
171
+
172
+ #: includes/class-theme-my-login-widget.php:132
173
+ msgid "Show Login Link"
174
  msgstr ""
175
 
176
+ #: includes/class-theme-my-login-widget.php:135
177
+ msgid "Show Register Link"
 
178
  msgstr ""
179
 
180
+ #: includes/class-theme-my-login-widget.php:138
181
+ msgid "Show Lost Password Link"
 
182
  msgstr ""
183
 
184
+ #: includes/class-theme-my-login-widget.php:141
185
+ msgid "Show Gravatar"
 
186
  msgstr ""
187
 
188
+ #: includes/class-theme-my-login-widget.php:143
189
+ msgid "Gravatar Size"
 
190
  msgstr ""
191
 
192
  #: includes/class-theme-my-login-ms-signup.php:110
193
+ msgid "Greetings Site Administrator! You are currently allowing &#8220;%s&#8221; registrations. To change or disable registration go to your <a href=\"%s\">Options page</a>."
 
 
 
194
  msgstr ""
195
 
196
  #: includes/class-theme-my-login-ms-signup.php:116
198
  msgstr ""
199
 
200
  #: includes/class-theme-my-login-ms-signup.php:118
201
+ msgid "You must first <a href=\"%s\">log in</a>, and then you can create a new site."
 
202
  msgstr ""
203
 
204
  #: includes/class-theme-my-login-ms-signup.php:142
206
  msgstr ""
207
 
208
  #: includes/class-theme-my-login-ms-signup.php:143
209
+ msgid "But, before you can start using your new username, <strong>you must activate it</strong>."
 
 
210
  msgstr ""
211
 
212
  #: includes/class-theme-my-login-ms-signup.php:144
214
  msgstr ""
215
 
216
  #: includes/class-theme-my-login-ms-signup.php:145
217
+ msgid "If you do not activate your username within two days, you will have to sign up again."
 
 
218
  msgstr ""
219
 
220
  #: includes/class-theme-my-login-ms-signup.php:149
226
  msgstr ""
227
 
228
  #: includes/class-theme-my-login-ms-signup.php:183
229
+ msgid "But, before you can start using your site, <strong>you must activate it</strong>."
 
 
230
  msgstr ""
231
 
232
  #: includes/class-theme-my-login-ms-signup.php:184
234
  msgstr ""
235
 
236
  #: includes/class-theme-my-login-ms-signup.php:185
237
+ msgid "If you do not activate your site within two days, you will have to sign up again."
 
 
238
  msgstr ""
239
 
240
  #: includes/class-theme-my-login-ms-signup.php:186
242
  msgstr ""
243
 
244
  #: includes/class-theme-my-login-ms-signup.php:188
245
+ msgid "If you haven&#8217;t received your email yet, there are a number of things you can do:"
 
 
246
  msgstr ""
247
 
248
  #: includes/class-theme-my-login-ms-signup.php:190
249
+ msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control."
 
 
250
  msgstr ""
251
 
252
  #: includes/class-theme-my-login-ms-signup.php:191
253
+ msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake."
 
 
254
  msgstr ""
255
 
256
  #: includes/class-theme-my-login-ms-signup.php:192
257
+ msgid "Have you entered your email correctly? You have entered %s, if it&#8217;s incorrect, you will not receive your email."
 
 
258
  msgstr ""
259
 
260
  #: includes/class-theme-my-login-ms-signup.php:198
266
  msgstr ""
267
 
268
  #: includes/class-theme-my-login-ms-signup.php:224
269
+ msgid "<a href=\"http://%1$s\">http://%2$s</a> is your new site. <a href=\"%3$s\">Log in</a> as &#8220;%4$s&#8221; using your existing password."
 
 
270
  msgstr ""
271
 
272
  #: includes/class-theme-my-login-ms-signup.php:240
278
  msgstr ""
279
 
280
  #: includes/class-theme-my-login-ms-signup.php:248
281
+ msgid "<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>"
 
 
282
  msgstr ""
283
 
284
  #: includes/class-theme-my-login-ms-signup.php:250
285
+ msgid "<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>"
 
 
286
  msgstr ""
287
 
288
  #: includes/class-theme-my-login-ms-signup.php:392
304
  msgstr ""
305
 
306
  #: includes/class-theme-my-login-ms-signup.php:415
307
+ msgid "Your account has been activated. You may now <a href=\"%1$s\">login</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%4$s\">reset your password</a>."
 
 
 
 
 
 
308
  msgstr ""
309
 
310
  #: includes/class-theme-my-login-ms-signup.php:417
311
+ msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a>."
 
 
 
 
 
 
312
  msgstr ""
313
 
314
  #: includes/class-theme-my-login-ms-signup.php:422
326
  msgstr ""
327
 
328
  #: includes/class-theme-my-login-ms-signup.php:439
329
+ msgid "Your account is now activated. <a href=\"%1$s\">View your site</a> or <a href=\"%2$s\">Login</a>"
 
 
330
  msgstr ""
331
 
332
  #: includes/class-theme-my-login-ms-signup.php:441
333
+ msgid "Your account is now activated. <a href=\"%1$s\">Login</a> or go back to the <a href=\"%2$s\">homepage</a>."
 
 
334
  msgstr ""
335
 
336
+ #: includes/class-theme-my-login-template.php:153
337
  msgid "Welcome, %s"
338
  msgstr ""
339
 
340
+ #: includes/class-theme-my-login-template.php:169
341
+ msgid "Your Data Request"
 
 
 
 
 
 
 
 
 
 
 
 
 
342
  msgstr ""
343
 
344
+ #: includes/class-theme-my-login-template.php:354
345
  #: modules/custom-user-links/custom-user-links.php:61
346
  msgid "Dashboard"
347
  msgstr ""
348
 
349
+ #: includes/class-theme-my-login-template.php:357
350
  #: modules/custom-user-links/custom-user-links.php:65
351
  msgid "Profile"
352
  msgstr ""
353
 
354
+ #: includes/class-theme-my-login-template.php:406
355
  msgid "Register For This Site"
356
  msgstr ""
357
 
358
+ #: includes/class-theme-my-login-template.php:409
359
+ msgid "Please enter your username or email address. You will receive a link to create a new password via email."
 
 
360
  msgstr ""
361
 
362
+ #: includes/class-theme-my-login-template.php:412
363
  msgid "Enter your new password below."
364
  msgstr ""
365
 
366
+ #: admin/class-theme-my-login-admin.php:68
367
+ #: admin/class-theme-my-login-admin.php:133
368
+ msgid "Theme My Login Settings"
369
  msgstr ""
370
 
371
+ #: admin/class-theme-my-login-admin.php:69
372
+ msgid "TML"
 
 
373
  msgstr ""
374
 
375
+ #: admin/class-theme-my-login-admin.php:77
376
+ #: admin/class-theme-my-login-admin.php:78
377
+ #: admin/class-theme-my-login-admin.php:103
378
+ msgid "General"
379
  msgstr ""
380
 
381
+ #: admin/class-theme-my-login-admin.php:104
382
+ #: admin/class-theme-my-login-admin.php:109
383
+ msgid "Modules"
384
  msgstr ""
385
 
386
+ #: admin/class-theme-my-login-admin.php:107
387
+ msgid "Stylesheet"
388
  msgstr ""
389
 
390
+ #: admin/class-theme-my-login-admin.php:108
391
+ msgid "Login Type"
392
  msgstr ""
393
 
394
+ #: admin/class-theme-my-login-admin.php:161
395
+ msgid "Enable \"theme-my-login.css\""
396
  msgstr ""
397
 
398
+ #: admin/class-theme-my-login-admin.php:162
399
+ msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
400
  msgstr ""
401
 
402
+ #: admin/class-theme-my-login-admin.php:178
403
+ #: templates/login-form.php:18
404
+ msgid "Username or E-mail"
405
  msgstr ""
406
 
407
+ #: admin/class-theme-my-login-admin.php:181
408
+ msgid "Username only"
409
  msgstr ""
410
 
411
+ #: admin/class-theme-my-login-admin.php:184
412
+ msgid "E-mail only"
413
  msgstr ""
414
 
415
+ #: admin/class-theme-my-login-admin.php:188
416
+ msgid "Allow users to login using their username and/or e-mail address."
417
  msgstr ""
418
 
419
+ #: admin/class-theme-my-login-admin.php:204
420
+ msgid "Enable %s"
421
  msgstr ""
422
 
423
+ #: templates/resetpass-form.php:14
424
+ msgid "New password"
 
 
425
  msgstr ""
426
 
427
+ #: templates/resetpass-form.php:24
428
+ msgid "Strength indicator"
 
 
429
  msgstr ""
430
 
431
+ #: templates/resetpass-form.php:29
432
+ #: templates/profile-form.php:181
433
+ msgid "Confirm use of weak password"
434
  msgstr ""
435
 
436
+ #: templates/resetpass-form.php:35
437
+ msgid "Confirm new password"
438
  msgstr ""
439
 
440
+ #: templates/ms-signup-blog-form.php:15
441
+ #: templates/ms-signup-another-blog-form.php:34
442
+ msgid "Site Name:"
443
  msgstr ""
444
 
445
+ #: templates/ms-signup-blog-form.php:17
446
+ #: templates/ms-signup-another-blog-form.php:36
447
+ msgid "Site Domain:"
448
  msgstr ""
449
 
450
+ #: templates/ms-signup-blog-form.php:34
451
+ #: templates/ms-signup-another-blog-form.php:53
452
+ msgid "sitename"
453
  msgstr ""
454
 
455
+ #: templates/ms-signup-blog-form.php:36
456
+ #: templates/ms-signup-another-blog-form.php:55
457
+ msgid "domain"
458
  msgstr ""
459
 
460
+ #: templates/ms-signup-blog-form.php:37
461
+ #: templates/ms-signup-another-blog-form.php:56
462
+ msgid "Your address will be %s."
463
  msgstr ""
464
 
465
+ #: templates/ms-signup-blog-form.php:37
466
+ #: templates/ms-signup-another-blog-form.php:56
467
+ msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!"
468
  msgstr ""
469
 
470
+ #: templates/ms-signup-blog-form.php:40
471
+ #: templates/ms-signup-another-blog-form.php:59
472
+ msgid "Site Title:"
 
473
  msgstr ""
474
 
475
+ #: templates/ms-signup-blog-form.php:48
476
+ #: templates/ms-signup-another-blog-form.php:67
477
+ msgid "Privacy:"
478
  msgstr ""
479
 
480
+ #: templates/ms-signup-blog-form.php:49
481
+ #: templates/ms-signup-another-blog-form.php:68
482
+ msgid "Allow search engines to index this site."
483
  msgstr ""
484
 
485
+ #: templates/ms-signup-blog-form.php:53
486
+ #: templates/ms-signup-another-blog-form.php:72
487
+ msgid "Yes"
488
  msgstr ""
489
 
490
+ #: templates/ms-signup-blog-form.php:57
491
+ #: templates/ms-signup-another-blog-form.php:76
492
+ msgid "No"
493
  msgstr ""
494
 
495
+ #: templates/ms-signup-blog-form.php:64
496
+ msgid "Signup"
497
  msgstr ""
498
 
499
+ #: templates/ms-signup-user-form.php:7
500
+ msgid "Get your own %s account in seconds"
501
  msgstr ""
502
 
503
+ #: templates/ms-signup-user-form.php:20
504
+ msgid "(Must be at least 4 characters, letters and numbers only.)"
 
 
 
 
505
  msgstr ""
506
 
507
+ #: templates/ms-signup-user-form.php:22
508
+ msgid "Email&nbsp;Address:"
509
  msgstr ""
510
 
511
+ #: templates/ms-signup-user-form.php:28
512
+ msgid "We send your registration email to this address. (Double-check your email address before continuing.)"
513
  msgstr ""
514
 
515
+ #: templates/ms-signup-user-form.php:42
516
+ msgid "Gimme a site!"
517
  msgstr ""
518
 
519
+ #: templates/ms-signup-user-form.php:45
520
+ msgid "Just a username, please."
 
 
 
521
  msgstr ""
522
 
523
+ #: templates/ms-signup-user-form.php:49
524
+ msgid "Next"
 
 
 
525
  msgstr ""
526
 
527
+ #: templates/register-form.php:13
528
+ #: templates/profile-form.php:39
529
+ #: templates/login-form.php:14
530
+ msgid "Username"
531
  msgstr ""
532
 
 
 
533
  #: templates/register-form.php:19
534
+ #: templates/profile-form.php:99
535
+ #: templates/login-form.php:16
536
+ #: modules/custom-email/admin/custom-email-admin.php:91
537
  msgid "E-mail"
538
  msgstr ""
539
 
540
+ #: templates/register-form.php:25
541
+ msgid "Registration confirmation will be e-mailed to you."
542
  msgstr ""
543
 
544
+ #: templates/profile-form.php:17
545
+ msgid "Personal Options"
546
  msgstr ""
547
 
548
+ #: templates/profile-form.php:22
549
+ msgid "Toolbar"
550
  msgstr ""
551
 
552
+ #: templates/profile-form.php:25
553
+ msgid "Show Toolbar when viewing site"
554
  msgstr ""
555
 
556
+ #: templates/profile-form.php:35
557
+ msgid "Name"
558
  msgstr ""
559
 
560
+ #: templates/profile-form.php:40
561
+ msgid "Usernames cannot be changed."
562
  msgstr ""
563
 
564
+ #: templates/profile-form.php:44
565
+ msgid "First Name"
566
  msgstr ""
567
 
568
+ #: templates/profile-form.php:49
569
+ msgid "Last Name"
570
  msgstr ""
571
 
572
+ #: templates/profile-form.php:54
573
+ msgid "Nickname"
 
 
 
 
574
  msgstr ""
575
 
576
+ #: templates/profile-form.php:54
577
+ #: templates/profile-form.php:99
578
+ msgid "(required)"
 
 
 
 
 
 
579
  msgstr ""
580
 
581
+ #: templates/profile-form.php:59
582
+ msgid "Display name publicly as"
 
 
 
 
 
 
 
583
  msgstr ""
584
 
585
+ #: templates/profile-form.php:95
586
+ msgid "Contact Info"
 
 
 
 
 
 
 
587
  msgstr ""
588
 
589
+ #: templates/profile-form.php:107
590
+ msgid "There is a pending change of your e-mail to %1$s. <a href=\"%2$s\">Cancel</a>"
 
 
 
 
 
 
 
591
  msgstr ""
592
 
593
+ #: templates/profile-form.php:116
594
+ msgid "Website"
 
 
 
 
 
 
 
595
  msgstr ""
596
 
597
+ #: templates/profile-form.php:132
598
+ msgid "About Yourself"
 
 
 
 
 
 
 
599
  msgstr ""
600
 
601
+ #: templates/profile-form.php:136
602
+ msgid "Biographical Info"
 
 
 
 
 
 
 
603
  msgstr ""
604
 
605
+ #: templates/profile-form.php:138
606
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
 
 
 
 
 
 
 
607
  msgstr ""
608
 
609
+ #: templates/profile-form.php:147
610
+ msgid "Account Management"
 
 
 
 
 
 
 
611
  msgstr ""
612
 
613
+ #: templates/profile-form.php:150
614
+ msgid "New Password"
 
 
 
615
  msgstr ""
616
 
617
+ #: templates/profile-form.php:153
618
+ msgid "Generate Password"
 
 
619
  msgstr ""
620
 
621
+ #: templates/profile-form.php:159
622
+ msgid "Hide password"
 
 
623
  msgstr ""
624
 
625
+ #: templates/profile-form.php:161
626
+ msgid "Hide"
 
 
627
  msgstr ""
628
 
629
+ #: templates/profile-form.php:163
630
+ msgid "Cancel password change"
 
 
 
631
  msgstr ""
632
 
633
+ #: templates/profile-form.php:164
634
+ msgid "Cancel"
 
 
635
  msgstr ""
636
 
637
+ #: templates/profile-form.php:170
638
+ msgid "Repeat New Password"
 
 
639
  msgstr ""
640
 
641
+ #: templates/profile-form.php:173
642
+ msgid "Type your new password again."
 
 
643
  msgstr ""
644
 
645
+ #: templates/profile-form.php:177
646
+ #: modules/custom-passwords/custom-passwords.php:73
647
+ msgid "Confirm Password"
 
 
648
  msgstr ""
649
 
650
+ #: templates/profile-form.php:195
651
+ msgid "Update Profile"
 
 
 
652
  msgstr ""
653
 
654
+ #: templates/ms-signup-another-blog-form.php:7
655
+ msgid "Get <em>another</em> %s site in seconds"
656
  msgstr ""
657
 
658
+ #: templates/ms-signup-another-blog-form.php:10
659
+ msgid "There was a problem, please correct the form below and try again."
660
  msgstr ""
661
 
662
+ #: templates/ms-signup-another-blog-form.php:13
663
+ msgid "Welcome back, %s. By filling out the form below, you can <strong>add another site to your account</strong>. There is no limit to the number of sites you can have, so create to your heart&#8217;s content, but write responsibly!"
 
664
  msgstr ""
665
 
666
+ #: templates/ms-signup-another-blog-form.php:18
667
+ msgid "Sites you are already a member of:"
668
  msgstr ""
669
 
670
+ #: templates/ms-signup-another-blog-form.php:27
671
+ msgid "If you&#8217;re not going to use a great site domain, leave it for a new user. Now have at it!"
 
672
  msgstr ""
673
 
674
+ #: templates/ms-signup-another-blog-form.php:83
675
+ msgid "Create Site"
676
  msgstr ""
677
 
678
+ #: templates/lostpassword-form.php:14
679
+ msgid "E-mail:"
680
  msgstr ""
681
 
682
+ #: templates/lostpassword-form.php:16
683
+ msgid "Username or E-mail:"
684
+ msgstr ""
685
+
686
+ #: templates/lostpassword-form.php:24
687
+ msgid "Get New Password"
688
  msgstr ""
689
 
 
690
  #: templates/login-form.php:25
691
+ #: modules/custom-passwords/custom-passwords.php:69
692
  msgid "Password"
693
  msgstr ""
694
 
695
+ #: templates/login-form.php:34
696
+ msgid "Remember Me"
 
 
 
 
 
 
 
 
 
697
  msgstr ""
698
 
699
+ #: modules/themed-profiles/admin/themed-profiles-admin.php:73
700
+ msgid "Your Profile"
701
  msgstr ""
702
 
703
+ #: modules/themed-profiles/admin/themed-profiles-admin.php:108
704
+ #: modules/themed-profiles/admin/themed-profiles-admin.php:143
705
+ msgid "Theme My Login Themed Profiles Settings"
706
  msgstr ""
707
 
708
+ #: modules/themed-profiles/admin/themed-profiles-admin.php:109
709
+ #: modules/themed-profiles/admin/themed-profiles-admin.php:117
710
+ msgid "Themed Profiles"
711
  msgstr ""
712
 
713
+ #: modules/themed-profiles/admin/themed-profiles-admin.php:118
714
+ msgid "Restrict Admin Access"
 
 
715
  msgstr ""
716
 
717
+ #: modules/themed-profiles/themed-profiles.php:257
718
+ msgid "You do not have permission to edit this user."
 
 
719
  msgstr ""
720
 
721
+ #: modules/themed-profiles/themed-profiles.php:294
722
+ msgid "Profile updated."
723
  msgstr ""
724
 
725
  #: modules/custom-redirection/admin/custom-redirection-admin.php:86
731
  msgid "Redirection"
732
  msgstr ""
733
 
 
 
 
 
734
  #: modules/custom-redirection/admin/custom-redirection-admin.php:168
735
  #: modules/custom-redirection/admin/custom-redirection-admin.php:182
736
  msgid "Default"
737
  msgstr ""
738
 
739
  #: modules/custom-redirection/admin/custom-redirection-admin.php:169
740
+ msgid "Check this option to send the user to their WordPress Dashboard/Profile."
 
741
  msgstr ""
742
 
743
  #: modules/custom-redirection/admin/custom-redirection-admin.php:171
746
  msgstr ""
747
 
748
  #: modules/custom-redirection/admin/custom-redirection-admin.php:172
749
+ msgid "Check this option to send the user back to the page they were visiting before logging in."
 
 
750
  msgstr ""
751
 
752
  #: modules/custom-redirection/admin/custom-redirection-admin.php:176
753
  #: modules/custom-redirection/admin/custom-redirection-admin.php:190
754
+ msgid "Check this option to send the user to a custom location, specified by the textbox above."
 
 
 
 
 
 
755
  msgstr ""
756
 
757
  #: modules/custom-redirection/admin/custom-redirection-admin.php:183
758
+ msgid "Check this option to send the user to the log in page, displaying a message that they have successfully logged out."
 
 
759
  msgstr ""
760
 
761
  #: modules/custom-redirection/admin/custom-redirection-admin.php:186
762
+ msgid "Check this option to send the user back to the page they were visiting before logging out. (Note: If the previous page being visited was an admin page, this can have unexpected results.)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
763
  msgstr ""
764
 
765
  #: modules/security/admin/security-admin.php:89
804
  msgstr ""
805
 
806
  #: modules/security/admin/security-admin.php:190
807
+ msgid "After %1$s failed login attempts within %2$s %3$s, lockout the account for %4$s %5$s."
 
 
808
  msgstr ""
809
 
810
  #: modules/security/admin/security-admin.php:241
834
  msgid "Your account has been unlocked. You may now log in."
835
  msgstr ""
836
 
837
+ #: modules/security/security.php:185
838
+ #: modules/security/security.php:188
839
+ #: modules/security/security.php:191
840
+ #: modules/security/security.php:194
841
+ #: modules/user-moderation/user-moderation.php:345
842
+ #: modules/user-moderation/user-moderation.php:348
843
+ #: modules/user-moderation/user-moderation.php:353
844
  msgid "Invalid key"
845
  msgstr ""
846
 
847
+ #: modules/security/security.php:227
848
+ #: modules/security/security.php:250
849
+ msgid "<strong>ERROR</strong>: This account has been locked because of too many failed login attempts. You may try again in %s."
 
850
  msgstr ""
851
 
852
  #: modules/security/security.php:229
865
  msgid "Date"
866
  msgstr ""
867
 
868
+ #: modules/security/security.php:302
869
+ #: modules/security/security.php:605
870
  msgid "Y/m/d g:i:s A"
871
  msgstr ""
872
 
883
  msgstr ""
884
 
885
  #: modules/security/security.php:598
886
+ msgid "For your security, your account has been locked because of too many failed login attempts. To unlock your account please click the following link: "
 
 
887
  msgstr ""
888
 
889
  #: modules/security/security.php:603
890
  msgid "The following attempts resulted in the lock:"
891
  msgstr ""
892
 
893
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:94
894
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:144
895
+ msgid "Theme My Login Custom User Links Settings"
896
  msgstr ""
897
 
898
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:95
899
+ msgid "User Links"
 
900
  msgstr ""
901
 
902
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:181
903
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:231
904
+ msgid "Title"
905
  msgstr ""
906
 
907
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:182
908
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:232
909
+ msgid "URL"
910
  msgstr ""
911
 
912
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:205
913
+ msgid "Add Link"
914
  msgstr ""
915
 
916
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:235
917
+ msgid "Delete"
918
+ msgstr ""
919
+
920
+ #: modules/custom-user-links/admin/custom-user-links-admin.php:237
921
+ msgid "Update"
922
  msgstr ""
923
 
924
  #: modules/user-moderation/admin/user-moderation-admin.php:86
951
  msgstr ""
952
 
953
  #: modules/user-moderation/admin/user-moderation-admin.php:187
954
+ msgid "Check this option to require new users to confirm their e-mail address before they may log in."
 
 
955
  msgstr ""
956
 
957
  #: modules/user-moderation/admin/user-moderation-admin.php:190
959
  msgstr ""
960
 
961
  #: modules/user-moderation/admin/user-moderation-admin.php:191
962
+ msgid "Check this option to require new users to be approved by an administrator before they may log in."
 
 
963
  msgstr ""
964
 
965
  #: modules/user-moderation/admin/user-moderation-admin.php:275
982
  msgid "You have been approved access to %s"
983
  msgstr ""
984
 
985
+ #: modules/user-moderation/admin/user-moderation-admin.php:383
986
+ #: modules/custom-email/custom-email.php:873
987
+ msgid "To set your password, visit the following address:"
988
+ msgstr ""
989
+
990
  #: modules/user-moderation/admin/user-moderation-admin.php:388
991
  msgid "[%s] Registration Approved"
992
  msgstr ""
1000
  msgstr ""
1001
 
1002
  #: modules/user-moderation/user-moderation.php:159
1003
+ msgid "<strong>ERROR</strong>: You have not yet confirmed your e-mail address. <a href=\"%s\">Resend activation</a>?"
 
 
1004
  msgstr ""
1005
 
1006
  #: modules/user-moderation/user-moderation.php:163
1008
  msgstr ""
1009
 
1010
  #: modules/user-moderation/user-moderation.php:202
1011
+ msgid "Your registration was successful but you must now confirm your email address before you can log in. Please check your email and click on the link provided."
 
 
 
1012
  msgstr ""
1013
 
1014
  #: modules/user-moderation/user-moderation.php:205
1015
+ msgid "Your registration was successful but you must now be approved by an administrator before you can log in. You will be notified by e-mail once your account has been reviewed."
 
 
 
1016
  msgstr ""
1017
 
1018
  #: modules/user-moderation/user-moderation.php:214
1020
  msgstr ""
1021
 
1022
  #: modules/user-moderation/user-moderation.php:216
1023
+ msgid "Your account has been activated. Please check your e-mail for your password."
 
1024
  msgstr ""
1025
 
1026
  #: modules/user-moderation/user-moderation.php:219
1032
  msgstr ""
1033
 
1034
  #: modules/user-moderation/user-moderation.php:230
1035
+ msgid "The activation e-mail has been sent to the e-mail address with which you registered. Please check your email and click on the link provided."
 
 
1036
  msgstr ""
1037
 
1038
+ #: modules/user-moderation/user-moderation.php:421
1039
  msgid "[%s] Activate Your Account"
1040
  msgstr ""
1041
 
1042
+ #: modules/user-moderation/user-moderation.php:422
1043
+ msgid "Thanks for registering at %s! To complete the activation of your account please click the following link: "
 
 
1044
  msgstr ""
1045
 
1046
+ #: modules/user-moderation/user-moderation.php:458
1047
  msgid "[%s] New User Awaiting Approval"
1048
  msgstr ""
1049
 
1050
+ #: modules/user-moderation/user-moderation.php:460
1051
  msgid "New user requires approval on your blog %s:"
1052
  msgstr ""
1053
 
1054
+ #: modules/user-moderation/user-moderation.php:462
1055
+ #: modules/custom-email/custom-email.php:844
1056
+ msgid "E-mail: %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1057
  msgstr ""
1058
 
1059
+ #: modules/user-moderation/user-moderation.php:463
1060
+ msgid "To approve or deny this user:"
 
 
 
1061
  msgstr ""
1062
 
1063
+ #: modules/custom-passwords/custom-passwords.php:104
1064
+ msgid "(Must be at least %d characters.)"
1065
  msgstr ""
1066
 
1067
+ #: modules/custom-passwords/custom-passwords.php:106
1068
+ msgid "Confirm Password:"
 
 
1069
  msgstr ""
1070
 
1071
+ #: modules/custom-passwords/custom-passwords.php:108
1072
+ msgid "Confirm that you've typed your password correctly."
 
1073
  msgstr ""
1074
 
1075
+ #: modules/custom-passwords/custom-passwords.php:145
1076
+ msgid "<strong>ERROR</strong>: Please enter your password twice."
 
1077
  msgstr ""
1078
 
1079
+ #: modules/custom-passwords/custom-passwords.php:149
1080
+ msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
 
1081
  msgstr ""
1082
 
1083
+ #: modules/custom-passwords/custom-passwords.php:153
1084
+ msgid "<strong>ERROR</strong>: Please enter the same password in the two password fields."
 
1085
  msgstr ""
1086
 
1087
+ #: modules/custom-passwords/custom-passwords.php:157
1088
+ msgid "<strong>ERROR</strong>: Your password must be at least %d characters in length."
 
1089
  msgstr ""
1090
 
1091
+ #: modules/custom-passwords/custom-passwords.php:286
1092
+ msgid "Registration complete. You may now log in."
 
 
 
1093
  msgstr ""
1094
 
1095
+ #: modules/recaptcha/recaptcha.php:110
1096
+ msgid "<strong>ERROR</strong>: Invalid reCAPTCHA secret key."
 
1097
  msgstr ""
1098
 
1099
+ #: modules/recaptcha/recaptcha.php:114
1100
+ msgid "<strong>ERROR</strong>: Please check the box to prove that you are not a robot."
 
1101
  msgstr ""
1102
 
1103
+ #: modules/recaptcha/recaptcha.php:118
1104
+ msgid "<strong>ERROR</strong>: Unable to reach the reCAPTCHA server."
 
1105
  msgstr ""
1106
 
1107
+ #: modules/recaptcha/admin/recaptcha-admin.php:89
1108
+ #: modules/recaptcha/admin/recaptcha-admin.php:139
1109
+ msgid "Theme My Login reCAPTCHA Settings"
1110
  msgstr ""
1111
 
1112
+ #: modules/recaptcha/admin/recaptcha-admin.php:90
1113
+ msgid "reCAPTCHA"
 
1114
  msgstr ""
1115
 
1116
+ #: modules/recaptcha/admin/recaptcha-admin.php:98
1117
+ msgid "Site Key"
1118
  msgstr ""
1119
 
1120
+ #: modules/recaptcha/admin/recaptcha-admin.php:99
1121
+ msgid "Secret Key"
1122
  msgstr ""
1123
 
1124
+ #: modules/recaptcha/admin/recaptcha-admin.php:100
1125
+ msgid "Theme"
1126
  msgstr ""
1127
 
1128
+ #: modules/recaptcha/admin/recaptcha-admin.php:123
1129
+ msgctxt "recaptcha theme"
1130
+ msgid "Light"
1131
  msgstr ""
1132
 
1133
+ #: modules/recaptcha/admin/recaptcha-admin.php:124
1134
+ msgctxt "recaptcha theme"
1135
+ msgid "Dark"
1136
  msgstr ""
1137
 
1138
+ #: modules/custom-email/admin/custom-email-admin.php:90
1139
+ #: modules/custom-email/admin/custom-email-admin.php:147
1140
+ msgid "Theme My Login Custom E-mail Settings"
 
1141
  msgstr ""
1142
 
1143
+ #: modules/custom-email/admin/custom-email-admin.php:97
1144
+ msgid "New User"
1145
  msgstr ""
1146
 
1147
+ #: modules/custom-email/admin/custom-email-admin.php:98
1148
+ msgid "New User Admin"
1149
  msgstr ""
1150
 
1151
+ #: modules/custom-email/admin/custom-email-admin.php:99
1152
+ msgid "Retrieve Password"
1153
  msgstr ""
1154
 
1155
+ #: modules/custom-email/admin/custom-email-admin.php:104
1156
+ msgid "User Activation"
1157
  msgstr ""
1158
 
1159
+ #: modules/custom-email/admin/custom-email-admin.php:105
1160
+ msgid "User Approval"
1161
  msgstr ""
1162
 
1163
+ #: modules/custom-email/admin/custom-email-admin.php:106
1164
+ msgid "User Approval Admin"
1165
  msgstr ""
1166
 
1167
+ #: modules/custom-email/admin/custom-email-admin.php:107
1168
+ msgid "User Denial"
1169
  msgstr ""
1170
 
1171
+ #: modules/custom-email/admin/custom-email-admin.php:176
1172
+ msgid "This e-mail will be sent to a new user upon registration."
1173
  msgstr ""
1174
 
1175
+ #: modules/custom-email/admin/custom-email-admin.php:177
1176
+ #: modules/custom-email/admin/custom-email-admin.php:282
1177
+ #: modules/custom-email/admin/custom-email-admin.php:436
1178
+ msgid "Please be sure to include the variable %reseturl% or else the user will not be able to recover their password!"
1179
  msgstr ""
1180
 
1181
+ #: modules/custom-email/admin/custom-email-admin.php:178
1182
+ #: modules/custom-email/admin/custom-email-admin.php:225
1183
+ #: modules/custom-email/admin/custom-email-admin.php:283
1184
+ #: modules/custom-email/admin/custom-email-admin.php:330
1185
+ #: modules/custom-email/admin/custom-email-admin.php:389
1186
+ #: modules/custom-email/admin/custom-email-admin.php:437
1187
+ #: modules/custom-email/admin/custom-email-admin.php:484
1188
+ #: modules/custom-email/admin/custom-email-admin.php:542
1189
+ msgid "If any field is left empty, the default will be used instead."
1190
  msgstr ""
1191
 
1192
+ #: modules/custom-email/admin/custom-email-admin.php:182
1193
+ #: modules/custom-email/admin/custom-email-admin.php:233
1194
+ #: modules/custom-email/admin/custom-email-admin.php:287
1195
+ #: modules/custom-email/admin/custom-email-admin.php:338
1196
+ #: modules/custom-email/admin/custom-email-admin.php:393
1197
+ #: modules/custom-email/admin/custom-email-admin.php:441
1198
+ #: modules/custom-email/admin/custom-email-admin.php:492
1199
+ #: modules/custom-email/admin/custom-email-admin.php:546
1200
+ msgid "From Name"
1201
  msgstr ""
1202
 
1203
+ #: modules/custom-email/admin/custom-email-admin.php:186
1204
+ #: modules/custom-email/admin/custom-email-admin.php:237
1205
+ #: modules/custom-email/admin/custom-email-admin.php:291
1206
+ #: modules/custom-email/admin/custom-email-admin.php:342
1207
+ #: modules/custom-email/admin/custom-email-admin.php:397
1208
+ #: modules/custom-email/admin/custom-email-admin.php:445
1209
+ #: modules/custom-email/admin/custom-email-admin.php:496
1210
+ #: modules/custom-email/admin/custom-email-admin.php:550
1211
+ msgid "From E-mail"
1212
  msgstr ""
1213
 
1214
+ #: modules/custom-email/admin/custom-email-admin.php:190
1215
+ #: modules/custom-email/admin/custom-email-admin.php:241
1216
+ #: modules/custom-email/admin/custom-email-admin.php:295
1217
+ #: modules/custom-email/admin/custom-email-admin.php:346
1218
+ #: modules/custom-email/admin/custom-email-admin.php:401
1219
+ #: modules/custom-email/admin/custom-email-admin.php:449
1220
+ #: modules/custom-email/admin/custom-email-admin.php:500
1221
+ #: modules/custom-email/admin/custom-email-admin.php:554
1222
+ msgid "E-mail Format"
1223
  msgstr ""
1224
 
1225
+ #: modules/custom-email/admin/custom-email-admin.php:193
1226
+ #: modules/custom-email/admin/custom-email-admin.php:244
1227
+ #: modules/custom-email/admin/custom-email-admin.php:298
1228
+ #: modules/custom-email/admin/custom-email-admin.php:349
1229
+ #: modules/custom-email/admin/custom-email-admin.php:404
1230
+ #: modules/custom-email/admin/custom-email-admin.php:452
1231
+ #: modules/custom-email/admin/custom-email-admin.php:503
1232
+ #: modules/custom-email/admin/custom-email-admin.php:557
1233
+ msgid "Plain Text"
1234
  msgstr ""
1235
 
1236
+ #: modules/custom-email/admin/custom-email-admin.php:194
1237
+ #: modules/custom-email/admin/custom-email-admin.php:245
1238
+ #: modules/custom-email/admin/custom-email-admin.php:299
1239
+ #: modules/custom-email/admin/custom-email-admin.php:350
1240
+ #: modules/custom-email/admin/custom-email-admin.php:405
1241
+ #: modules/custom-email/admin/custom-email-admin.php:453
1242
+ #: modules/custom-email/admin/custom-email-admin.php:504
1243
+ #: modules/custom-email/admin/custom-email-admin.php:558
1244
+ msgid "HTML"
1245
  msgstr ""
1246
 
1247
+ #: modules/custom-email/admin/custom-email-admin.php:199
1248
+ #: modules/custom-email/admin/custom-email-admin.php:249
1249
+ #: modules/custom-email/admin/custom-email-admin.php:304
1250
+ #: modules/custom-email/admin/custom-email-admin.php:355
1251
+ #: modules/custom-email/admin/custom-email-admin.php:410
1252
+ #: modules/custom-email/admin/custom-email-admin.php:458
1253
+ #: modules/custom-email/admin/custom-email-admin.php:509
1254
+ #: modules/custom-email/admin/custom-email-admin.php:563
1255
+ msgid "Subject"
1256
  msgstr ""
1257
 
1258
+ #: modules/custom-email/admin/custom-email-admin.php:203
1259
+ #: modules/custom-email/admin/custom-email-admin.php:253
1260
+ #: modules/custom-email/admin/custom-email-admin.php:308
1261
+ #: modules/custom-email/admin/custom-email-admin.php:359
1262
+ #: modules/custom-email/admin/custom-email-admin.php:414
1263
+ #: modules/custom-email/admin/custom-email-admin.php:462
1264
+ #: modules/custom-email/admin/custom-email-admin.php:513
1265
+ #: modules/custom-email/admin/custom-email-admin.php:567
1266
+ msgid "Message"
1267
  msgstr ""
1268
 
1269
+ #: modules/custom-email/admin/custom-email-admin.php:205
1270
+ #: modules/custom-email/admin/custom-email-admin.php:255
1271
+ #: modules/custom-email/admin/custom-email-admin.php:310
1272
+ #: modules/custom-email/admin/custom-email-admin.php:361
1273
+ #: modules/custom-email/admin/custom-email-admin.php:416
1274
+ #: modules/custom-email/admin/custom-email-admin.php:464
1275
+ #: modules/custom-email/admin/custom-email-admin.php:515
1276
+ #: modules/custom-email/admin/custom-email-admin.php:569
1277
+ msgid "Available Variables"
1278
  msgstr ""
1279
 
1280
+ #: modules/custom-email/admin/custom-email-admin.php:224
1281
+ msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon new user registration."
 
 
1282
  msgstr ""
1283
 
1284
+ #: modules/custom-email/admin/custom-email-admin.php:229
1285
+ #: modules/custom-email/admin/custom-email-admin.php:334
1286
+ #: modules/custom-email/admin/custom-email-admin.php:488
1287
+ msgid "To"
1288
  msgstr ""
1289
 
1290
+ #: modules/custom-email/admin/custom-email-admin.php:263
1291
+ #: modules/custom-email/admin/custom-email-admin.php:369
1292
+ #: modules/custom-email/admin/custom-email-admin.php:523
1293
+ msgid "Disable Admin Notification"
1294
  msgstr ""
1295
 
1296
+ #: modules/custom-email/admin/custom-email-admin.php:281
1297
+ msgid "This e-mail will be sent to a user when they attempt to recover their password."
1298
  msgstr ""
1299
 
1300
+ #: modules/custom-email/admin/custom-email-admin.php:329
1301
+ msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below, upon user password change."
1302
  msgstr ""
1303
 
1304
+ #: modules/custom-email/admin/custom-email-admin.php:387
1305
+ msgid "This e-mail will be sent to a new user upon registration when \"E-mail Confirmation\" is checked for \"User Moderation\"."
1306
  msgstr ""
1307
 
1308
+ #: modules/custom-email/admin/custom-email-admin.php:388
1309
+ msgid "Please be sure to include the variable %activateurl% or else the user will not be able to activate their account!"
1310
  msgstr ""
1311
 
1312
+ #: modules/custom-email/admin/custom-email-admin.php:435
1313
+ msgid "This e-mail will be sent to a new user upon admin approval when \"Admin Approval\" is checked for \"User Moderation\"."
1314
  msgstr ""
1315
 
1316
+ #: modules/custom-email/admin/custom-email-admin.php:483
1317
+ msgid "This e-mail will be sent to the e-mail address or addresses (multiple addresses may be separated by commas) specified below upon user registration when \"Admin Approval\" is checked for \"User Moderation\"."
1318
  msgstr ""
1319
 
1320
+ #: modules/custom-email/admin/custom-email-admin.php:541
1321
+ msgid "This e-mail will be sent to a user who is deleted/denied when \"Admin Approval\" is checked for \"User Moderation\" and the user's role is \"Pending\"."
1322
  msgstr ""
1323
 
1324
+ #: modules/custom-email/admin/custom-email-admin.php:577
1325
+ msgid "Disable Notification"
1326
  msgstr ""
1327
 
1328
+ #: modules/custom-email/custom-email.php:842
1329
+ msgid "New user registration on your site %s:"
1330
  msgstr ""
1331
 
1332
+ #: modules/custom-email/custom-email.php:846
1333
+ msgid "[%s] New User Registration"
1334
  msgstr ""
1335
 
1336
+ #: modules/custom-email/custom-email.php:878
1337
+ msgid "[%s] Your username and password info"
1338
  msgstr ""
1339
 
1340
+ #: modules/custom-email/custom-email.php:906
1341
+ msgid "[%s] Password Lost/Changed"
1342
  msgstr ""
1343
 
1344
+ #: modules/custom-email/custom-email.php:907
1345
+ msgid "Password Lost and Changed for user: %s"
1346
  msgstr ""
1347
 
1348
+ #. Plugin URI of the plugin
1349
  msgid "http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/"
1350
  msgstr ""
1351
 
1352
+ #. Description of the plugin
1353
+ msgid "Themes the WordPress login, registration and forgot password pages according to your theme."
 
 
1354
  msgstr ""
1355
 
1356
+ #. Author of the plugin
1357
  msgid "Jeff Farthing"
1358
  msgstr ""
1359
 
1360
+ #. Author URI of the plugin
1361
  msgid "http://www.jfarthing.com"
1362
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: widget, login, registration, theme, custom, log in, register, sidebar, gravatar, redirection, e-mail
5
  Requires at least: 4.5
6
  Tested up to: 4.9.6
7
- Stable tag: 6.4.11
8
 
9
  Themes the WordPress login pages according to your theme.
10
 
@@ -57,6 +57,10 @@ Please visit https://wordpress.org/support/plugin/theme-my-login.
57
 
58
  == Changelog ==
59
 
 
 
 
 
60
  = 6.4.11 =
61
  * Fix fatal error when attempting to rewrite login links before `init` action
62
  * Add the test cookie functionality from wp-login.php
@@ -66,7 +70,6 @@ Please visit https://wordpress.org/support/plugin/theme-my-login.
66
  * Fix a multisite error when the main site is not ID 1
67
  * Don't allow squashing of the main instance by shortcode attribute
68
 
69
-
70
  = 6.4.10 =
71
  * Add weak password confirmation checkbox to password reset form
72
  * Introduce `tml_enforce_private_site` filter
4
  Tags: widget, login, registration, theme, custom, log in, register, sidebar, gravatar, redirection, e-mail
5
  Requires at least: 4.5
6
  Tested up to: 4.9.6
7
+ Stable tag: 6.4.12
8
 
9
  Themes the WordPress login pages according to your theme.
10
 
57
 
58
  == Changelog ==
59
 
60
+ = 6.4.12 =
61
+ * Add support for data requests
62
+ * Utilize Bootstrap 3 colors for notices
63
+
64
  = 6.4.11 =
65
  * Fix fatal error when attempting to rewrite login links before `init` action
66
  * Add the test cookie functionality from wp-login.php
70
  * Fix a multisite error when the main site is not ID 1
71
  * Don't allow squashing of the main instance by shortcode attribute
72
 
 
73
  = 6.4.10 =
74
  * Add weak password confirmation checkbox to password reset form
75
  * Introduce `tml_enforce_private_site` filter
theme-my-login.css CHANGED
@@ -9,19 +9,27 @@
9
  }
10
 
11
  .tml .error,
12
- .tml .message {
13
- color: #333;
14
- padding: 0.5em;
15
  }
16
 
17
  .tml .error {
18
- border: 1px solid #c00;
19
- background-color: #ffebe8;
 
20
  }
21
 
22
  .tml .message {
23
- border: 1px solid #e6db55;
24
- background-color: #ffffe0;
 
 
 
 
 
 
 
25
  }
26
 
27
  .tml p {
@@ -207,6 +215,10 @@
207
  }
208
 
209
  @media screen and (min-width: 768px) {
 
 
 
 
210
  .tml .tml-submit-wrap input {
211
  width: auto;
212
  }
9
  }
10
 
11
  .tml .error,
12
+ .tml .message,
13
+ .tml .success {
14
+ padding: 1em;
15
  }
16
 
17
  .tml .error {
18
+ border: 1px solid #ebccd1;
19
+ background-color: #f2dede;
20
+ color: #a94442;
21
  }
22
 
23
  .tml .message {
24
+ border: 1px solid #faebcc;
25
+ background-color: #fcf8e3;
26
+ color: #8a6d3b;
27
+ }
28
+
29
+ .tml .success {
30
+ border: 1px solid #d6e9c6;
31
+ background-color: #dff0d8;
32
+ color: #3c763d;
33
  }
34
 
35
  .tml p {
215
  }
216
 
217
  @media screen and (min-width: 768px) {
218
+ .tml {
219
+ max-width: 500px;
220
+ }
221
+
222
  .tml .tml-submit-wrap input {
223
  width: auto;
224
  }
theme-my-login.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Theme My Login
4
  Plugin URI: http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/
5
  Description: Themes the WordPress login, registration and forgot password pages according to your theme.
6
- Version: 6.4.11
7
  Author: Jeff Farthing
8
  Author URI: http://www.jfarthing.com
9
  Text Domain: theme-my-login
3
  Plugin Name: Theme My Login
4
  Plugin URI: http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/
5
  Description: Themes the WordPress login, registration and forgot password pages according to your theme.
6
+ Version: 6.4.12
7
  Author: Jeff Farthing
8
  Author URI: http://www.jfarthing.com
9
  Text Domain: theme-my-login