Erident Custom Login and Dashboard - Version 3.3

Version Description

  • Added Background Opacity feature to the Login Form
  • Now Register button will also take same color of Login button
Download this release

Release Info

Developer libinvbabu
Plugin Icon 128x128 Erident Custom Login and Dashboard
Version 3.3
Comparing to
See all releases

Code changes from version 3.2 to 3.3

er-custom-login.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.eridenttech.com/wp-plugins/erident-custom-login-and-dashb
5
  Description: Customize completely your WordPress Login Screen and Dashboard. Add your company logo to login screen, change background colors, styles, button color etc. Customize your Dashboard footer text also for complete branding.
6
  Text Domain: erident-custom-login-and-dashboard
7
  Domain Path: /languages
8
- Version: 3.2
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
@@ -80,7 +80,13 @@ function er_login_logo() {
80
  $er_login_form_shadow = "none";
81
  }
82
 
83
-
 
 
 
 
 
 
84
  function er_hex2rgb( $colour ) {
85
  if ( $colour[0] == '#' ) {
86
  $colour = substr( $colour, 1 );
@@ -98,6 +104,8 @@ function er_login_logo() {
98
  return array( 'red' => $r, 'green' => $g, 'blue' => $b );
99
  }
100
  $btnrgba = er_hex2rgb( $er_options['dashboard_button_color'] );
 
 
101
  ?>
102
  <style type="text/css">
103
  /* Styles loading from Erident Custom Login and Dashboard Plugin*/
@@ -122,7 +130,7 @@ function er_login_logo() {
122
  .login form {
123
  border-radius:<?php echo $er_options['dashboard_login_radius'] ?>px;
124
  border:<?php echo $er_options['dashboard_border_thick'] ?>px <?php echo $er_options['dashboard_login_border'] ?> <?php echo $er_options['dashboard_border_color'] ?>;
125
- background:<?php echo $er_options['dashboard_login_bg'] ?> url(<?php echo $er_options['login_bg_image'] ?>) <?php echo $er_options['login_bg_repeat'] ?> <?php echo $er_options['login_bg_xpos'] ?> <?php echo $er_options['login_bg_ypos'] ?>;
126
  -moz-box-shadow: <?php echo $er_login_form_shadow ?>;
127
  -webkit-box-shadow: <?php echo $er_login_form_shadow ?>;
128
  box-shadow: <?php echo $er_login_form_shadow ?>;
@@ -131,11 +139,11 @@ function er_login_logo() {
131
  color:<?php echo $er_options['dashboard_text_color'] ?>;
132
  font-size:<?php echo $er_options['dashboard_label_text_size'] ?>px;
133
  }
134
- body.login #loginform p.submit .button-primary {
135
  background: <?php echo $er_options['dashboard_button_color'] ?> !important;
136
  border: none !important;
137
  }
138
- body.login #loginform p.submit .button-primary:hover, body.login #loginform p.submit .button-primary:focus {
139
  background: rgba(<?php echo $btnrgba['red'];?>,<?php echo $btnrgba['green']?>,<?php echo $btnrgba['blue']?>, 0.9) !important;
140
  }
141
  body.login div#login form .input, .login input[type="text"] {
@@ -254,6 +262,7 @@ function wp_erident_dashboard_install() {
254
  'dashboard_border_thick' => '4',
255
  'dashboard_border_color' => '#0069A0',
256
  'dashboard_login_bg' => '#dbdbdb',
 
257
  'dashboard_text_color' => '#000000',
258
  'dashboard_input_text_color' => '#555555',
259
  'dashboard_label_text_size' => '14',
@@ -606,8 +615,9 @@ value="<?php echo $er_options['dashboard_border_thick']; ?>" />px
606
  <td>
607
  <input class="er-textfield-small" type="text" id="wp_erident_dashboard_login_bg" name="er_options_up[dashboard_login_bg]" value="<?php echo $er_options['dashboard_login_bg']; ?>" />
608
  <div id="ilctabscolorpicker2"></div>
 
609
  <br />
610
- <span class="description"><?php _e( 'Click the box to select a color.', 'erident-custom-login-and-dashboard' ); ?></span>
611
  </td>
612
  </tr>
613
  <tr valign="top">
5
  Description: Customize completely your WordPress Login Screen and Dashboard. Add your company logo to login screen, change background colors, styles, button color etc. Customize your Dashboard footer text also for complete branding.
6
  Text Domain: erident-custom-login-and-dashboard
7
  Domain Path: /languages
8
+ Version: 3.3
9
  Author: Libin V Babu
10
  Author URI: http://www.libin.in/
11
  License: GPL
80
  $er_login_form_shadow = "none";
81
  }
82
 
83
+ /* Check if opacity field is empty */
84
+ if($er_options['dashboard_login_bg_opacity'] == "") {
85
+ $er_login_default_opacity = "1";
86
+ }
87
+ else {
88
+ $er_login_default_opacity = $er_options['dashboard_login_bg_opacity'];
89
+ }
90
  function er_hex2rgb( $colour ) {
91
  if ( $colour[0] == '#' ) {
92
  $colour = substr( $colour, 1 );
104
  return array( 'red' => $r, 'green' => $g, 'blue' => $b );
105
  }
106
  $btnrgba = er_hex2rgb( $er_options['dashboard_button_color'] );
107
+ $loginbg = er_hex2rgb( $er_options['dashboard_login_bg'] );
108
+
109
  ?>
110
  <style type="text/css">
111
  /* Styles loading from Erident Custom Login and Dashboard Plugin*/
130
  .login form {
131
  border-radius:<?php echo $er_options['dashboard_login_radius'] ?>px;
132
  border:<?php echo $er_options['dashboard_border_thick'] ?>px <?php echo $er_options['dashboard_login_border'] ?> <?php echo $er_options['dashboard_border_color'] ?>;
133
+ background:rgba(<?php echo $loginbg['red'];?>,<?php echo $loginbg['green']?>,<?php echo $loginbg['blue']?>,<?php echo $er_login_default_opacity; ?>) url(<?php echo $er_options['login_bg_image'] ?>) <?php echo $er_options['login_bg_repeat'] ?> <?php echo $er_options['login_bg_xpos'] ?> <?php echo $er_options['login_bg_ypos'] ?>;
134
  -moz-box-shadow: <?php echo $er_login_form_shadow ?>;
135
  -webkit-box-shadow: <?php echo $er_login_form_shadow ?>;
136
  box-shadow: <?php echo $er_login_form_shadow ?>;
139
  color:<?php echo $er_options['dashboard_text_color'] ?>;
140
  font-size:<?php echo $er_options['dashboard_label_text_size'] ?>px;
141
  }
142
+ body.login #loginform p.submit .button-primary, body.wp-core-ui .button-primary {
143
  background: <?php echo $er_options['dashboard_button_color'] ?> !important;
144
  border: none !important;
145
  }
146
+ body.login #loginform p.submit .button-primary:hover, body.login #loginform p.submit .button-primary:focus, body.wp-core-ui .button-primary:hover {
147
  background: rgba(<?php echo $btnrgba['red'];?>,<?php echo $btnrgba['green']?>,<?php echo $btnrgba['blue']?>, 0.9) !important;
148
  }
149
  body.login div#login form .input, .login input[type="text"] {
262
  'dashboard_border_thick' => '4',
263
  'dashboard_border_color' => '#0069A0',
264
  'dashboard_login_bg' => '#dbdbdb',
265
+ 'dashboard_login_bg_opacity' => '1',
266
  'dashboard_text_color' => '#000000',
267
  'dashboard_input_text_color' => '#555555',
268
  'dashboard_label_text_size' => '14',
615
  <td>
616
  <input class="er-textfield-small" type="text" id="wp_erident_dashboard_login_bg" name="er_options_up[dashboard_login_bg]" value="<?php echo $er_options['dashboard_login_bg']; ?>" />
617
  <div id="ilctabscolorpicker2"></div>
618
+ <?php _e( 'Background Opacity: ', 'erident-custom-login-and-dashboard' ); ?> <input class="er-textfield-small" name="er_options_up[dashboard_login_bg_opacity]" type="number" step="0.1" min="0" max="1" id="wp_erident_dashboard_login_bg_opacity" value="<?php echo $er_options['dashboard_login_bg_opacity']; ?>" />
619
  <br />
620
+ <span class="description"><?php _e( 'Click the box to select a color. Background Opacity will helps you to put transparent color over a background image. Possible values 0 to 1. Example: 0.5 means 50% transparency. Default: 1 <a href="https://wordpress.org/plugins/erident-custom-login-and-dashboard/faq/" target="_blank">More Info</a>', 'erident-custom-login-and-dashboard' ); ?></span>
621
  </td>
622
  </tr>
623
  <tr valign="top">
languages/en.mo CHANGED
Binary file
languages/en.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-08-07 20:33+0530\n"
5
- "PO-Revision-Date: 2014-08-07 20:33+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
@@ -20,115 +20,114 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr ""
22
 
23
- #: er-custom-login.php:215
24
  msgid "Please upload a valid .json file"
25
  msgstr ""
26
 
27
- #: er-custom-login.php:221
28
  msgid "Please upload a file to import"
29
  msgstr ""
30
 
31
- #: er-custom-login.php:228
32
  msgid "New settings imported successfully!"
33
  msgstr ""
34
 
35
- #: er-custom-login.php:316
36
  msgid "Custom Login and Dashboard"
37
  msgstr ""
38
 
39
- #: er-custom-login.php:337
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr ""
42
 
43
- #: er-custom-login.php:338
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
47
  msgstr ""
48
 
49
- #: er-custom-login.php:338
50
  msgid "Click on the header of each block to open it."
51
  msgstr ""
52
 
53
- #: er-custom-login.php:345
54
  msgid "Settings saved."
55
  msgstr ""
56
 
57
- #: er-custom-login.php:352
58
  msgid "Dashboard Settings"
59
  msgstr ""
60
 
61
- #: er-custom-login.php:353
62
  msgid ""
63
  "(These settings will be reflected when a user/admin logins to the WordPress "
64
  "Dashboard)"
65
  msgstr ""
66
 
67
- #: er-custom-login.php:358
68
  msgid "Enter the text for dashboard left side footer:"
69
  msgstr ""
70
 
71
- #: er-custom-login.php:363
72
  msgid ""
73
  "This will replace the default \"Thank you for creating with WordPress\" on "
74
  "the bottom left side of dashboard"
75
  msgstr ""
76
 
77
- #: er-custom-login.php:367
78
  msgid "Enter the text for dashboard right side footer:"
79
  msgstr ""
80
 
81
- #: er-custom-login.php:371
82
  msgid ""
83
  "This will replace the default \"WordPress Version\" on the bottom right side "
84
  "of dashboard"
85
  msgstr ""
86
 
87
- #: er-custom-login.php:380
88
  msgid "Login Screen Background"
89
  msgstr ""
90
 
91
- #: er-custom-login.php:381
92
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
93
  msgstr ""
94
 
95
- #: er-custom-login.php:386
96
  msgid "Login Screen Background Color:"
97
  msgstr ""
98
 
99
- #: er-custom-login.php:391 er-custom-login.php:601 er-custom-login.php:610
100
- #: er-custom-login.php:712 er-custom-login.php:740 er-custom-login.php:769
101
- #: er-custom-login.php:781
102
  msgid "Click the box to select a color."
103
  msgstr ""
104
 
105
- #: er-custom-login.php:396
106
  msgid "Login Screen Background Image:"
107
  msgstr ""
108
 
109
- #: er-custom-login.php:400
110
  msgid ""
111
  "Add your own pattern/image url for the screen background. Leave blank if you "
112
  "don't need any images."
113
  msgstr ""
114
 
115
- #: er-custom-login.php:404
116
  msgid "Login Screen Background Repeat"
117
  msgstr ""
118
 
119
- #: er-custom-login.php:442 er-custom-login.php:659
120
  msgid "Select an image repeat option from dropdown."
121
  msgstr ""
122
 
123
- #: er-custom-login.php:446 er-custom-login.php:664
124
  msgid "Background Position:"
125
  msgstr ""
126
 
127
- #: er-custom-login.php:447 er-custom-login.php:665
128
  msgid "Horizontal Position: "
129
  msgstr ""
130
 
131
- #: er-custom-login.php:452 er-custom-login.php:670
132
  msgid ""
133
  "The background-position property sets the starting position of a background "
134
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -137,11 +136,11 @@ msgid ""
137
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
138
  msgstr ""
139
 
140
- #: er-custom-login.php:457
141
  msgid "Background Size:"
142
  msgstr ""
143
 
144
- #: er-custom-login.php:461
145
  msgid ""
146
  "The background-size property specifies the size of a background image. If "
147
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -150,267 +149,280 @@ msgid ""
150
  "asp\" target=\"_blank\">More Info</a>"
151
  msgstr ""
152
 
153
- #: er-custom-login.php:472
154
  msgid "Login Screen Logo"
155
  msgstr ""
156
 
157
- #: er-custom-login.php:473
158
  msgid "(Change the default WordPress logo and powered by text)"
159
  msgstr ""
160
 
161
- #: er-custom-login.php:478
162
  msgid "Logo Url:"
163
  msgstr ""
164
 
165
- #: er-custom-login.php:480
166
  msgid "Default Logo Size 274px × 63px"
167
  msgstr ""
168
 
169
- #: er-custom-login.php:482
170
  msgid ""
171
  "(URL path to image to replace default WordPress Logo. (You can upload your "
172
  "image with the WordPress media uploader)"
173
  msgstr ""
174
 
175
- #: er-custom-login.php:487
176
  msgid "Logo Width:"
177
  msgstr ""
178
 
179
- #: er-custom-login.php:491
180
  msgid "Your Logo width(Enter in pixels). Default: 274px"
181
  msgstr ""
182
 
183
- #: er-custom-login.php:495
184
  msgid "Logo Height:"
185
  msgstr ""
186
 
187
- #: er-custom-login.php:499
188
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
189
  msgstr ""
190
 
191
- #: er-custom-login.php:504
192
  msgid "Powered by Text:"
193
  msgstr ""
194
 
195
- #: er-custom-login.php:508
196
  msgid "Show when mouse hover over custom Login logo"
197
  msgstr ""
198
 
199
- #: er-custom-login.php:518
200
  msgid "Login Form Settings"
201
  msgstr ""
202
 
203
- #: er-custom-login.php:519
204
  msgid "(The following settings will change the Login Form style)"
205
  msgstr ""
206
 
207
- #: er-custom-login.php:524
208
  msgid "Login form width:"
209
  msgstr ""
210
 
211
- #: er-custom-login.php:528
212
  msgid "Total Form width(Enter in pixels). Default: 350px"
213
  msgstr ""
214
 
215
- #: er-custom-login.php:532
216
  msgid "Login Form Border Radius:"
217
  msgstr ""
218
 
219
- #: er-custom-login.php:536
220
  msgid ""
221
  "Border Radius of Login Form. This is the option to make the corners rounded."
222
  "(Enter in pixels)"
223
  msgstr ""
224
 
225
- #: er-custom-login.php:540
226
  msgid "Login Border Style"
227
  msgstr ""
228
 
229
- #: er-custom-login.php:584
230
  msgid "Select a Border Style option from dropdown."
231
  msgstr ""
232
 
233
- #: er-custom-login.php:588
234
  msgid "Login Border Thickness:"
235
  msgstr ""
236
 
237
- #: er-custom-login.php:592
238
  msgid "Thickness of Border (Enter value in pixels)"
239
  msgstr ""
240
 
241
- #: er-custom-login.php:596
242
  msgid "Login Border Color:"
243
  msgstr ""
244
 
245
- #: er-custom-login.php:605
246
  msgid "Login Form Background Color:"
247
  msgstr ""
248
 
249
- #: er-custom-login.php:614
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  msgid "Login Form Background Image:"
251
  msgstr ""
252
 
253
- #: er-custom-login.php:617
254
  msgid ""
255
  "Add your own pattern/image url to the form background. Leave blank if you "
256
  "don't need any images."
257
  msgstr ""
258
 
259
- #: er-custom-login.php:621
260
  msgid "Login Form Background Repeat"
261
  msgstr ""
262
 
263
- #: er-custom-login.php:667
264
  msgid "Vertical Position: "
265
  msgstr ""
266
 
267
- #: er-custom-login.php:675
268
  msgid "Login Form Label Text Color"
269
  msgstr ""
270
 
271
- #: er-custom-login.php:680
272
  msgid ""
273
  "Click the box to select a color. This will change the color of label "
274
  "Username/Password"
275
  msgstr ""
276
 
277
- #: er-custom-login.php:684
278
  msgid "Login Form Label Text Size:"
279
  msgstr ""
280
 
281
- #: er-custom-login.php:687
282
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
283
  msgstr ""
284
 
285
- #: er-custom-login.php:691
286
  msgid "Login Form Input Text Color"
287
  msgstr ""
288
 
289
- #: er-custom-login.php:696
290
  msgid ""
291
  "Click the box to select a color. This will change the color of text inside "
292
  "text box."
293
  msgstr ""
294
 
295
- #: er-custom-login.php:700
296
  msgid "Login Form Input Text Size:"
297
  msgstr ""
298
 
299
- #: er-custom-login.php:703
300
  msgid "Font Size of text inside text box(Enter value in pixels)"
301
  msgstr ""
302
 
303
- #: er-custom-login.php:707
304
  msgid "Login Form Link Color"
305
  msgstr ""
306
 
307
- #: er-custom-login.php:717
308
  msgid "Enable link shadow?"
309
  msgstr ""
310
 
311
- #: er-custom-login.php:725 er-custom-login.php:754 er-custom-login.php:805
312
  msgid "Yes"
313
  msgstr ""
314
 
315
- #: er-custom-login.php:729 er-custom-login.php:758 er-custom-login.php:809
316
  msgid "No"
317
  msgstr ""
318
 
319
- #: er-custom-login.php:731 er-custom-login.php:760
320
  msgid "(Check an option)"
321
  msgstr ""
322
 
323
- #: er-custom-login.php:735
324
  msgid "Login Form Link Shadow Color"
325
  msgstr ""
326
 
327
- #: er-custom-login.php:746
328
  msgid "Enable form shadow?"
329
  msgstr ""
330
 
331
- #: er-custom-login.php:764
332
  msgid "Login Form Shadow Color"
333
  msgstr ""
334
 
335
- #: er-custom-login.php:776
336
  msgid "Login Button Color"
337
  msgstr ""
338
 
339
- #: er-custom-login.php:792
340
  msgid "Plugin Un-install Settings"
341
  msgstr ""
342
 
343
- #: er-custom-login.php:797
344
  msgid "Delete custom settings upon plugin deactivation?"
345
  msgstr ""
346
 
347
- #: er-custom-login.php:811
348
  msgid ""
349
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
350
  "plugin deactivation)"
351
  msgstr ""
352
 
353
- #: er-custom-login.php:819
354
  msgid "Save Changes"
355
  msgstr ""
356
 
357
- #: er-custom-login.php:826
358
  msgid "Export Settings"
359
  msgstr ""
360
 
361
- #: er-custom-login.php:828
362
  msgid ""
363
  "Export the plugin settings for this site as a .json file. This allows you to "
364
  "easily import the configuration into another site."
365
  msgstr ""
366
 
367
- #: er-custom-login.php:833
368
  msgid "Export"
369
  msgstr ""
370
 
371
- #: er-custom-login.php:841
372
  msgid "Import Settings"
373
  msgstr ""
374
 
375
- #: er-custom-login.php:843
376
  msgid ""
377
  "Import the plugin settings from a .json file. This file can be obtained by "
378
  "exporting the settings on another site using the form above."
379
  msgstr ""
380
 
381
- #: er-custom-login.php:851
382
  msgid "Import"
383
  msgstr ""
384
 
385
- #: er-custom-login.php:859
386
  msgid "Quick Links"
387
  msgstr ""
388
 
389
- #: er-custom-login.php:861
390
  msgid "Open Your WP Login Page in a New Tab"
391
  msgstr ""
392
 
393
- #: er-custom-login.php:862
394
  msgid "Plugin Documentation"
395
  msgstr ""
396
 
397
- #: er-custom-login.php:863
398
  msgid "Plugin Support Page"
399
  msgstr ""
400
 
401
- #: er-custom-login.php:864
402
  msgid "Feature Request/Suggestions?"
403
  msgstr ""
404
 
405
- #: er-custom-login.php:865
406
  msgid "Got some Love? Give us a 5 star rating!"
407
  msgstr ""
408
 
409
- #: er-custom-login.php:869
410
  msgid "Hire Me"
411
  msgstr ""
412
 
413
- #: er-custom-login.php:870
414
  msgid ""
415
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
416
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -418,28 +430,28 @@ msgid ""
418
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
419
  msgstr ""
420
 
421
- #: er-custom-login.php:872
422
  msgid "Translation Credits"
423
  msgstr ""
424
 
425
- #: er-custom-login.php:874
426
  msgid ""
427
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
428
  "\">Adriana De La Cuadra</a>"
429
  msgstr ""
430
 
431
- #: er-custom-login.php:875
432
  msgid ""
433
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
434
  "\" target=\"_blank\">Guillaume Vaslin</a>"
435
  msgstr ""
436
 
437
- #: er-custom-login.php:876
438
  msgid ""
439
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
440
  "Kaulfuss</a>"
441
  msgstr ""
442
 
443
- #: er-custom-login.php:878
444
  msgid "Do you wants to translate this plugin to your language? Email me!"
445
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2014-10-31 14:47+0530\n"
5
+ "PO-Revision-Date: 2014-10-31 14:47+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
20
  msgid "Settings"
21
  msgstr ""
22
 
23
+ #: er-custom-login.php:223
24
  msgid "Please upload a valid .json file"
25
  msgstr ""
26
 
27
+ #: er-custom-login.php:229
28
  msgid "Please upload a file to import"
29
  msgstr ""
30
 
31
+ #: er-custom-login.php:236
32
  msgid "New settings imported successfully!"
33
  msgstr ""
34
 
35
+ #: er-custom-login.php:325
36
  msgid "Custom Login and Dashboard"
37
  msgstr ""
38
 
39
+ #: er-custom-login.php:346
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr ""
42
 
43
+ #: er-custom-login.php:347
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
47
  msgstr ""
48
 
49
+ #: er-custom-login.php:347
50
  msgid "Click on the header of each block to open it."
51
  msgstr ""
52
 
53
+ #: er-custom-login.php:354
54
  msgid "Settings saved."
55
  msgstr ""
56
 
57
+ #: er-custom-login.php:361
58
  msgid "Dashboard Settings"
59
  msgstr ""
60
 
61
+ #: er-custom-login.php:362
62
  msgid ""
63
  "(These settings will be reflected when a user/admin logins to the WordPress "
64
  "Dashboard)"
65
  msgstr ""
66
 
67
+ #: er-custom-login.php:367
68
  msgid "Enter the text for dashboard left side footer:"
69
  msgstr ""
70
 
71
+ #: er-custom-login.php:372
72
  msgid ""
73
  "This will replace the default \"Thank you for creating with WordPress\" on "
74
  "the bottom left side of dashboard"
75
  msgstr ""
76
 
77
+ #: er-custom-login.php:376
78
  msgid "Enter the text for dashboard right side footer:"
79
  msgstr ""
80
 
81
+ #: er-custom-login.php:380
82
  msgid ""
83
  "This will replace the default \"WordPress Version\" on the bottom right side "
84
  "of dashboard"
85
  msgstr ""
86
 
87
+ #: er-custom-login.php:389
88
  msgid "Login Screen Background"
89
  msgstr ""
90
 
91
+ #: er-custom-login.php:390
92
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
93
  msgstr ""
94
 
95
+ #: er-custom-login.php:395
96
  msgid "Login Screen Background Color:"
97
  msgstr ""
98
 
99
+ #: er-custom-login.php:400 er-custom-login.php:610 er-custom-login.php:722
100
+ #: er-custom-login.php:750 er-custom-login.php:779 er-custom-login.php:791
 
101
  msgid "Click the box to select a color."
102
  msgstr ""
103
 
104
+ #: er-custom-login.php:405
105
  msgid "Login Screen Background Image:"
106
  msgstr ""
107
 
108
+ #: er-custom-login.php:409
109
  msgid ""
110
  "Add your own pattern/image url for the screen background. Leave blank if you "
111
  "don't need any images."
112
  msgstr ""
113
 
114
+ #: er-custom-login.php:413
115
  msgid "Login Screen Background Repeat"
116
  msgstr ""
117
 
118
+ #: er-custom-login.php:451 er-custom-login.php:669
119
  msgid "Select an image repeat option from dropdown."
120
  msgstr ""
121
 
122
+ #: er-custom-login.php:455 er-custom-login.php:674
123
  msgid "Background Position:"
124
  msgstr ""
125
 
126
+ #: er-custom-login.php:456 er-custom-login.php:675
127
  msgid "Horizontal Position: "
128
  msgstr ""
129
 
130
+ #: er-custom-login.php:461 er-custom-login.php:680
131
  msgid ""
132
  "The background-position property sets the starting position of a background "
133
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
136
  "cssref/pr_background-position.asp\" target=\"_blank\">More Info</a>"
137
  msgstr ""
138
 
139
+ #: er-custom-login.php:466
140
  msgid "Background Size:"
141
  msgstr ""
142
 
143
+ #: er-custom-login.php:470
144
  msgid ""
145
  "The background-size property specifies the size of a background image. If "
146
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
149
  "asp\" target=\"_blank\">More Info</a>"
150
  msgstr ""
151
 
152
+ #: er-custom-login.php:481
153
  msgid "Login Screen Logo"
154
  msgstr ""
155
 
156
+ #: er-custom-login.php:482
157
  msgid "(Change the default WordPress logo and powered by text)"
158
  msgstr ""
159
 
160
+ #: er-custom-login.php:487
161
  msgid "Logo Url:"
162
  msgstr ""
163
 
164
+ #: er-custom-login.php:489
165
  msgid "Default Logo Size 274px × 63px"
166
  msgstr ""
167
 
168
+ #: er-custom-login.php:491
169
  msgid ""
170
  "(URL path to image to replace default WordPress Logo. (You can upload your "
171
  "image with the WordPress media uploader)"
172
  msgstr ""
173
 
174
+ #: er-custom-login.php:496
175
  msgid "Logo Width:"
176
  msgstr ""
177
 
178
+ #: er-custom-login.php:500
179
  msgid "Your Logo width(Enter in pixels). Default: 274px"
180
  msgstr ""
181
 
182
+ #: er-custom-login.php:504
183
  msgid "Logo Height:"
184
  msgstr ""
185
 
186
+ #: er-custom-login.php:508
187
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
188
  msgstr ""
189
 
190
+ #: er-custom-login.php:513
191
  msgid "Powered by Text:"
192
  msgstr ""
193
 
194
+ #: er-custom-login.php:517
195
  msgid "Show when mouse hover over custom Login logo"
196
  msgstr ""
197
 
198
+ #: er-custom-login.php:527
199
  msgid "Login Form Settings"
200
  msgstr ""
201
 
202
+ #: er-custom-login.php:528
203
  msgid "(The following settings will change the Login Form style)"
204
  msgstr ""
205
 
206
+ #: er-custom-login.php:533
207
  msgid "Login form width:"
208
  msgstr ""
209
 
210
+ #: er-custom-login.php:537
211
  msgid "Total Form width(Enter in pixels). Default: 350px"
212
  msgstr ""
213
 
214
+ #: er-custom-login.php:541
215
  msgid "Login Form Border Radius:"
216
  msgstr ""
217
 
218
+ #: er-custom-login.php:545
219
  msgid ""
220
  "Border Radius of Login Form. This is the option to make the corners rounded."
221
  "(Enter in pixels)"
222
  msgstr ""
223
 
224
+ #: er-custom-login.php:549
225
  msgid "Login Border Style"
226
  msgstr ""
227
 
228
+ #: er-custom-login.php:593
229
  msgid "Select a Border Style option from dropdown."
230
  msgstr ""
231
 
232
+ #: er-custom-login.php:597
233
  msgid "Login Border Thickness:"
234
  msgstr ""
235
 
236
+ #: er-custom-login.php:601
237
  msgid "Thickness of Border (Enter value in pixels)"
238
  msgstr ""
239
 
240
+ #: er-custom-login.php:605
241
  msgid "Login Border Color:"
242
  msgstr ""
243
 
244
+ #: er-custom-login.php:614
245
  msgid "Login Form Background Color:"
246
  msgstr ""
247
 
248
+ #: er-custom-login.php:618
249
+ msgid "Background Opacity: "
250
+ msgstr ""
251
+
252
+ #: er-custom-login.php:620
253
+ msgid ""
254
+ "Click the box to select a color. Background Opacity will helps you to put "
255
+ "transparent color over a background image. Possible values 0 to 1. Example: "
256
+ "0.5 means 50% transparency. Default: 1 <a href=\"https://wordpress.org/"
257
+ "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">More "
258
+ "Info</a>"
259
+ msgstr ""
260
+
261
+ #: er-custom-login.php:624
262
  msgid "Login Form Background Image:"
263
  msgstr ""
264
 
265
+ #: er-custom-login.php:627
266
  msgid ""
267
  "Add your own pattern/image url to the form background. Leave blank if you "
268
  "don't need any images."
269
  msgstr ""
270
 
271
+ #: er-custom-login.php:631
272
  msgid "Login Form Background Repeat"
273
  msgstr ""
274
 
275
+ #: er-custom-login.php:677
276
  msgid "Vertical Position: "
277
  msgstr ""
278
 
279
+ #: er-custom-login.php:685
280
  msgid "Login Form Label Text Color"
281
  msgstr ""
282
 
283
+ #: er-custom-login.php:690
284
  msgid ""
285
  "Click the box to select a color. This will change the color of label "
286
  "Username/Password"
287
  msgstr ""
288
 
289
+ #: er-custom-login.php:694
290
  msgid "Login Form Label Text Size:"
291
  msgstr ""
292
 
293
+ #: er-custom-login.php:697
294
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
295
  msgstr ""
296
 
297
+ #: er-custom-login.php:701
298
  msgid "Login Form Input Text Color"
299
  msgstr ""
300
 
301
+ #: er-custom-login.php:706
302
  msgid ""
303
  "Click the box to select a color. This will change the color of text inside "
304
  "text box."
305
  msgstr ""
306
 
307
+ #: er-custom-login.php:710
308
  msgid "Login Form Input Text Size:"
309
  msgstr ""
310
 
311
+ #: er-custom-login.php:713
312
  msgid "Font Size of text inside text box(Enter value in pixels)"
313
  msgstr ""
314
 
315
+ #: er-custom-login.php:717
316
  msgid "Login Form Link Color"
317
  msgstr ""
318
 
319
+ #: er-custom-login.php:727
320
  msgid "Enable link shadow?"
321
  msgstr ""
322
 
323
+ #: er-custom-login.php:735 er-custom-login.php:764 er-custom-login.php:815
324
  msgid "Yes"
325
  msgstr ""
326
 
327
+ #: er-custom-login.php:739 er-custom-login.php:768 er-custom-login.php:819
328
  msgid "No"
329
  msgstr ""
330
 
331
+ #: er-custom-login.php:741 er-custom-login.php:770
332
  msgid "(Check an option)"
333
  msgstr ""
334
 
335
+ #: er-custom-login.php:745
336
  msgid "Login Form Link Shadow Color"
337
  msgstr ""
338
 
339
+ #: er-custom-login.php:756
340
  msgid "Enable form shadow?"
341
  msgstr ""
342
 
343
+ #: er-custom-login.php:774
344
  msgid "Login Form Shadow Color"
345
  msgstr ""
346
 
347
+ #: er-custom-login.php:786
348
  msgid "Login Button Color"
349
  msgstr ""
350
 
351
+ #: er-custom-login.php:802
352
  msgid "Plugin Un-install Settings"
353
  msgstr ""
354
 
355
+ #: er-custom-login.php:807
356
  msgid "Delete custom settings upon plugin deactivation?"
357
  msgstr ""
358
 
359
+ #: er-custom-login.php:821
360
  msgid ""
361
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
362
  "plugin deactivation)"
363
  msgstr ""
364
 
365
+ #: er-custom-login.php:829
366
  msgid "Save Changes"
367
  msgstr ""
368
 
369
+ #: er-custom-login.php:836
370
  msgid "Export Settings"
371
  msgstr ""
372
 
373
+ #: er-custom-login.php:838
374
  msgid ""
375
  "Export the plugin settings for this site as a .json file. This allows you to "
376
  "easily import the configuration into another site."
377
  msgstr ""
378
 
379
+ #: er-custom-login.php:843
380
  msgid "Export"
381
  msgstr ""
382
 
383
+ #: er-custom-login.php:851
384
  msgid "Import Settings"
385
  msgstr ""
386
 
387
+ #: er-custom-login.php:853
388
  msgid ""
389
  "Import the plugin settings from a .json file. This file can be obtained by "
390
  "exporting the settings on another site using the form above."
391
  msgstr ""
392
 
393
+ #: er-custom-login.php:861
394
  msgid "Import"
395
  msgstr ""
396
 
397
+ #: er-custom-login.php:869
398
  msgid "Quick Links"
399
  msgstr ""
400
 
401
+ #: er-custom-login.php:871
402
  msgid "Open Your WP Login Page in a New Tab"
403
  msgstr ""
404
 
405
+ #: er-custom-login.php:872
406
  msgid "Plugin Documentation"
407
  msgstr ""
408
 
409
+ #: er-custom-login.php:873
410
  msgid "Plugin Support Page"
411
  msgstr ""
412
 
413
+ #: er-custom-login.php:874
414
  msgid "Feature Request/Suggestions?"
415
  msgstr ""
416
 
417
+ #: er-custom-login.php:875
418
  msgid "Got some Love? Give us a 5 star rating!"
419
  msgstr ""
420
 
421
+ #: er-custom-login.php:879
422
  msgid "Hire Me"
423
  msgstr ""
424
 
425
+ #: er-custom-login.php:880
426
  msgid ""
427
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
428
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
430
  "www.libin.in\" target=\"_blank\">www.libin.in</a>"
431
  msgstr ""
432
 
433
+ #: er-custom-login.php:882
434
  msgid "Translation Credits"
435
  msgstr ""
436
 
437
+ #: er-custom-login.php:884
438
  msgid ""
439
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
440
  "\">Adriana De La Cuadra</a>"
441
  msgstr ""
442
 
443
+ #: er-custom-login.php:885
444
  msgid ""
445
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
446
  "\" target=\"_blank\">Guillaume Vaslin</a>"
447
  msgstr ""
448
 
449
+ #: er-custom-login.php:886
450
  msgid ""
451
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
452
  "Kaulfuss</a>"
453
  msgstr ""
454
 
455
+ #: er-custom-login.php:888
456
  msgid "Do you wants to translate this plugin to your language? Email me!"
457
  msgstr ""
languages/erident-custom-login-and-dashboard-de_DE.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-08-07 20:33+0530\n"
5
- "PO-Revision-Date: 2014-08-07 20:34+0530\n"
6
  "Last-Translator: Peter Kaulfuß <info@peter-kaulfuss.eu>\n"
7
  "Language-Team: Peter Kaulfuß\n"
8
  "Language: de_DE\n"
@@ -20,27 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Einstellungen"
22
 
23
- #: er-custom-login.php:215
24
  msgid "Please upload a valid .json file"
25
  msgstr "Bitte wählen Sie eine gültige .json Datei zum Hochladen aus"
26
 
27
- #: er-custom-login.php:221
28
  msgid "Please upload a file to import"
29
  msgstr "Bitte laden Sie eine Datei zum Importieren hoch"
30
 
31
- #: er-custom-login.php:228
32
  msgid "New settings imported successfully!"
33
  msgstr "Die neuen Einstellungen wurden erfolgreich importiert!"
34
 
35
- #: er-custom-login.php:316
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Persönliches Login und Dashboard"
38
 
39
- #: er-custom-login.php:337
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Erident Custom Login and Dashboard Einstellungen"
42
 
43
- #: er-custom-login.php:338
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
@@ -48,21 +48,21 @@ msgstr ""
48
  "Das Plugin lädt die Standard Einstellungen für die unten stehenden Optionen. "
49
  "Bitte ändern Sie die Einstellungen wie von Ihnen benötigt."
50
 
51
- #: er-custom-login.php:338
52
  msgid "Click on the header of each block to open it."
53
  msgstr ""
54
  "Klicken Sie auf die Überschriften der Blöcke, um die möglichen Einstellungen "
55
  "anzuzeigen."
56
 
57
- #: er-custom-login.php:345
58
  msgid "Settings saved."
59
  msgstr "Einstellungen gespeichert."
60
 
61
- #: er-custom-login.php:352
62
  msgid "Dashboard Settings"
63
  msgstr "Dashboard Einstellungen"
64
 
65
- #: er-custom-login.php:353
66
  msgid ""
67
  "(These settings will be reflected when a user/admin logins to the WordPress "
68
  "Dashboard)"
@@ -70,12 +70,12 @@ msgstr ""
70
  "(Diese Einstellungen werden wirksam, wenn sich ein Nutzer/Administrator an "
71
  "dem Dashboard von WordPress anmeldet)"
72
 
73
- #: er-custom-login.php:358
74
  msgid "Enter the text for dashboard left side footer:"
75
  msgstr ""
76
  "Geben Sie den Text für die linke Seite des Fußbereiches am DashBoard ein:"
77
 
78
- #: er-custom-login.php:363
79
  msgid ""
80
  "This will replace the default \"Thank you for creating with WordPress\" on "
81
  "the bottom left side of dashboard"
@@ -83,12 +83,12 @@ msgstr ""
83
  "Diese Einstellung wird den Standardtext \"Danke für das Vertrauen in "
84
  "WordPress.\" unten links auf dem Dashboard ersetzen"
85
 
86
- #: er-custom-login.php:367
87
  msgid "Enter the text for dashboard right side footer:"
88
  msgstr ""
89
  "Geben Sie den Text für die rechte Seite des Fußbereiches am DashBoard ein:"
90
 
91
- #: er-custom-login.php:371
92
  msgid ""
93
  "This will replace the default \"WordPress Version\" on the bottom right side "
94
  "of dashboard"
@@ -96,30 +96,29 @@ msgstr ""
96
  "Diese Einstellung wird den Standardtext \"Version ...\" unten rechts auf dem "
97
  "Dashboard ersetzen"
98
 
99
- #: er-custom-login.php:380
100
  msgid "Login Screen Background"
101
  msgstr "Login Seite Hintergrund"
102
 
103
- #: er-custom-login.php:381
104
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
105
  msgstr ""
106
  "(Die folgenden Einstellungen werden auf der Seite \"wp-login.php\" wirksam)"
107
 
108
- #: er-custom-login.php:386
109
  msgid "Login Screen Background Color:"
110
  msgstr "Login Seite Hintergrundfarbe:"
111
 
112
- #: er-custom-login.php:391 er-custom-login.php:601 er-custom-login.php:610
113
- #: er-custom-login.php:712 er-custom-login.php:740 er-custom-login.php:769
114
- #: er-custom-login.php:781
115
  msgid "Click the box to select a color."
116
  msgstr "Klicken Sie die Box an, um eine Farbe auszuwählen."
117
 
118
- #: er-custom-login.php:396
119
  msgid "Login Screen Background Image:"
120
  msgstr "Login Seite Hintergrund Bild:"
121
 
122
- #: er-custom-login.php:400
123
  msgid ""
124
  "Add your own pattern/image url for the screen background. Leave blank if you "
125
  "don't need any images."
@@ -128,25 +127,25 @@ msgstr ""
128
  "Hintergrund ein. Frei lassen, falls Sie kein Bild in den Hintergrund "
129
  "einfügen wollen."
130
 
131
- #: er-custom-login.php:404
132
  msgid "Login Screen Background Repeat"
133
  msgstr "Login Seite Hintergrund Wiederholung"
134
 
135
- #: er-custom-login.php:442 er-custom-login.php:659
136
  msgid "Select an image repeat option from dropdown."
137
  msgstr ""
138
  "Wählen Sie eine Option zur Wiederholung des Hintergrundbildes aus dem "
139
  "Auswahlmenü aus."
140
 
141
- #: er-custom-login.php:446 er-custom-login.php:664
142
  msgid "Background Position:"
143
  msgstr "Hintergrund Position:"
144
 
145
- #: er-custom-login.php:447 er-custom-login.php:665
146
  msgid "Horizontal Position: "
147
  msgstr "Horizontale Position:"
148
 
149
- #: er-custom-login.php:452 er-custom-login.php:670
150
  msgid ""
151
  "The background-position property sets the starting position of a background "
152
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -162,11 +161,11 @@ msgstr ""
162
  "<a href=\"http://www.w3schools.com/cssref/pr_background-position.asp\" "
163
  "target=\"_blank\">Weitere Informationen</a>"
164
 
165
- #: er-custom-login.php:457
166
  msgid "Background Size:"
167
  msgstr "Hintergund Größe:"
168
 
169
- #: er-custom-login.php:461
170
  msgid ""
171
  "The background-size property specifies the size of a background image. If "
172
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -181,23 +180,23 @@ msgstr ""
181
  "\"http://www.w3schools.com/cssref/css3_pr_background-size.asp\" target="
182
  "\"_blank\">Weitere Informationen</a>"
183
 
184
- #: er-custom-login.php:472
185
  msgid "Login Screen Logo"
186
  msgstr "Login Seite Logo"
187
 
188
- #: er-custom-login.php:473
189
  msgid "(Change the default WordPress logo and powered by text)"
190
  msgstr "(Ändert das Standard-Logo und den powered by Text von WordPress)"
191
 
192
- #: er-custom-login.php:478
193
  msgid "Logo Url:"
194
  msgstr "URL der Logo-Datei:"
195
 
196
- #: er-custom-login.php:480
197
  msgid "Default Logo Size 274px × 63px"
198
  msgstr "Standard Größe des Logos ist 274px x 63px"
199
 
200
- #: er-custom-login.php:482
201
  msgid ""
202
  "(URL path to image to replace default WordPress Logo. (You can upload your "
203
  "image with the WordPress media uploader)"
@@ -206,55 +205,55 @@ msgstr ""
206
  "werden soll. (Sie können ihre Logo-Datei mit dem Medien-Uploader von "
207
  "Wordpress hochladen, und die URL zum Bild dann hier einfügen))"
208
 
209
- #: er-custom-login.php:487
210
  msgid "Logo Width:"
211
  msgstr "Logo Breite:"
212
 
213
- #: er-custom-login.php:491
214
  msgid "Your Logo width(Enter in pixels). Default: 274px"
215
  msgstr "Die Breite Ihres Logos (Wert in Pixel eingeben). Standard: 271px"
216
 
217
- #: er-custom-login.php:495
218
  msgid "Logo Height:"
219
  msgstr "Logo Höhe:"
220
 
221
- #: er-custom-login.php:499
222
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
223
  msgstr "Die Höhe Ihres Logos (Wert in Pixel eingeben). Standard: 63px"
224
 
225
- #: er-custom-login.php:504
226
  msgid "Powered by Text:"
227
  msgstr "Powered by Text:"
228
 
229
- #: er-custom-login.php:508
230
  msgid "Show when mouse hover over custom Login logo"
231
  msgstr "Wird angezeigt, wenn die Maus über dem Logo schwebt"
232
 
233
- #: er-custom-login.php:518
234
  msgid "Login Form Settings"
235
  msgstr "Login-Formular Einstellungen"
236
 
237
- #: er-custom-login.php:519
238
  msgid "(The following settings will change the Login Form style)"
239
  msgstr ""
240
  "(Die folgenden Einstellungen werden das Aussehen des Login-Formulars "
241
  "verändern)"
242
 
243
- #: er-custom-login.php:524
244
  msgid "Login form width:"
245
  msgstr "Login-Formular Breite:"
246
 
247
- #: er-custom-login.php:528
248
  msgid "Total Form width(Enter in pixels). Default: 350px"
249
  msgstr ""
250
  "Die gesamte Breite des Login-Formulars (Wert in Pixel eingeben). Standard: "
251
  "350px"
252
 
253
- #: er-custom-login.php:532
254
  msgid "Login Form Border Radius:"
255
  msgstr "Login-Formular Rahmen-Radius:"
256
 
257
- #: er-custom-login.php:536
258
  msgid ""
259
  "Border Radius of Login Form. This is the option to make the corners rounded."
260
  "(Enter in pixels)"
@@ -262,35 +261,53 @@ msgstr ""
262
  "Der Rahmen-Radius des Login-Formulars. Diese Einstellung bewirkt das die "
263
  "Ecken des Rahmens rund werden. (In Pixel eingeben)"
264
 
265
- #: er-custom-login.php:540
266
  msgid "Login Border Style"
267
  msgstr "Login-Formular Rahmen-Linienart"
268
 
269
- #: er-custom-login.php:584
270
  msgid "Select a Border Style option from dropdown."
271
  msgstr "Wählen Sie eine Rahmen-Linienart aus dem Auswahlmenü aus."
272
 
273
- #: er-custom-login.php:588
274
  msgid "Login Border Thickness:"
275
  msgstr "Login-Formular Rahmen Liniendicke"
276
 
277
- #: er-custom-login.php:592
278
  msgid "Thickness of Border (Enter value in pixels)"
279
  msgstr "Die Dicke der Rahmen-Linie (Einen Wert in Pixel eingeben)"
280
 
281
- #: er-custom-login.php:596
282
  msgid "Login Border Color:"
283
  msgstr "Login-Formular Rahmen Linienfarbe"
284
 
285
- #: er-custom-login.php:605
286
  msgid "Login Form Background Color:"
287
  msgstr "Login-Formular Hintergrund Farbe:"
288
 
289
- #: er-custom-login.php:614
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  msgid "Login Form Background Image:"
291
  msgstr "Login-Formular Hintergrund Bild:"
292
 
293
- #: er-custom-login.php:617
294
  msgid ""
295
  "Add your own pattern/image url to the form background. Leave blank if you "
296
  "don't need any images."
@@ -299,19 +316,19 @@ msgstr ""
299
  "Formular Hintergrund ein. Frei lassen, falls Sie kein Bild in den "
300
  "Hintergrund einfügen wollen."
301
 
302
- #: er-custom-login.php:621
303
  msgid "Login Form Background Repeat"
304
  msgstr "Login-Formular Hnitergrundbild Wiederholungen"
305
 
306
- #: er-custom-login.php:667
307
  msgid "Vertical Position: "
308
  msgstr "Vertikale Position:"
309
 
310
- #: er-custom-login.php:675
311
  msgid "Login Form Label Text Color"
312
  msgstr "Login-Formular Beschriftung Text-Farbe"
313
 
314
- #: er-custom-login.php:680
315
  msgid ""
316
  "Click the box to select a color. This will change the color of label "
317
  "Username/Password"
@@ -319,21 +336,21 @@ msgstr ""
319
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
320
  "die Farbe des Beschriftungstextes Benutzername / Passwort"
321
 
322
- #: er-custom-login.php:684
323
  msgid "Login Form Label Text Size:"
324
  msgstr "Login-Formular Beschriftung Text-Größe"
325
 
326
- #: er-custom-login.php:687
327
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
328
  msgstr ""
329
  "Schriftgröße des Beschriftungstextes der Formularfelder Benutzername / "
330
  "Passwort (Wert in Pixel eingeben)"
331
 
332
- #: er-custom-login.php:691
333
  msgid "Login Form Input Text Color"
334
  msgstr "Login-Formular Texteingabe Text-Farbe"
335
 
336
- #: er-custom-login.php:696
337
  msgid ""
338
  "Click the box to select a color. This will change the color of text inside "
339
  "text box."
@@ -341,62 +358,62 @@ msgstr ""
341
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
342
  "die Farbe des Eingabetextes in den Formularfeldern."
343
 
344
- #: er-custom-login.php:700
345
  msgid "Login Form Input Text Size:"
346
  msgstr "Login-Formular Texteingabe Text-Größe"
347
 
348
- #: er-custom-login.php:703
349
  msgid "Font Size of text inside text box(Enter value in pixels)"
350
  msgstr ""
351
  "Schriftgröße des Textes der in die Formularfelder eingegeben wird (Wert in "
352
  "Pixel eingeben)"
353
 
354
- #: er-custom-login.php:707
355
  msgid "Login Form Link Color"
356
  msgstr "Login-Formular Link-Farbe"
357
 
358
- #: er-custom-login.php:717
359
  msgid "Enable link shadow?"
360
  msgstr "Schatten am Link aktivieren?"
361
 
362
- #: er-custom-login.php:725 er-custom-login.php:754 er-custom-login.php:805
363
  msgid "Yes"
364
  msgstr "Ja"
365
 
366
- #: er-custom-login.php:729 er-custom-login.php:758 er-custom-login.php:809
367
  msgid "No"
368
  msgstr "Nein"
369
 
370
- #: er-custom-login.php:731 er-custom-login.php:760
371
  msgid "(Check an option)"
372
  msgstr "(eine Option auswählen)"
373
 
374
- #: er-custom-login.php:735
375
  msgid "Login Form Link Shadow Color"
376
  msgstr "Login-Forumlar Link-Schatten Farbe"
377
 
378
- #: er-custom-login.php:746
379
  msgid "Enable form shadow?"
380
  msgstr "Schatten des Formularfeldes aktivieren?"
381
 
382
- #: er-custom-login.php:764
383
  msgid "Login Form Shadow Color"
384
  msgstr "Login-Formular Formular-Schatten Farbe"
385
 
386
- #: er-custom-login.php:776
387
  msgid "Login Button Color"
388
  msgstr "Login-Knopf Farbe"
389
 
390
- #: er-custom-login.php:792
391
  msgid "Plugin Un-install Settings"
392
  msgstr "Plugin De-Installation Einstellungen"
393
 
394
- #: er-custom-login.php:797
395
  msgid "Delete custom settings upon plugin deactivation?"
396
  msgstr ""
397
  "Benutzerspezifische Einstellungen bei der Deaktivierung des Plugins löschen?"
398
 
399
- #: er-custom-login.php:811
400
  msgid ""
401
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
402
  "plugin deactivation)"
@@ -407,15 +424,15 @@ msgstr ""
407
  "DER OPTION \"JA\" WERDEN BEI DER NÄCHSTEN DEAKTIVIERUNG ALLE "
408
  "BENUTZERSPEZIFISCHEN EINSTELLUNGEN AUS DER DATENBANK GELÖSCHT!)"
409
 
410
- #: er-custom-login.php:819
411
  msgid "Save Changes"
412
  msgstr "Änderungen speichern"
413
 
414
- #: er-custom-login.php:826
415
  msgid "Export Settings"
416
  msgstr "Einstellungen exportieren"
417
 
418
- #: er-custom-login.php:828
419
  msgid ""
420
  "Export the plugin settings for this site as a .json file. This allows you to "
421
  "easily import the configuration into another site."
@@ -424,15 +441,15 @@ msgstr ""
424
  "Mit dieser Funktion können Sie die hier vorgenommenen Einstellungen einfach "
425
  "in eine andere WordPress-Seite übernehmen."
426
 
427
- #: er-custom-login.php:833
428
  msgid "Export"
429
  msgstr "Exportieren"
430
 
431
- #: er-custom-login.php:841
432
  msgid "Import Settings"
433
  msgstr "Einstellungen importieren"
434
 
435
- #: er-custom-login.php:843
436
  msgid ""
437
  "Import the plugin settings from a .json file. This file can be obtained by "
438
  "exporting the settings on another site using the form above."
@@ -442,39 +459,39 @@ msgstr ""
442
  "WordPress-Seite erzeugen, und damit diese Einstellungen einfach in die "
443
  "aktuelle WordPress-Seite übernehmen."
444
 
445
- #: er-custom-login.php:851
446
  msgid "Import"
447
  msgstr "Importieren"
448
 
449
- #: er-custom-login.php:859
450
  msgid "Quick Links"
451
  msgstr "Schnelle Hilfe - Quick Links"
452
 
453
- #: er-custom-login.php:861
454
  msgid "Open Your WP Login Page in a New Tab"
455
  msgstr "Die WP Login-Seite in einem neuen Tab öffnen"
456
 
457
- #: er-custom-login.php:862
458
  msgid "Plugin Documentation"
459
  msgstr "Dokumentation des Plugins"
460
 
461
- #: er-custom-login.php:863
462
  msgid "Plugin Support Page"
463
  msgstr "Support-Seite des Plugins"
464
 
465
- #: er-custom-login.php:864
466
  msgid "Feature Request/Suggestions?"
467
  msgstr "Neue Funktion gewünscht? Ideen ?"
468
 
469
- #: er-custom-login.php:865
470
  msgid "Got some Love? Give us a 5 star rating!"
471
  msgstr "Etwas Liebe geben? Geben Sie uns eine 5 Sterne Bewertung"
472
 
473
- #: er-custom-login.php:869
474
  msgid "Hire Me"
475
  msgstr "Engagieren Sie mich"
476
 
477
- #: er-custom-login.php:870
478
  msgid ""
479
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
480
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -487,11 +504,11 @@ msgstr ""
487
  "<br/>Online Portfolio: <a href=\"http://www.libin.in\" target=\"_blank\">www."
488
  "libin.in</a>"
489
 
490
- #: er-custom-login.php:872
491
  msgid "Translation Credits"
492
  msgstr "Vielen Dank für die Übersetzungen an: "
493
 
494
- #: er-custom-login.php:874
495
  msgid ""
496
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
497
  "\">Adriana De La Cuadra</a>"
@@ -499,7 +516,7 @@ msgstr ""
499
  "Spanisch von <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
500
  "\">Adriana De La Cuadra</a>"
501
 
502
- #: er-custom-login.php:875
503
  msgid ""
504
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
505
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -507,7 +524,7 @@ msgstr ""
507
  "Französisch von <a href=\"https://www.linkedin.com/pub/vaslin-"
508
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
509
 
510
- #: er-custom-login.php:876
511
  msgid ""
512
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
513
  "Kaulfuss</a>"
@@ -515,7 +532,7 @@ msgstr ""
515
  "Deutsch von <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
516
  "\">Peter Kaulfuss</a>"
517
 
518
- #: er-custom-login.php:878
519
  msgid "Do you wants to translate this plugin to your language? Email me!"
520
  msgstr ""
521
  "Sie möchten eine Übersetzung dieses Plugins in Ihrer Sprache beisteuern? "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2014-10-31 14:47+0530\n"
5
+ "PO-Revision-Date: 2014-10-31 14:47+0530\n"
6
  "Last-Translator: Peter Kaulfuß <info@peter-kaulfuss.eu>\n"
7
  "Language-Team: Peter Kaulfuß\n"
8
  "Language: de_DE\n"
20
  msgid "Settings"
21
  msgstr "Einstellungen"
22
 
23
+ #: er-custom-login.php:223
24
  msgid "Please upload a valid .json file"
25
  msgstr "Bitte wählen Sie eine gültige .json Datei zum Hochladen aus"
26
 
27
+ #: er-custom-login.php:229
28
  msgid "Please upload a file to import"
29
  msgstr "Bitte laden Sie eine Datei zum Importieren hoch"
30
 
31
+ #: er-custom-login.php:236
32
  msgid "New settings imported successfully!"
33
  msgstr "Die neuen Einstellungen wurden erfolgreich importiert!"
34
 
35
+ #: er-custom-login.php:325
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Persönliches Login und Dashboard"
38
 
39
+ #: er-custom-login.php:346
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Erident Custom Login and Dashboard Einstellungen"
42
 
43
+ #: er-custom-login.php:347
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
48
  "Das Plugin lädt die Standard Einstellungen für die unten stehenden Optionen. "
49
  "Bitte ändern Sie die Einstellungen wie von Ihnen benötigt."
50
 
51
+ #: er-custom-login.php:347
52
  msgid "Click on the header of each block to open it."
53
  msgstr ""
54
  "Klicken Sie auf die Überschriften der Blöcke, um die möglichen Einstellungen "
55
  "anzuzeigen."
56
 
57
+ #: er-custom-login.php:354
58
  msgid "Settings saved."
59
  msgstr "Einstellungen gespeichert."
60
 
61
+ #: er-custom-login.php:361
62
  msgid "Dashboard Settings"
63
  msgstr "Dashboard Einstellungen"
64
 
65
+ #: er-custom-login.php:362
66
  msgid ""
67
  "(These settings will be reflected when a user/admin logins to the WordPress "
68
  "Dashboard)"
70
  "(Diese Einstellungen werden wirksam, wenn sich ein Nutzer/Administrator an "
71
  "dem Dashboard von WordPress anmeldet)"
72
 
73
+ #: er-custom-login.php:367
74
  msgid "Enter the text for dashboard left side footer:"
75
  msgstr ""
76
  "Geben Sie den Text für die linke Seite des Fußbereiches am DashBoard ein:"
77
 
78
+ #: er-custom-login.php:372
79
  msgid ""
80
  "This will replace the default \"Thank you for creating with WordPress\" on "
81
  "the bottom left side of dashboard"
83
  "Diese Einstellung wird den Standardtext \"Danke für das Vertrauen in "
84
  "WordPress.\" unten links auf dem Dashboard ersetzen"
85
 
86
+ #: er-custom-login.php:376
87
  msgid "Enter the text for dashboard right side footer:"
88
  msgstr ""
89
  "Geben Sie den Text für die rechte Seite des Fußbereiches am DashBoard ein:"
90
 
91
+ #: er-custom-login.php:380
92
  msgid ""
93
  "This will replace the default \"WordPress Version\" on the bottom right side "
94
  "of dashboard"
96
  "Diese Einstellung wird den Standardtext \"Version ...\" unten rechts auf dem "
97
  "Dashboard ersetzen"
98
 
99
+ #: er-custom-login.php:389
100
  msgid "Login Screen Background"
101
  msgstr "Login Seite Hintergrund"
102
 
103
+ #: er-custom-login.php:390
104
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
105
  msgstr ""
106
  "(Die folgenden Einstellungen werden auf der Seite \"wp-login.php\" wirksam)"
107
 
108
+ #: er-custom-login.php:395
109
  msgid "Login Screen Background Color:"
110
  msgstr "Login Seite Hintergrundfarbe:"
111
 
112
+ #: er-custom-login.php:400 er-custom-login.php:610 er-custom-login.php:722
113
+ #: er-custom-login.php:750 er-custom-login.php:779 er-custom-login.php:791
 
114
  msgid "Click the box to select a color."
115
  msgstr "Klicken Sie die Box an, um eine Farbe auszuwählen."
116
 
117
+ #: er-custom-login.php:405
118
  msgid "Login Screen Background Image:"
119
  msgstr "Login Seite Hintergrund Bild:"
120
 
121
+ #: er-custom-login.php:409
122
  msgid ""
123
  "Add your own pattern/image url for the screen background. Leave blank if you "
124
  "don't need any images."
127
  "Hintergrund ein. Frei lassen, falls Sie kein Bild in den Hintergrund "
128
  "einfügen wollen."
129
 
130
+ #: er-custom-login.php:413
131
  msgid "Login Screen Background Repeat"
132
  msgstr "Login Seite Hintergrund Wiederholung"
133
 
134
+ #: er-custom-login.php:451 er-custom-login.php:669
135
  msgid "Select an image repeat option from dropdown."
136
  msgstr ""
137
  "Wählen Sie eine Option zur Wiederholung des Hintergrundbildes aus dem "
138
  "Auswahlmenü aus."
139
 
140
+ #: er-custom-login.php:455 er-custom-login.php:674
141
  msgid "Background Position:"
142
  msgstr "Hintergrund Position:"
143
 
144
+ #: er-custom-login.php:456 er-custom-login.php:675
145
  msgid "Horizontal Position: "
146
  msgstr "Horizontale Position:"
147
 
148
+ #: er-custom-login.php:461 er-custom-login.php:680
149
  msgid ""
150
  "The background-position property sets the starting position of a background "
151
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
161
  "<a href=\"http://www.w3schools.com/cssref/pr_background-position.asp\" "
162
  "target=\"_blank\">Weitere Informationen</a>"
163
 
164
+ #: er-custom-login.php:466
165
  msgid "Background Size:"
166
  msgstr "Hintergund Größe:"
167
 
168
+ #: er-custom-login.php:470
169
  msgid ""
170
  "The background-size property specifies the size of a background image. If "
171
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
180
  "\"http://www.w3schools.com/cssref/css3_pr_background-size.asp\" target="
181
  "\"_blank\">Weitere Informationen</a>"
182
 
183
+ #: er-custom-login.php:481
184
  msgid "Login Screen Logo"
185
  msgstr "Login Seite Logo"
186
 
187
+ #: er-custom-login.php:482
188
  msgid "(Change the default WordPress logo and powered by text)"
189
  msgstr "(Ändert das Standard-Logo und den powered by Text von WordPress)"
190
 
191
+ #: er-custom-login.php:487
192
  msgid "Logo Url:"
193
  msgstr "URL der Logo-Datei:"
194
 
195
+ #: er-custom-login.php:489
196
  msgid "Default Logo Size 274px × 63px"
197
  msgstr "Standard Größe des Logos ist 274px x 63px"
198
 
199
+ #: er-custom-login.php:491
200
  msgid ""
201
  "(URL path to image to replace default WordPress Logo. (You can upload your "
202
  "image with the WordPress media uploader)"
205
  "werden soll. (Sie können ihre Logo-Datei mit dem Medien-Uploader von "
206
  "Wordpress hochladen, und die URL zum Bild dann hier einfügen))"
207
 
208
+ #: er-custom-login.php:496
209
  msgid "Logo Width:"
210
  msgstr "Logo Breite:"
211
 
212
+ #: er-custom-login.php:500
213
  msgid "Your Logo width(Enter in pixels). Default: 274px"
214
  msgstr "Die Breite Ihres Logos (Wert in Pixel eingeben). Standard: 271px"
215
 
216
+ #: er-custom-login.php:504
217
  msgid "Logo Height:"
218
  msgstr "Logo Höhe:"
219
 
220
+ #: er-custom-login.php:508
221
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
222
  msgstr "Die Höhe Ihres Logos (Wert in Pixel eingeben). Standard: 63px"
223
 
224
+ #: er-custom-login.php:513
225
  msgid "Powered by Text:"
226
  msgstr "Powered by Text:"
227
 
228
+ #: er-custom-login.php:517
229
  msgid "Show when mouse hover over custom Login logo"
230
  msgstr "Wird angezeigt, wenn die Maus über dem Logo schwebt"
231
 
232
+ #: er-custom-login.php:527
233
  msgid "Login Form Settings"
234
  msgstr "Login-Formular Einstellungen"
235
 
236
+ #: er-custom-login.php:528
237
  msgid "(The following settings will change the Login Form style)"
238
  msgstr ""
239
  "(Die folgenden Einstellungen werden das Aussehen des Login-Formulars "
240
  "verändern)"
241
 
242
+ #: er-custom-login.php:533
243
  msgid "Login form width:"
244
  msgstr "Login-Formular Breite:"
245
 
246
+ #: er-custom-login.php:537
247
  msgid "Total Form width(Enter in pixels). Default: 350px"
248
  msgstr ""
249
  "Die gesamte Breite des Login-Formulars (Wert in Pixel eingeben). Standard: "
250
  "350px"
251
 
252
+ #: er-custom-login.php:541
253
  msgid "Login Form Border Radius:"
254
  msgstr "Login-Formular Rahmen-Radius:"
255
 
256
+ #: er-custom-login.php:545
257
  msgid ""
258
  "Border Radius of Login Form. This is the option to make the corners rounded."
259
  "(Enter in pixels)"
261
  "Der Rahmen-Radius des Login-Formulars. Diese Einstellung bewirkt das die "
262
  "Ecken des Rahmens rund werden. (In Pixel eingeben)"
263
 
264
+ #: er-custom-login.php:549
265
  msgid "Login Border Style"
266
  msgstr "Login-Formular Rahmen-Linienart"
267
 
268
+ #: er-custom-login.php:593
269
  msgid "Select a Border Style option from dropdown."
270
  msgstr "Wählen Sie eine Rahmen-Linienart aus dem Auswahlmenü aus."
271
 
272
+ #: er-custom-login.php:597
273
  msgid "Login Border Thickness:"
274
  msgstr "Login-Formular Rahmen Liniendicke"
275
 
276
+ #: er-custom-login.php:601
277
  msgid "Thickness of Border (Enter value in pixels)"
278
  msgstr "Die Dicke der Rahmen-Linie (Einen Wert in Pixel eingeben)"
279
 
280
+ #: er-custom-login.php:605
281
  msgid "Login Border Color:"
282
  msgstr "Login-Formular Rahmen Linienfarbe"
283
 
284
+ #: er-custom-login.php:614
285
  msgid "Login Form Background Color:"
286
  msgstr "Login-Formular Hintergrund Farbe:"
287
 
288
+ #: er-custom-login.php:618
289
+ msgid "Background Opacity: "
290
+ msgstr "Hintergrund Deckkraft:"
291
+
292
+ #: er-custom-login.php:620
293
+ msgid ""
294
+ "Click the box to select a color. Background Opacity will helps you to put "
295
+ "transparent color over a background image. Possible values 0 to 1. Example: "
296
+ "0.5 means 50% transparency. Default: 1 <a href=\"https://wordpress.org/"
297
+ "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">More "
298
+ "Info</a>"
299
+ msgstr ""
300
+ "Klicken Sie auf das Feld, um eine Farbe auszuwählen. Hintergrund Deckkraft "
301
+ "Wille hilft Ihnen, transparente Farbe über einem Hintergrundbild setzen. "
302
+ "Mögliche Werte von 0 bis 1. Beispiel: 0,5 bedeutet 50% Transparenz. Default: "
303
+ "1 <a href=\"https://wordpress.org/plugins/erident-custom-login-and-dashboard/"
304
+ "faq/\" target=\"_blank\">Weitere Informationen</a>"
305
+
306
+ #: er-custom-login.php:624
307
  msgid "Login Form Background Image:"
308
  msgstr "Login-Formular Hintergrund Bild:"
309
 
310
+ #: er-custom-login.php:627
311
  msgid ""
312
  "Add your own pattern/image url to the form background. Leave blank if you "
313
  "don't need any images."
316
  "Formular Hintergrund ein. Frei lassen, falls Sie kein Bild in den "
317
  "Hintergrund einfügen wollen."
318
 
319
+ #: er-custom-login.php:631
320
  msgid "Login Form Background Repeat"
321
  msgstr "Login-Formular Hnitergrundbild Wiederholungen"
322
 
323
+ #: er-custom-login.php:677
324
  msgid "Vertical Position: "
325
  msgstr "Vertikale Position:"
326
 
327
+ #: er-custom-login.php:685
328
  msgid "Login Form Label Text Color"
329
  msgstr "Login-Formular Beschriftung Text-Farbe"
330
 
331
+ #: er-custom-login.php:690
332
  msgid ""
333
  "Click the box to select a color. This will change the color of label "
334
  "Username/Password"
336
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
337
  "die Farbe des Beschriftungstextes Benutzername / Passwort"
338
 
339
+ #: er-custom-login.php:694
340
  msgid "Login Form Label Text Size:"
341
  msgstr "Login-Formular Beschriftung Text-Größe"
342
 
343
+ #: er-custom-login.php:697
344
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
345
  msgstr ""
346
  "Schriftgröße des Beschriftungstextes der Formularfelder Benutzername / "
347
  "Passwort (Wert in Pixel eingeben)"
348
 
349
+ #: er-custom-login.php:701
350
  msgid "Login Form Input Text Color"
351
  msgstr "Login-Formular Texteingabe Text-Farbe"
352
 
353
+ #: er-custom-login.php:706
354
  msgid ""
355
  "Click the box to select a color. This will change the color of text inside "
356
  "text box."
358
  "Klicken Sie die Box an, um eine Farbe auszuwählen. Diese Option verändert "
359
  "die Farbe des Eingabetextes in den Formularfeldern."
360
 
361
+ #: er-custom-login.php:710
362
  msgid "Login Form Input Text Size:"
363
  msgstr "Login-Formular Texteingabe Text-Größe"
364
 
365
+ #: er-custom-login.php:713
366
  msgid "Font Size of text inside text box(Enter value in pixels)"
367
  msgstr ""
368
  "Schriftgröße des Textes der in die Formularfelder eingegeben wird (Wert in "
369
  "Pixel eingeben)"
370
 
371
+ #: er-custom-login.php:717
372
  msgid "Login Form Link Color"
373
  msgstr "Login-Formular Link-Farbe"
374
 
375
+ #: er-custom-login.php:727
376
  msgid "Enable link shadow?"
377
  msgstr "Schatten am Link aktivieren?"
378
 
379
+ #: er-custom-login.php:735 er-custom-login.php:764 er-custom-login.php:815
380
  msgid "Yes"
381
  msgstr "Ja"
382
 
383
+ #: er-custom-login.php:739 er-custom-login.php:768 er-custom-login.php:819
384
  msgid "No"
385
  msgstr "Nein"
386
 
387
+ #: er-custom-login.php:741 er-custom-login.php:770
388
  msgid "(Check an option)"
389
  msgstr "(eine Option auswählen)"
390
 
391
+ #: er-custom-login.php:745
392
  msgid "Login Form Link Shadow Color"
393
  msgstr "Login-Forumlar Link-Schatten Farbe"
394
 
395
+ #: er-custom-login.php:756
396
  msgid "Enable form shadow?"
397
  msgstr "Schatten des Formularfeldes aktivieren?"
398
 
399
+ #: er-custom-login.php:774
400
  msgid "Login Form Shadow Color"
401
  msgstr "Login-Formular Formular-Schatten Farbe"
402
 
403
+ #: er-custom-login.php:786
404
  msgid "Login Button Color"
405
  msgstr "Login-Knopf Farbe"
406
 
407
+ #: er-custom-login.php:802
408
  msgid "Plugin Un-install Settings"
409
  msgstr "Plugin De-Installation Einstellungen"
410
 
411
+ #: er-custom-login.php:807
412
  msgid "Delete custom settings upon plugin deactivation?"
413
  msgstr ""
414
  "Benutzerspezifische Einstellungen bei der Deaktivierung des Plugins löschen?"
415
 
416
+ #: er-custom-login.php:821
417
  msgid ""
418
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
419
  "plugin deactivation)"
424
  "DER OPTION \"JA\" WERDEN BEI DER NÄCHSTEN DEAKTIVIERUNG ALLE "
425
  "BENUTZERSPEZIFISCHEN EINSTELLUNGEN AUS DER DATENBANK GELÖSCHT!)"
426
 
427
+ #: er-custom-login.php:829
428
  msgid "Save Changes"
429
  msgstr "Änderungen speichern"
430
 
431
+ #: er-custom-login.php:836
432
  msgid "Export Settings"
433
  msgstr "Einstellungen exportieren"
434
 
435
+ #: er-custom-login.php:838
436
  msgid ""
437
  "Export the plugin settings for this site as a .json file. This allows you to "
438
  "easily import the configuration into another site."
441
  "Mit dieser Funktion können Sie die hier vorgenommenen Einstellungen einfach "
442
  "in eine andere WordPress-Seite übernehmen."
443
 
444
+ #: er-custom-login.php:843
445
  msgid "Export"
446
  msgstr "Exportieren"
447
 
448
+ #: er-custom-login.php:851
449
  msgid "Import Settings"
450
  msgstr "Einstellungen importieren"
451
 
452
+ #: er-custom-login.php:853
453
  msgid ""
454
  "Import the plugin settings from a .json file. This file can be obtained by "
455
  "exporting the settings on another site using the form above."
459
  "WordPress-Seite erzeugen, und damit diese Einstellungen einfach in die "
460
  "aktuelle WordPress-Seite übernehmen."
461
 
462
+ #: er-custom-login.php:861
463
  msgid "Import"
464
  msgstr "Importieren"
465
 
466
+ #: er-custom-login.php:869
467
  msgid "Quick Links"
468
  msgstr "Schnelle Hilfe - Quick Links"
469
 
470
+ #: er-custom-login.php:871
471
  msgid "Open Your WP Login Page in a New Tab"
472
  msgstr "Die WP Login-Seite in einem neuen Tab öffnen"
473
 
474
+ #: er-custom-login.php:872
475
  msgid "Plugin Documentation"
476
  msgstr "Dokumentation des Plugins"
477
 
478
+ #: er-custom-login.php:873
479
  msgid "Plugin Support Page"
480
  msgstr "Support-Seite des Plugins"
481
 
482
+ #: er-custom-login.php:874
483
  msgid "Feature Request/Suggestions?"
484
  msgstr "Neue Funktion gewünscht? Ideen ?"
485
 
486
+ #: er-custom-login.php:875
487
  msgid "Got some Love? Give us a 5 star rating!"
488
  msgstr "Etwas Liebe geben? Geben Sie uns eine 5 Sterne Bewertung"
489
 
490
+ #: er-custom-login.php:879
491
  msgid "Hire Me"
492
  msgstr "Engagieren Sie mich"
493
 
494
+ #: er-custom-login.php:880
495
  msgid ""
496
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
497
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
504
  "<br/>Online Portfolio: <a href=\"http://www.libin.in\" target=\"_blank\">www."
505
  "libin.in</a>"
506
 
507
+ #: er-custom-login.php:882
508
  msgid "Translation Credits"
509
  msgstr "Vielen Dank für die Übersetzungen an: "
510
 
511
+ #: er-custom-login.php:884
512
  msgid ""
513
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
514
  "\">Adriana De La Cuadra</a>"
516
  "Spanisch von <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
517
  "\">Adriana De La Cuadra</a>"
518
 
519
+ #: er-custom-login.php:885
520
  msgid ""
521
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
522
  "\" target=\"_blank\">Guillaume Vaslin</a>"
524
  "Französisch von <a href=\"https://www.linkedin.com/pub/vaslin-"
525
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
526
 
527
+ #: er-custom-login.php:886
528
  msgid ""
529
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
530
  "Kaulfuss</a>"
532
  "Deutsch von <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
533
  "\">Peter Kaulfuss</a>"
534
 
535
+ #: er-custom-login.php:888
536
  msgid "Do you wants to translate this plugin to your language? Email me!"
537
  msgstr ""
538
  "Sie möchten eine Übersetzung dieses Plugins in Ihrer Sprache beisteuern? "
languages/erident-custom-login-and-dashboard-es_ES.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-es_ES.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-08-07 20:40+0530\n"
5
- "PO-Revision-Date: 2014-08-07 20:40+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
@@ -20,27 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Configuración"
22
 
23
- #: er-custom-login.php:215
24
  msgid "Please upload a valid .json file"
25
  msgstr "Por favor adjunte un archivo .json valido"
26
 
27
- #: er-custom-login.php:221
28
  msgid "Please upload a file to import"
29
  msgstr "Por favor adjunte un archivo a importar."
30
 
31
- #: er-custom-login.php:228
32
  msgid "New settings imported successfully!"
33
  msgstr "La nueva configuración fue importada exitosamente."
34
 
35
- #: er-custom-login.php:316
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Custom Login y Dashboard"
38
 
39
- #: er-custom-login.php:337
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "ERIDENT, Ingreso Customizado - Panel de Control"
42
 
43
- #: er-custom-login.php:338
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
@@ -48,19 +48,19 @@ msgstr ""
48
  "Los siguientes son las configuraciones predeterminadas de este plugin. "
49
  "Puedes ajustarlas a tus necesidades."
50
 
51
- #: er-custom-login.php:338
52
  msgid "Click on the header of each block to open it."
53
  msgstr "Para acceder a más opciones presiona los encabezados de cada sección."
54
 
55
- #: er-custom-login.php:345
56
  msgid "Settings saved."
57
  msgstr "Configuración Salvada"
58
 
59
- #: er-custom-login.php:352
60
  msgid "Dashboard Settings"
61
  msgstr "Configuración del panel"
62
 
63
- #: er-custom-login.php:353
64
  msgid ""
65
  "(These settings will be reflected when a user/admin logins to the WordPress "
66
  "Dashboard)"
@@ -68,11 +68,11 @@ msgstr ""
68
  "(Estos ajustes se reflejarán cuando un usuario / administrador inicia su "
69
  "sesión en el panel de control de WordPress)"
70
 
71
- #: er-custom-login.php:358
72
  msgid "Enter the text for dashboard left side footer:"
73
  msgstr "Texto para el panel del pie de página izquierdo:"
74
 
75
- #: er-custom-login.php:363
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
@@ -80,11 +80,11 @@ msgstr ""
80
  "Esto reemplazará el valor por defecto \"Gracias por crear con WordPress \" "
81
  "en la parte inferior izquierda del cuadro de mandos"
82
 
83
- #: er-custom-login.php:367
84
  msgid "Enter the text for dashboard right side footer:"
85
  msgstr "Texto para el panel del pie de página derecho:"
86
 
87
- #: er-custom-login.php:371
88
  msgid ""
89
  "This will replace the default \"WordPress Version\" on the bottom right side "
90
  "of dashboard"
@@ -92,29 +92,28 @@ msgstr ""
92
  "Esto reemplazará el valor por defecto \"WordPress Version \" en la parte "
93
  "inferior derecha del cuadro de mandos"
94
 
95
- #: er-custom-login.php:380
96
  msgid "Login Screen Background"
97
  msgstr "Fondo de la Pantalla de Ingreso"
98
 
99
- #: er-custom-login.php:381
100
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
101
  msgstr "(Estos ajustes se reflejarán en la página \"wp-login.php\")"
102
 
103
- #: er-custom-login.php:386
104
  msgid "Login Screen Background Color:"
105
  msgstr "Color del Fondo de la Pantalla de Ingreso:"
106
 
107
- #: er-custom-login.php:391 er-custom-login.php:601 er-custom-login.php:610
108
- #: er-custom-login.php:712 er-custom-login.php:740 er-custom-login.php:769
109
- #: er-custom-login.php:781
110
  msgid "Click the box to select a color."
111
  msgstr "Haz click en el cuadro para seleccionar un color."
112
 
113
- #: er-custom-login.php:396
114
  msgid "Login Screen Background Image:"
115
  msgstr "Imagen de Fondo de la Pantalla de Ingreso: "
116
 
117
- #: er-custom-login.php:400
118
  msgid ""
119
  "Add your own pattern/image url for the screen background. Leave blank if you "
120
  "don't need any images."
@@ -122,23 +121,23 @@ msgstr ""
122
  "Añade el url de tu patrón/imagen para el fondo de la pantalla. Deja en "
123
  "blanco si no necesitas ninguna imagen."
124
 
125
- #: er-custom-login.php:404
126
  msgid "Login Screen Background Repeat"
127
  msgstr "Repetición de la Image de Fondo de la Pantalla de Ingreso:"
128
 
129
- #: er-custom-login.php:442 er-custom-login.php:659
130
  msgid "Select an image repeat option from dropdown."
131
  msgstr "Selecciona una opción de repetición."
132
 
133
- #: er-custom-login.php:446 er-custom-login.php:664
134
  msgid "Background Position:"
135
  msgstr "Posición de la Image de Fondo de la Pantalla de Ingreso: "
136
 
137
- #: er-custom-login.php:447 er-custom-login.php:665
138
  msgid "Horizontal Position: "
139
  msgstr "Posición horizontal:"
140
 
141
- #: er-custom-login.php:452 er-custom-login.php:670
142
  msgid ""
143
  "The background-position property sets the starting position of a background "
144
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -153,11 +152,11 @@ msgstr ""
153
  "\"http://www.w3schools.com/cssref/pr_background-position.asp\" target="
154
  "\"_blank\"> Más información </ a>"
155
 
156
- #: er-custom-login.php:457
157
  msgid "Background Size:"
158
  msgstr "Tamaño e la Image de Fondo de la Pantalla de Ingreso:"
159
 
160
- #: er-custom-login.php:461
161
  msgid ""
162
  "The background-size property specifies the size of a background image. If "
163
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -171,23 +170,23 @@ msgstr ""
171
  "contienen. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
172
  "asp\" target=\"_blank\"> Más información </ a>"
173
 
174
- #: er-custom-login.php:472
175
  msgid "Login Screen Logo"
176
  msgstr "Logo de la Pantalla de Ingreso"
177
 
178
- #: er-custom-login.php:473
179
  msgid "(Change the default WordPress logo and powered by text)"
180
  msgstr "(Cambia el logo de Wordpress y el texto \"powered by Wordpress\")"
181
 
182
- #: er-custom-login.php:478
183
  msgid "Logo Url:"
184
  msgstr "URL del Logo:"
185
 
186
- #: er-custom-login.php:480
187
  msgid "Default Logo Size 274px × 63px"
188
  msgstr "Tamaño predeterminado 274 x 63 px"
189
 
190
- #: er-custom-login.php:482
191
  msgid ""
192
  "(URL path to image to replace default WordPress Logo. (You can upload your "
193
  "image with the WordPress media uploader)"
@@ -195,105 +194,123 @@ msgstr ""
195
  "Ingresa el URL para reemplazar el logo de Wordpress. (Tu puedes subir tu "
196
  "image usando el cargador de medios de Wordpress)"
197
 
198
- #: er-custom-login.php:487
199
  msgid "Logo Width:"
200
  msgstr "Ancho del Logo:"
201
 
202
- #: er-custom-login.php:491
203
  msgid "Your Logo width(Enter in pixels). Default: 274px"
204
  msgstr "Anchura del logo. El valor predeterminado es 274px"
205
 
206
- #: er-custom-login.php:495
207
  msgid "Logo Height:"
208
  msgstr "Alto del Logo:"
209
 
210
- #: er-custom-login.php:499
211
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
212
  msgstr "Altura del logo. El valor predeterminado es 63px"
213
 
214
- #: er-custom-login.php:504
215
  msgid "Powered by Text:"
216
  msgstr "Desarrollado por:"
217
 
218
- #: er-custom-login.php:508
219
  msgid "Show when mouse hover over custom Login logo"
220
  msgstr "Este valor se muestra cuando se pasa el mouse sobre el logo"
221
 
222
- #: er-custom-login.php:518
223
  msgid "Login Form Settings"
224
  msgstr "Formato de la Pantalla de Ingreso"
225
 
226
- #: er-custom-login.php:519
227
  msgid "(The following settings will change the Login Form style)"
228
  msgstr ""
229
  "(Estos ajustes cambiarán el estilo del formato de la pantalla de ingreso)"
230
 
231
- #: er-custom-login.php:524
232
  msgid "Login form width:"
233
  msgstr "Ancho del Formato:"
234
 
235
- #: er-custom-login.php:528
236
  msgid "Total Form width(Enter in pixels). Default: 350px"
237
  msgstr "Ancho total del formato en píxeles. Tamaño predeterminado: 350px"
238
 
239
- #: er-custom-login.php:532
240
  msgid "Login Form Border Radius:"
241
  msgstr "Radio del Borde del Formato:"
242
 
243
- #: er-custom-login.php:536
244
  msgid ""
245
  "Border Radius of Login Form. This is the option to make the corners rounded."
246
  "(Enter in pixels)"
247
  msgstr "Usa esta opción para hacer las esquinas del formato redondas."
248
 
249
- #: er-custom-login.php:540
250
  msgid "Login Border Style"
251
  msgstr "Estilo del Borde del Formato:"
252
 
253
- #: er-custom-login.php:584
254
  msgid "Select a Border Style option from dropdown."
255
  msgstr "Selecciona una opción del menú."
256
 
257
- #: er-custom-login.php:588
258
  msgid "Login Border Thickness:"
259
  msgstr "Espesor del Borde del Formato:"
260
 
261
- #: er-custom-login.php:592
262
  msgid "Thickness of Border (Enter value in pixels)"
263
  msgstr "Entra el valor en píxeles."
264
 
265
- #: er-custom-login.php:596
266
  msgid "Login Border Color:"
267
  msgstr "Color del Borde del Formato:"
268
 
269
- #: er-custom-login.php:605
270
  msgid "Login Form Background Color:"
271
  msgstr "Color de Fondo del Formato:"
272
 
273
- #: er-custom-login.php:614
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  msgid "Login Form Background Image:"
275
  msgstr "Imagen de Fondo del Formato:"
276
 
277
- #: er-custom-login.php:617
278
  msgid ""
279
  "Add your own pattern/image url to the form background. Leave blank if you "
280
  "don't need any images."
281
  msgstr ""
282
  "Agrega tu propio patrón/imagen. Deja en blanco si no necesitas imágenes."
283
 
284
- #: er-custom-login.php:621
285
  msgid "Login Form Background Repeat"
286
  msgstr "Repetición de la Imagen de Fondo del Formato:"
287
 
288
- #: er-custom-login.php:667
289
  msgid "Vertical Position: "
290
  msgstr "Posición Vertical:"
291
 
292
- #: er-custom-login.php:675
293
  msgid "Login Form Label Text Color"
294
  msgstr "Color del Texto de las Etiquetas del Formato:"
295
 
296
- #: er-custom-login.php:680
297
  msgid ""
298
  "Click the box to select a color. This will change the color of label "
299
  "Username/Password"
@@ -301,79 +318,79 @@ msgstr ""
301
  "Haz click en el cuadro para seleccionar un color. Esta opción cambiara el "
302
  "color de las etiquetas \"usuario\" y \"contraseña\""
303
 
304
- #: er-custom-login.php:684
305
  msgid "Login Form Label Text Size:"
306
  msgstr "Tamaño del Texto de las Etiquetas del Formato:"
307
 
308
- #: er-custom-login.php:687
309
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
310
  msgstr "Entra el valor en píxeles."
311
 
312
- #: er-custom-login.php:691
313
  msgid "Login Form Input Text Color"
314
  msgstr "Color del Texto de los Campos del Formato:"
315
 
316
- #: er-custom-login.php:696
317
  msgid ""
318
  "Click the box to select a color. This will change the color of text inside "
319
  "text box."
320
  msgstr "Haz click en el cuadro para seleccionar un color."
321
 
322
- #: er-custom-login.php:700
323
  msgid "Login Form Input Text Size:"
324
  msgstr "Tamaño del Texto de los Campos del Formato:"
325
 
326
- #: er-custom-login.php:703
327
  msgid "Font Size of text inside text box(Enter value in pixels)"
328
  msgstr "Entra el valor en píxeles."
329
 
330
- #: er-custom-login.php:707
331
  msgid "Login Form Link Color"
332
  msgstr "Color de los enlaces:"
333
 
334
- #: er-custom-login.php:717
335
  msgid "Enable link shadow?"
336
  msgstr "Deseas habilitar la sombra en los enlaces?"
337
 
338
- #: er-custom-login.php:725 er-custom-login.php:754 er-custom-login.php:805
339
  msgid "Yes"
340
  msgstr "sí"
341
 
342
- #: er-custom-login.php:729 er-custom-login.php:758 er-custom-login.php:809
343
  msgid "No"
344
  msgstr "no"
345
 
346
- #: er-custom-login.php:731 er-custom-login.php:760
347
  msgid "(Check an option)"
348
  msgstr "(Marca una opción)"
349
 
350
- #: er-custom-login.php:735
351
  msgid "Login Form Link Shadow Color"
352
  msgstr "Color de la Sombra del Formato:"
353
 
354
- #: er-custom-login.php:746
355
  msgid "Enable form shadow?"
356
  msgstr "Activar forma de sombra?"
357
 
358
- #: er-custom-login.php:764
359
  msgid "Login Form Shadow Color"
360
  msgstr "Color de la Sombra del Formato:"
361
 
362
- #: er-custom-login.php:776
363
  msgid "Login Button Color"
364
  msgstr "Color del Botón del Formato:"
365
 
366
- #: er-custom-login.php:792
367
  msgid "Plugin Un-install Settings"
368
  msgstr "Opción para Desinstalar el Plugin"
369
 
370
- #: er-custom-login.php:797
371
  msgid "Delete custom settings upon plugin deactivation?"
372
  msgstr ""
373
  "Deseas borrar las configuraciones que has customizado una vez el plugin sea "
374
  "desactivado?"
375
 
376
- #: er-custom-login.php:811
377
  msgid ""
378
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
379
  "plugin deactivation)"
@@ -381,15 +398,15 @@ msgstr ""
381
  "(Si seleccionas \"sí\" todas los cambios que hayas hecho a la configuración "
382
  "serán borrados de la base de datos una vez el plugin sea desactivado)"
383
 
384
- #: er-custom-login.php:819
385
  msgid "Save Changes"
386
  msgstr "Guardar cambios"
387
 
388
- #: er-custom-login.php:826
389
  msgid "Export Settings"
390
  msgstr "Exportar Configuración"
391
 
392
- #: er-custom-login.php:828
393
  msgid ""
394
  "Export the plugin settings for this site as a .json file. This allows you to "
395
  "easily import the configuration into another site."
@@ -397,15 +414,15 @@ msgstr ""
397
  "Exportar la configuración del plugin de este sitio web en formato .json. "
398
  "Esto permite importar la configuración a otro sitio."
399
 
400
- #: er-custom-login.php:833
401
  msgid "Export"
402
  msgstr "exportación"
403
 
404
- #: er-custom-login.php:841
405
  msgid "Import Settings"
406
  msgstr "Importar Configuración"
407
 
408
- #: er-custom-login.php:843
409
  msgid ""
410
  "Import the plugin settings from a .json file. This file can be obtained by "
411
  "exporting the settings on another site using the form above."
@@ -414,39 +431,39 @@ msgstr ""
414
  "puedeobtainer al exportar la configuración de otro sitio web usando el "
415
  "formato de arriba."
416
 
417
- #: er-custom-login.php:851
418
  msgid "Import"
419
  msgstr "importación"
420
 
421
- #: er-custom-login.php:859
422
  msgid "Quick Links"
423
  msgstr "Enlaces Rápidos"
424
 
425
- #: er-custom-login.php:861
426
  msgid "Open Your WP Login Page in a New Tab"
427
  msgstr "Abrir una WP Login Página en una nueva pestaña"
428
 
429
- #: er-custom-login.php:862
430
  msgid "Plugin Documentation"
431
  msgstr "Documentación del Plugin"
432
 
433
- #: er-custom-login.php:863
434
  msgid "Plugin Support Page"
435
  msgstr "Página de Soporte Plugin"
436
 
437
- #: er-custom-login.php:864
438
  msgid "Feature Request/Suggestions?"
439
  msgstr "Sugerencias?"
440
 
441
- #: er-custom-login.php:865
442
  msgid "Got some Love? Give us a 5 star rating!"
443
  msgstr "¿Tienes algo de amor? Danos un 5 estrellas!"
444
 
445
- #: er-custom-login.php:869
446
  msgid "Hire Me"
447
  msgstr "Contratamé"
448
 
449
- #: er-custom-login.php:870
450
  msgid ""
451
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
452
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -459,11 +476,11 @@ msgstr ""
459
  "portafolio en linea: <a href=\"http://www.libin.in\" target=\"_blank\">www."
460
  "libin.in</a>"
461
 
462
- #: er-custom-login.php:872
463
  msgid "Translation Credits"
464
  msgstr "Traducción"
465
 
466
- #: er-custom-login.php:874
467
  msgid ""
468
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
469
  "\">Adriana De La Cuadra</a>"
@@ -471,7 +488,7 @@ msgstr ""
471
  "Traducida al Español por <a href=\"http://www.linkedin.com/in/adrifolio\" "
472
  "target=\"_blank\">Adriana De La Cuadra</a>"
473
 
474
- #: er-custom-login.php:875
475
  msgid ""
476
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
477
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -479,7 +496,7 @@ msgstr ""
479
  "Traducción al Francés por<a href=\"https://www.linkedin.com/pub/vaslin-"
480
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
481
 
482
- #: er-custom-login.php:876
483
  msgid ""
484
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
485
  "Kaulfuss</a>"
@@ -487,7 +504,7 @@ msgstr ""
487
  "Alemán por <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
488
  "\">Peter Kaulfuss</a>"
489
 
490
- #: er-custom-login.php:878
491
  msgid "Do you wants to translate this plugin to your language? Email me!"
492
  msgstr ""
493
  "¿Usted quiere traducir este plugin en tu idioma? Envíeme un correo "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2014-10-31 14:47+0530\n"
5
+ "PO-Revision-Date: 2014-10-31 14:47+0530\n"
6
  "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: en\n"
20
  msgid "Settings"
21
  msgstr "Configuración"
22
 
23
+ #: er-custom-login.php:223
24
  msgid "Please upload a valid .json file"
25
  msgstr "Por favor adjunte un archivo .json valido"
26
 
27
+ #: er-custom-login.php:229
28
  msgid "Please upload a file to import"
29
  msgstr "Por favor adjunte un archivo a importar."
30
 
31
+ #: er-custom-login.php:236
32
  msgid "New settings imported successfully!"
33
  msgstr "La nueva configuración fue importada exitosamente."
34
 
35
+ #: er-custom-login.php:325
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Custom Login y Dashboard"
38
 
39
+ #: er-custom-login.php:346
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "ERIDENT, Ingreso Customizado - Panel de Control"
42
 
43
+ #: er-custom-login.php:347
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
48
  "Los siguientes son las configuraciones predeterminadas de este plugin. "
49
  "Puedes ajustarlas a tus necesidades."
50
 
51
+ #: er-custom-login.php:347
52
  msgid "Click on the header of each block to open it."
53
  msgstr "Para acceder a más opciones presiona los encabezados de cada sección."
54
 
55
+ #: er-custom-login.php:354
56
  msgid "Settings saved."
57
  msgstr "Configuración Salvada"
58
 
59
+ #: er-custom-login.php:361
60
  msgid "Dashboard Settings"
61
  msgstr "Configuración del panel"
62
 
63
+ #: er-custom-login.php:362
64
  msgid ""
65
  "(These settings will be reflected when a user/admin logins to the WordPress "
66
  "Dashboard)"
68
  "(Estos ajustes se reflejarán cuando un usuario / administrador inicia su "
69
  "sesión en el panel de control de WordPress)"
70
 
71
+ #: er-custom-login.php:367
72
  msgid "Enter the text for dashboard left side footer:"
73
  msgstr "Texto para el panel del pie de página izquierdo:"
74
 
75
+ #: er-custom-login.php:372
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
80
  "Esto reemplazará el valor por defecto \"Gracias por crear con WordPress \" "
81
  "en la parte inferior izquierda del cuadro de mandos"
82
 
83
+ #: er-custom-login.php:376
84
  msgid "Enter the text for dashboard right side footer:"
85
  msgstr "Texto para el panel del pie de página derecho:"
86
 
87
+ #: er-custom-login.php:380
88
  msgid ""
89
  "This will replace the default \"WordPress Version\" on the bottom right side "
90
  "of dashboard"
92
  "Esto reemplazará el valor por defecto \"WordPress Version \" en la parte "
93
  "inferior derecha del cuadro de mandos"
94
 
95
+ #: er-custom-login.php:389
96
  msgid "Login Screen Background"
97
  msgstr "Fondo de la Pantalla de Ingreso"
98
 
99
+ #: er-custom-login.php:390
100
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
101
  msgstr "(Estos ajustes se reflejarán en la página \"wp-login.php\")"
102
 
103
+ #: er-custom-login.php:395
104
  msgid "Login Screen Background Color:"
105
  msgstr "Color del Fondo de la Pantalla de Ingreso:"
106
 
107
+ #: er-custom-login.php:400 er-custom-login.php:610 er-custom-login.php:722
108
+ #: er-custom-login.php:750 er-custom-login.php:779 er-custom-login.php:791
 
109
  msgid "Click the box to select a color."
110
  msgstr "Haz click en el cuadro para seleccionar un color."
111
 
112
+ #: er-custom-login.php:405
113
  msgid "Login Screen Background Image:"
114
  msgstr "Imagen de Fondo de la Pantalla de Ingreso: "
115
 
116
+ #: er-custom-login.php:409
117
  msgid ""
118
  "Add your own pattern/image url for the screen background. Leave blank if you "
119
  "don't need any images."
121
  "Añade el url de tu patrón/imagen para el fondo de la pantalla. Deja en "
122
  "blanco si no necesitas ninguna imagen."
123
 
124
+ #: er-custom-login.php:413
125
  msgid "Login Screen Background Repeat"
126
  msgstr "Repetición de la Image de Fondo de la Pantalla de Ingreso:"
127
 
128
+ #: er-custom-login.php:451 er-custom-login.php:669
129
  msgid "Select an image repeat option from dropdown."
130
  msgstr "Selecciona una opción de repetición."
131
 
132
+ #: er-custom-login.php:455 er-custom-login.php:674
133
  msgid "Background Position:"
134
  msgstr "Posición de la Image de Fondo de la Pantalla de Ingreso: "
135
 
136
+ #: er-custom-login.php:456 er-custom-login.php:675
137
  msgid "Horizontal Position: "
138
  msgstr "Posición horizontal:"
139
 
140
+ #: er-custom-login.php:461 er-custom-login.php:680
141
  msgid ""
142
  "The background-position property sets the starting position of a background "
143
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
152
  "\"http://www.w3schools.com/cssref/pr_background-position.asp\" target="
153
  "\"_blank\"> Más información </ a>"
154
 
155
+ #: er-custom-login.php:466
156
  msgid "Background Size:"
157
  msgstr "Tamaño e la Image de Fondo de la Pantalla de Ingreso:"
158
 
159
+ #: er-custom-login.php:470
160
  msgid ""
161
  "The background-size property specifies the size of a background image. If "
162
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
170
  "contienen. <a href=\"http://www.w3schools.com/cssref/css3_pr_background-size."
171
  "asp\" target=\"_blank\"> Más información </ a>"
172
 
173
+ #: er-custom-login.php:481
174
  msgid "Login Screen Logo"
175
  msgstr "Logo de la Pantalla de Ingreso"
176
 
177
+ #: er-custom-login.php:482
178
  msgid "(Change the default WordPress logo and powered by text)"
179
  msgstr "(Cambia el logo de Wordpress y el texto \"powered by Wordpress\")"
180
 
181
+ #: er-custom-login.php:487
182
  msgid "Logo Url:"
183
  msgstr "URL del Logo:"
184
 
185
+ #: er-custom-login.php:489
186
  msgid "Default Logo Size 274px × 63px"
187
  msgstr "Tamaño predeterminado 274 x 63 px"
188
 
189
+ #: er-custom-login.php:491
190
  msgid ""
191
  "(URL path to image to replace default WordPress Logo. (You can upload your "
192
  "image with the WordPress media uploader)"
194
  "Ingresa el URL para reemplazar el logo de Wordpress. (Tu puedes subir tu "
195
  "image usando el cargador de medios de Wordpress)"
196
 
197
+ #: er-custom-login.php:496
198
  msgid "Logo Width:"
199
  msgstr "Ancho del Logo:"
200
 
201
+ #: er-custom-login.php:500
202
  msgid "Your Logo width(Enter in pixels). Default: 274px"
203
  msgstr "Anchura del logo. El valor predeterminado es 274px"
204
 
205
+ #: er-custom-login.php:504
206
  msgid "Logo Height:"
207
  msgstr "Alto del Logo:"
208
 
209
+ #: er-custom-login.php:508
210
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
211
  msgstr "Altura del logo. El valor predeterminado es 63px"
212
 
213
+ #: er-custom-login.php:513
214
  msgid "Powered by Text:"
215
  msgstr "Desarrollado por:"
216
 
217
+ #: er-custom-login.php:517
218
  msgid "Show when mouse hover over custom Login logo"
219
  msgstr "Este valor se muestra cuando se pasa el mouse sobre el logo"
220
 
221
+ #: er-custom-login.php:527
222
  msgid "Login Form Settings"
223
  msgstr "Formato de la Pantalla de Ingreso"
224
 
225
+ #: er-custom-login.php:528
226
  msgid "(The following settings will change the Login Form style)"
227
  msgstr ""
228
  "(Estos ajustes cambiarán el estilo del formato de la pantalla de ingreso)"
229
 
230
+ #: er-custom-login.php:533
231
  msgid "Login form width:"
232
  msgstr "Ancho del Formato:"
233
 
234
+ #: er-custom-login.php:537
235
  msgid "Total Form width(Enter in pixels). Default: 350px"
236
  msgstr "Ancho total del formato en píxeles. Tamaño predeterminado: 350px"
237
 
238
+ #: er-custom-login.php:541
239
  msgid "Login Form Border Radius:"
240
  msgstr "Radio del Borde del Formato:"
241
 
242
+ #: er-custom-login.php:545
243
  msgid ""
244
  "Border Radius of Login Form. This is the option to make the corners rounded."
245
  "(Enter in pixels)"
246
  msgstr "Usa esta opción para hacer las esquinas del formato redondas."
247
 
248
+ #: er-custom-login.php:549
249
  msgid "Login Border Style"
250
  msgstr "Estilo del Borde del Formato:"
251
 
252
+ #: er-custom-login.php:593
253
  msgid "Select a Border Style option from dropdown."
254
  msgstr "Selecciona una opción del menú."
255
 
256
+ #: er-custom-login.php:597
257
  msgid "Login Border Thickness:"
258
  msgstr "Espesor del Borde del Formato:"
259
 
260
+ #: er-custom-login.php:601
261
  msgid "Thickness of Border (Enter value in pixels)"
262
  msgstr "Entra el valor en píxeles."
263
 
264
+ #: er-custom-login.php:605
265
  msgid "Login Border Color:"
266
  msgstr "Color del Borde del Formato:"
267
 
268
+ #: er-custom-login.php:614
269
  msgid "Login Form Background Color:"
270
  msgstr "Color de Fondo del Formato:"
271
 
272
+ #: er-custom-login.php:618
273
+ msgid "Background Opacity: "
274
+ msgstr "Opacidad de fondo:"
275
+
276
+ #: er-custom-login.php:620
277
+ msgid ""
278
+ "Click the box to select a color. Background Opacity will helps you to put "
279
+ "transparent color over a background image. Possible values 0 to 1. Example: "
280
+ "0.5 means 50% transparency. Default: 1 <a href=\"https://wordpress.org/"
281
+ "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">More "
282
+ "Info</a>"
283
+ msgstr ""
284
+ "Haga clic en el cuadro para seleccionar un color. Antecedentes Opacidad "
285
+ "voluntad le ayuda a poner de color transparente sobre una imagen de fondo. "
286
+ "Los valores posibles 0 a 1. Ejemplo: 0,5 significa 50% de transparencia. Por "
287
+ "defecto: 1 <a href=\"https://wordpress.org/plugins/erident-custom-login-and-"
288
+ "dashboard/faq/\" target=\"_blank\">Más información</a>"
289
+
290
+ #: er-custom-login.php:624
291
  msgid "Login Form Background Image:"
292
  msgstr "Imagen de Fondo del Formato:"
293
 
294
+ #: er-custom-login.php:627
295
  msgid ""
296
  "Add your own pattern/image url to the form background. Leave blank if you "
297
  "don't need any images."
298
  msgstr ""
299
  "Agrega tu propio patrón/imagen. Deja en blanco si no necesitas imágenes."
300
 
301
+ #: er-custom-login.php:631
302
  msgid "Login Form Background Repeat"
303
  msgstr "Repetición de la Imagen de Fondo del Formato:"
304
 
305
+ #: er-custom-login.php:677
306
  msgid "Vertical Position: "
307
  msgstr "Posición Vertical:"
308
 
309
+ #: er-custom-login.php:685
310
  msgid "Login Form Label Text Color"
311
  msgstr "Color del Texto de las Etiquetas del Formato:"
312
 
313
+ #: er-custom-login.php:690
314
  msgid ""
315
  "Click the box to select a color. This will change the color of label "
316
  "Username/Password"
318
  "Haz click en el cuadro para seleccionar un color. Esta opción cambiara el "
319
  "color de las etiquetas \"usuario\" y \"contraseña\""
320
 
321
+ #: er-custom-login.php:694
322
  msgid "Login Form Label Text Size:"
323
  msgstr "Tamaño del Texto de las Etiquetas del Formato:"
324
 
325
+ #: er-custom-login.php:697
326
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
327
  msgstr "Entra el valor en píxeles."
328
 
329
+ #: er-custom-login.php:701
330
  msgid "Login Form Input Text Color"
331
  msgstr "Color del Texto de los Campos del Formato:"
332
 
333
+ #: er-custom-login.php:706
334
  msgid ""
335
  "Click the box to select a color. This will change the color of text inside "
336
  "text box."
337
  msgstr "Haz click en el cuadro para seleccionar un color."
338
 
339
+ #: er-custom-login.php:710
340
  msgid "Login Form Input Text Size:"
341
  msgstr "Tamaño del Texto de los Campos del Formato:"
342
 
343
+ #: er-custom-login.php:713
344
  msgid "Font Size of text inside text box(Enter value in pixels)"
345
  msgstr "Entra el valor en píxeles."
346
 
347
+ #: er-custom-login.php:717
348
  msgid "Login Form Link Color"
349
  msgstr "Color de los enlaces:"
350
 
351
+ #: er-custom-login.php:727
352
  msgid "Enable link shadow?"
353
  msgstr "Deseas habilitar la sombra en los enlaces?"
354
 
355
+ #: er-custom-login.php:735 er-custom-login.php:764 er-custom-login.php:815
356
  msgid "Yes"
357
  msgstr "sí"
358
 
359
+ #: er-custom-login.php:739 er-custom-login.php:768 er-custom-login.php:819
360
  msgid "No"
361
  msgstr "no"
362
 
363
+ #: er-custom-login.php:741 er-custom-login.php:770
364
  msgid "(Check an option)"
365
  msgstr "(Marca una opción)"
366
 
367
+ #: er-custom-login.php:745
368
  msgid "Login Form Link Shadow Color"
369
  msgstr "Color de la Sombra del Formato:"
370
 
371
+ #: er-custom-login.php:756
372
  msgid "Enable form shadow?"
373
  msgstr "Activar forma de sombra?"
374
 
375
+ #: er-custom-login.php:774
376
  msgid "Login Form Shadow Color"
377
  msgstr "Color de la Sombra del Formato:"
378
 
379
+ #: er-custom-login.php:786
380
  msgid "Login Button Color"
381
  msgstr "Color del Botón del Formato:"
382
 
383
+ #: er-custom-login.php:802
384
  msgid "Plugin Un-install Settings"
385
  msgstr "Opción para Desinstalar el Plugin"
386
 
387
+ #: er-custom-login.php:807
388
  msgid "Delete custom settings upon plugin deactivation?"
389
  msgstr ""
390
  "Deseas borrar las configuraciones que has customizado una vez el plugin sea "
391
  "desactivado?"
392
 
393
+ #: er-custom-login.php:821
394
  msgid ""
395
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
396
  "plugin deactivation)"
398
  "(Si seleccionas \"sí\" todas los cambios que hayas hecho a la configuración "
399
  "serán borrados de la base de datos una vez el plugin sea desactivado)"
400
 
401
+ #: er-custom-login.php:829
402
  msgid "Save Changes"
403
  msgstr "Guardar cambios"
404
 
405
+ #: er-custom-login.php:836
406
  msgid "Export Settings"
407
  msgstr "Exportar Configuración"
408
 
409
+ #: er-custom-login.php:838
410
  msgid ""
411
  "Export the plugin settings for this site as a .json file. This allows you to "
412
  "easily import the configuration into another site."
414
  "Exportar la configuración del plugin de este sitio web en formato .json. "
415
  "Esto permite importar la configuración a otro sitio."
416
 
417
+ #: er-custom-login.php:843
418
  msgid "Export"
419
  msgstr "exportación"
420
 
421
+ #: er-custom-login.php:851
422
  msgid "Import Settings"
423
  msgstr "Importar Configuración"
424
 
425
+ #: er-custom-login.php:853
426
  msgid ""
427
  "Import the plugin settings from a .json file. This file can be obtained by "
428
  "exporting the settings on another site using the form above."
431
  "puedeobtainer al exportar la configuración de otro sitio web usando el "
432
  "formato de arriba."
433
 
434
+ #: er-custom-login.php:861
435
  msgid "Import"
436
  msgstr "importación"
437
 
438
+ #: er-custom-login.php:869
439
  msgid "Quick Links"
440
  msgstr "Enlaces Rápidos"
441
 
442
+ #: er-custom-login.php:871
443
  msgid "Open Your WP Login Page in a New Tab"
444
  msgstr "Abrir una WP Login Página en una nueva pestaña"
445
 
446
+ #: er-custom-login.php:872
447
  msgid "Plugin Documentation"
448
  msgstr "Documentación del Plugin"
449
 
450
+ #: er-custom-login.php:873
451
  msgid "Plugin Support Page"
452
  msgstr "Página de Soporte Plugin"
453
 
454
+ #: er-custom-login.php:874
455
  msgid "Feature Request/Suggestions?"
456
  msgstr "Sugerencias?"
457
 
458
+ #: er-custom-login.php:875
459
  msgid "Got some Love? Give us a 5 star rating!"
460
  msgstr "¿Tienes algo de amor? Danos un 5 estrellas!"
461
 
462
+ #: er-custom-login.php:879
463
  msgid "Hire Me"
464
  msgstr "Contratamé"
465
 
466
+ #: er-custom-login.php:880
467
  msgid ""
468
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
469
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
476
  "portafolio en linea: <a href=\"http://www.libin.in\" target=\"_blank\">www."
477
  "libin.in</a>"
478
 
479
+ #: er-custom-login.php:882
480
  msgid "Translation Credits"
481
  msgstr "Traducción"
482
 
483
+ #: er-custom-login.php:884
484
  msgid ""
485
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
486
  "\">Adriana De La Cuadra</a>"
488
  "Traducida al Español por <a href=\"http://www.linkedin.com/in/adrifolio\" "
489
  "target=\"_blank\">Adriana De La Cuadra</a>"
490
 
491
+ #: er-custom-login.php:885
492
  msgid ""
493
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
494
  "\" target=\"_blank\">Guillaume Vaslin</a>"
496
  "Traducción al Francés por<a href=\"https://www.linkedin.com/pub/vaslin-"
497
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
498
 
499
+ #: er-custom-login.php:886
500
  msgid ""
501
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
502
  "Kaulfuss</a>"
504
  "Alemán por <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
505
  "\">Peter Kaulfuss</a>"
506
 
507
+ #: er-custom-login.php:888
508
  msgid "Do you wants to translate this plugin to your language? Email me!"
509
  msgstr ""
510
  "¿Usted quiere traducir este plugin en tu idioma? Envíeme un correo "
languages/erident-custom-login-and-dashboard-fr_FR.mo CHANGED
Binary file
languages/erident-custom-login-and-dashboard-fr_FR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
- "POT-Creation-Date: 2014-08-07 20:35+0530\n"
5
- "PO-Revision-Date: 2014-08-07 20:35+0530\n"
6
- "Last-Translator: Libin <libin@libin.in>\n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
@@ -20,27 +20,27 @@ msgstr ""
20
  msgid "Settings"
21
  msgstr "Réglages"
22
 
23
- #: er-custom-login.php:215
24
  msgid "Please upload a valid .json file"
25
  msgstr "Veuillez charger un fichier .json valide"
26
 
27
- #: er-custom-login.php:221
28
  msgid "Please upload a file to import"
29
  msgstr "Veuillez charger un fichier à importer"
30
 
31
- #: er-custom-login.php:228
32
  msgid "New settings imported successfully!"
33
  msgstr "Nouveaux réglages importés avec succès !"
34
 
35
- #: er-custom-login.php:316
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Connexion et tableau de bord personnalisés"
38
 
39
- #: er-custom-login.php:337
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Réglages d'Erident Custom Login and Dashboard"
42
 
43
- #: er-custom-login.php:338
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
@@ -48,19 +48,19 @@ msgstr ""
48
  "L'extension charge les valeurs par défaut pour toutes les entrées ci-"
49
  "dessous. Veuillez entrer vos propres données."
50
 
51
- #: er-custom-login.php:338
52
  msgid "Click on the header of each block to open it."
53
  msgstr "Cliquez sur le titre de chaque bloc pour l'ouvrir."
54
 
55
- #: er-custom-login.php:345
56
  msgid "Settings saved."
57
  msgstr "Réglages sauvegardés."
58
 
59
- #: er-custom-login.php:352
60
  msgid "Dashboard Settings"
61
  msgstr "Réglages du tableau de bord"
62
 
63
- #: er-custom-login.php:353
64
  msgid ""
65
  "(These settings will be reflected when a user/admin logins to the WordPress "
66
  "Dashboard)"
@@ -68,11 +68,11 @@ msgstr ""
68
  "(Ces réglages seront renvoyés quand un utilisateur/administrateur se "
69
  "connectera au tableau de bord de WordPress)"
70
 
71
- #: er-custom-login.php:358
72
  msgid "Enter the text for dashboard left side footer:"
73
  msgstr "Entrez le texte qui sera situé en bas à gauche du tableau de bord : "
74
 
75
- #: er-custom-login.php:363
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
@@ -80,40 +80,39 @@ msgstr ""
80
  "Ceci remplacera le texte \"Merci d'utiliser WordPress\" en bas à gauche du "
81
  "tableau de bord"
82
 
83
- #: er-custom-login.php:367
84
  msgid "Enter the text for dashboard right side footer:"
85
  msgstr "Entrez le texte qui sera situé en bas à droite du tableau de bord : "
86
 
87
- #: er-custom-login.php:371
88
  msgid ""
89
  "This will replace the default \"WordPress Version\" on the bottom right side "
90
  "of dashboard"
91
  msgstr ""
92
  "Ceci remplacera \"Version de WordPress\" en bas à droite du tableau de bord"
93
 
94
- #: er-custom-login.php:380
95
  msgid "Login Screen Background"
96
  msgstr "Fond de l'écran de connexion"
97
 
98
- #: er-custom-login.php:381
99
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
100
  msgstr "(Les réglages suivants seront envoyés dans la page \"wp-login.php\")"
101
 
102
- #: er-custom-login.php:386
103
  msgid "Login Screen Background Color:"
104
  msgstr "Couleur du fond de l'écran de connexion : "
105
 
106
- #: er-custom-login.php:391 er-custom-login.php:601 er-custom-login.php:610
107
- #: er-custom-login.php:712 er-custom-login.php:740 er-custom-login.php:769
108
- #: er-custom-login.php:781
109
  msgid "Click the box to select a color."
110
  msgstr "Cliquez sur la boîte pour sélectionner une couleur."
111
 
112
- #: er-custom-login.php:396
113
  msgid "Login Screen Background Image:"
114
  msgstr "Image de fond de l'écran de connexion : "
115
 
116
- #: er-custom-login.php:400
117
  msgid ""
118
  "Add your own pattern/image url for the screen background. Leave blank if you "
119
  "don't need any images."
@@ -121,25 +120,25 @@ msgstr ""
121
  "Ajoutez l'url de votre propre motif/image pour le fond de l'écran. Laissez "
122
  "ce champ blanc si vous ne souhaitez pas utiliser d'images."
123
 
124
- #: er-custom-login.php:404
125
  msgid "Login Screen Background Repeat"
126
  msgstr "Répétition du fond de l'écran de connexion"
127
 
128
- #: er-custom-login.php:442 er-custom-login.php:659
129
  msgid "Select an image repeat option from dropdown."
130
  msgstr ""
131
  "Sélectionnez une option de répétition pour l'image à partir du menu "
132
  "déroulant."
133
 
134
- #: er-custom-login.php:446 er-custom-login.php:664
135
  msgid "Background Position:"
136
  msgstr "Positionnement du fond : "
137
 
138
- #: er-custom-login.php:447 er-custom-login.php:665
139
  msgid "Horizontal Position: "
140
  msgstr "Positionnement horizontal : "
141
 
142
- #: er-custom-login.php:452 er-custom-login.php:670
143
  msgid ""
144
  "The background-position property sets the starting position of a background "
145
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
@@ -154,11 +153,11 @@ msgstr ""
154
  "w3schools.com/cssref/pr_background-position.asp\" target=\"_blank\">Plus "
155
  "d'infos</a>"
156
 
157
- #: er-custom-login.php:457
158
  msgid "Background Size:"
159
  msgstr "Taille du fond : "
160
 
161
- #: er-custom-login.php:461
162
  msgid ""
163
  "The background-size property specifies the size of a background image. If "
164
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
@@ -172,23 +171,23 @@ msgstr ""
172
  "percentage, cover, contain. <a href=\"http://www.w3schools.com/cssref/"
173
  "css3_pr_background-size.asp\" target=\"_blank\">Plus d'infos</a>"
174
 
175
- #: er-custom-login.php:472
176
  msgid "Login Screen Logo"
177
  msgstr "Logo de l'écran de connexion"
178
 
179
- #: er-custom-login.php:473
180
  msgid "(Change the default WordPress logo and powered by text)"
181
  msgstr "(Change le logo WordPress par défaut ainsi que le texte propulsé par)"
182
 
183
- #: er-custom-login.php:478
184
  msgid "Logo Url:"
185
  msgstr "Url du logo : "
186
 
187
- #: er-custom-login.php:480
188
  msgid "Default Logo Size 274px × 63px"
189
  msgstr "Taille par défaut du logo 274px × 63px"
190
 
191
- #: er-custom-login.php:482
192
  msgid ""
193
  "(URL path to image to replace default WordPress Logo. (You can upload your "
194
  "image with the WordPress media uploader)"
@@ -196,53 +195,53 @@ msgstr ""
196
  "Url de l'image pour remplacer le logo WordPress par défaut. (Vous pouvez "
197
  "envoyer votre image avec l'outil d'envoi de médias interne à WordPress)"
198
 
199
- #: er-custom-login.php:487
200
  msgid "Logo Width:"
201
  msgstr "Largeur du logo : "
202
 
203
- #: er-custom-login.php:491
204
  msgid "Your Logo width(Enter in pixels). Default: 274px"
205
  msgstr "Largeur de votre logo (entrez-la en pixels). Par défaut : 274 px"
206
 
207
- #: er-custom-login.php:495
208
  msgid "Logo Height:"
209
  msgstr "Hauteur du logo : "
210
 
211
- #: er-custom-login.php:499
212
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
213
  msgstr "Hauteur de votre logo (entrez-la en pixels). Par défaut : 63 px"
214
 
215
- #: er-custom-login.php:504
216
  msgid "Powered by Text:"
217
  msgstr "Texte propulsé par : "
218
 
219
- #: er-custom-login.php:508
220
  msgid "Show when mouse hover over custom Login logo"
221
  msgstr ""
222
  "Montré quand la souris passe au-dessus du logo de connexion personnalisé"
223
 
224
- #: er-custom-login.php:518
225
  msgid "Login Form Settings"
226
  msgstr "Réglages du formulaire de connexion"
227
 
228
- #: er-custom-login.php:519
229
  msgid "(The following settings will change the Login Form style)"
230
  msgstr ""
231
  "(Les réglages suivants vont changer le style du formulaire de connexion)"
232
 
233
- #: er-custom-login.php:524
234
  msgid "Login form width:"
235
  msgstr "Largeur du formulaire de connexion : "
236
 
237
- #: er-custom-login.php:528
238
  msgid "Total Form width(Enter in pixels). Default: 350px"
239
  msgstr "Largeur totale du formulaire (Entrez-la en pixels). Par défaut : 350px"
240
 
241
- #: er-custom-login.php:532
242
  msgid "Login Form Border Radius:"
243
  msgstr "Radius de la bordure du formulaire de connexion : "
244
 
245
- #: er-custom-login.php:536
246
  msgid ""
247
  "Border Radius of Login Form. This is the option to make the corners rounded."
248
  "(Enter in pixels)"
@@ -250,35 +249,54 @@ msgstr ""
250
  "Radius de la bordure du formulaire de connexion. Cette option permet "
251
  "d'obtenir des coins arrondis. (Entrez la valeur en pixels)"
252
 
253
- #: er-custom-login.php:540
254
  msgid "Login Border Style"
255
  msgstr "Style de la bordure du formulaire de connexion"
256
 
257
- #: er-custom-login.php:584
258
  msgid "Select a Border Style option from dropdown."
259
  msgstr "Sélectionnez une option de style à partir de la liste déroulante."
260
 
261
- #: er-custom-login.php:588
262
  msgid "Login Border Thickness:"
263
  msgstr "Finesse de la bordure du formulaire de connexion : "
264
 
265
- #: er-custom-login.php:592
266
  msgid "Thickness of Border (Enter value in pixels)"
267
  msgstr "Finesse de la bordure (Entrez-là en pixels)"
268
 
269
- #: er-custom-login.php:596
270
  msgid "Login Border Color:"
271
  msgstr "Couleur de la bordure de la fenêtre de connexion : "
272
 
273
- #: er-custom-login.php:605
274
  msgid "Login Form Background Color:"
275
  msgstr "Couleur de fond du formulaire de connexion : "
276
 
277
- #: er-custom-login.php:614
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  msgid "Login Form Background Image:"
279
  msgstr "Image de fond du formulaire de connexion : "
280
 
281
- #: er-custom-login.php:617
282
  msgid ""
283
  "Add your own pattern/image url to the form background. Leave blank if you "
284
  "don't need any images."
@@ -286,19 +304,19 @@ msgstr ""
286
  "Ajoutez l'url de votre propre motif/image pour le fond du formulaire. "
287
  "Laissez ce champ blanc si vous ne souhaitez pas utiliser d'images."
288
 
289
- #: er-custom-login.php:621
290
  msgid "Login Form Background Repeat"
291
  msgstr "Répétition du fond du formulaire de connexion"
292
 
293
- #: er-custom-login.php:667
294
  msgid "Vertical Position: "
295
  msgstr "Positionnement vertical : "
296
 
297
- #: er-custom-login.php:675
298
  msgid "Login Form Label Text Color"
299
  msgstr "Couleur du texte des étiquettes du formulaire de connexion"
300
 
301
- #: er-custom-login.php:680
302
  msgid ""
303
  "Click the box to select a color. This will change the color of label "
304
  "Username/Password"
@@ -306,21 +324,21 @@ msgstr ""
306
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
307
  "de l'étiquette Utilisateur/Mot de passe"
308
 
309
- #: er-custom-login.php:684
310
  msgid "Login Form Label Text Size:"
311
  msgstr "Taille du texte des étiquettes du formulaire de connexion : "
312
 
313
- #: er-custom-login.php:687
314
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
315
  msgstr ""
316
  "Taille des caractères de l'étiquette Utilisateur/Mot de passe (Entrez la "
317
  "valeur en pixels)"
318
 
319
- #: er-custom-login.php:691
320
  msgid "Login Form Input Text Color"
321
  msgstr "Couleur du texte entré dans le formulaire de connexion"
322
 
323
- #: er-custom-login.php:696
324
  msgid ""
325
  "Click the box to select a color. This will change the color of text inside "
326
  "text box."
@@ -328,62 +346,62 @@ msgstr ""
328
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
329
  "du texte dans le champ de texte."
330
 
331
- #: er-custom-login.php:700
332
  msgid "Login Form Input Text Size:"
333
  msgstr "Taille du texte saisi dans le formulaire de connexion"
334
 
335
- #: er-custom-login.php:703
336
  msgid "Font Size of text inside text box(Enter value in pixels)"
337
  msgstr ""
338
  "Taille des caractères saisis dans les champs de caractères (Entrez la valeur "
339
  "en pixels)"
340
 
341
- #: er-custom-login.php:707
342
  msgid "Login Form Link Color"
343
  msgstr "Couleur des liens dans le formulaire de connexion"
344
 
345
- #: er-custom-login.php:717
346
  msgid "Enable link shadow?"
347
  msgstr "Activer l'ombre du lien ? "
348
 
349
- #: er-custom-login.php:725 er-custom-login.php:754 er-custom-login.php:805
350
  msgid "Yes"
351
  msgstr "Oui"
352
 
353
- #: er-custom-login.php:729 er-custom-login.php:758 er-custom-login.php:809
354
  msgid "No"
355
  msgstr "Non"
356
 
357
- #: er-custom-login.php:731 er-custom-login.php:760
358
  msgid "(Check an option)"
359
  msgstr "(Vérifiez une option)"
360
 
361
- #: er-custom-login.php:735
362
  msgid "Login Form Link Shadow Color"
363
  msgstr "Couleur de l'ombre du lien dans le formulaire de connexion"
364
 
365
- #: er-custom-login.php:746
366
  msgid "Enable form shadow?"
367
  msgstr "Activer l'ombre du formulaire ?"
368
 
369
- #: er-custom-login.php:764
370
  msgid "Login Form Shadow Color"
371
  msgstr "Couleur de l'ombre du formulaire de connexion"
372
 
373
- #: er-custom-login.php:776
374
  msgid "Login Button Color"
375
  msgstr "Couleur du bouton de connexion"
376
 
377
- #: er-custom-login.php:792
378
  msgid "Plugin Un-install Settings"
379
  msgstr "Réglages de la désinstallation de l'extension"
380
 
381
- #: er-custom-login.php:797
382
  msgid "Delete custom settings upon plugin deactivation?"
383
  msgstr ""
384
  "Effacer les réglages personnalisés lors de la désactivation de l'extension"
385
 
386
- #: er-custom-login.php:811
387
  msgid ""
388
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
389
  "plugin deactivation)"
@@ -391,15 +409,15 @@ msgstr ""
391
  "(Si vous laissez sur \"oui\" tous les réglages personnalisés seront effacés "
392
  "de la base de données lors de la désactivation de l'extension)"
393
 
394
- #: er-custom-login.php:819
395
  msgid "Save Changes"
396
  msgstr "Sauvegarder les changements"
397
 
398
- #: er-custom-login.php:826
399
  msgid "Export Settings"
400
  msgstr "Exporter les réglages"
401
 
402
- #: er-custom-login.php:828
403
  msgid ""
404
  "Export the plugin settings for this site as a .json file. This allows you to "
405
  "easily import the configuration into another site."
@@ -407,15 +425,15 @@ msgstr ""
407
  "Exporter les réglages de l'extension sous la forme d'un fichier .json. Ceci "
408
  "vous permettra d'importer la configuration dans un autre site."
409
 
410
- #: er-custom-login.php:833
411
  msgid "Export"
412
  msgstr "Exporter"
413
 
414
- #: er-custom-login.php:841
415
  msgid "Import Settings"
416
  msgstr "Réglages d'importation"
417
 
418
- #: er-custom-login.php:843
419
  msgid ""
420
  "Import the plugin settings from a .json file. This file can be obtained by "
421
  "exporting the settings on another site using the form above."
@@ -424,39 +442,39 @@ msgstr ""
424
  "obtenu en exportant les réglages d'un autre site en utilisant le formulaire "
425
  "ci-dessus."
426
 
427
- #: er-custom-login.php:851
428
  msgid "Import"
429
  msgstr "Importer"
430
 
431
- #: er-custom-login.php:859
432
  msgid "Quick Links"
433
- msgstr "Liens courts"
434
 
435
- #: er-custom-login.php:861
436
  msgid "Open Your WP Login Page in a New Tab"
437
  msgstr "Ouvrir votre page de connexion WP dans un nouvel onglet"
438
 
439
- #: er-custom-login.php:862
440
  msgid "Plugin Documentation"
441
  msgstr "Documentation de l'extension"
442
 
443
- #: er-custom-login.php:863
444
  msgid "Plugin Support Page"
445
  msgstr "Page de support de l'extension"
446
 
447
- #: er-custom-login.php:864
448
  msgid "Feature Request/Suggestions?"
449
  msgstr "Une requête/suggestion de fonctionnalité ?"
450
 
451
- #: er-custom-login.php:865
452
  msgid "Got some Love? Give us a 5 star rating!"
453
  msgstr "Vous aimez ? Donnez-nous une note de 5 étoiles !"
454
 
455
- #: er-custom-login.php:869
456
  msgid "Hire Me"
457
  msgstr "Louez moi"
458
 
459
- #: er-custom-login.php:870
460
  msgid ""
461
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
462
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
@@ -469,11 +487,11 @@ msgstr ""
469
  "libin@libin.in\">libin@libin.in</a> <br/>Portfolio en ligne : <a href="
470
  "\"http://www.libin.in\" target=\"_blank\">www.libin.in</a>"
471
 
472
- #: er-custom-login.php:872
473
  msgid "Translation Credits"
474
  msgstr "Crédits de traduction"
475
 
476
- #: er-custom-login.php:874
477
  msgid ""
478
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
479
  "\">Adriana De La Cuadra</a>"
@@ -481,7 +499,7 @@ msgstr ""
481
  "Espagnol par <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
482
  "\">Adriana De La Cuadra</a>"
483
 
484
- #: er-custom-login.php:875
485
  msgid ""
486
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
487
  "\" target=\"_blank\">Guillaume Vaslin</a>"
@@ -489,7 +507,7 @@ msgstr ""
489
  "Français par <a href=\"https://www.linkedin.com/pub/vaslin-"
490
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
491
 
492
- #: er-custom-login.php:876
493
  msgid ""
494
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
495
  "Kaulfuss</a>"
@@ -497,7 +515,7 @@ msgstr ""
497
  "Allemande par <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
498
  "\">Peter Kaulfuss</a>"
499
 
500
- #: er-custom-login.php:878
501
  msgid "Do you wants to translate this plugin to your language? Email me!"
502
  msgstr ""
503
  "Vous voulez traduire cette extension dans votre langue ? Envoyez-moi un "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Erident\n"
4
+ "POT-Creation-Date: 2014-10-31 14:47+0530\n"
5
+ "PO-Revision-Date: 2014-10-31 14:47+0530\n"
6
+ "Last-Translator: Guillaume Vaslin <moskito7@wanadoo.fr>\n"
7
  "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
20
  msgid "Settings"
21
  msgstr "Réglages"
22
 
23
+ #: er-custom-login.php:223
24
  msgid "Please upload a valid .json file"
25
  msgstr "Veuillez charger un fichier .json valide"
26
 
27
+ #: er-custom-login.php:229
28
  msgid "Please upload a file to import"
29
  msgstr "Veuillez charger un fichier à importer"
30
 
31
+ #: er-custom-login.php:236
32
  msgid "New settings imported successfully!"
33
  msgstr "Nouveaux réglages importés avec succès !"
34
 
35
+ #: er-custom-login.php:325
36
  msgid "Custom Login and Dashboard"
37
  msgstr "Connexion et tableau de bord personnalisés"
38
 
39
+ #: er-custom-login.php:346
40
  msgid "Erident Custom Login and Dashboard Settings"
41
  msgstr "Réglages d'Erident Custom Login and Dashboard"
42
 
43
+ #: er-custom-login.php:347
44
  msgid ""
45
  "Plugin Loads default values for all below entries. Please change the values "
46
  "to yours."
48
  "L'extension charge les valeurs par défaut pour toutes les entrées ci-"
49
  "dessous. Veuillez entrer vos propres données."
50
 
51
+ #: er-custom-login.php:347
52
  msgid "Click on the header of each block to open it."
53
  msgstr "Cliquez sur le titre de chaque bloc pour l'ouvrir."
54
 
55
+ #: er-custom-login.php:354
56
  msgid "Settings saved."
57
  msgstr "Réglages sauvegardés."
58
 
59
+ #: er-custom-login.php:361
60
  msgid "Dashboard Settings"
61
  msgstr "Réglages du tableau de bord"
62
 
63
+ #: er-custom-login.php:362
64
  msgid ""
65
  "(These settings will be reflected when a user/admin logins to the WordPress "
66
  "Dashboard)"
68
  "(Ces réglages seront renvoyés quand un utilisateur/administrateur se "
69
  "connectera au tableau de bord de WordPress)"
70
 
71
+ #: er-custom-login.php:367
72
  msgid "Enter the text for dashboard left side footer:"
73
  msgstr "Entrez le texte qui sera situé en bas à gauche du tableau de bord : "
74
 
75
+ #: er-custom-login.php:372
76
  msgid ""
77
  "This will replace the default \"Thank you for creating with WordPress\" on "
78
  "the bottom left side of dashboard"
80
  "Ceci remplacera le texte \"Merci d'utiliser WordPress\" en bas à gauche du "
81
  "tableau de bord"
82
 
83
+ #: er-custom-login.php:376
84
  msgid "Enter the text for dashboard right side footer:"
85
  msgstr "Entrez le texte qui sera situé en bas à droite du tableau de bord : "
86
 
87
+ #: er-custom-login.php:380
88
  msgid ""
89
  "This will replace the default \"WordPress Version\" on the bottom right side "
90
  "of dashboard"
91
  msgstr ""
92
  "Ceci remplacera \"Version de WordPress\" en bas à droite du tableau de bord"
93
 
94
+ #: er-custom-login.php:389
95
  msgid "Login Screen Background"
96
  msgstr "Fond de l'écran de connexion"
97
 
98
+ #: er-custom-login.php:390
99
  msgid "(The following settings will be reflected on the \"wp-login.php\" page)"
100
  msgstr "(Les réglages suivants seront envoyés dans la page \"wp-login.php\")"
101
 
102
+ #: er-custom-login.php:395
103
  msgid "Login Screen Background Color:"
104
  msgstr "Couleur du fond de l'écran de connexion : "
105
 
106
+ #: er-custom-login.php:400 er-custom-login.php:610 er-custom-login.php:722
107
+ #: er-custom-login.php:750 er-custom-login.php:779 er-custom-login.php:791
 
108
  msgid "Click the box to select a color."
109
  msgstr "Cliquez sur la boîte pour sélectionner une couleur."
110
 
111
+ #: er-custom-login.php:405
112
  msgid "Login Screen Background Image:"
113
  msgstr "Image de fond de l'écran de connexion : "
114
 
115
+ #: er-custom-login.php:409
116
  msgid ""
117
  "Add your own pattern/image url for the screen background. Leave blank if you "
118
  "don't need any images."
120
  "Ajoutez l'url de votre propre motif/image pour le fond de l'écran. Laissez "
121
  "ce champ blanc si vous ne souhaitez pas utiliser d'images."
122
 
123
+ #: er-custom-login.php:413
124
  msgid "Login Screen Background Repeat"
125
  msgstr "Répétition du fond de l'écran de connexion"
126
 
127
+ #: er-custom-login.php:451 er-custom-login.php:669
128
  msgid "Select an image repeat option from dropdown."
129
  msgstr ""
130
  "Sélectionnez une option de répétition pour l'image à partir du menu "
131
  "déroulant."
132
 
133
+ #: er-custom-login.php:455 er-custom-login.php:674
134
  msgid "Background Position:"
135
  msgstr "Positionnement du fond : "
136
 
137
+ #: er-custom-login.php:456 er-custom-login.php:675
138
  msgid "Horizontal Position: "
139
  msgstr "Positionnement horizontal : "
140
 
141
+ #: er-custom-login.php:461 er-custom-login.php:680
142
  msgid ""
143
  "The background-position property sets the starting position of a background "
144
  "image. If you entering the value in \"pixels\" or \"percentage\", add \"px\" "
153
  "w3schools.com/cssref/pr_background-position.asp\" target=\"_blank\">Plus "
154
  "d'infos</a>"
155
 
156
+ #: er-custom-login.php:466
157
  msgid "Background Size:"
158
  msgstr "Taille du fond : "
159
 
160
+ #: er-custom-login.php:470
161
  msgid ""
162
  "The background-size property specifies the size of a background image. If "
163
  "you entering the value in \"pixels\" or \"percentage\", add \"px\" or \"%\" "
171
  "percentage, cover, contain. <a href=\"http://www.w3schools.com/cssref/"
172
  "css3_pr_background-size.asp\" target=\"_blank\">Plus d'infos</a>"
173
 
174
+ #: er-custom-login.php:481
175
  msgid "Login Screen Logo"
176
  msgstr "Logo de l'écran de connexion"
177
 
178
+ #: er-custom-login.php:482
179
  msgid "(Change the default WordPress logo and powered by text)"
180
  msgstr "(Change le logo WordPress par défaut ainsi que le texte propulsé par)"
181
 
182
+ #: er-custom-login.php:487
183
  msgid "Logo Url:"
184
  msgstr "Url du logo : "
185
 
186
+ #: er-custom-login.php:489
187
  msgid "Default Logo Size 274px × 63px"
188
  msgstr "Taille par défaut du logo 274px × 63px"
189
 
190
+ #: er-custom-login.php:491
191
  msgid ""
192
  "(URL path to image to replace default WordPress Logo. (You can upload your "
193
  "image with the WordPress media uploader)"
195
  "Url de l'image pour remplacer le logo WordPress par défaut. (Vous pouvez "
196
  "envoyer votre image avec l'outil d'envoi de médias interne à WordPress)"
197
 
198
+ #: er-custom-login.php:496
199
  msgid "Logo Width:"
200
  msgstr "Largeur du logo : "
201
 
202
+ #: er-custom-login.php:500
203
  msgid "Your Logo width(Enter in pixels). Default: 274px"
204
  msgstr "Largeur de votre logo (entrez-la en pixels). Par défaut : 274 px"
205
 
206
+ #: er-custom-login.php:504
207
  msgid "Logo Height:"
208
  msgstr "Hauteur du logo : "
209
 
210
+ #: er-custom-login.php:508
211
  msgid "Your Logo Height(Enter in pixels). Default: 63px"
212
  msgstr "Hauteur de votre logo (entrez-la en pixels). Par défaut : 63 px"
213
 
214
+ #: er-custom-login.php:513
215
  msgid "Powered by Text:"
216
  msgstr "Texte propulsé par : "
217
 
218
+ #: er-custom-login.php:517
219
  msgid "Show when mouse hover over custom Login logo"
220
  msgstr ""
221
  "Montré quand la souris passe au-dessus du logo de connexion personnalisé"
222
 
223
+ #: er-custom-login.php:527
224
  msgid "Login Form Settings"
225
  msgstr "Réglages du formulaire de connexion"
226
 
227
+ #: er-custom-login.php:528
228
  msgid "(The following settings will change the Login Form style)"
229
  msgstr ""
230
  "(Les réglages suivants vont changer le style du formulaire de connexion)"
231
 
232
+ #: er-custom-login.php:533
233
  msgid "Login form width:"
234
  msgstr "Largeur du formulaire de connexion : "
235
 
236
+ #: er-custom-login.php:537
237
  msgid "Total Form width(Enter in pixels). Default: 350px"
238
  msgstr "Largeur totale du formulaire (Entrez-la en pixels). Par défaut : 350px"
239
 
240
+ #: er-custom-login.php:541
241
  msgid "Login Form Border Radius:"
242
  msgstr "Radius de la bordure du formulaire de connexion : "
243
 
244
+ #: er-custom-login.php:545
245
  msgid ""
246
  "Border Radius of Login Form. This is the option to make the corners rounded."
247
  "(Enter in pixels)"
249
  "Radius de la bordure du formulaire de connexion. Cette option permet "
250
  "d'obtenir des coins arrondis. (Entrez la valeur en pixels)"
251
 
252
+ #: er-custom-login.php:549
253
  msgid "Login Border Style"
254
  msgstr "Style de la bordure du formulaire de connexion"
255
 
256
+ #: er-custom-login.php:593
257
  msgid "Select a Border Style option from dropdown."
258
  msgstr "Sélectionnez une option de style à partir de la liste déroulante."
259
 
260
+ #: er-custom-login.php:597
261
  msgid "Login Border Thickness:"
262
  msgstr "Finesse de la bordure du formulaire de connexion : "
263
 
264
+ #: er-custom-login.php:601
265
  msgid "Thickness of Border (Enter value in pixels)"
266
  msgstr "Finesse de la bordure (Entrez-là en pixels)"
267
 
268
+ #: er-custom-login.php:605
269
  msgid "Login Border Color:"
270
  msgstr "Couleur de la bordure de la fenêtre de connexion : "
271
 
272
+ #: er-custom-login.php:614
273
  msgid "Login Form Background Color:"
274
  msgstr "Couleur de fond du formulaire de connexion : "
275
 
276
+ #: er-custom-login.php:618
277
+ msgid "Background Opacity: "
278
+ msgstr "Opacité du fond : "
279
+
280
+ #: er-custom-login.php:620
281
+ msgid ""
282
+ "Click the box to select a color. Background Opacity will helps you to put "
283
+ "transparent color over a background image. Possible values 0 to 1. Example: "
284
+ "0.5 means 50% transparency. Default: 1 <a href=\"https://wordpress.org/"
285
+ "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">More "
286
+ "Info</a>"
287
+ msgstr ""
288
+ "Cliquez sur la boîte pour sélectionner une couleur. L'opacité du fond vous "
289
+ "aidera pour mettre une couleur transparente au-dessus une image de fond. Les "
290
+ "valeurs possibles vont de 0 à 1. Par exemple : 0.5 signifie 50% de "
291
+ "transparence. La valeur par défaut :1 <a href=\"https://wordpress.org/"
292
+ "plugins/erident-custom-login-and-dashboard/faq/\" target=\"_blank\">Plus "
293
+ "d'infos</a>"
294
+
295
+ #: er-custom-login.php:624
296
  msgid "Login Form Background Image:"
297
  msgstr "Image de fond du formulaire de connexion : "
298
 
299
+ #: er-custom-login.php:627
300
  msgid ""
301
  "Add your own pattern/image url to the form background. Leave blank if you "
302
  "don't need any images."
304
  "Ajoutez l'url de votre propre motif/image pour le fond du formulaire. "
305
  "Laissez ce champ blanc si vous ne souhaitez pas utiliser d'images."
306
 
307
+ #: er-custom-login.php:631
308
  msgid "Login Form Background Repeat"
309
  msgstr "Répétition du fond du formulaire de connexion"
310
 
311
+ #: er-custom-login.php:677
312
  msgid "Vertical Position: "
313
  msgstr "Positionnement vertical : "
314
 
315
+ #: er-custom-login.php:685
316
  msgid "Login Form Label Text Color"
317
  msgstr "Couleur du texte des étiquettes du formulaire de connexion"
318
 
319
+ #: er-custom-login.php:690
320
  msgid ""
321
  "Click the box to select a color. This will change the color of label "
322
  "Username/Password"
324
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
325
  "de l'étiquette Utilisateur/Mot de passe"
326
 
327
+ #: er-custom-login.php:694
328
  msgid "Login Form Label Text Size:"
329
  msgstr "Taille du texte des étiquettes du formulaire de connexion : "
330
 
331
+ #: er-custom-login.php:697
332
  msgid "Font Size of Label Username/Password(Enter value in pixels)"
333
  msgstr ""
334
  "Taille des caractères de l'étiquette Utilisateur/Mot de passe (Entrez la "
335
  "valeur en pixels)"
336
 
337
+ #: er-custom-login.php:701
338
  msgid "Login Form Input Text Color"
339
  msgstr "Couleur du texte entré dans le formulaire de connexion"
340
 
341
+ #: er-custom-login.php:706
342
  msgid ""
343
  "Click the box to select a color. This will change the color of text inside "
344
  "text box."
346
  "Cliquez sur la boîte pour sélectionner une couleur. Ceci changera la couleur "
347
  "du texte dans le champ de texte."
348
 
349
+ #: er-custom-login.php:710
350
  msgid "Login Form Input Text Size:"
351
  msgstr "Taille du texte saisi dans le formulaire de connexion"
352
 
353
+ #: er-custom-login.php:713
354
  msgid "Font Size of text inside text box(Enter value in pixels)"
355
  msgstr ""
356
  "Taille des caractères saisis dans les champs de caractères (Entrez la valeur "
357
  "en pixels)"
358
 
359
+ #: er-custom-login.php:717
360
  msgid "Login Form Link Color"
361
  msgstr "Couleur des liens dans le formulaire de connexion"
362
 
363
+ #: er-custom-login.php:727
364
  msgid "Enable link shadow?"
365
  msgstr "Activer l'ombre du lien ? "
366
 
367
+ #: er-custom-login.php:735 er-custom-login.php:764 er-custom-login.php:815
368
  msgid "Yes"
369
  msgstr "Oui"
370
 
371
+ #: er-custom-login.php:739 er-custom-login.php:768 er-custom-login.php:819
372
  msgid "No"
373
  msgstr "Non"
374
 
375
+ #: er-custom-login.php:741 er-custom-login.php:770
376
  msgid "(Check an option)"
377
  msgstr "(Vérifiez une option)"
378
 
379
+ #: er-custom-login.php:745
380
  msgid "Login Form Link Shadow Color"
381
  msgstr "Couleur de l'ombre du lien dans le formulaire de connexion"
382
 
383
+ #: er-custom-login.php:756
384
  msgid "Enable form shadow?"
385
  msgstr "Activer l'ombre du formulaire ?"
386
 
387
+ #: er-custom-login.php:774
388
  msgid "Login Form Shadow Color"
389
  msgstr "Couleur de l'ombre du formulaire de connexion"
390
 
391
+ #: er-custom-login.php:786
392
  msgid "Login Button Color"
393
  msgstr "Couleur du bouton de connexion"
394
 
395
+ #: er-custom-login.php:802
396
  msgid "Plugin Un-install Settings"
397
  msgstr "Réglages de la désinstallation de l'extension"
398
 
399
+ #: er-custom-login.php:807
400
  msgid "Delete custom settings upon plugin deactivation?"
401
  msgstr ""
402
  "Effacer les réglages personnalisés lors de la désactivation de l'extension"
403
 
404
+ #: er-custom-login.php:821
405
  msgid ""
406
  "(If you set \"Yes\" all custom settings will be deleted from database upon "
407
  "plugin deactivation)"
409
  "(Si vous laissez sur \"oui\" tous les réglages personnalisés seront effacés "
410
  "de la base de données lors de la désactivation de l'extension)"
411
 
412
+ #: er-custom-login.php:829
413
  msgid "Save Changes"
414
  msgstr "Sauvegarder les changements"
415
 
416
+ #: er-custom-login.php:836
417
  msgid "Export Settings"
418
  msgstr "Exporter les réglages"
419
 
420
+ #: er-custom-login.php:838
421
  msgid ""
422
  "Export the plugin settings for this site as a .json file. This allows you to "
423
  "easily import the configuration into another site."
425
  "Exporter les réglages de l'extension sous la forme d'un fichier .json. Ceci "
426
  "vous permettra d'importer la configuration dans un autre site."
427
 
428
+ #: er-custom-login.php:843
429
  msgid "Export"
430
  msgstr "Exporter"
431
 
432
+ #: er-custom-login.php:851
433
  msgid "Import Settings"
434
  msgstr "Réglages d'importation"
435
 
436
+ #: er-custom-login.php:853
437
  msgid ""
438
  "Import the plugin settings from a .json file. This file can be obtained by "
439
  "exporting the settings on another site using the form above."
442
  "obtenu en exportant les réglages d'un autre site en utilisant le formulaire "
443
  "ci-dessus."
444
 
445
+ #: er-custom-login.php:861
446
  msgid "Import"
447
  msgstr "Importer"
448
 
449
+ #: er-custom-login.php:869
450
  msgid "Quick Links"
451
+ msgstr "Liens rapides"
452
 
453
+ #: er-custom-login.php:871
454
  msgid "Open Your WP Login Page in a New Tab"
455
  msgstr "Ouvrir votre page de connexion WP dans un nouvel onglet"
456
 
457
+ #: er-custom-login.php:872
458
  msgid "Plugin Documentation"
459
  msgstr "Documentation de l'extension"
460
 
461
+ #: er-custom-login.php:873
462
  msgid "Plugin Support Page"
463
  msgstr "Page de support de l'extension"
464
 
465
+ #: er-custom-login.php:874
466
  msgid "Feature Request/Suggestions?"
467
  msgstr "Une requête/suggestion de fonctionnalité ?"
468
 
469
+ #: er-custom-login.php:875
470
  msgid "Got some Love? Give us a 5 star rating!"
471
  msgstr "Vous aimez ? Donnez-nous une note de 5 étoiles !"
472
 
473
+ #: er-custom-login.php:879
474
  msgid "Hire Me"
475
  msgstr "Louez moi"
476
 
477
+ #: er-custom-login.php:880
478
  msgid ""
479
  "Hey, I'm Libin, a professional Front End Engineer/WordPress Developer. You "
480
  "can hire me for freelancing projects.<br/><br/>Email me: <a href=\"mailto:"
487
  "libin@libin.in\">libin@libin.in</a> <br/>Portfolio en ligne : <a href="
488
  "\"http://www.libin.in\" target=\"_blank\">www.libin.in</a>"
489
 
490
+ #: er-custom-login.php:882
491
  msgid "Translation Credits"
492
  msgstr "Crédits de traduction"
493
 
494
+ #: er-custom-login.php:884
495
  msgid ""
496
  "Spanish by <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
497
  "\">Adriana De La Cuadra</a>"
499
  "Espagnol par <a href=\"http://www.linkedin.com/in/adrifolio\" target=\"_blank"
500
  "\">Adriana De La Cuadra</a>"
501
 
502
+ #: er-custom-login.php:885
503
  msgid ""
504
  "French by <a href=\"https://www.linkedin.com/pub/vaslin-guillaume/38/35a/5aa"
505
  "\" target=\"_blank\">Guillaume Vaslin</a>"
507
  "Français par <a href=\"https://www.linkedin.com/pub/vaslin-"
508
  "guillaume/38/35a/5aa\" target=\"_blank\">Guillaume Vaslin</a>"
509
 
510
+ #: er-custom-login.php:886
511
  msgid ""
512
  "German by <a href=\"http://www.starsofvietnam.net/\" target=\"_blank\">Peter "
513
  "Kaulfuss</a>"
515
  "Allemande par <a href=\"http://www.starsofvietnam.net/\" target=\"_blank"
516
  "\">Peter Kaulfuss</a>"
517
 
518
+ #: er-custom-login.php:888
519
  msgid "Do you wants to translate this plugin to your language? Email me!"
520
  msgstr ""
521
  "Vous voulez traduire cette extension dans votre langue ? Envoyez-moi un "
readme.txt CHANGED
@@ -3,17 +3,18 @@ Contributors: libinvbabu
3
  Donate link: http://www.libin.in
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
- Tested up to: 3.9.2
7
- Stable tag: 3.2
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Customize completely your WordPress Login Screen and Dashboard easily. Add your logo, change background image, colors, styles, Dashboard footer etc.
12
 
13
  == Description ==
14
 
15
  TOP RATED PLUGIN for Login Page Customization!!! Customize completely your WordPress Login Screen and Dashboard easily. Add your company logo to login screen, change background images, colors, styles etc. Customize your Dashboard footer text also for complete branding. Now faster and better db performance!
16
 
 
17
  New*: German, French and Spanish Translation available!
18
  New*: Import/Export Settings feature available!
19
 
@@ -24,7 +25,7 @@ visit the WordPress [support forum](http://wordpress.org/support/plugin/erident-
24
 
25
  1. Change footer texts on Admin Dashboard
26
  1. Add Image/Color Backgrounds to Login Screen.
27
- 1. Add Image/Color Background to Login Form.
28
  1. Pick color using awesome jQuery color picker
29
  1. Change Texts/Links Color and size on Login Form
30
  1. Replace the WordPress Logo on the Login Form with your own
@@ -60,6 +61,7 @@ visit the WordPress [support forum](http://wordpress.org/support/plugin/erident-
60
  * Login form width
61
  * Login Form Border Style/Radius/Color/Thickness
62
  * Login Form Background Color/Image
 
63
  * Login Form Background Repeat
64
  * Login Form Background Position
65
  * Login Form Label/input Text Color
@@ -109,6 +111,9 @@ You can edit the plugin's php file through WordPress plugin editor. But once you
109
  = Can I export settings? =
110
  Yeah! With version 3.0 Import/Export plugin settings feature added. Your life made easy.
111
 
 
 
 
112
  == Screenshots ==
113
 
114
  1. The complete options on the settings page.
@@ -116,6 +121,10 @@ Yeah! With version 3.0 Import/Export plugin settings feature added. Your life ma
116
 
117
  == Changelog ==
118
 
 
 
 
 
119
  = 3.2 =
120
  * Minor fix for Logo size option.
121
  * Added German translation.
@@ -187,5 +196,5 @@ Yeah! With version 3.0 Import/Export plugin settings feature added. Your life ma
187
 
188
  == Upgrade Notice ==
189
 
190
- = 3.1 =
191
- Bug fix on backend and German translation.
3
  Donate link: http://www.libin.in
4
  Tags: login, customisation, admin, dashboard, customise, erident, custom, form, logo, customize, branding
5
  Requires at least: 3.0.0
6
+ Tested up to: 4.0
7
+ Stable tag: 3.3
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Customize completely your WordPress Login Screen easily. Add your logo, change background image, colors, styles, Dashboard footer etc.
12
 
13
  == Description ==
14
 
15
  TOP RATED PLUGIN for Login Page Customization!!! Customize completely your WordPress Login Screen and Dashboard easily. Add your company logo to login screen, change background images, colors, styles etc. Customize your Dashboard footer text also for complete branding. Now faster and better db performance!
16
 
17
+ New*: Now supports opacity on login form background!
18
  New*: German, French and Spanish Translation available!
19
  New*: Import/Export Settings feature available!
20
 
25
 
26
  1. Change footer texts on Admin Dashboard
27
  1. Add Image/Color Backgrounds to Login Screen.
28
+ 1. Add Image/Color Background to Login Form with opacity.
29
  1. Pick color using awesome jQuery color picker
30
  1. Change Texts/Links Color and size on Login Form
31
  1. Replace the WordPress Logo on the Login Form with your own
61
  * Login form width
62
  * Login Form Border Style/Radius/Color/Thickness
63
  * Login Form Background Color/Image
64
+ * Background Opacity
65
  * Login Form Background Repeat
66
  * Login Form Background Position
67
  * Login Form Label/input Text Color
111
  = Can I export settings? =
112
  Yeah! With version 3.0 Import/Export plugin settings feature added. Your life made easy.
113
 
114
+ = How will I put opacity on Login Form =
115
+ You can achieve it by either using a transparent png/gif image or you can use the "opacity" feature added in ver:3.3 Add a background color for Login form and set an opacity to it. Default will be 1, means the background color will be opaque. changing it to 0.5 will give you 50% transparency. Just play around it. Make sure that there is no image on Login form background.
116
+
117
  == Screenshots ==
118
 
119
  1. The complete options on the settings page.
121
 
122
  == Changelog ==
123
 
124
+ = 3.3 =
125
+ * Added Background Opacity feature to the Login Form
126
+ * Now Register button will also take same color of Login button
127
+
128
  = 3.2 =
129
  * Minor fix for Logo size option.
130
  * Added German translation.
196
 
197
  == Upgrade Notice ==
198
 
199
+ = 3.3 =
200
+ New features added.
screenshot-2.jpg CHANGED
Binary file