Custom Login Page Customizer | LoginPress - Version 1.1.7

Version Description

  • 2018-07-13 =
  • New Feature: Create a setting option "Lost Password URL" for using WordPress default forget form instead WooCommerce forget form.
  • New Feature: Create a Hook for removing "Remember me" checkbox.
  • New Feature: Compatible with LoginPress new addon (Login Menus).
  • Bugfix: Multisite PHP error.
  • Update: French language.
  • Update: POT file.
  • Compatibility: Compatible with WordPress 4.9.
  • Enhancement: Code refactoring.
Download this release

Release Info

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

Code changes from version 1.1.6 to 1.1.7

classes/class-loginpress-developer-hooks.php ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * LoginPress has some hooks for developers.
5
+ * @since 1.1.7
6
+ */
7
+ if ( ! class_exists( 'LoginPress_Developer_Hooks' ) ) {
8
+
9
+ /**
10
+ * Developer friendly hooks.
11
+ */
12
+ class LoginPress_Developer_Hooks {
13
+
14
+ /* * * * * * * * * *
15
+ * Class constructor
16
+ * * * * * * * * * */
17
+ public function __construct() {
18
+
19
+ $this->_hooks();
20
+ }
21
+
22
+ public function _hooks(){
23
+
24
+ add_filter( 'loginpress_remember_me', array( $this, 'loginpress_remember_me_callback' ), 10, 1 );
25
+ }
26
+
27
+ /**
28
+ * loginpress_remember_me_callback [turn off the remember me option from WordPress login form.]
29
+ * @param bolean $activate
30
+ * @since 1.1.7
31
+ */
32
+ public function loginpress_remember_me_callback( $activate ) {
33
+
34
+ if ( ! $activate )
35
+ return;
36
+
37
+ // Add the hook into the login_form
38
+ add_action( 'login_form', array( $this, 'loginpress_login_form' ), 99 );
39
+ // Reset any attempt to set the remember option
40
+ add_action( 'login_head', array( $this, 'unset_remember_me_option' ), 99 );
41
+ }
42
+
43
+ function unset_remember_me_option() {
44
+
45
+ // Remove the rememberme post value
46
+ if( isset( $_POST['rememberme'] ) ) {
47
+ unset( $_POST['rememberme'] );
48
+ }
49
+ }
50
+
51
+ function loginpress_login_form() {
52
+
53
+ ob_start( array( $this, 'remove_forgetmenot_class' ) );
54
+ }
55
+
56
+ function remove_forgetmenot_class( $content ) {
57
+
58
+ $content = preg_replace( '/<p class="forgetmenot">(.*)<\/p>/', '', $content);
59
+ return $content;
60
+ }
61
+
62
+ }
63
+
64
+ }
65
+ $loginpress_developer_hooks = new LoginPress_Developer_Hooks();
66
+ ?>
classes/class-loginpress-setup.php CHANGED
@@ -3,6 +3,7 @@
3
  * LoginPress Settings
4
  *
5
  * @since 1.0.9
 
6
  */
7
  if ( ! class_exists( 'LoginPress_Settings' ) ):
8
 
@@ -184,11 +185,16 @@ class LoginPress_Settings {
184
  // ) );
185
  // }
186
 
 
 
 
 
 
187
  $_settings_fields = apply_filters( 'loginpress_pro_settings', $_free_fields );
188
 
189
- $settings_fields = array( 'loginpress_setting' => $_settings_fields );
190
 
191
- $tab = apply_filters( 'loginpress_settings_fields', $settings_fields );
192
 
193
  return $tab;
194
  }
@@ -266,5 +272,25 @@ class LoginPress_Settings {
266
  return $pages_options;
267
  }
268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  }
270
  endif;
3
  * LoginPress Settings
4
  *
5
  * @since 1.0.9
6
+ * @version 1.1.7
7
  */
8
  if ( ! class_exists( 'LoginPress_Settings' ) ):
9
 
185
  // ) );
186
  // }
187
 
188
+ // Add WooCommerce lostpassword_url field in version 1.1.7
189
+ if ( class_exists( 'WooCommerce' ) ) {
190
+ $_free_fields = $this->loginpress_woocommerce_lostpasword_url( $_free_fields );
191
+ }
192
+
193
  $_settings_fields = apply_filters( 'loginpress_pro_settings', $_free_fields );
194
 
195
+ $settings_fields = array( 'loginpress_setting' => $_settings_fields );
196
 
197
+ $tab = apply_filters( 'loginpress_settings_fields', $settings_fields );
198
 
199
  return $tab;
200
  }
272
  return $pages_options;
273
  }
274
 
275
+ /**
276
+ * loginpress_woocommerce_lostpasword_url [merge a woocommerce lostpassword url field with the last element of array.]
277
+ * @param array $fields_list
278
+ * @since 1.1.7
279
+ * @return array
280
+ */
281
+ function loginpress_woocommerce_lostpasword_url( $fields_list ) {
282
+
283
+ $array_elements = array_slice( $fields_list, 0, -1 ); //slice a last element of array.
284
+ $last_element = end( $fields_list ); // last element of array.
285
+ $lostpassword_url = array(
286
+ 'name' => 'lostpassword_url',
287
+ 'label' => __( 'Lost Password URL', 'loginpress' ),
288
+ 'desc' => __( 'Use WordPress default lost password URL instead of WooCommerce custom lost password URL.', 'loginpress' ),
289
+ 'type' => 'checkbox'
290
+ );
291
+ $last_two_elements = array_merge( array( $lostpassword_url, $last_element ) ); // merge last 2 elements of array.
292
+ return array_merge( $array_elements, $last_two_elements ); // merge an array and return.
293
+ }
294
+
295
  }
296
  endif;
classes/controls/radio-button.php CHANGED
@@ -4,6 +4,7 @@
4
  *
5
  * @since 1.0.23
6
  * @access public
 
7
  */
8
  class LoginPress_Radio_Control extends WP_Customize_Control {
9
 
@@ -16,6 +17,15 @@ class LoginPress_Radio_Control extends WP_Customize_Control {
16
  */
17
  public $type = 'ios';
18
 
 
 
 
 
 
 
 
 
 
19
  /**
20
  * Enqueue scripts/styles.
21
  *
@@ -68,6 +78,7 @@ class LoginPress_Radio_Control extends WP_Customize_Control {
68
  <label>
69
  <div style="display:flex;flex-direction: row;justify-content: flex-start;">
70
  <span class="customize-control-title" style="flex: 2 0 0; vertical-align: middle;"><?php echo esc_html( $this->label ); ?></span>
 
71
  <input id="cb<?php echo $this->instance_number ?>" type="checkbox" class="loginpress-radio loginpress-radio-<?php echo $this->type?>" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->link(); checked( $this->value() ); ?> />
72
  <label for="cb<?php echo $this->instance_number ?>" class="loginpress-radio-btn"></label>
73
  </div>
4
  *
5
  * @since 1.0.23
6
  * @access public
7
+ * @version 1.1.7
8
  */
9
  class LoginPress_Radio_Control extends WP_Customize_Control {
10
 
17
  */
18
  public $type = 'ios';
19
 
20
+ /**
21
+ * The loader of customize control being rendered.
22
+ *
23
+ * @since 1.1.7
24
+ * @access public
25
+ * @var bolean
26
+ */
27
+ public $loader = false;
28
+
29
  /**
30
  * Enqueue scripts/styles.
31
  *
78
  <label>
79
  <div style="display:flex;flex-direction: row;justify-content: flex-start;">
80
  <span class="customize-control-title" style="flex: 2 0 0; vertical-align: middle;"><?php echo esc_html( $this->label ); ?></span>
81
+ <?php if ( true == $this->loader ) : ?><span class="customize-radio-control-loader"><img src="<?php echo admin_url( 'images/loading.gif' ); ?>" alt="loader"></span><?php endif; ?>
82
  <input id="cb<?php echo $this->instance_number ?>" type="checkbox" class="loginpress-radio loginpress-radio-<?php echo $this->type?>" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->link(); checked( $this->value() ); ?> />
83
  <label for="cb<?php echo $this->instance_number ?>" class="loginpress-radio-btn"></label>
84
  </div>
css/controls/loginpress-radio-button-control.css CHANGED
@@ -177,6 +177,14 @@ input[type=checkbox].loginpress-radio-flat:checked + .loginpress-radio-btn:after
177
  top: 0;
178
  left: 0;
179
  }
 
 
 
 
 
 
 
 
180
  @media screen and (max-width: 992px) {
181
  .loginpress-multisite-subdir h3{
182
  font-size: 24px;
177
  top: 0;
178
  left: 0;
179
  }
180
+ .customize-radio-control-loader{
181
+ display: none;
182
+ padding-right: 8px;
183
+ padding-top: 2px;
184
+ }
185
+ #sub-accordion-section-customize_menu_section .loginpress-radio.loginpress-radio-ios:disabled + .loginpress-radio-btn{
186
+ cursor: wait;
187
+ }
188
  @media screen and (max-width: 992px) {
189
  .loginpress-multisite-subdir h3{
190
  font-size: 24px;
css/style-login.php CHANGED
@@ -191,10 +191,11 @@ $loginpress_display_bg = loginpress_bg_option( 'loginpress_display_bg',
191
  $loginpress_theme_tem = get_option( 'customize_presets_settings', 'default1' );
192
 
193
  /**
194
- * loginpress_box_shadow
195
  * @param integer $shadow [Shadow Value]
196
  * @param integer $opacity [Opacity Value]
197
- * @param integer $default_shadow [description]
 
198
  * @return string [box-border value]
199
  * @since 1.1.3
200
  */
@@ -678,6 +679,107 @@ text-shadow: none;
678
  left: 0;
679
  padding-left: 20px;
680
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
681
  @media screen and (max-width: 767px) {
682
  .login h1 a {
683
  max-width: 100%;
191
  $loginpress_theme_tem = get_option( 'customize_presets_settings', 'default1' );
192
 
193
  /**
194
+ * loginpress_box_shadow [if user pass 0 then we're not going to set the value of box-shedow because it effects the pro templates.]
195
  * @param integer $shadow [Shadow Value]
196
  * @param integer $opacity [Opacity Value]
197
+ * @param integer $default_shadow [Sset shadow's default value]
198
+ * @param boolean $inset [description]
199
  * @return string [box-border value]
200
  * @since 1.1.3
201
  */
679
  left: 0;
680
  padding-left: 20px;
681
  }
682
+ .header-cell{
683
+ /* display: table-cell; */
684
+ height: 100px;
685
+ }
686
+ .loginHeaderMenu{
687
+ text-align: center;
688
+ position: relative;
689
+ z-index: 10;
690
+ list-style: none;
691
+ background: #333;
692
+
693
+ }
694
+ .loginHeaderMenu>ul>li{
695
+ display: inline-block;
696
+ vertical-align: top;
697
+ position: relative;
698
+ list-style: none;
699
+ }
700
+ .loginHeaderMenu>ul>li>a{
701
+ color: #fff;
702
+ text-transform: uppercase;
703
+ text-decoration: none;
704
+ font-size: 16px;
705
+ padding: 17px 20px;
706
+ display: inline-block;
707
+ }
708
+ .loginHeaderMenu>ul>li:hover>a{
709
+ background: #4CAF50;
710
+ color: #fff;
711
+ }
712
+ .loginHeaderMenu>ul>li>ul{
713
+ position: absolute;
714
+ width: 200px;
715
+ padding: 0;
716
+ top: 100%;
717
+ left: 0;
718
+ background: #fff;
719
+ list-style: none;
720
+ text-align: left;
721
+ border-radius: 0 0 5px 5px;
722
+ -webkit-box-shadow: 0px 5px 10px -1px rgba(0,0,0,0.31);
723
+ -moz-box-shadow: 0px 5px 10px -1px rgba(0,0,0,0.31);
724
+ box-shadow: 0px 5px 10px -1px rgba(0,0,0,0.31);
725
+ overflow: hidden;
726
+ opacity: 0;
727
+ visibility: hidden;
728
+ }
729
+ .loginHeaderMenu>ul>li:hover>ul{
730
+ opacity: 1;
731
+ visibility: visible;
732
+ }
733
+ .loginHeaderMenu>ul>li>ul>li{
734
+ font-size: 15px;
735
+ color: #333;
736
+ }
737
+ .loginHeaderMenu>ul>li>ul>li>a{
738
+ color: #333;
739
+ padding: 10px;
740
+ display: block;
741
+ text-decoration: none;
742
+ }
743
+ .loginHeaderMenu>ul>li>ul>li>a:hover {
744
+ background: rgba(51, 51, 51, 0.35);
745
+ color: #fff;
746
+ }
747
+ .loginHeaderMenu>ul {
748
+ flex-wrap: wrap;
749
+ display: flex;
750
+ justify-content: center;
751
+ }
752
+ .loginFooterMenu{
753
+ text-align: center;
754
+ background-color: rgba(0,0,0,.7);
755
+ }
756
+ .loginFooterMenu>ul{
757
+ display: inline-flex;
758
+ }
759
+
760
+ .loginFooterMenu>ul>li{
761
+ display: inline-block;
762
+ padding: 18px;
763
+ }
764
+ .loginFooterMenu>ul>li:focus{
765
+ outline: none;
766
+ border: 0;
767
+ }
768
+ .loginFooterMenu>ul>li>a:focus{
769
+ outline: none;
770
+ border: 0;
771
+ }
772
+ .loginFooterMenu>ul>li>a{
773
+ color: #fff;
774
+ text-transform: uppercase;
775
+ text-decoration: none;
776
+ font-size: 14px;
777
+ }
778
+ .loginFooterMenu>ul {
779
+ flex-wrap: wrap;
780
+ display: flex;
781
+ justify-content: center;
782
+ }
783
  @media screen and (max-width: 767px) {
784
  .login h1 a {
785
  max-width: 100%;
css/style-previewer.css CHANGED
@@ -20,6 +20,7 @@ body:hover .customize-partial-edit-shortcut button{
20
  height: 34px;
21
  width: 34px;
22
  cursor: pointer;
 
23
  }
24
  .customize-partial-edit-shortcut button{
25
  left: 0;
@@ -114,4 +115,4 @@ body:hover .customize-partial-edit-shortcut button{
114
  }
115
  html[dir="rtl"] .customize-partial-edit-shortcut button,html[dir="rtl"] .widget .customize-partial-edit-shortcut button{
116
  right: 0;
117
- }
20
  height: 34px;
21
  width: 34px;
22
  cursor: pointer;
23
+ z-index: 99;
24
  }
25
  .customize-partial-edit-shortcut button{
26
  left: 0;
115
  }
116
  html[dir="rtl"] .customize-partial-edit-shortcut button,html[dir="rtl"] .widget .customize-partial-edit-shortcut button{
117
  right: 0;
118
+ }
css/themes/default-1.php CHANGED
@@ -26,7 +26,7 @@ function first_presets() {
26
  padding: 0;
27
  }
28
  .header-wrapper{
29
- display: table-row;
30
  }
31
  #login{
32
  margin-top: 2%;
@@ -100,7 +100,7 @@ function first_presets() {
100
  text-align: center;
101
  }
102
  .header-cell{
103
- display: table-cell;
104
  height: 100px;
105
  }
106
  .loginHeaderMenu{
@@ -175,7 +175,9 @@ function first_presets() {
175
  display: none;
176
  }
177
  .footer-wrapper{
178
- display: table-footer-group;
 
 
179
  }
180
  .footer-cont{
181
 
@@ -183,9 +185,9 @@ function first_presets() {
183
  bottom: 0;
184
  left: 0;
185
  text-align: center;
186
- display: table-cell;
187
  vertical-align: bottom;
188
- height: 100px;
189
  }
190
  .loginFooterMenu{
191
  text-align: center;
@@ -272,7 +274,7 @@ function first_presets() {
272
  padding: 3px;
273
  }
274
  }
275
-
276
  </style>
277
 
278
  <?php
26
  padding: 0;
27
  }
28
  .header-wrapper{
29
+ /* display: table-row; */
30
  }
31
  #login{
32
  margin-top: 2%;
100
  text-align: center;
101
  }
102
  .header-cell{
103
+ /* display: table-cell; */
104
  height: 100px;
105
  }
106
  .loginHeaderMenu{
175
  display: none;
176
  }
177
  .footer-wrapper{
178
+ /* display: table-footer-group; */
179
+ position: sticky;
180
+ top: 100vh;
181
  }
182
  .footer-cont{
183
 
185
  bottom: 0;
186
  left: 0;
187
  text-align: center;
188
+ /* display: table-cell; */
189
  vertical-align: bottom;
190
+ /* height: 100px; */
191
  }
192
  .loginFooterMenu{
193
  text-align: center;
274
  padding: 3px;
275
  }
276
  }
277
+
278
  </style>
279
 
280
  <?php
custom.php CHANGED
@@ -1017,86 +1017,14 @@ class LoginPress_Entities {
1017
  // 'settings' => 'loginpress_customization[login_head_bg_color]'
1018
  // )));
1019
 
1020
- // =============================
1021
- // = Custom Header Login menu =
1022
- // =============================
1023
- // $menuVals = array();
1024
- // $menus = get_registered_nav_menus();
1025
- //
1026
- // foreach ( $menus as $location => $name ) {
1027
- // $menuVals[$location] = $name ;
1028
- // }
1029
- // $wp_customize->add_section(
1030
- // 'customize_menu_section',
1031
- // array(
1032
- // 'title' => __( 'Login Page Menus', 'loginpress' ),
1033
- // 'description' => '',
1034
- // 'priority' => 32,
1035
- // 'panel' => 'loginpress_panel',
1036
- // ));
1037
- //
1038
- // $wp_customize->add_setting('loginpress_customization[header_login_menu]', array(
1039
- // 'capability' => 'edit_theme_options',
1040
- // 'type' => 'option',
1041
- // ));
1042
- //
1043
- // $wp_customize->add_control('header_login_menu', array(
1044
- // 'settings' => 'loginpress_customization[header_login_menu]',
1045
- // 'label' => __( 'Display Header Menu?', 'loginpress'),
1046
- // 'section' => 'customize_menu_section',
1047
- // 'priority' => 5,
1048
- // 'type' => 'checkbox',
1049
- // ));
1050
- //
1051
- // $wp_customize->add_setting('loginpress_customization[customize_login_menu]', array(
1052
- // 'capability' => 'edit_theme_options',
1053
- // 'type' => 'option',
1054
- //
1055
- // ));
1056
- // $wp_customize->add_control( 'customize_login_menu', array(
1057
- // 'settings' => 'loginpress_customization[customize_login_menu]',
1058
- // 'label' => __( 'Select Menu for Header:', 'loginpress' ),
1059
- // 'section' => 'customize_menu_section',
1060
- // 'type' => 'select',
1061
- // 'priority' => 10,
1062
- // 'choices' => $menuVals,
1063
- // ));
1064
- //
1065
- // $wp_customize->add_setting('loginpress_customization[footer_login_menu]', array(
1066
- // 'capability' => 'edit_theme_options',
1067
- // 'type' => 'option',
1068
- // ));
1069
- //
1070
- // $wp_customize->add_control('footer_login_menu', array(
1071
- // 'settings' => 'loginpress_customization[footer_login_menu]',
1072
- // 'label' => __( 'Display Footer Menu?', 'loginpress' ),
1073
- // 'section' => 'customize_menu_section',
1074
- // 'priority' => 15,
1075
- // 'type' => 'checkbox',
1076
- // ));
1077
- //
1078
- // $wp_customize->add_setting('loginpress_customization[customize_login_footer_menu]', array(
1079
- // 'capability' => 'edit_theme_options',
1080
- // 'type' => 'option',
1081
- //
1082
- // ));
1083
- // $wp_customize->add_control( 'customize_login_footer_menu', array(
1084
- // 'settings' => 'loginpress_customization[customize_login_footer_menu]',
1085
- // 'label' => __( 'Select Menu:', 'loginpress' ),
1086
- // 'section' => 'customize_menu_section',
1087
- // 'priority' => 20,
1088
- // 'type' => 'select',
1089
- // 'choices' => $menuVals,
1090
- // ));
1091
-
1092
  // =============================
1093
  // = Section for Form Footer =
1094
  // =============================
1095
  $wp_customize->add_section( 'section_fotter', array(
1096
- 'title' => __( 'Form Footer', 'loginpress' ),
1097
- 'description' => '',
1098
- 'priority' => 40,
1099
- 'panel' => 'loginpress_panel',
1100
  ) );
1101
 
1102
  $this->loginpress_group_setting( $wp_customize, $group_control, $group_label, $group_info, 'section_fotter', 3, 4 );
@@ -1485,7 +1413,7 @@ class LoginPress_Entities {
1485
  * Manage the Login Footer Links
1486
  *
1487
  * @since 1.0.0
1488
- * @version 1.1.3
1489
  * * * * * * * * * * * * * * * */
1490
  public function login_page_custom_footer() {
1491
 
@@ -1511,20 +1439,8 @@ class LoginPress_Entities {
1511
 
1512
  if ( $this->loginpress_key ) {
1513
 
1514
- // echo '</div></div>';
1515
-
1516
-
1517
- // if ( array_key_exists( 'footer_login_menu', $this->loginpress_key ) && checked( $this->loginpress_key['footer_login_menu'], true, false ) ) {
1518
- //
1519
- // wp_nav_menu( array(
1520
- // 'theme_location' => $this->loginpress_key['customize_login_footer_menu'],
1521
- // 'container' => false,
1522
- // 'menu_class' => 'loginFooterMenu',
1523
- // 'echo' => true,
1524
- // )
1525
- // );
1526
- //
1527
- // }
1528
 
1529
  if ( array_key_exists( 'login_copy_right_display', $this->loginpress_key ) && true == $this->loginpress_key['login_copy_right_display'] ) {
1530
  if ( array_key_exists( 'login_footer_copy_right', $this->loginpress_key ) && ! empty( $this->loginpress_key['login_footer_copy_right'] ) ) {
@@ -1542,9 +1458,13 @@ class LoginPress_Entities {
1542
  * Manage the Login Head
1543
  *
1544
  * @since 1.0.0
 
1545
  * * * * * * * * * * * */
1546
  public function login_page_custom_head() {
1547
 
 
 
 
1548
  add_filter( 'gettext', array( $this, 'change_lostpassword_message' ), 20, 3 );
1549
  add_filter( 'gettext', array( $this, 'change_username_label' ), 20, 3 );
1550
  // add_filter( 'gettext', array( $this, 'change_password_label' ), 20, 3 );
@@ -1553,21 +1473,11 @@ class LoginPress_Entities {
1553
  include( LOGINPRESS_DIR_PATH . 'css/style-presets.php' );
1554
  include( LOGINPRESS_DIR_PATH . 'css/style-login.php' );
1555
 
1556
- if ( $this->loginpress_key && array_key_exists( 'header_login_menu', $this->loginpress_key ) ) {
 
1557
 
1558
- // echo '<div class="header-wrapper">';
1559
- // echo '<div class="header-cell">';
1560
- // if ( array_key_exists( 'header_login_menu', $this->loginpress_key ) && checked( $this->loginpress_key['header_login_menu'], true, false ) ) {
1561
- //
1562
- // wp_nav_menu( array(
1563
- // 'theme_location' => $this->loginpress_key['customize_login_menu'],
1564
- // 'container' => false,
1565
- // 'menu_class' => 'loginHeaderMenu',
1566
- // 'echo' => true,
1567
- // )
1568
- // );
1569
- // }
1570
- // echo '</div></div><div class="login-wrapper"><div class="login-cell">';
1571
  }
1572
  }
1573
  /**
@@ -1691,20 +1601,22 @@ class LoginPress_Entities {
1691
  return $translated_text;
1692
  }
1693
  /**
1694
- * Change Username Label from Form.
1695
  * @param [type] $translated_text [description]
1696
  * @param [type] $text [description]
1697
  * @param [type] $domain [description]
1698
  * @return string
1699
  * @since 1.1.3
 
1700
  */
1701
  public function change_username_label( $translated_text, $text, $domain ){
1702
 
1703
- if ( $this->loginpress_key ) {
1704
- $default = 'Username or Email Address';
1705
- $options = $this->loginpress_key;
1706
- $loginpress_setting = get_option( 'loginpress_setting' );
1707
 
 
 
 
 
1708
  // $label = array_key_exists( 'form_username_label', $options ) ? $options['form_username_label'] : '';
1709
  $login_order = isset( $loginpress_setting['login_order'] ) ? $loginpress_setting['login_order'] : '';
1710
 
1017
  // 'settings' => 'loginpress_customization[login_head_bg_color]'
1018
  // )));
1019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1020
  // =============================
1021
  // = Section for Form Footer =
1022
  // =============================
1023
  $wp_customize->add_section( 'section_fotter', array(
1024
+ 'title' => __( 'Form Footer', 'loginpress' ),
1025
+ 'description' => '',
1026
+ 'priority' => 40,
1027
+ 'panel' => 'loginpress_panel',
1028
  ) );
1029
 
1030
  $this->loginpress_group_setting( $wp_customize, $group_control, $group_label, $group_info, 'section_fotter', 3, 4 );
1413
  * Manage the Login Footer Links
1414
  *
1415
  * @since 1.0.0
1416
+ * @version 1.1.7
1417
  * * * * * * * * * * * * * * * */
1418
  public function login_page_custom_footer() {
1419
 
1439
 
1440
  if ( $this->loginpress_key ) {
1441
 
1442
+ // do_action( 'loginpress_footer_wrapper' );
1443
+ do_action( 'loginpress_footer_menu' );
 
 
 
 
 
 
 
 
 
 
 
 
1444
 
1445
  if ( array_key_exists( 'login_copy_right_display', $this->loginpress_key ) && true == $this->loginpress_key['login_copy_right_display'] ) {
1446
  if ( array_key_exists( 'login_footer_copy_right', $this->loginpress_key ) && ! empty( $this->loginpress_key['login_footer_copy_right'] ) ) {
1458
  * Manage the Login Head
1459
  *
1460
  * @since 1.0.0
1461
+ * @version 1.1.7
1462
  * * * * * * * * * * * */
1463
  public function login_page_custom_head() {
1464
 
1465
+ $loginpress_setting = get_option( 'loginpress_setting' );
1466
+ $lostpassword_url = isset( $loginpress_setting['lostpassword_url'] ) ? $loginpress_setting['lostpassword_url'] : 'off';
1467
+
1468
  add_filter( 'gettext', array( $this, 'change_lostpassword_message' ), 20, 3 );
1469
  add_filter( 'gettext', array( $this, 'change_username_label' ), 20, 3 );
1470
  // add_filter( 'gettext', array( $this, 'change_password_label' ), 20, 3 );
1473
  include( LOGINPRESS_DIR_PATH . 'css/style-presets.php' );
1474
  include( LOGINPRESS_DIR_PATH . 'css/style-login.php' );
1475
 
1476
+ do_action( 'loginpress_header_menu' );
1477
+ // do_action( 'loginpress_header_wrapper' );
1478
 
1479
+ if ( 'on' == $lostpassword_url ) {
1480
+ remove_filter( 'lostpassword_url', 'wc_lostpassword_url', 10 );
 
 
 
 
 
 
 
 
 
 
 
1481
  }
1482
  }
1483
  /**
1601
  return $translated_text;
1602
  }
1603
  /**
1604
+ * Change Label of the Username from login Form.
1605
  * @param [type] $translated_text [description]
1606
  * @param [type] $text [description]
1607
  * @param [type] $domain [description]
1608
  * @return string
1609
  * @since 1.1.3
1610
+ * @version 1.1.7
1611
  */
1612
  public function change_username_label( $translated_text, $text, $domain ){
1613
 
1614
+ $loginpress_setting = get_option( 'loginpress_setting' );
 
 
 
1615
 
1616
+ if ( $loginpress_setting ) {
1617
+
1618
+ $default = 'Username or Email Address';
1619
+ // $options = $this->loginpress_key;
1620
  // $label = array_key_exists( 'form_username_label', $options ) ? $options['form_username_label'] : '';
1621
  $login_order = isset( $loginpress_setting['login_order'] ) ? $loginpress_setting['login_order'] : '';
1622
 
js/customize-controls.js CHANGED
@@ -1202,7 +1202,7 @@ jQuery(document).ready(function($) {
1202
  value.bind( function( loginPressVal ) {
1203
  if ( loginPressVal == true ) {
1204
  if( loginpress_find('.copyRight').length == 0 ){
1205
- loginpress_find('.footer-cont').html('<div class="copyRight">'+$('[id="_customize-input-loginpress_customization[login_footer_copy_right]"]').val()+'</div>');
1206
  }
1207
  $('#customize-control-loginpress_customization-login_footer_copy_right').show();
1208
  } else {
1202
  value.bind( function( loginPressVal ) {
1203
  if ( loginPressVal == true ) {
1204
  if( loginpress_find('.copyRight').length == 0 ){
1205
+ loginpress_find('.footer-cont').append('<div class="copyRight">'+$('[id="_customize-input-loginpress_customization[login_footer_copy_right]"]').val()+'</div>');
1206
  }
1207
  $('#customize-control-loginpress_customization-login_footer_copy_right').show();
1208
  } else {
languages/loginpress-fr_FR.mo CHANGED
Binary file
languages/loginpress-fr_FR.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
- "POT-Creation-Date: 2017-11-18 13:58+0500\n"
5
- "PO-Revision-Date: 2017-11-18 14:01+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.2\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -19,35 +19,46 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
- #: classes/class-loginpress-addons.php:81
 
23
  #, php-format
24
  msgid "%1$s Already Installed %2$s"
25
  msgstr ""
26
 
27
- #: classes/class-loginpress-addons.php:86
 
28
  #, php-format
29
  msgid "%1$s Activate Plugin %2$s"
30
  msgstr ""
31
 
32
- #: classes/class-loginpress-addons.php:93
33
  #, php-format
34
  msgid "%1$s Install %2$s"
35
  msgstr ""
36
 
37
- #: classes/class-loginpress-addons.php:246
38
- msgid "Extend the functionality of LoginPress with these awesome Add-ons"
39
  msgstr ""
40
 
41
- #: classes/class-loginpress-addons.php:270
42
- msgid "Trouble in loading Add-ons. Please reload the page."
 
43
  msgstr ""
44
 
45
- #: classes/class-loginpress-addons.php:272
46
- #, php-format
47
- msgid "Findout the LoginPress %1$s"
 
 
 
 
 
 
 
48
  msgstr ""
49
 
50
  #: classes/class-loginpress-custom-password.php:45
 
51
  msgid "Password"
52
  msgstr "Mot de passe"
53
 
@@ -115,22 +126,22 @@ msgid ""
115
  "and many more."
116
  msgstr ""
117
 
118
- #: classes/class-loginpress-login-order.php:69 custom.php:594 custom.php:1325
119
  #, php-format
120
  msgid "%1$sError:%2$s The username field is empty."
121
  msgstr ""
122
 
123
- #: classes/class-loginpress-login-order.php:71 custom.php:595 custom.php:1327
124
  #, php-format
125
  msgid "%1$sError:%2$s The password field is empty."
126
  msgstr ""
127
 
128
- #: classes/class-loginpress-login-order.php:92 custom.php:601
129
  #, php-format
130
  msgid "%1$sError:%2$s Invalid Email Address"
131
  msgstr ""
132
 
133
- #: classes/class-loginpress-login-order.php:114 custom.php:593 custom.php:1321
134
  #, php-format
135
  msgid "%1$sError:%2$s Invalid Username."
136
  msgstr ""
@@ -148,589 +159,580 @@ msgstr ""
148
  msgid "reCAPTCHA"
149
  msgstr ""
150
 
151
- #: classes/class-loginpress-settings-api.php:370
152
  msgid "Choose File"
153
  msgstr ""
154
 
155
- #: classes/class-loginpress-settings-api.php:565
156
  msgid "Getting Started Video"
157
  msgstr ""
158
 
159
- #: classes/class-loginpress-settings-api.php:573
160
  msgid "Why Go Pro?"
161
  msgstr ""
162
 
163
- #: classes/class-loginpress-settings-api.php:576
164
  msgid "Secure login with Google reCaptcha"
165
  msgstr ""
166
 
167
- #: classes/class-loginpress-settings-api.php:577
168
  msgid "20+ Custom Login Themes"
169
  msgstr ""
170
 
171
- #: classes/class-loginpress-settings-api.php:578
172
  msgid "Full customization with Custom CSS & JS"
173
  msgstr ""
174
 
175
- #: classes/class-loginpress-settings-api.php:583
176
  msgid "See What's In The Pro Version"
177
  msgstr ""
178
 
179
- #: classes/class-loginpress-settings-api.php:592
180
  msgid "Plugin Support"
181
  msgstr ""
182
 
183
- #: classes/class-loginpress-settings-api.php:595
184
  msgid "Got a Question, Idea, Problem or Praise?"
185
  msgstr ""
186
 
187
- #: classes/class-loginpress-settings-api.php:597
188
  msgid "Support Request"
189
  msgstr ""
190
 
191
- #: classes/class-loginpress-setup.php:52
192
  msgid "Default Settings Restored"
193
  msgstr ""
194
 
195
- #: classes/class-loginpress-setup.php:59 custom.php:94 loginpress.php:212
196
  msgid "LoginPress"
197
  msgstr ""
198
 
199
- #: classes/class-loginpress-setup.php:61 classes/class-loginpress-setup.php:78
200
  msgid "Settings"
201
  msgstr ""
202
 
203
- #: classes/class-loginpress-setup.php:63
204
  msgid "Customizer"
205
  msgstr ""
206
 
207
- #: classes/class-loginpress-setup.php:65
208
  msgid "Help"
209
  msgstr ""
210
 
211
- #: classes/class-loginpress-setup.php:67 include/loginpress-import-export.php:9
212
  msgid "Import/Export LoginPress Settings"
213
  msgstr ""
214
 
215
- #: classes/class-loginpress-setup.php:67
216
  msgid "Import / Export"
217
  msgstr ""
218
 
219
- #: classes/class-loginpress-setup.php:69
220
  msgid "Add-Ons"
221
  msgstr ""
222
 
223
- #: classes/class-loginpress-setup.php:79
224
  #, php-format
225
  msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
226
  msgstr ""
227
 
228
- #: classes/class-loginpress-setup.php:97
229
  msgid "Upgrade to Pro for More Features"
230
  msgstr ""
231
 
232
- #: classes/class-loginpress-setup.php:122
233
  msgid "Session Expire"
234
  msgstr ""
235
 
236
- #: classes/class-loginpress-setup.php:123
237
  msgid "Set the session expiration time in minutes. e.g: 10"
238
  msgstr ""
239
 
240
- #: classes/class-loginpress-setup.php:124
241
  msgid "10"
242
  msgstr ""
243
 
244
- #: classes/class-loginpress-setup.php:147
245
  #, fuzzy
246
  #| msgid "Lost Password Text"
247
  msgid "Custom Password Fields"
248
  msgstr "Texte de mot de passe perdu"
249
 
250
- #: classes/class-loginpress-setup.php:148
251
  msgid "Enable custom password fields on registration form."
252
  msgstr ""
253
 
254
- #: classes/class-loginpress-setup.php:153
255
  msgid "Login Order"
256
  msgstr ""
257
 
258
- #: classes/class-loginpress-setup.php:154
259
  msgid "Enable users to login using their username and/or email address."
260
  msgstr ""
261
 
262
- #: classes/class-loginpress-setup.php:171
263
  msgid "Reset Default Settings"
264
  msgstr ""
265
 
266
- #: classes/class-loginpress-setup.php:172
267
  msgid "Remove my custom settings."
268
  msgstr ""
269
 
270
- #: classes/class-loginpress-setup.php:180
271
- msgid "Enable reCAPTCHA"
272
- msgstr ""
273
-
274
- #: classes/class-loginpress-setup.php:181
275
- msgid "Enable LoginPress reCaptcha"
276
- msgstr ""
277
-
278
- #: classes/class-loginpress-setup.php:199
279
  msgid "LoginPress - Rebranding your boring WordPress Login pages"
280
  msgstr ""
281
 
282
- #: classes/class-loginpress-setup.php:218
283
  #, php-format
284
  msgid "Free support is available on the %1$s plugin support forums%2$s."
285
  msgstr ""
286
 
287
- #: classes/class-loginpress-setup.php:220
288
  #, php-format
289
  msgid ""
290
  "For premium features, add-ons and priority email support, %1$s upgrade to pro"
291
  "%2$s."
292
  msgstr ""
293
 
294
- #: classes/class-loginpress-setup.php:226
295
  msgid "Download Log File"
296
  msgstr ""
297
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  #: classes/control-presets.php:78
299
  msgid "Contact us for Custom Design"
300
  msgstr ""
301
 
302
- #: custom.php:95
 
 
 
 
303
  msgid "Customize Your WordPress Login Page with LoginPress :)"
304
  msgstr ""
305
 
306
- #: custom.php:107
307
  msgid "Themes"
308
  msgstr ""
309
 
310
- #: custom.php:108
311
  msgid "Choose Theme"
312
  msgstr ""
313
 
314
- #: custom.php:129 custom.php:171
315
  msgid "Company"
316
  msgstr ""
317
 
318
- #: custom.php:135 custom.php:201
319
  msgid "Persona"
320
  msgstr ""
321
 
322
- #: custom.php:141 custom.php:147
323
  msgid "Corporate"
324
  msgstr ""
325
 
326
- #: custom.php:153
327
  msgid "Startup"
328
  msgstr ""
329
 
330
- #: custom.php:159
331
  msgid "Wedding"
332
  msgstr ""
333
 
334
- #: custom.php:165
335
  msgid "Wedding #2"
336
  msgstr ""
337
 
338
- #: custom.php:177
339
  msgid "Bikers"
340
  msgstr ""
341
 
342
- #: custom.php:183
343
  msgid "Fitness"
344
  msgstr ""
345
 
346
- #: custom.php:189
347
  msgid "Shopping"
348
  msgstr ""
349
 
350
- #: custom.php:195
351
  msgid "Writers"
352
  msgstr ""
353
 
354
- #: custom.php:207
355
  msgid "Geek"
356
  msgstr ""
357
 
358
- #: custom.php:213
359
  msgid "Innovation"
360
  msgstr ""
361
 
362
- #: custom.php:219
363
  msgid "Photographers"
364
  msgstr ""
365
 
366
- #: custom.php:245
 
 
 
 
 
 
367
  msgid "Logo"
368
  msgstr ""
369
 
370
- #: custom.php:246
371
  msgid "Customize Your Logo Section"
372
  msgstr ""
373
 
374
- #: custom.php:258
375
- msgid "Logo Image:"
376
- msgstr ""
377
-
378
- #: custom.php:267
379
- msgid "Logo Width:"
380
  msgstr ""
381
 
382
- #: custom.php:268
383
- msgid "Logo Height:"
384
- msgstr ""
385
-
386
- #: custom.php:269
387
- msgid "Padding Bottom:"
388
  msgstr ""
389
 
390
- #: custom.php:270
391
  msgid "Logo URL:"
392
  msgstr ""
393
 
394
- #: custom.php:271
395
  msgid "Logo Hover Title:"
396
  msgstr ""
397
 
398
- #: custom.php:298
399
  msgid "Background"
400
  msgstr "Arrière plan"
401
 
402
- #: custom.php:313
403
- msgid "Display Background Image?"
404
- msgstr ""
405
-
406
- #: custom.php:327
407
  msgid "Background Color:"
408
  msgstr ""
409
 
410
- #: custom.php:341
 
 
 
 
 
 
411
  msgid "Background Image:"
412
  msgstr ""
413
 
414
- #: custom.php:356
 
 
 
 
 
 
415
  msgid "Background Repeat:"
416
  msgstr "Répétition d’arrière plan"
417
 
418
- #: custom.php:379
419
  msgid "Select Position:"
420
  msgstr ""
421
 
422
- #: custom.php:404
423
  msgid "Background Image Size: "
424
  msgstr ""
425
 
426
- #: custom.php:422
427
  msgid "Customize Login Form"
428
  msgstr ""
429
 
430
- #: custom.php:435
431
- msgid "Form Background Image"
432
- msgstr "S'il vous plaît remplir le formulaire complet"
433
-
434
- #: custom.php:444
435
- msgid "Form Width:"
436
- msgstr "Largeur du formulaire"
437
-
438
- #: custom.php:445
439
- msgid "Form Minimum Height:"
440
- msgstr ""
441
-
442
- #: custom.php:446
443
- msgid "Form Padding:"
444
- msgstr "Remplissage de la forme :"
445
-
446
- #: custom.php:447
447
- msgid "Border (Example: 2px dotted black):"
448
- msgstr ""
449
-
450
- #: custom.php:448
451
- msgid "Input Text Field Width:"
452
- msgstr ""
453
-
454
- #: custom.php:449
455
- msgid "Input Text Field Margin:"
456
- msgstr ""
457
-
458
- #: custom.php:475
459
- msgid "Form Background Color:"
460
- msgstr ""
461
-
462
- #: custom.php:476
463
- msgid "Input Field Background Color:"
464
- msgstr ""
465
-
466
- #: custom.php:477
467
- msgid "Input Field Text Color:"
468
  msgstr ""
469
 
470
- #: custom.php:478
471
- msgid "Label Color:"
472
- msgstr ""
 
 
473
 
474
- #: custom.php:507
475
  msgid "Customize Forget Form"
476
  msgstr "S'il vous plaît remplir le formulaire complet"
477
 
478
- #: custom.php:520
479
- msgid "Forget Form Background Image"
 
 
480
  msgstr "Oubliez l'Image de fond de forme"
481
 
482
- #: custom.php:534
483
- msgid "Forget Form Background Color"
 
 
484
  msgstr "Oubliez la couleur d'arrière-plan de forme"
485
 
486
- #: custom.php:544
487
  msgid "Button Beauty"
488
  msgstr "Beauté de touche"
489
 
490
- #: custom.php:553
491
- msgid "Button Color:"
492
- msgstr ""
493
-
494
- #: custom.php:554
495
- msgid "Button Border Color:"
496
- msgstr ""
497
-
498
- #: custom.php:555
499
- msgid "Button Color (Hover):"
500
- msgstr ""
501
-
502
- #: custom.php:556
503
- msgid "Button Border (Hover):"
504
- msgstr ""
505
-
506
- #: custom.php:557
507
- msgid "Button Box Shadow:"
508
- msgstr ""
509
-
510
- #: custom.php:558
511
- msgid "Button Text Color:"
512
- msgstr ""
513
-
514
- #: custom.php:585
515
  msgid "Error Messages"
516
  msgstr "Messages d'erreur"
517
 
518
- #: custom.php:593 custom.php:1323
519
  #, php-format
520
  msgid "%1$sError:%2$s Invalid Password."
521
  msgstr ""
522
 
523
- #: custom.php:596 custom.php:1329
524
  #, php-format
525
  msgid "%1$sError:%2$s The email address isn't correct.."
526
  msgstr ""
527
 
528
- #: custom.php:597 custom.php:1331
529
  #, php-format
530
  msgid "%1$sError:%2$s Please type your email address."
531
  msgstr ""
532
 
533
- #: custom.php:598 custom.php:1333
534
  #, php-format
535
  msgid ""
536
  "%1$sError:%2$s This username is already registered. Please choose another "
537
  "one."
538
  msgstr ""
539
 
540
- #: custom.php:599 custom.php:1335
541
  #, php-format
542
  msgid ""
543
  "%1$sError:%2$s This email is already registered, please choose another one."
544
  msgstr ""
545
 
546
- #: custom.php:600 custom.php:1337
547
  #, php-format
548
  msgid "%1$sError:%2$s Invalid username or email."
549
  msgstr ""
550
 
551
- #: custom.php:603
552
  msgid "Incorrect Username Message:"
553
  msgstr "Message de nom d'utilisateur incorrect :"
554
 
555
- #: custom.php:604
556
  msgid "Incorrect Password Message:"
557
  msgstr "Message de mot de passe incorrect :"
558
 
559
- #: custom.php:605
560
  msgid "Empty Username Message:"
561
  msgstr "Empty Nom d'utilisateur Message:"
562
 
563
- #: custom.php:606
564
  msgid "Empty Password Message:"
565
  msgstr "Mot de passe vide Message:"
566
 
567
- #: custom.php:607
568
  msgid "Invalid Email Message:"
569
  msgstr "support marketing: cpc, bannière, e-mail"
570
 
571
- #: custom.php:608
572
  msgid "Empty Email Message:"
573
  msgstr "Message E-mail :"
574
 
575
- #: custom.php:609
576
  msgid "Username Already Exist Message:"
577
  msgstr "Nom d'utilisateur Déjà existant Message:"
578
 
579
- #: custom.php:610
580
  msgid "Email Already Exist Message:"
581
  msgstr "Email existe déjà Message:"
582
 
583
- #: custom.php:611
584
  msgid "Forget Password Message:"
585
  msgstr "Oubliez le mot de passe :"
586
 
587
- #: custom.php:612
588
  #, fuzzy
589
  #| msgid "Invalid Email Message:"
590
  msgid "Login with Email Message:"
591
  msgstr "support marketing: cpc, bannière, e-mail"
592
 
593
- #: custom.php:639
594
  msgid "Welcome Messages"
595
  msgstr "Messages de bienvenue"
596
 
597
- #: custom.php:648
598
  msgid "Welcome Message on Lost Password:"
599
  msgstr "Message de Bienvenue sur mot de passe perdu :"
600
 
601
- #: custom.php:649
602
  #, fuzzy
603
  #| msgid "Welcome Message on Front Page:"
604
  msgid "Welcome Message on Login Page:"
605
  msgstr "Message de Bienvenue sur la Page de couverture :"
606
 
607
- #: custom.php:650
608
  msgid "Welcome Message on Registration:"
609
  msgstr "Message de Bienvenue sur inscription :"
610
 
611
- #: custom.php:651
612
  msgid "Logout Message:"
613
  msgstr "Message de déconnexion :"
614
 
615
- #: custom.php:652
616
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
617
  msgstr ""
618
 
619
- #: custom.php:685
620
  msgid "Message Field Background Color:"
621
  msgstr "Message champ couleur de fond :"
622
 
623
- #: custom.php:869
624
  msgid "Form Footer"
625
  msgstr ""
626
 
627
- #: custom.php:883
628
- msgid "Lost Password Text"
629
- msgstr "Texte de mot de passe perdu"
 
 
630
 
631
- #: custom.php:897
632
- msgid "Footer Text Display:"
633
- msgstr "Affichage de texte de pied de page :"
 
 
634
 
635
- #: custom.php:937
636
  msgid "Footer Text Color:"
637
  msgstr "Couleur du texte de Pied de page"
638
 
639
- #: custom.php:951
640
  msgid "Footer Text Hover Color:"
641
  msgstr "Couleur du texte de lien de pied de page au survol"
642
 
643
- #: custom.php:965
644
  msgid "Text Font Size:"
645
  msgstr "Texte : taille de la police"
646
 
647
- #: custom.php:979 custom.php:1088
648
  msgid "Footer Background Color:"
649
  msgstr "Couleur d’arrière-plan du Pied de page"
650
 
651
- #: custom.php:1006
652
- msgid "\"Back to\" Text Display:"
653
  msgstr ""
654
 
655
- #: custom.php:1026
656
  msgid "\"Back to\" Text Decoration:"
657
  msgstr ""
658
 
659
- #: custom.php:1046
660
  msgid "\"Back to\" Text Color:"
661
  msgstr ""
662
 
663
- #: custom.php:1060
664
  msgid "\"Back to\" Text Hover Color:"
665
  msgstr ""
666
 
667
- #: custom.php:1074
668
  msgid "\"Back to\" Text Font Size:"
669
  msgstr ""
670
 
671
- #: custom.php:1095
 
 
 
 
 
 
 
 
 
 
672
  #, fuzzy, php-format
673
  #| msgid "All Rights Reserved by:"
674
  msgid "© %1$s %2$s, All Rights Reserved."
675
  msgstr "Tous droits réservés"
676
 
677
- #: custom.php:1102
678
  msgid "Copyright Note:"
679
  msgstr ""
680
 
681
- #: custom.php:1121
682
  msgid ""
683
- "Show some Love. Please help other learn about this free plugin by placing "
684
  "small link in footer. Thank you very much!"
685
  msgstr ""
686
 
687
- #: custom.php:1130
 
 
 
 
688
  #, fuzzy
689
  #| msgid "Custom CSS"
690
  msgid "Custom CSS/JS"
691
  msgstr "CSS Personalisé"
692
 
693
- #: custom.php:1143
694
- msgid "Customize CSS"
 
 
695
  msgstr "Personnaliser le CSS"
696
 
697
- #: custom.php:1148
698
  #, php-format
699
  msgid ""
700
  "Custom CSS doen't make effect live. For preview please save the setting and "
701
  "visit %1$s login%2$s page or after save refresh the customizer."
702
  msgstr ""
703
 
704
- #: custom.php:1158
705
- msgid "Customize JS"
 
 
706
  msgstr "Personnaliser les JS"
707
 
708
- #: custom.php:1163
709
  #, php-format
710
  msgid ""
711
  "Custom JS doen't make effect live. For preview please save the setting and "
712
  "visit %1$s login%2$s page or after save refresh the customizer."
713
  msgstr ""
714
 
715
- #: custom.php:1201
716
  msgid "Powered by:"
717
  msgstr ""
718
 
719
- #: custom.php:1403
 
 
 
 
 
 
 
 
720
  msgid ""
721
  "Please enter your username or email address. You will receive a link to "
722
  "create a new password via email."
723
  msgstr ""
724
 
725
- #: custom.php:1411
726
  msgid "Register For This Site"
727
  msgstr ""
728
 
729
- #: custom.php:1429 custom.php:1433
730
  msgid "Your password has been reset."
731
  msgstr ""
732
 
733
- #: custom.php:1433
 
734
  msgid "Log in"
735
  msgstr ""
736
 
@@ -756,63 +758,341 @@ msgstr ""
756
  msgid "Cannot decode the response content"
757
  msgstr ""
758
 
759
- #: include/deactivate_modal.php:88
760
- msgid "Quick feedback"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
761
  msgstr ""
762
 
763
- #: include/deactivate_modal.php:91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
764
  msgid "If you have a moment, please let us know why you are deactivating:"
765
  msgstr ""
766
 
767
- #: include/deactivate_modal.php:98
 
 
 
 
 
 
 
 
 
 
768
  msgid "I only needed the plugin for a short period"
769
  msgstr ""
770
 
771
- #: include/deactivate_modal.php:107
772
  msgid "I found a better plugin"
773
  msgstr ""
774
 
775
- #: include/deactivate_modal.php:110
776
  msgid "Kindly tell us the Plugin name."
777
  msgstr ""
778
 
779
- #: include/deactivate_modal.php:117
780
  msgid "The plugin broke my site"
781
  msgstr ""
782
 
783
- #: include/deactivate_modal.php:126
784
  msgid "The plugin suddenly stopped working"
785
  msgstr ""
786
 
787
- #: include/deactivate_modal.php:135
788
  msgid "I no longer need the plugin"
789
  msgstr ""
790
 
791
- #: include/deactivate_modal.php:144
792
  msgid "It's a temporary deactivation. I'm just debugging an issue."
793
  msgstr ""
794
 
795
- #: include/deactivate_modal.php:153
796
  msgid "Other"
797
  msgstr ""
798
 
799
- #: include/deactivate_modal.php:156
800
  msgid "Kindly tell us the reason so we can improve."
801
  msgstr ""
802
 
803
- #: include/deactivate_modal.php:161
804
  msgid "Anonymous feedback"
805
  msgstr ""
806
 
807
- #: include/deactivate_modal.php:162
808
  msgid "Skip & Deactivate"
809
  msgstr ""
810
 
811
- #: include/deactivate_modal.php:165
812
  msgid "Submit & Deactivate"
813
  msgstr ""
814
 
815
- #: include/deactivate_modal.php:166
816
  msgid "Cancel"
817
  msgstr ""
818
 
@@ -953,72 +1233,136 @@ msgstr ""
953
  msgid "%1$sPrivacy Policy%2$s."
954
  msgstr ""
955
 
956
- #: loginpress.php:210
957
- msgid "Activate"
 
958
  msgstr ""
959
 
960
- #: loginpress.php:309
961
- msgid "Vote!"
 
 
 
 
962
  msgstr ""
963
 
964
- #: loginpress.php:423
965
  #, php-format
966
- msgid ""
967
- "%1$s%2$sHi, LoginPress is not compatible with multisite right now. %3$s "
968
- "Checkout this Ticket in WordPress core %4$s %5$s%6$s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
969
  msgstr ""
970
 
971
- #: loginpress.php:486
972
  msgid "Leave A Review?"
973
  msgstr ""
974
 
975
- #: loginpress.php:487
976
  msgid ""
977
  "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
978
  "review on WordPress.org?"
979
  msgstr ""
980
 
981
- #: loginpress.php:489
982
  msgid "Sure! I'd love to!"
983
  msgstr ""
984
 
985
- #: loginpress.php:490
986
  msgid "I've already left a review"
987
  msgstr ""
988
 
989
- #: loginpress.php:491
990
  msgid "Maybe Later"
991
  msgstr ""
992
 
993
- #: loginpress.php:492
994
  msgid "Never show again"
995
  msgstr ""
996
 
997
- #: loginpress.php:514
 
 
 
 
 
 
 
 
 
 
 
 
998
  #, php-format
999
  msgid "%1$s Settings %2$s | %3$s Customize %4$s"
1000
  msgstr ""
1001
 
1002
- #: loginpress.php:518
1003
  #, php-format
1004
  msgid " | %1$s Opt Out %2$s "
1005
  msgstr ""
1006
 
1007
- #: loginpress.php:520
1008
  #, php-format
1009
  msgid " | %1$s Opt In %2$s "
1010
  msgstr ""
1011
 
1012
- #: loginpress.php:526
1013
  #, php-format
1014
  msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
1015
  msgstr ""
1016
 
1017
- #~ msgid "Custom JS"
1018
- #~ msgstr "Personnaliser le JavaScript"
1019
-
1020
- #~ msgid "Login Logo"
1021
- #~ msgstr "Le logo de connexion"
1022
 
1023
  #~ msgid "Logo Width"
1024
  #~ msgstr "Largeur du logo"
@@ -1035,39 +1379,21 @@ msgstr ""
1035
  #~ msgid "Logo Hover Test"
1036
  #~ msgstr "Test de logo Hover"
1037
 
1038
- #~ msgid "Background Color"
1039
- #~ msgstr "Couleur du fond"
1040
-
1041
  #~ msgid "Image Size: "
1042
  #~ msgstr "Taille de l'image :"
1043
 
1044
  #~ msgid "Customize Form"
1045
  #~ msgstr "Personnaliser le formulaire"
1046
 
1047
- #~ msgid "Form Background Color"
1048
- #~ msgstr "Couleur d'arrière plan du formulaire"
1049
-
1050
  #~ msgid "Form Height:"
1051
  #~ msgstr "produit hauteur par coefficient de forme"
1052
 
1053
  #~ msgid " Border (Example: 2px dotted black) "
1054
  #~ msgstr "Bordure (exemple : 2px pointillés noirs)"
1055
 
1056
- #~ msgid "Input Text Field Width"
1057
- #~ msgstr "Largeur du champ de saisie"
1058
-
1059
- #~ msgid "Input Text Field Margin"
1060
- #~ msgstr "Marge de champ de saisie de texte"
1061
-
1062
  #~ msgid "Input Field Background Color"
1063
  #~ msgstr "Couleur d'arrière-plan de champ de saisie"
1064
 
1065
- #~ msgid "Input Field Text Color"
1066
- #~ msgstr "Couleur du champ de saisie"
1067
-
1068
- #~ msgid "Label Color"
1069
- #~ msgstr "Couleur des étiquettes"
1070
-
1071
  #~ msgid "Button Color"
1072
  #~ msgstr "Couleur du bouton"
1073
 
@@ -1110,12 +1436,6 @@ msgstr ""
1110
  #~ msgid "Footer"
1111
  #~ msgstr "Pied de pages"
1112
 
1113
- #~ msgid "Login Footer Links"
1114
- #~ msgstr "Liens de pied de page de login"
1115
-
1116
- #~ msgid "Footer Text 1"
1117
- #~ msgstr "Footer | Texte 1"
1118
-
1119
  #~ msgid "Footer Links 1"
1120
  #~ msgstr "Liens du pied de page"
1121
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
+ "POT-Creation-Date: 2018-07-13 17:45+0500\n"
5
+ "PO-Revision-Date: 2018-07-13 17:54+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.6\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
+ #: classes/class-loginpress-addons.php:100
23
+ #: classes/class-loginpress-addons.php:185
24
  #, php-format
25
  msgid "%1$s Already Installed %2$s"
26
  msgstr ""
27
 
28
+ #: classes/class-loginpress-addons.php:104
29
+ #: classes/class-loginpress-addons.php:190
30
  #, php-format
31
  msgid "%1$s Activate Plugin %2$s"
32
  msgstr ""
33
 
34
+ #: classes/class-loginpress-addons.php:195
35
  #, php-format
36
  msgid "%1$s Install %2$s"
37
  msgstr ""
38
 
39
+ #: classes/class-loginpress-addons.php:226
40
+ msgid "You have a lifetime license, it will never expire."
41
  msgstr ""
42
 
43
+ #: classes/class-loginpress-addons.php:230
44
+ #, php-format
45
+ msgid "Your (%2$s) license key is valid until %s."
46
  msgstr ""
47
 
48
+ #: classes/class-loginpress-addons.php:244
49
+ msgid "You need to activate your license to download the following add-ons."
50
+ msgstr ""
51
+
52
+ #: classes/class-loginpress-addons.php:257
53
+ msgid "You need to upgrade to LoginPress Pro to access these add-ons."
54
+ msgstr ""
55
+
56
+ #: classes/class-loginpress-addons.php:482
57
+ msgid "Extend the functionality of LoginPress with these awesome Add-ons"
58
  msgstr ""
59
 
60
  #: classes/class-loginpress-custom-password.php:45
61
+ #: include/customizer-strings.php:81 include/template-loginpress.php:518
62
  msgid "Password"
63
  msgstr "Mot de passe"
64
 
126
  "and many more."
127
  msgstr ""
128
 
129
+ #: classes/class-loginpress-login-order.php:69 custom.php:821 custom.php:1547
130
  #, php-format
131
  msgid "%1$sError:%2$s The username field is empty."
132
  msgstr ""
133
 
134
+ #: classes/class-loginpress-login-order.php:71 custom.php:822 custom.php:1549
135
  #, php-format
136
  msgid "%1$sError:%2$s The password field is empty."
137
  msgstr ""
138
 
139
+ #: classes/class-loginpress-login-order.php:92 custom.php:828
140
  #, php-format
141
  msgid "%1$sError:%2$s Invalid Email Address"
142
  msgstr ""
143
 
144
+ #: classes/class-loginpress-login-order.php:114 custom.php:820 custom.php:1543
145
  #, php-format
146
  msgid "%1$sError:%2$s Invalid Username."
147
  msgstr ""
159
  msgid "reCAPTCHA"
160
  msgstr ""
161
 
162
+ #: classes/class-loginpress-settings-api.php:372
163
  msgid "Choose File"
164
  msgstr ""
165
 
166
+ #: classes/class-loginpress-settings-api.php:639
167
  msgid "Getting Started Video"
168
  msgstr ""
169
 
170
+ #: classes/class-loginpress-settings-api.php:647
171
  msgid "Why Go Pro?"
172
  msgstr ""
173
 
174
+ #: classes/class-loginpress-settings-api.php:650
175
  msgid "Secure login with Google reCaptcha"
176
  msgstr ""
177
 
178
+ #: classes/class-loginpress-settings-api.php:651
179
  msgid "20+ Custom Login Themes"
180
  msgstr ""
181
 
182
+ #: classes/class-loginpress-settings-api.php:652
183
  msgid "Full customization with Custom CSS & JS"
184
  msgstr ""
185
 
186
+ #: classes/class-loginpress-settings-api.php:657
187
  msgid "See What's In The Pro Version"
188
  msgstr ""
189
 
190
+ #: classes/class-loginpress-settings-api.php:666
191
  msgid "Plugin Support"
192
  msgstr ""
193
 
194
+ #: classes/class-loginpress-settings-api.php:669
195
  msgid "Got a Question, Idea, Problem or Praise?"
196
  msgstr ""
197
 
198
+ #: classes/class-loginpress-settings-api.php:671
199
  msgid "Support Request"
200
  msgstr ""
201
 
202
+ #: classes/class-loginpress-setup.php:53
203
  msgid "Default Settings Restored"
204
  msgstr ""
205
 
206
+ #: classes/class-loginpress-setup.php:60 custom.php:242 loginpress.php:280
207
  msgid "LoginPress"
208
  msgstr ""
209
 
210
+ #: classes/class-loginpress-setup.php:62 classes/class-loginpress-setup.php:79
211
  msgid "Settings"
212
  msgstr ""
213
 
214
+ #: classes/class-loginpress-setup.php:64
215
  msgid "Customizer"
216
  msgstr ""
217
 
218
+ #: classes/class-loginpress-setup.php:66
219
  msgid "Help"
220
  msgstr ""
221
 
222
+ #: classes/class-loginpress-setup.php:68 include/loginpress-import-export.php:9
223
  msgid "Import/Export LoginPress Settings"
224
  msgstr ""
225
 
226
+ #: classes/class-loginpress-setup.php:68
227
  msgid "Import / Export"
228
  msgstr ""
229
 
230
+ #: classes/class-loginpress-setup.php:70
231
  msgid "Add-Ons"
232
  msgstr ""
233
 
234
+ #: classes/class-loginpress-setup.php:80
235
  #, php-format
236
  msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
237
  msgstr ""
238
 
239
+ #: classes/class-loginpress-setup.php:98
240
  msgid "Upgrade to Pro for More Features"
241
  msgstr ""
242
 
243
+ #: classes/class-loginpress-setup.php:123
244
  msgid "Session Expire"
245
  msgstr ""
246
 
247
+ #: classes/class-loginpress-setup.php:124
248
  msgid "Set the session expiration time in minutes. e.g: 10"
249
  msgstr ""
250
 
251
+ #: classes/class-loginpress-setup.php:125
252
  msgid "10"
253
  msgstr ""
254
 
255
+ #: classes/class-loginpress-setup.php:148
256
  #, fuzzy
257
  #| msgid "Lost Password Text"
258
  msgid "Custom Password Fields"
259
  msgstr "Texte de mot de passe perdu"
260
 
261
+ #: classes/class-loginpress-setup.php:149
262
  msgid "Enable custom password fields on registration form."
263
  msgstr ""
264
 
265
+ #: classes/class-loginpress-setup.php:154
266
  msgid "Login Order"
267
  msgstr ""
268
 
269
+ #: classes/class-loginpress-setup.php:155
270
  msgid "Enable users to login using their username and/or email address."
271
  msgstr ""
272
 
273
+ #: classes/class-loginpress-setup.php:172
274
  msgid "Reset Default Settings"
275
  msgstr ""
276
 
277
+ #: classes/class-loginpress-setup.php:173
278
  msgid "Remove my custom settings."
279
  msgstr ""
280
 
281
+ #: classes/class-loginpress-setup.php:206
 
 
 
 
 
 
 
 
282
  msgid "LoginPress - Rebranding your boring WordPress Login pages"
283
  msgstr ""
284
 
285
+ #: classes/class-loginpress-setup.php:225
286
  #, php-format
287
  msgid "Free support is available on the %1$s plugin support forums%2$s."
288
  msgstr ""
289
 
290
+ #: classes/class-loginpress-setup.php:227
291
  #, php-format
292
  msgid ""
293
  "For premium features, add-ons and priority email support, %1$s upgrade to pro"
294
  "%2$s."
295
  msgstr ""
296
 
297
+ #: classes/class-loginpress-setup.php:233
298
  msgid "Download Log File"
299
  msgstr ""
300
 
301
+ #: classes/class-loginpress-setup.php:287
302
+ #, fuzzy
303
+ #| msgid "Lost Password Text"
304
+ msgid "Lost Password URL"
305
+ msgstr "Texte de mot de passe perdu"
306
+
307
+ #: classes/class-loginpress-setup.php:288
308
+ msgid ""
309
+ "Use WordPress default lost password URL instead of WooCommerce custom lost "
310
+ "password URL."
311
+ msgstr ""
312
+
313
  #: classes/control-presets.php:78
314
  msgid "Contact us for Custom Design"
315
  msgstr ""
316
 
317
+ #: classes/controls/group.php:53
318
+ msgid "Info:"
319
+ msgstr ""
320
+
321
+ #: custom.php:243
322
  msgid "Customize Your WordPress Login Page with LoginPress :)"
323
  msgstr ""
324
 
325
+ #: custom.php:256
326
  msgid "Themes"
327
  msgstr ""
328
 
329
+ #: custom.php:257
330
  msgid "Choose Theme"
331
  msgstr ""
332
 
333
+ #: custom.php:270 custom.php:277 custom.php:475 custom.php:482
334
  msgid "Company"
335
  msgstr ""
336
 
337
+ #: custom.php:271 custom.php:282 custom.php:476
338
  msgid "Persona"
339
  msgstr ""
340
 
341
+ #: custom.php:272 custom.php:273 custom.php:477 custom.php:478
342
  msgid "Corporate"
343
  msgstr ""
344
 
345
+ #: custom.php:274 custom.php:479
346
  msgid "Startup"
347
  msgstr ""
348
 
349
+ #: custom.php:275 custom.php:480
350
  msgid "Wedding"
351
  msgstr ""
352
 
353
+ #: custom.php:276 custom.php:481
354
  msgid "Wedding #2"
355
  msgstr ""
356
 
357
+ #: custom.php:278 custom.php:483
358
  msgid "Bikers"
359
  msgstr ""
360
 
361
+ #: custom.php:279
362
  msgid "Fitness"
363
  msgstr ""
364
 
365
+ #: custom.php:280
366
  msgid "Shopping"
367
  msgstr ""
368
 
369
+ #: custom.php:281
370
  msgid "Writers"
371
  msgstr ""
372
 
373
+ #: custom.php:283
374
  msgid "Geek"
375
  msgstr ""
376
 
377
+ #: custom.php:284
378
  msgid "Innovation"
379
  msgstr ""
380
 
381
+ #: custom.php:285
382
  msgid "Photographers"
383
  msgstr ""
384
 
385
+ #: custom.php:314
386
+ #, fuzzy
387
+ #| msgid "Custom JS"
388
+ msgid "Custom Design"
389
+ msgstr "Personnaliser le JavaScript"
390
+
391
+ #: custom.php:332
392
  msgid "Logo"
393
  msgstr ""
394
 
395
+ #: custom.php:333
396
  msgid "Customize Your Logo Section"
397
  msgstr ""
398
 
399
+ #: custom.php:352
400
+ msgid "Disable Logo:"
 
 
 
 
401
  msgstr ""
402
 
403
+ #: custom.php:365
404
+ msgid "Logo Image:"
 
 
 
 
405
  msgstr ""
406
 
407
+ #: custom.php:383
408
  msgid "Logo URL:"
409
  msgstr ""
410
 
411
+ #: custom.php:383
412
  msgid "Logo Hover Title:"
413
  msgstr ""
414
 
415
+ #: custom.php:409
416
  msgid "Background"
417
  msgstr "Arrière plan"
418
 
419
+ #: custom.php:423
 
 
 
 
420
  msgid "Background Color:"
421
  msgstr ""
422
 
423
+ #: custom.php:442
424
+ #, fuzzy
425
+ #| msgid "Form Background Image"
426
+ msgid "Enable Background Image?"
427
+ msgstr "S'il vous plaît remplir le formulaire complet"
428
+
429
+ #: custom.php:456
430
  msgid "Background Image:"
431
  msgstr ""
432
 
433
+ #: custom.php:503
434
+ #, fuzzy
435
+ #| msgid "Background Color"
436
+ msgid "Background Gallery:"
437
+ msgstr "Couleur du fond"
438
+
439
+ #: custom.php:516
440
  msgid "Background Repeat:"
441
  msgstr "Répétition d’arrière plan"
442
 
443
+ #: custom.php:539
444
  msgid "Select Position:"
445
  msgstr ""
446
 
447
+ #: custom.php:564
448
  msgid "Background Image Size: "
449
  msgstr ""
450
 
451
+ #: custom.php:582
452
  msgid "Customize Login Form"
453
  msgstr ""
454
 
455
+ #: custom.php:604
456
+ msgid "Enable Form Transparency:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  msgstr ""
458
 
459
+ #: custom.php:617
460
+ #, fuzzy
461
+ #| msgid "Form Background Image"
462
+ msgid "Form Background Image:"
463
+ msgstr "S'il vous plaît remplir le formulaire complet"
464
 
465
+ #: custom.php:744
466
  msgid "Customize Forget Form"
467
  msgstr "S'il vous plaît remplir le formulaire complet"
468
 
469
+ #: custom.php:757
470
+ #, fuzzy
471
+ #| msgid "Forget Form Background Image"
472
+ msgid "Forget Form Background Image:"
473
  msgstr "Oubliez l'Image de fond de forme"
474
 
475
+ #: custom.php:771
476
+ #, fuzzy
477
+ #| msgid "Forget Form Background Color"
478
+ msgid "Forget Form Background Color:"
479
  msgstr "Oubliez la couleur d'arrière-plan de forme"
480
 
481
+ #: custom.php:781
482
  msgid "Button Beauty"
483
  msgstr "Beauté de touche"
484
 
485
+ #: custom.php:812
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
486
  msgid "Error Messages"
487
  msgstr "Messages d'erreur"
488
 
489
+ #: custom.php:820 custom.php:1545
490
  #, php-format
491
  msgid "%1$sError:%2$s Invalid Password."
492
  msgstr ""
493
 
494
+ #: custom.php:823 custom.php:1551
495
  #, php-format
496
  msgid "%1$sError:%2$s The email address isn't correct.."
497
  msgstr ""
498
 
499
+ #: custom.php:824 custom.php:1553
500
  #, php-format
501
  msgid "%1$sError:%2$s Please type your email address."
502
  msgstr ""
503
 
504
+ #: custom.php:825 custom.php:1555
505
  #, php-format
506
  msgid ""
507
  "%1$sError:%2$s This username is already registered. Please choose another "
508
  "one."
509
  msgstr ""
510
 
511
+ #: custom.php:826 custom.php:1557
512
  #, php-format
513
  msgid ""
514
  "%1$sError:%2$s This email is already registered, please choose another one."
515
  msgstr ""
516
 
517
+ #: custom.php:827 custom.php:1559
518
  #, php-format
519
  msgid "%1$sError:%2$s Invalid username or email."
520
  msgstr ""
521
 
522
+ #: custom.php:830
523
  msgid "Incorrect Username Message:"
524
  msgstr "Message de nom d'utilisateur incorrect :"
525
 
526
+ #: custom.php:831
527
  msgid "Incorrect Password Message:"
528
  msgstr "Message de mot de passe incorrect :"
529
 
530
+ #: custom.php:832
531
  msgid "Empty Username Message:"
532
  msgstr "Empty Nom d'utilisateur Message:"
533
 
534
+ #: custom.php:833
535
  msgid "Empty Password Message:"
536
  msgstr "Mot de passe vide Message:"
537
 
538
+ #: custom.php:834
539
  msgid "Invalid Email Message:"
540
  msgstr "support marketing: cpc, bannière, e-mail"
541
 
542
+ #: custom.php:835
543
  msgid "Empty Email Message:"
544
  msgstr "Message E-mail :"
545
 
546
+ #: custom.php:836
547
  msgid "Username Already Exist Message:"
548
  msgstr "Nom d'utilisateur Déjà existant Message:"
549
 
550
+ #: custom.php:837
551
  msgid "Email Already Exist Message:"
552
  msgstr "Email existe déjà Message:"
553
 
554
+ #: custom.php:838
555
  msgid "Forget Password Message:"
556
  msgstr "Oubliez le mot de passe :"
557
 
558
+ #: custom.php:839
559
  #, fuzzy
560
  #| msgid "Invalid Email Message:"
561
  msgid "Login with Email Message:"
562
  msgstr "support marketing: cpc, bannière, e-mail"
563
 
564
+ #: custom.php:866
565
  msgid "Welcome Messages"
566
  msgstr "Messages de bienvenue"
567
 
568
+ #: custom.php:875
569
  msgid "Welcome Message on Lost Password:"
570
  msgstr "Message de Bienvenue sur mot de passe perdu :"
571
 
572
+ #: custom.php:876
573
  #, fuzzy
574
  #| msgid "Welcome Message on Front Page:"
575
  msgid "Welcome Message on Login Page:"
576
  msgstr "Message de Bienvenue sur la Page de couverture :"
577
 
578
+ #: custom.php:877
579
  msgid "Welcome Message on Registration:"
580
  msgstr "Message de Bienvenue sur inscription :"
581
 
582
+ #: custom.php:878
583
  msgid "Logout Message:"
584
  msgstr "Message de déconnexion :"
585
 
586
+ #: custom.php:879
587
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
588
  msgstr ""
589
 
590
+ #: custom.php:912
591
  msgid "Message Field Background Color:"
592
  msgstr "Message champ couleur de fond :"
593
 
594
+ #: custom.php:1024
595
  msgid "Form Footer"
596
  msgstr ""
597
 
598
+ #: custom.php:1046
599
+ #, fuzzy
600
+ #| msgid "Footer Text 1"
601
+ msgid "Enable Footer Text:"
602
+ msgstr "Footer | Texte 1"
603
 
604
+ #: custom.php:1060
605
+ #, fuzzy
606
+ #| msgid "Lost Password Text"
607
+ msgid "Lost Password Text:"
608
+ msgstr "Texte de mot de passe perdu"
609
 
610
+ #: custom.php:1095
611
  msgid "Footer Text Color:"
612
  msgstr "Couleur du texte de Pied de page"
613
 
614
+ #: custom.php:1109
615
  msgid "Footer Text Hover Color:"
616
  msgstr "Couleur du texte de lien de pied de page au survol"
617
 
618
+ #: custom.php:1130
619
  msgid "Text Font Size:"
620
  msgstr "Texte : taille de la police"
621
 
622
+ #: custom.php:1146
623
  msgid "Footer Background Color:"
624
  msgstr "Couleur d’arrière-plan du Pied de page"
625
 
626
+ #: custom.php:1170
627
+ msgid "Enable \"Back to\" Text:"
628
  msgstr ""
629
 
630
+ #: custom.php:1185
631
  msgid "\"Back to\" Text Decoration:"
632
  msgstr ""
633
 
634
+ #: custom.php:1205
635
  msgid "\"Back to\" Text Color:"
636
  msgstr ""
637
 
638
+ #: custom.php:1219
639
  msgid "\"Back to\" Text Hover Color:"
640
  msgstr ""
641
 
642
+ #: custom.php:1240
643
  msgid "\"Back to\" Text Font Size:"
644
  msgstr ""
645
 
646
+ #: custom.php:1256
647
+ #, fuzzy
648
+ #| msgid "Form Background Color"
649
+ msgid "\"Back to\" Background Color:"
650
+ msgstr "Couleur d'arrière plan du formulaire"
651
+
652
+ #: custom.php:1281
653
+ msgid "Enable Copyright Note:"
654
+ msgstr ""
655
+
656
+ #: custom.php:1285 custom.php:1449
657
  #, fuzzy, php-format
658
  #| msgid "All Rights Reserved by:"
659
  msgid "© %1$s %2$s, All Rights Reserved."
660
  msgstr "Tous droits réservés"
661
 
662
+ #: custom.php:1292
663
  msgid "Copyright Note:"
664
  msgstr ""
665
 
666
+ #: custom.php:1316
667
  msgid ""
668
+ "Show some Love. Please help others learn about this free plugin by placing "
669
  "small link in footer. Thank you very much!"
670
  msgstr ""
671
 
672
+ #: custom.php:1331
673
+ msgid "Love Position:"
674
+ msgstr ""
675
+
676
+ #: custom.php:1349
677
  #, fuzzy
678
  #| msgid "Custom CSS"
679
  msgid "Custom CSS/JS"
680
  msgstr "CSS Personalisé"
681
 
682
+ #: custom.php:1362
683
+ #, fuzzy
684
+ #| msgid "Customize CSS"
685
+ msgid "Customize CSS:"
686
  msgstr "Personnaliser le CSS"
687
 
688
+ #: custom.php:1367
689
  #, php-format
690
  msgid ""
691
  "Custom CSS doen't make effect live. For preview please save the setting and "
692
  "visit %1$s login%2$s page or after save refresh the customizer."
693
  msgstr ""
694
 
695
+ #: custom.php:1377
696
+ #, fuzzy
697
+ #| msgid "Customize JS"
698
+ msgid "Customize JS:"
699
  msgstr "Personnaliser les JS"
700
 
701
+ #: custom.php:1382
702
  #, php-format
703
  msgid ""
704
  "Custom JS doen't make effect live. For preview please save the setting and "
705
  "visit %1$s login%2$s page or after save refresh the customizer."
706
  msgstr ""
707
 
708
+ #: custom.php:1432 custom.php:1434
709
  msgid "Powered by:"
710
  msgstr ""
711
 
712
+ #: custom.php:1634 include/template-loginpress.php:469
713
+ msgid "Username"
714
+ msgstr "Nom d’utilisateur"
715
+
716
+ #: custom.php:1636
717
+ msgid "Email Address"
718
+ msgstr "Adresse courriel"
719
+
720
+ #: custom.php:1703 include/template-loginpress.php:370
721
  msgid ""
722
  "Please enter your username or email address. You will receive a link to "
723
  "create a new password via email."
724
  msgstr ""
725
 
726
+ #: custom.php:1711 include/template-loginpress.php:465
727
  msgid "Register For This Site"
728
  msgstr ""
729
 
730
+ #: custom.php:1729 custom.php:1733
731
  msgid "Your password has been reset."
732
  msgstr ""
733
 
734
+ #: custom.php:1733 include/template-loginpress.php:397
735
+ #: include/template-loginpress.php:491
736
  msgid "Log in"
737
  msgstr ""
738
 
758
  msgid "Cannot decode the response content"
759
  msgstr ""
760
 
761
+ #: include/create-loginpress-page.php:58
762
+ #, php-format
763
+ msgid ""
764
+ "<p>This page is used by %1$s to preview the login page in the Customizer.</p>"
765
+ msgstr ""
766
+
767
+ #: include/create-loginpress-page.php:63
768
+ msgctxt "Page slug"
769
+ msgid "loginpress"
770
+ msgstr ""
771
+
772
+ #: include/create-loginpress-page.php:64
773
+ msgctxt "Page title"
774
+ msgid "LoginPress"
775
+ msgstr ""
776
+
777
+ #: include/customizer-strings.php:8
778
+ msgid "Logo Width:"
779
+ msgstr ""
780
+
781
+ #: include/customizer-strings.php:8
782
+ msgid "Logo Height:"
783
+ msgstr ""
784
+
785
+ #: include/customizer-strings.php:8
786
+ msgid "Space Bottom:"
787
+ msgstr ""
788
+
789
+ #: include/customizer-strings.php:22
790
+ #, fuzzy
791
+ #| msgid "Input Field Text Color"
792
+ msgid "Input Fields:"
793
+ msgstr "Couleur du champ de saisie"
794
+
795
+ #: include/customizer-strings.php:23
796
+ #, fuzzy
797
+ #| msgid "Input Field Text Color"
798
+ msgid "Input Field Labels:"
799
+ msgstr "Couleur du champ de saisie"
800
+
801
+ #: include/customizer-strings.php:24
802
+ #, fuzzy
803
+ #| msgid "Login Logo"
804
+ msgid "Login Form:"
805
+ msgstr "Le logo de connexion"
806
+
807
+ #: include/customizer-strings.php:25
808
+ #, fuzzy
809
+ #| msgid "Lost Password Text"
810
+ msgid "Lost Your Password Text"
811
+ msgstr "Texte de mot de passe perdu"
812
+
813
+ #: include/customizer-strings.php:26
814
+ msgid "Back To Site Text"
815
+ msgstr ""
816
+
817
+ #: include/customizer-strings.php:27
818
+ #, fuzzy
819
+ #| msgid "Login Footer Links"
820
+ msgid "LoginPress Footer Text"
821
+ msgstr "Liens de pied de page de login"
822
+
823
+ #: include/customizer-strings.php:29
824
+ msgid ""
825
+ "This section helps you to easily Customize the login form input field "
826
+ "elements."
827
+ msgstr ""
828
+
829
+ #: include/customizer-strings.php:30
830
+ msgid ""
831
+ "This section helps you to easily Customize the login form input field labels."
832
  msgstr ""
833
 
834
+ #: include/customizer-strings.php:31
835
+ msgid ""
836
+ "This section helps you to easily Customize the login form elements whether "
837
+ "they are form lables, fields or backgrounds."
838
+ msgstr ""
839
+
840
+ #: include/customizer-strings.php:32
841
+ msgid ""
842
+ " Customize the \"Lost your password\" and \"Register\" text section under "
843
+ "the form."
844
+ msgstr ""
845
+
846
+ #: include/customizer-strings.php:33
847
+ msgid "Customize the \"Back to\" text section under the form."
848
+ msgstr ""
849
+
850
+ #: include/customizer-strings.php:34
851
+ msgid ""
852
+ "Customize the copyright note and branding sections at the footer of login "
853
+ "page."
854
+ msgstr ""
855
+
856
+ #: include/customizer-strings.php:44
857
+ msgid "Form Width:"
858
+ msgstr "Largeur du formulaire"
859
+
860
+ #: include/customizer-strings.php:45
861
+ msgid "Form Minimum Height:"
862
+ msgstr ""
863
+
864
+ #: include/customizer-strings.php:46
865
+ #, fuzzy
866
+ #| msgid "Form Padding:"
867
+ msgid "Form Radius:"
868
+ msgstr "Remplissage de la forme :"
869
+
870
+ #: include/customizer-strings.php:47
871
+ #, fuzzy
872
+ #| msgid "Form Padding:"
873
+ msgid "Form Shadow:"
874
+ msgstr "Remplissage de la forme :"
875
+
876
+ #: include/customizer-strings.php:48
877
+ msgid "Form Shadow Opacity:"
878
+ msgstr ""
879
+
880
+ #: include/customizer-strings.php:49
881
+ msgid "Input Text Field Width:"
882
+ msgstr ""
883
+
884
+ #: include/customizer-strings.php:50
885
+ #, fuzzy
886
+ #| msgid "Input Text Field Margin"
887
+ msgid "Input Text Field Radius:"
888
+ msgstr "Marge de champ de saisie de texte"
889
+
890
+ #: include/customizer-strings.php:51
891
+ #, fuzzy
892
+ #| msgid "Input Text Field Width"
893
+ msgid "Input Text Field Shadow:"
894
+ msgstr "Largeur du champ de saisie"
895
+
896
+ #: include/customizer-strings.php:52
897
+ #, fuzzy
898
+ #| msgid "Input Text Field Width"
899
+ msgid "Input Text Field Shadow Opacity:"
900
+ msgstr "Largeur du champ de saisie"
901
+
902
+ #: include/customizer-strings.php:53
903
+ #, fuzzy
904
+ #| msgid "Input Field Text Color"
905
+ msgid "Input Field Label Font Size:"
906
+ msgstr "Couleur du champ de saisie"
907
+
908
+ #: include/customizer-strings.php:54
909
+ #, fuzzy
910
+ #| msgid "Text Font Size:"
911
+ msgid "Remember Me Font Size:"
912
+ msgstr "Texte : taille de la police"
913
+
914
+ #: include/customizer-strings.php:73
915
+ msgid "Form Background Color:"
916
+ msgstr ""
917
+
918
+ #: include/customizer-strings.php:74
919
+ msgid "Input Field Background Color:"
920
+ msgstr ""
921
+
922
+ #: include/customizer-strings.php:75
923
+ msgid "Input Field Text Color:"
924
+ msgstr ""
925
+
926
+ #: include/customizer-strings.php:76
927
+ #, fuzzy
928
+ #| msgid "Input Field Text Color"
929
+ msgid "Input Field Label Color:"
930
+ msgstr "Couleur du champ de saisie"
931
+
932
+ #: include/customizer-strings.php:77
933
+ #, fuzzy
934
+ #| msgid "Label Color"
935
+ msgid "Remember me Label Color:"
936
+ msgstr "Couleur des étiquettes"
937
+
938
+ #: include/customizer-strings.php:81 include/template-loginpress.php:382
939
+ #: include/template-loginpress.php:514
940
+ #, fuzzy
941
+ #| msgid "Username Already Exist Message:"
942
+ msgid "Username or Email Address"
943
+ msgstr "Nom d'utilisateur Déjà existant Message:"
944
+
945
+ #: include/customizer-strings.php:83
946
+ msgid "Form Padding:"
947
+ msgstr "Remplissage de la forme :"
948
+
949
+ #: include/customizer-strings.php:84
950
+ msgid "Border (Example: 2px dotted black):"
951
+ msgstr ""
952
+
953
+ #: include/customizer-strings.php:85
954
+ msgid "Input Text Field Margin:"
955
+ msgstr ""
956
+
957
+ #: include/customizer-strings.php:86
958
+ #, fuzzy
959
+ #| msgid "Empty Username Message:"
960
+ msgid "Username Label:"
961
+ msgstr "Empty Nom d'utilisateur Message:"
962
+
963
+ #: include/customizer-strings.php:87
964
+ #, fuzzy
965
+ #| msgid "Password"
966
+ msgid "Password Label:"
967
+ msgstr "Mot de passe"
968
+
969
+ #: include/customizer-strings.php:98
970
+ msgid "Button Color:"
971
+ msgstr ""
972
+
973
+ #: include/customizer-strings.php:99
974
+ msgid "Button Border Color:"
975
+ msgstr ""
976
+
977
+ #: include/customizer-strings.php:100
978
+ msgid "Button Color (Hover):"
979
+ msgstr ""
980
+
981
+ #: include/customizer-strings.php:101
982
+ msgid "Button Border (Hover):"
983
+ msgstr ""
984
+
985
+ #: include/customizer-strings.php:102
986
+ msgid "Button Box Shadow:"
987
+ msgstr ""
988
+
989
+ #: include/customizer-strings.php:103
990
+ msgid "Button Text Color:"
991
+ msgstr ""
992
+
993
+ #: include/customizer-strings.php:108
994
+ #, fuzzy
995
+ #| msgid "Text Font Size:"
996
+ msgid "Button Size:"
997
+ msgstr "Texte : taille de la police"
998
+
999
+ #: include/customizer-strings.php:108
1000
+ #, fuzzy
1001
+ #| msgid "Form Padding:"
1002
+ msgid "Button Top Padding:"
1003
+ msgstr "Remplissage de la forme :"
1004
+
1005
+ #: include/customizer-strings.php:108
1006
+ #, fuzzy
1007
+ #| msgid "Form Padding:"
1008
+ msgid "Button Bottom Padding:"
1009
+ msgstr "Remplissage de la forme :"
1010
+
1011
+ #: include/customizer-strings.php:108
1012
+ msgid "Radius:"
1013
+ msgstr ""
1014
+
1015
+ #: include/customizer-strings.php:108
1016
+ msgid "Shadow:"
1017
+ msgstr ""
1018
+
1019
+ #: include/customizer-strings.php:108
1020
+ msgid "Shadow Opacity:"
1021
+ msgstr ""
1022
+
1023
+ #: include/customizer-strings.php:108
1024
+ #, fuzzy
1025
+ #| msgid "Text Font Size:"
1026
+ msgid "Text Size:"
1027
+ msgstr "Texte : taille de la police"
1028
+
1029
+ #: include/deactivate_modal.php:131
1030
+ msgid "Quick feedback about LoginPress"
1031
+ msgstr ""
1032
+
1033
+ #: include/deactivate_modal.php:134
1034
  msgid "If you have a moment, please let us know why you are deactivating:"
1035
  msgstr ""
1036
 
1037
+ #: include/deactivate_modal.php:141
1038
+ msgid " I upgraded to LoginPress Pro"
1039
+ msgstr ""
1040
+
1041
+ #: include/deactivate_modal.php:143
1042
+ msgid ""
1043
+ "No need to deactivate this LoginPress Core version. Pro version works as an "
1044
+ "add-on with Core version."
1045
+ msgstr ""
1046
+
1047
+ #: include/deactivate_modal.php:150
1048
  msgid "I only needed the plugin for a short period"
1049
  msgstr ""
1050
 
1051
+ #: include/deactivate_modal.php:159
1052
  msgid "I found a better plugin"
1053
  msgstr ""
1054
 
1055
+ #: include/deactivate_modal.php:162
1056
  msgid "Kindly tell us the Plugin name."
1057
  msgstr ""
1058
 
1059
+ #: include/deactivate_modal.php:169
1060
  msgid "The plugin broke my site"
1061
  msgstr ""
1062
 
1063
+ #: include/deactivate_modal.php:178
1064
  msgid "The plugin suddenly stopped working"
1065
  msgstr ""
1066
 
1067
+ #: include/deactivate_modal.php:187
1068
  msgid "I no longer need the plugin"
1069
  msgstr ""
1070
 
1071
+ #: include/deactivate_modal.php:196
1072
  msgid "It's a temporary deactivation. I'm just debugging an issue."
1073
  msgstr ""
1074
 
1075
+ #: include/deactivate_modal.php:205
1076
  msgid "Other"
1077
  msgstr ""
1078
 
1079
+ #: include/deactivate_modal.php:208
1080
  msgid "Kindly tell us the reason so we can improve."
1081
  msgstr ""
1082
 
1083
+ #: include/deactivate_modal.php:213
1084
  msgid "Anonymous feedback"
1085
  msgstr ""
1086
 
1087
+ #: include/deactivate_modal.php:214
1088
  msgid "Skip & Deactivate"
1089
  msgstr ""
1090
 
1091
+ #: include/deactivate_modal.php:217
1092
  msgid "Submit & Deactivate"
1093
  msgstr ""
1094
 
1095
+ #: include/deactivate_modal.php:218
1096
  msgid "Cancel"
1097
  msgstr ""
1098
 
1233
  msgid "%1$sPrivacy Policy%2$s."
1234
  msgstr ""
1235
 
1236
+ #: include/template-loginpress.php:70
1237
+ #, php-format
1238
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1239
  msgstr ""
1240
 
1241
+ #: include/template-loginpress.php:147
1242
+ msgid "https://wordpress.org/"
1243
+ msgstr ""
1244
+
1245
+ #: include/template-loginpress.php:148
1246
+ msgid "Powered by WordPress"
1247
  msgstr ""
1248
 
1249
+ #: include/template-loginpress.php:250
1250
  #, php-format
1251
+ msgctxt "site"
1252
+ msgid "&larr; Back to %s"
1253
+ msgstr ""
1254
+
1255
+ #: include/template-loginpress.php:370
1256
+ #, fuzzy
1257
+ #| msgid "Lost Password Text"
1258
+ msgid "Lost Password"
1259
+ msgstr "Texte de mot de passe perdu"
1260
+
1261
+ #: include/template-loginpress.php:393
1262
+ #, fuzzy
1263
+ #| msgid "Password"
1264
+ msgid "Get New Password"
1265
+ msgstr "Mot de passe"
1266
+
1267
+ #: include/template-loginpress.php:400 include/template-loginpress.php:487
1268
+ #: include/template-loginpress.php:544
1269
+ msgid "Register"
1270
+ msgstr ""
1271
+
1272
+ #: include/template-loginpress.php:465
1273
+ msgid "Registration Form"
1274
+ msgstr ""
1275
+
1276
+ #: include/template-loginpress.php:473
1277
+ msgid "Email"
1278
+ msgstr ""
1279
+
1280
+ #: include/template-loginpress.php:484
1281
+ msgid "Registration confirmation will be emailed to you."
1282
+ msgstr ""
1283
+
1284
+ #: include/template-loginpress.php:493 include/template-loginpress.php:552
1285
+ #, fuzzy
1286
+ #| msgid "Lost Password Text"
1287
+ msgid "Lost your password?"
1288
+ msgstr "Texte de mot de passe perdu"
1289
+
1290
+ #: include/template-loginpress.php:508 include/template-loginpress.php:536
1291
+ msgid "Log In"
1292
+ msgstr ""
1293
+
1294
+ #: include/template-loginpress.php:534
1295
+ msgid "Remember Me"
1296
+ msgstr ""
1297
+
1298
+ #: loginpress.php:278
1299
+ msgid "Activate"
1300
+ msgstr ""
1301
+
1302
+ #: loginpress.php:378
1303
+ msgid "Vote!"
1304
  msgstr ""
1305
 
1306
+ #: loginpress.php:571
1307
  msgid "Leave A Review?"
1308
  msgstr ""
1309
 
1310
+ #: loginpress.php:572
1311
  msgid ""
1312
  "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
1313
  "review on WordPress.org?"
1314
  msgstr ""
1315
 
1316
+ #: loginpress.php:574
1317
  msgid "Sure! I'd love to!"
1318
  msgstr ""
1319
 
1320
+ #: loginpress.php:575
1321
  msgid "I've already left a review"
1322
  msgstr ""
1323
 
1324
+ #: loginpress.php:576
1325
  msgid "Maybe Later"
1326
  msgstr ""
1327
 
1328
+ #: loginpress.php:577
1329
  msgid "Never show again"
1330
  msgstr ""
1331
 
1332
+ #: loginpress.php:602
1333
+ msgid "Introducing LoginPress Addons!"
1334
+ msgstr ""
1335
+
1336
+ #: loginpress.php:603
1337
+ msgid "Extend LoginPress with these add-ons and supercharge your login pages."
1338
+ msgstr ""
1339
+
1340
+ #: loginpress.php:607
1341
+ msgid "Learn More"
1342
+ msgstr ""
1343
+
1344
+ #: loginpress.php:666
1345
  #, php-format
1346
  msgid "%1$s Settings %2$s | %3$s Customize %4$s"
1347
  msgstr ""
1348
 
1349
+ #: loginpress.php:670
1350
  #, php-format
1351
  msgid " | %1$s Opt Out %2$s "
1352
  msgstr ""
1353
 
1354
+ #: loginpress.php:672
1355
  #, php-format
1356
  msgid " | %1$s Opt In %2$s "
1357
  msgstr ""
1358
 
1359
+ #: loginpress.php:678
1360
  #, php-format
1361
  msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
1362
  msgstr ""
1363
 
1364
+ #~ msgid "Footer Text Display:"
1365
+ #~ msgstr "Affichage de texte de pied de page :"
 
 
 
1366
 
1367
  #~ msgid "Logo Width"
1368
  #~ msgstr "Largeur du logo"
1379
  #~ msgid "Logo Hover Test"
1380
  #~ msgstr "Test de logo Hover"
1381
 
 
 
 
1382
  #~ msgid "Image Size: "
1383
  #~ msgstr "Taille de l'image :"
1384
 
1385
  #~ msgid "Customize Form"
1386
  #~ msgstr "Personnaliser le formulaire"
1387
 
 
 
 
1388
  #~ msgid "Form Height:"
1389
  #~ msgstr "produit hauteur par coefficient de forme"
1390
 
1391
  #~ msgid " Border (Example: 2px dotted black) "
1392
  #~ msgstr "Bordure (exemple : 2px pointillés noirs)"
1393
 
 
 
 
 
 
 
1394
  #~ msgid "Input Field Background Color"
1395
  #~ msgstr "Couleur d'arrière-plan de champ de saisie"
1396
 
 
 
 
 
 
 
1397
  #~ msgid "Button Color"
1398
  #~ msgstr "Couleur du bouton"
1399
 
1436
  #~ msgid "Footer"
1437
  #~ msgstr "Pied de pages"
1438
 
 
 
 
 
 
 
1439
  #~ msgid "Footer Links 1"
1440
  #~ msgstr "Liens du pied de page"
1441
 
languages/loginpress.pot CHANGED
@@ -3,15 +3,16 @@ 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: 2017-02-25 12:57+0500\n"
7
- "PO-Revision-Date: 2017-02-13 12:09+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 1.8.12\n"
14
  "X-Poedit-Basepath: ..\n"
 
15
  "X-Poedit-WPHeader: loginpress.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -20,465 +21,684 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: classes/control-presets.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgid "Unlock Premium Feature"
25
  msgstr ""
26
 
27
- #: classes/control-presets.php:77
28
- msgid "Contact us for Custom Design"
29
  msgstr ""
30
 
31
- #: classes/loginpress-settings-api.php:365
32
  msgid "Choose File"
33
  msgstr ""
34
 
35
- #: classes/loginpress-settings-api.php:528
36
- msgid "Getting Started Video - 60 sec"
37
  msgstr ""
38
 
39
- #: classes/loginpress-settings-api.php:536
40
  msgid "Why Go Pro?"
41
  msgstr ""
42
 
43
- #: classes/loginpress-settings-api.php:539
44
  msgid "Secure login with Google reCaptcha"
45
  msgstr ""
46
 
47
- #: classes/loginpress-settings-api.php:540
48
  msgid "20+ Custom Login Themes"
49
  msgstr ""
50
 
51
- #: classes/loginpress-settings-api.php:541
52
- msgid "Full customizatin with Custom CSS & JS"
53
  msgstr ""
54
 
55
- #: classes/loginpress-settings-api.php:546
56
  msgid "See What's In The Pro Version"
57
  msgstr ""
58
 
59
- #: classes/loginpress-settings-api.php:555
60
  msgid "Plugin Support"
61
  msgstr ""
62
 
63
- #: classes/loginpress-settings-api.php:558
64
  msgid "Got a Question, Idea, Problem or Praise?"
65
  msgstr ""
66
 
67
- #: classes/loginpress-settings-api.php:560
68
  msgid "Support Request"
69
  msgstr ""
70
 
71
- #: classes/loginpress-setup.php:52
72
  msgid "Default Settings Restored"
73
  msgstr ""
74
 
75
- #: classes/loginpress-setup.php:59 classes/loginpress-setup.php:67
 
 
 
 
76
  msgid "Settings"
77
  msgstr ""
78
 
79
- #: classes/loginpress-setup.php:68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  #, php-format
81
  msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
82
  msgstr ""
83
 
84
- #: classes/loginpress-setup.php:74
85
- msgid "Try Premium Version"
 
 
 
 
86
  msgstr ""
87
 
88
- #: classes/loginpress-setup.php:93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  msgid "Reset Default Settings"
90
  msgstr ""
91
 
92
- #: classes/loginpress-setup.php:94
93
  msgid "Remove my custom settings."
94
  msgstr ""
95
 
96
- #: classes/loginpress-setup.php:99
97
- msgid "Allow Usage Tracking?"
98
  msgstr ""
99
 
100
- #: classes/loginpress-setup.php:100
 
 
 
 
 
 
101
  msgid ""
102
- "Allow LoginPress to <a href=\"https://wpbrigade.com/wordpress/plugins/non-"
103
- "sensitive-diagnostic-tracking/\" target=\"_blank\">non-sensitive diagnostic "
104
- "tracking</a> and help us make the plugin even better."
105
  msgstr ""
106
 
107
- #: custom.php:89 loginpress.php:154 loginpress.php:156
108
- msgid "LoginPress"
109
  msgstr ""
110
 
111
- #: custom.php:90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  msgid "Customize Your WordPress Login Page with LoginPress :)"
113
  msgstr ""
114
 
115
- #: custom.php:100
116
  msgid "Themes"
117
  msgstr ""
118
 
119
- #: custom.php:101
120
  msgid "Choose Theme"
121
  msgstr ""
122
 
123
- #: custom.php:122 custom.php:164
124
  msgid "Company"
125
  msgstr ""
126
 
127
- #: custom.php:128 custom.php:194
128
  msgid "Persona"
129
  msgstr ""
130
 
131
- #: custom.php:134 custom.php:140
132
  msgid "Corporate"
133
  msgstr ""
134
 
135
- #: custom.php:146
136
  msgid "Startup"
137
  msgstr ""
138
 
139
- #: custom.php:152
140
  msgid "Wedding"
141
  msgstr ""
142
 
143
- #: custom.php:158
144
  msgid "Wedding #2"
145
  msgstr ""
146
 
147
- #: custom.php:170
148
  msgid "Bikers"
149
  msgstr ""
150
 
151
- #: custom.php:176
152
  msgid "Fitness"
153
  msgstr ""
154
 
155
- #: custom.php:182
156
  msgid "Shopping"
157
  msgstr ""
158
 
159
- #: custom.php:188
160
  msgid "Writers"
161
  msgstr ""
162
 
163
- #: custom.php:200
164
  msgid "Geek"
165
  msgstr ""
166
 
167
- #: custom.php:206
168
  msgid "Innovation"
169
  msgstr ""
170
 
171
- #: custom.php:212
172
  msgid "Photographers"
173
  msgstr ""
174
 
175
- #: custom.php:238
176
- msgid "Logo"
177
  msgstr ""
178
 
179
- #: custom.php:239
180
- msgid "Customize Your Logo Section"
181
- msgstr ""
182
-
183
- #: custom.php:251
184
- msgid "Logo Image:"
185
  msgstr ""
186
 
187
- #: custom.php:260
188
- msgid "Logo Width:"
189
  msgstr ""
190
 
191
- #: custom.php:261
192
- msgid "Logo Height:"
193
  msgstr ""
194
 
195
- #: custom.php:262
196
- msgid "Padding Bottom:"
197
  msgstr ""
198
 
199
- #: custom.php:263
200
  msgid "Logo URL:"
201
  msgstr ""
202
 
203
- #: custom.php:264
204
  msgid "Logo Hover Title:"
205
  msgstr ""
206
 
207
- #: custom.php:291
208
  msgid "Background"
209
  msgstr ""
210
 
211
- #: custom.php:306
212
- msgid "Display Background Image?"
213
  msgstr ""
214
 
215
- #: custom.php:320
216
- msgid "Background Color:"
217
  msgstr ""
218
 
219
- #: custom.php:334
220
  msgid "Background Image:"
221
  msgstr ""
222
 
223
- #: custom.php:349
 
 
 
 
224
  msgid "Background Repeat:"
225
  msgstr ""
226
 
227
- #: custom.php:372
228
  msgid "Select Position:"
229
  msgstr ""
230
 
231
- #: custom.php:397
232
  msgid "Background Image Size: "
233
  msgstr ""
234
 
235
- #: custom.php:415
236
  msgid "Customize Login Form"
237
  msgstr ""
238
 
239
- #: custom.php:428
240
- msgid "Form Background Image"
241
- msgstr ""
242
-
243
- #: custom.php:437
244
- msgid "Form Width:"
245
- msgstr ""
246
-
247
- #: custom.php:438
248
- msgid "Form Minimum Height:"
249
- msgstr ""
250
-
251
- #: custom.php:439
252
- msgid "Form Padding:"
253
  msgstr ""
254
 
255
- #: custom.php:440
256
- msgid "Border (Example: 2px dotted black):"
257
- msgstr ""
258
-
259
- #: custom.php:441
260
- msgid "Input Text Field Width:"
261
  msgstr ""
262
 
263
- #: custom.php:442
264
- msgid "Input Text Field Margin:"
265
- msgstr ""
266
-
267
- #: custom.php:468
268
- msgid "Form Background Color:"
269
- msgstr ""
270
-
271
- #: custom.php:469
272
- msgid "Input Field Background Color:"
273
- msgstr ""
274
-
275
- #: custom.php:470
276
- msgid "Input Field Text Color:"
277
- msgstr ""
278
-
279
- #: custom.php:471
280
- msgid "Label Color:"
281
- msgstr ""
282
-
283
- #: custom.php:504
284
  msgid "Customize Forget Form"
285
  msgstr ""
286
 
287
- #: custom.php:521
288
- msgid "Forget Form Background Image"
289
  msgstr ""
290
 
291
- #: custom.php:535
292
- msgid "Forget Form Background Color"
293
  msgstr ""
294
 
295
- #: custom.php:545
296
  msgid "Button Beauty"
297
  msgstr ""
298
 
299
- #: custom.php:554
300
- msgid "Button Color:"
301
  msgstr ""
302
 
303
- #: custom.php:555
304
- msgid "Button Border Color:"
 
305
  msgstr ""
306
 
307
- #: custom.php:556
308
- msgid "Button Color (Hover):"
 
309
  msgstr ""
310
 
311
- #: custom.php:557
312
- msgid "Button Border (Hover):"
 
313
  msgstr ""
314
 
315
- #: custom.php:558
316
- msgid "Button Box Shadow:"
 
 
 
317
  msgstr ""
318
 
319
- #: custom.php:559
320
- msgid "Button Text Color:"
 
 
321
  msgstr ""
322
 
323
- #: custom.php:586
324
- msgid "Error Messages"
 
325
  msgstr ""
326
 
327
- #: custom.php:595
328
  msgid "Incorrect Username Message:"
329
  msgstr ""
330
 
331
- #: custom.php:596
332
  msgid "Incorrect Password Message:"
333
  msgstr ""
334
 
335
- #: custom.php:597
336
  msgid "Empty Username Message:"
337
  msgstr ""
338
 
339
- #: custom.php:598
340
  msgid "Empty Password Message:"
341
  msgstr ""
342
 
343
- #: custom.php:599
344
  msgid "Invalid Email Message:"
345
  msgstr ""
346
 
347
- #: custom.php:600
348
  msgid "Empty Email Message:"
349
  msgstr ""
350
 
351
- #: custom.php:601
 
 
 
 
 
 
 
 
352
  msgid "Forget Password Message:"
353
  msgstr ""
354
 
355
- #: custom.php:628
 
 
 
 
356
  msgid "Welcome Messages"
357
  msgstr ""
358
 
359
- #: custom.php:637
360
  msgid "Welcome Message on Lost Password:"
361
  msgstr ""
362
 
363
- #: custom.php:638
364
- msgid "Welcome Message on Front Page:"
365
  msgstr ""
366
 
367
- #: custom.php:639
368
  msgid "Welcome Message on Registration:"
369
  msgstr ""
370
 
371
- #: custom.php:640
372
  msgid "Logout Message:"
373
  msgstr ""
374
 
375
- #: custom.php:641
376
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
377
  msgstr ""
378
 
379
- #: custom.php:672
380
  msgid "Message Field Background Color:"
381
  msgstr ""
382
 
383
- #: custom.php:856
384
  msgid "Form Footer"
385
  msgstr ""
386
 
387
- #: custom.php:870
388
- msgid "Lost Password Text"
389
  msgstr ""
390
 
391
- #: custom.php:884
392
- msgid "Footer Text Display:"
393
  msgstr ""
394
 
395
- #: custom.php:924
396
  msgid "Footer Text Color:"
397
  msgstr ""
398
 
399
- #: custom.php:938
400
  msgid "Footer Text Hover Color:"
401
  msgstr ""
402
 
403
- #: custom.php:952
404
  msgid "Text Font Size:"
405
  msgstr ""
406
 
407
- #: custom.php:966 custom.php:1079
408
  msgid "Footer Background Color:"
409
  msgstr ""
410
 
411
- #: custom.php:993
412
- msgid "\"Back to\" Text Display:"
413
  msgstr ""
414
 
415
- #: custom.php:1013
416
  msgid "\"Back to\" Text Decoration:"
417
  msgstr ""
418
 
419
- #: custom.php:1037
420
  msgid "\"Back to\" Text Color:"
421
  msgstr ""
422
 
423
- #: custom.php:1051
424
  msgid "\"Back to\" Text Hover Color:"
425
  msgstr ""
426
 
427
- #: custom.php:1065
428
  msgid "\"Back to\" Text Font Size:"
429
  msgstr ""
430
 
431
- #: custom.php:1086
 
 
 
 
 
 
 
 
432
  #, php-format
433
- msgid "© 2017 %1$s, All Rights Reserved."
434
  msgstr ""
435
 
436
- #: custom.php:1093
437
  msgid "Copyright Note:"
438
  msgstr ""
439
 
440
- #: custom.php:1106
441
- msgid "Custom CSS"
 
 
442
  msgstr ""
443
 
444
- #: custom.php:1119
445
- msgid "Customize CSS"
446
  msgstr ""
447
 
448
- #: custom.php:1132
449
- msgid "Custom JS"
450
  msgstr ""
451
 
452
- #: custom.php:1145
453
- msgid "Customize JS"
454
  msgstr ""
455
 
456
- #: custom.php:1259
457
- msgid "Invalid Username"
 
 
 
458
  msgstr ""
459
 
460
- #: custom.php:1261
461
- msgid "Invalid Password"
462
  msgstr ""
463
 
464
- #: custom.php:1263
465
- msgid "Empty Username"
 
 
 
 
 
 
 
466
  msgstr ""
467
 
468
- #: custom.php:1265
469
- msgid "Empty Password"
470
  msgstr ""
471
 
472
- #: custom.php:1267
473
- msgid "The email address is incorrect."
 
 
 
 
 
 
474
  msgstr ""
475
 
476
- #: custom.php:1269
477
- msgid "The email address is empty."
478
  msgstr ""
479
 
480
- #: custom.php:1271
481
- msgid "Invalid Username or Email."
 
 
 
 
 
482
  msgstr ""
483
 
484
  #: include/class-remote-notification-client.php:126
@@ -503,94 +723,560 @@ msgstr ""
503
  msgid "Cannot decode the response content"
504
  msgstr ""
505
 
506
- #: include/deactivate_modal.php:88
507
- msgid "Quick feedback"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
508
  msgstr ""
509
 
510
- #: include/deactivate_modal.php:91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
511
  msgid "If you have a moment, please let us know why you are deactivating:"
512
  msgstr ""
513
 
514
- #: include/deactivate_modal.php:98
 
 
 
 
 
 
 
 
 
 
515
  msgid "I only needed the plugin for a short period"
516
  msgstr ""
517
 
518
- #: include/deactivate_modal.php:107
519
  msgid "I found a better plugin"
520
  msgstr ""
521
 
522
- #: include/deactivate_modal.php:117
 
 
 
 
523
  msgid "The plugin broke my site"
524
  msgstr ""
525
 
526
- #: include/deactivate_modal.php:126
527
  msgid "The plugin suddenly stopped working"
528
  msgstr ""
529
 
530
- #: include/deactivate_modal.php:135
531
  msgid "I no longer need the plugin"
532
  msgstr ""
533
 
534
- #: include/deactivate_modal.php:144
535
  msgid "It's a temporary deactivation. I'm just debugging an issue."
536
  msgstr ""
537
 
538
- #: include/deactivate_modal.php:153
539
  msgid "Other"
540
  msgstr ""
541
 
542
- #: include/deactivate_modal.php:156
543
  msgid "Kindly tell us the reason so we can improve."
544
  msgstr ""
545
 
546
- #: include/deactivate_modal.php:161
547
  msgid "Anonymous feedback"
548
  msgstr ""
549
 
550
- #: include/deactivate_modal.php:165
 
 
 
 
 
 
 
 
551
  msgid "Cancel"
552
  msgstr ""
553
 
554
- #: loginpress.php:158
555
- msgid "Customizer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
556
  msgstr ""
557
 
558
- #: loginpress.php:182
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
559
  msgid "Vote!"
560
  msgstr ""
561
 
562
- #: loginpress.php:411
563
  msgid "Leave A Review?"
564
  msgstr ""
565
 
566
- #: loginpress.php:412
567
  msgid ""
568
  "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
569
  "review on WordPress.org?"
570
  msgstr ""
571
 
572
- #: loginpress.php:414
573
  msgid "Sure! I'd love to!"
574
  msgstr ""
575
 
576
- #: loginpress.php:415
577
  msgid "I've already left a review"
578
  msgstr ""
579
 
580
- #: loginpress.php:416
581
  msgid "Maybe Later"
582
  msgstr ""
583
 
584
- #: loginpress.php:417
585
  msgid "Never show again"
586
  msgstr ""
587
 
588
- #: loginpress.php:439
 
 
 
 
 
 
 
 
 
 
 
 
589
  #, php-format
590
  msgid "%1$s Settings %2$s | %3$s Customize %4$s"
591
  msgstr ""
592
 
593
- #: loginpress.php:443
 
 
 
 
 
 
 
 
 
 
594
  #, php-format
595
  msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
596
  msgstr ""
@@ -600,13 +1286,14 @@ msgid "LoginPress - Customizing the WordPress Login"
600
  msgstr ""
601
 
602
  #. Plugin URI of the plugin/theme
603
- msgid "http://www.WPBrigade.com/wordpress/plugins/loginpress/"
604
  msgstr ""
605
 
606
  #. Description of the plugin/theme
607
  msgid ""
608
- "LoginPress is the best Login Page Customizer in WordPress which allows you "
609
- "to completely change the layout of login, register and forgot password forms."
 
610
  msgstr ""
611
 
612
  #. Author of the plugin/theme
@@ -614,5 +1301,5 @@ msgid "WPBrigade"
614
  msgstr ""
615
 
616
  #. Author URI of the plugin/theme
617
- msgid "http://www.WPBrigade.com/"
618
  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: 2018-07-13 17:43+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.0.6\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: loginpress.php\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: classes/class-loginpress-addons.php:100
25
+ #: classes/class-loginpress-addons.php:185
26
+ #, php-format
27
+ msgid "%1$s Already Installed %2$s"
28
+ msgstr ""
29
+
30
+ #: classes/class-loginpress-addons.php:104
31
+ #: classes/class-loginpress-addons.php:190
32
+ #, php-format
33
+ msgid "%1$s Activate Plugin %2$s"
34
+ msgstr ""
35
+
36
+ #: classes/class-loginpress-addons.php:195
37
+ #, php-format
38
+ msgid "%1$s Install %2$s"
39
+ msgstr ""
40
+
41
+ #: classes/class-loginpress-addons.php:226
42
+ msgid "You have a lifetime license, it will never expire."
43
+ msgstr ""
44
+
45
+ #: classes/class-loginpress-addons.php:230
46
+ #, php-format
47
+ msgid "Your (%2$s) license key is valid until %s."
48
+ msgstr ""
49
+
50
+ #: classes/class-loginpress-addons.php:244
51
+ msgid "You need to activate your license to download the following add-ons."
52
+ msgstr ""
53
+
54
+ #: classes/class-loginpress-addons.php:257
55
+ msgid "You need to upgrade to LoginPress Pro to access these add-ons."
56
+ msgstr ""
57
+
58
+ #: classes/class-loginpress-addons.php:482
59
+ msgid "Extend the functionality of LoginPress with these awesome Add-ons"
60
+ msgstr ""
61
+
62
+ #: classes/class-loginpress-custom-password.php:45
63
+ #: include/customizer-strings.php:81 include/template-loginpress.php:518
64
+ msgid "Password"
65
+ msgstr ""
66
+
67
+ #: classes/class-loginpress-custom-password.php:49
68
+ msgid "Confirm Password"
69
+ msgstr ""
70
+
71
+ #: classes/class-loginpress-custom-password.php:70
72
+ msgid "<strong>ERROR</strong>: Please enter your password twice."
73
+ msgstr ""
74
+
75
+ #: classes/class-loginpress-custom-password.php:74
76
+ msgid ""
77
+ "<strong>ERROR</strong>: Please enter the same password in the end password "
78
+ "fields."
79
+ msgstr ""
80
+
81
+ #: classes/class-loginpress-filter-plugin.php:42
82
+ #, php-format
83
+ msgid "Buy %s now"
84
+ msgstr ""
85
+
86
+ #: classes/class-loginpress-filter-plugin.php:43
87
+ msgid "Buy Now"
88
+ msgstr ""
89
+
90
+ #: classes/class-loginpress-filter-plugin.php:186
91
+ msgid "Analytify"
92
+ msgstr ""
93
+
94
+ #: classes/class-loginpress-filter-plugin.php:195
95
+ msgid ""
96
+ "Analytify is reshaping Google Analytics in WordPress. See Social Media, "
97
+ "Keywords, Realtime, Country, Mobile and Browsers Statistics under pages and "
98
+ "posts."
99
+ msgstr ""
100
+
101
+ #: classes/class-loginpress-filter-plugin.php:198
102
+ msgid "Related Posts"
103
+ msgstr ""
104
+
105
+ #: classes/class-loginpress-filter-plugin.php:207
106
+ msgid ""
107
+ "Related Post Thumbnails plugin is for those who want the showcase of their "
108
+ "related posts after the post detail. The plugin allows customizing thumbnail "
109
+ "sizes, display settings, and type of relations. The plugin is using original "
110
+ "WordPress taxonomy. It returns generated HTML, that is essential for page "
111
+ "load speed of blogs that use many Javascript widgets."
112
+ msgstr ""
113
+
114
+ #: classes/class-loginpress-filter-plugin.php:210
115
+ msgid "LoginPress Pro"
116
+ msgstr ""
117
+
118
+ #: classes/class-loginpress-filter-plugin.php:220
119
+ msgid ""
120
+ "LoginPress Plugin by LoginPress holds a lot of customization fields to "
121
+ "change the layout of the login page of WordPress. You can modify the look "
122
+ "and feel of login page completely even the login error messages, forgot "
123
+ "error messages, registration error messages, forget password hint message "
124
+ "and many more."
125
+ msgstr ""
126
+
127
+ #: classes/class-loginpress-login-order.php:69 custom.php:821 custom.php:1547
128
+ #, php-format
129
+ msgid "%1$sError:%2$s The username field is empty."
130
+ msgstr ""
131
+
132
+ #: classes/class-loginpress-login-order.php:71 custom.php:822 custom.php:1549
133
+ #, php-format
134
+ msgid "%1$sError:%2$s The password field is empty."
135
+ msgstr ""
136
+
137
+ #: classes/class-loginpress-login-order.php:92 custom.php:828
138
+ #, php-format
139
+ msgid "%1$sError:%2$s Invalid Email Address"
140
+ msgstr ""
141
+
142
+ #: classes/class-loginpress-login-order.php:114 custom.php:820 custom.php:1543
143
+ #, php-format
144
+ msgid "%1$sError:%2$s Invalid Username."
145
+ msgstr ""
146
+
147
+ #: classes/class-loginpress-promo.php:9
148
+ msgid "Google Fonts"
149
+ msgstr ""
150
+
151
+ #: classes/class-loginpress-promo.php:26 classes/class-loginpress-promo.php:47
152
+ #: classes/control-presets.php:74
153
  msgid "Unlock Premium Feature"
154
  msgstr ""
155
 
156
+ #: classes/class-loginpress-promo.php:31
157
+ msgid "reCAPTCHA"
158
  msgstr ""
159
 
160
+ #: classes/class-loginpress-settings-api.php:372
161
  msgid "Choose File"
162
  msgstr ""
163
 
164
+ #: classes/class-loginpress-settings-api.php:639
165
+ msgid "Getting Started Video"
166
  msgstr ""
167
 
168
+ #: classes/class-loginpress-settings-api.php:647
169
  msgid "Why Go Pro?"
170
  msgstr ""
171
 
172
+ #: classes/class-loginpress-settings-api.php:650
173
  msgid "Secure login with Google reCaptcha"
174
  msgstr ""
175
 
176
+ #: classes/class-loginpress-settings-api.php:651
177
  msgid "20+ Custom Login Themes"
178
  msgstr ""
179
 
180
+ #: classes/class-loginpress-settings-api.php:652
181
+ msgid "Full customization with Custom CSS & JS"
182
  msgstr ""
183
 
184
+ #: classes/class-loginpress-settings-api.php:657
185
  msgid "See What's In The Pro Version"
186
  msgstr ""
187
 
188
+ #: classes/class-loginpress-settings-api.php:666
189
  msgid "Plugin Support"
190
  msgstr ""
191
 
192
+ #: classes/class-loginpress-settings-api.php:669
193
  msgid "Got a Question, Idea, Problem or Praise?"
194
  msgstr ""
195
 
196
+ #: classes/class-loginpress-settings-api.php:671
197
  msgid "Support Request"
198
  msgstr ""
199
 
200
+ #: classes/class-loginpress-setup.php:53
201
  msgid "Default Settings Restored"
202
  msgstr ""
203
 
204
+ #: classes/class-loginpress-setup.php:60 custom.php:242 loginpress.php:280
205
+ msgid "LoginPress"
206
+ msgstr ""
207
+
208
+ #: classes/class-loginpress-setup.php:62 classes/class-loginpress-setup.php:79
209
  msgid "Settings"
210
  msgstr ""
211
 
212
+ #: classes/class-loginpress-setup.php:64
213
+ msgid "Customizer"
214
+ msgstr ""
215
+
216
+ #: classes/class-loginpress-setup.php:66
217
+ msgid "Help"
218
+ msgstr ""
219
+
220
+ #: classes/class-loginpress-setup.php:68 include/loginpress-import-export.php:9
221
+ msgid "Import/Export LoginPress Settings"
222
+ msgstr ""
223
+
224
+ #: classes/class-loginpress-setup.php:68
225
+ msgid "Import / Export"
226
+ msgstr ""
227
+
228
+ #: classes/class-loginpress-setup.php:70
229
+ msgid "Add-Ons"
230
+ msgstr ""
231
+
232
+ #: classes/class-loginpress-setup.php:80
233
  #, php-format
234
  msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
235
  msgstr ""
236
 
237
+ #: classes/class-loginpress-setup.php:98
238
+ msgid "Upgrade to Pro for More Features"
239
+ msgstr ""
240
+
241
+ #: classes/class-loginpress-setup.php:123
242
+ msgid "Session Expire"
243
  msgstr ""
244
 
245
+ #: classes/class-loginpress-setup.php:124
246
+ msgid "Set the session expiration time in minutes. e.g: 10"
247
+ msgstr ""
248
+
249
+ #: classes/class-loginpress-setup.php:125
250
+ msgid "10"
251
+ msgstr ""
252
+
253
+ #: classes/class-loginpress-setup.php:148
254
+ msgid "Custom Password Fields"
255
+ msgstr ""
256
+
257
+ #: classes/class-loginpress-setup.php:149
258
+ msgid "Enable custom password fields on registration form."
259
+ msgstr ""
260
+
261
+ #: classes/class-loginpress-setup.php:154
262
+ msgid "Login Order"
263
+ msgstr ""
264
+
265
+ #: classes/class-loginpress-setup.php:155
266
+ msgid "Enable users to login using their username and/or email address."
267
+ msgstr ""
268
+
269
+ #: classes/class-loginpress-setup.php:172
270
  msgid "Reset Default Settings"
271
  msgstr ""
272
 
273
+ #: classes/class-loginpress-setup.php:173
274
  msgid "Remove my custom settings."
275
  msgstr ""
276
 
277
+ #: classes/class-loginpress-setup.php:206
278
+ msgid "LoginPress - Rebranding your boring WordPress Login pages"
279
  msgstr ""
280
 
281
+ #: classes/class-loginpress-setup.php:225
282
+ #, php-format
283
+ msgid "Free support is available on the %1$s plugin support forums%2$s."
284
+ msgstr ""
285
+
286
+ #: classes/class-loginpress-setup.php:227
287
+ #, php-format
288
  msgid ""
289
+ "For premium features, add-ons and priority email support, %1$s upgrade to pro"
290
+ "%2$s."
 
291
  msgstr ""
292
 
293
+ #: classes/class-loginpress-setup.php:233
294
+ msgid "Download Log File"
295
  msgstr ""
296
 
297
+ #: classes/class-loginpress-setup.php:287
298
+ msgid "Lost Password URL"
299
+ msgstr ""
300
+
301
+ #: classes/class-loginpress-setup.php:288
302
+ msgid ""
303
+ "Use WordPress default lost password URL instead of WooCommerce custom lost "
304
+ "password URL."
305
+ msgstr ""
306
+
307
+ #: classes/control-presets.php:78
308
+ msgid "Contact us for Custom Design"
309
+ msgstr ""
310
+
311
+ #: classes/controls/group.php:53
312
+ msgid "Info:"
313
+ msgstr ""
314
+
315
+ #: custom.php:243
316
  msgid "Customize Your WordPress Login Page with LoginPress :)"
317
  msgstr ""
318
 
319
+ #: custom.php:256
320
  msgid "Themes"
321
  msgstr ""
322
 
323
+ #: custom.php:257
324
  msgid "Choose Theme"
325
  msgstr ""
326
 
327
+ #: custom.php:270 custom.php:277 custom.php:475 custom.php:482
328
  msgid "Company"
329
  msgstr ""
330
 
331
+ #: custom.php:271 custom.php:282 custom.php:476
332
  msgid "Persona"
333
  msgstr ""
334
 
335
+ #: custom.php:272 custom.php:273 custom.php:477 custom.php:478
336
  msgid "Corporate"
337
  msgstr ""
338
 
339
+ #: custom.php:274 custom.php:479
340
  msgid "Startup"
341
  msgstr ""
342
 
343
+ #: custom.php:275 custom.php:480
344
  msgid "Wedding"
345
  msgstr ""
346
 
347
+ #: custom.php:276 custom.php:481
348
  msgid "Wedding #2"
349
  msgstr ""
350
 
351
+ #: custom.php:278 custom.php:483
352
  msgid "Bikers"
353
  msgstr ""
354
 
355
+ #: custom.php:279
356
  msgid "Fitness"
357
  msgstr ""
358
 
359
+ #: custom.php:280
360
  msgid "Shopping"
361
  msgstr ""
362
 
363
+ #: custom.php:281
364
  msgid "Writers"
365
  msgstr ""
366
 
367
+ #: custom.php:283
368
  msgid "Geek"
369
  msgstr ""
370
 
371
+ #: custom.php:284
372
  msgid "Innovation"
373
  msgstr ""
374
 
375
+ #: custom.php:285
376
  msgid "Photographers"
377
  msgstr ""
378
 
379
+ #: custom.php:314
380
+ msgid "Custom Design"
381
  msgstr ""
382
 
383
+ #: custom.php:332
384
+ msgid "Logo"
 
 
 
 
385
  msgstr ""
386
 
387
+ #: custom.php:333
388
+ msgid "Customize Your Logo Section"
389
  msgstr ""
390
 
391
+ #: custom.php:352
392
+ msgid "Disable Logo:"
393
  msgstr ""
394
 
395
+ #: custom.php:365
396
+ msgid "Logo Image:"
397
  msgstr ""
398
 
399
+ #: custom.php:383
400
  msgid "Logo URL:"
401
  msgstr ""
402
 
403
+ #: custom.php:383
404
  msgid "Logo Hover Title:"
405
  msgstr ""
406
 
407
+ #: custom.php:409
408
  msgid "Background"
409
  msgstr ""
410
 
411
+ #: custom.php:423
412
+ msgid "Background Color:"
413
  msgstr ""
414
 
415
+ #: custom.php:442
416
+ msgid "Enable Background Image?"
417
  msgstr ""
418
 
419
+ #: custom.php:456
420
  msgid "Background Image:"
421
  msgstr ""
422
 
423
+ #: custom.php:503
424
+ msgid "Background Gallery:"
425
+ msgstr ""
426
+
427
+ #: custom.php:516
428
  msgid "Background Repeat:"
429
  msgstr ""
430
 
431
+ #: custom.php:539
432
  msgid "Select Position:"
433
  msgstr ""
434
 
435
+ #: custom.php:564
436
  msgid "Background Image Size: "
437
  msgstr ""
438
 
439
+ #: custom.php:582
440
  msgid "Customize Login Form"
441
  msgstr ""
442
 
443
+ #: custom.php:604
444
+ msgid "Enable Form Transparency:"
 
 
 
 
 
 
 
 
 
 
 
 
445
  msgstr ""
446
 
447
+ #: custom.php:617
448
+ msgid "Form Background Image:"
 
 
 
 
449
  msgstr ""
450
 
451
+ #: custom.php:744
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
452
  msgid "Customize Forget Form"
453
  msgstr ""
454
 
455
+ #: custom.php:757
456
+ msgid "Forget Form Background Image:"
457
  msgstr ""
458
 
459
+ #: custom.php:771
460
+ msgid "Forget Form Background Color:"
461
  msgstr ""
462
 
463
+ #: custom.php:781
464
  msgid "Button Beauty"
465
  msgstr ""
466
 
467
+ #: custom.php:812
468
+ msgid "Error Messages"
469
  msgstr ""
470
 
471
+ #: custom.php:820 custom.php:1545
472
+ #, php-format
473
+ msgid "%1$sError:%2$s Invalid Password."
474
  msgstr ""
475
 
476
+ #: custom.php:823 custom.php:1551
477
+ #, php-format
478
+ msgid "%1$sError:%2$s The email address isn't correct.."
479
  msgstr ""
480
 
481
+ #: custom.php:824 custom.php:1553
482
+ #, php-format
483
+ msgid "%1$sError:%2$s Please type your email address."
484
  msgstr ""
485
 
486
+ #: custom.php:825 custom.php:1555
487
+ #, php-format
488
+ msgid ""
489
+ "%1$sError:%2$s This username is already registered. Please choose another "
490
+ "one."
491
  msgstr ""
492
 
493
+ #: custom.php:826 custom.php:1557
494
+ #, php-format
495
+ msgid ""
496
+ "%1$sError:%2$s This email is already registered, please choose another one."
497
  msgstr ""
498
 
499
+ #: custom.php:827 custom.php:1559
500
+ #, php-format
501
+ msgid "%1$sError:%2$s Invalid username or email."
502
  msgstr ""
503
 
504
+ #: custom.php:830
505
  msgid "Incorrect Username Message:"
506
  msgstr ""
507
 
508
+ #: custom.php:831
509
  msgid "Incorrect Password Message:"
510
  msgstr ""
511
 
512
+ #: custom.php:832
513
  msgid "Empty Username Message:"
514
  msgstr ""
515
 
516
+ #: custom.php:833
517
  msgid "Empty Password Message:"
518
  msgstr ""
519
 
520
+ #: custom.php:834
521
  msgid "Invalid Email Message:"
522
  msgstr ""
523
 
524
+ #: custom.php:835
525
  msgid "Empty Email Message:"
526
  msgstr ""
527
 
528
+ #: custom.php:836
529
+ msgid "Username Already Exist Message:"
530
+ msgstr ""
531
+
532
+ #: custom.php:837
533
+ msgid "Email Already Exist Message:"
534
+ msgstr ""
535
+
536
+ #: custom.php:838
537
  msgid "Forget Password Message:"
538
  msgstr ""
539
 
540
+ #: custom.php:839
541
+ msgid "Login with Email Message:"
542
+ msgstr ""
543
+
544
+ #: custom.php:866
545
  msgid "Welcome Messages"
546
  msgstr ""
547
 
548
+ #: custom.php:875
549
  msgid "Welcome Message on Lost Password:"
550
  msgstr ""
551
 
552
+ #: custom.php:876
553
+ msgid "Welcome Message on Login Page:"
554
  msgstr ""
555
 
556
+ #: custom.php:877
557
  msgid "Welcome Message on Registration:"
558
  msgstr ""
559
 
560
+ #: custom.php:878
561
  msgid "Logout Message:"
562
  msgstr ""
563
 
564
+ #: custom.php:879
565
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
566
  msgstr ""
567
 
568
+ #: custom.php:912
569
  msgid "Message Field Background Color:"
570
  msgstr ""
571
 
572
+ #: custom.php:1024
573
  msgid "Form Footer"
574
  msgstr ""
575
 
576
+ #: custom.php:1046
577
+ msgid "Enable Footer Text:"
578
  msgstr ""
579
 
580
+ #: custom.php:1060
581
+ msgid "Lost Password Text:"
582
  msgstr ""
583
 
584
+ #: custom.php:1095
585
  msgid "Footer Text Color:"
586
  msgstr ""
587
 
588
+ #: custom.php:1109
589
  msgid "Footer Text Hover Color:"
590
  msgstr ""
591
 
592
+ #: custom.php:1130
593
  msgid "Text Font Size:"
594
  msgstr ""
595
 
596
+ #: custom.php:1146
597
  msgid "Footer Background Color:"
598
  msgstr ""
599
 
600
+ #: custom.php:1170
601
+ msgid "Enable \"Back to\" Text:"
602
  msgstr ""
603
 
604
+ #: custom.php:1185
605
  msgid "\"Back to\" Text Decoration:"
606
  msgstr ""
607
 
608
+ #: custom.php:1205
609
  msgid "\"Back to\" Text Color:"
610
  msgstr ""
611
 
612
+ #: custom.php:1219
613
  msgid "\"Back to\" Text Hover Color:"
614
  msgstr ""
615
 
616
+ #: custom.php:1240
617
  msgid "\"Back to\" Text Font Size:"
618
  msgstr ""
619
 
620
+ #: custom.php:1256
621
+ msgid "\"Back to\" Background Color:"
622
+ msgstr ""
623
+
624
+ #: custom.php:1281
625
+ msgid "Enable Copyright Note:"
626
+ msgstr ""
627
+
628
+ #: custom.php:1285 custom.php:1449
629
  #, php-format
630
+ msgid "© %1$s %2$s, All Rights Reserved."
631
  msgstr ""
632
 
633
+ #: custom.php:1292
634
  msgid "Copyright Note:"
635
  msgstr ""
636
 
637
+ #: custom.php:1316
638
+ msgid ""
639
+ "Show some Love. Please help others learn about this free plugin by placing "
640
+ "small link in footer. Thank you very much!"
641
  msgstr ""
642
 
643
+ #: custom.php:1331
644
+ msgid "Love Position:"
645
  msgstr ""
646
 
647
+ #: custom.php:1349
648
+ msgid "Custom CSS/JS"
649
  msgstr ""
650
 
651
+ #: custom.php:1362
652
+ msgid "Customize CSS:"
653
  msgstr ""
654
 
655
+ #: custom.php:1367
656
+ #, php-format
657
+ msgid ""
658
+ "Custom CSS doen't make effect live. For preview please save the setting and "
659
+ "visit %1$s login%2$s page or after save refresh the customizer."
660
  msgstr ""
661
 
662
+ #: custom.php:1377
663
+ msgid "Customize JS:"
664
  msgstr ""
665
 
666
+ #: custom.php:1382
667
+ #, php-format
668
+ msgid ""
669
+ "Custom JS doen't make effect live. For preview please save the setting and "
670
+ "visit %1$s login%2$s page or after save refresh the customizer."
671
+ msgstr ""
672
+
673
+ #: custom.php:1432 custom.php:1434
674
+ msgid "Powered by:"
675
  msgstr ""
676
 
677
+ #: custom.php:1634 include/template-loginpress.php:469
678
+ msgid "Username"
679
  msgstr ""
680
 
681
+ #: custom.php:1636
682
+ msgid "Email Address"
683
+ msgstr ""
684
+
685
+ #: custom.php:1703 include/template-loginpress.php:370
686
+ msgid ""
687
+ "Please enter your username or email address. You will receive a link to "
688
+ "create a new password via email."
689
  msgstr ""
690
 
691
+ #: custom.php:1711 include/template-loginpress.php:465
692
+ msgid "Register For This Site"
693
  msgstr ""
694
 
695
+ #: custom.php:1729 custom.php:1733
696
+ msgid "Your password has been reset."
697
+ msgstr ""
698
+
699
+ #: custom.php:1733 include/template-loginpress.php:397
700
+ #: include/template-loginpress.php:491
701
+ msgid "Log in"
702
  msgstr ""
703
 
704
  #: include/class-remote-notification-client.php:126
723
  msgid "Cannot decode the response content"
724
  msgstr ""
725
 
726
+ #. translators: 1: Name of this plugin
727
+ #: include/create-loginpress-page.php:58
728
+ #, php-format
729
+ msgid ""
730
+ "<p>This page is used by %1$s to preview the login page in the Customizer.</p>"
731
+ msgstr ""
732
+
733
+ #: include/create-loginpress-page.php:63
734
+ msgctxt "Page slug"
735
+ msgid "loginpress"
736
+ msgstr ""
737
+
738
+ #: include/create-loginpress-page.php:64
739
+ msgctxt "Page title"
740
+ msgid "LoginPress"
741
+ msgstr ""
742
+
743
+ #: include/customizer-strings.php:8
744
+ msgid "Logo Width:"
745
+ msgstr ""
746
+
747
+ #: include/customizer-strings.php:8
748
+ msgid "Logo Height:"
749
+ msgstr ""
750
+
751
+ #: include/customizer-strings.php:8
752
+ msgid "Space Bottom:"
753
+ msgstr ""
754
+
755
+ #: include/customizer-strings.php:22
756
+ msgid "Input Fields:"
757
+ msgstr ""
758
+
759
+ #: include/customizer-strings.php:23
760
+ msgid "Input Field Labels:"
761
+ msgstr ""
762
+
763
+ #: include/customizer-strings.php:24
764
+ msgid "Login Form:"
765
+ msgstr ""
766
+
767
+ #: include/customizer-strings.php:25
768
+ msgid "Lost Your Password Text"
769
+ msgstr ""
770
+
771
+ #: include/customizer-strings.php:26
772
+ msgid "Back To Site Text"
773
+ msgstr ""
774
+
775
+ #: include/customizer-strings.php:27
776
+ msgid "LoginPress Footer Text"
777
+ msgstr ""
778
+
779
+ #: include/customizer-strings.php:29
780
+ msgid ""
781
+ "This section helps you to easily Customize the login form input field "
782
+ "elements."
783
+ msgstr ""
784
+
785
+ #: include/customizer-strings.php:30
786
+ msgid ""
787
+ "This section helps you to easily Customize the login form input field labels."
788
+ msgstr ""
789
+
790
+ #: include/customizer-strings.php:31
791
+ msgid ""
792
+ "This section helps you to easily Customize the login form elements whether "
793
+ "they are form lables, fields or backgrounds."
794
+ msgstr ""
795
+
796
+ #: include/customizer-strings.php:32
797
+ msgid ""
798
+ " Customize the \"Lost your password\" and \"Register\" text section under "
799
+ "the form."
800
+ msgstr ""
801
+
802
+ #: include/customizer-strings.php:33
803
+ msgid "Customize the \"Back to\" text section under the form."
804
+ msgstr ""
805
+
806
+ #: include/customizer-strings.php:34
807
+ msgid ""
808
+ "Customize the copyright note and branding sections at the footer of login "
809
+ "page."
810
+ msgstr ""
811
+
812
+ #: include/customizer-strings.php:44
813
+ msgid "Form Width:"
814
+ msgstr ""
815
+
816
+ #: include/customizer-strings.php:45
817
+ msgid "Form Minimum Height:"
818
+ msgstr ""
819
+
820
+ #: include/customizer-strings.php:46
821
+ msgid "Form Radius:"
822
+ msgstr ""
823
+
824
+ #: include/customizer-strings.php:47
825
+ msgid "Form Shadow:"
826
+ msgstr ""
827
+
828
+ #: include/customizer-strings.php:48
829
+ msgid "Form Shadow Opacity:"
830
+ msgstr ""
831
+
832
+ #: include/customizer-strings.php:49
833
+ msgid "Input Text Field Width:"
834
+ msgstr ""
835
+
836
+ #: include/customizer-strings.php:50
837
+ msgid "Input Text Field Radius:"
838
+ msgstr ""
839
+
840
+ #: include/customizer-strings.php:51
841
+ msgid "Input Text Field Shadow:"
842
+ msgstr ""
843
+
844
+ #: include/customizer-strings.php:52
845
+ msgid "Input Text Field Shadow Opacity:"
846
+ msgstr ""
847
+
848
+ #: include/customizer-strings.php:53
849
+ msgid "Input Field Label Font Size:"
850
+ msgstr ""
851
+
852
+ #: include/customizer-strings.php:54
853
+ msgid "Remember Me Font Size:"
854
+ msgstr ""
855
+
856
+ #: include/customizer-strings.php:73
857
+ msgid "Form Background Color:"
858
+ msgstr ""
859
+
860
+ #: include/customizer-strings.php:74
861
+ msgid "Input Field Background Color:"
862
+ msgstr ""
863
+
864
+ #: include/customizer-strings.php:75
865
+ msgid "Input Field Text Color:"
866
+ msgstr ""
867
+
868
+ #: include/customizer-strings.php:76
869
+ msgid "Input Field Label Color:"
870
+ msgstr ""
871
+
872
+ #: include/customizer-strings.php:77
873
+ msgid "Remember me Label Color:"
874
+ msgstr ""
875
+
876
+ #: include/customizer-strings.php:81 include/template-loginpress.php:382
877
+ #: include/template-loginpress.php:514
878
+ msgid "Username or Email Address"
879
+ msgstr ""
880
+
881
+ #: include/customizer-strings.php:83
882
+ msgid "Form Padding:"
883
+ msgstr ""
884
+
885
+ #: include/customizer-strings.php:84
886
+ msgid "Border (Example: 2px dotted black):"
887
+ msgstr ""
888
+
889
+ #: include/customizer-strings.php:85
890
+ msgid "Input Text Field Margin:"
891
+ msgstr ""
892
+
893
+ #: include/customizer-strings.php:86
894
+ msgid "Username Label:"
895
+ msgstr ""
896
+
897
+ #: include/customizer-strings.php:87
898
+ msgid "Password Label:"
899
+ msgstr ""
900
+
901
+ #: include/customizer-strings.php:98
902
+ msgid "Button Color:"
903
  msgstr ""
904
 
905
+ #: include/customizer-strings.php:99
906
+ msgid "Button Border Color:"
907
+ msgstr ""
908
+
909
+ #: include/customizer-strings.php:100
910
+ msgid "Button Color (Hover):"
911
+ msgstr ""
912
+
913
+ #: include/customizer-strings.php:101
914
+ msgid "Button Border (Hover):"
915
+ msgstr ""
916
+
917
+ #: include/customizer-strings.php:102
918
+ msgid "Button Box Shadow:"
919
+ msgstr ""
920
+
921
+ #: include/customizer-strings.php:103
922
+ msgid "Button Text Color:"
923
+ msgstr ""
924
+
925
+ #: include/customizer-strings.php:108
926
+ msgid "Button Size:"
927
+ msgstr ""
928
+
929
+ #: include/customizer-strings.php:108
930
+ msgid "Button Top Padding:"
931
+ msgstr ""
932
+
933
+ #: include/customizer-strings.php:108
934
+ msgid "Button Bottom Padding:"
935
+ msgstr ""
936
+
937
+ #: include/customizer-strings.php:108
938
+ msgid "Radius:"
939
+ msgstr ""
940
+
941
+ #: include/customizer-strings.php:108
942
+ msgid "Shadow:"
943
+ msgstr ""
944
+
945
+ #: include/customizer-strings.php:108
946
+ msgid "Shadow Opacity:"
947
+ msgstr ""
948
+
949
+ #: include/customizer-strings.php:108
950
+ msgid "Text Size:"
951
+ msgstr ""
952
+
953
+ #: include/deactivate_modal.php:131
954
+ msgid "Quick feedback about LoginPress"
955
+ msgstr ""
956
+
957
+ #: include/deactivate_modal.php:134
958
  msgid "If you have a moment, please let us know why you are deactivating:"
959
  msgstr ""
960
 
961
+ #: include/deactivate_modal.php:141
962
+ msgid " I upgraded to LoginPress Pro"
963
+ msgstr ""
964
+
965
+ #: include/deactivate_modal.php:143
966
+ msgid ""
967
+ "No need to deactivate this LoginPress Core version. Pro version works as an "
968
+ "add-on with Core version."
969
+ msgstr ""
970
+
971
+ #: include/deactivate_modal.php:150
972
  msgid "I only needed the plugin for a short period"
973
  msgstr ""
974
 
975
+ #: include/deactivate_modal.php:159
976
  msgid "I found a better plugin"
977
  msgstr ""
978
 
979
+ #: include/deactivate_modal.php:162
980
+ msgid "Kindly tell us the Plugin name."
981
+ msgstr ""
982
+
983
+ #: include/deactivate_modal.php:169
984
  msgid "The plugin broke my site"
985
  msgstr ""
986
 
987
+ #: include/deactivate_modal.php:178
988
  msgid "The plugin suddenly stopped working"
989
  msgstr ""
990
 
991
+ #: include/deactivate_modal.php:187
992
  msgid "I no longer need the plugin"
993
  msgstr ""
994
 
995
+ #: include/deactivate_modal.php:196
996
  msgid "It's a temporary deactivation. I'm just debugging an issue."
997
  msgstr ""
998
 
999
+ #: include/deactivate_modal.php:205
1000
  msgid "Other"
1001
  msgstr ""
1002
 
1003
+ #: include/deactivate_modal.php:208
1004
  msgid "Kindly tell us the reason so we can improve."
1005
  msgstr ""
1006
 
1007
+ #: include/deactivate_modal.php:213
1008
  msgid "Anonymous feedback"
1009
  msgstr ""
1010
 
1011
+ #: include/deactivate_modal.php:214
1012
+ msgid "Skip & Deactivate"
1013
+ msgstr ""
1014
+
1015
+ #: include/deactivate_modal.php:217
1016
+ msgid "Submit & Deactivate"
1017
+ msgstr ""
1018
+
1019
+ #: include/deactivate_modal.php:218
1020
  msgid "Cancel"
1021
  msgstr ""
1022
 
1023
+ #: include/loginpress-import-export.php:10
1024
+ msgid ""
1025
+ "Import/Export your LoginPress Settings for/from other sites. This will "
1026
+ "export/import all the settings including Customizer settings as well."
1027
+ msgstr ""
1028
+
1029
+ #: include/loginpress-import-export.php:15
1030
+ msgid "Import Settings:"
1031
+ msgstr ""
1032
+
1033
+ #: include/loginpress-import-export.php:19
1034
+ msgid "Import"
1035
+ msgstr ""
1036
+
1037
+ #: include/loginpress-import-export.php:23
1038
+ msgid "LoginPress Settings Imported Successfully."
1039
+ msgstr ""
1040
+
1041
+ #: include/loginpress-import-export.php:25
1042
+ msgid "Select a file and click on Import to start processing."
1043
+ msgstr ""
1044
+
1045
+ #: include/loginpress-import-export.php:30
1046
+ msgid "Export Settings:"
1047
+ msgstr ""
1048
+
1049
+ #: include/loginpress-import-export.php:33
1050
+ msgid "Export"
1051
+ msgstr ""
1052
+
1053
+ #: include/loginpress-import-export.php:37
1054
+ msgid "LoginPress Settings Exported Successfully!"
1055
+ msgstr ""
1056
+
1057
+ #: include/loginpress-import-export.php:38
1058
+ msgid "Export LoginPress Settings."
1059
+ msgstr ""
1060
+
1061
+ #: include/loginpress-optin-form.php:301
1062
+ msgid "Welcome to LoginPress"
1063
  msgstr ""
1064
 
1065
+ #: include/loginpress-optin-form.php:307
1066
+ #, php-format
1067
+ msgid ""
1068
+ "%1$s Hey %2$s, %4$s If you opt-in some data about your installation of "
1069
+ "LoginPress will be sent to WPBrigade.com (This doesn't include stats)%4$s "
1070
+ "and You will receive new feature updates, security notifications etc %5$sNo "
1071
+ "Spam, I promise.%6$s %4$s%4$s Help us %7$sImprove LoginPress%8$s %4$s %4$s "
1072
+ msgstr ""
1073
+
1074
+ #: include/loginpress-optin-form.php:308
1075
+ msgid "Allow and Continue "
1076
+ msgstr ""
1077
+
1078
+ #: include/loginpress-optin-form.php:309
1079
+ msgid "Skip This Step"
1080
+ msgstr ""
1081
+
1082
+ #: include/loginpress-optin-form.php:311
1083
+ msgid "What permissions are being granted?"
1084
+ msgstr ""
1085
+
1086
+ #: include/loginpress-optin-form.php:313
1087
+ msgid "Your Website Overview"
1088
+ msgstr ""
1089
+
1090
+ #: include/loginpress-optin-form.php:314
1091
+ msgid ""
1092
+ "Your Site URL, WordPress & PHP version, plugins & themes. This data lets us "
1093
+ "make sure this plugin always stays compatible with the most popular plugins "
1094
+ "and themes."
1095
+ msgstr ""
1096
+
1097
+ #: include/loginpress-optin-form.php:316
1098
+ msgid "Your Profile Overview"
1099
+ msgstr ""
1100
+
1101
+ #: include/loginpress-optin-form.php:317
1102
+ msgid "Your name and email address."
1103
+ msgstr ""
1104
+
1105
+ #: include/loginpress-optin-form.php:319
1106
+ msgid "Admin Notices"
1107
+ msgstr ""
1108
+
1109
+ #: include/loginpress-optin-form.php:320
1110
+ msgid "Updates, Announcement, Marketing. No Spam, I promise."
1111
+ msgstr ""
1112
+
1113
+ #: include/loginpress-optin-form.php:322
1114
+ msgid "Plugin Actions"
1115
+ msgstr ""
1116
+
1117
+ #: include/loginpress-optin-form.php:323
1118
+ msgid ""
1119
+ "Active, Deactive, Uninstallation and How you use this plugin's features and "
1120
+ "settings. This is limited to usage data. It does not include any of your "
1121
+ "sensitive LoginPress data, such as traffic. This data helps us learn which "
1122
+ "features are most popular, so we can improve the plugin further."
1123
+ msgstr ""
1124
+
1125
+ #: include/loginpress-optout-form.php:94 include/loginpress-optout-form.php:109
1126
+ msgid "Opt Out"
1127
+ msgstr ""
1128
+
1129
+ #: include/loginpress-optout-form.php:98
1130
+ msgid ""
1131
+ "We appreciate your help in making the plugin better by letting us track some "
1132
+ "usage data."
1133
+ msgstr ""
1134
+
1135
+ #: include/loginpress-optout-form.php:102
1136
+ #, php-format
1137
+ msgid ""
1138
+ "Usage tracking is done in the name of making %1$s LoginPress %2$s better. "
1139
+ "Making a better user experience, prioritizing new features, and more good "
1140
+ "things. We'd really appreciate if you'll reconsider letting us continue with "
1141
+ "the tracking."
1142
+ msgstr ""
1143
+
1144
+ #: include/loginpress-optout-form.php:103
1145
+ #, php-format
1146
+ msgid ""
1147
+ "By clicking \"Opt Out\", we will no longer be sending any data to %1$s "
1148
+ "LoginPress%2$s."
1149
+ msgstr ""
1150
+
1151
+ #: include/loginpress-optout-form.php:110
1152
+ msgid "On second thought - I want to continue helping"
1153
+ msgstr ""
1154
+
1155
+ #: include/privacy-policy.php:13
1156
+ #, php-format
1157
+ msgid "%1$sPrivacy Policy%2$s."
1158
+ msgstr ""
1159
+
1160
+ #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1161
+ #: include/template-loginpress.php:70
1162
+ #, php-format
1163
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1164
+ msgstr ""
1165
+
1166
+ #: include/template-loginpress.php:147
1167
+ msgid "https://wordpress.org/"
1168
+ msgstr ""
1169
+
1170
+ #: include/template-loginpress.php:148
1171
+ msgid "Powered by WordPress"
1172
+ msgstr ""
1173
+
1174
+ #. translators: %s: site title
1175
+ #: include/template-loginpress.php:250
1176
+ #, php-format
1177
+ msgctxt "site"
1178
+ msgid "&larr; Back to %s"
1179
+ msgstr ""
1180
+
1181
+ #: include/template-loginpress.php:370
1182
+ msgid "Lost Password"
1183
+ msgstr ""
1184
+
1185
+ #: include/template-loginpress.php:393
1186
+ msgid "Get New Password"
1187
+ msgstr ""
1188
+
1189
+ #: include/template-loginpress.php:400 include/template-loginpress.php:487
1190
+ #: include/template-loginpress.php:544
1191
+ msgid "Register"
1192
+ msgstr ""
1193
+
1194
+ #: include/template-loginpress.php:465
1195
+ msgid "Registration Form"
1196
+ msgstr ""
1197
+
1198
+ #: include/template-loginpress.php:473
1199
+ msgid "Email"
1200
+ msgstr ""
1201
+
1202
+ #: include/template-loginpress.php:484
1203
+ msgid "Registration confirmation will be emailed to you."
1204
+ msgstr ""
1205
+
1206
+ #: include/template-loginpress.php:493 include/template-loginpress.php:552
1207
+ msgid "Lost your password?"
1208
+ msgstr ""
1209
+
1210
+ #: include/template-loginpress.php:508 include/template-loginpress.php:536
1211
+ msgid "Log In"
1212
+ msgstr ""
1213
+
1214
+ #: include/template-loginpress.php:534
1215
+ msgid "Remember Me"
1216
+ msgstr ""
1217
+
1218
+ #: loginpress.php:278
1219
+ msgid "Activate"
1220
+ msgstr ""
1221
+
1222
+ #: loginpress.php:378
1223
  msgid "Vote!"
1224
  msgstr ""
1225
 
1226
+ #: loginpress.php:571
1227
  msgid "Leave A Review?"
1228
  msgstr ""
1229
 
1230
+ #: loginpress.php:572
1231
  msgid ""
1232
  "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
1233
  "review on WordPress.org?"
1234
  msgstr ""
1235
 
1236
+ #: loginpress.php:574
1237
  msgid "Sure! I'd love to!"
1238
  msgstr ""
1239
 
1240
+ #: loginpress.php:575
1241
  msgid "I've already left a review"
1242
  msgstr ""
1243
 
1244
+ #: loginpress.php:576
1245
  msgid "Maybe Later"
1246
  msgstr ""
1247
 
1248
+ #: loginpress.php:577
1249
  msgid "Never show again"
1250
  msgstr ""
1251
 
1252
+ #: loginpress.php:602
1253
+ msgid "Introducing LoginPress Addons!"
1254
+ msgstr ""
1255
+
1256
+ #: loginpress.php:603
1257
+ msgid "Extend LoginPress with these add-ons and supercharge your login pages."
1258
+ msgstr ""
1259
+
1260
+ #: loginpress.php:607
1261
+ msgid "Learn More"
1262
+ msgstr ""
1263
+
1264
+ #: loginpress.php:666
1265
  #, php-format
1266
  msgid "%1$s Settings %2$s | %3$s Customize %4$s"
1267
  msgstr ""
1268
 
1269
+ #: loginpress.php:670
1270
+ #, php-format
1271
+ msgid " | %1$s Opt Out %2$s "
1272
+ msgstr ""
1273
+
1274
+ #: loginpress.php:672
1275
+ #, php-format
1276
+ msgid " | %1$s Opt In %2$s "
1277
+ msgstr ""
1278
+
1279
+ #: loginpress.php:678
1280
  #, php-format
1281
  msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
1282
  msgstr ""
1286
  msgstr ""
1287
 
1288
  #. Plugin URI of the plugin/theme
1289
+ msgid "http://WPBrigade.com/wordpress/plugins/loginpress/"
1290
  msgstr ""
1291
 
1292
  #. Description of the plugin/theme
1293
  msgid ""
1294
+ "LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by "
1295
+ "<a href=\"https://wpbrigade.com/\">WPBrigade</a> which allows you to "
1296
+ "completely change the layout of login, register and forgot password forms."
1297
  msgstr ""
1298
 
1299
  #. Author of the plugin/theme
1301
  msgstr ""
1302
 
1303
  #. Author URI of the plugin/theme
1304
+ msgid "http://WPBrigade.com/"
1305
  msgstr ""
loginpress.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: http://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.1.6
7
  * Author: WPBrigade
8
  * Author URI: http://WPBrigade.com/
9
  * Text Domain: loginpress
@@ -22,7 +22,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
22
  /**
23
  * @var string
24
  */
25
- public $version = '1.1.6';
26
 
27
  /**
28
  * @var The single instance of the class
@@ -72,6 +72,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
72
 
73
  /**
74
  * Include required core files used in admin and on the frontend.
 
75
  */
76
 
77
  public function includes() {
@@ -81,6 +82,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
81
  include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-setup.php' );
82
  include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-ajax.php' );
83
  include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-filter-plugin.php' );
 
84
  if ( is_multisite() ) {
85
  require_once( LOGINPRESS_DIR_PATH . 'include/class-loginpress-theme-template.php' );
86
  }
@@ -217,7 +219,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
217
  */
218
  public function check_loginpress_page() {
219
 
220
- // Retrieve the Login Designer admin page option, that was created during the activation process.
221
  $option = $this->get_loginpress_page();
222
 
223
  include LOGINPRESS_DIR_PATH . 'include/create-loginpress-page.php';
@@ -628,17 +630,19 @@ if ( ! class_exists( 'LoginPress' ) ) :
628
  }
629
 
630
  /**
631
- * Pull the Login Designer page from options.
632
  *
633
  * @access public
 
 
634
  */
635
  public function get_loginpress_page() {
636
 
637
- $loginpress_settings = get_option( 'loginpress_setting', array() );
638
  if ( ! is_array( $loginpress_setting ) && empty( $loginpress_setting ) ) {
639
  $loginpress_setting = array();
640
  }
641
- $page = array_key_exists( 'loginpress_page', $loginpress_settings ) ? get_post( $loginpress_settings['loginpress_page'] ) : false;
642
 
643
  return $page;
644
  }
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: http://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.1.7
7
  * Author: WPBrigade
8
  * Author URI: http://WPBrigade.com/
9
  * Text Domain: loginpress
22
  /**
23
  * @var string
24
  */
25
+ public $version = '1.1.7';
26
 
27
  /**
28
  * @var The single instance of the class
72
 
73
  /**
74
  * Include required core files used in admin and on the frontend.
75
+ * @version 1.1.7
76
  */
77
 
78
  public function includes() {
82
  include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-setup.php' );
83
  include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-ajax.php' );
84
  include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-filter-plugin.php' );
85
+ include_once( LOGINPRESS_DIR_PATH . 'classes/class-loginpress-developer-hooks.php' );
86
  if ( is_multisite() ) {
87
  require_once( LOGINPRESS_DIR_PATH . 'include/class-loginpress-theme-template.php' );
88
  }
219
  */
220
  public function check_loginpress_page() {
221
 
222
+ // Retrieve the LoginPress admin page option, that was created during the activation process.
223
  $option = $this->get_loginpress_page();
224
 
225
  include LOGINPRESS_DIR_PATH . 'include/create-loginpress-page.php';
630
  }
631
 
632
  /**
633
+ * Pull the LoginPress page from options.
634
  *
635
  * @access public
636
+ * @since 1.1.3
637
+ * @version 1.1.7
638
  */
639
  public function get_loginpress_page() {
640
 
641
+ $loginpress_setting = get_option( 'loginpress_setting', array() );
642
  if ( ! is_array( $loginpress_setting ) && empty( $loginpress_setting ) ) {
643
  $loginpress_setting = array();
644
  }
645
+ $page = array_key_exists( 'loginpress_page', $loginpress_setting ) ? get_post( $loginpress_setting['loginpress_page'] ) : false;
646
 
647
  return $page;
648
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tested up to: 4.9
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com
6
  Tags: wp-login, custom wp-login, login customizer, custom login, custom login logo, login customizer, custom login page, login error, login page style, loginpress
7
- Stable tag: 1.1.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -204,6 +204,16 @@ Please visit <a target="_blank" rel="friend" href="http://WPBrigade.com/wordpres
204
 
205
  == Changelog ==
206
 
 
 
 
 
 
 
 
 
 
 
207
  = 1.1.6 - 2018-06-25 =
208
  * Bugfix: Forget & Registration Form Transparency issue.
209
  * Bugfix: license issue fix for premium users.
@@ -384,5 +394,5 @@ Please visit <a target="_blank" rel="friend" href="http://WPBrigade.com/wordpres
384
 
385
  == Upgrade Notice ==
386
 
387
- = 1.1.6 =
388
- * Bugfix release, upgrade immediately.
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com
6
  Tags: wp-login, custom wp-login, login customizer, custom login, custom login logo, login customizer, custom login page, login error, login page style, loginpress
7
+ Stable tag: 1.1.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
204
 
205
  == Changelog ==
206
 
207
+ = 1.1.7 - 2018-07-13 =
208
+ * New Feature: Create a setting option "Lost Password URL" for using WordPress default forget form instead WooCommerce forget form.
209
+ * New Feature: Create a Hook for removing "Remember me" checkbox.
210
+ * New Feature: Compatible with LoginPress new addon (Login Menus).
211
+ * Bugfix: Multisite PHP error.
212
+ * Update: French language.
213
+ * Update: POT file.
214
+ * Compatibility: Compatible with WordPress 4.9.
215
+ * Enhancement: Code refactoring.
216
+
217
  = 1.1.6 - 2018-06-25 =
218
  * Bugfix: Forget & Registration Form Transparency issue.
219
  * Bugfix: license issue fix for premium users.
394
 
395
  == Upgrade Notice ==
396
 
397
+ = 1.1.7 =
398
+ * Important Release, upgrade immediately.