Custom Login Page Customizer | LoginPress - Version 1.0.11

Version Description

  • 2017-02-25 =
  • Bugfix: Form Padding on Lost Password and Register Pages.
  • Enhancement: WPML & Multilingual Compatible. Fully transtable now.
  • Enhancement: Few Text edits for better UX.
  • Enhancement: Settings links added at plugins page.
  • Enhancement: Usage Tracking option for improving plugin.
Download this release

Release Info

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

Code changes from version 1.0.10 to 1.0.11

classes/loginpress-settings-api.php CHANGED
@@ -511,7 +511,7 @@ if ( !class_exists( 'LoginPress_Settings_API' ) ):
511
  settings_fields( $form['id'] );
512
  do_settings_sections( $form['id'] );
513
  do_action( 'wsa_form_bottom_' . $form['id'], $form );
514
- if ( isset( $this->settings_fields[ $form['id'] ] ) ):
515
  ?>
516
  <div style="padding-left: 10px">
517
  <?php submit_button(); ?>
@@ -525,7 +525,7 @@ if ( !class_exists( 'LoginPress_Settings_API' ) ):
525
 
526
  <div class="loginpress-advertise">
527
  <div class="loginpress-video">
528
- <h3><span class="dashicons dashicons-dashboard"></span>&nbsp;&nbsp;<?php _e( 'Getting Started Video - 60 sec', 'loginpress' ); ?></h3>
529
  <hr style=" border-top: 1px solid #000; border-bottom: none">
530
  <div class="inside">
531
  <iframe width="294" height="200" src="https://www.youtube.com/embed/GMAwsHomJlE?showinfo=0" frameborder="0" allowfullscreen=""></iframe>
@@ -543,7 +543,7 @@ if ( !class_exists( 'LoginPress_Settings_API' ) ):
543
  <li><hr style=" border-top: 1px solid #734726; border-bottom: none"></li>
544
  </ul>
545
  <p>
546
- <a class="button-primary" style="background-color:#05AE0E; border-color:#05AE0E; box-shadow:none; text-shadow: none; width:100%; text-align:center; border-radius: 0;" href="https://wpbrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&amp;utm_medium=sidebar&amp;utm_campaign=pro-upgrade" target="_blank"><?php _e( "See What's In The Pro Version", 'loginpress' ); ?></a>
547
  </p>
548
  <div class="inside">
549
  <iframe width="294" height="200" src="https://www.youtube.com/embed/9snT9rWxO4g?showinfo=0" frameborder="0" allowfullscreen=""></iframe>
511
  settings_fields( $form['id'] );
512
  do_settings_sections( $form['id'] );
513
  do_action( 'wsa_form_bottom_' . $form['id'], $form );
514
+ if ( isset( $this->settings_fields[ $form['id'] ] ) ) :
515
  ?>
516
  <div style="padding-left: 10px">
517
  <?php submit_button(); ?>
525
 
526
  <div class="loginpress-advertise">
527
  <div class="loginpress-video">
528
+ <h3><span class="dashicons dashicons-dashboard"></span>&nbsp;&nbsp;<?php _e( 'Getting Started Video', 'loginpress' ); ?></h3>
529
  <hr style=" border-top: 1px solid #000; border-bottom: none">
530
  <div class="inside">
531
  <iframe width="294" height="200" src="https://www.youtube.com/embed/GMAwsHomJlE?showinfo=0" frameborder="0" allowfullscreen=""></iframe>
543
  <li><hr style=" border-top: 1px solid #734726; border-bottom: none"></li>
544
  </ul>
545
  <p>
546
+ <a class="button-primary" style="background-color:#FFD700; border-color:#FFD700; color:#000; box-shadow:none; text-shadow: none; width:100%; text-align:center; border-radius: 0;" href="https://wpbrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&amp;utm_medium=sidebar&amp;utm_campaign=pro-upgrade" target="_blank"><?php _e( "See What's In The Pro Version", 'loginpress' ); ?></a>
547
  </p>
548
  <div class="inside">
549
  <iframe width="294" height="200" src="https://www.youtube.com/embed/9snT9rWxO4g?showinfo=0" frameborder="0" allowfullscreen=""></iframe>
classes/loginpress-setup.php CHANGED
@@ -65,7 +65,7 @@ class LoginPress_Settings {
65
  array(
66
  'id' => 'loginpress_setting',
67
  'title' => __( 'Settings', 'loginpress' ),
68
- 'desc' => __( 'Following are the plugin settings for LoginPress Other than that everything is customizeable through WordPress Customizer.', 'loginpress' ),
69
  ) );
70
 
71
  if ( ! has_action( 'loginpress_pro_add_template' ) ) {
@@ -93,7 +93,13 @@ class LoginPress_Settings {
93
  'label' => __( 'Reset Default Settings', 'loginpress' ),
94
  'desc' => __( 'Remove my custom settings.', 'loginpress' ),
95
  'type' => 'checkbox'
96
- ) );
 
 
 
 
 
 
97
 
98
  $_settings_fields = apply_filters( 'loginpress_pro_settings', $_free_fields );
99
 
65
  array(
66
  'id' => 'loginpress_setting',
67
  'title' => __( 'Settings', 'loginpress' ),
68
+ 'desc' => sprintf( __( 'Everything else is customizable through %1$sWordPress Customizer%2$s.', 'loginpress' ), '<a href="' . admin_url( 'admin.php?page=loginpress' ) . '">', '</a>' ),
69
  ) );
70
 
71
  if ( ! has_action( 'loginpress_pro_add_template' ) ) {
93
  'label' => __( 'Reset Default Settings', 'loginpress' ),
94
  'desc' => __( 'Remove my custom settings.', 'loginpress' ),
95
  'type' => 'checkbox'
96
+ ),
97
+ array(
98
+ 'name' => 'tracking_anonymous',
99
+ 'label' => __( 'Allow Usage Tracking?', 'loginpress' ),
100
+ 'desc' => __( 'Allow LoginPress to <a href="https://wpbrigade.com/wordpress/plugins/non-sensitive-diagnostic-tracking/" target="_blank">non-sensitive diagnostic tracking</a> and help us make the plugin even better.', 'loginpress' ),
101
+ 'type' => 'checkbox'
102
+ ) );
103
 
104
  $_settings_fields = apply_filters( 'loginpress_pro_settings', $_free_fields );
105
 
css/style-login.php CHANGED
@@ -249,8 +249,16 @@ body.login {
249
  <?php if ( ! empty( $loginpress_forget_form_bg_clr ) ) : ?>
250
  background-color: <?php echo $loginpress_forget_form_bg_clr; ?>;
251
  <?php endif; ?>
 
 
 
252
  }
253
 
 
 
 
 
 
254
 
255
 
256
  .login .custom-message {
249
  <?php if ( ! empty( $loginpress_forget_form_bg_clr ) ) : ?>
250
  background-color: <?php echo $loginpress_forget_form_bg_clr; ?>;
251
  <?php endif; ?>
252
+ <?php if ( ! empty( $loginpress_form_padding ) ) : ?>
253
+ padding: <?php echo $loginpress_form_padding; ?>;
254
+ <?php endif; ?>
255
  }
256
 
257
+ #registerform {
258
+ <?php if ( ! empty( $loginpress_form_padding ) ) : ?>
259
+ padding: <?php echo $loginpress_form_padding; ?>;
260
+ <?php endif; ?>
261
+ }
262
 
263
 
264
  .login .custom-message {
css/style.css CHANGED
@@ -1,7 +1,7 @@
1
  *{
2
  box-sizing: border-box;
3
  }
4
- #normal-sortables{
5
  padding-top: 20px;
6
  }
7
  #wpbrigade_infs_general_videobox h3{
@@ -103,31 +103,40 @@
103
  color: #fff;
104
  text-decoration: none;
105
  }
106
- .loginpress-premium:hover{
107
  color: #fff;
 
108
  }
109
  .dashicons-star-filled:before {
110
- color: #fff;
111
  font-size: 14px;
112
  }
 
 
 
 
 
 
113
  .loginpress-settings{
114
- width: 70%;
115
  float: left;
 
116
  }
117
  .loginpress-advertise {
118
- max-width: 30%;
119
  float: right;
120
  width: 355px;
121
  }
122
  .loginpress-advertise .inside iframe{
123
- height: 140px;
124
  display: block;
125
  margin: 0 auto;
 
126
  }
127
  .advertise-box .inside iframe{
128
- height: 136px;
129
  display: block;
130
- margin: 0 auto;;
131
  }
132
  .loginpress-support{
133
  background-color: #fff;
@@ -150,7 +159,7 @@
150
  padding: 5px;
151
  text-align: center;
152
  }
153
- .dashicons{
154
  font-size: 14px;
155
  }
156
  .inside-advertise{
@@ -165,9 +174,98 @@
165
  }
166
  .loginpress-video h3{
167
  margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  }
169
  @media screen and (max-width: 1170px) {
170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  }
172
  @media screen and (max-width: 767px) {
173
  .wpbrigade-video-popup{
1
  *{
2
  box-sizing: border-box;
3
  }
4
+ .loginpress_page_loginpress-settings #normal-sortables{
5
  padding-top: 20px;
6
  }
7
  #wpbrigade_infs_general_videobox h3{
103
  color: #fff;
104
  text-decoration: none;
105
  }
106
+ .loginpress-premium:hover, .loginpress-premium:focus{
107
  color: #fff;
108
+ background-color: #616060;
109
  }
110
  .dashicons-star-filled:before {
111
+ color: #FFD700;
112
  font-size: 14px;
113
  }
114
+ #wpbody-content .metabox-holder.loginpress-settings{
115
+ padding-top: 25px;
116
+ }
117
+ #wpbody-content .form-table{
118
+ margin-top: 15px;
119
+ }
120
  .loginpress-settings{
121
+ width: 74%;
122
  float: left;
123
+ padding-right: 30px;
124
  }
125
  .loginpress-advertise {
126
+ max-width: 26%;
127
  float: right;
128
  width: 355px;
129
  }
130
  .loginpress-advertise .inside iframe{
131
+ height: 118px;
132
  display: block;
133
  margin: 0 auto;
134
+ width: 100%;
135
  }
136
  .advertise-box .inside iframe{
137
+ height: 114px;
138
  display: block;
139
+ margin: 0 auto;
140
  }
141
  .loginpress-support{
142
  background-color: #fff;
159
  padding: 5px;
160
  text-align: center;
161
  }
162
+ .inside-advertise ul li .dashicons-admin-post{
163
  font-size: 14px;
164
  }
165
  .inside-advertise{
174
  }
175
  .loginpress-video h3{
176
  margin-bottom: 0;
177
+ font-size: 15px;
178
+ }
179
+ .loginpress-review-notice{
180
+ padding: 15px 15px 15px 0;
181
+ background-color: #fff;
182
+ border-radius: 3px;
183
+ margin: 20px 20px 0 0;
184
+ border-left: 4px solid transparent;
185
+ }
186
+ .loginpress-review-notice:after{
187
+ content: '';
188
+ display: table;
189
+ clear: both;
190
+ }
191
+ .loginpress-review-thumbnail{
192
+ width: 114px;
193
+ float: left;
194
+ line-height: 80px;
195
+ text-align: center;
196
+ border-right: 4px solid transparent;
197
+ }
198
+ .loginpress-review-thumbnail img{
199
+ width: 68px;
200
+ vertical-align: middle;
201
+ }
202
+ .loginpress-review-text{
203
+ overflow: hidden;
204
+ }
205
+ .loginpress-review-text h3{
206
+ font-size: 24px;
207
+ margin: 0 0 5px;
208
+ font-weight: 400;
209
+ line-height: 1.3;
210
+ }
211
+ .loginpress-review-text p{
212
+ font-size: 13px;
213
+ margin: 0 0 5px;
214
+ }
215
+ .loginpress-review-ul{
216
+ margin: 0;
217
+ padding: 0;
218
+ }
219
+ .loginpress-review-ul li{
220
+ display: inline-block;
221
+ margin-right: 15px;
222
+ }
223
+ .loginpress-review-ul li a{
224
+ display: inline-block;
225
+ color: #10738B;
226
+ text-decoration: none;
227
+ padding-left: 26px;
228
+ position: relative;
229
+ }
230
+ .loginpress-review-ul li a span{
231
+ position: absolute;
232
+ left: 0;
233
+ top: -2px;
234
+ }
235
+ .loginpress-dasboard-pro-link{
236
+ color: #0cbb0c;
237
+ }
238
+ #customize-theme-controls #accordion-section-customize_presets .accordion-section-title{
239
+ background-color: #FFD700;
240
+ }
241
+ #customize-controls #accordion-section-customize_presets:hover>.accordion-section-title{
242
+ background-color: #FFD700;
243
+ }
244
+ #loginpress_setting form>h2{
245
+ display: none;
246
+ }
247
+ #loginpress_setting .form-table th {
248
+ padding: 15px 10px 15px 0 !important;
249
+ width: 170px !important;
250
+ }
251
+ .form-table td fieldset label{
252
+ font-size: 13px;
253
  }
254
  @media screen and (max-width: 1170px) {
255
 
256
+ }
257
+ @media screen and (max-width: 950px) {
258
+ .loginpress-settings{
259
+ width: 100%;
260
+ padding-right: 0;
261
+ }
262
+ .loginpress-advertise{
263
+ max-width: 100%;
264
+ float: left;
265
+ }
266
+ h1 .nav-tab, h2 .nav-tab, h3 .nav-tab{
267
+ margin: 0 !important;
268
+ }
269
  }
270
  @media screen and (max-width: 767px) {
271
  .wpbrigade-video-popup{
custom.php CHANGED
@@ -632,7 +632,7 @@ class LoginPress_Entities {
632
  ) );
633
 
634
  $welcome_control = array( 'lostpwd_welcome_message', 'welcome_message', 'register_welcome_message', 'logout_message', 'message_background_border' );
635
- $welcome_default = array( 'Forget ?', 'Welcome', 'Register yourself', 'Logout', '' );
636
  $welcome_label = array(
637
  __( 'Welcome Message on Lost Password:', 'loginpress' ),
638
  __( 'Welcome Message on Front Page:', 'loginpress' ),
@@ -1083,7 +1083,7 @@ class LoginPress_Entities {
1083
  ) ) );
1084
 
1085
  $wp_customize->add_setting( 'loginpress_customization[login_footer_copy_right]', array(
1086
- 'default' => '© 2017 WPBrigade, All Rights Reserved.',
1087
  'type' => 'option',
1088
  'capability' => 'manage_options',
1089
  'transport' => 'postMessage'
@@ -1373,7 +1373,7 @@ class LoginPress_Entities {
1373
  if ( ! empty($_GET['page'] ) ) {
1374
 
1375
  if( ( $_GET['page'] == "abw" ) || ( $_GET['page'] == "loginpress" ) ) {
1376
-
1377
  wp_redirect(get_admin_url()."customize.php?url=".wp_login_url());
1378
  }
1379
  }
632
  ) );
633
 
634
  $welcome_control = array( 'lostpwd_welcome_message', 'welcome_message', 'register_welcome_message', 'logout_message', 'message_background_border' );
635
+ $welcome_default = array( 'Forgot password?', 'Welcome', 'Register yourself', 'Logout', '' );
636
  $welcome_label = array(
637
  __( 'Welcome Message on Lost Password:', 'loginpress' ),
638
  __( 'Welcome Message on Front Page:', 'loginpress' ),
1083
  ) ) );
1084
 
1085
  $wp_customize->add_setting( 'loginpress_customization[login_footer_copy_right]', array(
1086
+ 'default' => sprintf( __('© 2017 %1$s, All Rights Reserved.', 'loginpress'), get_bloginfo('name') ),
1087
  'type' => 'option',
1088
  'capability' => 'manage_options',
1089
  'transport' => 'postMessage'
1373
  if ( ! empty($_GET['page'] ) ) {
1374
 
1375
  if( ( $_GET['page'] == "abw" ) || ( $_GET['page'] == "loginpress" ) ) {
1376
+
1377
  wp_redirect(get_admin_url()."customize.php?url=".wp_login_url());
1378
  }
1379
  }
img/thumbnail/gray-loginpress.png ADDED
Binary file
include/deactivate_modal.php CHANGED
@@ -72,24 +72,30 @@
72
  color: red;
73
  font-weight: 600;
74
  display: none;
75
- }
 
 
 
 
 
 
76
 
77
  </style>
78
  <div class="loginpress-popup-overlay">
79
  <div class="loginpress-serveypanel">
80
  <form action="#" method="post" id="loginpress-deactivate-form">
81
  <div class="loginpress-popup-header">
82
- <h2>Quick feedback</h2>
83
  </div>
84
  <div class="loginpress-popup-body">
85
- <h3>If you have a moment, please let us know why you are deactivating:</h3>
86
  <ul id="loginpress-reason-list">
87
  <li class="loginpress-reason" data-input-type="" data-input-placeholder="">
88
  <label>
89
  <span>
90
  <input type="radio" name="loginpress-selected-reason" value="1">
91
  </span>
92
- <span>I only needed the plugin for a short period</span>
93
  </label>
94
  <div class="loginpress-internal-message"></div>
95
  </li>
@@ -98,7 +104,7 @@
98
  <span>
99
  <input type="radio" name="loginpress-selected-reason" value="2">
100
  </span>
101
- <span>I found a better plugin</span>
102
  </label>
103
  <div class="loginpress-internal-message"></div>
104
  <div class="loginpress-reason-input"><span class="message"></span><input type="text" name="better_plugin" placeholder="What's the plugin's name?"></div>
@@ -108,7 +114,7 @@
108
  <span>
109
  <input type="radio" name="loginpress-selected-reason" value="3">
110
  </span>
111
- <span>The plugin broke my site</span>
112
  </label>
113
  <div class="loginpress-internal-message"></div>
114
  </li>
@@ -117,7 +123,7 @@
117
  <span>
118
  <input type="radio" name="loginpress-selected-reason" value="4">
119
  </span>
120
- <span>The plugin suddenly stopped working</span>
121
  </label>
122
  <div class="loginpress-internal-message"></div>
123
  </li>
@@ -126,7 +132,7 @@
126
  <span>
127
  <input type="radio" name="loginpress-selected-reason" value="5">
128
  </span>
129
- <span>I no longer need the plugin</span>
130
  </label>
131
  <div class="loginpress-internal-message"></div>
132
  </li>
@@ -135,7 +141,7 @@
135
  <span>
136
  <input type="radio" name="loginpress-selected-reason" value="6">
137
  </span>
138
- <span>It's a temporary deactivation. I'm just debugging an issue.</span>
139
  </label>
140
  <div class="loginpress-internal-message"></div>
141
  </li>
@@ -144,18 +150,19 @@
144
  <span>
145
  <input type="radio" name="loginpress-selected-reason" value="7">
146
  </span>
147
- <span>Other</span>
148
  </label>
149
  <div class="loginpress-internal-message"></div>
150
- <div class="loginpress-reason-input"><span class="message error-message ">Kindly tell us the reason so we can improve.</span><input type="text" name="other_reason" placeholder="What's the plugin's name?"></div>
151
  </li>
152
  </ul>
153
  </div>
154
  <div class="loginpress-popup-footer">
155
- <label class="loginpress-anonymous"><input type="checkbox" /> Anonymous feedback</label>
156
  <div class="action-btns">
 
157
  <input type="submit" class="button button-secondary button-deactivate loginpress-popup-allow-deactivate" value="Submit &amp; Deactivate" disabled="disabled">
158
- <a href="#" class="button button-primary loginpress-popup-button-close">Cancel</a>
159
 
160
  </div>
161
  </div>
@@ -218,9 +225,15 @@
218
  action : 'loginpress_deactivate',
219
  reason : _reason,
220
  reason_detail : _reason_details,
 
 
 
 
221
  }
222
  })
223
  .done(function() {
 
 
224
  window.location.href = $("tr[data-slug='"+ pluginSlug +"'] .deactivate a").attr('href');
225
  });
226
 
72
  color: red;
73
  font-weight: 600;
74
  display: none;
75
+ }
76
+ .loginpress-spinner{
77
+ display: none;
78
+ }
79
+ .loginpress-spinner img{
80
+ margin-top: 3px;
81
+ }
82
 
83
  </style>
84
  <div class="loginpress-popup-overlay">
85
  <div class="loginpress-serveypanel">
86
  <form action="#" method="post" id="loginpress-deactivate-form">
87
  <div class="loginpress-popup-header">
88
+ <h2><?php _e( 'Quick feedback', 'loginpress' ); ?></h2>
89
  </div>
90
  <div class="loginpress-popup-body">
91
+ <h3><?php _e( 'If you have a moment, please let us know why you are deactivating:', 'loginpress' ); ?></h3>
92
  <ul id="loginpress-reason-list">
93
  <li class="loginpress-reason" data-input-type="" data-input-placeholder="">
94
  <label>
95
  <span>
96
  <input type="radio" name="loginpress-selected-reason" value="1">
97
  </span>
98
+ <span><?php _e( 'I only needed the plugin for a short period', 'loginpress' ); ?></span>
99
  </label>
100
  <div class="loginpress-internal-message"></div>
101
  </li>
104
  <span>
105
  <input type="radio" name="loginpress-selected-reason" value="2">
106
  </span>
107
+ <span><?php _e( 'I found a better plugin', 'loginpress' ); ?></span>
108
  </label>
109
  <div class="loginpress-internal-message"></div>
110
  <div class="loginpress-reason-input"><span class="message"></span><input type="text" name="better_plugin" placeholder="What's the plugin's name?"></div>
114
  <span>
115
  <input type="radio" name="loginpress-selected-reason" value="3">
116
  </span>
117
+ <span><?php _e( 'The plugin broke my site', 'loginpress' ); ?></span>
118
  </label>
119
  <div class="loginpress-internal-message"></div>
120
  </li>
123
  <span>
124
  <input type="radio" name="loginpress-selected-reason" value="4">
125
  </span>
126
+ <span><?php _e( 'The plugin suddenly stopped working', 'loginpress' ); ?></span>
127
  </label>
128
  <div class="loginpress-internal-message"></div>
129
  </li>
132
  <span>
133
  <input type="radio" name="loginpress-selected-reason" value="5">
134
  </span>
135
+ <span><?php _e( 'I no longer need the plugin', 'loginpress' ); ?></span>
136
  </label>
137
  <div class="loginpress-internal-message"></div>
138
  </li>
141
  <span>
142
  <input type="radio" name="loginpress-selected-reason" value="6">
143
  </span>
144
+ <span><?php _e( "It's a temporary deactivation. I'm just debugging an issue.", 'loginpress' ); ?></span>
145
  </label>
146
  <div class="loginpress-internal-message"></div>
147
  </li>
150
  <span>
151
  <input type="radio" name="loginpress-selected-reason" value="7">
152
  </span>
153
+ <span><?php _e( 'Other', 'loginpress' ); ?></span>
154
  </label>
155
  <div class="loginpress-internal-message"></div>
156
+ <div class="loginpress-reason-input"><span class="message error-message "><?php _e( 'Kindly tell us the reason so we can improve.', 'loginpress' ); ?></span><input type="text" name="other_reason" placeholder="What's the plugin's name?"></div>
157
  </li>
158
  </ul>
159
  </div>
160
  <div class="loginpress-popup-footer">
161
+ <label class="loginpress-anonymous"><input type="checkbox" /><?php _e( 'Anonymous feedback', 'loginpress' ); ?></label>
162
  <div class="action-btns">
163
+ <span class="loginpress-spinner"><img src="<?php echo admin_url( '/images/spinner.gif' ); ?>" alt=""></span>
164
  <input type="submit" class="button button-secondary button-deactivate loginpress-popup-allow-deactivate" value="Submit &amp; Deactivate" disabled="disabled">
165
+ <a href="#" class="button button-primary loginpress-popup-button-close"><?php _e( 'Cancel', 'loginpress' ); ?></a>
166
 
167
  </div>
168
  </div>
225
  action : 'loginpress_deactivate',
226
  reason : _reason,
227
  reason_detail : _reason_details,
228
+ },
229
+ beforeSend: function(){
230
+ $(".loginpress-spinner").show();
231
+ $(".loginpress-popup-allow-deactivate").attr("disabled", "disabled");
232
  }
233
  })
234
  .done(function() {
235
+ $(".loginpress-spinner").hide();
236
+ $(".loginpress-popup-allow-deactivate").removeAttr("disabled");
237
  window.location.href = $("tr[data-slug='"+ pluginSlug +"'] .deactivate a").attr('href');
238
  });
239
 
languages/loginpress-ar_AR.mo CHANGED
Binary file
languages/loginpress-ar_AR.po CHANGED
@@ -1,525 +1,598 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
- "POT-Creation-Date: 2017-02-13 12:11+0500\n"
5
- "PO-Revision-Date: 2017-02-13 12:11+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ar\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 1.8.11\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__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
  "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
19
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
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 on 20+ Innovative styles"
53
  msgstr ""
54
 
55
- #: classes/loginpress-settings-api.php:544
56
- msgid "Plus lots more!"
57
- msgstr ""
58
-
59
- #: classes/loginpress-settings-api.php:547
60
  msgid "See What's In The Pro Version"
61
  msgstr ""
62
 
63
- #: classes/loginpress-settings-api.php:553
64
  msgid "Plugin Support"
65
  msgstr ""
66
 
67
- #: classes/loginpress-settings-api.php:556
68
  msgid "Got a Question, Idea, Problem or Praise?"
69
  msgstr ""
70
 
71
- #: classes/loginpress-settings-api.php:558
72
  msgid "Support Request"
73
  msgstr ""
74
 
75
- #: classes/loginpress-setup.php:52
76
  msgid "Default Settings Restored"
77
  msgstr ""
78
 
79
- #: classes/loginpress-setup.php:59 classes/loginpress-setup.php:67
80
  msgid "Settings"
81
  msgstr ""
82
 
83
- #: classes/loginpress-setup.php:68
84
- msgid ""
85
- "Following are the plugin settings for LoginPress Other than that everything "
86
- "is customizeable through WordPress Customizer."
87
  msgstr ""
88
 
89
- #: classes/loginpress-setup.php:74
90
  msgid "Try Premium Version"
91
  msgstr ""
92
 
93
- #: classes/loginpress-setup.php:93
94
  msgid "Reset Default Settings"
95
  msgstr ""
96
 
97
- #: classes/loginpress-setup.php:94
98
  msgid "Remove my custom settings."
99
  msgstr ""
100
 
101
- #: custom.php:89 loginpress.php:148 loginpress.php:150
 
 
 
 
 
 
 
 
 
 
 
102
  msgid "LoginPress"
103
  msgstr ""
104
 
105
- #: custom.php:90
106
  msgid "Customize Your WordPress Login Page with LoginPress :)"
107
  msgstr ""
108
 
109
- #: custom.php:100
110
  msgid "Themes"
111
  msgstr ""
112
 
113
- #: custom.php:101
114
  msgid "Choose Theme"
115
  msgstr ""
116
 
117
- #: custom.php:122 custom.php:164
118
  msgid "Company"
119
  msgstr ""
120
 
121
- #: custom.php:128 custom.php:194
122
  msgid "Persona"
123
  msgstr ""
124
 
125
- #: custom.php:134 custom.php:140
126
  msgid "Corporate"
127
  msgstr ""
128
 
129
- #: custom.php:146
130
  msgid "Startup"
131
  msgstr ""
132
 
133
- #: custom.php:152
134
  msgid "Wedding"
135
  msgstr ""
136
 
137
- #: custom.php:158
138
  msgid "Wedding #2"
139
  msgstr ""
140
 
141
- #: custom.php:170
142
  msgid "Bikers"
143
  msgstr ""
144
 
145
- #: custom.php:176
146
  msgid "Fitness"
147
  msgstr ""
148
 
149
- #: custom.php:182
150
  msgid "Shopping"
151
  msgstr ""
152
 
153
- #: custom.php:188
154
  msgid "Writers"
155
  msgstr ""
156
 
157
- #: custom.php:200
158
  msgid "Geek"
159
  msgstr ""
160
 
161
- #: custom.php:206
162
  msgid "Innovation"
163
  msgstr ""
164
 
165
- #: custom.php:212
166
  msgid "Photographers"
167
  msgstr ""
168
 
169
- #: custom.php:238
170
  msgid "Logo"
171
  msgstr ""
172
 
173
- #: custom.php:239
174
  msgid "Customize Your Logo Section"
175
  msgstr ""
176
 
177
- #: custom.php:251
178
  msgid "Logo Image:"
179
  msgstr ""
180
 
181
- #: custom.php:260
182
  msgid "Logo Width:"
183
  msgstr ""
184
 
185
- #: custom.php:261
186
  msgid "Logo Height:"
187
  msgstr ""
188
 
189
- #: custom.php:262
190
  msgid "Padding Bottom:"
191
  msgstr ""
192
 
193
- #: custom.php:263
194
  msgid "Logo URL:"
195
  msgstr ""
196
 
197
- #: custom.php:264
198
  msgid "Logo Hover Title:"
199
  msgstr ""
200
 
201
- #: custom.php:291
202
  msgid "Background"
203
  msgstr "الخلفية"
204
 
205
- #: custom.php:306
206
  msgid "Display Background Image?"
207
  msgstr ""
208
 
209
- #: custom.php:320
210
  msgid "Background Color:"
211
  msgstr ""
212
 
213
- #: custom.php:334
214
  msgid "Background Image:"
215
  msgstr ""
216
 
217
- #: custom.php:349
218
  msgid "Background Repeat:"
219
  msgstr "تكرار صورة الخلفية:"
220
 
221
- #: custom.php:372
222
  msgid "Select Position:"
223
  msgstr ""
224
 
225
- #: custom.php:397
226
  msgid "Background Image Size: "
227
  msgstr ""
228
 
229
- #: custom.php:415
230
  msgid "Customize Login Form"
231
  msgstr ""
232
 
233
- #: custom.php:428
234
  msgid "Form Background Image"
235
  msgstr "صورة الخلفية"
236
 
237
- #: custom.php:437
238
  msgid "Form Width:"
239
  msgstr "تشكيل العرض:"
240
 
241
- #: custom.php:438
242
  msgid "Form Minimum Height:"
243
  msgstr ""
244
 
245
- #: custom.php:439
246
  msgid "Form Padding:"
247
  msgstr "الحشو شكل:"
248
 
249
- #: custom.php:440
250
  msgid "Border (Example: 2px dotted black):"
251
  msgstr ""
252
 
253
- #: custom.php:441
254
  msgid "Input Text Field Width:"
255
  msgstr ""
256
 
257
- #: custom.php:442
258
  msgid "Input Text Field Margin:"
259
  msgstr ""
260
 
261
- #: custom.php:468
262
  msgid "Form Background Color:"
263
  msgstr ""
264
 
265
- #: custom.php:469
266
  msgid "Input Field Background Color:"
267
  msgstr ""
268
 
269
- #: custom.php:470
270
  msgid "Input Field Text Color:"
271
  msgstr ""
272
 
273
- #: custom.php:471
274
  msgid "Label Color:"
275
  msgstr ""
276
 
277
- #: custom.php:504
278
  msgid "Customize Forget Form"
279
  msgstr "تخصيص نسيت نموذج"
280
 
281
- #: custom.php:521
282
  msgid "Forget Form Background Image"
283
  msgstr "ننسى من صورة الخلفية"
284
 
285
- #: custom.php:535
286
  msgid "Forget Form Background Color"
287
  msgstr "ننسى نموذج لون الخلفية"
288
 
289
- #: custom.php:545
290
  msgid "Button Beauty"
291
  msgstr "الجمال زر"
292
 
293
- #: custom.php:554
294
  msgid "Button Color:"
295
  msgstr ""
296
 
297
- #: custom.php:555
298
  msgid "Button Border Color:"
299
  msgstr ""
300
 
301
- #: custom.php:556
302
  msgid "Button Color (Hover):"
303
  msgstr ""
304
 
305
- #: custom.php:557
306
  msgid "Button Border (Hover):"
307
  msgstr ""
308
 
309
- #: custom.php:558
310
  msgid "Button Box Shadow:"
311
  msgstr ""
312
 
313
- #: custom.php:559
314
  msgid "Button Text Color:"
315
  msgstr ""
316
 
317
- #: custom.php:586
318
  msgid "Error Messages"
319
  msgstr "رسائل الخطأ"
320
 
321
- #: custom.php:595
322
  msgid "Incorrect Username Message:"
323
  msgstr "اسم المستخدم غير صحيح نص الرسالة:"
324
 
325
- #: custom.php:596
326
  msgid "Incorrect Password Message:"
327
  msgstr "كلمة المرور غير صحيحة رسالة:"
328
 
329
- #: custom.php:597
330
  msgid "Empty Username Message:"
331
  msgstr "فارغة اسم المستخدم نص الرسالة:"
332
 
333
- #: custom.php:598
334
  msgid "Empty Password Message:"
335
  msgstr "فارغة كلمة رسالة:"
336
 
337
- #: custom.php:599
338
  msgid "Invalid Email Message:"
339
  msgstr "التسويق المتوسطة: حزب الشيوعى الصينى، لافتة، والبريد الإلكتروني"
340
 
341
- #: custom.php:600
342
  msgid "Empty Email Message:"
343
  msgstr "أرسل رسالة فارغة:"
344
 
345
- #: custom.php:601
346
  msgid "Forget Password Message:"
347
  msgstr "نسيت كلمة المرور الرسالة:"
348
 
349
- #: custom.php:628
350
  msgid "Welcome Messages"
351
  msgstr "أهلا وسهلا بك الرسائل"
352
 
353
- #: custom.php:637
354
  msgid "Welcome Message on Lost Password:"
355
  msgstr "رسالة ترحيب على فقدت كلمة المرور:"
356
 
357
- #: custom.php:638
358
  msgid "Welcome Message on Front Page:"
359
  msgstr "أهلا وسهلا بك رسالة على صفحتها:"
360
 
361
- #: custom.php:639
362
  msgid "Welcome Message on Registration:"
363
  msgstr "رسالة ترحيب تسجيل:"
364
 
365
- #: custom.php:640
366
  msgid "Logout Message:"
367
  msgstr "رسالة تسجيل الخروج:"
368
 
369
- #: custom.php:641
370
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
371
  msgstr ""
372
 
373
- #: custom.php:672
374
  msgid "Message Field Background Color:"
375
  msgstr "حقل رسالة لون الخلفية:"
376
 
377
- #: custom.php:856
378
  msgid "Form Footer"
379
  msgstr ""
380
 
381
- #: custom.php:870
382
  msgid "Lost Password Text"
383
  msgstr "فقدت كلمة المرور Text"
384
 
385
- #: custom.php:884
386
  msgid "Footer Text Display:"
387
  msgstr "تذييل نص العرض:"
388
 
389
- #: custom.php:924
390
  msgid "Footer Text Color:"
391
  msgstr "لون نص هامش الصفحة"
392
 
393
- #: custom.php:938
394
  msgid "Footer Text Hover Color:"
395
  msgstr "تذييل النص تحوم اللون:"
396
 
397
- #: custom.php:952
398
  msgid "Text Font Size:"
399
  msgstr "نص حجم الخط:"
400
 
401
- #: custom.php:966 custom.php:1079
402
  msgid "Footer Background Color:"
403
  msgstr "لون خلفية تذييل الصفحة"
404
 
405
- #: custom.php:993
406
  msgid "\"Back to\" Text Display:"
407
  msgstr ""
408
 
409
- #: custom.php:1013
410
  msgid "\"Back to\" Text Decoration:"
411
  msgstr ""
412
 
413
- #: custom.php:1037
414
  msgid "\"Back to\" Text Color:"
415
  msgstr ""
416
 
417
- #: custom.php:1051
418
  msgid "\"Back to\" Text Hover Color:"
419
  msgstr ""
420
 
421
- #: custom.php:1065
422
  msgid "\"Back to\" Text Font Size:"
423
  msgstr ""
424
 
425
- #: custom.php:1093
 
 
 
 
 
426
  msgid "Copyright Note:"
427
  msgstr ""
428
 
429
- #: custom.php:1106
430
  msgid "Custom CSS"
431
  msgstr "CSS مخصصة"
432
 
433
- #: custom.php:1119
434
  msgid "Customize CSS"
435
  msgstr "تخصيص CSS"
436
 
437
- #: custom.php:1132
438
  msgid "Custom JS"
439
  msgstr "مخصص js"
440
 
441
- #: custom.php:1145
442
  msgid "Customize JS"
443
  msgstr "تخصيص JS"
444
 
445
- #: custom.php:1259
446
  msgid "Invalid Username"
447
  msgstr ""
448
 
449
- #: custom.php:1261
450
  msgid "Invalid Password"
451
  msgstr ""
452
 
453
- #: custom.php:1263
454
  msgid "Empty Username"
455
  msgstr ""
456
 
457
- #: custom.php:1265
458
  msgid "Empty Password"
459
  msgstr ""
460
 
461
- #: custom.php:1267
462
  msgid "The email address is incorrect."
463
  msgstr ""
464
 
465
- #: custom.php:1269
466
  msgid "The email address is empty."
467
  msgstr ""
468
 
469
- #: custom.php:1271
470
  msgid "Invalid Username or Email."
471
  msgstr ""
472
 
473
- #: include/class-remote-notification-client.php:126
474
- #: include/class-remote-notification-client.php:137
475
  msgid "Cheatin&#8217; huh?"
476
  msgstr ""
477
 
478
- #: include/class-remote-notification-client.php:502
479
  msgid "Dismiss notification"
480
  msgstr ""
481
 
482
- #: include/class-remote-notification-client.php:701
483
  #, php-format
484
  msgid "The server response was invalid (code %s)"
485
  msgstr ""
486
 
487
- #: include/class-remote-notification-client.php:707
488
  msgid "The server response is empty"
489
  msgstr ""
490
 
491
- #: include/class-remote-notification-client.php:713
492
  msgid "Cannot decode the response content"
493
  msgstr ""
494
 
495
- #: loginpress.php:152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
  msgid "Customizer"
497
  msgstr ""
498
 
499
- #: loginpress.php:176
500
  msgid "Vote!"
501
  msgstr ""
502
 
503
- #. Plugin Name of the plugin/theme
504
- msgid "LoginPress - Customizing the WordPress Login"
505
  msgstr ""
506
 
507
- #. Plugin URI of the plugin/theme
508
- msgid "http://www.WPBrigade.com/wordpress/plugins/loginpress/"
 
 
509
  msgstr ""
510
 
511
- #. Description of the plugin/theme
512
- msgid ""
513
- "LoginPress is the best Login Page Customizer in WordPress which allows you "
514
- "to completely change the layout of login, register and forgot password forms."
515
  msgstr ""
516
 
517
- #. Author of the plugin/theme
518
- msgid "WPBrigade"
519
  msgstr ""
520
 
521
- #. Author URI of the plugin/theme
522
- msgid "http://www.WPBrigade.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
  msgstr ""
524
 
525
  #~ msgid "Login Logo"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
+ "POT-Creation-Date: 2017-02-25 12:58+0500\n"
5
+ "PO-Revision-Date: 2017-02-25 12:58+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ar\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 1.8.12\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__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
17
+ "_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
  "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
19
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
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 "فقدت كلمة المرور Text"
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 "CSS مخصصة"
443
 
444
+ #: ../custom.php:1119
445
  msgid "Customize CSS"
446
  msgstr "تخصيص CSS"
447
 
448
+ #: ../custom.php:1132
449
  msgid "Custom JS"
450
  msgstr "مخصص js"
451
 
452
+ #: ../custom.php:1145
453
  msgid "Customize JS"
454
  msgstr "تخصيص JS"
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
485
+ #: ../include/class-remote-notification-client.php:137
486
  msgid "Cheatin&#8217; huh?"
487
  msgstr ""
488
 
489
+ #: ../include/class-remote-notification-client.php:502
490
  msgid "Dismiss notification"
491
  msgstr ""
492
 
493
+ #: ../include/class-remote-notification-client.php:701
494
  #, php-format
495
  msgid "The server response was invalid (code %s)"
496
  msgstr ""
497
 
498
+ #: ../include/class-remote-notification-client.php:707
499
  msgid "The server response is empty"
500
  msgstr ""
501
 
502
+ #: ../include/class-remote-notification-client.php:713
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 ""
597
 
598
  #~ msgid "Login Logo"
languages/loginpress-es_ES.mo CHANGED
Binary file
languages/loginpress-es_ES.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
- "POT-Creation-Date: 2017-02-13 12:10+0500\n"
5
- "PO-Revision-Date: 2017-02-13 12:10+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\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 1.8.11\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__;"
@@ -48,26 +48,22 @@ msgid "20+ Custom Login Themes"
48
  msgstr ""
49
 
50
  #: classes/loginpress-settings-api.php:541
51
- msgid "Full customizatin on 20+ Innovative styles"
52
  msgstr ""
53
 
54
- #: classes/loginpress-settings-api.php:544
55
- msgid "Plus lots more!"
56
- msgstr ""
57
-
58
- #: classes/loginpress-settings-api.php:547
59
  msgid "See What's In The Pro Version"
60
  msgstr ""
61
 
62
- #: classes/loginpress-settings-api.php:553
63
  msgid "Plugin Support"
64
  msgstr ""
65
 
66
- #: classes/loginpress-settings-api.php:556
67
  msgid "Got a Question, Idea, Problem or Praise?"
68
  msgstr ""
69
 
70
- #: classes/loginpress-settings-api.php:558
71
  msgid "Support Request"
72
  msgstr ""
73
 
@@ -80,9 +76,8 @@ msgid "Settings"
80
  msgstr ""
81
 
82
  #: classes/loginpress-setup.php:68
83
- msgid ""
84
- "Following are the plugin settings for LoginPress Other than that everything "
85
- "is customizeable through WordPress Customizer."
86
  msgstr ""
87
 
88
  #: classes/loginpress-setup.php:74
@@ -97,7 +92,18 @@ msgstr ""
97
  msgid "Remove my custom settings."
98
  msgstr ""
99
 
100
- #: custom.php:89 loginpress.php:148 loginpress.php:150
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "LoginPress"
102
  msgstr ""
103
 
@@ -421,6 +427,11 @@ msgstr ""
421
  msgid "\"Back to\" Text Font Size:"
422
  msgstr ""
423
 
 
 
 
 
 
424
  #: custom.php:1093
425
  msgid "Copyright Note:"
426
  msgstr ""
@@ -491,14 +502,98 @@ msgstr ""
491
  msgid "Cannot decode the response content"
492
  msgstr ""
493
 
494
- #: loginpress.php:152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
495
  msgid "Customizer"
496
  msgstr ""
497
 
498
- #: loginpress.php:176
499
  msgid "Vote!"
500
  msgstr ""
501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  #~ msgid "Login Logo"
503
  #~ msgstr "Logo de inicio de sesión"
504
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
+ "POT-Creation-Date: 2017-02-25 12:58+0500\n"
5
+ "PO-Revision-Date: 2017-02-25 12:58+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\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 1.8.12\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__;"
48
  msgstr ""
49
 
50
  #: classes/loginpress-settings-api.php:541
51
+ msgid "Full customizatin with Custom CSS & JS"
52
  msgstr ""
53
 
54
+ #: classes/loginpress-settings-api.php:546
 
 
 
 
55
  msgid "See What's In The Pro Version"
56
  msgstr ""
57
 
58
+ #: classes/loginpress-settings-api.php:555
59
  msgid "Plugin Support"
60
  msgstr ""
61
 
62
+ #: classes/loginpress-settings-api.php:558
63
  msgid "Got a Question, Idea, Problem or Praise?"
64
  msgstr ""
65
 
66
+ #: classes/loginpress-settings-api.php:560
67
  msgid "Support Request"
68
  msgstr ""
69
 
76
  msgstr ""
77
 
78
  #: classes/loginpress-setup.php:68
79
+ #, php-format
80
+ msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
 
81
  msgstr ""
82
 
83
  #: classes/loginpress-setup.php:74
92
  msgid "Remove my custom settings."
93
  msgstr ""
94
 
95
+ #: classes/loginpress-setup.php:99
96
+ msgid "Allow Usage Tracking?"
97
+ msgstr ""
98
+
99
+ #: classes/loginpress-setup.php:100
100
+ msgid ""
101
+ "Allow LoginPress to <a href=\"https://wpbrigade.com/wordpress/plugins/non-"
102
+ "sensitive-diagnostic-tracking/\" target=\"_blank\">non-sensitive diagnostic "
103
+ "tracking</a> and help us make the plugin even better."
104
+ msgstr ""
105
+
106
+ #: custom.php:89 loginpress.php:154 loginpress.php:156
107
  msgid "LoginPress"
108
  msgstr ""
109
 
427
  msgid "\"Back to\" Text Font Size:"
428
  msgstr ""
429
 
430
+ #: custom.php:1086
431
+ #, php-format
432
+ msgid "© 2017 %1$s, All Rights Reserved."
433
+ msgstr ""
434
+
435
  #: custom.php:1093
436
  msgid "Copyright Note:"
437
  msgstr ""
502
  msgid "Cannot decode the response content"
503
  msgstr ""
504
 
505
+ #: include/deactivate_modal.php:88
506
+ msgid "Quick feedback"
507
+ msgstr ""
508
+
509
+ #: include/deactivate_modal.php:91
510
+ msgid "If you have a moment, please let us know why you are deactivating:"
511
+ msgstr ""
512
+
513
+ #: include/deactivate_modal.php:98
514
+ msgid "I only needed the plugin for a short period"
515
+ msgstr ""
516
+
517
+ #: include/deactivate_modal.php:107
518
+ msgid "I found a better plugin"
519
+ msgstr ""
520
+
521
+ #: include/deactivate_modal.php:117
522
+ msgid "The plugin broke my site"
523
+ msgstr ""
524
+
525
+ #: include/deactivate_modal.php:126
526
+ msgid "The plugin suddenly stopped working"
527
+ msgstr ""
528
+
529
+ #: include/deactivate_modal.php:135
530
+ msgid "I no longer need the plugin"
531
+ msgstr ""
532
+
533
+ #: include/deactivate_modal.php:144
534
+ msgid "It's a temporary deactivation. I'm just debugging an issue."
535
+ msgstr ""
536
+
537
+ #: include/deactivate_modal.php:153
538
+ msgid "Other"
539
+ msgstr ""
540
+
541
+ #: include/deactivate_modal.php:156
542
+ msgid "Kindly tell us the reason so we can improve."
543
+ msgstr ""
544
+
545
+ #: include/deactivate_modal.php:161
546
+ msgid "Anonymous feedback"
547
+ msgstr ""
548
+
549
+ #: include/deactivate_modal.php:165
550
+ msgid "Cancel"
551
+ msgstr ""
552
+
553
+ #: loginpress.php:158
554
  msgid "Customizer"
555
  msgstr ""
556
 
557
+ #: loginpress.php:182
558
  msgid "Vote!"
559
  msgstr ""
560
 
561
+ #: loginpress.php:411
562
+ msgid "Leave A Review?"
563
+ msgstr ""
564
+
565
+ #: loginpress.php:412
566
+ msgid ""
567
+ "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
568
+ "review on WordPress.org?"
569
+ msgstr ""
570
+
571
+ #: loginpress.php:414
572
+ msgid "Sure! I'd love to!"
573
+ msgstr ""
574
+
575
+ #: loginpress.php:415
576
+ msgid "I've already left a review"
577
+ msgstr ""
578
+
579
+ #: loginpress.php:416
580
+ msgid "Maybe Later"
581
+ msgstr ""
582
+
583
+ #: loginpress.php:417
584
+ msgid "Never show again"
585
+ msgstr ""
586
+
587
+ #: loginpress.php:439
588
+ #, php-format
589
+ msgid "%1$s Settings %2$s | %3$s Customize %4$s"
590
+ msgstr ""
591
+
592
+ #: loginpress.php:443
593
+ #, php-format
594
+ msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
595
+ msgstr ""
596
+
597
  #~ msgid "Login Logo"
598
  #~ msgstr "Logo de inicio de sesión"
599
 
languages/loginpress-fr_FR.mo CHANGED
Binary file
languages/loginpress-fr_FR.po CHANGED
@@ -1,20 +1,20 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
- "POT-Creation-Date: 2017-02-13 12:10+0500\n"
5
- "PO-Revision-Date: 2017-02-13 12:10+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 1.8.11\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__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
@@ -48,26 +48,22 @@ msgid "20+ Custom Login Themes"
48
  msgstr ""
49
 
50
  #: classes/loginpress-settings-api.php:541
51
- msgid "Full customizatin on 20+ Innovative styles"
52
  msgstr ""
53
 
54
- #: classes/loginpress-settings-api.php:544
55
- msgid "Plus lots more!"
56
- msgstr ""
57
-
58
- #: classes/loginpress-settings-api.php:547
59
  msgid "See What's In The Pro Version"
60
  msgstr ""
61
 
62
- #: classes/loginpress-settings-api.php:553
63
  msgid "Plugin Support"
64
  msgstr ""
65
 
66
- #: classes/loginpress-settings-api.php:556
67
  msgid "Got a Question, Idea, Problem or Praise?"
68
  msgstr ""
69
 
70
- #: classes/loginpress-settings-api.php:558
71
  msgid "Support Request"
72
  msgstr ""
73
 
@@ -80,9 +76,8 @@ msgid "Settings"
80
  msgstr ""
81
 
82
  #: classes/loginpress-setup.php:68
83
- msgid ""
84
- "Following are the plugin settings for LoginPress Other than that everything "
85
- "is customizeable through WordPress Customizer."
86
  msgstr ""
87
 
88
  #: classes/loginpress-setup.php:74
@@ -97,7 +92,18 @@ msgstr ""
97
  msgid "Remove my custom settings."
98
  msgstr ""
99
 
100
- #: custom.php:89 loginpress.php:148 loginpress.php:150
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "LoginPress"
102
  msgstr ""
103
 
@@ -421,6 +427,11 @@ msgstr ""
421
  msgid "\"Back to\" Text Font Size:"
422
  msgstr ""
423
 
 
 
 
 
 
424
  #: custom.php:1093
425
  msgid "Copyright Note:"
426
  msgstr ""
@@ -491,34 +502,96 @@ msgstr ""
491
  msgid "Cannot decode the response content"
492
  msgstr ""
493
 
494
- #: loginpress.php:152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
495
  msgid "Customizer"
496
  msgstr ""
497
 
498
- #: loginpress.php:176
499
  msgid "Vote!"
500
  msgstr ""
501
 
502
- #. Plugin Name of the plugin/theme
503
- msgid "LoginPress - Customizing the WordPress Login"
 
 
 
 
 
 
504
  msgstr ""
505
 
506
- #. Plugin URI of the plugin/theme
507
- msgid "http://www.WPBrigade.com/wordpress/plugins/loginpress/"
508
  msgstr ""
509
 
510
- #. Description of the plugin/theme
511
- msgid ""
512
- "LoginPress is the best Login Page Customizer in WordPress which allows you "
513
- "to completely change the layout of login, register and forgot password forms."
514
  msgstr ""
515
 
516
- #. Author of the plugin/theme
517
- msgid "WPBrigade"
518
  msgstr ""
519
 
520
- #. Author URI of the plugin/theme
521
- msgid "http://www.WPBrigade.com/"
 
 
 
 
 
 
 
 
 
 
522
  msgstr ""
523
 
524
  #~ msgid "Login Logo"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
+ "POT-Creation-Date: 2017-02-25 12:58+0500\n"
5
+ "PO-Revision-Date: 2017-02-25 12:58+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 1.8.12\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__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
17
+ "_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
48
  msgstr ""
49
 
50
  #: classes/loginpress-settings-api.php:541
51
+ msgid "Full customizatin with Custom CSS & JS"
52
  msgstr ""
53
 
54
+ #: classes/loginpress-settings-api.php:546
 
 
 
 
55
  msgid "See What's In The Pro Version"
56
  msgstr ""
57
 
58
+ #: classes/loginpress-settings-api.php:555
59
  msgid "Plugin Support"
60
  msgstr ""
61
 
62
+ #: classes/loginpress-settings-api.php:558
63
  msgid "Got a Question, Idea, Problem or Praise?"
64
  msgstr ""
65
 
66
+ #: classes/loginpress-settings-api.php:560
67
  msgid "Support Request"
68
  msgstr ""
69
 
76
  msgstr ""
77
 
78
  #: classes/loginpress-setup.php:68
79
+ #, php-format
80
+ msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
 
81
  msgstr ""
82
 
83
  #: classes/loginpress-setup.php:74
92
  msgid "Remove my custom settings."
93
  msgstr ""
94
 
95
+ #: classes/loginpress-setup.php:99
96
+ msgid "Allow Usage Tracking?"
97
+ msgstr ""
98
+
99
+ #: classes/loginpress-setup.php:100
100
+ msgid ""
101
+ "Allow LoginPress to <a href=\"https://wpbrigade.com/wordpress/plugins/non-"
102
+ "sensitive-diagnostic-tracking/\" target=\"_blank\">non-sensitive diagnostic "
103
+ "tracking</a> and help us make the plugin even better."
104
+ msgstr ""
105
+
106
+ #: custom.php:89 loginpress.php:154 loginpress.php:156
107
  msgid "LoginPress"
108
  msgstr ""
109
 
427
  msgid "\"Back to\" Text Font Size:"
428
  msgstr ""
429
 
430
+ #: custom.php:1086
431
+ #, php-format
432
+ msgid "© 2017 %1$s, All Rights Reserved."
433
+ msgstr ""
434
+
435
  #: custom.php:1093
436
  msgid "Copyright Note:"
437
  msgstr ""
502
  msgid "Cannot decode the response content"
503
  msgstr ""
504
 
505
+ #: include/deactivate_modal.php:88
506
+ msgid "Quick feedback"
507
+ msgstr ""
508
+
509
+ #: include/deactivate_modal.php:91
510
+ msgid "If you have a moment, please let us know why you are deactivating:"
511
+ msgstr ""
512
+
513
+ #: include/deactivate_modal.php:98
514
+ msgid "I only needed the plugin for a short period"
515
+ msgstr ""
516
+
517
+ #: include/deactivate_modal.php:107
518
+ msgid "I found a better plugin"
519
+ msgstr ""
520
+
521
+ #: include/deactivate_modal.php:117
522
+ msgid "The plugin broke my site"
523
+ msgstr ""
524
+
525
+ #: include/deactivate_modal.php:126
526
+ msgid "The plugin suddenly stopped working"
527
+ msgstr ""
528
+
529
+ #: include/deactivate_modal.php:135
530
+ msgid "I no longer need the plugin"
531
+ msgstr ""
532
+
533
+ #: include/deactivate_modal.php:144
534
+ msgid "It's a temporary deactivation. I'm just debugging an issue."
535
+ msgstr ""
536
+
537
+ #: include/deactivate_modal.php:153
538
+ msgid "Other"
539
+ msgstr ""
540
+
541
+ #: include/deactivate_modal.php:156
542
+ msgid "Kindly tell us the reason so we can improve."
543
+ msgstr ""
544
+
545
+ #: include/deactivate_modal.php:161
546
+ msgid "Anonymous feedback"
547
+ msgstr ""
548
+
549
+ #: include/deactivate_modal.php:165
550
+ msgid "Cancel"
551
+ msgstr ""
552
+
553
+ #: loginpress.php:158
554
  msgid "Customizer"
555
  msgstr ""
556
 
557
+ #: loginpress.php:182
558
  msgid "Vote!"
559
  msgstr ""
560
 
561
+ #: loginpress.php:411
562
+ msgid "Leave A Review?"
563
+ msgstr ""
564
+
565
+ #: loginpress.php:412
566
+ msgid ""
567
+ "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
568
+ "review on WordPress.org?"
569
  msgstr ""
570
 
571
+ #: loginpress.php:414
572
+ msgid "Sure! I'd love to!"
573
  msgstr ""
574
 
575
+ #: loginpress.php:415
576
+ msgid "I've already left a review"
 
 
577
  msgstr ""
578
 
579
+ #: loginpress.php:416
580
+ msgid "Maybe Later"
581
  msgstr ""
582
 
583
+ #: loginpress.php:417
584
+ msgid "Never show again"
585
+ msgstr ""
586
+
587
+ #: loginpress.php:439
588
+ #, php-format
589
+ msgid "%1$s Settings %2$s | %3$s Customize %4$s"
590
+ msgstr ""
591
+
592
+ #: loginpress.php:443
593
+ #, php-format
594
+ msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
595
  msgstr ""
596
 
597
  #~ msgid "Login Logo"
languages/loginpress-nl_DE.mo CHANGED
Binary file
languages/loginpress-nl_DE.po CHANGED
@@ -1,20 +1,20 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
- "POT-Creation-Date: 2017-02-13 12:10+0500\n"
5
- "PO-Revision-Date: 2017-02-13 12:10+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl\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 1.8.11\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__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
@@ -48,26 +48,22 @@ msgid "20+ Custom Login Themes"
48
  msgstr ""
49
 
50
  #: classes/loginpress-settings-api.php:541
51
- msgid "Full customizatin on 20+ Innovative styles"
52
  msgstr ""
53
 
54
- #: classes/loginpress-settings-api.php:544
55
- msgid "Plus lots more!"
56
- msgstr ""
57
-
58
- #: classes/loginpress-settings-api.php:547
59
  msgid "See What's In The Pro Version"
60
  msgstr ""
61
 
62
- #: classes/loginpress-settings-api.php:553
63
  msgid "Plugin Support"
64
  msgstr ""
65
 
66
- #: classes/loginpress-settings-api.php:556
67
  msgid "Got a Question, Idea, Problem or Praise?"
68
  msgstr ""
69
 
70
- #: classes/loginpress-settings-api.php:558
71
  msgid "Support Request"
72
  msgstr ""
73
 
@@ -80,9 +76,8 @@ msgid "Settings"
80
  msgstr ""
81
 
82
  #: classes/loginpress-setup.php:68
83
- msgid ""
84
- "Following are the plugin settings for LoginPress Other than that everything "
85
- "is customizeable through WordPress Customizer."
86
  msgstr ""
87
 
88
  #: classes/loginpress-setup.php:74
@@ -97,7 +92,18 @@ msgstr ""
97
  msgid "Remove my custom settings."
98
  msgstr ""
99
 
100
- #: custom.php:89 loginpress.php:148 loginpress.php:150
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "LoginPress"
102
  msgstr ""
103
 
@@ -421,6 +427,11 @@ msgstr ""
421
  msgid "\"Back to\" Text Font Size:"
422
  msgstr ""
423
 
 
 
 
 
 
424
  #: custom.php:1093
425
  msgid "Copyright Note:"
426
  msgstr ""
@@ -491,34 +502,96 @@ msgstr ""
491
  msgid "Cannot decode the response content"
492
  msgstr ""
493
 
494
- #: loginpress.php:152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
495
  msgid "Customizer"
496
  msgstr ""
497
 
498
- #: loginpress.php:176
499
  msgid "Vote!"
500
  msgstr ""
501
 
502
- #. Plugin Name of the plugin/theme
503
- msgid "LoginPress - Customizing the WordPress Login"
 
 
 
 
 
 
504
  msgstr ""
505
 
506
- #. Plugin URI of the plugin/theme
507
- msgid "http://www.WPBrigade.com/wordpress/plugins/loginpress/"
508
  msgstr ""
509
 
510
- #. Description of the plugin/theme
511
- msgid ""
512
- "LoginPress is the best Login Page Customizer in WordPress which allows you "
513
- "to completely change the layout of login, register and forgot password forms."
514
  msgstr ""
515
 
516
- #. Author of the plugin/theme
517
- msgid "WPBrigade"
518
  msgstr ""
519
 
520
- #. Author URI of the plugin/theme
521
- msgid "http://www.WPBrigade.com/"
 
 
 
 
 
 
 
 
 
 
522
  msgstr ""
523
 
524
  #~ msgid "Login Logo"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
+ "POT-Creation-Date: 2017-02-25 12:57+0500\n"
5
+ "PO-Revision-Date: 2017-02-25 12:57+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nl\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 1.8.12\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__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
17
+ "_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
48
  msgstr ""
49
 
50
  #: classes/loginpress-settings-api.php:541
51
+ msgid "Full customizatin with Custom CSS & JS"
52
  msgstr ""
53
 
54
+ #: classes/loginpress-settings-api.php:546
 
 
 
 
55
  msgid "See What's In The Pro Version"
56
  msgstr ""
57
 
58
+ #: classes/loginpress-settings-api.php:555
59
  msgid "Plugin Support"
60
  msgstr ""
61
 
62
+ #: classes/loginpress-settings-api.php:558
63
  msgid "Got a Question, Idea, Problem or Praise?"
64
  msgstr ""
65
 
66
+ #: classes/loginpress-settings-api.php:560
67
  msgid "Support Request"
68
  msgstr ""
69
 
76
  msgstr ""
77
 
78
  #: classes/loginpress-setup.php:68
79
+ #, php-format
80
+ msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
 
81
  msgstr ""
82
 
83
  #: classes/loginpress-setup.php:74
92
  msgid "Remove my custom settings."
93
  msgstr ""
94
 
95
+ #: classes/loginpress-setup.php:99
96
+ msgid "Allow Usage Tracking?"
97
+ msgstr ""
98
+
99
+ #: classes/loginpress-setup.php:100
100
+ msgid ""
101
+ "Allow LoginPress to <a href=\"https://wpbrigade.com/wordpress/plugins/non-"
102
+ "sensitive-diagnostic-tracking/\" target=\"_blank\">non-sensitive diagnostic "
103
+ "tracking</a> and help us make the plugin even better."
104
+ msgstr ""
105
+
106
+ #: custom.php:89 loginpress.php:154 loginpress.php:156
107
  msgid "LoginPress"
108
  msgstr ""
109
 
427
  msgid "\"Back to\" Text Font Size:"
428
  msgstr ""
429
 
430
+ #: custom.php:1086
431
+ #, php-format
432
+ msgid "© 2017 %1$s, All Rights Reserved."
433
+ msgstr ""
434
+
435
  #: custom.php:1093
436
  msgid "Copyright Note:"
437
  msgstr ""
502
  msgid "Cannot decode the response content"
503
  msgstr ""
504
 
505
+ #: include/deactivate_modal.php:88
506
+ msgid "Quick feedback"
507
+ msgstr ""
508
+
509
+ #: include/deactivate_modal.php:91
510
+ msgid "If you have a moment, please let us know why you are deactivating:"
511
+ msgstr ""
512
+
513
+ #: include/deactivate_modal.php:98
514
+ msgid "I only needed the plugin for a short period"
515
+ msgstr ""
516
+
517
+ #: include/deactivate_modal.php:107
518
+ msgid "I found a better plugin"
519
+ msgstr ""
520
+
521
+ #: include/deactivate_modal.php:117
522
+ msgid "The plugin broke my site"
523
+ msgstr ""
524
+
525
+ #: include/deactivate_modal.php:126
526
+ msgid "The plugin suddenly stopped working"
527
+ msgstr ""
528
+
529
+ #: include/deactivate_modal.php:135
530
+ msgid "I no longer need the plugin"
531
+ msgstr ""
532
+
533
+ #: include/deactivate_modal.php:144
534
+ msgid "It's a temporary deactivation. I'm just debugging an issue."
535
+ msgstr ""
536
+
537
+ #: include/deactivate_modal.php:153
538
+ msgid "Other"
539
+ msgstr ""
540
+
541
+ #: include/deactivate_modal.php:156
542
+ msgid "Kindly tell us the reason so we can improve."
543
+ msgstr ""
544
+
545
+ #: include/deactivate_modal.php:161
546
+ msgid "Anonymous feedback"
547
+ msgstr ""
548
+
549
+ #: include/deactivate_modal.php:165
550
+ msgid "Cancel"
551
+ msgstr ""
552
+
553
+ #: loginpress.php:158
554
  msgid "Customizer"
555
  msgstr ""
556
 
557
+ #: loginpress.php:182
558
  msgid "Vote!"
559
  msgstr ""
560
 
561
+ #: loginpress.php:411
562
+ msgid "Leave A Review?"
563
+ msgstr ""
564
+
565
+ #: loginpress.php:412
566
+ msgid ""
567
+ "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
568
+ "review on WordPress.org?"
569
  msgstr ""
570
 
571
+ #: loginpress.php:414
572
+ msgid "Sure! I'd love to!"
573
  msgstr ""
574
 
575
+ #: loginpress.php:415
576
+ msgid "I've already left a review"
 
 
577
  msgstr ""
578
 
579
+ #: loginpress.php:416
580
+ msgid "Maybe Later"
581
  msgstr ""
582
 
583
+ #: loginpress.php:417
584
+ msgid "Never show again"
585
+ msgstr ""
586
+
587
+ #: loginpress.php:439
588
+ #, php-format
589
+ msgid "%1$s Settings %2$s | %3$s Customize %4$s"
590
+ msgstr ""
591
+
592
+ #: loginpress.php:443
593
+ #, php-format
594
+ msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
595
  msgstr ""
596
 
597
  #~ msgid "Login Logo"
languages/loginpress.pot CHANGED
@@ -3,14 +3,14 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: LoginPress - Customizing the WordPress Login\n"
6
- "POT-Creation-Date: 2017-02-13 12:09+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.11\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: loginpress.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -49,26 +49,22 @@ msgid "20+ Custom Login Themes"
49
  msgstr ""
50
 
51
  #: classes/loginpress-settings-api.php:541
52
- msgid "Full customizatin on 20+ Innovative styles"
53
  msgstr ""
54
 
55
- #: classes/loginpress-settings-api.php:544
56
- msgid "Plus lots more!"
57
- msgstr ""
58
-
59
- #: classes/loginpress-settings-api.php:547
60
  msgid "See What's In The Pro Version"
61
  msgstr ""
62
 
63
- #: classes/loginpress-settings-api.php:553
64
  msgid "Plugin Support"
65
  msgstr ""
66
 
67
- #: classes/loginpress-settings-api.php:556
68
  msgid "Got a Question, Idea, Problem or Praise?"
69
  msgstr ""
70
 
71
- #: classes/loginpress-settings-api.php:558
72
  msgid "Support Request"
73
  msgstr ""
74
 
@@ -81,9 +77,8 @@ msgid "Settings"
81
  msgstr ""
82
 
83
  #: classes/loginpress-setup.php:68
84
- msgid ""
85
- "Following are the plugin settings for LoginPress Other than that everything "
86
- "is customizeable through WordPress Customizer."
87
  msgstr ""
88
 
89
  #: classes/loginpress-setup.php:74
@@ -98,7 +93,18 @@ msgstr ""
98
  msgid "Remove my custom settings."
99
  msgstr ""
100
 
101
- #: custom.php:89 loginpress.php:148 loginpress.php:150
 
 
 
 
 
 
 
 
 
 
 
102
  msgid "LoginPress"
103
  msgstr ""
104
 
@@ -422,6 +428,11 @@ msgstr ""
422
  msgid "\"Back to\" Text Font Size:"
423
  msgstr ""
424
 
 
 
 
 
 
425
  #: custom.php:1093
426
  msgid "Copyright Note:"
427
  msgstr ""
@@ -492,14 +503,98 @@ msgstr ""
492
  msgid "Cannot decode the response content"
493
  msgstr ""
494
 
495
- #: loginpress.php:152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
  msgid "Customizer"
497
  msgstr ""
498
 
499
- #: loginpress.php:176
500
  msgid "Vote!"
501
  msgstr ""
502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
503
  #. Plugin Name of the plugin/theme
504
  msgid "LoginPress - Customizing the WordPress Login"
505
  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: 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"
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
 
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
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
 
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 ""
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 ""
597
+
598
  #. Plugin Name of the plugin/theme
599
  msgid "LoginPress - Customizing the WordPress Login"
600
  msgstr ""
loginpress.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: http://www.WPBrigade.com/wordpress/plugins/loginpress/
5
  * Description: LoginPress is the best Login Page Customizer in WordPress which allows you to completely change the layout of login, register and forgot password forms.
6
- * Version: 1.0.10
7
  * Author: WPBrigade
8
  * Author URI: http://www.WPBrigade.com/
9
  * Requires at least: 4.0
@@ -24,7 +24,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
24
  /**
25
  * @var string
26
  */
27
- public $version = '1.0.10';
28
 
29
  /**
30
  * @var The single instance of the class
@@ -92,6 +92,8 @@ if ( ! class_exists( 'LoginPress' ) ) :
92
  add_filter( 'plugin_row_meta', array( $this, '_row_meta'), 10, 2 );
93
  add_action( 'admin_enqueue_scripts', array( $this, '_admin_scripts' ) );
94
  add_action( 'admin_footer', array( $this, 'add_deactive_modal' ) );
 
 
95
  add_action( 'wp_ajax_loginpress_deactivate', array( $this, '_deactivate' ) );
96
  }
97
 
@@ -195,6 +197,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
195
  if ( 'plugins.php' !== $pagenow ) {
196
  return;
197
  }
 
198
  include LOGINPRESS_DIR_PATH . 'include/deactivate_modal.php';
199
  }
200
 
@@ -255,6 +258,11 @@ if ( ! class_exists( 'LoginPress' ) ) :
255
 
256
  static function plugin_activation() {
257
 
 
 
 
 
 
258
  $email = get_option( 'admin_email' );
259
 
260
  $fields = array(
@@ -282,6 +290,11 @@ if ( ! class_exists( 'LoginPress' ) ) :
282
 
283
  static function plugin_uninstallation() {
284
 
 
 
 
 
 
285
  $email = get_option( 'admin_email' );
286
 
287
  $fields = array(
@@ -307,6 +320,134 @@ if ( ! class_exists( 'LoginPress' ) ) :
307
 
308
  }
309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  } // End Of Class.
311
  endif;
312
 
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: http://www.WPBrigade.com/wordpress/plugins/loginpress/
5
  * Description: LoginPress is the best Login Page Customizer in WordPress which allows you to completely change the layout of login, register and forgot password forms.
6
+ * Version: 1.0.11
7
  * Author: WPBrigade
8
  * Author URI: http://www.WPBrigade.com/
9
  * Requires at least: 4.0
24
  /**
25
  * @var string
26
  */
27
+ public $version = '1.0.11';
28
 
29
  /**
30
  * @var The single instance of the class
92
  add_filter( 'plugin_row_meta', array( $this, '_row_meta'), 10, 2 );
93
  add_action( 'admin_enqueue_scripts', array( $this, '_admin_scripts' ) );
94
  add_action( 'admin_footer', array( $this, 'add_deactive_modal' ) );
95
+ add_action( 'admin_init', array( $this, 'loginpress_review_notice' ) );
96
+ add_action( 'plugin_action_links', array( $this, 'loginpress_action_links' ), 10, 2 );
97
  add_action( 'wp_ajax_loginpress_deactivate', array( $this, '_deactivate' ) );
98
  }
99
 
197
  if ( 'plugins.php' !== $pagenow ) {
198
  return;
199
  }
200
+
201
  include LOGINPRESS_DIR_PATH . 'include/deactivate_modal.php';
202
  }
203
 
258
 
259
  static function plugin_activation() {
260
 
261
+ $_loginpress_Setting = get_option( 'loginpress_setting' );
262
+ if ( ! isset( $_loginpress_Setting['tracking_anonymous'] ) || 'off' == $_loginpress_Setting['tracking_anonymous'] ) {
263
+ return;
264
+ }
265
+
266
  $email = get_option( 'admin_email' );
267
 
268
  $fields = array(
290
 
291
  static function plugin_uninstallation() {
292
 
293
+ $_loginpress_Setting = get_option( 'loginpress_setting' );
294
+ if ( ! isset( $_loginpress_Setting['tracking_anonymous'] ) || 'off' == $_loginpress_Setting['tracking_anonymous'] ) {
295
+ return;
296
+ }
297
+
298
  $email = get_option( 'admin_email' );
299
 
300
  $fields = array(
320
 
321
  }
322
 
323
+ /**
324
+ * Ask users to review our plugin on wordpress.org
325
+ *
326
+ * @since 1.0.11
327
+ * @return boolean false
328
+ */
329
+ public function loginpress_review_notice() {
330
+
331
+ $this->loginpress_review_dismissal();
332
+ $this->loginpress_review_pending();
333
+
334
+ $activation_time = get_site_option( 'loginpress_active_time' );
335
+ $review_dismissal = get_site_option( 'loginpress_review_dismiss' );
336
+
337
+ if ( 'yes' == $review_dismissal ) return;
338
+
339
+ if ( ! $activation_time ) :
340
+
341
+ $activation_time = time();
342
+ add_site_option( 'loginpress_active_time', $activation_time );
343
+ endif;
344
+
345
+ // 1296000 = 15 Days in seconds.
346
+ if ( time() - $activation_time > 1296000 ) :
347
+ add_action( 'admin_notices' , array( $this, 'loginpress_review_notice_message' ) );
348
+ endif;
349
+
350
+ }
351
+
352
+ /**
353
+ * Check and Dismiss review message.
354
+ *
355
+ * @since 1.3
356
+ */
357
+ private function loginpress_review_dismissal() {
358
+
359
+ if ( ! is_admin() ||
360
+ ! current_user_can( 'manage_options' ) ||
361
+ ! isset( $_GET['_wpnonce'] ) ||
362
+ ! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_wpnonce'] ) ), 'loginpress-review-nonce' ) ||
363
+ ! isset( $_GET['loginpress_review_dismiss'] ) ) :
364
+
365
+ return;
366
+ endif;
367
+
368
+ add_site_option( 'loginpress_review_dismiss', 'yes' );
369
+ }
370
+
371
+ /**
372
+ * Set time to current so review notice will popup after 14 days
373
+ *
374
+ * @since 1.0.11
375
+ */
376
+ function loginpress_review_pending() {
377
+
378
+ if ( ! is_admin() ||
379
+ ! current_user_can( 'manage_options' ) ||
380
+ ! isset( $_GET['_wpnonce'] ) ||
381
+ ! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_wpnonce'] ) ), 'loginpress-review-nonce' ) ||
382
+ ! isset( $_GET['loginpress_review_later'] ) ) :
383
+
384
+ return;
385
+ endif;
386
+
387
+ // Reset Time to current time.
388
+ update_site_option( 'loginpress_active_time', time() );
389
+ }
390
+
391
+ /**
392
+ * Review notice message
393
+ *
394
+ * @since 1.0.11
395
+ */
396
+ public function loginpress_review_notice_message() {
397
+
398
+ $scheme = ( parse_url( $_SERVER['REQUEST_URI'], PHP_URL_QUERY ) ) ? '&' : '?';
399
+ $url = $_SERVER['REQUEST_URI'] . $scheme . 'loginpress_review_dismiss=yes';
400
+ $dismiss_url = wp_nonce_url( $url, 'loginpress-review-nonce' );
401
+
402
+ $_later_link = $_SERVER['REQUEST_URI'] . $scheme . 'loginpress_review_later=yes';
403
+ $later_url = wp_nonce_url( $_later_link, 'loginpress-review-nonce' );
404
+
405
+ ?>
406
+ <div class="loginpress-review-notice">
407
+ <div class="loginpress-review-thumbnail">
408
+ <img src="<?php echo plugins_url( 'img/thumbnail/gray-loginpress.png', __FILE__ ) ?>" alt="">
409
+ </div>
410
+ <div class="loginpress-review-text">
411
+ <h3><?php _e( 'Leave A Review?', 'loginpress' ) ?></h3>
412
+ <p><?php _e( 'We hope you\'ve enjoyed using LoginPress! Would you consider leaving us a review on WordPress.org?', 'loginpress' ) ?></p>
413
+ <ul class="loginpress-review-ul">
414
+ <li><a href="https://wordpress.org/support/view/plugin-reviews/loginpress?rate=5#postform" target="_blank"><span class="dashicons dashicons-external"></span><?php _e( 'Sure! I\'d love to!', 'loginpress' ) ?></a></li>
415
+ <li><a href="<?php echo $dismiss_url ?>"><span class="dashicons dashicons-smiley"></span><?php _e( 'I\'ve already left a review', 'loginpress' ) ?></a></li>
416
+ <li><a href="<?php echo $later_url ?>"><span class="dashicons dashicons-calendar-alt"></span><?php _e( 'Maybe Later', 'loginpress' ) ?></a></li>
417
+ <li><a href="<?php echo $dismiss_url ?>"><span class="dashicons dashicons-dismiss"></span><?php _e( 'Never show again', 'loginpress' ) ?></a></li></ul>
418
+ </div>
419
+ </div>
420
+ <?php
421
+ }
422
+
423
+ /**
424
+ * Add a link to the settings page to the plugins list
425
+ *
426
+ * @since 1.0.11
427
+ */
428
+ public function loginpress_action_links( $links, $file ) {
429
+
430
+ static $this_plugin;
431
+
432
+ if ( empty( $this_plugin ) ) {
433
+
434
+ $this_plugin = 'loginpress/loginpress.php';
435
+ }
436
+
437
+ if ( $file == $this_plugin ) {
438
+
439
+ $settings_link = sprintf( esc_html__( '%1$s Settings %2$s | %3$s Customize %4$s', 'loginpress' ), '<a href="' . admin_url( 'admin.php?page=loginpress-settings' ) . '">', '</a>', '<a href="' . admin_url( 'admin.php?page=loginpress' ) . '">', '</a>' );
440
+ array_unshift( $links, $settings_link );
441
+
442
+ if ( ! has_action( 'loginpress_pro_add_template' ) ) :
443
+ $pro_link = sprintf( esc_html__( '%1$s %3$s Upgrade Pro %4$s %2$s', 'loginpress' ), '<a href="https://wpbrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=plugin-action-link&utm_campaign=pro-upgrade" target="_blank">', '</a>', '<span class="loginpress-dasboard-pro-link">', '</span>' );
444
+ array_push( $links, $pro_link );
445
+ endif;
446
+ }
447
+
448
+ return $links;
449
+ }
450
+
451
  } // End Of Class.
452
  endif;
453
 
readme.txt CHANGED
@@ -1,11 +1,10 @@
1
  === Login ===
2
- Version: 1.0.10
3
  Requires at least: 4.0
4
  Tested up to: 4.7.3
5
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
6
  Author URI: https://wpbrigade.com
7
  Tags: login, wp-login, customizer, custom login, login logo, login customizer, custom login page, admin, customization, forgot password, login error, login page style, loginpress
8
- Stable tag: 1.0.10
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -28,6 +27,9 @@ Login Plugin would give you and your users a feeling that it is a custom login p
28
  Login plugin is built using The Customizer API which is getting popular for live-previewing any changes to the layouts of WordPress. So, with LoginPress you can preview your login page changes instantly. This login customizer plugin is easy enough & required no coding skills. Just have options for each element on the login form and make a new customized login page within seconds.
29
 
30
 
 
 
 
31
  **Features:**
32
 
33
  * Logo: Can change the login logo {image, width, height, padding, URL and Title}.
@@ -161,6 +163,14 @@ Please visit <a target="_blank" rel="friend" href="http://www.WPBrigade.com/word
161
 
162
  == Changelog ==
163
 
 
 
 
 
 
 
 
 
164
  = 1.0.10 - 2017-02-13 =
165
  * Bugfix: Default background issue fixed.
166
 
@@ -200,5 +210,5 @@ Please visit <a target="_blank" rel="friend" href="http://www.WPBrigade.com/word
200
 
201
  == Upgrade Notice ==
202
 
203
- = 1.0.10 =
204
  * bugfix release: Please upgrade immediately.
1
  === Login ===
 
2
  Requires at least: 4.0
3
  Tested up to: 4.7.3
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com
6
  Tags: login, wp-login, customizer, custom login, login logo, login customizer, custom login page, admin, customization, forgot password, login error, login page style, loginpress
7
+ Stable tag: 1.0.11
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
27
  Login plugin is built using The Customizer API which is getting popular for live-previewing any changes to the layouts of WordPress. So, with LoginPress you can preview your login page changes instantly. This login customizer plugin is easy enough & required no coding skills. Just have options for each element on the login form and make a new customized login page within seconds.
28
 
29
 
30
+ > Multilingual & Translatable
31
+ > WPML Compatible
32
+
33
  **Features:**
34
 
35
  * Logo: Can change the login logo {image, width, height, padding, URL and Title}.
163
 
164
  == Changelog ==
165
 
166
+ = 1.0.11 - 2017-02-25 =
167
+ * Bugfix: Form Padding on Lost Password and Register Pages.
168
+ * Enhancement: WPML & Multilingual Compatible. Fully transtable now.
169
+ * Enhancement: Few Text edits for better UX.
170
+ * Enhancement: Settings links added at plugins page.
171
+ * Enhancement: Usage Tracking option for improving plugin.
172
+
173
+
174
  = 1.0.10 - 2017-02-13 =
175
  * Bugfix: Default background issue fixed.
176
 
210
 
211
  == Upgrade Notice ==
212
 
213
+ = 1.0.11 =
214
  * bugfix release: Please upgrade immediately.