Custom Login Page Customizer | LoginPress - Version 1.5.6

Version Description

2021-09-07 = * Bugfix: PHP warning if footer string is empty. * Enhancement: Translations added for {Login Order} settings. * Enhancement: Updated the POT file.

Download this release

Release Info

Developer hiddenpearls
Plugin Icon 128x128 Custom Login Page Customizer | LoginPress
Version 1.5.6
Comparing to
See all releases

Code changes from version 1.5.5 to 1.5.6

classes/class-loginpress-setup.php CHANGED
@@ -193,9 +193,9 @@ class LoginPress_Settings {
193
  'type' => 'radio',
194
  'default' => 'default',
195
  'options' => array(
196
- 'default' => 'Both Username Or Email Address',
197
- 'username' => 'Only Username',
198
- 'email' => 'Only Email Address'
199
  )
200
  ),
201
  // array(
193
  'type' => 'radio',
194
  'default' => 'default',
195
  'options' => array(
196
+ 'default' => __( 'Both Username Or Email Address', 'loginpress' ),
197
+ 'username' => __( 'Only Username', 'loginpress' ),
198
+ 'email' => __( 'Only Email Address', 'loginpress' )
199
  )
200
  ),
201
  // array(
custom.php CHANGED
@@ -1631,8 +1631,10 @@ class LoginPress_Entities {
1631
  /**
1632
  * Replace the "$YEAR$" with current year if and where found.
1633
  * @since 1.5.4
 
1634
  */
1635
- if( strpos( $this->loginpress_key['login_footer_copy_right'], '$YEAR$' ) !== false ) {
 
1636
  $year = date( "Y" );
1637
  //Setting the value with current year and saving in the 'login_footer_copy_right' key
1638
  $this->loginpress_key['login_footer_copy_right'] = str_replace( '$YEAR$', $year, $this->loginpress_key['login_footer_copy_right'] );
1631
  /**
1632
  * Replace the "$YEAR$" with current year if and where found.
1633
  * @since 1.5.4
1634
+ * @version 1.5.6
1635
  */
1636
+ if( isset( $this->loginpress_key['login_footer_copy_right'] ) && ! empty( $this->loginpress_key['login_footer_copy_right'] ) && strpos( $this->loginpress_key['login_footer_copy_right'], '$YEAR$' ) !== false ) {
1637
+
1638
  $year = date( "Y" );
1639
  //Setting the value with current year and saving in the 'login_footer_copy_right' key
1640
  $this->loginpress_key['login_footer_copy_right'] = str_replace( '$YEAR$', $year, $this->loginpress_key['login_footer_copy_right'] );
languages/loginpress.pot CHANGED
@@ -3,14 +3,14 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: LoginPress - Customizing the WordPress Login\n"
6
- "POT-Creation-Date: 2019-04-25 12:53+0500\n"
7
  "PO-Revision-Date: 2018-07-13 17:43+0500\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.2\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: loginpress.php\n"
@@ -21,76 +21,79 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: classes/class-loginpress-addons.php:120
25
- #: classes/class-loginpress-addons.php:205
26
- #: classes/class-loginpress-addons.php:244
27
- #, php-format
28
- msgid "%1$s Already Installed %2$s"
29
  msgstr ""
30
 
31
- #: classes/class-loginpress-addons.php:124
32
- #: classes/class-loginpress-addons.php:210
33
- #, php-format
34
- msgid "%1$s Activate Plugin %2$s"
35
  msgstr ""
36
 
37
- #: classes/class-loginpress-addons.php:140
38
- #: classes/class-loginpress-addons.php:225
39
- #: classes/class-loginpress-addons.php:319
40
- msgid "UPGRADE NOW"
41
  msgstr ""
42
 
43
- #: classes/class-loginpress-addons.php:215
44
- #: classes/class-loginpress-addons.php:255
45
- #, php-format
46
- msgid "%1$s Install %2$s"
47
  msgstr ""
48
 
49
- #: classes/class-loginpress-addons.php:250
50
- #, php-format
51
- msgid "%3$s %1$s Activate Plugin %2$s"
52
  msgstr ""
53
 
54
- #: classes/class-loginpress-addons.php:337
 
 
 
 
 
 
 
55
  msgid "You have a lifetime license, it will never expire."
56
  msgstr ""
57
 
58
- #: classes/class-loginpress-addons.php:341
59
  #, php-format
60
  msgid "Your (%2$s) license key is valid until %s."
61
  msgstr ""
62
 
63
- #: classes/class-loginpress-addons.php:355
64
  msgid "You need to activate your license to download the following add-ons."
65
  msgstr ""
66
 
67
- #: classes/class-loginpress-addons.php:368
68
  msgid "You need to upgrade to LoginPress Pro to access these add-ons."
69
  msgstr ""
70
 
71
- #: classes/class-loginpress-addons.php:586
72
  msgid "Extend the functionality of LoginPress with these awesome Add-ons"
73
  msgstr ""
74
 
75
- #: classes/class-loginpress-custom-password.php:45
76
  #: include/customizer-strings.php:86 include/template-loginpress.php:518
77
  msgid "Password"
78
  msgstr ""
79
 
80
- #: classes/class-loginpress-custom-password.php:49
81
  msgid "Confirm Password"
82
  msgstr ""
83
 
84
- #: classes/class-loginpress-custom-password.php:70
85
  msgid "<strong>ERROR</strong>: Please enter your password twice."
86
  msgstr ""
87
 
88
- #: classes/class-loginpress-custom-password.php:74
89
  msgid ""
90
  "<strong>ERROR</strong>: Please enter the same password in the end password "
91
  "fields."
92
  msgstr ""
93
 
 
 
 
 
 
 
94
  #: classes/class-loginpress-filter-plugin.php:42
95
  #, php-format
96
  msgid "Buy %s now"
@@ -130,80 +133,80 @@ msgstr ""
130
 
131
  #: classes/class-loginpress-filter-plugin.php:220
132
  msgid ""
133
- "LoginPress Plugin by LoginPress holds a lot of customization fields to "
134
- "change the layout of the login page of WordPress. You can modify the look "
135
- "and feel of login page completely even the login error messages, forgot "
136
- "error messages, registration error messages, forget password hint message "
137
- "and many more."
138
  msgstr ""
139
 
140
- #: classes/class-loginpress-login-order.php:69 custom.php:1643
141
- #: include/customizer-strings.php:141
142
  #, php-format
143
  msgid "%1$sError:%2$s The username field is empty."
144
  msgstr ""
145
 
146
- #: classes/class-loginpress-login-order.php:71 custom.php:1645
147
- #: include/customizer-strings.php:142
148
  #, php-format
149
  msgid "%1$sError:%2$s The password field is empty."
150
  msgstr ""
151
 
152
  #: classes/class-loginpress-login-order.php:92
153
- #: include/customizer-strings.php:148
154
  #, php-format
155
  msgid "%1$sError:%2$s Invalid Email Address"
156
  msgstr ""
157
 
158
- #: classes/class-loginpress-login-order.php:114 custom.php:1639
159
- #: include/customizer-strings.php:140
160
  #, php-format
161
  msgid "%1$sError:%2$s Invalid Username."
162
  msgstr ""
163
 
164
- #: classes/class-loginpress-notifications.php:130
165
  msgid "Leave A Review?"
166
  msgstr ""
167
 
168
- #: classes/class-loginpress-notifications.php:131
169
  msgid ""
170
  "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
171
  "review on WordPress.org?"
172
  msgstr ""
173
 
174
- #: classes/class-loginpress-notifications.php:133
175
  msgid "Sure! I'd love to!"
176
  msgstr ""
177
 
178
- #: classes/class-loginpress-notifications.php:134
179
  msgid "I've already left a review"
180
  msgstr ""
181
 
182
- #: classes/class-loginpress-notifications.php:135
183
  msgid "Maybe Later"
184
  msgstr ""
185
 
186
- #: classes/class-loginpress-notifications.php:136
187
  msgid "Never show again"
188
  msgstr ""
189
 
190
- #: classes/class-loginpress-notifications.php:161
191
  msgid "Introducing LoginPress Addons!"
192
  msgstr ""
193
 
194
- #: classes/class-loginpress-notifications.php:162
195
  msgid "Extend LoginPress with these add-ons and supercharge your login pages."
196
  msgstr ""
197
 
198
- #: classes/class-loginpress-notifications.php:166
199
  msgid "Learn More"
200
  msgstr ""
201
 
202
- #: classes/class-loginpress-notifications.php:270
203
  msgid "FLAT 51% OFF"
204
  msgstr ""
205
 
206
- #: classes/class-loginpress-notifications.php:295
207
  #, php-format
208
  msgid ""
209
  "<strong>Biggest Winter Deal</strong> in the WordPress Universe! Get "
@@ -218,6 +221,21 @@ msgid ""
218
  "free version</a>"
219
  msgstr ""
220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  #: classes/class-loginpress-promo.php:9
222
  msgid "Google Fonts"
223
  msgstr ""
@@ -231,43 +249,47 @@ msgstr ""
231
  msgid "reCAPTCHA"
232
  msgstr ""
233
 
234
- #: classes/class-loginpress-settings-api.php:372 custom.php:647
 
 
 
 
235
  msgid "Choose File"
236
  msgstr ""
237
 
238
- #: classes/class-loginpress-settings-api.php:639
239
  msgid "Getting Started Video"
240
  msgstr ""
241
 
242
- #: classes/class-loginpress-settings-api.php:647
243
  msgid "Why Go Pro?"
244
  msgstr ""
245
 
246
- #: classes/class-loginpress-settings-api.php:650
247
  msgid "Secure login with Google reCaptcha"
248
  msgstr ""
249
 
250
- #: classes/class-loginpress-settings-api.php:651
251
  msgid "20+ Custom Login Themes"
252
  msgstr ""
253
 
254
- #: classes/class-loginpress-settings-api.php:652
255
  msgid "Full customization with Custom CSS & JS"
256
  msgstr ""
257
 
258
- #: classes/class-loginpress-settings-api.php:657
259
  msgid "See What's In The Pro Version"
260
  msgstr ""
261
 
262
- #: classes/class-loginpress-settings-api.php:666
263
  msgid "Plugin Support"
264
  msgstr ""
265
 
266
- #: classes/class-loginpress-settings-api.php:669
267
  msgid "Got a Question, Idea, Problem or Praise?"
268
  msgstr ""
269
 
270
- #: classes/class-loginpress-settings-api.php:671
271
  msgid "Support Request"
272
  msgstr ""
273
 
@@ -275,119 +297,136 @@ msgstr ""
275
  msgid "Default Settings Restored"
276
  msgstr ""
277
 
278
- #: classes/class-loginpress-setup.php:60 custom.php:250 loginpress.php:279
279
  msgid "LoginPress"
280
  msgstr ""
281
 
282
- #: classes/class-loginpress-setup.php:62 classes/class-loginpress-setup.php:79
 
283
  msgid "Settings"
284
  msgstr ""
285
 
286
- #: classes/class-loginpress-setup.php:64
287
  msgid "Customizer"
288
  msgstr ""
289
 
290
- #: classes/class-loginpress-setup.php:66
291
  msgid "Help"
292
  msgstr ""
293
 
294
- #: classes/class-loginpress-setup.php:68
295
  #: include/loginpress-import-export.php:13
296
  msgid "Import/Export LoginPress Settings"
297
  msgstr ""
298
 
299
- #: classes/class-loginpress-setup.php:68
300
  msgid "Import / Export"
301
  msgstr ""
302
 
303
- #: classes/class-loginpress-setup.php:70
304
  msgid "Add-Ons"
305
  msgstr ""
306
 
307
- #: classes/class-loginpress-setup.php:80
308
  #, php-format
309
  msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
310
  msgstr ""
311
 
312
- #: classes/class-loginpress-setup.php:102
313
- msgid "Upgrade to Pro for More Features"
314
- msgstr ""
315
-
316
- #: classes/class-loginpress-setup.php:127
317
  msgid "Session Expire"
318
  msgstr ""
319
 
320
- #: classes/class-loginpress-setup.php:128
321
  msgid "Set the session expiration time in minutes. e.g: 10"
322
  msgstr ""
323
 
324
- #: classes/class-loginpress-setup.php:129
325
  msgid "10"
326
  msgstr ""
327
 
328
- #: classes/class-loginpress-setup.php:152
 
 
 
 
 
 
 
 
329
  msgid "Custom Password Fields"
330
  msgstr ""
331
 
332
- #: classes/class-loginpress-setup.php:153
333
  msgid "Enable custom password fields on registration form."
334
  msgstr ""
335
 
336
- #: classes/class-loginpress-setup.php:158
337
  msgid "Login Order"
338
  msgstr ""
339
 
340
- #: classes/class-loginpress-setup.php:159
341
  msgid "Enable users to login using their username and/or email address."
342
  msgstr ""
343
 
344
- #: classes/class-loginpress-setup.php:176
 
 
 
 
 
 
 
 
 
 
 
 
345
  msgid "Reset Default Settings"
346
  msgstr ""
347
 
348
- #: classes/class-loginpress-setup.php:177
349
  msgid "Remove my custom settings."
350
  msgstr ""
351
 
352
- #: classes/class-loginpress-setup.php:213
353
  msgid "LoginPress - Rebranding your boring WordPress Login pages"
354
  msgstr ""
355
 
356
- #: classes/class-loginpress-setup.php:232
357
  #, php-format
358
- msgid "Free support is available on the %1$s plugin support forums%2$s."
359
  msgstr ""
360
 
361
- #: classes/class-loginpress-setup.php:234
362
  #, php-format
363
  msgid ""
364
  "For premium features, add-ons and priority email support, %1$s upgrade to pro"
365
  "%2$s."
366
  msgstr ""
367
 
368
- #: classes/class-loginpress-setup.php:240
369
  msgid "Download Log File"
370
  msgstr ""
371
 
372
- #: classes/class-loginpress-setup.php:296
373
  msgid "Lost Password URL"
374
  msgstr ""
375
 
376
- #: classes/class-loginpress-setup.php:297
377
  msgid ""
378
  "Use WordPress default lost password URL instead of WooCommerce custom lost "
379
  "password URL."
380
  msgstr ""
381
 
382
- #: classes/class-loginpress-setup.php:314
383
  msgid "and LoginPress page"
384
  msgstr ""
385
 
386
- #: classes/class-loginpress-setup.php:319
387
  msgid "Remove Settings on Uninstall"
388
  msgstr ""
389
 
390
- #: classes/class-loginpress-setup.php:320
391
  #, php-format
392
  msgid "This tool will remove all LoginPress settings %1$s upon uninstall."
393
  msgstr ""
@@ -400,396 +439,424 @@ msgstr ""
400
  msgid "Info:"
401
  msgstr ""
402
 
403
- #: custom.php:251
404
  msgid "Customize Your WordPress Login Page with LoginPress :)"
405
  msgstr ""
406
 
407
- #: custom.php:264
408
  msgid "Themes"
409
  msgstr ""
410
 
411
- #: custom.php:265
412
  msgid "Choose Theme"
413
  msgstr ""
414
 
415
- #: custom.php:279 custom.php:286 custom.php:496 custom.php:503
416
  msgid "Company"
417
  msgstr ""
418
 
419
- #: custom.php:280 custom.php:291 custom.php:497
420
  msgid "Persona"
421
  msgstr ""
422
 
423
- #: custom.php:281 custom.php:282 custom.php:498 custom.php:499
424
  msgid "Corporate"
425
  msgstr ""
426
 
427
- #: custom.php:283 custom.php:500
428
  msgid "Startup"
429
  msgstr ""
430
 
431
- #: custom.php:284 custom.php:501
432
  msgid "Wedding"
433
  msgstr ""
434
 
435
- #: custom.php:285 custom.php:502
436
  msgid "Wedding #2"
437
  msgstr ""
438
 
439
- #: custom.php:287 custom.php:504
440
  msgid "Bikers"
441
  msgstr ""
442
 
443
- #: custom.php:288
444
  msgid "Fitness"
445
  msgstr ""
446
 
447
- #: custom.php:289
448
  msgid "Shopping"
449
  msgstr ""
450
 
451
- #: custom.php:290
452
  msgid "Writers"
453
  msgstr ""
454
 
455
- #: custom.php:292
456
  msgid "Geek"
457
  msgstr ""
458
 
459
- #: custom.php:293
460
  msgid "Innovation"
461
  msgstr ""
462
 
463
- #: custom.php:294
464
  msgid "Photographers"
465
  msgstr ""
466
 
467
- #: custom.php:323
 
 
 
 
 
 
 
 
468
  msgid "Custom Design"
469
  msgstr ""
470
 
471
- #: custom.php:341
472
  msgid "Logo"
473
  msgstr ""
474
 
475
- #: custom.php:342
476
  msgid "Customize Your Logo Section"
477
  msgstr ""
478
 
479
- #: custom.php:362
480
  msgid "Disable Logo:"
481
  msgstr ""
482
 
483
- #: custom.php:376
484
  msgid "Logo Image:"
485
  msgstr ""
486
 
487
- #: custom.php:394
 
 
 
 
 
 
 
 
488
  msgid "Logo URL:"
489
  msgstr ""
490
 
491
- #: custom.php:394
492
- msgid "Logo Hover Title:"
493
  msgstr ""
494
 
495
  #: custom.php:422
 
 
 
 
496
  msgid "Background"
497
  msgstr ""
498
 
499
- #: custom.php:437
500
  msgid "Background Color:"
501
  msgstr ""
502
 
503
- #: custom.php:460
504
  msgid "Enable Background Image?"
505
  msgstr ""
506
 
507
- #: custom.php:475
508
  msgid "Background Image:"
509
  msgstr ""
510
 
511
- #: custom.php:480
512
  msgid "Select Image"
513
  msgstr ""
514
 
515
- #: custom.php:524
516
  msgid "Background Gallery:"
517
  msgstr ""
518
 
519
- #: custom.php:538
520
  msgid "Background Repeat:"
521
  msgstr ""
522
 
523
- #: custom.php:563
524
  msgid "Select Position:"
525
  msgstr ""
526
 
527
- #: custom.php:589
528
  msgid "Background Image Size: "
529
  msgstr ""
530
 
531
- #: custom.php:619
532
  msgid "Enable Background Video?"
533
  msgstr ""
534
 
535
- #: custom.php:637
536
  msgid "Background Video:"
537
  msgstr ""
538
 
539
- #: custom.php:642
540
  msgid "Select Video"
541
  msgstr ""
542
 
543
- #: custom.php:643
544
  msgid "Change Video"
545
  msgstr ""
546
 
547
- #: custom.php:644
548
  msgid "Default"
549
  msgstr ""
550
 
551
- #: custom.php:645
552
  msgid "Remove"
553
  msgstr ""
554
 
555
- #: custom.php:646
556
  msgid "Select File"
557
  msgstr ""
558
 
559
- #: custom.php:660
560
  msgid "Video Size:"
561
  msgstr ""
562
 
563
- #: custom.php:681
564
  msgid "Object Postion:"
565
  msgstr ""
566
 
567
- #: custom.php:686
568
  msgid "50% 50%"
569
  msgstr ""
570
 
571
- #: custom.php:704
572
  msgid "Muted Video?"
573
  msgstr ""
574
 
575
- #: custom.php:714
576
  msgid "Customize Login Form"
577
  msgstr ""
578
 
579
- #: custom.php:737
580
  msgid "Enable Form Transparency:"
581
  msgstr ""
582
 
583
- #: custom.php:751
584
  msgid "Form Background Image:"
585
  msgstr ""
586
 
587
- #: custom.php:880
588
  msgid "Customize Forget Form"
589
  msgstr ""
590
 
591
- #: custom.php:894
592
  msgid "Forget Form Background Image:"
593
  msgstr ""
594
 
595
- #: custom.php:909
596
  msgid "Forget Form Background Color:"
597
  msgstr ""
598
 
599
- #: custom.php:919
600
  msgid "Button Beauty"
601
  msgstr ""
602
 
603
- #: custom.php:950
604
  msgid "Error Messages"
605
  msgstr ""
606
 
607
- #: custom.php:981
608
  msgid "Welcome Messages"
609
  msgstr ""
610
 
611
- #: custom.php:1019
612
  msgid "Message Field Background Color:"
613
  msgstr ""
614
 
615
- #: custom.php:1131
616
  msgid "Form Footer"
617
  msgstr ""
618
 
619
- #: custom.php:1154
620
  msgid "Enable Footer Text:"
621
  msgstr ""
622
 
623
- #: custom.php:1161 include/template-loginpress.php:493
624
  #: include/template-loginpress.php:552
625
  msgid "Lost your password?"
626
  msgstr ""
627
 
628
- #: custom.php:1169
629
  msgid "Lost Password Text:"
630
  msgstr ""
631
 
632
- #: custom.php:1185
633
  msgid "Select Text Decoration:"
634
  msgstr ""
635
 
636
- #: custom.php:1206
637
  msgid "Footer Text Color:"
638
  msgstr ""
639
 
640
- #: custom.php:1221
641
  msgid "Footer Text Hover Color:"
642
  msgstr ""
643
 
644
- #: custom.php:1242
645
  msgid "Text Font Size:"
646
  msgstr ""
647
 
648
- #: custom.php:1259
649
  msgid "Footer Background Color:"
650
  msgstr ""
651
 
652
- #: custom.php:1284
653
  msgid "Enable \"Back to\" Text:"
654
  msgstr ""
655
 
656
- #: custom.php:1300
657
  msgid "\"Back to\" Text Decoration:"
658
  msgstr ""
659
 
660
- #: custom.php:1321
661
  msgid "\"Back to\" Text Color:"
662
  msgstr ""
663
 
664
- #: custom.php:1336
665
  msgid "\"Back to\" Text Hover Color:"
666
  msgstr ""
667
 
668
- #: custom.php:1357
669
  msgid "\"Back to\" Text Font Size:"
670
  msgstr ""
671
 
672
- #: custom.php:1374
673
  msgid "\"Back to\" Background Color:"
674
  msgstr ""
675
 
676
- #: custom.php:1400
677
  msgid "Enable Copyright Note:"
678
  msgstr ""
679
 
680
- #: custom.php:1404 custom.php:1545
 
 
 
 
 
 
 
 
681
  #, php-format
682
  msgid "© %1$s %2$s, All Rights Reserved."
683
  msgstr ""
684
 
685
- #: custom.php:1412
686
  msgid "Copyright Note:"
687
  msgstr ""
688
 
689
- #: custom.php:1437
 
 
 
 
 
690
  msgid ""
691
  "Show some Love. Please help others learn about this free plugin by placing "
692
  "small link in footer. Thank you very much!"
693
  msgstr ""
694
 
695
- #: custom.php:1453
696
  msgid "Love Position:"
697
  msgstr ""
698
 
699
- #: custom.php:1459
700
  msgid "Left"
701
  msgstr ""
702
 
703
- #: custom.php:1460
704
  msgid "Right"
705
  msgstr ""
706
 
707
- #: custom.php:1471
708
  msgid "Custom CSS/JS"
709
  msgstr ""
710
 
711
- #: custom.php:1484
712
  msgid "Customize CSS:"
713
  msgstr ""
714
 
715
- #: custom.php:1489
716
  #, php-format
717
  msgid ""
718
  "Custom CSS doen't make effect live. For preview please save the setting and "
719
  "visit %1$s login%2$s page or after save refresh the customizer."
720
  msgstr ""
721
 
722
- #: custom.php:1499
723
  msgid "Customize JS:"
724
  msgstr ""
725
 
726
- #: custom.php:1504
727
  #, php-format
728
  msgid ""
729
  "Custom JS doen't make effect live. For preview please save the setting and "
730
  "visit %1$s login%2$s page or after save refresh the customizer."
731
  msgstr ""
732
 
733
- #: custom.php:1528 custom.php:1530
734
  msgid "Powered by:"
735
  msgstr ""
736
 
737
- #: custom.php:1641 include/customizer-strings.php:140
738
  #, php-format
739
  msgid "%1$sError:%2$s Invalid Password."
740
  msgstr ""
741
 
742
- #: custom.php:1647 include/customizer-strings.php:143
743
  #, php-format
744
  msgid "%1$sError:%2$s The email address isn't correct.."
745
  msgstr ""
746
 
747
- #: custom.php:1649 include/customizer-strings.php:144
748
  #, php-format
749
  msgid "%1$sError:%2$s Please type your email address."
750
  msgstr ""
751
 
752
- #: custom.php:1651 include/customizer-strings.php:145
753
  #, php-format
754
  msgid ""
755
  "%1$sError:%2$s This username is already registered. Please choose another "
756
  "one."
757
  msgstr ""
758
 
759
- #: custom.php:1653 include/customizer-strings.php:146
760
  #, php-format
761
  msgid ""
762
  "%1$sError:%2$s This email is already registered, please choose another one."
763
  msgstr ""
764
 
765
- #: custom.php:1655 include/customizer-strings.php:147
766
  #, php-format
767
  msgid "%1$sError:%2$s Invalid username or email."
768
  msgstr ""
769
 
770
- #: custom.php:1730 include/template-loginpress.php:469
771
  msgid "Username"
772
  msgstr ""
773
 
774
- #: custom.php:1732
775
  msgid "Email Address"
776
  msgstr ""
777
 
778
- #: custom.php:1799 include/template-loginpress.php:370
779
- msgid ""
780
- "Please enter your username or email address. You will receive a link to "
781
- "create a new password via email."
782
- msgstr ""
783
-
784
- #: custom.php:1807 include/template-loginpress.php:465
785
- msgid "Register For This Site"
786
  msgstr ""
787
 
788
- #: custom.php:1825 custom.php:1829
789
  msgid "Your password has been reset."
790
  msgstr ""
791
 
792
- #: custom.php:1829 include/template-loginpress.php:397
793
  #: include/template-loginpress.php:491
794
  msgid "Log in"
795
  msgstr ""
@@ -803,32 +870,32 @@ msgstr ""
803
  msgid "Dismiss notification"
804
  msgstr ""
805
 
806
- #: include/class-remote-notification-client.php:701
807
  #, php-format
808
  msgid "The server response was invalid (code %s)"
809
  msgstr ""
810
 
811
- #: include/class-remote-notification-client.php:707
812
  msgid "The server response is empty"
813
  msgstr ""
814
 
815
- #: include/class-remote-notification-client.php:713
816
  msgid "Cannot decode the response content"
817
  msgstr ""
818
 
819
  #. translators: 1: Name of this plugin
820
- #: include/create-loginpress-page.php:58
821
  #, php-format
822
  msgid ""
823
  "<p>This page is used by %1$s to preview the login page in the Customizer.</p>"
824
  msgstr ""
825
 
826
- #: include/create-loginpress-page.php:63
827
  msgctxt "Page slug"
828
  msgid "loginpress"
829
  msgstr ""
830
 
831
- #: include/create-loginpress-page.php:64
832
  msgctxt "Page title"
833
  msgid "LoginPress"
834
  msgstr ""
@@ -982,11 +1049,6 @@ msgstr ""
982
  msgid "Remember me Label Color:"
983
  msgstr ""
984
 
985
- #: include/customizer-strings.php:86 include/template-loginpress.php:382
986
- #: include/template-loginpress.php:514
987
- msgid "Username or Email Address"
988
- msgstr ""
989
-
990
  #: include/customizer-strings.php:88
991
  msgid "Form Padding:"
992
  msgstr ""
@@ -1007,115 +1069,119 @@ msgstr ""
1007
  msgid "Password Label:"
1008
  msgstr ""
1009
 
1010
- #: include/customizer-strings.php:104
1011
  msgid "Button Color:"
1012
  msgstr ""
1013
 
1014
- #: include/customizer-strings.php:105
1015
  msgid "Button Border Color:"
1016
  msgstr ""
1017
 
1018
- #: include/customizer-strings.php:106
1019
  msgid "Button Color (Hover):"
1020
  msgstr ""
1021
 
1022
- #: include/customizer-strings.php:107
1023
  msgid "Button Border (Hover):"
1024
  msgstr ""
1025
 
1026
- #: include/customizer-strings.php:108
1027
  msgid "Button Box Shadow:"
1028
  msgstr ""
1029
 
1030
- #: include/customizer-strings.php:109
1031
  msgid "Button Text Color:"
1032
  msgstr ""
1033
 
1034
- #: include/customizer-strings.php:114
 
 
 
 
1035
  msgid "Button Size:"
1036
  msgstr ""
1037
 
1038
- #: include/customizer-strings.php:114
1039
  msgid "Button Top Padding:"
1040
  msgstr ""
1041
 
1042
- #: include/customizer-strings.php:114
1043
  msgid "Button Bottom Padding:"
1044
  msgstr ""
1045
 
1046
- #: include/customizer-strings.php:114
1047
  msgid "Radius:"
1048
  msgstr ""
1049
 
1050
- #: include/customizer-strings.php:114
1051
  msgid "Shadow:"
1052
  msgstr ""
1053
 
1054
- #: include/customizer-strings.php:114
1055
  msgid "Shadow Opacity:"
1056
  msgstr ""
1057
 
1058
- #: include/customizer-strings.php:114
1059
  msgid "Text Size:"
1060
  msgstr ""
1061
 
1062
- #: include/customizer-strings.php:150
1063
  msgid "Incorrect Username Message:"
1064
  msgstr ""
1065
 
1066
- #: include/customizer-strings.php:151
1067
  msgid "Incorrect Password Message:"
1068
  msgstr ""
1069
 
1070
- #: include/customizer-strings.php:152
1071
  msgid "Empty Username Message:"
1072
  msgstr ""
1073
 
1074
- #: include/customizer-strings.php:153
1075
  msgid "Empty Password Message:"
1076
  msgstr ""
1077
 
1078
- #: include/customizer-strings.php:154
1079
  msgid "Invalid Email Message:"
1080
  msgstr ""
1081
 
1082
- #: include/customizer-strings.php:155
1083
  msgid "Empty Email Message:"
1084
  msgstr ""
1085
 
1086
- #: include/customizer-strings.php:156
1087
  msgid "Username Already Exist Message:"
1088
  msgstr ""
1089
 
1090
- #: include/customizer-strings.php:157
1091
  msgid "Email Already Exist Message:"
1092
  msgstr ""
1093
 
1094
- #: include/customizer-strings.php:158
1095
  msgid "Forget Password Message:"
1096
  msgstr ""
1097
 
1098
- #: include/customizer-strings.php:159
1099
  msgid "Login with Email Message:"
1100
  msgstr ""
1101
 
1102
- #: include/customizer-strings.php:170
1103
  msgid "Welcome Message on Lost Password:"
1104
  msgstr ""
1105
 
1106
- #: include/customizer-strings.php:171
1107
  msgid "Welcome Message on Login Page:"
1108
  msgstr ""
1109
 
1110
- #: include/customizer-strings.php:172
1111
  msgid "Welcome Message on Registration:"
1112
  msgstr ""
1113
 
1114
- #: include/customizer-strings.php:173
1115
  msgid "Logout Message:"
1116
  msgstr ""
1117
 
1118
- #: include/customizer-strings.php:174
1119
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
1120
  msgstr ""
1121
 
@@ -1352,6 +1418,12 @@ msgstr ""
1352
  msgid "Lost Password"
1353
  msgstr ""
1354
 
 
 
 
 
 
 
1355
  #: include/template-loginpress.php:393
1356
  msgid "Get New Password"
1357
  msgstr ""
@@ -1365,6 +1437,10 @@ msgstr ""
1365
  msgid "Registration Form"
1366
  msgstr ""
1367
 
 
 
 
 
1368
  #: include/template-loginpress.php:473
1369
  msgid "Email"
1370
  msgstr ""
@@ -1381,38 +1457,38 @@ msgstr ""
1381
  msgid "Remember Me"
1382
  msgstr ""
1383
 
1384
- #: loginpress.php:277
1385
- msgid "Activate"
1386
  msgstr ""
1387
 
1388
- #: loginpress.php:342
1389
- msgid "Caps Lock is on"
1390
  msgstr ""
1391
 
1392
- #: loginpress.php:415
1393
  msgid "Vote!"
1394
  msgstr ""
1395
 
1396
- #: loginpress.php:418
1397
  msgid "Rate"
1398
  msgstr ""
1399
 
1400
- #: loginpress.php:523
1401
  #, php-format
1402
  msgid "%1$s Settings %2$s | %3$s Customize %4$s"
1403
  msgstr ""
1404
 
1405
- #: loginpress.php:527
1406
  #, php-format
1407
  msgid " | %1$s Opt Out %2$s "
1408
  msgstr ""
1409
 
1410
- #: loginpress.php:529
1411
  #, php-format
1412
  msgid " | %1$s Opt In %2$s "
1413
  msgstr ""
1414
 
1415
- #: loginpress.php:535
1416
  #, php-format
1417
  msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
1418
  msgstr ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: LoginPress - Customizing the WordPress Login\n"
6
+ "POT-Creation-Date: 2021-08-31 15:48+0500\n"
7
  "PO-Revision-Date: 2018-07-13 17:43+0500\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 3.0\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: loginpress.php\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: classes/class-loginpress-addons.php:98
25
+ msgid "Activating "
 
 
 
26
  msgstr ""
27
 
28
+ #: classes/class-loginpress-addons.php:105
29
+ msgid " Activated."
 
 
30
  msgstr ""
31
 
32
+ #: classes/class-loginpress-addons.php:114
33
+ msgid "Deactivating "
 
 
34
  msgstr ""
35
 
36
+ #: classes/class-loginpress-addons.php:121
37
+ msgid " Deactivated."
 
 
38
  msgstr ""
39
 
40
+ #: classes/class-loginpress-addons.php:128
41
+ msgid " Something Wrong."
 
42
  msgstr ""
43
 
44
+ #: classes/class-loginpress-addons.php:188
45
+ #: classes/class-loginpress-addons.php:293
46
+ #: classes/class-loginpress-addons.php:352
47
+ #: classes/class-loginpress-promotion.php:122
48
+ msgid "UPGRADE NOW"
49
+ msgstr ""
50
+
51
+ #: classes/class-loginpress-addons.php:371
52
  msgid "You have a lifetime license, it will never expire."
53
  msgstr ""
54
 
55
+ #: classes/class-loginpress-addons.php:375
56
  #, php-format
57
  msgid "Your (%2$s) license key is valid until %s."
58
  msgstr ""
59
 
60
+ #: classes/class-loginpress-addons.php:389
61
  msgid "You need to activate your license to download the following add-ons."
62
  msgstr ""
63
 
64
+ #: classes/class-loginpress-addons.php:402
65
  msgid "You need to upgrade to LoginPress Pro to access these add-ons."
66
  msgstr ""
67
 
68
+ #: classes/class-loginpress-addons.php:917
69
  msgid "Extend the functionality of LoginPress with these awesome Add-ons"
70
  msgstr ""
71
 
72
+ #: classes/class-loginpress-custom-password.php:48
73
  #: include/customizer-strings.php:86 include/template-loginpress.php:518
74
  msgid "Password"
75
  msgstr ""
76
 
77
+ #: classes/class-loginpress-custom-password.php:52
78
  msgid "Confirm Password"
79
  msgstr ""
80
 
81
+ #: classes/class-loginpress-custom-password.php:73
82
  msgid "<strong>ERROR</strong>: Please enter your password twice."
83
  msgstr ""
84
 
85
+ #: classes/class-loginpress-custom-password.php:77
86
  msgid ""
87
  "<strong>ERROR</strong>: Please enter the same password in the end password "
88
  "fields."
89
  msgstr ""
90
 
91
+ #: classes/class-loginpress-custom-password.php:128
92
+ msgid ""
93
+ "If you have already set your own password, you may disregard this email and "
94
+ "use the password you have already set."
95
+ msgstr ""
96
+
97
  #: classes/class-loginpress-filter-plugin.php:42
98
  #, php-format
99
  msgid "Buy %s now"
133
 
134
  #: classes/class-loginpress-filter-plugin.php:220
135
  msgid ""
136
+ "LoginPress Plugin by WPBrigade holds a lot of customization fields to change "
137
+ "the layout of the login page of WordPress. You can modify the look and feel "
138
+ "of login page completely even the login error messages, forgot error "
139
+ "messages, registration error messages, forget password hint message and many "
140
+ "more."
141
  msgstr ""
142
 
143
+ #: classes/class-loginpress-login-order.php:69 custom.php:1769
144
+ #: include/customizer-strings.php:143
145
  #, php-format
146
  msgid "%1$sError:%2$s The username field is empty."
147
  msgstr ""
148
 
149
+ #: classes/class-loginpress-login-order.php:71 custom.php:1771
150
+ #: include/customizer-strings.php:144
151
  #, php-format
152
  msgid "%1$sError:%2$s The password field is empty."
153
  msgstr ""
154
 
155
  #: classes/class-loginpress-login-order.php:92
156
+ #: include/customizer-strings.php:150
157
  #, php-format
158
  msgid "%1$sError:%2$s Invalid Email Address"
159
  msgstr ""
160
 
161
+ #: classes/class-loginpress-login-order.php:114 custom.php:1765
162
+ #: include/customizer-strings.php:142
163
  #, php-format
164
  msgid "%1$sError:%2$s Invalid Username."
165
  msgstr ""
166
 
167
+ #: classes/class-loginpress-notifications.php:132
168
  msgid "Leave A Review?"
169
  msgstr ""
170
 
171
+ #: classes/class-loginpress-notifications.php:133
172
  msgid ""
173
  "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
174
  "review on WordPress.org?"
175
  msgstr ""
176
 
177
+ #: classes/class-loginpress-notifications.php:135
178
  msgid "Sure! I'd love to!"
179
  msgstr ""
180
 
181
+ #: classes/class-loginpress-notifications.php:136
182
  msgid "I've already left a review"
183
  msgstr ""
184
 
185
+ #: classes/class-loginpress-notifications.php:137
186
  msgid "Maybe Later"
187
  msgstr ""
188
 
189
+ #: classes/class-loginpress-notifications.php:138
190
  msgid "Never show again"
191
  msgstr ""
192
 
193
+ #: classes/class-loginpress-notifications.php:163
194
  msgid "Introducing LoginPress Addons!"
195
  msgstr ""
196
 
197
+ #: classes/class-loginpress-notifications.php:164
198
  msgid "Extend LoginPress with these add-ons and supercharge your login pages."
199
  msgstr ""
200
 
201
+ #: classes/class-loginpress-notifications.php:168
202
  msgid "Learn More"
203
  msgstr ""
204
 
205
+ #: classes/class-loginpress-notifications.php:299
206
  msgid "FLAT 51% OFF"
207
  msgstr ""
208
 
209
+ #: classes/class-loginpress-notifications.php:324
210
  #, php-format
211
  msgid ""
212
  "<strong>Biggest Winter Deal</strong> in the WordPress Universe! Get "
221
  "free version</a>"
222
  msgstr ""
223
 
224
+ #: classes/class-loginpress-notifications.php:348
225
+ #, php-format
226
+ msgid ""
227
+ "<strong>Biggest Summer Deal</strong> in the WordPress Universe! Get "
228
+ "<strong>LoginPress Pro and all Premium Add-ons</strong> with <strong>20%% "
229
+ "OFF</strong> [Limited Availability].<a href=\"https://wpbrigade.com/"
230
+ "wordpress/plugins/loginpress-pro/?utm_source=loginpress-"
231
+ "lite&utm_medium=freepluginbanner-button&utm_campaign=early20\" target="
232
+ "\"_blank\" style=\"text-decoration: none;\"><span class=\"dashicons "
233
+ "dashicons-smiley\" style=\"margin-left: 10px;\"></span> Grab The Deal</a>\n"
234
+ " \t\t\t\t\t<a href=\"%1$s\" style=\"text-decoration: none; margin-left: "
235
+ "10px;\"><span class=\"dashicons dashicons-dismiss\"></span> I'm good with "
236
+ "free version</a>"
237
+ msgstr ""
238
+
239
  #: classes/class-loginpress-promo.php:9
240
  msgid "Google Fonts"
241
  msgstr ""
249
  msgid "reCAPTCHA"
250
  msgstr ""
251
 
252
+ #: classes/class-loginpress-promotion.php:63
253
+ msgid "Upgrade to Pro for More Features"
254
+ msgstr ""
255
+
256
+ #: classes/class-loginpress-settings-api.php:393 custom.php:675
257
  msgid "Choose File"
258
  msgstr ""
259
 
260
+ #: classes/class-loginpress-settings-api.php:660
261
  msgid "Getting Started Video"
262
  msgstr ""
263
 
264
+ #: classes/class-loginpress-settings-api.php:668
265
  msgid "Why Go Pro?"
266
  msgstr ""
267
 
268
+ #: classes/class-loginpress-settings-api.php:671
269
  msgid "Secure login with Google reCaptcha"
270
  msgstr ""
271
 
272
+ #: classes/class-loginpress-settings-api.php:672
273
  msgid "20+ Custom Login Themes"
274
  msgstr ""
275
 
276
+ #: classes/class-loginpress-settings-api.php:673
277
  msgid "Full customization with Custom CSS & JS"
278
  msgstr ""
279
 
280
+ #: classes/class-loginpress-settings-api.php:678
281
  msgid "See What's In The Pro Version"
282
  msgstr ""
283
 
284
+ #: classes/class-loginpress-settings-api.php:687
285
  msgid "Plugin Support"
286
  msgstr ""
287
 
288
+ #: classes/class-loginpress-settings-api.php:690
289
  msgid "Got a Question, Idea, Problem or Praise?"
290
  msgstr ""
291
 
292
+ #: classes/class-loginpress-settings-api.php:692
293
  msgid "Support Request"
294
  msgstr ""
295
 
297
  msgid "Default Settings Restored"
298
  msgstr ""
299
 
300
+ #: classes/class-loginpress-setup.php:102 custom.php:267 loginpress.php:280
301
  msgid "LoginPress"
302
  msgstr ""
303
 
304
+ #: classes/class-loginpress-setup.php:104
305
+ #: classes/class-loginpress-setup.php:121
306
  msgid "Settings"
307
  msgstr ""
308
 
309
+ #: classes/class-loginpress-setup.php:106
310
  msgid "Customizer"
311
  msgstr ""
312
 
313
+ #: classes/class-loginpress-setup.php:108
314
  msgid "Help"
315
  msgstr ""
316
 
317
+ #: classes/class-loginpress-setup.php:110
318
  #: include/loginpress-import-export.php:13
319
  msgid "Import/Export LoginPress Settings"
320
  msgstr ""
321
 
322
+ #: classes/class-loginpress-setup.php:110
323
  msgid "Import / Export"
324
  msgstr ""
325
 
326
+ #: classes/class-loginpress-setup.php:112
327
  msgid "Add-Ons"
328
  msgstr ""
329
 
330
+ #: classes/class-loginpress-setup.php:122
331
  #, php-format
332
  msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
333
  msgstr ""
334
 
335
+ #: classes/class-loginpress-setup.php:154
 
 
 
 
336
  msgid "Session Expire"
337
  msgstr ""
338
 
339
+ #: classes/class-loginpress-setup.php:155
340
  msgid "Set the session expiration time in minutes. e.g: 10"
341
  msgstr ""
342
 
343
+ #: classes/class-loginpress-setup.php:156
344
  msgid "10"
345
  msgstr ""
346
 
347
+ #: classes/class-loginpress-setup.php:179
348
+ msgid "Auto Remember Me"
349
+ msgstr ""
350
+
351
+ #: classes/class-loginpress-setup.php:180
352
+ msgid "Keep remember me option always checked on login page"
353
+ msgstr ""
354
+
355
+ #: classes/class-loginpress-setup.php:185
356
  msgid "Custom Password Fields"
357
  msgstr ""
358
 
359
+ #: classes/class-loginpress-setup.php:186
360
  msgid "Enable custom password fields on registration form."
361
  msgstr ""
362
 
363
+ #: classes/class-loginpress-setup.php:191
364
  msgid "Login Order"
365
  msgstr ""
366
 
367
+ #: classes/class-loginpress-setup.php:192
368
  msgid "Enable users to login using their username and/or email address."
369
  msgstr ""
370
 
371
+ #: classes/class-loginpress-setup.php:196
372
+ msgid "Both Username Or Email Address"
373
+ msgstr ""
374
+
375
+ #: classes/class-loginpress-setup.php:197
376
+ msgid "Only Username"
377
+ msgstr ""
378
+
379
+ #: classes/class-loginpress-setup.php:198
380
+ msgid "Only Email Address"
381
+ msgstr ""
382
+
383
+ #: classes/class-loginpress-setup.php:209
384
  msgid "Reset Default Settings"
385
  msgstr ""
386
 
387
+ #: classes/class-loginpress-setup.php:210
388
  msgid "Remove my custom settings."
389
  msgstr ""
390
 
391
+ #: classes/class-loginpress-setup.php:246
392
  msgid "LoginPress - Rebranding your boring WordPress Login pages"
393
  msgstr ""
394
 
395
+ #: classes/class-loginpress-setup.php:265
396
  #, php-format
397
+ msgid "Free plugin support is available on the %1$s plugin support forums%2$s."
398
  msgstr ""
399
 
400
+ #: classes/class-loginpress-setup.php:269
401
  #, php-format
402
  msgid ""
403
  "For premium features, add-ons and priority email support, %1$s upgrade to pro"
404
  "%2$s."
405
  msgstr ""
406
 
407
+ #: classes/class-loginpress-setup.php:279
408
  msgid "Download Log File"
409
  msgstr ""
410
 
411
+ #: classes/class-loginpress-setup.php:335
412
  msgid "Lost Password URL"
413
  msgstr ""
414
 
415
+ #: classes/class-loginpress-setup.php:336
416
  msgid ""
417
  "Use WordPress default lost password URL instead of WooCommerce custom lost "
418
  "password URL."
419
  msgstr ""
420
 
421
+ #: classes/class-loginpress-setup.php:353
422
  msgid "and LoginPress page"
423
  msgstr ""
424
 
425
+ #: classes/class-loginpress-setup.php:358
426
  msgid "Remove Settings on Uninstall"
427
  msgstr ""
428
 
429
+ #: classes/class-loginpress-setup.php:359
430
  #, php-format
431
  msgid "This tool will remove all LoginPress settings %1$s upon uninstall."
432
  msgstr ""
439
  msgid "Info:"
440
  msgstr ""
441
 
442
+ #: custom.php:268
443
  msgid "Customize Your WordPress Login Page with LoginPress :)"
444
  msgstr ""
445
 
446
+ #: custom.php:281
447
  msgid "Themes"
448
  msgstr ""
449
 
450
+ #: custom.php:282
451
  msgid "Choose Theme"
452
  msgstr ""
453
 
454
+ #: custom.php:296 custom.php:303 custom.php:524 custom.php:531
455
  msgid "Company"
456
  msgstr ""
457
 
458
+ #: custom.php:297 custom.php:308 custom.php:525
459
  msgid "Persona"
460
  msgstr ""
461
 
462
+ #: custom.php:298 custom.php:299 custom.php:526 custom.php:527
463
  msgid "Corporate"
464
  msgstr ""
465
 
466
+ #: custom.php:300 custom.php:528
467
  msgid "Startup"
468
  msgstr ""
469
 
470
+ #: custom.php:301 custom.php:529
471
  msgid "Wedding"
472
  msgstr ""
473
 
474
+ #: custom.php:302 custom.php:530
475
  msgid "Wedding #2"
476
  msgstr ""
477
 
478
+ #: custom.php:304 custom.php:532
479
  msgid "Bikers"
480
  msgstr ""
481
 
482
+ #: custom.php:305
483
  msgid "Fitness"
484
  msgstr ""
485
 
486
+ #: custom.php:306
487
  msgid "Shopping"
488
  msgstr ""
489
 
490
+ #: custom.php:307
491
  msgid "Writers"
492
  msgstr ""
493
 
494
+ #: custom.php:309
495
  msgid "Geek"
496
  msgstr ""
497
 
498
+ #: custom.php:310
499
  msgid "Innovation"
500
  msgstr ""
501
 
502
+ #: custom.php:311
503
  msgid "Photographers"
504
  msgstr ""
505
 
506
+ #: custom.php:312
507
+ msgid "Animated Wapo"
508
+ msgstr ""
509
+
510
+ #: custom.php:313
511
+ msgid "Animated Wapo 2"
512
+ msgstr ""
513
+
514
+ #: custom.php:344
515
  msgid "Custom Design"
516
  msgstr ""
517
 
518
+ #: custom.php:362
519
  msgid "Logo"
520
  msgstr ""
521
 
522
+ #: custom.php:363
523
  msgid "Customize Your Logo Section"
524
  msgstr ""
525
 
526
+ #: custom.php:383
527
  msgid "Disable Logo:"
528
  msgstr ""
529
 
530
+ #: custom.php:397
531
  msgid "Logo Image:"
532
  msgstr ""
533
 
534
+ #: custom.php:414
535
+ msgid "Logo Hover Title:"
536
+ msgstr ""
537
+
538
+ #: custom.php:416
539
+ msgid "Logo Title:"
540
+ msgstr ""
541
+
542
+ #: custom.php:420
543
  msgid "Logo URL:"
544
  msgstr ""
545
 
546
+ #: custom.php:420
547
+ msgid "Login Page Title:"
548
  msgstr ""
549
 
550
  #: custom.php:422
551
+ msgid "Login page title that is shown on WordPress login page."
552
+ msgstr ""
553
+
554
+ #: custom.php:450
555
  msgid "Background"
556
  msgstr ""
557
 
558
+ #: custom.php:465
559
  msgid "Background Color:"
560
  msgstr ""
561
 
562
+ #: custom.php:488
563
  msgid "Enable Background Image?"
564
  msgstr ""
565
 
566
+ #: custom.php:503
567
  msgid "Background Image:"
568
  msgstr ""
569
 
570
+ #: custom.php:508
571
  msgid "Select Image"
572
  msgstr ""
573
 
574
+ #: custom.php:552
575
  msgid "Background Gallery:"
576
  msgstr ""
577
 
578
+ #: custom.php:566
579
  msgid "Background Repeat:"
580
  msgstr ""
581
 
582
+ #: custom.php:591
583
  msgid "Select Position:"
584
  msgstr ""
585
 
586
+ #: custom.php:617
587
  msgid "Background Image Size: "
588
  msgstr ""
589
 
590
+ #: custom.php:647
591
  msgid "Enable Background Video?"
592
  msgstr ""
593
 
594
+ #: custom.php:665
595
  msgid "Background Video:"
596
  msgstr ""
597
 
598
+ #: custom.php:670
599
  msgid "Select Video"
600
  msgstr ""
601
 
602
+ #: custom.php:671
603
  msgid "Change Video"
604
  msgstr ""
605
 
606
+ #: custom.php:672
607
  msgid "Default"
608
  msgstr ""
609
 
610
+ #: custom.php:673
611
  msgid "Remove"
612
  msgstr ""
613
 
614
+ #: custom.php:674
615
  msgid "Select File"
616
  msgstr ""
617
 
618
+ #: custom.php:688
619
  msgid "Video Size:"
620
  msgstr ""
621
 
622
+ #: custom.php:709
623
  msgid "Object Postion:"
624
  msgstr ""
625
 
626
+ #: custom.php:714
627
  msgid "50% 50%"
628
  msgstr ""
629
 
630
+ #: custom.php:732
631
  msgid "Muted Video?"
632
  msgstr ""
633
 
634
+ #: custom.php:742
635
  msgid "Customize Login Form"
636
  msgstr ""
637
 
638
+ #: custom.php:765
639
  msgid "Enable Form Transparency:"
640
  msgstr ""
641
 
642
+ #: custom.php:779
643
  msgid "Form Background Image:"
644
  msgstr ""
645
 
646
+ #: custom.php:908
647
  msgid "Customize Forget Form"
648
  msgstr ""
649
 
650
+ #: custom.php:922
651
  msgid "Forget Form Background Image:"
652
  msgstr ""
653
 
654
+ #: custom.php:937
655
  msgid "Forget Form Background Color:"
656
  msgstr ""
657
 
658
+ #: custom.php:947
659
  msgid "Button Beauty"
660
  msgstr ""
661
 
662
+ #: custom.php:979
663
  msgid "Error Messages"
664
  msgstr ""
665
 
666
+ #: custom.php:1010
667
  msgid "Welcome Messages"
668
  msgstr ""
669
 
670
+ #: custom.php:1048
671
  msgid "Message Field Background Color:"
672
  msgstr ""
673
 
674
+ #: custom.php:1160
675
  msgid "Form Footer"
676
  msgstr ""
677
 
678
+ #: custom.php:1183
679
  msgid "Enable Footer Text:"
680
  msgstr ""
681
 
682
+ #: custom.php:1190 include/template-loginpress.php:493
683
  #: include/template-loginpress.php:552
684
  msgid "Lost your password?"
685
  msgstr ""
686
 
687
+ #: custom.php:1198
688
  msgid "Lost Password Text:"
689
  msgstr ""
690
 
691
+ #: custom.php:1214
692
  msgid "Select Text Decoration:"
693
  msgstr ""
694
 
695
+ #: custom.php:1235
696
  msgid "Footer Text Color:"
697
  msgstr ""
698
 
699
+ #: custom.php:1250
700
  msgid "Footer Text Hover Color:"
701
  msgstr ""
702
 
703
+ #: custom.php:1271
704
  msgid "Text Font Size:"
705
  msgstr ""
706
 
707
+ #: custom.php:1288
708
  msgid "Footer Background Color:"
709
  msgstr ""
710
 
711
+ #: custom.php:1313
712
  msgid "Enable \"Back to\" Text:"
713
  msgstr ""
714
 
715
+ #: custom.php:1329
716
  msgid "\"Back to\" Text Decoration:"
717
  msgstr ""
718
 
719
+ #: custom.php:1350
720
  msgid "\"Back to\" Text Color:"
721
  msgstr ""
722
 
723
+ #: custom.php:1365
724
  msgid "\"Back to\" Text Hover Color:"
725
  msgstr ""
726
 
727
+ #: custom.php:1393
728
  msgid "\"Back to\" Text Font Size:"
729
  msgstr ""
730
 
731
+ #: custom.php:1410
732
  msgid "\"Back to\" Background Color:"
733
  msgstr ""
734
 
735
+ #: custom.php:1436
736
  msgid "Enable Copyright Note:"
737
  msgstr ""
738
 
739
+ #: custom.php:1448
740
+ msgid "\"Copyright\" Background Color:"
741
+ msgstr ""
742
+
743
+ #: custom.php:1464
744
+ msgid "\"Copyright\" Text Color:"
745
+ msgstr ""
746
+
747
+ #: custom.php:1471 custom.php:1499 custom.php:1644
748
  #, php-format
749
  msgid "© %1$s %2$s, All Rights Reserved."
750
  msgstr ""
751
 
752
+ #: custom.php:1506
753
  msgid "Copyright Note:"
754
  msgstr ""
755
 
756
+ #: custom.php:1507
757
+ #, php-format
758
+ msgid "%1$s will be replaced with the current year."
759
+ msgstr ""
760
+
761
+ #: custom.php:1524
762
  msgid ""
763
  "Show some Love. Please help others learn about this free plugin by placing "
764
  "small link in footer. Thank you very much!"
765
  msgstr ""
766
 
767
+ #: custom.php:1540
768
  msgid "Love Position:"
769
  msgstr ""
770
 
771
+ #: custom.php:1546
772
  msgid "Left"
773
  msgstr ""
774
 
775
+ #: custom.php:1547
776
  msgid "Right"
777
  msgstr ""
778
 
779
+ #: custom.php:1559
780
  msgid "Custom CSS/JS"
781
  msgstr ""
782
 
783
+ #: custom.php:1572
784
  msgid "Customize CSS:"
785
  msgstr ""
786
 
787
+ #: custom.php:1577
788
  #, php-format
789
  msgid ""
790
  "Custom CSS doen't make effect live. For preview please save the setting and "
791
  "visit %1$s login%2$s page or after save refresh the customizer."
792
  msgstr ""
793
 
794
+ #: custom.php:1587
795
  msgid "Customize JS:"
796
  msgstr ""
797
 
798
+ #: custom.php:1592
799
  #, php-format
800
  msgid ""
801
  "Custom JS doen't make effect live. For preview please save the setting and "
802
  "visit %1$s login%2$s page or after save refresh the customizer."
803
  msgstr ""
804
 
805
+ #: custom.php:1617 custom.php:1619
806
  msgid "Powered by:"
807
  msgstr ""
808
 
809
+ #: custom.php:1767 include/customizer-strings.php:142
810
  #, php-format
811
  msgid "%1$sError:%2$s Invalid Password."
812
  msgstr ""
813
 
814
+ #: custom.php:1773 include/customizer-strings.php:145
815
  #, php-format
816
  msgid "%1$sError:%2$s The email address isn't correct.."
817
  msgstr ""
818
 
819
+ #: custom.php:1775 include/customizer-strings.php:146
820
  #, php-format
821
  msgid "%1$sError:%2$s Please type your email address."
822
  msgstr ""
823
 
824
+ #: custom.php:1777 include/customizer-strings.php:147
825
  #, php-format
826
  msgid ""
827
  "%1$sError:%2$s This username is already registered. Please choose another "
828
  "one."
829
  msgstr ""
830
 
831
+ #: custom.php:1779 include/customizer-strings.php:148
832
  #, php-format
833
  msgid ""
834
  "%1$sError:%2$s This email is already registered, please choose another one."
835
  msgstr ""
836
 
837
+ #: custom.php:1781 include/customizer-strings.php:149
838
  #, php-format
839
  msgid "%1$sError:%2$s Invalid username or email."
840
  msgstr ""
841
 
842
+ #: custom.php:1859 include/template-loginpress.php:469
843
  msgid "Username"
844
  msgstr ""
845
 
846
+ #: custom.php:1861
847
  msgid "Email Address"
848
  msgstr ""
849
 
850
+ #: custom.php:1863 include/customizer-strings.php:86
851
+ #: include/template-loginpress.php:382 include/template-loginpress.php:514
852
+ msgid "Username or Email Address"
 
 
 
 
 
853
  msgstr ""
854
 
855
+ #: custom.php:1958 custom.php:1962
856
  msgid "Your password has been reset."
857
  msgstr ""
858
 
859
+ #: custom.php:1962 include/template-loginpress.php:397
860
  #: include/template-loginpress.php:491
861
  msgid "Log in"
862
  msgstr ""
870
  msgid "Dismiss notification"
871
  msgstr ""
872
 
873
+ #: include/class-remote-notification-client.php:710
874
  #, php-format
875
  msgid "The server response was invalid (code %s)"
876
  msgstr ""
877
 
878
+ #: include/class-remote-notification-client.php:716
879
  msgid "The server response is empty"
880
  msgstr ""
881
 
882
+ #: include/class-remote-notification-client.php:722
883
  msgid "Cannot decode the response content"
884
  msgstr ""
885
 
886
  #. translators: 1: Name of this plugin
887
+ #: include/create-loginpress-page.php:62
888
  #, php-format
889
  msgid ""
890
  "<p>This page is used by %1$s to preview the login page in the Customizer.</p>"
891
  msgstr ""
892
 
893
+ #: include/create-loginpress-page.php:67
894
  msgctxt "Page slug"
895
  msgid "loginpress"
896
  msgstr ""
897
 
898
+ #: include/create-loginpress-page.php:68
899
  msgctxt "Page title"
900
  msgid "LoginPress"
901
  msgstr ""
1049
  msgid "Remember me Label Color:"
1050
  msgstr ""
1051
 
 
 
 
 
 
1052
  #: include/customizer-strings.php:88
1053
  msgid "Form Padding:"
1054
  msgstr ""
1069
  msgid "Password Label:"
1070
  msgstr ""
1071
 
1072
+ #: include/customizer-strings.php:105
1073
  msgid "Button Color:"
1074
  msgstr ""
1075
 
1076
+ #: include/customizer-strings.php:106
1077
  msgid "Button Border Color:"
1078
  msgstr ""
1079
 
1080
+ #: include/customizer-strings.php:107
1081
  msgid "Button Color (Hover):"
1082
  msgstr ""
1083
 
1084
+ #: include/customizer-strings.php:108
1085
  msgid "Button Border (Hover):"
1086
  msgstr ""
1087
 
1088
+ #: include/customizer-strings.php:109
1089
  msgid "Button Box Shadow:"
1090
  msgstr ""
1091
 
1092
+ #: include/customizer-strings.php:110
1093
  msgid "Button Text Color:"
1094
  msgstr ""
1095
 
1096
+ #: include/customizer-strings.php:111
1097
+ msgid "Button Text Color (Hover):"
1098
+ msgstr ""
1099
+
1100
+ #: include/customizer-strings.php:116
1101
  msgid "Button Size:"
1102
  msgstr ""
1103
 
1104
+ #: include/customizer-strings.php:116
1105
  msgid "Button Top Padding:"
1106
  msgstr ""
1107
 
1108
+ #: include/customizer-strings.php:116
1109
  msgid "Button Bottom Padding:"
1110
  msgstr ""
1111
 
1112
+ #: include/customizer-strings.php:116
1113
  msgid "Radius:"
1114
  msgstr ""
1115
 
1116
+ #: include/customizer-strings.php:116
1117
  msgid "Shadow:"
1118
  msgstr ""
1119
 
1120
+ #: include/customizer-strings.php:116
1121
  msgid "Shadow Opacity:"
1122
  msgstr ""
1123
 
1124
+ #: include/customizer-strings.php:116
1125
  msgid "Text Size:"
1126
  msgstr ""
1127
 
1128
+ #: include/customizer-strings.php:152
1129
  msgid "Incorrect Username Message:"
1130
  msgstr ""
1131
 
1132
+ #: include/customizer-strings.php:153
1133
  msgid "Incorrect Password Message:"
1134
  msgstr ""
1135
 
1136
+ #: include/customizer-strings.php:154
1137
  msgid "Empty Username Message:"
1138
  msgstr ""
1139
 
1140
+ #: include/customizer-strings.php:155
1141
  msgid "Empty Password Message:"
1142
  msgstr ""
1143
 
1144
+ #: include/customizer-strings.php:156
1145
  msgid "Invalid Email Message:"
1146
  msgstr ""
1147
 
1148
+ #: include/customizer-strings.php:157
1149
  msgid "Empty Email Message:"
1150
  msgstr ""
1151
 
1152
+ #: include/customizer-strings.php:158
1153
  msgid "Username Already Exist Message:"
1154
  msgstr ""
1155
 
1156
+ #: include/customizer-strings.php:159
1157
  msgid "Email Already Exist Message:"
1158
  msgstr ""
1159
 
1160
+ #: include/customizer-strings.php:160
1161
  msgid "Forget Password Message:"
1162
  msgstr ""
1163
 
1164
+ #: include/customizer-strings.php:161
1165
  msgid "Login with Email Message:"
1166
  msgstr ""
1167
 
1168
+ #: include/customizer-strings.php:172
1169
  msgid "Welcome Message on Lost Password:"
1170
  msgstr ""
1171
 
1172
+ #: include/customizer-strings.php:173
1173
  msgid "Welcome Message on Login Page:"
1174
  msgstr ""
1175
 
1176
+ #: include/customizer-strings.php:174
1177
  msgid "Welcome Message on Registration:"
1178
  msgstr ""
1179
 
1180
+ #: include/customizer-strings.php:175
1181
  msgid "Logout Message:"
1182
  msgstr ""
1183
 
1184
+ #: include/customizer-strings.php:176
1185
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
1186
  msgstr ""
1187
 
1418
  msgid "Lost Password"
1419
  msgstr ""
1420
 
1421
+ #: include/template-loginpress.php:370
1422
+ msgid ""
1423
+ "Please enter your username or email address. You will receive a link to "
1424
+ "create a new password via email."
1425
+ msgstr ""
1426
+
1427
  #: include/template-loginpress.php:393
1428
  msgid "Get New Password"
1429
  msgstr ""
1437
  msgid "Registration Form"
1438
  msgstr ""
1439
 
1440
+ #: include/template-loginpress.php:465
1441
+ msgid "Register For This Site"
1442
+ msgstr ""
1443
+
1444
  #: include/template-loginpress.php:473
1445
  msgid "Email"
1446
  msgstr ""
1457
  msgid "Remember Me"
1458
  msgstr ""
1459
 
1460
+ #: js/script-login.php:23
1461
+ msgid "Caps Lock is on"
1462
  msgstr ""
1463
 
1464
+ #: loginpress.php:278
1465
+ msgid "Activate"
1466
  msgstr ""
1467
 
1468
+ #: loginpress.php:428
1469
  msgid "Vote!"
1470
  msgstr ""
1471
 
1472
+ #: loginpress.php:431
1473
  msgid "Rate"
1474
  msgstr ""
1475
 
1476
+ #: loginpress.php:537
1477
  #, php-format
1478
  msgid "%1$s Settings %2$s | %3$s Customize %4$s"
1479
  msgstr ""
1480
 
1481
+ #: loginpress.php:541
1482
  #, php-format
1483
  msgid " | %1$s Opt Out %2$s "
1484
  msgstr ""
1485
 
1486
+ #: loginpress.php:543
1487
  #, php-format
1488
  msgid " | %1$s Opt In %2$s "
1489
  msgstr ""
1490
 
1491
+ #: loginpress.php:549
1492
  #, php-format
1493
  msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
1494
  msgstr ""
loginpress.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /**
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
- * Plugin URI: https://WPBrigade.com/wordpress/plugins/loginpress/
5
  * Description: LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by <a href="https://wpbrigade.com/">WPBrigade</a> which allows you to completely change the layout of login, register and forgot password forms.
6
- * Version: 1.5.5
7
  * Author: WPBrigade
8
  * Author URI: https://WPBrigade.com/
9
  * Text Domain: loginpress
@@ -22,7 +22,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
22
  /**
23
  * @var string
24
  */
25
- public $version = '1.5.5';
26
 
27
  /**
28
  * @var The single instance of the class
1
  <?php
2
  /**
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
+ * Plugin URI: https://loginpress.pro/
5
  * Description: LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by <a href="https://wpbrigade.com/">WPBrigade</a> which allows you to completely change the layout of login, register and forgot password forms.
6
+ * Version: 1.5.6
7
  * Author: WPBrigade
8
  * Author URI: https://WPBrigade.com/
9
  * Text Domain: loginpress
22
  /**
23
  * @var string
24
  */
25
+ public $version = '1.5.6';
26
 
27
  /**
28
  * @var The single instance of the class
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tested up to: 5.8
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com/?utm_source=loginpress-lite&utm_medium=author-url-link
6
  Tags: wp-login, login, login customizer, custom login, wordpress login,
7
- Stable tag: 1.5.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -12,21 +12,21 @@ LoginPress is a Custom Login Page Customizer plugin allows you to easily customi
12
 
13
  == Description ==
14
 
15
- <a href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade" rel="friend">LoginPress Plugin</a> by LoginPress holds a lot of customization fields to change the layout of the login page of WordPress. You can modify the look and feel of login page completely even the login error messages, forgot error messages, registration error messages, forget password hint message and many more.
16
  LoginPress Plugin would give you and your users a feeling that it is a custom login page and a part of the site layout. You must checkout the Demo video of how you can customize WordPress login page.
17
 
18
  **Getting Started video for customizing login page using LoginPress**
19
 
20
  `[youtube https://www.youtube.com/watch?v=GMAwsHomJlE]`
21
 
22
- **[Why You Should Upgrade to PRO ??](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade)**
23
  `[youtube https://www.youtube.com/watch?v=9snT9rWxO4g]`
24
 
25
- [Checkout the Pro version](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade)
26
 
27
  LoginPress plugin is built using The Customizer API which is getting popular for live-previewing any changes to the layouts of WordPress. So, with LoginPress you can preview your login page changes instantly. This login customizer plugin is easy enough & required no coding skills. Just have options for each element on the login form and make a new customized login page within seconds.
28
 
29
- [LoginPress Documentation](https://wpbrigade.com/docs-article/loginpress-documentation/)
30
 
31
  > Multilingual & Translatable
32
  > WPML Compatible
@@ -128,7 +128,7 @@ If you like this plugin, then consider checking out our other amazing plugins:
128
 
129
  == Notes ==
130
 
131
- LoginPress is absolutely, positively the most <a href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade" rel="friend" title="Best Custom login form plugin">beginner friendly WordPress custom login form plugin</a> on the market. It is both easy and powerful.
132
 
133
  Also, I'm the founder of <a href="https://WPBrigade.com/" rel="friend">WPBrigade</a>, We do custom WordPress themes for clients and can transform any website in WordPress. It was a huge priority for me to make a WordPress custom login form plugin that beginners can use without any training.
134
 
@@ -171,14 +171,14 @@ If you have a WordPress Website, and you want to add a cool looking login page.
171
 
172
  = How to upgrade to LoginPress Pro? =
173
 
174
- Buy Pro version from <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=readme-faqs&utm_campaign=pro-upgrade">this link</a>. LoginPress Pro is a premium plugin which works if you have installed Free version already. So, first install our Free version and then install the Pro package.
175
 
176
  LoginPress Pro version extends the Premium functionality to our Core Free version of LoginPress.
177
 
178
  = Step-by-step instructions on How to Upgrade from existing Free version to Pro =
179
 
180
  1. You have installed and setup Free version already.
181
- 2. Buy Pro version from <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=readme-faqs&utm_campaign=pro-upgrade">this link</a>.
182
  3. Upload the Pro version.
183
  4. Pro features will be enabled automatically.
184
  5. You don't need to setup Free version options again.
@@ -190,36 +190,41 @@ You can find it in the email Sales Receipt.
190
 
191
  = How to donate or contribute? =
192
 
193
- Please visit <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=readme-donate&utm_campaign=pro-upgrade">this link</a> for more info.
194
 
195
  == Screenshots ==
196
 
197
  1. Custom Login page Example #1 with Default Background
198
- 2. Custom Login page (Company theme) Example #2 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
199
- 3. Custom Login page (Company theme) Example #3 with Captcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
200
- 4. Custom Login page (Persona theme) Example #4 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
201
- 5. Custom Login page (Corporate theme) Example #5 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
202
- 6. Custom Login page (Corporate theme) Example #6 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
203
- 7. Custom Login page (Startup theme) Example #7 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
204
- 8. Custom Login page (Wedding theme) Example #8 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
205
- 9. Custom Login page (Wedding theme) Example #9 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
206
- 10. Custom Login page (Company theme) Example #10 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
207
- 11. Custom Login page (Company theme) Example #11 with Captcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
208
- 12. Custom Login page (Bikers theme) Example #12 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
209
- 13. Custom Login page (Fitness theme) Example #13 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
210
- 14. Custom Login page (Shopping theme) Example #14 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
211
- 15. Custom Login page (Writers theme) Example #15 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
212
- 16. Custom Login page (Writers theme) Example #16 with reCaptcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
213
- 17. Custom Login page (Persona theme) Example #17 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
214
- 18. Custom Login page (Persona theme) Example #18 with reCaptcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
215
- 19. Custom Login page (Geek theme) Example #19 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
216
- 20. Custom Login page (Geek theme) Example #20 with reCaptcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
217
- 21. Custom Login page (Innovation theme) Example #21 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
218
- 22. Custom Login page (Photographers theme) Example #22 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
219
- 23. Custom Login page (Company theme) Example #23 with Captcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
220
 
221
  == Changelog ==
222
 
 
 
 
 
 
223
  = 1.5.5 – 2021-07-24 =
224
  * Bugfix: Welcome message for the lost password & register page.
225
  * Bugfix: A live preview of current year in copyright note (A `$YEAR$` variable will change in current year).
@@ -606,5 +611,5 @@ Please visit <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpre
606
 
607
  == Upgrade Notice ==
608
 
609
- = 1.5.5 =
610
  * Important Release, upgrade immediately. Compatible with 5.8
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com/?utm_source=loginpress-lite&utm_medium=author-url-link
6
  Tags: wp-login, login, login customizer, custom login, wordpress login,
7
+ Stable tag: 1.5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ <a href="https://loginpress.pro?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade" rel="friend">LoginPress Plugin</a> by LoginPress holds a lot of customization fields to change the layout of the login page of WordPress. You can modify the look and feel of login page completely even the login error messages, forgot error messages, registration error messages, forget password hint message and many more.
16
  LoginPress Plugin would give you and your users a feeling that it is a custom login page and a part of the site layout. You must checkout the Demo video of how you can customize WordPress login page.
17
 
18
  **Getting Started video for customizing login page using LoginPress**
19
 
20
  `[youtube https://www.youtube.com/watch?v=GMAwsHomJlE]`
21
 
22
+ **[Why You Should Upgrade to PRO ??](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade)**
23
  `[youtube https://www.youtube.com/watch?v=9snT9rWxO4g]`
24
 
25
+ [Checkout the Pro version](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade)
26
 
27
  LoginPress plugin is built using The Customizer API which is getting popular for live-previewing any changes to the layouts of WordPress. So, with LoginPress you can preview your login page changes instantly. This login customizer plugin is easy enough & required no coding skills. Just have options for each element on the login form and make a new customized login page within seconds.
28
 
29
+ [LoginPress Documentation](https://loginpress.pro/documentation/)
30
 
31
  > Multilingual & Translatable
32
  > WPML Compatible
128
 
129
  == Notes ==
130
 
131
+ LoginPress is absolutely, positively the most <a href="https://loginpress.pro?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade" rel="friend" title="Best Custom login form plugin">beginner friendly WordPress custom login form plugin</a> on the market. It is both easy and powerful.
132
 
133
  Also, I'm the founder of <a href="https://WPBrigade.com/" rel="friend">WPBrigade</a>, We do custom WordPress themes for clients and can transform any website in WordPress. It was a huge priority for me to make a WordPress custom login form plugin that beginners can use without any training.
134
 
171
 
172
  = How to upgrade to LoginPress Pro? =
173
 
174
+ Buy Pro version from <a target="_blank" rel="friend" href="https://loginpress.pro?utm_source=loginpress-lite&utm_medium=readme-faqs&utm_campaign=pro-upgrade">this link</a>. LoginPress Pro is a premium plugin which works if you have installed Free version already. So, first install our Free version and then install the Pro package.
175
 
176
  LoginPress Pro version extends the Premium functionality to our Core Free version of LoginPress.
177
 
178
  = Step-by-step instructions on How to Upgrade from existing Free version to Pro =
179
 
180
  1. You have installed and setup Free version already.
181
+ 2. Buy Pro version from <a target="_blank" rel="friend" href="https://loginpress.pro?utm_source=loginpress-lite&utm_medium=readme-faqs&utm_campaign=pro-upgrade">this link</a>.
182
  3. Upload the Pro version.
183
  4. Pro features will be enabled automatically.
184
  5. You don't need to setup Free version options again.
190
 
191
  = How to donate or contribute? =
192
 
193
+ Please visit <a target="_blank" rel="friend" href="https://loginpress.pro?utm_source=loginpress-lite&utm_medium=readme-donate&utm_campaign=pro-upgrade">this link</a> for more info.
194
 
195
  == Screenshots ==
196
 
197
  1. Custom Login page Example #1 with Default Background
198
+ 2. Custom Login page (Company theme) Example #2 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
199
+ 3. Custom Login page (Company theme) Example #3 with Captcha [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
200
+ 4. Custom Login page (Persona theme) Example #4 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
201
+ 5. Custom Login page (Corporate theme) Example #5 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
202
+ 6. Custom Login page (Corporate theme) Example #6 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
203
+ 7. Custom Login page (Startup theme) Example #7 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
204
+ 8. Custom Login page (Wedding theme) Example #8 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
205
+ 9. Custom Login page (Wedding theme) Example #9 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
206
+ 10. Custom Login page (Company theme) Example #10 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
207
+ 11. Custom Login page (Company theme) Example #11 with Captcha [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
208
+ 12. Custom Login page (Bikers theme) Example #12 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
209
+ 13. Custom Login page (Fitness theme) Example #13 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
210
+ 14. Custom Login page (Shopping theme) Example #14 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
211
+ 15. Custom Login page (Writers theme) Example #15 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
212
+ 16. Custom Login page (Writers theme) Example #16 with reCaptcha [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
213
+ 17. Custom Login page (Persona theme) Example #17 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
214
+ 18. Custom Login page (Persona theme) Example #18 with reCaptcha [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
215
+ 19. Custom Login page (Geek theme) Example #19 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
216
+ 20. Custom Login page (Geek theme) Example #20 with reCaptcha [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
217
+ 21. Custom Login page (Innovation theme) Example #21 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
218
+ 22. Custom Login page (Photographers theme) Example #22 [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
219
+ 23. Custom Login page (Company theme) Example #23 with Captcha [Pro feature](https://loginpress.pro?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
220
 
221
  == Changelog ==
222
 
223
+ = 1.5.6 – 2021-09-07 =
224
+ * Bugfix: PHP warning if footer string is empty.
225
+ * Enhancement: Translations added for {Login Order} settings.
226
+ * Enhancement: Updated the POT file.
227
+
228
  = 1.5.5 – 2021-07-24 =
229
  * Bugfix: Welcome message for the lost password & register page.
230
  * Bugfix: A live preview of current year in copyright note (A `$YEAR$` variable will change in current year).
611
 
612
  == Upgrade Notice ==
613
 
614
+ = 1.5.6 =
615
  * Important Release, upgrade immediately. Compatible with 5.8