Custom Login Page Customizer | LoginPress - Version 1.1.25

Version Description

  • 2019-05-25 =
  • Bugfix: Compatible Network sites with WordPress 5.2.
  • Enhancement: Code refactoring.
Download this release

Release Info

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

Code changes from version 1.1.24 to 1.1.25

include/create-loginpress-page.php CHANGED
@@ -5,6 +5,7 @@
5
  * @package LoginPress
6
  * @author WPBrigade
7
  * @since 1.1.3
 
8
  */
9
 
10
  // Exit if accessed directly.
@@ -13,196 +14,199 @@ if ( ! defined( 'ABSPATH' ) ) {
13
  }
14
 
15
  /**
16
- *
17
  */
18
- class LoginPress_Page_Create {
19
 
20
- function __construct()
21
- {
22
- $this->_init();
23
- $this->_hooks();
24
- }
25
 
26
- function _hooks(){
27
- add_action( 'wpmu_new_blog', array( $this, 'loginpress_new_site_created' ), 10, 6 );
28
- }
29
 
30
- public function _init(){
31
- global $wpdb;
 
 
 
32
 
33
- if ( ! current_user_can( 'activate_plugins' ) ) {
34
- return;
35
  }
36
 
37
- if ( is_multisite() ) {
 
38
 
39
- foreach ( $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs LIMIT 100" ) as $blog_id ) {
40
- switch_to_blog( $blog_id );
41
- $this->loginpress_run_install();
42
- restore_current_blog();
43
  }
44
 
45
- } else {
46
- $this->loginpress_run_install();
47
- }
48
- }
49
 
50
- /**
51
- * Run the LoginPress install process
52
- *
53
- * @return void
54
- */
55
- public function loginpress_run_install() {
56
-
57
- /* translators: 1: Name of this plugin */
58
- $post_content = sprintf( __( '<p>This page is used by %1$s to preview the login page in the Customizer.</p>', 'loginpress' ), 'LoginPress' );
59
-
60
- $pages = apply_filters(
61
- 'loginpress_create_pages', array(
62
- 'loginpress' => array(
63
- 'name' => _x( 'loginpress', 'Page slug', 'loginpress' ),
64
- 'title' => _x( 'LoginPress', 'Page title', 'loginpress' ),
65
- 'content' => $post_content,
66
- ),
67
- )
68
- );
69
-
70
- foreach ( $pages as $key => $page ) {
71
- $this->loginpress_create_page( esc_sql( $page['name'] ), 'loginpress_page', $page['title'], $page['content'] );
72
- }
73
- }
74
 
75
- /**
76
- * Create a page and store the ID in an option.
77
- *
78
- * @param mixed $slug Slug for the new page.
79
- * @param string $option Option name to store the page's ID.
80
- * @param string $page_title (default: '') Title for the new page.
81
- * @param string $page_content (default: '') Content for the new page.
82
- * @return int page ID
83
- */
84
- public function loginpress_create_page( $slug, $option = '', $page_title = '', $page_content = '' ) {
85
- global $wpdb;
86
-
87
- // Set up options.
88
- $options = array();
89
-
90
- // Pull options from WP.
91
- $loginpress_setting = get_option( 'loginpress_setting', array() );
92
- if ( ! is_array( $loginpress_setting ) && empty( $loginpress_setting ) ) {
93
- $loginpress_setting = array();
94
  }
95
- $option_value = array_key_exists( 'loginpress_page', $loginpress_setting ) ? $loginpress_setting['loginpress_page'] : false;
96
 
97
- if ( $option_value > 0 && ( $page_object = get_post( $option_value ) ) ) {
98
- if ( 'page' === $page_object->post_type && ! in_array( $page_object->post_status, array( 'pending', 'trash', 'future', 'auto-draft' ), true ) ) {
99
- // Valid page is already in place.
100
- return $page_object->ID;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  }
102
  }
103
 
104
- // Search for an existing page with the specified page slug.
105
- $loginpress_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_name = %s LIMIT 1;", $slug ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
 
107
- $loginpress_page_found = apply_filters( 'loginpress_create_page_id', $loginpress_page_found, $slug, $page_content );
 
108
 
109
- if ( $loginpress_page_found ) {
110
 
111
- if ( $option ) {
112
 
113
- $options['loginpress_page'] = $loginpress_page_found;
114
- $loginpress_page_found = isset( $page_id ) ? $loginpress_page_found : $option_value;
115
- $merged_options = array_merge( $loginpress_setting, $options );
116
- $loginpress_setting = $merged_options;
117
 
118
- update_option( 'loginpress_setting', $loginpress_setting );
 
 
 
 
 
 
 
119
  }
120
- return $loginpress_page_found;
121
- }
122
 
123
- // Search for an existing page with the specified page slug.
124
- $loginpress_trashed_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_name = %s LIMIT 1;", $slug ) );
125
 
126
- if ( $loginpress_trashed_found ) {
127
- $page_id = $loginpress_trashed_found;
128
- $page_data = array(
129
- 'ID' => $page_id,
130
- 'post_status' => 'publish',
131
- );
132
 
133
- wp_update_post( $page_data );
134
 
135
- } else {
136
 
137
- $page_data = array(
138
- 'post_status' => 'publish',
139
- 'post_type' => 'page',
140
- 'post_author' => 1,
141
- 'post_name' => $slug,
142
- 'post_title' => $page_title,
143
- 'post_content' => $page_content,
144
- 'comment_status' => 'closed',
145
- );
146
 
147
- $page_id = wp_insert_post( $page_data );
148
- }
149
 
150
- if ( $option ) {
151
 
152
- $options['loginpress_page'] = $page_id;
153
- $page_id = isset( $page_id ) ? $page_id : $option_value;
154
- $merged_options = array_merge( $loginpress_setting, $options );
155
- $loginpress_setting = $merged_options;
156
 
157
- update_option( 'loginpress_setting', $loginpress_setting );
158
- }
159
 
160
- // Assign the LoginPress template.
161
- $this->loginpress_attach_template_to_page( $page_id, 'template-loginpress.php' );
162
 
163
- return $page_id;
164
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
 
166
- /**
167
- * Attaches the specified template to the page identified by the specified name.
168
- *
169
- * @param int|int $page The id of the page to attach the template.
170
- * @param int|int $template The template's filename (assumes .php' is specified).
171
- *
172
- * @returns -1 if the page does not exist; otherwise, the ID of the page.
173
- */
174
- public function loginpress_attach_template_to_page( $page, $template ) {
175
-
176
- // Only attach the template if the page exists.
177
- if ( -1 !== $page ) {
178
- update_post_meta( $page, '_wp_page_template', $template );
179
  }
180
 
181
- return $page;
182
- }
 
 
 
 
 
 
 
 
 
 
 
 
183
 
184
- /**
185
- * When a new Blog is created in multisite, check if LoginPress is network activated, and run the installer
186
- *
187
- * @param int|int $blog_id The Blog ID created.
188
- * @param int|int $user_id The User ID set as the admin.
189
- * @param string $domain The URL.
190
- * @param string $path Site Path.
191
- * @param int|int $site_id The Site ID.
192
- * @param array|array $meta Blog Meta.
193
- * @return void
194
- */
195
- public function loginpress_new_site_created( $blog_id, $user_id, $domain, $path, $site_id, $meta ) {
196
-
197
- if ( is_plugin_active_for_network( plugin_basename( LOGINPRESS_ROOT_FILE ) ) ) {
198
-
199
- switch_to_blog( $blog_id );
200
- $this->_init();
201
- restore_current_blog();
202
 
 
203
  }
204
  }
205
- }
206
-
207
-
208
  ?>
5
  * @package LoginPress
6
  * @author WPBrigade
7
  * @since 1.1.3
8
+ * @version 1.1.25
9
  */
10
 
11
  // Exit if accessed directly.
14
  }
15
 
16
  /**
17
+ * Create a LoginPress page for Multisite.
18
  */
 
19
 
20
+ if ( ! class_exists( 'LoginPress_Page_Create' ) ) :
 
 
 
 
21
 
22
+ class LoginPress_Page_Create {
 
 
23
 
24
+ function __construct()
25
+ {
26
+ $this->_init();
27
+ $this->_hooks();
28
+ }
29
 
30
+ function _hooks(){
31
+ add_action( 'wpmu_new_blog', array( $this, 'loginpress_new_site_created' ), 10, 6 );
32
  }
33
 
34
+ public function _init(){
35
+ global $wpdb;
36
 
37
+ if ( ! current_user_can( 'activate_plugins' ) ) {
38
+ return;
 
 
39
  }
40
 
41
+ if ( is_multisite() ) {
 
 
 
42
 
43
+ foreach ( $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs LIMIT 100" ) as $blog_id ) {
44
+ switch_to_blog( $blog_id );
45
+ $this->loginpress_run_install();
46
+ restore_current_blog();
47
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
 
49
+ } else {
50
+ $this->loginpress_run_install();
51
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  }
 
53
 
54
+ /**
55
+ * Run the LoginPress install process
56
+ *
57
+ * @return void
58
+ */
59
+ public function loginpress_run_install() {
60
+
61
+ /* translators: 1: Name of this plugin */
62
+ $post_content = sprintf( __( '<p>This page is used by %1$s to preview the login page in the Customizer.</p>', 'loginpress' ), 'LoginPress' );
63
+
64
+ $pages = apply_filters(
65
+ 'loginpress_create_pages', array(
66
+ 'loginpress' => array(
67
+ 'name' => _x( 'loginpress', 'Page slug', 'loginpress' ),
68
+ 'title' => _x( 'LoginPress', 'Page title', 'loginpress' ),
69
+ 'content' => $post_content,
70
+ ),
71
+ )
72
+ );
73
+
74
+ foreach ( $pages as $key => $page ) {
75
+ $this->loginpress_create_page( esc_sql( $page['name'] ), 'loginpress_page', $page['title'], $page['content'] );
76
  }
77
  }
78
 
79
+ /**
80
+ * Create a page and store the ID in an option.
81
+ *
82
+ * @param mixed $slug Slug for the new page.
83
+ * @param string $option Option name to store the page's ID.
84
+ * @param string $page_title (default: '') Title for the new page.
85
+ * @param string $page_content (default: '') Content for the new page.
86
+ * @return int page ID
87
+ */
88
+ public function loginpress_create_page( $slug, $option = '', $page_title = '', $page_content = '' ) {
89
+ global $wpdb;
90
+
91
+ // Set up options.
92
+ $options = array();
93
+
94
+ // Pull options from WP.
95
+ $loginpress_setting = get_option( 'loginpress_setting', array() );
96
+ if ( ! is_array( $loginpress_setting ) && empty( $loginpress_setting ) ) {
97
+ $loginpress_setting = array();
98
+ }
99
+ $option_value = array_key_exists( 'loginpress_page', $loginpress_setting ) ? $loginpress_setting['loginpress_page'] : false;
100
+
101
+ if ( $option_value > 0 && ( $page_object = get_post( $option_value ) ) ) {
102
+ if ( 'page' === $page_object->post_type && ! in_array( $page_object->post_status, array( 'pending', 'trash', 'future', 'auto-draft' ), true ) ) {
103
+ // Valid page is already in place.
104
+ return $page_object->ID;
105
+ }
106
+ }
107
 
108
+ // Search for an existing page with the specified page slug.
109
+ $loginpress_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_name = %s LIMIT 1;", $slug ) );
110
 
111
+ $loginpress_page_found = apply_filters( 'loginpress_create_page_id', $loginpress_page_found, $slug, $page_content );
112
 
113
+ if ( $loginpress_page_found ) {
114
 
115
+ if ( $option ) {
 
 
 
116
 
117
+ $options['loginpress_page'] = $loginpress_page_found;
118
+ $loginpress_page_found = isset( $page_id ) ? $loginpress_page_found : $option_value;
119
+ $merged_options = array_merge( $loginpress_setting, $options );
120
+ $loginpress_setting = $merged_options;
121
+
122
+ update_option( 'loginpress_setting', $loginpress_setting );
123
+ }
124
+ return $loginpress_page_found;
125
  }
 
 
126
 
127
+ // Search for an existing page with the specified page slug.
128
+ $loginpress_trashed_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_name = %s LIMIT 1;", $slug ) );
129
 
130
+ if ( $loginpress_trashed_found ) {
131
+ $page_id = $loginpress_trashed_found;
132
+ $page_data = array(
133
+ 'ID' => $page_id,
134
+ 'post_status' => 'publish',
135
+ );
136
 
137
+ wp_update_post( $page_data );
138
 
139
+ } else {
140
 
141
+ $page_data = array(
142
+ 'post_status' => 'publish',
143
+ 'post_type' => 'page',
144
+ 'post_author' => 1,
145
+ 'post_name' => $slug,
146
+ 'post_title' => $page_title,
147
+ 'post_content' => $page_content,
148
+ 'comment_status' => 'closed',
149
+ );
150
 
151
+ $page_id = wp_insert_post( $page_data );
152
+ }
153
 
154
+ if ( $option ) {
155
 
156
+ $options['loginpress_page'] = $page_id;
157
+ $page_id = isset( $page_id ) ? $page_id : $option_value;
158
+ $merged_options = array_merge( $loginpress_setting, $options );
159
+ $loginpress_setting = $merged_options;
160
 
161
+ update_option( 'loginpress_setting', $loginpress_setting );
162
+ }
163
 
164
+ // Assign the LoginPress template.
165
+ $this->loginpress_attach_template_to_page( $page_id, 'template-loginpress.php' );
166
 
167
+ return $page_id;
168
+ }
169
+
170
+ /**
171
+ * Attaches the specified template to the page identified by the specified name.
172
+ *
173
+ * @param int|int $page The id of the page to attach the template.
174
+ * @param int|int $template The template's filename (assumes .php' is specified).
175
+ *
176
+ * @returns -1 if the page does not exist; otherwise, the ID of the page.
177
+ */
178
+ public function loginpress_attach_template_to_page( $page, $template ) {
179
+
180
+ // Only attach the template if the page exists.
181
+ if ( -1 !== $page ) {
182
+ update_post_meta( $page, '_wp_page_template', $template );
183
+ }
184
 
185
+ return $page;
 
 
 
 
 
 
 
 
 
 
 
 
186
  }
187
 
188
+ /**
189
+ * When a new Blog is created in multisite, check if LoginPress is network activated, and run the installer
190
+ *
191
+ * @param int|int $blog_id The Blog ID created.
192
+ * @param int|int $user_id The User ID set as the admin.
193
+ * @param string $domain The URL.
194
+ * @param string $path Site Path.
195
+ * @param int|int $site_id The Site ID.
196
+ * @param array|array $meta Blog Meta.
197
+ * @return void
198
+ */
199
+ public function loginpress_new_site_created( $blog_id, $user_id, $domain, $path, $site_id, $meta ) {
200
+
201
+ if ( is_plugin_active_for_network( plugin_basename( LOGINPRESS_ROOT_FILE ) ) ) {
202
 
203
+ switch_to_blog( $blog_id );
204
+ $this->_init();
205
+ restore_current_blog();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
 
207
+ }
208
  }
209
  }
210
+
211
+ endif;
 
212
  ?>
languages/loginpress-nl_DE.mo DELETED
Binary file
languages/loginpress-nl_DE.po DELETED
@@ -1,1608 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Custom Login Page Brigade\n"
4
- "POT-Creation-Date: 2019-04-25 12:53+0500\n"
5
- "PO-Revision-Date: 2019-04-25 12:53+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 2.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__;"
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"
21
-
22
- #: classes/class-loginpress-addons.php:120
23
- #: classes/class-loginpress-addons.php:205
24
- #: classes/class-loginpress-addons.php:244
25
- #, php-format
26
- msgid "%1$s Already Installed %2$s"
27
- msgstr ""
28
-
29
- #: classes/class-loginpress-addons.php:124
30
- #: classes/class-loginpress-addons.php:210
31
- #, php-format
32
- msgid "%1$s Activate Plugin %2$s"
33
- msgstr ""
34
-
35
- #: classes/class-loginpress-addons.php:140
36
- #: classes/class-loginpress-addons.php:225
37
- #: classes/class-loginpress-addons.php:319
38
- msgid "UPGRADE NOW"
39
- msgstr ""
40
-
41
- #: classes/class-loginpress-addons.php:215
42
- #: classes/class-loginpress-addons.php:255
43
- #, php-format
44
- msgid "%1$s Install %2$s"
45
- msgstr ""
46
-
47
- #: classes/class-loginpress-addons.php:250
48
- #, php-format
49
- msgid "%3$s %1$s Activate Plugin %2$s"
50
- msgstr ""
51
-
52
- #: classes/class-loginpress-addons.php:337
53
- msgid "You have a lifetime license, it will never expire."
54
- msgstr ""
55
-
56
- #: classes/class-loginpress-addons.php:341
57
- #, php-format
58
- msgid "Your (%2$s) license key is valid until %s."
59
- msgstr ""
60
-
61
- #: classes/class-loginpress-addons.php:355
62
- msgid "You need to activate your license to download the following add-ons."
63
- msgstr ""
64
-
65
- #: classes/class-loginpress-addons.php:368
66
- msgid "You need to upgrade to LoginPress Pro to access these add-ons."
67
- msgstr ""
68
-
69
- #: classes/class-loginpress-addons.php:586
70
- msgid "Extend the functionality of LoginPress with these awesome Add-ons"
71
- msgstr ""
72
-
73
- #: classes/class-loginpress-custom-password.php:45
74
- #: include/customizer-strings.php:86 include/template-loginpress.php:518
75
- msgid "Password"
76
- msgstr "Wachtwoord"
77
-
78
- #: classes/class-loginpress-custom-password.php:49
79
- msgid "Confirm Password"
80
- msgstr "Bevestig wachtwoord"
81
-
82
- #: classes/class-loginpress-custom-password.php:70
83
- msgid "<strong>ERROR</strong>: Please enter your password twice."
84
- msgstr ""
85
-
86
- #: classes/class-loginpress-custom-password.php:74
87
- msgid ""
88
- "<strong>ERROR</strong>: Please enter the same password in the end password "
89
- "fields."
90
- msgstr ""
91
-
92
- #: classes/class-loginpress-filter-plugin.php:42
93
- #, php-format
94
- msgid "Buy %s now"
95
- msgstr ""
96
-
97
- #: classes/class-loginpress-filter-plugin.php:43
98
- msgid "Buy Now"
99
- msgstr ""
100
-
101
- #: classes/class-loginpress-filter-plugin.php:186
102
- msgid "Analytify"
103
- msgstr ""
104
-
105
- #: classes/class-loginpress-filter-plugin.php:195
106
- msgid ""
107
- "Analytify is reshaping Google Analytics in WordPress. See Social Media, "
108
- "Keywords, Realtime, Country, Mobile and Browsers Statistics under pages and "
109
- "posts."
110
- msgstr ""
111
-
112
- #: classes/class-loginpress-filter-plugin.php:198
113
- msgid "Related Posts"
114
- msgstr ""
115
-
116
- #: classes/class-loginpress-filter-plugin.php:207
117
- msgid ""
118
- "Related Post Thumbnails plugin is for those who want the showcase of their "
119
- "related posts after the post detail. The plugin allows customizing thumbnail "
120
- "sizes, display settings, and type of relations. The plugin is using original "
121
- "WordPress taxonomy. It returns generated HTML, that is essential for page "
122
- "load speed of blogs that use many Javascript widgets."
123
- msgstr ""
124
-
125
- #: classes/class-loginpress-filter-plugin.php:210
126
- msgid "LoginPress Pro"
127
- msgstr ""
128
-
129
- #: classes/class-loginpress-filter-plugin.php:220
130
- msgid ""
131
- "LoginPress Plugin by LoginPress holds a lot of customization fields to "
132
- "change the layout of the login page of WordPress. You can modify the look "
133
- "and feel of login page completely even the login error messages, forgot "
134
- "error messages, registration error messages, forget password hint message "
135
- "and many more."
136
- msgstr ""
137
-
138
- #: classes/class-loginpress-login-order.php:69 custom.php:1643
139
- #: include/customizer-strings.php:141
140
- #, php-format
141
- msgid "%1$sError:%2$s The username field is empty."
142
- msgstr ""
143
-
144
- #: classes/class-loginpress-login-order.php:71 custom.php:1645
145
- #: include/customizer-strings.php:142
146
- #, php-format
147
- msgid "%1$sError:%2$s The password field is empty."
148
- msgstr ""
149
-
150
- #: classes/class-loginpress-login-order.php:92
151
- #: include/customizer-strings.php:148
152
- #, php-format
153
- msgid "%1$sError:%2$s Invalid Email Address"
154
- msgstr ""
155
-
156
- #: classes/class-loginpress-login-order.php:114 custom.php:1639
157
- #: include/customizer-strings.php:140
158
- #, php-format
159
- msgid "%1$sError:%2$s Invalid Username."
160
- msgstr ""
161
-
162
- #: classes/class-loginpress-notifications.php:130
163
- msgid "Leave A Review?"
164
- msgstr ""
165
-
166
- #: classes/class-loginpress-notifications.php:131
167
- msgid ""
168
- "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
169
- "review on WordPress.org?"
170
- msgstr ""
171
-
172
- #: classes/class-loginpress-notifications.php:133
173
- msgid "Sure! I'd love to!"
174
- msgstr ""
175
-
176
- #: classes/class-loginpress-notifications.php:134
177
- msgid "I've already left a review"
178
- msgstr ""
179
-
180
- #: classes/class-loginpress-notifications.php:135
181
- msgid "Maybe Later"
182
- msgstr ""
183
-
184
- #: classes/class-loginpress-notifications.php:136
185
- msgid "Never show again"
186
- msgstr ""
187
-
188
- #: classes/class-loginpress-notifications.php:161
189
- msgid "Introducing LoginPress Addons!"
190
- msgstr ""
191
-
192
- #: classes/class-loginpress-notifications.php:162
193
- msgid "Extend LoginPress with these add-ons and supercharge your login pages."
194
- msgstr ""
195
-
196
- #: classes/class-loginpress-notifications.php:166
197
- msgid "Learn More"
198
- msgstr ""
199
-
200
- #: classes/class-loginpress-notifications.php:270
201
- msgid "FLAT 51% OFF"
202
- msgstr ""
203
-
204
- #: classes/class-loginpress-notifications.php:295
205
- #, php-format
206
- msgid ""
207
- "<strong>Biggest Winter Deal</strong> in the WordPress Universe! Get "
208
- "<strong>LoginPress Pro and all Premium Add-ons</strong> with <strong>20%% "
209
- "OFF</strong> [Limited Availability].<a href=\"https://wpbrigade.com/"
210
- "wordpress/plugins/loginpress-pro/?utm_source=loginpress-"
211
- "lite&utm_medium=freepluginbanner-button&utm_campaign=early20\" target="
212
- "\"_blank\" style=\"text-decoration: none;\"><span class=\"dashicons "
213
- "dashicons-smiley\" style=\"margin-left: 10px;\"></span> Grab The Deal</a>\n"
214
- " \t\t\t\t\t<a href=\"%1$s\" style=\"text-decoration: none; margin-left: "
215
- "10px;\"><span class=\"dashicons dashicons-dismiss\"></span> I'm good with "
216
- "free version</a>"
217
- msgstr ""
218
-
219
- #: classes/class-loginpress-promo.php:9
220
- msgid "Google Fonts"
221
- msgstr ""
222
-
223
- #: classes/class-loginpress-promo.php:26 classes/class-loginpress-promo.php:47
224
- #: classes/control-presets.php:74
225
- msgid "Unlock Premium Feature"
226
- msgstr ""
227
-
228
- #: classes/class-loginpress-promo.php:31
229
- msgid "reCAPTCHA"
230
- msgstr ""
231
-
232
- #: classes/class-loginpress-settings-api.php:372 custom.php:647
233
- msgid "Choose File"
234
- msgstr ""
235
-
236
- #: classes/class-loginpress-settings-api.php:639
237
- msgid "Getting Started Video"
238
- msgstr ""
239
-
240
- #: classes/class-loginpress-settings-api.php:647
241
- msgid "Why Go Pro?"
242
- msgstr ""
243
-
244
- #: classes/class-loginpress-settings-api.php:650
245
- msgid "Secure login with Google reCaptcha"
246
- msgstr ""
247
-
248
- #: classes/class-loginpress-settings-api.php:651
249
- msgid "20+ Custom Login Themes"
250
- msgstr ""
251
-
252
- #: classes/class-loginpress-settings-api.php:652
253
- msgid "Full customization with Custom CSS & JS"
254
- msgstr ""
255
-
256
- #: classes/class-loginpress-settings-api.php:657
257
- msgid "See What's In The Pro Version"
258
- msgstr ""
259
-
260
- #: classes/class-loginpress-settings-api.php:666
261
- msgid "Plugin Support"
262
- msgstr ""
263
-
264
- #: classes/class-loginpress-settings-api.php:669
265
- msgid "Got a Question, Idea, Problem or Praise?"
266
- msgstr ""
267
-
268
- #: classes/class-loginpress-settings-api.php:671
269
- msgid "Support Request"
270
- msgstr ""
271
-
272
- #: classes/class-loginpress-setup.php:53
273
- msgid "Default Settings Restored"
274
- msgstr ""
275
-
276
- #: classes/class-loginpress-setup.php:60 custom.php:250 loginpress.php:279
277
- msgid "LoginPress"
278
- msgstr ""
279
-
280
- #: classes/class-loginpress-setup.php:62 classes/class-loginpress-setup.php:79
281
- msgid "Settings"
282
- msgstr ""
283
-
284
- #: classes/class-loginpress-setup.php:64
285
- msgid "Customizer"
286
- msgstr ""
287
-
288
- #: classes/class-loginpress-setup.php:66
289
- msgid "Help"
290
- msgstr ""
291
-
292
- #: classes/class-loginpress-setup.php:68
293
- #: include/loginpress-import-export.php:13
294
- msgid "Import/Export LoginPress Settings"
295
- msgstr ""
296
-
297
- #: classes/class-loginpress-setup.php:68
298
- msgid "Import / Export"
299
- msgstr ""
300
-
301
- #: classes/class-loginpress-setup.php:70
302
- msgid "Add-Ons"
303
- msgstr ""
304
-
305
- #: classes/class-loginpress-setup.php:80
306
- #, php-format
307
- msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
308
- msgstr ""
309
-
310
- #: classes/class-loginpress-setup.php:102
311
- msgid "Upgrade to Pro for More Features"
312
- msgstr ""
313
-
314
- #: classes/class-loginpress-setup.php:127
315
- msgid "Session Expire"
316
- msgstr ""
317
-
318
- #: classes/class-loginpress-setup.php:128
319
- msgid "Set the session expiration time in minutes. e.g: 10"
320
- msgstr ""
321
-
322
- #: classes/class-loginpress-setup.php:129
323
- msgid "10"
324
- msgstr ""
325
-
326
- #: classes/class-loginpress-setup.php:152
327
- #, fuzzy
328
- #| msgid "Lost Password Text"
329
- msgid "Custom Password Fields"
330
- msgstr "Wachtwoord vergeten Text"
331
-
332
- #: classes/class-loginpress-setup.php:153
333
- msgid "Enable custom password fields on registration form."
334
- msgstr ""
335
-
336
- #: classes/class-loginpress-setup.php:158
337
- msgid "Login Order"
338
- msgstr ""
339
-
340
- #: classes/class-loginpress-setup.php:159
341
- msgid "Enable users to login using their username and/or email address."
342
- msgstr ""
343
-
344
- #: classes/class-loginpress-setup.php:176
345
- msgid "Reset Default Settings"
346
- msgstr ""
347
-
348
- #: classes/class-loginpress-setup.php:177
349
- msgid "Remove my custom settings."
350
- msgstr ""
351
-
352
- #: classes/class-loginpress-setup.php:213
353
- msgid "LoginPress - Rebranding your boring WordPress Login pages"
354
- msgstr ""
355
-
356
- #: classes/class-loginpress-setup.php:232
357
- #, php-format
358
- msgid "Free support is available on the %1$s plugin support forums%2$s."
359
- msgstr ""
360
-
361
- #: classes/class-loginpress-setup.php:234
362
- #, php-format
363
- msgid ""
364
- "For premium features, add-ons and priority email support, %1$s upgrade to pro"
365
- "%2$s."
366
- msgstr ""
367
-
368
- #: classes/class-loginpress-setup.php:240
369
- msgid "Download Log File"
370
- msgstr ""
371
-
372
- #: classes/class-loginpress-setup.php:296
373
- #, fuzzy
374
- #| msgid "Lost Password Text"
375
- msgid "Lost Password URL"
376
- msgstr "Wachtwoord vergeten Text"
377
-
378
- #: classes/class-loginpress-setup.php:297
379
- msgid ""
380
- "Use WordPress default lost password URL instead of WooCommerce custom lost "
381
- "password URL."
382
- msgstr ""
383
-
384
- #: classes/class-loginpress-setup.php:314
385
- msgid "and LoginPress page"
386
- msgstr ""
387
-
388
- #: classes/class-loginpress-setup.php:319
389
- msgid "Remove Settings on Uninstall"
390
- msgstr ""
391
-
392
- #: classes/class-loginpress-setup.php:320
393
- #, php-format
394
- msgid "This tool will remove all LoginPress settings %1$s upon uninstall."
395
- msgstr ""
396
-
397
- #: classes/control-presets.php:78
398
- msgid "Contact us for Custom Design"
399
- msgstr ""
400
-
401
- #: classes/controls/group.php:53
402
- msgid "Info:"
403
- msgstr ""
404
-
405
- #: custom.php:251
406
- msgid "Customize Your WordPress Login Page with LoginPress :)"
407
- msgstr ""
408
-
409
- #: custom.php:264
410
- msgid "Themes"
411
- msgstr ""
412
-
413
- #: custom.php:265
414
- msgid "Choose Theme"
415
- msgstr ""
416
-
417
- #: custom.php:279 custom.php:286 custom.php:496 custom.php:503
418
- msgid "Company"
419
- msgstr ""
420
-
421
- #: custom.php:280 custom.php:291 custom.php:497
422
- msgid "Persona"
423
- msgstr ""
424
-
425
- #: custom.php:281 custom.php:282 custom.php:498 custom.php:499
426
- msgid "Corporate"
427
- msgstr ""
428
-
429
- #: custom.php:283 custom.php:500
430
- msgid "Startup"
431
- msgstr ""
432
-
433
- #: custom.php:284 custom.php:501
434
- msgid "Wedding"
435
- msgstr ""
436
-
437
- #: custom.php:285 custom.php:502
438
- msgid "Wedding #2"
439
- msgstr ""
440
-
441
- #: custom.php:287 custom.php:504
442
- msgid "Bikers"
443
- msgstr ""
444
-
445
- #: custom.php:288
446
- msgid "Fitness"
447
- msgstr ""
448
-
449
- #: custom.php:289
450
- msgid "Shopping"
451
- msgstr ""
452
-
453
- #: custom.php:290
454
- msgid "Writers"
455
- msgstr ""
456
-
457
- #: custom.php:292
458
- msgid "Geek"
459
- msgstr ""
460
-
461
- #: custom.php:293
462
- msgid "Innovation"
463
- msgstr ""
464
-
465
- #: custom.php:294
466
- msgid "Photographers"
467
- msgstr ""
468
-
469
- #: custom.php:323
470
- #, fuzzy
471
- #| msgid "Custom JS"
472
- msgid "Custom Design"
473
- msgstr "Custom JS"
474
-
475
- #: custom.php:341
476
- msgid "Logo"
477
- msgstr ""
478
-
479
- #: custom.php:342
480
- msgid "Customize Your Logo Section"
481
- msgstr ""
482
-
483
- #: custom.php:362
484
- msgid "Disable Logo:"
485
- msgstr ""
486
-
487
- #: custom.php:376
488
- msgid "Logo Image:"
489
- msgstr ""
490
-
491
- #: custom.php:394
492
- msgid "Logo URL:"
493
- msgstr ""
494
-
495
- #: custom.php:394
496
- msgid "Logo Hover Title:"
497
- msgstr ""
498
-
499
- #: custom.php:422
500
- msgid "Background"
501
- msgstr "Achtergrond"
502
-
503
- #: custom.php:437
504
- msgid "Background Color:"
505
- msgstr ""
506
-
507
- #: custom.php:460
508
- #, fuzzy
509
- #| msgid "Form Background Image"
510
- msgid "Enable Background Image?"
511
- msgstr "Formulier Achtergrond Afbeelding"
512
-
513
- #: custom.php:475
514
- msgid "Background Image:"
515
- msgstr ""
516
-
517
- #: custom.php:480
518
- msgid "Select Image"
519
- msgstr ""
520
-
521
- #: custom.php:524
522
- #, fuzzy
523
- #| msgid "Background Color"
524
- msgid "Background Gallery:"
525
- msgstr "Achtergrond Kleur"
526
-
527
- #: custom.php:538
528
- msgid "Background Repeat:"
529
- msgstr "Achtergrond herhalen"
530
-
531
- #: custom.php:563
532
- msgid "Select Position:"
533
- msgstr ""
534
-
535
- #: custom.php:589
536
- msgid "Background Image Size: "
537
- msgstr ""
538
-
539
- #: custom.php:619
540
- #, fuzzy
541
- #| msgid "Form Background Image"
542
- msgid "Enable Background Video?"
543
- msgstr "Formulier Achtergrond Afbeelding"
544
-
545
- #: custom.php:637
546
- #, fuzzy
547
- #| msgid "Background Repeat:"
548
- msgid "Background Video:"
549
- msgstr "Achtergrond herhalen"
550
-
551
- #: custom.php:642
552
- msgid "Select Video"
553
- msgstr ""
554
-
555
- #: custom.php:643
556
- msgid "Change Video"
557
- msgstr ""
558
-
559
- #: custom.php:644
560
- msgid "Default"
561
- msgstr ""
562
-
563
- #: custom.php:645
564
- msgid "Remove"
565
- msgstr ""
566
-
567
- #: custom.php:646
568
- msgid "Select File"
569
- msgstr ""
570
-
571
- #: custom.php:660
572
- #, fuzzy
573
- #| msgid "Text Font Size:"
574
- msgid "Video Size:"
575
- msgstr "Tekst Font Grootte:"
576
-
577
- #: custom.php:681
578
- msgid "Object Postion:"
579
- msgstr ""
580
-
581
- #: custom.php:686
582
- msgid "50% 50%"
583
- msgstr ""
584
-
585
- #: custom.php:704
586
- msgid "Muted Video?"
587
- msgstr ""
588
-
589
- #: custom.php:714
590
- msgid "Customize Login Form"
591
- msgstr ""
592
-
593
- #: custom.php:737
594
- msgid "Enable Form Transparency:"
595
- msgstr ""
596
-
597
- #: custom.php:751
598
- #, fuzzy
599
- #| msgid "Form Background Image"
600
- msgid "Form Background Image:"
601
- msgstr "Formulier Achtergrond Afbeelding"
602
-
603
- #: custom.php:880
604
- msgid "Customize Forget Form"
605
- msgstr "Aanpassen Vergeet Form"
606
-
607
- #: custom.php:894
608
- #, fuzzy
609
- #| msgid "Forget Form Background Image"
610
- msgid "Forget Form Background Image:"
611
- msgstr "Vergeet Van Achtergrond Afbeelding"
612
-
613
- #: custom.php:909
614
- #, fuzzy
615
- #| msgid "Forget Form Background Color"
616
- msgid "Forget Form Background Color:"
617
- msgstr "Vergeet Vorm Achtergrond Kleur"
618
-
619
- #: custom.php:919
620
- msgid "Button Beauty"
621
- msgstr "Knoop Beauty"
622
-
623
- #: custom.php:950
624
- msgid "Error Messages"
625
- msgstr "Foutmeldingen"
626
-
627
- #: custom.php:981
628
- msgid "Welcome Messages"
629
- msgstr "Welkom Berichten"
630
-
631
- #: custom.php:1019
632
- msgid "Message Field Background Color:"
633
- msgstr "Bericht Veld Achtergrond Kleur:"
634
-
635
- #: custom.php:1131
636
- msgid "Form Footer"
637
- msgstr ""
638
-
639
- #: custom.php:1154
640
- #, fuzzy
641
- #| msgid "Footer Text 1"
642
- msgid "Enable Footer Text:"
643
- msgstr "Footer Text 1"
644
-
645
- #: custom.php:1161 include/template-loginpress.php:493
646
- #: include/template-loginpress.php:552
647
- #, fuzzy
648
- #| msgid "Lost Password Text"
649
- msgid "Lost your password?"
650
- msgstr "Wachtwoord vergeten Text"
651
-
652
- #: custom.php:1169
653
- #, fuzzy
654
- #| msgid "Lost Password Text"
655
- msgid "Lost Password Text:"
656
- msgstr "Wachtwoord vergeten Text"
657
-
658
- #: custom.php:1185
659
- msgid "Select Text Decoration:"
660
- msgstr ""
661
-
662
- #: custom.php:1206
663
- msgid "Footer Text Color:"
664
- msgstr "Footer Tekst Kleur:"
665
-
666
- #: custom.php:1221
667
- msgid "Footer Text Hover Color:"
668
- msgstr "Footer Tekst Hover Kleur:"
669
-
670
- #: custom.php:1242
671
- msgid "Text Font Size:"
672
- msgstr "Tekst Font Grootte:"
673
-
674
- #: custom.php:1259
675
- msgid "Footer Background Color:"
676
- msgstr "Footer Achtergrond Kleur:"
677
-
678
- #: custom.php:1284
679
- msgid "Enable \"Back to\" Text:"
680
- msgstr ""
681
-
682
- #: custom.php:1300
683
- msgid "\"Back to\" Text Decoration:"
684
- msgstr ""
685
-
686
- #: custom.php:1321
687
- msgid "\"Back to\" Text Color:"
688
- msgstr ""
689
-
690
- #: custom.php:1336
691
- msgid "\"Back to\" Text Hover Color:"
692
- msgstr ""
693
-
694
- #: custom.php:1357
695
- msgid "\"Back to\" Text Font Size:"
696
- msgstr ""
697
-
698
- #: custom.php:1374
699
- #, fuzzy
700
- #| msgid "Form Background Color"
701
- msgid "\"Back to\" Background Color:"
702
- msgstr "Formulier Achtergrondkleur"
703
-
704
- #: custom.php:1400
705
- msgid "Enable Copyright Note:"
706
- msgstr ""
707
-
708
- #: custom.php:1404 custom.php:1545
709
- #, fuzzy, php-format
710
- #| msgid "All Rights Reserved by:"
711
- msgid "© %1$s %2$s, All Rights Reserved."
712
- msgstr "Alle rechten voorbehouden aan:"
713
-
714
- #: custom.php:1412
715
- msgid "Copyright Note:"
716
- msgstr ""
717
-
718
- #: custom.php:1437
719
- msgid ""
720
- "Show some Love. Please help others learn about this free plugin by placing "
721
- "small link in footer. Thank you very much!"
722
- msgstr ""
723
-
724
- #: custom.php:1453
725
- msgid "Love Position:"
726
- msgstr ""
727
-
728
- #: custom.php:1459
729
- msgid "Left"
730
- msgstr ""
731
-
732
- #: custom.php:1460
733
- msgid "Right"
734
- msgstr ""
735
-
736
- #: custom.php:1471
737
- #, fuzzy
738
- #| msgid "Custom CSS"
739
- msgid "Custom CSS/JS"
740
- msgstr "Custom CSS"
741
-
742
- #: custom.php:1484
743
- #, fuzzy
744
- #| msgid "Customize CSS"
745
- msgid "Customize CSS:"
746
- msgstr "Pas CSS"
747
-
748
- #: custom.php:1489
749
- #, php-format
750
- msgid ""
751
- "Custom CSS doen't make effect live. For preview please save the setting and "
752
- "visit %1$s login%2$s page or after save refresh the customizer."
753
- msgstr ""
754
-
755
- #: custom.php:1499
756
- #, fuzzy
757
- #| msgid "Customize JS"
758
- msgid "Customize JS:"
759
- msgstr "Pas JS"
760
-
761
- #: custom.php:1504
762
- #, php-format
763
- msgid ""
764
- "Custom JS doen't make effect live. For preview please save the setting and "
765
- "visit %1$s login%2$s page or after save refresh the customizer."
766
- msgstr ""
767
-
768
- #: custom.php:1528 custom.php:1530
769
- msgid "Powered by:"
770
- msgstr ""
771
-
772
- #: custom.php:1641 include/customizer-strings.php:140
773
- #, php-format
774
- msgid "%1$sError:%2$s Invalid Password."
775
- msgstr ""
776
-
777
- #: custom.php:1647 include/customizer-strings.php:143
778
- #, php-format
779
- msgid "%1$sError:%2$s The email address isn't correct.."
780
- msgstr ""
781
-
782
- #: custom.php:1649 include/customizer-strings.php:144
783
- #, php-format
784
- msgid "%1$sError:%2$s Please type your email address."
785
- msgstr ""
786
-
787
- #: custom.php:1651 include/customizer-strings.php:145
788
- #, php-format
789
- msgid ""
790
- "%1$sError:%2$s This username is already registered. Please choose another "
791
- "one."
792
- msgstr ""
793
-
794
- #: custom.php:1653 include/customizer-strings.php:146
795
- #, php-format
796
- msgid ""
797
- "%1$sError:%2$s This email is already registered, please choose another one."
798
- msgstr ""
799
-
800
- #: custom.php:1655 include/customizer-strings.php:147
801
- #, php-format
802
- msgid "%1$sError:%2$s Invalid username or email."
803
- msgstr ""
804
-
805
- #: custom.php:1730 include/template-loginpress.php:469
806
- msgid "Username"
807
- msgstr ""
808
-
809
- #: custom.php:1732
810
- msgid "Email Address"
811
- msgstr ""
812
-
813
- #: custom.php:1799 include/template-loginpress.php:370
814
- msgid ""
815
- "Please enter your username or email address. You will receive a link to "
816
- "create a new password via email."
817
- msgstr ""
818
-
819
- #: custom.php:1807 include/template-loginpress.php:465
820
- msgid "Register For This Site"
821
- msgstr ""
822
-
823
- #: custom.php:1825 custom.php:1829
824
- msgid "Your password has been reset."
825
- msgstr ""
826
-
827
- #: custom.php:1829 include/template-loginpress.php:397
828
- #: include/template-loginpress.php:491
829
- msgid "Log in"
830
- msgstr ""
831
-
832
- #: include/class-remote-notification-client.php:126
833
- #: include/class-remote-notification-client.php:137
834
- msgid "Cheatin&#8217; huh?"
835
- msgstr ""
836
-
837
- #: include/class-remote-notification-client.php:502
838
- msgid "Dismiss notification"
839
- msgstr ""
840
-
841
- #: include/class-remote-notification-client.php:701
842
- #, php-format
843
- msgid "The server response was invalid (code %s)"
844
- msgstr ""
845
-
846
- #: include/class-remote-notification-client.php:707
847
- msgid "The server response is empty"
848
- msgstr ""
849
-
850
- #: include/class-remote-notification-client.php:713
851
- msgid "Cannot decode the response content"
852
- msgstr ""
853
-
854
- #: include/create-loginpress-page.php:58
855
- #, php-format
856
- msgid ""
857
- "<p>This page is used by %1$s to preview the login page in the Customizer.</p>"
858
- msgstr ""
859
-
860
- #: include/create-loginpress-page.php:63
861
- msgctxt "Page slug"
862
- msgid "loginpress"
863
- msgstr ""
864
-
865
- #: include/create-loginpress-page.php:64
866
- msgctxt "Page title"
867
- msgid "LoginPress"
868
- msgstr ""
869
-
870
- #: include/customizer-strings.php:9
871
- msgid "Logo Width:"
872
- msgstr ""
873
-
874
- #: include/customizer-strings.php:9
875
- msgid "Logo Height:"
876
- msgstr ""
877
-
878
- #: include/customizer-strings.php:9
879
- msgid "Space Bottom:"
880
- msgstr ""
881
-
882
- #: include/customizer-strings.php:23
883
- #, fuzzy
884
- #| msgid "Input Field Text Color"
885
- msgid "Input Fields:"
886
- msgstr "Tekstinvoerveld Kleur"
887
-
888
- #: include/customizer-strings.php:24
889
- #, fuzzy
890
- #| msgid "Input Field Text Color"
891
- msgid "Input Field Labels:"
892
- msgstr "Tekstinvoerveld Kleur"
893
-
894
- #: include/customizer-strings.php:25
895
- #, fuzzy
896
- #| msgid "Login Logo"
897
- msgid "Login Form:"
898
- msgstr "Login Logo"
899
-
900
- #: include/customizer-strings.php:26
901
- #, fuzzy
902
- #| msgid "Lost Password Text"
903
- msgid "Lost Your Password Text"
904
- msgstr "Wachtwoord vergeten Text"
905
-
906
- #: include/customizer-strings.php:27
907
- msgid "Back To Site Text"
908
- msgstr ""
909
-
910
- #: include/customizer-strings.php:28
911
- #, fuzzy
912
- #| msgid "Login Footer Links"
913
- msgid "LoginPress Footer Text"
914
- msgstr "Login Footer Links"
915
-
916
- #: include/customizer-strings.php:29
917
- #, fuzzy
918
- #| msgid "Form Background Image"
919
- msgid "Background Image"
920
- msgstr "Formulier Achtergrond Afbeelding"
921
-
922
- #: include/customizer-strings.php:30
923
- #, fuzzy
924
- #| msgid "Background"
925
- msgid "Background Video"
926
- msgstr "Achtergrond"
927
-
928
- #: include/customizer-strings.php:32
929
- msgid ""
930
- "This section helps you to easily Customize the login form input field "
931
- "elements."
932
- msgstr ""
933
-
934
- #: include/customizer-strings.php:33
935
- msgid ""
936
- "This section helps you to easily Customize the login form input field labels."
937
- msgstr ""
938
-
939
- #: include/customizer-strings.php:34
940
- msgid ""
941
- "This section helps you to easily Customize the login form elements whether "
942
- "they are form lables, fields or backgrounds."
943
- msgstr ""
944
-
945
- #: include/customizer-strings.php:35
946
- msgid ""
947
- " Customize the \"Lost your password\" and \"Register\" text section under "
948
- "the form."
949
- msgstr ""
950
-
951
- #: include/customizer-strings.php:36
952
- msgid "Customize the \"Back to\" text section under the form."
953
- msgstr ""
954
-
955
- #: include/customizer-strings.php:37
956
- msgid ""
957
- "Customize the copyright note and branding sections at the footer of login "
958
- "page."
959
- msgstr ""
960
-
961
- #: include/customizer-strings.php:38
962
- #, fuzzy
963
- #| msgid "Form Background Image"
964
- msgid "Customize the background Image."
965
- msgstr "Formulier Achtergrond Afbeelding"
966
-
967
- #: include/customizer-strings.php:39
968
- msgid "Customize the background Video."
969
- msgstr ""
970
-
971
- #: include/customizer-strings.php:49
972
- msgid "Form Width:"
973
- msgstr "Vorm Breedte:"
974
-
975
- #: include/customizer-strings.php:50
976
- msgid "Form Minimum Height:"
977
- msgstr ""
978
-
979
- #: include/customizer-strings.php:51
980
- #, fuzzy
981
- #| msgid "Form Padding:"
982
- msgid "Form Radius:"
983
- msgstr "Vorm Padding:"
984
-
985
- #: include/customizer-strings.php:52
986
- #, fuzzy
987
- #| msgid "Form Padding:"
988
- msgid "Form Shadow:"
989
- msgstr "Vorm Padding:"
990
-
991
- #: include/customizer-strings.php:53
992
- msgid "Form Shadow Opacity:"
993
- msgstr ""
994
-
995
- #: include/customizer-strings.php:54
996
- msgid "Input Text Field Width:"
997
- msgstr ""
998
-
999
- #: include/customizer-strings.php:55
1000
- #, fuzzy
1001
- #| msgid "Input Text Field Margin"
1002
- msgid "Input Text Field Radius:"
1003
- msgstr "Invoertekstveld Marge"
1004
-
1005
- #: include/customizer-strings.php:56
1006
- #, fuzzy
1007
- #| msgid "Input Text Field Width"
1008
- msgid "Input Text Field Shadow:"
1009
- msgstr "Input tekstveld Breedte"
1010
-
1011
- #: include/customizer-strings.php:57
1012
- #, fuzzy
1013
- #| msgid "Input Text Field Width"
1014
- msgid "Input Text Field Shadow Opacity:"
1015
- msgstr "Input tekstveld Breedte"
1016
-
1017
- #: include/customizer-strings.php:58
1018
- #, fuzzy
1019
- #| msgid "Input Field Text Color"
1020
- msgid "Input Field Label Font Size:"
1021
- msgstr "Tekstinvoerveld Kleur"
1022
-
1023
- #: include/customizer-strings.php:59
1024
- #, fuzzy
1025
- #| msgid "Text Font Size:"
1026
- msgid "Remember Me Font Size:"
1027
- msgstr "Tekst Font Grootte:"
1028
-
1029
- #: include/customizer-strings.php:78
1030
- msgid "Form Background Color:"
1031
- msgstr ""
1032
-
1033
- #: include/customizer-strings.php:79
1034
- msgid "Input Field Background Color:"
1035
- msgstr ""
1036
-
1037
- #: include/customizer-strings.php:80
1038
- msgid "Input Field Text Color:"
1039
- msgstr ""
1040
-
1041
- #: include/customizer-strings.php:81
1042
- #, fuzzy
1043
- #| msgid "Input Field Text Color"
1044
- msgid "Input Field Label Color:"
1045
- msgstr "Tekstinvoerveld Kleur"
1046
-
1047
- #: include/customizer-strings.php:82
1048
- #, fuzzy
1049
- #| msgid "Label Color"
1050
- msgid "Remember me Label Color:"
1051
- msgstr "Label Color"
1052
-
1053
- #: include/customizer-strings.php:86 include/template-loginpress.php:382
1054
- #: include/template-loginpress.php:514
1055
- msgid "Username or Email Address"
1056
- msgstr ""
1057
-
1058
- #: include/customizer-strings.php:88
1059
- msgid "Form Padding:"
1060
- msgstr "Vorm Padding:"
1061
-
1062
- #: include/customizer-strings.php:89
1063
- msgid "Border (Example: 2px dotted black):"
1064
- msgstr ""
1065
-
1066
- #: include/customizer-strings.php:90
1067
- msgid "Input Text Field Margin:"
1068
- msgstr ""
1069
-
1070
- #: include/customizer-strings.php:91
1071
- #, fuzzy
1072
- #| msgid "Empty Username Message:"
1073
- msgid "Username Label:"
1074
- msgstr "Lege Gebruikersnaam Message:"
1075
-
1076
- #: include/customizer-strings.php:92
1077
- #, fuzzy
1078
- #| msgid "Empty Password Message:"
1079
- msgid "Password Label:"
1080
- msgstr "Leeg wachtwoord Message:"
1081
-
1082
- #: include/customizer-strings.php:104
1083
- msgid "Button Color:"
1084
- msgstr ""
1085
-
1086
- #: include/customizer-strings.php:105
1087
- msgid "Button Border Color:"
1088
- msgstr ""
1089
-
1090
- #: include/customizer-strings.php:106
1091
- msgid "Button Color (Hover):"
1092
- msgstr ""
1093
-
1094
- #: include/customizer-strings.php:107
1095
- msgid "Button Border (Hover):"
1096
- msgstr ""
1097
-
1098
- #: include/customizer-strings.php:108
1099
- msgid "Button Box Shadow:"
1100
- msgstr ""
1101
-
1102
- #: include/customizer-strings.php:109
1103
- msgid "Button Text Color:"
1104
- msgstr ""
1105
-
1106
- #: include/customizer-strings.php:114
1107
- #, fuzzy
1108
- #| msgid "Text Font Size:"
1109
- msgid "Button Size:"
1110
- msgstr "Tekst Font Grootte:"
1111
-
1112
- #: include/customizer-strings.php:114
1113
- #, fuzzy
1114
- #| msgid "Form Padding:"
1115
- msgid "Button Top Padding:"
1116
- msgstr "Vorm Padding:"
1117
-
1118
- #: include/customizer-strings.php:114
1119
- #, fuzzy
1120
- #| msgid "Form Padding:"
1121
- msgid "Button Bottom Padding:"
1122
- msgstr "Vorm Padding:"
1123
-
1124
- #: include/customizer-strings.php:114
1125
- msgid "Radius:"
1126
- msgstr ""
1127
-
1128
- #: include/customizer-strings.php:114
1129
- msgid "Shadow:"
1130
- msgstr ""
1131
-
1132
- #: include/customizer-strings.php:114
1133
- msgid "Shadow Opacity:"
1134
- msgstr ""
1135
-
1136
- #: include/customizer-strings.php:114
1137
- #, fuzzy
1138
- #| msgid "Text Font Size:"
1139
- msgid "Text Size:"
1140
- msgstr "Tekst Font Grootte:"
1141
-
1142
- #: include/customizer-strings.php:150
1143
- msgid "Incorrect Username Message:"
1144
- msgstr "Onjuiste gebruikersnaam Bericht:"
1145
-
1146
- #: include/customizer-strings.php:151
1147
- msgid "Incorrect Password Message:"
1148
- msgstr "Onjuist wachtwoord Message:"
1149
-
1150
- #: include/customizer-strings.php:152
1151
- msgid "Empty Username Message:"
1152
- msgstr "Lege Gebruikersnaam Message:"
1153
-
1154
- #: include/customizer-strings.php:153
1155
- msgid "Empty Password Message:"
1156
- msgstr "Leeg wachtwoord Message:"
1157
-
1158
- #: include/customizer-strings.php:154
1159
- msgid "Invalid Email Message:"
1160
- msgstr "Ongeldig e-mailbericht:"
1161
-
1162
- #: include/customizer-strings.php:155
1163
- msgid "Empty Email Message:"
1164
- msgstr "Lege e-mailbericht:"
1165
-
1166
- #: include/customizer-strings.php:156
1167
- #, fuzzy
1168
- #| msgid "Empty Username Message:"
1169
- msgid "Username Already Exist Message:"
1170
- msgstr "Lege Gebruikersnaam Message:"
1171
-
1172
- #: include/customizer-strings.php:157
1173
- #, fuzzy
1174
- #| msgid "Empty Email Message:"
1175
- msgid "Email Already Exist Message:"
1176
- msgstr "Lege e-mailbericht:"
1177
-
1178
- #: include/customizer-strings.php:158
1179
- msgid "Forget Password Message:"
1180
- msgstr "Wachtwoord vergeten Message:"
1181
-
1182
- #: include/customizer-strings.php:159
1183
- #, fuzzy
1184
- #| msgid "Invalid Email Message:"
1185
- msgid "Login with Email Message:"
1186
- msgstr "Ongeldig e-mailbericht:"
1187
-
1188
- #: include/customizer-strings.php:170
1189
- msgid "Welcome Message on Lost Password:"
1190
- msgstr "Welkom Bericht op Wachtwoord vergeten:"
1191
-
1192
- #: include/customizer-strings.php:171
1193
- #, fuzzy
1194
- #| msgid "Welcome Message on Front Page:"
1195
- msgid "Welcome Message on Login Page:"
1196
- msgstr "Welkom bericht op de voorpagina:"
1197
-
1198
- #: include/customizer-strings.php:172
1199
- msgid "Welcome Message on Registration:"
1200
- msgstr "Welkom Bericht op Registratie:"
1201
-
1202
- #: include/customizer-strings.php:173
1203
- msgid "Logout Message:"
1204
- msgstr "Logout Message:"
1205
-
1206
- #: include/customizer-strings.php:174
1207
- msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
1208
- msgstr ""
1209
-
1210
- #: include/deactivate_modal.php:139
1211
- msgid "Quick feedback about LoginPress"
1212
- msgstr ""
1213
-
1214
- #: include/deactivate_modal.php:142
1215
- msgid "If you have a moment, please let us know why you are deactivating:"
1216
- msgstr ""
1217
-
1218
- #: include/deactivate_modal.php:150
1219
- msgid " I upgraded to LoginPress Pro"
1220
- msgstr ""
1221
-
1222
- #: include/deactivate_modal.php:152
1223
- msgid ""
1224
- "No need to deactivate this LoginPress Core version. Pro version works as an "
1225
- "add-on with Core version."
1226
- msgstr ""
1227
-
1228
- #: include/deactivate_modal.php:159
1229
- msgid "I only needed the plugin for a short period"
1230
- msgstr ""
1231
-
1232
- #: include/deactivate_modal.php:168
1233
- msgid "I found a better plugin"
1234
- msgstr ""
1235
-
1236
- #: include/deactivate_modal.php:171
1237
- msgid "Kindly tell us the Plugin name."
1238
- msgstr ""
1239
-
1240
- #: include/deactivate_modal.php:178
1241
- msgid "The plugin broke my site"
1242
- msgstr ""
1243
-
1244
- #: include/deactivate_modal.php:187
1245
- msgid "The plugin suddenly stopped working"
1246
- msgstr ""
1247
-
1248
- #: include/deactivate_modal.php:196
1249
- msgid "I no longer need the plugin"
1250
- msgstr ""
1251
-
1252
- #: include/deactivate_modal.php:205
1253
- msgid "It's a temporary deactivation. I'm just debugging an issue."
1254
- msgstr ""
1255
-
1256
- #: include/deactivate_modal.php:214
1257
- msgid "Other"
1258
- msgstr ""
1259
-
1260
- #: include/deactivate_modal.php:217
1261
- msgid "Kindly tell us the reason so we can improve."
1262
- msgstr ""
1263
-
1264
- #: include/deactivate_modal.php:222
1265
- msgid "Anonymous feedback"
1266
- msgstr ""
1267
-
1268
- #: include/deactivate_modal.php:223
1269
- msgid "Skip & Deactivate"
1270
- msgstr ""
1271
-
1272
- #: include/deactivate_modal.php:226
1273
- msgid "Submit & Deactivate"
1274
- msgstr ""
1275
-
1276
- #: include/deactivate_modal.php:227
1277
- msgid "Cancel"
1278
- msgstr ""
1279
-
1280
- #: include/loginpress-import-export.php:14
1281
- msgid ""
1282
- "Import/Export your LoginPress Settings for/from other sites. This will "
1283
- "export/import all the settings including Customizer settings as well."
1284
- msgstr ""
1285
-
1286
- #: include/loginpress-import-export.php:19
1287
- msgid "Import Settings:"
1288
- msgstr ""
1289
-
1290
- #: include/loginpress-import-export.php:23
1291
- msgid "Import"
1292
- msgstr ""
1293
-
1294
- #: include/loginpress-import-export.php:28
1295
- msgid "LoginPress Settings Imported Successfully."
1296
- msgstr ""
1297
-
1298
- #: include/loginpress-import-export.php:30
1299
- msgid "Select a file and click on Import to start processing."
1300
- msgstr ""
1301
-
1302
- #: include/loginpress-import-export.php:35
1303
- msgid "Export Settings:"
1304
- msgstr ""
1305
-
1306
- #: include/loginpress-import-export.php:38
1307
- msgid "Export"
1308
- msgstr ""
1309
-
1310
- #: include/loginpress-import-export.php:43
1311
- msgid "LoginPress Settings Exported Successfully!"
1312
- msgstr ""
1313
-
1314
- #: include/loginpress-import-export.php:44
1315
- msgid "Export LoginPress Settings."
1316
- msgstr ""
1317
-
1318
- #: include/loginpress-optin-form.php:301
1319
- msgid "Welcome to LoginPress"
1320
- msgstr ""
1321
-
1322
- #: include/loginpress-optin-form.php:307
1323
- #, php-format
1324
- msgid ""
1325
- "%1$s Hey %2$s, %4$s If you opt-in some data about your installation of "
1326
- "LoginPress will be sent to WPBrigade.com (This doesn't include stats)%4$s "
1327
- "and You will receive new feature updates, security notifications etc %5$sNo "
1328
- "Spam, I promise.%6$s %4$s%4$s Help us %7$sImprove LoginPress%8$s %4$s %4$s "
1329
- msgstr ""
1330
-
1331
- #: include/loginpress-optin-form.php:308
1332
- msgid "Allow and Continue "
1333
- msgstr ""
1334
-
1335
- #: include/loginpress-optin-form.php:309
1336
- msgid "Skip This Step"
1337
- msgstr ""
1338
-
1339
- #: include/loginpress-optin-form.php:311
1340
- msgid "What permissions are being granted?"
1341
- msgstr ""
1342
-
1343
- #: include/loginpress-optin-form.php:313
1344
- msgid "Your Website Overview"
1345
- msgstr ""
1346
-
1347
- #: include/loginpress-optin-form.php:314
1348
- msgid ""
1349
- "Your Site URL, WordPress & PHP version, plugins & themes. This data lets us "
1350
- "make sure this plugin always stays compatible with the most popular plugins "
1351
- "and themes."
1352
- msgstr ""
1353
-
1354
- #: include/loginpress-optin-form.php:316
1355
- msgid "Your Profile Overview"
1356
- msgstr ""
1357
-
1358
- #: include/loginpress-optin-form.php:317
1359
- msgid "Your name and email address."
1360
- msgstr ""
1361
-
1362
- #: include/loginpress-optin-form.php:319
1363
- msgid "Admin Notices"
1364
- msgstr ""
1365
-
1366
- #: include/loginpress-optin-form.php:320
1367
- msgid "Updates, Announcement, Marketing. No Spam, I promise."
1368
- msgstr ""
1369
-
1370
- #: include/loginpress-optin-form.php:322
1371
- msgid "Plugin Actions"
1372
- msgstr ""
1373
-
1374
- #: include/loginpress-optin-form.php:323
1375
- msgid ""
1376
- "Active, Deactive, Uninstallation and How you use this plugin's features and "
1377
- "settings. This is limited to usage data. It does not include any of your "
1378
- "sensitive LoginPress data, such as traffic. This data helps us learn which "
1379
- "features are most popular, so we can improve the plugin further."
1380
- msgstr ""
1381
-
1382
- #: include/loginpress-optout-form.php:103
1383
- #: include/loginpress-optout-form.php:119
1384
- msgid "Opt Out"
1385
- msgstr ""
1386
-
1387
- #: include/loginpress-optout-form.php:108
1388
- msgid ""
1389
- "We appreciate your help in making the plugin better by letting us track some "
1390
- "usage data."
1391
- msgstr ""
1392
-
1393
- #: include/loginpress-optout-form.php:112
1394
- #, php-format
1395
- msgid ""
1396
- "Usage tracking is done in the name of making %1$s LoginPress %2$s better. "
1397
- "Making a better user experience, prioritizing new features, and more good "
1398
- "things. We'd really appreciate if you'll reconsider letting us continue with "
1399
- "the tracking."
1400
- msgstr ""
1401
-
1402
- #: include/loginpress-optout-form.php:113
1403
- #, php-format
1404
- msgid ""
1405
- "By clicking \"Opt Out\", we will no longer be sending any data to %1$s "
1406
- "LoginPress%2$s."
1407
- msgstr ""
1408
-
1409
- #: include/loginpress-optout-form.php:120
1410
- msgid "On second thought - I want to continue helping"
1411
- msgstr ""
1412
-
1413
- #: include/privacy-policy.php:13
1414
- #, php-format
1415
- msgid "%1$sPrivacy Policy%2$s."
1416
- msgstr ""
1417
-
1418
- #: include/template-loginpress.php:70
1419
- #, php-format
1420
- msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1421
- msgstr ""
1422
-
1423
- #: include/template-loginpress.php:147
1424
- msgid "https://wordpress.org/"
1425
- msgstr ""
1426
-
1427
- #: include/template-loginpress.php:148
1428
- msgid "Powered by WordPress"
1429
- msgstr ""
1430
-
1431
- #: include/template-loginpress.php:250
1432
- #, php-format
1433
- msgctxt "site"
1434
- msgid "&larr; Back to %s"
1435
- msgstr ""
1436
-
1437
- #: include/template-loginpress.php:370
1438
- #, fuzzy
1439
- #| msgid "Lost Password Text"
1440
- msgid "Lost Password"
1441
- msgstr "Wachtwoord vergeten Text"
1442
-
1443
- #: include/template-loginpress.php:393
1444
- msgid "Get New Password"
1445
- msgstr ""
1446
-
1447
- #: include/template-loginpress.php:400 include/template-loginpress.php:487
1448
- #: include/template-loginpress.php:544
1449
- msgid "Register"
1450
- msgstr ""
1451
-
1452
- #: include/template-loginpress.php:465
1453
- msgid "Registration Form"
1454
- msgstr ""
1455
-
1456
- #: include/template-loginpress.php:473
1457
- msgid "Email"
1458
- msgstr ""
1459
-
1460
- #: include/template-loginpress.php:484
1461
- msgid "Registration confirmation will be emailed to you."
1462
- msgstr ""
1463
-
1464
- #: include/template-loginpress.php:508 include/template-loginpress.php:536
1465
- msgid "Log In"
1466
- msgstr ""
1467
-
1468
- #: include/template-loginpress.php:534
1469
- msgid "Remember Me"
1470
- msgstr ""
1471
-
1472
- #: loginpress.php:277
1473
- msgid "Activate"
1474
- msgstr ""
1475
-
1476
- #: loginpress.php:342
1477
- msgid "Caps Lock is on"
1478
- msgstr ""
1479
-
1480
- #: loginpress.php:415
1481
- msgid "Vote!"
1482
- msgstr ""
1483
-
1484
- #: loginpress.php:418
1485
- msgid "Rate"
1486
- msgstr ""
1487
-
1488
- #: loginpress.php:523
1489
- #, php-format
1490
- msgid "%1$s Settings %2$s | %3$s Customize %4$s"
1491
- msgstr ""
1492
-
1493
- #: loginpress.php:527
1494
- #, php-format
1495
- msgid " | %1$s Opt Out %2$s "
1496
- msgstr ""
1497
-
1498
- #: loginpress.php:529
1499
- #, php-format
1500
- msgid " | %1$s Opt In %2$s "
1501
- msgstr ""
1502
-
1503
- #: loginpress.php:535
1504
- #, php-format
1505
- msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
1506
- msgstr ""
1507
-
1508
- #~ msgid "Footer Text Display:"
1509
- #~ msgstr "Footer Text Display:"
1510
-
1511
- #~ msgid "Logo Width"
1512
- #~ msgstr "Logo Breedte"
1513
-
1514
- #~ msgid "Logo Height"
1515
- #~ msgstr "Logo Hoogte"
1516
-
1517
- #~ msgid "Padding Bottom"
1518
- #~ msgstr "Padding Bottom"
1519
-
1520
- #~ msgid "Logo URL"
1521
- #~ msgstr "Logo-url:"
1522
-
1523
- #~ msgid "Logo Hover Test"
1524
- #~ msgstr "Logo Hover Test"
1525
-
1526
- #~ msgid "Image Size: "
1527
- #~ msgstr "Afbeeldingsgrootte:"
1528
-
1529
- #~ msgid "Customize Form"
1530
- #~ msgstr "Pas Form"
1531
-
1532
- #~ msgid "Form Height:"
1533
- #~ msgstr "Vorm Lengte:"
1534
-
1535
- #~ msgid " Border (Example: 2px dotted black) "
1536
- #~ msgstr "Border (Voorbeeld: 2px gestippelde zwart)"
1537
-
1538
- #~ msgid "Input Field Background Color"
1539
- #~ msgstr "Input Field Achtergrond Kleur"
1540
-
1541
- #~ msgid "Button Color"
1542
- #~ msgstr "Knop Kleur"
1543
-
1544
- #~ msgid "Button Border Color"
1545
- #~ msgstr "Knop Border Kleur"
1546
-
1547
- #~ msgid "Button Color (Hover)"
1548
- #~ msgstr "Knop Kleur (Hover)"
1549
-
1550
- #~ msgid "Button Border (Hover)"
1551
- #~ msgstr "Knop Border (Hover)"
1552
-
1553
- #~ msgid "Button Box Shadow"
1554
- #~ msgstr "Knoop Box Shadow"
1555
-
1556
- #~ msgid "Button Text Color"
1557
- #~ msgstr "Knop Tekst Kleur"
1558
-
1559
- #~ msgid "Message Field Border: \\n Example: 1px solid #00a0d2;"
1560
- #~ msgstr "Bericht gebied Border: \\ n Voorbeeld: 1px solid # 00a0d2;"
1561
-
1562
- #~ msgid "Header Message"
1563
- #~ msgstr "Header Message"
1564
-
1565
- #~ msgid "Header Message:"
1566
- #~ msgstr "Header Message:"
1567
-
1568
- #~ msgid "Header Message Link:"
1569
- #~ msgstr "Header Message Link:"
1570
-
1571
- #~ msgid "Header Text Color:"
1572
- #~ msgstr "Koptekst Kleur:"
1573
-
1574
- #~ msgid "Header Text Hover Color:"
1575
- #~ msgstr "Koptekst Hover Kleur:"
1576
-
1577
- #~ msgid "Header Background Color:"
1578
- #~ msgstr "Header Achtergrondkleur"
1579
-
1580
- #~ msgid "Footer"
1581
- #~ msgstr "Footer"
1582
-
1583
- #~ msgid "Footer Links 1"
1584
- #~ msgstr "Footer Links 1"
1585
-
1586
- #~ msgid "Footer Text 2"
1587
- #~ msgstr "Footer Text 2"
1588
-
1589
- #~ msgid "Footer Links 2"
1590
- #~ msgstr "Footer Links 2"
1591
-
1592
- #~ msgid "Footer Text 3"
1593
- #~ msgstr "Footer Text 3"
1594
-
1595
- #~ msgid "Footer Links 3"
1596
- #~ msgstr "Footer Links 3"
1597
-
1598
- #~ msgid "Footer Text 4"
1599
- #~ msgstr "Footer Text 4"
1600
-
1601
- #~ msgid "Footer Links 4"
1602
- #~ msgstr "Footer Links 4"
1603
-
1604
- #~ msgid "Footer Links Background Color:"
1605
- #~ msgstr "Footer Links Achtergrond Kleur:"
1606
-
1607
- #~ msgid "Customize Login Page"
1608
- #~ msgstr "Pas Inloggen Pagina"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
loginpress.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: https://WPBrigade.com/wordpress/plugins/loginpress/
5
  * Description: LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by <a href="https://wpbrigade.com/">WPBrigade</a> which allows you to completely change the layout of login, register and forgot password forms.
6
- * Version: 1.1.24
7
  * Author: WPBrigade
8
  * Author URI: https://WPBrigade.com/
9
  * Text Domain: loginpress
@@ -22,7 +22,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
22
  /**
23
  * @var string
24
  */
25
- public $version = '1.1.24';
26
 
27
  /**
28
  * @var The single instance of the class
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
  * Plugin URI: https://WPBrigade.com/wordpress/plugins/loginpress/
5
  * Description: LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by <a href="https://wpbrigade.com/">WPBrigade</a> which allows you to completely change the layout of login, register and forgot password forms.
6
+ * Version: 1.1.25
7
  * Author: WPBrigade
8
  * Author URI: https://WPBrigade.com/
9
  * Text Domain: loginpress
22
  /**
23
  * @var string
24
  */
25
+ public $version = '1.1.25';
26
 
27
  /**
28
  * @var The single instance of the class
readme.txt CHANGED
@@ -3,12 +3,12 @@ Requires at least: 4.0
3
  Tested up to: 5.2
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com
6
- Tags: wp-login, login, login customizer, custom login, wordpress login, login customizer, custom login page, login error, login page style, loginpress
7
- Stable tag: 1.1.24
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- LoginPress is a WordPress Custom Login Page Customizer plugin allows you to easily customize the layout of login, admin login, client login, register and forgot password forms/pages.
12
 
13
  == Description ==
14
 
@@ -214,7 +214,11 @@ Please visit <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpre
214
 
215
  == Changelog ==
216
 
217
- = 1.1.24 - 2019-05-09 =
 
 
 
 
218
  * Bugfix: login_headertitle hook has been deprecated in >= 5.2 versions.
219
  * Enhancement: Allow startup license to download loginpress add-ons from add-ons page.
220
  * Compatibility: Compatible with WordPress 5.2
@@ -481,5 +485,5 @@ Please visit <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpre
481
 
482
  == Upgrade Notice ==
483
 
484
- = 1.1.24 =
485
  * Important Release, upgrade immediately - Introducing Background video feature.
3
  Tested up to: 5.2
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com
6
+ Tags: wp-login, login, login customizer, custom login, wordpress login,
7
+ Stable tag: 1.1.25
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ LoginPress is a Custom Login Page Customizer plugin allows you to easily customize the layout of login, admin login, client login, register pages.
12
 
13
  == Description ==
14
 
214
 
215
  == Changelog ==
216
 
217
+ = 1.1.25 - 2019-05-25 =
218
+ * Bugfix: Compatible Network sites with WordPress 5.2.
219
+ * Enhancement: Code refactoring.
220
+
221
+ = 1.1.24 - 2019-05-10 =
222
  * Bugfix: login_headertitle hook has been deprecated in >= 5.2 versions.
223
  * Enhancement: Allow startup license to download loginpress add-ons from add-ons page.
224
  * Compatibility: Compatible with WordPress 5.2
485
 
486
  == Upgrade Notice ==
487
 
488
+ = 1.1.25=
489
  * Important Release, upgrade immediately - Introducing Background video feature.