Custom Login Page Customizer | LoginPress - Version 1.1.10

Version Description

  • 2018-09-11 =
  • Update: language files.
  • Update: Documentation link in readme.txt
  • Enhancement: Code refactoring.
Download this release

Release Info

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

Code changes from version 1.1.9 to 1.1.10

custom.php CHANGED
@@ -217,22 +217,22 @@ class LoginPress_Entities {
217
  */
218
  public function customize_login_panel( $wp_customize ) {
219
 
220
- include LOGINPRESS_ROOT_PATH .'classes/control-presets.php';
221
 
222
- include LOGINPRESS_ROOT_PATH .'classes/controls/background-gallery.php';
223
 
224
- include LOGINPRESS_ROOT_PATH .'classes/controls/range.php';
225
 
226
- include LOGINPRESS_ROOT_PATH .'classes/controls/group.php';
227
 
228
- include LOGINPRESS_ROOT_PATH .'classes/controls/radio-button.php';
229
 
230
- include LOGINPRESS_ROOT_PATH .'classes/controls/miscellaneous.php';
231
 
232
- include LOGINPRESS_ROOT_PATH .'include/customizer-strings.php';
233
 
234
  if ( ! has_action( 'loginpress_pro_add_template' ) ) :
235
- include LOGINPRESS_ROOT_PATH .'classes/class-loginpress-promo.php';
236
  endif;
237
 
238
  // =============================
@@ -331,7 +331,7 @@ class LoginPress_Entities {
331
  $wp_customize->add_section( 'customize_logo_section', array(
332
  'title' => __( 'Logo', 'loginpress' ),
333
  'description' => __( 'Customize Your Logo Section', 'loginpress' ),
334
- 'priority' => 5,
335
  'panel' => 'loginpress_panel',
336
  ) );
337
 
@@ -351,14 +351,14 @@ class LoginPress_Entities {
351
  'settings' => 'loginpress_customization[setting_logo_display]',
352
  'label' => __( 'Disable Logo:', 'loginpress'),
353
  'section' => 'customize_logo_section',
354
- 'priority' => 4,
355
- 'type' => 'ios',// light, ios, flat
356
  ) ) );
357
 
358
  $wp_customize->add_setting( 'loginpress_customization[setting_logo]', array(
359
  'type' => 'option',
360
  'capability' => 'manage_options',
361
- 'transport' => 'postMessage'
362
  ) );
363
 
364
  $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'loginpress_customization[setting_logo]', array(
217
  */
218
  public function customize_login_panel( $wp_customize ) {
219
 
220
+ include LOGINPRESS_ROOT_PATH . 'classes/control-presets.php';
221
 
222
+ include LOGINPRESS_ROOT_PATH . 'classes/controls/background-gallery.php';
223
 
224
+ include LOGINPRESS_ROOT_PATH . 'classes/controls/range.php';
225
 
226
+ include LOGINPRESS_ROOT_PATH . 'classes/controls/group.php';
227
 
228
+ include LOGINPRESS_ROOT_PATH . 'classes/controls/radio-button.php';
229
 
230
+ include LOGINPRESS_ROOT_PATH . 'classes/controls/miscellaneous.php';
231
 
232
+ include LOGINPRESS_ROOT_PATH . 'include/customizer-strings.php';
233
 
234
  if ( ! has_action( 'loginpress_pro_add_template' ) ) :
235
+ include LOGINPRESS_ROOT_PATH . 'classes/class-loginpress-promo.php';
236
  endif;
237
 
238
  // =============================
331
  $wp_customize->add_section( 'customize_logo_section', array(
332
  'title' => __( 'Logo', 'loginpress' ),
333
  'description' => __( 'Customize Your Logo Section', 'loginpress' ),
334
+ 'priority' => 5,
335
  'panel' => 'loginpress_panel',
336
  ) );
337
 
351
  'settings' => 'loginpress_customization[setting_logo_display]',
352
  'label' => __( 'Disable Logo:', 'loginpress'),
353
  'section' => 'customize_logo_section',
354
+ 'priority' => 4,
355
+ 'type' => 'ios', // light, ios, flat
356
  ) ) );
357
 
358
  $wp_customize->add_setting( 'loginpress_customization[setting_logo]', array(
359
  'type' => 'option',
360
  'capability' => 'manage_options',
361
+ 'transport' => 'postMessage'
362
  ) );
363
 
364
  $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'loginpress_customization[setting_logo]', array(
include/customizer-strings.php CHANGED
@@ -2,6 +2,7 @@
2
  /**
3
  * Customizer strings for the logo control.
4
  * @since 1.1.3
 
5
  */
6
  $logo_range_control = array( 'customize_logo_width', 'customize_logo_height', 'customize_logo_padding' );
7
  $logo_range_default = array( '84', '84', '0' );
@@ -54,16 +55,16 @@ $form_range_label = array(
54
  __( 'Remember Me Font Size:', 'loginpress' ) );
55
  $form_range_attrs = array(
56
  array( 'min' => 320, 'max' => 800, 'step' => 1, 'suffix' => 'px' ), // form width
57
- array( 'min' => 0, 'max' => 500, 'step' => 1, 'suffix' => 'px' ), // form height
58
- array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => 'px' ), // form radius
59
- array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ), // form shadow
60
- array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => '%' ), // form Opacity
61
- array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => '%' ), // textfield width
62
- array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ), // textfield radius
63
- array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ), // textfield shadow
64
- array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => '%' ), // textfield Opacity
65
- array( 'min' => 9, 'max' => 30, 'step' => 1, 'suffix' => 'px' ), // testfield label
66
- array( 'min' => 9, 'max' => 30, 'step' => 1, 'suffix' => 'px' ) // readme label
67
  );
68
  $form_range_unit = array( 'px', 'px', 'px', 'px', '%', '%', 'px', 'px', '%', 'px', 'px' );
69
  //--------------------
@@ -108,15 +109,15 @@ $button_range_default = array( '100', '13', '13', '5', '0', '80', '15' );
108
  $button_range_label = array( __( 'Button Size:', 'loginpress' ), __( 'Button Top Padding:', 'loginpress' ), __( 'Button Bottom Padding:', 'loginpress' ), __( 'Radius:', 'loginpress' ), __( 'Shadow:', 'loginpress' ), __( 'Shadow Opacity:', 'loginpress' ), __( 'Text Size:', 'loginpress' ) );
109
  $button_range_attrs = array(
110
  array( 'min' => 20, 'max' => 100, 'step' => 1, 'suffix' => '%' ),
111
- array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ),
112
- array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ),
113
- array( 'min' => 0, 'max' => 50, 'step' => 1, 'suffix' => 'px' ),
114
- array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ),
115
- array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => 'px' ),
116
- array( 'min' => 7, 'max' => 35, 'step' => 1, 'suffix' => 'px' ),
117
  );
118
  $button_range_unit = array( '%', 'px', 'px', 'px', 'px', '%', 'px' );
119
- /** -----------------Sectin Button Beauty------------------ */
120
 
121
  /**
122
  * [ Customizer strings for the group close. ]
2
  /**
3
  * Customizer strings for the logo control.
4
  * @since 1.1.3
5
+ * @version 1.1.10
6
  */
7
  $logo_range_control = array( 'customize_logo_width', 'customize_logo_height', 'customize_logo_padding' );
8
  $logo_range_default = array( '84', '84', '0' );
55
  __( 'Remember Me Font Size:', 'loginpress' ) );
56
  $form_range_attrs = array(
57
  array( 'min' => 320, 'max' => 800, 'step' => 1, 'suffix' => 'px' ), // form width
58
+ array( 'min' => 0, 'max' => 500, 'step' => 1, 'suffix' => 'px' ), // form height
59
+ array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => 'px' ), // form radius
60
+ array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ), // form shadow
61
+ array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => '%' ), // form Opacity
62
+ array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => '%' ), // textfield width
63
+ array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ), // textfield radius
64
+ array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ), // textfield shadow
65
+ array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => '%' ), // textfield Opacity
66
+ array( 'min' => 9, 'max' => 30, 'step' => 1, 'suffix' => 'px' ), // testfield label
67
+ array( 'min' => 9, 'max' => 30, 'step' => 1, 'suffix' => 'px' ) // readme label
68
  );
69
  $form_range_unit = array( 'px', 'px', 'px', 'px', '%', '%', 'px', 'px', '%', 'px', 'px' );
70
  //--------------------
109
  $button_range_label = array( __( 'Button Size:', 'loginpress' ), __( 'Button Top Padding:', 'loginpress' ), __( 'Button Bottom Padding:', 'loginpress' ), __( 'Radius:', 'loginpress' ), __( 'Shadow:', 'loginpress' ), __( 'Shadow Opacity:', 'loginpress' ), __( 'Text Size:', 'loginpress' ) );
110
  $button_range_attrs = array(
111
  array( 'min' => 20, 'max' => 100, 'step' => 1, 'suffix' => '%' ),
112
+ array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ),
113
+ array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ),
114
+ array( 'min' => 0, 'max' => 50, 'step' => 1, 'suffix' => 'px' ),
115
+ array( 'min' => 0, 'max' => 30, 'step' => 1, 'suffix' => 'px' ),
116
+ array( 'min' => 0, 'max' => 100, 'step' => 1, 'suffix' => 'px' ),
117
+ array( 'min' => 7, 'max' => 35, 'step' => 1, 'suffix' => 'px' ),
118
  );
119
  $button_range_unit = array( '%', 'px', 'px', 'px', 'px', '%', 'px' );
120
+ /** -----------------Section Button Beauty------------------ */
121
 
122
  /**
123
  * [ Customizer strings for the group close. ]
include/loginpress-optin-form.php CHANGED
@@ -310,17 +310,17 @@ echo '<h1> <img id="loginpress-logo-text" src="' . plugins_url( 'img/loginpress.
310
  echo '<div id="loginpress-splash-permissions" class="loginpress-splash-box">';
311
  echo '<a id="loginpress-splash-permissions-toggle" href="#" >' . __( 'What permissions are being granted?', 'loginpress' ) . '</a>';
312
  echo '<div id="loginpress-splash-permissions-dropdown" style="display: none;">';
313
- echo '<h3>' . __( 'Your Website Overview', 'loginpress' ) . '</h3>';
314
- echo '<p>' . __( 'Your Site URL, WordPress & PHP version, plugins & themes. This data lets us make sure this plugin always stays compatible with the most popular plugins and themes.', 'loginpress' ) . '</p>';
315
 
316
- echo '<h3>' . __( 'Your Profile Overview', 'loginpress' ) . '</h3>';
317
- echo '<p>' . __( 'Your name and email address.', 'loginpress' ) . '</p>';
318
 
319
- echo '<h3>' . __( 'Admin Notices', 'loginpress' ) . '</h3>';
320
- echo '<p>' . __( "Updates, Announcement, Marketing. No Spam, I promise.", 'loginpress' ) . '</p>';
321
 
322
- echo '<h3>' . __( 'Plugin Actions', 'loginpress' ) . '</h3>';
323
- echo '<p>' . __( "Active, Deactive, Uninstallation and How you use this plugin's features and settings. This is limited to usage data. It does not include any of your sensitive LoginPress data, such as traffic. This data helps us learn which features are most popular, so we can improve the plugin further.", 'loginpress' ) . '</p>';
324
  echo '</div>';
325
  echo '</div>';
326
  echo '</div>';
310
  echo '<div id="loginpress-splash-permissions" class="loginpress-splash-box">';
311
  echo '<a id="loginpress-splash-permissions-toggle" href="#" >' . __( 'What permissions are being granted?', 'loginpress' ) . '</a>';
312
  echo '<div id="loginpress-splash-permissions-dropdown" style="display: none;">';
313
+ echo '<h3>' . __( 'Your Website Overview', 'loginpress' ) . '</h3>';
314
+ echo '<p>' . __( 'Your Site URL, WordPress & PHP version, plugins & themes. This data lets us make sure this plugin always stays compatible with the most popular plugins and themes.', 'loginpress' ) . '</p>';
315
 
316
+ echo '<h3>' . __( 'Your Profile Overview', 'loginpress' ) . '</h3>';
317
+ echo '<p>' . __( 'Your name and email address.', 'loginpress' ) . '</p>';
318
 
319
+ echo '<h3>' . __( 'Admin Notices', 'loginpress' ) . '</h3>';
320
+ echo '<p>' . __( "Updates, Announcement, Marketing. No Spam, I promise.", 'loginpress' ) . '</p>';
321
 
322
+ echo '<h3>' . __( 'Plugin Actions', 'loginpress' ) . '</h3>';
323
+ echo '<p>' . __( "Active, Deactive, Uninstallation and How you use this plugin's features and settings. This is limited to usage data. It does not include any of your sensitive LoginPress data, such as traffic. This data helps us learn which features are most popular, so we can improve the plugin further.", 'loginpress' ) . '</p>';
324
  echo '</div>';
325
  echo '</div>';
326
  echo '</div>';
languages/loginpress-ar.mo CHANGED
Binary file
languages/loginpress-ar.po CHANGED
@@ -1,484 +1,758 @@
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
@@ -503,100 +777,611 @@ 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
- #~ msgid "Login Logo"
599
- #~ msgstr "شعار تسجيل الدخول"
600
 
601
  #~ msgid "Logo Width"
602
  #~ msgstr "مقاس عرض الشعار"
@@ -613,39 +1398,21 @@ msgstr ""
613
  #~ msgid "Logo Hover Test"
614
  #~ msgstr "شعار تحوم اختبار"
615
 
616
- #~ msgid "Background Color"
617
- #~ msgstr "لون الخلفية"
618
-
619
  #~ msgid "Image Size: "
620
  #~ msgstr "حجم الصورة"
621
 
622
  #~ msgid "Customize Form"
623
  #~ msgstr "تخصيص نموذج"
624
 
625
- #~ msgid "Form Background Color"
626
- #~ msgstr "لون الخلفية"
627
-
628
  #~ msgid "Form Height:"
629
  #~ msgstr "شكل الطول:"
630
 
631
  #~ msgid " Border (Example: 2px dotted black) "
632
  #~ msgstr "الحدود (على سبيل المثال:2px dotted black"
633
 
634
- #~ msgid "Input Text Field Width"
635
- #~ msgstr "إدخال النص عرض الحقل"
636
-
637
- #~ msgid "Input Text Field Margin"
638
- #~ msgstr "إدخال النص الهامش الميدان"
639
-
640
  #~ msgid "Input Field Background Color"
641
  #~ msgstr "حقل إدخال لون الخلفية"
642
 
643
- #~ msgid "Input Field Text Color"
644
- #~ msgstr "لون الخط حقل الإدخال"
645
-
646
- #~ msgid "Label Color"
647
- #~ msgstr "تسمية اللون"
648
-
649
  #~ msgid "Button Color"
650
  #~ msgstr "لون الزر"
651
 
@@ -688,12 +1455,6 @@ msgstr ""
688
  #~ msgid "Footer"
689
  #~ msgstr "تذييل الصفحة"
690
 
691
- #~ msgid "Login Footer Links"
692
- #~ msgstr "تسجيل الدخول تذييل سريعة"
693
-
694
- #~ msgid "Footer Text 1"
695
- #~ msgstr "تذييل النص 1"
696
-
697
  #~ msgid "Footer Links 1"
698
  #~ msgstr "روابط ذيل الصفحة"
699
 
@@ -715,9 +1476,6 @@ msgstr ""
715
  #~ msgid "Footer Links 4"
716
  #~ msgstr "روابط ذيل الصفحة"
717
 
718
- #~ msgid "All Rights Reserved by:"
719
- #~ msgstr "جميع الحقوق محفوظة"
720
-
721
  #~ msgid "Footer Links Background Color:"
722
  #~ msgstr "تذييل روابط لون الخلفية:"
723
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
+ "POT-Creation-Date: 2018-08-28 15:37+0500\n"
5
+ "PO-Revision-Date: 2018-08-28 15:40+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 2.0.9\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/class-loginpress-addons.php:100
24
+ #: ../classes/class-loginpress-addons.php:185
25
+ #, php-format
26
+ msgid "%1$s Already Installed %2$s"
27
+ msgstr ""
28
+
29
+ #: ../classes/class-loginpress-addons.php:104
30
+ #: ../classes/class-loginpress-addons.php:190
31
+ #, php-format
32
+ msgid "%1$s Activate Plugin %2$s"
33
+ msgstr ""
34
+
35
+ #: ../classes/class-loginpress-addons.php:195
36
+ #, php-format
37
+ msgid "%1$s Install %2$s"
38
+ msgstr ""
39
+
40
+ #: ../classes/class-loginpress-addons.php:226
41
+ msgid "You have a lifetime license, it will never expire."
42
+ msgstr ""
43
+
44
+ #: ../classes/class-loginpress-addons.php:230
45
+ #, php-format
46
+ msgid "Your (%2$s) license key is valid until %s."
47
+ msgstr ""
48
+
49
+ #: ../classes/class-loginpress-addons.php:244
50
+ msgid "You need to activate your license to download the following add-ons."
51
+ msgstr ""
52
+
53
+ #: ../classes/class-loginpress-addons.php:257
54
+ msgid "You need to upgrade to LoginPress Pro to access these add-ons."
55
+ msgstr ""
56
+
57
+ #: ../classes/class-loginpress-addons.php:482
58
+ msgid "Extend the functionality of LoginPress with these awesome Add-ons"
59
+ msgstr ""
60
+
61
+ #: ../classes/class-loginpress-custom-password.php:45
62
+ #: ../include/customizer-strings.php:81 ../include/template-loginpress.php:518
63
+ msgid "Password"
64
+ msgstr "كلمة المرور"
65
+
66
+ #: ../classes/class-loginpress-custom-password.php:49
67
+ msgid "Confirm Password"
68
+ msgstr "تأكيد كلمة المرور"
69
+
70
+ #: ../classes/class-loginpress-custom-password.php:70
71
+ msgid "<strong>ERROR</strong>: Please enter your password twice."
72
+ msgstr ""
73
+
74
+ #: ../classes/class-loginpress-custom-password.php:74
75
+ msgid ""
76
+ "<strong>ERROR</strong>: Please enter the same password in the end password "
77
+ "fields."
78
+ msgstr ""
79
+
80
+ #: ../classes/class-loginpress-filter-plugin.php:42
81
+ #, php-format
82
+ msgid "Buy %s now"
83
+ msgstr ""
84
+
85
+ #: ../classes/class-loginpress-filter-plugin.php:43
86
+ msgid "Buy Now"
87
+ msgstr ""
88
+
89
+ #: ../classes/class-loginpress-filter-plugin.php:186
90
+ msgid "Analytify"
91
+ msgstr ""
92
+
93
+ #: ../classes/class-loginpress-filter-plugin.php:195
94
+ msgid ""
95
+ "Analytify is reshaping Google Analytics in WordPress. See Social Media, "
96
+ "Keywords, Realtime, Country, Mobile and Browsers Statistics under pages and "
97
+ "posts."
98
+ msgstr ""
99
+
100
+ #: ../classes/class-loginpress-filter-plugin.php:198
101
+ msgid "Related Posts"
102
+ msgstr ""
103
+
104
+ #: ../classes/class-loginpress-filter-plugin.php:207
105
+ msgid ""
106
+ "Related Post Thumbnails plugin is for those who want the showcase of their "
107
+ "related posts after the post detail. The plugin allows customizing thumbnail "
108
+ "sizes, display settings, and type of relations. The plugin is using original "
109
+ "WordPress taxonomy. It returns generated HTML, that is essential for page "
110
+ "load speed of blogs that use many Javascript widgets."
111
+ msgstr ""
112
+
113
+ #: ../classes/class-loginpress-filter-plugin.php:210
114
+ msgid "LoginPress Pro"
115
+ msgstr ""
116
+
117
+ #: ../classes/class-loginpress-filter-plugin.php:220
118
+ msgid ""
119
+ "LoginPress Plugin by LoginPress holds a lot of customization fields to "
120
+ "change the layout of the login page of WordPress. You can modify the look "
121
+ "and feel of login page completely even the login error messages, forgot "
122
+ "error messages, registration error messages, forget password hint message "
123
+ "and many more."
124
+ msgstr ""
125
+
126
+ #: ../classes/class-loginpress-login-order.php:69 ../custom.php:821
127
+ #: ../custom.php:1547
128
+ #, php-format
129
+ msgid "%1$sError:%2$s The username field is empty."
130
+ msgstr ""
131
+
132
+ #: ../classes/class-loginpress-login-order.php:71 ../custom.php:822
133
+ #: ../custom.php:1549
134
+ #, php-format
135
+ msgid "%1$sError:%2$s The password field is empty."
136
+ msgstr ""
137
+
138
+ #: ../classes/class-loginpress-login-order.php:92 ../custom.php:828
139
+ #, php-format
140
+ msgid "%1$sError:%2$s Invalid Email Address"
141
+ msgstr ""
142
+
143
+ #: ../classes/class-loginpress-login-order.php:114 ../custom.php:820
144
+ #: ../custom.php:1543
145
+ #, php-format
146
+ msgid "%1$sError:%2$s Invalid Username."
147
+ msgstr ""
148
+
149
+ #: ../classes/class-loginpress-promo.php:9
150
+ msgid "Google Fonts"
151
+ msgstr ""
152
+
153
+ #: ../classes/class-loginpress-promo.php:26
154
+ #: ../classes/class-loginpress-promo.php:47 ../classes/control-presets.php:74
155
  msgid "Unlock Premium Feature"
156
  msgstr ""
157
 
158
+ #: ../classes/class-loginpress-promo.php:31
159
+ msgid "reCAPTCHA"
160
  msgstr ""
161
 
162
+ #: ../classes/class-loginpress-settings-api.php:372
163
  msgid "Choose File"
164
  msgstr ""
165
 
166
+ #: ../classes/class-loginpress-settings-api.php:639
167
+ msgid "Getting Started Video"
168
  msgstr ""
169
 
170
+ #: ../classes/class-loginpress-settings-api.php:647
171
  msgid "Why Go Pro?"
172
  msgstr ""
173
 
174
+ #: ../classes/class-loginpress-settings-api.php:650
175
  msgid "Secure login with Google reCaptcha"
176
  msgstr ""
177
 
178
+ #: ../classes/class-loginpress-settings-api.php:651
179
  msgid "20+ Custom Login Themes"
180
  msgstr ""
181
 
182
+ #: ../classes/class-loginpress-settings-api.php:652
183
+ msgid "Full customization with Custom CSS & JS"
184
  msgstr ""
185
 
186
+ #: ../classes/class-loginpress-settings-api.php:657
187
  msgid "See What's In The Pro Version"
188
  msgstr ""
189
 
190
+ #: ../classes/class-loginpress-settings-api.php:666
191
  msgid "Plugin Support"
192
  msgstr ""
193
 
194
+ #: ../classes/class-loginpress-settings-api.php:669
195
  msgid "Got a Question, Idea, Problem or Praise?"
196
  msgstr ""
197
 
198
+ #: ../classes/class-loginpress-settings-api.php:671
199
  msgid "Support Request"
200
  msgstr ""
201
 
202
+ #: ../classes/class-loginpress-setup.php:53
203
  msgid "Default Settings Restored"
204
  msgstr ""
205
 
206
+ #: ../classes/class-loginpress-setup.php:60 ../custom.php:242
207
+ #: ../loginpress.php:280
208
+ msgid "LoginPress"
209
+ msgstr ""
210
+
211
+ #: ../classes/class-loginpress-setup.php:62
212
+ #: ../classes/class-loginpress-setup.php:79
213
  msgid "Settings"
214
  msgstr ""
215
 
216
+ #: ../classes/class-loginpress-setup.php:64
217
+ msgid "Customizer"
218
+ msgstr ""
219
+
220
+ #: ../classes/class-loginpress-setup.php:66
221
+ msgid "Help"
222
+ msgstr ""
223
+
224
+ #: ../classes/class-loginpress-setup.php:68
225
+ #: ../include/loginpress-import-export.php:9
226
+ msgid "Import/Export LoginPress Settings"
227
+ msgstr ""
228
+
229
+ #: ../classes/class-loginpress-setup.php:68
230
+ msgid "Import / Export"
231
+ msgstr ""
232
+
233
+ #: ../classes/class-loginpress-setup.php:70
234
+ msgid "Add-Ons"
235
+ msgstr ""
236
+
237
+ #: ../classes/class-loginpress-setup.php:80
238
  #, php-format
239
  msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
240
  msgstr ""
241
 
242
+ #: ../classes/class-loginpress-setup.php:98
243
+ msgid "Upgrade to Pro for More Features"
244
+ msgstr ""
245
+
246
+ #: ../classes/class-loginpress-setup.php:123
247
+ msgid "Session Expire"
248
+ msgstr ""
249
+
250
+ #: ../classes/class-loginpress-setup.php:124
251
+ msgid "Set the session expiration time in minutes. e.g: 10"
252
+ msgstr ""
253
+
254
+ #: ../classes/class-loginpress-setup.php:125
255
+ msgid "10"
256
+ msgstr ""
257
+
258
+ #: ../classes/class-loginpress-setup.php:148
259
+ #, fuzzy
260
+ #| msgid "Lost Password Text"
261
+ msgid "Custom Password Fields"
262
+ msgstr "فقدت كلمة المرور Text"
263
+
264
+ #: ../classes/class-loginpress-setup.php:149
265
+ msgid "Enable custom password fields on registration form."
266
+ msgstr ""
267
+
268
+ #: ../classes/class-loginpress-setup.php:154
269
+ msgid "Login Order"
270
  msgstr ""
271
 
272
+ #: ../classes/class-loginpress-setup.php:155
273
+ msgid "Enable users to login using their username and/or email address."
274
+ msgstr ""
275
+
276
+ #: ../classes/class-loginpress-setup.php:172
277
  msgid "Reset Default Settings"
278
  msgstr ""
279
 
280
+ #: ../classes/class-loginpress-setup.php:173
281
  msgid "Remove my custom settings."
282
  msgstr ""
283
 
284
+ #: ../classes/class-loginpress-setup.php:209
285
+ msgid "LoginPress - Rebranding your boring WordPress Login pages"
286
+ msgstr ""
287
+
288
+ #: ../classes/class-loginpress-setup.php:228
289
+ #, php-format
290
+ msgid "Free support is available on the %1$s plugin support forums%2$s."
291
  msgstr ""
292
 
293
+ #: ../classes/class-loginpress-setup.php:230
294
+ #, php-format
295
  msgid ""
296
+ "For premium features, add-ons and priority email support, %1$s upgrade to pro"
297
+ "%2$s."
 
298
  msgstr ""
299
 
300
+ #: ../classes/class-loginpress-setup.php:236
301
+ msgid "Download Log File"
302
+ msgstr ""
303
+
304
+ #: ../classes/class-loginpress-setup.php:290
305
+ #, fuzzy
306
+ #| msgid "Lost Password Text"
307
+ msgid "Lost Password URL"
308
+ msgstr "فقدت كلمة المرور Text"
309
+
310
+ #: ../classes/class-loginpress-setup.php:291
311
+ msgid ""
312
+ "Use WordPress default lost password URL instead of WooCommerce custom lost "
313
+ "password URL."
314
+ msgstr ""
315
+
316
+ #: ../classes/class-loginpress-setup.php:308
317
+ msgid "and LoginPress page"
318
+ msgstr ""
319
+
320
+ #: ../classes/class-loginpress-setup.php:313
321
+ msgid "Remove Settings on Uninstall"
322
+ msgstr ""
323
+
324
+ #: ../classes/class-loginpress-setup.php:314
325
+ #, php-format
326
+ msgid "This tool will remove all LoginPress settings %1$s upon uninstall."
327
+ msgstr ""
328
+
329
+ #: ../classes/control-presets.php:78
330
+ msgid "Contact us for Custom Design"
331
+ msgstr ""
332
+
333
+ #: ../classes/controls/group.php:53
334
+ msgid "Info:"
335
  msgstr ""
336
 
337
+ #: ../custom.php:243
338
  msgid "Customize Your WordPress Login Page with LoginPress :)"
339
  msgstr ""
340
 
341
+ #: ../custom.php:256
342
  msgid "Themes"
343
  msgstr ""
344
 
345
+ #: ../custom.php:257
346
  msgid "Choose Theme"
347
  msgstr ""
348
 
349
+ #: ../custom.php:270 ../custom.php:277 ../custom.php:475 ../custom.php:482
350
  msgid "Company"
351
  msgstr ""
352
 
353
+ #: ../custom.php:271 ../custom.php:282 ../custom.php:476
354
  msgid "Persona"
355
  msgstr ""
356
 
357
+ #: ../custom.php:272 ../custom.php:273 ../custom.php:477 ../custom.php:478
358
  msgid "Corporate"
359
  msgstr ""
360
 
361
+ #: ../custom.php:274 ../custom.php:479
362
  msgid "Startup"
363
  msgstr ""
364
 
365
+ #: ../custom.php:275 ../custom.php:480
366
  msgid "Wedding"
367
  msgstr ""
368
 
369
+ #: ../custom.php:276 ../custom.php:481
370
  msgid "Wedding #2"
371
  msgstr ""
372
 
373
+ #: ../custom.php:278 ../custom.php:483
374
  msgid "Bikers"
375
  msgstr ""
376
 
377
+ #: ../custom.php:279
378
  msgid "Fitness"
379
  msgstr ""
380
 
381
+ #: ../custom.php:280
382
  msgid "Shopping"
383
  msgstr ""
384
 
385
+ #: ../custom.php:281
386
  msgid "Writers"
387
  msgstr ""
388
 
389
+ #: ../custom.php:283
390
  msgid "Geek"
391
  msgstr ""
392
 
393
+ #: ../custom.php:284
394
  msgid "Innovation"
395
  msgstr ""
396
 
397
+ #: ../custom.php:285
398
  msgid "Photographers"
399
  msgstr ""
400
 
401
+ #: ../custom.php:314
402
+ #, fuzzy
403
+ #| msgid "Custom JS"
404
+ msgid "Custom Design"
405
+ msgstr "مخصص js"
406
+
407
+ #: ../custom.php:332
408
  msgid "Logo"
409
  msgstr ""
410
 
411
+ #: ../custom.php:333
412
  msgid "Customize Your Logo Section"
413
  msgstr ""
414
 
415
+ #: ../custom.php:352
416
+ msgid "Disable Logo:"
 
 
 
 
 
 
 
 
417
  msgstr ""
418
 
419
+ #: ../custom.php:365
420
+ msgid "Logo Image:"
421
  msgstr ""
422
 
423
+ #: ../custom.php:383
424
  msgid "Logo URL:"
425
  msgstr ""
426
 
427
+ #: ../custom.php:383
428
  msgid "Logo Hover Title:"
429
  msgstr ""
430
 
431
+ #: ../custom.php:409
432
  msgid "Background"
433
  msgstr "الخلفية"
434
 
435
+ #: ../custom.php:423
 
 
 
 
436
  msgid "Background Color:"
437
  msgstr ""
438
 
439
+ #: ../custom.php:442
440
+ #, fuzzy
441
+ #| msgid "Form Background Image"
442
+ msgid "Enable Background Image?"
443
+ msgstr "صورة الخلفية"
444
+
445
+ #: ../custom.php:456
446
  msgid "Background Image:"
447
  msgstr ""
448
 
449
+ #: ../custom.php:503
450
+ #, fuzzy
451
+ #| msgid "Background Color"
452
+ msgid "Background Gallery:"
453
+ msgstr "لون الخلفية"
454
+
455
+ #: ../custom.php:516
456
  msgid "Background Repeat:"
457
  msgstr "تكرار صورة الخلفية:"
458
 
459
+ #: ../custom.php:539
460
  msgid "Select Position:"
461
  msgstr ""
462
 
463
+ #: ../custom.php:564
464
  msgid "Background Image Size: "
465
  msgstr ""
466
 
467
+ #: ../custom.php:582
468
  msgid "Customize Login Form"
469
  msgstr ""
470
 
471
+ #: ../custom.php:604
472
+ msgid "Enable Form Transparency:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
473
  msgstr ""
474
 
475
+ #: ../custom.php:617
476
+ #, fuzzy
477
+ #| msgid "Form Background Image"
478
+ msgid "Form Background Image:"
479
+ msgstr "صورة الخلفية"
480
 
481
+ #: ../custom.php:744
482
  msgid "Customize Forget Form"
483
  msgstr "تخصيص نسيت نموذج"
484
 
485
+ #: ../custom.php:757
486
+ #, fuzzy
487
+ #| msgid "Forget Form Background Image"
488
+ msgid "Forget Form Background Image:"
489
  msgstr "ننسى من صورة الخلفية"
490
 
491
+ #: ../custom.php:771
492
+ #, fuzzy
493
+ #| msgid "Forget Form Background Color"
494
+ msgid "Forget Form Background Color:"
495
  msgstr "ننسى نموذج لون الخلفية"
496
 
497
+ #: ../custom.php:781
498
  msgid "Button Beauty"
499
  msgstr "الجمال زر"
500
 
501
+ #: ../custom.php:812
502
+ msgid "Error Messages"
503
+ msgstr "رسائل الخطأ"
504
 
505
+ #: ../custom.php:820 ../custom.php:1545
506
+ #, php-format
507
+ msgid "%1$sError:%2$s Invalid Password."
508
  msgstr ""
509
 
510
+ #: ../custom.php:823 ../custom.php:1551
511
+ #, php-format
512
+ msgid "%1$sError:%2$s The email address isn't correct.."
513
  msgstr ""
514
 
515
+ #: ../custom.php:824 ../custom.php:1553
516
+ #, php-format
517
+ msgid "%1$sError:%2$s Please type your email address."
518
  msgstr ""
519
 
520
+ #: ../custom.php:825 ../custom.php:1555
521
+ #, php-format
522
+ msgid ""
523
+ "%1$sError:%2$s This username is already registered. Please choose another "
524
+ "one."
525
  msgstr ""
526
 
527
+ #: ../custom.php:826 ../custom.php:1557
528
+ #, php-format
529
+ msgid ""
530
+ "%1$sError:%2$s This email is already registered, please choose another one."
531
  msgstr ""
532
 
533
+ #: ../custom.php:827 ../custom.php:1559
534
+ #, php-format
535
+ msgid "%1$sError:%2$s Invalid username or email."
536
+ msgstr ""
537
 
538
+ #: ../custom.php:830
539
  msgid "Incorrect Username Message:"
540
  msgstr "اسم المستخدم غير صحيح نص الرسالة:"
541
 
542
+ #: ../custom.php:831
543
  msgid "Incorrect Password Message:"
544
  msgstr "كلمة المرور غير صحيحة رسالة:"
545
 
546
+ #: ../custom.php:832
547
  msgid "Empty Username Message:"
548
  msgstr "فارغة اسم المستخدم نص الرسالة:"
549
 
550
+ #: ../custom.php:833
551
  msgid "Empty Password Message:"
552
  msgstr "فارغة كلمة رسالة:"
553
 
554
+ #: ../custom.php:834
555
  msgid "Invalid Email Message:"
556
  msgstr "التسويق المتوسطة: حزب الشيوعى الصينى، لافتة، والبريد الإلكتروني"
557
 
558
+ #: ../custom.php:835
559
  msgid "Empty Email Message:"
560
  msgstr "أرسل رسالة فارغة:"
561
 
562
+ #: ../custom.php:836
563
+ #, fuzzy
564
+ #| msgid "Empty Username Message:"
565
+ msgid "Username Already Exist Message:"
566
+ msgstr "فارغة اسم المستخدم نص الرسالة:"
567
+
568
+ #: ../custom.php:837
569
+ #, fuzzy
570
+ #| msgid "Empty Email Message:"
571
+ msgid "Email Already Exist Message:"
572
+ msgstr "أرسل رسالة فارغة:"
573
+
574
+ #: ../custom.php:838
575
  msgid "Forget Password Message:"
576
  msgstr "نسيت كلمة المرور الرسالة:"
577
 
578
+ #: ../custom.php:839
579
+ #, fuzzy
580
+ #| msgid "Invalid Email Message:"
581
+ msgid "Login with Email Message:"
582
+ msgstr "التسويق المتوسطة: حزب الشيوعى الصينى، لافتة، والبريد الإلكتروني"
583
+
584
+ #: ../custom.php:866
585
  msgid "Welcome Messages"
586
  msgstr "أهلا وسهلا بك الرسائل"
587
 
588
+ #: ../custom.php:875
589
  msgid "Welcome Message on Lost Password:"
590
  msgstr "رسالة ترحيب على فقدت كلمة المرور:"
591
 
592
+ #: ../custom.php:876
593
+ #, fuzzy
594
+ #| msgid "Welcome Message on Front Page:"
595
+ msgid "Welcome Message on Login Page:"
596
  msgstr "أهلا وسهلا بك رسالة على صفحتها:"
597
 
598
+ #: ../custom.php:877
599
  msgid "Welcome Message on Registration:"
600
  msgstr "رسالة ترحيب تسجيل:"
601
 
602
+ #: ../custom.php:878
603
  msgid "Logout Message:"
604
  msgstr "رسالة تسجيل الخروج:"
605
 
606
+ #: ../custom.php:879
607
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
608
  msgstr ""
609
 
610
+ #: ../custom.php:912
611
  msgid "Message Field Background Color:"
612
  msgstr "حقل رسالة لون الخلفية:"
613
 
614
+ #: ../custom.php:1024
615
  msgid "Form Footer"
616
  msgstr ""
617
 
618
+ #: ../custom.php:1046
619
+ #, fuzzy
620
+ #| msgid "Footer Text 1"
621
+ msgid "Enable Footer Text:"
622
+ msgstr "تذييل النص 1"
623
 
624
+ #: ../custom.php:1060
625
+ #, fuzzy
626
+ #| msgid "Lost Password Text"
627
+ msgid "Lost Password Text:"
628
+ msgstr "فقدت كلمة المرور Text"
629
 
630
+ #: ../custom.php:1095
631
  msgid "Footer Text Color:"
632
  msgstr "لون نص هامش الصفحة"
633
 
634
+ #: ../custom.php:1109
635
  msgid "Footer Text Hover Color:"
636
  msgstr "تذييل النص تحوم اللون:"
637
 
638
+ #: ../custom.php:1130
639
  msgid "Text Font Size:"
640
  msgstr "نص حجم الخط:"
641
 
642
+ #: ../custom.php:1146
643
  msgid "Footer Background Color:"
644
  msgstr "لون خلفية تذييل الصفحة"
645
 
646
+ #: ../custom.php:1170
647
+ msgid "Enable \"Back to\" Text:"
648
  msgstr ""
649
 
650
+ #: ../custom.php:1185
651
  msgid "\"Back to\" Text Decoration:"
652
  msgstr ""
653
 
654
+ #: ../custom.php:1205
655
  msgid "\"Back to\" Text Color:"
656
  msgstr ""
657
 
658
+ #: ../custom.php:1219
659
  msgid "\"Back to\" Text Hover Color:"
660
  msgstr ""
661
 
662
+ #: ../custom.php:1240
663
  msgid "\"Back to\" Text Font Size:"
664
  msgstr ""
665
 
666
+ #: ../custom.php:1256
667
+ #, fuzzy
668
+ #| msgid "Form Background Color"
669
+ msgid "\"Back to\" Background Color:"
670
+ msgstr "لون الخلفية"
671
+
672
+ #: ../custom.php:1281
673
+ msgid "Enable Copyright Note:"
674
  msgstr ""
675
 
676
+ #: ../custom.php:1285 ../custom.php:1449
677
+ #, php-format
678
+ msgid "© %1$s %2$s, All Rights Reserved."
679
+ msgstr "© %1$s %2$s, جميع الحقوق محفوظة."
680
+
681
+ #: ../custom.php:1292
682
  msgid "Copyright Note:"
683
  msgstr ""
684
 
685
+ #: ../custom.php:1316
686
+ msgid ""
687
+ "Show some Love. Please help others learn about this free plugin by placing "
688
+ "small link in footer. Thank you very much!"
689
+ msgstr ""
690
+
691
+ #: ../custom.php:1331
692
+ msgid "Love Position:"
693
+ msgstr ""
694
+
695
+ #: ../custom.php:1349
696
+ #, fuzzy
697
+ #| msgid "Custom CSS"
698
+ msgid "Custom CSS/JS"
699
  msgstr "CSS مخصصة"
700
 
701
+ #: ../custom.php:1362
702
+ #, fuzzy
703
+ #| msgid "Customize CSS"
704
+ msgid "Customize CSS:"
705
  msgstr "تخصيص CSS"
706
 
707
+ #: ../custom.php:1367
708
+ #, php-format
709
+ msgid ""
710
+ "Custom CSS doen't make effect live. For preview please save the setting and "
711
+ "visit %1$s login%2$s page or after save refresh the customizer."
712
+ msgstr ""
713
 
714
+ #: ../custom.php:1377
715
+ #, fuzzy
716
+ #| msgid "Customize JS"
717
+ msgid "Customize JS:"
718
  msgstr "تخصيص JS"
719
 
720
+ #: ../custom.php:1382
721
+ #, php-format
722
+ msgid ""
723
+ "Custom JS doen't make effect live. For preview please save the setting and "
724
+ "visit %1$s login%2$s page or after save refresh the customizer."
725
  msgstr ""
726
 
727
+ #: ../custom.php:1432 ../custom.php:1434
728
+ msgid "Powered by:"
729
+ msgstr "مشغل بواسطة:"
730
+
731
+ #: ../custom.php:1634 ../include/template-loginpress.php:469
732
+ msgid "Username"
733
  msgstr ""
734
 
735
+ #: ../custom.php:1636
736
+ msgid "Email Address"
737
  msgstr ""
738
 
739
+ #: ../custom.php:1703 ../include/template-loginpress.php:370
740
+ msgid ""
741
+ "Please enter your username or email address. You will receive a link to "
742
+ "create a new password via email."
743
  msgstr ""
744
 
745
+ #: ../custom.php:1711 ../include/template-loginpress.php:465
746
+ msgid "Register For This Site"
747
  msgstr ""
748
 
749
+ #: ../custom.php:1729 ../custom.php:1733
750
+ msgid "Your password has been reset."
751
  msgstr ""
752
 
753
+ #: ../custom.php:1733 ../include/template-loginpress.php:397
754
+ #: ../include/template-loginpress.php:491
755
+ msgid "Log in"
756
  msgstr ""
757
 
758
  #: ../include/class-remote-notification-client.php:126
777
  msgid "Cannot decode the response content"
778
  msgstr ""
779
 
780
+ #: ../include/create-loginpress-page.php:58
781
+ #, php-format
782
+ msgid ""
783
+ "<p>This page is used by %1$s to preview the login page in the Customizer.</p>"
784
+ msgstr ""
785
+
786
+ #: ../include/create-loginpress-page.php:63
787
+ msgctxt "Page slug"
788
+ msgid "loginpress"
789
+ msgstr ""
790
+
791
+ #: ../include/create-loginpress-page.php:64
792
+ msgctxt "Page title"
793
+ msgid "LoginPress"
794
+ msgstr ""
795
+
796
+ #: ../include/customizer-strings.php:8
797
+ msgid "Logo Width:"
798
+ msgstr ""
799
+
800
+ #: ../include/customizer-strings.php:8
801
+ msgid "Logo Height:"
802
+ msgstr ""
803
+
804
+ #: ../include/customizer-strings.php:8
805
+ msgid "Space Bottom:"
806
+ msgstr ""
807
+
808
+ #: ../include/customizer-strings.php:22
809
+ #, fuzzy
810
+ #| msgid "Input Field Text Color"
811
+ msgid "Input Fields:"
812
+ msgstr "لون الخط حقل الإدخال"
813
+
814
+ #: ../include/customizer-strings.php:23
815
+ #, fuzzy
816
+ #| msgid "Input Field Text Color"
817
+ msgid "Input Field Labels:"
818
+ msgstr "لون الخط حقل الإدخال"
819
+
820
+ #: ../include/customizer-strings.php:24
821
+ #, fuzzy
822
+ #| msgid "Login Logo"
823
+ msgid "Login Form:"
824
+ msgstr "شعار تسجيل الدخول"
825
+
826
+ #: ../include/customizer-strings.php:25
827
+ #, fuzzy
828
+ #| msgid "Lost Password Text"
829
+ msgid "Lost Your Password Text"
830
+ msgstr "فقدت كلمة المرور Text"
831
+
832
+ #: ../include/customizer-strings.php:26
833
+ msgid "Back To Site Text"
834
+ msgstr ""
835
+
836
+ #: ../include/customizer-strings.php:27
837
+ #, fuzzy
838
+ #| msgid "Login Footer Links"
839
+ msgid "LoginPress Footer Text"
840
+ msgstr "تسجيل الدخول تذييل سريعة"
841
+
842
+ #: ../include/customizer-strings.php:29
843
+ msgid ""
844
+ "This section helps you to easily Customize the login form input field "
845
+ "elements."
846
+ msgstr ""
847
+
848
+ #: ../include/customizer-strings.php:30
849
+ msgid ""
850
+ "This section helps you to easily Customize the login form input field labels."
851
+ msgstr ""
852
+
853
+ #: ../include/customizer-strings.php:31
854
+ msgid ""
855
+ "This section helps you to easily Customize the login form elements whether "
856
+ "they are form lables, fields or backgrounds."
857
+ msgstr ""
858
+
859
+ #: ../include/customizer-strings.php:32
860
+ msgid ""
861
+ " Customize the \"Lost your password\" and \"Register\" text section under "
862
+ "the form."
863
+ msgstr ""
864
+
865
+ #: ../include/customizer-strings.php:33
866
+ msgid "Customize the \"Back to\" text section under the form."
867
+ msgstr ""
868
+
869
+ #: ../include/customizer-strings.php:34
870
+ msgid ""
871
+ "Customize the copyright note and branding sections at the footer of login "
872
+ "page."
873
+ msgstr ""
874
+
875
+ #: ../include/customizer-strings.php:44
876
+ msgid "Form Width:"
877
+ msgstr "تشكيل العرض:"
878
+
879
+ #: ../include/customizer-strings.php:45
880
+ msgid "Form Minimum Height:"
881
+ msgstr ""
882
+
883
+ #: ../include/customizer-strings.php:46
884
+ #, fuzzy
885
+ #| msgid "Form Padding:"
886
+ msgid "Form Radius:"
887
+ msgstr "الحشو شكل:"
888
+
889
+ #: ../include/customizer-strings.php:47
890
+ #, fuzzy
891
+ #| msgid "Form Padding:"
892
+ msgid "Form Shadow:"
893
+ msgstr "الحشو شكل:"
894
+
895
+ #: ../include/customizer-strings.php:48
896
+ msgid "Form Shadow Opacity:"
897
+ msgstr ""
898
+
899
+ #: ../include/customizer-strings.php:49
900
+ msgid "Input Text Field Width:"
901
+ msgstr ""
902
+
903
+ #: ../include/customizer-strings.php:50
904
+ #, fuzzy
905
+ #| msgid "Input Text Field Margin"
906
+ msgid "Input Text Field Radius:"
907
+ msgstr "إدخال النص الهامش الميدان"
908
+
909
+ #: ../include/customizer-strings.php:51
910
+ #, fuzzy
911
+ #| msgid "Input Text Field Width"
912
+ msgid "Input Text Field Shadow:"
913
+ msgstr "إدخال النص عرض الحقل"
914
+
915
+ #: ../include/customizer-strings.php:52
916
+ #, fuzzy
917
+ #| msgid "Input Text Field Width"
918
+ msgid "Input Text Field Shadow Opacity:"
919
+ msgstr "إدخال النص عرض الحقل"
920
+
921
+ #: ../include/customizer-strings.php:53
922
+ #, fuzzy
923
+ #| msgid "Input Field Text Color"
924
+ msgid "Input Field Label Font Size:"
925
+ msgstr "لون الخط حقل الإدخال"
926
+
927
+ #: ../include/customizer-strings.php:54
928
+ #, fuzzy
929
+ #| msgid "Text Font Size:"
930
+ msgid "Remember Me Font Size:"
931
+ msgstr "نص حجم الخط:"
932
+
933
+ #: ../include/customizer-strings.php:73
934
+ msgid "Form Background Color:"
935
+ msgstr ""
936
+
937
+ #: ../include/customizer-strings.php:74
938
+ msgid "Input Field Background Color:"
939
+ msgstr ""
940
+
941
+ #: ../include/customizer-strings.php:75
942
+ msgid "Input Field Text Color:"
943
+ msgstr ""
944
+
945
+ #: ../include/customizer-strings.php:76
946
+ #, fuzzy
947
+ #| msgid "Input Field Text Color"
948
+ msgid "Input Field Label Color:"
949
+ msgstr "لون الخط حقل الإدخال"
950
+
951
+ #: ../include/customizer-strings.php:77
952
+ #, fuzzy
953
+ #| msgid "Label Color"
954
+ msgid "Remember me Label Color:"
955
+ msgstr "تسمية اللون"
956
+
957
+ #: ../include/customizer-strings.php:81 ../include/template-loginpress.php:382
958
+ #: ../include/template-loginpress.php:514
959
+ msgid "Username or Email Address"
960
+ msgstr ""
961
+
962
+ #: ../include/customizer-strings.php:83
963
+ msgid "Form Padding:"
964
+ msgstr "الحشو شكل:"
965
+
966
+ #: ../include/customizer-strings.php:84
967
+ msgid "Border (Example: 2px dotted black):"
968
+ msgstr ""
969
+
970
+ #: ../include/customizer-strings.php:85
971
+ msgid "Input Text Field Margin:"
972
+ msgstr ""
973
+
974
+ #: ../include/customizer-strings.php:86
975
+ #, fuzzy
976
+ #| msgid "Empty Username Message:"
977
+ msgid "Username Label:"
978
+ msgstr "فارغة اسم المستخدم نص الرسالة:"
979
+
980
+ #: ../include/customizer-strings.php:87
981
+ #, fuzzy
982
+ #| msgid "Empty Password Message:"
983
+ msgid "Password Label:"
984
+ msgstr "فارغة كلمة رسالة:"
985
+
986
+ #: ../include/customizer-strings.php:98
987
+ msgid "Button Color:"
988
+ msgstr ""
989
+
990
+ #: ../include/customizer-strings.php:99
991
+ msgid "Button Border Color:"
992
+ msgstr ""
993
+
994
+ #: ../include/customizer-strings.php:100
995
+ msgid "Button Color (Hover):"
996
+ msgstr ""
997
+
998
+ #: ../include/customizer-strings.php:101
999
+ msgid "Button Border (Hover):"
1000
+ msgstr ""
1001
+
1002
+ #: ../include/customizer-strings.php:102
1003
+ msgid "Button Box Shadow:"
1004
+ msgstr ""
1005
+
1006
+ #: ../include/customizer-strings.php:103
1007
+ msgid "Button Text Color:"
1008
+ msgstr ""
1009
+
1010
+ #: ../include/customizer-strings.php:108
1011
+ #, fuzzy
1012
+ #| msgid "Text Font Size:"
1013
+ msgid "Button Size:"
1014
+ msgstr "نص حجم الخط:"
1015
+
1016
+ #: ../include/customizer-strings.php:108
1017
+ #, fuzzy
1018
+ #| msgid "Form Padding:"
1019
+ msgid "Button Top Padding:"
1020
+ msgstr "الحشو شكل:"
1021
+
1022
+ #: ../include/customizer-strings.php:108
1023
+ #, fuzzy
1024
+ #| msgid "Form Padding:"
1025
+ msgid "Button Bottom Padding:"
1026
+ msgstr "الحشو شكل:"
1027
+
1028
+ #: ../include/customizer-strings.php:108
1029
+ msgid "Radius:"
1030
+ msgstr ""
1031
+
1032
+ #: ../include/customizer-strings.php:108
1033
+ msgid "Shadow:"
1034
+ msgstr ""
1035
+
1036
+ #: ../include/customizer-strings.php:108
1037
+ msgid "Shadow Opacity:"
1038
  msgstr ""
1039
 
1040
+ #: ../include/customizer-strings.php:108
1041
+ #, fuzzy
1042
+ #| msgid "Text Font Size:"
1043
+ msgid "Text Size:"
1044
+ msgstr "نص حجم الخط:"
1045
+
1046
+ #: ../include/deactivate_modal.php:131
1047
+ msgid "Quick feedback about LoginPress"
1048
+ msgstr ""
1049
+
1050
+ #: ../include/deactivate_modal.php:134
1051
  msgid "If you have a moment, please let us know why you are deactivating:"
1052
  msgstr ""
1053
 
1054
+ #: ../include/deactivate_modal.php:141
1055
+ msgid " I upgraded to LoginPress Pro"
1056
+ msgstr ""
1057
+
1058
+ #: ../include/deactivate_modal.php:143
1059
+ msgid ""
1060
+ "No need to deactivate this LoginPress Core version. Pro version works as an "
1061
+ "add-on with Core version."
1062
+ msgstr ""
1063
+
1064
+ #: ../include/deactivate_modal.php:150
1065
  msgid "I only needed the plugin for a short period"
1066
  msgstr ""
1067
 
1068
+ #: ../include/deactivate_modal.php:159
1069
  msgid "I found a better plugin"
1070
  msgstr ""
1071
 
1072
+ #: ../include/deactivate_modal.php:162
1073
+ msgid "Kindly tell us the Plugin name."
1074
+ msgstr ""
1075
+
1076
+ #: ../include/deactivate_modal.php:169
1077
  msgid "The plugin broke my site"
1078
  msgstr ""
1079
 
1080
+ #: ../include/deactivate_modal.php:178
1081
  msgid "The plugin suddenly stopped working"
1082
  msgstr ""
1083
 
1084
+ #: ../include/deactivate_modal.php:187
1085
  msgid "I no longer need the plugin"
1086
  msgstr ""
1087
 
1088
+ #: ../include/deactivate_modal.php:196
1089
  msgid "It's a temporary deactivation. I'm just debugging an issue."
1090
  msgstr ""
1091
 
1092
+ #: ../include/deactivate_modal.php:205
1093
  msgid "Other"
1094
  msgstr ""
1095
 
1096
+ #: ../include/deactivate_modal.php:208
1097
  msgid "Kindly tell us the reason so we can improve."
1098
  msgstr ""
1099
 
1100
+ #: ../include/deactivate_modal.php:213
1101
  msgid "Anonymous feedback"
1102
  msgstr ""
1103
 
1104
+ #: ../include/deactivate_modal.php:214
1105
+ msgid "Skip & Deactivate"
1106
+ msgstr ""
1107
+
1108
+ #: ../include/deactivate_modal.php:217
1109
+ msgid "Submit & Deactivate"
1110
+ msgstr ""
1111
+
1112
+ #: ../include/deactivate_modal.php:218
1113
  msgid "Cancel"
1114
  msgstr ""
1115
 
1116
+ #: ../include/loginpress-import-export.php:10
1117
+ msgid ""
1118
+ "Import/Export your LoginPress Settings for/from other sites. This will "
1119
+ "export/import all the settings including Customizer settings as well."
1120
+ msgstr ""
1121
+
1122
+ #: ../include/loginpress-import-export.php:15
1123
+ msgid "Import Settings:"
1124
+ msgstr ""
1125
+
1126
+ #: ../include/loginpress-import-export.php:19
1127
+ msgid "Import"
1128
+ msgstr ""
1129
+
1130
+ #: ../include/loginpress-import-export.php:23
1131
+ msgid "LoginPress Settings Imported Successfully."
1132
+ msgstr ""
1133
+
1134
+ #: ../include/loginpress-import-export.php:25
1135
+ msgid "Select a file and click on Import to start processing."
1136
+ msgstr ""
1137
+
1138
+ #: ../include/loginpress-import-export.php:30
1139
+ msgid "Export Settings:"
1140
+ msgstr ""
1141
+
1142
+ #: ../include/loginpress-import-export.php:33
1143
+ msgid "Export"
1144
+ msgstr ""
1145
+
1146
+ #: ../include/loginpress-import-export.php:37
1147
+ msgid "LoginPress Settings Exported Successfully!"
1148
+ msgstr ""
1149
+
1150
+ #: ../include/loginpress-import-export.php:38
1151
+ msgid "Export LoginPress Settings."
1152
+ msgstr ""
1153
+
1154
+ #: ../include/loginpress-optin-form.php:301
1155
+ msgid "Welcome to LoginPress"
1156
+ msgstr ""
1157
+
1158
+ #: ../include/loginpress-optin-form.php:307
1159
+ #, php-format
1160
+ msgid ""
1161
+ "%1$s Hey %2$s, %4$s If you opt-in some data about your installation of "
1162
+ "LoginPress will be sent to WPBrigade.com (This doesn't include stats)%4$s "
1163
+ "and You will receive new feature updates, security notifications etc %5$sNo "
1164
+ "Spam, I promise.%6$s %4$s%4$s Help us %7$sImprove LoginPress%8$s %4$s %4$s "
1165
+ msgstr ""
1166
+
1167
+ #: ../include/loginpress-optin-form.php:308
1168
+ msgid "Allow and Continue "
1169
+ msgstr ""
1170
+
1171
+ #: ../include/loginpress-optin-form.php:309
1172
+ msgid "Skip This Step"
1173
+ msgstr ""
1174
+
1175
+ #: ../include/loginpress-optin-form.php:311
1176
+ msgid "What permissions are being granted?"
1177
+ msgstr ""
1178
+
1179
+ #: ../include/loginpress-optin-form.php:313
1180
+ msgid "Your Website Overview"
1181
+ msgstr ""
1182
+
1183
+ #: ../include/loginpress-optin-form.php:314
1184
+ msgid ""
1185
+ "Your Site URL, WordPress & PHP version, plugins & themes. This data lets us "
1186
+ "make sure this plugin always stays compatible with the most popular plugins "
1187
+ "and themes."
1188
+ msgstr ""
1189
+
1190
+ #: ../include/loginpress-optin-form.php:316
1191
+ msgid "Your Profile Overview"
1192
+ msgstr ""
1193
+
1194
+ #: ../include/loginpress-optin-form.php:317
1195
+ msgid "Your name and email address."
1196
+ msgstr ""
1197
+
1198
+ #: ../include/loginpress-optin-form.php:319
1199
+ msgid "Admin Notices"
1200
+ msgstr ""
1201
+
1202
+ #: ../include/loginpress-optin-form.php:320
1203
+ msgid "Updates, Announcement, Marketing. No Spam, I promise."
1204
+ msgstr ""
1205
+
1206
+ #: ../include/loginpress-optin-form.php:322
1207
+ msgid "Plugin Actions"
1208
+ msgstr ""
1209
+
1210
+ #: ../include/loginpress-optin-form.php:323
1211
+ msgid ""
1212
+ "Active, Deactive, Uninstallation and How you use this plugin's features and "
1213
+ "settings. This is limited to usage data. It does not include any of your "
1214
+ "sensitive LoginPress data, such as traffic. This data helps us learn which "
1215
+ "features are most popular, so we can improve the plugin further."
1216
+ msgstr ""
1217
+
1218
+ #: ../include/loginpress-optout-form.php:94
1219
+ #: ../include/loginpress-optout-form.php:109
1220
+ msgid "Opt Out"
1221
+ msgstr ""
1222
+
1223
+ #: ../include/loginpress-optout-form.php:98
1224
+ msgid ""
1225
+ "We appreciate your help in making the plugin better by letting us track some "
1226
+ "usage data."
1227
+ msgstr ""
1228
+
1229
+ #: ../include/loginpress-optout-form.php:102
1230
+ #, php-format
1231
+ msgid ""
1232
+ "Usage tracking is done in the name of making %1$s LoginPress %2$s better. "
1233
+ "Making a better user experience, prioritizing new features, and more good "
1234
+ "things. We'd really appreciate if you'll reconsider letting us continue with "
1235
+ "the tracking."
1236
+ msgstr ""
1237
+
1238
+ #: ../include/loginpress-optout-form.php:103
1239
+ #, php-format
1240
+ msgid ""
1241
+ "By clicking \"Opt Out\", we will no longer be sending any data to %1$s "
1242
+ "LoginPress%2$s."
1243
  msgstr ""
1244
 
1245
+ #: ../include/loginpress-optout-form.php:110
1246
+ msgid "On second thought - I want to continue helping"
1247
+ msgstr ""
1248
+
1249
+ #: ../include/privacy-policy.php:13
1250
+ #, php-format
1251
+ msgid "%1$sPrivacy Policy%2$s."
1252
+ msgstr ""
1253
+
1254
+ #: ../include/template-loginpress.php:70
1255
+ #, php-format
1256
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1257
+ msgstr ""
1258
+
1259
+ #: ../include/template-loginpress.php:147
1260
+ msgid "https://wordpress.org/"
1261
+ msgstr ""
1262
+
1263
+ #: ../include/template-loginpress.php:148
1264
+ msgid "Powered by WordPress"
1265
+ msgstr ""
1266
+
1267
+ #: ../include/template-loginpress.php:250
1268
+ #, php-format
1269
+ msgctxt "site"
1270
+ msgid "&larr; Back to %s"
1271
+ msgstr ""
1272
+
1273
+ #: ../include/template-loginpress.php:370
1274
+ #, fuzzy
1275
+ #| msgid "Lost Password Text"
1276
+ msgid "Lost Password"
1277
+ msgstr "فقدت كلمة المرور Text"
1278
+
1279
+ #: ../include/template-loginpress.php:393
1280
+ msgid "Get New Password"
1281
+ msgstr ""
1282
+
1283
+ #: ../include/template-loginpress.php:400
1284
+ #: ../include/template-loginpress.php:487
1285
+ #: ../include/template-loginpress.php:544
1286
+ msgid "Register"
1287
+ msgstr ""
1288
+
1289
+ #: ../include/template-loginpress.php:465
1290
+ msgid "Registration Form"
1291
+ msgstr ""
1292
+
1293
+ #: ../include/template-loginpress.php:473
1294
+ msgid "Email"
1295
+ msgstr ""
1296
+
1297
+ #: ../include/template-loginpress.php:484
1298
+ msgid "Registration confirmation will be emailed to you."
1299
+ msgstr ""
1300
+
1301
+ #: ../include/template-loginpress.php:493
1302
+ #: ../include/template-loginpress.php:552
1303
+ #, fuzzy
1304
+ #| msgid "Lost Password Text"
1305
+ msgid "Lost your password?"
1306
+ msgstr "فقدت كلمة المرور Text"
1307
+
1308
+ #: ../include/template-loginpress.php:508
1309
+ #: ../include/template-loginpress.php:536
1310
+ msgid "Log In"
1311
+ msgstr ""
1312
+
1313
+ #: ../include/template-loginpress.php:534
1314
+ msgid "Remember Me"
1315
+ msgstr ""
1316
+
1317
+ #: ../loginpress.php:278
1318
+ msgid "Activate"
1319
+ msgstr ""
1320
+
1321
+ #: ../loginpress.php:378
1322
  msgid "Vote!"
1323
  msgstr ""
1324
 
1325
+ #: ../loginpress.php:571
1326
  msgid "Leave A Review?"
1327
  msgstr ""
1328
 
1329
+ #: ../loginpress.php:572
1330
  msgid ""
1331
  "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
1332
  "review on WordPress.org?"
1333
  msgstr ""
1334
 
1335
+ #: ../loginpress.php:574
1336
  msgid "Sure! I'd love to!"
1337
  msgstr ""
1338
 
1339
+ #: ../loginpress.php:575
1340
  msgid "I've already left a review"
1341
  msgstr ""
1342
 
1343
+ #: ../loginpress.php:576
1344
  msgid "Maybe Later"
1345
  msgstr ""
1346
 
1347
+ #: ../loginpress.php:577
1348
  msgid "Never show again"
1349
  msgstr ""
1350
 
1351
+ #: ../loginpress.php:602
1352
+ msgid "Introducing LoginPress Addons!"
1353
+ msgstr ""
1354
+
1355
+ #: ../loginpress.php:603
1356
+ msgid "Extend LoginPress with these add-ons and supercharge your login pages."
1357
+ msgstr ""
1358
+
1359
+ #: ../loginpress.php:607
1360
+ msgid "Learn More"
1361
+ msgstr ""
1362
+
1363
+ #: ../loginpress.php:666
1364
  #, php-format
1365
  msgid "%1$s Settings %2$s | %3$s Customize %4$s"
1366
  msgstr ""
1367
 
1368
+ #: ../loginpress.php:670
1369
+ #, php-format
1370
+ msgid " | %1$s Opt Out %2$s "
1371
+ msgstr ""
1372
+
1373
+ #: ../loginpress.php:672
1374
+ #, php-format
1375
+ msgid " | %1$s Opt In %2$s "
1376
+ msgstr ""
1377
+
1378
+ #: ../loginpress.php:678
1379
  #, php-format
1380
  msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #~ msgid "Footer Text Display:"
1384
+ #~ msgstr "تذييل نص العرض:"
1385
 
1386
  #~ msgid "Logo Width"
1387
  #~ msgstr "مقاس عرض الشعار"
1398
  #~ msgid "Logo Hover Test"
1399
  #~ msgstr "شعار تحوم اختبار"
1400
 
 
 
 
1401
  #~ msgid "Image Size: "
1402
  #~ msgstr "حجم الصورة"
1403
 
1404
  #~ msgid "Customize Form"
1405
  #~ msgstr "تخصيص نموذج"
1406
 
 
 
 
1407
  #~ msgid "Form Height:"
1408
  #~ msgstr "شكل الطول:"
1409
 
1410
  #~ msgid " Border (Example: 2px dotted black) "
1411
  #~ msgstr "الحدود (على سبيل المثال:2px dotted black"
1412
 
 
 
 
 
 
 
1413
  #~ msgid "Input Field Background Color"
1414
  #~ msgstr "حقل إدخال لون الخلفية"
1415
 
 
 
 
 
 
 
1416
  #~ msgid "Button Color"
1417
  #~ msgstr "لون الزر"
1418
 
1455
  #~ msgid "Footer"
1456
  #~ msgstr "تذييل الصفحة"
1457
 
 
 
 
 
 
 
1458
  #~ msgid "Footer Links 1"
1459
  #~ msgstr "روابط ذيل الصفحة"
1460
 
1476
  #~ msgid "Footer Links 4"
1477
  #~ msgstr "روابط ذيل الصفحة"
1478
 
 
 
 
1479
  #~ msgid "Footer Links Background Color:"
1480
  #~ msgstr "تذييل روابط لون الخلفية:"
1481
 
languages/loginpress-es_ES.mo CHANGED
Binary file
languages/loginpress-es_ES.po CHANGED
@@ -1,485 +1,743 @@
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__;"
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"
21
 
22
- #: classes/control-presets.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  msgid "Unlock Premium Feature"
24
  msgstr ""
25
 
26
- #: classes/control-presets.php:77
27
- msgid "Contact us for Custom Design"
28
  msgstr ""
29
 
30
- #: classes/loginpress-settings-api.php:365
31
  msgid "Choose File"
32
  msgstr ""
33
 
34
- #: classes/loginpress-settings-api.php:528
35
- msgid "Getting Started Video - 60 sec"
36
  msgstr ""
37
 
38
- #: classes/loginpress-settings-api.php:536
39
  msgid "Why Go Pro?"
40
  msgstr ""
41
 
42
- #: classes/loginpress-settings-api.php:539
43
  msgid "Secure login with Google reCaptcha"
44
  msgstr ""
45
 
46
- #: classes/loginpress-settings-api.php:540
47
  msgid "20+ Custom Login Themes"
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
 
70
- #: classes/loginpress-setup.php:52
71
  msgid "Default Settings Restored"
72
  msgstr ""
73
 
74
- #: classes/loginpress-setup.php:59 classes/loginpress-setup.php:67
 
 
 
 
75
  msgid "Settings"
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
84
- msgid "Try Premium Version"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  msgstr ""
86
 
87
- #: classes/loginpress-setup.php:93
 
 
 
 
88
  msgid "Reset Default Settings"
89
  msgstr ""
90
 
91
- #: classes/loginpress-setup.php:94
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
 
110
- #: custom.php:90
 
 
 
 
111
  msgid "Customize Your WordPress Login Page with LoginPress :)"
112
  msgstr ""
113
 
114
- #: custom.php:100
115
  msgid "Themes"
116
  msgstr ""
117
 
118
- #: custom.php:101
119
  msgid "Choose Theme"
120
  msgstr ""
121
 
122
- #: custom.php:122 custom.php:164
123
  msgid "Company"
124
  msgstr ""
125
 
126
- #: custom.php:128 custom.php:194
127
  msgid "Persona"
128
  msgstr ""
129
 
130
- #: custom.php:134 custom.php:140
131
  msgid "Corporate"
132
  msgstr ""
133
 
134
- #: custom.php:146
135
  msgid "Startup"
136
  msgstr ""
137
 
138
- #: custom.php:152
139
  msgid "Wedding"
140
  msgstr ""
141
 
142
- #: custom.php:158
143
  msgid "Wedding #2"
144
  msgstr ""
145
 
146
- #: custom.php:170
147
  msgid "Bikers"
148
  msgstr ""
149
 
150
- #: custom.php:176
151
  msgid "Fitness"
152
  msgstr ""
153
 
154
- #: custom.php:182
155
  msgid "Shopping"
156
  msgstr ""
157
 
158
- #: custom.php:188
159
  msgid "Writers"
160
  msgstr ""
161
 
162
- #: custom.php:200
163
  msgid "Geek"
164
  msgstr ""
165
 
166
- #: custom.php:206
167
  msgid "Innovation"
168
  msgstr ""
169
 
170
- #: custom.php:212
171
  msgid "Photographers"
172
  msgstr ""
173
 
174
- #: custom.php:238
175
- msgid "Logo"
176
  msgstr ""
177
 
178
- #: custom.php:239
179
- msgid "Customize Your Logo Section"
180
- msgstr ""
181
-
182
- #: custom.php:251
183
- msgid "Logo Image:"
184
  msgstr ""
185
 
186
- #: custom.php:260
187
- msgid "Logo Width:"
188
  msgstr ""
189
 
190
- #: custom.php:261
191
- msgid "Logo Height:"
192
  msgstr ""
193
 
194
- #: custom.php:262
195
- msgid "Padding Bottom:"
196
  msgstr ""
197
 
198
- #: custom.php:263
199
  msgid "Logo URL:"
200
  msgstr ""
201
 
202
- #: custom.php:264
203
  msgid "Logo Hover Title:"
204
  msgstr ""
205
 
206
- #: custom.php:291
207
  msgid "Background"
208
- msgstr "Fondo"
209
-
210
- #: custom.php:306
211
- msgid "Display Background Image?"
212
  msgstr ""
213
 
214
- #: custom.php:320
215
  msgid "Background Color:"
216
  msgstr ""
217
 
218
- #: custom.php:334
 
 
 
 
 
 
219
  msgid "Background Image:"
220
  msgstr ""
221
 
222
- #: custom.php:349
 
 
 
 
 
 
223
  msgid "Background Repeat:"
224
- msgstr "Repetir Fondo:"
225
 
226
- #: custom.php:372
227
  msgid "Select Position:"
228
  msgstr ""
229
 
230
- #: custom.php:397
231
  msgid "Background Image Size: "
232
  msgstr ""
233
 
234
- #: custom.php:415
235
  msgid "Customize Login Form"
236
  msgstr ""
237
 
238
- #: custom.php:428
239
- msgid "Form Background Image"
240
- msgstr "Imagen de fondo"
241
-
242
- #: custom.php:437
243
- msgid "Form Width:"
244
- msgstr "Ancho del formulario"
245
-
246
- #: custom.php:438
247
- msgid "Form Minimum Height:"
248
- msgstr ""
249
-
250
- #: custom.php:439
251
- msgid "Form Padding:"
252
- msgstr "Formulario Relleno:"
253
-
254
- #: custom.php:440
255
- msgid "Border (Example: 2px dotted black):"
256
- msgstr ""
257
-
258
- #: custom.php:441
259
- msgid "Input Text Field Width:"
260
- msgstr ""
261
-
262
- #: custom.php:442
263
- msgid "Input Text Field Margin:"
264
- msgstr ""
265
-
266
- #: custom.php:468
267
- msgid "Form Background Color:"
268
- msgstr ""
269
-
270
- #: custom.php:469
271
- msgid "Input Field Background Color:"
272
- msgstr ""
273
-
274
- #: custom.php:470
275
- msgid "Input Field Text Color:"
276
  msgstr ""
277
 
278
- #: custom.php:471
279
- msgid "Label Color:"
280
- msgstr ""
 
 
281
 
282
- #: custom.php:504
283
  msgid "Customize Forget Form"
284
- msgstr "Personalizar Olvídate Formulario"
285
 
286
- #: custom.php:521
287
- msgid "Forget Form Background Image"
 
 
288
  msgstr "Olvídese De la imagen de fondo"
289
 
290
- #: custom.php:535
291
- msgid "Forget Form Background Color"
 
 
292
  msgstr "Olvídese Forma Color de fondo"
293
 
294
- #: custom.php:545
295
  msgid "Button Beauty"
296
- msgstr "Botón de belleza"
297
 
298
- #: custom.php:554
299
- msgid "Button Color:"
300
  msgstr ""
301
 
302
- #: custom.php:555
303
- msgid "Button Border Color:"
 
304
  msgstr ""
305
 
306
- #: custom.php:556
307
- msgid "Button Color (Hover):"
 
308
  msgstr ""
309
 
310
- #: custom.php:557
311
- msgid "Button Border (Hover):"
 
312
  msgstr ""
313
 
314
- #: custom.php:558
315
- msgid "Button Box Shadow:"
 
 
 
316
  msgstr ""
317
 
318
- #: custom.php:559
319
- msgid "Button Text Color:"
 
 
320
  msgstr ""
321
 
322
- #: custom.php:586
323
- msgid "Error Messages"
324
- msgstr "Mensajes de error"
 
325
 
326
- #: custom.php:595
327
  msgid "Incorrect Username Message:"
328
- msgstr "Mensaje incorrecta Nombre de usuario:"
329
 
330
- #: custom.php:596
331
  msgid "Incorrect Password Message:"
332
- msgstr "Mensaje contraseña incorrecta:"
333
 
334
- #: custom.php:597
335
  msgid "Empty Username Message:"
336
- msgstr "Vacío Mensaje Usuario:"
337
 
338
- #: custom.php:598
339
  msgid "Empty Password Message:"
340
- msgstr "Mensaje contraseña vacío:"
341
 
342
- #: custom.php:599
343
  msgid "Invalid Email Message:"
344
- msgstr "Mensaje de correo no válido"
345
 
346
- #: custom.php:600
347
  msgid "Empty Email Message:"
348
- msgstr "Vacío Mensaje de correo electrónico:"
 
 
 
 
349
 
350
- #: custom.php:601
 
 
 
 
351
  msgid "Forget Password Message:"
352
- msgstr "Olvide Contraseña Mensaje:"
353
 
354
- #: custom.php:628
 
 
 
 
 
 
355
  msgid "Welcome Messages"
356
- msgstr "Mensajes de bienvenida"
357
 
358
- #: custom.php:637
359
  msgid "Welcome Message on Lost Password:"
360
- msgstr "Mensaje de bienvenida a la Contraseña Perdida:"
361
 
362
- #: custom.php:638
363
- msgid "Welcome Message on Front Page:"
364
- msgstr "Mensaje de bienvenida en la página principal:"
365
 
366
- #: custom.php:639
367
  msgid "Welcome Message on Registration:"
368
- msgstr "Mensaje de bienvenida a la inscripción:"
369
 
370
- #: custom.php:640
371
  msgid "Logout Message:"
372
- msgstr "Mensaje Cerrar sesión:"
373
 
374
- #: custom.php:641
375
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
376
  msgstr ""
377
 
378
- #: custom.php:672
379
  msgid "Message Field Background Color:"
380
- msgstr "Mensaje El campo Color de fondo:"
381
 
382
- #: custom.php:856
383
  msgid "Form Footer"
384
  msgstr ""
385
 
386
- #: custom.php:870
387
- msgid "Lost Password Text"
388
- msgstr "Perdió Contraseña"
 
 
389
 
390
- #: custom.php:884
391
- msgid "Footer Text Display:"
392
- msgstr "Pie de página de visualización de texto:"
 
 
393
 
394
- #: custom.php:924
395
  msgid "Footer Text Color:"
396
- msgstr "Color de texto del pie de página"
397
 
398
- #: custom.php:938
399
  msgid "Footer Text Hover Color:"
400
- msgstr "Color de enlace del pie de página (hover)"
401
 
402
- #: custom.php:952
403
  msgid "Text Font Size:"
404
- msgstr "Texto: tamaño del tipo de letra"
405
 
406
- #: custom.php:966 custom.php:1079
407
  msgid "Footer Background Color:"
408
- msgstr "Color de Fondo del Pie de Página"
409
 
410
- #: custom.php:993
411
- msgid "\"Back to\" Text Display:"
412
  msgstr ""
413
 
414
- #: custom.php:1013
415
  msgid "\"Back to\" Text Decoration:"
416
  msgstr ""
417
 
418
- #: custom.php:1037
419
  msgid "\"Back to\" Text Color:"
420
  msgstr ""
421
 
422
- #: custom.php:1051
423
  msgid "\"Back to\" Text Hover Color:"
424
  msgstr ""
425
 
426
- #: custom.php:1065
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 ""
438
 
439
- #: custom.php:1106
440
- msgid "Custom CSS"
441
- msgstr "CSS personalizado"
 
 
 
 
 
 
 
 
 
 
442
 
443
- #: custom.php:1119
444
- msgid "Customize CSS"
 
 
445
  msgstr "Personalizar CSS"
446
 
447
- #: custom.php:1132
448
- msgid "Custom JS"
449
- msgstr "JS Personalizados"
 
 
 
450
 
451
- #: custom.php:1145
452
- msgid "Customize JS"
 
 
453
  msgstr "Personaliza JS"
454
 
455
- #: custom.php:1259
456
- msgid "Invalid Username"
 
 
 
457
  msgstr ""
458
 
459
- #: custom.php:1261
460
- msgid "Invalid Password"
461
- msgstr ""
462
 
463
- #: custom.php:1263
464
- msgid "Empty Username"
465
- msgstr ""
466
 
467
- #: custom.php:1265
468
- msgid "Empty Password"
469
- msgstr ""
470
 
471
- #: custom.php:1267
472
- msgid "The email address is incorrect."
 
 
473
  msgstr ""
474
 
475
- #: custom.php:1269
476
- msgid "The email address is empty."
477
- msgstr ""
478
 
479
- #: custom.php:1271
480
- msgid "Invalid Username or Email."
481
  msgstr ""
482
 
 
 
 
 
 
483
  #: include/class-remote-notification-client.php:126
484
  #: include/class-remote-notification-client.php:137
485
  msgid "Cheatin&#8217; huh?"
@@ -487,7 +745,7 @@ msgstr ""
487
 
488
  #: include/class-remote-notification-client.php:502
489
  msgid "Dismiss notification"
490
- msgstr ""
491
 
492
  #: include/class-remote-notification-client.php:701
493
  #, php-format
@@ -502,100 +760,620 @@ 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
 
600
  #~ msgid "Logo Width"
601
  #~ msgstr "Ancho del logo"
@@ -612,39 +1390,21 @@ msgstr ""
612
  #~ msgid "Logo Hover Test"
613
  #~ msgstr "Logo de la libración de prueba"
614
 
615
- #~ msgid "Background Color"
616
- #~ msgstr "Color de fondo"
617
-
618
  #~ msgid "Image Size: "
619
  #~ msgstr "Tamaño de la imagen"
620
 
621
  #~ msgid "Customize Form"
622
  #~ msgstr "Personaliza Formulario"
623
 
624
- #~ msgid "Form Background Color"
625
- #~ msgstr "Color de fondo del formulario"
626
-
627
  #~ msgid "Form Height:"
628
  #~ msgstr "altura mórfica"
629
 
630
  #~ msgid " Border (Example: 2px dotted black) "
631
  #~ msgstr "Fronteriza (Ejemplo: 2px negro de puntos)"
632
 
633
- #~ msgid "Input Text Field Width"
634
- #~ msgstr "Entrada de texto Ancho de campo"
635
-
636
- #~ msgid "Input Text Field Margin"
637
- #~ msgstr "Entrada de texto Margen Campo"
638
-
639
  #~ msgid "Input Field Background Color"
640
  #~ msgstr "Antecedentes Campo de entrada de color"
641
 
642
- #~ msgid "Input Field Text Color"
643
- #~ msgstr "El campo de entrada de texto en color"
644
-
645
- #~ msgid "Label Color"
646
- #~ msgstr "Etiqueta de color"
647
-
648
  #~ msgid "Button Color"
649
  #~ msgstr "Color del botón"
650
 
@@ -687,12 +1447,6 @@ msgstr ""
687
  #~ msgid "Footer"
688
  #~ msgstr "Pie de Página"
689
 
690
- #~ msgid "Login Footer Links"
691
- #~ msgstr "Enlaces Acceso de pie de página"
692
-
693
- #~ msgid "Footer Text 1"
694
- #~ msgstr "Texto del pie de página - parte 1"
695
-
696
  #~ msgid "Footer Links 1"
697
  #~ msgstr "Footer Links 1"
698
 
@@ -714,9 +1468,6 @@ msgstr ""
714
  #~ msgid "Footer Links 4"
715
  #~ msgstr "Footer Links 4"
716
 
717
- #~ msgid "All Rights Reserved by:"
718
- #~ msgstr "Todos los derechos reservados"
719
-
720
  #~ msgid "Footer Links Background Color:"
721
  #~ msgstr "Pie de página Enlaces Color de fondo:"
722
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
+ "POT-Creation-Date: 2018-08-28 12:52+0500\n"
5
+ "PO-Revision-Date: 2018-08-28 15:19+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 2.0.9\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:100
23
+ #: classes/class-loginpress-addons.php:185
24
+ #, php-format
25
+ msgid "%1$s Already Installed %2$s"
26
+ msgstr ""
27
+
28
+ #: classes/class-loginpress-addons.php:104
29
+ #: classes/class-loginpress-addons.php:190
30
+ #, php-format
31
+ msgid "%1$s Activate Plugin %2$s"
32
+ msgstr ""
33
+
34
+ #: classes/class-loginpress-addons.php:195
35
+ #, php-format
36
+ msgid "%1$s Install %2$s"
37
+ msgstr ""
38
+
39
+ #: classes/class-loginpress-addons.php:226
40
+ msgid "You have a lifetime license, it will never expire."
41
+ msgstr ""
42
+
43
+ #: classes/class-loginpress-addons.php:230
44
+ #, php-format
45
+ msgid "Your (%2$s) license key is valid until %s."
46
+ msgstr ""
47
+
48
+ #: classes/class-loginpress-addons.php:244
49
+ msgid "You need to activate your license to download the following add-ons."
50
+ msgstr ""
51
+
52
+ #: classes/class-loginpress-addons.php:257
53
+ msgid "You need to upgrade to LoginPress Pro to access these add-ons."
54
+ msgstr ""
55
+
56
+ #: classes/class-loginpress-addons.php:482
57
+ msgid "Extend the functionality of LoginPress with these awesome Add-ons"
58
+ msgstr ""
59
+
60
+ #: classes/class-loginpress-custom-password.php:45
61
+ #: include/customizer-strings.php:81 include/template-loginpress.php:518
62
+ msgid "Password"
63
+ msgstr "Contraseña"
64
+
65
+ #: classes/class-loginpress-custom-password.php:49
66
+ msgid "Confirm Password"
67
+ msgstr "Confirmar contraseña"
68
+
69
+ #: classes/class-loginpress-custom-password.php:70
70
+ msgid "<strong>ERROR</strong>: Please enter your password twice."
71
+ msgstr ""
72
+
73
+ #: classes/class-loginpress-custom-password.php:74
74
+ msgid ""
75
+ "<strong>ERROR</strong>: Please enter the same password in the end password "
76
+ "fields."
77
+ msgstr ""
78
+
79
+ #: classes/class-loginpress-filter-plugin.php:42
80
+ #, php-format
81
+ msgid "Buy %s now"
82
+ msgstr ""
83
+
84
+ #: classes/class-loginpress-filter-plugin.php:43
85
+ msgid "Buy Now"
86
+ msgstr ""
87
+
88
+ #: classes/class-loginpress-filter-plugin.php:186
89
+ msgid "Analytify"
90
+ msgstr ""
91
+
92
+ #: classes/class-loginpress-filter-plugin.php:195
93
+ msgid ""
94
+ "Analytify is reshaping Google Analytics in WordPress. See Social Media, "
95
+ "Keywords, Realtime, Country, Mobile and Browsers Statistics under pages and "
96
+ "posts."
97
+ msgstr ""
98
+
99
+ #: classes/class-loginpress-filter-plugin.php:198
100
+ msgid "Related Posts"
101
+ msgstr ""
102
+
103
+ #: classes/class-loginpress-filter-plugin.php:207
104
+ msgid ""
105
+ "Related Post Thumbnails plugin is for those who want the showcase of their "
106
+ "related posts after the post detail. The plugin allows customizing thumbnail "
107
+ "sizes, display settings, and type of relations. The plugin is using original "
108
+ "WordPress taxonomy. It returns generated HTML, that is essential for page "
109
+ "load speed of blogs that use many Javascript widgets."
110
+ msgstr ""
111
+
112
+ #: classes/class-loginpress-filter-plugin.php:210
113
+ msgid "LoginPress Pro"
114
+ msgstr ""
115
+
116
+ #: classes/class-loginpress-filter-plugin.php:220
117
+ msgid ""
118
+ "LoginPress Plugin by LoginPress holds a lot of customization fields to "
119
+ "change the layout of the login page of WordPress. You can modify the look "
120
+ "and feel of login page completely even the login error messages, forgot "
121
+ "error messages, registration error messages, forget password hint message "
122
+ "and many more."
123
+ msgstr ""
124
+
125
+ #: classes/class-loginpress-login-order.php:69 custom.php:821 custom.php:1547
126
+ #, php-format
127
+ msgid "%1$sError:%2$s The username field is empty."
128
+ msgstr ""
129
+
130
+ #: classes/class-loginpress-login-order.php:71 custom.php:822 custom.php:1549
131
+ #, php-format
132
+ msgid "%1$sError:%2$s The password field is empty."
133
+ msgstr ""
134
+
135
+ #: classes/class-loginpress-login-order.php:92 custom.php:828
136
+ #, php-format
137
+ msgid "%1$sError:%2$s Invalid Email Address"
138
+ msgstr ""
139
+
140
+ #: classes/class-loginpress-login-order.php:114 custom.php:820 custom.php:1543
141
+ #, php-format
142
+ msgid "%1$sError:%2$s Invalid Username."
143
+ msgstr ""
144
+
145
+ #: classes/class-loginpress-promo.php:9
146
+ msgid "Google Fonts"
147
+ msgstr ""
148
+
149
+ #: classes/class-loginpress-promo.php:26 classes/class-loginpress-promo.php:47
150
+ #: classes/control-presets.php:74
151
  msgid "Unlock Premium Feature"
152
  msgstr ""
153
 
154
+ #: classes/class-loginpress-promo.php:31
155
+ msgid "reCAPTCHA"
156
  msgstr ""
157
 
158
+ #: classes/class-loginpress-settings-api.php:372
159
  msgid "Choose File"
160
  msgstr ""
161
 
162
+ #: classes/class-loginpress-settings-api.php:639
163
+ msgid "Getting Started Video"
164
  msgstr ""
165
 
166
+ #: classes/class-loginpress-settings-api.php:647
167
  msgid "Why Go Pro?"
168
  msgstr ""
169
 
170
+ #: classes/class-loginpress-settings-api.php:650
171
  msgid "Secure login with Google reCaptcha"
172
  msgstr ""
173
 
174
+ #: classes/class-loginpress-settings-api.php:651
175
  msgid "20+ Custom Login Themes"
176
  msgstr ""
177
 
178
+ #: classes/class-loginpress-settings-api.php:652
179
+ msgid "Full customization with Custom CSS & JS"
180
  msgstr ""
181
 
182
+ #: classes/class-loginpress-settings-api.php:657
183
  msgid "See What's In The Pro Version"
184
  msgstr ""
185
 
186
+ #: classes/class-loginpress-settings-api.php:666
187
  msgid "Plugin Support"
188
  msgstr ""
189
 
190
+ #: classes/class-loginpress-settings-api.php:669
191
  msgid "Got a Question, Idea, Problem or Praise?"
192
  msgstr ""
193
 
194
+ #: classes/class-loginpress-settings-api.php:671
195
  msgid "Support Request"
196
  msgstr ""
197
 
198
+ #: classes/class-loginpress-setup.php:53
199
  msgid "Default Settings Restored"
200
  msgstr ""
201
 
202
+ #: classes/class-loginpress-setup.php:60 custom.php:242 loginpress.php:280
203
+ msgid "LoginPress"
204
+ msgstr ""
205
+
206
+ #: classes/class-loginpress-setup.php:62 classes/class-loginpress-setup.php:79
207
  msgid "Settings"
208
  msgstr ""
209
 
210
+ #: classes/class-loginpress-setup.php:64
211
+ msgid "Customizer"
212
+ msgstr ""
213
+
214
+ #: classes/class-loginpress-setup.php:66
215
+ msgid "Help"
216
+ msgstr ""
217
+
218
+ #: classes/class-loginpress-setup.php:68 include/loginpress-import-export.php:9
219
+ msgid "Import/Export LoginPress Settings"
220
+ msgstr ""
221
+
222
+ #: classes/class-loginpress-setup.php:68
223
+ msgid "Import / Export"
224
+ msgstr ""
225
+
226
+ #: classes/class-loginpress-setup.php:70
227
+ msgid "Add-Ons"
228
+ msgstr ""
229
+
230
+ #: classes/class-loginpress-setup.php:80
231
  #, php-format
232
  msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
233
  msgstr ""
234
 
235
+ #: classes/class-loginpress-setup.php:98
236
+ msgid "Upgrade to Pro for More Features"
237
+ msgstr ""
238
+
239
+ #: classes/class-loginpress-setup.php:123
240
+ msgid "Session Expire"
241
+ msgstr ""
242
+
243
+ #: classes/class-loginpress-setup.php:124
244
+ msgid "Set the session expiration time in minutes. e.g: 10"
245
+ msgstr ""
246
+
247
+ #: classes/class-loginpress-setup.php:125
248
+ msgid "10"
249
+ msgstr ""
250
+
251
+ #: classes/class-loginpress-setup.php:148
252
+ #, fuzzy
253
+ #| msgid "Lost Password Text"
254
+ msgid "Custom Password Fields"
255
+ msgstr "Perdió Contraseña"
256
+
257
+ #: classes/class-loginpress-setup.php:149
258
+ msgid "Enable custom password fields on registration form."
259
+ msgstr ""
260
+
261
+ #: classes/class-loginpress-setup.php:154
262
+ msgid "Login Order"
263
  msgstr ""
264
 
265
+ #: classes/class-loginpress-setup.php:155
266
+ msgid "Enable users to login using their username and/or email address."
267
+ msgstr ""
268
+
269
+ #: classes/class-loginpress-setup.php:172
270
  msgid "Reset Default Settings"
271
  msgstr ""
272
 
273
+ #: classes/class-loginpress-setup.php:173
274
  msgid "Remove my custom settings."
275
  msgstr ""
276
 
277
+ #: classes/class-loginpress-setup.php:209
278
+ msgid "LoginPress - Rebranding your boring WordPress Login pages"
279
+ msgstr ""
280
+
281
+ #: classes/class-loginpress-setup.php:228
282
+ #, php-format
283
+ msgid "Free support is available on the %1$s plugin support forums%2$s."
284
  msgstr ""
285
 
286
+ #: classes/class-loginpress-setup.php:230
287
+ #, php-format
288
  msgid ""
289
+ "For premium features, add-ons and priority email support, %1$s upgrade to pro"
290
+ "%2$s."
 
291
  msgstr ""
292
 
293
+ #: classes/class-loginpress-setup.php:236
294
+ msgid "Download Log File"
295
+ msgstr ""
296
+
297
+ #: classes/class-loginpress-setup.php:290
298
+ #, fuzzy
299
+ #| msgid "Lost Password Text"
300
+ msgid "Lost Password URL"
301
+ msgstr "Perdió Contraseña"
302
+
303
+ #: classes/class-loginpress-setup.php:291
304
+ msgid ""
305
+ "Use WordPress default lost password URL instead of WooCommerce custom lost "
306
+ "password URL."
307
+ msgstr ""
308
+
309
+ #: classes/class-loginpress-setup.php:308
310
+ msgid "and LoginPress page"
311
+ msgstr ""
312
+
313
+ #: classes/class-loginpress-setup.php:313
314
+ msgid "Remove Settings on Uninstall"
315
+ msgstr ""
316
+
317
+ #: classes/class-loginpress-setup.php:314
318
+ #, php-format
319
+ msgid "This tool will remove all LoginPress settings %1$s upon uninstall."
320
+ msgstr ""
321
+
322
+ #: classes/control-presets.php:78
323
+ msgid "Contact us for Custom Design"
324
  msgstr ""
325
 
326
+ #: classes/controls/group.php:53
327
+ msgid "Info:"
328
+ msgstr ""
329
+
330
+ #: custom.php:243
331
  msgid "Customize Your WordPress Login Page with LoginPress :)"
332
  msgstr ""
333
 
334
+ #: custom.php:256
335
  msgid "Themes"
336
  msgstr ""
337
 
338
+ #: custom.php:257
339
  msgid "Choose Theme"
340
  msgstr ""
341
 
342
+ #: custom.php:270 custom.php:277 custom.php:475 custom.php:482
343
  msgid "Company"
344
  msgstr ""
345
 
346
+ #: custom.php:271 custom.php:282 custom.php:476
347
  msgid "Persona"
348
  msgstr ""
349
 
350
+ #: custom.php:272 custom.php:273 custom.php:477 custom.php:478
351
  msgid "Corporate"
352
  msgstr ""
353
 
354
+ #: custom.php:274 custom.php:479
355
  msgid "Startup"
356
  msgstr ""
357
 
358
+ #: custom.php:275 custom.php:480
359
  msgid "Wedding"
360
  msgstr ""
361
 
362
+ #: custom.php:276 custom.php:481
363
  msgid "Wedding #2"
364
  msgstr ""
365
 
366
+ #: custom.php:278 custom.php:483
367
  msgid "Bikers"
368
  msgstr ""
369
 
370
+ #: custom.php:279
371
  msgid "Fitness"
372
  msgstr ""
373
 
374
+ #: custom.php:280
375
  msgid "Shopping"
376
  msgstr ""
377
 
378
+ #: custom.php:281
379
  msgid "Writers"
380
  msgstr ""
381
 
382
+ #: custom.php:283
383
  msgid "Geek"
384
  msgstr ""
385
 
386
+ #: custom.php:284
387
  msgid "Innovation"
388
  msgstr ""
389
 
390
+ #: custom.php:285
391
  msgid "Photographers"
392
  msgstr ""
393
 
394
+ #: custom.php:314
395
+ msgid "Custom Design"
396
  msgstr ""
397
 
398
+ #: custom.php:332
399
+ msgid "Logo"
 
 
 
 
400
  msgstr ""
401
 
402
+ #: custom.php:333
403
+ msgid "Customize Your Logo Section"
404
  msgstr ""
405
 
406
+ #: custom.php:352
407
+ msgid "Disable Logo:"
408
  msgstr ""
409
 
410
+ #: custom.php:365
411
+ msgid "Logo Image:"
412
  msgstr ""
413
 
414
+ #: custom.php:383
415
  msgid "Logo URL:"
416
  msgstr ""
417
 
418
+ #: custom.php:383
419
  msgid "Logo Hover Title:"
420
  msgstr ""
421
 
422
+ #: custom.php:409
423
  msgid "Background"
 
 
 
 
424
  msgstr ""
425
 
426
+ #: custom.php:423
427
  msgid "Background Color:"
428
  msgstr ""
429
 
430
+ #: custom.php:442
431
+ #, fuzzy
432
+ #| msgid "Form Background Image"
433
+ msgid "Enable Background Image?"
434
+ msgstr "Imagen de fondo"
435
+
436
+ #: custom.php:456
437
  msgid "Background Image:"
438
  msgstr ""
439
 
440
+ #: custom.php:503
441
+ #, fuzzy
442
+ #| msgid "Background Color"
443
+ msgid "Background Gallery:"
444
+ msgstr "Color de fondo"
445
+
446
+ #: custom.php:516
447
  msgid "Background Repeat:"
448
+ msgstr ""
449
 
450
+ #: custom.php:539
451
  msgid "Select Position:"
452
  msgstr ""
453
 
454
+ #: custom.php:564
455
  msgid "Background Image Size: "
456
  msgstr ""
457
 
458
+ #: custom.php:582
459
  msgid "Customize Login Form"
460
  msgstr ""
461
 
462
+ #: custom.php:604
463
+ msgid "Enable Form Transparency:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgstr ""
465
 
466
+ #: custom.php:617
467
+ #, fuzzy
468
+ #| msgid "Form Background Image"
469
+ msgid "Form Background Image:"
470
+ msgstr "Imagen de fondo"
471
 
472
+ #: custom.php:744
473
  msgid "Customize Forget Form"
474
+ msgstr ""
475
 
476
+ #: custom.php:757
477
+ #, fuzzy
478
+ #| msgid "Forget Form Background Image"
479
+ msgid "Forget Form Background Image:"
480
  msgstr "Olvídese De la imagen de fondo"
481
 
482
+ #: custom.php:771
483
+ #, fuzzy
484
+ #| msgid "Forget Form Background Color"
485
+ msgid "Forget Form Background Color:"
486
  msgstr "Olvídese Forma Color de fondo"
487
 
488
+ #: custom.php:781
489
  msgid "Button Beauty"
490
+ msgstr ""
491
 
492
+ #: custom.php:812
493
+ msgid "Error Messages"
494
  msgstr ""
495
 
496
+ #: custom.php:820 custom.php:1545
497
+ #, php-format
498
+ msgid "%1$sError:%2$s Invalid Password."
499
  msgstr ""
500
 
501
+ #: custom.php:823 custom.php:1551
502
+ #, php-format
503
+ msgid "%1$sError:%2$s The email address isn't correct.."
504
  msgstr ""
505
 
506
+ #: custom.php:824 custom.php:1553
507
+ #, php-format
508
+ msgid "%1$sError:%2$s Please type your email address."
509
  msgstr ""
510
 
511
+ #: custom.php:825 custom.php:1555
512
+ #, php-format
513
+ msgid ""
514
+ "%1$sError:%2$s This username is already registered. Please choose another "
515
+ "one."
516
  msgstr ""
517
 
518
+ #: custom.php:826 custom.php:1557
519
+ #, php-format
520
+ msgid ""
521
+ "%1$sError:%2$s This email is already registered, please choose another one."
522
  msgstr ""
523
 
524
+ #: custom.php:827 custom.php:1559
525
+ #, php-format
526
+ msgid "%1$sError:%2$s Invalid username or email."
527
+ msgstr ""
528
 
529
+ #: custom.php:830
530
  msgid "Incorrect Username Message:"
531
+ msgstr ""
532
 
533
+ #: custom.php:831
534
  msgid "Incorrect Password Message:"
535
+ msgstr ""
536
 
537
+ #: custom.php:832
538
  msgid "Empty Username Message:"
539
+ msgstr ""
540
 
541
+ #: custom.php:833
542
  msgid "Empty Password Message:"
543
+ msgstr ""
544
 
545
+ #: custom.php:834
546
  msgid "Invalid Email Message:"
547
+ msgstr ""
548
 
549
+ #: custom.php:835
550
  msgid "Empty Email Message:"
551
+ msgstr ""
552
+
553
+ #: custom.php:836
554
+ msgid "Username Already Exist Message:"
555
+ msgstr ""
556
 
557
+ #: custom.php:837
558
+ msgid "Email Already Exist Message:"
559
+ msgstr ""
560
+
561
+ #: custom.php:838
562
  msgid "Forget Password Message:"
563
+ msgstr ""
564
 
565
+ #: custom.php:839
566
+ #, fuzzy
567
+ #| msgid "Invalid Email Message:"
568
+ msgid "Login with Email Message:"
569
+ msgstr "Mensaje de correo no válido"
570
+
571
+ #: custom.php:866
572
  msgid "Welcome Messages"
573
+ msgstr ""
574
 
575
+ #: custom.php:875
576
  msgid "Welcome Message on Lost Password:"
577
+ msgstr ""
578
 
579
+ #: custom.php:876
580
+ msgid "Welcome Message on Login Page:"
581
+ msgstr ""
582
 
583
+ #: custom.php:877
584
  msgid "Welcome Message on Registration:"
585
+ msgstr ""
586
 
587
+ #: custom.php:878
588
  msgid "Logout Message:"
589
+ msgstr ""
590
 
591
+ #: custom.php:879
592
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
593
  msgstr ""
594
 
595
+ #: custom.php:912
596
  msgid "Message Field Background Color:"
597
+ msgstr ""
598
 
599
+ #: custom.php:1024
600
  msgid "Form Footer"
601
  msgstr ""
602
 
603
+ #: custom.php:1046
604
+ #, fuzzy
605
+ #| msgid "Footer Text 1"
606
+ msgid "Enable Footer Text:"
607
+ msgstr "Texto del pie de página - parte 1"
608
 
609
+ #: custom.php:1060
610
+ #, fuzzy
611
+ #| msgid "Lost Password Text"
612
+ msgid "Lost Password Text:"
613
+ msgstr "Perdió Contraseña"
614
 
615
+ #: custom.php:1095
616
  msgid "Footer Text Color:"
617
+ msgstr ""
618
 
619
+ #: custom.php:1109
620
  msgid "Footer Text Hover Color:"
621
+ msgstr ""
622
 
623
+ #: custom.php:1130
624
  msgid "Text Font Size:"
625
+ msgstr ""
626
 
627
+ #: custom.php:1146
628
  msgid "Footer Background Color:"
629
+ msgstr ""
630
 
631
+ #: custom.php:1170
632
+ msgid "Enable \"Back to\" Text:"
633
  msgstr ""
634
 
635
+ #: custom.php:1185
636
  msgid "\"Back to\" Text Decoration:"
637
  msgstr ""
638
 
639
+ #: custom.php:1205
640
  msgid "\"Back to\" Text Color:"
641
  msgstr ""
642
 
643
+ #: custom.php:1219
644
  msgid "\"Back to\" Text Hover Color:"
645
  msgstr ""
646
 
647
+ #: custom.php:1240
648
  msgid "\"Back to\" Text Font Size:"
649
  msgstr ""
650
 
651
+ #: custom.php:1256
652
+ #, fuzzy
653
+ #| msgid "Form Background Color"
654
+ msgid "\"Back to\" Background Color:"
655
+ msgstr "Color de fondo del formulario"
656
+
657
+ #: custom.php:1281
658
+ msgid "Enable Copyright Note:"
659
  msgstr ""
660
 
661
+ #: custom.php:1285 custom.php:1449
662
+ #, php-format
663
+ msgid "© %1$s %2$s, All Rights Reserved."
664
+ msgstr "© %1$s %2$s, Todos los derechos reservados."
665
+
666
+ #: custom.php:1292
667
  msgid "Copyright Note:"
668
  msgstr ""
669
 
670
+ #: custom.php:1316
671
+ msgid ""
672
+ "Show some Love. Please help others learn about this free plugin by placing "
673
+ "small link in footer. Thank you very much!"
674
+ msgstr ""
675
+
676
+ #: custom.php:1331
677
+ msgid "Love Position:"
678
+ msgstr ""
679
+
680
+ #: custom.php:1349
681
+ msgid "Custom CSS/JS"
682
+ msgstr ""
683
 
684
+ #: custom.php:1362
685
+ #, fuzzy
686
+ #| msgid "Customize CSS"
687
+ msgid "Customize CSS:"
688
  msgstr "Personalizar CSS"
689
 
690
+ #: custom.php:1367
691
+ #, php-format
692
+ msgid ""
693
+ "Custom CSS doen't make effect live. For preview please save the setting and "
694
+ "visit %1$s login%2$s page or after save refresh the customizer."
695
+ msgstr ""
696
 
697
+ #: custom.php:1377
698
+ #, fuzzy
699
+ #| msgid "Customize JS"
700
+ msgid "Customize JS:"
701
  msgstr "Personaliza JS"
702
 
703
+ #: custom.php:1382
704
+ #, php-format
705
+ msgid ""
706
+ "Custom JS doen't make effect live. For preview please save the setting and "
707
+ "visit %1$s login%2$s page or after save refresh the customizer."
708
  msgstr ""
709
 
710
+ #: custom.php:1432 custom.php:1434
711
+ msgid "Powered by:"
712
+ msgstr "Creado por:"
713
 
714
+ #: custom.php:1634 include/template-loginpress.php:469
715
+ msgid "Username"
716
+ msgstr "Nombre de usuario"
717
 
718
+ #: custom.php:1636
719
+ msgid "Email Address"
720
+ msgstr "Dirección de correo electrónico"
721
 
722
+ #: custom.php:1703 include/template-loginpress.php:370
723
+ msgid ""
724
+ "Please enter your username or email address. You will receive a link to "
725
+ "create a new password via email."
726
  msgstr ""
727
 
728
+ #: custom.php:1711 include/template-loginpress.php:465
729
+ msgid "Register For This Site"
730
+ msgstr "Regístrate en este sitio"
731
 
732
+ #: custom.php:1729 custom.php:1733
733
+ msgid "Your password has been reset."
734
  msgstr ""
735
 
736
+ #: custom.php:1733 include/template-loginpress.php:397
737
+ #: include/template-loginpress.php:491
738
+ msgid "Log in"
739
+ msgstr "Acceder"
740
+
741
  #: include/class-remote-notification-client.php:126
742
  #: include/class-remote-notification-client.php:137
743
  msgid "Cheatin&#8217; huh?"
745
 
746
  #: include/class-remote-notification-client.php:502
747
  msgid "Dismiss notification"
748
+ msgstr "Notificación de despido"
749
 
750
  #: include/class-remote-notification-client.php:701
751
  #, php-format
760
  msgid "Cannot decode the response content"
761
  msgstr ""
762
 
763
+ #: include/create-loginpress-page.php:58
764
+ #, php-format
765
+ msgid ""
766
+ "<p>This page is used by %1$s to preview the login page in the Customizer.</p>"
767
+ msgstr ""
768
+
769
+ #: include/create-loginpress-page.php:63
770
+ msgctxt "Page slug"
771
+ msgid "loginpress"
772
+ msgstr ""
773
+
774
+ #: include/create-loginpress-page.php:64
775
+ msgctxt "Page title"
776
+ msgid "LoginPress"
777
+ msgstr ""
778
+
779
+ #: include/customizer-strings.php:8
780
+ msgid "Logo Width:"
781
+ msgstr ""
782
+
783
+ #: include/customizer-strings.php:8
784
+ msgid "Logo Height:"
785
+ msgstr ""
786
+
787
+ #: include/customizer-strings.php:8
788
+ msgid "Space Bottom:"
789
+ msgstr ""
790
+
791
+ #: include/customizer-strings.php:22
792
+ #, fuzzy
793
+ #| msgid "Input Field Text Color"
794
+ msgid "Input Fields:"
795
+ msgstr "El campo de entrada de texto en color"
796
+
797
+ #: include/customizer-strings.php:23
798
+ #, fuzzy
799
+ #| msgid "Input Field Text Color"
800
+ msgid "Input Field Labels:"
801
+ msgstr "El campo de entrada de texto en color"
802
+
803
+ #: include/customizer-strings.php:24
804
+ #, fuzzy
805
+ #| msgid "Login Logo"
806
+ msgid "Login Form:"
807
+ msgstr "Logo de inicio de sesión"
808
+
809
+ #: include/customizer-strings.php:25
810
+ #, fuzzy
811
+ #| msgid "Lost Password Text"
812
+ msgid "Lost Your Password Text"
813
+ msgstr "Perdió Contraseña"
814
+
815
+ #: include/customizer-strings.php:26
816
+ msgid "Back To Site Text"
817
+ msgstr ""
818
+
819
+ #: include/customizer-strings.php:27
820
+ #, fuzzy
821
+ #| msgid "Login Footer Links"
822
+ msgid "LoginPress Footer Text"
823
+ msgstr "Enlaces Acceso de pie de página"
824
+
825
+ #: include/customizer-strings.php:29
826
+ msgid ""
827
+ "This section helps you to easily Customize the login form input field "
828
+ "elements."
829
+ msgstr ""
830
+
831
+ #: include/customizer-strings.php:30
832
+ msgid ""
833
+ "This section helps you to easily Customize the login form input field labels."
834
+ msgstr ""
835
+
836
+ #: include/customizer-strings.php:31
837
+ msgid ""
838
+ "This section helps you to easily Customize the login form elements whether "
839
+ "they are form lables, fields or backgrounds."
840
+ msgstr ""
841
+
842
+ #: include/customizer-strings.php:32
843
+ msgid ""
844
+ " Customize the \"Lost your password\" and \"Register\" text section under "
845
+ "the form."
846
+ msgstr ""
847
+
848
+ #: include/customizer-strings.php:33
849
+ msgid "Customize the \"Back to\" text section under the form."
850
+ msgstr ""
851
+
852
+ #: include/customizer-strings.php:34
853
+ msgid ""
854
+ "Customize the copyright note and branding sections at the footer of login "
855
+ "page."
856
+ msgstr ""
857
+
858
+ #: include/customizer-strings.php:44
859
+ msgid "Form Width:"
860
+ msgstr ""
861
+
862
+ #: include/customizer-strings.php:45
863
+ msgid "Form Minimum Height:"
864
+ msgstr ""
865
+
866
+ #: include/customizer-strings.php:46
867
+ #, fuzzy
868
+ #| msgid "Form Padding:"
869
+ msgid "Form Radius:"
870
+ msgstr "Formulario Relleno:"
871
+
872
+ #: include/customizer-strings.php:47
873
+ #, fuzzy
874
+ #| msgid "Form Padding:"
875
+ msgid "Form Shadow:"
876
+ msgstr "Formulario Relleno:"
877
+
878
+ #: include/customizer-strings.php:48
879
+ msgid "Form Shadow Opacity:"
880
+ msgstr ""
881
+
882
+ #: include/customizer-strings.php:49
883
+ msgid "Input Text Field Width:"
884
  msgstr ""
885
 
886
+ #: include/customizer-strings.php:50
887
+ #, fuzzy
888
+ #| msgid "Input Text Field Margin"
889
+ msgid "Input Text Field Radius:"
890
+ msgstr "Entrada de texto Margen Campo"
891
+
892
+ #: include/customizer-strings.php:51
893
+ #, fuzzy
894
+ #| msgid "Input Text Field Width"
895
+ msgid "Input Text Field Shadow:"
896
+ msgstr "Entrada de texto Ancho de campo"
897
+
898
+ #: include/customizer-strings.php:52
899
+ #, fuzzy
900
+ #| msgid "Input Text Field Width"
901
+ msgid "Input Text Field Shadow Opacity:"
902
+ msgstr "Entrada de texto Ancho de campo"
903
+
904
+ #: include/customizer-strings.php:53
905
+ #, fuzzy
906
+ #| msgid "Input Field Text Color"
907
+ msgid "Input Field Label Font Size:"
908
+ msgstr "El campo de entrada de texto en color"
909
+
910
+ #: include/customizer-strings.php:54
911
+ #, fuzzy
912
+ #| msgid "Text Font Size:"
913
+ msgid "Remember Me Font Size:"
914
+ msgstr "Texto: tamaño del tipo de letra"
915
+
916
+ #: include/customizer-strings.php:73
917
+ msgid "Form Background Color:"
918
+ msgstr ""
919
+
920
+ #: include/customizer-strings.php:74
921
+ msgid "Input Field Background Color:"
922
+ msgstr ""
923
+
924
+ #: include/customizer-strings.php:75
925
+ msgid "Input Field Text Color:"
926
+ msgstr ""
927
+
928
+ #: include/customizer-strings.php:76
929
+ #, fuzzy
930
+ #| msgid "Input Field Text Color"
931
+ msgid "Input Field Label Color:"
932
+ msgstr "El campo de entrada de texto en color"
933
+
934
+ #: include/customizer-strings.php:77
935
+ #, fuzzy
936
+ #| msgid "Label Color"
937
+ msgid "Remember me Label Color:"
938
+ msgstr "Etiqueta de color"
939
+
940
+ #: include/customizer-strings.php:81 include/template-loginpress.php:382
941
+ #: include/template-loginpress.php:514
942
+ msgid "Username or Email Address"
943
+ msgstr "Nombre de usuario o dirección de correo electrónico"
944
+
945
+ #: include/customizer-strings.php:83
946
+ msgid "Form Padding:"
947
+ msgstr ""
948
+
949
+ #: include/customizer-strings.php:84
950
+ msgid "Border (Example: 2px dotted black):"
951
+ msgstr ""
952
+
953
+ #: include/customizer-strings.php:85
954
+ msgid "Input Text Field Margin:"
955
+ msgstr ""
956
+
957
+ #: include/customizer-strings.php:86
958
+ #, fuzzy
959
+ #| msgid "Empty Username Message:"
960
+ msgid "Username Label:"
961
+ msgstr "Vacío Mensaje Usuario:"
962
+
963
+ #: include/customizer-strings.php:87
964
+ #, fuzzy
965
+ #| msgid "Empty Password Message:"
966
+ msgid "Password Label:"
967
+ msgstr "Mensaje contraseña vacío:"
968
+
969
+ #: include/customizer-strings.php:98
970
+ msgid "Button Color:"
971
+ msgstr ""
972
+
973
+ #: include/customizer-strings.php:99
974
+ msgid "Button Border Color:"
975
+ msgstr ""
976
+
977
+ #: include/customizer-strings.php:100
978
+ msgid "Button Color (Hover):"
979
+ msgstr ""
980
+
981
+ #: include/customizer-strings.php:101
982
+ msgid "Button Border (Hover):"
983
+ msgstr ""
984
+
985
+ #: include/customizer-strings.php:102
986
+ msgid "Button Box Shadow:"
987
+ msgstr ""
988
+
989
+ #: include/customizer-strings.php:103
990
+ msgid "Button Text Color:"
991
+ msgstr ""
992
+
993
+ #: include/customizer-strings.php:108
994
+ #, fuzzy
995
+ #| msgid "Text Font Size:"
996
+ msgid "Button Size:"
997
+ msgstr "Texto: tamaño del tipo de letra"
998
+
999
+ #: include/customizer-strings.php:108
1000
+ #, fuzzy
1001
+ #| msgid "Form Padding:"
1002
+ msgid "Button Top Padding:"
1003
+ msgstr "Formulario Relleno:"
1004
+
1005
+ #: include/customizer-strings.php:108
1006
+ #, fuzzy
1007
+ #| msgid "Form Padding:"
1008
+ msgid "Button Bottom Padding:"
1009
+ msgstr "Formulario Relleno:"
1010
+
1011
+ #: include/customizer-strings.php:108
1012
+ msgid "Radius:"
1013
+ msgstr ""
1014
+
1015
+ #: include/customizer-strings.php:108
1016
+ msgid "Shadow:"
1017
+ msgstr ""
1018
+
1019
+ #: include/customizer-strings.php:108
1020
+ msgid "Shadow Opacity:"
1021
+ msgstr ""
1022
+
1023
+ #: include/customizer-strings.php:108
1024
+ msgid "Text Size:"
1025
+ msgstr ""
1026
+
1027
+ #: include/deactivate_modal.php:131
1028
+ msgid "Quick feedback about LoginPress"
1029
+ msgstr "Comentarios rápidos sobre LoginPress"
1030
+
1031
+ #: include/deactivate_modal.php:134
1032
  msgid "If you have a moment, please let us know why you are deactivating:"
1033
  msgstr ""
1034
+ "Si tiene un momento, por favor, háganos saber por qué está desactivando:"
1035
 
1036
+ #: include/deactivate_modal.php:141
1037
+ msgid " I upgraded to LoginPress Pro"
1038
+ msgstr " Me actualicé a LoginPress Pro"
1039
+
1040
+ #: include/deactivate_modal.php:143
1041
+ msgid ""
1042
+ "No need to deactivate this LoginPress Core version. Pro version works as an "
1043
+ "add-on with Core version."
1044
  msgstr ""
1045
+ "No es necesario desactivar esta versión de LoginPress Core. La versión Pro "
1046
+ "funciona como un complemento con la versión Core."
1047
 
1048
+ #: include/deactivate_modal.php:150
1049
+ msgid "I only needed the plugin for a short period"
1050
+ msgstr "Sólo necesitaba el plugin por un corto período"
1051
+
1052
+ #: include/deactivate_modal.php:159
1053
  msgid "I found a better plugin"
1054
+ msgstr "Encontré un mejor plugin"
1055
+
1056
+ #: include/deactivate_modal.php:162
1057
+ msgid "Kindly tell us the Plugin name."
1058
+ msgstr "Amablemente díganos el nombre del complemento."
1059
 
1060
+ #: include/deactivate_modal.php:169
1061
  msgid "The plugin broke my site"
1062
+ msgstr "El plugin rompió mi sitio"
1063
 
1064
+ #: include/deactivate_modal.php:178
1065
  msgid "The plugin suddenly stopped working"
1066
+ msgstr "El complemento de repente dejó de funcionar"
1067
 
1068
+ #: include/deactivate_modal.php:187
1069
  msgid "I no longer need the plugin"
1070
+ msgstr "Ya no necesito el complemento"
1071
 
1072
+ #: include/deactivate_modal.php:196
1073
  msgid "It's a temporary deactivation. I'm just debugging an issue."
1074
+ msgstr "Es una desactivación temporal. Solo estoy depurando un problema."
1075
 
1076
+ #: include/deactivate_modal.php:205
1077
  msgid "Other"
1078
+ msgstr "Otros"
1079
 
1080
+ #: include/deactivate_modal.php:208
1081
  msgid "Kindly tell us the reason so we can improve."
1082
+ msgstr "Por favor, dínos la razón para que podamos mejorar."
1083
 
1084
+ #: include/deactivate_modal.php:213
1085
  msgid "Anonymous feedback"
1086
+ msgstr "Comentarios anónimo"
1087
 
1088
+ #: include/deactivate_modal.php:214
1089
+ msgid "Skip & Deactivate"
1090
+ msgstr "Saltar y desactivar"
1091
+
1092
+ #: include/deactivate_modal.php:217
1093
+ msgid "Submit & Deactivate"
1094
+ msgstr "Enviar y desactivar"
1095
+
1096
+ #: include/deactivate_modal.php:218
1097
  msgid "Cancel"
1098
+ msgstr "Cancelar"
1099
+
1100
+ #: include/loginpress-import-export.php:10
1101
+ msgid ""
1102
+ "Import/Export your LoginPress Settings for/from other sites. This will "
1103
+ "export/import all the settings including Customizer settings as well."
1104
  msgstr ""
1105
+ "Importe / Exporte su configuración de LoginPress para / desde otros sitios. "
1106
+ "Esto exportará / importará todas las configuraciones, incluida la "
1107
+ "configuración del personalizador también."
1108
 
1109
+ #: include/loginpress-import-export.php:15
1110
+ msgid "Import Settings:"
1111
+ msgstr "Configuración de importación:"
1112
+
1113
+ #: include/loginpress-import-export.php:19
1114
+ msgid "Import"
1115
+ msgstr "Importar"
1116
+
1117
+ #: include/loginpress-import-export.php:23
1118
+ msgid "LoginPress Settings Imported Successfully."
1119
+ msgstr "Configuración de inicio de sesión importada con éxito."
1120
+
1121
+ #: include/loginpress-import-export.php:25
1122
+ msgid "Select a file and click on Import to start processing."
1123
  msgstr ""
1124
+ "Seleccione un archivo y haga clic en Importar para comenzar el procesamiento."
1125
 
1126
+ #: include/loginpress-import-export.php:30
1127
+ msgid "Export Settings:"
1128
+ msgstr "Configuración de exportación:"
1129
+
1130
+ #: include/loginpress-import-export.php:33
1131
+ msgid "Export"
1132
+ msgstr "Exportar"
1133
+
1134
+ #: include/loginpress-import-export.php:37
1135
+ msgid "LoginPress Settings Exported Successfully!"
1136
+ msgstr "Configuración de LoginPress exportada con éxito!"
1137
+
1138
+ #: include/loginpress-import-export.php:38
1139
+ msgid "Export LoginPress Settings."
1140
+ msgstr "Exportar la configuración de LoginPress."
1141
+
1142
+ #: include/loginpress-optin-form.php:301
1143
+ msgid "Welcome to LoginPress"
1144
+ msgstr "Bienvenido a LoginPress"
1145
+
1146
+ #: include/loginpress-optin-form.php:307
1147
+ #, php-format
1148
+ msgid ""
1149
+ "%1$s Hey %2$s, %4$s If you opt-in some data about your installation of "
1150
+ "LoginPress will be sent to WPBrigade.com (This doesn't include stats)%4$s "
1151
+ "and You will receive new feature updates, security notifications etc %5$sNo "
1152
+ "Spam, I promise.%6$s %4$s%4$s Help us %7$sImprove LoginPress%8$s %4$s %4$s "
1153
  msgstr ""
1154
 
1155
+ #: include/loginpress-optin-form.php:308
1156
+ msgid "Allow and Continue "
1157
+ msgstr "Permitir y Continuar "
1158
+
1159
+ #: include/loginpress-optin-form.php:309
1160
+ msgid "Skip This Step"
1161
+ msgstr "Omita este paso"
1162
+
1163
+ #: include/loginpress-optin-form.php:311
1164
+ msgid "What permissions are being granted?"
1165
+ msgstr "¿Qué permisos se otorgan?"
1166
+
1167
+ #: include/loginpress-optin-form.php:313
1168
+ msgid "Your Website Overview"
1169
+ msgstr "Su sitio web"
1170
+
1171
+ #: include/loginpress-optin-form.php:314
1172
+ msgid ""
1173
+ "Your Site URL, WordPress & PHP version, plugins & themes. This data lets us "
1174
+ "make sure this plugin always stays compatible with the most popular plugins "
1175
+ "and themes."
1176
+ msgstr ""
1177
+ "La URL de su sitio, la versión de WordPress y PHP, los complementos y los "
1178
+ "temas. Estos datos nos permiten asegurarnos de que este complemento siempre "
1179
+ "sea compatible con los complementos y temas más populares."
1180
+
1181
+ #: include/loginpress-optin-form.php:316
1182
+ msgid "Your Profile Overview"
1183
+ msgstr "Resumen del Perfil"
1184
+
1185
+ #: include/loginpress-optin-form.php:317
1186
+ msgid "Your name and email address."
1187
+ msgstr "Su nombre y dirección de correo electrónico."
1188
+
1189
+ #: include/loginpress-optin-form.php:319
1190
+ msgid "Admin Notices"
1191
+ msgstr "Avisos administrativos"
1192
+
1193
+ #: include/loginpress-optin-form.php:320
1194
+ msgid "Updates, Announcement, Marketing. No Spam, I promise."
1195
+ msgstr "Actualizaciones, anuncio, marketing. Sin spam, lo prometo."
1196
+
1197
+ #: include/loginpress-optin-form.php:322
1198
+ msgid "Plugin Actions"
1199
+ msgstr "Acciones de complementos"
1200
+
1201
+ #: include/loginpress-optin-form.php:323
1202
+ msgid ""
1203
+ "Active, Deactive, Uninstallation and How you use this plugin's features and "
1204
+ "settings. This is limited to usage data. It does not include any of your "
1205
+ "sensitive LoginPress data, such as traffic. This data helps us learn which "
1206
+ "features are most popular, so we can improve the plugin further."
1207
+ msgstr ""
1208
+ "Active, Deactive, Uninstallation y Cómo utiliza las funciones y "
1209
+ "configuraciones de este complemento. Esto está limitado a los datos de uso. "
1210
+ "No incluye ninguno de sus datos sensibles de LoginPress, como el tráfico. "
1211
+ "Esta información nos ayuda a conocer qué características son las más "
1212
+ "populares, por lo que podemos mejorar aún más el complemento."
1213
+
1214
+ #: include/loginpress-optout-form.php:94 include/loginpress-optout-form.php:109
1215
+ msgid "Opt Out"
1216
+ msgstr ""
1217
+
1218
+ #: include/loginpress-optout-form.php:98
1219
+ msgid ""
1220
+ "We appreciate your help in making the plugin better by letting us track some "
1221
+ "usage data."
1222
+ msgstr ""
1223
+
1224
+ #: include/loginpress-optout-form.php:102
1225
+ #, php-format
1226
+ msgid ""
1227
+ "Usage tracking is done in the name of making %1$s LoginPress %2$s better. "
1228
+ "Making a better user experience, prioritizing new features, and more good "
1229
+ "things. We'd really appreciate if you'll reconsider letting us continue with "
1230
+ "the tracking."
1231
+ msgstr ""
1232
+
1233
+ #: include/loginpress-optout-form.php:103
1234
+ #, php-format
1235
+ msgid ""
1236
+ "By clicking \"Opt Out\", we will no longer be sending any data to %1$s "
1237
+ "LoginPress%2$s."
1238
+ msgstr ""
1239
+
1240
+ #: include/loginpress-optout-form.php:110
1241
+ msgid "On second thought - I want to continue helping"
1242
+ msgstr ""
1243
+
1244
+ #: include/privacy-policy.php:13
1245
+ #, php-format
1246
+ msgid "%1$sPrivacy Policy%2$s."
1247
+ msgstr ""
1248
+
1249
+ #: include/template-loginpress.php:70
1250
+ #, php-format
1251
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1252
+ msgstr ""
1253
+
1254
+ #: include/template-loginpress.php:147
1255
+ msgid "https://wordpress.org/"
1256
+ msgstr "https://wordpress.org/"
1257
+
1258
+ #: include/template-loginpress.php:148
1259
+ msgid "Powered by WordPress"
1260
+ msgstr "Desarrollado con WordPress"
1261
+
1262
+ #: include/template-loginpress.php:250
1263
+ #, php-format
1264
+ msgctxt "site"
1265
+ msgid "&larr; Back to %s"
1266
+ msgstr ""
1267
+
1268
+ #: include/template-loginpress.php:370
1269
+ #, fuzzy
1270
+ #| msgid "Lost Password Text"
1271
+ msgid "Lost Password"
1272
+ msgstr "Perdió Contraseña"
1273
+
1274
+ #: include/template-loginpress.php:393
1275
+ msgid "Get New Password"
1276
+ msgstr "Obtener una contraseña nueva"
1277
+
1278
+ #: include/template-loginpress.php:400 include/template-loginpress.php:487
1279
+ #: include/template-loginpress.php:544
1280
+ msgid "Register"
1281
+ msgstr "Registrarse"
1282
+
1283
+ #: include/template-loginpress.php:465
1284
+ msgid "Registration Form"
1285
+ msgstr "Formulario de Registro"
1286
+
1287
+ #: include/template-loginpress.php:473
1288
+ msgid "Email"
1289
  msgstr ""
1290
 
1291
+ #: include/template-loginpress.php:484
1292
+ msgid "Registration confirmation will be emailed to you."
1293
+ msgstr "La confirmación de registro será enviada por correo."
1294
+
1295
+ #: include/template-loginpress.php:493 include/template-loginpress.php:552
1296
+ msgid "Lost your password?"
1297
+ msgstr "¿Olvidaste tu contraseña?"
1298
+
1299
+ #: include/template-loginpress.php:508 include/template-loginpress.php:536
1300
+ msgid "Log In"
1301
+ msgstr "Acceder"
1302
+
1303
+ #: include/template-loginpress.php:534
1304
+ msgid "Remember Me"
1305
+ msgstr "Recuérdame"
1306
+
1307
+ #: loginpress.php:278
1308
+ msgid "Activate"
1309
+ msgstr "Activar"
1310
+
1311
+ #: loginpress.php:378
1312
+ msgid "Vote!"
1313
+ msgstr "Votar!"
1314
+
1315
+ #: loginpress.php:571
1316
+ msgid "Leave A Review?"
1317
+ msgstr "Deja una Opinión?"
1318
+
1319
+ #: loginpress.php:572
1320
  msgid ""
1321
  "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
1322
  "review on WordPress.org?"
1323
  msgstr ""
1324
+ "¡Esperamos que haya disfrutado usando LoginPress! ¿Consideraría dejarnos una "
1325
+ "revisión en WordPress.org?"
1326
 
1327
+ #: loginpress.php:574
1328
  msgid "Sure! I'd love to!"
1329
+ msgstr "Me encantaría!"
1330
 
1331
+ #: loginpress.php:575
1332
  msgid "I've already left a review"
1333
+ msgstr "Ya he dejado una reseña"
1334
 
1335
+ #: loginpress.php:576
1336
  msgid "Maybe Later"
1337
+ msgstr "Quizás más tarde"
1338
 
1339
+ #: loginpress.php:577
1340
  msgid "Never show again"
1341
+ msgstr "No mostrar de nuevo"
1342
+
1343
+ #: loginpress.php:602
1344
+ msgid "Introducing LoginPress Addons!"
1345
  msgstr ""
1346
 
1347
+ #: loginpress.php:603
1348
+ msgid "Extend LoginPress with these add-ons and supercharge your login pages."
1349
+ msgstr ""
1350
+
1351
+ #: loginpress.php:607
1352
+ msgid "Learn More"
1353
+ msgstr "Aprende más"
1354
+
1355
+ #: loginpress.php:666
1356
  #, php-format
1357
  msgid "%1$s Settings %2$s | %3$s Customize %4$s"
1358
  msgstr ""
1359
 
1360
+ #: loginpress.php:670
1361
+ #, php-format
1362
+ msgid " | %1$s Opt Out %2$s "
1363
+ msgstr ""
1364
+
1365
+ #: loginpress.php:672
1366
+ #, php-format
1367
+ msgid " | %1$s Opt In %2$s "
1368
+ msgstr ""
1369
+
1370
+ #: loginpress.php:678
1371
  #, php-format
1372
  msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
1373
  msgstr ""
1374
 
1375
+ #~ msgid "Footer Text Display:"
1376
+ #~ msgstr "Pie de página de visualización de texto:"
1377
 
1378
  #~ msgid "Logo Width"
1379
  #~ msgstr "Ancho del logo"
1390
  #~ msgid "Logo Hover Test"
1391
  #~ msgstr "Logo de la libración de prueba"
1392
 
 
 
 
1393
  #~ msgid "Image Size: "
1394
  #~ msgstr "Tamaño de la imagen"
1395
 
1396
  #~ msgid "Customize Form"
1397
  #~ msgstr "Personaliza Formulario"
1398
 
 
 
 
1399
  #~ msgid "Form Height:"
1400
  #~ msgstr "altura mórfica"
1401
 
1402
  #~ msgid " Border (Example: 2px dotted black) "
1403
  #~ msgstr "Fronteriza (Ejemplo: 2px negro de puntos)"
1404
 
 
 
 
 
 
 
1405
  #~ msgid "Input Field Background Color"
1406
  #~ msgstr "Antecedentes Campo de entrada de color"
1407
 
 
 
 
 
 
 
1408
  #~ msgid "Button Color"
1409
  #~ msgstr "Color del botón"
1410
 
1447
  #~ msgid "Footer"
1448
  #~ msgstr "Pie de Página"
1449
 
 
 
 
 
 
 
1450
  #~ msgid "Footer Links 1"
1451
  #~ msgstr "Footer Links 1"
1452
 
1468
  #~ msgid "Footer Links 4"
1469
  #~ msgstr "Footer Links 4"
1470
 
 
 
 
1471
  #~ msgid "Footer Links Background Color:"
1472
  #~ msgstr "Pie de página Enlaces Color de fondo:"
1473
 
languages/loginpress-fr_FR.mo CHANGED
Binary file
languages/loginpress-fr_FR.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
- "POT-Creation-Date: 2018-07-13 17:45+0500\n"
5
- "PO-Revision-Date: 2018-07-13 17:54+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.6\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -278,38 +278,51 @@ msgstr ""
278
  msgid "Remove my custom settings."
279
  msgstr ""
280
 
281
- #: classes/class-loginpress-setup.php:206
282
  msgid "LoginPress - Rebranding your boring WordPress Login pages"
283
  msgstr ""
284
 
285
- #: classes/class-loginpress-setup.php:225
286
  #, php-format
287
  msgid "Free support is available on the %1$s plugin support forums%2$s."
288
  msgstr ""
289
 
290
- #: classes/class-loginpress-setup.php:227
291
  #, php-format
292
  msgid ""
293
  "For premium features, add-ons and priority email support, %1$s upgrade to pro"
294
  "%2$s."
295
  msgstr ""
296
 
297
- #: classes/class-loginpress-setup.php:233
298
  msgid "Download Log File"
299
  msgstr ""
300
 
301
- #: classes/class-loginpress-setup.php:287
302
  #, fuzzy
303
  #| msgid "Lost Password Text"
304
  msgid "Lost Password URL"
305
  msgstr "Texte de mot de passe perdu"
306
 
307
- #: classes/class-loginpress-setup.php:288
308
  msgid ""
309
  "Use WordPress default lost password URL instead of WooCommerce custom lost "
310
  "password URL."
311
  msgstr ""
312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  #: classes/control-presets.php:78
314
  msgid "Contact us for Custom Design"
315
  msgstr ""
@@ -654,10 +667,9 @@ msgid "Enable Copyright Note:"
654
  msgstr ""
655
 
656
  #: custom.php:1285 custom.php:1449
657
- #, fuzzy, php-format
658
- #| msgid "All Rights Reserved by:"
659
  msgid "© %1$s %2$s, All Rights Reserved."
660
- msgstr "Tous droits réservés"
661
 
662
  #: custom.php:1292
663
  msgid "Copyright Note:"
@@ -707,7 +719,7 @@ msgstr ""
707
 
708
  #: custom.php:1432 custom.php:1434
709
  msgid "Powered by:"
710
- msgstr ""
711
 
712
  #: custom.php:1634 include/template-loginpress.php:469
713
  msgid "Username"
@@ -1244,7 +1256,7 @@ msgstr ""
1244
 
1245
  #: include/template-loginpress.php:148
1246
  msgid "Powered by WordPress"
1247
- msgstr ""
1248
 
1249
  #: include/template-loginpress.php:250
1250
  #, php-format
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
+ "POT-Creation-Date: 2018-08-28 15:21+0500\n"
5
+ "PO-Revision-Date: 2018-08-28 15:25+0500\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.9\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__;"
278
  msgid "Remove my custom settings."
279
  msgstr ""
280
 
281
+ #: classes/class-loginpress-setup.php:209
282
  msgid "LoginPress - Rebranding your boring WordPress Login pages"
283
  msgstr ""
284
 
285
+ #: classes/class-loginpress-setup.php:228
286
  #, php-format
287
  msgid "Free support is available on the %1$s plugin support forums%2$s."
288
  msgstr ""
289
 
290
+ #: classes/class-loginpress-setup.php:230
291
  #, php-format
292
  msgid ""
293
  "For premium features, add-ons and priority email support, %1$s upgrade to pro"
294
  "%2$s."
295
  msgstr ""
296
 
297
+ #: classes/class-loginpress-setup.php:236
298
  msgid "Download Log File"
299
  msgstr ""
300
 
301
+ #: classes/class-loginpress-setup.php:290
302
  #, fuzzy
303
  #| msgid "Lost Password Text"
304
  msgid "Lost Password URL"
305
  msgstr "Texte de mot de passe perdu"
306
 
307
+ #: classes/class-loginpress-setup.php:291
308
  msgid ""
309
  "Use WordPress default lost password URL instead of WooCommerce custom lost "
310
  "password URL."
311
  msgstr ""
312
 
313
+ #: classes/class-loginpress-setup.php:308
314
+ msgid "and LoginPress page"
315
+ msgstr ""
316
+
317
+ #: classes/class-loginpress-setup.php:313
318
+ msgid "Remove Settings on Uninstall"
319
+ msgstr ""
320
+
321
+ #: classes/class-loginpress-setup.php:314
322
+ #, php-format
323
+ msgid "This tool will remove all LoginPress settings %1$s upon uninstall."
324
+ msgstr ""
325
+
326
  #: classes/control-presets.php:78
327
  msgid "Contact us for Custom Design"
328
  msgstr ""
667
  msgstr ""
668
 
669
  #: custom.php:1285 custom.php:1449
670
+ #, php-format
 
671
  msgid "© %1$s %2$s, All Rights Reserved."
672
+ msgstr "© %1$s %2$s, Tous droits réservés."
673
 
674
  #: custom.php:1292
675
  msgid "Copyright Note:"
719
 
720
  #: custom.php:1432 custom.php:1434
721
  msgid "Powered by:"
722
+ msgstr "Propulsé par :"
723
 
724
  #: custom.php:1634 include/template-loginpress.php:469
725
  msgid "Username"
1256
 
1257
  #: include/template-loginpress.php:148
1258
  msgid "Powered by WordPress"
1259
+ msgstr "Propulsé par WordPress"
1260
 
1261
  #: include/template-loginpress.php:250
1262
  #, php-format
languages/loginpress-nl_DE.mo CHANGED
Binary file
languages/loginpress-nl_DE.po CHANGED
@@ -1,483 +1,752 @@
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"
21
 
22
- #: classes/control-presets.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  msgid "Unlock Premium Feature"
24
  msgstr ""
25
 
26
- #: classes/control-presets.php:77
27
- msgid "Contact us for Custom Design"
28
  msgstr ""
29
 
30
- #: classes/loginpress-settings-api.php:365
31
  msgid "Choose File"
32
  msgstr ""
33
 
34
- #: classes/loginpress-settings-api.php:528
35
- msgid "Getting Started Video - 60 sec"
36
  msgstr ""
37
 
38
- #: classes/loginpress-settings-api.php:536
39
  msgid "Why Go Pro?"
40
  msgstr ""
41
 
42
- #: classes/loginpress-settings-api.php:539
43
  msgid "Secure login with Google reCaptcha"
44
  msgstr ""
45
 
46
- #: classes/loginpress-settings-api.php:540
47
  msgid "20+ Custom Login Themes"
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
 
70
- #: classes/loginpress-setup.php:52
71
  msgid "Default Settings Restored"
72
  msgstr ""
73
 
74
- #: classes/loginpress-setup.php:59 classes/loginpress-setup.php:67
 
 
 
 
75
  msgid "Settings"
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
84
- msgid "Try Premium Version"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  msgstr ""
86
 
87
- #: classes/loginpress-setup.php:93
 
 
 
 
88
  msgid "Reset Default Settings"
89
  msgstr ""
90
 
91
- #: classes/loginpress-setup.php:94
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
 
110
- #: custom.php:90
111
  msgid "Customize Your WordPress Login Page with LoginPress :)"
112
  msgstr ""
113
 
114
- #: custom.php:100
115
  msgid "Themes"
116
  msgstr ""
117
 
118
- #: custom.php:101
119
  msgid "Choose Theme"
120
  msgstr ""
121
 
122
- #: custom.php:122 custom.php:164
123
  msgid "Company"
124
  msgstr ""
125
 
126
- #: custom.php:128 custom.php:194
127
  msgid "Persona"
128
  msgstr ""
129
 
130
- #: custom.php:134 custom.php:140
131
  msgid "Corporate"
132
  msgstr ""
133
 
134
- #: custom.php:146
135
  msgid "Startup"
136
  msgstr ""
137
 
138
- #: custom.php:152
139
  msgid "Wedding"
140
  msgstr ""
141
 
142
- #: custom.php:158
143
  msgid "Wedding #2"
144
  msgstr ""
145
 
146
- #: custom.php:170
147
  msgid "Bikers"
148
  msgstr ""
149
 
150
- #: custom.php:176
151
  msgid "Fitness"
152
  msgstr ""
153
 
154
- #: custom.php:182
155
  msgid "Shopping"
156
  msgstr ""
157
 
158
- #: custom.php:188
159
  msgid "Writers"
160
  msgstr ""
161
 
162
- #: custom.php:200
163
  msgid "Geek"
164
  msgstr ""
165
 
166
- #: custom.php:206
167
  msgid "Innovation"
168
  msgstr ""
169
 
170
- #: custom.php:212
171
  msgid "Photographers"
172
  msgstr ""
173
 
174
- #: custom.php:238
 
 
 
 
 
 
175
  msgid "Logo"
176
  msgstr ""
177
 
178
- #: custom.php:239
179
  msgid "Customize Your Logo Section"
180
  msgstr ""
181
 
182
- #: custom.php:251
183
- msgid "Logo Image:"
184
- msgstr ""
185
-
186
- #: custom.php:260
187
- msgid "Logo Width:"
188
- msgstr ""
189
-
190
- #: custom.php:261
191
- msgid "Logo Height:"
192
  msgstr ""
193
 
194
- #: custom.php:262
195
- msgid "Padding Bottom:"
196
  msgstr ""
197
 
198
- #: custom.php:263
199
  msgid "Logo URL:"
200
  msgstr ""
201
 
202
- #: custom.php:264
203
  msgid "Logo Hover Title:"
204
  msgstr ""
205
 
206
- #: custom.php:291
207
  msgid "Background"
208
  msgstr "Achtergrond"
209
 
210
- #: custom.php:306
211
- msgid "Display Background Image?"
212
- msgstr ""
213
-
214
- #: custom.php:320
215
  msgid "Background Color:"
216
  msgstr ""
217
 
218
- #: custom.php:334
 
 
 
 
 
 
219
  msgid "Background Image:"
220
  msgstr ""
221
 
222
- #: custom.php:349
 
 
 
 
 
 
223
  msgid "Background Repeat:"
224
  msgstr "Achtergrond herhalen"
225
 
226
- #: custom.php:372
227
  msgid "Select Position:"
228
  msgstr ""
229
 
230
- #: custom.php:397
231
  msgid "Background Image Size: "
232
  msgstr ""
233
 
234
- #: custom.php:415
235
  msgid "Customize Login Form"
236
  msgstr ""
237
 
238
- #: custom.php:428
239
- msgid "Form Background Image"
240
- msgstr "Formulier Achtergrond Afbeelding"
241
-
242
- #: custom.php:437
243
- msgid "Form Width:"
244
- msgstr "Vorm Breedte:"
245
-
246
- #: custom.php:438
247
- msgid "Form Minimum Height:"
248
- msgstr ""
249
-
250
- #: custom.php:439
251
- msgid "Form Padding:"
252
- msgstr "Vorm Padding:"
253
-
254
- #: custom.php:440
255
- msgid "Border (Example: 2px dotted black):"
256
- msgstr ""
257
-
258
- #: custom.php:441
259
- msgid "Input Text Field Width:"
260
- msgstr ""
261
-
262
- #: custom.php:442
263
- msgid "Input Text Field Margin:"
264
- msgstr ""
265
-
266
- #: custom.php:468
267
- msgid "Form Background Color:"
268
- msgstr ""
269
-
270
- #: custom.php:469
271
- msgid "Input Field Background Color:"
272
- msgstr ""
273
-
274
- #: custom.php:470
275
- msgid "Input Field Text Color:"
276
  msgstr ""
277
 
278
- #: custom.php:471
279
- msgid "Label Color:"
280
- msgstr ""
 
 
281
 
282
- #: custom.php:504
283
  msgid "Customize Forget Form"
284
  msgstr "Aanpassen Vergeet Form"
285
 
286
- #: custom.php:521
287
- msgid "Forget Form Background Image"
 
 
288
  msgstr "Vergeet Van Achtergrond Afbeelding"
289
 
290
- #: custom.php:535
291
- msgid "Forget Form Background Color"
 
 
292
  msgstr "Vergeet Vorm Achtergrond Kleur"
293
 
294
- #: custom.php:545
295
  msgid "Button Beauty"
296
  msgstr "Knoop Beauty"
297
 
298
- #: custom.php:554
299
- msgid "Button Color:"
300
- msgstr ""
301
 
302
- #: custom.php:555
303
- msgid "Button Border Color:"
 
304
  msgstr ""
305
 
306
- #: custom.php:556
307
- msgid "Button Color (Hover):"
 
308
  msgstr ""
309
 
310
- #: custom.php:557
311
- msgid "Button Border (Hover):"
 
312
  msgstr ""
313
 
314
- #: custom.php:558
315
- msgid "Button Box Shadow:"
 
 
 
316
  msgstr ""
317
 
318
- #: custom.php:559
319
- msgid "Button Text Color:"
 
 
320
  msgstr ""
321
 
322
- #: custom.php:586
323
- msgid "Error Messages"
324
- msgstr "Foutmeldingen"
 
325
 
326
- #: custom.php:595
327
  msgid "Incorrect Username Message:"
328
  msgstr "Onjuiste gebruikersnaam Bericht:"
329
 
330
- #: custom.php:596
331
  msgid "Incorrect Password Message:"
332
  msgstr "Onjuist wachtwoord Message:"
333
 
334
- #: custom.php:597
335
  msgid "Empty Username Message:"
336
  msgstr "Lege Gebruikersnaam Message:"
337
 
338
- #: custom.php:598
339
  msgid "Empty Password Message:"
340
  msgstr "Leeg wachtwoord Message:"
341
 
342
- #: custom.php:599
343
  msgid "Invalid Email Message:"
344
  msgstr "Ongeldig e-mailbericht:"
345
 
346
- #: custom.php:600
347
  msgid "Empty Email Message:"
348
  msgstr "Lege e-mailbericht:"
349
 
350
- #: custom.php:601
 
 
 
 
 
 
 
 
 
 
 
 
351
  msgid "Forget Password Message:"
352
  msgstr "Wachtwoord vergeten Message:"
353
 
354
- #: custom.php:628
 
 
 
 
 
 
355
  msgid "Welcome Messages"
356
  msgstr "Welkom Berichten"
357
 
358
- #: custom.php:637
359
  msgid "Welcome Message on Lost Password:"
360
  msgstr "Welkom Bericht op Wachtwoord vergeten:"
361
 
362
- #: custom.php:638
363
- msgid "Welcome Message on Front Page:"
 
 
364
  msgstr "Welkom bericht op de voorpagina:"
365
 
366
- #: custom.php:639
367
  msgid "Welcome Message on Registration:"
368
  msgstr "Welkom Bericht op Registratie:"
369
 
370
- #: custom.php:640
371
  msgid "Logout Message:"
372
  msgstr "Logout Message:"
373
 
374
- #: custom.php:641
375
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
376
  msgstr ""
377
 
378
- #: custom.php:672
379
  msgid "Message Field Background Color:"
380
  msgstr "Bericht Veld Achtergrond Kleur:"
381
 
382
- #: custom.php:856
383
  msgid "Form Footer"
384
  msgstr ""
385
 
386
- #: custom.php:870
387
- msgid "Lost Password Text"
388
- msgstr "Wachtwoord vergeten Text"
 
 
389
 
390
- #: custom.php:884
391
- msgid "Footer Text Display:"
392
- msgstr "Footer Text Display:"
 
 
393
 
394
- #: custom.php:924
395
  msgid "Footer Text Color:"
396
  msgstr "Footer Tekst Kleur:"
397
 
398
- #: custom.php:938
399
  msgid "Footer Text Hover Color:"
400
  msgstr "Footer Tekst Hover Kleur:"
401
 
402
- #: custom.php:952
403
  msgid "Text Font Size:"
404
  msgstr "Tekst Font Grootte:"
405
 
406
- #: custom.php:966 custom.php:1079
407
  msgid "Footer Background Color:"
408
  msgstr "Footer Achtergrond Kleur:"
409
 
410
- #: custom.php:993
411
- msgid "\"Back to\" Text Display:"
412
  msgstr ""
413
 
414
- #: custom.php:1013
415
  msgid "\"Back to\" Text Decoration:"
416
  msgstr ""
417
 
418
- #: custom.php:1037
419
  msgid "\"Back to\" Text Color:"
420
  msgstr ""
421
 
422
- #: custom.php:1051
423
  msgid "\"Back to\" Text Hover Color:"
424
  msgstr ""
425
 
426
- #: custom.php:1065
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 ""
438
 
439
- #: custom.php:1106
440
- msgid "Custom CSS"
 
 
 
 
 
 
 
 
 
 
 
 
441
  msgstr "Custom CSS"
442
 
443
- #: custom.php:1119
444
- msgid "Customize CSS"
 
 
445
  msgstr "Pas CSS"
446
 
447
- #: custom.php:1132
448
- msgid "Custom JS"
449
- msgstr "Custom JS"
 
 
 
450
 
451
- #: custom.php:1145
452
- msgid "Customize JS"
 
 
453
  msgstr "Pas JS"
454
 
455
- #: custom.php:1259
456
- msgid "Invalid Username"
 
 
 
457
  msgstr ""
458
 
459
- #: custom.php:1261
460
- msgid "Invalid Password"
461
  msgstr ""
462
 
463
- #: custom.php:1263
464
- msgid "Empty Username"
465
  msgstr ""
466
 
467
- #: custom.php:1265
468
- msgid "Empty Password"
 
 
 
 
 
 
469
  msgstr ""
470
 
471
- #: custom.php:1267
472
- msgid "The email address is incorrect."
473
  msgstr ""
474
 
475
- #: custom.php:1269
476
- msgid "The email address is empty."
477
  msgstr ""
478
 
479
- #: custom.php:1271
480
- msgid "Invalid Username or Email."
 
481
  msgstr ""
482
 
483
  #: include/class-remote-notification-client.php:126
@@ -502,100 +771,607 @@ 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 "Login Logo"
599
 
600
  #~ msgid "Logo Width"
601
  #~ msgstr "Logo Breedte"
@@ -612,39 +1388,21 @@ msgstr ""
612
  #~ msgid "Logo Hover Test"
613
  #~ msgstr "Logo Hover Test"
614
 
615
- #~ msgid "Background Color"
616
- #~ msgstr "Achtergrond Kleur"
617
-
618
  #~ msgid "Image Size: "
619
  #~ msgstr "Afbeeldingsgrootte:"
620
 
621
  #~ msgid "Customize Form"
622
  #~ msgstr "Pas Form"
623
 
624
- #~ msgid "Form Background Color"
625
- #~ msgstr "Formulier Achtergrondkleur"
626
-
627
  #~ msgid "Form Height:"
628
  #~ msgstr "Vorm Lengte:"
629
 
630
  #~ msgid " Border (Example: 2px dotted black) "
631
  #~ msgstr "Border (Voorbeeld: 2px gestippelde zwart)"
632
 
633
- #~ msgid "Input Text Field Width"
634
- #~ msgstr "Input tekstveld Breedte"
635
-
636
- #~ msgid "Input Text Field Margin"
637
- #~ msgstr "Invoertekstveld Marge"
638
-
639
  #~ msgid "Input Field Background Color"
640
  #~ msgstr "Input Field Achtergrond Kleur"
641
 
642
- #~ msgid "Input Field Text Color"
643
- #~ msgstr "Tekstinvoerveld Kleur"
644
-
645
- #~ msgid "Label Color"
646
- #~ msgstr "Label Color"
647
-
648
  #~ msgid "Button Color"
649
  #~ msgstr "Knop Kleur"
650
 
@@ -687,12 +1445,6 @@ msgstr ""
687
  #~ msgid "Footer"
688
  #~ msgstr "Footer"
689
 
690
- #~ msgid "Login Footer Links"
691
- #~ msgstr "Login Footer Links"
692
-
693
- #~ msgid "Footer Text 1"
694
- #~ msgstr "Footer Text 1"
695
-
696
  #~ msgid "Footer Links 1"
697
  #~ msgstr "Footer Links 1"
698
 
@@ -714,9 +1466,6 @@ msgstr ""
714
  #~ msgid "Footer Links 4"
715
  #~ msgstr "Footer Links 4"
716
 
717
- #~ msgid "All Rights Reserved by:"
718
- #~ msgstr "Alle rechten voorbehouden aan:"
719
-
720
  #~ msgid "Footer Links Background Color:"
721
  #~ msgstr "Footer Links Achtergrond Kleur:"
722
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Custom Login Page Brigade\n"
4
+ "POT-Creation-Date: 2018-08-28 15:26+0500\n"
5
+ "PO-Revision-Date: 2018-08-28 15:28+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.0.9\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:100
23
+ #: classes/class-loginpress-addons.php:185
24
+ #, php-format
25
+ msgid "%1$s Already Installed %2$s"
26
+ msgstr ""
27
+
28
+ #: classes/class-loginpress-addons.php:104
29
+ #: classes/class-loginpress-addons.php:190
30
+ #, php-format
31
+ msgid "%1$s Activate Plugin %2$s"
32
+ msgstr ""
33
+
34
+ #: classes/class-loginpress-addons.php:195
35
+ #, php-format
36
+ msgid "%1$s Install %2$s"
37
+ msgstr ""
38
+
39
+ #: classes/class-loginpress-addons.php:226
40
+ msgid "You have a lifetime license, it will never expire."
41
+ msgstr ""
42
+
43
+ #: classes/class-loginpress-addons.php:230
44
+ #, php-format
45
+ msgid "Your (%2$s) license key is valid until %s."
46
+ msgstr ""
47
+
48
+ #: classes/class-loginpress-addons.php:244
49
+ msgid "You need to activate your license to download the following add-ons."
50
+ msgstr ""
51
+
52
+ #: classes/class-loginpress-addons.php:257
53
+ msgid "You need to upgrade to LoginPress Pro to access these add-ons."
54
+ msgstr ""
55
+
56
+ #: classes/class-loginpress-addons.php:482
57
+ msgid "Extend the functionality of LoginPress with these awesome Add-ons"
58
+ msgstr ""
59
+
60
+ #: classes/class-loginpress-custom-password.php:45
61
+ #: include/customizer-strings.php:81 include/template-loginpress.php:518
62
+ msgid "Password"
63
+ msgstr "Wachtwoord"
64
+
65
+ #: classes/class-loginpress-custom-password.php:49
66
+ msgid "Confirm Password"
67
+ msgstr "Bevestig wachtwoord"
68
+
69
+ #: classes/class-loginpress-custom-password.php:70
70
+ msgid "<strong>ERROR</strong>: Please enter your password twice."
71
+ msgstr ""
72
+
73
+ #: classes/class-loginpress-custom-password.php:74
74
+ msgid ""
75
+ "<strong>ERROR</strong>: Please enter the same password in the end password "
76
+ "fields."
77
+ msgstr ""
78
+
79
+ #: classes/class-loginpress-filter-plugin.php:42
80
+ #, php-format
81
+ msgid "Buy %s now"
82
+ msgstr ""
83
+
84
+ #: classes/class-loginpress-filter-plugin.php:43
85
+ msgid "Buy Now"
86
+ msgstr ""
87
+
88
+ #: classes/class-loginpress-filter-plugin.php:186
89
+ msgid "Analytify"
90
+ msgstr ""
91
+
92
+ #: classes/class-loginpress-filter-plugin.php:195
93
+ msgid ""
94
+ "Analytify is reshaping Google Analytics in WordPress. See Social Media, "
95
+ "Keywords, Realtime, Country, Mobile and Browsers Statistics under pages and "
96
+ "posts."
97
+ msgstr ""
98
+
99
+ #: classes/class-loginpress-filter-plugin.php:198
100
+ msgid "Related Posts"
101
+ msgstr ""
102
+
103
+ #: classes/class-loginpress-filter-plugin.php:207
104
+ msgid ""
105
+ "Related Post Thumbnails plugin is for those who want the showcase of their "
106
+ "related posts after the post detail. The plugin allows customizing thumbnail "
107
+ "sizes, display settings, and type of relations. The plugin is using original "
108
+ "WordPress taxonomy. It returns generated HTML, that is essential for page "
109
+ "load speed of blogs that use many Javascript widgets."
110
+ msgstr ""
111
+
112
+ #: classes/class-loginpress-filter-plugin.php:210
113
+ msgid "LoginPress Pro"
114
+ msgstr ""
115
+
116
+ #: classes/class-loginpress-filter-plugin.php:220
117
+ msgid ""
118
+ "LoginPress Plugin by LoginPress holds a lot of customization fields to "
119
+ "change the layout of the login page of WordPress. You can modify the look "
120
+ "and feel of login page completely even the login error messages, forgot "
121
+ "error messages, registration error messages, forget password hint message "
122
+ "and many more."
123
+ msgstr ""
124
+
125
+ #: classes/class-loginpress-login-order.php:69 custom.php:821 custom.php:1547
126
+ #, php-format
127
+ msgid "%1$sError:%2$s The username field is empty."
128
+ msgstr ""
129
+
130
+ #: classes/class-loginpress-login-order.php:71 custom.php:822 custom.php:1549
131
+ #, php-format
132
+ msgid "%1$sError:%2$s The password field is empty."
133
+ msgstr ""
134
+
135
+ #: classes/class-loginpress-login-order.php:92 custom.php:828
136
+ #, php-format
137
+ msgid "%1$sError:%2$s Invalid Email Address"
138
+ msgstr ""
139
+
140
+ #: classes/class-loginpress-login-order.php:114 custom.php:820 custom.php:1543
141
+ #, php-format
142
+ msgid "%1$sError:%2$s Invalid Username."
143
+ msgstr ""
144
+
145
+ #: classes/class-loginpress-promo.php:9
146
+ msgid "Google Fonts"
147
+ msgstr ""
148
+
149
+ #: classes/class-loginpress-promo.php:26 classes/class-loginpress-promo.php:47
150
+ #: classes/control-presets.php:74
151
  msgid "Unlock Premium Feature"
152
  msgstr ""
153
 
154
+ #: classes/class-loginpress-promo.php:31
155
+ msgid "reCAPTCHA"
156
  msgstr ""
157
 
158
+ #: classes/class-loginpress-settings-api.php:372
159
  msgid "Choose File"
160
  msgstr ""
161
 
162
+ #: classes/class-loginpress-settings-api.php:639
163
+ msgid "Getting Started Video"
164
  msgstr ""
165
 
166
+ #: classes/class-loginpress-settings-api.php:647
167
  msgid "Why Go Pro?"
168
  msgstr ""
169
 
170
+ #: classes/class-loginpress-settings-api.php:650
171
  msgid "Secure login with Google reCaptcha"
172
  msgstr ""
173
 
174
+ #: classes/class-loginpress-settings-api.php:651
175
  msgid "20+ Custom Login Themes"
176
  msgstr ""
177
 
178
+ #: classes/class-loginpress-settings-api.php:652
179
+ msgid "Full customization with Custom CSS & JS"
180
  msgstr ""
181
 
182
+ #: classes/class-loginpress-settings-api.php:657
183
  msgid "See What's In The Pro Version"
184
  msgstr ""
185
 
186
+ #: classes/class-loginpress-settings-api.php:666
187
  msgid "Plugin Support"
188
  msgstr ""
189
 
190
+ #: classes/class-loginpress-settings-api.php:669
191
  msgid "Got a Question, Idea, Problem or Praise?"
192
  msgstr ""
193
 
194
+ #: classes/class-loginpress-settings-api.php:671
195
  msgid "Support Request"
196
  msgstr ""
197
 
198
+ #: classes/class-loginpress-setup.php:53
199
  msgid "Default Settings Restored"
200
  msgstr ""
201
 
202
+ #: classes/class-loginpress-setup.php:60 custom.php:242 loginpress.php:280
203
+ msgid "LoginPress"
204
+ msgstr ""
205
+
206
+ #: classes/class-loginpress-setup.php:62 classes/class-loginpress-setup.php:79
207
  msgid "Settings"
208
  msgstr ""
209
 
210
+ #: classes/class-loginpress-setup.php:64
211
+ msgid "Customizer"
212
+ msgstr ""
213
+
214
+ #: classes/class-loginpress-setup.php:66
215
+ msgid "Help"
216
+ msgstr ""
217
+
218
+ #: classes/class-loginpress-setup.php:68 include/loginpress-import-export.php:9
219
+ msgid "Import/Export LoginPress Settings"
220
+ msgstr ""
221
+
222
+ #: classes/class-loginpress-setup.php:68
223
+ msgid "Import / Export"
224
+ msgstr ""
225
+
226
+ #: classes/class-loginpress-setup.php:70
227
+ msgid "Add-Ons"
228
+ msgstr ""
229
+
230
+ #: classes/class-loginpress-setup.php:80
231
  #, php-format
232
  msgid "Everything else is customizable through %1$sWordPress Customizer%2$s."
233
  msgstr ""
234
 
235
+ #: classes/class-loginpress-setup.php:98
236
+ msgid "Upgrade to Pro for More Features"
237
+ msgstr ""
238
+
239
+ #: classes/class-loginpress-setup.php:123
240
+ msgid "Session Expire"
241
+ msgstr ""
242
+
243
+ #: classes/class-loginpress-setup.php:124
244
+ msgid "Set the session expiration time in minutes. e.g: 10"
245
+ msgstr ""
246
+
247
+ #: classes/class-loginpress-setup.php:125
248
+ msgid "10"
249
+ msgstr ""
250
+
251
+ #: classes/class-loginpress-setup.php:148
252
+ #, fuzzy
253
+ #| msgid "Lost Password Text"
254
+ msgid "Custom Password Fields"
255
+ msgstr "Wachtwoord vergeten Text"
256
+
257
+ #: classes/class-loginpress-setup.php:149
258
+ msgid "Enable custom password fields on registration form."
259
+ msgstr ""
260
+
261
+ #: classes/class-loginpress-setup.php:154
262
+ msgid "Login Order"
263
  msgstr ""
264
 
265
+ #: classes/class-loginpress-setup.php:155
266
+ msgid "Enable users to login using their username and/or email address."
267
+ msgstr ""
268
+
269
+ #: classes/class-loginpress-setup.php:172
270
  msgid "Reset Default Settings"
271
  msgstr ""
272
 
273
+ #: classes/class-loginpress-setup.php:173
274
  msgid "Remove my custom settings."
275
  msgstr ""
276
 
277
+ #: classes/class-loginpress-setup.php:209
278
+ msgid "LoginPress - Rebranding your boring WordPress Login pages"
279
+ msgstr ""
280
+
281
+ #: classes/class-loginpress-setup.php:228
282
+ #, php-format
283
+ msgid "Free support is available on the %1$s plugin support forums%2$s."
284
  msgstr ""
285
 
286
+ #: classes/class-loginpress-setup.php:230
287
+ #, php-format
288
  msgid ""
289
+ "For premium features, add-ons and priority email support, %1$s upgrade to pro"
290
+ "%2$s."
 
291
  msgstr ""
292
 
293
+ #: classes/class-loginpress-setup.php:236
294
+ msgid "Download Log File"
295
+ msgstr ""
296
+
297
+ #: classes/class-loginpress-setup.php:290
298
+ #, fuzzy
299
+ #| msgid "Lost Password Text"
300
+ msgid "Lost Password URL"
301
+ msgstr "Wachtwoord vergeten Text"
302
+
303
+ #: classes/class-loginpress-setup.php:291
304
+ msgid ""
305
+ "Use WordPress default lost password URL instead of WooCommerce custom lost "
306
+ "password URL."
307
+ msgstr ""
308
+
309
+ #: classes/class-loginpress-setup.php:308
310
+ msgid "and LoginPress page"
311
+ msgstr ""
312
+
313
+ #: classes/class-loginpress-setup.php:313
314
+ msgid "Remove Settings on Uninstall"
315
+ msgstr ""
316
+
317
+ #: classes/class-loginpress-setup.php:314
318
+ #, php-format
319
+ msgid "This tool will remove all LoginPress settings %1$s upon uninstall."
320
+ msgstr ""
321
+
322
+ #: classes/control-presets.php:78
323
+ msgid "Contact us for Custom Design"
324
+ msgstr ""
325
+
326
+ #: classes/controls/group.php:53
327
+ msgid "Info:"
328
  msgstr ""
329
 
330
+ #: custom.php:243
331
  msgid "Customize Your WordPress Login Page with LoginPress :)"
332
  msgstr ""
333
 
334
+ #: custom.php:256
335
  msgid "Themes"
336
  msgstr ""
337
 
338
+ #: custom.php:257
339
  msgid "Choose Theme"
340
  msgstr ""
341
 
342
+ #: custom.php:270 custom.php:277 custom.php:475 custom.php:482
343
  msgid "Company"
344
  msgstr ""
345
 
346
+ #: custom.php:271 custom.php:282 custom.php:476
347
  msgid "Persona"
348
  msgstr ""
349
 
350
+ #: custom.php:272 custom.php:273 custom.php:477 custom.php:478
351
  msgid "Corporate"
352
  msgstr ""
353
 
354
+ #: custom.php:274 custom.php:479
355
  msgid "Startup"
356
  msgstr ""
357
 
358
+ #: custom.php:275 custom.php:480
359
  msgid "Wedding"
360
  msgstr ""
361
 
362
+ #: custom.php:276 custom.php:481
363
  msgid "Wedding #2"
364
  msgstr ""
365
 
366
+ #: custom.php:278 custom.php:483
367
  msgid "Bikers"
368
  msgstr ""
369
 
370
+ #: custom.php:279
371
  msgid "Fitness"
372
  msgstr ""
373
 
374
+ #: custom.php:280
375
  msgid "Shopping"
376
  msgstr ""
377
 
378
+ #: custom.php:281
379
  msgid "Writers"
380
  msgstr ""
381
 
382
+ #: custom.php:283
383
  msgid "Geek"
384
  msgstr ""
385
 
386
+ #: custom.php:284
387
  msgid "Innovation"
388
  msgstr ""
389
 
390
+ #: custom.php:285
391
  msgid "Photographers"
392
  msgstr ""
393
 
394
+ #: custom.php:314
395
+ #, fuzzy
396
+ #| msgid "Custom JS"
397
+ msgid "Custom Design"
398
+ msgstr "Custom JS"
399
+
400
+ #: custom.php:332
401
  msgid "Logo"
402
  msgstr ""
403
 
404
+ #: custom.php:333
405
  msgid "Customize Your Logo Section"
406
  msgstr ""
407
 
408
+ #: custom.php:352
409
+ msgid "Disable Logo:"
 
 
 
 
 
 
 
 
410
  msgstr ""
411
 
412
+ #: custom.php:365
413
+ msgid "Logo Image:"
414
  msgstr ""
415
 
416
+ #: custom.php:383
417
  msgid "Logo URL:"
418
  msgstr ""
419
 
420
+ #: custom.php:383
421
  msgid "Logo Hover Title:"
422
  msgstr ""
423
 
424
+ #: custom.php:409
425
  msgid "Background"
426
  msgstr "Achtergrond"
427
 
428
+ #: custom.php:423
 
 
 
 
429
  msgid "Background Color:"
430
  msgstr ""
431
 
432
+ #: custom.php:442
433
+ #, fuzzy
434
+ #| msgid "Form Background Image"
435
+ msgid "Enable Background Image?"
436
+ msgstr "Formulier Achtergrond Afbeelding"
437
+
438
+ #: custom.php:456
439
  msgid "Background Image:"
440
  msgstr ""
441
 
442
+ #: custom.php:503
443
+ #, fuzzy
444
+ #| msgid "Background Color"
445
+ msgid "Background Gallery:"
446
+ msgstr "Achtergrond Kleur"
447
+
448
+ #: custom.php:516
449
  msgid "Background Repeat:"
450
  msgstr "Achtergrond herhalen"
451
 
452
+ #: custom.php:539
453
  msgid "Select Position:"
454
  msgstr ""
455
 
456
+ #: custom.php:564
457
  msgid "Background Image Size: "
458
  msgstr ""
459
 
460
+ #: custom.php:582
461
  msgid "Customize Login Form"
462
  msgstr ""
463
 
464
+ #: custom.php:604
465
+ msgid "Enable Form Transparency:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
466
  msgstr ""
467
 
468
+ #: custom.php:617
469
+ #, fuzzy
470
+ #| msgid "Form Background Image"
471
+ msgid "Form Background Image:"
472
+ msgstr "Formulier Achtergrond Afbeelding"
473
 
474
+ #: custom.php:744
475
  msgid "Customize Forget Form"
476
  msgstr "Aanpassen Vergeet Form"
477
 
478
+ #: custom.php:757
479
+ #, fuzzy
480
+ #| msgid "Forget Form Background Image"
481
+ msgid "Forget Form Background Image:"
482
  msgstr "Vergeet Van Achtergrond Afbeelding"
483
 
484
+ #: custom.php:771
485
+ #, fuzzy
486
+ #| msgid "Forget Form Background Color"
487
+ msgid "Forget Form Background Color:"
488
  msgstr "Vergeet Vorm Achtergrond Kleur"
489
 
490
+ #: custom.php:781
491
  msgid "Button Beauty"
492
  msgstr "Knoop Beauty"
493
 
494
+ #: custom.php:812
495
+ msgid "Error Messages"
496
+ msgstr "Foutmeldingen"
497
 
498
+ #: custom.php:820 custom.php:1545
499
+ #, php-format
500
+ msgid "%1$sError:%2$s Invalid Password."
501
  msgstr ""
502
 
503
+ #: custom.php:823 custom.php:1551
504
+ #, php-format
505
+ msgid "%1$sError:%2$s The email address isn't correct.."
506
  msgstr ""
507
 
508
+ #: custom.php:824 custom.php:1553
509
+ #, php-format
510
+ msgid "%1$sError:%2$s Please type your email address."
511
  msgstr ""
512
 
513
+ #: custom.php:825 custom.php:1555
514
+ #, php-format
515
+ msgid ""
516
+ "%1$sError:%2$s This username is already registered. Please choose another "
517
+ "one."
518
  msgstr ""
519
 
520
+ #: custom.php:826 custom.php:1557
521
+ #, php-format
522
+ msgid ""
523
+ "%1$sError:%2$s This email is already registered, please choose another one."
524
  msgstr ""
525
 
526
+ #: custom.php:827 custom.php:1559
527
+ #, php-format
528
+ msgid "%1$sError:%2$s Invalid username or email."
529
+ msgstr ""
530
 
531
+ #: custom.php:830
532
  msgid "Incorrect Username Message:"
533
  msgstr "Onjuiste gebruikersnaam Bericht:"
534
 
535
+ #: custom.php:831
536
  msgid "Incorrect Password Message:"
537
  msgstr "Onjuist wachtwoord Message:"
538
 
539
+ #: custom.php:832
540
  msgid "Empty Username Message:"
541
  msgstr "Lege Gebruikersnaam Message:"
542
 
543
+ #: custom.php:833
544
  msgid "Empty Password Message:"
545
  msgstr "Leeg wachtwoord Message:"
546
 
547
+ #: custom.php:834
548
  msgid "Invalid Email Message:"
549
  msgstr "Ongeldig e-mailbericht:"
550
 
551
+ #: custom.php:835
552
  msgid "Empty Email Message:"
553
  msgstr "Lege e-mailbericht:"
554
 
555
+ #: custom.php:836
556
+ #, fuzzy
557
+ #| msgid "Empty Username Message:"
558
+ msgid "Username Already Exist Message:"
559
+ msgstr "Lege Gebruikersnaam Message:"
560
+
561
+ #: custom.php:837
562
+ #, fuzzy
563
+ #| msgid "Empty Email Message:"
564
+ msgid "Email Already Exist Message:"
565
+ msgstr "Lege e-mailbericht:"
566
+
567
+ #: custom.php:838
568
  msgid "Forget Password Message:"
569
  msgstr "Wachtwoord vergeten Message:"
570
 
571
+ #: custom.php:839
572
+ #, fuzzy
573
+ #| msgid "Invalid Email Message:"
574
+ msgid "Login with Email Message:"
575
+ msgstr "Ongeldig e-mailbericht:"
576
+
577
+ #: custom.php:866
578
  msgid "Welcome Messages"
579
  msgstr "Welkom Berichten"
580
 
581
+ #: custom.php:875
582
  msgid "Welcome Message on Lost Password:"
583
  msgstr "Welkom Bericht op Wachtwoord vergeten:"
584
 
585
+ #: custom.php:876
586
+ #, fuzzy
587
+ #| msgid "Welcome Message on Front Page:"
588
+ msgid "Welcome Message on Login Page:"
589
  msgstr "Welkom bericht op de voorpagina:"
590
 
591
+ #: custom.php:877
592
  msgid "Welcome Message on Registration:"
593
  msgstr "Welkom Bericht op Registratie:"
594
 
595
+ #: custom.php:878
596
  msgid "Logout Message:"
597
  msgstr "Logout Message:"
598
 
599
+ #: custom.php:879
600
  msgid "Message Field Border: ( Example: 1px solid #00a0d2; )"
601
  msgstr ""
602
 
603
+ #: custom.php:912
604
  msgid "Message Field Background Color:"
605
  msgstr "Bericht Veld Achtergrond Kleur:"
606
 
607
+ #: custom.php:1024
608
  msgid "Form Footer"
609
  msgstr ""
610
 
611
+ #: custom.php:1046
612
+ #, fuzzy
613
+ #| msgid "Footer Text 1"
614
+ msgid "Enable Footer Text:"
615
+ msgstr "Footer Text 1"
616
 
617
+ #: custom.php:1060
618
+ #, fuzzy
619
+ #| msgid "Lost Password Text"
620
+ msgid "Lost Password Text:"
621
+ msgstr "Wachtwoord vergeten Text"
622
 
623
+ #: custom.php:1095
624
  msgid "Footer Text Color:"
625
  msgstr "Footer Tekst Kleur:"
626
 
627
+ #: custom.php:1109
628
  msgid "Footer Text Hover Color:"
629
  msgstr "Footer Tekst Hover Kleur:"
630
 
631
+ #: custom.php:1130
632
  msgid "Text Font Size:"
633
  msgstr "Tekst Font Grootte:"
634
 
635
+ #: custom.php:1146
636
  msgid "Footer Background Color:"
637
  msgstr "Footer Achtergrond Kleur:"
638
 
639
+ #: custom.php:1170
640
+ msgid "Enable \"Back to\" Text:"
641
  msgstr ""
642
 
643
+ #: custom.php:1185
644
  msgid "\"Back to\" Text Decoration:"
645
  msgstr ""
646
 
647
+ #: custom.php:1205
648
  msgid "\"Back to\" Text Color:"
649
  msgstr ""
650
 
651
+ #: custom.php:1219
652
  msgid "\"Back to\" Text Hover Color:"
653
  msgstr ""
654
 
655
+ #: custom.php:1240
656
  msgid "\"Back to\" Text Font Size:"
657
  msgstr ""
658
 
659
+ #: custom.php:1256
660
+ #, fuzzy
661
+ #| msgid "Form Background Color"
662
+ msgid "\"Back to\" Background Color:"
663
+ msgstr "Formulier Achtergrondkleur"
664
+
665
+ #: custom.php:1281
666
+ msgid "Enable Copyright Note:"
667
  msgstr ""
668
 
669
+ #: custom.php:1285 custom.php:1449
670
+ #, fuzzy, php-format
671
+ #| msgid "All Rights Reserved by:"
672
+ msgid "© %1$s %2$s, All Rights Reserved."
673
+ msgstr "Alle rechten voorbehouden aan:"
674
+
675
+ #: custom.php:1292
676
  msgid "Copyright Note:"
677
  msgstr ""
678
 
679
+ #: custom.php:1316
680
+ msgid ""
681
+ "Show some Love. Please help others learn about this free plugin by placing "
682
+ "small link in footer. Thank you very much!"
683
+ msgstr ""
684
+
685
+ #: custom.php:1331
686
+ msgid "Love Position:"
687
+ msgstr ""
688
+
689
+ #: custom.php:1349
690
+ #, fuzzy
691
+ #| msgid "Custom CSS"
692
+ msgid "Custom CSS/JS"
693
  msgstr "Custom CSS"
694
 
695
+ #: custom.php:1362
696
+ #, fuzzy
697
+ #| msgid "Customize CSS"
698
+ msgid "Customize CSS:"
699
  msgstr "Pas CSS"
700
 
701
+ #: custom.php:1367
702
+ #, php-format
703
+ msgid ""
704
+ "Custom CSS doen't make effect live. For preview please save the setting and "
705
+ "visit %1$s login%2$s page or after save refresh the customizer."
706
+ msgstr ""
707
 
708
+ #: custom.php:1377
709
+ #, fuzzy
710
+ #| msgid "Customize JS"
711
+ msgid "Customize JS:"
712
  msgstr "Pas JS"
713
 
714
+ #: custom.php:1382
715
+ #, php-format
716
+ msgid ""
717
+ "Custom JS doen't make effect live. For preview please save the setting and "
718
+ "visit %1$s login%2$s page or after save refresh the customizer."
719
  msgstr ""
720
 
721
+ #: custom.php:1432 custom.php:1434
722
+ msgid "Powered by:"
723
  msgstr ""
724
 
725
+ #: custom.php:1634 include/template-loginpress.php:469
726
+ msgid "Username"
727
  msgstr ""
728
 
729
+ #: custom.php:1636
730
+ msgid "Email Address"
731
+ msgstr ""
732
+
733
+ #: custom.php:1703 include/template-loginpress.php:370
734
+ msgid ""
735
+ "Please enter your username or email address. You will receive a link to "
736
+ "create a new password via email."
737
  msgstr ""
738
 
739
+ #: custom.php:1711 include/template-loginpress.php:465
740
+ msgid "Register For This Site"
741
  msgstr ""
742
 
743
+ #: custom.php:1729 custom.php:1733
744
+ msgid "Your password has been reset."
745
  msgstr ""
746
 
747
+ #: custom.php:1733 include/template-loginpress.php:397
748
+ #: include/template-loginpress.php:491
749
+ msgid "Log in"
750
  msgstr ""
751
 
752
  #: include/class-remote-notification-client.php:126
771
  msgid "Cannot decode the response content"
772
  msgstr ""
773
 
774
+ #: include/create-loginpress-page.php:58
775
+ #, php-format
776
+ msgid ""
777
+ "<p>This page is used by %1$s to preview the login page in the Customizer.</p>"
778
+ msgstr ""
779
+
780
+ #: include/create-loginpress-page.php:63
781
+ msgctxt "Page slug"
782
+ msgid "loginpress"
783
+ msgstr ""
784
+
785
+ #: include/create-loginpress-page.php:64
786
+ msgctxt "Page title"
787
+ msgid "LoginPress"
788
+ msgstr ""
789
+
790
+ #: include/customizer-strings.php:8
791
+ msgid "Logo Width:"
792
+ msgstr ""
793
+
794
+ #: include/customizer-strings.php:8
795
+ msgid "Logo Height:"
796
+ msgstr ""
797
+
798
+ #: include/customizer-strings.php:8
799
+ msgid "Space Bottom:"
800
+ msgstr ""
801
+
802
+ #: include/customizer-strings.php:22
803
+ #, fuzzy
804
+ #| msgid "Input Field Text Color"
805
+ msgid "Input Fields:"
806
+ msgstr "Tekstinvoerveld Kleur"
807
+
808
+ #: include/customizer-strings.php:23
809
+ #, fuzzy
810
+ #| msgid "Input Field Text Color"
811
+ msgid "Input Field Labels:"
812
+ msgstr "Tekstinvoerveld Kleur"
813
+
814
+ #: include/customizer-strings.php:24
815
+ #, fuzzy
816
+ #| msgid "Login Logo"
817
+ msgid "Login Form:"
818
+ msgstr "Login Logo"
819
+
820
+ #: include/customizer-strings.php:25
821
+ #, fuzzy
822
+ #| msgid "Lost Password Text"
823
+ msgid "Lost Your Password Text"
824
+ msgstr "Wachtwoord vergeten Text"
825
+
826
+ #: include/customizer-strings.php:26
827
+ msgid "Back To Site Text"
828
+ msgstr ""
829
+
830
+ #: include/customizer-strings.php:27
831
+ #, fuzzy
832
+ #| msgid "Login Footer Links"
833
+ msgid "LoginPress Footer Text"
834
+ msgstr "Login Footer Links"
835
+
836
+ #: include/customizer-strings.php:29
837
+ msgid ""
838
+ "This section helps you to easily Customize the login form input field "
839
+ "elements."
840
+ msgstr ""
841
+
842
+ #: include/customizer-strings.php:30
843
+ msgid ""
844
+ "This section helps you to easily Customize the login form input field labels."
845
+ msgstr ""
846
+
847
+ #: include/customizer-strings.php:31
848
+ msgid ""
849
+ "This section helps you to easily Customize the login form elements whether "
850
+ "they are form lables, fields or backgrounds."
851
+ msgstr ""
852
+
853
+ #: include/customizer-strings.php:32
854
+ msgid ""
855
+ " Customize the \"Lost your password\" and \"Register\" text section under "
856
+ "the form."
857
+ msgstr ""
858
+
859
+ #: include/customizer-strings.php:33
860
+ msgid "Customize the \"Back to\" text section under the form."
861
+ msgstr ""
862
+
863
+ #: include/customizer-strings.php:34
864
+ msgid ""
865
+ "Customize the copyright note and branding sections at the footer of login "
866
+ "page."
867
+ msgstr ""
868
+
869
+ #: include/customizer-strings.php:44
870
+ msgid "Form Width:"
871
+ msgstr "Vorm Breedte:"
872
+
873
+ #: include/customizer-strings.php:45
874
+ msgid "Form Minimum Height:"
875
+ msgstr ""
876
+
877
+ #: include/customizer-strings.php:46
878
+ #, fuzzy
879
+ #| msgid "Form Padding:"
880
+ msgid "Form Radius:"
881
+ msgstr "Vorm Padding:"
882
+
883
+ #: include/customizer-strings.php:47
884
+ #, fuzzy
885
+ #| msgid "Form Padding:"
886
+ msgid "Form Shadow:"
887
+ msgstr "Vorm Padding:"
888
+
889
+ #: include/customizer-strings.php:48
890
+ msgid "Form Shadow Opacity:"
891
+ msgstr ""
892
+
893
+ #: include/customizer-strings.php:49
894
+ msgid "Input Text Field Width:"
895
+ msgstr ""
896
+
897
+ #: include/customizer-strings.php:50
898
+ #, fuzzy
899
+ #| msgid "Input Text Field Margin"
900
+ msgid "Input Text Field Radius:"
901
+ msgstr "Invoertekstveld Marge"
902
+
903
+ #: include/customizer-strings.php:51
904
+ #, fuzzy
905
+ #| msgid "Input Text Field Width"
906
+ msgid "Input Text Field Shadow:"
907
+ msgstr "Input tekstveld Breedte"
908
+
909
+ #: include/customizer-strings.php:52
910
+ #, fuzzy
911
+ #| msgid "Input Text Field Width"
912
+ msgid "Input Text Field Shadow Opacity:"
913
+ msgstr "Input tekstveld Breedte"
914
+
915
+ #: include/customizer-strings.php:53
916
+ #, fuzzy
917
+ #| msgid "Input Field Text Color"
918
+ msgid "Input Field Label Font Size:"
919
+ msgstr "Tekstinvoerveld Kleur"
920
+
921
+ #: include/customizer-strings.php:54
922
+ #, fuzzy
923
+ #| msgid "Text Font Size:"
924
+ msgid "Remember Me Font Size:"
925
+ msgstr "Tekst Font Grootte:"
926
+
927
+ #: include/customizer-strings.php:73
928
+ msgid "Form Background Color:"
929
+ msgstr ""
930
+
931
+ #: include/customizer-strings.php:74
932
+ msgid "Input Field Background Color:"
933
+ msgstr ""
934
+
935
+ #: include/customizer-strings.php:75
936
+ msgid "Input Field Text Color:"
937
+ msgstr ""
938
+
939
+ #: include/customizer-strings.php:76
940
+ #, fuzzy
941
+ #| msgid "Input Field Text Color"
942
+ msgid "Input Field Label Color:"
943
+ msgstr "Tekstinvoerveld Kleur"
944
+
945
+ #: include/customizer-strings.php:77
946
+ #, fuzzy
947
+ #| msgid "Label Color"
948
+ msgid "Remember me Label Color:"
949
+ msgstr "Label Color"
950
+
951
+ #: include/customizer-strings.php:81 include/template-loginpress.php:382
952
+ #: include/template-loginpress.php:514
953
+ msgid "Username or Email Address"
954
+ msgstr ""
955
+
956
+ #: include/customizer-strings.php:83
957
+ msgid "Form Padding:"
958
+ msgstr "Vorm Padding:"
959
+
960
+ #: include/customizer-strings.php:84
961
+ msgid "Border (Example: 2px dotted black):"
962
+ msgstr ""
963
+
964
+ #: include/customizer-strings.php:85
965
+ msgid "Input Text Field Margin:"
966
+ msgstr ""
967
+
968
+ #: include/customizer-strings.php:86
969
+ #, fuzzy
970
+ #| msgid "Empty Username Message:"
971
+ msgid "Username Label:"
972
+ msgstr "Lege Gebruikersnaam Message:"
973
+
974
+ #: include/customizer-strings.php:87
975
+ #, fuzzy
976
+ #| msgid "Empty Password Message:"
977
+ msgid "Password Label:"
978
+ msgstr "Leeg wachtwoord Message:"
979
+
980
+ #: include/customizer-strings.php:98
981
+ msgid "Button Color:"
982
+ msgstr ""
983
+
984
+ #: include/customizer-strings.php:99
985
+ msgid "Button Border Color:"
986
+ msgstr ""
987
+
988
+ #: include/customizer-strings.php:100
989
+ msgid "Button Color (Hover):"
990
+ msgstr ""
991
+
992
+ #: include/customizer-strings.php:101
993
+ msgid "Button Border (Hover):"
994
+ msgstr ""
995
+
996
+ #: include/customizer-strings.php:102
997
+ msgid "Button Box Shadow:"
998
+ msgstr ""
999
+
1000
+ #: include/customizer-strings.php:103
1001
+ msgid "Button Text Color:"
1002
+ msgstr ""
1003
+
1004
+ #: include/customizer-strings.php:108
1005
+ #, fuzzy
1006
+ #| msgid "Text Font Size:"
1007
+ msgid "Button Size:"
1008
+ msgstr "Tekst Font Grootte:"
1009
+
1010
+ #: include/customizer-strings.php:108
1011
+ #, fuzzy
1012
+ #| msgid "Form Padding:"
1013
+ msgid "Button Top Padding:"
1014
+ msgstr "Vorm Padding:"
1015
+
1016
+ #: include/customizer-strings.php:108
1017
+ #, fuzzy
1018
+ #| msgid "Form Padding:"
1019
+ msgid "Button Bottom Padding:"
1020
+ msgstr "Vorm Padding:"
1021
+
1022
+ #: include/customizer-strings.php:108
1023
+ msgid "Radius:"
1024
+ msgstr ""
1025
+
1026
+ #: include/customizer-strings.php:108
1027
+ msgid "Shadow:"
1028
+ msgstr ""
1029
+
1030
+ #: include/customizer-strings.php:108
1031
+ msgid "Shadow Opacity:"
1032
  msgstr ""
1033
 
1034
+ #: include/customizer-strings.php:108
1035
+ #, fuzzy
1036
+ #| msgid "Text Font Size:"
1037
+ msgid "Text Size:"
1038
+ msgstr "Tekst Font Grootte:"
1039
+
1040
+ #: include/deactivate_modal.php:131
1041
+ msgid "Quick feedback about LoginPress"
1042
+ msgstr ""
1043
+
1044
+ #: include/deactivate_modal.php:134
1045
  msgid "If you have a moment, please let us know why you are deactivating:"
1046
  msgstr ""
1047
 
1048
+ #: include/deactivate_modal.php:141
1049
+ msgid " I upgraded to LoginPress Pro"
1050
+ msgstr ""
1051
+
1052
+ #: include/deactivate_modal.php:143
1053
+ msgid ""
1054
+ "No need to deactivate this LoginPress Core version. Pro version works as an "
1055
+ "add-on with Core version."
1056
+ msgstr ""
1057
+
1058
+ #: include/deactivate_modal.php:150
1059
  msgid "I only needed the plugin for a short period"
1060
  msgstr ""
1061
 
1062
+ #: include/deactivate_modal.php:159
1063
  msgid "I found a better plugin"
1064
  msgstr ""
1065
 
1066
+ #: include/deactivate_modal.php:162
1067
+ msgid "Kindly tell us the Plugin name."
1068
+ msgstr ""
1069
+
1070
+ #: include/deactivate_modal.php:169
1071
  msgid "The plugin broke my site"
1072
  msgstr ""
1073
 
1074
+ #: include/deactivate_modal.php:178
1075
  msgid "The plugin suddenly stopped working"
1076
  msgstr ""
1077
 
1078
+ #: include/deactivate_modal.php:187
1079
  msgid "I no longer need the plugin"
1080
  msgstr ""
1081
 
1082
+ #: include/deactivate_modal.php:196
1083
  msgid "It's a temporary deactivation. I'm just debugging an issue."
1084
  msgstr ""
1085
 
1086
+ #: include/deactivate_modal.php:205
1087
  msgid "Other"
1088
  msgstr ""
1089
 
1090
+ #: include/deactivate_modal.php:208
1091
  msgid "Kindly tell us the reason so we can improve."
1092
  msgstr ""
1093
 
1094
+ #: include/deactivate_modal.php:213
1095
  msgid "Anonymous feedback"
1096
  msgstr ""
1097
 
1098
+ #: include/deactivate_modal.php:214
1099
+ msgid "Skip & Deactivate"
1100
+ msgstr ""
1101
+
1102
+ #: include/deactivate_modal.php:217
1103
+ msgid "Submit & Deactivate"
1104
+ msgstr ""
1105
+
1106
+ #: include/deactivate_modal.php:218
1107
  msgid "Cancel"
1108
  msgstr ""
1109
 
1110
+ #: include/loginpress-import-export.php:10
1111
+ msgid ""
1112
+ "Import/Export your LoginPress Settings for/from other sites. This will "
1113
+ "export/import all the settings including Customizer settings as well."
1114
+ msgstr ""
1115
+
1116
+ #: include/loginpress-import-export.php:15
1117
+ msgid "Import Settings:"
1118
+ msgstr ""
1119
+
1120
+ #: include/loginpress-import-export.php:19
1121
+ msgid "Import"
1122
+ msgstr ""
1123
+
1124
+ #: include/loginpress-import-export.php:23
1125
+ msgid "LoginPress Settings Imported Successfully."
1126
+ msgstr ""
1127
+
1128
+ #: include/loginpress-import-export.php:25
1129
+ msgid "Select a file and click on Import to start processing."
1130
+ msgstr ""
1131
+
1132
+ #: include/loginpress-import-export.php:30
1133
+ msgid "Export Settings:"
1134
+ msgstr ""
1135
+
1136
+ #: include/loginpress-import-export.php:33
1137
+ msgid "Export"
1138
+ msgstr ""
1139
+
1140
+ #: include/loginpress-import-export.php:37
1141
+ msgid "LoginPress Settings Exported Successfully!"
1142
+ msgstr ""
1143
+
1144
+ #: include/loginpress-import-export.php:38
1145
+ msgid "Export LoginPress Settings."
1146
+ msgstr ""
1147
+
1148
+ #: include/loginpress-optin-form.php:301
1149
+ msgid "Welcome to LoginPress"
1150
+ msgstr ""
1151
+
1152
+ #: include/loginpress-optin-form.php:307
1153
+ #, php-format
1154
+ msgid ""
1155
+ "%1$s Hey %2$s, %4$s If you opt-in some data about your installation of "
1156
+ "LoginPress will be sent to WPBrigade.com (This doesn't include stats)%4$s "
1157
+ "and You will receive new feature updates, security notifications etc %5$sNo "
1158
+ "Spam, I promise.%6$s %4$s%4$s Help us %7$sImprove LoginPress%8$s %4$s %4$s "
1159
+ msgstr ""
1160
+
1161
+ #: include/loginpress-optin-form.php:308
1162
+ msgid "Allow and Continue "
1163
+ msgstr ""
1164
+
1165
+ #: include/loginpress-optin-form.php:309
1166
+ msgid "Skip This Step"
1167
+ msgstr ""
1168
+
1169
+ #: include/loginpress-optin-form.php:311
1170
+ msgid "What permissions are being granted?"
1171
+ msgstr ""
1172
+
1173
+ #: include/loginpress-optin-form.php:313
1174
+ msgid "Your Website Overview"
1175
+ msgstr ""
1176
+
1177
+ #: include/loginpress-optin-form.php:314
1178
+ msgid ""
1179
+ "Your Site URL, WordPress & PHP version, plugins & themes. This data lets us "
1180
+ "make sure this plugin always stays compatible with the most popular plugins "
1181
+ "and themes."
1182
+ msgstr ""
1183
+
1184
+ #: include/loginpress-optin-form.php:316
1185
+ msgid "Your Profile Overview"
1186
+ msgstr ""
1187
+
1188
+ #: include/loginpress-optin-form.php:317
1189
+ msgid "Your name and email address."
1190
+ msgstr ""
1191
+
1192
+ #: include/loginpress-optin-form.php:319
1193
+ msgid "Admin Notices"
1194
+ msgstr ""
1195
+
1196
+ #: include/loginpress-optin-form.php:320
1197
+ msgid "Updates, Announcement, Marketing. No Spam, I promise."
1198
+ msgstr ""
1199
+
1200
+ #: include/loginpress-optin-form.php:322
1201
+ msgid "Plugin Actions"
1202
+ msgstr ""
1203
+
1204
+ #: include/loginpress-optin-form.php:323
1205
+ msgid ""
1206
+ "Active, Deactive, Uninstallation and How you use this plugin's features and "
1207
+ "settings. This is limited to usage data. It does not include any of your "
1208
+ "sensitive LoginPress data, such as traffic. This data helps us learn which "
1209
+ "features are most popular, so we can improve the plugin further."
1210
+ msgstr ""
1211
+
1212
+ #: include/loginpress-optout-form.php:94 include/loginpress-optout-form.php:109
1213
+ msgid "Opt Out"
1214
+ msgstr ""
1215
+
1216
+ #: include/loginpress-optout-form.php:98
1217
+ msgid ""
1218
+ "We appreciate your help in making the plugin better by letting us track some "
1219
+ "usage data."
1220
+ msgstr ""
1221
+
1222
+ #: include/loginpress-optout-form.php:102
1223
+ #, php-format
1224
+ msgid ""
1225
+ "Usage tracking is done in the name of making %1$s LoginPress %2$s better. "
1226
+ "Making a better user experience, prioritizing new features, and more good "
1227
+ "things. We'd really appreciate if you'll reconsider letting us continue with "
1228
+ "the tracking."
1229
+ msgstr ""
1230
+
1231
+ #: include/loginpress-optout-form.php:103
1232
+ #, php-format
1233
+ msgid ""
1234
+ "By clicking \"Opt Out\", we will no longer be sending any data to %1$s "
1235
+ "LoginPress%2$s."
1236
  msgstr ""
1237
 
1238
+ #: include/loginpress-optout-form.php:110
1239
+ msgid "On second thought - I want to continue helping"
1240
+ msgstr ""
1241
+
1242
+ #: include/privacy-policy.php:13
1243
+ #, php-format
1244
+ msgid "%1$sPrivacy Policy%2$s."
1245
+ msgstr ""
1246
+
1247
+ #: include/template-loginpress.php:70
1248
+ #, php-format
1249
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1250
+ msgstr ""
1251
+
1252
+ #: include/template-loginpress.php:147
1253
+ msgid "https://wordpress.org/"
1254
+ msgstr ""
1255
+
1256
+ #: include/template-loginpress.php:148
1257
+ msgid "Powered by WordPress"
1258
+ msgstr ""
1259
+
1260
+ #: include/template-loginpress.php:250
1261
+ #, php-format
1262
+ msgctxt "site"
1263
+ msgid "&larr; Back to %s"
1264
+ msgstr ""
1265
+
1266
+ #: include/template-loginpress.php:370
1267
+ #, fuzzy
1268
+ #| msgid "Lost Password Text"
1269
+ msgid "Lost Password"
1270
+ msgstr "Wachtwoord vergeten Text"
1271
+
1272
+ #: include/template-loginpress.php:393
1273
+ msgid "Get New Password"
1274
+ msgstr ""
1275
+
1276
+ #: include/template-loginpress.php:400 include/template-loginpress.php:487
1277
+ #: include/template-loginpress.php:544
1278
+ msgid "Register"
1279
+ msgstr ""
1280
+
1281
+ #: include/template-loginpress.php:465
1282
+ msgid "Registration Form"
1283
+ msgstr ""
1284
+
1285
+ #: include/template-loginpress.php:473
1286
+ msgid "Email"
1287
+ msgstr ""
1288
+
1289
+ #: include/template-loginpress.php:484
1290
+ msgid "Registration confirmation will be emailed to you."
1291
+ msgstr ""
1292
+
1293
+ #: include/template-loginpress.php:493 include/template-loginpress.php:552
1294
+ #, fuzzy
1295
+ #| msgid "Lost Password Text"
1296
+ msgid "Lost your password?"
1297
+ msgstr "Wachtwoord vergeten Text"
1298
+
1299
+ #: include/template-loginpress.php:508 include/template-loginpress.php:536
1300
+ msgid "Log In"
1301
+ msgstr ""
1302
+
1303
+ #: include/template-loginpress.php:534
1304
+ msgid "Remember Me"
1305
+ msgstr ""
1306
+
1307
+ #: loginpress.php:278
1308
+ msgid "Activate"
1309
+ msgstr ""
1310
+
1311
+ #: loginpress.php:378
1312
  msgid "Vote!"
1313
  msgstr ""
1314
 
1315
+ #: loginpress.php:571
1316
  msgid "Leave A Review?"
1317
  msgstr ""
1318
 
1319
+ #: loginpress.php:572
1320
  msgid ""
1321
  "We hope you've enjoyed using LoginPress! Would you consider leaving us a "
1322
  "review on WordPress.org?"
1323
  msgstr ""
1324
 
1325
+ #: loginpress.php:574
1326
  msgid "Sure! I'd love to!"
1327
  msgstr ""
1328
 
1329
+ #: loginpress.php:575
1330
  msgid "I've already left a review"
1331
  msgstr ""
1332
 
1333
+ #: loginpress.php:576
1334
  msgid "Maybe Later"
1335
  msgstr ""
1336
 
1337
+ #: loginpress.php:577
1338
  msgid "Never show again"
1339
  msgstr ""
1340
 
1341
+ #: loginpress.php:602
1342
+ msgid "Introducing LoginPress Addons!"
1343
+ msgstr ""
1344
+
1345
+ #: loginpress.php:603
1346
+ msgid "Extend LoginPress with these add-ons and supercharge your login pages."
1347
+ msgstr ""
1348
+
1349
+ #: loginpress.php:607
1350
+ msgid "Learn More"
1351
+ msgstr ""
1352
+
1353
+ #: loginpress.php:666
1354
  #, php-format
1355
  msgid "%1$s Settings %2$s | %3$s Customize %4$s"
1356
  msgstr ""
1357
 
1358
+ #: loginpress.php:670
1359
+ #, php-format
1360
+ msgid " | %1$s Opt Out %2$s "
1361
+ msgstr ""
1362
+
1363
+ #: loginpress.php:672
1364
+ #, php-format
1365
+ msgid " | %1$s Opt In %2$s "
1366
+ msgstr ""
1367
+
1368
+ #: loginpress.php:678
1369
  #, php-format
1370
  msgid "%1$s %3$s Upgrade Pro %4$s %2$s"
1371
  msgstr ""
1372
 
1373
+ #~ msgid "Footer Text Display:"
1374
+ #~ msgstr "Footer Text Display:"
1375
 
1376
  #~ msgid "Logo Width"
1377
  #~ msgstr "Logo Breedte"
1388
  #~ msgid "Logo Hover Test"
1389
  #~ msgstr "Logo Hover Test"
1390
 
 
 
 
1391
  #~ msgid "Image Size: "
1392
  #~ msgstr "Afbeeldingsgrootte:"
1393
 
1394
  #~ msgid "Customize Form"
1395
  #~ msgstr "Pas Form"
1396
 
 
 
 
1397
  #~ msgid "Form Height:"
1398
  #~ msgstr "Vorm Lengte:"
1399
 
1400
  #~ msgid " Border (Example: 2px dotted black) "
1401
  #~ msgstr "Border (Voorbeeld: 2px gestippelde zwart)"
1402
 
 
 
 
 
 
 
1403
  #~ msgid "Input Field Background Color"
1404
  #~ msgstr "Input Field Achtergrond Kleur"
1405
 
 
 
 
 
 
 
1406
  #~ msgid "Button Color"
1407
  #~ msgstr "Knop Kleur"
1408
 
1445
  #~ msgid "Footer"
1446
  #~ msgstr "Footer"
1447
 
 
 
 
 
 
 
1448
  #~ msgid "Footer Links 1"
1449
  #~ msgstr "Footer Links 1"
1450
 
1466
  #~ msgid "Footer Links 4"
1467
  #~ msgstr "Footer Links 4"
1468
 
 
 
 
1469
  #~ msgid "Footer Links Background Color:"
1470
  #~ msgstr "Footer Links Achtergrond Kleur:"
1471
 
loginpress.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
  /**
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
- * Plugin URI: http://WPBrigade.com/wordpress/plugins/loginpress/
5
  * Description: LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by <a href="https://wpbrigade.com/">WPBrigade</a> which allows you to completely change the layout of login, register and forgot password forms.
6
- * Version: 1.1.9
7
  * Author: WPBrigade
8
- * Author URI: http://WPBrigade.com/
9
  * Text Domain: loginpress
10
  * Domain Path: /languages
11
  *
@@ -22,7 +22,7 @@ if ( ! class_exists( 'LoginPress' ) ) :
22
  /**
23
  * @var string
24
  */
25
- public $version = '1.1.9';
26
 
27
  /**
28
  * @var The single instance of the class
@@ -742,7 +742,7 @@ new LoginPress_Settings();
742
  if (!class_exists('TAV_Remote_Notification_Client')) {
743
  require( LOGINPRESS_ROOT_PATH . 'include/class-remote-notification-client.php' );
744
  }
745
- $notification = new TAV_Remote_Notification_Client( 125, '16765c0902705d62', 'http://wpbrigade.com?post_type=notification' );
746
 
747
  register_activation_hook( __FILE__, array( 'LoginPress', 'plugin_activation' ) );
748
  register_uninstall_hook( __FILE__, array( 'LoginPress', 'plugin_uninstallation' ) );
1
  <?php
2
  /**
3
  * Plugin Name: LoginPress - Customizing the WordPress Login
4
+ * Plugin URI: https://WPBrigade.com/wordpress/plugins/loginpress/
5
  * Description: LoginPress is the best <code>wp-login</code> Login Page Customizer plugin by <a href="https://wpbrigade.com/">WPBrigade</a> which allows you to completely change the layout of login, register and forgot password forms.
6
+ * Version: 1.1.10
7
  * Author: WPBrigade
8
+ * Author URI: https://WPBrigade.com/
9
  * Text Domain: loginpress
10
  * Domain Path: /languages
11
  *
22
  /**
23
  * @var string
24
  */
25
+ public $version = '1.1.10';
26
 
27
  /**
28
  * @var The single instance of the class
742
  if (!class_exists('TAV_Remote_Notification_Client')) {
743
  require( LOGINPRESS_ROOT_PATH . 'include/class-remote-notification-client.php' );
744
  }
745
+ $notification = new TAV_Remote_Notification_Client( 125, '16765c0902705d62', 'https://wpbrigade.com?post_type=notification' );
746
 
747
  register_activation_hook( __FILE__, array( 'LoginPress', 'plugin_activation' ) );
748
  register_uninstall_hook( __FILE__, array( 'LoginPress', 'plugin_uninstallation' ) );
readme.txt CHANGED
@@ -3,8 +3,8 @@ Requires at least: 4.0
3
  Tested up to: 4.9
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com
6
- Tags: wp-login, login, login customizer, custom login, custom login logo, login customizer, custom login page, login error, login page style, loginpress
7
- Stable tag: 1.1.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -12,20 +12,21 @@ LoginPress is a WordPress Custom Login Page Customizer plugin allows you to easi
12
 
13
  == Description ==
14
 
15
- <a href="http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade" rel="friend">LoginPress Plugin</a> by LoginPress holds a lot of customization fields to change the layout of the login page of WordPress. You can modify the look and feel of login page completely even the login error messages, forgot error messages, registration error messages, forget password hint message and many more.
16
  LoginPress Plugin would give you and your users a feeling that it is a custom login page and a part of the site layout. You must checkout the Demo video of how you can customize WordPress login page.
17
 
18
  **Getting Started video for customizing login page using LoginPress**
19
 
20
  `[youtube https://www.youtube.com/watch?v=GMAwsHomJlE]`
21
 
22
- **[Why You Should Upgrade to PRO ??](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade)**
23
  `[youtube https://www.youtube.com/watch?v=9snT9rWxO4g]`
24
 
25
- [Checkout the Pro version](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade)
26
 
27
  LoginPress plugin is built using The Customizer API which is getting popular for live-previewing any changes to the layouts of WordPress. So, with LoginPress you can preview your login page changes instantly. This login customizer plugin is easy enough & required no coding skills. Just have options for each element on the login form and make a new customized login page within seconds.
28
 
 
29
 
30
  > Multilingual & Translatable
31
  > WPML Compatible
@@ -108,13 +109,13 @@ After going through this extensive list of features you can imagine Why LoginPre
108
  If you like this plugin, then consider checking out our other projects:
109
 
110
  * <a href="https://analytify.io/" rel="friend" title="Google Analytics by Analytify">Google Analytics by Analytify</a> - Google Analytics by Analytify
111
- * <a href="http://wpbrigade.com/" rel="friend" title="Related Posts">Related Posts</a> - Best Related Posts Plugin
112
 
113
  == Notes ==
114
 
115
- LoginPress is absolutely, positively the most <a href="http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade" rel="friend" title="Best Custom login form plugin">beginner friendly WordPress custom login form plugin</a> on the market. It is both easy and powerful.
116
 
117
- Also, I'm the founder of <a href="http://WPBrigade.com/" rel="friend">WPBrigade</a>, We do custom WordPress themes for clients and can transform any website in WordPress. It was a huge priority for me to make a WordPress custom login form plugin that beginners can use without any training.
118
 
119
  I feel that we have done that here. I hope you enjoy using LoginPress.
120
 
@@ -155,14 +156,14 @@ If you have a WordPress Website, and you want to add a cool looking login page.
155
 
156
  = How to upgrade to LoginPress Pro? =
157
 
158
- Buy Pro version from <a target="_blank" rel="friend" href="http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=readme-faqs&utm_campaign=pro-upgrade">this link</a>. LoginPress Pro is a premium plugin which works if you have installed Free version already. So, first install our Free version and then install the Pro package.
159
 
160
  LoginPress Pro version extends the Premium functionality to our Core Free version of LoginPress.
161
 
162
  = Step-by-step instructions on How to Upgrade from existing Free version to Pro =
163
 
164
  1. You have installed and setup Free version already.
165
- 2. Buy Pro version from <a target="_blank" rel="friend" href="http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=readme-faqs&utm_campaign=pro-upgrade">this link</a>.
166
  3. Upload the Pro version.
167
  4. Pro features will be enabled automatically.
168
  5. You don't need to setup Free version options again.
@@ -174,36 +175,41 @@ You can find it in the email Sales Receipt.
174
 
175
  = How to donate or contribute? =
176
 
177
- Please visit <a target="_blank" rel="friend" href="http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=readme-donate&utm_campaign=pro-upgrade">this link</a> for more info.
178
 
179
  == Screenshots ==
180
 
181
  1. Custom Login page Example #1 with Default Background
182
- 2. Custom Login page (Company theme) Example #2 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
183
- 3. Custom Login page (Company theme) Example #3 with Captcha [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
184
- 4. Custom Login page (Persona theme) Example #4 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
185
- 5. Custom Login page (Corporate theme) Example #5 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
186
- 6. Custom Login page (Corporate theme) Example #6 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
187
- 7. Custom Login page (Startup theme) Example #7 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
188
- 8. Custom Login page (Wedding theme) Example #8 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
189
- 9. Custom Login page (Wedding theme) Example #9 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
190
- 10. Custom Login page (Company theme) Example #10 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
191
- 11. Custom Login page (Company theme) Example #11 with Captcha [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
192
- 12. Custom Login page (Bikers theme) Example #12 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
193
- 13. Custom Login page (Fitness theme) Example #13 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
194
- 14. Custom Login page (Shopping theme) Example #14 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
195
- 15. Custom Login page (Writers theme) Example #15 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
196
- 16. Custom Login page (Writers theme) Example #16 with reCaptcha [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
197
- 17. Custom Login page (Persona theme) Example #17 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
198
- 18. Custom Login page (Persona theme) Example #18 with reCaptcha [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
199
- 19. Custom Login page (Geek theme) Example #19 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
200
- 20. Custom Login page (Geek theme) Example #20 with reCaptcha [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
201
- 21. Custom Login page (Innovation theme) Example #21 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
202
- 22. Custom Login page (Photographers theme) Example #22 [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
203
- 23. Custom Login page (Company theme) Example #23 with Captcha [Pro feature](http://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
204
 
205
  == Changelog ==
206
 
 
 
 
 
 
207
  = 1.1.9 - 2018-08-25 =
208
  * New Feature: Create a option for removing the LoginPress settings/page during uninstallation of the plugin.
209
  * Update: log file.
@@ -405,5 +411,5 @@ Please visit <a target="_blank" rel="friend" href="http://WPBrigade.com/wordpres
405
 
406
  == Upgrade Notice ==
407
 
408
- = 1.1.9 =
409
  * Important Release, upgrade immediately.
3
  Tested up to: 4.9
4
  Contributors: WPBrigade, hiddenpearls, AbdulWahab610
5
  Author URI: https://wpbrigade.com
6
+ Tags: wp-login, custom wp-login, login customizer, custom login, custom login logo, login customizer, custom login page, login error, login page style, loginpress
7
+ Stable tag: 1.1.10
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ <a href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade" rel="friend">LoginPress Plugin</a> by LoginPress holds a lot of customization fields to change the layout of the login page of WordPress. You can modify the look and feel of login page completely even the login error messages, forgot error messages, registration error messages, forget password hint message and many more.
16
  LoginPress Plugin would give you and your users a feeling that it is a custom login page and a part of the site layout. You must checkout the Demo video of how you can customize WordPress login page.
17
 
18
  **Getting Started video for customizing login page using LoginPress**
19
 
20
  `[youtube https://www.youtube.com/watch?v=GMAwsHomJlE]`
21
 
22
+ **[Why You Should Upgrade to PRO ??](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade)**
23
  `[youtube https://www.youtube.com/watch?v=9snT9rWxO4g]`
24
 
25
+ [Checkout the Pro version](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade)
26
 
27
  LoginPress plugin is built using The Customizer API which is getting popular for live-previewing any changes to the layouts of WordPress. So, with LoginPress you can preview your login page changes instantly. This login customizer plugin is easy enough & required no coding skills. Just have options for each element on the login form and make a new customized login page within seconds.
28
 
29
+ [LoginPress Documentation](https://wpbrigade.com/docs-article/loginpress-documentation/)
30
 
31
  > Multilingual & Translatable
32
  > WPML Compatible
109
  If you like this plugin, then consider checking out our other projects:
110
 
111
  * <a href="https://analytify.io/" rel="friend" title="Google Analytics by Analytify">Google Analytics by Analytify</a> - Google Analytics by Analytify
112
+ * <a href="https://wpbrigade.com/" rel="friend" title="Related Posts">Related Posts</a> - Best Related Posts Plugin
113
 
114
  == Notes ==
115
 
116
+ LoginPress is absolutely, positively the most <a href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=link&utm_campaign=pro-upgrade" rel="friend" title="Best Custom login form plugin">beginner friendly WordPress custom login form plugin</a> on the market. It is both easy and powerful.
117
 
118
+ Also, I'm the founder of <a href="https://WPBrigade.com/" rel="friend">WPBrigade</a>, We do custom WordPress themes for clients and can transform any website in WordPress. It was a huge priority for me to make a WordPress custom login form plugin that beginners can use without any training.
119
 
120
  I feel that we have done that here. I hope you enjoy using LoginPress.
121
 
156
 
157
  = How to upgrade to LoginPress Pro? =
158
 
159
+ Buy Pro version from <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=readme-faqs&utm_campaign=pro-upgrade">this link</a>. LoginPress Pro is a premium plugin which works if you have installed Free version already. So, first install our Free version and then install the Pro package.
160
 
161
  LoginPress Pro version extends the Premium functionality to our Core Free version of LoginPress.
162
 
163
  = Step-by-step instructions on How to Upgrade from existing Free version to Pro =
164
 
165
  1. You have installed and setup Free version already.
166
+ 2. Buy Pro version from <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=readme-faqs&utm_campaign=pro-upgrade">this link</a>.
167
  3. Upload the Pro version.
168
  4. Pro features will be enabled automatically.
169
  5. You don't need to setup Free version options again.
175
 
176
  = How to donate or contribute? =
177
 
178
+ Please visit <a target="_blank" rel="friend" href="https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=readme-donate&utm_campaign=pro-upgrade">this link</a> for more info.
179
 
180
  == Screenshots ==
181
 
182
  1. Custom Login page Example #1 with Default Background
183
+ 2. Custom Login page (Company theme) Example #2 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
184
+ 3. Custom Login page (Company theme) Example #3 with Captcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
185
+ 4. Custom Login page (Persona theme) Example #4 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
186
+ 5. Custom Login page (Corporate theme) Example #5 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
187
+ 6. Custom Login page (Corporate theme) Example #6 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
188
+ 7. Custom Login page (Startup theme) Example #7 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
189
+ 8. Custom Login page (Wedding theme) Example #8 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
190
+ 9. Custom Login page (Wedding theme) Example #9 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
191
+ 10. Custom Login page (Company theme) Example #10 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
192
+ 11. Custom Login page (Company theme) Example #11 with Captcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
193
+ 12. Custom Login page (Bikers theme) Example #12 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
194
+ 13. Custom Login page (Fitness theme) Example #13 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
195
+ 14. Custom Login page (Shopping theme) Example #14 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
196
+ 15. Custom Login page (Writers theme) Example #15 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
197
+ 16. Custom Login page (Writers theme) Example #16 with reCaptcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
198
+ 17. Custom Login page (Persona theme) Example #17 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
199
+ 18. Custom Login page (Persona theme) Example #18 with reCaptcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
200
+ 19. Custom Login page (Geek theme) Example #19 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
201
+ 20. Custom Login page (Geek theme) Example #20 with reCaptcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
202
+ 21. Custom Login page (Innovation theme) Example #21 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
203
+ 22. Custom Login page (Photographers theme) Example #22 [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
204
+ 23. Custom Login page (Company theme) Example #23 with Captcha [Pro feature](https://WPBrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=screenshots&utm_campaign=pro-upgrade)
205
 
206
  == Changelog ==
207
 
208
+ = 1.1.10 - 2018-09-11 =
209
+ * Update: language files.
210
+ * Update: Documentation link in readme.txt
211
+ * Enhancement: Code refactoring.
212
+
213
  = 1.1.9 - 2018-08-25 =
214
  * New Feature: Create a option for removing the LoginPress settings/page during uninstallation of the plugin.
215
  * Update: log file.
411
 
412
  == Upgrade Notice ==
413
 
414
+ = 1.1.10 =
415
  * Important Release, upgrade immediately.