Custom Login Page Customizer by Colorlib - Version 1.2.91

Version Description

  • Added possibility to add links inside certain form texts
  • Updated deprecated filter login_headertitle
  • Added option to change login page title
Download this release

Release Info

Developer machothemes
Plugin Icon wp plugin Custom Login Page Customizer by Colorlib
Version 1.2.91
Comparing to
See all releases

Code changes from version 1.2.9 to 1.2.91

colorlib-login-customizer.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: Colorlib Login Customizer
4
- * Version: 1.2.9
5
  * Description: Colorlib Login Customizer is an awesome and intuitive plugin that helps you personalize your login form directly from the Customizer. The plugin fully supports the Live Customizer feature and you can see all the changes in real time and edit them.
6
  * Author: Colorlib
7
  * Author URI: https://colorlib.com/
@@ -48,7 +48,7 @@ require_once 'includes/class-colorlib-dashboard-widget-extend-feed.php';
48
  * @return object Colorlib_Login_Customizer
49
  */
50
  function colorlib_login_customizer() {
51
- $instance = Colorlib_Login_Customizer::instance( __FILE__, '1.2.9' );
52
 
53
  if ( is_null( $instance->settings ) ) {
54
  $instance->settings = Colorlib_Login_Customizer_Settings::instance( $instance );
1
  <?php
2
  /**
3
  * Plugin Name: Colorlib Login Customizer
4
+ * Version: 1.2.91
5
  * Description: Colorlib Login Customizer is an awesome and intuitive plugin that helps you personalize your login form directly from the Customizer. The plugin fully supports the Live Customizer feature and you can see all the changes in real time and edit them.
6
  * Author: Colorlib
7
  * Author URI: https://colorlib.com/
48
  * @return object Colorlib_Login_Customizer
49
  */
50
  function colorlib_login_customizer() {
51
+ $instance = Colorlib_Login_Customizer::instance( __FILE__, '1.2.91' );
52
 
53
  if ( is_null( $instance->settings ) ) {
54
  $instance->settings = Colorlib_Login_Customizer_Settings::instance( $instance );
includes/lib/class-colorlib-login-customizer-css-customization.php CHANGED
@@ -42,7 +42,8 @@ class Colorlib_Login_Customizer_CSS_Customization {
42
  add_action( 'login_footer', array( $this, 'close_extra_div' ) );
43
  add_filter( 'login_body_class', array( $this, 'body_class' ) );
44
  add_filter( 'login_headerurl', array( $this, 'logo_url' ), 99 );
45
- add_filter('login_headertitle', array($this, 'logo_title'), 99);
 
46
  //
47
  add_action( 'customize_preview_init', array( $this, 'output_css_object' ), 26 );
48
  }
@@ -648,6 +649,14 @@ class Colorlib_Login_Customizer_CSS_Customization {
648
  return $title;
649
  }
650
 
 
 
 
 
 
 
 
 
651
  /**
652
  * Output the inline CSS
653
  */
@@ -962,7 +971,7 @@ class Colorlib_Login_Customizer_CSS_Customization {
962
  if ( $label === $text ) {
963
  return $translated_text;
964
  }else{
965
- $translated_text = esc_html( $label );
966
  }
967
 
968
 
42
  add_action( 'login_footer', array( $this, 'close_extra_div' ) );
43
  add_filter( 'login_body_class', array( $this, 'body_class' ) );
44
  add_filter( 'login_headerurl', array( $this, 'logo_url' ), 99 );
45
+ add_filter('login_headertext', array($this, 'logo_title'), 99);
46
+ add_filter('login_title', array($this, 'login_page_title'), 99);
47
  //
48
  add_action( 'customize_preview_init', array( $this, 'output_css_object' ), 26 );
49
  }
649
  return $title;
650
  }
651
 
652
+ public function login_page_title($title){
653
+ if ( isset( $this->options['login-page-title'] ) ) {
654
+ return esc_html( $this->options['login-page-title'] );
655
+ }
656
+
657
+ return $title;
658
+ }
659
+
660
  /**
661
  * Output the inline CSS
662
  */
971
  if ( $label === $text ) {
972
  return $translated_text;
973
  }else{
974
+ $translated_text = wp_kses_post( $label );
975
  }
976
 
977
 
includes/lib/class-colorlib-login-customizer-customizer.php CHANGED
@@ -284,6 +284,13 @@ class Colorlib_Login_Customizer_Customizer {
284
  'type' => 'text',
285
  'default' => 'Powered by WordPress',
286
  ),
 
 
 
 
 
 
 
287
  array(
288
  'id' => 'logo-text-color',
289
  'label' => esc_html__( 'Logo text color', 'colorlib-login-customizer' ),
284
  'type' => 'text',
285
  'default' => 'Powered by WordPress',
286
  ),
287
+ array(
288
+ 'id' => 'login-page-title',
289
+ 'label' => esc_html__( 'Login Page Title', 'colorlib-login-customizer' ),
290
+ 'description' => esc_html__( 'Login page title that is shown when you access the admin login page.', 'colorlib-login-customizer' ),
291
+ 'type' => 'text',
292
+ 'default' => '',
293
+ ),
294
  array(
295
  'id' => 'logo-text-color',
296
  'label' => esc_html__( 'Logo text color', 'colorlib-login-customizer' ),
languages/colorlib-login-customizer.po CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the GPLv3 or later.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Colorlib Login Customizer 1.2.9\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/colorlib-login-customizer\n"
8
- "POT-Creation-Date: 2019-04-15 12:45:01+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -98,443 +98,451 @@ msgid ""
98
  msgstr ""
99
 
100
  #: includes/lib/class-colorlib-login-customizer-customizer.php:289
101
- msgid "Logo text color"
102
  msgstr ""
103
 
104
  #: includes/lib/class-colorlib-login-customizer-customizer.php:290
105
- msgid "This will change the color text property."
 
 
 
 
106
  msgstr ""
107
 
108
  #: includes/lib/class-colorlib-login-customizer-customizer.php:297
 
 
 
 
109
  msgid "Logo text color hover"
110
  msgstr ""
111
 
112
- #: includes/lib/class-colorlib-login-customizer-customizer.php:298
113
  msgid "This will change the color text property on hover."
114
  msgstr ""
115
 
116
- #: includes/lib/class-colorlib-login-customizer-customizer.php:305
117
  msgid "Logo text size"
118
  msgstr ""
119
 
120
- #: includes/lib/class-colorlib-login-customizer-customizer.php:306
121
  msgid "This will change the text size of logo."
122
  msgstr ""
123
 
124
- #: includes/lib/class-colorlib-login-customizer-customizer.php:318
125
  msgid "Custom logo"
126
  msgstr ""
127
 
128
- #: includes/lib/class-colorlib-login-customizer-customizer.php:319
129
- #: includes/lib/class-colorlib-login-customizer-customizer.php:466
130
- #: includes/lib/class-colorlib-login-customizer-customizer.php:481
131
  msgid ""
132
  "This will upload an image to your media library and store the attachment ID "
133
  "in the option field. Once you have uploaded an imge the thumbnail will "
134
  "display above these buttons."
135
  msgstr ""
136
 
137
- #: includes/lib/class-colorlib-login-customizer-customizer.php:326
138
  msgid "Logo Width"
139
  msgstr ""
140
 
141
- #: includes/lib/class-colorlib-login-customizer-customizer.php:327
142
  msgid "Make sure you set the logo width to match your image."
143
  msgstr ""
144
 
145
- #: includes/lib/class-colorlib-login-customizer-customizer.php:339
146
  msgid "Logo Height"
147
  msgstr ""
148
 
149
- #: includes/lib/class-colorlib-login-customizer-customizer.php:340
150
  msgid "Make sure you set the logo height to match your image."
151
  msgstr ""
152
 
153
- #: includes/lib/class-colorlib-login-customizer-customizer.php:354
154
  msgid "Layout options"
155
  msgstr ""
156
 
157
- #: includes/lib/class-colorlib-login-customizer-customizer.php:359
158
  msgid "Columns"
159
  msgstr ""
160
 
161
- #: includes/lib/class-colorlib-login-customizer-customizer.php:376
162
  msgid "Columns Width"
163
  msgstr ""
164
 
165
- #: includes/lib/class-colorlib-login-customizer-customizer.php:383
166
  msgid "Form Column Alignment"
167
  msgstr ""
168
 
169
- #: includes/lib/class-colorlib-login-customizer-customizer.php:409
170
  msgid "Form Vertical Alignment"
171
  msgstr ""
172
 
173
- #: includes/lib/class-colorlib-login-customizer-customizer.php:430
174
  msgid "Form Horizontal Alignment"
175
  msgstr ""
176
 
177
- #: includes/lib/class-colorlib-login-customizer-customizer.php:453
178
  msgid "Background options"
179
  msgstr ""
180
 
181
- #: includes/lib/class-colorlib-login-customizer-customizer.php:458
182
  msgid "Custom background color"
183
  msgstr ""
184
 
185
- #: includes/lib/class-colorlib-login-customizer-customizer.php:459
186
- #: includes/lib/class-colorlib-login-customizer-customizer.php:473
187
- #: includes/lib/class-colorlib-login-customizer-customizer.php:527
188
- #: includes/lib/class-colorlib-login-customizer-customizer.php:590
189
  msgid "This will change the background color property."
190
  msgstr ""
191
 
192
- #: includes/lib/class-colorlib-login-customizer-customizer.php:465
193
  msgid "Custom background"
194
  msgstr ""
195
 
196
- #: includes/lib/class-colorlib-login-customizer-customizer.php:472
197
  msgid "Form Column background color"
198
  msgstr ""
199
 
200
- #: includes/lib/class-colorlib-login-customizer-customizer.php:480
201
  msgid "Form Column background"
202
  msgstr ""
203
 
204
- #: includes/lib/class-colorlib-login-customizer-customizer.php:490
205
  msgid "General Form options"
206
  msgstr ""
207
 
208
- #: includes/lib/class-colorlib-login-customizer-customizer.php:495
209
  msgid "Form Width"
210
  msgstr ""
211
 
212
- #: includes/lib/class-colorlib-login-customizer-customizer.php:496
213
  msgid "Please input the desired width for the login form in pixels. Example: 20"
214
  msgstr ""
215
 
216
- #: includes/lib/class-colorlib-login-customizer-customizer.php:507
217
  msgid "Form Height"
218
  msgstr ""
219
 
220
- #: includes/lib/class-colorlib-login-customizer-customizer.php:508
221
  msgid "Please input the desired height for the login form in pixels. Example: 20"
222
  msgstr ""
223
 
224
- #: includes/lib/class-colorlib-login-customizer-customizer.php:519
225
  msgid "Form background image"
226
  msgstr ""
227
 
228
- #: includes/lib/class-colorlib-login-customizer-customizer.php:520
229
  msgid "This will change the background image property of login form."
230
  msgstr ""
231
 
232
- #: includes/lib/class-colorlib-login-customizer-customizer.php:526
233
  msgid "Form background color"
234
  msgstr ""
235
 
236
- #: includes/lib/class-colorlib-login-customizer-customizer.php:533
237
  msgid "Form padding"
238
  msgstr ""
239
 
240
- #: includes/lib/class-colorlib-login-customizer-customizer.php:534
241
  msgid "This will change the padding property. Example: 26px 24px 46px 30px"
242
  msgstr ""
243
 
244
- #: includes/lib/class-colorlib-login-customizer-customizer.php:540
245
  msgid "Form border"
246
  msgstr ""
247
 
248
- #: includes/lib/class-colorlib-login-customizer-customizer.php:541
249
  msgid "This will change the border property. Example: 2px dotted black"
250
  msgstr ""
251
 
252
- #: includes/lib/class-colorlib-login-customizer-customizer.php:547
253
  msgid "Form border radius"
254
  msgstr ""
255
 
256
- #: includes/lib/class-colorlib-login-customizer-customizer.php:548
257
  msgid "This will change the border radius property. Example: 2px 2px 2px 2px"
258
  msgstr ""
259
 
260
- #: includes/lib/class-colorlib-login-customizer-customizer.php:554
261
  msgid "Form shadow"
262
  msgstr ""
263
 
264
- #: includes/lib/class-colorlib-login-customizer-customizer.php:555
265
  msgid "This will change the form's shadow property. Example: 0 1px 0 #006799"
266
  msgstr ""
267
 
268
- #: includes/lib/class-colorlib-login-customizer-customizer.php:561
269
  msgid "Form field width"
270
  msgstr ""
271
 
272
- #: includes/lib/class-colorlib-login-customizer-customizer.php:562
273
  msgid "Please input the desired width for the form field in pixels. Example: 20"
274
  msgstr ""
275
 
276
- #: includes/lib/class-colorlib-login-customizer-customizer.php:568
277
  msgid "Form field margin"
278
  msgstr ""
279
 
280
- #: includes/lib/class-colorlib-login-customizer-customizer.php:569
281
  msgid "This will change the margin property. Example: 26px 24px 46px 30px"
282
  msgstr ""
283
 
284
- #: includes/lib/class-colorlib-login-customizer-customizer.php:575
285
  msgid "Form field border"
286
  msgstr ""
287
 
288
- #: includes/lib/class-colorlib-login-customizer-customizer.php:576
289
  msgid ""
290
  "Please input the desired border for the form field. Example: 2px dotted "
291
  "black"
292
  msgstr ""
293
 
294
- #: includes/lib/class-colorlib-login-customizer-customizer.php:582
295
  msgid "Form field border radius"
296
  msgstr ""
297
 
298
- #: includes/lib/class-colorlib-login-customizer-customizer.php:583
299
  msgid ""
300
  "Please input the desired border radiuse for the form field. Example: 5px "
301
  "5px 5px 5px"
302
  msgstr ""
303
 
304
- #: includes/lib/class-colorlib-login-customizer-customizer.php:589
305
  msgid "Form field background"
306
  msgstr ""
307
 
308
- #: includes/lib/class-colorlib-login-customizer-customizer.php:596
309
  msgid "Form field color"
310
  msgstr ""
311
 
312
- #: includes/lib/class-colorlib-login-customizer-customizer.php:597
313
  msgid "This will change the text color property."
314
  msgstr ""
315
 
316
- #: includes/lib/class-colorlib-login-customizer-customizer.php:603
317
  msgid "Form label color"
318
  msgstr ""
319
 
320
- #: includes/lib/class-colorlib-login-customizer-customizer.php:604
321
  msgid "This will change the label text color property."
322
  msgstr ""
323
 
324
- #: includes/lib/class-colorlib-login-customizer-customizer.php:610
325
  msgid "Lost Password Text"
326
  msgstr ""
327
 
328
- #: includes/lib/class-colorlib-login-customizer-customizer.php:611
329
  msgid "You can change the default text for \"Lost your password\" "
330
  msgstr ""
331
 
332
- #: includes/lib/class-colorlib-login-customizer-customizer.php:617
333
  msgid "Back to site text"
334
  msgstr ""
335
 
336
- #: includes/lib/class-colorlib-login-customizer-customizer.php:618
337
  msgid "You can change the default text for \"Back to\" site "
338
  msgstr ""
339
 
340
- #: includes/lib/class-colorlib-login-customizer-customizer.php:624
341
  msgid "Hide Extra Links"
342
  msgstr ""
343
 
344
- #: includes/lib/class-colorlib-login-customizer-customizer.php:625
345
  msgid "Show/Hide the links under the login form"
346
  msgstr ""
347
 
348
- #: includes/lib/class-colorlib-login-customizer-customizer.php:633
349
  msgid "Login Form Texts"
350
  msgstr ""
351
 
352
- #: includes/lib/class-colorlib-login-customizer-customizer.php:638
353
- #: includes/lib/class-colorlib-login-customizer-customizer.php:681
354
- #: includes/lib/class-colorlib-login-customizer-customizer.php:728
355
  msgid "Username label"
356
  msgstr ""
357
 
358
- #: includes/lib/class-colorlib-login-customizer-customizer.php:639
359
- #: includes/lib/class-colorlib-login-customizer-customizer.php:682
360
- #: includes/lib/class-colorlib-login-customizer-customizer.php:729
361
  msgid "You can change the default text for username label or just delete it."
362
  msgstr ""
363
 
364
- #: includes/lib/class-colorlib-login-customizer-customizer.php:645
365
  msgid "Password label"
366
  msgstr ""
367
 
368
- #: includes/lib/class-colorlib-login-customizer-customizer.php:646
369
  msgid "You can change the default text for password label or just delete it."
370
  msgstr ""
371
 
372
- #: includes/lib/class-colorlib-login-customizer-customizer.php:652
373
  msgid "Remember Me label"
374
  msgstr ""
375
 
376
- #: includes/lib/class-colorlib-login-customizer-customizer.php:653
377
  msgid "You can change the default remember me text."
378
  msgstr ""
379
 
380
- #: includes/lib/class-colorlib-login-customizer-customizer.php:659
381
  msgid "Login label"
382
  msgstr ""
383
 
384
- #: includes/lib/class-colorlib-login-customizer-customizer.php:660
385
  msgid "You can change the default text for the log in button."
386
  msgstr ""
387
 
388
- #: includes/lib/class-colorlib-login-customizer-customizer.php:666
389
  msgid "Register link"
390
  msgstr ""
391
 
392
- #: includes/lib/class-colorlib-login-customizer-customizer.php:667
393
  msgid ""
394
  "You can change the default text for the register link at the end of the "
395
  "form."
396
  msgstr ""
397
 
398
- #: includes/lib/class-colorlib-login-customizer-customizer.php:676
399
  msgid "Register Form Texts"
400
  msgstr ""
401
 
402
- #: includes/lib/class-colorlib-login-customizer-customizer.php:689
403
  msgid "Email label"
404
  msgstr ""
405
 
406
- #: includes/lib/class-colorlib-login-customizer-customizer.php:690
407
  msgid "You can change the default text for email label or just delete it."
408
  msgstr ""
409
 
410
- #: includes/lib/class-colorlib-login-customizer-customizer.php:697
411
  msgid "Registration confirmation text"
412
  msgstr ""
413
 
414
- #: includes/lib/class-colorlib-login-customizer-customizer.php:698
415
  msgid "You can change the default registration confirmation text."
416
  msgstr ""
417
 
418
- #: includes/lib/class-colorlib-login-customizer-customizer.php:705
419
- #: includes/lib/class-colorlib-login-customizer-customizer.php:735
420
  msgid "Button label"
421
  msgstr ""
422
 
423
- #: includes/lib/class-colorlib-login-customizer-customizer.php:706
424
  msgid "You can change the default text for the register button."
425
  msgstr ""
426
 
427
- #: includes/lib/class-colorlib-login-customizer-customizer.php:713
428
  msgid "Login link"
429
  msgstr ""
430
 
431
- #: includes/lib/class-colorlib-login-customizer-customizer.php:714
432
  msgid "You can change the default text for the login link at the end of the form."
433
  msgstr ""
434
 
435
- #: includes/lib/class-colorlib-login-customizer-customizer.php:723
436
  msgid "Lost Password Form Texts"
437
  msgstr ""
438
 
439
- #: includes/lib/class-colorlib-login-customizer-customizer.php:736
440
  msgid "You can change the default text for the lost password button."
441
  msgstr ""
442
 
443
- #: includes/lib/class-colorlib-login-customizer-customizer.php:745
444
  msgid "Form Button & Links"
445
  msgstr ""
446
 
447
- #: includes/lib/class-colorlib-login-customizer-customizer.php:750
448
  msgid "Button background"
449
  msgstr ""
450
 
451
- #: includes/lib/class-colorlib-login-customizer-customizer.php:751
452
  msgid "This will change the submit button's background property"
453
  msgstr ""
454
 
455
- #: includes/lib/class-colorlib-login-customizer-customizer.php:757
456
  msgid "Button background hover state"
457
  msgstr ""
458
 
459
- #: includes/lib/class-colorlib-login-customizer-customizer.php:758
460
  msgid "This will change the submit button's background property on hover"
461
  msgstr ""
462
 
463
- #: includes/lib/class-colorlib-login-customizer-customizer.php:764
464
  msgid "Button border color"
465
  msgstr ""
466
 
467
- #: includes/lib/class-colorlib-login-customizer-customizer.php:765
468
  msgid "This will change the submit button's border color property"
469
  msgstr ""
470
 
471
- #: includes/lib/class-colorlib-login-customizer-customizer.php:771
472
  msgid "Button border hover state"
473
  msgstr ""
474
 
475
- #: includes/lib/class-colorlib-login-customizer-customizer.php:772
476
  msgid "This will change the submit button's border property on hover"
477
  msgstr ""
478
 
479
- #: includes/lib/class-colorlib-login-customizer-customizer.php:778
480
  msgid "Button shadow"
481
  msgstr ""
482
 
483
- #: includes/lib/class-colorlib-login-customizer-customizer.php:779
484
  msgid ""
485
  "This will change the submit button's shadow property. Example: 0 1px 0 "
486
  "#006799"
487
  msgstr ""
488
 
489
- #: includes/lib/class-colorlib-login-customizer-customizer.php:785
490
  msgid "Button text shadow"
491
  msgstr ""
492
 
493
- #: includes/lib/class-colorlib-login-customizer-customizer.php:786
494
  msgid ""
495
  "This will change the submit button text's shadow property. Example: 0 -1px "
496
  "1px #006799"
497
  msgstr ""
498
 
499
- #: includes/lib/class-colorlib-login-customizer-customizer.php:792
500
  msgid "Button color"
501
  msgstr ""
502
 
503
- #: includes/lib/class-colorlib-login-customizer-customizer.php:793
504
  msgid "This will change the submit button's text color property"
505
  msgstr ""
506
 
507
- #: includes/lib/class-colorlib-login-customizer-customizer.php:799
508
  msgid "Link color"
509
  msgstr ""
510
 
511
- #: includes/lib/class-colorlib-login-customizer-customizer.php:800
512
  msgid "This will change the text color of links that are underneath the login form"
513
  msgstr ""
514
 
515
- #: includes/lib/class-colorlib-login-customizer-customizer.php:806
516
  msgid "Link color hover"
517
  msgstr ""
518
 
519
- #: includes/lib/class-colorlib-login-customizer-customizer.php:807
520
  msgid ""
521
  "This will change the text color of links, that are underneath the login "
522
  "form, on hover"
523
  msgstr ""
524
 
525
- #: includes/lib/class-colorlib-login-customizer-customizer.php:813
526
  msgid "Hide \"Remember Me\""
527
  msgstr ""
528
 
529
- #: includes/lib/class-colorlib-login-customizer-customizer.php:814
530
  msgid "Show/Hide the \"Remember Me\" checkbox"
531
  msgstr ""
532
 
533
- #: includes/lib/class-colorlib-login-customizer-customizer.php:822
534
  msgid "Custom CSS"
535
  msgstr ""
536
 
537
- #: includes/lib/class-colorlib-login-customizer-customizer.php:827
538
  msgid "CSS code"
539
  msgstr ""
540
 
2
  # This file is distributed under the GPLv3 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Colorlib Login Customizer 1.2.91\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/colorlib-login-customizer\n"
8
+ "POT-Creation-Date: 2019-06-13 11:18:57+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
98
  msgstr ""
99
 
100
  #: includes/lib/class-colorlib-login-customizer-customizer.php:289
101
+ msgid "Login Page Title"
102
  msgstr ""
103
 
104
  #: includes/lib/class-colorlib-login-customizer-customizer.php:290
105
+ msgid "Login page title that is shown when you access the admin login page."
106
+ msgstr ""
107
+
108
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:296
109
+ msgid "Logo text color"
110
  msgstr ""
111
 
112
  #: includes/lib/class-colorlib-login-customizer-customizer.php:297
113
+ msgid "This will change the color text property."
114
+ msgstr ""
115
+
116
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:304
117
  msgid "Logo text color hover"
118
  msgstr ""
119
 
120
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:305
121
  msgid "This will change the color text property on hover."
122
  msgstr ""
123
 
124
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:312
125
  msgid "Logo text size"
126
  msgstr ""
127
 
128
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:313
129
  msgid "This will change the text size of logo."
130
  msgstr ""
131
 
132
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:325
133
  msgid "Custom logo"
134
  msgstr ""
135
 
136
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:326
137
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:473
138
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:488
139
  msgid ""
140
  "This will upload an image to your media library and store the attachment ID "
141
  "in the option field. Once you have uploaded an imge the thumbnail will "
142
  "display above these buttons."
143
  msgstr ""
144
 
145
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:333
146
  msgid "Logo Width"
147
  msgstr ""
148
 
149
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:334
150
  msgid "Make sure you set the logo width to match your image."
151
  msgstr ""
152
 
153
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:346
154
  msgid "Logo Height"
155
  msgstr ""
156
 
157
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:347
158
  msgid "Make sure you set the logo height to match your image."
159
  msgstr ""
160
 
161
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:361
162
  msgid "Layout options"
163
  msgstr ""
164
 
165
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:366
166
  msgid "Columns"
167
  msgstr ""
168
 
169
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:383
170
  msgid "Columns Width"
171
  msgstr ""
172
 
173
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:390
174
  msgid "Form Column Alignment"
175
  msgstr ""
176
 
177
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:416
178
  msgid "Form Vertical Alignment"
179
  msgstr ""
180
 
181
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:437
182
  msgid "Form Horizontal Alignment"
183
  msgstr ""
184
 
185
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:460
186
  msgid "Background options"
187
  msgstr ""
188
 
189
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:465
190
  msgid "Custom background color"
191
  msgstr ""
192
 
193
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:466
194
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:480
195
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:534
196
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:597
197
  msgid "This will change the background color property."
198
  msgstr ""
199
 
200
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:472
201
  msgid "Custom background"
202
  msgstr ""
203
 
204
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:479
205
  msgid "Form Column background color"
206
  msgstr ""
207
 
208
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:487
209
  msgid "Form Column background"
210
  msgstr ""
211
 
212
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:497
213
  msgid "General Form options"
214
  msgstr ""
215
 
216
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:502
217
  msgid "Form Width"
218
  msgstr ""
219
 
220
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:503
221
  msgid "Please input the desired width for the login form in pixels. Example: 20"
222
  msgstr ""
223
 
224
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:514
225
  msgid "Form Height"
226
  msgstr ""
227
 
228
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:515
229
  msgid "Please input the desired height for the login form in pixels. Example: 20"
230
  msgstr ""
231
 
232
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:526
233
  msgid "Form background image"
234
  msgstr ""
235
 
236
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:527
237
  msgid "This will change the background image property of login form."
238
  msgstr ""
239
 
240
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:533
241
  msgid "Form background color"
242
  msgstr ""
243
 
244
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:540
245
  msgid "Form padding"
246
  msgstr ""
247
 
248
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:541
249
  msgid "This will change the padding property. Example: 26px 24px 46px 30px"
250
  msgstr ""
251
 
252
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:547
253
  msgid "Form border"
254
  msgstr ""
255
 
256
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:548
257
  msgid "This will change the border property. Example: 2px dotted black"
258
  msgstr ""
259
 
260
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:554
261
  msgid "Form border radius"
262
  msgstr ""
263
 
264
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:555
265
  msgid "This will change the border radius property. Example: 2px 2px 2px 2px"
266
  msgstr ""
267
 
268
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:561
269
  msgid "Form shadow"
270
  msgstr ""
271
 
272
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:562
273
  msgid "This will change the form's shadow property. Example: 0 1px 0 #006799"
274
  msgstr ""
275
 
276
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:568
277
  msgid "Form field width"
278
  msgstr ""
279
 
280
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:569
281
  msgid "Please input the desired width for the form field in pixels. Example: 20"
282
  msgstr ""
283
 
284
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:575
285
  msgid "Form field margin"
286
  msgstr ""
287
 
288
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:576
289
  msgid "This will change the margin property. Example: 26px 24px 46px 30px"
290
  msgstr ""
291
 
292
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:582
293
  msgid "Form field border"
294
  msgstr ""
295
 
296
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:583
297
  msgid ""
298
  "Please input the desired border for the form field. Example: 2px dotted "
299
  "black"
300
  msgstr ""
301
 
302
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:589
303
  msgid "Form field border radius"
304
  msgstr ""
305
 
306
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:590
307
  msgid ""
308
  "Please input the desired border radiuse for the form field. Example: 5px "
309
  "5px 5px 5px"
310
  msgstr ""
311
 
312
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:596
313
  msgid "Form field background"
314
  msgstr ""
315
 
316
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:603
317
  msgid "Form field color"
318
  msgstr ""
319
 
320
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:604
321
  msgid "This will change the text color property."
322
  msgstr ""
323
 
324
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:610
325
  msgid "Form label color"
326
  msgstr ""
327
 
328
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:611
329
  msgid "This will change the label text color property."
330
  msgstr ""
331
 
332
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:617
333
  msgid "Lost Password Text"
334
  msgstr ""
335
 
336
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:618
337
  msgid "You can change the default text for \"Lost your password\" "
338
  msgstr ""
339
 
340
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:624
341
  msgid "Back to site text"
342
  msgstr ""
343
 
344
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:625
345
  msgid "You can change the default text for \"Back to\" site "
346
  msgstr ""
347
 
348
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:631
349
  msgid "Hide Extra Links"
350
  msgstr ""
351
 
352
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:632
353
  msgid "Show/Hide the links under the login form"
354
  msgstr ""
355
 
356
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:640
357
  msgid "Login Form Texts"
358
  msgstr ""
359
 
360
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:645
361
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:688
362
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:735
363
  msgid "Username label"
364
  msgstr ""
365
 
366
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:646
367
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:689
368
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:736
369
  msgid "You can change the default text for username label or just delete it."
370
  msgstr ""
371
 
372
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:652
373
  msgid "Password label"
374
  msgstr ""
375
 
376
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:653
377
  msgid "You can change the default text for password label or just delete it."
378
  msgstr ""
379
 
380
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:659
381
  msgid "Remember Me label"
382
  msgstr ""
383
 
384
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:660
385
  msgid "You can change the default remember me text."
386
  msgstr ""
387
 
388
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:666
389
  msgid "Login label"
390
  msgstr ""
391
 
392
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:667
393
  msgid "You can change the default text for the log in button."
394
  msgstr ""
395
 
396
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:673
397
  msgid "Register link"
398
  msgstr ""
399
 
400
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:674
401
  msgid ""
402
  "You can change the default text for the register link at the end of the "
403
  "form."
404
  msgstr ""
405
 
406
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:683
407
  msgid "Register Form Texts"
408
  msgstr ""
409
 
410
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:696
411
  msgid "Email label"
412
  msgstr ""
413
 
414
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:697
415
  msgid "You can change the default text for email label or just delete it."
416
  msgstr ""
417
 
418
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:704
419
  msgid "Registration confirmation text"
420
  msgstr ""
421
 
422
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:705
423
  msgid "You can change the default registration confirmation text."
424
  msgstr ""
425
 
426
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:712
427
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:742
428
  msgid "Button label"
429
  msgstr ""
430
 
431
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:713
432
  msgid "You can change the default text for the register button."
433
  msgstr ""
434
 
435
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:720
436
  msgid "Login link"
437
  msgstr ""
438
 
439
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:721
440
  msgid "You can change the default text for the login link at the end of the form."
441
  msgstr ""
442
 
443
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:730
444
  msgid "Lost Password Form Texts"
445
  msgstr ""
446
 
447
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:743
448
  msgid "You can change the default text for the lost password button."
449
  msgstr ""
450
 
451
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:752
452
  msgid "Form Button & Links"
453
  msgstr ""
454
 
455
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:757
456
  msgid "Button background"
457
  msgstr ""
458
 
459
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:758
460
  msgid "This will change the submit button's background property"
461
  msgstr ""
462
 
463
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:764
464
  msgid "Button background hover state"
465
  msgstr ""
466
 
467
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:765
468
  msgid "This will change the submit button's background property on hover"
469
  msgstr ""
470
 
471
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:771
472
  msgid "Button border color"
473
  msgstr ""
474
 
475
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:772
476
  msgid "This will change the submit button's border color property"
477
  msgstr ""
478
 
479
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:778
480
  msgid "Button border hover state"
481
  msgstr ""
482
 
483
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:779
484
  msgid "This will change the submit button's border property on hover"
485
  msgstr ""
486
 
487
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:785
488
  msgid "Button shadow"
489
  msgstr ""
490
 
491
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:786
492
  msgid ""
493
  "This will change the submit button's shadow property. Example: 0 1px 0 "
494
  "#006799"
495
  msgstr ""
496
 
497
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:792
498
  msgid "Button text shadow"
499
  msgstr ""
500
 
501
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:793
502
  msgid ""
503
  "This will change the submit button text's shadow property. Example: 0 -1px "
504
  "1px #006799"
505
  msgstr ""
506
 
507
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:799
508
  msgid "Button color"
509
  msgstr ""
510
 
511
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:800
512
  msgid "This will change the submit button's text color property"
513
  msgstr ""
514
 
515
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:806
516
  msgid "Link color"
517
  msgstr ""
518
 
519
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:807
520
  msgid "This will change the text color of links that are underneath the login form"
521
  msgstr ""
522
 
523
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:813
524
  msgid "Link color hover"
525
  msgstr ""
526
 
527
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:814
528
  msgid ""
529
  "This will change the text color of links, that are underneath the login "
530
  "form, on hover"
531
  msgstr ""
532
 
533
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:820
534
  msgid "Hide \"Remember Me\""
535
  msgstr ""
536
 
537
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:821
538
  msgid "Show/Hide the \"Remember Me\" checkbox"
539
  msgstr ""
540
 
541
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:829
542
  msgid "Custom CSS"
543
  msgstr ""
544
 
545
+ #: includes/lib/class-colorlib-login-customizer-customizer.php:834
546
  msgid "CSS code"
547
  msgstr ""
548
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: silkalns
3
  Tags: customize login, login, custom login, customize wordpress login, wordpress login, customizer, custom admin, login logo, logo, login customizer, custom wp-login
4
  Requires at least: 4.7
5
- Tested up to: 5.1.1
6
- Stable tag: 1.2.9
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -93,6 +93,11 @@ If you enjoy using Colorlib Login Customizer for WordPress please leave a [posit
93
 
94
  == Changelog ==
95
 
 
 
 
 
 
96
  = 1.2.9 =
97
  * Update toggles design
98
 
2
  Contributors: silkalns
3
  Tags: customize login, login, custom login, customize wordpress login, wordpress login, customizer, custom admin, login logo, logo, login customizer, custom wp-login
4
  Requires at least: 4.7
5
+ Tested up to: 5.2
6
+ Stable tag: 1.2.91
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
93
 
94
  == Changelog ==
95
 
96
+ = 1.2.91 =
97
+ * Added possibility to add links inside certain form texts
98
+ * Updated deprecated filter login_headertitle
99
+ * Added option to change login page title
100
+
101
  = 1.2.9 =
102
  * Update toggles design
103